Remove Darwin'ism
[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 (Subtarget->GVRequiresExtraLoad(GV, TM, false))
367           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 << " + [.-"
419           << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
420
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
438 void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
439   unsigned char value = MI->getOperand(Op).getImm();
440   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
453 void 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 {
466     int DispVal = DispSpec.getImm();
467     if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
468       O << DispVal;
469   }
470
471   if (IndexReg.getReg() || BaseReg.getReg()) {
472     unsigned ScaleVal = MI->getOperand(Op+1).getImm();
473     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
498 void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid, 
499                                            const MachineBasicBlock *MBB) const {
500   if (!TAI->getSetDirective())
501     return;
502
503   // We don't need .set machinery if we have GOT-style relocations
504   if (Subtarget->isPICStyleGOT())
505     return;
506     
507   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
508     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
509   printBasicBlockLabel(MBB, false, false);
510   if (Subtarget->isPICStyleRIPRel())
511     O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
512       << '_' << uid << '\n';
513   else
514     O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
515 }
516
517 void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
518   std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
519   O << label << "\n" << label << ":";
520 }
521
522
523 void 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
545 bool 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;
563   case 'q': // Print DImode register
564     Reg = getX86SubSuperRegister(Reg, MVT::i64);
565     break;
566   }
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 ///
576 bool 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
592     case 'q': // Print DImode register
593       if (MI->getOperand(OpNo).isRegister())
594         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
608 bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
609                                              unsigned OpNo,
610                                              unsigned AsmVariant, 
611                                              const char *ExtraCode) {
612   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   }
626   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 ///
633 void 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;
639   case X86::PsMOVZX64rr32:
640     O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
641     break;
642   }
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