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