fix PrintAsmOperand and PrintAsmMemoryOperand to pass down
[oota-llvm.git] / lib / Target / X86 / AsmPrinter / X86AsmPrinter.cpp
1 //===-- X86AsmPrinter.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 X86 machine code.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "X86AsmPrinter.h"
16 #include "X86ATTInstPrinter.h"
17 #include "X86IntelInstPrinter.h"
18 #include "X86MCInstLower.h"
19 #include "X86.h"
20 #include "X86COFF.h"
21 #include "X86COFFMachineModuleInfo.h"
22 #include "X86MachineFunctionInfo.h"
23 #include "X86TargetMachine.h"
24 #include "llvm/CallingConv.h"
25 #include "llvm/DerivedTypes.h"
26 #include "llvm/Module.h"
27 #include "llvm/Type.h"
28 #include "llvm/Assembly/Writer.h"
29 #include "llvm/MC/MCAsmInfo.h"
30 #include "llvm/MC/MCContext.h"
31 #include "llvm/MC/MCExpr.h"
32 #include "llvm/MC/MCSectionMachO.h"
33 #include "llvm/MC/MCStreamer.h"
34 #include "llvm/MC/MCSymbol.h"
35 #include "llvm/CodeGen/MachineJumpTableInfo.h"
36 #include "llvm/CodeGen/MachineModuleInfoImpls.h"
37 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
38 #include "llvm/Support/ErrorHandling.h"
39 #include "llvm/Support/FormattedStream.h"
40 #include "llvm/Target/Mangler.h"
41 #include "llvm/Target/TargetOptions.h"
42 #include "llvm/Target/TargetRegistry.h"
43 #include "llvm/ADT/SmallString.h"
44 using namespace llvm;
45
46 //===----------------------------------------------------------------------===//
47 // Primitive Helper Functions.
48 //===----------------------------------------------------------------------===//
49
50 void X86AsmPrinter::PrintPICBaseSymbol(raw_ostream &O) const {
51   const TargetLowering *TLI = TM.getTargetLowering();
52   O << *static_cast<const X86TargetLowering*>(TLI)->getPICBaseSymbol(MF,
53                                                                     OutContext);
54 }
55
56 /// runOnMachineFunction - Emit the function body.
57 ///
58 bool X86AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
59   SetupMachineFunction(MF);
60
61   if (Subtarget->isTargetCOFF()) {
62     const Function *F = MF.getFunction();
63     OutStreamer.EmitRawText("\t.def\t " + Twine(CurrentFnSym->getName()) +
64                             ";\t.scl\t" +
65                 Twine(F->hasInternalLinkage() ? COFF::C_STAT : COFF::C_EXT) +
66                             ";\t.type\t" + Twine(COFF::DT_FCN << COFF::N_BTSHFT)
67                             + ";\t.endef");
68   }
69
70   // Have common code print out the function header with linkage info etc.
71   EmitFunctionHeader();
72
73   // Emit the rest of the function body.
74   EmitFunctionBody();
75
76   // We didn't modify anything.
77   return false;
78 }
79
80 /// printSymbolOperand - Print a raw symbol reference operand.  This handles
81 /// jump tables, constant pools, global address and external symbols, all of
82 /// which print to a label with various suffixes for relocation types etc.
83 void X86AsmPrinter::printSymbolOperand(const MachineOperand &MO,
84                                        raw_ostream &O) {
85   switch (MO.getType()) {
86   default: llvm_unreachable("unknown symbol type!");
87   case MachineOperand::MO_JumpTableIndex:
88     O << *GetJTISymbol(MO.getIndex());
89     break;
90   case MachineOperand::MO_ConstantPoolIndex:
91     O << *GetCPISymbol(MO.getIndex());
92     printOffset(MO.getOffset(), O);
93     break;
94   case MachineOperand::MO_GlobalAddress: {
95     const GlobalValue *GV = MO.getGlobal();
96     
97     MCSymbol *GVSym;
98     if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
99       GVSym = GetSymbolWithGlobalValueBase(GV, "$stub");
100     else if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
101              MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE ||
102              MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
103       GVSym = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
104     else
105       GVSym = Mang->getSymbol(GV);
106
107     // Handle dllimport linkage.
108     if (MO.getTargetFlags() == X86II::MO_DLLIMPORT)
109       GVSym = OutContext.GetOrCreateSymbol(Twine("__imp_") + GVSym->getName());
110     
111     if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
112         MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE) {
113       MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
114       MachineModuleInfoImpl::StubValueTy &StubSym = 
115         MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(Sym);
116       if (StubSym.getPointer() == 0)
117         StubSym = MachineModuleInfoImpl::
118           StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
119     } else if (MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE){
120       MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
121       MachineModuleInfoImpl::StubValueTy &StubSym =
122         MMI->getObjFileInfo<MachineModuleInfoMachO>().getHiddenGVStubEntry(Sym);
123       if (StubSym.getPointer() == 0)
124         StubSym = MachineModuleInfoImpl::
125           StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
126     } else if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
127       MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
128       MachineModuleInfoImpl::StubValueTy &StubSym =
129         MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
130       if (StubSym.getPointer() == 0)
131         StubSym = MachineModuleInfoImpl::
132           StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
133     }
134     
135     // If the name begins with a dollar-sign, enclose it in parens.  We do this
136     // to avoid having it look like an integer immediate to the assembler.
137     if (GVSym->getName()[0] != '$')
138       O << *GVSym;
139     else
140       O << '(' << *GVSym << ')';
141     printOffset(MO.getOffset(), O);
142     break;
143   }
144   case MachineOperand::MO_ExternalSymbol: {
145     const MCSymbol *SymToPrint;
146     if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
147       SmallString<128> TempNameStr;
148       TempNameStr += StringRef(MO.getSymbolName());
149       TempNameStr += StringRef("$stub");
150       
151       MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
152       MachineModuleInfoImpl::StubValueTy &StubSym =
153         MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
154       if (StubSym.getPointer() == 0) {
155         TempNameStr.erase(TempNameStr.end()-5, TempNameStr.end());
156         StubSym = MachineModuleInfoImpl::
157           StubValueTy(OutContext.GetOrCreateSymbol(TempNameStr.str()),
158                       true);
159       }
160       SymToPrint = StubSym.getPointer();
161     } else {
162       SymToPrint = GetExternalSymbolSymbol(MO.getSymbolName());
163     }
164     
165     // If the name begins with a dollar-sign, enclose it in parens.  We do this
166     // to avoid having it look like an integer immediate to the assembler.
167     if (SymToPrint->getName()[0] != '$') 
168       O << *SymToPrint;
169     else
170       O << '(' << *SymToPrint << '(';
171     break;
172   }
173   }
174   
175   switch (MO.getTargetFlags()) {
176   default:
177     llvm_unreachable("Unknown target flag on GV operand");
178   case X86II::MO_NO_FLAG:    // No flag.
179     break;
180   case X86II::MO_DARWIN_NONLAZY:
181   case X86II::MO_DLLIMPORT:
182   case X86II::MO_DARWIN_STUB:
183     // These affect the name of the symbol, not any suffix.
184     break;
185   case X86II::MO_GOT_ABSOLUTE_ADDRESS:
186     O << " + [.-";
187     PrintPICBaseSymbol(O);
188     O << ']';
189     break;      
190   case X86II::MO_PIC_BASE_OFFSET:
191   case X86II::MO_DARWIN_NONLAZY_PIC_BASE:
192   case X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE:
193     O << '-';
194     PrintPICBaseSymbol(O);
195     break;
196   case X86II::MO_TLSGD:     O << "@TLSGD";     break;
197   case X86II::MO_GOTTPOFF:  O << "@GOTTPOFF";  break;
198   case X86II::MO_INDNTPOFF: O << "@INDNTPOFF"; break;
199   case X86II::MO_TPOFF:     O << "@TPOFF";     break;
200   case X86II::MO_NTPOFF:    O << "@NTPOFF";    break;
201   case X86II::MO_GOTPCREL:  O << "@GOTPCREL";  break;
202   case X86II::MO_GOT:       O << "@GOT";       break;
203   case X86II::MO_GOTOFF:    O << "@GOTOFF";    break;
204   case X86II::MO_PLT:       O << "@PLT";       break;
205   }
206 }
207
208 /// print_pcrel_imm - This is used to print an immediate value that ends up
209 /// being encoded as a pc-relative value.  These print slightly differently, for
210 /// example, a $ is not emitted.
211 void X86AsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo,
212                                     raw_ostream &O) {
213   const MachineOperand &MO = MI->getOperand(OpNo);
214   switch (MO.getType()) {
215   default: llvm_unreachable("Unknown pcrel immediate operand");
216   case MachineOperand::MO_Immediate:
217     O << MO.getImm();
218     return;
219   case MachineOperand::MO_MachineBasicBlock:
220     O << *MO.getMBB()->getSymbol();
221     return;
222   case MachineOperand::MO_GlobalAddress:
223   case MachineOperand::MO_ExternalSymbol:
224     printSymbolOperand(MO, O);
225     return;
226   }
227 }
228
229
230 void X86AsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
231                                  raw_ostream &O, const char *Modifier) {
232   const MachineOperand &MO = MI->getOperand(OpNo);
233   switch (MO.getType()) {
234   default: llvm_unreachable("unknown operand type!");
235   case MachineOperand::MO_Register: {
236     O << '%';
237     unsigned Reg = MO.getReg();
238     if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
239       EVT VT = (strcmp(Modifier+6,"64") == 0) ?
240         MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
241                     ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
242       Reg = getX86SubSuperRegister(Reg, VT);
243     }
244     O << X86ATTInstPrinter::getRegisterName(Reg);
245     return;
246   }
247
248   case MachineOperand::MO_Immediate:
249     O << '$' << MO.getImm();
250     return;
251
252   case MachineOperand::MO_JumpTableIndex:
253   case MachineOperand::MO_ConstantPoolIndex:
254   case MachineOperand::MO_GlobalAddress: 
255   case MachineOperand::MO_ExternalSymbol: {
256     O << '$';
257     printSymbolOperand(MO, O);
258     break;
259   }
260   }
261 }
262
263 void X86AsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op,
264                                raw_ostream &O) {
265   unsigned char value = MI->getOperand(Op).getImm();
266   assert(value <= 7 && "Invalid ssecc argument!");
267   switch (value) {
268   case 0: O << "eq"; break;
269   case 1: O << "lt"; break;
270   case 2: O << "le"; break;
271   case 3: O << "unord"; break;
272   case 4: O << "neq"; break;
273   case 5: O << "nlt"; break;
274   case 6: O << "nle"; break;
275   case 7: O << "ord"; break;
276   }
277 }
278
279 void X86AsmPrinter::printLeaMemReference(const MachineInstr *MI, unsigned Op,
280                                          raw_ostream &O, const char *Modifier) {
281   const MachineOperand &BaseReg  = MI->getOperand(Op);
282   const MachineOperand &IndexReg = MI->getOperand(Op+2);
283   const MachineOperand &DispSpec = MI->getOperand(Op+3);
284
285   // If we really don't want to print out (rip), don't.
286   bool HasBaseReg = BaseReg.getReg() != 0;
287   if (HasBaseReg && Modifier && !strcmp(Modifier, "no-rip") &&
288       BaseReg.getReg() == X86::RIP)
289     HasBaseReg = false;
290   
291   // HasParenPart - True if we will print out the () part of the mem ref.
292   bool HasParenPart = IndexReg.getReg() || HasBaseReg;
293   
294   if (DispSpec.isImm()) {
295     int DispVal = DispSpec.getImm();
296     if (DispVal || !HasParenPart)
297       O << DispVal;
298   } else {
299     assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
300            DispSpec.isJTI() || DispSpec.isSymbol());
301     printSymbolOperand(MI->getOperand(Op+3), O);
302   }
303
304   if (HasParenPart) {
305     assert(IndexReg.getReg() != X86::ESP &&
306            "X86 doesn't allow scaling by ESP");
307
308     O << '(';
309     if (HasBaseReg)
310       printOperand(MI, Op, O, Modifier);
311
312     if (IndexReg.getReg()) {
313       O << ',';
314       printOperand(MI, Op+2, O, Modifier);
315       unsigned ScaleVal = MI->getOperand(Op+1).getImm();
316       if (ScaleVal != 1)
317         O << ',' << ScaleVal;
318     }
319     O << ')';
320   }
321 }
322
323 void X86AsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
324                                       raw_ostream &O, const char *Modifier) {
325   assert(isMem(MI, Op) && "Invalid memory reference!");
326   const MachineOperand &Segment = MI->getOperand(Op+4);
327   if (Segment.getReg()) {
328     printOperand(MI, Op+4, O, Modifier);
329     O << ':';
330   }
331   printLeaMemReference(MI, Op, O, Modifier);
332 }
333
334 void X86AsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op,
335                                   raw_ostream &O) {
336   PrintPICBaseSymbol(O);
337   O << '\n';
338   PrintPICBaseSymbol(O);
339   O << ':';
340 }
341
342 bool X86AsmPrinter::printAsmMRegister(const MachineOperand &MO, char Mode,
343                                       raw_ostream &O) {
344   unsigned Reg = MO.getReg();
345   switch (Mode) {
346   default: return true;  // Unknown mode.
347   case 'b': // Print QImode register
348     Reg = getX86SubSuperRegister(Reg, MVT::i8);
349     break;
350   case 'h': // Print QImode high register
351     Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
352     break;
353   case 'w': // Print HImode register
354     Reg = getX86SubSuperRegister(Reg, MVT::i16);
355     break;
356   case 'k': // Print SImode register
357     Reg = getX86SubSuperRegister(Reg, MVT::i32);
358     break;
359   case 'q': // Print DImode register
360     Reg = getX86SubSuperRegister(Reg, MVT::i64);
361     break;
362   }
363
364   O << '%' << X86ATTInstPrinter::getRegisterName(Reg);
365   return false;
366 }
367
368 /// PrintAsmOperand - Print out an operand for an inline asm expression.
369 ///
370 bool X86AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
371                                     unsigned AsmVariant,
372                                     const char *ExtraCode, raw_ostream &O) {
373   // Does this asm operand have a single letter operand modifier?
374   if (ExtraCode && ExtraCode[0]) {
375     if (ExtraCode[1] != 0) return true; // Unknown modifier.
376
377     const MachineOperand &MO = MI->getOperand(OpNo);
378     
379     switch (ExtraCode[0]) {
380     default: return true;  // Unknown modifier.
381     case 'a': // This is an address.  Currently only 'i' and 'r' are expected.
382       if (MO.isImm()) {
383         O << MO.getImm();
384         return false;
385       } 
386       if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol()) {
387         printSymbolOperand(MO, O);
388         return false;
389       }
390       if (MO.isReg()) {
391         O << '(';
392         printOperand(MI, OpNo, O);
393         O << ')';
394         return false;
395       }
396       return true;
397
398     case 'c': // Don't print "$" before a global var name or constant.
399       if (MO.isImm())
400         O << MO.getImm();
401       else if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol())
402         printSymbolOperand(MO, O);
403       else
404         printOperand(MI, OpNo, O);
405       return false;
406
407     case 'A': // Print '*' before a register (it must be a register)
408       if (MO.isReg()) {
409         O << '*';
410         printOperand(MI, OpNo, O);
411         return false;
412       }
413       return true;
414
415     case 'b': // Print QImode register
416     case 'h': // Print QImode high register
417     case 'w': // Print HImode register
418     case 'k': // Print SImode register
419     case 'q': // Print DImode register
420       if (MO.isReg())
421         return printAsmMRegister(MO, ExtraCode[0], O);
422       printOperand(MI, OpNo, O);
423       return false;
424
425     case 'P': // This is the operand of a call, treat specially.
426       print_pcrel_imm(MI, OpNo, O);
427       return false;
428
429     case 'n':  // Negate the immediate or print a '-' before the operand.
430       // Note: this is a temporary solution. It should be handled target
431       // independently as part of the 'MC' work.
432       if (MO.isImm()) {
433         O << -MO.getImm();
434         return false;
435       }
436       O << '-';
437     }
438   }
439
440   printOperand(MI, OpNo, O);
441   return false;
442 }
443
444 bool X86AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
445                                           unsigned OpNo, unsigned AsmVariant,
446                                           const char *ExtraCode,
447                                           raw_ostream &O) {
448   if (ExtraCode && ExtraCode[0]) {
449     if (ExtraCode[1] != 0) return true; // Unknown modifier.
450
451     switch (ExtraCode[0]) {
452     default: return true;  // Unknown modifier.
453     case 'b': // Print QImode register
454     case 'h': // Print QImode high register
455     case 'w': // Print HImode register
456     case 'k': // Print SImode register
457     case 'q': // Print SImode register
458       // These only apply to registers, ignore on mem.
459       break;
460     case 'P': // Don't print @PLT, but do print as memory.
461       printMemReference(MI, OpNo, O, "no-rip");
462       return false;
463     }
464   }
465   printMemReference(MI, OpNo, O);
466   return false;
467 }
468
469 void X86AsmPrinter::EmitStartOfAsmFile(Module &M) {
470   if (Subtarget->isTargetDarwin())
471     OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
472 }
473
474
475 void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
476   if (Subtarget->isTargetDarwin()) {
477     // All darwin targets use mach-o.
478     TargetLoweringObjectFileMachO &TLOFMacho = 
479       static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
480     
481     MachineModuleInfoMachO &MMIMacho =
482       MMI->getObjFileInfo<MachineModuleInfoMachO>();
483     
484     // Output stubs for dynamically-linked functions.
485     MachineModuleInfoMachO::SymbolListTy Stubs;
486
487     Stubs = MMIMacho.GetFnStubList();
488     if (!Stubs.empty()) {
489       const MCSection *TheSection = 
490         TLOFMacho.getMachOSection("__IMPORT", "__jump_table",
491                                   MCSectionMachO::S_SYMBOL_STUBS |
492                                   MCSectionMachO::S_ATTR_SELF_MODIFYING_CODE |
493                                   MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
494                                   5, SectionKind::getMetadata());
495       OutStreamer.SwitchSection(TheSection);
496
497       for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
498         // L_foo$stub:
499         OutStreamer.EmitLabel(Stubs[i].first);
500         //   .indirect_symbol _foo
501         OutStreamer.EmitSymbolAttribute(Stubs[i].second.getPointer(),
502                                         MCSA_IndirectSymbol);
503         // hlt; hlt; hlt; hlt; hlt     hlt = 0xf4 = -12.
504         const char HltInsts[] = { -12, -12, -12, -12, -12 };
505         OutStreamer.EmitBytes(StringRef(HltInsts, 5), 0/*addrspace*/);
506       }
507       
508       Stubs.clear();
509       OutStreamer.AddBlankLine();
510     }
511
512     // Output stubs for external and common global variables.
513     Stubs = MMIMacho.GetGVStubList();
514     if (!Stubs.empty()) {
515       const MCSection *TheSection = 
516         TLOFMacho.getMachOSection("__IMPORT", "__pointers",
517                                   MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
518                                   SectionKind::getMetadata());
519       OutStreamer.SwitchSection(TheSection);
520
521       for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
522         // L_foo$non_lazy_ptr:
523         OutStreamer.EmitLabel(Stubs[i].first);
524         // .indirect_symbol _foo
525         MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
526         OutStreamer.EmitSymbolAttribute(MCSym.getPointer(),
527                                         MCSA_IndirectSymbol);
528         // .long 0
529         if (MCSym.getInt())
530           // External to current translation unit.
531           OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
532         else
533           // Internal to current translation unit.
534           //
535           // When we place the LSDA into the TEXT section, the type info
536           // pointers need to be indirect and pc-rel. We accomplish this by
537           // using NLPs.  However, sometimes the types are local to the file. So
538           // we need to fill in the value for the NLP in those cases.
539           OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
540                                                         OutContext),
541                                 4/*size*/, 0/*addrspace*/);
542       }
543       Stubs.clear();
544       OutStreamer.AddBlankLine();
545     }
546
547     Stubs = MMIMacho.GetHiddenGVStubList();
548     if (!Stubs.empty()) {
549       OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
550       EmitAlignment(2);
551
552       for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
553         // L_foo$non_lazy_ptr:
554         OutStreamer.EmitLabel(Stubs[i].first);
555         // .long _foo
556         OutStreamer.EmitValue(MCSymbolRefExpr::
557                               Create(Stubs[i].second.getPointer(),
558                                      OutContext),
559                               4/*size*/, 0/*addrspace*/);
560       }
561       Stubs.clear();
562       OutStreamer.AddBlankLine();
563     }
564
565     // Funny Darwin hack: This flag tells the linker that no global symbols
566     // contain code that falls through to other global symbols (e.g. the obvious
567     // implementation of multiple entry points).  If this doesn't occur, the
568     // linker can safely perform dead code stripping.  Since LLVM never
569     // generates code that does this, it is always safe to set.
570     OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
571   }
572
573   if (Subtarget->isTargetCOFF()) {
574     X86COFFMachineModuleInfo &COFFMMI =
575       MMI->getObjFileInfo<X86COFFMachineModuleInfo>();
576
577     // Emit type information for external functions
578     for (X86COFFMachineModuleInfo::stub_iterator I = COFFMMI.stub_begin(),
579            E = COFFMMI.stub_end(); I != E; ++I) {
580       O << "\t.def\t " << I->getKeyData()
581         << ";\t.scl\t" << COFF::C_EXT
582         << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
583         << ";\t.endef\n";
584     }
585
586     if (Subtarget->isTargetCygMing()) {
587       // Necessary for dllexport support
588       std::vector<const MCSymbol*> DLLExportedFns, DLLExportedGlobals;
589
590       TargetLoweringObjectFileCOFF &TLOFCOFF =
591         static_cast<TargetLoweringObjectFileCOFF&>(getObjFileLowering());
592
593       for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I)
594         if (I->hasDLLExportLinkage())
595           DLLExportedFns.push_back(Mang->getSymbol(I));
596
597       for (Module::const_global_iterator I = M.global_begin(),
598              E = M.global_end(); I != E; ++I)
599         if (I->hasDLLExportLinkage())
600           DLLExportedGlobals.push_back(Mang->getSymbol(I));
601
602       // Output linker support code for dllexported globals on windows.
603       if (!DLLExportedGlobals.empty() || !DLLExportedFns.empty()) {
604         OutStreamer.SwitchSection(TLOFCOFF.getCOFFSection(".section .drectve",
605                                                           true,
606                                                    SectionKind::getMetadata()));
607         for (unsigned i = 0, e = DLLExportedGlobals.size(); i != e; ++i)
608           O << "\t.ascii \" -export:" << *DLLExportedGlobals[i] << ",data\"\n";
609
610         for (unsigned i = 0, e = DLLExportedFns.size(); i != e; ++i)
611           O << "\t.ascii \" -export:" << *DLLExportedFns[i] << "\"\n";
612       }
613     }
614   }
615
616   if (Subtarget->isTargetELF()) {
617     TargetLoweringObjectFileELF &TLOFELF =
618       static_cast<TargetLoweringObjectFileELF &>(getObjFileLowering());
619
620     MachineModuleInfoELF &MMIELF = MMI->getObjFileInfo<MachineModuleInfoELF>();
621
622     // Output stubs for external and common global variables.
623     MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
624     if (!Stubs.empty()) {
625       OutStreamer.SwitchSection(TLOFELF.getDataRelSection());
626       const TargetData *TD = TM.getTargetData();
627
628       for (unsigned i = 0, e = Stubs.size(); i != e; ++i)
629         O << *Stubs[i].first << ":\n"
630           << (TD->getPointerSize() == 8 ?
631               MAI->getData64bitsDirective() : MAI->getData32bitsDirective())
632           << *Stubs[i].second.getPointer() << '\n';
633
634       Stubs.clear();
635     }
636   }
637 }
638
639
640 //===----------------------------------------------------------------------===//
641 // Target Registry Stuff
642 //===----------------------------------------------------------------------===//
643
644 static MCInstPrinter *createX86MCInstPrinter(const Target &T,
645                                              unsigned SyntaxVariant,
646                                              const MCAsmInfo &MAI) {
647   if (SyntaxVariant == 0)
648     return new X86ATTInstPrinter(MAI);
649   if (SyntaxVariant == 1)
650     return new X86IntelInstPrinter(MAI);
651   return 0;
652 }
653
654 // Force static initialization.
655 extern "C" void LLVMInitializeX86AsmPrinter() { 
656   RegisterAsmPrinter<X86AsmPrinter> X(TheX86_32Target);
657   RegisterAsmPrinter<X86AsmPrinter> Y(TheX86_64Target);
658   
659   TargetRegistry::RegisterMCInstPrinter(TheX86_32Target,createX86MCInstPrinter);
660   TargetRegistry::RegisterMCInstPrinter(TheX86_64Target,createX86MCInstPrinter);
661 }