1 //===-- llvm/Target/TargetLoweringObjectFile.cpp - Object File Info -------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements classes used to handle lowerings specific to common
11 // object file formats.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/Target/TargetLoweringObjectFile.h"
16 #include "llvm/Constants.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/Function.h"
19 #include "llvm/GlobalVariable.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCExpr.h"
22 #include "llvm/MC/MCStreamer.h"
23 #include "llvm/MC/MCSymbol.h"
24 #include "llvm/Target/Mangler.h"
25 #include "llvm/Target/TargetData.h"
26 #include "llvm/Target/TargetMachine.h"
27 #include "llvm/Target/TargetOptions.h"
28 #include "llvm/Support/Dwarf.h"
29 #include "llvm/Support/ErrorHandling.h"
30 #include "llvm/Support/raw_ostream.h"
31 #include "llvm/ADT/SmallString.h"
34 //===----------------------------------------------------------------------===//
36 //===----------------------------------------------------------------------===//
38 TargetLoweringObjectFile::TargetLoweringObjectFile() : Ctx(0) {
43 StaticCtorSection
= 0;
44 StaticDtorSection
= 0;
47 CommDirectiveSupportsAlignment
= true;
48 DwarfAbbrevSection
= 0;
51 DwarfFrameSection
= 0;
52 DwarfPubNamesSection
= 0;
53 DwarfPubTypesSection
= 0;
54 DwarfDebugInlineSection
= 0;
57 DwarfARangesSection
= 0;
58 DwarfRangesSection
= 0;
59 DwarfMacroInfoSection
= 0;
61 IsFunctionEHSymbolGlobal
= false;
62 IsFunctionEHFrameSymbolPrivate
= true;
63 SupportsWeakOmittedEHFrame
= true;
66 TargetLoweringObjectFile::~TargetLoweringObjectFile() {
69 static bool isSuitableForBSS(const GlobalVariable
*GV
) {
70 Constant
*C
= GV
->getInitializer();
72 // Must have zero initializer.
73 if (!C
->isNullValue())
76 // Leave constant zeros in readonly constant sections, so they can be shared.
80 // If the global has an explicit section specified, don't put it in BSS.
81 if (!GV
->getSection().empty())
84 // If -nozero-initialized-in-bss is specified, don't ever use BSS.
88 // Otherwise, put it in BSS!
92 /// IsNullTerminatedString - Return true if the specified constant (which is
93 /// known to have a type that is an array of 1/2/4 byte elements) ends with a
94 /// nul value and contains no other nuls in it.
95 static bool IsNullTerminatedString(const Constant
*C
) {
96 const ArrayType
*ATy
= cast
<ArrayType
>(C
->getType());
98 // First check: is we have constant array of i8 terminated with zero
99 if (const ConstantArray
*CVA
= dyn_cast
<ConstantArray
>(C
)) {
100 if (ATy
->getNumElements() == 0) return false;
103 dyn_cast
<ConstantInt
>(CVA
->getOperand(ATy
->getNumElements()-1));
104 if (Null
== 0 || !Null
->isZero())
105 return false; // Not null terminated.
107 // Verify that the null doesn't occur anywhere else in the string.
108 for (unsigned i
= 0, e
= ATy
->getNumElements()-1; i
!= e
; ++i
)
109 // Reject constantexpr elements etc.
110 if (!isa
<ConstantInt
>(CVA
->getOperand(i
)) ||
111 CVA
->getOperand(i
) == Null
)
116 // Another possibility: [1 x i8] zeroinitializer
117 if (isa
<ConstantAggregateZero
>(C
))
118 return ATy
->getNumElements() == 1;
123 /// getKindForGlobal - This is a top-level target-independent classifier for
124 /// a global variable. Given an global variable and information from TM, it
125 /// classifies the global in a variety of ways that make various target
126 /// implementations simpler. The target implementation is free to ignore this
127 /// extra info of course.
128 SectionKind
TargetLoweringObjectFile::getKindForGlobal(const GlobalValue
*GV
,
129 const TargetMachine
&TM
){
130 assert(!GV
->isDeclaration() && !GV
->hasAvailableExternallyLinkage() &&
131 "Can only be used for global definitions");
133 Reloc::Model ReloModel
= TM
.getRelocationModel();
135 // Early exit - functions should be always in text sections.
136 const GlobalVariable
*GVar
= dyn_cast
<GlobalVariable
>(GV
);
138 return SectionKind::getText();
140 // Handle thread-local data first.
141 if (GVar
->isThreadLocal()) {
142 if (isSuitableForBSS(GVar
))
143 return SectionKind::getThreadBSS();
144 return SectionKind::getThreadData();
147 // Variables with common linkage always get classified as common.
148 if (GVar
->hasCommonLinkage())
149 return SectionKind::getCommon();
151 // Variable can be easily put to BSS section.
152 if (isSuitableForBSS(GVar
)) {
153 if (GVar
->hasLocalLinkage())
154 return SectionKind::getBSSLocal();
155 else if (GVar
->hasExternalLinkage())
156 return SectionKind::getBSSExtern();
157 return SectionKind::getBSS();
160 Constant
*C
= GVar
->getInitializer();
162 // If the global is marked constant, we can put it into a mergable section,
163 // a mergable string section, or general .data if it contains relocations.
164 if (GVar
->isConstant()) {
165 // If the initializer for the global contains something that requires a
166 // relocation, then we may have to drop this into a wriable data section
167 // even though it is marked const.
168 switch (C
->getRelocationInfo()) {
169 default: assert(0 && "unknown relocation info kind");
170 case Constant::NoRelocation
:
171 // If the global is required to have a unique address, it can't be put
172 // into a mergable section: just drop it into the general read-only
174 if (!GVar
->hasUnnamedAddr())
175 return SectionKind::getReadOnly();
177 // If initializer is a null-terminated string, put it in a "cstring"
178 // section of the right width.
179 if (const ArrayType
*ATy
= dyn_cast
<ArrayType
>(C
->getType())) {
180 if (const IntegerType
*ITy
=
181 dyn_cast
<IntegerType
>(ATy
->getElementType())) {
182 if ((ITy
->getBitWidth() == 8 || ITy
->getBitWidth() == 16 ||
183 ITy
->getBitWidth() == 32) &&
184 IsNullTerminatedString(C
)) {
185 if (ITy
->getBitWidth() == 8)
186 return SectionKind::getMergeable1ByteCString();
187 if (ITy
->getBitWidth() == 16)
188 return SectionKind::getMergeable2ByteCString();
190 assert(ITy
->getBitWidth() == 32 && "Unknown width");
191 return SectionKind::getMergeable4ByteCString();
196 // Otherwise, just drop it into a mergable constant section. If we have
197 // a section for this size, use it, otherwise use the arbitrary sized
199 switch (TM
.getTargetData()->getTypeAllocSize(C
->getType())) {
200 case 4: return SectionKind::getMergeableConst4();
201 case 8: return SectionKind::getMergeableConst8();
202 case 16: return SectionKind::getMergeableConst16();
203 default: return SectionKind::getMergeableConst();
206 case Constant::LocalRelocation
:
207 // In static relocation model, the linker will resolve all addresses, so
208 // the relocation entries will actually be constants by the time the app
209 // starts up. However, we can't put this into a mergable section, because
210 // the linker doesn't take relocations into consideration when it tries to
211 // merge entries in the section.
212 if (ReloModel
== Reloc::Static
)
213 return SectionKind::getReadOnly();
215 // Otherwise, the dynamic linker needs to fix it up, put it in the
216 // writable data.rel.local section.
217 return SectionKind::getReadOnlyWithRelLocal();
219 case Constant::GlobalRelocations
:
220 // In static relocation model, the linker will resolve all addresses, so
221 // the relocation entries will actually be constants by the time the app
222 // starts up. However, we can't put this into a mergable section, because
223 // the linker doesn't take relocations into consideration when it tries to
224 // merge entries in the section.
225 if (ReloModel
== Reloc::Static
)
226 return SectionKind::getReadOnly();
228 // Otherwise, the dynamic linker needs to fix it up, put it in the
229 // writable data.rel section.
230 return SectionKind::getReadOnlyWithRel();
234 // Okay, this isn't a constant. If the initializer for the global is going
235 // to require a runtime relocation by the dynamic linker, put it into a more
236 // specific section to improve startup time of the app. This coalesces these
237 // globals together onto fewer pages, improving the locality of the dynamic
239 if (ReloModel
== Reloc::Static
)
240 return SectionKind::getDataNoRel();
242 switch (C
->getRelocationInfo()) {
243 default: assert(0 && "unknown relocation info kind");
244 case Constant::NoRelocation
:
245 return SectionKind::getDataNoRel();
246 case Constant::LocalRelocation
:
247 return SectionKind::getDataRelLocal();
248 case Constant::GlobalRelocations
:
249 return SectionKind::getDataRel();
253 /// SectionForGlobal - This method computes the appropriate section to emit
254 /// the specified global variable or function definition. This should not
255 /// be passed external (or available externally) globals.
256 const MCSection
*TargetLoweringObjectFile::
257 SectionForGlobal(const GlobalValue
*GV
, SectionKind Kind
, Mangler
*Mang
,
258 const TargetMachine
&TM
) const {
259 // Select section name.
260 if (GV
->hasSection())
261 return getExplicitSectionGlobal(GV
, Kind
, Mang
, TM
);
264 // Use default section depending on the 'type' of global
265 return SelectSectionForGlobal(GV
, Kind
, Mang
, TM
);
269 // Lame default implementation. Calculate the section name for global.
271 TargetLoweringObjectFile::SelectSectionForGlobal(const GlobalValue
*GV
,
274 const TargetMachine
&TM
) const{
275 assert(!Kind
.isThreadLocal() && "Doesn't support TLS");
278 return getTextSection();
280 if (Kind
.isBSS() && BSSSection
!= 0)
283 if (Kind
.isReadOnly() && ReadOnlySection
!= 0)
284 return ReadOnlySection
;
286 return getDataSection();
289 /// getSectionForConstant - Given a mergable constant with the
290 /// specified size and relocation information, return a section that it
291 /// should be placed in.
293 TargetLoweringObjectFile::getSectionForConstant(SectionKind Kind
) const {
294 if (Kind
.isReadOnly() && ReadOnlySection
!= 0)
295 return ReadOnlySection
;
300 /// getExprForDwarfGlobalReference - Return an MCExpr to use for a
301 /// reference to the specified global variable from exception
302 /// handling information.
303 const MCExpr
*TargetLoweringObjectFile::
304 getExprForDwarfGlobalReference(const GlobalValue
*GV
, Mangler
*Mang
,
305 MachineModuleInfo
*MMI
, unsigned Encoding
,
306 MCStreamer
&Streamer
) const {
307 const MCSymbol
*Sym
= Mang
->getSymbol(GV
);
308 return getExprForDwarfReference(Sym
, Mang
, MMI
, Encoding
, Streamer
);
311 const MCExpr
*TargetLoweringObjectFile::
312 getExprForDwarfReference(const MCSymbol
*Sym
, Mangler
*Mang
,
313 MachineModuleInfo
*MMI
, unsigned Encoding
,
314 MCStreamer
&Streamer
) const {
315 const MCExpr
*Res
= MCSymbolRefExpr::Create(Sym
, getContext());
317 switch (Encoding
& 0xF0) {
319 report_fatal_error("We do not support this DWARF encoding yet!");
320 case dwarf::DW_EH_PE_absptr
:
321 // Do nothing special
323 case dwarf::DW_EH_PE_pcrel
: {
324 // Emit a label to the streamer for the current position. This gives us
326 MCSymbol
*PCSym
= getContext().CreateTempSymbol();
327 Streamer
.EmitLabel(PCSym
);
328 const MCExpr
*PC
= MCSymbolRefExpr::Create(PCSym
, getContext());
329 return MCBinaryExpr::CreateSub(Res
, PC
, getContext());
334 unsigned TargetLoweringObjectFile::getPersonalityEncoding() const {
335 return dwarf::DW_EH_PE_absptr
;
338 unsigned TargetLoweringObjectFile::getLSDAEncoding() const {
339 return dwarf::DW_EH_PE_absptr
;
342 unsigned TargetLoweringObjectFile::getFDEEncoding() const {
343 return dwarf::DW_EH_PE_absptr
;
346 unsigned TargetLoweringObjectFile::getTTypeEncoding() const {
347 return dwarf::DW_EH_PE_absptr
;