blob: d64cf07b01ea601271ed3a5710ad4b018a869eb9 [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"
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +000022#include "llvm/MC/MCSectionELF.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//===----------------------------------------------------------------------===//
Chris Lattner38cff382009-08-13 00:37:15 +0000283typedef StringMap<const MCSectionELF*> ELFUniqueMapTy;
284
285TargetLoweringObjectFileELF::~TargetLoweringObjectFileELF() {
286 // If we have the section uniquing map, free it.
287 delete (ELFUniqueMapTy*)UniquingMap;
288}
Chris Lattnerf0144122009-07-28 03:13:23 +0000289
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000290const MCSection *TargetLoweringObjectFileELF::
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000291getELFSection(StringRef Section, unsigned Type, unsigned Flags,
292 SectionKind Kind, bool IsExplicit) const {
Chris Lattner38cff382009-08-13 00:37:15 +0000293 if (UniquingMap == 0)
294 UniquingMap = new ELFUniqueMapTy();
295 ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)UniquingMap;
296
297 // Do the lookup, if we have a hit, return it.
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000298 const MCSectionELF *&Entry = Map[Section];
Chris Lattner38cff382009-08-13 00:37:15 +0000299 if (Entry) return Entry;
300
Bruno Cardoso Lopesfdf229e2009-08-13 23:30:21 +0000301 return Entry = MCSectionELF::Create(Section, Type, Flags, Kind, IsExplicit,
302 getContext());
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000303}
304
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000305void TargetLoweringObjectFileELF::Initialize(MCContext &Ctx,
306 const TargetMachine &TM) {
Chris Lattnera87dea42009-07-31 18:48:30 +0000307 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattnerf0144122009-07-28 03:13:23 +0000308
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000309 BSSSection =
310 getELFSection(".bss", MCSectionELF::SHT_NOBITS,
311 MCSectionELF::SHF_WRITE | MCSectionELF::SHF_ALLOC,
312 SectionKind::getBSS());
Chris Lattnerf0144122009-07-28 03:13:23 +0000313
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000314 TextSection =
315 getELFSection(".text", MCSectionELF::SHT_PROGBITS,
316 MCSectionELF::SHF_EXECINSTR | MCSectionELF::SHF_ALLOC,
317 SectionKind::getText());
318
319 DataSection =
320 getELFSection(".data", MCSectionELF::SHT_PROGBITS,
321 MCSectionELF::SHF_WRITE | MCSectionELF::SHF_ALLOC,
322 SectionKind::getDataRel());
323
324 ReadOnlySection =
325 getELFSection(".rodata", MCSectionELF::SHT_PROGBITS,
326 MCSectionELF::SHF_ALLOC,
327 SectionKind::getReadOnly());
328
329 TLSDataSection =
330 getELFSection(".tdata", MCSectionELF::SHT_PROGBITS,
331 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_TLS |
332 MCSectionELF::SHF_WRITE, SectionKind::getThreadData());
Chris Lattner3b24c012009-08-04 05:35:56 +0000333
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000334 TLSBSSSection =
335 getELFSection(".tbss", MCSectionELF::SHT_NOBITS,
336 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_TLS |
337 MCSectionELF::SHF_WRITE, SectionKind::getThreadBSS());
Chris Lattnerf0144122009-07-28 03:13:23 +0000338
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000339 DataRelSection =
340 getELFSection(".data.rel", MCSectionELF::SHT_PROGBITS,
341 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
342 SectionKind::getDataRel());
343
344 DataRelLocalSection =
345 getELFSection(".data.rel.local", MCSectionELF::SHT_PROGBITS,
346 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
347 SectionKind::getDataRelLocal());
348
349 DataRelROSection =
350 getELFSection(".data.rel.ro", MCSectionELF::SHT_PROGBITS,
351 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
352 SectionKind::getReadOnlyWithRel());
353
354 DataRelROLocalSection =
355 getELFSection(".data.rel.ro.local", MCSectionELF::SHT_PROGBITS,
356 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
357 SectionKind::getReadOnlyWithRelLocal());
Chris Lattnerf0144122009-07-28 03:13:23 +0000358
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000359 MergeableConst4Section =
360 getELFSection(".rodata.cst4", MCSectionELF::SHT_PROGBITS,
361 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE,
362 SectionKind::getMergeableConst4());
363
364 MergeableConst8Section =
365 getELFSection(".rodata.cst8", MCSectionELF::SHT_PROGBITS,
366 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE,
367 SectionKind::getMergeableConst8());
368
369 MergeableConst16Section =
370 getELFSection(".rodata.cst16", MCSectionELF::SHT_PROGBITS,
371 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE,
372 SectionKind::getMergeableConst16());
Chris Lattner80ec2792009-08-02 00:34:36 +0000373
374 StaticCtorSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000375 getELFSection(".ctors", MCSectionELF::SHT_PROGBITS,
376 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
377 SectionKind::getDataRel());
378
Chris Lattner80ec2792009-08-02 00:34:36 +0000379 StaticDtorSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000380 getELFSection(".dtors", MCSectionELF::SHT_PROGBITS,
381 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
382 SectionKind::getDataRel());
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000383
Chris Lattner18a4c162009-08-02 07:24:22 +0000384 // Exception Handling Sections.
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000385
386 // FIXME: We're emitting LSDA info into a readonly section on ELF, even though
387 // it contains relocatable pointers. In PIC mode, this is probably a big
388 // runtime hit for C++ apps. Either the contents of the LSDA need to be
389 // adjusted or this should be a data section.
390 LSDASection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000391 getELFSection(".gcc_except_table", MCSectionELF::SHT_PROGBITS,
392 MCSectionELF::SHF_ALLOC, SectionKind::getReadOnly());
Chris Lattner35039ac2009-08-02 06:52:36 +0000393 EHFrameSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000394 getELFSection(".eh_frame", MCSectionELF::SHT_PROGBITS,
Chris Lattnerb6ab2992009-08-15 16:54:02 +0000395 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
396 SectionKind::getDataRel());
Chris Lattner18a4c162009-08-02 07:24:22 +0000397
398 // Debug Info Sections.
399 DwarfAbbrevSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000400 getELFSection(".debug_abbrev", MCSectionELF::SHT_PROGBITS, 0,
401 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000402 DwarfInfoSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000403 getELFSection(".debug_info", MCSectionELF::SHT_PROGBITS, 0,
404 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000405 DwarfLineSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000406 getELFSection(".debug_line", MCSectionELF::SHT_PROGBITS, 0,
407 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000408 DwarfFrameSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000409 getELFSection(".debug_frame", MCSectionELF::SHT_PROGBITS, 0,
410 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000411 DwarfPubNamesSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000412 getELFSection(".debug_pubnames", MCSectionELF::SHT_PROGBITS, 0,
413 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000414 DwarfPubTypesSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000415 getELFSection(".debug_pubtypes", MCSectionELF::SHT_PROGBITS, 0,
416 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000417 DwarfStrSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000418 getELFSection(".debug_str", MCSectionELF::SHT_PROGBITS, 0,
419 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000420 DwarfLocSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000421 getELFSection(".debug_loc", MCSectionELF::SHT_PROGBITS, 0,
422 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000423 DwarfARangesSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000424 getELFSection(".debug_aranges", MCSectionELF::SHT_PROGBITS, 0,
425 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000426 DwarfRangesSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000427 getELFSection(".debug_ranges", MCSectionELF::SHT_PROGBITS, 0,
428 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000429 DwarfMacroInfoSection =
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000430 getELFSection(".debug_macinfo", MCSectionELF::SHT_PROGBITS, 0,
431 SectionKind::getMetadata());
Chris Lattnerf0144122009-07-28 03:13:23 +0000432}
433
434
Chris Lattner24f654c2009-08-06 16:39:58 +0000435static SectionKind
436getELFKindForNamedSection(const char *Name, SectionKind K) {
Chris Lattnerf0144122009-07-28 03:13:23 +0000437 if (Name[0] != '.') return K;
438
439 // Some lame default implementation based on some magic section names.
440 if (strncmp(Name, ".gnu.linkonce.b.", 16) == 0 ||
441 strncmp(Name, ".llvm.linkonce.b.", 17) == 0 ||
442 strncmp(Name, ".gnu.linkonce.sb.", 17) == 0 ||
443 strncmp(Name, ".llvm.linkonce.sb.", 18) == 0)
Chris Lattner27981192009-08-01 23:57:16 +0000444 return SectionKind::getBSS();
Chris Lattnerf0144122009-07-28 03:13:23 +0000445
446 if (strcmp(Name, ".tdata") == 0 ||
447 strncmp(Name, ".tdata.", 7) == 0 ||
448 strncmp(Name, ".gnu.linkonce.td.", 17) == 0 ||
449 strncmp(Name, ".llvm.linkonce.td.", 18) == 0)
Chris Lattner27981192009-08-01 23:57:16 +0000450 return SectionKind::getThreadData();
Chris Lattnerf0144122009-07-28 03:13:23 +0000451
452 if (strcmp(Name, ".tbss") == 0 ||
453 strncmp(Name, ".tbss.", 6) == 0 ||
454 strncmp(Name, ".gnu.linkonce.tb.", 17) == 0 ||
455 strncmp(Name, ".llvm.linkonce.tb.", 18) == 0)
Chris Lattner27981192009-08-01 23:57:16 +0000456 return SectionKind::getThreadBSS();
Chris Lattnerf0144122009-07-28 03:13:23 +0000457
458 return K;
459}
460
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000461
462static unsigned
463getELFSectionType(const char *Name, SectionKind K) {
464
Dan Gohmanfa9ca0f2009-08-14 00:10:19 +0000465 if (strcmp(Name, ".init_array") == 0)
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000466 return MCSectionELF::SHT_INIT_ARRAY;
467
Dan Gohmanfa9ca0f2009-08-14 00:10:19 +0000468 if (strcmp(Name, ".fini_array") == 0)
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000469 return MCSectionELF::SHT_FINI_ARRAY;
470
Dan Gohmanfa9ca0f2009-08-14 00:10:19 +0000471 if (strcmp(Name, ".preinit_array") == 0)
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000472 return MCSectionELF::SHT_PREINIT_ARRAY;
473
474 if (K.isBSS() || K.isThreadBSS())
475 return MCSectionELF::SHT_NOBITS;
476
477 return MCSectionELF::SHT_PROGBITS;
478}
479
480
481static unsigned
482getELFSectionFlags(SectionKind K) {
483 unsigned Flags = 0;
484
485 if (!K.isMetadata())
486 Flags |= MCSectionELF::SHF_ALLOC;
487
488 if (K.isWriteable())
489 Flags |= MCSectionELF::SHF_WRITE;
490
491 if (K.isThreadLocal())
492 Flags |= MCSectionELF::SHF_TLS;
493
494 // K.isMergeableConst() is left out to honour PR4650
495 if (K.isMergeableCString() || K.isMergeableConst4() ||
496 K.isMergeableConst8() || K.isMergeableConst16())
497 Flags |= MCSectionELF::SHF_MERGE;
498
499 if (K.isMergeableCString())
500 Flags |= MCSectionELF::SHF_STRINGS;
501
502 return Flags;
503}
504
505
Chris Lattner24f654c2009-08-06 16:39:58 +0000506const MCSection *TargetLoweringObjectFileELF::
507getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
508 Mangler *Mang, const TargetMachine &TM) const {
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000509 const char *SectionName = GV->getSection().c_str();
510
Chris Lattner24f654c2009-08-06 16:39:58 +0000511 // Infer section flags from the section name if we can.
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000512 Kind = getELFKindForNamedSection(SectionName, Kind);
Chris Lattner24f654c2009-08-06 16:39:58 +0000513
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000514 return getELFSection(SectionName,
515 getELFSectionType(SectionName, Kind),
516 getELFSectionFlags(Kind), Kind, true);
Chris Lattner24f654c2009-08-06 16:39:58 +0000517}
Chris Lattnerf0144122009-07-28 03:13:23 +0000518
519static const char *getSectionPrefixForUniqueGlobal(SectionKind Kind) {
520 if (Kind.isText()) return ".gnu.linkonce.t.";
521 if (Kind.isReadOnly()) return ".gnu.linkonce.r.";
522
523 if (Kind.isThreadData()) return ".gnu.linkonce.td.";
524 if (Kind.isThreadBSS()) return ".gnu.linkonce.tb.";
525
526 if (Kind.isBSS()) return ".gnu.linkonce.b.";
527 if (Kind.isDataNoRel()) return ".gnu.linkonce.d.";
528 if (Kind.isDataRelLocal()) return ".gnu.linkonce.d.rel.local.";
529 if (Kind.isDataRel()) return ".gnu.linkonce.d.rel.";
530 if (Kind.isReadOnlyWithRelLocal()) return ".gnu.linkonce.d.rel.ro.local.";
531
532 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
533 return ".gnu.linkonce.d.rel.ro.";
534}
535
Chris Lattnera87dea42009-07-31 18:48:30 +0000536const MCSection *TargetLoweringObjectFileELF::
Chris Lattnerf9650c02009-08-01 21:46:23 +0000537SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattnere53a6002009-07-29 05:09:30 +0000538 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000539
540 // If this global is linkonce/weak and the target handles this by emitting it
541 // into a 'uniqued' section name, create and return the section now.
Chris Lattner27602b82009-08-01 21:42:58 +0000542 if (GV->isWeakForLinker()) {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000543 const char *Prefix = getSectionPrefixForUniqueGlobal(Kind);
Chris Lattnerb8f396b2009-07-29 05:20:33 +0000544 std::string Name = Mang->makeNameProper(GV->getNameStr());
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000545
546 return getELFSection((Prefix+Name).c_str(),
547 getELFSectionType((Prefix+Name).c_str(), Kind),
548 getELFSectionFlags(Kind),
549 Kind);
Chris Lattnerf0144122009-07-28 03:13:23 +0000550 }
551
Chris Lattnerf9650c02009-08-01 21:46:23 +0000552 if (Kind.isText()) return TextSection;
Chris Lattnere53a6002009-07-29 05:09:30 +0000553
Chris Lattner3b24c012009-08-04 05:35:56 +0000554 if (Kind.isMergeable1ByteCString() ||
555 Kind.isMergeable2ByteCString() ||
556 Kind.isMergeable4ByteCString()) {
Chris Lattnerf0144122009-07-28 03:13:23 +0000557
Chris Lattner067fe1a2009-07-29 04:54:38 +0000558 // We also need alignment here.
559 // FIXME: this is getting the alignment of the character, not the
560 // alignment of the global!
561 unsigned Align =
562 TM.getTargetData()->getPreferredAlignment(cast<GlobalVariable>(GV));
Chris Lattnerf0144122009-07-28 03:13:23 +0000563
Chris Lattner7e88a502009-08-04 16:19:50 +0000564 const char *SizeSpec = ".rodata.str1.";
Chris Lattner3b24c012009-08-04 05:35:56 +0000565 if (Kind.isMergeable2ByteCString())
Chris Lattner7e88a502009-08-04 16:19:50 +0000566 SizeSpec = ".rodata.str2.";
Chris Lattner3b24c012009-08-04 05:35:56 +0000567 else if (Kind.isMergeable4ByteCString())
Chris Lattner7e88a502009-08-04 16:19:50 +0000568 SizeSpec = ".rodata.str4.";
Chris Lattner3b24c012009-08-04 05:35:56 +0000569 else
570 assert(Kind.isMergeable1ByteCString() && "unknown string width");
571
572
Chris Lattner7e88a502009-08-04 16:19:50 +0000573 std::string Name = SizeSpec + utostr(Align);
Bruno Cardoso Lopesb8085882009-08-13 05:07:35 +0000574 return getELFSection(Name.c_str(), MCSectionELF::SHT_PROGBITS,
575 MCSectionELF::SHF_ALLOC |
576 MCSectionELF::SHF_MERGE |
577 MCSectionELF::SHF_STRINGS,
578 Kind);
Chris Lattnerf0144122009-07-28 03:13:23 +0000579 }
580
Chris Lattnerf9650c02009-08-01 21:46:23 +0000581 if (Kind.isMergeableConst()) {
Chris Lattner203b3e92009-08-15 06:08:34 +0000582 if (Kind.isMergeableConst4() && MergeableConst4Section)
Chris Lattnerf0144122009-07-28 03:13:23 +0000583 return MergeableConst4Section;
Chris Lattner203b3e92009-08-15 06:08:34 +0000584 if (Kind.isMergeableConst8() && MergeableConst8Section)
Chris Lattnerf0144122009-07-28 03:13:23 +0000585 return MergeableConst8Section;
Chris Lattner203b3e92009-08-15 06:08:34 +0000586 if (Kind.isMergeableConst16() && MergeableConst16Section)
Chris Lattnerf0144122009-07-28 03:13:23 +0000587 return MergeableConst16Section;
588 return ReadOnlySection; // .const
589 }
590
Chris Lattnerf9650c02009-08-01 21:46:23 +0000591 if (Kind.isReadOnly()) return ReadOnlySection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000592
Chris Lattnerf9650c02009-08-01 21:46:23 +0000593 if (Kind.isThreadData()) return TLSDataSection;
594 if (Kind.isThreadBSS()) return TLSBSSSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000595
Chris Lattner82458382009-08-01 21:56:13 +0000596 if (Kind.isBSS()) return BSSSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000597
Chris Lattnerf9650c02009-08-01 21:46:23 +0000598 if (Kind.isDataNoRel()) return DataSection;
599 if (Kind.isDataRelLocal()) return DataRelLocalSection;
600 if (Kind.isDataRel()) return DataRelSection;
601 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000602
Chris Lattnerf9650c02009-08-01 21:46:23 +0000603 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
Chris Lattnerf0144122009-07-28 03:13:23 +0000604 return DataRelROSection;
605}
606
Chris Lattner83d77fa2009-08-01 23:46:12 +0000607/// getSectionForConstant - Given a mergeable constant with the
Chris Lattnerf0144122009-07-28 03:13:23 +0000608/// specified size and relocation information, return a section that it
609/// should be placed in.
Chris Lattnera87dea42009-07-31 18:48:30 +0000610const MCSection *TargetLoweringObjectFileELF::
Chris Lattner83d77fa2009-08-01 23:46:12 +0000611getSectionForConstant(SectionKind Kind) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000612 if (Kind.isMergeableConst4())
613 return MergeableConst4Section;
614 if (Kind.isMergeableConst8())
615 return MergeableConst8Section;
616 if (Kind.isMergeableConst16())
617 return MergeableConst16Section;
618 if (Kind.isReadOnly())
619 return ReadOnlySection;
620
621 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
622 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
623 return DataRelROSection;
624}
625
626//===----------------------------------------------------------------------===//
627// MachO
628//===----------------------------------------------------------------------===//
629
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000630typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
Chris Lattner0c0cb712009-08-08 20:22:20 +0000631
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000632TargetLoweringObjectFileMachO::~TargetLoweringObjectFileMachO() {
633 // If we have the MachO uniquing map, free it.
634 delete (MachOUniqueMapTy*)UniquingMap;
635}
636
637
638const MCSectionMachO *TargetLoweringObjectFileMachO::
Chris Lattnerd3c4486f2009-08-12 23:34:27 +0000639getMachOSection(const StringRef &Segment, const StringRef &Section,
Chris Lattnerff4bc462009-08-10 01:39:42 +0000640 unsigned TypeAndAttributes,
641 unsigned Reserved2, SectionKind Kind) const {
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000642 // We unique sections by their segment/section pair. The returned section
643 // may not have the same flags as the requested section, if so this should be
644 // diagnosed by the client as an error.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000645
Chris Lattner5dc47ff2009-08-12 23:55:02 +0000646 // Create the map if it doesn't already exist.
647 if (UniquingMap == 0)
648 UniquingMap = new MachOUniqueMapTy();
649 MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)UniquingMap;
650
651 // Form the name to look up.
652 SmallString<64> Name;
653 Name.append(Segment.begin(), Segment.end());
654 Name.push_back(',');
655 Name.append(Section.begin(), Section.end());
656
657 // Do the lookup, if we have a hit, return it.
658 const MCSectionMachO *&Entry = Map[StringRef(Name.data(), Name.size())];
659 if (Entry) return Entry;
660
661 // Otherwise, return a new section.
662 return Entry = MCSectionMachO::Create(Segment, Section, TypeAndAttributes,
663 Reserved2, Kind, getContext());
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000664}
665
Chris Lattner11e96572009-08-03 21:53:27 +0000666
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000667void TargetLoweringObjectFileMachO::Initialize(MCContext &Ctx,
668 const TargetMachine &TM) {
Chris Lattnera87dea42009-07-31 18:48:30 +0000669 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattnerf0144122009-07-28 03:13:23 +0000670
Chris Lattnerff4bc462009-08-10 01:39:42 +0000671 TextSection // .text
672 = getMachOSection("__TEXT", "__text",
673 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
674 SectionKind::getText());
675 DataSection // .data
676 = getMachOSection("__DATA", "__data", 0, SectionKind::getDataRel());
677
678 CStringSection // .cstring
679 = getMachOSection("__TEXT", "__cstring", MCSectionMachO::S_CSTRING_LITERALS,
680 SectionKind::getMergeable1ByteCString());
681 UStringSection
682 = getMachOSection("__TEXT","__ustring", 0,
683 SectionKind::getMergeable2ByteCString());
684 FourByteConstantSection // .literal4
685 = getMachOSection("__TEXT", "__literal4", MCSectionMachO::S_4BYTE_LITERALS,
686 SectionKind::getMergeableConst4());
687 EightByteConstantSection // .literal8
688 = getMachOSection("__TEXT", "__literal8", MCSectionMachO::S_8BYTE_LITERALS,
689 SectionKind::getMergeableConst8());
Chris Lattner4bb253c2009-07-28 17:50:28 +0000690
691 // ld_classic doesn't support .literal16 in 32-bit mode, and ld64 falls back
692 // to using it in -static mode.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000693 SixteenByteConstantSection = 0;
Chris Lattner4bb253c2009-07-28 17:50:28 +0000694 if (TM.getRelocationModel() != Reloc::Static &&
695 TM.getTargetData()->getPointerSize() == 32)
Chris Lattnerff4bc462009-08-10 01:39:42 +0000696 SixteenByteConstantSection = // .literal16
697 getMachOSection("__TEXT", "__literal16",MCSectionMachO::S_16BYTE_LITERALS,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000698 SectionKind::getMergeableConst16());
Chris Lattnerf0144122009-07-28 03:13:23 +0000699
Chris Lattnerff4bc462009-08-10 01:39:42 +0000700 ReadOnlySection // .const
701 = getMachOSection("__TEXT", "__const", 0, SectionKind::getReadOnly());
Chris Lattnerf0144122009-07-28 03:13:23 +0000702
Chris Lattnerff4bc462009-08-10 01:39:42 +0000703 TextCoalSection
704 = getMachOSection("__TEXT", "__textcoal_nt",
705 MCSectionMachO::S_COALESCED |
706 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
707 SectionKind::getText());
708 ConstTextCoalSection
709 = getMachOSection("__TEXT", "__const_coal", MCSectionMachO::S_COALESCED,
710 SectionKind::getText());
711 ConstDataCoalSection
712 = getMachOSection("__DATA","__const_coal", MCSectionMachO::S_COALESCED,
713 SectionKind::getText());
714 ConstDataSection // .const_data
715 = getMachOSection("__DATA", "__const", 0,
716 SectionKind::getReadOnlyWithRel());
717 DataCoalSection
718 = getMachOSection("__DATA","__datacoal_nt", MCSectionMachO::S_COALESCED,
719 SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000720
Chris Lattnere309cfa2009-08-13 00:05:07 +0000721
722 LazySymbolPointerSection
723 = getMachOSection("__DATA", "__la_symbol_ptr",
724 MCSectionMachO::S_LAZY_SYMBOL_POINTERS,
725 SectionKind::getMetadata());
726 NonLazySymbolPointerSection
727 = getMachOSection("__DATA", "__nl_symbol_ptr",
728 MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
729 SectionKind::getMetadata());
730
Chris Lattner80ec2792009-08-02 00:34:36 +0000731 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000732 StaticCtorSection
733 = getMachOSection("__TEXT", "__constructor", 0,SectionKind::getDataRel());
734 StaticDtorSection
735 = getMachOSection("__TEXT", "__destructor", 0, SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000736 } else {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000737 StaticCtorSection
738 = getMachOSection("__DATA", "__mod_init_func",
739 MCSectionMachO::S_MOD_INIT_FUNC_POINTERS,
740 SectionKind::getDataRel());
741 StaticDtorSection
742 = getMachOSection("__DATA", "__mod_term_func",
743 MCSectionMachO::S_MOD_TERM_FUNC_POINTERS,
744 SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000745 }
746
Chris Lattner18a4c162009-08-02 07:24:22 +0000747 // Exception Handling.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000748 LSDASection = getMachOSection("__DATA", "__gcc_except_tab", 0,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000749 SectionKind::getDataRel());
Chris Lattner35039ac2009-08-02 06:52:36 +0000750 EHFrameSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000751 getMachOSection("__TEXT", "__eh_frame",
752 MCSectionMachO::S_COALESCED |
753 MCSectionMachO::S_ATTR_NO_TOC |
754 MCSectionMachO::S_ATTR_STRIP_STATIC_SYMS |
755 MCSectionMachO::S_ATTR_LIVE_SUPPORT,
756 SectionKind::getReadOnly());
Chris Lattner18a4c162009-08-02 07:24:22 +0000757
758 // Debug Information.
Chris Lattner18a4c162009-08-02 07:24:22 +0000759 DwarfAbbrevSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000760 getMachOSection("__DWARF", "__debug_abbrev", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000761 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000762 DwarfInfoSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000763 getMachOSection("__DWARF", "__debug_info", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000764 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000765 DwarfLineSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000766 getMachOSection("__DWARF", "__debug_line", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000767 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000768 DwarfFrameSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000769 getMachOSection("__DWARF", "__debug_frame", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000770 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000771 DwarfPubNamesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000772 getMachOSection("__DWARF", "__debug_pubnames", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000773 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000774 DwarfPubTypesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000775 getMachOSection("__DWARF", "__debug_pubtypes", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000776 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000777 DwarfStrSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000778 getMachOSection("__DWARF", "__debug_str", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000779 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000780 DwarfLocSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000781 getMachOSection("__DWARF", "__debug_loc", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000782 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000783 DwarfARangesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000784 getMachOSection("__DWARF", "__debug_aranges", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000785 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000786 DwarfRangesSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000787 getMachOSection("__DWARF", "__debug_ranges", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000788 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000789 DwarfMacroInfoSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000790 getMachOSection("__DWARF", "__debug_macinfo", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000791 SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000792 DwarfDebugInlineSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +0000793 getMachOSection("__DWARF", "__debug_inlined", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner0c0cb712009-08-08 20:22:20 +0000794 SectionKind::getMetadata());
Chris Lattnerf0144122009-07-28 03:13:23 +0000795}
796
Chris Lattnera87dea42009-07-31 18:48:30 +0000797const MCSection *TargetLoweringObjectFileMachO::
Chris Lattner24f654c2009-08-06 16:39:58 +0000798getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
799 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000800 // Parse the section specifier and create it if valid.
801 StringRef Segment, Section;
802 unsigned TAA, StubSize;
803 std::string ErrorCode =
804 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
805 TAA, StubSize);
Chris Lattnere309cfa2009-08-13 00:05:07 +0000806 if (!ErrorCode.empty()) {
807 // If invalid, report the error with llvm_report_error.
808 llvm_report_error("Global variable '" + GV->getNameStr() +
809 "' has an invalid section specifier '" + GV->getSection()+
810 "': " + ErrorCode + ".");
811 // Fall back to dropping it into the data section.
812 return DataSection;
813 }
814
815 // Get the section.
816 const MCSectionMachO *S =
817 getMachOSection(Segment, Section, TAA, StubSize, Kind);
818
819 // Okay, now that we got the section, verify that the TAA & StubSize agree.
820 // If the user declared multiple globals with different section flags, we need
821 // to reject it here.
822 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
823 // If invalid, report the error with llvm_report_error.
824 llvm_report_error("Global variable '" + GV->getNameStr() +
825 "' section type or attributes does not match previous"
826 " section specifier");
827 }
Chris Lattnerff4bc462009-08-10 01:39:42 +0000828
Chris Lattnere309cfa2009-08-13 00:05:07 +0000829 return S;
Chris Lattner24f654c2009-08-06 16:39:58 +0000830}
831
832const MCSection *TargetLoweringObjectFileMachO::
Chris Lattnerf9650c02009-08-01 21:46:23 +0000833SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattnere53a6002009-07-29 05:09:30 +0000834 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000835 assert(!Kind.isThreadLocal() && "Darwin doesn't support TLS");
Chris Lattnerf0144122009-07-28 03:13:23 +0000836
Chris Lattnerf9650c02009-08-01 21:46:23 +0000837 if (Kind.isText())
Chris Lattner27602b82009-08-01 21:42:58 +0000838 return GV->isWeakForLinker() ? TextCoalSection : TextSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000839
840 // If this is weak/linkonce, put this in a coalescable section, either in text
841 // or data depending on if it is writable.
Chris Lattner27602b82009-08-01 21:42:58 +0000842 if (GV->isWeakForLinker()) {
Chris Lattnerf9650c02009-08-01 21:46:23 +0000843 if (Kind.isReadOnly())
Chris Lattnerf0144122009-07-28 03:13:23 +0000844 return ConstTextCoalSection;
845 return DataCoalSection;
846 }
847
848 // FIXME: Alignment check should be handled by section classifier.
Chris Lattnerec409752009-08-04 16:27:13 +0000849 if (Kind.isMergeable1ByteCString() ||
850 Kind.isMergeable2ByteCString()) {
851 if (TM.getTargetData()->getPreferredAlignment(
852 cast<GlobalVariable>(GV)) < 32) {
853 if (Kind.isMergeable1ByteCString())
Chris Lattner82458382009-08-01 21:56:13 +0000854 return CStringSection;
Chris Lattnerec409752009-08-04 16:27:13 +0000855 assert(Kind.isMergeable2ByteCString());
856 return UStringSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000857 }
Chris Lattnerf0144122009-07-28 03:13:23 +0000858 }
859
Chris Lattnerf9650c02009-08-01 21:46:23 +0000860 if (Kind.isMergeableConst()) {
861 if (Kind.isMergeableConst4())
Chris Lattnerf0144122009-07-28 03:13:23 +0000862 return FourByteConstantSection;
Chris Lattnerf9650c02009-08-01 21:46:23 +0000863 if (Kind.isMergeableConst8())
Chris Lattnerf0144122009-07-28 03:13:23 +0000864 return EightByteConstantSection;
Chris Lattnerf9650c02009-08-01 21:46:23 +0000865 if (Kind.isMergeableConst16() && SixteenByteConstantSection)
Chris Lattnerf0144122009-07-28 03:13:23 +0000866 return SixteenByteConstantSection;
Chris Lattnerf0144122009-07-28 03:13:23 +0000867 }
Chris Lattnerec409752009-08-04 16:27:13 +0000868
869 // Otherwise, if it is readonly, but not something we can specially optimize,
870 // just drop it in .const.
Chris Lattnerf9650c02009-08-01 21:46:23 +0000871 if (Kind.isReadOnly())
Chris Lattnerf0144122009-07-28 03:13:23 +0000872 return ReadOnlySection;
873
874 // If this is marked const, put it into a const section. But if the dynamic
875 // linker needs to write to it, put it in the data segment.
Chris Lattnerf9650c02009-08-01 21:46:23 +0000876 if (Kind.isReadOnlyWithRel())
Chris Lattnerf0144122009-07-28 03:13:23 +0000877 return ConstDataSection;
878
879 // Otherwise, just drop the variable in the normal data section.
880 return DataSection;
881}
882
Chris Lattnera87dea42009-07-31 18:48:30 +0000883const MCSection *
Chris Lattner83d77fa2009-08-01 23:46:12 +0000884TargetLoweringObjectFileMachO::getSectionForConstant(SectionKind Kind) const {
Chris Lattnerf0144122009-07-28 03:13:23 +0000885 // If this constant requires a relocation, we have to put it in the data
886 // segment, not in the text segment.
887 if (Kind.isDataRel())
888 return ConstDataSection;
889
890 if (Kind.isMergeableConst4())
891 return FourByteConstantSection;
892 if (Kind.isMergeableConst8())
893 return EightByteConstantSection;
Chris Lattner4bb253c2009-07-28 17:50:28 +0000894 if (Kind.isMergeableConst16() && SixteenByteConstantSection)
Chris Lattnerf0144122009-07-28 03:13:23 +0000895 return SixteenByteConstantSection;
896 return ReadOnlySection; // .const
897}
898
Chris Lattner26630c12009-07-31 20:52:39 +0000899/// shouldEmitUsedDirectiveFor - This hook allows targets to selectively decide
900/// not to emit the UsedDirective for some symbols in llvm.used.
901// FIXME: REMOVE this (rdar://7071300)
902bool TargetLoweringObjectFileMachO::
903shouldEmitUsedDirectiveFor(const GlobalValue *GV, Mangler *Mang) const {
904 /// On Darwin, internally linked data beginning with "L" or "l" does not have
905 /// the directive emitted (this occurs in ObjC metadata).
906 if (!GV) return false;
907
908 // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix.
909 if (GV->hasLocalLinkage() && !isa<Function>(GV)) {
910 // FIXME: ObjC metadata is currently emitted as internal symbols that have
911 // \1L and \0l prefixes on them. Fix them to be Private/LinkerPrivate and
912 // this horrible hack can go away.
913 const std::string &Name = Mang->getMangledName(GV);
914 if (Name[0] == 'L' || Name[0] == 'l')
915 return false;
916 }
917
918 return true;
919}
920
921
Chris Lattnerf0144122009-07-28 03:13:23 +0000922//===----------------------------------------------------------------------===//
923// COFF
924//===----------------------------------------------------------------------===//
925
Chris Lattner38cff382009-08-13 00:37:15 +0000926typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy;
927
928TargetLoweringObjectFileCOFF::~TargetLoweringObjectFileCOFF() {
929 delete (COFFUniqueMapTy*)UniquingMap;
930}
931
Chris Lattner0c0cb712009-08-08 20:22:20 +0000932
Chris Lattner11e96572009-08-03 21:53:27 +0000933const MCSection *TargetLoweringObjectFileCOFF::
Chris Lattner0c0cb712009-08-08 20:22:20 +0000934getCOFFSection(const char *Name, bool isDirective, SectionKind Kind) const {
Chris Lattner38cff382009-08-13 00:37:15 +0000935 // Create the map if it doesn't already exist.
936 if (UniquingMap == 0)
937 UniquingMap = new MachOUniqueMapTy();
938 COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)UniquingMap;
939
940 // Do the lookup, if we have a hit, return it.
941 const MCSectionCOFF *&Entry = Map[Name];
942 if (Entry) return Entry;
943
944 return Entry = MCSectionCOFF::Create(Name, isDirective, Kind, getContext());
Chris Lattnerfbf1d272009-08-08 20:14:13 +0000945}
946
Chris Lattnerf26e03b2009-07-31 17:42:42 +0000947void TargetLoweringObjectFileCOFF::Initialize(MCContext &Ctx,
948 const TargetMachine &TM) {
Chris Lattnera87dea42009-07-31 18:48:30 +0000949 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattner0c0cb712009-08-08 20:22:20 +0000950 TextSection = getCOFFSection("\t.text", true, SectionKind::getText());
951 DataSection = getCOFFSection("\t.data", true, SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000952 StaticCtorSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000953 getCOFFSection(".ctors", false, SectionKind::getDataRel());
Chris Lattner80ec2792009-08-02 00:34:36 +0000954 StaticDtorSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000955 getCOFFSection(".dtors", false, SectionKind::getDataRel());
Chris Lattner18a4c162009-08-02 07:24:22 +0000956
957
958 // Debug info.
959 // FIXME: Don't use 'directive' mode here.
960 DwarfAbbrevSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000961 getCOFFSection("\t.section\t.debug_abbrev,\"dr\"",
962 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000963 DwarfInfoSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000964 getCOFFSection("\t.section\t.debug_info,\"dr\"",
965 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000966 DwarfLineSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000967 getCOFFSection("\t.section\t.debug_line,\"dr\"",
968 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000969 DwarfFrameSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000970 getCOFFSection("\t.section\t.debug_frame,\"dr\"",
971 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000972 DwarfPubNamesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000973 getCOFFSection("\t.section\t.debug_pubnames,\"dr\"",
974 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000975 DwarfPubTypesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000976 getCOFFSection("\t.section\t.debug_pubtypes,\"dr\"",
977 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000978 DwarfStrSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000979 getCOFFSection("\t.section\t.debug_str,\"dr\"",
980 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000981 DwarfLocSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000982 getCOFFSection("\t.section\t.debug_loc,\"dr\"",
983 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000984 DwarfARangesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000985 getCOFFSection("\t.section\t.debug_aranges,\"dr\"",
986 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000987 DwarfRangesSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000988 getCOFFSection("\t.section\t.debug_ranges,\"dr\"",
989 true, SectionKind::getMetadata());
Chris Lattner18a4c162009-08-02 07:24:22 +0000990 DwarfMacroInfoSection =
Chris Lattner0c0cb712009-08-08 20:22:20 +0000991 getCOFFSection("\t.section\t.debug_macinfo,\"dr\"",
992 true, SectionKind::getMetadata());
Chris Lattnerf0144122009-07-28 03:13:23 +0000993}
994
Chris Lattner24f654c2009-08-06 16:39:58 +0000995const MCSection *TargetLoweringObjectFileCOFF::
996getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
997 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattner0c0cb712009-08-08 20:22:20 +0000998 return getCOFFSection(GV->getSection().c_str(), false, Kind);
Chris Lattner24f654c2009-08-06 16:39:58 +0000999}
1000
Chris Lattnerf0144122009-07-28 03:13:23 +00001001static const char *getCOFFSectionPrefixForUniqueGlobal(SectionKind Kind) {
1002 if (Kind.isText())
1003 return ".text$linkonce";
1004 if (Kind.isWriteable())
1005 return ".data$linkonce";
1006 return ".rdata$linkonce";
1007}
1008
1009
Chris Lattnera87dea42009-07-31 18:48:30 +00001010const MCSection *TargetLoweringObjectFileCOFF::
Chris Lattnerf9650c02009-08-01 21:46:23 +00001011SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattnere53a6002009-07-29 05:09:30 +00001012 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnerf9650c02009-08-01 21:46:23 +00001013 assert(!Kind.isThreadLocal() && "Doesn't support TLS");
Chris Lattnerf0144122009-07-28 03:13:23 +00001014
1015 // If this global is linkonce/weak and the target handles this by emitting it
1016 // into a 'uniqued' section name, create and return the section now.
Chris Lattner27602b82009-08-01 21:42:58 +00001017 if (GV->isWeakForLinker()) {
Chris Lattnerf9650c02009-08-01 21:46:23 +00001018 const char *Prefix = getCOFFSectionPrefixForUniqueGlobal(Kind);
Chris Lattner968ff112009-08-01 21:11:14 +00001019 std::string Name = Mang->makeNameProper(GV->getNameStr());
Chris Lattner0c0cb712009-08-08 20:22:20 +00001020 return getCOFFSection((Prefix+Name).c_str(), false, Kind);
Chris Lattnerf0144122009-07-28 03:13:23 +00001021 }
1022
Chris Lattnerf9650c02009-08-01 21:46:23 +00001023 if (Kind.isText())
Chris Lattnerf0144122009-07-28 03:13:23 +00001024 return getTextSection();
1025
Chris Lattnerf0144122009-07-28 03:13:23 +00001026 return getDataSection();
1027}
1028