blob: 85ac7a4421eb96e3652d985d9470cd6c53af2d37 [file] [log] [blame]
Jim Laskey0e835412006-09-07 22:05:02 +00001//===-- X86TargetAsmInfo.cpp - X86 asm properties ---------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by James M. Laskey and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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 Spencer015b4322007-01-12 23:22:14 +000017#include "llvm/DerivedTypes.h"
Chris Lattner0fc6ae02006-11-29 01:14:06 +000018#include "llvm/InlineAsm.h"
19#include "llvm/Instructions.h"
Chris Lattner59a6fa72007-04-01 20:49:36 +000020#include "llvm/Intrinsics.h"
Chris Lattner0fc6ae02006-11-29 01:14:06 +000021#include "llvm/Module.h"
22#include "llvm/ADT/StringExtras.h"
Jim Laskey0e835412006-09-07 22:05:02 +000023using namespace llvm;
24
Andrew Lenharth2675e232006-11-28 19:52:49 +000025static const char* x86_asm_table[] = {"{si}", "S",
26 "{di}", "D",
27 "{ax}", "a",
28 "{cx}", "c",
Andrew Lenharth2675e232006-11-28 19:52:49 +000029 "{memory}", "memory",
30 "{flags}", "",
31 "{dirflag}", "",
32 "{fpsr}", "",
33 "{cc}", "cc",
34 0,0};
35
Jim Laskey0e835412006-09-07 22:05:02 +000036X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) {
37 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
38
Chris Lattnerb82247b2006-10-05 02:43:52 +000039 // FIXME - Should be simplified.
Andrew Lenharth2675e232006-11-28 19:52:49 +000040
41 AsmTransCBE = x86_asm_table;
42
Jim Laskey0e835412006-09-07 22:05:02 +000043 switch (Subtarget->TargetType) {
44 case X86Subtarget::isDarwin:
45 AlignmentIsInBytes = false;
46 GlobalPrefix = "_";
Evan Cheng11b0a5d2006-09-08 06:48:29 +000047 if (!Subtarget->is64Bit())
48 Data64bitsDirective = 0; // we can't emit a 64-bit unit
Jim Laskey0e835412006-09-07 22:05:02 +000049 ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
50 PrivateGlobalPrefix = "L"; // Marker for constant pool idxs
Chris Lattner88b45f92007-01-17 17:43:33 +000051 BSSSection = 0; // no BSS section.
52 ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill
Jim Laskey0e835412006-09-07 22:05:02 +000053 ConstantPoolSection = "\t.const\n";
Chris Lattnerb82247b2006-10-05 02:43:52 +000054 JumpTableDataSection = "\t.const\n";
Evan Cheng392f6452006-10-26 19:18:18 +000055 CStringSection = "\t.cstring";
Jim Laskey0e835412006-09-07 22:05:02 +000056 FourByteConstantSection = "\t.literal4\n";
57 EightByteConstantSection = "\t.literal8\n";
Evan Cheng11b0a5d2006-09-08 06:48:29 +000058 if (Subtarget->is64Bit())
59 SixteenByteConstantSection = "\t.literal16\n";
Evan Cheng13a1d962007-03-08 01:07:07 +000060 ReadOnlySection = "\t.const\n";
Jim Laskey0e835412006-09-07 22:05:02 +000061 LCOMMDirective = "\t.lcomm\t";
62 COMMDirectiveTakesAlignment = false;
63 HasDotTypeDotSizeDirective = false;
Evan Cheng0e083d02007-01-30 08:04:53 +000064 if (TM.getRelocationModel() == Reloc::Static) {
65 StaticCtorsSection = ".constructor";
66 StaticDtorsSection = ".destructor";
67 } else {
68 StaticCtorsSection = ".mod_init_func";
69 StaticDtorsSection = ".mod_term_func";
70 }
Jim Laskey0e835412006-09-07 22:05:02 +000071 InlineAsmStart = "# InlineAsm Start";
72 InlineAsmEnd = "# InlineAsm End";
73 SetDirective = "\t.set";
Chris Lattnerad4e7eb2006-09-26 03:39:53 +000074 UsedDirective = "\t.no_dead_strip\t";
Evan Cheng022030a2006-12-01 20:47:11 +000075 WeakRefDirective = "\t.weak_reference\t";
Chris Lattner8c51bf52007-01-14 06:29:53 +000076 HiddenDirective = "\t.private_extern\t";
Jim Laskey0e835412006-09-07 22:05:02 +000077
Chris Lattnerc1ea85b2007-01-18 01:15:58 +000078 // In non-PIC modes, emit a special label before jump tables so that the
79 // linker can perform more accurate dead code stripping.
80 if (TM.getRelocationModel() != Reloc::PIC_) {
81 // Emit a local label that is preserved until the linker runs.
82 JumpTableSpecialLabelPrefix = "l";
83 }
84
Jim Laskey0e835412006-09-07 22:05:02 +000085 NeedsSet = true;
86 DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
87 DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
88 DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
89 DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
90 DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
91 DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
92 DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
93 DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
94 DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
95 DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
96 DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
97 break;
Reid Spencerb51b5c02006-10-30 22:32:30 +000098
99 case X86Subtarget::isELF:
100 // Set up DWARF directives
101 HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
Anton Korobeynikovb538f672007-05-01 22:23:12 +0000102 AbsoluteDebugSectionOffsets = true;
103 AbsoluteEHSectionOffsets = false;
Reid Spencerb51b5c02006-10-30 22:32:30 +0000104 // bool HasLEB128; // Defaults to false.
105 // hasDotLoc - True if target asm supports .loc directives.
106 // bool HasDotLoc; // Defaults to false.
107 // HasDotFile - True if target asm supports .file directives.
108 // bool HasDotFile; // Defaults to false.
Evan Cheng13a1d962007-03-08 01:07:07 +0000109 ReadOnlySection = "\t.section\t.rodata\n";
Chris Lattner4889a7a2007-01-03 18:16:48 +0000110 PrivateGlobalPrefix = ".L";
Evan Cheng022030a2006-12-01 20:47:11 +0000111 WeakRefDirective = "\t.weak\t";
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000112 SetDirective = "\t.set\t";
Anton Korobeynikov76c8c952007-05-01 10:19:31 +0000113 PCSymbol = ".";
114
Reid Spencerb51b5c02006-10-30 22:32:30 +0000115 DwarfRequiresFrameSection = false;
116 DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"\",@progbits";
117 DwarfInfoSection = "\t.section\t.debug_info,\"\",@progbits";
118 DwarfLineSection = "\t.section\t.debug_line,\"\",@progbits";
119 DwarfFrameSection = "\t.section\t.debug_frame,\"\",@progbits";
120 DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"\",@progbits";
121 DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"\",@progbits";
122 DwarfStrSection = "\t.section\t.debug_str,\"\",@progbits";
123 DwarfLocSection = "\t.section\t.debug_loc,\"\",@progbits";
124 DwarfARangesSection = "\t.section\t.debug_aranges,\"\",@progbits";
125 DwarfRangesSection = "\t.section\t.debug_ranges,\"\",@progbits";
126 DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits";
Anton Korobeynikov2ac21972007-05-01 10:16:06 +0000127
128 SupportsExceptionHandling = true;
129 DwarfEHFrameSection = "\t.section\t.eh_frame,\"aw\",@progbits";
130 DwarfExceptionSection = "\t.section\t.gcc_except_table,\"a\",@progbits";
Reid Spencerb51b5c02006-10-30 22:32:30 +0000131 break;
132
Jim Laskey0e835412006-09-07 22:05:02 +0000133 case X86Subtarget::isCygwin:
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000134 case X86Subtarget::isMingw:
Jim Laskey0e835412006-09-07 22:05:02 +0000135 GlobalPrefix = "_";
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000136 LCOMMDirective = "\t.lcomm\t";
Jim Laskey0e835412006-09-07 22:05:02 +0000137 COMMDirectiveTakesAlignment = false;
138 HasDotTypeDotSizeDirective = false;
139 StaticCtorsSection = "\t.section .ctors,\"aw\"";
140 StaticDtorsSection = "\t.section .dtors,\"aw\"";
Anton Korobeynikovcce06fd2007-01-14 11:49:39 +0000141 HiddenDirective = NULL;
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000142
143 // Set up DWARF directives
144 HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
Anton Korobeynikovb538f672007-05-01 22:23:12 +0000145 AbsoluteDebugSectionOffsets = true;
146 AbsoluteEHSectionOffsets = false;
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000147 PrivateGlobalPrefix = "L"; // Prefix for private global symbols
Anton Korobeynikov01b49ce2007-02-23 01:58:50 +0000148 WeakRefDirective = "\t.weak\t";
Anton Korobeynikova97b6942007-04-25 14:27:10 +0000149 SetDirective = "\t.set\t";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000150 DwarfRequiresFrameSection = false;
Anton Korobeynikov942fda02007-03-07 02:47:57 +0000151 DwarfSectionOffsetDirective = "\t.secrel32\t";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +0000152 DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"dr\"";
153 DwarfInfoSection = "\t.section\t.debug_info,\"dr\"";
154 DwarfLineSection = "\t.section\t.debug_line,\"dr\"";
155 DwarfFrameSection = "\t.section\t.debug_frame,\"dr\"";
156 DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"dr\"";
157 DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"dr\"";
158 DwarfStrSection = "\t.section\t.debug_str,\"dr\"";
159 DwarfLocSection = "\t.section\t.debug_loc,\"dr\"";
160 DwarfARangesSection = "\t.section\t.debug_aranges,\"dr\"";
161 DwarfRangesSection = "\t.section\t.debug_ranges,\"dr\"";
162 DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"dr\"";
163 break;
Bill Wendling0b3a4512007-01-16 04:13:03 +0000164
Jim Laskey0e835412006-09-07 22:05:02 +0000165 case X86Subtarget::isWindows:
166 GlobalPrefix = "_";
167 HasDotTypeDotSizeDirective = false;
168 break;
Bill Wendling0b3a4512007-01-16 04:13:03 +0000169
Jim Laskey0e835412006-09-07 22:05:02 +0000170 default: break;
171 }
172
173 if (Subtarget->isFlavorIntel()) {
174 GlobalPrefix = "_";
175 CommentString = ";";
176
177 PrivateGlobalPrefix = "$";
178 AlignDirective = "\talign\t";
179 ZeroDirective = "\tdb\t";
180 ZeroDirectiveSuffix = " dup(0)";
181 AsciiDirective = "\tdb\t";
182 AscizDirective = 0;
183 Data8bitsDirective = "\tdb\t";
184 Data16bitsDirective = "\tdw\t";
185 Data32bitsDirective = "\tdd\t";
186 Data64bitsDirective = "\tdq\t";
187 HasDotTypeDotSizeDirective = false;
188
189 TextSection = "_text";
190 DataSection = "_data";
Anton Korobeynikov44ef9342006-12-19 21:04:20 +0000191 JumpTableDataSection = NULL;
Jim Laskey0e835412006-09-07 22:05:02 +0000192 SwitchToSectionDirective = "";
193 TextSectionStartSuffix = "\tsegment 'CODE'";
194 DataSectionStartSuffix = "\tsegment 'DATA'";
195 SectionEndDirectiveSuffix = "\tends\n";
196 }
Bill Wendlingc7b2ab92007-01-16 09:29:17 +0000197
198 AssemblerDialect = Subtarget->getAsmFlavor();
Jim Laskey0e835412006-09-07 22:05:02 +0000199}
Chris Lattnerb82247b2006-10-05 02:43:52 +0000200
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000201bool X86TargetAsmInfo::LowerToBSwap(CallInst *CI) const {
202 // FIXME: this should verify that we are targetting a 486 or better. If not,
203 // we will turn this bswap into something that will be lowered to logical ops
204 // instead of emitting the bswap asm. For now, we don't support 486 or lower
205 // so don't worry about this.
206
207 // Verify this is a simple bswap.
208 if (CI->getNumOperands() != 2 ||
209 CI->getType() != CI->getOperand(1)->getType() ||
Chris Lattner03c49532007-01-15 02:27:26 +0000210 !CI->getType()->isInteger())
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000211 return false;
212
Chris Lattner59a6fa72007-04-01 20:49:36 +0000213 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
214 if (!Ty || Ty->getBitWidth() % 16 != 0)
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000215 return false;
Chris Lattner59a6fa72007-04-01 20:49:36 +0000216
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000217 // Okay, we can do this xform, do so now.
Chris Lattner59a6fa72007-04-01 20:49:36 +0000218 const Type *Tys[] = { Ty, Ty };
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000219 Module *M = CI->getParent()->getParent()->getParent();
Chris Lattner59a6fa72007-04-01 20:49:36 +0000220 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 2);
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000221
222 Value *Op = CI->getOperand(1);
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000223 Op = new CallInst(Int, Op, CI->getName(), CI);
224
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000225 CI->replaceAllUsesWith(Op);
226 CI->eraseFromParent();
227 return true;
228}
229
230
231bool X86TargetAsmInfo::ExpandInlineAsm(CallInst *CI) const {
232 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattner38084722006-11-29 01:48:01 +0000233 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000234
235 std::string AsmStr = IA->getAsmString();
236
237 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
238 std::vector<std::string> AsmPieces;
239 SplitString(AsmStr, AsmPieces, "\n"); // ; as separator?
240
241 switch (AsmPieces.size()) {
242 default: return false;
243 case 1:
244 AsmStr = AsmPieces[0];
245 AsmPieces.clear();
246 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
247
Chris Lattner38084722006-11-29 01:48:01 +0000248 // bswap $0
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000249 if (AsmPieces.size() == 2 &&
250 AsmPieces[0] == "bswap" && AsmPieces[1] == "$0") {
251 // No need to check constraints, nothing other than the equivalent of
252 // "=r,0" would be valid here.
253 return LowerToBSwap(CI);
254 }
255 break;
Chris Lattner38084722006-11-29 01:48:01 +0000256 case 3:
Reid Spencere63b6512006-12-31 05:55:36 +0000257 if (CI->getType() == Type::Int64Ty && Constraints.size() >= 2 &&
Chris Lattner38084722006-11-29 01:48:01 +0000258 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
259 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
260 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
261 std::vector<std::string> Words;
262 SplitString(AsmPieces[0], Words, " \t");
263 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
264 Words.clear();
265 SplitString(AsmPieces[1], Words, " \t");
266 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
267 Words.clear();
268 SplitString(AsmPieces[2], Words, " \t,");
269 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
270 Words[2] == "%edx") {
271 return LowerToBSwap(CI);
272 }
273 }
274 }
275 }
276 break;
Chris Lattner0fc6ae02006-11-29 01:14:06 +0000277 }
278 return false;
279}