2009-07-28 03:13:23 +00:00
|
|
|
//===-- XCoreTargetObjectFile.cpp - XCore object files --------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "XCoreTargetObjectFile.h"
|
2009-07-31 18:48:30 +00:00
|
|
|
#include "XCoreSubtarget.h"
|
2010-04-08 21:26:26 +00:00
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCSectionELF.h"
|
2009-07-31 18:48:30 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2009-07-28 03:13:23 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
|
2009-07-31 18:48:30 +00:00
|
|
|
void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
|
|
|
|
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
|
|
|
|
2009-08-15 06:09:35 +00:00
|
|
|
DataSection =
|
2010-04-08 21:26:26 +00:00
|
|
|
Ctx.getELFSection(".dp.data", MCSectionELF::SHT_PROGBITS,
|
|
|
|
MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE |
|
|
|
|
MCSectionELF::XCORE_SHF_DP_SECTION,
|
|
|
|
SectionKind::getDataRel(), false);
|
2009-08-15 06:09:35 +00:00
|
|
|
BSSSection =
|
2010-04-08 21:26:26 +00:00
|
|
|
Ctx.getELFSection(".dp.bss", MCSectionELF::SHT_NOBITS,
|
|
|
|
MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE |
|
|
|
|
MCSectionELF::XCORE_SHF_DP_SECTION,
|
|
|
|
SectionKind::getBSS(), false);
|
2009-08-15 06:09:35 +00:00
|
|
|
|
2009-08-18 21:14:31 +00:00
|
|
|
MergeableConst4Section =
|
2010-04-08 21:26:26 +00:00
|
|
|
Ctx.getELFSection(".cp.rodata.cst4", MCSectionELF::SHT_PROGBITS,
|
|
|
|
MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE |
|
|
|
|
MCSectionELF::XCORE_SHF_CP_SECTION,
|
|
|
|
SectionKind::getMergeableConst4(), false);
|
2009-08-18 21:14:31 +00:00
|
|
|
MergeableConst8Section =
|
2010-04-08 21:26:26 +00:00
|
|
|
Ctx.getELFSection(".cp.rodata.cst8", MCSectionELF::SHT_PROGBITS,
|
|
|
|
MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE |
|
|
|
|
MCSectionELF::XCORE_SHF_CP_SECTION,
|
|
|
|
SectionKind::getMergeableConst8(), false);
|
2009-08-18 21:14:31 +00:00
|
|
|
MergeableConst16Section =
|
2010-04-08 21:26:26 +00:00
|
|
|
Ctx.getELFSection(".cp.rodata.cst16", MCSectionELF::SHT_PROGBITS,
|
|
|
|
MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE |
|
|
|
|
MCSectionELF::XCORE_SHF_CP_SECTION,
|
|
|
|
SectionKind::getMergeableConst16(), false);
|
2009-07-28 03:13:23 +00:00
|
|
|
|
|
|
|
// TLS globals are lowered in the backend to arrays indexed by the current
|
|
|
|
// thread id. After lowering they require no special handling by the linker
|
|
|
|
// and can be placed in the standard data / bss sections.
|
|
|
|
TLSDataSection = DataSection;
|
2009-08-01 22:06:53 +00:00
|
|
|
TLSBSSSection = BSSSection;
|
2009-10-06 16:01:09 +00:00
|
|
|
|
|
|
|
ReadOnlySection =
|
2010-04-08 21:26:26 +00:00
|
|
|
Ctx.getELFSection(".cp.rodata", MCSectionELF::SHT_PROGBITS,
|
|
|
|
MCSectionELF::SHF_ALLOC |
|
|
|
|
MCSectionELF::XCORE_SHF_CP_SECTION,
|
|
|
|
SectionKind::getReadOnlyWithRel(), false);
|
2009-08-18 17:58:17 +00:00
|
|
|
|
|
|
|
// Dynamic linking is not supported. Data with relocations is placed in the
|
|
|
|
// same section as data without relocations.
|
|
|
|
DataRelSection = DataRelLocalSection = DataSection;
|
|
|
|
DataRelROSection = DataRelROLocalSection = ReadOnlySection;
|
2009-08-01 19:09:44 +00:00
|
|
|
}
|