Get rid of the annoying blank lines before labels.
[oota-llvm.git] / lib / Target / X86 / X86ATTAsmPrinter.cpp
1 //===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to AT&T assembly -----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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"
25 #include "llvm/CodeGen/MachineJumpTableInfo.h"
26 #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"
31 using namespace llvm;
32
33 STATISTIC(EmittedInsts, "Number of machine instrs printed");
34
35 static std::string getPICLabelString(unsigned FnNum,
36                                      const TargetAsmInfo *TAI,
37                                      const X86Subtarget* Subtarget) {
38   std::string label;
39   if (Subtarget->isTargetDarwin())
40     label =  "\"L" + utostr_32(FnNum) + "$pb\"";
41   else if (Subtarget->isTargetELF())
42     label = ".Lllvm$" + utostr_32(FnNum) + "." + "$piclabel";
43   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.
51 std::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 ///
74 bool 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.
78     MMI = &getAnalysis<MachineModuleInfo>();
79     DW.SetModuleInfo(MMI);
80   }
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.
104     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.
109     break;
110   case Function::DLLExportLinkage:
111     DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
112     //FALLS THROUGH
113   case Function::ExternalLinkage:
114     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.
119     O << "\t.globl\t" << CurrentFnName << "\n";    
120     break;
121   case Function::LinkOnceLinkage:
122   case Function::WeakLinkage:
123     if (Subtarget->isTargetDarwin()) {
124       // FIXME: This should be parameterized somewhere.
125       EmitAlignment(4, F, 0, true, 0x90);
126       O << "\t.globl\t" << CurrentFnName << "\n";
127       O << TAI->getWeakDefDirective() << CurrentFnName << "\n";
128     } else if (Subtarget->isTargetCygMing()) {
129       EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.
130       O << "\t.globl\t" << CurrentFnName << "\n";
131       O << "\t.linkonce discard\n";
132     } else {
133       EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.
134       O << "\t.weak\t" << CurrentFnName << "\n";
135     }
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())
147     O << "\t.type\t" << CurrentFnName << ",@function\n";
148   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   if (Subtarget->isTargetDarwin()) {
169     // If the function is empty, then we need to emit *something*. Otherwise,
170     // the function's label might be associated with something that it wasn't
171     // meant to be associated with. We emit a noop in this situation.
172     MachineFunction::iterator I = MF.begin();
173
174     if (++I == MF.end() && MF.front().empty())
175       O << "\tnop\n";
176   }
177
178   // Print out code for the function.
179   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
180        I != E; ++I) {
181     // Print a label for the basic block.
182     if (!I->pred_empty()) {
183       printBasicBlockLabel(I, true);
184       O << '\n';
185     }
186     for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
187          II != IE; ++II) {
188       // Print the assembly for the instruction.
189       printMachineInstruction(II);
190     }
191   }
192
193   if (TAI->hasDotTypeDotSizeDirective())
194     O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
195
196   if (TAI->doesSupportDebugInformation()) {
197     // Emit post-function debug information.
198     DW.EndFunction();
199   }
200
201   // Print out jump tables referenced by the function.
202   EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
203   
204   // We didn't modify anything.
205   return false;
206 }
207
208 static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
209   return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
210 }
211
212 static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
213   return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
214 }
215
216 void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
217                                     const char *Modifier, bool NotRIPRel) {
218   const MachineOperand &MO = MI->getOperand(OpNo);
219   const MRegisterInfo &RI = *TM.getRegisterInfo();
220   switch (MO.getType()) {
221   case MachineOperand::MO_Register: {
222     assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
223            "Virtual registers should not make it this far!");
224     O << '%';
225     unsigned Reg = MO.getReg();
226     if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
227       MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
228         MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
229                     ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
230       Reg = getX86SubSuperRegister(Reg, VT);
231     }
232     for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
233       O << (char)tolower(*Name);
234     return;
235   }
236
237   case MachineOperand::MO_Immediate:
238     if (!Modifier ||
239         (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
240       O << '$';
241     O << MO.getImm();
242     return;
243   case MachineOperand::MO_MachineBasicBlock:
244     printBasicBlockLabel(MO.getMBB());
245     return;
246   case MachineOperand::MO_JumpTableIndex: {
247     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
248     if (!isMemOp) O << '$';
249     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
250       << MO.getIndex();
251
252     if (TM.getRelocationModel() == Reloc::PIC_) {
253       if (Subtarget->isPICStyleStub())
254         O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
255           << "$pb\"";
256       else if (Subtarget->isPICStyleGOT())
257         O << "@GOTOFF";
258     }
259     
260     if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
261       O << "(%rip)";
262     return;
263   }
264   case MachineOperand::MO_ConstantPoolIndex: {
265     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
266     if (!isMemOp) O << '$';
267     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
268       << MO.getIndex();
269
270     if (TM.getRelocationModel() == Reloc::PIC_) {
271       if (Subtarget->isPICStyleStub())
272         O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
273           << "$pb\"";
274       else if (Subtarget->isPICStyleGOT())
275         O << "@GOTOFF";
276     }
277     
278     int Offset = MO.getOffset();
279     if (Offset > 0)
280       O << "+" << Offset;
281     else if (Offset < 0)
282       O << Offset;
283
284     if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
285       O << "(%rip)";
286     return;
287   }
288   case MachineOperand::MO_GlobalAddress: {
289     bool isCallOp = Modifier && !strcmp(Modifier, "call");
290     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
291     bool needCloseParen = false;
292
293     GlobalValue *GV = MO.getGlobal();
294     GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
295     bool isThreadLocal = GVar && GVar->isThreadLocal();
296
297     std::string Name = Mang->getValueName(GV);
298     X86SharedAsmPrinter::decorateName(Name, GV);
299     
300     if (!isMemOp && !isCallOp)
301       O << '$';
302     else if (Name[0] == '$') {
303       // The name begins with a dollar-sign. In order to avoid having it look
304       // like an integer immediate to the assembler, enclose it in parens.
305       O << '(';
306       needCloseParen = true;
307     }
308
309     if (printStub(TM, Subtarget)) {
310       // Link-once, declaration, or Weakly-linked global variables need
311       // non-lazily-resolved stubs
312       if (GV->isDeclaration() ||
313           GV->hasWeakLinkage() ||
314           GV->hasLinkOnceLinkage()) {
315         // Dynamically-resolved functions need a stub for the function.
316         if (isCallOp && isa<Function>(GV)) {
317           FnStubs.insert(Name);
318           O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
319         } else {
320           GVStubs.insert(Name);
321           O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
322         }
323       } else {
324         if (GV->hasDLLImportLinkage())
325           O << "__imp_";          
326         O << Name;
327       }
328       
329       if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
330         O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
331     } else {
332       if (GV->hasDLLImportLinkage()) {
333         O << "__imp_";          
334       }       
335       O << Name;
336
337       if (isCallOp && isa<Function>(GV)) {
338         if (printGOT(TM, Subtarget)) {
339           // Assemble call via PLT for non-local symbols
340           if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
341               GV->isDeclaration())
342             O << "@PLT";
343         }
344         if (Subtarget->isTargetCygMing() && GV->isDeclaration())
345           // Save function name for later type emission
346           FnStubs.insert(Name);
347       }
348     }
349
350     if (GV->hasExternalWeakLinkage())
351       ExtWeakSymbols.insert(GV);
352     
353     int Offset = MO.getOffset();
354     if (Offset > 0)
355       O << "+" << Offset;
356     else if (Offset < 0)
357       O << Offset;
358
359     if (isThreadLocal) {
360       if (TM.getRelocationModel() == Reloc::PIC_)
361         O << "@TLSGD"; // general dynamic TLS model
362       else
363         if (GV->isDeclaration())
364           O << "@INDNTPOFF"; // initial exec TLS model
365         else
366           O << "@NTPOFF"; // local exec TLS model
367     } else if (isMemOp) {
368       if (printGOT(TM, Subtarget)) {
369         if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
370           O << "@GOT";
371         else
372           O << "@GOTOFF";
373       } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
374                  TM.getRelocationModel() != Reloc::Static) {
375         if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
376           O << "@GOTPCREL";
377
378         if (needCloseParen) {
379           needCloseParen = false;
380           O << ')';
381         }
382
383         // Use rip when possible to reduce code size, except when
384         // index or base register are also part of the address. e.g.
385         // foo(%rip)(%rcx,%rax,4) is not legal
386         O << "(%rip)";
387       }
388     }
389
390     if (needCloseParen)
391       O << ')';
392
393     return;
394   }
395   case MachineOperand::MO_ExternalSymbol: {
396     bool isCallOp = Modifier && !strcmp(Modifier, "call");
397     bool needCloseParen = false;
398     std::string Name(TAI->getGlobalPrefix());
399     Name += MO.getSymbolName();
400     if (isCallOp && printStub(TM, Subtarget)) {
401       FnStubs.insert(Name);
402       O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
403       return;
404     }
405     if (!isCallOp)
406       O << '$';
407     else if (Name[0] == '$') {
408       // The name begins with a dollar-sign. In order to avoid having it look
409       // like an integer immediate to the assembler, enclose it in parens.
410       O << '(';
411       needCloseParen = true;
412     }
413
414     O << Name;
415
416     if (printGOT(TM, Subtarget)) {
417       std::string GOTName(TAI->getGlobalPrefix());
418       GOTName+="_GLOBAL_OFFSET_TABLE_";
419       if (Name == GOTName)
420         // HACK! Emit extra offset to PC during printing GOT offset to
421         // compensate for the size of popl instruction. The resulting code
422         // should look like:
423         //   call .piclabel
424         // piclabel:
425         //   popl %some_register
426         //   addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
427         O << " + [.-"
428           << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
429
430       if (isCallOp)
431         O << "@PLT";
432     }
433
434     if (needCloseParen)
435       O << ')';
436
437     if (!isCallOp && Subtarget->isPICStyleRIPRel())
438       O << "(%rip)";
439
440     return;
441   }
442   default:
443     O << "<unknown operand type>"; return;
444   }
445 }
446
447 void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
448   unsigned char value = MI->getOperand(Op).getImm();
449   assert(value <= 7 && "Invalid ssecc argument!");
450   switch (value) {
451   case 0: O << "eq"; break;
452   case 1: O << "lt"; break;
453   case 2: O << "le"; break;
454   case 3: O << "unord"; break;
455   case 4: O << "neq"; break;
456   case 5: O << "nlt"; break;
457   case 6: O << "nle"; break;
458   case 7: O << "ord"; break;
459   }
460 }
461
462 void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
463                                          const char *Modifier){
464   assert(isMem(MI, Op) && "Invalid memory reference!");
465   MachineOperand BaseReg  = MI->getOperand(Op);
466   MachineOperand IndexReg = MI->getOperand(Op+2);
467   const MachineOperand &DispSpec = MI->getOperand(Op+3);
468
469   bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
470   if (DispSpec.isGlobalAddress() ||
471       DispSpec.isConstantPoolIndex() ||
472       DispSpec.isJumpTableIndex()) {
473     printOperand(MI, Op+3, "mem", NotRIPRel);
474   } else {
475     int DispVal = DispSpec.getImm();
476     if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
477       O << DispVal;
478   }
479
480   if (IndexReg.getReg() || BaseReg.getReg()) {
481     unsigned ScaleVal = MI->getOperand(Op+1).getImm();
482     unsigned BaseRegOperand = 0, IndexRegOperand = 2;
483       
484     // There are cases where we can end up with ESP/RSP in the indexreg slot.
485     // If this happens, swap the base/index register to support assemblers that
486     // don't work when the index is *SP.
487     if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
488       assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
489       std::swap(BaseReg, IndexReg);
490       std::swap(BaseRegOperand, IndexRegOperand);
491     }
492     
493     O << "(";
494     if (BaseReg.getReg())
495       printOperand(MI, Op+BaseRegOperand, Modifier);
496
497     if (IndexReg.getReg()) {
498       O << ",";
499       printOperand(MI, Op+IndexRegOperand, Modifier);
500       if (ScaleVal != 1)
501         O << "," << ScaleVal;
502     }
503     O << ")";
504   }
505 }
506
507 void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid, 
508                                            const MachineBasicBlock *MBB) const {
509   if (!TAI->getSetDirective())
510     return;
511
512   // We don't need .set machinery if we have GOT-style relocations
513   if (Subtarget->isPICStyleGOT())
514     return;
515     
516   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
517     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
518   printBasicBlockLabel(MBB, false, false);
519   if (Subtarget->isPICStyleRIPRel())
520     O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
521       << '_' << uid << '\n';
522   else
523     O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
524 }
525
526 void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
527   std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
528   O << label << "\n" << label << ":";
529 }
530
531
532 void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
533                                               const MachineBasicBlock *MBB,
534                                               unsigned uid) const 
535 {  
536   const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
537     TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
538
539   O << JTEntryDirective << ' ';
540
541   if (TM.getRelocationModel() == Reloc::PIC_) {
542     if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
543       O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
544         << '_' << uid << "_set_" << MBB->getNumber();
545     } else if (Subtarget->isPICStyleGOT()) {
546       printBasicBlockLabel(MBB, false, false);
547       O << "@GOTOFF";
548     } else
549       assert(0 && "Don't know how to print MBB label for this PIC mode");
550   } else
551     printBasicBlockLabel(MBB, false, false);
552 }
553
554 bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
555                                          const char Mode) {
556   const MRegisterInfo &RI = *TM.getRegisterInfo();
557   unsigned Reg = MO.getReg();
558   switch (Mode) {
559   default: return true;  // Unknown mode.
560   case 'b': // Print QImode register
561     Reg = getX86SubSuperRegister(Reg, MVT::i8);
562     break;
563   case 'h': // Print QImode high register
564     Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
565     break;
566   case 'w': // Print HImode register
567     Reg = getX86SubSuperRegister(Reg, MVT::i16);
568     break;
569   case 'k': // Print SImode register
570     Reg = getX86SubSuperRegister(Reg, MVT::i32);
571     break;
572   case 'q': // Print DImode register
573     Reg = getX86SubSuperRegister(Reg, MVT::i64);
574     break;
575   }
576
577   O << '%';
578   for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
579     O << (char)tolower(*Name);
580   return false;
581 }
582
583 /// PrintAsmOperand - Print out an operand for an inline asm expression.
584 ///
585 bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
586                                        unsigned AsmVariant, 
587                                        const char *ExtraCode) {
588   // Does this asm operand have a single letter operand modifier?
589   if (ExtraCode && ExtraCode[0]) {
590     if (ExtraCode[1] != 0) return true; // Unknown modifier.
591     
592     switch (ExtraCode[0]) {
593     default: return true;  // Unknown modifier.
594     case 'c': // Don't print "$" before a global var name or constant.
595       printOperand(MI, OpNo, "mem");
596       return false;
597     case 'b': // Print QImode register
598     case 'h': // Print QImode high register
599     case 'w': // Print HImode register
600     case 'k': // Print SImode register
601     case 'q': // Print DImode register
602       if (MI->getOperand(OpNo).isRegister())
603         return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
604       printOperand(MI, OpNo);
605       return false;
606       
607     case 'P': // Don't print @PLT, but do print as memory.
608       printOperand(MI, OpNo, "mem");
609       return false;
610     }
611   }
612   
613   printOperand(MI, OpNo);
614   return false;
615 }
616
617 bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
618                                              unsigned OpNo,
619                                              unsigned AsmVariant, 
620                                              const char *ExtraCode) {
621   if (ExtraCode && ExtraCode[0]) {
622     if (ExtraCode[1] != 0) return true; // Unknown modifier.
623     
624     switch (ExtraCode[0]) {
625     default: return true;  // Unknown modifier.
626     case 'b': // Print QImode register
627     case 'h': // Print QImode high register
628     case 'w': // Print HImode register
629     case 'k': // Print SImode register
630     case 'q': // Print SImode register
631       // These only apply to registers, ignore on mem.
632       break;
633     }
634   }
635   printMemReference(MI, OpNo);
636   return false;
637 }
638
639 /// printMachineInstruction -- Print out a single X86 LLVM instruction
640 /// MI in AT&T syntax to the current output stream.
641 ///
642 void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
643   ++EmittedInsts;
644
645   // See if a truncate instruction can be turned into a nop.
646   switch (MI->getOpcode()) {
647   default: break;
648   case X86::PsMOVZX64rr32:
649     O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
650     break;
651   }
652
653   // Call the autogenerated instruction printer routines.
654   printInstruction(MI);
655 }
656
657 // Include the auto-generated portion of the assembly writer.
658 #include "X86GenAsmWriter.inc"
659