Make a convenient helper for printing offsets.
[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/CodeGen/MachineJumpTableInfo.h"
30 #include "llvm/Support/Mangler.h"
31 #include "llvm/Support/raw_ostream.h"
32 #include "llvm/Target/TargetAsmInfo.h"
33 #include "llvm/Target/TargetOptions.h"
34 using namespace llvm;
35
36 STATISTIC(EmittedInsts, "Number of machine instrs printed");
37
38 static std::string getPICLabelString(unsigned FnNum,
39                                      const TargetAsmInfo *TAI,
40                                      const X86Subtarget* Subtarget) {
41   std::string label;
42   if (Subtarget->isTargetDarwin())
43     label =  "\"L" + utostr_32(FnNum) + "$pb\"";
44   else if (Subtarget->isTargetELF())
45     label = ".Lllvm$" + utostr_32(FnNum) + "." "$piclabel";
46   else
47     assert(0 && "Don't know how to print PIC label!\n");
48
49   return label;
50 }
51
52 static X86MachineFunctionInfo calculateFunctionInfo(const Function *F,
53                                                     const TargetData *TD) {
54   X86MachineFunctionInfo Info;
55   uint64_t Size = 0;
56
57   switch (F->getCallingConv()) {
58   case CallingConv::X86_StdCall:
59     Info.setDecorationStyle(StdCall);
60     break;
61   case CallingConv::X86_FastCall:
62     Info.setDecorationStyle(FastCall);
63     break;
64   default:
65     return Info;
66   }
67
68   unsigned argNum = 1;
69   for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
70        AI != AE; ++AI, ++argNum) {
71     const Type* Ty = AI->getType();
72
73     // 'Dereference' type in case of byval parameter attribute
74     if (F->paramHasAttr(argNum, Attribute::ByVal))
75       Ty = cast<PointerType>(Ty)->getElementType();
76
77     // Size should be aligned to DWORD boundary
78     Size += ((TD->getABITypeSize(Ty) + 3)/4)*4;
79   }
80
81   // We're not supporting tooooo huge arguments :)
82   Info.setBytesToPopOnReturn((unsigned int)Size);
83   return Info;
84 }
85
86 /// PrintUnmangledNameSafely - Print out the printable characters in the name.
87 /// Don't print things like \n or \0.
88 static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
89   for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
90        Name != E; ++Name)
91     if (isprint(*Name))
92       OS << *Name;
93 }
94
95 /// decorateName - Query FunctionInfoMap and use this information for various
96 /// name decoration.
97 void X86ATTAsmPrinter::decorateName(std::string &Name,
98                                     const GlobalValue *GV) {
99   const Function *F = dyn_cast<Function>(GV);
100   if (!F) return;
101
102   // We don't want to decorate non-stdcall or non-fastcall functions right now
103   unsigned CC = F->getCallingConv();
104   if (CC != CallingConv::X86_StdCall && CC != CallingConv::X86_FastCall)
105     return;
106
107   // Decorate names only when we're targeting Cygwin/Mingw32 targets
108   if (!Subtarget->isTargetCygMing())
109     return;
110
111   FMFInfoMap::const_iterator info_item = FunctionInfoMap.find(F);
112
113   const X86MachineFunctionInfo *Info;
114   if (info_item == FunctionInfoMap.end()) {
115     // Calculate apropriate function info and populate map
116     FunctionInfoMap[F] = calculateFunctionInfo(F, TM.getTargetData());
117     Info = &FunctionInfoMap[F];
118   } else {
119     Info = &info_item->second;
120   }
121
122   const FunctionType *FT = F->getFunctionType();
123   switch (Info->getDecorationStyle()) {
124   case None:
125     break;
126   case StdCall:
127     // "Pure" variadic functions do not receive @0 suffix.
128     if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
129         (FT->getNumParams() == 1 && F->hasStructRetAttr()))
130       Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
131     break;
132   case FastCall:
133     // "Pure" variadic functions do not receive @0 suffix.
134     if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
135         (FT->getNumParams() == 1 && F->hasStructRetAttr()))
136       Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
137
138     if (Name[0] == '_') {
139       Name[0] = '@';
140     } else {
141       Name = '@' + Name;
142     }
143     break;
144   default:
145     assert(0 && "Unsupported DecorationStyle");
146   }
147 }
148
149 void X86ATTAsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
150   const Function *F = MF.getFunction();
151
152   decorateName(CurrentFnName, F);
153
154   SwitchToSection(TAI->SectionForGlobal(F));
155
156   unsigned FnAlign = 4;
157   if (F->hasFnAttr(Attribute::OptimizeForSize))
158     FnAlign = 1;
159   switch (F->getLinkage()) {
160   default: assert(0 && "Unknown linkage type!");
161   case Function::InternalLinkage:  // Symbols default to internal.
162     EmitAlignment(FnAlign, F);
163     break;
164   case Function::DLLExportLinkage:
165   case Function::ExternalLinkage:
166     EmitAlignment(FnAlign, F);
167     O << "\t.globl\t" << CurrentFnName << '\n';
168     break;
169   case Function::LinkOnceLinkage:
170   case Function::WeakLinkage:
171     EmitAlignment(FnAlign, F);
172     if (Subtarget->isTargetDarwin()) {
173       O << "\t.globl\t" << CurrentFnName << '\n';
174       O << TAI->getWeakDefDirective() << CurrentFnName << '\n';
175     } else if (Subtarget->isTargetCygMing()) {
176       O << "\t.globl\t" << CurrentFnName << "\n"
177            "\t.linkonce discard\n";
178     } else {
179       O << "\t.weak\t" << CurrentFnName << '\n';
180     }
181     break;
182   }
183
184   printVisibility(CurrentFnName, F->getVisibility());
185
186   if (Subtarget->isTargetELF())
187     O << "\t.type\t" << CurrentFnName << ",@function\n";
188   else if (Subtarget->isTargetCygMing()) {
189     O << "\t.def\t " << CurrentFnName
190       << ";\t.scl\t" <<
191       (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
192       << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
193       << ";\t.endef\n";
194   }
195
196   O << CurrentFnName << ":\n";
197   // Add some workaround for linkonce linkage on Cygwin\MinGW
198   if (Subtarget->isTargetCygMing() &&
199       (F->getLinkage() == Function::LinkOnceLinkage ||
200        F->getLinkage() == Function::WeakLinkage))
201     O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
202 }
203
204 /// runOnMachineFunction - This uses the printMachineInstruction()
205 /// method to print assembly for each instruction.
206 ///
207 bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
208   const Function *F = MF.getFunction();
209   unsigned CC = F->getCallingConv();
210
211   SetupMachineFunction(MF);
212   O << "\n\n";
213
214   // Populate function information map.  Actually, We don't want to populate
215   // non-stdcall or non-fastcall functions' information right now.
216   if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
217     FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
218
219   // Print out constants referenced by the function
220   EmitConstantPool(MF.getConstantPool());
221
222   if (F->hasDLLExportLinkage())
223     DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
224
225   // Print the 'header' of function
226   emitFunctionHeader(MF);
227
228   // Emit pre-function debug and/or EH information.
229   if (TAI->doesSupportDebugInformation() || TAI->doesSupportExceptionHandling())
230     DW.BeginFunction(&MF);
231
232   // Print out code for the function.
233   bool hasAnyRealCode = false;
234   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
235        I != E; ++I) {
236     // Print a label for the basic block.
237     if (!I->pred_empty()) {
238       printBasicBlockLabel(I, true, true);
239       O << '\n';
240     }
241     for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
242          II != IE; ++II) {
243       // Print the assembly for the instruction.
244       if (!II->isLabel())
245         hasAnyRealCode = true;
246       printMachineInstruction(II);
247     }
248   }
249
250   if (Subtarget->isTargetDarwin() && !hasAnyRealCode) {
251     // If the function is empty, then we need to emit *something*. Otherwise,
252     // the function's label might be associated with something that it wasn't
253     // meant to be associated with. We emit a noop in this situation.
254     // We are assuming inline asms are code.
255     O << "\tnop\n";
256   }
257
258   if (TAI->hasDotTypeDotSizeDirective())
259     O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << '\n';
260
261   // Emit post-function debug information.
262   if (TAI->doesSupportDebugInformation())
263     DW.EndFunction(&MF);
264
265   // Print out jump tables referenced by the function.
266   EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
267
268   O.flush();
269
270   // We didn't modify anything.
271   return false;
272 }
273
274 static inline bool shouldPrintGOT(TargetMachine &TM, const X86Subtarget* ST) {
275   return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
276 }
277
278 static inline bool shouldPrintPLT(TargetMachine &TM, const X86Subtarget* ST) {
279   return ST->isTargetELF() && TM.getRelocationModel() == Reloc::PIC_ &&
280       (ST->isPICStyleRIPRel() || ST->isPICStyleGOT());
281 }
282
283 static inline bool shouldPrintStub(TargetMachine &TM, const X86Subtarget* ST) {
284   return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
285 }
286
287 void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
288                                     const char *Modifier, bool NotRIPRel) {
289   const MachineOperand &MO = MI->getOperand(OpNo);
290   switch (MO.getType()) {
291   case MachineOperand::MO_Register: {
292     assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
293            "Virtual registers should not make it this far!");
294     O << '%';
295     unsigned Reg = MO.getReg();
296     if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
297       MVT VT = (strcmp(Modifier+6,"64") == 0) ?
298         MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
299                     ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
300       Reg = getX86SubSuperRegister(Reg, VT);
301     }
302     O << TRI->getAsmName(Reg);
303     return;
304   }
305
306   case MachineOperand::MO_Immediate:
307     if (!Modifier ||
308         (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
309       O << '$';
310     O << MO.getImm();
311     return;
312   case MachineOperand::MO_MachineBasicBlock:
313     printBasicBlockLabel(MO.getMBB());
314     return;
315   case MachineOperand::MO_JumpTableIndex: {
316     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
317     if (!isMemOp) O << '$';
318     O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << '_'
319       << MO.getIndex();
320
321     if (TM.getRelocationModel() == Reloc::PIC_) {
322       if (Subtarget->isPICStyleStub())
323         O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
324           << "$pb\"";
325       else if (Subtarget->isPICStyleGOT())
326         O << "@GOTOFF";
327     }
328
329     if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
330       O << "(%rip)";
331     return;
332   }
333   case MachineOperand::MO_ConstantPoolIndex: {
334     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
335     if (!isMemOp) O << '$';
336     O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
337       << MO.getIndex();
338
339     if (TM.getRelocationModel() == Reloc::PIC_) {
340       if (Subtarget->isPICStyleStub())
341         O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
342           << "$pb\"";
343       else if (Subtarget->isPICStyleGOT())
344         O << "@GOTOFF";
345     }
346
347     printOffset(MO.getOffset());
348
349     if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
350       O << "(%rip)";
351     return;
352   }
353   case MachineOperand::MO_GlobalAddress: {
354     bool isCallOp = Modifier && !strcmp(Modifier, "call");
355     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
356     bool needCloseParen = false;
357
358     const GlobalValue *GV = MO.getGlobal();
359     const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
360     if (!GVar) {
361       // If GV is an alias then use the aliasee for determining
362       // thread-localness.
363       if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
364         GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
365     }
366
367     bool isThreadLocal = GVar && GVar->isThreadLocal();
368
369     std::string Name = Mang->getValueName(GV);
370     decorateName(Name, GV);
371
372     if (!isMemOp && !isCallOp)
373       O << '$';
374     else if (Name[0] == '$') {
375       // The name begins with a dollar-sign. In order to avoid having it look
376       // like an integer immediate to the assembler, enclose it in parens.
377       O << '(';
378       needCloseParen = true;
379     }
380
381     if (shouldPrintStub(TM, Subtarget)) {
382       // Link-once, declaration, or Weakly-linked global variables need
383       // non-lazily-resolved stubs
384       if (GV->isDeclaration() || GV->mayBeOverridden()) {
385         // Dynamically-resolved functions need a stub for the function.
386         if (isCallOp && isa<Function>(GV)) {
387           // Function stubs are no longer needed for Mac OS X 10.5 and up.
388           if (Subtarget->isTargetDarwin() && Subtarget->getDarwinVers() >= 9) {
389             O << Name;
390           } else {
391             FnStubs.insert(Name);
392             printSuffixedName(Name, "$stub");
393           }
394         } else {
395           GVStubs.insert(Name);
396           printSuffixedName(Name, "$non_lazy_ptr");
397         }
398       } else {
399         if (GV->hasDLLImportLinkage())
400           O << "__imp_";
401         O << Name;
402       }
403
404       if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
405         O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
406     } else {
407       if (GV->hasDLLImportLinkage()) {
408         O << "__imp_";
409       }
410       O << Name;
411
412       if (isCallOp) {
413         if (shouldPrintPLT(TM, Subtarget)) {
414           // Assemble call via PLT for externally visible symbols
415           if (!GV->hasHiddenVisibility() && !GV->hasProtectedVisibility() &&
416               !GV->hasInternalLinkage())
417             O << "@PLT";
418         }
419         if (Subtarget->isTargetCygMing() && GV->isDeclaration())
420           // Save function name for later type emission
421           FnStubs.insert(Name);
422       }
423     }
424
425     if (GV->hasExternalWeakLinkage())
426       ExtWeakSymbols.insert(GV);
427
428     printOffset(MO.getOffset());
429
430     if (isThreadLocal) {
431       if (TM.getRelocationModel() == Reloc::PIC_ || Subtarget->is64Bit())
432         O << "@TLSGD"; // general dynamic TLS model
433       else
434         if (GV->isDeclaration())
435           O << "@INDNTPOFF"; // initial exec TLS model
436         else
437           O << "@NTPOFF"; // local exec TLS model
438     } else if (isMemOp) {
439       if (shouldPrintGOT(TM, Subtarget)) {
440         if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
441           O << "@GOT";
442         else
443           O << "@GOTOFF";
444       } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
445                  TM.getRelocationModel() != Reloc::Static) {
446         if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
447           O << "@GOTPCREL";
448
449         if (needCloseParen) {
450           needCloseParen = false;
451           O << ')';
452         }
453
454         // Use rip when possible to reduce code size, except when
455         // index or base register are also part of the address. e.g.
456         // foo(%rip)(%rcx,%rax,4) is not legal
457         O << "(%rip)";
458       }
459     }
460
461     if (needCloseParen)
462       O << ')';
463
464     return;
465   }
466   case MachineOperand::MO_ExternalSymbol: {
467     bool isCallOp = Modifier && !strcmp(Modifier, "call");
468     bool needCloseParen = false;
469     std::string Name(TAI->getGlobalPrefix());
470     Name += MO.getSymbolName();
471     // Print function stub suffix unless it's Mac OS X 10.5 and up.
472     if (isCallOp && shouldPrintStub(TM, Subtarget) && 
473         !(Subtarget->isTargetDarwin() && Subtarget->getDarwinVers() >= 9)) {
474       FnStubs.insert(Name);
475       printSuffixedName(Name, "$stub");
476       return;
477     }
478     if (!isCallOp)
479       O << '$';
480     else if (Name[0] == '$') {
481       // The name begins with a dollar-sign. In order to avoid having it look
482       // like an integer immediate to the assembler, enclose it in parens.
483       O << '(';
484       needCloseParen = true;
485     }
486
487     O << Name;
488
489     if (shouldPrintPLT(TM, Subtarget)) {
490       std::string GOTName(TAI->getGlobalPrefix());
491       GOTName+="_GLOBAL_OFFSET_TABLE_";
492       if (Name == GOTName)
493         // HACK! Emit extra offset to PC during printing GOT offset to
494         // compensate for the size of popl instruction. The resulting code
495         // should look like:
496         //   call .piclabel
497         // piclabel:
498         //   popl %some_register
499         //   addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
500         O << " + [.-"
501           << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << ']';
502
503       if (isCallOp)
504         O << "@PLT";
505     }
506
507     if (needCloseParen)
508       O << ')';
509
510     if (!isCallOp && Subtarget->isPICStyleRIPRel())
511       O << "(%rip)";
512
513     return;
514   }
515   default:
516     O << "<unknown operand type>"; return;
517   }
518 }
519
520 void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
521   unsigned char value = MI->getOperand(Op).getImm();
522   assert(value <= 7 && "Invalid ssecc argument!");
523   switch (value) {
524   case 0: O << "eq"; break;
525   case 1: O << "lt"; break;
526   case 2: O << "le"; break;
527   case 3: O << "unord"; break;
528   case 4: O << "neq"; break;
529   case 5: O << "nlt"; break;
530   case 6: O << "nle"; break;
531   case 7: O << "ord"; break;
532   }
533 }
534
535 void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
536                                          const char *Modifier){
537   assert(isMem(MI, Op) && "Invalid memory reference!");
538   MachineOperand BaseReg  = MI->getOperand(Op);
539   MachineOperand IndexReg = MI->getOperand(Op+2);
540   const MachineOperand &DispSpec = MI->getOperand(Op+3);
541
542   bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
543   if (DispSpec.isGlobal() ||
544       DispSpec.isCPI() ||
545       DispSpec.isJTI()) {
546     printOperand(MI, Op+3, "mem", NotRIPRel);
547   } else {
548     int DispVal = DispSpec.getImm();
549     if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
550       O << DispVal;
551   }
552
553   if (IndexReg.getReg() || BaseReg.getReg()) {
554     unsigned ScaleVal = MI->getOperand(Op+1).getImm();
555     unsigned BaseRegOperand = 0, IndexRegOperand = 2;
556
557     // There are cases where we can end up with ESP/RSP in the indexreg slot.
558     // If this happens, swap the base/index register to support assemblers that
559     // don't work when the index is *SP.
560     if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
561       assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
562       std::swap(BaseReg, IndexReg);
563       std::swap(BaseRegOperand, IndexRegOperand);
564     }
565
566     O << '(';
567     if (BaseReg.getReg())
568       printOperand(MI, Op+BaseRegOperand, Modifier);
569
570     if (IndexReg.getReg()) {
571       O << ',';
572       printOperand(MI, Op+IndexRegOperand, Modifier);
573       if (ScaleVal != 1)
574         O << ',' << ScaleVal;
575     }
576     O << ')';
577   }
578 }
579
580 void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
581                                            const MachineBasicBlock *MBB) const {
582   if (!TAI->getSetDirective())
583     return;
584
585   // We don't need .set machinery if we have GOT-style relocations
586   if (Subtarget->isPICStyleGOT())
587     return;
588
589   O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
590     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
591   printBasicBlockLabel(MBB, false, false, false);
592   if (Subtarget->isPICStyleRIPRel())
593     O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
594       << '_' << uid << '\n';
595   else
596     O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
597 }
598
599 void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
600   std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
601   O << label << '\n' << label << ':';
602 }
603
604
605 void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
606                                               const MachineBasicBlock *MBB,
607                                               unsigned uid) const
608 {
609   const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
610     TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
611
612   O << JTEntryDirective << ' ';
613
614   if (TM.getRelocationModel() == Reloc::PIC_) {
615     if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
616       O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
617         << '_' << uid << "_set_" << MBB->getNumber();
618     } else if (Subtarget->isPICStyleGOT()) {
619       printBasicBlockLabel(MBB, false, false, false);
620       O << "@GOTOFF";
621     } else
622       assert(0 && "Don't know how to print MBB label for this PIC mode");
623   } else
624     printBasicBlockLabel(MBB, false, false, false);
625 }
626
627 bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
628                                          const char Mode) {
629   unsigned Reg = MO.getReg();
630   switch (Mode) {
631   default: return true;  // Unknown mode.
632   case 'b': // Print QImode register
633     Reg = getX86SubSuperRegister(Reg, MVT::i8);
634     break;
635   case 'h': // Print QImode high register
636     Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
637     break;
638   case 'w': // Print HImode register
639     Reg = getX86SubSuperRegister(Reg, MVT::i16);
640     break;
641   case 'k': // Print SImode register
642     Reg = getX86SubSuperRegister(Reg, MVT::i32);
643     break;
644   case 'q': // Print DImode register
645     Reg = getX86SubSuperRegister(Reg, MVT::i64);
646     break;
647   }
648
649   O << '%'<< TRI->getAsmName(Reg);
650   return false;
651 }
652
653 /// PrintAsmOperand - Print out an operand for an inline asm expression.
654 ///
655 bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
656                                        unsigned AsmVariant,
657                                        const char *ExtraCode) {
658   // Does this asm operand have a single letter operand modifier?
659   if (ExtraCode && ExtraCode[0]) {
660     if (ExtraCode[1] != 0) return true; // Unknown modifier.
661
662     switch (ExtraCode[0]) {
663     default: return true;  // Unknown modifier.
664     case 'c': // Don't print "$" before a global var name or constant.
665       printOperand(MI, OpNo, "mem");
666       return false;
667     case 'b': // Print QImode register
668     case 'h': // Print QImode high register
669     case 'w': // Print HImode register
670     case 'k': // Print SImode register
671     case 'q': // Print DImode register
672       if (MI->getOperand(OpNo).isReg())
673         return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
674       printOperand(MI, OpNo);
675       return false;
676
677     case 'P': // Don't print @PLT, but do print as memory.
678       printOperand(MI, OpNo, "mem");
679       return false;
680     }
681   }
682
683   printOperand(MI, OpNo);
684   return false;
685 }
686
687 bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
688                                              unsigned OpNo,
689                                              unsigned AsmVariant,
690                                              const char *ExtraCode) {
691   if (ExtraCode && ExtraCode[0]) {
692     if (ExtraCode[1] != 0) return true; // Unknown modifier.
693
694     switch (ExtraCode[0]) {
695     default: return true;  // Unknown modifier.
696     case 'b': // Print QImode register
697     case 'h': // Print QImode high register
698     case 'w': // Print HImode register
699     case 'k': // Print SImode register
700     case 'q': // Print SImode register
701       // These only apply to registers, ignore on mem.
702       break;
703     }
704   }
705   printMemReference(MI, OpNo);
706   return false;
707 }
708
709 /// printMachineInstruction -- Print out a single X86 LLVM instruction
710 /// MI in AT&T syntax to the current output stream.
711 ///
712 void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
713   ++EmittedInsts;
714
715   // Call the autogenerated instruction printer routines.
716   printInstruction(MI);
717 }
718
719 /// doInitialization
720 bool X86ATTAsmPrinter::doInitialization(Module &M) {
721   if (TAI->doesSupportDebugInformation()) {
722     // Emit initial debug information.
723     DW.BeginModule(&M);
724   }
725
726   bool Result = AsmPrinter::doInitialization(M);
727
728   if (TAI->doesSupportDebugInformation()) {
729     // Let PassManager know we need debug information and relay
730     // the MachineModuleInfo address on to DwarfWriter.
731     // AsmPrinter::doInitialization did this analysis.
732     MMI = getAnalysisToUpdate<MachineModuleInfo>();
733     DW.SetModuleInfo(MMI);
734   }
735
736   // Darwin wants symbols to be quoted if they have complex names.
737   if (Subtarget->isTargetDarwin())
738     Mang->setUseQuotes(true);
739
740   return Result;
741 }
742
743
744 void X86ATTAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
745   const TargetData *TD = TM.getTargetData();
746
747   if (!GVar->hasInitializer())
748     return;   // External global require no code
749
750   // Check to see if this is a special global used by LLVM, if so, emit it.
751   if (EmitSpecialLLVMGlobal(GVar)) {
752     if (Subtarget->isTargetDarwin() &&
753         TM.getRelocationModel() == Reloc::Static) {
754       if (GVar->getName() == "llvm.global_ctors")
755         O << ".reference .constructors_used\n";
756       else if (GVar->getName() == "llvm.global_dtors")
757         O << ".reference .destructors_used\n";
758     }
759     return;
760   }
761
762   std::string name = Mang->getValueName(GVar);
763   Constant *C = GVar->getInitializer();
764   const Type *Type = C->getType();
765   unsigned Size = TD->getABITypeSize(Type);
766   unsigned Align = TD->getPreferredAlignmentLog(GVar);
767
768   printVisibility(name, GVar->getVisibility());
769
770   if (Subtarget->isTargetELF())
771     O << "\t.type\t" << name << ",@object\n";
772
773   SwitchToSection(TAI->SectionForGlobal(GVar));
774
775   if (C->isNullValue() && !GVar->hasSection()) {
776     // FIXME: This seems to be pretty darwin-specific
777     if (GVar->hasExternalLinkage()) {
778       if (const char *Directive = TAI->getZeroFillDirective()) {
779         O << "\t.globl " << name << '\n';
780         O << Directive << "__DATA, __common, " << name << ", "
781           << Size << ", " << Align << '\n';
782         return;
783       }
784     }
785
786     if (!GVar->isThreadLocal() &&
787         (GVar->hasInternalLinkage() || GVar->mayBeOverridden())) {
788       if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
789
790       if (TAI->getLCOMMDirective() != NULL) {
791         if (GVar->hasInternalLinkage()) {
792           O << TAI->getLCOMMDirective() << name << ',' << Size;
793           if (Subtarget->isTargetDarwin())
794             O << ',' << Align;
795         } else if (Subtarget->isTargetDarwin() && !GVar->hasCommonLinkage()) {
796           O << "\t.globl " << name << '\n'
797             << TAI->getWeakDefDirective() << name << '\n';
798           EmitAlignment(Align, GVar);
799           O << name << ":\t\t\t\t" << TAI->getCommentString() << ' ';
800           PrintUnmangledNameSafely(GVar, O);
801           O << '\n';
802           EmitGlobalConstant(C);
803           return;
804         } else {
805           O << TAI->getCOMMDirective()  << name << ',' << Size;
806           if (TAI->getCOMMDirectiveTakesAlignment())
807             O << ',' << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
808         }
809       } else {
810         if (!Subtarget->isTargetCygMing()) {
811           if (GVar->hasInternalLinkage())
812             O << "\t.local\t" << name << '\n';
813         }
814         O << TAI->getCOMMDirective()  << name << ',' << Size;
815         if (TAI->getCOMMDirectiveTakesAlignment())
816           O << ',' << (TAI->getAlignmentIsInBytes() ? (1 << Align) : Align);
817       }
818       O << "\t\t" << TAI->getCommentString() << ' ';
819       PrintUnmangledNameSafely(GVar, O);
820       O << '\n';
821       return;
822     }
823   }
824
825   switch (GVar->getLinkage()) {
826   case GlobalValue::CommonLinkage:
827   case GlobalValue::LinkOnceLinkage:
828   case GlobalValue::WeakLinkage:
829     if (Subtarget->isTargetDarwin()) {
830       O << "\t.globl " << name << '\n'
831         << TAI->getWeakDefDirective() << name << '\n';
832     } else if (Subtarget->isTargetCygMing()) {
833       O << "\t.globl\t" << name << "\n"
834            "\t.linkonce same_size\n";
835     } else {
836       O << "\t.weak\t" << name << '\n';
837     }
838     break;
839   case GlobalValue::DLLExportLinkage:
840   case GlobalValue::AppendingLinkage:
841     // FIXME: appending linkage variables should go into a section of
842     // their name or something.  For now, just emit them as external.
843   case GlobalValue::ExternalLinkage:
844     // If external or appending, declare as a global symbol
845     O << "\t.globl " << name << '\n';
846     // FALL THROUGH
847   case GlobalValue::InternalLinkage:
848      break;
849   default:
850     assert(0 && "Unknown linkage type!");
851   }
852
853   EmitAlignment(Align, GVar);
854   O << name << ":\t\t\t\t" << TAI->getCommentString() << ' ';
855   PrintUnmangledNameSafely(GVar, O);
856   O << '\n';
857   if (TAI->hasDotTypeDotSizeDirective())
858     O << "\t.size\t" << name << ", " << Size << '\n';
859
860   // If the initializer is a extern weak symbol, remember to emit the weak
861   // reference!
862   if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
863     if (GV->hasExternalWeakLinkage())
864       ExtWeakSymbols.insert(GV);
865
866   EmitGlobalConstant(C);
867 }
868
869 /// printGVStub - Print stub for a global value.
870 ///
871 void X86ATTAsmPrinter::printGVStub(const char *GV, const char *Prefix) {
872   printSuffixedName(GV, "$non_lazy_ptr", Prefix);
873   O << ":\n\t.indirect_symbol ";
874   if (Prefix) O << Prefix;
875   O << GV << "\n\t.long\t0\n";
876 }
877
878
879 bool X86ATTAsmPrinter::doFinalization(Module &M) {
880   // Print out module-level global variables here.
881   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
882        I != E; ++I) {
883     printModuleLevelGV(I);
884
885     if (I->hasDLLExportLinkage())
886       DLLExportedGVs.insert(Mang->makeNameProper(I->getName(),""));
887   }
888
889   // Output linker support code for dllexported globals
890   if (!DLLExportedGVs.empty())
891     SwitchToDataSection(".section .drectve");
892
893   for (StringSet<>::iterator i = DLLExportedGVs.begin(),
894          e = DLLExportedGVs.end();
895          i != e; ++i)
896     O << "\t.ascii \" -export:" << i->getKeyData() << ",data\"\n";
897
898   if (!DLLExportedFns.empty()) {
899     SwitchToDataSection(".section .drectve");
900   }
901
902   for (StringSet<>::iterator i = DLLExportedFns.begin(),
903          e = DLLExportedFns.end();
904          i != e; ++i)
905     O << "\t.ascii \" -export:" << i->getKeyData() << "\"\n";
906
907   if (Subtarget->isTargetDarwin()) {
908     SwitchToDataSection("");
909
910     // Output stubs for dynamically-linked functions
911     unsigned j = 1;
912     for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
913          i != e; ++i, ++j) {
914       SwitchToDataSection("\t.section __IMPORT,__jump_table,symbol_stubs,"
915                           "self_modifying_code+pure_instructions,5", 0);
916       const char *p = i->getKeyData();
917       printSuffixedName(p, "$stub");
918       O << ":\n"
919            "\t.indirect_symbol " << p << "\n"
920            "\thlt ; hlt ; hlt ; hlt ; hlt\n";
921     }
922
923     O << '\n';
924
925     // Print global value stubs.
926     bool InStubSection = false;
927     if (TAI->doesSupportExceptionHandling() && MMI && !Subtarget->is64Bit()) {
928       // Add the (possibly multiple) personalities to the set of global values.
929       // Only referenced functions get into the Personalities list.
930       const std::vector<Function *>& Personalities = MMI->getPersonalities();
931       for (std::vector<Function *>::const_iterator I = Personalities.begin(),
932              E = Personalities.end(); I != E; ++I) {
933         if (!*I)
934           continue;
935         if (!InStubSection) {
936           SwitchToDataSection(
937                      "\t.section __IMPORT,__pointers,non_lazy_symbol_pointers");
938           InStubSection = true;
939         }
940         printGVStub((*I)->getNameStart(), "_");
941       }
942     }
943
944     // Output stubs for external and common global variables.
945     if (!InStubSection && !GVStubs.empty())
946       SwitchToDataSection(
947                     "\t.section __IMPORT,__pointers,non_lazy_symbol_pointers");
948     for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
949          i != e; ++i)
950       printGVStub(i->getKeyData());
951
952     // Emit final debug information.
953     DW.EndModule();
954
955     // Funny Darwin hack: This flag tells the linker that no global symbols
956     // contain code that falls through to other global symbols (e.g. the obvious
957     // implementation of multiple entry points).  If this doesn't occur, the
958     // linker can safely perform dead code stripping.  Since LLVM never
959     // generates code that does this, it is always safe to set.
960     O << "\t.subsections_via_symbols\n";
961   } else if (Subtarget->isTargetCygMing()) {
962     // Emit type information for external functions
963     for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
964          i != e; ++i) {
965       O << "\t.def\t " << i->getKeyData()
966         << ";\t.scl\t" << COFF::C_EXT
967         << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
968         << ";\t.endef\n";
969     }
970
971     // Emit final debug information.
972     DW.EndModule();
973   } else if (Subtarget->isTargetELF()) {
974     // Emit final debug information.
975     DW.EndModule();
976   }
977
978   return AsmPrinter::doFinalization(M);
979 }
980
981 // Include the auto-generated portion of the assembly writer.
982 #include "X86GenAsmWriter.inc"