blob: f7443c31f777bb5473fb65ae8f63cfe3e2fbd284 [file] [log] [blame]
Jim Laskey8e8de8f2006-09-07 22:05:02 +00001//===-- X86TargetAsmInfo.cpp - X86 asm properties ---------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Laskey8e8de8f2006-09-07 22:05:02 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the declarations of the X86TargetAsmInfo properties.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86TargetAsmInfo.h"
15#include "X86TargetMachine.h"
16#include "X86Subtarget.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000017#include "llvm/DerivedTypes.h"
Chris Lattner625bd052006-11-29 01:14:06 +000018#include "llvm/InlineAsm.h"
19#include "llvm/Instructions.h"
Chris Lattner3e9f1d02007-04-01 20:49:36 +000020#include "llvm/Intrinsics.h"
Chris Lattner625bd052006-11-29 01:14:06 +000021#include "llvm/Module.h"
22#include "llvm/ADT/StringExtras.h"
Anton Korobeynikovcee750f2008-02-27 23:33:50 +000023#include "llvm/Support/Dwarf.h"
24
Jim Laskey8e8de8f2006-09-07 22:05:02 +000025using namespace llvm;
Anton Korobeynikovcee750f2008-02-27 23:33:50 +000026using namespace llvm::dwarf;
Jim Laskey8e8de8f2006-09-07 22:05:02 +000027
Dan Gohmancfbb2f02008-03-25 21:45:14 +000028static const char *const x86_asm_table[] = {
29 "{si}", "S",
Andrew Lenharth6c0695f2006-11-28 19:52:49 +000030 "{di}", "D",
31 "{ax}", "a",
32 "{cx}", "c",
Andrew Lenharth6c0695f2006-11-28 19:52:49 +000033 "{memory}", "memory",
34 "{flags}", "",
35 "{dirflag}", "",
36 "{fpsr}", "",
37 "{cc}", "cc",
38 0,0};
39
Jim Laskey8e8de8f2006-09-07 22:05:02 +000040X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) {
41 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
Anton Korobeynikovcee750f2008-02-27 23:33:50 +000042
Andrew Lenharth6c0695f2006-11-28 19:52:49 +000043 AsmTransCBE = x86_asm_table;
Anton Korobeynikov82100452008-07-09 13:20:27 +000044
Bill Wendlingcb900992007-01-16 09:29:17 +000045 AssemblerDialect = Subtarget->getAsmFlavor();
Jim Laskey8e8de8f2006-09-07 22:05:02 +000046}
Chris Lattnerafbfded2006-10-05 02:43:52 +000047
Chris Lattner625bd052006-11-29 01:14:06 +000048bool X86TargetAsmInfo::LowerToBSwap(CallInst *CI) const {
49 // FIXME: this should verify that we are targetting a 486 or better. If not,
50 // we will turn this bswap into something that will be lowered to logical ops
51 // instead of emitting the bswap asm. For now, we don't support 486 or lower
52 // so don't worry about this.
Anton Korobeynikov82100452008-07-09 13:20:27 +000053
Chris Lattner625bd052006-11-29 01:14:06 +000054 // Verify this is a simple bswap.
55 if (CI->getNumOperands() != 2 ||
56 CI->getType() != CI->getOperand(1)->getType() ||
Chris Lattner42a75512007-01-15 02:27:26 +000057 !CI->getType()->isInteger())
Chris Lattner625bd052006-11-29 01:14:06 +000058 return false;
Anton Korobeynikov82100452008-07-09 13:20:27 +000059
Chris Lattner3e9f1d02007-04-01 20:49:36 +000060 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
61 if (!Ty || Ty->getBitWidth() % 16 != 0)
Reid Spencera54b7cb2007-01-12 07:05:14 +000062 return false;
Anton Korobeynikov82100452008-07-09 13:20:27 +000063
Chris Lattner625bd052006-11-29 01:14:06 +000064 // Okay, we can do this xform, do so now.
Chandler Carruth69940402007-08-04 01:51:18 +000065 const Type *Tys[] = { Ty };
Chris Lattner625bd052006-11-29 01:14:06 +000066 Module *M = CI->getParent()->getParent()->getParent();
Chandler Carruth69940402007-08-04 01:51:18 +000067 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Anton Korobeynikov82100452008-07-09 13:20:27 +000068
Chris Lattner625bd052006-11-29 01:14:06 +000069 Value *Op = CI->getOperand(1);
Gabor Greif051a9502008-04-06 20:25:17 +000070 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Anton Korobeynikov82100452008-07-09 13:20:27 +000071
Chris Lattner625bd052006-11-29 01:14:06 +000072 CI->replaceAllUsesWith(Op);
73 CI->eraseFromParent();
74 return true;
75}
76
Chris Lattner625bd052006-11-29 01:14:06 +000077bool X86TargetAsmInfo::ExpandInlineAsm(CallInst *CI) const {
78 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattner5d521352006-11-29 01:48:01 +000079 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Anton Korobeynikov82100452008-07-09 13:20:27 +000080
Chris Lattner625bd052006-11-29 01:14:06 +000081 std::string AsmStr = IA->getAsmString();
Anton Korobeynikov82100452008-07-09 13:20:27 +000082
Chris Lattner625bd052006-11-29 01:14:06 +000083 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
84 std::vector<std::string> AsmPieces;
85 SplitString(AsmStr, AsmPieces, "\n"); // ; as separator?
Anton Korobeynikov82100452008-07-09 13:20:27 +000086
Chris Lattner625bd052006-11-29 01:14:06 +000087 switch (AsmPieces.size()) {
Anton Korobeynikov82100452008-07-09 13:20:27 +000088 default: return false;
Chris Lattner625bd052006-11-29 01:14:06 +000089 case 1:
90 AsmStr = AsmPieces[0];
91 AsmPieces.clear();
92 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
Anton Korobeynikov82100452008-07-09 13:20:27 +000093
Chris Lattner5d521352006-11-29 01:48:01 +000094 // bswap $0
Anton Korobeynikov82100452008-07-09 13:20:27 +000095 if (AsmPieces.size() == 2 &&
Chris Lattner625bd052006-11-29 01:14:06 +000096 AsmPieces[0] == "bswap" && AsmPieces[1] == "$0") {
97 // No need to check constraints, nothing other than the equivalent of
98 // "=r,0" would be valid here.
99 return LowerToBSwap(CI);
100 }
101 break;
Chris Lattner5d521352006-11-29 01:48:01 +0000102 case 3:
Reid Spencer47857812006-12-31 05:55:36 +0000103 if (CI->getType() == Type::Int64Ty && Constraints.size() >= 2 &&
Chris Lattner5d521352006-11-29 01:48:01 +0000104 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
105 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
106 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
107 std::vector<std::string> Words;
108 SplitString(AsmPieces[0], Words, " \t");
109 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
110 Words.clear();
111 SplitString(AsmPieces[1], Words, " \t");
112 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
113 Words.clear();
114 SplitString(AsmPieces[2], Words, " \t,");
115 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
116 Words[2] == "%edx") {
117 return LowerToBSwap(CI);
118 }
119 }
120 }
121 }
122 break;
Chris Lattner625bd052006-11-29 01:14:06 +0000123 }
124 return false;
125}
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000126
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000127X86DarwinTargetAsmInfo::X86DarwinTargetAsmInfo(const X86TargetMachine &TM):
Anton Korobeynikov18f6ed92008-07-19 13:15:21 +0000128 X86TargetAsmInfo(TM), DarwinTargetAsmInfo(TM) {
129 bool is64Bit = DTM->getSubtarget<X86Subtarget>().is64Bit();
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000130
131 AlignmentIsInBytes = false;
132 TextAlignFillValue = 0x90;
133 GlobalPrefix = "_";
134 if (!is64Bit)
135 Data64bitsDirective = 0; // we can't emit a 64-bit unit
136 ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
137 PrivateGlobalPrefix = "L"; // Marker for constant pool idxs
138 BSSSection = 0; // no BSS section.
139 ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill
Anton Korobeynikov18f6ed92008-07-19 13:15:21 +0000140 if (DTM->getRelocationModel() != Reloc::Static)
Anton Korobeynikov7705ea32008-07-09 21:54:26 +0000141 ConstantPoolSection = "\t.const_data";
142 else
143 ConstantPoolSection = "\t.const\n";
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000144 JumpTableDataSection = "\t.const\n";
145 CStringSection = "\t.cstring";
146 FourByteConstantSection = "\t.literal4\n";
Anton Korobeynikovb126f3b2008-07-09 20:47:55 +0000147 EightByteConstantSection = "\t.literal8\n";
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000148 // FIXME: Why don't always use this section?
Anton Korobeynikov0d44ba82008-07-09 13:28:49 +0000149 if (is64Bit) {
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000150 SixteenByteConstantSection = "\t.literal16\n";
Anton Korobeynikovcff2ea02008-07-19 13:15:46 +0000151 SixteenByteConstantSection_ = getUnnamedSection("\t.literal16\n",
152 SectionFlags::Mergeable);
Anton Korobeynikov0d44ba82008-07-09 13:28:49 +0000153 }
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000154 ReadOnlySection = "\t.const\n";
Anton Korobeynikov0d44ba82008-07-09 13:28:49 +0000155
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000156 LCOMMDirective = "\t.lcomm\t";
157 SwitchToSectionDirective = "\t.section ";
158 StringConstantPrefix = "\1LC";
159 COMMDirectiveTakesAlignment = false;
160 HasDotTypeDotSizeDirective = false;
161 if (TM.getRelocationModel() == Reloc::Static) {
162 StaticCtorsSection = ".constructor";
163 StaticDtorsSection = ".destructor";
164 } else {
165 StaticCtorsSection = ".mod_init_func";
166 StaticDtorsSection = ".mod_term_func";
167 }
168 if (is64Bit) {
169 PersonalityPrefix = "";
170 PersonalitySuffix = "+4@GOTPCREL";
171 } else {
172 PersonalityPrefix = "L";
173 PersonalitySuffix = "$non_lazy_ptr";
174 }
175 NeedsIndirectEncoding = true;
176 InlineAsmStart = "## InlineAsm Start";
177 InlineAsmEnd = "## InlineAsm End";
178 CommentString = "##";
179 SetDirective = "\t.set";
180 PCSymbol = ".";
181 UsedDirective = "\t.no_dead_strip\t";
182 WeakDefDirective = "\t.weak_definition ";
183 WeakRefDirective = "\t.weak_reference ";
184 HiddenDirective = "\t.private_extern ";
185 ProtectedDirective = "\t.globl\t";
186
187 // In non-PIC modes, emit a special label before jump tables so that the
188 // linker can perform more accurate dead code stripping.
189 if (TM.getRelocationModel() != Reloc::PIC_) {
190 // Emit a local label that is preserved until the linker runs.
191 JumpTableSpecialLabelPrefix = "l";
192 }
193
194 SupportsDebugInformation = true;
195 NeedsSet = true;
196 DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
197 DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
198 DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
199 DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
200 DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
201 DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
202 DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
203 DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
204 DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
205 DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
206 DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
207
208 // Exceptions handling
209 SupportsExceptionHandling = true;
210 GlobalEHDirective = "\t.globl\t";
211 SupportsWeakOmittedEHFrame = false;
212 AbsoluteEHSectionOffsets = false;
213 DwarfEHFrameSection =
214 ".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support";
215 DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
216}
217
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000218unsigned
219X86DarwinTargetAsmInfo::PreferredEHDataFormat(DwarfEncoding::Target Reason,
220 bool Global) const {
221 if (Reason == DwarfEncoding::Functions && Global)
222 return (DW_EH_PE_pcrel | DW_EH_PE_indirect | DW_EH_PE_sdata4);
223 else if (Reason == DwarfEncoding::CodeLabels || !Global)
224 return DW_EH_PE_pcrel;
225 else
226 return DW_EH_PE_absptr;
227}
228
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000229X86ELFTargetAsmInfo::X86ELFTargetAsmInfo(const X86TargetMachine &TM):
Anton Korobeynikov18f6ed92008-07-19 13:15:21 +0000230 X86TargetAsmInfo(TM), ELFTargetAsmInfo(TM) {
231 bool is64Bit = ETM->getSubtarget<X86Subtarget>().is64Bit();
Anton Korobeynikov0d44ba82008-07-09 13:28:49 +0000232
Anton Korobeynikovb20015b2008-07-09 13:25:26 +0000233 ReadOnlySection = ".rodata";
Anton Korobeynikov2a889172008-07-09 13:25:46 +0000234 FourByteConstantSection = "\t.section\t.rodata.cst4,\"aM\",@progbits,4";
235 EightByteConstantSection = "\t.section\t.rodata.cst8,\"aM\",@progbits,8";
236 SixteenByteConstantSection = "\t.section\t.rodata.cst16,\"aM\",@progbits,16";
Anton Korobeynikovb20015b2008-07-09 13:25:26 +0000237 CStringSection = ".rodata.str";
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000238 PrivateGlobalPrefix = ".L";
239 WeakRefDirective = "\t.weak\t";
240 SetDirective = "\t.set\t";
241 PCSymbol = ".";
242
243 // Set up DWARF directives
244 HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
245
246 // Debug Information
247 AbsoluteDebugSectionOffsets = true;
248 SupportsDebugInformation = true;
249 DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"\",@progbits";
250 DwarfInfoSection = "\t.section\t.debug_info,\"\",@progbits";
251 DwarfLineSection = "\t.section\t.debug_line,\"\",@progbits";
252 DwarfFrameSection = "\t.section\t.debug_frame,\"\",@progbits";
253 DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"\",@progbits";
254 DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"\",@progbits";
255 DwarfStrSection = "\t.section\t.debug_str,\"\",@progbits";
256 DwarfLocSection = "\t.section\t.debug_loc,\"\",@progbits";
257 DwarfARangesSection = "\t.section\t.debug_aranges,\"\",@progbits";
258 DwarfRangesSection = "\t.section\t.debug_ranges,\"\",@progbits";
259 DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits";
260
261 // Exceptions handling
262 if (!is64Bit)
263 SupportsExceptionHandling = true;
264 AbsoluteEHSectionOffsets = false;
265 DwarfEHFrameSection = "\t.section\t.eh_frame,\"aw\",@progbits";
266 DwarfExceptionSection = "\t.section\t.gcc_except_table,\"a\",@progbits";
267
268 // On Linux we must declare when we can use a non-executable stack.
Anton Korobeynikov18f6ed92008-07-19 13:15:21 +0000269 if (ETM->getSubtarget<X86Subtarget>().isLinux())
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000270 NonexecutableStackDirective = "\t.section\t.note.GNU-stack,\"\",@progbits";
271}
272
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000273unsigned
274X86ELFTargetAsmInfo::PreferredEHDataFormat(DwarfEncoding::Target Reason,
275 bool Global) const {
Anton Korobeynikov18f6ed92008-07-19 13:15:21 +0000276 CodeModel::Model CM = ETM->getCodeModel();
277 bool is64Bit = ETM->getSubtarget<X86Subtarget>().is64Bit();
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000278
Anton Korobeynikov18f6ed92008-07-19 13:15:21 +0000279 if (ETM->getRelocationModel() == Reloc::PIC_) {
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000280 unsigned Format = 0;
281
282 if (!is64Bit)
283 // 32 bit targets always encode pointers as 4 bytes
284 Format = DW_EH_PE_sdata4;
285 else {
286 // 64 bit targets encode pointers in 4 bytes iff:
287 // - code model is small OR
288 // - code model is medium and we're emitting externally visible symbols
289 // or any code symbols
290 if (CM == CodeModel::Small ||
291 (CM == CodeModel::Medium && (Global ||
292 Reason != DwarfEncoding::Data)))
293 Format = DW_EH_PE_sdata4;
294 else
295 Format = DW_EH_PE_sdata8;
296 }
297
298 if (Global)
299 Format |= DW_EH_PE_indirect;
300
301 return (Format | DW_EH_PE_pcrel);
302 } else {
303 if (is64Bit &&
304 (CM == CodeModel::Small ||
305 (CM == CodeModel::Medium && Reason != DwarfEncoding::Data)))
306 return DW_EH_PE_udata4;
307 else
308 return DW_EH_PE_absptr;
309 }
310}
311
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000312X86COFFTargetAsmInfo::X86COFFTargetAsmInfo(const X86TargetMachine &TM):
313 X86TargetAsmInfo(TM) {
Anton Korobeynikov18f6ed92008-07-19 13:15:21 +0000314 X86TM = &TM;
315
Anton Korobeynikov4468b7a2008-07-09 13:20:48 +0000316 GlobalPrefix = "_";
317 LCOMMDirective = "\t.lcomm\t";
318 COMMDirectiveTakesAlignment = false;
319 HasDotTypeDotSizeDirective = false;
320 StaticCtorsSection = "\t.section .ctors,\"aw\"";
321 StaticDtorsSection = "\t.section .dtors,\"aw\"";
322 HiddenDirective = NULL;
323 PrivateGlobalPrefix = "L"; // Prefix for private global symbols
324 WeakRefDirective = "\t.weak\t";
325 SetDirective = "\t.set\t";
326
327 // Set up DWARF directives
328 HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
329 AbsoluteDebugSectionOffsets = true;
330 AbsoluteEHSectionOffsets = false;
331 SupportsDebugInformation = true;
332 DwarfSectionOffsetDirective = "\t.secrel32\t";
333 DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"dr\"";
334 DwarfInfoSection = "\t.section\t.debug_info,\"dr\"";
335 DwarfLineSection = "\t.section\t.debug_line,\"dr\"";
336 DwarfFrameSection = "\t.section\t.debug_frame,\"dr\"";
337 DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"dr\"";
338 DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"dr\"";
339 DwarfStrSection = "\t.section\t.debug_str,\"dr\"";
340 DwarfLocSection = "\t.section\t.debug_loc,\"dr\"";
341 DwarfARangesSection = "\t.section\t.debug_aranges,\"dr\"";
342 DwarfRangesSection = "\t.section\t.debug_ranges,\"dr\"";
343 DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"dr\"";
344}
345
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000346unsigned
347X86COFFTargetAsmInfo::PreferredEHDataFormat(DwarfEncoding::Target Reason,
348 bool Global) const {
349 CodeModel::Model CM = X86TM->getCodeModel();
350 bool is64Bit = X86TM->getSubtarget<X86Subtarget>().is64Bit();
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000351
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000352 if (X86TM->getRelocationModel() == Reloc::PIC_) {
353 unsigned Format = 0;
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000354
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000355 if (!is64Bit)
356 // 32 bit targets always encode pointers as 4 bytes
357 Format = DW_EH_PE_sdata4;
358 else {
359 // 64 bit targets encode pointers in 4 bytes iff:
360 // - code model is small OR
361 // - code model is medium and we're emitting externally visible symbols
362 // or any code symbols
363 if (CM == CodeModel::Small ||
364 (CM == CodeModel::Medium && (Global ||
365 Reason != DwarfEncoding::Data)))
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000366 Format = DW_EH_PE_sdata4;
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000367 else
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000368 Format = DW_EH_PE_sdata8;
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000369 }
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000370
Anton Korobeynikovb9e58ef2008-07-09 13:21:08 +0000371 if (Global)
372 Format |= DW_EH_PE_indirect;
373
374 return (Format | DW_EH_PE_pcrel);
375 } else {
376 if (is64Bit &&
377 (CM == CodeModel::Small ||
378 (CM == CodeModel::Medium && Reason != DwarfEncoding::Data)))
379 return DW_EH_PE_udata4;
380 else
381 return DW_EH_PE_absptr;
Anton Korobeynikovcee750f2008-02-27 23:33:50 +0000382 }
383}
384
Anton Korobeynikovb9a02fc2008-07-09 13:21:29 +0000385std::string
386X86COFFTargetAsmInfo::UniqueSectionForGlobal(const GlobalValue* GV,
387 SectionKind::Kind kind) const {
388 switch (kind) {
389 case SectionKind::Text:
390 return ".text$linkonce" + GV->getName();
391 case SectionKind::Data:
392 case SectionKind::BSS:
393 case SectionKind::ThreadData:
394 case SectionKind::ThreadBSS:
395 return ".data$linkonce" + GV->getName();
396 case SectionKind::ROData:
397 case SectionKind::RODataMergeConst:
398 case SectionKind::RODataMergeStr:
399 return ".rdata$linkonce" + GV->getName();
Anton Korobeynikov29b03f72008-07-09 13:19:38 +0000400 default:
Anton Korobeynikovb9a02fc2008-07-09 13:21:29 +0000401 assert(0 && "Unknown section kind");
Anton Korobeynikov29b03f72008-07-09 13:19:38 +0000402 }
403}
404
Anton Korobeynikovf447e3d2008-07-09 13:21:49 +0000405std::string X86COFFTargetAsmInfo::PrintSectionFlags(unsigned flags) const {
406 std::string Flags = ",\"";
407
408 if (flags & SectionFlags::Code)
409 Flags += 'x';
410 if (flags & SectionFlags::Writeable)
411 Flags += 'w';
412
413 Flags += "\"";
414
415 return Flags;
416}
417
418X86WinTargetAsmInfo::X86WinTargetAsmInfo(const X86TargetMachine &TM):
419 X86TargetAsmInfo(TM) {
420 GlobalPrefix = "_";
421 CommentString = ";";
422
423 PrivateGlobalPrefix = "$";
424 AlignDirective = "\talign\t";
425 ZeroDirective = "\tdb\t";
426 ZeroDirectiveSuffix = " dup(0)";
427 AsciiDirective = "\tdb\t";
428 AscizDirective = 0;
429 Data8bitsDirective = "\tdb\t";
430 Data16bitsDirective = "\tdw\t";
431 Data32bitsDirective = "\tdd\t";
432 Data64bitsDirective = "\tdq\t";
433 HasDotTypeDotSizeDirective = false;
434
435 TextSection = "_text";
436 DataSection = "_data";
437 JumpTableDataSection = NULL;
438 SwitchToSectionDirective = "";
439 TextSectionStartSuffix = "\tsegment 'CODE'";
440 DataSectionStartSuffix = "\tsegment 'DATA'";
441 SectionEndDirectiveSuffix = "\tends\n";
442}