blob: 8b0ad03b0a0cb01213fafc8c33a9d539fc901c49 [file] [log] [blame]
Jim Laskey8e8de8f2006-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 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"
Jim Laskey8e8de8f2006-09-07 22:05:02 +000023using namespace llvm;
24
Andrew Lenharth6c0695f2006-11-28 19:52:49 +000025static const char* x86_asm_table[] = {"{si}", "S",
26 "{di}", "D",
27 "{ax}", "a",
28 "{cx}", "c",
Andrew Lenharth6c0695f2006-11-28 19:52:49 +000029 "{memory}", "memory",
30 "{flags}", "",
31 "{dirflag}", "",
32 "{fpsr}", "",
33 "{cc}", "cc",
34 0,0};
35
Jim Laskey8e8de8f2006-09-07 22:05:02 +000036X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) {
37 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
38
Chris Lattnerafbfded2006-10-05 02:43:52 +000039 // FIXME - Should be simplified.
Andrew Lenharth6c0695f2006-11-28 19:52:49 +000040
41 AsmTransCBE = x86_asm_table;
42
Jim Laskey8e8de8f2006-09-07 22:05:02 +000043 switch (Subtarget->TargetType) {
44 case X86Subtarget::isDarwin:
45 AlignmentIsInBytes = false;
46 GlobalPrefix = "_";
Evan Cheng25ab6902006-09-08 06:48:29 +000047 if (!Subtarget->is64Bit())
48 Data64bitsDirective = 0; // we can't emit a 64-bit unit
Jim Laskey8e8de8f2006-09-07 22:05:02 +000049 ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
50 PrivateGlobalPrefix = "L"; // Marker for constant pool idxs
Chris Lattner42ca4502007-01-17 17:43:33 +000051 BSSSection = 0; // no BSS section.
52 ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill
Jim Laskey8e8de8f2006-09-07 22:05:02 +000053 ConstantPoolSection = "\t.const\n";
Chris Lattnerafbfded2006-10-05 02:43:52 +000054 JumpTableDataSection = "\t.const\n";
Evan Cheng8910c1c2006-10-26 19:18:18 +000055 CStringSection = "\t.cstring";
Jim Laskey8e8de8f2006-09-07 22:05:02 +000056 FourByteConstantSection = "\t.literal4\n";
57 EightByteConstantSection = "\t.literal8\n";
Evan Cheng25ab6902006-09-08 06:48:29 +000058 if (Subtarget->is64Bit())
59 SixteenByteConstantSection = "\t.literal16\n";
Evan Chengf0b5d562007-03-08 01:07:07 +000060 ReadOnlySection = "\t.const\n";
Jim Laskey8e8de8f2006-09-07 22:05:02 +000061 LCOMMDirective = "\t.lcomm\t";
62 COMMDirectiveTakesAlignment = false;
63 HasDotTypeDotSizeDirective = false;
Evan Chengb267ca12007-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 Laskey8e8de8f2006-09-07 22:05:02 +000071 InlineAsmStart = "# InlineAsm Start";
72 InlineAsmEnd = "# InlineAsm End";
73 SetDirective = "\t.set";
Chris Lattnera53115b2006-09-26 03:39:53 +000074 UsedDirective = "\t.no_dead_strip\t";
Evan Cheng8752ce62006-12-01 20:47:11 +000075 WeakRefDirective = "\t.weak_reference\t";
Chris Lattner43bbc5c2007-01-14 06:29:53 +000076 HiddenDirective = "\t.private_extern\t";
Jim Laskey8e8de8f2006-09-07 22:05:02 +000077
Chris Lattnerb266ccd2007-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 Laskey8e8de8f2006-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 Spencer02b85112006-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 Korobeynikova6199c82007-03-07 02:47:57 +0000102 AbsoluteSectionOffsets = true;
Reid Spencer02b85112006-10-30 22:32:30 +0000103 // bool HasLEB128; // Defaults to false.
104 // hasDotLoc - True if target asm supports .loc directives.
105 // bool HasDotLoc; // Defaults to false.
106 // HasDotFile - True if target asm supports .file directives.
107 // bool HasDotFile; // Defaults to false.
Evan Chengf0b5d562007-03-08 01:07:07 +0000108 ReadOnlySection = "\t.section\t.rodata\n";
Chris Lattnera3bfdd42007-01-03 18:16:48 +0000109 PrivateGlobalPrefix = ".L";
Evan Cheng8752ce62006-12-01 20:47:11 +0000110 WeakRefDirective = "\t.weak\t";
Reid Spencer02b85112006-10-30 22:32:30 +0000111 DwarfRequiresFrameSection = false;
112 DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"\",@progbits";
113 DwarfInfoSection = "\t.section\t.debug_info,\"\",@progbits";
114 DwarfLineSection = "\t.section\t.debug_line,\"\",@progbits";
115 DwarfFrameSection = "\t.section\t.debug_frame,\"\",@progbits";
116 DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"\",@progbits";
117 DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"\",@progbits";
118 DwarfStrSection = "\t.section\t.debug_str,\"\",@progbits";
119 DwarfLocSection = "\t.section\t.debug_loc,\"\",@progbits";
120 DwarfARangesSection = "\t.section\t.debug_aranges,\"\",@progbits";
121 DwarfRangesSection = "\t.section\t.debug_ranges,\"\",@progbits";
122 DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits";
123 break;
124
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000125 case X86Subtarget::isCygwin:
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000126 case X86Subtarget::isMingw:
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000127 GlobalPrefix = "_";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000128 LCOMMDirective = "\t.lcomm\t";
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000129 COMMDirectiveTakesAlignment = false;
130 HasDotTypeDotSizeDirective = false;
131 StaticCtorsSection = "\t.section .ctors,\"aw\"";
132 StaticDtorsSection = "\t.section .dtors,\"aw\"";
Anton Korobeynikov1a856452007-01-14 11:49:39 +0000133 HiddenDirective = NULL;
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000134
135 // Set up DWARF directives
136 HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
Anton Korobeynikova6199c82007-03-07 02:47:57 +0000137 AbsoluteSectionOffsets = true;
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000138 PrivateGlobalPrefix = "L"; // Prefix for private global symbols
Anton Korobeynikov66413092007-02-23 01:58:50 +0000139 WeakRefDirective = "\t.weak\t";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000140 DwarfRequiresFrameSection = false;
Anton Korobeynikova6199c82007-03-07 02:47:57 +0000141 DwarfSectionOffsetDirective = "\t.secrel32\t";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000142 DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"dr\"";
143 DwarfInfoSection = "\t.section\t.debug_info,\"dr\"";
144 DwarfLineSection = "\t.section\t.debug_line,\"dr\"";
145 DwarfFrameSection = "\t.section\t.debug_frame,\"dr\"";
146 DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"dr\"";
147 DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"dr\"";
148 DwarfStrSection = "\t.section\t.debug_str,\"dr\"";
149 DwarfLocSection = "\t.section\t.debug_loc,\"dr\"";
150 DwarfARangesSection = "\t.section\t.debug_aranges,\"dr\"";
151 DwarfRangesSection = "\t.section\t.debug_ranges,\"dr\"";
152 DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"dr\"";
153 break;
Bill Wendling11502862007-01-16 04:13:03 +0000154
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000155 case X86Subtarget::isWindows:
156 GlobalPrefix = "_";
157 HasDotTypeDotSizeDirective = false;
158 break;
Bill Wendling11502862007-01-16 04:13:03 +0000159
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000160 default: break;
161 }
162
163 if (Subtarget->isFlavorIntel()) {
164 GlobalPrefix = "_";
165 CommentString = ";";
166
167 PrivateGlobalPrefix = "$";
168 AlignDirective = "\talign\t";
169 ZeroDirective = "\tdb\t";
170 ZeroDirectiveSuffix = " dup(0)";
171 AsciiDirective = "\tdb\t";
172 AscizDirective = 0;
173 Data8bitsDirective = "\tdb\t";
174 Data16bitsDirective = "\tdw\t";
175 Data32bitsDirective = "\tdd\t";
176 Data64bitsDirective = "\tdq\t";
177 HasDotTypeDotSizeDirective = false;
178
179 TextSection = "_text";
180 DataSection = "_data";
Anton Korobeynikov24287dd2006-12-19 21:04:20 +0000181 JumpTableDataSection = NULL;
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000182 SwitchToSectionDirective = "";
183 TextSectionStartSuffix = "\tsegment 'CODE'";
184 DataSectionStartSuffix = "\tsegment 'DATA'";
185 SectionEndDirectiveSuffix = "\tends\n";
186 }
Bill Wendlingcb900992007-01-16 09:29:17 +0000187
188 AssemblerDialect = Subtarget->getAsmFlavor();
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000189}
Chris Lattnerafbfded2006-10-05 02:43:52 +0000190
Chris Lattner625bd052006-11-29 01:14:06 +0000191bool X86TargetAsmInfo::LowerToBSwap(CallInst *CI) const {
192 // FIXME: this should verify that we are targetting a 486 or better. If not,
193 // we will turn this bswap into something that will be lowered to logical ops
194 // instead of emitting the bswap asm. For now, we don't support 486 or lower
195 // so don't worry about this.
196
197 // Verify this is a simple bswap.
198 if (CI->getNumOperands() != 2 ||
199 CI->getType() != CI->getOperand(1)->getType() ||
Chris Lattner42a75512007-01-15 02:27:26 +0000200 !CI->getType()->isInteger())
Chris Lattner625bd052006-11-29 01:14:06 +0000201 return false;
202
Chris Lattner3e9f1d02007-04-01 20:49:36 +0000203 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
204 if (!Ty || Ty->getBitWidth() % 16 != 0)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000205 return false;
Chris Lattner3e9f1d02007-04-01 20:49:36 +0000206
Chris Lattner625bd052006-11-29 01:14:06 +0000207 // Okay, we can do this xform, do so now.
Chris Lattner3e9f1d02007-04-01 20:49:36 +0000208 const Type *Tys[] = { Ty, Ty };
Chris Lattner625bd052006-11-29 01:14:06 +0000209 Module *M = CI->getParent()->getParent()->getParent();
Chris Lattner3e9f1d02007-04-01 20:49:36 +0000210 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 2);
Chris Lattner625bd052006-11-29 01:14:06 +0000211
212 Value *Op = CI->getOperand(1);
Chris Lattner625bd052006-11-29 01:14:06 +0000213 Op = new CallInst(Int, Op, CI->getName(), CI);
214
Chris Lattner625bd052006-11-29 01:14:06 +0000215 CI->replaceAllUsesWith(Op);
216 CI->eraseFromParent();
217 return true;
218}
219
220
221bool X86TargetAsmInfo::ExpandInlineAsm(CallInst *CI) const {
222 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattner5d521352006-11-29 01:48:01 +0000223 std::vector<InlineAsm::ConstraintInfo> Constraints = IA->ParseConstraints();
Chris Lattner625bd052006-11-29 01:14:06 +0000224
225 std::string AsmStr = IA->getAsmString();
226
227 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
228 std::vector<std::string> AsmPieces;
229 SplitString(AsmStr, AsmPieces, "\n"); // ; as separator?
230
231 switch (AsmPieces.size()) {
232 default: return false;
233 case 1:
234 AsmStr = AsmPieces[0];
235 AsmPieces.clear();
236 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
237
Chris Lattner5d521352006-11-29 01:48:01 +0000238 // bswap $0
Chris Lattner625bd052006-11-29 01:14:06 +0000239 if (AsmPieces.size() == 2 &&
240 AsmPieces[0] == "bswap" && AsmPieces[1] == "$0") {
241 // No need to check constraints, nothing other than the equivalent of
242 // "=r,0" would be valid here.
243 return LowerToBSwap(CI);
244 }
245 break;
Chris Lattner5d521352006-11-29 01:48:01 +0000246 case 3:
Reid Spencer47857812006-12-31 05:55:36 +0000247 if (CI->getType() == Type::Int64Ty && Constraints.size() >= 2 &&
Chris Lattner5d521352006-11-29 01:48:01 +0000248 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
249 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
250 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
251 std::vector<std::string> Words;
252 SplitString(AsmPieces[0], Words, " \t");
253 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
254 Words.clear();
255 SplitString(AsmPieces[1], Words, " \t");
256 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
257 Words.clear();
258 SplitString(AsmPieces[2], Words, " \t,");
259 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
260 Words[2] == "%edx") {
261 return LowerToBSwap(CI);
262 }
263 }
264 }
265 }
266 break;
Chris Lattner625bd052006-11-29 01:14:06 +0000267 }
268 return false;
269}