the MinPad argument to PadToColumn only really makes sense to be 1,
[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   SwitchToSection(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 'c': // Don't print "$" before a global var name or constant.
624       if (MO.isImm())
625         O << MO.getImm();
626       else if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol())
627         printSymbolOperand(MO);
628       else
629         printOperand(MI, OpNo);
630       return false;
631
632     case 'A': // Print '*' before a register (it must be a register)
633       if (MO.isReg()) {
634         O << '*';
635         printOperand(MI, OpNo);
636         return false;
637       }
638       return true;
639
640     case 'b': // Print QImode register
641     case 'h': // Print QImode high register
642     case 'w': // Print HImode register
643     case 'k': // Print SImode register
644     case 'q': // Print DImode register
645       if (MO.isReg())
646         return printAsmMRegister(MO, ExtraCode[0]);
647       printOperand(MI, OpNo);
648       return false;
649
650     case 'P': // This is the operand of a call, treat specially.
651       print_pcrel_imm(MI, OpNo);
652       return false;
653
654     case 'n':  // Negate the immediate or print a '-' before the operand.
655       // Note: this is a temporary solution. It should be handled target
656       // independently as part of the 'MC' work.
657       if (MO.isImm()) {
658         O << -MO.getImm();
659         return false;
660       }
661       O << '-';
662     }
663   }
664
665   printOperand(MI, OpNo);
666   return false;
667 }
668
669 bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
670                                              unsigned OpNo,
671                                              unsigned AsmVariant,
672                                              const char *ExtraCode) {
673   if (ExtraCode && ExtraCode[0]) {
674     if (ExtraCode[1] != 0) return true; // Unknown modifier.
675
676     switch (ExtraCode[0]) {
677     default: return true;  // Unknown modifier.
678     case 'b': // Print QImode register
679     case 'h': // Print QImode high register
680     case 'w': // Print HImode register
681     case 'k': // Print SImode register
682     case 'q': // Print SImode register
683       // These only apply to registers, ignore on mem.
684       break;
685     case 'P': // Don't print @PLT, but do print as memory.
686       printMemReference(MI, OpNo, "no-rip");
687       return false;
688     }
689   }
690   printMemReference(MI, OpNo);
691   return false;
692 }
693
694 static void lower_lea64_32mem(MCInst *MI, unsigned OpNo) {
695   // Convert registers in the addr mode according to subreg64.
696   for (unsigned i = 0; i != 4; ++i) {
697     if (!MI->getOperand(i).isReg()) continue;
698     
699     unsigned Reg = MI->getOperand(i).getReg();
700     if (Reg == 0) continue;
701     
702     MI->getOperand(i).setReg(getX86SubSuperRegister(Reg, MVT::i64));
703   }
704 }
705
706 /// LowerGlobalAddressOperand - Lower an MO_GlobalAddress operand to an
707 /// MCOperand.
708 MCOperand X86ATTAsmPrinter::LowerGlobalAddressOperand(const MachineOperand &MO){
709   const GlobalValue *GV = MO.getGlobal();
710   
711   const char *Suffix = "";
712   if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
713     Suffix = "$stub";
714   else if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
715            MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE ||
716            MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY ||
717            MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
718     Suffix = "$non_lazy_ptr";
719   
720   std::string Name = Mang->getMangledName(GV, Suffix, Suffix[0] != '\0');
721   if (Subtarget->isTargetCygMing())
722     DecorateCygMingName(Name, GV);
723   
724   // Handle dllimport linkage.
725   if (MO.getTargetFlags() == X86II::MO_DLLIMPORT)
726     Name = "__imp_" + Name;
727   
728   if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
729       MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE)
730     GVStubs[Name] = Mang->getMangledName(GV);
731   else if (MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY ||
732            MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
733     HiddenGVStubs[Name] = Mang->getMangledName(GV);
734   else if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
735     FnStubs[Name] = Mang->getMangledName(GV);
736   
737   // Create a symbol for the name.
738   MCSymbol *Sym = OutContext.GetOrCreateSymbol(Name);
739   return MCOperand::CreateMCValue(MCValue::get(Sym, 0, MO.getOffset()));
740 }
741
742 MCOperand X86ATTAsmPrinter::
743 LowerExternalSymbolOperand(const MachineOperand &MO){
744   std::string Name = Mang->makeNameProper(MO.getSymbolName());
745   if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
746     FnStubs[Name+"$stub"] = Name;
747     Name += "$stub";
748   }
749
750   MCSymbol *Sym = OutContext.GetOrCreateSymbol(Name);
751   return MCOperand::CreateMCValue(MCValue::get(Sym, 0, MO.getOffset()));
752 }
753
754
755 /// printMachineInstruction -- Print out a single X86 LLVM instruction MI in
756 /// AT&T syntax to the current output stream.
757 ///
758 void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
759   ++EmittedInsts;
760
761   if (!NewAsmPrinter) {
762     // Call the autogenerated instruction printer routines.
763     printInstruction(MI);
764     return;
765   }
766   
767   MCInst TmpInst;
768
769   switch (MI->getOpcode()) {
770   case TargetInstrInfo::DBG_LABEL:
771   case TargetInstrInfo::EH_LABEL:
772   case TargetInstrInfo::GC_LABEL:
773     printLabel(MI);
774     return;
775   case TargetInstrInfo::INLINEASM:
776     O << '\t';
777     printInlineAsm(MI);
778     return;
779   case TargetInstrInfo::DECLARE:
780     printDeclare(MI);
781     return;
782   case TargetInstrInfo::IMPLICIT_DEF:
783     printImplicitDef(MI);
784     return;
785   case X86::MOVPC32r: {
786     // This is a pseudo op for a two instruction sequence with a label, which
787     // looks like:
788     //     call "L1$pb"
789     // "L1$pb":
790     //     popl %esi
791     
792     // Emit the call.
793     MCSymbol *PICBase = GetPICBaseSymbol();
794     TmpInst.setOpcode(X86::CALLpcrel32);
795     TmpInst.addOperand(MCOperand::CreateMCValue(MCValue::get(PICBase)));
796     printInstruction(&TmpInst);
797
798     // Emit the label.
799     OutStreamer.EmitLabel(PICBase);
800     
801     // popl $reg
802     TmpInst.setOpcode(X86::POP32r);
803     TmpInst.getOperand(0) = MCOperand::CreateReg(MI->getOperand(0).getReg());
804     printInstruction(&TmpInst);
805     O << "OLD: ";
806     // Call the autogenerated instruction printer routines.
807     printInstruction(MI);
808     return;
809   }
810   }
811   
812   O << "NEW: ";
813   
814   TmpInst.setOpcode(MI->getOpcode());
815   
816   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
817     const MachineOperand &MO = MI->getOperand(i);
818     
819     MCOperand MCOp;
820     switch (MO.getType()) {
821     default:
822       O.flush();
823       errs() << "Cannot lower operand #" << i << " of :" << *MI;
824       llvm_unreachable("Unimp");
825     case MachineOperand::MO_Register:
826       MCOp = MCOperand::CreateReg(MO.getReg());
827       break;
828     case MachineOperand::MO_Immediate:
829       MCOp = MCOperand::CreateImm(MO.getImm());
830       break;
831     case MachineOperand::MO_MachineBasicBlock:
832       MCOp = MCOperand::CreateMBBLabel(getFunctionNumber(), 
833                                        MO.getMBB()->getNumber());
834       break;
835     case MachineOperand::MO_GlobalAddress:
836       MCOp = LowerGlobalAddressOperand(MO);
837       break;
838     case MachineOperand::MO_ExternalSymbol:
839       MCOp = LowerExternalSymbolOperand(MO);
840       break;
841     }
842     
843     TmpInst.addOperand(MCOp);
844   }
845   
846   switch (TmpInst.getOpcode()) {
847   case X86::LEA64_32r:
848     // Handle the 'subreg rewriting' for the lea64_32mem operand.
849     lower_lea64_32mem(&TmpInst, 1);
850     break;
851   }
852   
853   // FIXME: Convert TmpInst.
854   printInstruction(&TmpInst);
855   O << "OLD: ";
856   
857   // Call the autogenerated instruction printer routines.
858   printInstruction(MI);
859 }
860
861 void X86ATTAsmPrinter::PrintGlobalVariable(const GlobalVariable* GVar) {
862   const TargetData *TD = TM.getTargetData();
863
864   if (!GVar->hasInitializer())
865     return;   // External global require no code
866
867   // Check to see if this is a special global used by LLVM, if so, emit it.
868   if (EmitSpecialLLVMGlobal(GVar)) {
869     if (Subtarget->isTargetDarwin() &&
870         TM.getRelocationModel() == Reloc::Static) {
871       if (GVar->getName() == "llvm.global_ctors")
872         O << ".reference .constructors_used\n";
873       else if (GVar->getName() == "llvm.global_dtors")
874         O << ".reference .destructors_used\n";
875     }
876     return;
877   }
878
879   std::string name = Mang->getMangledName(GVar);
880   Constant *C = GVar->getInitializer();
881   const Type *Type = C->getType();
882   unsigned Size = TD->getTypeAllocSize(Type);
883   unsigned Align = TD->getPreferredAlignmentLog(GVar);
884
885   printVisibility(name, GVar->getVisibility());
886
887   if (Subtarget->isTargetELF())
888     O << "\t.type\t" << name << ",@object\n";
889
890   
891   SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GVar, TM);
892   const MCSection *TheSection =
893     getObjFileLowering().SectionForGlobal(GVar, GVKind, Mang, TM);
894   SwitchToSection(TheSection);
895
896   // FIXME: get this stuff from section kind flags.
897   if (C->isNullValue() && !GVar->hasSection() &&
898       // Don't put things that should go in the cstring section into "comm".
899       !TheSection->getKind().isMergeableCString()) {
900     if (GVar->hasExternalLinkage()) {
901       if (const char *Directive = TAI->getZeroFillDirective()) {
902         O << "\t.globl " << name << '\n';
903         O << Directive << "__DATA, __common, " << name << ", "
904           << Size << ", " << Align << '\n';
905         return;
906       }
907     }
908
909     if (!GVar->isThreadLocal() &&
910         (GVar->hasLocalLinkage() || GVar->isWeakForLinker())) {
911       if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
912
913       if (TAI->getLCOMMDirective() != NULL) {
914         if (GVar->hasLocalLinkage()) {
915           O << TAI->getLCOMMDirective() << name << ',' << Size;
916           if (Subtarget->isTargetDarwin())
917             O << ',' << Align;
918         } else if (Subtarget->isTargetDarwin() && !GVar->hasCommonLinkage()) {
919           O << "\t.globl " << name << '\n'
920             << TAI->getWeakDefDirective() << name << '\n';
921           EmitAlignment(Align, GVar);
922           O << name << ":";
923           if (VerboseAsm) {
924             O.PadToColumn(TAI->getCommentColumn());
925             O << TAI->getCommentString() << ' ';
926             WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
927           }
928           O << '\n';
929           EmitGlobalConstant(C);
930           return;
931         } else {
932           O << TAI->getCOMMDirective()  << name << ',' << Size;
933           if (TAI->getCOMMDirectiveTakesAlignment())
934             O << ',' << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
935         }
936       } else {
937         if (!Subtarget->isTargetCygMing()) {
938           if (GVar->hasLocalLinkage())
939             O << "\t.local\t" << name << '\n';
940         }
941         O << TAI->getCOMMDirective()  << name << ',' << Size;
942         if (TAI->getCOMMDirectiveTakesAlignment())
943           O << ',' << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
944       }
945       if (VerboseAsm) {
946         O.PadToColumn(TAI->getCommentColumn());
947         O << TAI->getCommentString() << ' ';
948         WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
949       }
950       O << '\n';
951       return;
952     }
953   }
954
955   switch (GVar->getLinkage()) {
956   case GlobalValue::CommonLinkage:
957   case GlobalValue::LinkOnceAnyLinkage:
958   case GlobalValue::LinkOnceODRLinkage:
959   case GlobalValue::WeakAnyLinkage:
960   case GlobalValue::WeakODRLinkage:
961   case GlobalValue::LinkerPrivateLinkage:
962     if (Subtarget->isTargetDarwin()) {
963       O << "\t.globl " << name << '\n'
964         << TAI->getWeakDefDirective() << name << '\n';
965     } else if (Subtarget->isTargetCygMing()) {
966       O << "\t.globl\t" << name << "\n"
967            "\t.linkonce same_size\n";
968     } else {
969       O << "\t.weak\t" << name << '\n';
970     }
971     break;
972   case GlobalValue::DLLExportLinkage:
973   case GlobalValue::AppendingLinkage:
974     // FIXME: appending linkage variables should go into a section of
975     // their name or something.  For now, just emit them as external.
976   case GlobalValue::ExternalLinkage:
977     // If external or appending, declare as a global symbol
978     O << "\t.globl " << name << '\n';
979     // FALL THROUGH
980   case GlobalValue::PrivateLinkage:
981   case GlobalValue::InternalLinkage:
982      break;
983   default:
984     llvm_unreachable("Unknown linkage type!");
985   }
986
987   EmitAlignment(Align, GVar);
988   O << name << ":";
989   if (VerboseAsm){
990     O.PadToColumn(TAI->getCommentColumn());
991     O << TAI->getCommentString() << ' ';
992     WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
993   }
994   O << '\n';
995
996   EmitGlobalConstant(C);
997
998   if (TAI->hasDotTypeDotSizeDirective())
999     O << "\t.size\t" << name << ", " << Size << '\n';
1000 }
1001
1002 bool X86ATTAsmPrinter::doFinalization(Module &M) {
1003   // Print out module-level global variables here.
1004   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
1005        I != E; ++I) {
1006     if (I->hasDLLExportLinkage())
1007       DLLExportedGVs.insert(Mang->getMangledName(I));
1008   }
1009
1010   if (Subtarget->isTargetDarwin()) {
1011     // All darwin targets use mach-o.
1012     TargetLoweringObjectFileMachO &TLOFMacho = 
1013       static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1014     
1015     // Add the (possibly multiple) personalities to the set of global value
1016     // stubs.  Only referenced functions get into the Personalities list.
1017     if (TAI->doesSupportExceptionHandling() && MMI && !Subtarget->is64Bit()) {
1018       const std::vector<Function*> &Personalities = MMI->getPersonalities();
1019       for (unsigned i = 0, e = Personalities.size(); i != e; ++i) {
1020         if (Personalities[i])
1021           GVStubs[Mang->getMangledName(Personalities[i], "$non_lazy_ptr",
1022                                        true /*private label*/)] = 
1023             Mang->getMangledName(Personalities[i]);
1024       }
1025     }
1026
1027     // Output stubs for dynamically-linked functions
1028     if (!FnStubs.empty()) {
1029       const MCSection *TheSection = 
1030         TLOFMacho.getMachOSection("__IMPORT", "__jump_table",
1031                                   MCSectionMachO::S_SYMBOL_STUBS |
1032                                   MCSectionMachO::S_ATTR_SELF_MODIFYING_CODE |
1033                                   MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1034                                   5, SectionKind::getMetadata());
1035       SwitchToSection(TheSection);
1036       for (StringMap<std::string>::iterator I = FnStubs.begin(),
1037            E = FnStubs.end(); I != E; ++I)
1038         O << I->getKeyData() << ":\n" << "\t.indirect_symbol " << I->second
1039           << "\n\thlt ; hlt ; hlt ; hlt ; hlt\n";
1040       O << '\n';
1041     }
1042
1043     // Output stubs for external and common global variables.
1044     if (!GVStubs.empty()) {
1045       const MCSection *TheSection = 
1046         TLOFMacho.getMachOSection("__IMPORT", "__pointers",
1047                                   MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
1048                                   SectionKind::getMetadata());
1049       SwitchToSection(TheSection);
1050       for (StringMap<std::string>::iterator I = GVStubs.begin(),
1051            E = GVStubs.end(); I != E; ++I)
1052         O << I->getKeyData() << ":\n\t.indirect_symbol "
1053           << I->second << "\n\t.long\t0\n";
1054     }
1055
1056     if (!HiddenGVStubs.empty()) {
1057       SwitchToSection(getObjFileLowering().getDataSection());
1058       EmitAlignment(2);
1059       for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1060            E = HiddenGVStubs.end(); I != E; ++I)
1061         O << I->getKeyData() << ":\n" << TAI->getData32bitsDirective()
1062           << I->second << '\n';
1063     }
1064
1065     // Funny Darwin hack: This flag tells the linker that no global symbols
1066     // contain code that falls through to other global symbols (e.g. the obvious
1067     // implementation of multiple entry points).  If this doesn't occur, the
1068     // linker can safely perform dead code stripping.  Since LLVM never
1069     // generates code that does this, it is always safe to set.
1070     O << "\t.subsections_via_symbols\n";
1071   } else if (Subtarget->isTargetCygMing()) {
1072     // Emit type information for external functions
1073     for (StringSet<>::iterator i = CygMingStubs.begin(), e = CygMingStubs.end();
1074          i != e; ++i) {
1075       O << "\t.def\t " << i->getKeyData()
1076         << ";\t.scl\t" << COFF::C_EXT
1077         << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
1078         << ";\t.endef\n";
1079     }
1080   }
1081   
1082   
1083   // Output linker support code for dllexported globals on windows.
1084   if (!DLLExportedGVs.empty() || !DLLExportedFns.empty()) {
1085     // dllexport symbols only exist on coff targets.
1086     TargetLoweringObjectFileCOFF &TLOFMacho = 
1087       static_cast<TargetLoweringObjectFileCOFF&>(getObjFileLowering());
1088     
1089     SwitchToSection(TLOFMacho.getCOFFSection(".section .drectve", true,
1090                                              SectionKind::getMetadata()));
1091   
1092     for (StringSet<>::iterator i = DLLExportedGVs.begin(),
1093          e = DLLExportedGVs.end(); i != e; ++i)
1094       O << "\t.ascii \" -export:" << i->getKeyData() << ",data\"\n";
1095   
1096     for (StringSet<>::iterator i = DLLExportedFns.begin(),
1097          e = DLLExportedFns.end();
1098          i != e; ++i)
1099       O << "\t.ascii \" -export:" << i->getKeyData() << "\"\n";
1100   }
1101   
1102   // Do common shutdown.
1103   return AsmPrinter::doFinalization(M);
1104 }
1105
1106 // Include the auto-generated portion of the assembly writer.
1107 #include "X86GenAsmWriter.inc"