blob: 094e837f6f9a118dbb642b56342cae604484d318 [file] [log] [blame]
Chris Lattnerf0144122009-07-28 03:13:23 +00001//===-- llvm/Target/TargetLoweringObjectFile.cpp - Object File Info -------===//
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//===----------------------------------------------------------------------===//
9//
10// This file implements classes used to handle lowerings specific to common
11// object file formats.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Target/TargetLoweringObjectFile.h"
16#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
Dan Gohmanffef8ac2009-08-11 16:02:12 +000018#include "llvm/Function.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000019#include "llvm/GlobalVariable.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000020#include "llvm/MC/MCContext.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000021#include "llvm/MC/MCSectionMachO.h"
Chris Lattner5277b222009-08-08 20:43:12 +000022#include "llvm/Target/TargetAsmInfo.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000023#include "llvm/Target/TargetData.h"
Chris Lattner5277b222009-08-08 20:43:12 +000024#include "llvm/Target/TargetMachine.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000025#include "llvm/Target/TargetOptions.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000026#include "llvm/Support/Mangler.h"
Chris Lattner5dc47ff2009-08-12 23:55:02 +000027#include "llvm/ADT/SmallString.h"
Chris Lattnerf0144122009-07-28 03:13:23 +000028#include "llvm/ADT/StringExtras.h"
29using namespace llvm;
30
31//===----------------------------------------------------------------------===//
32// Generic Code
33//===----------------------------------------------------------------------===//
34
Chris Lattnera87dea42009-07-31 18:48:30 +000035TargetLoweringObjectFile::TargetLoweringObjectFile() : Ctx(0) {
Chris Lattnerf0144122009-07-28 03:13:23 +000036 TextSection = 0;
37 DataSection = 0;
Chris Lattner82458382009-08-01 21:56:13 +000038 BSSSection = 0;
Chris Lattnerf0144122009-07-28 03:13:23 +000039 ReadOnlySection = 0;
Chris Lattner80ec2792009-08-02 00:34:36 +000040 StaticCtorSection = 0;
41 StaticDtorSection = 0;
Chris Lattnerd5bbb072009-08-02 01:34:32 +000042 LSDASection = 0;
Chris Lattner35039ac2009-08-02 06:52:36 +000043 EHFrameSection = 0;
Chris Lattner18a4c162009-08-02 07:24:22 +000044
45 DwarfAbbrevSection = 0;
46 DwarfInfoSection = 0;
47 DwarfLineSection = 0;
48 DwarfFrameSection = 0;
49 DwarfPubNamesSection = 0;
50 DwarfPubTypesSection = 0;
51 DwarfDebugInlineSection = 0;
52 DwarfStrSection = 0;
53 DwarfLocSection = 0;
54 DwarfARangesSection = 0;
55 DwarfRangesSection = 0;
56 DwarfMacroInfoSection = 0;
Chris Lattnerf0144122009-07-28 03:13:23 +000057}
58
59TargetLoweringObjectFile::~TargetLoweringObjectFile() {
60}
61
62static bool isSuitableForBSS(const GlobalVariable *GV) {
63 Constant *C = GV->getInitializer();
64
65 // Must have zero initializer.
66 if (!C->isNullValue())
67 return false;
68
69 // Leave constant zeros in readonly constant sections, so they can be shared.
70 if (GV->isConstant())
71 return false;
72
73 // If the global has an explicit section specified, don't put it in BSS.
74 if (!GV->getSection().empty())
75 return false;
76
77 // If -nozero-initialized-in-bss is specified, don't ever use BSS.
78 if (NoZerosInBSS)
79 return false;
80
81 // Otherwise, put it in BSS!
82 return true;
83}
84
Chris Lattner1850e5a2009-08-04 16:13:09 +000085/// IsNullTerminatedString - Return true if the specified constant (which is
86/// known to have a type that is an array of 1/2/4 byte elements) ends with a
87/// nul value and contains no other nuls in it.
88static bool IsNullTerminatedString(const Constant *C) {
89 const ArrayType *ATy = cast<ArrayType>(C->getType());
90
Chris Lattnerf0144122009-07-28 03:13:23 +000091 // First check: is we have constant array of i8 terminated with zero
Chris Lattner1850e5a2009-08-04 16:13:09 +000092 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(C)) {
93 if (ATy->getNumElements() == 0) return false;
94
95 ConstantInt *Null =
96 dyn_cast<ConstantInt>(CVA->getOperand(ATy->getNumElements()-1));
97 if (Null == 0 || Null->getZExtValue() != 0)
98 return false; // Not null terminated.
99
100 // Verify that the null doesn't occur anywhere else in the string.
101 for (unsigned i = 0, e = ATy->getNumElements()-1; i != e; ++i)
102 // Reject constantexpr elements etc.
103 if (!isa<ConstantInt>(CVA->getOperand(i)) ||
104 CVA->getOperand(i) == Null)
105 return false;
Chris Lattnerf0144122009-07-28 03:13:23 +0000106 return true;
Chris Lattner1850e5a2009-08-04 16:13:09 +0000107 }
Chris Lattnerf0144122009-07-28 03:13:23 +0000108
109 // Another possibility: [1 x i8] zeroinitializer
110 if (isa<ConstantAggregateZero>(C))
Chris Lattner1850e5a2009-08-04 16:13:09 +0000111 return ATy->getNumElements() == 1;
Chris Lattnerf0144122009-07-28 03:13:23 +0000112
113 return false;
114}
115
Chris Lattner58bed8f2009-08-05 04:25:40 +0000116/// getKindForGlobal - This is a top-level target-independent classifier for
Chris Lattner968ff112009-08-01 21:11:14 +0000117/// a global variable. Given an global variable and information from TM, it
118/// classifies the global in a variety of ways that make various target
119/// implementations simpler. The target implementation is free to ignore this
120/// extra info of course.
Chris Lattner58bed8f2009-08-05 04:25:40 +0000121SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV,
122 const TargetMachine &TM){
123 assert(!GV->isDeclaration() && !GV->hasAvailableExternallyLinkage() &&
124 "Can only be used for global definitions");
125
Chris Lattnerf0144122009-07-28 03:13:23 +0000126 Reloc::Model ReloModel = TM.getRelocationModel();
127
128 // Early exit - functions should be always in text sections.
129 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
130 if (GVar == 0)
Chris Lattner27981192009-08-01 23:57:16 +0000131 return SectionKind::getText();
Chris Lattnerf0144122009-07-28 03:13:23 +0000132
133 // Handle thread-local data first.
134 if (GVar->isThreadLocal()) {
135 if (isSuitableForBSS(GVar))
Chris Lattner27981192009-08-01 23:57:16 +0000136 return SectionKind::getThreadBSS();
137 return SectionKind::getThreadData();
Chris Lattnerf0144122009-07-28 03:13:23 +0000138 }
139
140 // Variable can be easily put to BSS section.
141 if (isSuitableForBSS(GVar))
Chris Lattner27981192009-08-01 23:57:16 +0000142 return SectionKind::getBSS();
Chris Lattnerf0144122009-07-28 03:13:23 +0000143
144 Constant *C = GVar->getInitializer();
145
146 // If the global is marked constant, we can put it into a mergable section,
147 // a mergable string section, or general .data if it contains relocations.
148 if (GVar->isConstant()) {
149 // If the initializer for the global contains something that requires a
150 // relocation, then we may have to drop this into a wriable data section
151 // even though it is marked const.
152 switch (C->getRelocationInfo()) {
153 default: llvm_unreachable("unknown relocation info kind");
154 case Constant::NoRelocation:
155 // If initializer is a null-terminated string, put it in a "cstring"
Chris Lattner1850e5a2009-08-04 16:13:09 +0000156 // section of the right width.
157 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
158 if (const IntegerType *ITy =
159 dyn_cast<IntegerType>(ATy->getElementType())) {
160 if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 ||
161 ITy->getBitWidth() == 32) &&
162 IsNullTerminatedString(C)) {
163 if (ITy->getBitWidth() == 8)
164 return SectionKind::getMergeable1ByteCString();
165 if (ITy->getBitWidth() == 16)
166 return SectionKind::getMergeable2ByteCString();
167
168 assert(ITy->getBitWidth() == 32 && "Unknown width");
169 return SectionKind::getMergeable4ByteCString();
170 }
171 }
172 }
Chris Lattner3b24c012009-08-04 05:35:56 +0000173
Chris Lattnerf0144122009-07-28 03:13:23 +0000174 // Otherwise, just drop it into a mergable constant section. If we have
175 // a section for this size, use it, otherwise use the arbitrary sized
176 // mergable section.
177 switch (TM.getTargetData()->getTypeAllocSize(C->getType())) {
Chris Lattner27981192009-08-01 23:57:16 +0000178 case 4: return SectionKind::getMergeableConst4();
179 case 8: return SectionKind::getMergeableConst8();
180 case 16: return SectionKind::getMergeableConst16();
181 default: return SectionKind::getMergeableConst();
Chris Lattnerf0144122009-07-28 03:13:23 +0000182 }
183
184 case Constant::LocalRelocation:
185 // In static relocation model, the linker will resolve all addresses, so
186 // the relocation entries will actually be constants by the time the app
187 // starts up. However, we can't put this into a mergable section, because
188 // the linker doesn't take relocations into consideration when it tries to
189 // merge entries in the section.
190 if (ReloModel == Reloc::Static)
Chris Lattner27981192009-08-01 23:57:16 +0000191 return SectionKind::getReadOnly();
Chris Lattnerf0144122009-07-28 03:13:23 +0000192
193 // Otherwise, the dynamic linker needs to fix it up, put it in the
194 // writable data.rel.local section.
Chris Lattner27981192009-08-01 23:57:16 +0000195 return SectionKind::getReadOnlyWithRelLocal();
Chris Lattnerf0144122009-07-28 03:13:23 +0000196
197 case Constant::GlobalRelocations:
198 // In static relocation model, the linker will resolve all addresses, so
199 // the relocation entries will actually be constants by the time the app
200 // starts up. However, we can't put this into a mergable section, because
201 // the linker doesn't take relocations into consideration when it tries to
202 // merge entries in the section.
203 if (ReloModel == Reloc::Static)
Chris Lattner27981192009-08-01 23:57:16 +0000204 return SectionKind::getReadOnly();
Chris Lattnerf0144122009-07-28 03:13:23 +0000205
206 // Otherwise, the dynamic linker needs to fix it up, put it in the
207 // writable data.rel section.
Chris Lattner27981192009-08-01 23:57:16 +0000208 return SectionKind::getReadOnlyWithRel();
Chris Lattnerf0144122009-07-28 03:13:23 +0000209 }
210 }
211
212 // Okay, this isn't a constant. If the initializer for the global is going
213 // to require a runtime relocation by the dynamic linker, put it into a more
214 // specific section to improve startup time of the app. This coalesces these
215 // globals together onto fewer pages, improving the locality of the dynamic
216 // linker.
217 if (ReloModel == Reloc::Static)
Chris Lattner27981192009-08-01 23:57:16 +0000218 return SectionKind::getDataNoRel();
Chris Lattnerf0144122009-07-28 03:13:23 +0000219
220 switch (C->getRelocationInfo()) {
221 default: llvm_unreachable("unknown relocation info kind");
222 case Constant::NoRelocation:
Chris Lattner27981192009-08-01 23:57:16 +0000223 return SectionKind::getDataNoRel();
Chris Lattnerf0144122009-07-28 03:13:23 +0000224 case Constant::LocalRelocation:
Chris Lattner27981192009-08-01 23:57:16 +0000225 return SectionKind::getDataRelLocal();
Chris Lattnerf0144122009-07-28 03:13:23 +0000226 case Constant::GlobalRelocations:
Chris Lattner27981192009-08-01 23:57:16 +0000227 return SectionKind::getDataRel();
Chris Lattnerf0144122009-07-28 03:13:23 +0000228 }
229}
230
231/// SectionForGlobal - This method computes the appropriate section to emit
232/// the specified global variable or function definition. This should not
233/// be passed external (or available externally) globals.
Chris Lattnera87dea42009-07-31 18:48:30 +0000234const MCSection *TargetLoweringObjectFile::
Chris Lattner58bed8f2009-08-05 04:25:40 +0000235SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang,
Chris Lattnere53a6002009-07-29 05:09:30 +0000236 const TargetMachine &TM) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000237 // Select section name.
Chris Lattner24f654c2009-08-06 16:39:58 +0000238 if (GV->hasSection())
239 return getExplicitSectionGlobal(GV, Kind, Mang, TM);
240
Chris Lattnerf0144122009-07-28 03:13:23 +0000241
242 // Use default section depending on the 'type' of global
Chris Lattnerf9650c02009-08-01 21:46:23 +0000243 return SelectSectionForGlobal(GV, Kind, Mang, TM);
Chris Lattnerf0144122009-07-28 03:13:23 +0000244}
245
Chris Lattner58bed8f2009-08-05 04:25:40 +0000246
Chris Lattnerf0144122009-07-28 03:13:23 +0000247// Lame default implementation. Calculate the section name for global.
Chris Lattnera87dea42009-07-31 18:48:30 +0000248const MCSection *
Chris Lattnerf0144122009-07-28 03:13:23 +0000249TargetLoweringObjectFile::SelectSectionForGlobal(const GlobalValue *GV,
Chris Lattnerf9650c02009-08-01 21:46:23 +0000250 SectionKind Kind,
Chris Lattnere53a6002009-07-29 05:09:30 +0000251 Mangler *Mang,
Chris Lattnerf0144122009-07-28 03:13:23 +0000252 const TargetMachine &TM) const{
Chris Lattnerf9650c02009-08-01 21:46:23 +0000253 assert(!Kind.isThreadLocal() && "Doesn't support TLS");
Chris Lattnerf0144122009-07-28 03:13:23 +0000254
Chris Lattnerf9650c02009-08-01 21:46:23 +0000255 if (Kind.isText())
Chris Lattnerf0144122009-07-28 03:13:23 +0000256 return getTextSection();
257
Chris Lattner82458382009-08-01 21:56:13 +0000258 if (Kind.isBSS() && BSSSection != 0)
259 return BSSSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000260
Chris Lattnerf9650c02009-08-01 21:46:23 +0000261 if (Kind.isReadOnly() && ReadOnlySection != 0)
Chris Lattnerf0144122009-07-28 03:13:23 +0000262 return ReadOnlySection;
263
264 return getDataSection();
265}
266
Chris Lattner83d77fa2009-08-01 23:46:12 +0000267/// getSectionForConstant - Given a mergable constant with the
Chris Lattnerf0144122009-07-28 03:13:23 +0000268/// specified size and relocation information, return a section that it
269/// should be placed in.
Chris Lattnera87dea42009-07-31 18:48:30 +0000270const MCSection *
Chris Lattner83d77fa2009-08-01 23:46:12 +0000271TargetLoweringObjectFile::getSectionForConstant(SectionKind Kind) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000272 if (Kind.isReadOnly() && ReadOnlySection != 0)
273 return ReadOnlySection;
274
275 return DataSection;
276}
277
278
Chris Lattnerf0144122009-07-28 03:13:23 +0000279
280//===----------------------------------------------------------------------===//
281// ELF
282//===----------------------------------------------------------------------===//
283
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000284const MCSection *TargetLoweringObjectFileELF::
Chris Lattner0c0cb712009-08-08 20:22:20 +0000285getELFSection(const char *Name, bool isDirective, SectionKind Kind) const {
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000286 if (MCSection *S = getContext().GetSection(Name))
287 return S;
Chris Lattner7c599d02009-08-08 20:52:13 +0000288 return MCSectionELF::Create(Name, isDirective, Kind, getContext());
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000289}
290
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000291void TargetLoweringObjectFileELF::Initialize(MCContext &Ctx,
292 const TargetMachine &TM) {
Chris Lattnera87dea42009-07-31 18:48:30 +0000293 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattnerf0144122009-07-28 03:13:23 +0000294 if (!HasCrazyBSS)
Chris Lattner0c0cb712009-08-08 20:22:20 +0000295 BSSSection = getELFSection("\t.bss", true, SectionKind::getBSS());
Chris Lattnerf0144122009-07-28 03:13:23 +0000296 else
297 // PPC/Linux doesn't support the .bss directive, it needs .section .bss.
298 // FIXME: Does .section .bss work everywhere??
Chris Lattner968ff112009-08-01 21:11:14 +0000299 // FIXME2: this should just be handle by the section printer. We should get
300 // away from syntactic view of the sections and MCSection should just be a
301 // semantic view.
Chris Lattner0c0cb712009-08-08 20:22:20 +0000302 BSSSection = getELFSection("\t.bss", false, SectionKind::getBSS());
Chris Lattnerf0144122009-07-28 03:13:23 +0000303
304
Chris Lattner0c0cb712009-08-08 20:22:20 +0000305 TextSection = getELFSection("\t.text", true, SectionKind::getText());
306 DataSection = getELFSection("\t.data", true, SectionKind::getDataRel());
Chris Lattnerf0144122009-07-28 03:13:23 +0000307 ReadOnlySection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000308 getELFSection("\t.rodata", false, SectionKind::getReadOnly());
Chris Lattnerf0144122009-07-28 03:13:23 +0000309 TLSDataSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000310 getELFSection("\t.tdata", false, SectionKind::getThreadData());
Chris Lattner3b24c012009-08-04 05:35:56 +0000311
Chris Lattner0c0cb712009-08-08 20:22:20 +0000312 TLSBSSSection = getELFSection("\t.tbss", false,
Chris Lattner27981192009-08-01 23:57:16 +0000313 SectionKind::getThreadBSS());
Chris Lattnerf0144122009-07-28 03:13:23 +0000314
Chris Lattner0c0cb712009-08-08 20:22:20 +0000315 DataRelSection = getELFSection("\t.data.rel", false,
Chris Lattner27981192009-08-01 23:57:16 +0000316 SectionKind::getDataRel());
Chris Lattner0c0cb712009-08-08 20:22:20 +0000317 DataRelLocalSection = getELFSection("\t.data.rel.local", false,
Chris Lattner27981192009-08-01 23:57:16 +0000318 SectionKind::getDataRelLocal());
Chris Lattner0c0cb712009-08-08 20:22:20 +0000319 DataRelROSection = getELFSection("\t.data.rel.ro", false,
Chris Lattner27981192009-08-01 23:57:16 +0000320 SectionKind::getReadOnlyWithRel());
Chris Lattnerf0144122009-07-28 03:13:23 +0000321 DataRelROLocalSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000322 getELFSection("\t.data.rel.ro.local", false,
Chris Lattner27981192009-08-01 23:57:16 +0000323 SectionKind::getReadOnlyWithRelLocal());
Chris Lattnerf0144122009-07-28 03:13:23 +0000324
Chris Lattner0c0cb712009-08-08 20:22:20 +0000325 MergeableConst4Section = getELFSection(".rodata.cst4", false,
Chris Lattner27981192009-08-01 23:57:16 +0000326 SectionKind::getMergeableConst4());
Chris Lattner0c0cb712009-08-08 20:22:20 +0000327 MergeableConst8Section = getELFSection(".rodata.cst8", false,
Chris Lattner27981192009-08-01 23:57:16 +0000328 SectionKind::getMergeableConst8());
Chris Lattner0c0cb712009-08-08 20:22:20 +0000329 MergeableConst16Section = getELFSection(".rodata.cst16", false,
Chris Lattner27981192009-08-01 23:57:16 +0000330 SectionKind::getMergeableConst16());
Chris Lattner80ec2792009-08-02 00:34:36 +0000331
332 StaticCtorSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000333 getELFSection(".ctors", false, SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000334 StaticDtorSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000335 getELFSection(".dtors", false, SectionKind::getDataRel());
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000336
Chris Lattner18a4c162009-08-02 07:24:22 +0000337 // Exception Handling Sections.
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000338
339 // FIXME: We're emitting LSDA info into a readonly section on ELF, even though
340 // it contains relocatable pointers. In PIC mode, this is probably a big
341 // runtime hit for C++ apps. Either the contents of the LSDA need to be
342 // adjusted or this should be a data section.
343 LSDASection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000344 getELFSection(".gcc_except_table", false, SectionKind::getReadOnly());
Chris Lattner35039ac2009-08-02 06:52:36 +0000345 EHFrameSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000346 getELFSection(".eh_frame", false, SectionKind::getDataRel());
Chris Lattner18a4c162009-08-02 07:24:22 +0000347
348 // Debug Info Sections.
349 DwarfAbbrevSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000350 getELFSection(".debug_abbrev", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000351 DwarfInfoSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000352 getELFSection(".debug_info", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000353 DwarfLineSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000354 getELFSection(".debug_line", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000355 DwarfFrameSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000356 getELFSection(".debug_frame", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000357 DwarfPubNamesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000358 getELFSection(".debug_pubnames", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000359 DwarfPubTypesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000360 getELFSection(".debug_pubtypes", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000361 DwarfStrSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000362 getELFSection(".debug_str", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000363 DwarfLocSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000364 getELFSection(".debug_loc", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000365 DwarfARangesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000366 getELFSection(".debug_aranges", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000367 DwarfRangesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000368 getELFSection(".debug_ranges", false, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000369 DwarfMacroInfoSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000370 getELFSection(".debug_macinfo", false, SectionKind::getMetadata());
Chris Lattnerf0144122009-07-28 03:13:23 +0000371}
372
373
Chris Lattner24f654c2009-08-06 16:39:58 +0000374static SectionKind
375getELFKindForNamedSection(const char *Name, SectionKind K) {
Chris Lattnerf0144122009-07-28 03:13:23 +0000376 if (Name[0] != '.') return K;
377
378 // Some lame default implementation based on some magic section names.
379 if (strncmp(Name, ".gnu.linkonce.b.", 16) == 0 ||
380 strncmp(Name, ".llvm.linkonce.b.", 17) == 0 ||
381 strncmp(Name, ".gnu.linkonce.sb.", 17) == 0 ||
382 strncmp(Name, ".llvm.linkonce.sb.", 18) == 0)
Chris Lattner27981192009-08-01 23:57:16 +0000383 return SectionKind::getBSS();
Chris Lattnerf0144122009-07-28 03:13:23 +0000384
385 if (strcmp(Name, ".tdata") == 0 ||
386 strncmp(Name, ".tdata.", 7) == 0 ||
387 strncmp(Name, ".gnu.linkonce.td.", 17) == 0 ||
388 strncmp(Name, ".llvm.linkonce.td.", 18) == 0)
Chris Lattner27981192009-08-01 23:57:16 +0000389 return SectionKind::getThreadData();
Chris Lattnerf0144122009-07-28 03:13:23 +0000390
391 if (strcmp(Name, ".tbss") == 0 ||
392 strncmp(Name, ".tbss.", 6) == 0 ||
393 strncmp(Name, ".gnu.linkonce.tb.", 17) == 0 ||
394 strncmp(Name, ".llvm.linkonce.tb.", 18) == 0)
Chris Lattner27981192009-08-01 23:57:16 +0000395 return SectionKind::getThreadBSS();
Chris Lattnerf0144122009-07-28 03:13:23 +0000396
397 return K;
398}
399
Chris Lattner24f654c2009-08-06 16:39:58 +0000400const MCSection *TargetLoweringObjectFileELF::
401getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
402 Mangler *Mang, const TargetMachine &TM) const {
403 // Infer section flags from the section name if we can.
404 Kind = getELFKindForNamedSection(GV->getSection().c_str(), Kind);
405
Chris Lattner0c0cb712009-08-08 20:22:20 +0000406 return getELFSection(GV->getSection().c_str(), false, Kind);
Chris Lattner24f654c2009-08-06 16:39:58 +0000407}
Chris Lattnerf0144122009-07-28 03:13:23 +0000408
409static const char *getSectionPrefixForUniqueGlobal(SectionKind Kind) {
410 if (Kind.isText()) return ".gnu.linkonce.t.";
411 if (Kind.isReadOnly()) return ".gnu.linkonce.r.";
412
413 if (Kind.isThreadData()) return ".gnu.linkonce.td.";
414 if (Kind.isThreadBSS()) return ".gnu.linkonce.tb.";
415
416 if (Kind.isBSS()) return ".gnu.linkonce.b.";
417 if (Kind.isDataNoRel()) return ".gnu.linkonce.d.";
418 if (Kind.isDataRelLocal()) return ".gnu.linkonce.d.rel.local.";
419 if (Kind.isDataRel()) return ".gnu.linkonce.d.rel.";
420 if (Kind.isReadOnlyWithRelLocal()) return ".gnu.linkonce.d.rel.ro.local.";
421
422 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
423 return ".gnu.linkonce.d.rel.ro.";
424}
425
Chris Lattnera87dea42009-07-31 18:48:30 +0000426const MCSection *TargetLoweringObjectFileELF::
Chris Lattnerf9650c02009-08-01 21:46:23 +0000427SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattnere53a6002009-07-29 05:09:30 +0000428 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000429
430 // If this global is linkonce/weak and the target handles this by emitting it
431 // into a 'uniqued' section name, create and return the section now.
Chris Lattner27602b82009-08-01 21:42:58 +0000432 if (GV->isWeakForLinker()) {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000433 const char *Prefix = getSectionPrefixForUniqueGlobal(Kind);
Chris Lattnerb8f396b2009-07-29 05:20:33 +0000434 std::string Name = Mang->makeNameProper(GV->getNameStr());
Chris Lattner0c0cb712009-08-08 20:22:20 +0000435 return getELFSection((Prefix+Name).c_str(), false, Kind);
Chris Lattnerf0144122009-07-28 03:13:23 +0000436 }
437
Chris Lattnerf9650c02009-08-01 21:46:23 +0000438 if (Kind.isText()) return TextSection;
Chris Lattnere53a6002009-07-29 05:09:30 +0000439
Chris Lattner3b24c012009-08-04 05:35:56 +0000440 if (Kind.isMergeable1ByteCString() ||
441 Kind.isMergeable2ByteCString() ||
442 Kind.isMergeable4ByteCString()) {
Chris Lattnerf0144122009-07-28 03:13:23 +0000443
Chris Lattner067fe1a2009-07-29 04:54:38 +0000444 // We also need alignment here.
445 // FIXME: this is getting the alignment of the character, not the
446 // alignment of the global!
447 unsigned Align =
448 TM.getTargetData()->getPreferredAlignment(cast<GlobalVariable>(GV));
Chris Lattnerf0144122009-07-28 03:13:23 +0000449
Chris Lattner7e88a502009-08-04 16:19:50 +0000450 const char *SizeSpec = ".rodata.str1.";
Chris Lattner3b24c012009-08-04 05:35:56 +0000451 if (Kind.isMergeable2ByteCString())
Chris Lattner7e88a502009-08-04 16:19:50 +0000452 SizeSpec = ".rodata.str2.";
Chris Lattner3b24c012009-08-04 05:35:56 +0000453 else if (Kind.isMergeable4ByteCString())
Chris Lattner7e88a502009-08-04 16:19:50 +0000454 SizeSpec = ".rodata.str4.";
Chris Lattner3b24c012009-08-04 05:35:56 +0000455 else
456 assert(Kind.isMergeable1ByteCString() && "unknown string width");
457
458
Chris Lattner7e88a502009-08-04 16:19:50 +0000459 std::string Name = SizeSpec + utostr(Align);
Chris Lattner0c0cb712009-08-08 20:22:20 +0000460 return getELFSection(Name.c_str(), false, Kind);
Chris Lattnerf0144122009-07-28 03:13:23 +0000461 }
462
Chris Lattnerf9650c02009-08-01 21:46:23 +0000463 if (Kind.isMergeableConst()) {
464 if (Kind.isMergeableConst4())
Chris Lattnerf0144122009-07-28 03:13:23 +0000465 return MergeableConst4Section;
Chris Lattnerf9650c02009-08-01 21:46:23 +0000466 if (Kind.isMergeableConst8())
Chris Lattnerf0144122009-07-28 03:13:23 +0000467 return MergeableConst8Section;
Chris Lattnerf9650c02009-08-01 21:46:23 +0000468 if (Kind.isMergeableConst16())
Chris Lattnerf0144122009-07-28 03:13:23 +0000469 return MergeableConst16Section;
470 return ReadOnlySection; // .const
471 }
472
Chris Lattnerf9650c02009-08-01 21:46:23 +0000473 if (Kind.isReadOnly()) return ReadOnlySection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000474
Chris Lattnerf9650c02009-08-01 21:46:23 +0000475 if (Kind.isThreadData()) return TLSDataSection;
476 if (Kind.isThreadBSS()) return TLSBSSSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000477
Chris Lattner82458382009-08-01 21:56:13 +0000478 if (Kind.isBSS()) return BSSSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000479
Chris Lattnerf9650c02009-08-01 21:46:23 +0000480 if (Kind.isDataNoRel()) return DataSection;
481 if (Kind.isDataRelLocal()) return DataRelLocalSection;
482 if (Kind.isDataRel()) return DataRelSection;
483 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000484
Chris Lattnerf9650c02009-08-01 21:46:23 +0000485 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
Chris Lattnerf0144122009-07-28 03:13:23 +0000486 return DataRelROSection;
487}
488
Chris Lattner83d77fa2009-08-01 23:46:12 +0000489/// getSectionForConstant - Given a mergeable constant with the
Chris Lattnerf0144122009-07-28 03:13:23 +0000490/// specified size and relocation information, return a section that it
491/// should be placed in.
Chris Lattnera87dea42009-07-31 18:48:30 +0000492const MCSection *TargetLoweringObjectFileELF::
Chris Lattner83d77fa2009-08-01 23:46:12 +0000493getSectionForConstant(SectionKind Kind) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000494 if (Kind.isMergeableConst4())
495 return MergeableConst4Section;
496 if (Kind.isMergeableConst8())
497 return MergeableConst8Section;
498 if (Kind.isMergeableConst16())
499 return MergeableConst16Section;
500 if (Kind.isReadOnly())
501 return ReadOnlySection;
502
503 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
504 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
505 return DataRelROSection;
506}
507
508//===----------------------------------------------------------------------===//
509// MachO
510//===----------------------------------------------------------------------===//
511
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000512typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
Chris Lattner0c0cb712009-08-08 20:22:20 +0000513
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000514TargetLoweringObjectFileMachO::~TargetLoweringObjectFileMachO() {
515 // If we have the MachO uniquing map, free it.
516 delete (MachOUniqueMapTy*)UniquingMap;
517}
518
519
520const MCSectionMachO *TargetLoweringObjectFileMachO::
Chris Lattnerd3c4486f2009-08-12 23:34:27 +0000521getMachOSection(const StringRef &Segment, const StringRef &Section,
Chris Lattnerff4bc462009-08-10 01:39:42 +0000522 unsigned TypeAndAttributes,
523 unsigned Reserved2, SectionKind Kind) const {
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000524 // We unique sections by their segment/section pair. The returned section
525 // may not have the same flags as the requested section, if so this should be
526 // diagnosed by the client as an error.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000527
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000528 // Create the map if it doesn't already exist.
529 if (UniquingMap == 0)
530 UniquingMap = new MachOUniqueMapTy();
531 MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)UniquingMap;
532
533 // Form the name to look up.
534 SmallString<64> Name;
535 Name.append(Segment.begin(), Segment.end());
536 Name.push_back(',');
537 Name.append(Section.begin(), Section.end());
538
539 // Do the lookup, if we have a hit, return it.
540 const MCSectionMachO *&Entry = Map[StringRef(Name.data(), Name.size())];
541 if (Entry) return Entry;
542
543 // Otherwise, return a new section.
544 return Entry = MCSectionMachO::Create(Segment, Section, TypeAndAttributes,
545 Reserved2, Kind, getContext());
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000546}
547
Chris Lattner11e96572009-08-03 21:53:27 +0000548
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000549void TargetLoweringObjectFileMachO::Initialize(MCContext &Ctx,
550 const TargetMachine &TM) {
Chris Lattnera87dea42009-07-31 18:48:30 +0000551 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattnerf0144122009-07-28 03:13:23 +0000552
Chris Lattnerff4bc462009-08-10 01:39:42 +0000553 TextSection // .text
554 = getMachOSection("__TEXT", "__text",
555 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
556 SectionKind::getText());
557 DataSection // .data
558 = getMachOSection("__DATA", "__data", 0, SectionKind::getDataRel());
559
560 CStringSection // .cstring
561 = getMachOSection("__TEXT", "__cstring", MCSectionMachO::S_CSTRING_LITERALS,
562 SectionKind::getMergeable1ByteCString());
563 UStringSection
564 = getMachOSection("__TEXT","__ustring", 0,
565 SectionKind::getMergeable2ByteCString());
566 FourByteConstantSection // .literal4
567 = getMachOSection("__TEXT", "__literal4", MCSectionMachO::S_4BYTE_LITERALS,
568 SectionKind::getMergeableConst4());
569 EightByteConstantSection // .literal8
570 = getMachOSection("__TEXT", "__literal8", MCSectionMachO::S_8BYTE_LITERALS,
571 SectionKind::getMergeableConst8());
Chris Lattner4bb253c2009-07-28 17:50:28 +0000572
573 // ld_classic doesn't support .literal16 in 32-bit mode, and ld64 falls back
574 // to using it in -static mode.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000575 SixteenByteConstantSection = 0;
Chris Lattner4bb253c2009-07-28 17:50:28 +0000576 if (TM.getRelocationModel() != Reloc::Static &&
577 TM.getTargetData()->getPointerSize() == 32)
Chris Lattnerff4bc462009-08-10 01:39:42 +0000578 SixteenByteConstantSection = // .literal16
579 getMachOSection("__TEXT", "__literal16",MCSectionMachO::S_16BYTE_LITERALS,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000580 SectionKind::getMergeableConst16());
Chris Lattnerf0144122009-07-28 03:13:23 +0000581
Chris Lattnerff4bc462009-08-10 01:39:42 +0000582 ReadOnlySection // .const
583 = getMachOSection("__TEXT", "__const", 0, SectionKind::getReadOnly());
Chris Lattnerf0144122009-07-28 03:13:23 +0000584
Chris Lattnerff4bc462009-08-10 01:39:42 +0000585 TextCoalSection
586 = getMachOSection("__TEXT", "__textcoal_nt",
587 MCSectionMachO::S_COALESCED |
588 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
589 SectionKind::getText());
590 ConstTextCoalSection
591 = getMachOSection("__TEXT", "__const_coal", MCSectionMachO::S_COALESCED,
592 SectionKind::getText());
593 ConstDataCoalSection
594 = getMachOSection("__DATA","__const_coal", MCSectionMachO::S_COALESCED,
595 SectionKind::getText());
596 ConstDataSection // .const_data
597 = getMachOSection("__DATA", "__const", 0,
598 SectionKind::getReadOnlyWithRel());
599 DataCoalSection
600 = getMachOSection("__DATA","__datacoal_nt", MCSectionMachO::S_COALESCED,
601 SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000602
Chris Lattnere309cfa2009-08-13 00:05:07 +0000603
604 LazySymbolPointerSection
605 = getMachOSection("__DATA", "__la_symbol_ptr",
606 MCSectionMachO::S_LAZY_SYMBOL_POINTERS,
607 SectionKind::getMetadata());
608 NonLazySymbolPointerSection
609 = getMachOSection("__DATA", "__nl_symbol_ptr",
610 MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
611 SectionKind::getMetadata());
612
Chris Lattner80ec2792009-08-02 00:34:36 +0000613 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000614 StaticCtorSection
615 = getMachOSection("__TEXT", "__constructor", 0,SectionKind::getDataRel());
616 StaticDtorSection
617 = getMachOSection("__TEXT", "__destructor", 0, SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000618 } else {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000619 StaticCtorSection
620 = getMachOSection("__DATA", "__mod_init_func",
621 MCSectionMachO::S_MOD_INIT_FUNC_POINTERS,
622 SectionKind::getDataRel());
623 StaticDtorSection
624 = getMachOSection("__DATA", "__mod_term_func",
625 MCSectionMachO::S_MOD_TERM_FUNC_POINTERS,
626 SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000627 }
628
Chris Lattner18a4c162009-08-02 07:24:22 +0000629 // Exception Handling.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000630 LSDASection = getMachOSection("__DATA", "__gcc_except_tab", 0,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000631 SectionKind::getDataRel());
Chris Lattner35039ac2009-08-02 06:52:36 +0000632 EHFrameSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000633 getMachOSection("__TEXT", "__eh_frame",
634 MCSectionMachO::S_COALESCED |
635 MCSectionMachO::S_ATTR_NO_TOC |
636 MCSectionMachO::S_ATTR_STRIP_STATIC_SYMS |
637 MCSectionMachO::S_ATTR_LIVE_SUPPORT,
638 SectionKind::getReadOnly());
Chris Lattner18a4c162009-08-02 07:24:22 +0000639
640 // Debug Information.
Chris Lattner18a4c162009-08-02 07:24:22 +0000641 DwarfAbbrevSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000642 getMachOSection("__DWARF", "__debug_abbrev", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000643 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000644 DwarfInfoSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000645 getMachOSection("__DWARF", "__debug_info", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000646 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000647 DwarfLineSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000648 getMachOSection("__DWARF", "__debug_line", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000649 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000650 DwarfFrameSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000651 getMachOSection("__DWARF", "__debug_frame", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000652 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000653 DwarfPubNamesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000654 getMachOSection("__DWARF", "__debug_pubnames", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000655 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000656 DwarfPubTypesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000657 getMachOSection("__DWARF", "__debug_pubtypes", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000658 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000659 DwarfStrSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000660 getMachOSection("__DWARF", "__debug_str", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000661 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000662 DwarfLocSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000663 getMachOSection("__DWARF", "__debug_loc", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000664 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000665 DwarfARangesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000666 getMachOSection("__DWARF", "__debug_aranges", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000667 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000668 DwarfRangesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000669 getMachOSection("__DWARF", "__debug_ranges", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000670 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000671 DwarfMacroInfoSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000672 getMachOSection("__DWARF", "__debug_macinfo", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000673 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000674 DwarfDebugInlineSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000675 getMachOSection("__DWARF", "__debug_inlined", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000676 SectionKind::getMetadata());
Chris Lattnerf0144122009-07-28 03:13:23 +0000677}
678
Chris Lattnera87dea42009-07-31 18:48:30 +0000679const MCSection *TargetLoweringObjectFileMachO::
Chris Lattner24f654c2009-08-06 16:39:58 +0000680getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
681 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000682 // Parse the section specifier and create it if valid.
683 StringRef Segment, Section;
684 unsigned TAA, StubSize;
685 std::string ErrorCode =
686 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
687 TAA, StubSize);
Chris Lattnere309cfa2009-08-13 00:05:07 +0000688 if (!ErrorCode.empty()) {
689 // If invalid, report the error with llvm_report_error.
690 llvm_report_error("Global variable '" + GV->getNameStr() +
691 "' has an invalid section specifier '" + GV->getSection()+
692 "': " + ErrorCode + ".");
693 // Fall back to dropping it into the data section.
694 return DataSection;
695 }
696
697 // Get the section.
698 const MCSectionMachO *S =
699 getMachOSection(Segment, Section, TAA, StubSize, Kind);
700
701 // Okay, now that we got the section, verify that the TAA & StubSize agree.
702 // If the user declared multiple globals with different section flags, we need
703 // to reject it here.
704 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
705 // If invalid, report the error with llvm_report_error.
706 llvm_report_error("Global variable '" + GV->getNameStr() +
707 "' section type or attributes does not match previous"
708 " section specifier");
709 }
Chris Lattnerff4bc462009-08-10 01:39:42 +0000710
711
Chris Lattnere309cfa2009-08-13 00:05:07 +0000712
713 return S;
Chris Lattner24f654c2009-08-06 16:39:58 +0000714}
715
716const MCSection *TargetLoweringObjectFileMachO::
Chris Lattnerf9650c02009-08-01 21:46:23 +0000717SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattnere53a6002009-07-29 05:09:30 +0000718 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000719 assert(!Kind.isThreadLocal() && "Darwin doesn't support TLS");
Chris Lattnerf0144122009-07-28 03:13:23 +0000720
Chris Lattnerf9650c02009-08-01 21:46:23 +0000721 if (Kind.isText())
Chris Lattner27602b82009-08-01 21:42:58 +0000722 return GV->isWeakForLinker() ? TextCoalSection : TextSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000723
724 // If this is weak/linkonce, put this in a coalescable section, either in text
725 // or data depending on if it is writable.
Chris Lattner27602b82009-08-01 21:42:58 +0000726 if (GV->isWeakForLinker()) {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000727 if (Kind.isReadOnly())
Chris Lattnerf0144122009-07-28 03:13:23 +0000728 return ConstTextCoalSection;
729 return DataCoalSection;
730 }
731
732 // FIXME: Alignment check should be handled by section classifier.
Chris Lattnerec409752009-08-04 16:27:13 +0000733 if (Kind.isMergeable1ByteCString() ||
734 Kind.isMergeable2ByteCString()) {
735 if (TM.getTargetData()->getPreferredAlignment(
736 cast<GlobalVariable>(GV)) < 32) {
737 if (Kind.isMergeable1ByteCString())
Chris Lattner82458382009-08-01 21:56:13 +0000738 return CStringSection;
Chris Lattnerec409752009-08-04 16:27:13 +0000739 assert(Kind.isMergeable2ByteCString());
740 return UStringSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000741 }
Chris Lattnerf0144122009-07-28 03:13:23 +0000742 }
743
Chris Lattnerf9650c02009-08-01 21:46:23 +0000744 if (Kind.isMergeableConst()) {
745 if (Kind.isMergeableConst4())
Chris Lattnerf0144122009-07-28 03:13:23 +0000746 return FourByteConstantSection;
Chris Lattnerf9650c02009-08-01 21:46:23 +0000747 if (Kind.isMergeableConst8())
Chris Lattnerf0144122009-07-28 03:13:23 +0000748 return EightByteConstantSection;
Chris Lattnerf9650c02009-08-01 21:46:23 +0000749 if (Kind.isMergeableConst16() && SixteenByteConstantSection)
Chris Lattnerf0144122009-07-28 03:13:23 +0000750 return SixteenByteConstantSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000751 }
Chris Lattnerec409752009-08-04 16:27:13 +0000752
753 // Otherwise, if it is readonly, but not something we can specially optimize,
754 // just drop it in .const.
Chris Lattnerf9650c02009-08-01 21:46:23 +0000755 if (Kind.isReadOnly())
Chris Lattnerf0144122009-07-28 03:13:23 +0000756 return ReadOnlySection;
757
758 // If this is marked const, put it into a const section. But if the dynamic
759 // linker needs to write to it, put it in the data segment.
Chris Lattnerf9650c02009-08-01 21:46:23 +0000760 if (Kind.isReadOnlyWithRel())
Chris Lattnerf0144122009-07-28 03:13:23 +0000761 return ConstDataSection;
762
763 // Otherwise, just drop the variable in the normal data section.
764 return DataSection;
765}
766
Chris Lattnera87dea42009-07-31 18:48:30 +0000767const MCSection *
Chris Lattner83d77fa2009-08-01 23:46:12 +0000768TargetLoweringObjectFileMachO::getSectionForConstant(SectionKind Kind) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000769 // If this constant requires a relocation, we have to put it in the data
770 // segment, not in the text segment.
771 if (Kind.isDataRel())
772 return ConstDataSection;
773
774 if (Kind.isMergeableConst4())
775 return FourByteConstantSection;
776 if (Kind.isMergeableConst8())
777 return EightByteConstantSection;
Chris Lattner4bb253c2009-07-28 17:50:28 +0000778 if (Kind.isMergeableConst16() && SixteenByteConstantSection)
Chris Lattnerf0144122009-07-28 03:13:23 +0000779 return SixteenByteConstantSection;
780 return ReadOnlySection; // .const
781}
782
Chris Lattner26630c12009-07-31 20:52:39 +0000783/// shouldEmitUsedDirectiveFor - This hook allows targets to selectively decide
784/// not to emit the UsedDirective for some symbols in llvm.used.
785// FIXME: REMOVE this (rdar://7071300)
786bool TargetLoweringObjectFileMachO::
787shouldEmitUsedDirectiveFor(const GlobalValue *GV, Mangler *Mang) const {
788 /// On Darwin, internally linked data beginning with "L" or "l" does not have
789 /// the directive emitted (this occurs in ObjC metadata).
790 if (!GV) return false;
791
792 // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix.
793 if (GV->hasLocalLinkage() && !isa<Function>(GV)) {
794 // FIXME: ObjC metadata is currently emitted as internal symbols that have
795 // \1L and \0l prefixes on them. Fix them to be Private/LinkerPrivate and
796 // this horrible hack can go away.
797 const std::string &Name = Mang->getMangledName(GV);
798 if (Name[0] == 'L' || Name[0] == 'l')
799 return false;
800 }
801
802 return true;
803}
804
805
Chris Lattnerf0144122009-07-28 03:13:23 +0000806//===----------------------------------------------------------------------===//
807// COFF
808//===----------------------------------------------------------------------===//
809
Chris Lattner0c0cb712009-08-08 20:22:20 +0000810
Chris Lattner11e96572009-08-03 21:53:27 +0000811const MCSection *TargetLoweringObjectFileCOFF::
Chris Lattner0c0cb712009-08-08 20:22:20 +0000812getCOFFSection(const char *Name, bool isDirective, SectionKind Kind) const {
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000813 if (MCSection *S = getContext().GetSection(Name))
814 return S;
Chris Lattner7c599d02009-08-08 20:52:13 +0000815 return MCSectionCOFF::Create(Name, isDirective, Kind, getContext());
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000816}
817
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000818void TargetLoweringObjectFileCOFF::Initialize(MCContext &Ctx,
819 const TargetMachine &TM) {
Chris Lattnera87dea42009-07-31 18:48:30 +0000820 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattner0c0cb712009-08-08 20:22:20 +0000821 TextSection = getCOFFSection("\t.text", true, SectionKind::getText());
822 DataSection = getCOFFSection("\t.data", true, SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000823 StaticCtorSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000824 getCOFFSection(".ctors", false, SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000825 StaticDtorSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000826 getCOFFSection(".dtors", false, SectionKind::getDataRel());
Chris Lattner18a4c162009-08-02 07:24:22 +0000827
828
829 // Debug info.
830 // FIXME: Don't use 'directive' mode here.
831 DwarfAbbrevSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000832 getCOFFSection("\t.section\t.debug_abbrev,\"dr\"",
833 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000834 DwarfInfoSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000835 getCOFFSection("\t.section\t.debug_info,\"dr\"",
836 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000837 DwarfLineSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000838 getCOFFSection("\t.section\t.debug_line,\"dr\"",
839 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000840 DwarfFrameSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000841 getCOFFSection("\t.section\t.debug_frame,\"dr\"",
842 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000843 DwarfPubNamesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000844 getCOFFSection("\t.section\t.debug_pubnames,\"dr\"",
845 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000846 DwarfPubTypesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000847 getCOFFSection("\t.section\t.debug_pubtypes,\"dr\"",
848 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000849 DwarfStrSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000850 getCOFFSection("\t.section\t.debug_str,\"dr\"",
851 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000852 DwarfLocSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000853 getCOFFSection("\t.section\t.debug_loc,\"dr\"",
854 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000855 DwarfARangesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000856 getCOFFSection("\t.section\t.debug_aranges,\"dr\"",
857 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000858 DwarfRangesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000859 getCOFFSection("\t.section\t.debug_ranges,\"dr\"",
860 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000861 DwarfMacroInfoSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000862 getCOFFSection("\t.section\t.debug_macinfo,\"dr\"",
863 true, SectionKind::getMetadata());
Chris Lattnerf0144122009-07-28 03:13:23 +0000864}
865
Chris Lattner24f654c2009-08-06 16:39:58 +0000866const MCSection *TargetLoweringObjectFileCOFF::
867getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
868 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattner0c0cb712009-08-08 20:22:20 +0000869 return getCOFFSection(GV->getSection().c_str(), false, Kind);
Chris Lattner24f654c2009-08-06 16:39:58 +0000870}
871
Chris Lattnerf0144122009-07-28 03:13:23 +0000872static const char *getCOFFSectionPrefixForUniqueGlobal(SectionKind Kind) {
873 if (Kind.isText())
874 return ".text$linkonce";
875 if (Kind.isWriteable())
876 return ".data$linkonce";
877 return ".rdata$linkonce";
878}
879
880
Chris Lattnera87dea42009-07-31 18:48:30 +0000881const MCSection *TargetLoweringObjectFileCOFF::
Chris Lattnerf9650c02009-08-01 21:46:23 +0000882SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattnere53a6002009-07-29 05:09:30 +0000883 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000884 assert(!Kind.isThreadLocal() && "Doesn't support TLS");
Chris Lattnerf0144122009-07-28 03:13:23 +0000885
886 // If this global is linkonce/weak and the target handles this by emitting it
887 // into a 'uniqued' section name, create and return the section now.
Chris Lattner27602b82009-08-01 21:42:58 +0000888 if (GV->isWeakForLinker()) {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000889 const char *Prefix = getCOFFSectionPrefixForUniqueGlobal(Kind);
Chris Lattner968ff112009-08-01 21:11:14 +0000890 std::string Name = Mang->makeNameProper(GV->getNameStr());
Chris Lattner0c0cb712009-08-08 20:22:20 +0000891 return getCOFFSection((Prefix+Name).c_str(), false, Kind);
Chris Lattnerf0144122009-07-28 03:13:23 +0000892 }
893
Chris Lattnerf9650c02009-08-01 21:46:23 +0000894 if (Kind.isText())
Chris Lattnerf0144122009-07-28 03:13:23 +0000895 return getTextSection();
896
Chris Lattnerf0144122009-07-28 03:13:23 +0000897 return getDataSection();
898}
899