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