2016-01-07 11:53:15 +01:00
|
|
|
//===-- AVRTargetObjectFile.cpp - AVR Object Files ------------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-01-07 11:53:15 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "AVRTargetObjectFile.h"
|
|
|
|
|
2017-06-07 05:48:56 +02:00
|
|
|
#include "llvm/BinaryFormat/ELF.h"
|
2016-01-07 11:53:15 +01:00
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
|
|
#include "llvm/IR/GlobalValue.h"
|
|
|
|
#include "llvm/IR/Mangler.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCSectionELF.h"
|
|
|
|
|
|
|
|
#include "AVR.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
void AVRTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM) {
|
|
|
|
Base::Initialize(Ctx, TM);
|
|
|
|
ProgmemDataSection =
|
|
|
|
Ctx.getELFSection(".progmem.data", ELF::SHT_PROGBITS, ELF::SHF_ALLOC);
|
|
|
|
}
|
|
|
|
|
|
|
|
MCSection *
|
2016-10-24 21:23:39 +02:00
|
|
|
AVRTargetObjectFile::SelectSectionForGlobal(const GlobalObject *GO,
|
2016-09-24 13:38:08 +02:00
|
|
|
SectionKind Kind,
|
2016-01-07 11:53:15 +01:00
|
|
|
const TargetMachine &TM) const {
|
|
|
|
// Global values in flash memory are placed in the progmem.data section
|
|
|
|
// unless they already have a user assigned section.
|
2020-04-15 17:30:47 +02:00
|
|
|
if (AVR::isProgramMemoryAddress(GO) && !GO->hasSection() && Kind.isReadOnly())
|
2016-01-07 11:53:15 +01:00
|
|
|
return ProgmemDataSection;
|
|
|
|
|
|
|
|
// Otherwise, we work the same way as ELF.
|
2016-10-24 21:23:39 +02:00
|
|
|
return Base::SelectSectionForGlobal(GO, Kind, TM);
|
2016-01-07 11:53:15 +01:00
|
|
|
}
|
|
|
|
} // end of namespace llvm
|
2016-09-24 13:38:08 +02:00
|
|
|
|