blob: eacab47e13a87bbd01cfeeea2cbfc19c69c189de [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to AT&T assembly -----===//
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 contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to AT&T format assembly
12// language. This printer is the output mechanism used by `llc'.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "asm-printer"
17#include "X86ATTAsmPrinter.h"
18#include "X86.h"
19#include "X86COFF.h"
20#include "X86MachineFunctionInfo.h"
21#include "X86TargetMachine.h"
22#include "X86TargetAsmInfo.h"
23#include "llvm/ADT/StringExtras.h"
24#include "llvm/CallingConv.h"
Anton Korobeynikov5772c672007-11-14 09:18:41 +000025#include "llvm/CodeGen/MachineJumpTableInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/Module.h"
27#include "llvm/Support/Mangler.h"
28#include "llvm/Target/TargetAsmInfo.h"
29#include "llvm/Target/TargetOptions.h"
30#include "llvm/ADT/Statistic.h"
31using namespace llvm;
32
33STATISTIC(EmittedInsts, "Number of machine instrs printed");
34
Evan Cheng0729ccf2008-01-05 00:41:47 +000035static std::string getPICLabelString(unsigned FnNum,
36 const TargetAsmInfo *TAI,
37 const X86Subtarget* Subtarget) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038 std::string label;
39 if (Subtarget->isTargetDarwin())
Evan Cheng477013c2007-10-14 05:57:21 +000040 label = "\"L" + utostr_32(FnNum) + "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041 else if (Subtarget->isTargetELF())
Evan Cheng0729ccf2008-01-05 00:41:47 +000042 label = ".Lllvm$" + utostr_32(FnNum) + "." + "$piclabel";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043 else
44 assert(0 && "Don't know how to print PIC label!\n");
45
46 return label;
47}
48
49/// getSectionForFunction - Return the section that we should emit the
50/// specified function body into.
51std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
52 switch (F.getLinkage()) {
53 default: assert(0 && "Unknown linkage type!");
54 case Function::InternalLinkage:
55 case Function::DLLExportLinkage:
56 case Function::ExternalLinkage:
57 return TAI->getTextSection();
58 case Function::WeakLinkage:
59 case Function::LinkOnceLinkage:
60 if (Subtarget->isTargetDarwin()) {
61 return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
62 } else if (Subtarget->isTargetCygMing()) {
63 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"";
64 } else {
65 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
66 ",\"ax\",@progbits";
67 }
68 }
69}
70
71/// runOnMachineFunction - This uses the printMachineInstruction()
72/// method to print assembly for each instruction.
73///
74bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
75 if (TAI->doesSupportDebugInformation()) {
76 // Let PassManager know we need debug information and relay
77 // the MachineModuleInfo address on to DwarfWriter.
Bill Wendlingd1bda4f2007-09-11 08:27:17 +000078 MMI = &getAnalysis<MachineModuleInfo>();
79 DW.SetModuleInfo(MMI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080 }
81
82 SetupMachineFunction(MF);
83 O << "\n\n";
84
85 // Print out constants referenced by the function
86 EmitConstantPool(MF.getConstantPool());
87
88 // Print out labels for the function.
89 const Function *F = MF.getFunction();
90 unsigned CC = F->getCallingConv();
91
92 // Populate function information map. Actually, We don't want to populate
93 // non-stdcall or non-fastcall functions' information right now.
94 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
95 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
96
97 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
98
99 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
100
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000101 unsigned FnAlign = OptimizeForSize ? 1 : 4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 switch (F->getLinkage()) {
103 default: assert(0 && "Unknown linkage type!");
104 case Function::InternalLinkage: // Symbols default to internal.
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000105 EmitAlignment(FnAlign, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 break;
107 case Function::DLLExportLinkage:
108 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
109 //FALLS THROUGH
110 case Function::ExternalLinkage:
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000111 EmitAlignment(FnAlign, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 O << "\t.globl\t" << CurrentFnName << "\n";
113 break;
114 case Function::LinkOnceLinkage:
115 case Function::WeakLinkage:
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000116 EmitAlignment(FnAlign, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 if (Subtarget->isTargetDarwin()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 O << "\t.globl\t" << CurrentFnName << "\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000119 O << TAI->getWeakDefDirective() << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 } else if (Subtarget->isTargetCygMing()) {
Dan Gohmanc37918d2007-10-05 15:54:58 +0000121 O << "\t.globl\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 O << "\t.linkonce discard\n";
123 } else {
Dan Gohman721e6582007-07-30 15:08:02 +0000124 O << "\t.weak\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 }
126 break;
127 }
128 if (F->hasHiddenVisibility()) {
129 if (const char *Directive = TAI->getHiddenDirective())
130 O << Directive << CurrentFnName << "\n";
131 } else if (F->hasProtectedVisibility()) {
132 if (const char *Directive = TAI->getProtectedDirective())
133 O << Directive << CurrentFnName << "\n";
134 }
135
136 if (Subtarget->isTargetELF())
Dan Gohman721e6582007-07-30 15:08:02 +0000137 O << "\t.type\t" << CurrentFnName << ",@function\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 else if (Subtarget->isTargetCygMing()) {
139 O << "\t.def\t " << CurrentFnName
140 << ";\t.scl\t" <<
141 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
142 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
143 << ";\t.endef\n";
144 }
145
146 O << CurrentFnName << ":\n";
147 // Add some workaround for linkonce linkage on Cygwin\MinGW
148 if (Subtarget->isTargetCygMing() &&
149 (F->getLinkage() == Function::LinkOnceLinkage ||
150 F->getLinkage() == Function::WeakLinkage))
151 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
152
Dale Johannesen85535762008-04-02 00:25:04 +0000153 if (TAI->doesSupportDebugInformation() ||
154 TAI->doesSupportExceptionHandling()) {
155 // Emit pre-function debug and/or EH information.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156 DW.BeginFunction(&MF);
157 }
158
159 // Print out code for the function.
Dale Johannesenf35771f2008-04-08 00:37:56 +0000160 bool hasAnyRealCode = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
162 I != E; ++I) {
163 // Print a label for the basic block.
Dan Gohman3f7d94b2007-10-03 19:26:29 +0000164 if (!I->pred_empty()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000165 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 O << '\n';
167 }
Bill Wendlingb5880a72008-01-26 09:03:52 +0000168 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
169 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 // Print the assembly for the instruction.
Dale Johannesenf35771f2008-04-08 00:37:56 +0000171 if (II->getOpcode() != X86::LABEL)
172 hasAnyRealCode = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 printMachineInstruction(II);
174 }
175 }
176
Dale Johannesenf35771f2008-04-08 00:37:56 +0000177 if (Subtarget->isTargetDarwin() && !hasAnyRealCode) {
178 // If the function is empty, then we need to emit *something*. Otherwise,
179 // the function's label might be associated with something that it wasn't
180 // meant to be associated with. We emit a noop in this situation.
181 // We are assuming inline asms are code.
182 O << "\tnop\n";
183 }
184
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmandd1aa3a2007-08-01 14:42:30 +0000186 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000187
188 if (TAI->doesSupportDebugInformation()) {
189 // Emit post-function debug information.
190 DW.EndFunction();
191 }
192
193 // Print out jump tables referenced by the function.
194 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
195
196 // We didn't modify anything.
197 return false;
198}
199
200static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
201 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
202}
203
204static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
205 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
206}
207
208void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
209 const char *Modifier, bool NotRIPRel) {
210 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 switch (MO.getType()) {
212 case MachineOperand::MO_Register: {
Dan Gohman1e57df32008-02-10 18:45:23 +0000213 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 "Virtual registers should not make it this far!");
215 O << '%';
216 unsigned Reg = MO.getReg();
217 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Duncan Sands92c43912008-06-06 12:08:01 +0000218 MVT VT = (strcmp(Modifier+6,"64") == 0) ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
220 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
221 Reg = getX86SubSuperRegister(Reg, VT);
222 }
Evan Cheng3c0eda52008-03-15 00:03:38 +0000223 for (const char *Name = TRI->getAsmName(Reg); *Name; ++Name)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 O << (char)tolower(*Name);
225 return;
226 }
227
228 case MachineOperand::MO_Immediate:
229 if (!Modifier ||
230 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
231 O << '$';
Chris Lattnera96056a2007-12-30 20:49:49 +0000232 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233 return;
234 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000235 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 return;
237 case MachineOperand::MO_JumpTableIndex: {
238 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
239 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000240 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Chris Lattner6017d482007-12-30 23:10:15 +0000241 << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242
243 if (TM.getRelocationModel() == Reloc::PIC_) {
244 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000245 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
246 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 else if (Subtarget->isPICStyleGOT())
248 O << "@GOTOFF";
249 }
250
251 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
252 O << "(%rip)";
253 return;
254 }
255 case MachineOperand::MO_ConstantPoolIndex: {
256 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
257 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000258 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Chris Lattner6017d482007-12-30 23:10:15 +0000259 << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260
261 if (TM.getRelocationModel() == Reloc::PIC_) {
262 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000263 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
264 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 else if (Subtarget->isPICStyleGOT())
266 O << "@GOTOFF";
267 }
268
269 int Offset = MO.getOffset();
270 if (Offset > 0)
271 O << "+" << Offset;
272 else if (Offset < 0)
273 O << Offset;
274
275 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
276 O << "(%rip)";
277 return;
278 }
279 case MachineOperand::MO_GlobalAddress: {
280 bool isCallOp = Modifier && !strcmp(Modifier, "call");
281 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
282 bool needCloseParen = false;
283
Anton Korobeynikovdd9dc5d2008-03-11 22:38:53 +0000284 const GlobalValue *GV = MO.getGlobal();
285 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
286 if (!GVar) {
Anton Korobeynikov85149302008-03-22 07:53:40 +0000287 // If GV is an alias then use the aliasee for determining
288 // thread-localness.
Anton Korobeynikovdd9dc5d2008-03-11 22:38:53 +0000289 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
290 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
291 }
292
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 bool isThreadLocal = GVar && GVar->isThreadLocal();
294
295 std::string Name = Mang->getValueName(GV);
296 X86SharedAsmPrinter::decorateName(Name, GV);
297
298 if (!isMemOp && !isCallOp)
299 O << '$';
300 else if (Name[0] == '$') {
301 // The name begins with a dollar-sign. In order to avoid having it look
302 // like an integer immediate to the assembler, enclose it in parens.
303 O << '(';
304 needCloseParen = true;
305 }
306
307 if (printStub(TM, Subtarget)) {
308 // Link-once, declaration, or Weakly-linked global variables need
309 // non-lazily-resolved stubs
310 if (GV->isDeclaration() ||
311 GV->hasWeakLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +0000312 GV->hasLinkOnceLinkage() ||
313 GV->hasCommonLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 // Dynamically-resolved functions need a stub for the function.
315 if (isCallOp && isa<Function>(GV)) {
316 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000317 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318 } else {
319 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000320 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 }
322 } else {
323 if (GV->hasDLLImportLinkage())
324 O << "__imp_";
325 O << Name;
326 }
327
328 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng0729ccf2008-01-05 00:41:47 +0000329 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330 } else {
331 if (GV->hasDLLImportLinkage()) {
332 O << "__imp_";
333 }
334 O << Name;
335
336 if (isCallOp && isa<Function>(GV)) {
337 if (printGOT(TM, Subtarget)) {
338 // Assemble call via PLT for non-local symbols
339 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
340 GV->isDeclaration())
341 O << "@PLT";
342 }
343 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
344 // Save function name for later type emission
345 FnStubs.insert(Name);
346 }
347 }
348
349 if (GV->hasExternalWeakLinkage())
350 ExtWeakSymbols.insert(GV);
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +0000351
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 int Offset = MO.getOffset();
353 if (Offset > 0)
354 O << "+" << Offset;
355 else if (Offset < 0)
356 O << Offset;
357
358 if (isThreadLocal) {
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +0000359 if (TM.getRelocationModel() == Reloc::PIC_ || Subtarget->is64Bit())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 O << "@TLSGD"; // general dynamic TLS model
361 else
362 if (GV->isDeclaration())
363 O << "@INDNTPOFF"; // initial exec TLS model
364 else
365 O << "@NTPOFF"; // local exec TLS model
366 } else if (isMemOp) {
367 if (printGOT(TM, Subtarget)) {
368 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
369 O << "@GOT";
370 else
371 O << "@GOTOFF";
Chris Lattnerfa7ef612007-11-04 19:23:28 +0000372 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
373 TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov0d38b7d2008-01-20 13:59:37 +0000374 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 O << "@GOTPCREL";
376
377 if (needCloseParen) {
378 needCloseParen = false;
379 O << ')';
380 }
381
382 // Use rip when possible to reduce code size, except when
383 // index or base register are also part of the address. e.g.
384 // foo(%rip)(%rcx,%rax,4) is not legal
385 O << "(%rip)";
386 }
387 }
388
389 if (needCloseParen)
390 O << ')';
391
392 return;
393 }
394 case MachineOperand::MO_ExternalSymbol: {
395 bool isCallOp = Modifier && !strcmp(Modifier, "call");
396 bool needCloseParen = false;
397 std::string Name(TAI->getGlobalPrefix());
398 Name += MO.getSymbolName();
399 if (isCallOp && printStub(TM, Subtarget)) {
400 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000401 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 return;
403 }
404 if (!isCallOp)
405 O << '$';
406 else if (Name[0] == '$') {
407 // The name begins with a dollar-sign. In order to avoid having it look
408 // like an integer immediate to the assembler, enclose it in parens.
409 O << '(';
410 needCloseParen = true;
411 }
412
413 O << Name;
414
415 if (printGOT(TM, Subtarget)) {
416 std::string GOTName(TAI->getGlobalPrefix());
417 GOTName+="_GLOBAL_OFFSET_TABLE_";
418 if (Name == GOTName)
419 // HACK! Emit extra offset to PC during printing GOT offset to
420 // compensate for the size of popl instruction. The resulting code
421 // should look like:
422 // call .piclabel
423 // piclabel:
424 // popl %some_register
425 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
426 O << " + [.-"
Evan Cheng0729ccf2008-01-05 00:41:47 +0000427 << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428
429 if (isCallOp)
430 O << "@PLT";
431 }
432
433 if (needCloseParen)
434 O << ')';
435
436 if (!isCallOp && Subtarget->isPICStyleRIPRel())
437 O << "(%rip)";
438
439 return;
440 }
441 default:
442 O << "<unknown operand type>"; return;
443 }
444}
445
446void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000447 unsigned char value = MI->getOperand(Op).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448 assert(value <= 7 && "Invalid ssecc argument!");
449 switch (value) {
450 case 0: O << "eq"; break;
451 case 1: O << "lt"; break;
452 case 2: O << "le"; break;
453 case 3: O << "unord"; break;
454 case 4: O << "neq"; break;
455 case 5: O << "nlt"; break;
456 case 6: O << "nle"; break;
457 case 7: O << "ord"; break;
458 }
459}
460
461void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
462 const char *Modifier){
463 assert(isMem(MI, Op) && "Invalid memory reference!");
464 MachineOperand BaseReg = MI->getOperand(Op);
465 MachineOperand IndexReg = MI->getOperand(Op+2);
466 const MachineOperand &DispSpec = MI->getOperand(Op+3);
467
468 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
469 if (DispSpec.isGlobalAddress() ||
470 DispSpec.isConstantPoolIndex() ||
471 DispSpec.isJumpTableIndex()) {
472 printOperand(MI, Op+3, "mem", NotRIPRel);
473 } else {
Chris Lattnera96056a2007-12-30 20:49:49 +0000474 int DispVal = DispSpec.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
476 O << DispVal;
477 }
478
479 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000480 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
482
483 // There are cases where we can end up with ESP/RSP in the indexreg slot.
484 // If this happens, swap the base/index register to support assemblers that
485 // don't work when the index is *SP.
486 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
487 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
488 std::swap(BaseReg, IndexReg);
489 std::swap(BaseRegOperand, IndexRegOperand);
490 }
491
492 O << "(";
493 if (BaseReg.getReg())
494 printOperand(MI, Op+BaseRegOperand, Modifier);
495
496 if (IndexReg.getReg()) {
497 O << ",";
498 printOperand(MI, Op+IndexRegOperand, Modifier);
499 if (ScaleVal != 1)
500 O << "," << ScaleVal;
501 }
502 O << ")";
503 }
504}
505
Evan Cheng6fb06762007-11-09 01:32:10 +0000506void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
507 const MachineBasicBlock *MBB) const {
508 if (!TAI->getSetDirective())
509 return;
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000510
511 // We don't need .set machinery if we have GOT-style relocations
512 if (Subtarget->isPICStyleGOT())
513 return;
514
Evan Cheng6fb06762007-11-09 01:32:10 +0000515 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
516 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Evan Cheng45c1edb2008-02-28 00:43:03 +0000517 printBasicBlockLabel(MBB, false, false, false);
Evan Cheng5da12252007-11-09 19:11:23 +0000518 if (Subtarget->isPICStyleRIPRel())
519 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
520 << '_' << uid << '\n';
521 else
Evan Cheng0729ccf2008-01-05 00:41:47 +0000522 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Cheng6fb06762007-11-09 01:32:10 +0000523}
524
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng0729ccf2008-01-05 00:41:47 +0000526 std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 O << label << "\n" << label << ":";
528}
529
530
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000531void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
532 const MachineBasicBlock *MBB,
533 unsigned uid) const
534{
535 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
536 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
537
538 O << JTEntryDirective << ' ';
539
540 if (TM.getRelocationModel() == Reloc::PIC_) {
541 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
542 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
543 << '_' << uid << "_set_" << MBB->getNumber();
544 } else if (Subtarget->isPICStyleGOT()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000545 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000546 O << "@GOTOFF";
547 } else
548 assert(0 && "Don't know how to print MBB label for this PIC mode");
549 } else
Evan Cheng45c1edb2008-02-28 00:43:03 +0000550 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000551}
552
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
554 const char Mode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 unsigned Reg = MO.getReg();
556 switch (Mode) {
557 default: return true; // Unknown mode.
558 case 'b': // Print QImode register
559 Reg = getX86SubSuperRegister(Reg, MVT::i8);
560 break;
561 case 'h': // Print QImode high register
562 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
563 break;
564 case 'w': // Print HImode register
565 Reg = getX86SubSuperRegister(Reg, MVT::i16);
566 break;
567 case 'k': // Print SImode register
568 Reg = getX86SubSuperRegister(Reg, MVT::i32);
569 break;
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000570 case 'q': // Print DImode register
571 Reg = getX86SubSuperRegister(Reg, MVT::i64);
572 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 }
574
575 O << '%';
Evan Cheng3c0eda52008-03-15 00:03:38 +0000576 for (const char *Name = TRI->getAsmName(Reg); *Name; ++Name)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 O << (char)tolower(*Name);
578 return false;
579}
580
581/// PrintAsmOperand - Print out an operand for an inline asm expression.
582///
583bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
584 unsigned AsmVariant,
585 const char *ExtraCode) {
586 // Does this asm operand have a single letter operand modifier?
587 if (ExtraCode && ExtraCode[0]) {
588 if (ExtraCode[1] != 0) return true; // Unknown modifier.
589
590 switch (ExtraCode[0]) {
591 default: return true; // Unknown modifier.
592 case 'c': // Don't print "$" before a global var name or constant.
593 printOperand(MI, OpNo, "mem");
594 return false;
595 case 'b': // Print QImode register
596 case 'h': // Print QImode high register
597 case 'w': // Print HImode register
598 case 'k': // Print SImode register
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000599 case 'q': // Print DImode register
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000600 if (MI->getOperand(OpNo).isRegister())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
602 printOperand(MI, OpNo);
603 return false;
604
605 case 'P': // Don't print @PLT, but do print as memory.
606 printOperand(MI, OpNo, "mem");
607 return false;
608 }
609 }
610
611 printOperand(MI, OpNo);
612 return false;
613}
614
615bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
616 unsigned OpNo,
617 unsigned AsmVariant,
618 const char *ExtraCode) {
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000619 if (ExtraCode && ExtraCode[0]) {
620 if (ExtraCode[1] != 0) return true; // Unknown modifier.
621
622 switch (ExtraCode[0]) {
623 default: return true; // Unknown modifier.
624 case 'b': // Print QImode register
625 case 'h': // Print QImode high register
626 case 'w': // Print HImode register
627 case 'k': // Print SImode register
628 case 'q': // Print SImode register
629 // These only apply to registers, ignore on mem.
630 break;
631 }
632 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633 printMemReference(MI, OpNo);
634 return false;
635}
636
637/// printMachineInstruction -- Print out a single X86 LLVM instruction
638/// MI in AT&T syntax to the current output stream.
639///
640void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
641 ++EmittedInsts;
642
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 // Call the autogenerated instruction printer routines.
644 printInstruction(MI);
645}
646
647// Include the auto-generated portion of the assembly writer.
648#include "X86GenAsmWriter.inc"
649