mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-07 10:11:57 +00:00

should have no state that is specific to particular globals in the section. In this case, it means the removal of the "isWeak" and "ExplicitSection" bits. MCSection uses the new form of SectionKind. To handle isWeak, I introduced a new SectionInfo class, which is SectionKind + isWeak, and it is used by the part of the code generator that does classification of a specific global. The ExplicitSection disappears. It is moved onto MCSection as a new "IsDirective" bit. Since the Name of a section is either a section or directive, it makes sense to keep this bit in MCSection. Ultimately the creator of MCSection should canonicalize (e.g.) .text to whatever the actual section is. llvm-svn: 77803
40 lines
1.6 KiB
C++
40 lines
1.6 KiB
C++
//===-- 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"
|
|
#include "XCoreSubtarget.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
using namespace llvm;
|
|
|
|
|
|
void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
|
|
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
|
|
|
TextSection = getOrCreateSection("\t.text", true,
|
|
SectionKind::get(SectionKind::Text));
|
|
DataSection = getOrCreateSection("\t.dp.data", false,
|
|
SectionKind::get(SectionKind::DataRel));
|
|
BSSSection_ = getOrCreateSection("\t.dp.bss", false,
|
|
SectionKind::get(SectionKind::BSS));
|
|
|
|
// 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;
|
|
TLSBSSSection = BSSSection_;
|
|
|
|
if (TM.getSubtarget<XCoreSubtarget>().isXS1A())
|
|
// FIXME: Why is this writable ("datarel")???
|
|
ReadOnlySection = getOrCreateSection("\t.dp.rodata", false,
|
|
SectionKind::get(SectionKind::DataRel));
|
|
else
|
|
ReadOnlySection = getOrCreateSection("\t.cp.rodata", false,
|
|
SectionKind::get(SectionKind::ReadOnly));
|
|
}
|