dcfbdb644777e5841ac9785629a64c6130faabe7
[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) {
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   if (ExtraCode && ExtraCode[0]) {
448     if (ExtraCode[1] != 0) return true; // Unknown modifier.
449
450     switch (ExtraCode[0]) {
451     default: return true;  // Unknown modifier.
452     case 'b': // Print QImode register
453     case 'h': // Print QImode high register
454     case 'w': // Print HImode register
455     case 'k': // Print SImode register
456     case 'q': // Print SImode register
457       // These only apply to registers, ignore on mem.
458       break;
459     case 'P': // Don't print @PLT, but do print as memory.
460       printMemReference(MI, OpNo, O, "no-rip");
461       return false;
462     }
463   }
464   printMemReference(MI, OpNo, O);
465   return false;
466 }
467
468 void X86AsmPrinter::EmitStartOfAsmFile(Module &M) {
469   if (Subtarget->isTargetDarwin())
470     OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
471 }
472
473
474 void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
475   if (Subtarget->isTargetDarwin()) {
476     // All darwin targets use mach-o.
477     TargetLoweringObjectFileMachO &TLOFMacho = 
478       static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
479     
480     MachineModuleInfoMachO &MMIMacho =
481       MMI->getObjFileInfo<MachineModuleInfoMachO>();
482     
483     // Output stubs for dynamically-linked functions.
484     MachineModuleInfoMachO::SymbolListTy Stubs;
485
486     Stubs = MMIMacho.GetFnStubList();
487     if (!Stubs.empty()) {
488       const MCSection *TheSection = 
489         TLOFMacho.getMachOSection("__IMPORT", "__jump_table",
490                                   MCSectionMachO::S_SYMBOL_STUBS |
491                                   MCSectionMachO::S_ATTR_SELF_MODIFYING_CODE |
492                                   MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
493                                   5, SectionKind::getMetadata());
494       OutStreamer.SwitchSection(TheSection);
495
496       for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
497         // L_foo$stub:
498         OutStreamer.EmitLabel(Stubs[i].first);
499         //   .indirect_symbol _foo
500         OutStreamer.EmitSymbolAttribute(Stubs[i].second.getPointer(),
501                                         MCSA_IndirectSymbol);
502         // hlt; hlt; hlt; hlt; hlt     hlt = 0xf4 = -12.
503         const char HltInsts[] = { -12, -12, -12, -12, -12 };
504         OutStreamer.EmitBytes(StringRef(HltInsts, 5), 0/*addrspace*/);
505       }
506       
507       Stubs.clear();
508       OutStreamer.AddBlankLine();
509     }
510
511     // Output stubs for external and common global variables.
512     Stubs = MMIMacho.GetGVStubList();
513     if (!Stubs.empty()) {
514       const MCSection *TheSection = 
515         TLOFMacho.getMachOSection("__IMPORT", "__pointers",
516                                   MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS,
517                                   SectionKind::getMetadata());
518       OutStreamer.SwitchSection(TheSection);
519
520       for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
521         // L_foo$non_lazy_ptr:
522         OutStreamer.EmitLabel(Stubs[i].first);
523         // .indirect_symbol _foo
524         MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
525         OutStreamer.EmitSymbolAttribute(MCSym.getPointer(),
526                                         MCSA_IndirectSymbol);
527         // .long 0
528         if (MCSym.getInt())
529           // External to current translation unit.
530           OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
531         else
532           // Internal to current translation unit.
533           //
534           // When we place the LSDA into the TEXT section, the type info
535           // pointers need to be indirect and pc-rel. We accomplish this by
536           // using NLPs.  However, sometimes the types are local to the file. So
537           // we need to fill in the value for the NLP in those cases.
538           OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
539                                                         OutContext),
540                                 4/*size*/, 0/*addrspace*/);
541       }
542       Stubs.clear();
543       OutStreamer.AddBlankLine();
544     }
545
546     Stubs = MMIMacho.GetHiddenGVStubList();
547     if (!Stubs.empty()) {
548       OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
549       EmitAlignment(2);
550
551       for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
552         // L_foo$non_lazy_ptr:
553         OutStreamer.EmitLabel(Stubs[i].first);
554         // .long _foo
555         OutStreamer.EmitValue(MCSymbolRefExpr::
556                               Create(Stubs[i].second.getPointer(),
557                                      OutContext),
558                               4/*size*/, 0/*addrspace*/);
559       }
560       Stubs.clear();
561       OutStreamer.AddBlankLine();
562     }
563
564     // Funny Darwin hack: This flag tells the linker that no global symbols
565     // contain code that falls through to other global symbols (e.g. the obvious
566     // implementation of multiple entry points).  If this doesn't occur, the
567     // linker can safely perform dead code stripping.  Since LLVM never
568     // generates code that does this, it is always safe to set.
569     OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
570   }
571
572   if (Subtarget->isTargetCOFF()) {
573     X86COFFMachineModuleInfo &COFFMMI =
574       MMI->getObjFileInfo<X86COFFMachineModuleInfo>();
575
576     // Emit type information for external functions
577     for (X86COFFMachineModuleInfo::stub_iterator I = COFFMMI.stub_begin(),
578            E = COFFMMI.stub_end(); I != E; ++I) {
579       O << "\t.def\t " << I->getKeyData()
580         << ";\t.scl\t" << COFF::C_EXT
581         << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
582         << ";\t.endef\n";
583     }
584
585     if (Subtarget->isTargetCygMing()) {
586       // Necessary for dllexport support
587       std::vector<const MCSymbol*> DLLExportedFns, DLLExportedGlobals;
588
589       TargetLoweringObjectFileCOFF &TLOFCOFF =
590         static_cast<TargetLoweringObjectFileCOFF&>(getObjFileLowering());
591
592       for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I)
593         if (I->hasDLLExportLinkage())
594           DLLExportedFns.push_back(Mang->getSymbol(I));
595
596       for (Module::const_global_iterator I = M.global_begin(),
597              E = M.global_end(); I != E; ++I)
598         if (I->hasDLLExportLinkage())
599           DLLExportedGlobals.push_back(Mang->getSymbol(I));
600
601       // Output linker support code for dllexported globals on windows.
602       if (!DLLExportedGlobals.empty() || !DLLExportedFns.empty()) {
603         OutStreamer.SwitchSection(TLOFCOFF.getCOFFSection(".section .drectve",
604                                                           true,
605                                                    SectionKind::getMetadata()));
606         for (unsigned i = 0, e = DLLExportedGlobals.size(); i != e; ++i)
607           O << "\t.ascii \" -export:" << *DLLExportedGlobals[i] << ",data\"\n";
608
609         for (unsigned i = 0, e = DLLExportedFns.size(); i != e; ++i)
610           O << "\t.ascii \" -export:" << *DLLExportedFns[i] << "\"\n";
611       }
612     }
613   }
614
615   if (Subtarget->isTargetELF()) {
616     TargetLoweringObjectFileELF &TLOFELF =
617       static_cast<TargetLoweringObjectFileELF &>(getObjFileLowering());
618
619     MachineModuleInfoELF &MMIELF = MMI->getObjFileInfo<MachineModuleInfoELF>();
620
621     // Output stubs for external and common global variables.
622     MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
623     if (!Stubs.empty()) {
624       OutStreamer.SwitchSection(TLOFELF.getDataRelSection());
625       const TargetData *TD = TM.getTargetData();
626
627       for (unsigned i = 0, e = Stubs.size(); i != e; ++i)
628         O << *Stubs[i].first << ":\n"
629           << (TD->getPointerSize() == 8 ?
630               MAI->getData64bitsDirective() : MAI->getData32bitsDirective())
631           << *Stubs[i].second.getPointer() << '\n';
632
633       Stubs.clear();
634     }
635   }
636 }
637
638
639 //===----------------------------------------------------------------------===//
640 // Target Registry Stuff
641 //===----------------------------------------------------------------------===//
642
643 static MCInstPrinter *createX86MCInstPrinter(const Target &T,
644                                              unsigned SyntaxVariant,
645                                              const MCAsmInfo &MAI) {
646   if (SyntaxVariant == 0)
647     return new X86ATTInstPrinter(MAI);
648   if (SyntaxVariant == 1)
649     return new X86IntelInstPrinter(MAI);
650   return 0;
651 }
652
653 // Force static initialization.
654 extern "C" void LLVMInitializeX86AsmPrinter() { 
655   RegisterAsmPrinter<X86AsmPrinter> X(TheX86_32Target);
656   RegisterAsmPrinter<X86AsmPrinter> Y(TheX86_64Target);
657   
658   TargetRegistry::RegisterMCInstPrinter(TheX86_32Target,createX86MCInstPrinter);
659   TargetRegistry::RegisterMCInstPrinter(TheX86_64Target,createX86MCInstPrinter);
660 }