Record variable debug info at ISel time directly.
[oota-llvm.git] / lib / Target / X86 / AsmPrinter / 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/CallingConv.h"
24 #include "llvm/DerivedTypes.h"
25 #include "llvm/Module.h"
26 #include "llvm/Type.h"
27 #include "llvm/ADT/Statistic.h"
28 #include "llvm/ADT/StringExtras.h"
29 #include "llvm/Assembly/Writer.h"
30 #include "llvm/MC/MCContext.h"
31 #include "llvm/MC/MCInst.h"
32 #include "llvm/MC/MCSectionMachO.h"
33 #include "llvm/MC/MCStreamer.h"
34 #include "llvm/CodeGen/DwarfWriter.h"
35 #include "llvm/CodeGen/MachineJumpTableInfo.h"
36 #include "llvm/Support/CommandLine.h"
37 #include "llvm/Support/ErrorHandling.h"
38 #include "llvm/Support/FormattedStream.h"
39 #include "llvm/Support/Mangler.h"
40 #include "llvm/Target/TargetAsmInfo.h"
41 #include "llvm/Target/TargetLoweringObjectFile.h"
42 #include "llvm/Target/TargetOptions.h"
43 using namespace llvm;
44
45 STATISTIC(EmittedInsts, "Number of machine instrs printed");
46
47 static cl::opt<bool> NewAsmPrinter("experimental-asm-printer",
48                                    cl::Hidden);
49
50 //===----------------------------------------------------------------------===//
51 // Primitive Helper Functions.
52 //===----------------------------------------------------------------------===//
53
54 void X86ATTAsmPrinter::PrintPICBaseSymbol() const {
55   // FIXME: the actual label generated doesn't matter here!  Just mangle in
56   // something unique (the function number) with Private prefix.
57   if (Subtarget->isTargetDarwin())
58     O << "\"L" << getFunctionNumber() << "$pb\"";
59   else {
60     assert(Subtarget->isTargetELF() && "Don't know how to print PIC label!");
61     O << ".Lllvm$" << getFunctionNumber() << ".$piclabel";
62   }
63 }
64
65 MCSymbol *X86ATTAsmPrinter::GetPICBaseSymbol() {
66   // FIXME: the actual label generated doesn't matter here!  Just mangle in
67   // something unique (the function number) with Private prefix.
68   std::string Name;
69   
70   if (Subtarget->isTargetDarwin()) {
71     Name = "L" + utostr(getFunctionNumber())+"$pb";
72   } else {
73     assert(Subtarget->isTargetELF() && "Don't know how to print PIC label!");
74     Name = ".Lllvm$" + utostr(getFunctionNumber())+".$piclabel";
75   }     
76   return OutContext.GetOrCreateSymbol(Name);
77 }
78
79 static X86MachineFunctionInfo calculateFunctionInfo(const Function *F,
80                                                     const TargetData *TD) {
81   X86MachineFunctionInfo Info;
82   uint64_t Size = 0;
83
84   switch (F->getCallingConv()) {
85   case CallingConv::X86_StdCall:
86     Info.setDecorationStyle(StdCall);
87     break;
88   case CallingConv::X86_FastCall:
89     Info.setDecorationStyle(FastCall);
90     break;
91   default:
92     return Info;
93   }
94
95   unsigned argNum = 1;
96   for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
97        AI != AE; ++AI, ++argNum) {
98     const Type* Ty = AI->getType();
99
100     // 'Dereference' type in case of byval parameter attribute
101     if (F->paramHasAttr(argNum, Attribute::ByVal))
102       Ty = cast<PointerType>(Ty)->getElementType();
103
104     // Size should be aligned to DWORD boundary
105     Size += ((TD->getTypeAllocSize(Ty) + 3)/4)*4;
106   }
107
108   // We're not supporting tooooo huge arguments :)
109   Info.setBytesToPopOnReturn((unsigned int)Size);
110   return Info;
111 }
112
113 /// DecorateCygMingName - Query FunctionInfoMap and use this information for
114 /// various name decorations for Cygwin and MingW.
115 void X86ATTAsmPrinter::DecorateCygMingName(std::string &Name,
116                                            const GlobalValue *GV) {
117   assert(Subtarget->isTargetCygMing() && "This is only for cygwin and mingw");
118   
119   const Function *F = dyn_cast<Function>(GV);
120   if (!F) return;
121
122   // Save function name for later type emission.
123   if (F->isDeclaration())
124     CygMingStubs.insert(Name);
125   
126   // We don't want to decorate non-stdcall or non-fastcall functions right now
127   unsigned CC = F->getCallingConv();
128   if (CC != CallingConv::X86_StdCall && CC != CallingConv::X86_FastCall)
129     return;
130
131
132   const X86MachineFunctionInfo *Info;
133   
134   FMFInfoMap::const_iterator info_item = FunctionInfoMap.find(F);
135   if (info_item == FunctionInfoMap.end()) {
136     // Calculate apropriate function info and populate map
137     FunctionInfoMap[F] = calculateFunctionInfo(F, TM.getTargetData());
138     Info = &FunctionInfoMap[F];
139   } else {
140     Info = &info_item->second;
141   }
142
143   const FunctionType *FT = F->getFunctionType();
144   switch (Info->getDecorationStyle()) {
145   case None:
146     break;
147   case StdCall:
148     // "Pure" variadic functions do not receive @0 suffix.
149     if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
150         (FT->getNumParams() == 1 && F->hasStructRetAttr()))
151       Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
152     break;
153   case FastCall:
154     // "Pure" variadic functions do not receive @0 suffix.
155     if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
156         (FT->getNumParams() == 1 && F->hasStructRetAttr()))
157       Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
158
159     if (Name[0] == '_') {
160       Name[0] = '@';
161     } else {
162       Name = '@' + Name;
163     }
164     break;
165   default:
166     llvm_unreachable("Unsupported DecorationStyle");
167   }
168 }
169
170 void X86ATTAsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
171   unsigned FnAlign = MF.getAlignment();
172   const Function *F = MF.getFunction();
173
174   if (Subtarget->isTargetCygMing())
175     DecorateCygMingName(CurrentFnName, F);
176
177   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
178   EmitAlignment(FnAlign, F);
179
180   switch (F->getLinkage()) {
181   default: llvm_unreachable("Unknown linkage type!");
182   case Function::InternalLinkage:  // Symbols default to internal.
183   case Function::PrivateLinkage:
184     break;
185   case Function::DLLExportLinkage:
186   case Function::ExternalLinkage:
187     O << "\t.globl\t" << CurrentFnName << '\n';
188     break;
189   case Function::LinkerPrivateLinkage:
190   case Function::LinkOnceAnyLinkage:
191   case Function::LinkOnceODRLinkage:
192   case Function::WeakAnyLinkage:
193   case Function::WeakODRLinkage:
194     if (Subtarget->isTargetDarwin()) {
195       O << "\t.globl\t" << CurrentFnName << '\n';
196       O << TAI->getWeakDefDirective() << CurrentFnName << '\n';
197     } else if (Subtarget->isTargetCygMing()) {
198       O << "\t.globl\t" << CurrentFnName << "\n"
199            "\t.linkonce discard\n";
200     } else {
201       O << "\t.weak\t" << CurrentFnName << '\n';
202     }
203     break;
204   }
205
206   printVisibility(CurrentFnName, F->getVisibility());
207
208   if (Subtarget->isTargetELF())
209     O << "\t.type\t" << CurrentFnName << ",@function\n";
210   else if (Subtarget->isTargetCygMing()) {
211     O << "\t.def\t " << CurrentFnName
212       << ";\t.scl\t" <<
213       (F->hasInternalLinkage() ? COFF::C_STAT : COFF::C_EXT)
214       << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
215       << ";\t.endef\n";
216   }
217
218   O << CurrentFnName << ':';
219   if (VerboseAsm) {
220     O.PadToColumn(TAI->getCommentColumn());
221     O << TAI->getCommentString() << ' ';
222     WriteAsOperand(O, F, /*PrintType=*/false, F->getParent());
223   }
224   O << '\n';
225
226   // Add some workaround for linkonce linkage on Cygwin\MinGW
227   if (Subtarget->isTargetCygMing() &&
228       (F->hasLinkOnceLinkage() || F->hasWeakLinkage()))
229     O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
230 }
231
232 /// runOnMachineFunction - This uses the printMachineInstruction()
233 /// method to print assembly for each instruction.
234 ///
235 bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
236   const Function *F = MF.getFunction();
237   this->MF = &MF;
238   unsigned CC = F->getCallingConv();
239
240   SetupMachineFunction(MF);
241   O << "\n\n";
242
243   // Populate function information map.  Actually, We don't want to populate
244   // non-stdcall or non-fastcall functions' information right now.
245   if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
246     FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
247
248   // Print out constants referenced by the function
249   EmitConstantPool(MF.getConstantPool());
250
251   if (F->hasDLLExportLinkage())
252     DLLExportedFns.insert(Mang->getMangledName(F));
253
254   // Print the 'header' of function
255   emitFunctionHeader(MF);
256
257   // Emit pre-function debug and/or EH information.
258   if (TAI->doesSupportDebugInformation() || TAI->doesSupportExceptionHandling())
259     DW->BeginFunction(&MF);
260
261   // Print out code for the function.
262   bool hasAnyRealCode = false;
263   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
264        I != E; ++I) {
265     // Print a label for the basic block.
266     if (!VerboseAsm && (I->pred_empty() || I->isOnlyReachableByFallthrough())) {
267       // This is an entry block or a block that's only reachable via a
268       // fallthrough edge. In non-VerboseAsm mode, don't print the label.
269     } else {
270       printBasicBlockLabel(I, true, true, VerboseAsm);
271       O << '\n';
272     }
273     for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
274          II != IE; ++II) {
275       // Print the assembly for the instruction.
276       if (!II->isLabel())
277         hasAnyRealCode = true;
278       printMachineInstruction(II);
279     }
280   }
281
282   if (Subtarget->isTargetDarwin() && !hasAnyRealCode) {
283     // If the function is empty, then we need to emit *something*. Otherwise,
284     // the function's label might be associated with something that it wasn't
285     // meant to be associated with. We emit a noop in this situation.
286     // We are assuming inline asms are code.
287     O << "\tnop\n";
288   }
289
290   if (TAI->hasDotTypeDotSizeDirective())
291     O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << '\n';
292
293   // Emit post-function debug information.
294   if (TAI->doesSupportDebugInformation() || TAI->doesSupportExceptionHandling())
295     DW->EndFunction(&MF);
296
297   // Print out jump tables referenced by the function.
298   EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
299
300   // We didn't modify anything.
301   return false;
302 }
303
304 /// printSymbolOperand - Print a raw symbol reference operand.  This handles
305 /// jump tables, constant pools, global address and external symbols, all of
306 /// which print to a label with various suffixes for relocation types etc.
307 void X86ATTAsmPrinter::printSymbolOperand(const MachineOperand &MO) {
308   switch (MO.getType()) {
309   default: llvm_unreachable("unknown symbol type!");
310   case MachineOperand::MO_JumpTableIndex:
311     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << '_'
312       << MO.getIndex();
313     break;
314   case MachineOperand::MO_ConstantPoolIndex:
315     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
316       << MO.getIndex();
317     printOffset(MO.getOffset());
318     break;
319   case MachineOperand::MO_GlobalAddress: {
320     const GlobalValue *GV = MO.getGlobal();
321     
322     const char *Suffix = "";
323     if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
324       Suffix = "$stub";
325     else if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
326              MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE ||
327              MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY ||
328              MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
329       Suffix = "$non_lazy_ptr";
330     
331     std::string Name = Mang->getMangledName(GV, Suffix, Suffix[0] != '\0');
332     if (Subtarget->isTargetCygMing())
333       DecorateCygMingName(Name, GV);
334     
335     // Handle dllimport linkage.
336     if (MO.getTargetFlags() == X86II::MO_DLLIMPORT)
337       Name = "__imp_" + Name;
338     
339     if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
340         MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE)
341       GVStubs[Name] = Mang->getMangledName(GV);
342     else if (MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY ||
343              MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
344       HiddenGVStubs[Name] = Mang->getMangledName(GV);
345     else if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
346       FnStubs[Name] = Mang->getMangledName(GV);
347     
348     // If the name begins with a dollar-sign, enclose it in parens.  We do this
349     // to avoid having it look like an integer immediate to the assembler.
350     if (Name[0] == '$') 
351       O << '(' << Name << ')';
352     else
353       O << Name;
354     
355     printOffset(MO.getOffset());
356     break;
357   }
358   case MachineOperand::MO_ExternalSymbol: {
359     std::string Name = Mang->makeNameProper(MO.getSymbolName());
360     if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
361       FnStubs[Name+"$stub"] = Name;
362       Name += "$stub";
363     }
364     
365     // If the name begins with a dollar-sign, enclose it in parens.  We do this
366     // to avoid having it look like an integer immediate to the assembler.
367     if (Name[0] == '$') 
368       O << '(' << Name << ')';
369     else
370       O << Name;
371     break;
372   }
373   }
374   
375   switch (MO.getTargetFlags()) {
376   default:
377     llvm_unreachable("Unknown target flag on GV operand");
378   case X86II::MO_NO_FLAG:    // No flag.
379     break;
380   case X86II::MO_DARWIN_NONLAZY:
381   case X86II::MO_DARWIN_HIDDEN_NONLAZY:
382   case X86II::MO_DLLIMPORT:
383   case X86II::MO_DARWIN_STUB:
384     // These affect the name of the symbol, not any suffix.
385     break;
386   case X86II::MO_GOT_ABSOLUTE_ADDRESS:
387     O << " + [.-";
388     PrintPICBaseSymbol();
389     O << ']';
390     break;      
391   case X86II::MO_PIC_BASE_OFFSET:
392   case X86II::MO_DARWIN_NONLAZY_PIC_BASE:
393   case X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE:
394     O << '-';
395     PrintPICBaseSymbol();
396     break;
397   case X86II::MO_TLSGD:     O << "@TLSGD";     break;
398   case X86II::MO_GOTTPOFF:  O << "@GOTTPOFF";  break;
399   case X86II::MO_INDNTPOFF: O << "@INDNTPOFF"; break;
400   case X86II::MO_TPOFF:     O << "@TPOFF";     break;
401   case X86II::MO_NTPOFF:    O << "@NTPOFF";    break;
402   case X86II::MO_GOTPCREL:  O << "@GOTPCREL";  break;
403   case X86II::MO_GOT:       O << "@GOT";       break;
404   case X86II::MO_GOTOFF:    O << "@GOTOFF";    break;
405   case X86II::MO_PLT:       O << "@PLT";       break;
406   }
407 }
408
409 /// print_pcrel_imm - This is used to print an immediate value that ends up
410 /// being encoded as a pc-relative value.  These print slightly differently, for
411 /// example, a $ is not emitted.
412 void X86ATTAsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo) {
413   const MachineOperand &MO = MI->getOperand(OpNo);
414   switch (MO.getType()) {
415   default: llvm_unreachable("Unknown pcrel immediate operand");
416   case MachineOperand::MO_Immediate:
417     O << MO.getImm();
418     return;
419   case MachineOperand::MO_MachineBasicBlock:
420     printBasicBlockLabel(MO.getMBB(), false, false, false);
421     return;
422   case MachineOperand::MO_GlobalAddress:
423   case MachineOperand::MO_ExternalSymbol:
424     printSymbolOperand(MO);
425     return;
426   }
427 }
428
429
430
431 void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
432                                     const char *Modifier) {
433   const MachineOperand &MO = MI->getOperand(OpNo);
434   switch (MO.getType()) {
435   default: llvm_unreachable("unknown operand type!");
436   case MachineOperand::MO_Register: {
437     assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
438            "Virtual registers should not make it this far!");
439     O << '%';
440     unsigned Reg = MO.getReg();
441     if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
442       EVT VT = (strcmp(Modifier+6,"64") == 0) ?
443         MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
444                     ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
445       Reg = getX86SubSuperRegister(Reg, VT);
446     }
447     O << TRI->getAsmName(Reg);
448     return;
449   }
450
451   case MachineOperand::MO_Immediate:
452     O << '$' << MO.getImm();
453     return;
454
455   case MachineOperand::MO_JumpTableIndex:
456   case MachineOperand::MO_ConstantPoolIndex:
457   case MachineOperand::MO_GlobalAddress: 
458   case MachineOperand::MO_ExternalSymbol: {
459     O << '$';
460     printSymbolOperand(MO);
461     break;
462   }
463   }
464 }
465
466 void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
467   unsigned char value = MI->getOperand(Op).getImm();
468   assert(value <= 7 && "Invalid ssecc argument!");
469   switch (value) {
470   case 0: O << "eq"; break;
471   case 1: O << "lt"; break;
472   case 2: O << "le"; break;
473   case 3: O << "unord"; break;
474   case 4: O << "neq"; break;
475   case 5: O << "nlt"; break;
476   case 6: O << "nle"; break;
477   case 7: O << "ord"; break;
478   }
479 }
480
481 void X86ATTAsmPrinter::printLeaMemReference(const MachineInstr *MI, unsigned Op,
482                                             const char *Modifier) {
483   const MachineOperand &BaseReg  = MI->getOperand(Op);
484   const MachineOperand &IndexReg = MI->getOperand(Op+2);
485   const MachineOperand &DispSpec = MI->getOperand(Op+3);
486
487   // If we really don't want to print out (rip), don't.
488   bool HasBaseReg = BaseReg.getReg() != 0;
489   if (HasBaseReg && Modifier && !strcmp(Modifier, "no-rip") &&
490       BaseReg.getReg() == X86::RIP)
491     HasBaseReg = false;
492   
493   // HasParenPart - True if we will print out the () part of the mem ref.
494   bool HasParenPart = IndexReg.getReg() || HasBaseReg;
495   
496   if (DispSpec.isImm()) {
497     int DispVal = DispSpec.getImm();
498     if (DispVal || !HasParenPart)
499       O << DispVal;
500   } else {
501     assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
502            DispSpec.isJTI() || DispSpec.isSymbol());
503     printSymbolOperand(MI->getOperand(Op+3));
504   }
505
506   if (HasParenPart) {
507     assert(IndexReg.getReg() != X86::ESP &&
508            "X86 doesn't allow scaling by ESP");
509
510     O << '(';
511     if (HasBaseReg)
512       printOperand(MI, Op, Modifier);
513
514     if (IndexReg.getReg()) {
515       O << ',';
516       printOperand(MI, Op+2, Modifier);
517       unsigned ScaleVal = MI->getOperand(Op+1).getImm();
518       if (ScaleVal != 1)
519         O << ',' << ScaleVal;
520     }
521     O << ')';
522   }
523 }
524
525 void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
526                                          const char *Modifier) {
527   assert(isMem(MI, Op) && "Invalid memory reference!");
528   const MachineOperand &Segment = MI->getOperand(Op+4);
529   if (Segment.getReg()) {
530     printOperand(MI, Op+4, Modifier);
531     O << ':';
532   }
533   printLeaMemReference(MI, Op, Modifier);
534 }
535
536 void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
537                                            const MachineBasicBlock *MBB) const {
538   if (!TAI->getSetDirective())
539     return;
540
541   // We don't need .set machinery if we have GOT-style relocations
542   if (Subtarget->isPICStyleGOT())
543     return;
544
545   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
546     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
547   printBasicBlockLabel(MBB, false, false, false);
548   if (Subtarget->isPICStyleRIPRel())
549     O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
550       << '_' << uid << '\n';
551   else {
552     O << '-';
553     PrintPICBaseSymbol();
554     O << '\n';
555   }
556 }
557
558
559 void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
560   PrintPICBaseSymbol();
561   O << '\n';
562   PrintPICBaseSymbol();
563   O << ':';
564 }
565
566
567 void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
568                                               const MachineBasicBlock *MBB,
569                                               unsigned uid) const {
570   const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
571     TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
572
573   O << JTEntryDirective << ' ';
574
575   if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStubPIC()) {
576     O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
577       << '_' << uid << "_set_" << MBB->getNumber();
578   } else if (Subtarget->isPICStyleGOT()) {
579     printBasicBlockLabel(MBB, false, false, false);
580     O << "@GOTOFF";
581   } else
582     printBasicBlockLabel(MBB, false, false, false);
583 }
584
585 bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO, char Mode) {
586   unsigned Reg = MO.getReg();
587   switch (Mode) {
588   default: return true;  // Unknown mode.
589   case 'b': // Print QImode register
590     Reg = getX86SubSuperRegister(Reg, MVT::i8);
591     break;
592   case 'h': // Print QImode high register
593     Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
594     break;
595   case 'w': // Print HImode register
596     Reg = getX86SubSuperRegister(Reg, MVT::i16);
597     break;
598   case 'k': // Print SImode register
599     Reg = getX86SubSuperRegister(Reg, MVT::i32);
600     break;
601   case 'q': // Print DImode register
602     Reg = getX86SubSuperRegister(Reg, MVT::i64);
603     break;
604   }
605
606   O << '%'<< TRI->getAsmName(Reg);
607   return false;
608 }
609
610 /// PrintAsmOperand - Print out an operand for an inline asm expression.
611 ///
612 bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
613                                        unsigned AsmVariant,
614                                        const char *ExtraCode) {
615   // Does this asm operand have a single letter operand modifier?
616   if (ExtraCode && ExtraCode[0]) {
617     if (ExtraCode[1] != 0) return true; // Unknown modifier.
618
619     const MachineOperand &MO = MI->getOperand(OpNo);
620     
621     switch (ExtraCode[0]) {
622     default: return true;  // Unknown modifier.
623     case 'a': // This is an address.  Currently only 'i' and 'r' are expected.
624       if (MO.isImm()) {
625         O << MO.getImm();
626         return false;
627       } 
628       if (MO.isReg()) {
629         O << '(';
630         printOperand(MI, OpNo);
631         O << ')';
632         return false;
633       }
634       return true;
635
636     case 'c': // Don't print "$" before a global var name or constant.
637       if (MO.isImm())
638         O << MO.getImm();
639       else if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol())
640         printSymbolOperand(MO);
641       else
642         printOperand(MI, OpNo);
643       return false;
644
645     case 'A': // Print '*' before a register (it must be a register)
646       if (MO.isReg()) {
647         O << '*';
648         printOperand(MI, OpNo);
649         return false;
650       }
651       return true;
652
653     case 'b': // Print QImode register
654     case 'h': // Print QImode high register
655     case 'w': // Print HImode register
656     case 'k': // Print SImode register
657     case 'q': // Print DImode register
658       if (MO.isReg())
659         return printAsmMRegister(MO, ExtraCode[0]);
660       printOperand(MI, OpNo);
661       return false;
662
663     case 'P': // This is the operand of a call, treat specially.
664       print_pcrel_imm(MI, OpNo);
665       return false;
666
667     case 'n':  // Negate the immediate or print a '-' before the operand.
668       // Note: this is a temporary solution. It should be handled target
669       // independently as part of the 'MC' work.
670       if (MO.isImm()) {
671         O << -MO.getImm();
672         return false;
673       }
674       O << '-';
675     }
676   }
677
678   printOperand(MI, OpNo);
679   return false;
680 }
681
682 bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
683                                              unsigned OpNo,
684                                              unsigned AsmVariant,
685                                              const char *ExtraCode) {
686   if (ExtraCode && ExtraCode[0]) {
687     if (ExtraCode[1] != 0) return true; // Unknown modifier.
688
689     switch (ExtraCode[0]) {
690     default: return true;  // Unknown modifier.
691     case 'b': // Print QImode register
692     case 'h': // Print QImode high register
693     case 'w': // Print HImode register
694     case 'k': // Print SImode register
695     case 'q': // Print SImode register
696       // These only apply to registers, ignore on mem.
697       break;
698     case 'P': // Don't print @PLT, but do print as memory.
699       printMemReference(MI, OpNo, "no-rip");
700       return false;
701     }
702   }
703   printMemReference(MI, OpNo);
704   return false;
705 }
706
707 static void lower_lea64_32mem(MCInst *MI, unsigned OpNo) {
708   // Convert registers in the addr mode according to subreg64.
709   for (unsigned i = 0; i != 4; ++i) {
710     if (!MI->getOperand(i).isReg()) continue;
711     
712     unsigned Reg = MI->getOperand(i).getReg();
713     if (Reg == 0) continue;
714     
715     MI->getOperand(i).setReg(getX86SubSuperRegister(Reg, MVT::i64));
716   }
717 }
718
719 /// LowerGlobalAddressOperand - Lower an MO_GlobalAddress operand to an
720 /// MCOperand.
721 MCOperand X86ATTAsmPrinter::LowerGlobalAddressOperand(const MachineOperand &MO){
722   const GlobalValue *GV = MO.getGlobal();
723   
724   const char *Suffix = "";
725   if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
726     Suffix = "$stub";
727   else if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
728            MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE ||
729            MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY ||
730            MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
731     Suffix = "$non_lazy_ptr";
732   
733   std::string Name = Mang->getMangledName(GV, Suffix, Suffix[0] != '\0');
734   if (Subtarget->isTargetCygMing())
735     DecorateCygMingName(Name, GV);
736   
737   // Handle dllimport linkage.
738   if (MO.getTargetFlags() == X86II::MO_DLLIMPORT)
739     Name = "__imp_" + Name;
740   
741   if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
742       MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE)
743     GVStubs[Name] = Mang->getMangledName(GV);
744   else if (MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY ||
745            MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
746     HiddenGVStubs[Name] = Mang->getMangledName(GV);
747   else if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
748     FnStubs[Name] = Mang->getMangledName(GV);
749   
750   
751   // Handle target operand flags.
752   // FIXME: This should be common between external symbols, constant pool etc.
753   MCSymbol *NegatedSymbol = 0;
754   
755   switch (MO.getTargetFlags()) {
756   default:
757     llvm_unreachable("Unknown target flag on GV operand");
758   case X86II::MO_NO_FLAG:    // No flag.
759     break;
760   case X86II::MO_DARWIN_NONLAZY:
761   case X86II::MO_DARWIN_HIDDEN_NONLAZY:
762   case X86II::MO_DLLIMPORT:
763   case X86II::MO_DARWIN_STUB:
764     // These affect the name of the symbol, not any suffix.
765     break;
766   case X86II::MO_GOT_ABSOLUTE_ADDRESS:
767     assert(0 && "Reloc mode unimp!");
768     //O << " + [.-";
769     //PrintPICBaseSymbol();
770     //O << ']';
771     break;      
772   case X86II::MO_PIC_BASE_OFFSET:
773   case X86II::MO_DARWIN_NONLAZY_PIC_BASE:
774   case X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE:
775     // Subtract the pic base.
776     NegatedSymbol = GetPICBaseSymbol();
777     break;
778       
779   // FIXME: These probably should be a modifier on the symbol or something??
780   case X86II::MO_TLSGD:     Name += "@TLSGD";     break;
781   case X86II::MO_GOTTPOFF:  Name += "@GOTTPOFF";  break;
782   case X86II::MO_INDNTPOFF: Name += "@INDNTPOFF"; break;
783   case X86II::MO_TPOFF:     Name += "@TPOFF";     break;
784   case X86II::MO_NTPOFF:    Name += "@NTPOFF";    break;
785   case X86II::MO_GOTPCREL:  Name += "@GOTPCREL";  break;
786   case X86II::MO_GOT:       Name += "@GOT";       break;
787   case X86II::MO_GOTOFF:    Name += "@GOTOFF";    break;
788   case X86II::MO_PLT:       Name += "@PLT";       break;
789   }
790   
791   // Create a symbol for the name.
792   MCSymbol *Sym = OutContext.GetOrCreateSymbol(Name);
793   return MCOperand::CreateMCValue(MCValue::get(Sym, NegatedSymbol,
794                                                MO.getOffset()));
795 }
796
797 MCOperand X86ATTAsmPrinter::
798 LowerExternalSymbolOperand(const MachineOperand &MO){
799   std::string Name = Mang->makeNameProper(MO.getSymbolName());
800   if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
801     FnStubs[Name+"$stub"] = Name;
802     Name += "$stub";
803   }
804
805   MCSymbol *Sym = OutContext.GetOrCreateSymbol(Name);
806   return MCOperand::CreateMCValue(MCValue::get(Sym, 0, MO.getOffset()));
807 }
808
809
810 /// printMachineInstruction -- Print out a single X86 LLVM instruction MI in
811 /// AT&T syntax to the current output stream.
812 ///
813 void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
814   ++EmittedInsts;
815
816   if (!NewAsmPrinter) {
817     // Call the autogenerated instruction printer routines.
818     printInstruction(MI);
819     return;
820   }
821   
822   MCInst TmpInst;
823
824   switch (MI->getOpcode()) {
825   case TargetInstrInfo::DBG_LABEL:
826   case TargetInstrInfo::EH_LABEL:
827   case TargetInstrInfo::GC_LABEL:
828     printLabel(MI);
829     return;
830   case TargetInstrInfo::INLINEASM:
831     O << '\t';
832     printInlineAsm(MI);
833     return;
834   case TargetInstrInfo::IMPLICIT_DEF:
835     printImplicitDef(MI);
836     return;
837   case X86::MOVPC32r: {
838     // This is a pseudo op for a two instruction sequence with a label, which
839     // looks like:
840     //     call "L1$pb"
841     // "L1$pb":
842     //     popl %esi
843     
844     // Emit the call.
845     MCSymbol *PICBase = GetPICBaseSymbol();
846     TmpInst.setOpcode(X86::CALLpcrel32);
847     TmpInst.addOperand(MCOperand::CreateMCValue(MCValue::get(PICBase)));
848     printInstruction(&TmpInst);
849
850     // Emit the label.
851     OutStreamer.EmitLabel(PICBase);
852     
853     // popl $reg
854     TmpInst.setOpcode(X86::POP32r);
855     TmpInst.getOperand(0) = MCOperand::CreateReg(MI->getOperand(0).getReg());
856     printInstruction(&TmpInst);
857     O << "OLD: ";
858     // Call the autogenerated instruction printer routines.
859     printInstruction(MI);
860     return;
861   }
862   }
863   
864   O << "NEW: ";
865   
866   TmpInst.setOpcode(MI->getOpcode());
867   
868   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
869     const MachineOperand &MO = MI->getOperand(i);
870     
871     MCOperand MCOp;
872     switch (MO.getType()) {
873     default:
874       O.flush();
875       errs() << "Cannot lower operand #" << i << " of :" << *MI;
876       llvm_unreachable("Unimp");
877     case MachineOperand::MO_Register:
878       MCOp = MCOperand::CreateReg(MO.getReg());
879       break;
880     case MachineOperand::MO_Immediate:
881       MCOp = MCOperand::CreateImm(MO.getImm());
882       break;
883     case MachineOperand::MO_MachineBasicBlock:
884       MCOp = MCOperand::CreateMBBLabel(getFunctionNumber(), 
885                                        MO.getMBB()->getNumber());
886       break;
887     case MachineOperand::MO_GlobalAddress:
888       MCOp = LowerGlobalAddressOperand(MO);
889       break;
890     case MachineOperand::MO_ExternalSymbol:
891       MCOp = LowerExternalSymbolOperand(MO);
892       break;
893     }
894     
895     TmpInst.addOperand(MCOp);
896   }
897   
898   switch (TmpInst.getOpcode()) {
899   case X86::LEA64_32r:
900     // Handle the 'subreg rewriting' for the lea64_32mem operand.
901     lower_lea64_32mem(&TmpInst, 1);
902     break;
903   }
904   
905   // FIXME: Convert TmpInst.
906   printInstruction(&TmpInst);
907   O << "OLD: ";
908   
909   // Call the autogenerated instruction printer routines.
910   printInstruction(MI);
911 }
912
913 void X86ATTAsmPrinter::PrintGlobalVariable(const GlobalVariable* GVar) {
914   const TargetData *TD = TM.getTargetData();
915
916   if (!GVar->hasInitializer())
917     return;   // External global require no code
918
919   // Check to see if this is a special global used by LLVM, if so, emit it.
920   if (EmitSpecialLLVMGlobal(GVar)) {
921     if (Subtarget->isTargetDarwin() &&
922         TM.getRelocationModel() == Reloc::Static) {
923       if (GVar->getName() == "llvm.global_ctors")
924         O << ".reference .constructors_used\n";
925       else if (GVar->getName() == "llvm.global_dtors")
926         O << ".reference .destructors_used\n";
927     }
928     return;
929   }
930
931   std::string name = Mang->getMangledName(GVar);
932   Constant *C = GVar->getInitializer();
933   const Type *Type = C->getType();
934   unsigned Size = TD->getTypeAllocSize(Type);
935   unsigned Align = TD->getPreferredAlignmentLog(GVar);
936
937   printVisibility(name, GVar->getVisibility());
938
939   if (Subtarget->isTargetELF())
940     O << "\t.type\t" << name << ",@object\n";
941
942   
943   SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GVar, TM);
944   const MCSection *TheSection =
945     getObjFileLowering().SectionForGlobal(GVar, GVKind, Mang, TM);
946   OutStreamer.SwitchSection(TheSection);
947
948   // FIXME: get this stuff from section kind flags.
949   if (C->isNullValue() && !GVar->hasSection() &&
950       // Don't put things that should go in the cstring section into "comm".
951       !TheSection->getKind().isMergeableCString()) {
952     if (GVar->hasExternalLinkage()) {
953       if (const char *Directive = TAI->getZeroFillDirective()) {
954         O << "\t.globl " << name << '\n';
955         O << Directive << "__DATA, __common, " << name << ", "
956           << Size << ", " << Align << '\n';
957         return;
958       }
959     }
960
961     if (!GVar->isThreadLocal() &&
962         (GVar->hasLocalLinkage() || GVar->isWeakForLinker())) {
963       if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
964
965       if (TAI->getLCOMMDirective() != NULL) {
966         if (GVar->hasLocalLinkage()) {
967           O << TAI->getLCOMMDirective() << name << ',' << Size;
968           if (Subtarget->isTargetDarwin())
969             O << ',' << Align;
970         } else if (Subtarget->isTargetDarwin() && !GVar->hasCommonLinkage()) {
971           O << "\t.globl " << name << '\n'
972             << TAI->getWeakDefDirective() << name << '\n';
973           EmitAlignment(Align, GVar);
974           O << name << ":";
975           if (VerboseAsm) {
976             O.PadToColumn(TAI->getCommentColumn());
977             O << TAI->getCommentString() << ' ';
978             WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
979           }
980           O << '\n';
981           EmitGlobalConstant(C);
982           return;
983         } else {
984           O << TAI->getCOMMDirective()  << name << ',' << Size;
985           if (TAI->getCOMMDirectiveTakesAlignment())
986             O << ',' << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
987         }
988       } else {
989         if (!Subtarget->isTargetCygMing()) {
990           if (GVar->hasLocalLinkage())
991             O << "\t.local\t" << name << '\n';
992         }
993         O << TAI->getCOMMDirective()  << name << ',' << Size;
994         if (TAI->getCOMMDirectiveTakesAlignment())
995           O << ',' << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
996       }
997       if (VerboseAsm) {
998         O.PadToColumn(TAI->getCommentColumn());
999         O << TAI->getCommentString() << ' ';
1000         WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
1001       }
1002       O << '\n';
1003       return;
1004     }
1005   }
1006
1007   switch (GVar->getLinkage()) {
1008   case GlobalValue::CommonLinkage:
1009   case GlobalValue::LinkOnceAnyLinkage:
1010   case GlobalValue::LinkOnceODRLinkage:
1011   case GlobalValue::WeakAnyLinkage:
1012   case GlobalValue::WeakODRLinkage:
1013   case GlobalValue::LinkerPrivateLinkage:
1014     if (Subtarget->isTargetDarwin()) {
1015       O << "\t.globl " << name << '\n'
1016         << TAI->getWeakDefDirective() << name << '\n';
1017     } else if (Subtarget->isTargetCygMing()) {
1018       O << "\t.globl\t" << name << "\n"
1019            "\t.linkonce same_size\n";
1020     } else {
1021       O << "\t.weak\t" << name << '\n';
1022     }
1023     break;
1024   case GlobalValue::DLLExportLinkage:
1025   case GlobalValue::AppendingLinkage:
1026     // FIXME: appending linkage variables should go into a section of
1027     // their name or something.  For now, just emit them as external.
1028   case GlobalValue::ExternalLinkage:
1029     // If external or appending, declare as a global symbol
1030     O << "\t.globl " << name << '\n';
1031     // FALL THROUGH
1032   case GlobalValue::PrivateLinkage:
1033   case GlobalValue::InternalLinkage:
1034      break;
1035   default:
1036     llvm_unreachable("Unknown linkage type!");
1037   }
1038
1039   EmitAlignment(Align, GVar);
1040   O << name << ":";
1041   if (VerboseAsm){
1042     O.PadToColumn(TAI->getCommentColumn());
1043     O << TAI->getCommentString() << ' ';
1044     WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
1045   }
1046   O << '\n';
1047
1048   EmitGlobalConstant(C);
1049
1050   if (TAI->hasDotTypeDotSizeDirective())
1051     O << "\t.size\t" << name << ", " << Size << '\n';
1052 }
1053
1054 bool X86ATTAsmPrinter::doFinalization(Module &M) {
1055   // Print out module-level global variables here.
1056   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1057        I != E; ++I) {
1058     if (I->hasDLLExportLinkage())
1059       DLLExportedGVs.insert(Mang->getMangledName(I));
1060   }
1061
1062   if (Subtarget->isTargetDarwin()) {
1063     // All darwin targets use mach-o.
1064     TargetLoweringObjectFileMachO &TLOFMacho = 
1065       static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1066     
1067     // Add the (possibly multiple) personalities to the set of global value
1068     // stubs.  Only referenced functions get into the Personalities list.
1069     if (TAI->doesSupportExceptionHandling() && MMI && !Subtarget->is64Bit()) {
1070       const std::vector<Function*> &Personalities = MMI->getPersonalities();
1071       for (unsigned i = 0, e = Personalities.size(); i != e; ++i) {
1072         if (Personalities[i])
1073           GVStubs[Mang->getMangledName(Personalities[i], "$non_lazy_ptr",
1074                                        true /*private label*/)] = 
1075             Mang->getMangledName(Personalities[i]);
1076       }
1077     }
1078
1079     // Output stubs for dynamically-linked functions
1080     if (!FnStubs.empty()) {
1081       const MCSection *TheSection = 
1082         TLOFMacho.getMachOSection("__IMPORT", "__jump_table",
1083                                   MCSectionMachO::S_SYMBOL_STUBS |
1084                                   MCSectionMachO::S_ATTR_SELF_MODIFYING_CODE |
1085                                   MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1086                                   5, SectionKind::getMetadata());
1087       OutStreamer.SwitchSection(TheSection);
1088       for (StringMap<std::string>::iterator I = FnStubs.begin(),
1089            E = FnStubs.end(); I != E; ++I)
1090         O << I->getKeyData() << ":\n" << "\t.indirect_symbol " << I->second
1091           << "\n\thlt ; hlt ; hlt ; hlt ; hlt\n";
1092       O << '\n';
1093     }
1094
1095     // Output stubs for external and common global variables.
1096     if (!GVStubs.empty()) {
1097       const MCSection *TheSection = 
1098         TLOFMacho.getMachOSection("__IMPORT", "__pointers",
1099                                   MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
1100                                   SectionKind::getMetadata());
1101       OutStreamer.SwitchSection(TheSection);
1102       for (StringMap<std::string>::iterator I = GVStubs.begin(),
1103            E = GVStubs.end(); I != E; ++I)
1104         O << I->getKeyData() << ":\n\t.indirect_symbol "
1105           << I->second << "\n\t.long\t0\n";
1106     }
1107
1108     if (!HiddenGVStubs.empty()) {
1109       OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
1110       EmitAlignment(2);
1111       for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1112            E = HiddenGVStubs.end(); I != E; ++I)
1113         O << I->getKeyData() << ":\n" << TAI->getData32bitsDirective()
1114           << I->second << '\n';
1115     }
1116
1117     // Funny Darwin hack: This flag tells the linker that no global symbols
1118     // contain code that falls through to other global symbols (e.g. the obvious
1119     // implementation of multiple entry points).  If this doesn't occur, the
1120     // linker can safely perform dead code stripping.  Since LLVM never
1121     // generates code that does this, it is always safe to set.
1122     O << "\t.subsections_via_symbols\n";
1123   } else if (Subtarget->isTargetCygMing()) {
1124     // Emit type information for external functions
1125     for (StringSet<>::iterator i = CygMingStubs.begin(), e = CygMingStubs.end();
1126          i != e; ++i) {
1127       O << "\t.def\t " << i->getKeyData()
1128         << ";\t.scl\t" << COFF::C_EXT
1129         << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
1130         << ";\t.endef\n";
1131     }
1132   }
1133   
1134   
1135   // Output linker support code for dllexported globals on windows.
1136   if (!DLLExportedGVs.empty() || !DLLExportedFns.empty()) {
1137     // dllexport symbols only exist on coff targets.
1138     TargetLoweringObjectFileCOFF &TLOFMacho = 
1139       static_cast<TargetLoweringObjectFileCOFF&>(getObjFileLowering());
1140     
1141     OutStreamer.SwitchSection(TLOFMacho.getCOFFSection(".section .drectve",true,
1142                                                  SectionKind::getMetadata()));
1143   
1144     for (StringSet<>::iterator i = DLLExportedGVs.begin(),
1145          e = DLLExportedGVs.end(); i != e; ++i)
1146       O << "\t.ascii \" -export:" << i->getKeyData() << ",data\"\n";
1147   
1148     for (StringSet<>::iterator i = DLLExportedFns.begin(),
1149          e = DLLExportedFns.end();
1150          i != e; ++i)
1151       O << "\t.ascii \" -export:" << i->getKeyData() << "\"\n";
1152   }
1153   
1154   // Do common shutdown.
1155   return AsmPrinter::doFinalization(M);
1156 }
1157
1158 // Include the auto-generated portion of the assembly writer.
1159 #include "X86GenAsmWriter.inc"