Revert r233595, "MC: For variable symbols, maintain MCSymbol::Section as a cache."
[oota-llvm.git] / lib / Target / X86 / 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 "InstPrinter/X86ATTInstPrinter.h"
17 #include "MCTargetDesc/X86BaseInfo.h"
18 #include "X86InstrInfo.h"
19 #include "X86MachineFunctionInfo.h"
20 #include "llvm/ADT/SmallString.h"
21 #include "llvm/CodeGen/MachineConstantPool.h"
22 #include "llvm/CodeGen/MachineModuleInfoImpls.h"
23 #include "llvm/CodeGen/MachineValueType.h"
24 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
25 #include "llvm/IR/DebugInfo.h"
26 #include "llvm/IR/DerivedTypes.h"
27 #include "llvm/IR/Mangler.h"
28 #include "llvm/IR/Module.h"
29 #include "llvm/IR/Type.h"
30 #include "llvm/MC/MCAsmInfo.h"
31 #include "llvm/MC/MCContext.h"
32 #include "llvm/MC/MCExpr.h"
33 #include "llvm/MC/MCSectionCOFF.h"
34 #include "llvm/MC/MCSectionMachO.h"
35 #include "llvm/MC/MCStreamer.h"
36 #include "llvm/MC/MCSymbol.h"
37 #include "llvm/Support/COFF.h"
38 #include "llvm/Support/Debug.h"
39 #include "llvm/Support/ErrorHandling.h"
40 #include "llvm/Support/TargetRegistry.h"
41 using namespace llvm;
42
43 //===----------------------------------------------------------------------===//
44 // Primitive Helper Functions.
45 //===----------------------------------------------------------------------===//
46
47 /// runOnMachineFunction - Emit the function body.
48 ///
49 bool X86AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
50   Subtarget = &MF.getSubtarget<X86Subtarget>();
51
52   SMShadowTracker.startFunction(MF);
53
54   SetupMachineFunction(MF);
55
56   if (Subtarget->isTargetCOFF()) {
57     bool Intrn = MF.getFunction()->hasInternalLinkage();
58     OutStreamer.BeginCOFFSymbolDef(CurrentFnSym);
59     OutStreamer.EmitCOFFSymbolStorageClass(Intrn ? COFF::IMAGE_SYM_CLASS_STATIC
60                                               : COFF::IMAGE_SYM_CLASS_EXTERNAL);
61     OutStreamer.EmitCOFFSymbolType(COFF::IMAGE_SYM_DTYPE_FUNCTION
62                                                << COFF::SCT_COMPLEX_TYPE_SHIFT);
63     OutStreamer.EndCOFFSymbolDef();
64   }
65
66   // Emit the rest of the function body.
67   EmitFunctionBody();
68
69   // We didn't modify anything.
70   return false;
71 }
72
73 /// printSymbolOperand - Print a raw symbol reference operand.  This handles
74 /// jump tables, constant pools, global address and external symbols, all of
75 /// which print to a label with various suffixes for relocation types etc.
76 static void printSymbolOperand(X86AsmPrinter &P, const MachineOperand &MO,
77                                raw_ostream &O) {
78   switch (MO.getType()) {
79   default: llvm_unreachable("unknown symbol type!");
80   case MachineOperand::MO_ConstantPoolIndex:
81     O << *P.GetCPISymbol(MO.getIndex());
82     P.printOffset(MO.getOffset(), O);
83     break;
84   case MachineOperand::MO_GlobalAddress: {
85     const GlobalValue *GV = MO.getGlobal();
86
87     MCSymbol *GVSym;
88     if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB)
89       GVSym = P.getSymbolWithGlobalValueBase(GV, "$stub");
90     else if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
91              MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE ||
92              MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE)
93       GVSym = P.getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
94     else
95       GVSym = P.getSymbol(GV);
96
97     // Handle dllimport linkage.
98     if (MO.getTargetFlags() == X86II::MO_DLLIMPORT)
99       GVSym =
100           P.OutContext.GetOrCreateSymbol(Twine("__imp_") + GVSym->getName());
101
102     if (MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY ||
103         MO.getTargetFlags() == X86II::MO_DARWIN_NONLAZY_PIC_BASE) {
104       MCSymbol *Sym = P.getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
105       MachineModuleInfoImpl::StubValueTy &StubSym =
106           P.MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(Sym);
107       if (!StubSym.getPointer())
108         StubSym = MachineModuleInfoImpl::
109           StubValueTy(P.getSymbol(GV), !GV->hasInternalLinkage());
110     } else if (MO.getTargetFlags() == X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE){
111       MCSymbol *Sym = P.getSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
112       MachineModuleInfoImpl::StubValueTy &StubSym =
113           P.MMI->getObjFileInfo<MachineModuleInfoMachO>().getHiddenGVStubEntry(
114               Sym);
115       if (!StubSym.getPointer())
116         StubSym = MachineModuleInfoImpl::
117           StubValueTy(P.getSymbol(GV), !GV->hasInternalLinkage());
118     } else if (MO.getTargetFlags() == X86II::MO_DARWIN_STUB) {
119       MCSymbol *Sym = P.getSymbolWithGlobalValueBase(GV, "$stub");
120       MachineModuleInfoImpl::StubValueTy &StubSym =
121           P.MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
122       if (!StubSym.getPointer())
123         StubSym = MachineModuleInfoImpl::
124           StubValueTy(P.getSymbol(GV), !GV->hasInternalLinkage());
125     }
126
127     // If the name begins with a dollar-sign, enclose it in parens.  We do this
128     // to avoid having it look like an integer immediate to the assembler.
129     if (GVSym->getName()[0] != '$')
130       O << *GVSym;
131     else
132       O << '(' << *GVSym << ')';
133     P.printOffset(MO.getOffset(), O);
134     break;
135   }
136   }
137
138   switch (MO.getTargetFlags()) {
139   default:
140     llvm_unreachable("Unknown target flag on GV operand");
141   case X86II::MO_NO_FLAG:    // No flag.
142     break;
143   case X86II::MO_DARWIN_NONLAZY:
144   case X86II::MO_DLLIMPORT:
145   case X86II::MO_DARWIN_STUB:
146     // These affect the name of the symbol, not any suffix.
147     break;
148   case X86II::MO_GOT_ABSOLUTE_ADDRESS:
149     O << " + [.-" << *P.MF->getPICBaseSymbol() << ']';
150     break;
151   case X86II::MO_PIC_BASE_OFFSET:
152   case X86II::MO_DARWIN_NONLAZY_PIC_BASE:
153   case X86II::MO_DARWIN_HIDDEN_NONLAZY_PIC_BASE:
154     O << '-' << *P.MF->getPICBaseSymbol();
155     break;
156   case X86II::MO_TLSGD:     O << "@TLSGD";     break;
157   case X86II::MO_TLSLD:     O << "@TLSLD";     break;
158   case X86II::MO_TLSLDM:    O << "@TLSLDM";    break;
159   case X86II::MO_GOTTPOFF:  O << "@GOTTPOFF";  break;
160   case X86II::MO_INDNTPOFF: O << "@INDNTPOFF"; break;
161   case X86II::MO_TPOFF:     O << "@TPOFF";     break;
162   case X86II::MO_DTPOFF:    O << "@DTPOFF";    break;
163   case X86II::MO_NTPOFF:    O << "@NTPOFF";    break;
164   case X86II::MO_GOTNTPOFF: O << "@GOTNTPOFF"; break;
165   case X86II::MO_GOTPCREL:  O << "@GOTPCREL";  break;
166   case X86II::MO_GOT:       O << "@GOT";       break;
167   case X86II::MO_GOTOFF:    O << "@GOTOFF";    break;
168   case X86II::MO_PLT:       O << "@PLT";       break;
169   case X86II::MO_TLVP:      O << "@TLVP";      break;
170   case X86II::MO_TLVP_PIC_BASE:
171     O << "@TLVP" << '-' << *P.MF->getPICBaseSymbol();
172     break;
173   case X86II::MO_SECREL:    O << "@SECREL32";  break;
174   }
175 }
176
177 static void printOperand(X86AsmPrinter &P, const MachineInstr *MI,
178                          unsigned OpNo, raw_ostream &O,
179                          const char *Modifier = nullptr, unsigned AsmVariant = 0);
180
181 /// printPCRelImm - This is used to print an immediate value that ends up
182 /// being encoded as a pc-relative value.  These print slightly differently, for
183 /// example, a $ is not emitted.
184 static void printPCRelImm(X86AsmPrinter &P, const MachineInstr *MI,
185                           unsigned OpNo, raw_ostream &O) {
186   const MachineOperand &MO = MI->getOperand(OpNo);
187   switch (MO.getType()) {
188   default: llvm_unreachable("Unknown pcrel immediate operand");
189   case MachineOperand::MO_Register:
190     // pc-relativeness was handled when computing the value in the reg.
191     printOperand(P, MI, OpNo, O);
192     return;
193   case MachineOperand::MO_Immediate:
194     O << MO.getImm();
195     return;
196   case MachineOperand::MO_GlobalAddress:
197     printSymbolOperand(P, MO, O);
198     return;
199   }
200 }
201
202 static void printOperand(X86AsmPrinter &P, const MachineInstr *MI,
203                          unsigned OpNo, raw_ostream &O, const char *Modifier,
204                          unsigned AsmVariant) {
205   const MachineOperand &MO = MI->getOperand(OpNo);
206   switch (MO.getType()) {
207   default: llvm_unreachable("unknown operand type!");
208   case MachineOperand::MO_Register: {
209     // FIXME: Enumerating AsmVariant, so we can remove magic number.
210     if (AsmVariant == 0) O << '%';
211     unsigned Reg = MO.getReg();
212     if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
213       MVT::SimpleValueType VT = (strcmp(Modifier+6,"64") == 0) ?
214         MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
215                     ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
216       Reg = getX86SubSuperRegister(Reg, VT);
217     }
218     O << X86ATTInstPrinter::getRegisterName(Reg);
219     return;
220   }
221
222   case MachineOperand::MO_Immediate:
223     if (AsmVariant == 0) O << '$';
224     O << MO.getImm();
225     return;
226
227   case MachineOperand::MO_GlobalAddress: {
228     if (AsmVariant == 0) O << '$';
229     printSymbolOperand(P, MO, O);
230     break;
231   }
232   }
233 }
234
235 static void printLeaMemReference(X86AsmPrinter &P, const MachineInstr *MI,
236                                  unsigned Op, raw_ostream &O,
237                                  const char *Modifier = nullptr) {
238   const MachineOperand &BaseReg  = MI->getOperand(Op+X86::AddrBaseReg);
239   const MachineOperand &IndexReg = MI->getOperand(Op+X86::AddrIndexReg);
240   const MachineOperand &DispSpec = MI->getOperand(Op+X86::AddrDisp);
241
242   // If we really don't want to print out (rip), don't.
243   bool HasBaseReg = BaseReg.getReg() != 0;
244   if (HasBaseReg && Modifier && !strcmp(Modifier, "no-rip") &&
245       BaseReg.getReg() == X86::RIP)
246     HasBaseReg = false;
247
248   // HasParenPart - True if we will print out the () part of the mem ref.
249   bool HasParenPart = IndexReg.getReg() || HasBaseReg;
250
251   switch (DispSpec.getType()) {
252   default:
253     llvm_unreachable("unknown operand type!");
254   case MachineOperand::MO_Immediate: {
255     int DispVal = DispSpec.getImm();
256     if (DispVal || !HasParenPart)
257       O << DispVal;
258     break;
259   }
260   case MachineOperand::MO_GlobalAddress:
261   case MachineOperand::MO_ConstantPoolIndex:
262     printSymbolOperand(P, DispSpec, O);
263   }
264
265   if (Modifier && strcmp(Modifier, "H") == 0)
266     O << "+8";
267
268   if (HasParenPart) {
269     assert(IndexReg.getReg() != X86::ESP &&
270            "X86 doesn't allow scaling by ESP");
271
272     O << '(';
273     if (HasBaseReg)
274       printOperand(P, MI, Op+X86::AddrBaseReg, O, Modifier);
275
276     if (IndexReg.getReg()) {
277       O << ',';
278       printOperand(P, MI, Op+X86::AddrIndexReg, O, Modifier);
279       unsigned ScaleVal = MI->getOperand(Op+X86::AddrScaleAmt).getImm();
280       if (ScaleVal != 1)
281         O << ',' << ScaleVal;
282     }
283     O << ')';
284   }
285 }
286
287 static void printMemReference(X86AsmPrinter &P, const MachineInstr *MI,
288                               unsigned Op, raw_ostream &O,
289                               const char *Modifier = nullptr) {
290   assert(isMem(MI, Op) && "Invalid memory reference!");
291   const MachineOperand &Segment = MI->getOperand(Op+X86::AddrSegmentReg);
292   if (Segment.getReg()) {
293     printOperand(P, MI, Op+X86::AddrSegmentReg, O, Modifier);
294     O << ':';
295   }
296   printLeaMemReference(P, MI, Op, O, Modifier);
297 }
298
299 static void printIntelMemReference(X86AsmPrinter &P, const MachineInstr *MI,
300                                    unsigned Op, raw_ostream &O,
301                                    const char *Modifier = nullptr,
302                                    unsigned AsmVariant = 1) {
303   const MachineOperand &BaseReg  = MI->getOperand(Op+X86::AddrBaseReg);
304   unsigned ScaleVal = MI->getOperand(Op+X86::AddrScaleAmt).getImm();
305   const MachineOperand &IndexReg = MI->getOperand(Op+X86::AddrIndexReg);
306   const MachineOperand &DispSpec = MI->getOperand(Op+X86::AddrDisp);
307   const MachineOperand &SegReg   = MI->getOperand(Op+X86::AddrSegmentReg);
308
309   // If this has a segment register, print it.
310   if (SegReg.getReg()) {
311     printOperand(P, MI, Op+X86::AddrSegmentReg, O, Modifier, AsmVariant);
312     O << ':';
313   }
314
315   O << '[';
316
317   bool NeedPlus = false;
318   if (BaseReg.getReg()) {
319     printOperand(P, MI, Op+X86::AddrBaseReg, O, Modifier, AsmVariant);
320     NeedPlus = true;
321   }
322
323   if (IndexReg.getReg()) {
324     if (NeedPlus) O << " + ";
325     if (ScaleVal != 1)
326       O << ScaleVal << '*';
327     printOperand(P, MI, Op+X86::AddrIndexReg, O, Modifier, AsmVariant);
328     NeedPlus = true;
329   }
330
331   if (!DispSpec.isImm()) {
332     if (NeedPlus) O << " + ";
333     printOperand(P, MI, Op+X86::AddrDisp, O, Modifier, AsmVariant);
334   } else {
335     int64_t DispVal = DispSpec.getImm();
336     if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg())) {
337       if (NeedPlus) {
338         if (DispVal > 0)
339           O << " + ";
340         else {
341           O << " - ";
342           DispVal = -DispVal;
343         }
344       }
345       O << DispVal;
346     }
347   }
348   O << ']';
349 }
350
351 static bool printAsmMRegister(X86AsmPrinter &P, const MachineOperand &MO,
352                               char Mode, raw_ostream &O) {
353   unsigned Reg = MO.getReg();
354   switch (Mode) {
355   default: return true;  // Unknown mode.
356   case 'b': // Print QImode register
357     Reg = getX86SubSuperRegister(Reg, MVT::i8);
358     break;
359   case 'h': // Print QImode high register
360     Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
361     break;
362   case 'w': // Print HImode register
363     Reg = getX86SubSuperRegister(Reg, MVT::i16);
364     break;
365   case 'k': // Print SImode register
366     Reg = getX86SubSuperRegister(Reg, MVT::i32);
367     break;
368   case 'q':
369     // Print 64-bit register names if 64-bit integer registers are available.
370     // Otherwise, print 32-bit register names.
371     MVT::SimpleValueType Ty = P.getSubtarget().is64Bit() ? MVT::i64 : MVT::i32;
372     Reg = getX86SubSuperRegister(Reg, Ty);
373     break;
374   }
375
376   O << '%' << X86ATTInstPrinter::getRegisterName(Reg);
377   return false;
378 }
379
380 /// PrintAsmOperand - Print out an operand for an inline asm expression.
381 ///
382 bool X86AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
383                                     unsigned AsmVariant,
384                                     const char *ExtraCode, raw_ostream &O) {
385   // Does this asm operand have a single letter operand modifier?
386   if (ExtraCode && ExtraCode[0]) {
387     if (ExtraCode[1] != 0) return true; // Unknown modifier.
388
389     const MachineOperand &MO = MI->getOperand(OpNo);
390
391     switch (ExtraCode[0]) {
392     default:
393       // See if this is a generic print operand
394       return AsmPrinter::PrintAsmOperand(MI, OpNo, AsmVariant, ExtraCode, O);
395     case 'a': // This is an address.  Currently only 'i' and 'r' are expected.
396       switch (MO.getType()) {
397       default:
398         return true;
399       case MachineOperand::MO_Immediate:
400         O << MO.getImm();
401         return false;
402       case MachineOperand::MO_ConstantPoolIndex:
403       case MachineOperand::MO_JumpTableIndex:
404       case MachineOperand::MO_ExternalSymbol:
405         llvm_unreachable("unexpected operand type!");
406       case MachineOperand::MO_GlobalAddress:
407         printSymbolOperand(*this, MO, O);
408         if (Subtarget->isPICStyleRIPRel())
409           O << "(%rip)";
410         return false;
411       case MachineOperand::MO_Register:
412         O << '(';
413         printOperand(*this, MI, OpNo, O);
414         O << ')';
415         return false;
416       }
417
418     case 'c': // Don't print "$" before a global var name or constant.
419       switch (MO.getType()) {
420       default:
421         printOperand(*this, MI, OpNo, O);
422         break;
423       case MachineOperand::MO_Immediate:
424         O << MO.getImm();
425         break;
426       case MachineOperand::MO_ConstantPoolIndex:
427       case MachineOperand::MO_JumpTableIndex:
428       case MachineOperand::MO_ExternalSymbol:
429         llvm_unreachable("unexpected operand type!");
430       case MachineOperand::MO_GlobalAddress:
431         printSymbolOperand(*this, MO, O);
432         break;
433       }
434       return false;
435
436     case 'A': // Print '*' before a register (it must be a register)
437       if (MO.isReg()) {
438         O << '*';
439         printOperand(*this, MI, OpNo, O);
440         return false;
441       }
442       return true;
443
444     case 'b': // Print QImode register
445     case 'h': // Print QImode high register
446     case 'w': // Print HImode register
447     case 'k': // Print SImode register
448     case 'q': // Print DImode register
449       if (MO.isReg())
450         return printAsmMRegister(*this, MO, ExtraCode[0], O);
451       printOperand(*this, MI, OpNo, O);
452       return false;
453
454     case 'P': // This is the operand of a call, treat specially.
455       printPCRelImm(*this, MI, OpNo, O);
456       return false;
457
458     case 'n':  // Negate the immediate or print a '-' before the operand.
459       // Note: this is a temporary solution. It should be handled target
460       // independently as part of the 'MC' work.
461       if (MO.isImm()) {
462         O << -MO.getImm();
463         return false;
464       }
465       O << '-';
466     }
467   }
468
469   printOperand(*this, MI, OpNo, O, /*Modifier*/ nullptr, AsmVariant);
470   return false;
471 }
472
473 bool X86AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
474                                           unsigned OpNo, unsigned AsmVariant,
475                                           const char *ExtraCode,
476                                           raw_ostream &O) {
477   if (AsmVariant) {
478     printIntelMemReference(*this, MI, OpNo, O);
479     return false;
480   }
481
482   if (ExtraCode && ExtraCode[0]) {
483     if (ExtraCode[1] != 0) return true; // Unknown modifier.
484
485     switch (ExtraCode[0]) {
486     default: return true;  // Unknown modifier.
487     case 'b': // Print QImode register
488     case 'h': // Print QImode high register
489     case 'w': // Print HImode register
490     case 'k': // Print SImode register
491     case 'q': // Print SImode register
492       // These only apply to registers, ignore on mem.
493       break;
494     case 'H':
495       printMemReference(*this, MI, OpNo, O, "H");
496       return false;
497     case 'P': // Don't print @PLT, but do print as memory.
498       printMemReference(*this, MI, OpNo, O, "no-rip");
499       return false;
500     }
501   }
502   printMemReference(*this, MI, OpNo, O);
503   return false;
504 }
505
506 void X86AsmPrinter::EmitStartOfAsmFile(Module &M) {
507   Triple TT(TM.getTargetTriple());
508
509   if (TT.isOSBinFormatMachO())
510     OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
511
512   if (TT.isOSBinFormatCOFF()) {
513     // Emit an absolute @feat.00 symbol.  This appears to be some kind of
514     // compiler features bitfield read by link.exe.
515     if (TT.getArch() == Triple::x86) {
516       MCSymbol *S = MMI->getContext().GetOrCreateSymbol(StringRef("@feat.00"));
517       OutStreamer.BeginCOFFSymbolDef(S);
518       OutStreamer.EmitCOFFSymbolStorageClass(COFF::IMAGE_SYM_CLASS_STATIC);
519       OutStreamer.EmitCOFFSymbolType(COFF::IMAGE_SYM_DTYPE_NULL);
520       OutStreamer.EndCOFFSymbolDef();
521       // According to the PE-COFF spec, the LSB of this value marks the object
522       // for "registered SEH".  This means that all SEH handler entry points
523       // must be registered in .sxdata.  Use of any unregistered handlers will
524       // cause the process to terminate immediately.  LLVM does not know how to
525       // register any SEH handlers, so its object files should be safe.
526       S->setAbsolute();
527       OutStreamer.EmitSymbolAttribute(S, MCSA_Global);
528       OutStreamer.EmitAssignment(
529           S, MCConstantExpr::Create(int64_t(1), MMI->getContext()));
530     }
531   }
532 }
533
534 static void
535 emitNonLazySymbolPointer(MCStreamer &OutStreamer, MCSymbol *StubLabel,
536                          MachineModuleInfoImpl::StubValueTy &MCSym) {
537   // L_foo$stub:
538   OutStreamer.EmitLabel(StubLabel);
539   //   .indirect_symbol _foo
540   OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
541
542   if (MCSym.getInt())
543     // External to current translation unit.
544     OutStreamer.EmitIntValue(0, 4/*size*/);
545   else
546     // Internal to current translation unit.
547     //
548     // When we place the LSDA into the TEXT section, the type info
549     // pointers need to be indirect and pc-rel. We accomplish this by
550     // using NLPs; however, sometimes the types are local to the file.
551     // We need to fill in the value for the NLP in those cases.
552     OutStreamer.EmitValue(
553         MCSymbolRefExpr::Create(MCSym.getPointer(), OutStreamer.getContext()),
554         4 /*size*/);
555 }
556
557 MCSymbol *X86AsmPrinter::GetCPISymbol(unsigned CPID) const {
558   if (Subtarget->isTargetKnownWindowsMSVC()) {
559     const MachineConstantPoolEntry &CPE =
560         MF->getConstantPool()->getConstants()[CPID];
561     if (!CPE.isMachineConstantPoolEntry()) {
562       SectionKind Kind = CPE.getSectionKind(TM.getDataLayout());
563       const Constant *C = CPE.Val.ConstVal;
564       if (const MCSectionCOFF *S = dyn_cast<MCSectionCOFF>(
565             getObjFileLowering().getSectionForConstant(Kind, C))) {
566         if (MCSymbol *Sym = S->getCOMDATSymbol()) {
567           if (Sym->isUndefined())
568             OutStreamer.EmitSymbolAttribute(Sym, MCSA_Global);
569           return Sym;
570         }
571       }
572     }
573   }
574
575   return AsmPrinter::GetCPISymbol(CPID);
576 }
577
578 void X86AsmPrinter::GenerateExportDirective(const MCSymbol *Sym, bool IsData) {
579   SmallString<128> Directive;
580   raw_svector_ostream OS(Directive);
581   StringRef Name = Sym->getName();
582   Triple TT(TM.getTargetTriple());
583
584   if (TT.isKnownWindowsMSVCEnvironment())
585     OS << " /EXPORT:";
586   else
587     OS << " -export:";
588
589   if ((TT.isWindowsGNUEnvironment() || TT.isWindowsCygwinEnvironment()) &&
590       (Name[0] == getDataLayout().getGlobalPrefix()))
591     Name = Name.drop_front();
592
593   OS << Name;
594
595   if (IsData) {
596     if (TT.isKnownWindowsMSVCEnvironment())
597       OS << ",DATA";
598     else
599       OS << ",data";
600   }
601
602   OS.flush();
603   OutStreamer.EmitBytes(Directive);
604 }
605
606 void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
607   Triple TT(TM.getTargetTriple());
608
609   if (TT.isOSBinFormatMachO()) {
610     // All darwin targets use mach-o.
611     MachineModuleInfoMachO &MMIMacho =
612         MMI->getObjFileInfo<MachineModuleInfoMachO>();
613
614     // Output stubs for dynamically-linked functions.
615     MachineModuleInfoMachO::SymbolListTy Stubs;
616
617     Stubs = MMIMacho.GetFnStubList();
618     if (!Stubs.empty()) {
619       const MCSection *TheSection =
620         OutContext.getMachOSection("__IMPORT", "__jump_table",
621                                    MachO::S_SYMBOL_STUBS |
622                                    MachO::S_ATTR_SELF_MODIFYING_CODE |
623                                    MachO::S_ATTR_PURE_INSTRUCTIONS,
624                                    5, SectionKind::getMetadata());
625       OutStreamer.SwitchSection(TheSection);
626
627       for (const auto &Stub : Stubs) {
628         // L_foo$stub:
629         OutStreamer.EmitLabel(Stub.first);
630         //   .indirect_symbol _foo
631         OutStreamer.EmitSymbolAttribute(Stub.second.getPointer(),
632                                         MCSA_IndirectSymbol);
633         // hlt; hlt; hlt; hlt; hlt     hlt = 0xf4.
634         const char HltInsts[] = "\xf4\xf4\xf4\xf4\xf4";
635         OutStreamer.EmitBytes(StringRef(HltInsts, 5));
636       }
637
638       Stubs.clear();
639       OutStreamer.AddBlankLine();
640     }
641
642     // Output stubs for external and common global variables.
643     Stubs = MMIMacho.GetGVStubList();
644     if (!Stubs.empty()) {
645       const MCSection *TheSection =
646         OutContext.getMachOSection("__IMPORT", "__pointers",
647                                    MachO::S_NON_LAZY_SYMBOL_POINTERS,
648                                    SectionKind::getMetadata());
649       OutStreamer.SwitchSection(TheSection);
650
651       for (auto &Stub : Stubs)
652         emitNonLazySymbolPointer(OutStreamer, Stub.first, Stub.second);
653
654       Stubs.clear();
655       OutStreamer.AddBlankLine();
656     }
657
658     Stubs = MMIMacho.GetHiddenGVStubList();
659     if (!Stubs.empty()) {
660       const MCSection *TheSection =
661         OutContext.getMachOSection("__IMPORT", "__pointers",
662                                    MachO::S_NON_LAZY_SYMBOL_POINTERS,
663                                    SectionKind::getMetadata());
664       OutStreamer.SwitchSection(TheSection);
665
666       for (auto &Stub : Stubs)
667         emitNonLazySymbolPointer(OutStreamer, Stub.first, Stub.second);
668
669       Stubs.clear();
670       OutStreamer.AddBlankLine();
671     }
672
673     SM.serializeToStackMapSection();
674
675     // Funny Darwin hack: This flag tells the linker that no global symbols
676     // contain code that falls through to other global symbols (e.g. the obvious
677     // implementation of multiple entry points).  If this doesn't occur, the
678     // linker can safely perform dead code stripping.  Since LLVM never
679     // generates code that does this, it is always safe to set.
680     OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
681   }
682
683   if (TT.isKnownWindowsMSVCEnvironment() && MMI->usesVAFloatArgument()) {
684     StringRef SymbolName =
685         (TT.getArch() == Triple::x86_64) ? "_fltused" : "__fltused";
686     MCSymbol *S = MMI->getContext().GetOrCreateSymbol(SymbolName);
687     OutStreamer.EmitSymbolAttribute(S, MCSA_Global);
688   }
689
690   if (TT.isOSBinFormatCOFF()) {
691     // Necessary for dllexport support
692     std::vector<const MCSymbol*> DLLExportedFns, DLLExportedGlobals;
693
694     for (const auto &Function : M)
695       if (Function.hasDLLExportStorageClass() && !Function.isDeclaration())
696         DLLExportedFns.push_back(getSymbol(&Function));
697
698     for (const auto &Global : M.globals())
699       if (Global.hasDLLExportStorageClass() && !Global.isDeclaration())
700         DLLExportedGlobals.push_back(getSymbol(&Global));
701
702     for (const auto &Alias : M.aliases()) {
703       if (!Alias.hasDLLExportStorageClass())
704         continue;
705
706       if (Alias.getType()->getElementType()->isFunctionTy())
707         DLLExportedFns.push_back(getSymbol(&Alias));
708       else
709         DLLExportedGlobals.push_back(getSymbol(&Alias));
710     }
711
712     // Output linker support code for dllexported globals on windows.
713     if (!DLLExportedGlobals.empty() || !DLLExportedFns.empty()) {
714       const TargetLoweringObjectFileCOFF &TLOFCOFF =
715         static_cast<const TargetLoweringObjectFileCOFF&>(getObjFileLowering());
716
717       OutStreamer.SwitchSection(TLOFCOFF.getDrectveSection());
718
719       for (auto & Symbol : DLLExportedGlobals)
720         GenerateExportDirective(Symbol, /*IsData=*/true);
721       for (auto & Symbol : DLLExportedFns)
722         GenerateExportDirective(Symbol, /*IsData=*/false);
723     }
724   }
725
726   if (TT.isOSBinFormatELF()) {
727     const TargetLoweringObjectFileELF &TLOFELF =
728       static_cast<const TargetLoweringObjectFileELF &>(getObjFileLowering());
729
730     MachineModuleInfoELF &MMIELF = MMI->getObjFileInfo<MachineModuleInfoELF>();
731
732     // Output stubs for external and common global variables.
733     MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
734     if (!Stubs.empty()) {
735       OutStreamer.SwitchSection(TLOFELF.getDataRelSection());
736       const DataLayout *TD = TM.getDataLayout();
737
738       for (const auto &Stub : Stubs) {
739         OutStreamer.EmitLabel(Stub.first);
740         OutStreamer.EmitSymbolValue(Stub.second.getPointer(),
741                                     TD->getPointerSize());
742       }
743       Stubs.clear();
744     }
745
746     SM.serializeToStackMapSection();
747   }
748 }
749
750 //===----------------------------------------------------------------------===//
751 // Target Registry Stuff
752 //===----------------------------------------------------------------------===//
753
754 // Force static initialization.
755 extern "C" void LLVMInitializeX86AsmPrinter() {
756   RegisterAsmPrinter<X86AsmPrinter> X(TheX86_32Target);
757   RegisterAsmPrinter<X86AsmPrinter> Y(TheX86_64Target);
758 }