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