32cf67ffb91f1cde3e6671d7a61ad762e57d9b0c
[oota-llvm.git] / lib / CodeGen / AsmPrinter / AsmPrinter.cpp
1 //===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
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 implements the AsmPrinter class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "asm-printer"
15 #include "llvm/CodeGen/AsmPrinter.h"
16 #include "DwarfDebug.h"
17 #include "DwarfException.h"
18 #include "llvm/ADT/SmallString.h"
19 #include "llvm/ADT/Statistic.h"
20 #include "llvm/Analysis/ConstantFolding.h"
21 #include "llvm/CodeGen/GCMetadataPrinter.h"
22 #include "llvm/CodeGen/MachineConstantPool.h"
23 #include "llvm/CodeGen/MachineFrameInfo.h"
24 #include "llvm/CodeGen/MachineFunction.h"
25 #include "llvm/CodeGen/MachineInstrBundle.h"
26 #include "llvm/CodeGen/MachineJumpTableInfo.h"
27 #include "llvm/CodeGen/MachineLoopInfo.h"
28 #include "llvm/CodeGen/MachineModuleInfo.h"
29 #include "llvm/DebugInfo.h"
30 #include "llvm/IR/DataLayout.h"
31 #include "llvm/IR/Mangler.h"
32 #include "llvm/IR/Module.h"
33 #include "llvm/IR/Operator.h"
34 #include "llvm/MC/MCAsmInfo.h"
35 #include "llvm/MC/MCContext.h"
36 #include "llvm/MC/MCExpr.h"
37 #include "llvm/MC/MCInst.h"
38 #include "llvm/MC/MCSection.h"
39 #include "llvm/MC/MCStreamer.h"
40 #include "llvm/MC/MCSymbol.h"
41 #include "llvm/Support/ErrorHandling.h"
42 #include "llvm/Support/Format.h"
43 #include "llvm/Support/MathExtras.h"
44 #include "llvm/Support/Timer.h"
45 #include "llvm/Target/TargetFrameLowering.h"
46 #include "llvm/Target/TargetInstrInfo.h"
47 #include "llvm/Target/TargetLowering.h"
48 #include "llvm/Target/TargetLoweringObjectFile.h"
49 #include "llvm/Target/TargetOptions.h"
50 #include "llvm/Target/TargetRegisterInfo.h"
51 #include "llvm/Target/TargetSubtargetInfo.h"
52 #include "llvm/Transforms/Utils/GlobalStatus.h"
53 #include "WinCodeViewLineTables.h"
54 using namespace llvm;
55
56 static const char *const DWARFGroupName = "DWARF Emission";
57 static const char *const DbgTimerName = "Debug Info Emission";
58 static const char *const EHTimerName = "DWARF Exception Writer";
59 static const char *const CodeViewLineTablesGroupName = "CodeView Line Tables";
60
61 STATISTIC(EmittedInsts, "Number of machine instrs printed");
62
63 char AsmPrinter::ID = 0;
64
65 typedef DenseMap<GCStrategy*,GCMetadataPrinter*> gcp_map_type;
66 static gcp_map_type &getGCMap(void *&P) {
67   if (P == 0)
68     P = new gcp_map_type();
69   return *(gcp_map_type*)P;
70 }
71
72
73 /// getGVAlignmentLog2 - Return the alignment to use for the specified global
74 /// value in log2 form.  This rounds up to the preferred alignment if possible
75 /// and legal.
76 static unsigned getGVAlignmentLog2(const GlobalValue *GV, const DataLayout &TD,
77                                    unsigned InBits = 0) {
78   unsigned NumBits = 0;
79   if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
80     NumBits = TD.getPreferredAlignmentLog(GVar);
81
82   // If InBits is specified, round it to it.
83   if (InBits > NumBits)
84     NumBits = InBits;
85
86   // If the GV has a specified alignment, take it into account.
87   if (GV->getAlignment() == 0)
88     return NumBits;
89
90   unsigned GVAlign = Log2_32(GV->getAlignment());
91
92   // If the GVAlign is larger than NumBits, or if we are required to obey
93   // NumBits because the GV has an assigned section, obey it.
94   if (GVAlign > NumBits || GV->hasSection())
95     NumBits = GVAlign;
96   return NumBits;
97 }
98
99 AsmPrinter::AsmPrinter(TargetMachine &tm, MCStreamer &Streamer)
100   : MachineFunctionPass(ID),
101     TM(tm), MAI(tm.getMCAsmInfo()), MII(tm.getInstrInfo()),
102     OutContext(Streamer.getContext()),
103     OutStreamer(Streamer),
104     LastMI(0), LastFn(0), Counter(~0U), SetCounter(0) {
105   DD = 0; MMI = 0; LI = 0; MF = 0;
106   CurrentFnSym = CurrentFnSymForSize = 0;
107   GCMetadataPrinters = 0;
108   VerboseAsm = Streamer.isVerboseAsm();
109 }
110
111 AsmPrinter::~AsmPrinter() {
112   assert(DD == 0 && Handlers.empty() && "Debug/EH info didn't get finalized");
113
114   if (GCMetadataPrinters != 0) {
115     gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
116
117     for (gcp_map_type::iterator I = GCMap.begin(), E = GCMap.end(); I != E; ++I)
118       delete I->second;
119     delete &GCMap;
120     GCMetadataPrinters = 0;
121   }
122
123   delete &OutStreamer;
124 }
125
126 /// getFunctionNumber - Return a unique ID for the current function.
127 ///
128 unsigned AsmPrinter::getFunctionNumber() const {
129   return MF->getFunctionNumber();
130 }
131
132 const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
133   return TM.getTargetLowering()->getObjFileLowering();
134 }
135
136 /// getDataLayout - Return information about data layout.
137 const DataLayout &AsmPrinter::getDataLayout() const {
138   return *TM.getDataLayout();
139 }
140
141 const MCSubtargetInfo &AsmPrinter::getSubtargetInfo() const {
142   return TM.getSubtarget<MCSubtargetInfo>();
143 }
144
145 void AsmPrinter::EmitToStreamer(MCStreamer &S, const MCInst &Inst) {
146   S.EmitInstruction(Inst, getSubtargetInfo());
147 }
148
149 StringRef AsmPrinter::getTargetTriple() const {
150   return TM.getTargetTriple();
151 }
152
153 /// getCurrentSection() - Return the current section we are emitting to.
154 const MCSection *AsmPrinter::getCurrentSection() const {
155   return OutStreamer.getCurrentSection().first;
156 }
157
158
159
160 void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
161   AU.setPreservesAll();
162   MachineFunctionPass::getAnalysisUsage(AU);
163   AU.addRequired<MachineModuleInfo>();
164   AU.addRequired<GCModuleInfo>();
165   if (isVerbose())
166     AU.addRequired<MachineLoopInfo>();
167 }
168
169 bool AsmPrinter::doInitialization(Module &M) {
170   MMI = getAnalysisIfAvailable<MachineModuleInfo>();
171   MMI->AnalyzeModule(M);
172
173   // Initialize TargetLoweringObjectFile.
174   const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
175     .Initialize(OutContext, TM);
176
177   OutStreamer.InitSections(false);
178
179   Mang = new Mangler(TM.getDataLayout());
180
181   // Allow the target to emit any magic that it wants at the start of the file.
182   EmitStartOfAsmFile(M);
183
184   // Very minimal debug info. It is ignored if we emit actual debug info. If we
185   // don't, this at least helps the user find where a global came from.
186   if (MAI->hasSingleParameterDotFile()) {
187     // .file "foo.c"
188     OutStreamer.EmitFileDirective(M.getModuleIdentifier());
189   }
190
191   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
192   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
193   for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
194     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
195       MP->beginAssembly(*this);
196
197   // Emit module-level inline asm if it exists.
198   if (!M.getModuleInlineAsm().empty()) {
199     OutStreamer.AddComment("Start of file scope inline assembly");
200     OutStreamer.AddBlankLine();
201     EmitInlineAsm(M.getModuleInlineAsm()+"\n");
202     OutStreamer.AddComment("End of file scope inline assembly");
203     OutStreamer.AddBlankLine();
204   }
205
206   if (MAI->doesSupportDebugInformation()) {
207     if (Triple(TM.getTargetTriple()).getOS() == Triple::Win32) {
208       Handlers.push_back(HandlerInfo(new WinCodeViewLineTables(this),
209                                      DbgTimerName,
210                                      CodeViewLineTablesGroupName));
211     } else {
212       DD = new DwarfDebug(this, &M);
213       Handlers.push_back(HandlerInfo(DD, DbgTimerName, DWARFGroupName));
214     }
215   }
216
217   DwarfException *DE = 0;
218   switch (MAI->getExceptionHandlingType()) {
219   case ExceptionHandling::None:
220     break;
221   case ExceptionHandling::SjLj:
222   case ExceptionHandling::DwarfCFI:
223     DE = new DwarfCFIException(this);
224     break;
225   case ExceptionHandling::ARM:
226     DE = new ARMException(this);
227     break;
228   case ExceptionHandling::Win64:
229     DE = new Win64Exception(this);
230     break;
231   }
232   if (DE)
233     Handlers.push_back(HandlerInfo(DE, EHTimerName, DWARFGroupName));
234   return false;
235 }
236
237 static bool canBeHidden(const GlobalValue *GV, const MCAsmInfo &MAI) {
238   GlobalValue::LinkageTypes Linkage = GV->getLinkage();
239   if (Linkage != GlobalValue::LinkOnceODRLinkage)
240     return false;
241
242   if (!MAI.hasWeakDefCanBeHiddenDirective())
243     return false;
244
245   if (GV->hasUnnamedAddr())
246     return true;
247
248   // This is only used for MachO, so right now it doesn't really matter how
249   // we handle alias. Revisit this once the MachO linker implements aliases.
250   if (isa<GlobalAlias>(GV))
251     return false;
252
253   // If it is a non constant variable, it needs to be uniqued across shared
254   // objects.
255   if (const GlobalVariable *Var = dyn_cast<GlobalVariable>(GV)) {
256     if (!Var->isConstant())
257       return false;
258   }
259
260   GlobalStatus GS;
261   if (!GlobalStatus::analyzeGlobal(GV, GS) && !GS.IsCompared)
262     return true;
263
264   return false;
265 }
266
267 void AsmPrinter::EmitLinkage(const GlobalValue *GV, MCSymbol *GVSym) const {
268   GlobalValue::LinkageTypes Linkage = GV->getLinkage();
269   switch (Linkage) {
270   case GlobalValue::CommonLinkage:
271   case GlobalValue::LinkOnceAnyLinkage:
272   case GlobalValue::LinkOnceODRLinkage:
273   case GlobalValue::WeakAnyLinkage:
274   case GlobalValue::WeakODRLinkage:
275   case GlobalValue::LinkerPrivateWeakLinkage:
276     if (MAI->hasWeakDefDirective()) {
277       // .globl _foo
278       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
279
280       if (!canBeHidden(GV, *MAI))
281         // .weak_definition _foo
282         OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
283       else
284         OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefAutoPrivate);
285     } else if (MAI->hasLinkOnceDirective()) {
286       // .globl _foo
287       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
288       //NOTE: linkonce is handled by the section the symbol was assigned to.
289     } else {
290       // .weak _foo
291       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
292     }
293     return;
294   case GlobalValue::AppendingLinkage:
295     // FIXME: appending linkage variables should go into a section of
296     // their name or something.  For now, just emit them as external.
297   case GlobalValue::ExternalLinkage:
298     // If external or appending, declare as a global symbol.
299     // .globl _foo
300     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
301     return;
302   case GlobalValue::PrivateLinkage:
303   case GlobalValue::InternalLinkage:
304   case GlobalValue::LinkerPrivateLinkage:
305     return;
306   case GlobalValue::AvailableExternallyLinkage:
307     llvm_unreachable("Should never emit this");
308   case GlobalValue::ExternalWeakLinkage:
309     llvm_unreachable("Don't know how to emit these");
310   }
311   llvm_unreachable("Unknown linkage type!");
312 }
313
314 MCSymbol *AsmPrinter::getSymbol(const GlobalValue *GV) const {
315   return getObjFileLowering().getSymbol(GV, *Mang);
316 }
317
318 /// EmitGlobalVariable - Emit the specified global variable to the .s file.
319 void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
320   if (GV->hasInitializer()) {
321     // Check to see if this is a special global used by LLVM, if so, emit it.
322     if (EmitSpecialLLVMGlobal(GV))
323       return;
324
325     if (isVerbose()) {
326       GV->printAsOperand(OutStreamer.GetCommentOS(),
327                      /*PrintType=*/false, GV->getParent());
328       OutStreamer.GetCommentOS() << '\n';
329     }
330   }
331
332   MCSymbol *GVSym = getSymbol(GV);
333   EmitVisibility(GVSym, GV->getVisibility(), !GV->isDeclaration());
334
335   if (!GV->hasInitializer())   // External globals require no extra code.
336     return;
337
338   if (MAI->hasDotTypeDotSizeDirective())
339     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
340
341   SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
342
343   const DataLayout *DL = TM.getDataLayout();
344   uint64_t Size = DL->getTypeAllocSize(GV->getType()->getElementType());
345
346   // If the alignment is specified, we *must* obey it.  Overaligning a global
347   // with a specified alignment is a prompt way to break globals emitted to
348   // sections and expected to be contiguous (e.g. ObjC metadata).
349   unsigned AlignLog = getGVAlignmentLog2(GV, *DL);
350
351   for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
352     const HandlerInfo &OI = Handlers[I];
353     NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, TimePassesIsEnabled);
354     OI.Handler->setSymbolSize(GVSym, Size);
355   }
356
357   // Handle common and BSS local symbols (.lcomm).
358   if (GVKind.isCommon() || GVKind.isBSSLocal()) {
359     if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
360     unsigned Align = 1 << AlignLog;
361
362     // Handle common symbols.
363     if (GVKind.isCommon()) {
364       if (!getObjFileLowering().getCommDirectiveSupportsAlignment())
365         Align = 0;
366
367       // .comm _foo, 42, 4
368       OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
369       return;
370     }
371
372     // Handle local BSS symbols.
373     if (MAI->hasMachoZeroFillDirective()) {
374       const MCSection *TheSection =
375         getObjFileLowering().SectionForGlobal(GV, GVKind, *Mang, TM);
376       // .zerofill __DATA, __bss, _foo, 400, 5
377       OutStreamer.EmitZerofill(TheSection, GVSym, Size, Align);
378       return;
379     }
380
381     // Use .lcomm only if it supports user-specified alignment.
382     // Otherwise, while it would still be correct to use .lcomm in some
383     // cases (e.g. when Align == 1), the external assembler might enfore
384     // some -unknown- default alignment behavior, which could cause
385     // spurious differences between external and integrated assembler.
386     // Prefer to simply fall back to .local / .comm in this case.
387     if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
388       // .lcomm _foo, 42
389       OutStreamer.EmitLocalCommonSymbol(GVSym, Size, Align);
390       return;
391     }
392
393     if (!getObjFileLowering().getCommDirectiveSupportsAlignment())
394       Align = 0;
395
396     // .local _foo
397     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
398     // .comm _foo, 42, 4
399     OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
400     return;
401   }
402
403   const MCSection *TheSection =
404     getObjFileLowering().SectionForGlobal(GV, GVKind, *Mang, TM);
405
406   // Handle the zerofill directive on darwin, which is a special form of BSS
407   // emission.
408   if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
409     if (Size == 0) Size = 1;  // zerofill of 0 bytes is undefined.
410
411     // .globl _foo
412     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
413     // .zerofill __DATA, __common, _foo, 400, 5
414     OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
415     return;
416   }
417
418   // Handle thread local data for mach-o which requires us to output an
419   // additional structure of data and mangle the original symbol so that we
420   // can reference it later.
421   //
422   // TODO: This should become an "emit thread local global" method on TLOF.
423   // All of this macho specific stuff should be sunk down into TLOFMachO and
424   // stuff like "TLSExtraDataSection" should no longer be part of the parent
425   // TLOF class.  This will also make it more obvious that stuff like
426   // MCStreamer::EmitTBSSSymbol is macho specific and only called from macho
427   // specific code.
428   if (GVKind.isThreadLocal() && MAI->hasMachoTBSSDirective()) {
429     // Emit the .tbss symbol
430     MCSymbol *MangSym =
431       OutContext.GetOrCreateSymbol(GVSym->getName() + Twine("$tlv$init"));
432
433     if (GVKind.isThreadBSS()) {
434       TheSection = getObjFileLowering().getTLSBSSSection();
435       OutStreamer.EmitTBSSSymbol(TheSection, MangSym, Size, 1 << AlignLog);
436     } else if (GVKind.isThreadData()) {
437       OutStreamer.SwitchSection(TheSection);
438
439       EmitAlignment(AlignLog, GV);
440       OutStreamer.EmitLabel(MangSym);
441
442       EmitGlobalConstant(GV->getInitializer());
443     }
444
445     OutStreamer.AddBlankLine();
446
447     // Emit the variable struct for the runtime.
448     const MCSection *TLVSect
449       = getObjFileLowering().getTLSExtraDataSection();
450
451     OutStreamer.SwitchSection(TLVSect);
452     // Emit the linkage here.
453     EmitLinkage(GV, GVSym);
454     OutStreamer.EmitLabel(GVSym);
455
456     // Three pointers in size:
457     //   - __tlv_bootstrap - used to make sure support exists
458     //   - spare pointer, used when mapped by the runtime
459     //   - pointer to mangled symbol above with initializer
460     unsigned PtrSize = DL->getPointerTypeSize(GV->getType());
461     OutStreamer.EmitSymbolValue(GetExternalSymbolSymbol("_tlv_bootstrap"),
462                                 PtrSize);
463     OutStreamer.EmitIntValue(0, PtrSize);
464     OutStreamer.EmitSymbolValue(MangSym, PtrSize);
465
466     OutStreamer.AddBlankLine();
467     return;
468   }
469
470   OutStreamer.SwitchSection(TheSection);
471
472   EmitLinkage(GV, GVSym);
473   EmitAlignment(AlignLog, GV);
474
475   OutStreamer.EmitLabel(GVSym);
476
477   EmitGlobalConstant(GV->getInitializer());
478
479   if (MAI->hasDotTypeDotSizeDirective())
480     // .size foo, 42
481     OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
482
483   OutStreamer.AddBlankLine();
484 }
485
486 /// EmitFunctionHeader - This method emits the header for the current
487 /// function.
488 void AsmPrinter::EmitFunctionHeader() {
489   // Print out constants referenced by the function
490   EmitConstantPool();
491
492   // Print the 'header' of function.
493   const Function *F = MF->getFunction();
494
495   OutStreamer.SwitchSection(
496       getObjFileLowering().SectionForGlobal(F, *Mang, TM));
497   EmitVisibility(CurrentFnSym, F->getVisibility());
498
499   EmitLinkage(F, CurrentFnSym);
500   EmitAlignment(MF->getAlignment(), F);
501
502   if (MAI->hasDotTypeDotSizeDirective())
503     OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
504
505   if (isVerbose()) {
506     F->printAsOperand(OutStreamer.GetCommentOS(),
507                    /*PrintType=*/false, F->getParent());
508     OutStreamer.GetCommentOS() << '\n';
509   }
510
511   // Emit the CurrentFnSym.  This is a virtual function to allow targets to
512   // do their wild and crazy things as required.
513   EmitFunctionEntryLabel();
514
515   // If the function had address-taken blocks that got deleted, then we have
516   // references to the dangling symbols.  Emit them at the start of the function
517   // so that we don't get references to undefined symbols.
518   std::vector<MCSymbol*> DeadBlockSyms;
519   MMI->takeDeletedSymbolsForFunction(F, DeadBlockSyms);
520   for (unsigned i = 0, e = DeadBlockSyms.size(); i != e; ++i) {
521     OutStreamer.AddComment("Address taken block that was later removed");
522     OutStreamer.EmitLabel(DeadBlockSyms[i]);
523   }
524
525   // Emit pre-function debug and/or EH information.
526   for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
527     const HandlerInfo &OI = Handlers[I];
528     NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, TimePassesIsEnabled);
529     OI.Handler->beginFunction(MF);
530   }
531
532   // Emit the prefix data.
533   if (F->hasPrefixData())
534     EmitGlobalConstant(F->getPrefixData());
535 }
536
537 /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
538 /// function.  This can be overridden by targets as required to do custom stuff.
539 void AsmPrinter::EmitFunctionEntryLabel() {
540   // The function label could have already been emitted if two symbols end up
541   // conflicting due to asm renaming.  Detect this and emit an error.
542   if (CurrentFnSym->isUndefined())
543     return OutStreamer.EmitLabel(CurrentFnSym);
544
545   report_fatal_error("'" + Twine(CurrentFnSym->getName()) +
546                      "' label emitted multiple times to assembly file");
547 }
548
549 /// emitComments - Pretty-print comments for instructions.
550 static void emitComments(const MachineInstr &MI, raw_ostream &CommentOS) {
551   const MachineFunction *MF = MI.getParent()->getParent();
552   const TargetMachine &TM = MF->getTarget();
553
554   // Check for spills and reloads
555   int FI;
556
557   const MachineFrameInfo *FrameInfo = MF->getFrameInfo();
558
559   // We assume a single instruction only has a spill or reload, not
560   // both.
561   const MachineMemOperand *MMO;
562   if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
563     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
564       MMO = *MI.memoperands_begin();
565       CommentOS << MMO->getSize() << "-byte Reload\n";
566     }
567   } else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
568     if (FrameInfo->isSpillSlotObjectIndex(FI))
569       CommentOS << MMO->getSize() << "-byte Folded Reload\n";
570   } else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
571     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
572       MMO = *MI.memoperands_begin();
573       CommentOS << MMO->getSize() << "-byte Spill\n";
574     }
575   } else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
576     if (FrameInfo->isSpillSlotObjectIndex(FI))
577       CommentOS << MMO->getSize() << "-byte Folded Spill\n";
578   }
579
580   // Check for spill-induced copies
581   if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse))
582     CommentOS << " Reload Reuse\n";
583 }
584
585 /// emitImplicitDef - This method emits the specified machine instruction
586 /// that is an implicit def.
587 void AsmPrinter::emitImplicitDef(const MachineInstr *MI) const {
588   unsigned RegNo = MI->getOperand(0).getReg();
589   OutStreamer.AddComment(Twine("implicit-def: ") +
590                          TM.getRegisterInfo()->getName(RegNo));
591   OutStreamer.AddBlankLine();
592 }
593
594 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) {
595   std::string Str = "kill:";
596   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
597     const MachineOperand &Op = MI->getOperand(i);
598     assert(Op.isReg() && "KILL instruction must have only register operands");
599     Str += ' ';
600     Str += AP.TM.getRegisterInfo()->getName(Op.getReg());
601     Str += (Op.isDef() ? "<def>" : "<kill>");
602   }
603   AP.OutStreamer.AddComment(Str);
604   AP.OutStreamer.AddBlankLine();
605 }
606
607 /// emitDebugValueComment - This method handles the target-independent form
608 /// of DBG_VALUE, returning true if it was able to do so.  A false return
609 /// means the target will need to handle MI in EmitInstruction.
610 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) {
611   // This code handles only the 3-operand target-independent form.
612   if (MI->getNumOperands() != 3)
613     return false;
614
615   SmallString<128> Str;
616   raw_svector_ostream OS(Str);
617   OS << "DEBUG_VALUE: ";
618
619   DIVariable V(MI->getOperand(2).getMetadata());
620   if (V.getContext().isSubprogram()) {
621     StringRef Name = DISubprogram(V.getContext()).getDisplayName();
622     if (!Name.empty())
623       OS << Name << ":";
624   }
625   OS << V.getName() << " <- ";
626
627   // The second operand is only an offset if it's an immediate.
628   bool Deref = MI->getOperand(0).isReg() && MI->getOperand(1).isImm();
629   int64_t Offset = Deref ? MI->getOperand(1).getImm() : 0;
630
631   // Register or immediate value. Register 0 means undef.
632   if (MI->getOperand(0).isFPImm()) {
633     APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF());
634     if (MI->getOperand(0).getFPImm()->getType()->isFloatTy()) {
635       OS << (double)APF.convertToFloat();
636     } else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) {
637       OS << APF.convertToDouble();
638     } else {
639       // There is no good way to print long double.  Convert a copy to
640       // double.  Ah well, it's only a comment.
641       bool ignored;
642       APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
643                   &ignored);
644       OS << "(long double) " << APF.convertToDouble();
645     }
646   } else if (MI->getOperand(0).isImm()) {
647     OS << MI->getOperand(0).getImm();
648   } else if (MI->getOperand(0).isCImm()) {
649     MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/);
650   } else {
651     unsigned Reg;
652     if (MI->getOperand(0).isReg()) {
653       Reg = MI->getOperand(0).getReg();
654     } else {
655       assert(MI->getOperand(0).isFI() && "Unknown operand type");
656       const TargetFrameLowering *TFI = AP.TM.getFrameLowering();
657       Offset += TFI->getFrameIndexReference(*AP.MF,
658                                             MI->getOperand(0).getIndex(), Reg);
659       Deref = true;
660     }
661     if (Reg == 0) {
662       // Suppress offset, it is not meaningful here.
663       OS << "undef";
664       // NOTE: Want this comment at start of line, don't emit with AddComment.
665       AP.OutStreamer.emitRawComment(OS.str());
666       return true;
667     }
668     if (Deref)
669       OS << '[';
670     OS << AP.TM.getRegisterInfo()->getName(Reg);
671   }
672
673   if (Deref)
674     OS << '+' << Offset << ']';
675
676   // NOTE: Want this comment at start of line, don't emit with AddComment.
677   AP.OutStreamer.emitRawComment(OS.str());
678   return true;
679 }
680
681 AsmPrinter::CFIMoveType AsmPrinter::needsCFIMoves() {
682   if (MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI &&
683       MF->getFunction()->needsUnwindTableEntry())
684     return CFI_M_EH;
685
686   if (MMI->hasDebugInfo())
687     return CFI_M_Debug;
688
689   return CFI_M_None;
690 }
691
692 bool AsmPrinter::needsSEHMoves() {
693   return MAI->getExceptionHandlingType() == ExceptionHandling::Win64 &&
694     MF->getFunction()->needsUnwindTableEntry();
695 }
696
697 void AsmPrinter::emitPrologLabel(const MachineInstr &MI) {
698   const MCSymbol *Label = MI.getOperand(0).getMCSymbol();
699
700   if (MAI->getExceptionHandlingType() != ExceptionHandling::DwarfCFI)
701     return;
702
703   if (needsCFIMoves() == CFI_M_None)
704     return;
705
706   if (MMI->getCompactUnwindEncoding() != 0)
707     OutStreamer.EmitCompactUnwindEncoding(MMI->getCompactUnwindEncoding());
708
709   const MachineModuleInfo &MMI = MF->getMMI();
710   const std::vector<MCCFIInstruction> &Instrs = MMI.getFrameInstructions();
711   bool FoundOne = false;
712   (void)FoundOne;
713   for (std::vector<MCCFIInstruction>::const_iterator I = Instrs.begin(),
714          E = Instrs.end(); I != E; ++I) {
715     if (I->getLabel() == Label) {
716       emitCFIInstruction(*I);
717       FoundOne = true;
718     }
719   }
720   assert(FoundOne);
721 }
722
723 /// EmitFunctionBody - This method emits the body and trailer for a
724 /// function.
725 void AsmPrinter::EmitFunctionBody() {
726   // Emit target-specific gunk before the function body.
727   EmitFunctionBodyStart();
728
729   bool ShouldPrintDebugScopes = MMI->hasDebugInfo();
730
731   // Print out code for the function.
732   bool HasAnyRealCode = false;
733   const MachineInstr *LastMI = 0;
734   for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
735        I != E; ++I) {
736     // Print a label for the basic block.
737     EmitBasicBlockStart(I);
738     for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
739          II != IE; ++II) {
740       LastMI = II;
741
742       // Print the assembly for the instruction.
743       if (!II->isLabel() && !II->isImplicitDef() && !II->isKill() &&
744           !II->isDebugValue()) {
745         HasAnyRealCode = true;
746         ++EmittedInsts;
747       }
748
749       if (ShouldPrintDebugScopes) {
750         for (unsigned III = 0, EEE = Handlers.size(); III != EEE; ++III) {
751           const HandlerInfo &OI = Handlers[III];
752           NamedRegionTimer T(OI.TimerName, OI.TimerGroupName,
753                              TimePassesIsEnabled);
754           OI.Handler->beginInstruction(II);
755         }
756       }
757
758       if (isVerbose())
759         emitComments(*II, OutStreamer.GetCommentOS());
760
761       switch (II->getOpcode()) {
762       case TargetOpcode::PROLOG_LABEL:
763         emitPrologLabel(*II);
764         break;
765
766       case TargetOpcode::EH_LABEL:
767       case TargetOpcode::GC_LABEL:
768         OutStreamer.EmitLabel(II->getOperand(0).getMCSymbol());
769         break;
770       case TargetOpcode::INLINEASM:
771         EmitInlineAsm(II);
772         break;
773       case TargetOpcode::DBG_VALUE:
774         if (isVerbose()) {
775           if (!emitDebugValueComment(II, *this))
776             EmitInstruction(II);
777         }
778         break;
779       case TargetOpcode::IMPLICIT_DEF:
780         if (isVerbose()) emitImplicitDef(II);
781         break;
782       case TargetOpcode::KILL:
783         if (isVerbose()) emitKill(II, *this);
784         break;
785       default:
786         EmitInstruction(II);
787         break;
788       }
789
790       if (ShouldPrintDebugScopes) {
791         for (unsigned III = 0, EEE = Handlers.size(); III != EEE; ++III) {
792           const HandlerInfo &OI = Handlers[III];
793           NamedRegionTimer T(OI.TimerName, OI.TimerGroupName,
794                              TimePassesIsEnabled);
795           OI.Handler->endInstruction();
796         }
797       }
798     }
799   }
800
801   // If the last instruction was a prolog label, then we have a situation where
802   // we emitted a prolog but no function body. This results in the ending prolog
803   // label equaling the end of function label and an invalid "row" in the
804   // FDE. We need to emit a noop in this situation so that the FDE's rows are
805   // valid.
806   bool RequiresNoop = LastMI && LastMI->isPrologLabel();
807
808   // If the function is empty and the object file uses .subsections_via_symbols,
809   // then we need to emit *something* to the function body to prevent the
810   // labels from collapsing together.  Just emit a noop.
811   if ((MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode) || RequiresNoop) {
812     MCInst Noop;
813     TM.getInstrInfo()->getNoopForMachoTarget(Noop);
814     if (Noop.getOpcode()) {
815       OutStreamer.AddComment("avoids zero-length function");
816       OutStreamer.EmitInstruction(Noop, getSubtargetInfo());
817     } else  // Target not mc-ized yet.
818       OutStreamer.EmitRawText(StringRef("\tnop\n"));
819   }
820
821   const Function *F = MF->getFunction();
822   for (Function::const_iterator i = F->begin(), e = F->end(); i != e; ++i) {
823     const BasicBlock *BB = i;
824     if (!BB->hasAddressTaken())
825       continue;
826     MCSymbol *Sym = GetBlockAddressSymbol(BB);
827     if (Sym->isDefined())
828       continue;
829     OutStreamer.AddComment("Address of block that was removed by CodeGen");
830     OutStreamer.EmitLabel(Sym);
831   }
832
833   // Emit target-specific gunk after the function body.
834   EmitFunctionBodyEnd();
835
836   // If the target wants a .size directive for the size of the function, emit
837   // it.
838   if (MAI->hasDotTypeDotSizeDirective()) {
839     // Create a symbol for the end of function, so we can get the size as
840     // difference between the function label and the temp label.
841     MCSymbol *FnEndLabel = OutContext.CreateTempSymbol();
842     OutStreamer.EmitLabel(FnEndLabel);
843
844     const MCExpr *SizeExp =
845       MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(FnEndLabel, OutContext),
846                               MCSymbolRefExpr::Create(CurrentFnSymForSize,
847                                                       OutContext),
848                               OutContext);
849     OutStreamer.EmitELFSize(CurrentFnSym, SizeExp);
850   }
851
852   // Emit post-function debug and/or EH information.
853   for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
854     const HandlerInfo &OI = Handlers[I];
855     NamedRegionTimer T(OI.TimerName, OI.TimerGroupName, TimePassesIsEnabled);
856     OI.Handler->endFunction(MF);
857   }
858   MMI->EndFunction();
859
860   // Print out jump tables referenced by the function.
861   EmitJumpTableInfo();
862
863   OutStreamer.AddBlankLine();
864 }
865
866 /// EmitDwarfRegOp - Emit dwarf register operation.
867 void AsmPrinter::EmitDwarfRegOp(const MachineLocation &MLoc,
868                                 bool Indirect) const {
869   const TargetRegisterInfo *TRI = TM.getRegisterInfo();
870   int Reg = TRI->getDwarfRegNum(MLoc.getReg(), false);
871   bool isSubRegister = Reg < 0;
872   unsigned Idx = 0;
873
874   for (MCSuperRegIterator SR(MLoc.getReg(), TRI); SR.isValid() && Reg < 0;
875        ++SR) {
876     Reg = TRI->getDwarfRegNum(*SR, false);
877     if (Reg >= 0)
878       Idx = TRI->getSubRegIndex(*SR, MLoc.getReg());
879   }
880
881   // FIXME: Handle cases like a super register being encoded as
882   // DW_OP_reg 32 DW_OP_piece 4 DW_OP_reg 33
883
884   // FIXME: We have no reasonable way of handling errors in here. The
885   // caller might be in the middle of an dwarf expression. We should
886   // probably assert that Reg >= 0 once debug info generation is more mature.
887   if (Reg < 0) {
888     OutStreamer.AddComment("nop (invalid dwarf register number)");
889     EmitInt8(dwarf::DW_OP_nop);
890     return;
891   }
892
893   if (MLoc.isIndirect() || Indirect) {
894     if (Reg < 32) {
895       OutStreamer.AddComment(
896         dwarf::OperationEncodingString(dwarf::DW_OP_breg0 + Reg));
897       EmitInt8(dwarf::DW_OP_breg0 + Reg);
898     } else {
899       OutStreamer.AddComment("DW_OP_bregx");
900       EmitInt8(dwarf::DW_OP_bregx);
901       OutStreamer.AddComment(Twine(Reg));
902       EmitULEB128(Reg);
903     }
904     EmitSLEB128(!MLoc.isIndirect() ? 0 : MLoc.getOffset());
905     if (MLoc.isIndirect() && Indirect)
906       EmitInt8(dwarf::DW_OP_deref);
907   } else {
908     if (Reg < 32) {
909       OutStreamer.AddComment(
910         dwarf::OperationEncodingString(dwarf::DW_OP_reg0 + Reg));
911       EmitInt8(dwarf::DW_OP_reg0 + Reg);
912     } else {
913       OutStreamer.AddComment("DW_OP_regx");
914       EmitInt8(dwarf::DW_OP_regx);
915       OutStreamer.AddComment(Twine(Reg));
916       EmitULEB128(Reg);
917     }
918   }
919
920   // Emit Mask
921   if (isSubRegister) {
922     unsigned Size = TRI->getSubRegIdxSize(Idx);
923     unsigned Offset = TRI->getSubRegIdxOffset(Idx);
924     if (Offset > 0) {
925       OutStreamer.AddComment("DW_OP_bit_piece");
926       EmitInt8(dwarf::DW_OP_bit_piece);
927       OutStreamer.AddComment(Twine(Size));
928       EmitULEB128(Size);
929       OutStreamer.AddComment(Twine(Offset));
930       EmitULEB128(Offset);
931     } else {
932       OutStreamer.AddComment("DW_OP_piece");
933       EmitInt8(dwarf::DW_OP_piece);
934       OutStreamer.AddComment(Twine(Size));
935       EmitULEB128(Size);
936     }
937   }
938 }
939
940 bool AsmPrinter::doFinalization(Module &M) {
941   // Emit global variables.
942   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
943        I != E; ++I)
944     EmitGlobalVariable(I);
945
946   // Emit visibility info for declarations
947   for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
948     const Function &F = *I;
949     if (!F.isDeclaration())
950       continue;
951     GlobalValue::VisibilityTypes V = F.getVisibility();
952     if (V == GlobalValue::DefaultVisibility)
953       continue;
954
955     MCSymbol *Name = getSymbol(&F);
956     EmitVisibility(Name, V, false);
957   }
958
959   // Emit module flags.
960   SmallVector<Module::ModuleFlagEntry, 8> ModuleFlags;
961   M.getModuleFlagsMetadata(ModuleFlags);
962   if (!ModuleFlags.empty())
963     getObjFileLowering().emitModuleFlags(OutStreamer, ModuleFlags, *Mang, TM);
964
965   // Make sure we wrote out everything we need.
966   OutStreamer.Flush();
967
968   // Finalize debug and EH information.
969   for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
970     const HandlerInfo &OI = Handlers[I];
971     NamedRegionTimer T(OI.TimerName, OI.TimerGroupName,
972                        TimePassesIsEnabled);
973     OI.Handler->endModule();
974     delete OI.Handler;
975   }
976   Handlers.clear();
977   DD = 0;
978
979   // If the target wants to know about weak references, print them all.
980   if (MAI->getWeakRefDirective()) {
981     // FIXME: This is not lazy, it would be nice to only print weak references
982     // to stuff that is actually used.  Note that doing so would require targets
983     // to notice uses in operands (due to constant exprs etc).  This should
984     // happen with the MC stuff eventually.
985
986     // Print out module-level global variables here.
987     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
988          I != E; ++I) {
989       if (!I->hasExternalWeakLinkage()) continue;
990       OutStreamer.EmitSymbolAttribute(getSymbol(I), MCSA_WeakReference);
991     }
992
993     for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
994       if (!I->hasExternalWeakLinkage()) continue;
995       OutStreamer.EmitSymbolAttribute(getSymbol(I), MCSA_WeakReference);
996     }
997   }
998
999   if (MAI->hasSetDirective()) {
1000     OutStreamer.AddBlankLine();
1001     for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
1002          I != E; ++I) {
1003       MCSymbol *Name = getSymbol(I);
1004
1005       const GlobalValue *GV = I->getAliasedGlobal();
1006       if (GV->isDeclaration()) {
1007         report_fatal_error(Name->getName() +
1008                            ": Target doesn't support aliases to declarations");
1009       }
1010
1011       MCSymbol *Target = getSymbol(GV);
1012
1013       if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
1014         OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
1015       else if (I->hasWeakLinkage() || I->hasLinkOnceLinkage())
1016         OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
1017       else
1018         assert(I->hasLocalLinkage() && "Invalid alias linkage");
1019
1020       EmitVisibility(Name, I->getVisibility());
1021
1022       // Emit the directives as assignments aka .set:
1023       OutStreamer.EmitAssignment(Name,
1024                                  MCSymbolRefExpr::Create(Target, OutContext));
1025     }
1026   }
1027
1028   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
1029   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
1030   for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
1031     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
1032       MP->finishAssembly(*this);
1033
1034   // Emit llvm.ident metadata in an '.ident' directive.
1035   EmitModuleIdents(M);
1036
1037   // If we don't have any trampolines, then we don't require stack memory
1038   // to be executable. Some targets have a directive to declare this.
1039   Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
1040   if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
1041     if (const MCSection *S = MAI->getNonexecutableStackSection(OutContext))
1042       OutStreamer.SwitchSection(S);
1043
1044   // Allow the target to emit any magic that it wants at the end of the file,
1045   // after everything else has gone out.
1046   EmitEndOfAsmFile(M);
1047
1048   delete Mang; Mang = 0;
1049   MMI = 0;
1050
1051   OutStreamer.Finish();
1052   OutStreamer.reset();
1053
1054   return false;
1055 }
1056
1057 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
1058   this->MF = &MF;
1059   // Get the function symbol.
1060   CurrentFnSym = getSymbol(MF.getFunction());
1061   CurrentFnSymForSize = CurrentFnSym;
1062
1063   if (isVerbose())
1064     LI = &getAnalysis<MachineLoopInfo>();
1065 }
1066
1067 namespace {
1068   // SectionCPs - Keep track the alignment, constpool entries per Section.
1069   struct SectionCPs {
1070     const MCSection *S;
1071     unsigned Alignment;
1072     SmallVector<unsigned, 4> CPEs;
1073     SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
1074   };
1075 }
1076
1077 /// EmitConstantPool - Print to the current output stream assembly
1078 /// representations of the constants in the constant pool MCP. This is
1079 /// used to print out constants which have been "spilled to memory" by
1080 /// the code generator.
1081 ///
1082 void AsmPrinter::EmitConstantPool() {
1083   const MachineConstantPool *MCP = MF->getConstantPool();
1084   const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
1085   if (CP.empty()) return;
1086
1087   // Calculate sections for constant pool entries. We collect entries to go into
1088   // the same section together to reduce amount of section switch statements.
1089   SmallVector<SectionCPs, 4> CPSections;
1090   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
1091     const MachineConstantPoolEntry &CPE = CP[i];
1092     unsigned Align = CPE.getAlignment();
1093
1094     SectionKind Kind;
1095     switch (CPE.getRelocationInfo()) {
1096     default: llvm_unreachable("Unknown section kind");
1097     case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
1098     case 1:
1099       Kind = SectionKind::getReadOnlyWithRelLocal();
1100       break;
1101     case 0:
1102     switch (TM.getDataLayout()->getTypeAllocSize(CPE.getType())) {
1103     case 4:  Kind = SectionKind::getMergeableConst4(); break;
1104     case 8:  Kind = SectionKind::getMergeableConst8(); break;
1105     case 16: Kind = SectionKind::getMergeableConst16();break;
1106     default: Kind = SectionKind::getMergeableConst(); break;
1107     }
1108     }
1109
1110     const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
1111
1112     // The number of sections are small, just do a linear search from the
1113     // last section to the first.
1114     bool Found = false;
1115     unsigned SecIdx = CPSections.size();
1116     while (SecIdx != 0) {
1117       if (CPSections[--SecIdx].S == S) {
1118         Found = true;
1119         break;
1120       }
1121     }
1122     if (!Found) {
1123       SecIdx = CPSections.size();
1124       CPSections.push_back(SectionCPs(S, Align));
1125     }
1126
1127     if (Align > CPSections[SecIdx].Alignment)
1128       CPSections[SecIdx].Alignment = Align;
1129     CPSections[SecIdx].CPEs.push_back(i);
1130   }
1131
1132   // Now print stuff into the calculated sections.
1133   for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
1134     OutStreamer.SwitchSection(CPSections[i].S);
1135     EmitAlignment(Log2_32(CPSections[i].Alignment));
1136
1137     unsigned Offset = 0;
1138     for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
1139       unsigned CPI = CPSections[i].CPEs[j];
1140       MachineConstantPoolEntry CPE = CP[CPI];
1141
1142       // Emit inter-object padding for alignment.
1143       unsigned AlignMask = CPE.getAlignment() - 1;
1144       unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
1145       OutStreamer.EmitZeros(NewOffset - Offset);
1146
1147       Type *Ty = CPE.getType();
1148       Offset = NewOffset + TM.getDataLayout()->getTypeAllocSize(Ty);
1149       OutStreamer.EmitLabel(GetCPISymbol(CPI));
1150
1151       if (CPE.isMachineConstantPoolEntry())
1152         EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
1153       else
1154         EmitGlobalConstant(CPE.Val.ConstVal);
1155     }
1156   }
1157 }
1158
1159 /// EmitJumpTableInfo - Print assembly representations of the jump tables used
1160 /// by the current function to the current output stream.
1161 ///
1162 void AsmPrinter::EmitJumpTableInfo() {
1163   const DataLayout *DL = MF->getTarget().getDataLayout();
1164   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
1165   if (MJTI == 0) return;
1166   if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return;
1167   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1168   if (JT.empty()) return;
1169
1170   // Pick the directive to use to print the jump table entries, and switch to
1171   // the appropriate section.
1172   const Function *F = MF->getFunction();
1173   bool JTInDiffSection = false;
1174   if (// In PIC mode, we need to emit the jump table to the same section as the
1175       // function body itself, otherwise the label differences won't make sense.
1176       // FIXME: Need a better predicate for this: what about custom entries?
1177       MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
1178       // We should also do if the section name is NULL or function is declared
1179       // in discardable section
1180       // FIXME: this isn't the right predicate, should be based on the MCSection
1181       // for the function.
1182       F->isWeakForLinker()) {
1183     OutStreamer.SwitchSection(
1184         getObjFileLowering().SectionForGlobal(F, *Mang, TM));
1185   } else {
1186     // Otherwise, drop it in the readonly section.
1187     const MCSection *ReadOnlySection =
1188       getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
1189     OutStreamer.SwitchSection(ReadOnlySection);
1190     JTInDiffSection = true;
1191   }
1192
1193   EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getDataLayout())));
1194
1195   // Jump tables in code sections are marked with a data_region directive
1196   // where that's supported.
1197   if (!JTInDiffSection)
1198     OutStreamer.EmitDataRegion(MCDR_DataRegionJT32);
1199
1200   for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
1201     const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
1202
1203     // If this jump table was deleted, ignore it.
1204     if (JTBBs.empty()) continue;
1205
1206     // For the EK_LabelDifference32 entry, if the target supports .set, emit a
1207     // .set directive for each unique entry.  This reduces the number of
1208     // relocations the assembler will generate for the jump table.
1209     if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
1210         MAI->hasSetDirective()) {
1211       SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
1212       const TargetLowering *TLI = TM.getTargetLowering();
1213       const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
1214       for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
1215         const MachineBasicBlock *MBB = JTBBs[ii];
1216         if (!EmittedSets.insert(MBB)) continue;
1217
1218         // .set LJTSet, LBB32-base
1219         const MCExpr *LHS =
1220           MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
1221         OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
1222                                 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
1223       }
1224     }
1225
1226     // On some targets (e.g. Darwin) we want to emit two consecutive labels
1227     // before each jump table.  The first label is never referenced, but tells
1228     // the assembler and linker the extents of the jump table object.  The
1229     // second label is actually referenced by the code.
1230     if (JTInDiffSection && DL->hasLinkerPrivateGlobalPrefix())
1231       // FIXME: This doesn't have to have any specific name, just any randomly
1232       // named and numbered 'l' label would work.  Simplify GetJTISymbol.
1233       OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
1234
1235     OutStreamer.EmitLabel(GetJTISymbol(JTI));
1236
1237     for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
1238       EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
1239   }
1240   if (!JTInDiffSection)
1241     OutStreamer.EmitDataRegion(MCDR_DataRegionEnd);
1242 }
1243
1244 /// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
1245 /// current stream.
1246 void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
1247                                     const MachineBasicBlock *MBB,
1248                                     unsigned UID) const {
1249   assert(MBB && MBB->getNumber() >= 0 && "Invalid basic block");
1250   const MCExpr *Value = 0;
1251   switch (MJTI->getEntryKind()) {
1252   case MachineJumpTableInfo::EK_Inline:
1253     llvm_unreachable("Cannot emit EK_Inline jump table entry");
1254   case MachineJumpTableInfo::EK_Custom32:
1255     Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
1256                                                               OutContext);
1257     break;
1258   case MachineJumpTableInfo::EK_BlockAddress:
1259     // EK_BlockAddress - Each entry is a plain address of block, e.g.:
1260     //     .word LBB123
1261     Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
1262     break;
1263   case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
1264     // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
1265     // with a relocation as gp-relative, e.g.:
1266     //     .gprel32 LBB123
1267     MCSymbol *MBBSym = MBB->getSymbol();
1268     OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
1269     return;
1270   }
1271
1272   case MachineJumpTableInfo::EK_GPRel64BlockAddress: {
1273     // EK_GPRel64BlockAddress - Each entry is an address of block, encoded
1274     // with a relocation as gp-relative, e.g.:
1275     //     .gpdword LBB123
1276     MCSymbol *MBBSym = MBB->getSymbol();
1277     OutStreamer.EmitGPRel64Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
1278     return;
1279   }
1280
1281   case MachineJumpTableInfo::EK_LabelDifference32: {
1282     // EK_LabelDifference32 - Each entry is the address of the block minus
1283     // the address of the jump table.  This is used for PIC jump tables where
1284     // gprel32 is not supported.  e.g.:
1285     //      .word LBB123 - LJTI1_2
1286     // If the .set directive is supported, this is emitted as:
1287     //      .set L4_5_set_123, LBB123 - LJTI1_2
1288     //      .word L4_5_set_123
1289
1290     // If we have emitted set directives for the jump table entries, print
1291     // them rather than the entries themselves.  If we're emitting PIC, then
1292     // emit the table entries as differences between two text section labels.
1293     if (MAI->hasSetDirective()) {
1294       // If we used .set, reference the .set's symbol.
1295       Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
1296                                       OutContext);
1297       break;
1298     }
1299     // Otherwise, use the difference as the jump table entry.
1300     Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
1301     const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
1302     Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
1303     break;
1304   }
1305   }
1306
1307   assert(Value && "Unknown entry kind!");
1308
1309   unsigned EntrySize = MJTI->getEntrySize(*TM.getDataLayout());
1310   OutStreamer.EmitValue(Value, EntrySize);
1311 }
1312
1313
1314 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a
1315 /// special global used by LLVM.  If so, emit it and return true, otherwise
1316 /// do nothing and return false.
1317 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
1318   if (GV->getName() == "llvm.used") {
1319     if (MAI->hasNoDeadStrip())    // No need to emit this at all.
1320       EmitLLVMUsedList(cast<ConstantArray>(GV->getInitializer()));
1321     return true;
1322   }
1323
1324   // Ignore debug and non-emitted data.  This handles llvm.compiler.used.
1325   if (GV->getSection() == "llvm.metadata" ||
1326       GV->hasAvailableExternallyLinkage())
1327     return true;
1328
1329   if (!GV->hasAppendingLinkage()) return false;
1330
1331   assert(GV->hasInitializer() && "Not a special LLVM global!");
1332
1333   if (GV->getName() == "llvm.global_ctors") {
1334     EmitXXStructorList(GV->getInitializer(), /* isCtor */ true);
1335
1336     if (TM.getRelocationModel() == Reloc::Static &&
1337         MAI->hasStaticCtorDtorReferenceInStaticMode()) {
1338       StringRef Sym(".constructors_used");
1339       OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
1340                                       MCSA_Reference);
1341     }
1342     return true;
1343   }
1344
1345   if (GV->getName() == "llvm.global_dtors") {
1346     EmitXXStructorList(GV->getInitializer(), /* isCtor */ false);
1347
1348     if (TM.getRelocationModel() == Reloc::Static &&
1349         MAI->hasStaticCtorDtorReferenceInStaticMode()) {
1350       StringRef Sym(".destructors_used");
1351       OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
1352                                       MCSA_Reference);
1353     }
1354     return true;
1355   }
1356
1357   return false;
1358 }
1359
1360 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
1361 /// global in the specified llvm.used list for which emitUsedDirectiveFor
1362 /// is true, as being used with this directive.
1363 void AsmPrinter::EmitLLVMUsedList(const ConstantArray *InitList) {
1364   // Should be an array of 'i8*'.
1365   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
1366     const GlobalValue *GV =
1367       dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
1368     if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, *Mang))
1369       OutStreamer.EmitSymbolAttribute(getSymbol(GV), MCSA_NoDeadStrip);
1370   }
1371 }
1372
1373 /// EmitXXStructorList - Emit the ctor or dtor list taking into account the init
1374 /// priority.
1375 void AsmPrinter::EmitXXStructorList(const Constant *List, bool isCtor) {
1376   // Should be an array of '{ int, void ()* }' structs.  The first value is the
1377   // init priority.
1378   if (!isa<ConstantArray>(List)) return;
1379
1380   // Sanity check the structors list.
1381   const ConstantArray *InitList = dyn_cast<ConstantArray>(List);
1382   if (!InitList) return; // Not an array!
1383   StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType());
1384   if (!ETy || ETy->getNumElements() != 2) return; // Not an array of pairs!
1385   if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) ||
1386       !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr).
1387
1388   // Gather the structors in a form that's convenient for sorting by priority.
1389   typedef std::pair<unsigned, Constant *> Structor;
1390   SmallVector<Structor, 8> Structors;
1391   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
1392     ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i));
1393     if (!CS) continue; // Malformed.
1394     if (CS->getOperand(1)->isNullValue())
1395       break;  // Found a null terminator, skip the rest.
1396     ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
1397     if (!Priority) continue; // Malformed.
1398     Structors.push_back(std::make_pair(Priority->getLimitedValue(65535),
1399                                        CS->getOperand(1)));
1400   }
1401
1402   // Emit the function pointers in the target-specific order
1403   const DataLayout *DL = TM.getDataLayout();
1404   unsigned Align = Log2_32(DL->getPointerPrefAlignment());
1405   std::stable_sort(Structors.begin(), Structors.end(), less_first());
1406   for (unsigned i = 0, e = Structors.size(); i != e; ++i) {
1407     const MCSection *OutputSection =
1408       (isCtor ?
1409        getObjFileLowering().getStaticCtorSection(Structors[i].first) :
1410        getObjFileLowering().getStaticDtorSection(Structors[i].first));
1411     OutStreamer.SwitchSection(OutputSection);
1412     if (OutStreamer.getCurrentSection() != OutStreamer.getPreviousSection())
1413       EmitAlignment(Align);
1414     EmitXXStructor(Structors[i].second);
1415   }
1416 }
1417
1418 void AsmPrinter::EmitModuleIdents(Module &M) {
1419   if (!MAI->hasIdentDirective())
1420     return;
1421
1422   if (const NamedMDNode *NMD = M.getNamedMetadata("llvm.ident")) {
1423     for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
1424       const MDNode *N = NMD->getOperand(i);
1425       assert(N->getNumOperands() == 1 &&
1426              "llvm.ident metadata entry can have only one operand");
1427       const MDString *S = cast<MDString>(N->getOperand(0));
1428       OutStreamer.EmitIdent(S->getString());
1429     }
1430   }
1431 }
1432
1433 //===--------------------------------------------------------------------===//
1434 // Emission and print routines
1435 //
1436
1437 /// EmitInt8 - Emit a byte directive and value.
1438 ///
1439 void AsmPrinter::EmitInt8(int Value) const {
1440   OutStreamer.EmitIntValue(Value, 1);
1441 }
1442
1443 /// EmitInt16 - Emit a short directive and value.
1444 ///
1445 void AsmPrinter::EmitInt16(int Value) const {
1446   OutStreamer.EmitIntValue(Value, 2);
1447 }
1448
1449 /// EmitInt32 - Emit a long directive and value.
1450 ///
1451 void AsmPrinter::EmitInt32(int Value) const {
1452   OutStreamer.EmitIntValue(Value, 4);
1453 }
1454
1455 /// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
1456 /// in bytes of the directive is specified by Size and Hi/Lo specify the
1457 /// labels.  This implicitly uses .set if it is available.
1458 void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
1459                                      unsigned Size) const {
1460   // Get the Hi-Lo expression.
1461   const MCExpr *Diff =
1462     MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext),
1463                             MCSymbolRefExpr::Create(Lo, OutContext),
1464                             OutContext);
1465
1466   if (!MAI->hasSetDirective()) {
1467     OutStreamer.EmitValue(Diff, Size);
1468     return;
1469   }
1470
1471   // Otherwise, emit with .set (aka assignment).
1472   MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++);
1473   OutStreamer.EmitAssignment(SetLabel, Diff);
1474   OutStreamer.EmitSymbolValue(SetLabel, Size);
1475 }
1476
1477 /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo"
1478 /// where the size in bytes of the directive is specified by Size and Hi/Lo
1479 /// specify the labels.  This implicitly uses .set if it is available.
1480 void AsmPrinter::EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset,
1481                                            const MCSymbol *Lo,
1482                                            unsigned Size) const {
1483
1484   // Emit Hi+Offset - Lo
1485   // Get the Hi+Offset expression.
1486   const MCExpr *Plus =
1487     MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Hi, OutContext),
1488                             MCConstantExpr::Create(Offset, OutContext),
1489                             OutContext);
1490
1491   // Get the Hi+Offset-Lo expression.
1492   const MCExpr *Diff =
1493     MCBinaryExpr::CreateSub(Plus,
1494                             MCSymbolRefExpr::Create(Lo, OutContext),
1495                             OutContext);
1496
1497   if (!MAI->hasSetDirective())
1498     OutStreamer.EmitValue(Diff, Size);
1499   else {
1500     // Otherwise, emit with .set (aka assignment).
1501     MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++);
1502     OutStreamer.EmitAssignment(SetLabel, Diff);
1503     OutStreamer.EmitSymbolValue(SetLabel, Size);
1504   }
1505 }
1506
1507 /// EmitLabelPlusOffset - Emit something like ".long Label+Offset"
1508 /// where the size in bytes of the directive is specified by Size and Label
1509 /// specifies the label.  This implicitly uses .set if it is available.
1510 void AsmPrinter::EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset,
1511                                      unsigned Size,
1512                                      bool IsSectionRelative) const {
1513   if (MAI->needsDwarfSectionOffsetDirective() && IsSectionRelative) {
1514     OutStreamer.EmitCOFFSecRel32(Label);
1515     return;
1516   }
1517
1518   // Emit Label+Offset (or just Label if Offset is zero)
1519   const MCExpr *Expr = MCSymbolRefExpr::Create(Label, OutContext);
1520   if (Offset)
1521     Expr = MCBinaryExpr::CreateAdd(
1522         Expr, MCConstantExpr::Create(Offset, OutContext), OutContext);
1523
1524   OutStreamer.EmitValue(Expr, Size);
1525 }
1526
1527 //===----------------------------------------------------------------------===//
1528
1529 // EmitAlignment - Emit an alignment directive to the specified power of
1530 // two boundary.  For example, if you pass in 3 here, you will get an 8
1531 // byte alignment.  If a global value is specified, and if that global has
1532 // an explicit alignment requested, it will override the alignment request
1533 // if required for correctness.
1534 //
1535 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
1536   if (GV) NumBits = getGVAlignmentLog2(GV, *TM.getDataLayout(), NumBits);
1537
1538   if (NumBits == 0) return;   // 1-byte aligned: no need to emit alignment.
1539
1540   if (getCurrentSection()->getKind().isText())
1541     OutStreamer.EmitCodeAlignment(1 << NumBits);
1542   else
1543     OutStreamer.EmitValueToAlignment(1 << NumBits);
1544 }
1545
1546 //===----------------------------------------------------------------------===//
1547 // Constant emission.
1548 //===----------------------------------------------------------------------===//
1549
1550 /// lowerConstant - Lower the specified LLVM Constant to an MCExpr.
1551 ///
1552 static const MCExpr *lowerConstant(const Constant *CV, AsmPrinter &AP) {
1553   MCContext &Ctx = AP.OutContext;
1554
1555   if (CV->isNullValue() || isa<UndefValue>(CV))
1556     return MCConstantExpr::Create(0, Ctx);
1557
1558   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
1559     return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
1560
1561   if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
1562     return MCSymbolRefExpr::Create(AP.getSymbol(GV), Ctx);
1563
1564   if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
1565     return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
1566
1567   const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
1568   if (CE == 0) {
1569     llvm_unreachable("Unknown constant value to lower!");
1570   }
1571
1572   if (const MCExpr *RelocExpr =
1573           AP.getObjFileLowering().getExecutableRelativeSymbol(CE, *AP.Mang))
1574     return RelocExpr;
1575
1576   switch (CE->getOpcode()) {
1577   default:
1578     // If the code isn't optimized, there may be outstanding folding
1579     // opportunities. Attempt to fold the expression using DataLayout as a
1580     // last resort before giving up.
1581     if (Constant *C =
1582           ConstantFoldConstantExpression(CE, AP.TM.getDataLayout()))
1583       if (C != CE)
1584         return lowerConstant(C, AP);
1585
1586     // Otherwise report the problem to the user.
1587     {
1588       std::string S;
1589       raw_string_ostream OS(S);
1590       OS << "Unsupported expression in static initializer: ";
1591       CE->printAsOperand(OS, /*PrintType=*/false,
1592                      !AP.MF ? 0 : AP.MF->getFunction()->getParent());
1593       report_fatal_error(OS.str());
1594     }
1595   case Instruction::GetElementPtr: {
1596     const DataLayout &DL = *AP.TM.getDataLayout();
1597     // Generate a symbolic expression for the byte address
1598     APInt OffsetAI(DL.getPointerTypeSizeInBits(CE->getType()), 0);
1599     cast<GEPOperator>(CE)->accumulateConstantOffset(DL, OffsetAI);
1600
1601     const MCExpr *Base = lowerConstant(CE->getOperand(0), AP);
1602     if (!OffsetAI)
1603       return Base;
1604
1605     int64_t Offset = OffsetAI.getSExtValue();
1606     return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
1607                                    Ctx);
1608   }
1609
1610   case Instruction::Trunc:
1611     // We emit the value and depend on the assembler to truncate the generated
1612     // expression properly.  This is important for differences between
1613     // blockaddress labels.  Since the two labels are in the same function, it
1614     // is reasonable to treat their delta as a 32-bit value.
1615     // FALL THROUGH.
1616   case Instruction::BitCast:
1617     return lowerConstant(CE->getOperand(0), AP);
1618
1619   case Instruction::IntToPtr: {
1620     const DataLayout &DL = *AP.TM.getDataLayout();
1621     // Handle casts to pointers by changing them into casts to the appropriate
1622     // integer type.  This promotes constant folding and simplifies this code.
1623     Constant *Op = CE->getOperand(0);
1624     Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()),
1625                                       false/*ZExt*/);
1626     return lowerConstant(Op, AP);
1627   }
1628
1629   case Instruction::PtrToInt: {
1630     const DataLayout &DL = *AP.TM.getDataLayout();
1631     // Support only foldable casts to/from pointers that can be eliminated by
1632     // changing the pointer to the appropriately sized integer type.
1633     Constant *Op = CE->getOperand(0);
1634     Type *Ty = CE->getType();
1635
1636     const MCExpr *OpExpr = lowerConstant(Op, AP);
1637
1638     // We can emit the pointer value into this slot if the slot is an
1639     // integer slot equal to the size of the pointer.
1640     if (DL.getTypeAllocSize(Ty) == DL.getTypeAllocSize(Op->getType()))
1641       return OpExpr;
1642
1643     // Otherwise the pointer is smaller than the resultant integer, mask off
1644     // the high bits so we are sure to get a proper truncation if the input is
1645     // a constant expr.
1646     unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType());
1647     const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
1648     return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
1649   }
1650
1651   // The MC library also has a right-shift operator, but it isn't consistently
1652   // signed or unsigned between different targets.
1653   case Instruction::Add:
1654   case Instruction::Sub:
1655   case Instruction::Mul:
1656   case Instruction::SDiv:
1657   case Instruction::SRem:
1658   case Instruction::Shl:
1659   case Instruction::And:
1660   case Instruction::Or:
1661   case Instruction::Xor: {
1662     const MCExpr *LHS = lowerConstant(CE->getOperand(0), AP);
1663     const MCExpr *RHS = lowerConstant(CE->getOperand(1), AP);
1664     switch (CE->getOpcode()) {
1665     default: llvm_unreachable("Unknown binary operator constant cast expr");
1666     case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
1667     case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
1668     case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx);
1669     case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx);
1670     case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx);
1671     case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
1672     case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
1673     case Instruction::Or:  return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
1674     case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
1675     }
1676   }
1677   }
1678 }
1679
1680 static void emitGlobalConstantImpl(const Constant *C, AsmPrinter &AP);
1681
1682 /// isRepeatedByteSequence - Determine whether the given value is
1683 /// composed of a repeated sequence of identical bytes and return the
1684 /// byte value.  If it is not a repeated sequence, return -1.
1685 static int isRepeatedByteSequence(const ConstantDataSequential *V) {
1686   StringRef Data = V->getRawDataValues();
1687   assert(!Data.empty() && "Empty aggregates should be CAZ node");
1688   char C = Data[0];
1689   for (unsigned i = 1, e = Data.size(); i != e; ++i)
1690     if (Data[i] != C) return -1;
1691   return static_cast<uint8_t>(C); // Ensure 255 is not returned as -1.
1692 }
1693
1694
1695 /// isRepeatedByteSequence - Determine whether the given value is
1696 /// composed of a repeated sequence of identical bytes and return the
1697 /// byte value.  If it is not a repeated sequence, return -1.
1698 static int isRepeatedByteSequence(const Value *V, TargetMachine &TM) {
1699
1700   if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
1701     if (CI->getBitWidth() > 64) return -1;
1702
1703     uint64_t Size = TM.getDataLayout()->getTypeAllocSize(V->getType());
1704     uint64_t Value = CI->getZExtValue();
1705
1706     // Make sure the constant is at least 8 bits long and has a power
1707     // of 2 bit width.  This guarantees the constant bit width is
1708     // always a multiple of 8 bits, avoiding issues with padding out
1709     // to Size and other such corner cases.
1710     if (CI->getBitWidth() < 8 || !isPowerOf2_64(CI->getBitWidth())) return -1;
1711
1712     uint8_t Byte = static_cast<uint8_t>(Value);
1713
1714     for (unsigned i = 1; i < Size; ++i) {
1715       Value >>= 8;
1716       if (static_cast<uint8_t>(Value) != Byte) return -1;
1717     }
1718     return Byte;
1719   }
1720   if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) {
1721     // Make sure all array elements are sequences of the same repeated
1722     // byte.
1723     assert(CA->getNumOperands() != 0 && "Should be a CAZ");
1724     int Byte = isRepeatedByteSequence(CA->getOperand(0), TM);
1725     if (Byte == -1) return -1;
1726
1727     for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
1728       int ThisByte = isRepeatedByteSequence(CA->getOperand(i), TM);
1729       if (ThisByte == -1) return -1;
1730       if (Byte != ThisByte) return -1;
1731     }
1732     return Byte;
1733   }
1734
1735   if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V))
1736     return isRepeatedByteSequence(CDS);
1737
1738   return -1;
1739 }
1740
1741 static void emitGlobalConstantDataSequential(const ConstantDataSequential *CDS,
1742                                              AsmPrinter &AP){
1743
1744   // See if we can aggregate this into a .fill, if so, emit it as such.
1745   int Value = isRepeatedByteSequence(CDS, AP.TM);
1746   if (Value != -1) {
1747     uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CDS->getType());
1748     // Don't emit a 1-byte object as a .fill.
1749     if (Bytes > 1)
1750       return AP.OutStreamer.EmitFill(Bytes, Value);
1751   }
1752
1753   // If this can be emitted with .ascii/.asciz, emit it as such.
1754   if (CDS->isString())
1755     return AP.OutStreamer.EmitBytes(CDS->getAsString());
1756
1757   // Otherwise, emit the values in successive locations.
1758   unsigned ElementByteSize = CDS->getElementByteSize();
1759   if (isa<IntegerType>(CDS->getElementType())) {
1760     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1761       if (AP.isVerbose())
1762         AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n",
1763                                                 CDS->getElementAsInteger(i));
1764       AP.OutStreamer.EmitIntValue(CDS->getElementAsInteger(i),
1765                                   ElementByteSize);
1766     }
1767   } else if (ElementByteSize == 4) {
1768     // FP Constants are printed as integer constants to avoid losing
1769     // precision.
1770     assert(CDS->getElementType()->isFloatTy());
1771     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1772       union {
1773         float F;
1774         uint32_t I;
1775       };
1776
1777       F = CDS->getElementAsFloat(i);
1778       if (AP.isVerbose())
1779         AP.OutStreamer.GetCommentOS() << "float " << F << '\n';
1780       AP.OutStreamer.EmitIntValue(I, 4);
1781     }
1782   } else {
1783     assert(CDS->getElementType()->isDoubleTy());
1784     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1785       union {
1786         double F;
1787         uint64_t I;
1788       };
1789
1790       F = CDS->getElementAsDouble(i);
1791       if (AP.isVerbose())
1792         AP.OutStreamer.GetCommentOS() << "double " << F << '\n';
1793       AP.OutStreamer.EmitIntValue(I, 8);
1794     }
1795   }
1796
1797   const DataLayout &DL = *AP.TM.getDataLayout();
1798   unsigned Size = DL.getTypeAllocSize(CDS->getType());
1799   unsigned EmittedSize = DL.getTypeAllocSize(CDS->getType()->getElementType()) *
1800                         CDS->getNumElements();
1801   if (unsigned Padding = Size - EmittedSize)
1802     AP.OutStreamer.EmitZeros(Padding);
1803
1804 }
1805
1806 static void emitGlobalConstantArray(const ConstantArray *CA, AsmPrinter &AP) {
1807   // See if we can aggregate some values.  Make sure it can be
1808   // represented as a series of bytes of the constant value.
1809   int Value = isRepeatedByteSequence(CA, AP.TM);
1810
1811   if (Value != -1) {
1812     uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CA->getType());
1813     AP.OutStreamer.EmitFill(Bytes, Value);
1814   }
1815   else {
1816     for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1817       emitGlobalConstantImpl(CA->getOperand(i), AP);
1818   }
1819 }
1820
1821 static void emitGlobalConstantVector(const ConstantVector *CV, AsmPrinter &AP) {
1822   for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
1823     emitGlobalConstantImpl(CV->getOperand(i), AP);
1824
1825   const DataLayout &DL = *AP.TM.getDataLayout();
1826   unsigned Size = DL.getTypeAllocSize(CV->getType());
1827   unsigned EmittedSize = DL.getTypeAllocSize(CV->getType()->getElementType()) *
1828                          CV->getType()->getNumElements();
1829   if (unsigned Padding = Size - EmittedSize)
1830     AP.OutStreamer.EmitZeros(Padding);
1831 }
1832
1833 static void emitGlobalConstantStruct(const ConstantStruct *CS, AsmPrinter &AP) {
1834   // Print the fields in successive locations. Pad to align if needed!
1835   const DataLayout *DL = AP.TM.getDataLayout();
1836   unsigned Size = DL->getTypeAllocSize(CS->getType());
1837   const StructLayout *Layout = DL->getStructLayout(CS->getType());
1838   uint64_t SizeSoFar = 0;
1839   for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
1840     const Constant *Field = CS->getOperand(i);
1841
1842     // Check if padding is needed and insert one or more 0s.
1843     uint64_t FieldSize = DL->getTypeAllocSize(Field->getType());
1844     uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
1845                         - Layout->getElementOffset(i)) - FieldSize;
1846     SizeSoFar += FieldSize + PadSize;
1847
1848     // Now print the actual field value.
1849     emitGlobalConstantImpl(Field, AP);
1850
1851     // Insert padding - this may include padding to increase the size of the
1852     // current field up to the ABI size (if the struct is not packed) as well
1853     // as padding to ensure that the next field starts at the right offset.
1854     AP.OutStreamer.EmitZeros(PadSize);
1855   }
1856   assert(SizeSoFar == Layout->getSizeInBytes() &&
1857          "Layout of constant struct may be incorrect!");
1858 }
1859
1860 static void emitGlobalConstantFP(const ConstantFP *CFP, AsmPrinter &AP) {
1861   APInt API = CFP->getValueAPF().bitcastToAPInt();
1862
1863   // First print a comment with what we think the original floating-point value
1864   // should have been.
1865   if (AP.isVerbose()) {
1866     SmallString<8> StrVal;
1867     CFP->getValueAPF().toString(StrVal);
1868
1869     CFP->getType()->print(AP.OutStreamer.GetCommentOS());
1870     AP.OutStreamer.GetCommentOS() << ' ' << StrVal << '\n';
1871   }
1872
1873   // Now iterate through the APInt chunks, emitting them in endian-correct
1874   // order, possibly with a smaller chunk at beginning/end (e.g. for x87 80-bit
1875   // floats).
1876   unsigned NumBytes = API.getBitWidth() / 8;
1877   unsigned TrailingBytes = NumBytes % sizeof(uint64_t);
1878   const uint64_t *p = API.getRawData();
1879
1880   // PPC's long double has odd notions of endianness compared to how LLVM
1881   // handles it: p[0] goes first for *big* endian on PPC.
1882   if (AP.TM.getDataLayout()->isBigEndian() != CFP->getType()->isPPC_FP128Ty()) {
1883     int Chunk = API.getNumWords() - 1;
1884
1885     if (TrailingBytes)
1886       AP.OutStreamer.EmitIntValue(p[Chunk--], TrailingBytes);
1887
1888     for (; Chunk >= 0; --Chunk)
1889       AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t));
1890   } else {
1891     unsigned Chunk;
1892     for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk)
1893       AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t));
1894
1895     if (TrailingBytes)
1896       AP.OutStreamer.EmitIntValue(p[Chunk], TrailingBytes);
1897   }
1898
1899   // Emit the tail padding for the long double.
1900   const DataLayout &DL = *AP.TM.getDataLayout();
1901   AP.OutStreamer.EmitZeros(DL.getTypeAllocSize(CFP->getType()) -
1902                            DL.getTypeStoreSize(CFP->getType()));
1903 }
1904
1905 static void emitGlobalConstantLargeInt(const ConstantInt *CI, AsmPrinter &AP) {
1906   const DataLayout *DL = AP.TM.getDataLayout();
1907   unsigned BitWidth = CI->getBitWidth();
1908
1909   // Copy the value as we may massage the layout for constants whose bit width
1910   // is not a multiple of 64-bits.
1911   APInt Realigned(CI->getValue());
1912   uint64_t ExtraBits = 0;
1913   unsigned ExtraBitsSize = BitWidth & 63;
1914
1915   if (ExtraBitsSize) {
1916     // The bit width of the data is not a multiple of 64-bits.
1917     // The extra bits are expected to be at the end of the chunk of the memory.
1918     // Little endian:
1919     // * Nothing to be done, just record the extra bits to emit.
1920     // Big endian:
1921     // * Record the extra bits to emit.
1922     // * Realign the raw data to emit the chunks of 64-bits.
1923     if (DL->isBigEndian()) {
1924       // Basically the structure of the raw data is a chunk of 64-bits cells:
1925       //    0        1         BitWidth / 64
1926       // [chunk1][chunk2] ... [chunkN].
1927       // The most significant chunk is chunkN and it should be emitted first.
1928       // However, due to the alignment issue chunkN contains useless bits.
1929       // Realign the chunks so that they contain only useless information:
1930       // ExtraBits     0       1       (BitWidth / 64) - 1
1931       //       chu[nk1 chu][nk2 chu] ... [nkN-1 chunkN]
1932       ExtraBits = Realigned.getRawData()[0] &
1933         (((uint64_t)-1) >> (64 - ExtraBitsSize));
1934       Realigned = Realigned.lshr(ExtraBitsSize);
1935     } else
1936       ExtraBits = Realigned.getRawData()[BitWidth / 64];
1937   }
1938
1939   // We don't expect assemblers to support integer data directives
1940   // for more than 64 bits, so we emit the data in at most 64-bit
1941   // quantities at a time.
1942   const uint64_t *RawData = Realigned.getRawData();
1943   for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
1944     uint64_t Val = DL->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1945     AP.OutStreamer.EmitIntValue(Val, 8);
1946   }
1947
1948   if (ExtraBitsSize) {
1949     // Emit the extra bits after the 64-bits chunks.
1950
1951     // Emit a directive that fills the expected size.
1952     uint64_t Size = AP.TM.getDataLayout()->getTypeAllocSize(CI->getType());
1953     Size -= (BitWidth / 64) * 8;
1954     assert(Size && Size * 8 >= ExtraBitsSize &&
1955            (ExtraBits & (((uint64_t)-1) >> (64 - ExtraBitsSize)))
1956            == ExtraBits && "Directive too small for extra bits.");
1957     AP.OutStreamer.EmitIntValue(ExtraBits, Size);
1958   }
1959 }
1960
1961 static void emitGlobalConstantImpl(const Constant *CV, AsmPrinter &AP) {
1962   const DataLayout *DL = AP.TM.getDataLayout();
1963   uint64_t Size = DL->getTypeAllocSize(CV->getType());
1964   if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV))
1965     return AP.OutStreamer.EmitZeros(Size);
1966
1967   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1968     switch (Size) {
1969     case 1:
1970     case 2:
1971     case 4:
1972     case 8:
1973       if (AP.isVerbose())
1974         AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n",
1975                                                 CI->getZExtValue());
1976       AP.OutStreamer.EmitIntValue(CI->getZExtValue(), Size);
1977       return;
1978     default:
1979       emitGlobalConstantLargeInt(CI, AP);
1980       return;
1981     }
1982   }
1983
1984   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
1985     return emitGlobalConstantFP(CFP, AP);
1986
1987   if (isa<ConstantPointerNull>(CV)) {
1988     AP.OutStreamer.EmitIntValue(0, Size);
1989     return;
1990   }
1991
1992   if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(CV))
1993     return emitGlobalConstantDataSequential(CDS, AP);
1994
1995   if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1996     return emitGlobalConstantArray(CVA, AP);
1997
1998   if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1999     return emitGlobalConstantStruct(CVS, AP);
2000
2001   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
2002     // Look through bitcasts, which might not be able to be MCExpr'ized (e.g. of
2003     // vectors).
2004     if (CE->getOpcode() == Instruction::BitCast)
2005       return emitGlobalConstantImpl(CE->getOperand(0), AP);
2006
2007     if (Size > 8) {
2008       // If the constant expression's size is greater than 64-bits, then we have
2009       // to emit the value in chunks. Try to constant fold the value and emit it
2010       // that way.
2011       Constant *New = ConstantFoldConstantExpression(CE, DL);
2012       if (New && New != CE)
2013         return emitGlobalConstantImpl(New, AP);
2014     }
2015   }
2016
2017   if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
2018     return emitGlobalConstantVector(V, AP);
2019
2020   // Otherwise, it must be a ConstantExpr.  Lower it to an MCExpr, then emit it
2021   // thread the streamer with EmitValue.
2022   AP.OutStreamer.EmitValue(lowerConstant(CV, AP), Size);
2023 }
2024
2025 /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
2026 void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
2027   uint64_t Size = TM.getDataLayout()->getTypeAllocSize(CV->getType());
2028   if (Size)
2029     emitGlobalConstantImpl(CV, *this);
2030   else if (MAI->hasSubsectionsViaSymbols()) {
2031     // If the global has zero size, emit a single byte so that two labels don't
2032     // look like they are at the same location.
2033     OutStreamer.EmitIntValue(0, 1);
2034   }
2035 }
2036
2037 void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
2038   // Target doesn't support this yet!
2039   llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
2040 }
2041
2042 void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const {
2043   if (Offset > 0)
2044     OS << '+' << Offset;
2045   else if (Offset < 0)
2046     OS << Offset;
2047 }
2048
2049 //===----------------------------------------------------------------------===//
2050 // Symbol Lowering Routines.
2051 //===----------------------------------------------------------------------===//
2052
2053 /// GetTempSymbol - Return the MCSymbol corresponding to the assembler
2054 /// temporary label with the specified stem and unique ID.
2055 MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name, unsigned ID) const {
2056   const DataLayout *DL = TM.getDataLayout();
2057   return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix()) +
2058                                       Name + Twine(ID));
2059 }
2060
2061 /// GetTempSymbol - Return an assembler temporary label with the specified
2062 /// stem.
2063 MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name) const {
2064   const DataLayout *DL = TM.getDataLayout();
2065   return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix())+
2066                                       Name);
2067 }
2068
2069
2070 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const {
2071   return MMI->getAddrLabelSymbol(BA->getBasicBlock());
2072 }
2073
2074 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const {
2075   return MMI->getAddrLabelSymbol(BB);
2076 }
2077
2078 /// GetCPISymbol - Return the symbol for the specified constant pool entry.
2079 MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
2080   const DataLayout *DL = TM.getDataLayout();
2081   return OutContext.GetOrCreateSymbol
2082     (Twine(DL->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber())
2083      + "_" + Twine(CPID));
2084 }
2085
2086 /// GetJTISymbol - Return the symbol for the specified jump table entry.
2087 MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
2088   return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
2089 }
2090
2091 /// GetJTSetSymbol - Return the symbol for the specified jump table .set
2092 /// FIXME: privatize to AsmPrinter.
2093 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
2094   const DataLayout *DL = TM.getDataLayout();
2095   return OutContext.GetOrCreateSymbol
2096   (Twine(DL->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" +
2097    Twine(UID) + "_set_" + Twine(MBBID));
2098 }
2099
2100 MCSymbol *AsmPrinter::getSymbolWithGlobalValueBase(const GlobalValue *GV,
2101                                                    StringRef Suffix) const {
2102   return getObjFileLowering().getSymbolWithGlobalValueBase(GV, Suffix, *Mang);
2103 }
2104
2105 /// GetExternalSymbolSymbol - Return the MCSymbol for the specified
2106 /// ExternalSymbol.
2107 MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
2108   SmallString<60> NameStr;
2109   Mang->getNameWithPrefix(NameStr, Sym);
2110   return OutContext.GetOrCreateSymbol(NameStr.str());
2111 }
2112
2113
2114
2115 /// PrintParentLoopComment - Print comments about parent loops of this one.
2116 static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
2117                                    unsigned FunctionNumber) {
2118   if (Loop == 0) return;
2119   PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
2120   OS.indent(Loop->getLoopDepth()*2)
2121     << "Parent Loop BB" << FunctionNumber << "_"
2122     << Loop->getHeader()->getNumber()
2123     << " Depth=" << Loop->getLoopDepth() << '\n';
2124 }
2125
2126
2127 /// PrintChildLoopComment - Print comments about child loops within
2128 /// the loop for this basic block, with nesting.
2129 static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
2130                                   unsigned FunctionNumber) {
2131   // Add child loop information
2132   for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
2133     OS.indent((*CL)->getLoopDepth()*2)
2134       << "Child Loop BB" << FunctionNumber << "_"
2135       << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
2136       << '\n';
2137     PrintChildLoopComment(OS, *CL, FunctionNumber);
2138   }
2139 }
2140
2141 /// emitBasicBlockLoopComments - Pretty-print comments for basic blocks.
2142 static void emitBasicBlockLoopComments(const MachineBasicBlock &MBB,
2143                                        const MachineLoopInfo *LI,
2144                                        const AsmPrinter &AP) {
2145   // Add loop depth information
2146   const MachineLoop *Loop = LI->getLoopFor(&MBB);
2147   if (Loop == 0) return;
2148
2149   MachineBasicBlock *Header = Loop->getHeader();
2150   assert(Header && "No header for loop");
2151
2152   // If this block is not a loop header, just print out what is the loop header
2153   // and return.
2154   if (Header != &MBB) {
2155     AP.OutStreamer.AddComment("  in Loop: Header=BB" +
2156                               Twine(AP.getFunctionNumber())+"_" +
2157                               Twine(Loop->getHeader()->getNumber())+
2158                               " Depth="+Twine(Loop->getLoopDepth()));
2159     return;
2160   }
2161
2162   // Otherwise, it is a loop header.  Print out information about child and
2163   // parent loops.
2164   raw_ostream &OS = AP.OutStreamer.GetCommentOS();
2165
2166   PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
2167
2168   OS << "=>";
2169   OS.indent(Loop->getLoopDepth()*2-2);
2170
2171   OS << "This ";
2172   if (Loop->empty())
2173     OS << "Inner ";
2174   OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
2175
2176   PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
2177 }
2178
2179
2180 /// EmitBasicBlockStart - This method prints the label for the specified
2181 /// MachineBasicBlock, an alignment (if present) and a comment describing
2182 /// it if appropriate.
2183 void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
2184   // Emit an alignment directive for this block, if needed.
2185   if (unsigned Align = MBB->getAlignment())
2186     EmitAlignment(Align);
2187
2188   // If the block has its address taken, emit any labels that were used to
2189   // reference the block.  It is possible that there is more than one label
2190   // here, because multiple LLVM BB's may have been RAUW'd to this block after
2191   // the references were generated.
2192   if (MBB->hasAddressTaken()) {
2193     const BasicBlock *BB = MBB->getBasicBlock();
2194     if (isVerbose())
2195       OutStreamer.AddComment("Block address taken");
2196
2197     std::vector<MCSymbol*> Syms = MMI->getAddrLabelSymbolToEmit(BB);
2198
2199     for (unsigned i = 0, e = Syms.size(); i != e; ++i)
2200       OutStreamer.EmitLabel(Syms[i]);
2201   }
2202
2203   // Print some verbose block comments.
2204   if (isVerbose()) {
2205     if (const BasicBlock *BB = MBB->getBasicBlock())
2206       if (BB->hasName())
2207         OutStreamer.AddComment("%" + BB->getName());
2208     emitBasicBlockLoopComments(*MBB, LI, *this);
2209   }
2210
2211   // Print the main label for the block.
2212   if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) {
2213     if (isVerbose()) {
2214       // NOTE: Want this comment at start of line, don't emit with AddComment.
2215       OutStreamer.emitRawComment(" BB#" + Twine(MBB->getNumber()) + ":", false);
2216     }
2217   } else {
2218     OutStreamer.EmitLabel(MBB->getSymbol());
2219   }
2220 }
2221
2222 void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility,
2223                                 bool IsDefinition) const {
2224   MCSymbolAttr Attr = MCSA_Invalid;
2225
2226   switch (Visibility) {
2227   default: break;
2228   case GlobalValue::HiddenVisibility:
2229     if (IsDefinition)
2230       Attr = MAI->getHiddenVisibilityAttr();
2231     else
2232       Attr = MAI->getHiddenDeclarationVisibilityAttr();
2233     break;
2234   case GlobalValue::ProtectedVisibility:
2235     Attr = MAI->getProtectedVisibilityAttr();
2236     break;
2237   }
2238
2239   if (Attr != MCSA_Invalid)
2240     OutStreamer.EmitSymbolAttribute(Sym, Attr);
2241 }
2242
2243 /// isBlockOnlyReachableByFallthough - Return true if the basic block has
2244 /// exactly one predecessor and the control transfer mechanism between
2245 /// the predecessor and this block is a fall-through.
2246 bool AsmPrinter::
2247 isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const {
2248   // If this is a landing pad, it isn't a fall through.  If it has no preds,
2249   // then nothing falls through to it.
2250   if (MBB->isLandingPad() || MBB->pred_empty())
2251     return false;
2252
2253   // If there isn't exactly one predecessor, it can't be a fall through.
2254   MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), PI2 = PI;
2255   ++PI2;
2256   if (PI2 != MBB->pred_end())
2257     return false;
2258
2259   // The predecessor has to be immediately before this block.
2260   MachineBasicBlock *Pred = *PI;
2261
2262   if (!Pred->isLayoutSuccessor(MBB))
2263     return false;
2264
2265   // If the block is completely empty, then it definitely does fall through.
2266   if (Pred->empty())
2267     return true;
2268
2269   // Check the terminators in the previous blocks
2270   for (MachineBasicBlock::iterator II = Pred->getFirstTerminator(),
2271          IE = Pred->end(); II != IE; ++II) {
2272     MachineInstr &MI = *II;
2273
2274     // If it is not a simple branch, we are in a table somewhere.
2275     if (!MI.isBranch() || MI.isIndirectBranch())
2276       return false;
2277
2278     // If we are the operands of one of the branches, this is not a fall
2279     // through. Note that targets with delay slots will usually bundle
2280     // terminators with the delay slot instruction.
2281     for (ConstMIBundleOperands OP(&MI); OP.isValid(); ++OP) {
2282       if (OP->isJTI())
2283         return false;
2284       if (OP->isMBB() && OP->getMBB() == MBB)
2285         return false;
2286     }
2287   }
2288
2289   return true;
2290 }
2291
2292
2293
2294 GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
2295   if (!S->usesMetadata())
2296     return 0;
2297
2298   gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
2299   gcp_map_type::iterator GCPI = GCMap.find(S);
2300   if (GCPI != GCMap.end())
2301     return GCPI->second;
2302
2303   const char *Name = S->getName().c_str();
2304
2305   for (GCMetadataPrinterRegistry::iterator
2306          I = GCMetadataPrinterRegistry::begin(),
2307          E = GCMetadataPrinterRegistry::end(); I != E; ++I)
2308     if (strcmp(Name, I->getName()) == 0) {
2309       GCMetadataPrinter *GMP = I->instantiate();
2310       GMP->S = S;
2311       GCMap.insert(std::make_pair(S, GMP));
2312       return GMP;
2313     }
2314
2315   report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
2316 }
2317
2318 /// Pin vtable to this file.
2319 AsmPrinterHandler::~AsmPrinterHandler() {}