2016-01-07 11:53:15 +01:00
|
|
|
//===-- AVRTargetObjectFile.cpp - AVR Object Files ------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "AVRTargetObjectFile.h"
|
|
|
|
|
|
|
|
#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 "llvm/Support/ELF.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 *
|
|
|
|
AVRTargetObjectFile::SelectSectionForGlobal(const GlobalValue *GV,
|
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.
|
|
|
|
if (AVR::isProgramMemoryAddress(GV) && !GV->hasSection())
|
|
|
|
return ProgmemDataSection;
|
|
|
|
|
|
|
|
// Otherwise, we work the same way as ELF.
|
2016-09-24 13:38:08 +02:00
|
|
|
return Base::SelectSectionForGlobal(GV, Kind, TM);
|
2016-01-07 11:53:15 +01:00
|
|
|
}
|
|
|
|
} // end of namespace llvm
|
2016-09-24 13:38:08 +02:00
|
|
|
|