blob: 8198fbe860e62771d63a9c3b43f229cb08fb9ebc [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
101 switch (F->getLinkage()) {
102 default: assert(0 && "Unknown linkage type!");
103 case Function::InternalLinkage: // Symbols default to internal.
Evan Cheng27f41ab2007-07-25 23:36:05 +0000104 if (Subtarget->isTargetDarwin())
105 // FIXME: This should be parameterized somewhere.
106 EmitAlignment(4, F, 0, true, 0x90);
107 else
108 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 break;
110 case Function::DLLExportLinkage:
111 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
112 //FALLS THROUGH
113 case Function::ExternalLinkage:
Evan Cheng27f41ab2007-07-25 23:36:05 +0000114 if (Subtarget->isTargetDarwin())
115 // FIXME: This should be parameterized somewhere.
116 EmitAlignment(4, F, 0, true, 0x90);
117 else
118 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119 O << "\t.globl\t" << CurrentFnName << "\n";
120 break;
121 case Function::LinkOnceLinkage:
122 case Function::WeakLinkage:
123 if (Subtarget->isTargetDarwin()) {
Evan Cheng27f41ab2007-07-25 23:36:05 +0000124 // FIXME: This should be parameterized somewhere.
125 EmitAlignment(4, F, 0, true, 0x90);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 O << "\t.globl\t" << CurrentFnName << "\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000127 O << TAI->getWeakDefDirective() << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 } else if (Subtarget->isTargetCygMing()) {
129 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohmanc37918d2007-10-05 15:54:58 +0000130 O << "\t.globl\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 O << "\t.linkonce discard\n";
132 } else {
133 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohman721e6582007-07-30 15:08:02 +0000134 O << "\t.weak\t" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 }
136 break;
137 }
138 if (F->hasHiddenVisibility()) {
139 if (const char *Directive = TAI->getHiddenDirective())
140 O << Directive << CurrentFnName << "\n";
141 } else if (F->hasProtectedVisibility()) {
142 if (const char *Directive = TAI->getProtectedDirective())
143 O << Directive << CurrentFnName << "\n";
144 }
145
146 if (Subtarget->isTargetELF())
Dan Gohman721e6582007-07-30 15:08:02 +0000147 O << "\t.type\t" << CurrentFnName << ",@function\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 else if (Subtarget->isTargetCygMing()) {
149 O << "\t.def\t " << CurrentFnName
150 << ";\t.scl\t" <<
151 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
152 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
153 << ";\t.endef\n";
154 }
155
156 O << CurrentFnName << ":\n";
157 // Add some workaround for linkonce linkage on Cygwin\MinGW
158 if (Subtarget->isTargetCygMing() &&
159 (F->getLinkage() == Function::LinkOnceLinkage ||
160 F->getLinkage() == Function::WeakLinkage))
161 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
162
163 if (TAI->doesSupportDebugInformation()) {
164 // Emit pre-function debug information.
165 DW.BeginFunction(&MF);
166 }
167
168 // 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()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 printBasicBlockLabel(I, true);
174 O << '\n';
175 }
176 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
177 II != E; ++II) {
178 // Print the assembly for the instruction.
179 O << "\t";
180 printMachineInstruction(II);
181 }
182 }
183
184 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmandd1aa3a2007-08-01 14:42:30 +0000185 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186
187 if (TAI->doesSupportDebugInformation()) {
188 // Emit post-function debug information.
189 DW.EndFunction();
190 }
191
192 // Print out jump tables referenced by the function.
193 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
194
195 // We didn't modify anything.
196 return false;
197}
198
199static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
200 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
201}
202
203static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
204 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
205}
206
207void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
208 const char *Modifier, bool NotRIPRel) {
209 const MachineOperand &MO = MI->getOperand(OpNo);
210 const MRegisterInfo &RI = *TM.getRegisterInfo();
211 switch (MO.getType()) {
212 case MachineOperand::MO_Register: {
213 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
214 "Virtual registers should not make it this far!");
215 O << '%';
216 unsigned Reg = MO.getReg();
217 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
218 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
219 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 }
223 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
224 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
284 GlobalValue *GV = MO.getGlobal();
285 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
286 bool isThreadLocal = GVar && GVar->isThreadLocal();
287
288 std::string Name = Mang->getValueName(GV);
289 X86SharedAsmPrinter::decorateName(Name, GV);
290
291 if (!isMemOp && !isCallOp)
292 O << '$';
293 else if (Name[0] == '$') {
294 // The name begins with a dollar-sign. In order to avoid having it look
295 // like an integer immediate to the assembler, enclose it in parens.
296 O << '(';
297 needCloseParen = true;
298 }
299
300 if (printStub(TM, Subtarget)) {
301 // Link-once, declaration, or Weakly-linked global variables need
302 // non-lazily-resolved stubs
303 if (GV->isDeclaration() ||
304 GV->hasWeakLinkage() ||
305 GV->hasLinkOnceLinkage()) {
306 // Dynamically-resolved functions need a stub for the function.
307 if (isCallOp && isa<Function>(GV)) {
308 FnStubs.insert(Name);
309 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
310 } else {
311 GVStubs.insert(Name);
312 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
313 }
314 } else {
315 if (GV->hasDLLImportLinkage())
316 O << "__imp_";
317 O << Name;
318 }
319
320 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng0729ccf2008-01-05 00:41:47 +0000321 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 } else {
323 if (GV->hasDLLImportLinkage()) {
324 O << "__imp_";
325 }
326 O << Name;
327
328 if (isCallOp && isa<Function>(GV)) {
329 if (printGOT(TM, Subtarget)) {
330 // Assemble call via PLT for non-local symbols
331 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
332 GV->isDeclaration())
333 O << "@PLT";
334 }
335 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
336 // Save function name for later type emission
337 FnStubs.insert(Name);
338 }
339 }
340
341 if (GV->hasExternalWeakLinkage())
342 ExtWeakSymbols.insert(GV);
343
344 int Offset = MO.getOffset();
345 if (Offset > 0)
346 O << "+" << Offset;
347 else if (Offset < 0)
348 O << Offset;
349
350 if (isThreadLocal) {
351 if (TM.getRelocationModel() == Reloc::PIC_)
352 O << "@TLSGD"; // general dynamic TLS model
353 else
354 if (GV->isDeclaration())
355 O << "@INDNTPOFF"; // initial exec TLS model
356 else
357 O << "@NTPOFF"; // local exec TLS model
358 } else if (isMemOp) {
359 if (printGOT(TM, Subtarget)) {
360 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
361 O << "@GOT";
362 else
363 O << "@GOTOFF";
Chris Lattnerfa7ef612007-11-04 19:23:28 +0000364 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
365 TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov0d38b7d2008-01-20 13:59:37 +0000366 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 O << "@GOTPCREL";
368
369 if (needCloseParen) {
370 needCloseParen = false;
371 O << ')';
372 }
373
374 // Use rip when possible to reduce code size, except when
375 // index or base register are also part of the address. e.g.
376 // foo(%rip)(%rcx,%rax,4) is not legal
377 O << "(%rip)";
378 }
379 }
380
381 if (needCloseParen)
382 O << ')';
383
384 return;
385 }
386 case MachineOperand::MO_ExternalSymbol: {
387 bool isCallOp = Modifier && !strcmp(Modifier, "call");
388 bool needCloseParen = false;
389 std::string Name(TAI->getGlobalPrefix());
390 Name += MO.getSymbolName();
391 if (isCallOp && printStub(TM, Subtarget)) {
392 FnStubs.insert(Name);
393 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
394 return;
395 }
396 if (!isCallOp)
397 O << '$';
398 else if (Name[0] == '$') {
399 // The name begins with a dollar-sign. In order to avoid having it look
400 // like an integer immediate to the assembler, enclose it in parens.
401 O << '(';
402 needCloseParen = true;
403 }
404
405 O << Name;
406
407 if (printGOT(TM, Subtarget)) {
408 std::string GOTName(TAI->getGlobalPrefix());
409 GOTName+="_GLOBAL_OFFSET_TABLE_";
410 if (Name == GOTName)
411 // HACK! Emit extra offset to PC during printing GOT offset to
412 // compensate for the size of popl instruction. The resulting code
413 // should look like:
414 // call .piclabel
415 // piclabel:
416 // popl %some_register
417 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
418 O << " + [.-"
Evan Cheng0729ccf2008-01-05 00:41:47 +0000419 << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420
421 if (isCallOp)
422 O << "@PLT";
423 }
424
425 if (needCloseParen)
426 O << ')';
427
428 if (!isCallOp && Subtarget->isPICStyleRIPRel())
429 O << "(%rip)";
430
431 return;
432 }
433 default:
434 O << "<unknown operand type>"; return;
435 }
436}
437
438void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000439 unsigned char value = MI->getOperand(Op).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440 assert(value <= 7 && "Invalid ssecc argument!");
441 switch (value) {
442 case 0: O << "eq"; break;
443 case 1: O << "lt"; break;
444 case 2: O << "le"; break;
445 case 3: O << "unord"; break;
446 case 4: O << "neq"; break;
447 case 5: O << "nlt"; break;
448 case 6: O << "nle"; break;
449 case 7: O << "ord"; break;
450 }
451}
452
453void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
454 const char *Modifier){
455 assert(isMem(MI, Op) && "Invalid memory reference!");
456 MachineOperand BaseReg = MI->getOperand(Op);
457 MachineOperand IndexReg = MI->getOperand(Op+2);
458 const MachineOperand &DispSpec = MI->getOperand(Op+3);
459
460 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
461 if (DispSpec.isGlobalAddress() ||
462 DispSpec.isConstantPoolIndex() ||
463 DispSpec.isJumpTableIndex()) {
464 printOperand(MI, Op+3, "mem", NotRIPRel);
465 } else {
Chris Lattnera96056a2007-12-30 20:49:49 +0000466 int DispVal = DispSpec.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
468 O << DispVal;
469 }
470
471 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000472 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
474
475 // There are cases where we can end up with ESP/RSP in the indexreg slot.
476 // If this happens, swap the base/index register to support assemblers that
477 // don't work when the index is *SP.
478 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
479 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
480 std::swap(BaseReg, IndexReg);
481 std::swap(BaseRegOperand, IndexRegOperand);
482 }
483
484 O << "(";
485 if (BaseReg.getReg())
486 printOperand(MI, Op+BaseRegOperand, Modifier);
487
488 if (IndexReg.getReg()) {
489 O << ",";
490 printOperand(MI, Op+IndexRegOperand, Modifier);
491 if (ScaleVal != 1)
492 O << "," << ScaleVal;
493 }
494 O << ")";
495 }
496}
497
Evan Cheng6fb06762007-11-09 01:32:10 +0000498void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
499 const MachineBasicBlock *MBB) const {
500 if (!TAI->getSetDirective())
501 return;
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000502
503 // We don't need .set machinery if we have GOT-style relocations
504 if (Subtarget->isPICStyleGOT())
505 return;
506
Evan Cheng6fb06762007-11-09 01:32:10 +0000507 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
508 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
509 printBasicBlockLabel(MBB, false, false);
Evan Cheng5da12252007-11-09 19:11:23 +0000510 if (Subtarget->isPICStyleRIPRel())
511 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
512 << '_' << uid << '\n';
513 else
Evan Cheng0729ccf2008-01-05 00:41:47 +0000514 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Cheng6fb06762007-11-09 01:32:10 +0000515}
516
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng0729ccf2008-01-05 00:41:47 +0000518 std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 O << label << "\n" << label << ":";
520}
521
522
Anton Korobeynikov5772c672007-11-14 09:18:41 +0000523void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
524 const MachineBasicBlock *MBB,
525 unsigned uid) const
526{
527 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
528 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
529
530 O << JTEntryDirective << ' ';
531
532 if (TM.getRelocationModel() == Reloc::PIC_) {
533 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
534 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
535 << '_' << uid << "_set_" << MBB->getNumber();
536 } else if (Subtarget->isPICStyleGOT()) {
537 printBasicBlockLabel(MBB, false, false);
538 O << "@GOTOFF";
539 } else
540 assert(0 && "Don't know how to print MBB label for this PIC mode");
541 } else
542 printBasicBlockLabel(MBB, false, false);
543}
544
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
546 const char Mode) {
547 const MRegisterInfo &RI = *TM.getRegisterInfo();
548 unsigned Reg = MO.getReg();
549 switch (Mode) {
550 default: return true; // Unknown mode.
551 case 'b': // Print QImode register
552 Reg = getX86SubSuperRegister(Reg, MVT::i8);
553 break;
554 case 'h': // Print QImode high register
555 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
556 break;
557 case 'w': // Print HImode register
558 Reg = getX86SubSuperRegister(Reg, MVT::i16);
559 break;
560 case 'k': // Print SImode register
561 Reg = getX86SubSuperRegister(Reg, MVT::i32);
562 break;
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000563 case 'q': // Print DImode register
564 Reg = getX86SubSuperRegister(Reg, MVT::i64);
565 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 }
567
568 O << '%';
569 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
570 O << (char)tolower(*Name);
571 return false;
572}
573
574/// PrintAsmOperand - Print out an operand for an inline asm expression.
575///
576bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
577 unsigned AsmVariant,
578 const char *ExtraCode) {
579 // Does this asm operand have a single letter operand modifier?
580 if (ExtraCode && ExtraCode[0]) {
581 if (ExtraCode[1] != 0) return true; // Unknown modifier.
582
583 switch (ExtraCode[0]) {
584 default: return true; // Unknown modifier.
585 case 'c': // Don't print "$" before a global var name or constant.
586 printOperand(MI, OpNo, "mem");
587 return false;
588 case 'b': // Print QImode register
589 case 'h': // Print QImode high register
590 case 'w': // Print HImode register
591 case 'k': // Print SImode register
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000592 case 'q': // Print DImode register
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000593 if (MI->getOperand(OpNo).isRegister())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000594 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
595 printOperand(MI, OpNo);
596 return false;
597
598 case 'P': // Don't print @PLT, but do print as memory.
599 printOperand(MI, OpNo, "mem");
600 return false;
601 }
602 }
603
604 printOperand(MI, OpNo);
605 return false;
606}
607
608bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
609 unsigned OpNo,
610 unsigned AsmVariant,
611 const char *ExtraCode) {
Chris Lattner1fabfaa2007-10-29 03:09:07 +0000612 if (ExtraCode && ExtraCode[0]) {
613 if (ExtraCode[1] != 0) return true; // Unknown modifier.
614
615 switch (ExtraCode[0]) {
616 default: return true; // Unknown modifier.
617 case 'b': // Print QImode register
618 case 'h': // Print QImode high register
619 case 'w': // Print HImode register
620 case 'k': // Print SImode register
621 case 'q': // Print SImode register
622 // These only apply to registers, ignore on mem.
623 break;
624 }
625 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626 printMemReference(MI, OpNo);
627 return false;
628}
629
630/// printMachineInstruction -- Print out a single X86 LLVM instruction
631/// MI in AT&T syntax to the current output stream.
632///
633void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
634 ++EmittedInsts;
635
636 // See if a truncate instruction can be turned into a nop.
637 switch (MI->getOpcode()) {
638 default: break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 case X86::PsMOVZX64rr32:
640 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
641 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000642 }
643
644 // Call the autogenerated instruction printer routines.
645 printInstruction(MI);
646}
647
648// Include the auto-generated portion of the assembly writer.
649#include "X86GenAsmWriter.inc"
650