Disable stack coloring with register for now. It's not able to set kill markers.
[llvm/avr.git] / lib / Target / XCore / XCoreTargetObjectFile.cpp
blob644b0249ce7a3f8d80ef1af6f5dd0d15704b6cc9
1 //===-- XCoreTargetObjectFile.cpp - XCore object files --------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
10 #include "XCoreTargetObjectFile.h"
11 #include "XCoreSubtarget.h"
12 #include "llvm/Target/TargetMachine.h"
13 using namespace llvm;
16 void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
17 TargetLoweringObjectFileELF::Initialize(Ctx, TM);
19 TextSection = getOrCreateSection("\t.text", true,
20 SectionKind::getText());
21 DataSection = getOrCreateSection("\t.dp.data", false,
22 SectionKind::getDataRel());
23 BSSSection = getOrCreateSection("\t.dp.bss", false,
24 SectionKind::getBSS());
26 // TLS globals are lowered in the backend to arrays indexed by the current
27 // thread id. After lowering they require no special handling by the linker
28 // and can be placed in the standard data / bss sections.
29 TLSDataSection = DataSection;
30 TLSBSSSection = BSSSection;
32 if (TM.getSubtarget<XCoreSubtarget>().isXS1A())
33 // FIXME: Why is this writable ("datarel")???
34 ReadOnlySection = getOrCreateSection("\t.dp.rodata", false,
35 SectionKind::getDataRel());
36 else
37 ReadOnlySection = getOrCreateSection("\t.cp.rodata", false,
38 SectionKind::getReadOnly());