blob: 067965666125688f06a4c9b3347ab34fc5df748e [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
153 if (TAI->doesSupportDebugInformation()) {
154 // Emit pre-function debug information.
155 DW.BeginFunction(&MF);
156 }
157
Bill Wendlingb5880a72008-01-26 09:03:52 +0000158 if (Subtarget->isTargetDarwin()) {
159 // If the function is empty, then we need to emit *something*. Otherwise,
160 // the function's label might be associated with something that it wasn't
161 // meant to be associated with. We emit a noop in this situation.
162 MachineFunction::iterator I = MF.begin();
163
164 if (++I == MF.end() && MF.front().empty())
165 O << "\tnop\n";
166 }
167
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 // Print out code for the function.
169 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
170 I != E; ++I) {
171 // Print a label for the basic block.
Dan Gohman3f7d94b2007-10-03 19:26:29 +0000172 if (!I->pred_empty()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000173 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 O << '\n';
175 }
Bill Wendlingb5880a72008-01-26 09:03:52 +0000176 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
177 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 printMachineInstruction(II);
180 }
181 }
182
183 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmandd1aa3a2007-08-01 14:42:30 +0000184 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185
186 if (TAI->doesSupportDebugInformation()) {
187 // Emit post-function debug information.
188 DW.EndFunction();
189 }
190
191 // Print out jump tables referenced by the function.
192 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
193
194 // We didn't modify anything.
195 return false;
196}
197
198static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
199 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
200}
201
202static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
203 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
204}
205
206void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
207 const char *Modifier, bool NotRIPRel) {
208 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 switch (MO.getType()) {
210 case MachineOperand::MO_Register: {
Dan Gohman1e57df32008-02-10 18:45:23 +0000211 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 "Virtual registers should not make it this far!");
213 O << '%';
214 unsigned Reg = MO.getReg();
215 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
216 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
217 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
218 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
219 Reg = getX86SubSuperRegister(Reg, VT);
220 }
Evan Cheng3c0eda52008-03-15 00:03:38 +0000221 for (const char *Name = TRI->getAsmName(Reg); *Name; ++Name)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222 O << (char)tolower(*Name);
223 return;
224 }
225
226 case MachineOperand::MO_Immediate:
227 if (!Modifier ||
228 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
229 O << '$';
Chris Lattnera96056a2007-12-30 20:49:49 +0000230 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000231 return;
232 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000233 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 return;
235 case MachineOperand::MO_JumpTableIndex: {
236 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
237 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000238 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Chris Lattner6017d482007-12-30 23:10:15 +0000239 << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240
241 if (TM.getRelocationModel() == Reloc::PIC_) {
242 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000243 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
244 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 else if (Subtarget->isPICStyleGOT())
246 O << "@GOTOFF";
247 }
248
249 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
250 O << "(%rip)";
251 return;
252 }
253 case MachineOperand::MO_ConstantPoolIndex: {
254 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
255 if (!isMemOp) O << '$';
Evan Cheng477013c2007-10-14 05:57:21 +0000256 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Chris Lattner6017d482007-12-30 23:10:15 +0000257 << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258
259 if (TM.getRelocationModel() == Reloc::PIC_) {
260 if (Subtarget->isPICStyleStub())
Evan Cheng477013c2007-10-14 05:57:21 +0000261 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
262 << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 else if (Subtarget->isPICStyleGOT())
264 O << "@GOTOFF";
265 }
266
267 int Offset = MO.getOffset();
268 if (Offset > 0)
269 O << "+" << Offset;
270 else if (Offset < 0)
271 O << Offset;
272
273 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
274 O << "(%rip)";
275 return;
276 }
277 case MachineOperand::MO_GlobalAddress: {
278 bool isCallOp = Modifier && !strcmp(Modifier, "call");
279 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
280 bool needCloseParen = false;
281
Anton Korobeynikovdd9dc5d2008-03-11 22:38:53 +0000282 const GlobalValue *GV = MO.getGlobal();
283 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
284 if (!GVar) {
Anton Korobeynikov85149302008-03-22 07:53:40 +0000285 // If GV is an alias then use the aliasee for determining
286 // thread-localness.
Anton Korobeynikovdd9dc5d2008-03-11 22:38:53 +0000287 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
288 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
289 }
290
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 bool isThreadLocal = GVar && GVar->isThreadLocal();
292
293 std::string Name = Mang->getValueName(GV);
294 X86SharedAsmPrinter::decorateName(Name, GV);
295
296 if (!isMemOp && !isCallOp)
297 O << '$';
298 else if (Name[0] == '$') {
299 // The name begins with a dollar-sign. In order to avoid having it look
300 // like an integer immediate to the assembler, enclose it in parens.
301 O << '(';
302 needCloseParen = true;
303 }
304
305 if (printStub(TM, Subtarget)) {
306 // Link-once, declaration, or Weakly-linked global variables need
307 // non-lazily-resolved stubs
308 if (GV->isDeclaration() ||
309 GV->hasWeakLinkage() ||
310 GV->hasLinkOnceLinkage()) {
311 // Dynamically-resolved functions need a stub for the function.
312 if (isCallOp && isa<Function>(GV)) {
313 FnStubs.insert(Name);
314 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
315 } else {
316 GVStubs.insert(Name);
317 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
318 }
319 } else {
320 if (GV->hasDLLImportLinkage())
321 O << "__imp_";
322 O << Name;
323 }
324
325 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng0729ccf2008-01-05 00:41:47 +0000326 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327 } else {
328 if (GV->hasDLLImportLinkage()) {
329 O << "__imp_";
330 }
331 O << Name;
332
333 if (isCallOp && isa<Function>(GV)) {
334 if (printGOT(TM, Subtarget)) {
335 // Assemble call via PLT for non-local symbols
336 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
337 GV->isDeclaration())
338 O << "@PLT";
339 }
340 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
341 // Save function name for later type emission
342 FnStubs.insert(Name);
343 }
344 }
345
346 if (GV->hasExternalWeakLinkage())
347 ExtWeakSymbols.insert(GV);
348
349 int Offset = MO.getOffset();
350 if (Offset > 0)
351 O << "+" << Offset;
352 else if (Offset < 0)
353 O << Offset;
354
355 if (isThreadLocal) {
356 if (TM.getRelocationModel() == Reloc::PIC_)
357 O << "@TLSGD"; // general dynamic TLS model
358 else
359 if (GV->isDeclaration())
360 O << "@INDNTPOFF"; // initial exec TLS model
361 else
362 O << "@NTPOFF"; // local exec TLS model
363 } else if (isMemOp) {
364 if (printGOT(TM, Subtarget)) {
365 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
366 O << "@GOT";
367 else
368 O << "@GOTOFF";
Chris Lattnerfa7ef612007-11-04 19:23:28 +0000369 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
370 TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov0d38b7d2008-01-20 13:59:37 +0000371 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 O << "@GOTPCREL";
373
374 if (needCloseParen) {
375 needCloseParen = false;
376 O << ')';
377 }
378
379 // Use rip when possible to reduce code size, except when
380 // index or base register are also part of the address. e.g.
381 // foo(%rip)(%rcx,%rax,4) is not legal
382 O << "(%rip)";
383 }
384 }
385
386 if (needCloseParen)
387 O << ')';
388
389 return;
390 }
391 case MachineOperand::MO_ExternalSymbol: {
392 bool isCallOp = Modifier && !strcmp(Modifier, "call");
393 bool needCloseParen = false;
394 std::string Name(TAI->getGlobalPrefix());
395 Name += MO.getSymbolName();
396 if (isCallOp && printStub(TM, Subtarget)) {
397 FnStubs.insert(Name);
398 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
399 return;
400 }
401 if (!isCallOp)
402 O << '$';
403 else if (Name[0] == '$') {
404 // The name begins with a dollar-sign. In order to avoid having it look
405 // like an integer immediate to the assembler, enclose it in parens.
406 O << '(';
407 needCloseParen = true;
408 }
409
410 O << Name;
411
412 if (printGOT(TM, Subtarget)) {
413 std::string GOTName(TAI->getGlobalPrefix());
414 GOTName+="_GLOBAL_OFFSET_TABLE_";
415 if (Name == GOTName)
416 // HACK! Emit extra offset to PC during printing GOT offset to
417 // compensate for the size of popl instruction. The resulting code
418 // should look like:
419 // call .piclabel
420 // piclabel:
421 // popl %some_register
422 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
423 O << " + [.-"
Evan Cheng0729ccf2008-01-05 00:41:47 +0000424 << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425
426 if (isCallOp)
427 O << "@PLT";
428 }
429
430 if (needCloseParen)
431 O << ')';
432
433 if (!isCallOp && Subtarget->isPICStyleRIPRel())
434 O << "(%rip)";
435
436 return;
437 }
438 default:
439 O << "<unknown operand type>"; return;
440 }
441}
442
443void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000444 unsigned char value = MI->getOperand(Op).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 assert(value <= 7 && "Invalid ssecc argument!");
446 switch (value) {
447 case 0: O << "eq"; break;
448 case 1: O << "lt"; break;
449 case 2: O << "le"; break;
450 case 3: O << "unord"; break;
451 case 4: O << "neq"; break;
452 case 5: O << "nlt"; break;
453 case 6: O << "nle"; break;
454 case 7: O << "ord"; break;
455 }
456}
457
458void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
459 const char *Modifier){
460 assert(isMem(MI, Op) && "Invalid memory reference!");
461 MachineOperand BaseReg = MI->getOperand(Op);
462 MachineOperand IndexReg = MI->getOperand(Op+2);
463 const MachineOperand &DispSpec = MI->getOperand(Op+3);
464
465 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
466 if (DispSpec.isGlobalAddress() ||
467 DispSpec.isConstantPoolIndex() ||
468 DispSpec.isJumpTableIndex()) {
469 printOperand(MI, Op+3, "mem", NotRIPRel);
470 } else {
Chris Lattnera96056a2007-12-30 20:49:49 +0000471 int DispVal = DispSpec.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
473 O << DispVal;
474 }
475
476 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000477 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
479
480 // There are cases where we can end up with ESP/RSP in the indexreg slot.
481 // If this happens, swap the base/index register to support assemblers that
482 // don't work when the index is *SP.
483 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
484 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
485 std::swap(BaseReg, IndexReg);
486 std::swap(BaseRegOperand, IndexRegOperand);
487 }
488
489 O << "(";
490 if (BaseReg.getReg())
491 printOperand(MI, Op+BaseRegOperand, Modifier);
492
493 if (IndexReg.getReg()) {
494 O << ",";
495 printOperand(MI, Op+IndexRegOperand, Modifier);
496 if (ScaleVal != 1)
497 O << "," << ScaleVal;
498 }
499 O << ")";
500 }
501}
502
Evan Cheng6fb06762007-11-09 01:32:10 +0000503void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
504 const MachineBasicBlock *MBB) const {
505 if (!TAI->getSetDirective())
506 return;
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000507
508 // We don't need .set machinery if we have GOT-style relocations
509 if (Subtarget->isPICStyleGOT())
510 return;
511
Evan Cheng6fb06762007-11-09 01:32:10 +0000512 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
513 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Evan Cheng45c1edb2008-02-28 00:43:03 +0000514 printBasicBlockLabel(MBB, false, false, false);
Evan Cheng5da12252007-11-09 19:11:23 +0000515 if (Subtarget->isPICStyleRIPRel())
516 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
517 << '_' << uid << '\n';
518 else
Evan Cheng0729ccf2008-01-05 00:41:47 +0000519 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Cheng6fb06762007-11-09 01:32:10 +0000520}
521
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng0729ccf2008-01-05 00:41:47 +0000523 std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 O << label << "\n" << label << ":";
525}
526
527
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000528void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
529 const MachineBasicBlock *MBB,
530 unsigned uid) const
531{
532 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
533 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
534
535 O << JTEntryDirective << ' ';
536
537 if (TM.getRelocationModel() == Reloc::PIC_) {
538 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
539 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
540 << '_' << uid << "_set_" << MBB->getNumber();
541 } else if (Subtarget->isPICStyleGOT()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000542 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000543 O << "@GOTOFF";
544 } else
545 assert(0 && "Don't know how to print MBB label for this PIC mode");
546 } else
Evan Cheng45c1edb2008-02-28 00:43:03 +0000547 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000548}
549
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
551 const char Mode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000552 unsigned Reg = MO.getReg();
553 switch (Mode) {
554 default: return true; // Unknown mode.
555 case 'b': // Print QImode register
556 Reg = getX86SubSuperRegister(Reg, MVT::i8);
557 break;
558 case 'h': // Print QImode high register
559 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
560 break;
561 case 'w': // Print HImode register
562 Reg = getX86SubSuperRegister(Reg, MVT::i16);
563 break;
564 case 'k': // Print SImode register
565 Reg = getX86SubSuperRegister(Reg, MVT::i32);
566 break;
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000567 case 'q': // Print DImode register
568 Reg = getX86SubSuperRegister(Reg, MVT::i64);
569 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570 }
571
572 O << '%';
Evan Cheng3c0eda52008-03-15 00:03:38 +0000573 for (const char *Name = TRI->getAsmName(Reg); *Name; ++Name)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 O << (char)tolower(*Name);
575 return false;
576}
577
578/// PrintAsmOperand - Print out an operand for an inline asm expression.
579///
580bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
581 unsigned AsmVariant,
582 const char *ExtraCode) {
583 // Does this asm operand have a single letter operand modifier?
584 if (ExtraCode && ExtraCode[0]) {
585 if (ExtraCode[1] != 0) return true; // Unknown modifier.
586
587 switch (ExtraCode[0]) {
588 default: return true; // Unknown modifier.
589 case 'c': // Don't print "$" before a global var name or constant.
590 printOperand(MI, OpNo, "mem");
591 return false;
592 case 'b': // Print QImode register
593 case 'h': // Print QImode high register
594 case 'w': // Print HImode register
595 case 'k': // Print SImode register
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000596 case 'q': // Print DImode register
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000597 if (MI->getOperand(OpNo).isRegister())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000598 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
599 printOperand(MI, OpNo);
600 return false;
601
602 case 'P': // Don't print @PLT, but do print as memory.
603 printOperand(MI, OpNo, "mem");
604 return false;
605 }
606 }
607
608 printOperand(MI, OpNo);
609 return false;
610}
611
612bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
613 unsigned OpNo,
614 unsigned AsmVariant,
615 const char *ExtraCode) {
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000616 if (ExtraCode && ExtraCode[0]) {
617 if (ExtraCode[1] != 0) return true; // Unknown modifier.
618
619 switch (ExtraCode[0]) {
620 default: return true; // Unknown modifier.
621 case 'b': // Print QImode register
622 case 'h': // Print QImode high register
623 case 'w': // Print HImode register
624 case 'k': // Print SImode register
625 case 'q': // Print SImode register
626 // These only apply to registers, ignore on mem.
627 break;
628 }
629 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 printMemReference(MI, OpNo);
631 return false;
632}
633
634/// printMachineInstruction -- Print out a single X86 LLVM instruction
635/// MI in AT&T syntax to the current output stream.
636///
637void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
638 ++EmittedInsts;
639
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000640 // Call the autogenerated instruction printer routines.
641 printInstruction(MI);
642}
643
644// Include the auto-generated portion of the assembly writer.
645#include "X86GenAsmWriter.inc"
646