blob: 0b810c77cfcdfd1e65c6b29303cac07209e91934 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- TargetAsmInfo.cpp - Asm Info ---------------------------------------==//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines target asm properties related what form asm statements
11// should take.
12//
13//===----------------------------------------------------------------------===//
14
Anton Korobeynikovb4f658c2008-06-28 13:45:57 +000015#include "llvm/Constants.h"
16#include "llvm/GlobalVariable.h"
17#include "llvm/Function.h"
18#include "llvm/Module.h"
19#include "llvm/Type.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020#include "llvm/Target/TargetAsmInfo.h"
Anton Korobeynikovb4f658c2008-06-28 13:45:57 +000021#include "llvm/Target/TargetOptions.h"
Anton Korobeynikov65c0d872008-02-27 23:33:50 +000022#include "llvm/Support/Dwarf.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include <cctype>
24#include <cstring>
25
26using namespace llvm;
27
28TargetAsmInfo::TargetAsmInfo() :
29 TextSection("\t.text"),
30 DataSection("\t.data"),
31 BSSSection("\t.bss"),
32 TLSDataSection("\t.section .tdata,\"awT\",@progbits"),
33 TLSBSSSection("\t.section .tbss,\"awT\",@nobits"),
34 ZeroFillDirective(0),
Dan Gohmana65530a2008-05-05 00:28:39 +000035 NonexecutableStackDirective(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036 NeedsSet(false),
37 MaxInstLength(4),
38 PCSymbol("$"),
39 SeparatorChar(';'),
40 CommentString("#"),
41 GlobalPrefix(""),
42 PrivateGlobalPrefix("."),
43 JumpTableSpecialLabelPrefix(0),
44 GlobalVarAddrPrefix(""),
45 GlobalVarAddrSuffix(""),
46 FunctionAddrPrefix(""),
47 FunctionAddrSuffix(""),
Bill Wendlingd1bda4f2007-09-11 08:27:17 +000048 PersonalityPrefix(""),
49 PersonalitySuffix(""),
Bill Wendling2d369922007-09-11 17:20:55 +000050 NeedsIndirectEncoding(false),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 InlineAsmStart("#APP"),
52 InlineAsmEnd("#NO_APP"),
53 AssemblerDialect(0),
Dale Johannesen8f03a202008-06-03 18:09:06 +000054 StringConstantPrefix(".str"),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 ZeroDirective("\t.zero\t"),
56 ZeroDirectiveSuffix(0),
57 AsciiDirective("\t.ascii\t"),
58 AscizDirective("\t.asciz\t"),
59 Data8bitsDirective("\t.byte\t"),
60 Data16bitsDirective("\t.short\t"),
61 Data32bitsDirective("\t.long\t"),
62 Data64bitsDirective("\t.quad\t"),
63 AlignDirective("\t.align\t"),
64 AlignmentIsInBytes(true),
Lauro Ramos Venancio9190bc42008-02-28 22:14:09 +000065 TextAlignFillValue(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066 SwitchToSectionDirective("\t.section\t"),
67 TextSectionStartSuffix(""),
68 DataSectionStartSuffix(""),
69 SectionEndDirectiveSuffix(0),
70 ConstantPoolSection("\t.section .rodata"),
71 JumpTableDataSection("\t.section .rodata"),
72 JumpTableDirective(0),
73 CStringSection(0),
74 StaticCtorsSection("\t.section .ctors,\"aw\",@progbits"),
75 StaticDtorsSection("\t.section .dtors,\"aw\",@progbits"),
76 FourByteConstantSection(0),
77 EightByteConstantSection(0),
78 SixteenByteConstantSection(0),
79 ReadOnlySection(0),
Gordon Henriksene383f2a2007-12-23 20:58:16 +000080 GlobalDirective("\t.globl\t"),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081 SetDirective(0),
82 LCOMMDirective(0),
83 COMMDirective("\t.comm\t"),
84 COMMDirectiveTakesAlignment(true),
85 HasDotTypeDotSizeDirective(true),
86 UsedDirective(0),
87 WeakRefDirective(0),
Dale Johannesenfb3ac732007-11-20 23:24:42 +000088 WeakDefDirective(0),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 HiddenDirective("\t.hidden\t"),
90 ProtectedDirective("\t.protected\t"),
91 AbsoluteDebugSectionOffsets(false),
92 AbsoluteEHSectionOffsets(false),
93 HasLEB128(false),
Dan Gohman307ad202007-09-24 21:09:53 +000094 HasDotLocAndDotFile(false),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 SupportsDebugInformation(false),
96 SupportsExceptionHandling(false),
97 DwarfRequiresFrameSection(true),
Dale Johannesen23b89a62007-11-21 00:45:00 +000098 GlobalEHDirective(0),
Dale Johannesenf09b5992008-01-10 02:03:30 +000099 SupportsWeakOmittedEHFrame(true),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100 DwarfSectionOffsetDirective(0),
101 DwarfAbbrevSection(".debug_abbrev"),
102 DwarfInfoSection(".debug_info"),
103 DwarfLineSection(".debug_line"),
104 DwarfFrameSection(".debug_frame"),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 DwarfPubNamesSection(".debug_pubnames"),
106 DwarfPubTypesSection(".debug_pubtypes"),
107 DwarfStrSection(".debug_str"),
108 DwarfLocSection(".debug_loc"),
109 DwarfARangesSection(".debug_aranges"),
110 DwarfRangesSection(".debug_ranges"),
111 DwarfMacInfoSection(".debug_macinfo"),
112 DwarfEHFrameSection(".eh_frame"),
113 DwarfExceptionSection(".gcc_except_table"),
114 AsmTransCBE(0) {
115}
116
117TargetAsmInfo::~TargetAsmInfo() {
118}
119
120/// Measure the specified inline asm to determine an approximation of its
121/// length.
122/// Comments (which run till the next SeparatorChar or newline) do not
123/// count as an instruction.
124/// Any other non-whitespace text is considered an instruction, with
125/// multiple instructions separated by SeparatorChar or newlines.
126/// Variable-length instructions are not handled here; this function
127/// may be overloaded in the target code to do that.
128unsigned TargetAsmInfo::getInlineAsmLength(const char *Str) const {
129 // Count the number of instructions in the asm.
130 bool atInsnStart = true;
131 unsigned Length = 0;
132 for (; *Str; ++Str) {
133 if (*Str == '\n' || *Str == SeparatorChar)
134 atInsnStart = true;
135 if (atInsnStart && !isspace(*Str)) {
136 Length += MaxInstLength;
137 atInsnStart = false;
138 }
139 if (atInsnStart && strncmp(Str, CommentString, strlen(CommentString))==0)
140 atInsnStart = false;
141 }
142
143 return Length;
144}
145
Anton Korobeynikov8750d7c2008-02-29 22:09:08 +0000146unsigned TargetAsmInfo::PreferredEHDataFormat(DwarfEncoding::Target Reason,
Anton Korobeynikov65c0d872008-02-27 23:33:50 +0000147 bool Global) const {
148 return dwarf::DW_EH_PE_absptr;
149}
150
Anton Korobeynikovb4f658c2008-06-28 13:45:57 +0000151static bool isSuitableForBSS(const GlobalVariable *GV) {
152 if (!GV->hasInitializer())
153 return true;
154
155 // Leave constant zeros in readonly constant sections, so they can be shared
156 Constant *C = GV->getInitializer();
157 return (C->isNullValue() && !GV->isConstant() && !NoZerosInBSS);
158}
159
160SectionKind::Kind
161TargetAsmInfo::SectionKindForGlobal(const GlobalValue *GV) const {
162 // Early exit - functions should be always in text sections.
163 if (isa<Function>(GV))
164 return SectionKind::Text;
165
166 const GlobalVariable* GVar = dyn_cast<GlobalVariable>(GV);
167 bool isThreadLocal = GVar->isThreadLocal();
168 assert(GVar && "Invalid global value for section selection");
169
170 SectionKind::Kind kind;
171 if (isSuitableForBSS(GVar)) {
172 // Variable can be easily put to BSS section.
173 return (isThreadLocal ? SectionKind::ThreadBSS : SectionKind::BSS);
174 } else if (GVar->isConstant() && !isThreadLocal) {
175 // Now we know, that varible has initializer and it is constant. We need to
176 // check its initializer to decide, which section to output it into. Also
177 // note, there is no thread-local r/o section.
178 Constant *C = GVar->getInitializer();
179 if (C->ContainsRelocations())
180 kind = SectionKind::ROData;
181 else {
182 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
183 // Check, if initializer is a null-terminated string
184 if (CVA && CVA->isCString())
185 kind = SectionKind::RODataMergeStr;
186 else
187 kind = SectionKind::RODataMergeConst;
188 }
189 }
190
191 // Variable is not constant or thread-local - emit to generic data section.
192 return (isThreadLocal ? SectionKind::ThreadData : SectionKind::Data);
193}
Anton Korobeynikovb3593bf2008-07-09 13:16:59 +0000194
195unsigned
196TargetAsmInfo::SectionFlagsForGlobal(const GlobalValue *GV,
Anton Korobeynikovb2bbf6e2008-07-09 13:17:36 +0000197 const char* name) const {
Anton Korobeynikovb3593bf2008-07-09 13:16:59 +0000198 unsigned flags = SectionFlags::None;
199
200 // Decode flags from global itself.
201 if (GV) {
202 SectionKind::Kind kind = SectionKindForGlobal(GV);
203 switch (kind) {
204 case SectionKind::Text:
205 flags |= SectionFlags::Code;
206 break;
207 case SectionKind::ThreadData:
208 flags |= SectionFlags::TLS;
209 // FALLS THROUGH
210 case SectionKind::Data:
211 flags |= SectionFlags::Writeable;
212 break;
213 case SectionKind::ThreadBSS:
214 flags |= SectionFlags::TLS;
215 // FALLS THROUGH
216 case SectionKind::BSS:
217 flags |= SectionFlags::BSS;
218 break;
219 case SectionKind::ROData:
220 // No additional flags here
221 break;
222 case SectionKind::RODataMergeStr:
223 flags |= SectionFlags::Strings;
224 // FALLS THROUGH
225 case SectionKind::RODataMergeConst:
226 flags |= SectionFlags::Mergeable;
227 break;
228 default:
229 assert(0 && "Unexpected section kind!");
230 }
231
232 if (GV->hasLinkOnceLinkage() ||
233 GV->hasWeakLinkage() ||
234 GV->hasCommonLinkage())
235 flags |= SectionFlags::Linkonce;
236 }
237
238 // Add flags from sections, if any.
239 if (name) {
240 // Some lame default implementation
241 if (strcmp(name, ".bss") == 0 ||
242 strncmp(name, ".bss.", 5) == 0 ||
Anton Korobeynikovf2e90532008-07-09 13:18:38 +0000243 strncmp(name, ".llvm.linkonce.b.", 17) == 0)
Anton Korobeynikovb3593bf2008-07-09 13:16:59 +0000244 flags |= SectionFlags::BSS;
245 else if (strcmp(name, ".tdata") == 0 ||
246 strncmp(name, ".tdata.", 7) == 0 ||
Anton Korobeynikovf2e90532008-07-09 13:18:38 +0000247 strncmp(name, ".llvm.linkonce.td.", 18) == 0)
Anton Korobeynikovb3593bf2008-07-09 13:16:59 +0000248 flags |= SectionFlags::TLS;
249 else if (strcmp(name, ".tbss") == 0 ||
250 strncmp(name, ".tbss.", 6) == 0 ||
Anton Korobeynikovf2e90532008-07-09 13:18:38 +0000251 strncmp(name, ".llvm.linkonce.tb.", 18) == 0)
Anton Korobeynikovb3593bf2008-07-09 13:16:59 +0000252 flags |= SectionFlags::BSS | SectionFlags::TLS;
253 }
254
255 return flags;
256}
Anton Korobeynikov562c3f22008-07-09 13:18:02 +0000257
Anton Korobeynikov8bf5d342008-07-09 13:19:08 +0000258std::string
Anton Korobeynikov562c3f22008-07-09 13:18:02 +0000259TargetAsmInfo::SectionForGlobal(const GlobalValue *GV) const {
Anton Korobeynikov676a6252008-07-09 13:22:46 +0000260 unsigned flags = SectionFlagsForGlobal(GV, GV->getSection().c_str());
261
262 std::string Name;
263
264 // Select section name
265 if (GV->hasSection()) {
266 // Honour section already set, if any
267 Name = GV->getSection();
268 } else {
269 // Use default section depending on the 'type' of global
270 Name = SelectSectionForGlobal(GV);
271 }
272
273 Name += PrintSectionFlags(flags);
274 return Name;
275}
276
277// Lame default implementation. Calculate the section name for global.
278std::string
279TargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
Anton Korobeynikov562c3f22008-07-09 13:18:02 +0000280 SectionKind::Kind kind = SectionKindForGlobal(GV);
281
Anton Korobeynikov676a6252008-07-09 13:22:46 +0000282 if (GV->hasLinkOnceLinkage() ||
283 GV->hasWeakLinkage() ||
284 GV->hasCommonLinkage())
285 return UniqueSectionForGlobal(GV, kind);
286 else {
287 if (kind == SectionKind::Text)
288 return getTextSection();
289 else if (kind == SectionKind::BSS && getBSSSection())
290 return getBSSSection();
291 else if (getReadOnlySection() &&
292 (kind == SectionKind::ROData ||
293 kind == SectionKind::RODataMergeConst ||
294 kind == SectionKind::RODataMergeStr))
295 return getReadOnlySection();
296 }
Anton Korobeynikov562c3f22008-07-09 13:18:02 +0000297
298 return getDataSection();
299}
Anton Korobeynikov3819e2d2008-07-09 13:19:38 +0000300
301std::string
302TargetAsmInfo::UniqueSectionForGlobal(const GlobalValue* GV,
303 SectionKind::Kind kind) const {
304 switch (kind) {
305 case SectionKind::Text:
306 return ".llvm.linkonce.t." + GV->getName();
307 case SectionKind::Data:
308 return ".llvm.linkonce.d." + GV->getName();
309 case SectionKind::BSS:
310 return ".llvm.linkonce.b." + GV->getName();
311 case SectionKind::ROData:
312 case SectionKind::RODataMergeConst:
313 case SectionKind::RODataMergeStr:
314 return ".llvm.linkonce.r." + GV->getName();
315 case SectionKind::ThreadData:
316 return ".llvm.linkonce.td." + GV->getName();
317 case SectionKind::ThreadBSS:
318 return ".llvm.linkonce.tb." + GV->getName();
319 default:
320 assert(0 && "Unknown section kind");
321 }
322}