blob: cfd49155adba1218caecc3afd0f1a67795c73d92 [file] [log] [blame]
Chris Lattnerc4c40a92009-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 Gohman45f13d42009-08-11 16:02:12 +000018#include "llvm/Function.h"
Chris Lattnerc4c40a92009-07-28 03:13:23 +000019#include "llvm/GlobalVariable.h"
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +000020#include "llvm/CodeGen/MachineModuleInfoImpls.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000021#include "llvm/MC/MCContext.h"
Chris Lattner8886dc22009-09-16 01:46:41 +000022#include "llvm/MC/MCExpr.h"
Chris Lattner7f1ac7f2009-08-10 18:15:01 +000023#include "llvm/MC/MCSectionMachO.h"
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +000024#include "llvm/MC/MCSectionELF.h"
Chris Lattner656aeb82010-01-13 21:29:21 +000025#include "llvm/MC/MCSymbol.h"
Chris Lattner31a54742010-01-16 21:57:06 +000026#include "llvm/Target/Mangler.h"
Chris Lattnerc4c40a92009-07-28 03:13:23 +000027#include "llvm/Target/TargetData.h"
Chris Lattnera8b97f42009-08-08 20:43:12 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattnerc4c40a92009-07-28 03:13:23 +000029#include "llvm/Target/TargetOptions.h"
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +000030#include "llvm/Support/Dwarf.h"
Chris Lattner2aaa75e2009-11-07 09:20:54 +000031#include "llvm/Support/ErrorHandling.h"
Chris Lattner656aeb82010-01-13 21:29:21 +000032#include "llvm/Support/raw_ostream.h"
Chris Lattneraf4bf002009-08-12 23:55:02 +000033#include "llvm/ADT/SmallString.h"
Chris Lattnerc4c40a92009-07-28 03:13:23 +000034#include "llvm/ADT/StringExtras.h"
35using namespace llvm;
36
37//===----------------------------------------------------------------------===//
38// Generic Code
39//===----------------------------------------------------------------------===//
40
Chris Lattnere6ad12f2009-07-31 18:48:30 +000041TargetLoweringObjectFile::TargetLoweringObjectFile() : Ctx(0) {
Chris Lattnerc4c40a92009-07-28 03:13:23 +000042 TextSection = 0;
43 DataSection = 0;
Chris Lattnera3954e62009-08-01 21:56:13 +000044 BSSSection = 0;
Chris Lattnerc4c40a92009-07-28 03:13:23 +000045 ReadOnlySection = 0;
Chris Lattnerb5c952a2009-08-02 00:34:36 +000046 StaticCtorSection = 0;
47 StaticDtorSection = 0;
Chris Lattner3d778052009-08-02 01:34:32 +000048 LSDASection = 0;
Chris Lattnerc01e3332009-08-02 06:52:36 +000049 EHFrameSection = 0;
Chris Lattner72d228d2009-08-02 07:24:22 +000050
51 DwarfAbbrevSection = 0;
52 DwarfInfoSection = 0;
53 DwarfLineSection = 0;
54 DwarfFrameSection = 0;
55 DwarfPubNamesSection = 0;
56 DwarfPubTypesSection = 0;
57 DwarfDebugInlineSection = 0;
58 DwarfStrSection = 0;
59 DwarfLocSection = 0;
60 DwarfARangesSection = 0;
61 DwarfRangesSection = 0;
62 DwarfMacroInfoSection = 0;
Chris Lattnerc4c40a92009-07-28 03:13:23 +000063}
64
65TargetLoweringObjectFile::~TargetLoweringObjectFile() {
66}
67
68static bool isSuitableForBSS(const GlobalVariable *GV) {
69 Constant *C = GV->getInitializer();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +000070
Chris Lattnerc4c40a92009-07-28 03:13:23 +000071 // Must have zero initializer.
72 if (!C->isNullValue())
73 return false;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +000074
Chris Lattnerc4c40a92009-07-28 03:13:23 +000075 // Leave constant zeros in readonly constant sections, so they can be shared.
76 if (GV->isConstant())
77 return false;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +000078
Chris Lattnerc4c40a92009-07-28 03:13:23 +000079 // If the global has an explicit section specified, don't put it in BSS.
80 if (!GV->getSection().empty())
81 return false;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +000082
Chris Lattnerc4c40a92009-07-28 03:13:23 +000083 // If -nozero-initialized-in-bss is specified, don't ever use BSS.
84 if (NoZerosInBSS)
85 return false;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +000086
Chris Lattnerc4c40a92009-07-28 03:13:23 +000087 // Otherwise, put it in BSS!
88 return true;
89}
90
Chris Lattner1c81a6c2009-08-04 16:13:09 +000091/// IsNullTerminatedString - Return true if the specified constant (which is
92/// known to have a type that is an array of 1/2/4 byte elements) ends with a
93/// nul value and contains no other nuls in it.
94static bool IsNullTerminatedString(const Constant *C) {
95 const ArrayType *ATy = cast<ArrayType>(C->getType());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +000096
Chris Lattnerc4c40a92009-07-28 03:13:23 +000097 // First check: is we have constant array of i8 terminated with zero
Chris Lattner1c81a6c2009-08-04 16:13:09 +000098 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(C)) {
99 if (ATy->getNumElements() == 0) return false;
100
101 ConstantInt *Null =
102 dyn_cast<ConstantInt>(CVA->getOperand(ATy->getNumElements()-1));
103 if (Null == 0 || Null->getZExtValue() != 0)
104 return false; // Not null terminated.
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000105
Chris Lattner1c81a6c2009-08-04 16:13:09 +0000106 // Verify that the null doesn't occur anywhere else in the string.
107 for (unsigned i = 0, e = ATy->getNumElements()-1; i != e; ++i)
108 // Reject constantexpr elements etc.
109 if (!isa<ConstantInt>(CVA->getOperand(i)) ||
110 CVA->getOperand(i) == Null)
111 return false;
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000112 return true;
Chris Lattner1c81a6c2009-08-04 16:13:09 +0000113 }
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000114
115 // Another possibility: [1 x i8] zeroinitializer
116 if (isa<ConstantAggregateZero>(C))
Chris Lattner1c81a6c2009-08-04 16:13:09 +0000117 return ATy->getNumElements() == 1;
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000118
119 return false;
120}
121
Chris Lattner7195a862009-08-05 04:25:40 +0000122/// getKindForGlobal - This is a top-level target-independent classifier for
Chris Lattner9de48762009-08-01 21:11:14 +0000123/// a global variable. Given an global variable and information from TM, it
124/// classifies the global in a variety of ways that make various target
125/// implementations simpler. The target implementation is free to ignore this
126/// extra info of course.
Chris Lattner7195a862009-08-05 04:25:40 +0000127SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV,
128 const TargetMachine &TM){
129 assert(!GV->isDeclaration() && !GV->hasAvailableExternallyLinkage() &&
130 "Can only be used for global definitions");
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000131
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000132 Reloc::Model ReloModel = TM.getRelocationModel();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000133
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000134 // Early exit - functions should be always in text sections.
135 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
136 if (GVar == 0)
Chris Lattnera9453412009-08-01 23:57:16 +0000137 return SectionKind::getText();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000138
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000139 // Handle thread-local data first.
140 if (GVar->isThreadLocal()) {
141 if (isSuitableForBSS(GVar))
Chris Lattnera9453412009-08-01 23:57:16 +0000142 return SectionKind::getThreadBSS();
143 return SectionKind::getThreadData();
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000144 }
145
Chris Lattner9b740052010-01-19 02:48:26 +0000146 // Variables with common linkage always get classified as common.
147 if (GVar->hasCommonLinkage())
148 return SectionKind::getCommon();
149
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000150 // Variable can be easily put to BSS section.
Chris Lattner66fa6a22010-01-19 04:15:51 +0000151 if (isSuitableForBSS(GVar)) {
152 if (GVar->hasLocalLinkage())
153 return SectionKind::getBSSLocal();
154 else if (GVar->hasExternalLinkage())
155 return SectionKind::getBSSExtern();
Chris Lattnera9453412009-08-01 23:57:16 +0000156 return SectionKind::getBSS();
Chris Lattner66fa6a22010-01-19 04:15:51 +0000157 }
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000158
159 Constant *C = GVar->getInitializer();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000160
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000161 // If the global is marked constant, we can put it into a mergable section,
162 // a mergable string section, or general .data if it contains relocations.
163 if (GVar->isConstant()) {
164 // If the initializer for the global contains something that requires a
165 // relocation, then we may have to drop this into a wriable data section
166 // even though it is marked const.
167 switch (C->getRelocationInfo()) {
Chris Lattner2aaa75e2009-11-07 09:20:54 +0000168 default: assert(0 && "unknown relocation info kind");
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000169 case Constant::NoRelocation:
170 // If initializer is a null-terminated string, put it in a "cstring"
Chris Lattner1c81a6c2009-08-04 16:13:09 +0000171 // section of the right width.
172 if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000173 if (const IntegerType *ITy =
Chris Lattner1c81a6c2009-08-04 16:13:09 +0000174 dyn_cast<IntegerType>(ATy->getElementType())) {
175 if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 ||
176 ITy->getBitWidth() == 32) &&
177 IsNullTerminatedString(C)) {
178 if (ITy->getBitWidth() == 8)
179 return SectionKind::getMergeable1ByteCString();
180 if (ITy->getBitWidth() == 16)
181 return SectionKind::getMergeable2ByteCString();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000182
Chris Lattner1c81a6c2009-08-04 16:13:09 +0000183 assert(ITy->getBitWidth() == 32 && "Unknown width");
184 return SectionKind::getMergeable4ByteCString();
185 }
186 }
187 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000188
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000189 // Otherwise, just drop it into a mergable constant section. If we have
190 // a section for this size, use it, otherwise use the arbitrary sized
191 // mergable section.
192 switch (TM.getTargetData()->getTypeAllocSize(C->getType())) {
Chris Lattnera9453412009-08-01 23:57:16 +0000193 case 4: return SectionKind::getMergeableConst4();
194 case 8: return SectionKind::getMergeableConst8();
195 case 16: return SectionKind::getMergeableConst16();
196 default: return SectionKind::getMergeableConst();
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000197 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000198
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000199 case Constant::LocalRelocation:
200 // In static relocation model, the linker will resolve all addresses, so
201 // the relocation entries will actually be constants by the time the app
202 // starts up. However, we can't put this into a mergable section, because
203 // the linker doesn't take relocations into consideration when it tries to
204 // merge entries in the section.
205 if (ReloModel == Reloc::Static)
Chris Lattnera9453412009-08-01 23:57:16 +0000206 return SectionKind::getReadOnly();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000207
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000208 // Otherwise, the dynamic linker needs to fix it up, put it in the
209 // writable data.rel.local section.
Chris Lattnera9453412009-08-01 23:57:16 +0000210 return SectionKind::getReadOnlyWithRelLocal();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000211
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000212 case Constant::GlobalRelocations:
213 // In static relocation model, the linker will resolve all addresses, so
214 // the relocation entries will actually be constants by the time the app
215 // starts up. However, we can't put this into a mergable section, because
216 // the linker doesn't take relocations into consideration when it tries to
217 // merge entries in the section.
218 if (ReloModel == Reloc::Static)
Chris Lattnera9453412009-08-01 23:57:16 +0000219 return SectionKind::getReadOnly();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000220
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000221 // Otherwise, the dynamic linker needs to fix it up, put it in the
222 // writable data.rel section.
Chris Lattnera9453412009-08-01 23:57:16 +0000223 return SectionKind::getReadOnlyWithRel();
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000224 }
225 }
226
227 // Okay, this isn't a constant. If the initializer for the global is going
228 // to require a runtime relocation by the dynamic linker, put it into a more
229 // specific section to improve startup time of the app. This coalesces these
230 // globals together onto fewer pages, improving the locality of the dynamic
231 // linker.
232 if (ReloModel == Reloc::Static)
Chris Lattnera9453412009-08-01 23:57:16 +0000233 return SectionKind::getDataNoRel();
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000234
235 switch (C->getRelocationInfo()) {
Chris Lattner2aaa75e2009-11-07 09:20:54 +0000236 default: assert(0 && "unknown relocation info kind");
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000237 case Constant::NoRelocation:
Chris Lattnera9453412009-08-01 23:57:16 +0000238 return SectionKind::getDataNoRel();
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000239 case Constant::LocalRelocation:
Chris Lattnera9453412009-08-01 23:57:16 +0000240 return SectionKind::getDataRelLocal();
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000241 case Constant::GlobalRelocations:
Chris Lattnera9453412009-08-01 23:57:16 +0000242 return SectionKind::getDataRel();
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000243 }
244}
245
246/// SectionForGlobal - This method computes the appropriate section to emit
247/// the specified global variable or function definition. This should not
248/// be passed external (or available externally) globals.
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000249const MCSection *TargetLoweringObjectFile::
Chris Lattner7195a862009-08-05 04:25:40 +0000250SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang,
Chris Lattner2931fe42009-07-29 05:09:30 +0000251 const TargetMachine &TM) const {
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000252 // Select section name.
Chris Lattner36c2b912009-08-06 16:39:58 +0000253 if (GV->hasSection())
254 return getExplicitSectionGlobal(GV, Kind, Mang, TM);
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000255
256
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000257 // Use default section depending on the 'type' of global
Chris Lattnercfd15d82009-08-01 21:46:23 +0000258 return SelectSectionForGlobal(GV, Kind, Mang, TM);
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000259}
260
Chris Lattner7195a862009-08-05 04:25:40 +0000261
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000262// Lame default implementation. Calculate the section name for global.
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000263const MCSection *
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000264TargetLoweringObjectFile::SelectSectionForGlobal(const GlobalValue *GV,
Chris Lattnercfd15d82009-08-01 21:46:23 +0000265 SectionKind Kind,
Chris Lattner2931fe42009-07-29 05:09:30 +0000266 Mangler *Mang,
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000267 const TargetMachine &TM) const{
Chris Lattnercfd15d82009-08-01 21:46:23 +0000268 assert(!Kind.isThreadLocal() && "Doesn't support TLS");
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000269
Chris Lattnercfd15d82009-08-01 21:46:23 +0000270 if (Kind.isText())
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000271 return getTextSection();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000272
Chris Lattnera3954e62009-08-01 21:56:13 +0000273 if (Kind.isBSS() && BSSSection != 0)
274 return BSSSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000275
Chris Lattnercfd15d82009-08-01 21:46:23 +0000276 if (Kind.isReadOnly() && ReadOnlySection != 0)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000277 return ReadOnlySection;
278
279 return getDataSection();
280}
281
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +0000282/// getSectionForConstant - Given a mergable constant with the
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000283/// specified size and relocation information, return a section that it
284/// should be placed in.
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000285const MCSection *
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +0000286TargetLoweringObjectFile::getSectionForConstant(SectionKind Kind) const {
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000287 if (Kind.isReadOnly() && ReadOnlySection != 0)
288 return ReadOnlySection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000289
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000290 return DataSection;
291}
292
Chris Lattner8886dc22009-09-16 01:46:41 +0000293/// getSymbolForDwarfGlobalReference - Return an MCExpr to use for a
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +0000294/// reference to the specified global variable from exception
295/// handling information.
Chris Lattner8886dc22009-09-16 01:46:41 +0000296const MCExpr *TargetLoweringObjectFile::
297getSymbolForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +0000298 MachineModuleInfo *MMI, unsigned Encoding) const {
Chris Lattner31a54742010-01-16 21:57:06 +0000299 // FIXME: Use GetGlobalValueSymbol.
Chris Lattner8886dc22009-09-16 01:46:41 +0000300 SmallString<128> Name;
301 Mang->getNameWithPrefix(Name, GV, false);
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +0000302 const MCSymbol *Sym = getContext().GetOrCreateSymbol(Name.str());
303
304 return getSymbolForDwarfReference(Sym, MMI, Encoding);
Chris Lattner8886dc22009-09-16 01:46:41 +0000305}
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000306
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +0000307const MCExpr *TargetLoweringObjectFile::
308getSymbolForDwarfReference(const MCSymbol *Sym, MachineModuleInfo *MMI,
309 unsigned Encoding) const {
310 const MCExpr *Res = MCSymbolRefExpr::Create(Sym, getContext());
311
312 switch (Encoding & 0xF0) {
313 default:
314 llvm_report_error("Do not support this DWARF encoding yet!");
315 break;
316 case dwarf::DW_EH_PE_absptr:
317 // Do nothing special
318 break;
319 case dwarf::DW_EH_PE_pcrel:
320 // FIXME: PCSymbol
321 const MCExpr *PC = MCSymbolRefExpr::Create(".", getContext());
322 Res = MCBinaryExpr::CreateSub(Res, PC, getContext());
323 break;
324 }
325
326 return Res;
327}
328
329unsigned TargetLoweringObjectFile::getPersonalityEncoding() const {
330 return dwarf::DW_EH_PE_absptr;
331}
332
333unsigned TargetLoweringObjectFile::getLSDAEncoding() const {
334 return dwarf::DW_EH_PE_absptr;
335}
336
337unsigned TargetLoweringObjectFile::getFDEEncoding() const {
338 return dwarf::DW_EH_PE_absptr;
339}
340
341unsigned TargetLoweringObjectFile::getTTypeEncoding() const {
342 return dwarf::DW_EH_PE_absptr;
343}
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000344
345//===----------------------------------------------------------------------===//
346// ELF
347//===----------------------------------------------------------------------===//
Chris Lattnera93ce3b2009-08-13 00:37:15 +0000348typedef StringMap<const MCSectionELF*> ELFUniqueMapTy;
349
350TargetLoweringObjectFileELF::~TargetLoweringObjectFileELF() {
351 // If we have the section uniquing map, free it.
352 delete (ELFUniqueMapTy*)UniquingMap;
353}
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000354
Chris Lattner8011f5f2009-08-08 20:14:13 +0000355const MCSection *TargetLoweringObjectFileELF::
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000356getELFSection(StringRef Section, unsigned Type, unsigned Flags,
357 SectionKind Kind, bool IsExplicit) const {
Chris Lattnera93ce3b2009-08-13 00:37:15 +0000358 if (UniquingMap == 0)
359 UniquingMap = new ELFUniqueMapTy();
360 ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)UniquingMap;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000361
Chris Lattnera93ce3b2009-08-13 00:37:15 +0000362 // Do the lookup, if we have a hit, return it.
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000363 const MCSectionELF *&Entry = Map[Section];
Chris Lattnera93ce3b2009-08-13 00:37:15 +0000364 if (Entry) return Entry;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000365
Bruno Cardoso Lopes0ff6eff2009-08-13 23:30:21 +0000366 return Entry = MCSectionELF::Create(Section, Type, Flags, Kind, IsExplicit,
367 getContext());
Chris Lattner8011f5f2009-08-08 20:14:13 +0000368}
369
Chris Lattner01316272009-07-31 17:42:42 +0000370void TargetLoweringObjectFileELF::Initialize(MCContext &Ctx,
371 const TargetMachine &TM) {
Benjamin Kramer858ea8f2009-08-17 17:05:44 +0000372 if (UniquingMap != 0)
373 ((ELFUniqueMapTy*)UniquingMap)->clear();
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000374 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000375
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000376 BSSSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000377 getELFSection(".bss", MCSectionELF::SHT_NOBITS,
378 MCSectionELF::SHF_WRITE | MCSectionELF::SHF_ALLOC,
379 SectionKind::getBSS());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000380
381 TextSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000382 getELFSection(".text", MCSectionELF::SHT_PROGBITS,
383 MCSectionELF::SHF_EXECINSTR | MCSectionELF::SHF_ALLOC,
384 SectionKind::getText());
385
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000386 DataSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000387 getELFSection(".data", MCSectionELF::SHT_PROGBITS,
388 MCSectionELF::SHF_WRITE | MCSectionELF::SHF_ALLOC,
389 SectionKind::getDataRel());
390
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000391 ReadOnlySection =
392 getELFSection(".rodata", MCSectionELF::SHT_PROGBITS,
393 MCSectionELF::SHF_ALLOC,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000394 SectionKind::getReadOnly());
395
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000396 TLSDataSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000397 getELFSection(".tdata", MCSectionELF::SHT_PROGBITS,
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000398 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_TLS |
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000399 MCSectionELF::SHF_WRITE, SectionKind::getThreadData());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000400
401 TLSBSSSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000402 getELFSection(".tbss", MCSectionELF::SHT_NOBITS,
403 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_TLS |
404 MCSectionELF::SHF_WRITE, SectionKind::getThreadBSS());
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000405
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000406 DataRelSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000407 getELFSection(".data.rel", MCSectionELF::SHT_PROGBITS,
408 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
409 SectionKind::getDataRel());
410
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000411 DataRelLocalSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000412 getELFSection(".data.rel.local", MCSectionELF::SHT_PROGBITS,
413 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
414 SectionKind::getDataRelLocal());
415
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000416 DataRelROSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000417 getELFSection(".data.rel.ro", MCSectionELF::SHT_PROGBITS,
418 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
419 SectionKind::getReadOnlyWithRel());
420
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000421 DataRelROLocalSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000422 getELFSection(".data.rel.ro.local", MCSectionELF::SHT_PROGBITS,
423 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
424 SectionKind::getReadOnlyWithRelLocal());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000425
426 MergeableConst4Section =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000427 getELFSection(".rodata.cst4", MCSectionELF::SHT_PROGBITS,
428 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE,
429 SectionKind::getMergeableConst4());
430
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000431 MergeableConst8Section =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000432 getELFSection(".rodata.cst8", MCSectionELF::SHT_PROGBITS,
433 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE,
434 SectionKind::getMergeableConst8());
435
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000436 MergeableConst16Section =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000437 getELFSection(".rodata.cst16", MCSectionELF::SHT_PROGBITS,
438 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_MERGE,
439 SectionKind::getMergeableConst16());
Chris Lattnerb5c952a2009-08-02 00:34:36 +0000440
441 StaticCtorSection =
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000442 getELFSection(".ctors", MCSectionELF::SHT_PROGBITS,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000443 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
444 SectionKind::getDataRel());
445
Chris Lattnerb5c952a2009-08-02 00:34:36 +0000446 StaticDtorSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000447 getELFSection(".dtors", MCSectionELF::SHT_PROGBITS,
448 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
449 SectionKind::getDataRel());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000450
Chris Lattner72d228d2009-08-02 07:24:22 +0000451 // Exception Handling Sections.
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000452
Chris Lattner3d778052009-08-02 01:34:32 +0000453 // FIXME: We're emitting LSDA info into a readonly section on ELF, even though
454 // it contains relocatable pointers. In PIC mode, this is probably a big
455 // runtime hit for C++ apps. Either the contents of the LSDA need to be
456 // adjusted or this should be a data section.
457 LSDASection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000458 getELFSection(".gcc_except_table", MCSectionELF::SHT_PROGBITS,
459 MCSectionELF::SHF_ALLOC, SectionKind::getReadOnly());
Chris Lattnerc01e3332009-08-02 06:52:36 +0000460 EHFrameSection =
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000461 getELFSection(".eh_frame", MCSectionELF::SHT_PROGBITS,
Chris Lattnerdc4d7932009-08-15 16:54:02 +0000462 MCSectionELF::SHF_ALLOC | MCSectionELF::SHF_WRITE,
463 SectionKind::getDataRel());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000464
Chris Lattner72d228d2009-08-02 07:24:22 +0000465 // Debug Info Sections.
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000466 DwarfAbbrevSection =
467 getELFSection(".debug_abbrev", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000468 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000469 DwarfInfoSection =
470 getELFSection(".debug_info", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000471 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000472 DwarfLineSection =
473 getELFSection(".debug_line", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000474 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000475 DwarfFrameSection =
476 getELFSection(".debug_frame", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000477 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000478 DwarfPubNamesSection =
479 getELFSection(".debug_pubnames", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000480 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000481 DwarfPubTypesSection =
482 getELFSection(".debug_pubtypes", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000483 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000484 DwarfStrSection =
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000485 getELFSection(".debug_str", MCSectionELF::SHT_PROGBITS, 0,
486 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000487 DwarfLocSection =
488 getELFSection(".debug_loc", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000489 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000490 DwarfARangesSection =
491 getELFSection(".debug_aranges", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000492 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000493 DwarfRangesSection =
494 getELFSection(".debug_ranges", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000495 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000496 DwarfMacroInfoSection =
497 getELFSection(".debug_macinfo", MCSectionELF::SHT_PROGBITS, 0,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000498 SectionKind::getMetadata());
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000499}
500
501
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000502static SectionKind
Benjamin Kramere3c0e102010-01-22 18:21:23 +0000503getELFKindForNamedSection(StringRef Name, SectionKind K) {
504 if (Name.empty() || Name[0] != '.') return K;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000505
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000506 // Some lame default implementation based on some magic section names.
Benjamin Kramere3c0e102010-01-22 18:21:23 +0000507 if (Name == ".bss" ||
508 Name.startswith(".bss.") ||
509 Name.startswith(".gnu.linkonce.b.") ||
510 Name.startswith(".llvm.linkonce.b.") ||
511 Name == ".sbss" ||
512 Name.startswith(".sbss.") ||
513 Name.startswith(".gnu.linkonce.sb.") ||
514 Name.startswith(".llvm.linkonce.sb."))
Chris Lattnera9453412009-08-01 23:57:16 +0000515 return SectionKind::getBSS();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000516
Benjamin Kramere3c0e102010-01-22 18:21:23 +0000517 if (Name == ".tdata" ||
518 Name.startswith(".tdata.") ||
519 Name.startswith(".gnu.linkonce.td.") ||
520 Name.startswith(".llvm.linkonce.td."))
Chris Lattnera9453412009-08-01 23:57:16 +0000521 return SectionKind::getThreadData();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000522
Benjamin Kramere3c0e102010-01-22 18:21:23 +0000523 if (Name == ".tbss" ||
524 Name.startswith(".tbss.") ||
525 Name.startswith(".gnu.linkonce.tb.") ||
526 Name.startswith(".llvm.linkonce.tb."))
Chris Lattnera9453412009-08-01 23:57:16 +0000527 return SectionKind::getThreadBSS();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000528
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000529 return K;
530}
531
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000532
Chris Lattnera38b2872010-01-13 06:38:18 +0000533static unsigned getELFSectionType(StringRef Name, SectionKind K) {
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000534
Chris Lattnera38b2872010-01-13 06:38:18 +0000535 if (Name == ".init_array")
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000536 return MCSectionELF::SHT_INIT_ARRAY;
537
Chris Lattnera38b2872010-01-13 06:38:18 +0000538 if (Name == ".fini_array")
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000539 return MCSectionELF::SHT_FINI_ARRAY;
540
Chris Lattnera38b2872010-01-13 06:38:18 +0000541 if (Name == ".preinit_array")
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000542 return MCSectionELF::SHT_PREINIT_ARRAY;
543
544 if (K.isBSS() || K.isThreadBSS())
545 return MCSectionELF::SHT_NOBITS;
546
547 return MCSectionELF::SHT_PROGBITS;
548}
549
550
551static unsigned
552getELFSectionFlags(SectionKind K) {
553 unsigned Flags = 0;
554
555 if (!K.isMetadata())
556 Flags |= MCSectionELF::SHF_ALLOC;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000557
Anton Korobeynikov58409452009-08-18 14:06:12 +0000558 if (K.isText())
559 Flags |= MCSectionELF::SHF_EXECINSTR;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000560
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000561 if (K.isWriteable())
562 Flags |= MCSectionELF::SHF_WRITE;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000563
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000564 if (K.isThreadLocal())
565 Flags |= MCSectionELF::SHF_TLS;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000566
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000567 // K.isMergeableConst() is left out to honour PR4650
568 if (K.isMergeableCString() || K.isMergeableConst4() ||
569 K.isMergeableConst8() || K.isMergeableConst16())
570 Flags |= MCSectionELF::SHF_MERGE;
571
572 if (K.isMergeableCString())
573 Flags |= MCSectionELF::SHF_STRINGS;
574
575 return Flags;
576}
577
578
Chris Lattner36c2b912009-08-06 16:39:58 +0000579const MCSection *TargetLoweringObjectFileELF::
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000580getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattner36c2b912009-08-06 16:39:58 +0000581 Mangler *Mang, const TargetMachine &TM) const {
Benjamin Kramere3c0e102010-01-22 18:21:23 +0000582 StringRef SectionName = GV->getSection();
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000583
Chris Lattner36c2b912009-08-06 16:39:58 +0000584 // Infer section flags from the section name if we can.
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000585 Kind = getELFKindForNamedSection(SectionName, Kind);
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000586
587 return getELFSection(SectionName,
588 getELFSectionType(SectionName, Kind),
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000589 getELFSectionFlags(Kind), Kind, true);
Chris Lattner36c2b912009-08-06 16:39:58 +0000590}
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000591
592static const char *getSectionPrefixForUniqueGlobal(SectionKind Kind) {
593 if (Kind.isText()) return ".gnu.linkonce.t.";
594 if (Kind.isReadOnly()) return ".gnu.linkonce.r.";
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000595
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000596 if (Kind.isThreadData()) return ".gnu.linkonce.td.";
597 if (Kind.isThreadBSS()) return ".gnu.linkonce.tb.";
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000598
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000599 if (Kind.isDataNoRel()) return ".gnu.linkonce.d.";
600 if (Kind.isDataRelLocal()) return ".gnu.linkonce.d.rel.local.";
601 if (Kind.isDataRel()) return ".gnu.linkonce.d.rel.";
602 if (Kind.isReadOnlyWithRelLocal()) return ".gnu.linkonce.d.rel.ro.local.";
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000603
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000604 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
605 return ".gnu.linkonce.d.rel.ro.";
606}
607
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000608const MCSection *TargetLoweringObjectFileELF::
Chris Lattnercfd15d82009-08-01 21:46:23 +0000609SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattner2931fe42009-07-29 05:09:30 +0000610 Mangler *Mang, const TargetMachine &TM) const {
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000611
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000612 // If this global is linkonce/weak and the target handles this by emitting it
613 // into a 'uniqued' section name, create and return the section now.
Chris Lattnerea96f152010-01-19 03:06:01 +0000614 if (GV->isWeakForLinker() && !Kind.isCommon() && !Kind.isBSS()) {
Chris Lattnercfd15d82009-08-01 21:46:23 +0000615 const char *Prefix = getSectionPrefixForUniqueGlobal(Kind);
Chris Lattnere295e552010-01-17 19:23:46 +0000616 SmallString<128> Name;
Chris Lattnera38b2872010-01-13 06:38:18 +0000617 Name.append(Prefix, Prefix+strlen(Prefix));
Chris Lattner656aeb82010-01-13 21:29:21 +0000618 Mang->getNameWithPrefix(Name, GV, false);
Chris Lattnere295e552010-01-17 19:23:46 +0000619 return getELFSection(Name.str(), getELFSectionType(Name.str(), Kind),
620 getELFSectionFlags(Kind), Kind);
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000621 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000622
Chris Lattnercfd15d82009-08-01 21:46:23 +0000623 if (Kind.isText()) return TextSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000624
Chris Lattnerdb727932009-08-04 05:35:56 +0000625 if (Kind.isMergeable1ByteCString() ||
626 Kind.isMergeable2ByteCString() ||
627 Kind.isMergeable4ByteCString()) {
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000628
Chris Lattnerd94d60f2009-07-29 04:54:38 +0000629 // We also need alignment here.
630 // FIXME: this is getting the alignment of the character, not the
631 // alignment of the global!
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000632 unsigned Align =
Chris Lattnerd94d60f2009-07-29 04:54:38 +0000633 TM.getTargetData()->getPreferredAlignment(cast<GlobalVariable>(GV));
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000634
Chris Lattnerbf9abe52009-08-04 16:19:50 +0000635 const char *SizeSpec = ".rodata.str1.";
Chris Lattnerdb727932009-08-04 05:35:56 +0000636 if (Kind.isMergeable2ByteCString())
Chris Lattnerbf9abe52009-08-04 16:19:50 +0000637 SizeSpec = ".rodata.str2.";
Chris Lattnerdb727932009-08-04 05:35:56 +0000638 else if (Kind.isMergeable4ByteCString())
Chris Lattnerbf9abe52009-08-04 16:19:50 +0000639 SizeSpec = ".rodata.str4.";
Chris Lattnerdb727932009-08-04 05:35:56 +0000640 else
641 assert(Kind.isMergeable1ByteCString() && "unknown string width");
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000642
643
Chris Lattnerbf9abe52009-08-04 16:19:50 +0000644 std::string Name = SizeSpec + utostr(Align);
Benjamin Kramere3c0e102010-01-22 18:21:23 +0000645 return getELFSection(Name, MCSectionELF::SHT_PROGBITS,
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000646 MCSectionELF::SHF_ALLOC |
647 MCSectionELF::SHF_MERGE |
648 MCSectionELF::SHF_STRINGS,
Bruno Cardoso Lopes26d7ecd2009-08-13 05:07:35 +0000649 Kind);
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000650 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000651
Chris Lattnercfd15d82009-08-01 21:46:23 +0000652 if (Kind.isMergeableConst()) {
Chris Lattner0a9ec092009-08-15 06:08:34 +0000653 if (Kind.isMergeableConst4() && MergeableConst4Section)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000654 return MergeableConst4Section;
Chris Lattner0a9ec092009-08-15 06:08:34 +0000655 if (Kind.isMergeableConst8() && MergeableConst8Section)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000656 return MergeableConst8Section;
Chris Lattner0a9ec092009-08-15 06:08:34 +0000657 if (Kind.isMergeableConst16() && MergeableConst16Section)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000658 return MergeableConst16Section;
659 return ReadOnlySection; // .const
660 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000661
Chris Lattnercfd15d82009-08-01 21:46:23 +0000662 if (Kind.isReadOnly()) return ReadOnlySection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000663
Chris Lattnercfd15d82009-08-01 21:46:23 +0000664 if (Kind.isThreadData()) return TLSDataSection;
665 if (Kind.isThreadBSS()) return TLSBSSSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000666
Chris Lattnerea96f152010-01-19 03:06:01 +0000667 // Note: we claim that common symbols are put in BSSSection, but they are
668 // really emitted with the magic .comm directive, which creates a symbol table
669 // entry but not a section.
Chris Lattner9b740052010-01-19 02:48:26 +0000670 if (Kind.isBSS() || Kind.isCommon()) return BSSSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000671
Chris Lattnercfd15d82009-08-01 21:46:23 +0000672 if (Kind.isDataNoRel()) return DataSection;
673 if (Kind.isDataRelLocal()) return DataRelLocalSection;
674 if (Kind.isDataRel()) return DataRelSection;
675 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000676
Chris Lattnercfd15d82009-08-01 21:46:23 +0000677 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000678 return DataRelROSection;
679}
680
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +0000681/// getSectionForConstant - Given a mergeable constant with the
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000682/// specified size and relocation information, return a section that it
683/// should be placed in.
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000684const MCSection *TargetLoweringObjectFileELF::
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +0000685getSectionForConstant(SectionKind Kind) const {
Richard Osborne24214f32009-08-17 16:37:11 +0000686 if (Kind.isMergeableConst4() && MergeableConst4Section)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000687 return MergeableConst4Section;
Richard Osborne24214f32009-08-17 16:37:11 +0000688 if (Kind.isMergeableConst8() && MergeableConst8Section)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000689 return MergeableConst8Section;
Richard Osborne24214f32009-08-17 16:37:11 +0000690 if (Kind.isMergeableConst16() && MergeableConst16Section)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000691 return MergeableConst16Section;
692 if (Kind.isReadOnly())
693 return ReadOnlySection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000694
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000695 if (Kind.isReadOnlyWithRelLocal()) return DataRelROLocalSection;
696 assert(Kind.isReadOnlyWithRel() && "Unknown section kind");
697 return DataRelROSection;
698}
699
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +0000700const MCExpr *TargetLoweringObjectFileELF::
701getSymbolForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
702 MachineModuleInfo *MMI, unsigned Encoding) const {
703
704 if (Encoding & dwarf::DW_EH_PE_indirect) {
705 MachineModuleInfoELF &ELFMMI = MMI->getObjFileInfo<MachineModuleInfoELF>();
706
707 SmallString<128> Name;
708 Mang->getNameWithPrefix(Name, GV, true);
Anton Korobeynikovfb37d022010-02-15 22:36:26 +0000709 Name += ".DW.stub";
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +0000710
711 // Add information about the stub reference to ELFMMI so that the stub
712 // gets emitted by the asmprinter.
713 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name.str());
714 MCSymbol *&StubSym = ELFMMI.getGVStubEntry(Sym);
715 if (StubSym == 0) {
716 Name.clear();
717 Mang->getNameWithPrefix(Name, GV, false);
718 StubSym = getContext().GetOrCreateSymbol(Name.str());
719 }
720
721 return TargetLoweringObjectFile::
722 getSymbolForDwarfReference(Sym, MMI,
723 Encoding & ~dwarf::DW_EH_PE_indirect);
724 }
725
726 return TargetLoweringObjectFile::
727 getSymbolForDwarfGlobalReference(GV, Mang, MMI, Encoding);
728}
729
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000730//===----------------------------------------------------------------------===//
731// MachO
732//===----------------------------------------------------------------------===//
733
Chris Lattneraf4bf002009-08-12 23:55:02 +0000734typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
Chris Lattner849290a2009-08-08 20:22:20 +0000735
Chris Lattneraf4bf002009-08-12 23:55:02 +0000736TargetLoweringObjectFileMachO::~TargetLoweringObjectFileMachO() {
737 // If we have the MachO uniquing map, free it.
738 delete (MachOUniqueMapTy*)UniquingMap;
739}
740
741
742const MCSectionMachO *TargetLoweringObjectFileMachO::
Daniel Dunbarde46a5b2009-11-06 10:58:06 +0000743getMachOSection(StringRef Segment, StringRef Section,
Chris Lattner72a676a2009-08-10 01:39:42 +0000744 unsigned TypeAndAttributes,
745 unsigned Reserved2, SectionKind Kind) const {
Chris Lattneraf4bf002009-08-12 23:55:02 +0000746 // We unique sections by their segment/section pair. The returned section
747 // may not have the same flags as the requested section, if so this should be
748 // diagnosed by the client as an error.
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000749
Chris Lattneraf4bf002009-08-12 23:55:02 +0000750 // Create the map if it doesn't already exist.
751 if (UniquingMap == 0)
752 UniquingMap = new MachOUniqueMapTy();
753 MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)UniquingMap;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000754
Chris Lattneraf4bf002009-08-12 23:55:02 +0000755 // Form the name to look up.
756 SmallString<64> Name;
Daniel Dunbarb5b99e62009-08-26 23:12:33 +0000757 Name += Segment;
Chris Lattneraf4bf002009-08-12 23:55:02 +0000758 Name.push_back(',');
Daniel Dunbarb5b99e62009-08-26 23:12:33 +0000759 Name += Section;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000760
Chris Lattneraf4bf002009-08-12 23:55:02 +0000761 // Do the lookup, if we have a hit, return it.
Daniel Dunbarb5b99e62009-08-26 23:12:33 +0000762 const MCSectionMachO *&Entry = Map[Name.str()];
Chris Lattneraf4bf002009-08-12 23:55:02 +0000763 if (Entry) return Entry;
764
765 // Otherwise, return a new section.
766 return Entry = MCSectionMachO::Create(Segment, Section, TypeAndAttributes,
767 Reserved2, Kind, getContext());
Chris Lattner8011f5f2009-08-08 20:14:13 +0000768}
769
Chris Lattner92873462009-08-03 21:53:27 +0000770
Chris Lattner01316272009-07-31 17:42:42 +0000771void TargetLoweringObjectFileMachO::Initialize(MCContext &Ctx,
772 const TargetMachine &TM) {
Benjamin Kramer858ea8f2009-08-17 17:05:44 +0000773 if (UniquingMap != 0)
774 ((MachOUniqueMapTy*)UniquingMap)->clear();
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000775 TargetLoweringObjectFile::Initialize(Ctx, TM);
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000776
Chris Lattner72a676a2009-08-10 01:39:42 +0000777 TextSection // .text
778 = getMachOSection("__TEXT", "__text",
779 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
780 SectionKind::getText());
781 DataSection // .data
782 = getMachOSection("__DATA", "__data", 0, SectionKind::getDataRel());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000783
Chris Lattner72a676a2009-08-10 01:39:42 +0000784 CStringSection // .cstring
785 = getMachOSection("__TEXT", "__cstring", MCSectionMachO::S_CSTRING_LITERALS,
786 SectionKind::getMergeable1ByteCString());
787 UStringSection
788 = getMachOSection("__TEXT","__ustring", 0,
789 SectionKind::getMergeable2ByteCString());
790 FourByteConstantSection // .literal4
791 = getMachOSection("__TEXT", "__literal4", MCSectionMachO::S_4BYTE_LITERALS,
792 SectionKind::getMergeableConst4());
793 EightByteConstantSection // .literal8
794 = getMachOSection("__TEXT", "__literal8", MCSectionMachO::S_8BYTE_LITERALS,
795 SectionKind::getMergeableConst8());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000796
Chris Lattner28faffe2009-07-28 17:50:28 +0000797 // ld_classic doesn't support .literal16 in 32-bit mode, and ld64 falls back
798 // to using it in -static mode.
Chris Lattner72a676a2009-08-10 01:39:42 +0000799 SixteenByteConstantSection = 0;
Chris Lattner28faffe2009-07-28 17:50:28 +0000800 if (TM.getRelocationModel() != Reloc::Static &&
801 TM.getTargetData()->getPointerSize() == 32)
Chris Lattner72a676a2009-08-10 01:39:42 +0000802 SixteenByteConstantSection = // .literal16
803 getMachOSection("__TEXT", "__literal16",MCSectionMachO::S_16BYTE_LITERALS,
Chris Lattner849290a2009-08-08 20:22:20 +0000804 SectionKind::getMergeableConst16());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000805
Chris Lattner72a676a2009-08-10 01:39:42 +0000806 ReadOnlySection // .const
807 = getMachOSection("__TEXT", "__const", 0, SectionKind::getReadOnly());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000808
Chris Lattner72a676a2009-08-10 01:39:42 +0000809 TextCoalSection
810 = getMachOSection("__TEXT", "__textcoal_nt",
811 MCSectionMachO::S_COALESCED |
812 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
813 SectionKind::getText());
814 ConstTextCoalSection
815 = getMachOSection("__TEXT", "__const_coal", MCSectionMachO::S_COALESCED,
816 SectionKind::getText());
817 ConstDataCoalSection
818 = getMachOSection("__DATA","__const_coal", MCSectionMachO::S_COALESCED,
819 SectionKind::getText());
820 ConstDataSection // .const_data
821 = getMachOSection("__DATA", "__const", 0,
822 SectionKind::getReadOnlyWithRel());
823 DataCoalSection
824 = getMachOSection("__DATA","__datacoal_nt", MCSectionMachO::S_COALESCED,
825 SectionKind::getDataRel());
Chris Lattnerf26c7792010-01-19 06:25:51 +0000826 DataCommonSection
827 = getMachOSection("__DATA","__common", MCSectionMachO::S_ZEROFILL,
828 SectionKind::getBSS());
829 DataBSSSection
830 = getMachOSection("__DATA","__bss", MCSectionMachO::S_ZEROFILL,
831 SectionKind::getBSS());
832
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000833
Chris Lattner0fcad8a2009-08-13 00:05:07 +0000834 LazySymbolPointerSection
835 = getMachOSection("__DATA", "__la_symbol_ptr",
836 MCSectionMachO::S_LAZY_SYMBOL_POINTERS,
837 SectionKind::getMetadata());
838 NonLazySymbolPointerSection
839 = getMachOSection("__DATA", "__nl_symbol_ptr",
840 MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
841 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000842
Chris Lattnerb5c952a2009-08-02 00:34:36 +0000843 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattner72a676a2009-08-10 01:39:42 +0000844 StaticCtorSection
845 = getMachOSection("__TEXT", "__constructor", 0,SectionKind::getDataRel());
846 StaticDtorSection
847 = getMachOSection("__TEXT", "__destructor", 0, SectionKind::getDataRel());
Chris Lattnerb5c952a2009-08-02 00:34:36 +0000848 } else {
Chris Lattner72a676a2009-08-10 01:39:42 +0000849 StaticCtorSection
850 = getMachOSection("__DATA", "__mod_init_func",
851 MCSectionMachO::S_MOD_INIT_FUNC_POINTERS,
852 SectionKind::getDataRel());
853 StaticDtorSection
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000854 = getMachOSection("__DATA", "__mod_term_func",
Chris Lattner72a676a2009-08-10 01:39:42 +0000855 MCSectionMachO::S_MOD_TERM_FUNC_POINTERS,
856 SectionKind::getDataRel());
Chris Lattnerb5c952a2009-08-02 00:34:36 +0000857 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000858
Chris Lattner72d228d2009-08-02 07:24:22 +0000859 // Exception Handling.
Bill Wendlingf0e65b82009-11-19 19:21:09 +0000860 LSDASection = getMachOSection("__DATA", "__gcc_except_tab", 0,
861 SectionKind::getDataRel());
Chris Lattnerc01e3332009-08-02 06:52:36 +0000862 EHFrameSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000863 getMachOSection("__TEXT", "__eh_frame",
864 MCSectionMachO::S_COALESCED |
865 MCSectionMachO::S_ATTR_NO_TOC |
866 MCSectionMachO::S_ATTR_STRIP_STATIC_SYMS |
867 MCSectionMachO::S_ATTR_LIVE_SUPPORT,
868 SectionKind::getReadOnly());
Chris Lattner72d228d2009-08-02 07:24:22 +0000869
870 // Debug Information.
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000871 DwarfAbbrevSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000872 getMachOSection("__DWARF", "__debug_abbrev", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000873 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000874 DwarfInfoSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000875 getMachOSection("__DWARF", "__debug_info", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000876 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000877 DwarfLineSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000878 getMachOSection("__DWARF", "__debug_line", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000879 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000880 DwarfFrameSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000881 getMachOSection("__DWARF", "__debug_frame", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000882 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000883 DwarfPubNamesSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000884 getMachOSection("__DWARF", "__debug_pubnames", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000885 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000886 DwarfPubTypesSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000887 getMachOSection("__DWARF", "__debug_pubtypes", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000888 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000889 DwarfStrSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000890 getMachOSection("__DWARF", "__debug_str", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000891 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000892 DwarfLocSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000893 getMachOSection("__DWARF", "__debug_loc", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000894 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000895 DwarfARangesSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000896 getMachOSection("__DWARF", "__debug_aranges", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000897 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000898 DwarfRangesSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000899 getMachOSection("__DWARF", "__debug_ranges", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000900 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000901 DwarfMacroInfoSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000902 getMachOSection("__DWARF", "__debug_macinfo", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000903 SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000904 DwarfDebugInlineSection =
Chris Lattner72a676a2009-08-10 01:39:42 +0000905 getMachOSection("__DWARF", "__debug_inlined", MCSectionMachO::S_ATTR_DEBUG,
Chris Lattner849290a2009-08-08 20:22:20 +0000906 SectionKind::getMetadata());
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000907}
908
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000909const MCSection *TargetLoweringObjectFileMachO::
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000910getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattner36c2b912009-08-06 16:39:58 +0000911 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattner72a676a2009-08-10 01:39:42 +0000912 // Parse the section specifier and create it if valid.
913 StringRef Segment, Section;
914 unsigned TAA, StubSize;
915 std::string ErrorCode =
916 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
917 TAA, StubSize);
Chris Lattner0fcad8a2009-08-13 00:05:07 +0000918 if (!ErrorCode.empty()) {
919 // If invalid, report the error with llvm_report_error.
920 llvm_report_error("Global variable '" + GV->getNameStr() +
921 "' has an invalid section specifier '" + GV->getSection()+
922 "': " + ErrorCode + ".");
923 // Fall back to dropping it into the data section.
924 return DataSection;
925 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000926
Chris Lattner0fcad8a2009-08-13 00:05:07 +0000927 // Get the section.
928 const MCSectionMachO *S =
929 getMachOSection(Segment, Section, TAA, StubSize, Kind);
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000930
Chris Lattner0fcad8a2009-08-13 00:05:07 +0000931 // Okay, now that we got the section, verify that the TAA & StubSize agree.
932 // If the user declared multiple globals with different section flags, we need
933 // to reject it here.
934 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
935 // If invalid, report the error with llvm_report_error.
936 llvm_report_error("Global variable '" + GV->getNameStr() +
937 "' section type or attributes does not match previous"
938 " section specifier");
939 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000940
Chris Lattner0fcad8a2009-08-13 00:05:07 +0000941 return S;
Chris Lattner36c2b912009-08-06 16:39:58 +0000942}
943
944const MCSection *TargetLoweringObjectFileMachO::
Chris Lattnercfd15d82009-08-01 21:46:23 +0000945SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattner2931fe42009-07-29 05:09:30 +0000946 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnercfd15d82009-08-01 21:46:23 +0000947 assert(!Kind.isThreadLocal() && "Darwin doesn't support TLS");
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000948
Chris Lattnercfd15d82009-08-01 21:46:23 +0000949 if (Kind.isText())
Chris Lattnera741b022009-08-01 21:42:58 +0000950 return GV->isWeakForLinker() ? TextCoalSection : TextSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000951
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000952 // If this is weak/linkonce, put this in a coalescable section, either in text
953 // or data depending on if it is writable.
Chris Lattnera741b022009-08-01 21:42:58 +0000954 if (GV->isWeakForLinker()) {
Chris Lattnercfd15d82009-08-01 21:46:23 +0000955 if (Kind.isReadOnly())
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000956 return ConstTextCoalSection;
957 return DataCoalSection;
958 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000959
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000960 // FIXME: Alignment check should be handled by section classifier.
Chris Lattner01567a82009-08-04 16:27:13 +0000961 if (Kind.isMergeable1ByteCString() ||
962 Kind.isMergeable2ByteCString()) {
963 if (TM.getTargetData()->getPreferredAlignment(
964 cast<GlobalVariable>(GV)) < 32) {
965 if (Kind.isMergeable1ByteCString())
Chris Lattnera3954e62009-08-01 21:56:13 +0000966 return CStringSection;
Chris Lattner01567a82009-08-04 16:27:13 +0000967 assert(Kind.isMergeable2ByteCString());
968 return UStringSection;
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000969 }
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000970 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000971
Chris Lattnercfd15d82009-08-01 21:46:23 +0000972 if (Kind.isMergeableConst()) {
973 if (Kind.isMergeableConst4())
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000974 return FourByteConstantSection;
Chris Lattnercfd15d82009-08-01 21:46:23 +0000975 if (Kind.isMergeableConst8())
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000976 return EightByteConstantSection;
Chris Lattnercfd15d82009-08-01 21:46:23 +0000977 if (Kind.isMergeableConst16() && SixteenByteConstantSection)
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000978 return SixteenByteConstantSection;
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000979 }
Chris Lattner01567a82009-08-04 16:27:13 +0000980
981 // Otherwise, if it is readonly, but not something we can specially optimize,
982 // just drop it in .const.
Chris Lattnercfd15d82009-08-01 21:46:23 +0000983 if (Kind.isReadOnly())
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000984 return ReadOnlySection;
985
986 // If this is marked const, put it into a const section. But if the dynamic
987 // linker needs to write to it, put it in the data segment.
Chris Lattnercfd15d82009-08-01 21:46:23 +0000988 if (Kind.isReadOnlyWithRel())
Chris Lattnerc4c40a92009-07-28 03:13:23 +0000989 return ConstDataSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +0000990
Chris Lattner87edd272010-01-19 02:09:44 +0000991 // Put zero initialized globals with strong external linkage in the
992 // DATA, __common section with the .zerofill directive.
Chris Lattner66fa6a22010-01-19 04:15:51 +0000993 if (Kind.isBSSExtern())
Chris Lattner87edd272010-01-19 02:09:44 +0000994 return DataCommonSection;
Chris Lattnerf26c7792010-01-19 06:25:51 +0000995
996 // Put zero initialized globals with local linkage in __DATA,__bss directive
997 // with the .zerofill directive (aka .lcomm).
998 if (Kind.isBSSLocal())
999 return DataBSSSection;
Chris Lattner87edd272010-01-19 02:09:44 +00001000
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001001 // Otherwise, just drop the variable in the normal data section.
1002 return DataSection;
1003}
1004
Chris Lattnere6ad12f2009-07-31 18:48:30 +00001005const MCSection *
Chris Lattnerd7f8c0a2009-08-01 23:46:12 +00001006TargetLoweringObjectFileMachO::getSectionForConstant(SectionKind Kind) const {
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001007 // If this constant requires a relocation, we have to put it in the data
1008 // segment, not in the text segment.
Eric Christopher41df3e32010-01-07 19:44:05 +00001009 if (Kind.isDataRel() || Kind.isReadOnlyWithRel())
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001010 return ConstDataSection;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001011
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001012 if (Kind.isMergeableConst4())
1013 return FourByteConstantSection;
1014 if (Kind.isMergeableConst8())
1015 return EightByteConstantSection;
Chris Lattner28faffe2009-07-28 17:50:28 +00001016 if (Kind.isMergeableConst16() && SixteenByteConstantSection)
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001017 return SixteenByteConstantSection;
1018 return ReadOnlySection; // .const
1019}
1020
Chris Lattner84362ac2009-07-31 20:52:39 +00001021/// shouldEmitUsedDirectiveFor - This hook allows targets to selectively decide
1022/// not to emit the UsedDirective for some symbols in llvm.used.
1023// FIXME: REMOVE this (rdar://7071300)
1024bool TargetLoweringObjectFileMachO::
1025shouldEmitUsedDirectiveFor(const GlobalValue *GV, Mangler *Mang) const {
1026 /// On Darwin, internally linked data beginning with "L" or "l" does not have
1027 /// the directive emitted (this occurs in ObjC metadata).
1028 if (!GV) return false;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001029
Chris Lattner84362ac2009-07-31 20:52:39 +00001030 // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix.
1031 if (GV->hasLocalLinkage() && !isa<Function>(GV)) {
1032 // FIXME: ObjC metadata is currently emitted as internal symbols that have
1033 // \1L and \0l prefixes on them. Fix them to be Private/LinkerPrivate and
1034 // this horrible hack can go away.
Chris Lattner47177f72010-01-16 02:16:09 +00001035 SmallString<64> Name;
Chris Lattnera1ed0682010-01-16 03:38:27 +00001036 Mang->getNameWithPrefix(Name, GV, false);
Chris Lattner84362ac2009-07-31 20:52:39 +00001037 if (Name[0] == 'L' || Name[0] == 'l')
1038 return false;
1039 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001040
Chris Lattner84362ac2009-07-31 20:52:39 +00001041 return true;
1042}
1043
Chris Lattner8886dc22009-09-16 01:46:41 +00001044const MCExpr *TargetLoweringObjectFileMachO::
1045getSymbolForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +00001046 MachineModuleInfo *MMI, unsigned Encoding) const {
Chris Lattner8886dc22009-09-16 01:46:41 +00001047 // The mach-o version of this method defaults to returning a stub reference.
Anton Korobeynikovd779bcb2010-02-15 22:35:59 +00001048
1049 if (Encoding & dwarf::DW_EH_PE_indirect) {
1050 SmallString<128> Name;
1051 Mang->getNameWithPrefix(Name, GV, true);
1052 Name += "$non_lazy_ptr";
1053 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name.str());
1054
1055 return TargetLoweringObjectFile::
1056 getSymbolForDwarfReference(Sym, MMI,
1057 Encoding & ~dwarf::DW_EH_PE_indirect);
1058 }
1059
1060 return TargetLoweringObjectFile::
1061 getSymbolForDwarfGlobalReference(GV, Mang, MMI, Encoding);
Chris Lattner8886dc22009-09-16 01:46:41 +00001062}
1063
Chris Lattner84362ac2009-07-31 20:52:39 +00001064
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001065//===----------------------------------------------------------------------===//
1066// COFF
1067//===----------------------------------------------------------------------===//
1068
Chris Lattnera93ce3b2009-08-13 00:37:15 +00001069typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy;
1070
1071TargetLoweringObjectFileCOFF::~TargetLoweringObjectFileCOFF() {
1072 delete (COFFUniqueMapTy*)UniquingMap;
1073}
1074
Chris Lattner849290a2009-08-08 20:22:20 +00001075
Chris Lattner92873462009-08-03 21:53:27 +00001076const MCSection *TargetLoweringObjectFileCOFF::
Chris Lattnera38b2872010-01-13 06:38:18 +00001077getCOFFSection(StringRef Name, bool isDirective, SectionKind Kind) const {
Chris Lattnera93ce3b2009-08-13 00:37:15 +00001078 // Create the map if it doesn't already exist.
1079 if (UniquingMap == 0)
1080 UniquingMap = new MachOUniqueMapTy();
1081 COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)UniquingMap;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001082
Chris Lattnera93ce3b2009-08-13 00:37:15 +00001083 // Do the lookup, if we have a hit, return it.
1084 const MCSectionCOFF *&Entry = Map[Name];
1085 if (Entry) return Entry;
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001086
Chris Lattnera93ce3b2009-08-13 00:37:15 +00001087 return Entry = MCSectionCOFF::Create(Name, isDirective, Kind, getContext());
Chris Lattner8011f5f2009-08-08 20:14:13 +00001088}
1089
Chris Lattner01316272009-07-31 17:42:42 +00001090void TargetLoweringObjectFileCOFF::Initialize(MCContext &Ctx,
1091 const TargetMachine &TM) {
Benjamin Kramer858ea8f2009-08-17 17:05:44 +00001092 if (UniquingMap != 0)
1093 ((COFFUniqueMapTy*)UniquingMap)->clear();
Chris Lattnere6ad12f2009-07-31 18:48:30 +00001094 TargetLoweringObjectFile::Initialize(Ctx, TM);
Chris Lattner849290a2009-08-08 20:22:20 +00001095 TextSection = getCOFFSection("\t.text", true, SectionKind::getText());
1096 DataSection = getCOFFSection("\t.data", true, SectionKind::getDataRel());
Chris Lattnerb5c952a2009-08-02 00:34:36 +00001097 StaticCtorSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001098 getCOFFSection(".ctors", false, SectionKind::getDataRel());
Chris Lattnerb5c952a2009-08-02 00:34:36 +00001099 StaticDtorSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001100 getCOFFSection(".dtors", false, SectionKind::getDataRel());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001101
Chris Lattner2c3026d2009-08-18 16:56:17 +00001102 // FIXME: We're emitting LSDA info into a readonly section on COFF, even
1103 // though it contains relocatable pointers. In PIC mode, this is probably a
1104 // big runtime hit for C++ apps. Either the contents of the LSDA need to be
1105 // adjusted or this should be a data section.
1106 LSDASection =
1107 getCOFFSection(".gcc_except_table", false, SectionKind::getReadOnly());
1108 EHFrameSection =
1109 getCOFFSection(".eh_frame", false, SectionKind::getDataRel());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001110
Chris Lattner72d228d2009-08-02 07:24:22 +00001111 // Debug info.
1112 // FIXME: Don't use 'directive' mode here.
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001113 DwarfAbbrevSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001114 getCOFFSection("\t.section\t.debug_abbrev,\"dr\"",
1115 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001116 DwarfInfoSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001117 getCOFFSection("\t.section\t.debug_info,\"dr\"",
1118 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001119 DwarfLineSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001120 getCOFFSection("\t.section\t.debug_line,\"dr\"",
1121 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001122 DwarfFrameSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001123 getCOFFSection("\t.section\t.debug_frame,\"dr\"",
1124 true, SectionKind::getMetadata());
Chris Lattner72d228d2009-08-02 07:24:22 +00001125 DwarfPubNamesSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001126 getCOFFSection("\t.section\t.debug_pubnames,\"dr\"",
1127 true, SectionKind::getMetadata());
Chris Lattner72d228d2009-08-02 07:24:22 +00001128 DwarfPubTypesSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001129 getCOFFSection("\t.section\t.debug_pubtypes,\"dr\"",
1130 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001131 DwarfStrSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001132 getCOFFSection("\t.section\t.debug_str,\"dr\"",
1133 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001134 DwarfLocSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001135 getCOFFSection("\t.section\t.debug_loc,\"dr\"",
1136 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001137 DwarfARangesSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001138 getCOFFSection("\t.section\t.debug_aranges,\"dr\"",
1139 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001140 DwarfRangesSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001141 getCOFFSection("\t.section\t.debug_ranges,\"dr\"",
1142 true, SectionKind::getMetadata());
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001143 DwarfMacroInfoSection =
Chris Lattner849290a2009-08-08 20:22:20 +00001144 getCOFFSection("\t.section\t.debug_macinfo,\"dr\"",
1145 true, SectionKind::getMetadata());
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001146}
1147
Chris Lattner36c2b912009-08-06 16:39:58 +00001148const MCSection *TargetLoweringObjectFileCOFF::
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001149getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattner36c2b912009-08-06 16:39:58 +00001150 Mangler *Mang, const TargetMachine &TM) const {
Benjamin Kramere3c0e102010-01-22 18:21:23 +00001151 return getCOFFSection(GV->getSection(), false, Kind);
Chris Lattner36c2b912009-08-06 16:39:58 +00001152}
1153
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001154static const char *getCOFFSectionPrefixForUniqueGlobal(SectionKind Kind) {
1155 if (Kind.isText())
1156 return ".text$linkonce";
1157 if (Kind.isWriteable())
1158 return ".data$linkonce";
1159 return ".rdata$linkonce";
1160}
1161
1162
Chris Lattnere6ad12f2009-07-31 18:48:30 +00001163const MCSection *TargetLoweringObjectFileCOFF::
Chris Lattnercfd15d82009-08-01 21:46:23 +00001164SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
Chris Lattner2931fe42009-07-29 05:09:30 +00001165 Mangler *Mang, const TargetMachine &TM) const {
Chris Lattnercfd15d82009-08-01 21:46:23 +00001166 assert(!Kind.isThreadLocal() && "Doesn't support TLS");
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001167
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001168 // If this global is linkonce/weak and the target handles this by emitting it
1169 // into a 'uniqued' section name, create and return the section now.
Chris Lattnera741b022009-08-01 21:42:58 +00001170 if (GV->isWeakForLinker()) {
Chris Lattnercfd15d82009-08-01 21:46:23 +00001171 const char *Prefix = getCOFFSectionPrefixForUniqueGlobal(Kind);
Chris Lattnera38b2872010-01-13 06:38:18 +00001172 SmallString<128> Name(Prefix, Prefix+strlen(Prefix));
Chris Lattner9d957362010-01-13 19:19:17 +00001173 Mang->getNameWithPrefix(Name, GV, false);
Chris Lattnera38b2872010-01-13 06:38:18 +00001174 return getCOFFSection(Name.str(), false, Kind);
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001175 }
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001176
Chris Lattnercfd15d82009-08-01 21:46:23 +00001177 if (Kind.isText())
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001178 return getTextSection();
Anton Korobeynikov5e258a32009-09-09 08:41:20 +00001179
Chris Lattnerc4c40a92009-07-28 03:13:23 +00001180 return getDataSection();
1181}
Chris Lattner8886dc22009-09-16 01:46:41 +00001182