1 //===-- AVRTargetObjectFile.cpp - AVR Object Files ------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "AVRTargetObjectFile.h"
11 #include "llvm/BinaryFormat/ELF.h"
12 #include "llvm/IR/DerivedTypes.h"
13 #include "llvm/IR/GlobalValue.h"
14 #include "llvm/IR/Mangler.h"
15 #include "llvm/MC/MCContext.h"
16 #include "llvm/MC/MCSectionELF.h"
21 void AVRTargetObjectFile::Initialize(MCContext
&Ctx
, const TargetMachine
&TM
) {
22 Base::Initialize(Ctx
, TM
);
24 Ctx
.getELFSection(".progmem.data", ELF::SHT_PROGBITS
, ELF::SHF_ALLOC
);
28 AVRTargetObjectFile::SelectSectionForGlobal(const GlobalObject
*GO
,
30 const TargetMachine
&TM
) const {
31 // Global values in flash memory are placed in the progmem.data section
32 // unless they already have a user assigned section.
33 if (AVR::isProgramMemoryAddress(GO
) && !GO
->hasSection())
34 return ProgmemDataSection
;
36 // Otherwise, we work the same way as ELF.
37 return Base::SelectSectionForGlobal(GO
, Kind
, TM
);
39 } // end of namespace llvm