2009-07-28 05:13:23 +02: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 20:48:30 +02:00
|
|
|
#include "XCoreSubtarget.h"
|
2010-04-08 23:26:26 +02:00
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCSectionELF.h"
|
2009-07-31 20:48:30 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2011-01-23 05:28:49 +01:00
|
|
|
#include "llvm/Support/ELF.h"
|
2009-07-28 05:13:23 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
|
2009-07-31 20:48:30 +02:00
|
|
|
void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
|
|
|
|
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
|
|
|
|
2009-08-15 08:09:35 +02:00
|
|
|
DataSection =
|
2011-01-23 05:28:49 +01:00
|
|
|
Ctx.getELFSection(".dp.data", ELF::SHT_PROGBITS,
|
2011-01-23 05:43:11 +01:00
|
|
|
ELF::SHF_ALLOC | ELF::SHF_WRITE |
|
|
|
|
ELF::XCORE_SHF_DP_SECTION,
|
2010-11-11 04:40:25 +01:00
|
|
|
SectionKind::getDataRel());
|
2009-08-15 08:09:35 +02:00
|
|
|
BSSSection =
|
2011-01-23 05:28:49 +01:00
|
|
|
Ctx.getELFSection(".dp.bss", ELF::SHT_NOBITS,
|
2011-01-23 05:43:11 +01:00
|
|
|
ELF::SHF_ALLOC | ELF::SHF_WRITE |
|
|
|
|
ELF::XCORE_SHF_DP_SECTION,
|
2010-11-11 04:40:25 +01:00
|
|
|
SectionKind::getBSS());
|
2009-08-15 08:09:35 +02:00
|
|
|
|
2009-08-18 23:14:31 +02:00
|
|
|
MergeableConst4Section =
|
2011-01-23 05:28:49 +01:00
|
|
|
Ctx.getELFSection(".cp.rodata.cst4", ELF::SHT_PROGBITS,
|
2011-01-23 05:43:11 +01:00
|
|
|
ELF::SHF_ALLOC | ELF::SHF_MERGE |
|
|
|
|
ELF::XCORE_SHF_CP_SECTION,
|
2010-11-11 04:40:25 +01:00
|
|
|
SectionKind::getMergeableConst4());
|
2009-08-18 23:14:31 +02:00
|
|
|
MergeableConst8Section =
|
2011-01-23 05:28:49 +01:00
|
|
|
Ctx.getELFSection(".cp.rodata.cst8", ELF::SHT_PROGBITS,
|
2011-01-23 05:43:11 +01:00
|
|
|
ELF::SHF_ALLOC | ELF::SHF_MERGE |
|
|
|
|
ELF::XCORE_SHF_CP_SECTION,
|
2010-11-11 04:40:25 +01:00
|
|
|
SectionKind::getMergeableConst8());
|
2009-08-18 23:14:31 +02:00
|
|
|
MergeableConst16Section =
|
2011-01-23 05:28:49 +01:00
|
|
|
Ctx.getELFSection(".cp.rodata.cst16", ELF::SHT_PROGBITS,
|
2011-01-23 05:43:11 +01:00
|
|
|
ELF::SHF_ALLOC | ELF::SHF_MERGE |
|
|
|
|
ELF::XCORE_SHF_CP_SECTION,
|
2010-11-11 04:40:25 +01:00
|
|
|
SectionKind::getMergeableConst16());
|
2009-07-28 05:13:23 +02: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-02 00:06:53 +02:00
|
|
|
TLSBSSSection = BSSSection;
|
2009-10-06 18:01:09 +02:00
|
|
|
|
|
|
|
ReadOnlySection =
|
2011-01-23 05:28:49 +01:00
|
|
|
Ctx.getELFSection(".cp.rodata", ELF::SHT_PROGBITS,
|
2011-01-23 05:43:11 +01:00
|
|
|
ELF::SHF_ALLOC |
|
|
|
|
ELF::XCORE_SHF_CP_SECTION,
|
2010-11-11 04:40:25 +01:00
|
|
|
SectionKind::getReadOnlyWithRel());
|
2009-08-18 19:58:17 +02: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 21:09:44 +02:00
|
|
|
}
|