Combine MovePCtoStack + POP32r into one instruction MOVPC32r so it can be moved if...
[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   // 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.
172     if (!I->pred_empty()) {
173       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())
185     O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
186
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
199 static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
200   return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
201 }
202
203 static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
204   return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
205 }
206
207 void 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 << '$';
232     O << MO.getImm();
233     return;
234   case MachineOperand::MO_MachineBasicBlock:
235     printBasicBlockLabel(MO.getMBB());
236     return;
237   case MachineOperand::MO_JumpTableIndex: {
238     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
239     if (!isMemOp) O << '$';
240     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
241       << MO.getIndex();
242
243     if (TM.getRelocationModel() == Reloc::PIC_) {
244       if (Subtarget->isPICStyleStub())
245         O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
246           << "$pb\"";
247       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 << '$';
258     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
259       << MO.getIndex();
260
261     if (TM.getRelocationModel() == Reloc::PIC_) {
262       if (Subtarget->isPICStyleStub())
263         O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
264           << "$pb\"";
265       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_)
321         O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
322     } 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";
364       } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
365                  TM.getRelocationModel() != Reloc::Static) {
366         if ((GV->isDeclaration() ||
367              GV->hasWeakLinkage() ||
368              GV->hasLinkOnceLinkage()) &&
369             TM.getRelocationModel() != Reloc::Static)
370           O << "@GOTPCREL";
371
372         if (needCloseParen) {
373           needCloseParen = false;
374           O << ')';
375         }
376
377         // Use rip when possible to reduce code size, except when
378         // index or base register are also part of the address. e.g.
379         // foo(%rip)(%rcx,%rax,4) is not legal
380         O << "(%rip)";
381       }
382     }
383
384     if (needCloseParen)
385       O << ')';
386
387     return;
388   }
389   case MachineOperand::MO_ExternalSymbol: {
390     bool isCallOp = Modifier && !strcmp(Modifier, "call");
391     bool needCloseParen = false;
392     std::string Name(TAI->getGlobalPrefix());
393     Name += MO.getSymbolName();
394     if (isCallOp && printStub(TM, Subtarget)) {
395       FnStubs.insert(Name);
396       O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
397       return;
398     }
399     if (!isCallOp)
400       O << '$';
401     else if (Name[0] == '$') {
402       // The name begins with a dollar-sign. In order to avoid having it look
403       // like an integer immediate to the assembler, enclose it in parens.
404       O << '(';
405       needCloseParen = true;
406     }
407
408     O << Name;
409
410     if (printGOT(TM, Subtarget)) {
411       std::string GOTName(TAI->getGlobalPrefix());
412       GOTName+="_GLOBAL_OFFSET_TABLE_";
413       if (Name == GOTName)
414         // HACK! Emit extra offset to PC during printing GOT offset to
415         // compensate for the size of popl instruction. The resulting code
416         // should look like:
417         //   call .piclabel
418         // piclabel:
419         //   popl %some_register
420         //   addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
421         O << " + [.-"
422           << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
423
424       if (isCallOp)
425         O << "@PLT";
426     }
427
428     if (needCloseParen)
429       O << ')';
430
431     if (!isCallOp && Subtarget->isPICStyleRIPRel())
432       O << "(%rip)";
433
434     return;
435   }
436   default:
437     O << "<unknown operand type>"; return;
438   }
439 }
440
441 void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
442   unsigned char value = MI->getOperand(Op).getImm();
443   assert(value <= 7 && "Invalid ssecc argument!");
444   switch (value) {
445   case 0: O << "eq"; break;
446   case 1: O << "lt"; break;
447   case 2: O << "le"; break;
448   case 3: O << "unord"; break;
449   case 4: O << "neq"; break;
450   case 5: O << "nlt"; break;
451   case 6: O << "nle"; break;
452   case 7: O << "ord"; break;
453   }
454 }
455
456 void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
457                                          const char *Modifier){
458   assert(isMem(MI, Op) && "Invalid memory reference!");
459   MachineOperand BaseReg  = MI->getOperand(Op);
460   MachineOperand IndexReg = MI->getOperand(Op+2);
461   const MachineOperand &DispSpec = MI->getOperand(Op+3);
462
463   bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
464   if (DispSpec.isGlobalAddress() ||
465       DispSpec.isConstantPoolIndex() ||
466       DispSpec.isJumpTableIndex()) {
467     printOperand(MI, Op+3, "mem", NotRIPRel);
468   } else {
469     int DispVal = DispSpec.getImm();
470     if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
471       O << DispVal;
472   }
473
474   if (IndexReg.getReg() || BaseReg.getReg()) {
475     unsigned ScaleVal = MI->getOperand(Op+1).getImm();
476     unsigned BaseRegOperand = 0, IndexRegOperand = 2;
477       
478     // There are cases where we can end up with ESP/RSP in the indexreg slot.
479     // If this happens, swap the base/index register to support assemblers that
480     // don't work when the index is *SP.
481     if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
482       assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
483       std::swap(BaseReg, IndexReg);
484       std::swap(BaseRegOperand, IndexRegOperand);
485     }
486     
487     O << "(";
488     if (BaseReg.getReg())
489       printOperand(MI, Op+BaseRegOperand, Modifier);
490
491     if (IndexReg.getReg()) {
492       O << ",";
493       printOperand(MI, Op+IndexRegOperand, Modifier);
494       if (ScaleVal != 1)
495         O << "," << ScaleVal;
496     }
497     O << ")";
498   }
499 }
500
501 void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid, 
502                                            const MachineBasicBlock *MBB) const {
503   if (!TAI->getSetDirective())
504     return;
505
506   // We don't need .set machinery if we have GOT-style relocations
507   if (Subtarget->isPICStyleGOT())
508     return;
509     
510   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
511     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
512   printBasicBlockLabel(MBB, false, false);
513   if (Subtarget->isPICStyleRIPRel())
514     O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
515       << '_' << uid << '\n';
516   else
517     O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
518 }
519
520 void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
521   std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
522   O << label << "\n" << label << ":";
523 }
524
525
526 void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
527                                               const MachineBasicBlock *MBB,
528                                               unsigned uid) const 
529 {  
530   const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
531     TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
532
533   O << JTEntryDirective << ' ';
534
535   if (TM.getRelocationModel() == Reloc::PIC_) {
536     if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
537       O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
538         << '_' << uid << "_set_" << MBB->getNumber();
539     } else if (Subtarget->isPICStyleGOT()) {
540       printBasicBlockLabel(MBB, false, false);
541       O << "@GOTOFF";
542     } else
543       assert(0 && "Don't know how to print MBB label for this PIC mode");
544   } else
545     printBasicBlockLabel(MBB, false, false);
546 }
547
548 bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
549                                          const char Mode) {
550   const MRegisterInfo &RI = *TM.getRegisterInfo();
551   unsigned Reg = MO.getReg();
552   switch (Mode) {
553   default: return true;  // Unknown mode.
554   case 'b': // Print QImode register
555     Reg = getX86SubSuperRegister(Reg, MVT::i8);
556     break;
557   case 'h': // Print QImode high register
558     Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
559     break;
560   case 'w': // Print HImode register
561     Reg = getX86SubSuperRegister(Reg, MVT::i16);
562     break;
563   case 'k': // Print SImode register
564     Reg = getX86SubSuperRegister(Reg, MVT::i32);
565     break;
566   case 'q': // Print DImode register
567     Reg = getX86SubSuperRegister(Reg, MVT::i64);
568     break;
569   }
570
571   O << '%';
572   for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
573     O << (char)tolower(*Name);
574   return false;
575 }
576
577 /// PrintAsmOperand - Print out an operand for an inline asm expression.
578 ///
579 bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
580                                        unsigned AsmVariant, 
581                                        const char *ExtraCode) {
582   // Does this asm operand have a single letter operand modifier?
583   if (ExtraCode && ExtraCode[0]) {
584     if (ExtraCode[1] != 0) return true; // Unknown modifier.
585     
586     switch (ExtraCode[0]) {
587     default: return true;  // Unknown modifier.
588     case 'c': // Don't print "$" before a global var name or constant.
589       printOperand(MI, OpNo, "mem");
590       return false;
591     case 'b': // Print QImode register
592     case 'h': // Print QImode high register
593     case 'w': // Print HImode register
594     case 'k': // Print SImode register
595     case 'q': // Print DImode register
596       if (MI->getOperand(OpNo).isRegister())
597         return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
598       printOperand(MI, OpNo);
599       return false;
600       
601     case 'P': // Don't print @PLT, but do print as memory.
602       printOperand(MI, OpNo, "mem");
603       return false;
604     }
605   }
606   
607   printOperand(MI, OpNo);
608   return false;
609 }
610
611 bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
612                                              unsigned OpNo,
613                                              unsigned AsmVariant, 
614                                              const char *ExtraCode) {
615   if (ExtraCode && ExtraCode[0]) {
616     if (ExtraCode[1] != 0) return true; // Unknown modifier.
617     
618     switch (ExtraCode[0]) {
619     default: return true;  // Unknown modifier.
620     case 'b': // Print QImode register
621     case 'h': // Print QImode high register
622     case 'w': // Print HImode register
623     case 'k': // Print SImode register
624     case 'q': // Print SImode register
625       // These only apply to registers, ignore on mem.
626       break;
627     }
628   }
629   printMemReference(MI, OpNo);
630   return false;
631 }
632
633 /// printMachineInstruction -- Print out a single X86 LLVM instruction
634 /// MI in AT&T syntax to the current output stream.
635 ///
636 void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
637   ++EmittedInsts;
638
639   // See if a truncate instruction can be turned into a nop.
640   switch (MI->getOpcode()) {
641   default: break;
642   case X86::PsMOVZX64rr32:
643     O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
644     break;
645   }
646
647   // Call the autogenerated instruction printer routines.
648   printInstruction(MI);
649 }
650
651 // Include the auto-generated portion of the assembly writer.
652 #include "X86GenAsmWriter.inc"
653