1 //===- AsmWriter.cpp - Printing LLVM as an assembly file ------------------===//
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 library implements the functionality defined in llvm/IR/Writer.h
11 //
12 // Note that these routines must be extremely tolerant of various errors in the
13 // LLVM code, because it can be used for debugging transformations.
14 //
15 //===----------------------------------------------------------------------===//
16 
17 #include "llvm/ADT/APFloat.h"
18 #include "llvm/ADT/APInt.h"
19 #include "llvm/ADT/ArrayRef.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/None.h"
22 #include "llvm/ADT/Optional.h"
23 #include "llvm/ADT/STLExtras.h"
24 #include "llvm/ADT/SetVector.h"
25 #include "llvm/ADT/SmallString.h"
26 #include "llvm/ADT/SmallVector.h"
27 #include "llvm/ADT/StringExtras.h"
28 #include "llvm/ADT/StringRef.h"
29 #include "llvm/ADT/iterator_range.h"
30 #include "llvm/BinaryFormat/Dwarf.h"
31 #include "llvm/IR/Argument.h"
32 #include "llvm/IR/AssemblyAnnotationWriter.h"
33 #include "llvm/IR/Attributes.h"
34 #include "llvm/IR/BasicBlock.h"
35 #include "llvm/IR/CFG.h"
36 #include "llvm/IR/CallSite.h"
37 #include "llvm/IR/CallingConv.h"
38 #include "llvm/IR/Comdat.h"
39 #include "llvm/IR/Constant.h"
40 #include "llvm/IR/Constants.h"
41 #include "llvm/IR/DebugInfoMetadata.h"
42 #include "llvm/IR/DerivedTypes.h"
43 #include "llvm/IR/Function.h"
44 #include "llvm/IR/GlobalAlias.h"
45 #include "llvm/IR/GlobalIFunc.h"
46 #include "llvm/IR/GlobalIndirectSymbol.h"
47 #include "llvm/IR/GlobalObject.h"
48 #include "llvm/IR/GlobalValue.h"
49 #include "llvm/IR/GlobalVariable.h"
50 #include "llvm/IR/IRPrintingPasses.h"
51 #include "llvm/IR/InlineAsm.h"
52 #include "llvm/IR/InstrTypes.h"
53 #include "llvm/IR/Instruction.h"
54 #include "llvm/IR/Instructions.h"
55 #include "llvm/IR/LLVMContext.h"
56 #include "llvm/IR/Metadata.h"
57 #include "llvm/IR/Module.h"
58 #include "llvm/IR/ModuleSlotTracker.h"
59 #include "llvm/IR/Operator.h"
60 #include "llvm/IR/Statepoint.h"
61 #include "llvm/IR/Type.h"
62 #include "llvm/IR/TypeFinder.h"
63 #include "llvm/IR/Use.h"
64 #include "llvm/IR/UseListOrder.h"
65 #include "llvm/IR/User.h"
66 #include "llvm/IR/Value.h"
67 #include "llvm/Support/AtomicOrdering.h"
68 #include "llvm/Support/Casting.h"
69 #include "llvm/Support/Compiler.h"
70 #include "llvm/Support/Debug.h"
71 #include "llvm/Support/ErrorHandling.h"
72 #include "llvm/Support/Format.h"
73 #include "llvm/Support/FormattedStream.h"
74 #include "llvm/Support/raw_ostream.h"
75 #include <algorithm>
76 #include <cassert>
77 #include <cctype>
78 #include <cstddef>
79 #include <cstdint>
80 #include <iterator>
81 #include <memory>
82 #include <string>
83 #include <tuple>
84 #include <utility>
85 #include <vector>
86 
87 using namespace llvm;
88 
89 // Make virtual table appear in this compilation unit.
90 AssemblyAnnotationWriter::~AssemblyAnnotationWriter() = default;
91 
92 //===----------------------------------------------------------------------===//
93 // Helper Functions
94 //===----------------------------------------------------------------------===//
95 
96 namespace {
97 
98 struct OrderMap {
99   DenseMap<const Value *, std::pair<unsigned, bool>> IDs;
100 
101   unsigned size() const { return IDs.size(); }
102   std::pair<unsigned, bool> &operator[](const Value *V) { return IDs[V]; }
103 
104   std::pair<unsigned, bool> lookup(const Value *V) const {
105     return IDs.lookup(V);
106   }
107 
108   void index(const Value *V) {
109     // Explicitly sequence get-size and insert-value operations to avoid UB.
110     unsigned ID = IDs.size() + 1;
111     IDs[V].first = ID;
112   }
113 };
114 
115 } // end anonymous namespace
116 
117 static void orderValue(const Value *V, OrderMap &OM) {
118   if (OM.lookup(V).first)
119     return;
120 
121   if (const Constant *C = dyn_cast<Constant>(V))
122     if (C->getNumOperands() && !isa<GlobalValue>(C))
123       for (const Value *Op : C->operands())
124         if (!isa<BasicBlock>(Op) && !isa<GlobalValue>(Op))
125           orderValue(Op, OM);
126 
127   // Note: we cannot cache this lookup above, since inserting into the map
128   // changes the map's size, and thus affects the other IDs.
129   OM.index(V);
130 }
131 
132 static OrderMap orderModule(const Module *M) {
133   // This needs to match the order used by ValueEnumerator::ValueEnumerator()
134   // and ValueEnumerator::incorporateFunction().
135   OrderMap OM;
136 
137   for (const GlobalVariable &G : M->globals()) {
138     if (G.hasInitializer())
139       if (!isa<GlobalValue>(G.getInitializer()))
140         orderValue(G.getInitializer(), OM);
141     orderValue(&G, OM);
142   }
143   for (const GlobalAlias &A : M->aliases()) {
144     if (!isa<GlobalValue>(A.getAliasee()))
145       orderValue(A.getAliasee(), OM);
146     orderValue(&A, OM);
147   }
148   for (const GlobalIFunc &I : M->ifuncs()) {
149     if (!isa<GlobalValue>(I.getResolver()))
150       orderValue(I.getResolver(), OM);
151     orderValue(&I, OM);
152   }
153   for (const Function &F : *M) {
154     for (const Use &U : F.operands())
155       if (!isa<GlobalValue>(U.get()))
156         orderValue(U.get(), OM);
157 
158     orderValue(&F, OM);
159 
160     if (F.isDeclaration())
161       continue;
162 
163     for (const Argument &A : F.args())
164       orderValue(&A, OM);
165     for (const BasicBlock &BB : F) {
166       orderValue(&BB, OM);
167       for (const Instruction &I : BB) {
168         for (const Value *Op : I.operands())
169           if ((isa<Constant>(*Op) && !isa<GlobalValue>(*Op)) ||
170               isa<InlineAsm>(*Op))
171             orderValue(Op, OM);
172         orderValue(&I, OM);
173       }
174     }
175   }
176   return OM;
177 }
178 
179 static void predictValueUseListOrderImpl(const Value *V, const Function *F,
180                                          unsigned ID, const OrderMap &OM,
181                                          UseListOrderStack &Stack) {
182   // Predict use-list order for this one.
183   using Entry = std::pair<const Use *, unsigned>;
184   SmallVector<Entry, 64> List;
185   for (const Use &U : V->uses())
186     // Check if this user will be serialized.
187     if (OM.lookup(U.getUser()).first)
188       List.push_back(std::make_pair(&U, List.size()));
189 
190   if (List.size() < 2)
191     // We may have lost some users.
192     return;
193 
194   bool GetsReversed =
195       !isa<GlobalVariable>(V) && !isa<Function>(V) && !isa<BasicBlock>(V);
196   if (auto *BA = dyn_cast<BlockAddress>(V))
197     ID = OM.lookup(BA->getBasicBlock()).first;
198   std::sort(List.begin(), List.end(), [&](const Entry &L, const Entry &R) {
199     const Use *LU = L.first;
200     const Use *RU = R.first;
201     if (LU == RU)
202       return false;
203 
204     auto LID = OM.lookup(LU->getUser()).first;
205     auto RID = OM.lookup(RU->getUser()).first;
206 
207     // If ID is 4, then expect: 7 6 5 1 2 3.
208     if (LID < RID) {
209       if (GetsReversed)
210         if (RID <= ID)
211           return true;
212       return false;
213     }
214     if (RID < LID) {
215       if (GetsReversed)
216         if (LID <= ID)
217           return false;
218       return true;
219     }
220 
221     // LID and RID are equal, so we have different operands of the same user.
222     // Assume operands are added in order for all instructions.
223     if (GetsReversed)
224       if (LID <= ID)
225         return LU->getOperandNo() < RU->getOperandNo();
226     return LU->getOperandNo() > RU->getOperandNo();
227   });
228 
229   if (std::is_sorted(
230           List.begin(), List.end(),
231           [](const Entry &L, const Entry &R) { return L.second < R.second; }))
232     // Order is already correct.
233     return;
234 
235   // Store the shuffle.
236   Stack.emplace_back(V, F, List.size());
237   assert(List.size() == Stack.back().Shuffle.size() && "Wrong size");
238   for (size_t I = 0, E = List.size(); I != E; ++I)
239     Stack.back().Shuffle[I] = List[I].second;
240 }
241 
242 static void predictValueUseListOrder(const Value *V, const Function *F,
243                                      OrderMap &OM, UseListOrderStack &Stack) {
244   auto &IDPair = OM[V];
245   assert(IDPair.first && "Unmapped value");
246   if (IDPair.second)
247     // Already predicted.
248     return;
249 
250   // Do the actual prediction.
251   IDPair.second = true;
252   if (!V->use_empty() && std::next(V->use_begin()) != V->use_end())
253     predictValueUseListOrderImpl(V, F, IDPair.first, OM, Stack);
254 
255   // Recursive descent into constants.
256   if (const Constant *C = dyn_cast<Constant>(V))
257     if (C->getNumOperands()) // Visit GlobalValues.
258       for (const Value *Op : C->operands())
259         if (isa<Constant>(Op)) // Visit GlobalValues.
260           predictValueUseListOrder(Op, F, OM, Stack);
261 }
262 
263 static UseListOrderStack predictUseListOrder(const Module *M) {
264   OrderMap OM = orderModule(M);
265 
266   // Use-list orders need to be serialized after all the users have been added
267   // to a value, or else the shuffles will be incomplete.  Store them per
268   // function in a stack.
269   //
270   // Aside from function order, the order of values doesn't matter much here.
271   UseListOrderStack Stack;
272 
273   // We want to visit the functions backward now so we can list function-local
274   // constants in the last Function they're used in.  Module-level constants
275   // have already been visited above.
276   for (const Function &F : make_range(M->rbegin(), M->rend())) {
277     if (F.isDeclaration())
278       continue;
279     for (const BasicBlock &BB : F)
280       predictValueUseListOrder(&BB, &F, OM, Stack);
281     for (const Argument &A : F.args())
282       predictValueUseListOrder(&A, &F, OM, Stack);
283     for (const BasicBlock &BB : F)
284       for (const Instruction &I : BB)
285         for (const Value *Op : I.operands())
286           if (isa<Constant>(*Op) || isa<InlineAsm>(*Op)) // Visit GlobalValues.
287             predictValueUseListOrder(Op, &F, OM, Stack);
288     for (const BasicBlock &BB : F)
289       for (const Instruction &I : BB)
290         predictValueUseListOrder(&I, &F, OM, Stack);
291   }
292 
293   // Visit globals last.
294   for (const GlobalVariable &G : M->globals())
295     predictValueUseListOrder(&G, nullptr, OM, Stack);
296   for (const Function &F : *M)
297     predictValueUseListOrder(&F, nullptr, OM, Stack);
298   for (const GlobalAlias &A : M->aliases())
299     predictValueUseListOrder(&A, nullptr, OM, Stack);
300   for (const GlobalIFunc &I : M->ifuncs())
301     predictValueUseListOrder(&I, nullptr, OM, Stack);
302   for (const GlobalVariable &G : M->globals())
303     if (G.hasInitializer())
304       predictValueUseListOrder(G.getInitializer(), nullptr, OM, Stack);
305   for (const GlobalAlias &A : M->aliases())
306     predictValueUseListOrder(A.getAliasee(), nullptr, OM, Stack);
307   for (const GlobalIFunc &I : M->ifuncs())
308     predictValueUseListOrder(I.getResolver(), nullptr, OM, Stack);
309   for (const Function &F : *M)
310     for (const Use &U : F.operands())
311       predictValueUseListOrder(U.get(), nullptr, OM, Stack);
312 
313   return Stack;
314 }
315 
316 static const Module *getModuleFromVal(const Value *V) {
317   if (const Argument *MA = dyn_cast<Argument>(V))
318     return MA->getParent() ? MA->getParent()->getParent() : nullptr;
319 
320   if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
321     return BB->getParent() ? BB->getParent()->getParent() : nullptr;
322 
323   if (const Instruction *I = dyn_cast<Instruction>(V)) {
324     const Function *M = I->getParent() ? I->getParent()->getParent() : nullptr;
325     return M ? M->getParent() : nullptr;
326   }
327 
328   if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
329     return GV->getParent();
330 
331   if (const auto *MAV = dyn_cast<MetadataAsValue>(V)) {
332     for (const User *U : MAV->users())
333       if (isa<Instruction>(U))
334         if (const Module *M = getModuleFromVal(U))
335           return M;
336     return nullptr;
337   }
338 
339   return nullptr;
340 }
341 
342 static void PrintCallingConv(unsigned cc, raw_ostream &Out) {
343   switch (cc) {
344   default:                         Out << "cc" << cc; break;
345   case CallingConv::Fast:          Out << "fastcc"; break;
346   case CallingConv::Cold:          Out << "coldcc"; break;
347   case CallingConv::WebKit_JS:     Out << "webkit_jscc"; break;
348   case CallingConv::AnyReg:        Out << "anyregcc"; break;
349   case CallingConv::PreserveMost:  Out << "preserve_mostcc"; break;
350   case CallingConv::PreserveAll:   Out << "preserve_allcc"; break;
351   case CallingConv::CXX_FAST_TLS:  Out << "cxx_fast_tlscc"; break;
352   case CallingConv::GHC:           Out << "ghccc"; break;
353   case CallingConv::X86_StdCall:   Out << "x86_stdcallcc"; break;
354   case CallingConv::X86_FastCall:  Out << "x86_fastcallcc"; break;
355   case CallingConv::X86_ThisCall:  Out << "x86_thiscallcc"; break;
356   case CallingConv::X86_RegCall:   Out << "x86_regcallcc"; break;
357   case CallingConv::X86_VectorCall:Out << "x86_vectorcallcc"; break;
358   case CallingConv::Intel_OCL_BI:  Out << "intel_ocl_bicc"; break;
359   case CallingConv::ARM_APCS:      Out << "arm_apcscc"; break;
360   case CallingConv::ARM_AAPCS:     Out << "arm_aapcscc"; break;
361   case CallingConv::ARM_AAPCS_VFP: Out << "arm_aapcs_vfpcc"; break;
362   case CallingConv::MSP430_INTR:   Out << "msp430_intrcc"; break;
363   case CallingConv::AVR_INTR:      Out << "avr_intrcc "; break;
364   case CallingConv::AVR_SIGNAL:    Out << "avr_signalcc "; break;
365   case CallingConv::PTX_Kernel:    Out << "ptx_kernel"; break;
366   case CallingConv::PTX_Device:    Out << "ptx_device"; break;
367   case CallingConv::X86_64_SysV:   Out << "x86_64_sysvcc"; break;
368   case CallingConv::Win64:         Out << "win64cc"; break;
369   case CallingConv::SPIR_FUNC:     Out << "spir_func"; break;
370   case CallingConv::SPIR_KERNEL:   Out << "spir_kernel"; break;
371   case CallingConv::Swift:         Out << "swiftcc"; break;
372   case CallingConv::X86_INTR:      Out << "x86_intrcc"; break;
373   case CallingConv::HHVM:          Out << "hhvmcc"; break;
374   case CallingConv::HHVM_C:        Out << "hhvm_ccc"; break;
375   case CallingConv::AMDGPU_VS:     Out << "amdgpu_vs"; break;
376   case CallingConv::AMDGPU_HS:     Out << "amdgpu_hs"; break;
377   case CallingConv::AMDGPU_GS:     Out << "amdgpu_gs"; break;
378   case CallingConv::AMDGPU_PS:     Out << "amdgpu_ps"; break;
379   case CallingConv::AMDGPU_CS:     Out << "amdgpu_cs"; break;
380   case CallingConv::AMDGPU_KERNEL: Out << "amdgpu_kernel"; break;
381   }
382 }
383 
384 void llvm::PrintEscapedString(StringRef Name, raw_ostream &Out) {
385   for (unsigned i = 0, e = Name.size(); i != e; ++i) {
386     unsigned char C = Name[i];
387     if (isprint(C) && C != '\\' && C != '"')
388       Out << C;
389     else
390       Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
391   }
392 }
393 
394 enum PrefixType {
395   GlobalPrefix,
396   ComdatPrefix,
397   LabelPrefix,
398   LocalPrefix,
399   NoPrefix
400 };
401 
402 void llvm::printLLVMNameWithoutPrefix(raw_ostream &OS, StringRef Name) {
403   assert(!Name.empty() && "Cannot get empty name!");
404 
405   // Scan the name to see if it needs quotes first.
406   bool NeedsQuotes = isdigit(static_cast<unsigned char>(Name[0]));
407   if (!NeedsQuotes) {
408     for (unsigned i = 0, e = Name.size(); i != e; ++i) {
409       // By making this unsigned, the value passed in to isalnum will always be
410       // in the range 0-255.  This is important when building with MSVC because
411       // its implementation will assert.  This situation can arise when dealing
412       // with UTF-8 multibyte characters.
413       unsigned char C = Name[i];
414       if (!isalnum(static_cast<unsigned char>(C)) && C != '-' && C != '.' &&
415           C != '_') {
416         NeedsQuotes = true;
417         break;
418       }
419     }
420   }
421 
422   // If we didn't need any quotes, just write out the name in one blast.
423   if (!NeedsQuotes) {
424     OS << Name;
425     return;
426   }
427 
428   // Okay, we need quotes.  Output the quotes and escape any scary characters as
429   // needed.
430   OS << '"';
431   PrintEscapedString(Name, OS);
432   OS << '"';
433 }
434 
435 /// Turn the specified name into an 'LLVM name', which is either prefixed with %
436 /// (if the string only contains simple characters) or is surrounded with ""'s
437 /// (if it has special chars in it). Print it out.
438 static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) {
439   switch (Prefix) {
440   case NoPrefix:
441     break;
442   case GlobalPrefix:
443     OS << '@';
444     break;
445   case ComdatPrefix:
446     OS << '$';
447     break;
448   case LabelPrefix:
449     break;
450   case LocalPrefix:
451     OS << '%';
452     break;
453   }
454   printLLVMNameWithoutPrefix(OS, Name);
455 }
456 
457 /// Turn the specified name into an 'LLVM name', which is either prefixed with %
458 /// (if the string only contains simple characters) or is surrounded with ""'s
459 /// (if it has special chars in it). Print it out.
460 static void PrintLLVMName(raw_ostream &OS, const Value *V) {
461   PrintLLVMName(OS, V->getName(),
462                 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
463 }
464 
465 namespace {
466 
467 class TypePrinting {
468 public:
469   /// NamedTypes - The named types that are used by the current module.
470   TypeFinder NamedTypes;
471 
472   /// NumberedTypes - The numbered types, along with their value.
473   DenseMap<StructType*, unsigned> NumberedTypes;
474 
475   TypePrinting() = default;
476   TypePrinting(const TypePrinting &) = delete;
477   TypePrinting &operator=(const TypePrinting &) = delete;
478 
479   void incorporateTypes(const Module &M);
480 
481   void print(Type *Ty, raw_ostream &OS);
482 
483   void printStructBody(StructType *Ty, raw_ostream &OS);
484 };
485 
486 } // end anonymous namespace
487 
488 void TypePrinting::incorporateTypes(const Module &M) {
489   NamedTypes.run(M, false);
490 
491   // The list of struct types we got back includes all the struct types, split
492   // the unnamed ones out to a numbering and remove the anonymous structs.
493   unsigned NextNumber = 0;
494 
495   std::vector<StructType*>::iterator NextToUse = NamedTypes.begin(), I, E;
496   for (I = NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I) {
497     StructType *STy = *I;
498 
499     // Ignore anonymous types.
500     if (STy->isLiteral())
501       continue;
502 
503     if (STy->getName().empty())
504       NumberedTypes[STy] = NextNumber++;
505     else
506       *NextToUse++ = STy;
507   }
508 
509   NamedTypes.erase(NextToUse, NamedTypes.end());
510 }
511 
512 
513 /// CalcTypeName - Write the specified type to the specified raw_ostream, making
514 /// use of type names or up references to shorten the type name where possible.
515 void TypePrinting::print(Type *Ty, raw_ostream &OS) {
516   switch (Ty->getTypeID()) {
517   case Type::VoidTyID:      OS << "void"; return;
518   case Type::HalfTyID:      OS << "half"; return;
519   case Type::FloatTyID:     OS << "float"; return;
520   case Type::DoubleTyID:    OS << "double"; return;
521   case Type::X86_FP80TyID:  OS << "x86_fp80"; return;
522   case Type::FP128TyID:     OS << "fp128"; return;
523   case Type::PPC_FP128TyID: OS << "ppc_fp128"; return;
524   case Type::LabelTyID:     OS << "label"; return;
525   case Type::MetadataTyID:  OS << "metadata"; return;
526   case Type::X86_MMXTyID:   OS << "x86_mmx"; return;
527   case Type::TokenTyID:     OS << "token"; return;
528   case Type::IntegerTyID:
529     OS << 'i' << cast<IntegerType>(Ty)->getBitWidth();
530     return;
531 
532   case Type::FunctionTyID: {
533     FunctionType *FTy = cast<FunctionType>(Ty);
534     print(FTy->getReturnType(), OS);
535     OS << " (";
536     for (FunctionType::param_iterator I = FTy->param_begin(),
537          E = FTy->param_end(); I != E; ++I) {
538       if (I != FTy->param_begin())
539         OS << ", ";
540       print(*I, OS);
541     }
542     if (FTy->isVarArg()) {
543       if (FTy->getNumParams()) OS << ", ";
544       OS << "...";
545     }
546     OS << ')';
547     return;
548   }
549   case Type::StructTyID: {
550     StructType *STy = cast<StructType>(Ty);
551 
552     if (STy->isLiteral())
553       return printStructBody(STy, OS);
554 
555     if (!STy->getName().empty())
556       return PrintLLVMName(OS, STy->getName(), LocalPrefix);
557 
558     DenseMap<StructType*, unsigned>::iterator I = NumberedTypes.find(STy);
559     if (I != NumberedTypes.end())
560       OS << '%' << I->second;
561     else  // Not enumerated, print the hex address.
562       OS << "%\"type " << STy << '\"';
563     return;
564   }
565   case Type::PointerTyID: {
566     PointerType *PTy = cast<PointerType>(Ty);
567     print(PTy->getElementType(), OS);
568     if (unsigned AddressSpace = PTy->getAddressSpace())
569       OS << " addrspace(" << AddressSpace << ')';
570     OS << '*';
571     return;
572   }
573   case Type::ArrayTyID: {
574     ArrayType *ATy = cast<ArrayType>(Ty);
575     OS << '[' << ATy->getNumElements() << " x ";
576     print(ATy->getElementType(), OS);
577     OS << ']';
578     return;
579   }
580   case Type::VectorTyID: {
581     VectorType *PTy = cast<VectorType>(Ty);
582     OS << "<" << PTy->getNumElements() << " x ";
583     print(PTy->getElementType(), OS);
584     OS << '>';
585     return;
586   }
587   }
588   llvm_unreachable("Invalid TypeID");
589 }
590 
591 void TypePrinting::printStructBody(StructType *STy, raw_ostream &OS) {
592   if (STy->isOpaque()) {
593     OS << "opaque";
594     return;
595   }
596 
597   if (STy->isPacked())
598     OS << '<';
599 
600   if (STy->getNumElements() == 0) {
601     OS << "{}";
602   } else {
603     StructType::element_iterator I = STy->element_begin();
604     OS << "{ ";
605     print(*I++, OS);
606     for (StructType::element_iterator E = STy->element_end(); I != E; ++I) {
607       OS << ", ";
608       print(*I, OS);
609     }
610 
611     OS << " }";
612   }
613   if (STy->isPacked())
614     OS << '>';
615 }
616 
617 namespace llvm {
618 
619 //===----------------------------------------------------------------------===//
620 // SlotTracker Class: Enumerate slot numbers for unnamed values
621 //===----------------------------------------------------------------------===//
622 /// This class provides computation of slot numbers for LLVM Assembly writing.
623 ///
624 class SlotTracker {
625 public:
626   /// ValueMap - A mapping of Values to slot numbers.
627   using ValueMap = DenseMap<const Value *, unsigned>;
628 
629 private:
630   /// TheModule - The module for which we are holding slot numbers.
631   const Module* TheModule;
632 
633   /// TheFunction - The function for which we are holding slot numbers.
634   const Function* TheFunction = nullptr;
635   bool FunctionProcessed = false;
636   bool ShouldInitializeAllMetadata;
637 
638   /// mMap - The slot map for the module level data.
639   ValueMap mMap;
640   unsigned mNext = 0;
641 
642   /// fMap - The slot map for the function level data.
643   ValueMap fMap;
644   unsigned fNext = 0;
645 
646   /// mdnMap - Map for MDNodes.
647   DenseMap<const MDNode*, unsigned> mdnMap;
648   unsigned mdnNext = 0;
649 
650   /// asMap - The slot map for attribute sets.
651   DenseMap<AttributeSet, unsigned> asMap;
652   unsigned asNext = 0;
653 
654 public:
655   /// Construct from a module.
656   ///
657   /// If \c ShouldInitializeAllMetadata, initializes all metadata in all
658   /// functions, giving correct numbering for metadata referenced only from
659   /// within a function (even if no functions have been initialized).
660   explicit SlotTracker(const Module *M,
661                        bool ShouldInitializeAllMetadata = false);
662 
663   /// Construct from a function, starting out in incorp state.
664   ///
665   /// If \c ShouldInitializeAllMetadata, initializes all metadata in all
666   /// functions, giving correct numbering for metadata referenced only from
667   /// within a function (even if no functions have been initialized).
668   explicit SlotTracker(const Function *F,
669                        bool ShouldInitializeAllMetadata = false);
670 
671   SlotTracker(const SlotTracker &) = delete;
672   SlotTracker &operator=(const SlotTracker &) = delete;
673 
674   /// Return the slot number of the specified value in it's type
675   /// plane.  If something is not in the SlotTracker, return -1.
676   int getLocalSlot(const Value *V);
677   int getGlobalSlot(const GlobalValue *V);
678   int getMetadataSlot(const MDNode *N);
679   int getAttributeGroupSlot(AttributeSet AS);
680 
681   /// If you'd like to deal with a function instead of just a module, use
682   /// this method to get its data into the SlotTracker.
683   void incorporateFunction(const Function *F) {
684     TheFunction = F;
685     FunctionProcessed = false;
686   }
687 
688   const Function *getFunction() const { return TheFunction; }
689 
690   /// After calling incorporateFunction, use this method to remove the
691   /// most recently incorporated function from the SlotTracker. This
692   /// will reset the state of the machine back to just the module contents.
693   void purgeFunction();
694 
695   /// MDNode map iterators.
696   using mdn_iterator = DenseMap<const MDNode*, unsigned>::iterator;
697 
698   mdn_iterator mdn_begin() { return mdnMap.begin(); }
699   mdn_iterator mdn_end() { return mdnMap.end(); }
700   unsigned mdn_size() const { return mdnMap.size(); }
701   bool mdn_empty() const { return mdnMap.empty(); }
702 
703   /// AttributeSet map iterators.
704   using as_iterator = DenseMap<AttributeSet, unsigned>::iterator;
705 
706   as_iterator as_begin()   { return asMap.begin(); }
707   as_iterator as_end()     { return asMap.end(); }
708   unsigned as_size() const { return asMap.size(); }
709   bool as_empty() const    { return asMap.empty(); }
710 
711   /// This function does the actual initialization.
712   inline void initialize();
713 
714   // Implementation Details
715 private:
716   /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
717   void CreateModuleSlot(const GlobalValue *V);
718 
719   /// CreateMetadataSlot - Insert the specified MDNode* into the slot table.
720   void CreateMetadataSlot(const MDNode *N);
721 
722   /// CreateFunctionSlot - Insert the specified Value* into the slot table.
723   void CreateFunctionSlot(const Value *V);
724 
725   /// \brief Insert the specified AttributeSet into the slot table.
726   void CreateAttributeSetSlot(AttributeSet AS);
727 
728   /// Add all of the module level global variables (and their initializers)
729   /// and function declarations, but not the contents of those functions.
730   void processModule();
731 
732   /// Add all of the functions arguments, basic blocks, and instructions.
733   void processFunction();
734 
735   /// Add the metadata directly attached to a GlobalObject.
736   void processGlobalObjectMetadata(const GlobalObject &GO);
737 
738   /// Add all of the metadata from a function.
739   void processFunctionMetadata(const Function &F);
740 
741   /// Add all of the metadata from an instruction.
742   void processInstructionMetadata(const Instruction &I);
743 };
744 
745 } // end namespace llvm
746 
747 ModuleSlotTracker::ModuleSlotTracker(SlotTracker &Machine, const Module *M,
748                                      const Function *F)
749     : M(M), F(F), Machine(&Machine) {}
750 
751 ModuleSlotTracker::ModuleSlotTracker(const Module *M,
752                                      bool ShouldInitializeAllMetadata)
753     : ShouldCreateStorage(M),
754       ShouldInitializeAllMetadata(ShouldInitializeAllMetadata), M(M) {}
755 
756 ModuleSlotTracker::~ModuleSlotTracker() = default;
757 
758 SlotTracker *ModuleSlotTracker::getMachine() {
759   if (!ShouldCreateStorage)
760     return Machine;
761 
762   ShouldCreateStorage = false;
763   MachineStorage =
764       llvm::make_unique<SlotTracker>(M, ShouldInitializeAllMetadata);
765   Machine = MachineStorage.get();
766   return Machine;
767 }
768 
769 void ModuleSlotTracker::incorporateFunction(const Function &F) {
770   // Using getMachine() may lazily create the slot tracker.
771   if (!getMachine())
772     return;
773 
774   // Nothing to do if this is the right function already.
775   if (this->F == &F)
776     return;
777   if (this->F)
778     Machine->purgeFunction();
779   Machine->incorporateFunction(&F);
780   this->F = &F;
781 }
782 
783 int ModuleSlotTracker::getLocalSlot(const Value *V) {
784   assert(F && "No function incorporated");
785   return Machine->getLocalSlot(V);
786 }
787 
788 static SlotTracker *createSlotTracker(const Value *V) {
789   if (const Argument *FA = dyn_cast<Argument>(V))
790     return new SlotTracker(FA->getParent());
791 
792   if (const Instruction *I = dyn_cast<Instruction>(V))
793     if (I->getParent())
794       return new SlotTracker(I->getParent()->getParent());
795 
796   if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
797     return new SlotTracker(BB->getParent());
798 
799   if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
800     return new SlotTracker(GV->getParent());
801 
802   if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
803     return new SlotTracker(GA->getParent());
804 
805   if (const GlobalIFunc *GIF = dyn_cast<GlobalIFunc>(V))
806     return new SlotTracker(GIF->getParent());
807 
808   if (const Function *Func = dyn_cast<Function>(V))
809     return new SlotTracker(Func);
810 
811   return nullptr;
812 }
813 
814 #if 0
815 #define ST_DEBUG(X) dbgs() << X
816 #else
817 #define ST_DEBUG(X)
818 #endif
819 
820 // Module level constructor. Causes the contents of the Module (sans functions)
821 // to be added to the slot table.
822 SlotTracker::SlotTracker(const Module *M, bool ShouldInitializeAllMetadata)
823     : TheModule(M), ShouldInitializeAllMetadata(ShouldInitializeAllMetadata) {}
824 
825 // Function level constructor. Causes the contents of the Module and the one
826 // function provided to be added to the slot table.
827 SlotTracker::SlotTracker(const Function *F, bool ShouldInitializeAllMetadata)
828     : TheModule(F ? F->getParent() : nullptr), TheFunction(F),
829       ShouldInitializeAllMetadata(ShouldInitializeAllMetadata) {}
830 
831 inline void SlotTracker::initialize() {
832   if (TheModule) {
833     processModule();
834     TheModule = nullptr; ///< Prevent re-processing next time we're called.
835   }
836 
837   if (TheFunction && !FunctionProcessed)
838     processFunction();
839 }
840 
841 // Iterate through all the global variables, functions, and global
842 // variable initializers and create slots for them.
843 void SlotTracker::processModule() {
844   ST_DEBUG("begin processModule!\n");
845 
846   // Add all of the unnamed global variables to the value table.
847   for (const GlobalVariable &Var : TheModule->globals()) {
848     if (!Var.hasName())
849       CreateModuleSlot(&Var);
850     processGlobalObjectMetadata(Var);
851     auto Attrs = Var.getAttributes();
852     if (Attrs.hasAttributes())
853       CreateAttributeSetSlot(Attrs);
854   }
855 
856   for (const GlobalAlias &A : TheModule->aliases()) {
857     if (!A.hasName())
858       CreateModuleSlot(&A);
859   }
860 
861   for (const GlobalIFunc &I : TheModule->ifuncs()) {
862     if (!I.hasName())
863       CreateModuleSlot(&I);
864   }
865 
866   // Add metadata used by named metadata.
867   for (const NamedMDNode &NMD : TheModule->named_metadata()) {
868     for (unsigned i = 0, e = NMD.getNumOperands(); i != e; ++i)
869       CreateMetadataSlot(NMD.getOperand(i));
870   }
871 
872   for (const Function &F : *TheModule) {
873     if (!F.hasName())
874       // Add all the unnamed functions to the table.
875       CreateModuleSlot(&F);
876 
877     if (ShouldInitializeAllMetadata)
878       processFunctionMetadata(F);
879 
880     // Add all the function attributes to the table.
881     // FIXME: Add attributes of other objects?
882     AttributeSet FnAttrs = F.getAttributes().getFnAttributes();
883     if (FnAttrs.hasAttributes())
884       CreateAttributeSetSlot(FnAttrs);
885   }
886 
887   ST_DEBUG("end processModule!\n");
888 }
889 
890 // Process the arguments, basic blocks, and instructions  of a function.
891 void SlotTracker::processFunction() {
892   ST_DEBUG("begin processFunction!\n");
893   fNext = 0;
894 
895   // Process function metadata if it wasn't hit at the module-level.
896   if (!ShouldInitializeAllMetadata)
897     processFunctionMetadata(*TheFunction);
898 
899   // Add all the function arguments with no names.
900   for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
901       AE = TheFunction->arg_end(); AI != AE; ++AI)
902     if (!AI->hasName())
903       CreateFunctionSlot(&*AI);
904 
905   ST_DEBUG("Inserting Instructions:\n");
906 
907   // Add all of the basic blocks and instructions with no names.
908   for (auto &BB : *TheFunction) {
909     if (!BB.hasName())
910       CreateFunctionSlot(&BB);
911 
912     for (auto &I : BB) {
913       if (!I.getType()->isVoidTy() && !I.hasName())
914         CreateFunctionSlot(&I);
915 
916       // We allow direct calls to any llvm.foo function here, because the
917       // target may not be linked into the optimizer.
918       if (auto CS = ImmutableCallSite(&I)) {
919         // Add all the call attributes to the table.
920         AttributeSet Attrs = CS.getAttributes().getFnAttributes();
921         if (Attrs.hasAttributes())
922           CreateAttributeSetSlot(Attrs);
923       }
924     }
925   }
926 
927   FunctionProcessed = true;
928 
929   ST_DEBUG("end processFunction!\n");
930 }
931 
932 void SlotTracker::processGlobalObjectMetadata(const GlobalObject &GO) {
933   SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
934   GO.getAllMetadata(MDs);
935   for (auto &MD : MDs)
936     CreateMetadataSlot(MD.second);
937 }
938 
939 void SlotTracker::processFunctionMetadata(const Function &F) {
940   processGlobalObjectMetadata(F);
941   for (auto &BB : F) {
942     for (auto &I : BB)
943       processInstructionMetadata(I);
944   }
945 }
946 
947 void SlotTracker::processInstructionMetadata(const Instruction &I) {
948   // Process metadata used directly by intrinsics.
949   if (const CallInst *CI = dyn_cast<CallInst>(&I))
950     if (Function *F = CI->getCalledFunction())
951       if (F->isIntrinsic())
952         for (auto &Op : I.operands())
953           if (auto *V = dyn_cast_or_null<MetadataAsValue>(Op))
954             if (MDNode *N = dyn_cast<MDNode>(V->getMetadata()))
955               CreateMetadataSlot(N);
956 
957   // Process metadata attached to this instruction.
958   SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
959   I.getAllMetadata(MDs);
960   for (auto &MD : MDs)
961     CreateMetadataSlot(MD.second);
962 }
963 
964 /// Clean up after incorporating a function. This is the only way to get out of
965 /// the function incorporation state that affects get*Slot/Create*Slot. Function
966 /// incorporation state is indicated by TheFunction != 0.
967 void SlotTracker::purgeFunction() {
968   ST_DEBUG("begin purgeFunction!\n");
969   fMap.clear(); // Simply discard the function level map
970   TheFunction = nullptr;
971   FunctionProcessed = false;
972   ST_DEBUG("end purgeFunction!\n");
973 }
974 
975 /// getGlobalSlot - Get the slot number of a global value.
976 int SlotTracker::getGlobalSlot(const GlobalValue *V) {
977   // Check for uninitialized state and do lazy initialization.
978   initialize();
979 
980   // Find the value in the module map
981   ValueMap::iterator MI = mMap.find(V);
982   return MI == mMap.end() ? -1 : (int)MI->second;
983 }
984 
985 /// getMetadataSlot - Get the slot number of a MDNode.
986 int SlotTracker::getMetadataSlot(const MDNode *N) {
987   // Check for uninitialized state and do lazy initialization.
988   initialize();
989 
990   // Find the MDNode in the module map
991   mdn_iterator MI = mdnMap.find(N);
992   return MI == mdnMap.end() ? -1 : (int)MI->second;
993 }
994 
995 /// getLocalSlot - Get the slot number for a value that is local to a function.
996 int SlotTracker::getLocalSlot(const Value *V) {
997   assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
998 
999   // Check for uninitialized state and do lazy initialization.
1000   initialize();
1001 
1002   ValueMap::iterator FI = fMap.find(V);
1003   return FI == fMap.end() ? -1 : (int)FI->second;
1004 }
1005 
1006 int SlotTracker::getAttributeGroupSlot(AttributeSet AS) {
1007   // Check for uninitialized state and do lazy initialization.
1008   initialize();
1009 
1010   // Find the AttributeSet in the module map.
1011   as_iterator AI = asMap.find(AS);
1012   return AI == asMap.end() ? -1 : (int)AI->second;
1013 }
1014 
1015 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
1016 void SlotTracker::CreateModuleSlot(const GlobalValue *V) {
1017   assert(V && "Can't insert a null Value into SlotTracker!");
1018   assert(!V->getType()->isVoidTy() && "Doesn't need a slot!");
1019   assert(!V->hasName() && "Doesn't need a slot!");
1020 
1021   unsigned DestSlot = mNext++;
1022   mMap[V] = DestSlot;
1023 
1024   ST_DEBUG("  Inserting value [" << V->getType() << "] = " << V << " slot=" <<
1025            DestSlot << " [");
1026   // G = Global, F = Function, A = Alias, I = IFunc, o = other
1027   ST_DEBUG((isa<GlobalVariable>(V) ? 'G' :
1028             (isa<Function>(V) ? 'F' :
1029              (isa<GlobalAlias>(V) ? 'A' :
1030               (isa<GlobalIFunc>(V) ? 'I' : 'o')))) << "]\n");
1031 }
1032 
1033 /// CreateSlot - Create a new slot for the specified value if it has no name.
1034 void SlotTracker::CreateFunctionSlot(const Value *V) {
1035   assert(!V->getType()->isVoidTy() && !V->hasName() && "Doesn't need a slot!");
1036 
1037   unsigned DestSlot = fNext++;
1038   fMap[V] = DestSlot;
1039 
1040   // G = Global, F = Function, o = other
1041   ST_DEBUG("  Inserting value [" << V->getType() << "] = " << V << " slot=" <<
1042            DestSlot << " [o]\n");
1043 }
1044 
1045 /// CreateModuleSlot - Insert the specified MDNode* into the slot table.
1046 void SlotTracker::CreateMetadataSlot(const MDNode *N) {
1047   assert(N && "Can't insert a null Value into SlotTracker!");
1048 
1049   // Don't make slots for DIExpressions. We just print them inline everywhere.
1050   if (isa<DIExpression>(N))
1051     return;
1052 
1053   unsigned DestSlot = mdnNext;
1054   if (!mdnMap.insert(std::make_pair(N, DestSlot)).second)
1055     return;
1056   ++mdnNext;
1057 
1058   // Recursively add any MDNodes referenced by operands.
1059   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1060     if (const MDNode *Op = dyn_cast_or_null<MDNode>(N->getOperand(i)))
1061       CreateMetadataSlot(Op);
1062 }
1063 
1064 void SlotTracker::CreateAttributeSetSlot(AttributeSet AS) {
1065   assert(AS.hasAttributes() && "Doesn't need a slot!");
1066 
1067   as_iterator I = asMap.find(AS);
1068   if (I != asMap.end())
1069     return;
1070 
1071   unsigned DestSlot = asNext++;
1072   asMap[AS] = DestSlot;
1073 }
1074 
1075 //===----------------------------------------------------------------------===//
1076 // AsmWriter Implementation
1077 //===----------------------------------------------------------------------===//
1078 
1079 static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
1080                                    TypePrinting *TypePrinter,
1081                                    SlotTracker *Machine,
1082                                    const Module *Context);
1083 
1084 static void WriteAsOperandInternal(raw_ostream &Out, const Metadata *MD,
1085                                    TypePrinting *TypePrinter,
1086                                    SlotTracker *Machine, const Module *Context,
1087                                    bool FromValue = false);
1088 
1089 static void writeAtomicRMWOperation(raw_ostream &Out,
1090                                     AtomicRMWInst::BinOp Op) {
1091   switch (Op) {
1092   default: Out << " <unknown operation " << Op << ">"; break;
1093   case AtomicRMWInst::Xchg: Out << " xchg"; break;
1094   case AtomicRMWInst::Add:  Out << " add"; break;
1095   case AtomicRMWInst::Sub:  Out << " sub"; break;
1096   case AtomicRMWInst::And:  Out << " and"; break;
1097   case AtomicRMWInst::Nand: Out << " nand"; break;
1098   case AtomicRMWInst::Or:   Out << " or"; break;
1099   case AtomicRMWInst::Xor:  Out << " xor"; break;
1100   case AtomicRMWInst::Max:  Out << " max"; break;
1101   case AtomicRMWInst::Min:  Out << " min"; break;
1102   case AtomicRMWInst::UMax: Out << " umax"; break;
1103   case AtomicRMWInst::UMin: Out << " umin"; break;
1104   }
1105 }
1106 
1107 static void WriteOptimizationInfo(raw_ostream &Out, const User *U) {
1108   if (const FPMathOperator *FPO = dyn_cast<const FPMathOperator>(U)) {
1109     // Unsafe algebra implies all the others, no need to write them all out
1110     if (FPO->hasUnsafeAlgebra())
1111       Out << " fast";
1112     else {
1113       if (FPO->hasNoNaNs())
1114         Out << " nnan";
1115       if (FPO->hasNoInfs())
1116         Out << " ninf";
1117       if (FPO->hasNoSignedZeros())
1118         Out << " nsz";
1119       if (FPO->hasAllowReciprocal())
1120         Out << " arcp";
1121       if (FPO->hasAllowContract())
1122         Out << " contract";
1123     }
1124   }
1125 
1126   if (const OverflowingBinaryOperator *OBO =
1127         dyn_cast<OverflowingBinaryOperator>(U)) {
1128     if (OBO->hasNoUnsignedWrap())
1129       Out << " nuw";
1130     if (OBO->hasNoSignedWrap())
1131       Out << " nsw";
1132   } else if (const PossiblyExactOperator *Div =
1133                dyn_cast<PossiblyExactOperator>(U)) {
1134     if (Div->isExact())
1135       Out << " exact";
1136   } else if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
1137     if (GEP->isInBounds())
1138       Out << " inbounds";
1139   }
1140 }
1141 
1142 static void WriteConstantInternal(raw_ostream &Out, const Constant *CV,
1143                                   TypePrinting &TypePrinter,
1144                                   SlotTracker *Machine,
1145                                   const Module *Context) {
1146   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1147     if (CI->getType()->isIntegerTy(1)) {
1148       Out << (CI->getZExtValue() ? "true" : "false");
1149       return;
1150     }
1151     Out << CI->getValue();
1152     return;
1153   }
1154 
1155   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
1156     const APFloat &APF = CFP->getValueAPF();
1157     if (&APF.getSemantics() == &APFloat::IEEEsingle() ||
1158         &APF.getSemantics() == &APFloat::IEEEdouble()) {
1159       // We would like to output the FP constant value in exponential notation,
1160       // but we cannot do this if doing so will lose precision.  Check here to
1161       // make sure that we only output it in exponential format if we can parse
1162       // the value back and get the same value.
1163       //
1164       bool ignored;
1165       bool isDouble = &APF.getSemantics() == &APFloat::IEEEdouble();
1166       bool isInf = APF.isInfinity();
1167       bool isNaN = APF.isNaN();
1168       if (!isInf && !isNaN) {
1169         double Val = isDouble ? APF.convertToDouble() : APF.convertToFloat();
1170         SmallString<128> StrVal;
1171         APF.toString(StrVal, 6, 0, false);
1172         // Check to make sure that the stringized number is not some string like
1173         // "Inf" or NaN, that atof will accept, but the lexer will not.  Check
1174         // that the string matches the "[-+]?[0-9]" regex.
1175         //
1176         assert(((StrVal[0] >= '0' && StrVal[0] <= '9') ||
1177                 ((StrVal[0] == '-' || StrVal[0] == '+') &&
1178                  (StrVal[1] >= '0' && StrVal[1] <= '9'))) &&
1179                "[-+]?[0-9] regex does not match!");
1180         // Reparse stringized version!
1181         if (APFloat(APFloat::IEEEdouble(), StrVal).convertToDouble() == Val) {
1182           Out << StrVal;
1183           return;
1184         }
1185       }
1186       // Otherwise we could not reparse it to exactly the same value, so we must
1187       // output the string in hexadecimal format!  Note that loading and storing
1188       // floating point types changes the bits of NaNs on some hosts, notably
1189       // x86, so we must not use these types.
1190       static_assert(sizeof(double) == sizeof(uint64_t),
1191                     "assuming that double is 64 bits!");
1192       APFloat apf = APF;
1193       // Floats are represented in ASCII IR as double, convert.
1194       if (!isDouble)
1195         apf.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven,
1196                           &ignored);
1197       Out << format_hex(apf.bitcastToAPInt().getZExtValue(), 0, /*Upper=*/true);
1198       return;
1199     }
1200 
1201     // Either half, or some form of long double.
1202     // These appear as a magic letter identifying the type, then a
1203     // fixed number of hex digits.
1204     Out << "0x";
1205     APInt API = APF.bitcastToAPInt();
1206     if (&APF.getSemantics() == &APFloat::x87DoubleExtended()) {
1207       Out << 'K';
1208       Out << format_hex_no_prefix(API.getHiBits(16).getZExtValue(), 4,
1209                                   /*Upper=*/true);
1210       Out << format_hex_no_prefix(API.getLoBits(64).getZExtValue(), 16,
1211                                   /*Upper=*/true);
1212       return;
1213     } else if (&APF.getSemantics() == &APFloat::IEEEquad()) {
1214       Out << 'L';
1215       Out << format_hex_no_prefix(API.getLoBits(64).getZExtValue(), 16,
1216                                   /*Upper=*/true);
1217       Out << format_hex_no_prefix(API.getHiBits(64).getZExtValue(), 16,
1218                                   /*Upper=*/true);
1219     } else if (&APF.getSemantics() == &APFloat::PPCDoubleDouble()) {
1220       Out << 'M';
1221       Out << format_hex_no_prefix(API.getLoBits(64).getZExtValue(), 16,
1222                                   /*Upper=*/true);
1223       Out << format_hex_no_prefix(API.getHiBits(64).getZExtValue(), 16,
1224                                   /*Upper=*/true);
1225     } else if (&APF.getSemantics() == &APFloat::IEEEhalf()) {
1226       Out << 'H';
1227       Out << format_hex_no_prefix(API.getZExtValue(), 4,
1228                                   /*Upper=*/true);
1229     } else
1230       llvm_unreachable("Unsupported floating point type");
1231     return;
1232   }
1233 
1234   if (isa<ConstantAggregateZero>(CV)) {
1235     Out << "zeroinitializer";
1236     return;
1237   }
1238 
1239   if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) {
1240     Out << "blockaddress(";
1241     WriteAsOperandInternal(Out, BA->getFunction(), &TypePrinter, Machine,
1242                            Context);
1243     Out << ", ";
1244     WriteAsOperandInternal(Out, BA->getBasicBlock(), &TypePrinter, Machine,
1245                            Context);
1246     Out << ")";
1247     return;
1248   }
1249 
1250   if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
1251     Type *ETy = CA->getType()->getElementType();
1252     Out << '[';
1253     TypePrinter.print(ETy, Out);
1254     Out << ' ';
1255     WriteAsOperandInternal(Out, CA->getOperand(0),
1256                            &TypePrinter, Machine,
1257                            Context);
1258     for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
1259       Out << ", ";
1260       TypePrinter.print(ETy, Out);
1261       Out << ' ';
1262       WriteAsOperandInternal(Out, CA->getOperand(i), &TypePrinter, Machine,
1263                              Context);
1264     }
1265     Out << ']';
1266     return;
1267   }
1268 
1269   if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) {
1270     // As a special case, print the array as a string if it is an array of
1271     // i8 with ConstantInt values.
1272     if (CA->isString()) {
1273       Out << "c\"";
1274       PrintEscapedString(CA->getAsString(), Out);
1275       Out << '"';
1276       return;
1277     }
1278 
1279     Type *ETy = CA->getType()->getElementType();
1280     Out << '[';
1281     TypePrinter.print(ETy, Out);
1282     Out << ' ';
1283     WriteAsOperandInternal(Out, CA->getElementAsConstant(0),
1284                            &TypePrinter, Machine,
1285                            Context);
1286     for (unsigned i = 1, e = CA->getNumElements(); i != e; ++i) {
1287       Out << ", ";
1288       TypePrinter.print(ETy, Out);
1289       Out << ' ';
1290       WriteAsOperandInternal(Out, CA->getElementAsConstant(i), &TypePrinter,
1291                              Machine, Context);
1292     }
1293     Out << ']';
1294     return;
1295   }
1296 
1297   if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
1298     if (CS->getType()->isPacked())
1299       Out << '<';
1300     Out << '{';
1301     unsigned N = CS->getNumOperands();
1302     if (N) {
1303       Out << ' ';
1304       TypePrinter.print(CS->getOperand(0)->getType(), Out);
1305       Out << ' ';
1306 
1307       WriteAsOperandInternal(Out, CS->getOperand(0), &TypePrinter, Machine,
1308                              Context);
1309 
1310       for (unsigned i = 1; i < N; i++) {
1311         Out << ", ";
1312         TypePrinter.print(CS->getOperand(i)->getType(), Out);
1313         Out << ' ';
1314 
1315         WriteAsOperandInternal(Out, CS->getOperand(i), &TypePrinter, Machine,
1316                                Context);
1317       }
1318       Out << ' ';
1319     }
1320 
1321     Out << '}';
1322     if (CS->getType()->isPacked())
1323       Out << '>';
1324     return;
1325   }
1326 
1327   if (isa<ConstantVector>(CV) || isa<ConstantDataVector>(CV)) {
1328     Type *ETy = CV->getType()->getVectorElementType();
1329     Out << '<';
1330     TypePrinter.print(ETy, Out);
1331     Out << ' ';
1332     WriteAsOperandInternal(Out, CV->getAggregateElement(0U), &TypePrinter,
1333                            Machine, Context);
1334     for (unsigned i = 1, e = CV->getType()->getVectorNumElements(); i != e;++i){
1335       Out << ", ";
1336       TypePrinter.print(ETy, Out);
1337       Out << ' ';
1338       WriteAsOperandInternal(Out, CV->getAggregateElement(i), &TypePrinter,
1339                              Machine, Context);
1340     }
1341     Out << '>';
1342     return;
1343   }
1344 
1345   if (isa<ConstantPointerNull>(CV)) {
1346     Out << "null";
1347     return;
1348   }
1349 
1350   if (isa<ConstantTokenNone>(CV)) {
1351     Out << "none";
1352     return;
1353   }
1354 
1355   if (isa<UndefValue>(CV)) {
1356     Out << "undef";
1357     return;
1358   }
1359 
1360   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
1361     Out << CE->getOpcodeName();
1362     WriteOptimizationInfo(Out, CE);
1363     if (CE->isCompare())
1364       Out << ' ' << CmpInst::getPredicateName(
1365                         static_cast<CmpInst::Predicate>(CE->getPredicate()));
1366     Out << " (";
1367 
1368     Optional<unsigned> InRangeOp;
1369     if (const GEPOperator *GEP = dyn_cast<GEPOperator>(CE)) {
1370       TypePrinter.print(GEP->getSourceElementType(), Out);
1371       Out << ", ";
1372       InRangeOp = GEP->getInRangeIndex();
1373       if (InRangeOp)
1374         ++*InRangeOp;
1375     }
1376 
1377     for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
1378       if (InRangeOp && unsigned(OI - CE->op_begin()) == *InRangeOp)
1379         Out << "inrange ";
1380       TypePrinter.print((*OI)->getType(), Out);
1381       Out << ' ';
1382       WriteAsOperandInternal(Out, *OI, &TypePrinter, Machine, Context);
1383       if (OI+1 != CE->op_end())
1384         Out << ", ";
1385     }
1386 
1387     if (CE->hasIndices()) {
1388       ArrayRef<unsigned> Indices = CE->getIndices();
1389       for (unsigned i = 0, e = Indices.size(); i != e; ++i)
1390         Out << ", " << Indices[i];
1391     }
1392 
1393     if (CE->isCast()) {
1394       Out << " to ";
1395       TypePrinter.print(CE->getType(), Out);
1396     }
1397 
1398     Out << ')';
1399     return;
1400   }
1401 
1402   Out << "<placeholder or erroneous Constant>";
1403 }
1404 
1405 static void writeMDTuple(raw_ostream &Out, const MDTuple *Node,
1406                          TypePrinting *TypePrinter, SlotTracker *Machine,
1407                          const Module *Context) {
1408   Out << "!{";
1409   for (unsigned mi = 0, me = Node->getNumOperands(); mi != me; ++mi) {
1410     const Metadata *MD = Node->getOperand(mi);
1411     if (!MD)
1412       Out << "null";
1413     else if (auto *MDV = dyn_cast<ValueAsMetadata>(MD)) {
1414       Value *V = MDV->getValue();
1415       TypePrinter->print(V->getType(), Out);
1416       Out << ' ';
1417       WriteAsOperandInternal(Out, V, TypePrinter, Machine, Context);
1418     } else {
1419       WriteAsOperandInternal(Out, MD, TypePrinter, Machine, Context);
1420     }
1421     if (mi + 1 != me)
1422       Out << ", ";
1423   }
1424 
1425   Out << "}";
1426 }
1427 
1428 namespace {
1429 
1430 struct FieldSeparator {
1431   bool Skip = true;
1432   const char *Sep;
1433 
1434   FieldSeparator(const char *Sep = ", ") : Sep(Sep) {}
1435 };
1436 
1437 raw_ostream &operator<<(raw_ostream &OS, FieldSeparator &FS) {
1438   if (FS.Skip) {
1439     FS.Skip = false;
1440     return OS;
1441   }
1442   return OS << FS.Sep;
1443 }
1444 
1445 struct MDFieldPrinter {
1446   raw_ostream &Out;
1447   FieldSeparator FS;
1448   TypePrinting *TypePrinter = nullptr;
1449   SlotTracker *Machine = nullptr;
1450   const Module *Context = nullptr;
1451 
1452   explicit MDFieldPrinter(raw_ostream &Out) : Out(Out) {}
1453   MDFieldPrinter(raw_ostream &Out, TypePrinting *TypePrinter,
1454                  SlotTracker *Machine, const Module *Context)
1455       : Out(Out), TypePrinter(TypePrinter), Machine(Machine), Context(Context) {
1456   }
1457 
1458   void printTag(const DINode *N);
1459   void printMacinfoType(const DIMacroNode *N);
1460   void printChecksumKind(const DIFile *N);
1461   void printString(StringRef Name, StringRef Value,
1462                    bool ShouldSkipEmpty = true);
1463   void printMetadata(StringRef Name, const Metadata *MD,
1464                      bool ShouldSkipNull = true);
1465   template <class IntTy>
1466   void printInt(StringRef Name, IntTy Int, bool ShouldSkipZero = true);
1467   void printBool(StringRef Name, bool Value, Optional<bool> Default = None);
1468   void printDIFlags(StringRef Name, DINode::DIFlags Flags);
1469   template <class IntTy, class Stringifier>
1470   void printDwarfEnum(StringRef Name, IntTy Value, Stringifier toString,
1471                       bool ShouldSkipZero = true);
1472   void printEmissionKind(StringRef Name, DICompileUnit::DebugEmissionKind EK);
1473 };
1474 
1475 } // end anonymous namespace
1476 
1477 void MDFieldPrinter::printTag(const DINode *N) {
1478   Out << FS << "tag: ";
1479   auto Tag = dwarf::TagString(N->getTag());
1480   if (!Tag.empty())
1481     Out << Tag;
1482   else
1483     Out << N->getTag();
1484 }
1485 
1486 void MDFieldPrinter::printMacinfoType(const DIMacroNode *N) {
1487   Out << FS << "type: ";
1488   auto Type = dwarf::MacinfoString(N->getMacinfoType());
1489   if (!Type.empty())
1490     Out << Type;
1491   else
1492     Out << N->getMacinfoType();
1493 }
1494 
1495 void MDFieldPrinter::printChecksumKind(const DIFile *N) {
1496   if (N->getChecksumKind() == DIFile::CSK_None)
1497     // Skip CSK_None checksum kind.
1498     return;
1499   Out << FS << "checksumkind: " << N->getChecksumKindAsString();
1500 }
1501 
1502 void MDFieldPrinter::printString(StringRef Name, StringRef Value,
1503                                  bool ShouldSkipEmpty) {
1504   if (ShouldSkipEmpty && Value.empty())
1505     return;
1506 
1507   Out << FS << Name << ": \"";
1508   PrintEscapedString(Value, Out);
1509   Out << "\"";
1510 }
1511 
1512 static void writeMetadataAsOperand(raw_ostream &Out, const Metadata *MD,
1513                                    TypePrinting *TypePrinter,
1514                                    SlotTracker *Machine,
1515                                    const Module *Context) {
1516   if (!MD) {
1517     Out << "null";
1518     return;
1519   }
1520   WriteAsOperandInternal(Out, MD, TypePrinter, Machine, Context);
1521 }
1522 
1523 void MDFieldPrinter::printMetadata(StringRef Name, const Metadata *MD,
1524                                    bool ShouldSkipNull) {
1525   if (ShouldSkipNull && !MD)
1526     return;
1527 
1528   Out << FS << Name << ": ";
1529   writeMetadataAsOperand(Out, MD, TypePrinter, Machine, Context);
1530 }
1531 
1532 template <class IntTy>
1533 void MDFieldPrinter::printInt(StringRef Name, IntTy Int, bool ShouldSkipZero) {
1534   if (ShouldSkipZero && !Int)
1535     return;
1536 
1537   Out << FS << Name << ": " << Int;
1538 }
1539 
1540 void MDFieldPrinter::printBool(StringRef Name, bool Value,
1541                                Optional<bool> Default) {
1542   if (Default && Value == *Default)
1543     return;
1544   Out << FS << Name << ": " << (Value ? "true" : "false");
1545 }
1546 
1547 void MDFieldPrinter::printDIFlags(StringRef Name, DINode::DIFlags Flags) {
1548   if (!Flags)
1549     return;
1550 
1551   Out << FS << Name << ": ";
1552 
1553   SmallVector<DINode::DIFlags, 8> SplitFlags;
1554   auto Extra = DINode::splitFlags(Flags, SplitFlags);
1555 
1556   FieldSeparator FlagsFS(" | ");
1557   for (auto F : SplitFlags) {
1558     auto StringF = DINode::getFlagString(F);
1559     assert(!StringF.empty() && "Expected valid flag");
1560     Out << FlagsFS << StringF;
1561   }
1562   if (Extra || SplitFlags.empty())
1563     Out << FlagsFS << Extra;
1564 }
1565 
1566 void MDFieldPrinter::printEmissionKind(StringRef Name,
1567                                        DICompileUnit::DebugEmissionKind EK) {
1568   Out << FS << Name << ": " << DICompileUnit::EmissionKindString(EK);
1569 }
1570 
1571 template <class IntTy, class Stringifier>
1572 void MDFieldPrinter::printDwarfEnum(StringRef Name, IntTy Value,
1573                                     Stringifier toString, bool ShouldSkipZero) {
1574   if (!Value)
1575     return;
1576 
1577   Out << FS << Name << ": ";
1578   auto S = toString(Value);
1579   if (!S.empty())
1580     Out << S;
1581   else
1582     Out << Value;
1583 }
1584 
1585 static void writeGenericDINode(raw_ostream &Out, const GenericDINode *N,
1586                                TypePrinting *TypePrinter, SlotTracker *Machine,
1587                                const Module *Context) {
1588   Out << "!GenericDINode(";
1589   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1590   Printer.printTag(N);
1591   Printer.printString("header", N->getHeader());
1592   if (N->getNumDwarfOperands()) {
1593     Out << Printer.FS << "operands: {";
1594     FieldSeparator IFS;
1595     for (auto &I : N->dwarf_operands()) {
1596       Out << IFS;
1597       writeMetadataAsOperand(Out, I, TypePrinter, Machine, Context);
1598     }
1599     Out << "}";
1600   }
1601   Out << ")";
1602 }
1603 
1604 static void writeDILocation(raw_ostream &Out, const DILocation *DL,
1605                             TypePrinting *TypePrinter, SlotTracker *Machine,
1606                             const Module *Context) {
1607   Out << "!DILocation(";
1608   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1609   // Always output the line, since 0 is a relevant and important value for it.
1610   Printer.printInt("line", DL->getLine(), /* ShouldSkipZero */ false);
1611   Printer.printInt("column", DL->getColumn());
1612   Printer.printMetadata("scope", DL->getRawScope(), /* ShouldSkipNull */ false);
1613   Printer.printMetadata("inlinedAt", DL->getRawInlinedAt());
1614   Out << ")";
1615 }
1616 
1617 static void writeDISubrange(raw_ostream &Out, const DISubrange *N,
1618                             TypePrinting *, SlotTracker *, const Module *) {
1619   Out << "!DISubrange(";
1620   MDFieldPrinter Printer(Out);
1621   Printer.printInt("count", N->getCount(), /* ShouldSkipZero */ false);
1622   Printer.printInt("lowerBound", N->getLowerBound());
1623   Out << ")";
1624 }
1625 
1626 static void writeDIEnumerator(raw_ostream &Out, const DIEnumerator *N,
1627                               TypePrinting *, SlotTracker *, const Module *) {
1628   Out << "!DIEnumerator(";
1629   MDFieldPrinter Printer(Out);
1630   Printer.printString("name", N->getName(), /* ShouldSkipEmpty */ false);
1631   Printer.printInt("value", N->getValue(), /* ShouldSkipZero */ false);
1632   Out << ")";
1633 }
1634 
1635 static void writeDIBasicType(raw_ostream &Out, const DIBasicType *N,
1636                              TypePrinting *, SlotTracker *, const Module *) {
1637   Out << "!DIBasicType(";
1638   MDFieldPrinter Printer(Out);
1639   if (N->getTag() != dwarf::DW_TAG_base_type)
1640     Printer.printTag(N);
1641   Printer.printString("name", N->getName());
1642   Printer.printInt("size", N->getSizeInBits());
1643   Printer.printInt("align", N->getAlignInBits());
1644   Printer.printDwarfEnum("encoding", N->getEncoding(),
1645                          dwarf::AttributeEncodingString);
1646   Out << ")";
1647 }
1648 
1649 static void writeDIDerivedType(raw_ostream &Out, const DIDerivedType *N,
1650                                TypePrinting *TypePrinter, SlotTracker *Machine,
1651                                const Module *Context) {
1652   Out << "!DIDerivedType(";
1653   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1654   Printer.printTag(N);
1655   Printer.printString("name", N->getName());
1656   Printer.printMetadata("scope", N->getRawScope());
1657   Printer.printMetadata("file", N->getRawFile());
1658   Printer.printInt("line", N->getLine());
1659   Printer.printMetadata("baseType", N->getRawBaseType(),
1660                         /* ShouldSkipNull */ false);
1661   Printer.printInt("size", N->getSizeInBits());
1662   Printer.printInt("align", N->getAlignInBits());
1663   Printer.printInt("offset", N->getOffsetInBits());
1664   Printer.printDIFlags("flags", N->getFlags());
1665   Printer.printMetadata("extraData", N->getRawExtraData());
1666   if (const auto &DWARFAddressSpace = N->getDWARFAddressSpace())
1667     Printer.printInt("dwarfAddressSpace", *DWARFAddressSpace,
1668                      /* ShouldSkipZero */ false);
1669   Out << ")";
1670 }
1671 
1672 static void writeDICompositeType(raw_ostream &Out, const DICompositeType *N,
1673                                  TypePrinting *TypePrinter,
1674                                  SlotTracker *Machine, const Module *Context) {
1675   Out << "!DICompositeType(";
1676   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1677   Printer.printTag(N);
1678   Printer.printString("name", N->getName());
1679   Printer.printMetadata("scope", N->getRawScope());
1680   Printer.printMetadata("file", N->getRawFile());
1681   Printer.printInt("line", N->getLine());
1682   Printer.printMetadata("baseType", N->getRawBaseType());
1683   Printer.printInt("size", N->getSizeInBits());
1684   Printer.printInt("align", N->getAlignInBits());
1685   Printer.printInt("offset", N->getOffsetInBits());
1686   Printer.printDIFlags("flags", N->getFlags());
1687   Printer.printMetadata("elements", N->getRawElements());
1688   Printer.printDwarfEnum("runtimeLang", N->getRuntimeLang(),
1689                          dwarf::LanguageString);
1690   Printer.printMetadata("vtableHolder", N->getRawVTableHolder());
1691   Printer.printMetadata("templateParams", N->getRawTemplateParams());
1692   Printer.printString("identifier", N->getIdentifier());
1693   Out << ")";
1694 }
1695 
1696 static void writeDISubroutineType(raw_ostream &Out, const DISubroutineType *N,
1697                                   TypePrinting *TypePrinter,
1698                                   SlotTracker *Machine, const Module *Context) {
1699   Out << "!DISubroutineType(";
1700   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1701   Printer.printDIFlags("flags", N->getFlags());
1702   Printer.printDwarfEnum("cc", N->getCC(), dwarf::ConventionString);
1703   Printer.printMetadata("types", N->getRawTypeArray(),
1704                         /* ShouldSkipNull */ false);
1705   Out << ")";
1706 }
1707 
1708 static void writeDIFile(raw_ostream &Out, const DIFile *N, TypePrinting *,
1709                         SlotTracker *, const Module *) {
1710   Out << "!DIFile(";
1711   MDFieldPrinter Printer(Out);
1712   Printer.printString("filename", N->getFilename(),
1713                       /* ShouldSkipEmpty */ false);
1714   Printer.printString("directory", N->getDirectory(),
1715                       /* ShouldSkipEmpty */ false);
1716   Printer.printChecksumKind(N);
1717   Printer.printString("checksum", N->getChecksum(), /* ShouldSkipEmpty */ true);
1718   Out << ")";
1719 }
1720 
1721 static void writeDICompileUnit(raw_ostream &Out, const DICompileUnit *N,
1722                                TypePrinting *TypePrinter, SlotTracker *Machine,
1723                                const Module *Context) {
1724   Out << "!DICompileUnit(";
1725   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1726   Printer.printDwarfEnum("language", N->getSourceLanguage(),
1727                          dwarf::LanguageString, /* ShouldSkipZero */ false);
1728   Printer.printMetadata("file", N->getRawFile(), /* ShouldSkipNull */ false);
1729   Printer.printString("producer", N->getProducer());
1730   Printer.printBool("isOptimized", N->isOptimized());
1731   Printer.printString("flags", N->getFlags());
1732   Printer.printInt("runtimeVersion", N->getRuntimeVersion(),
1733                    /* ShouldSkipZero */ false);
1734   Printer.printString("splitDebugFilename", N->getSplitDebugFilename());
1735   Printer.printEmissionKind("emissionKind", N->getEmissionKind());
1736   Printer.printMetadata("enums", N->getRawEnumTypes());
1737   Printer.printMetadata("retainedTypes", N->getRawRetainedTypes());
1738   Printer.printMetadata("globals", N->getRawGlobalVariables());
1739   Printer.printMetadata("imports", N->getRawImportedEntities());
1740   Printer.printMetadata("macros", N->getRawMacros());
1741   Printer.printInt("dwoId", N->getDWOId());
1742   Printer.printBool("splitDebugInlining", N->getSplitDebugInlining(), true);
1743   Printer.printBool("debugInfoForProfiling", N->getDebugInfoForProfiling(),
1744                     false);
1745   Out << ")";
1746 }
1747 
1748 static void writeDISubprogram(raw_ostream &Out, const DISubprogram *N,
1749                               TypePrinting *TypePrinter, SlotTracker *Machine,
1750                               const Module *Context) {
1751   Out << "!DISubprogram(";
1752   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1753   Printer.printString("name", N->getName());
1754   Printer.printString("linkageName", N->getLinkageName());
1755   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1756   Printer.printMetadata("file", N->getRawFile());
1757   Printer.printInt("line", N->getLine());
1758   Printer.printMetadata("type", N->getRawType());
1759   Printer.printBool("isLocal", N->isLocalToUnit());
1760   Printer.printBool("isDefinition", N->isDefinition());
1761   Printer.printInt("scopeLine", N->getScopeLine());
1762   Printer.printMetadata("containingType", N->getRawContainingType());
1763   Printer.printDwarfEnum("virtuality", N->getVirtuality(),
1764                          dwarf::VirtualityString);
1765   if (N->getVirtuality() != dwarf::DW_VIRTUALITY_none ||
1766       N->getVirtualIndex() != 0)
1767     Printer.printInt("virtualIndex", N->getVirtualIndex(), false);
1768   Printer.printInt("thisAdjustment", N->getThisAdjustment());
1769   Printer.printDIFlags("flags", N->getFlags());
1770   Printer.printBool("isOptimized", N->isOptimized());
1771   Printer.printMetadata("unit", N->getRawUnit());
1772   Printer.printMetadata("templateParams", N->getRawTemplateParams());
1773   Printer.printMetadata("declaration", N->getRawDeclaration());
1774   Printer.printMetadata("variables", N->getRawVariables());
1775   Printer.printMetadata("thrownTypes", N->getRawThrownTypes());
1776   Out << ")";
1777 }
1778 
1779 static void writeDILexicalBlock(raw_ostream &Out, const DILexicalBlock *N,
1780                                 TypePrinting *TypePrinter, SlotTracker *Machine,
1781                                 const Module *Context) {
1782   Out << "!DILexicalBlock(";
1783   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1784   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1785   Printer.printMetadata("file", N->getRawFile());
1786   Printer.printInt("line", N->getLine());
1787   Printer.printInt("column", N->getColumn());
1788   Out << ")";
1789 }
1790 
1791 static void writeDILexicalBlockFile(raw_ostream &Out,
1792                                     const DILexicalBlockFile *N,
1793                                     TypePrinting *TypePrinter,
1794                                     SlotTracker *Machine,
1795                                     const Module *Context) {
1796   Out << "!DILexicalBlockFile(";
1797   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1798   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1799   Printer.printMetadata("file", N->getRawFile());
1800   Printer.printInt("discriminator", N->getDiscriminator(),
1801                    /* ShouldSkipZero */ false);
1802   Out << ")";
1803 }
1804 
1805 static void writeDINamespace(raw_ostream &Out, const DINamespace *N,
1806                              TypePrinting *TypePrinter, SlotTracker *Machine,
1807                              const Module *Context) {
1808   Out << "!DINamespace(";
1809   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1810   Printer.printString("name", N->getName());
1811   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1812   Printer.printBool("exportSymbols", N->getExportSymbols(), false);
1813   Out << ")";
1814 }
1815 
1816 static void writeDIMacro(raw_ostream &Out, const DIMacro *N,
1817                          TypePrinting *TypePrinter, SlotTracker *Machine,
1818                          const Module *Context) {
1819   Out << "!DIMacro(";
1820   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1821   Printer.printMacinfoType(N);
1822   Printer.printInt("line", N->getLine());
1823   Printer.printString("name", N->getName());
1824   Printer.printString("value", N->getValue());
1825   Out << ")";
1826 }
1827 
1828 static void writeDIMacroFile(raw_ostream &Out, const DIMacroFile *N,
1829                              TypePrinting *TypePrinter, SlotTracker *Machine,
1830                              const Module *Context) {
1831   Out << "!DIMacroFile(";
1832   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1833   Printer.printInt("line", N->getLine());
1834   Printer.printMetadata("file", N->getRawFile(), /* ShouldSkipNull */ false);
1835   Printer.printMetadata("nodes", N->getRawElements());
1836   Out << ")";
1837 }
1838 
1839 static void writeDIModule(raw_ostream &Out, const DIModule *N,
1840                           TypePrinting *TypePrinter, SlotTracker *Machine,
1841                           const Module *Context) {
1842   Out << "!DIModule(";
1843   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1844   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1845   Printer.printString("name", N->getName());
1846   Printer.printString("configMacros", N->getConfigurationMacros());
1847   Printer.printString("includePath", N->getIncludePath());
1848   Printer.printString("isysroot", N->getISysRoot());
1849   Out << ")";
1850 }
1851 
1852 
1853 static void writeDITemplateTypeParameter(raw_ostream &Out,
1854                                          const DITemplateTypeParameter *N,
1855                                          TypePrinting *TypePrinter,
1856                                          SlotTracker *Machine,
1857                                          const Module *Context) {
1858   Out << "!DITemplateTypeParameter(";
1859   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1860   Printer.printString("name", N->getName());
1861   Printer.printMetadata("type", N->getRawType(), /* ShouldSkipNull */ false);
1862   Out << ")";
1863 }
1864 
1865 static void writeDITemplateValueParameter(raw_ostream &Out,
1866                                           const DITemplateValueParameter *N,
1867                                           TypePrinting *TypePrinter,
1868                                           SlotTracker *Machine,
1869                                           const Module *Context) {
1870   Out << "!DITemplateValueParameter(";
1871   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1872   if (N->getTag() != dwarf::DW_TAG_template_value_parameter)
1873     Printer.printTag(N);
1874   Printer.printString("name", N->getName());
1875   Printer.printMetadata("type", N->getRawType());
1876   Printer.printMetadata("value", N->getValue(), /* ShouldSkipNull */ false);
1877   Out << ")";
1878 }
1879 
1880 static void writeDIGlobalVariable(raw_ostream &Out, const DIGlobalVariable *N,
1881                                   TypePrinting *TypePrinter,
1882                                   SlotTracker *Machine, const Module *Context) {
1883   Out << "!DIGlobalVariable(";
1884   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1885   Printer.printString("name", N->getName());
1886   Printer.printString("linkageName", N->getLinkageName());
1887   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1888   Printer.printMetadata("file", N->getRawFile());
1889   Printer.printInt("line", N->getLine());
1890   Printer.printMetadata("type", N->getRawType());
1891   Printer.printBool("isLocal", N->isLocalToUnit());
1892   Printer.printBool("isDefinition", N->isDefinition());
1893   Printer.printMetadata("declaration", N->getRawStaticDataMemberDeclaration());
1894   Printer.printInt("align", N->getAlignInBits());
1895   Out << ")";
1896 }
1897 
1898 static void writeDILocalVariable(raw_ostream &Out, const DILocalVariable *N,
1899                                  TypePrinting *TypePrinter,
1900                                  SlotTracker *Machine, const Module *Context) {
1901   Out << "!DILocalVariable(";
1902   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1903   Printer.printString("name", N->getName());
1904   Printer.printInt("arg", N->getArg());
1905   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1906   Printer.printMetadata("file", N->getRawFile());
1907   Printer.printInt("line", N->getLine());
1908   Printer.printMetadata("type", N->getRawType());
1909   Printer.printDIFlags("flags", N->getFlags());
1910   Printer.printInt("align", N->getAlignInBits());
1911   Out << ")";
1912 }
1913 
1914 static void writeDIExpression(raw_ostream &Out, const DIExpression *N,
1915                               TypePrinting *TypePrinter, SlotTracker *Machine,
1916                               const Module *Context) {
1917   Out << "!DIExpression(";
1918   FieldSeparator FS;
1919   if (N->isValid()) {
1920     for (auto I = N->expr_op_begin(), E = N->expr_op_end(); I != E; ++I) {
1921       auto OpStr = dwarf::OperationEncodingString(I->getOp());
1922       assert(!OpStr.empty() && "Expected valid opcode");
1923 
1924       Out << FS << OpStr;
1925       for (unsigned A = 0, AE = I->getNumArgs(); A != AE; ++A)
1926         Out << FS << I->getArg(A);
1927     }
1928   } else {
1929     for (const auto &I : N->getElements())
1930       Out << FS << I;
1931   }
1932   Out << ")";
1933 }
1934 
1935 static void writeDIGlobalVariableExpression(raw_ostream &Out,
1936                                             const DIGlobalVariableExpression *N,
1937                                             TypePrinting *TypePrinter,
1938                                             SlotTracker *Machine,
1939                                             const Module *Context) {
1940   Out << "!DIGlobalVariableExpression(";
1941   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1942   Printer.printMetadata("var", N->getVariable());
1943   Printer.printMetadata("expr", N->getExpression());
1944   Out << ")";
1945 }
1946 
1947 static void writeDIObjCProperty(raw_ostream &Out, const DIObjCProperty *N,
1948                                 TypePrinting *TypePrinter, SlotTracker *Machine,
1949                                 const Module *Context) {
1950   Out << "!DIObjCProperty(";
1951   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1952   Printer.printString("name", N->getName());
1953   Printer.printMetadata("file", N->getRawFile());
1954   Printer.printInt("line", N->getLine());
1955   Printer.printString("setter", N->getSetterName());
1956   Printer.printString("getter", N->getGetterName());
1957   Printer.printInt("attributes", N->getAttributes());
1958   Printer.printMetadata("type", N->getRawType());
1959   Out << ")";
1960 }
1961 
1962 static void writeDIImportedEntity(raw_ostream &Out, const DIImportedEntity *N,
1963                                   TypePrinting *TypePrinter,
1964                                   SlotTracker *Machine, const Module *Context) {
1965   Out << "!DIImportedEntity(";
1966   MDFieldPrinter Printer(Out, TypePrinter, Machine, Context);
1967   Printer.printTag(N);
1968   Printer.printString("name", N->getName());
1969   Printer.printMetadata("scope", N->getRawScope(), /* ShouldSkipNull */ false);
1970   Printer.printMetadata("entity", N->getRawEntity());
1971   Printer.printMetadata("file", N->getRawFile());
1972   Printer.printInt("line", N->getLine());
1973   Out << ")";
1974 }
1975 
1976 static void WriteMDNodeBodyInternal(raw_ostream &Out, const MDNode *Node,
1977                                     TypePrinting *TypePrinter,
1978                                     SlotTracker *Machine,
1979                                     const Module *Context) {
1980   if (Node->isDistinct())
1981     Out << "distinct ";
1982   else if (Node->isTemporary())
1983     Out << "<temporary!> "; // Handle broken code.
1984 
1985   switch (Node->getMetadataID()) {
1986   default:
1987     llvm_unreachable("Expected uniquable MDNode");
1988 #define HANDLE_MDNODE_LEAF(CLASS)                                              \
1989   case Metadata::CLASS##Kind:                                                  \
1990     write##CLASS(Out, cast<CLASS>(Node), TypePrinter, Machine, Context);       \
1991     break;
1992 #include "llvm/IR/Metadata.def"
1993   }
1994 }
1995 
1996 // Full implementation of printing a Value as an operand with support for
1997 // TypePrinting, etc.
1998 static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
1999                                    TypePrinting *TypePrinter,
2000                                    SlotTracker *Machine,
2001                                    const Module *Context) {
2002   if (V->hasName()) {
2003     PrintLLVMName(Out, V);
2004     return;
2005   }
2006 
2007   const Constant *CV = dyn_cast<Constant>(V);
2008   if (CV && !isa<GlobalValue>(CV)) {
2009     assert(TypePrinter && "Constants require TypePrinting!");
2010     WriteConstantInternal(Out, CV, *TypePrinter, Machine, Context);
2011     return;
2012   }
2013 
2014   if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
2015     Out << "asm ";
2016     if (IA->hasSideEffects())
2017       Out << "sideeffect ";
2018     if (IA->isAlignStack())
2019       Out << "alignstack ";
2020     // We don't emit the AD_ATT dialect as it's the assumed default.
2021     if (IA->getDialect() == InlineAsm::AD_Intel)
2022       Out << "inteldialect ";
2023     Out << '"';
2024     PrintEscapedString(IA->getAsmString(), Out);
2025     Out << "\", \"";
2026     PrintEscapedString(IA->getConstraintString(), Out);
2027     Out << '"';
2028     return;
2029   }
2030 
2031   if (auto *MD = dyn_cast<MetadataAsValue>(V)) {
2032     WriteAsOperandInternal(Out, MD->getMetadata(), TypePrinter, Machine,
2033                            Context, /* FromValue */ true);
2034     return;
2035   }
2036 
2037   char Prefix = '%';
2038   int Slot;
2039   // If we have a SlotTracker, use it.
2040   if (Machine) {
2041     if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
2042       Slot = Machine->getGlobalSlot(GV);
2043       Prefix = '@';
2044     } else {
2045       Slot = Machine->getLocalSlot(V);
2046 
2047       // If the local value didn't succeed, then we may be referring to a value
2048       // from a different function.  Translate it, as this can happen when using
2049       // address of blocks.
2050       if (Slot == -1)
2051         if ((Machine = createSlotTracker(V))) {
2052           Slot = Machine->getLocalSlot(V);
2053           delete Machine;
2054         }
2055     }
2056   } else if ((Machine = createSlotTracker(V))) {
2057     // Otherwise, create one to get the # and then destroy it.
2058     if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
2059       Slot = Machine->getGlobalSlot(GV);
2060       Prefix = '@';
2061     } else {
2062       Slot = Machine->getLocalSlot(V);
2063     }
2064     delete Machine;
2065     Machine = nullptr;
2066   } else {
2067     Slot = -1;
2068   }
2069 
2070   if (Slot != -1)
2071     Out << Prefix << Slot;
2072   else
2073     Out << "<badref>";
2074 }
2075 
2076 static void WriteAsOperandInternal(raw_ostream &Out, const Metadata *MD,
2077                                    TypePrinting *TypePrinter,
2078                                    SlotTracker *Machine, const Module *Context,
2079                                    bool FromValue) {
2080   // Write DIExpressions inline when used as a value. Improves readability of
2081   // debug info intrinsics.
2082   if (const DIExpression *Expr = dyn_cast<DIExpression>(MD)) {
2083     writeDIExpression(Out, Expr, TypePrinter, Machine, Context);
2084     return;
2085   }
2086 
2087   if (const MDNode *N = dyn_cast<MDNode>(MD)) {
2088     std::unique_ptr<SlotTracker> MachineStorage;
2089     if (!Machine) {
2090       MachineStorage = make_unique<SlotTracker>(Context);
2091       Machine = MachineStorage.get();
2092     }
2093     int Slot = Machine->getMetadataSlot(N);
2094     if (Slot == -1)
2095       // Give the pointer value instead of "badref", since this comes up all
2096       // the time when debugging.
2097       Out << "<" << N << ">";
2098     else
2099       Out << '!' << Slot;
2100     return;
2101   }
2102 
2103   if (const MDString *MDS = dyn_cast<MDString>(MD)) {
2104     Out << "!\"";
2105     PrintEscapedString(MDS->getString(), Out);
2106     Out << '"';
2107     return;
2108   }
2109 
2110   auto *V = cast<ValueAsMetadata>(MD);
2111   assert(TypePrinter && "TypePrinter required for metadata values");
2112   assert((FromValue || !isa<LocalAsMetadata>(V)) &&
2113          "Unexpected function-local metadata outside of value argument");
2114 
2115   TypePrinter->print(V->getValue()->getType(), Out);
2116   Out << ' ';
2117   WriteAsOperandInternal(Out, V->getValue(), TypePrinter, Machine, Context);
2118 }
2119 
2120 namespace {
2121 
2122 class AssemblyWriter {
2123   formatted_raw_ostream &Out;
2124   const Module *TheModule;
2125   std::unique_ptr<SlotTracker> SlotTrackerStorage;
2126   SlotTracker &Machine;
2127   TypePrinting TypePrinter;
2128   AssemblyAnnotationWriter *AnnotationWriter;
2129   SetVector<const Comdat *> Comdats;
2130   bool IsForDebug;
2131   bool ShouldPreserveUseListOrder;
2132   UseListOrderStack UseListOrders;
2133   SmallVector<StringRef, 8> MDNames;
2134   /// Synchronization scope names registered with LLVMContext.
2135   SmallVector<StringRef, 8> SSNs;
2136 
2137 public:
2138   /// Construct an AssemblyWriter with an external SlotTracker
2139   AssemblyWriter(formatted_raw_ostream &o, SlotTracker &Mac, const Module *M,
2140                  AssemblyAnnotationWriter *AAW, bool IsForDebug,
2141                  bool ShouldPreserveUseListOrder = false);
2142 
2143   void printMDNodeBody(const MDNode *MD);
2144   void printNamedMDNode(const NamedMDNode *NMD);
2145 
2146   void printModule(const Module *M);
2147 
2148   void writeOperand(const Value *Op, bool PrintType);
2149   void writeParamOperand(const Value *Operand, AttributeSet Attrs);
2150   void writeOperandBundles(ImmutableCallSite CS);
2151   void writeSyncScope(const LLVMContext &Context,
2152                       SyncScope::ID SSID);
2153   void writeAtomic(const LLVMContext &Context,
2154                    AtomicOrdering Ordering,
2155                    SyncScope::ID SSID);
2156   void writeAtomicCmpXchg(const LLVMContext &Context,
2157                           AtomicOrdering SuccessOrdering,
2158                           AtomicOrdering FailureOrdering,
2159                           SyncScope::ID SSID);
2160 
2161   void writeAllMDNodes();
2162   void writeMDNode(unsigned Slot, const MDNode *Node);
2163   void writeAllAttributeGroups();
2164 
2165   void printTypeIdentities();
2166   void printGlobal(const GlobalVariable *GV);
2167   void printIndirectSymbol(const GlobalIndirectSymbol *GIS);
2168   void printComdat(const Comdat *C);
2169   void printFunction(const Function *F);
2170   void printArgument(const Argument *FA, AttributeSet Attrs);
2171   void printBasicBlock(const BasicBlock *BB);
2172   void printInstructionLine(const Instruction &I);
2173   void printInstruction(const Instruction &I);
2174 
2175   void printUseListOrder(const UseListOrder &Order);
2176   void printUseLists(const Function *F);
2177 
2178 private:
2179   /// \brief Print out metadata attachments.
2180   void printMetadataAttachments(
2181       const SmallVectorImpl<std::pair<unsigned, MDNode *>> &MDs,
2182       StringRef Separator);
2183 
2184   // printInfoComment - Print a little comment after the instruction indicating
2185   // which slot it occupies.
2186   void printInfoComment(const Value &V);
2187 
2188   // printGCRelocateComment - print comment after call to the gc.relocate
2189   // intrinsic indicating base and derived pointer names.
2190   void printGCRelocateComment(const GCRelocateInst &Relocate);
2191 };
2192 
2193 } // end anonymous namespace
2194 
2195 AssemblyWriter::AssemblyWriter(formatted_raw_ostream &o, SlotTracker &Mac,
2196                                const Module *M, AssemblyAnnotationWriter *AAW,
2197                                bool IsForDebug, bool ShouldPreserveUseListOrder)
2198     : Out(o), TheModule(M), Machine(Mac), AnnotationWriter(AAW),
2199       IsForDebug(IsForDebug),
2200       ShouldPreserveUseListOrder(ShouldPreserveUseListOrder) {
2201   if (!TheModule)
2202     return;
2203   TypePrinter.incorporateTypes(*TheModule);
2204   for (const GlobalObject &GO : TheModule->global_objects())
2205     if (const Comdat *C = GO.getComdat())
2206       Comdats.insert(C);
2207 }
2208 
2209 void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
2210   if (!Operand) {
2211     Out << "<null operand!>";
2212     return;
2213   }
2214   if (PrintType) {
2215     TypePrinter.print(Operand->getType(), Out);
2216     Out << ' ';
2217   }
2218   WriteAsOperandInternal(Out, Operand, &TypePrinter, &Machine, TheModule);
2219 }
2220 
2221 void AssemblyWriter::writeSyncScope(const LLVMContext &Context,
2222                                     SyncScope::ID SSID) {
2223   switch (SSID) {
2224   case SyncScope::System: {
2225     break;
2226   }
2227   default: {
2228     if (SSNs.empty())
2229       Context.getSyncScopeNames(SSNs);
2230 
2231     Out << " syncscope(\"";
2232     PrintEscapedString(SSNs[SSID], Out);
2233     Out << "\")";
2234     break;
2235   }
2236   }
2237 }
2238 
2239 void AssemblyWriter::writeAtomic(const LLVMContext &Context,
2240                                  AtomicOrdering Ordering,
2241                                  SyncScope::ID SSID) {
2242   if (Ordering == AtomicOrdering::NotAtomic)
2243     return;
2244 
2245   writeSyncScope(Context, SSID);
2246   Out << " " << toIRString(Ordering);
2247 }
2248 
2249 void AssemblyWriter::writeAtomicCmpXchg(const LLVMContext &Context,
2250                                         AtomicOrdering SuccessOrdering,
2251                                         AtomicOrdering FailureOrdering,
2252                                         SyncScope::ID SSID) {
2253   assert(SuccessOrdering != AtomicOrdering::NotAtomic &&
2254          FailureOrdering != AtomicOrdering::NotAtomic);
2255 
2256   writeSyncScope(Context, SSID);
2257   Out << " " << toIRString(SuccessOrdering);
2258   Out << " " << toIRString(FailureOrdering);
2259 }
2260 
2261 void AssemblyWriter::writeParamOperand(const Value *Operand,
2262                                        AttributeSet Attrs) {
2263   if (!Operand) {
2264     Out << "<null operand!>";
2265     return;
2266   }
2267 
2268   // Print the type
2269   TypePrinter.print(Operand->getType(), Out);
2270   // Print parameter attributes list
2271   if (Attrs.hasAttributes())
2272     Out << ' ' << Attrs.getAsString();
2273   Out << ' ';
2274   // Print the operand
2275   WriteAsOperandInternal(Out, Operand, &TypePrinter, &Machine, TheModule);
2276 }
2277 
2278 void AssemblyWriter::writeOperandBundles(ImmutableCallSite CS) {
2279   if (!CS.hasOperandBundles())
2280     return;
2281 
2282   Out << " [ ";
2283 
2284   bool FirstBundle = true;
2285   for (unsigned i = 0, e = CS.getNumOperandBundles(); i != e; ++i) {
2286     OperandBundleUse BU = CS.getOperandBundleAt(i);
2287 
2288     if (!FirstBundle)
2289       Out << ", ";
2290     FirstBundle = false;
2291 
2292     Out << '"';
2293     PrintEscapedString(BU.getTagName(), Out);
2294     Out << '"';
2295 
2296     Out << '(';
2297 
2298     bool FirstInput = true;
2299     for (const auto &Input : BU.Inputs) {
2300       if (!FirstInput)
2301         Out << ", ";
2302       FirstInput = false;
2303 
2304       TypePrinter.print(Input->getType(), Out);
2305       Out << " ";
2306       WriteAsOperandInternal(Out, Input, &TypePrinter, &Machine, TheModule);
2307     }
2308 
2309     Out << ')';
2310   }
2311 
2312   Out << " ]";
2313 }
2314 
2315 void AssemblyWriter::printModule(const Module *M) {
2316   Machine.initialize();
2317 
2318   if (ShouldPreserveUseListOrder)
2319     UseListOrders = predictUseListOrder(M);
2320 
2321   if (!M->getModuleIdentifier().empty() &&
2322       // Don't print the ID if it will start a new line (which would
2323       // require a comment char before it).
2324       M->getModuleIdentifier().find('\n') == std::string::npos)
2325     Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
2326 
2327   if (!M->getSourceFileName().empty()) {
2328     Out << "source_filename = \"";
2329     PrintEscapedString(M->getSourceFileName(), Out);
2330     Out << "\"\n";
2331   }
2332 
2333   const std::string &DL = M->getDataLayoutStr();
2334   if (!DL.empty())
2335     Out << "target datalayout = \"" << DL << "\"\n";
2336   if (!M->getTargetTriple().empty())
2337     Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
2338 
2339   if (!M->getModuleInlineAsm().empty()) {
2340     Out << '\n';
2341 
2342     // Split the string into lines, to make it easier to read the .ll file.
2343     StringRef Asm = M->getModuleInlineAsm();
2344     do {
2345       StringRef Front;
2346       std::tie(Front, Asm) = Asm.split('\n');
2347 
2348       // We found a newline, print the portion of the asm string from the
2349       // last newline up to this newline.
2350       Out << "module asm \"";
2351       PrintEscapedString(Front, Out);
2352       Out << "\"\n";
2353     } while (!Asm.empty());
2354   }
2355 
2356   printTypeIdentities();
2357 
2358   // Output all comdats.
2359   if (!Comdats.empty())
2360     Out << '\n';
2361   for (const Comdat *C : Comdats) {
2362     printComdat(C);
2363     if (C != Comdats.back())
2364       Out << '\n';
2365   }
2366 
2367   // Output all globals.
2368   if (!M->global_empty()) Out << '\n';
2369   for (const GlobalVariable &GV : M->globals()) {
2370     printGlobal(&GV); Out << '\n';
2371   }
2372 
2373   // Output all aliases.
2374   if (!M->alias_empty()) Out << "\n";
2375   for (const GlobalAlias &GA : M->aliases())
2376     printIndirectSymbol(&GA);
2377 
2378   // Output all ifuncs.
2379   if (!M->ifunc_empty()) Out << "\n";
2380   for (const GlobalIFunc &GI : M->ifuncs())
2381     printIndirectSymbol(&GI);
2382 
2383   // Output global use-lists.
2384   printUseLists(nullptr);
2385 
2386   // Output all of the functions.
2387   for (const Function &F : *M)
2388     printFunction(&F);
2389   assert(UseListOrders.empty() && "All use-lists should have been consumed");
2390 
2391   // Output all attribute groups.
2392   if (!Machine.as_empty()) {
2393     Out << '\n';
2394     writeAllAttributeGroups();
2395   }
2396 
2397   // Output named metadata.
2398   if (!M->named_metadata_empty()) Out << '\n';
2399 
2400   for (const NamedMDNode &Node : M->named_metadata())
2401     printNamedMDNode(&Node);
2402 
2403   // Output metadata.
2404   if (!Machine.mdn_empty()) {
2405     Out << '\n';
2406     writeAllMDNodes();
2407   }
2408 }
2409 
2410 static void printMetadataIdentifier(StringRef Name,
2411                                     formatted_raw_ostream &Out) {
2412   if (Name.empty()) {
2413     Out << "<empty name> ";
2414   } else {
2415     if (isalpha(static_cast<unsigned char>(Name[0])) || Name[0] == '-' ||
2416         Name[0] == '$' || Name[0] == '.' || Name[0] == '_')
2417       Out << Name[0];
2418     else
2419       Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F);
2420     for (unsigned i = 1, e = Name.size(); i != e; ++i) {
2421       unsigned char C = Name[i];
2422       if (isalnum(static_cast<unsigned char>(C)) || C == '-' || C == '$' ||
2423           C == '.' || C == '_')
2424         Out << C;
2425       else
2426         Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
2427     }
2428   }
2429 }
2430 
2431 void AssemblyWriter::printNamedMDNode(const NamedMDNode *NMD) {
2432   Out << '!';
2433   printMetadataIdentifier(NMD->getName(), Out);
2434   Out << " = !{";
2435   for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
2436     if (i)
2437       Out << ", ";
2438 
2439     // Write DIExpressions inline.
2440     // FIXME: Ban DIExpressions in NamedMDNodes, they will serve no purpose.
2441     MDNode *Op = NMD->getOperand(i);
2442     if (auto *Expr = dyn_cast<DIExpression>(Op)) {
2443       writeDIExpression(Out, Expr, nullptr, nullptr, nullptr);
2444       continue;
2445     }
2446 
2447     int Slot = Machine.getMetadataSlot(Op);
2448     if (Slot == -1)
2449       Out << "<badref>";
2450     else
2451       Out << '!' << Slot;
2452   }
2453   Out << "}\n";
2454 }
2455 
2456 static const char *getLinkagePrintName(GlobalValue::LinkageTypes LT) {
2457   switch (LT) {
2458   case GlobalValue::ExternalLinkage:
2459     return "";
2460   case GlobalValue::PrivateLinkage:
2461     return "private ";
2462   case GlobalValue::InternalLinkage:
2463     return "internal ";
2464   case GlobalValue::LinkOnceAnyLinkage:
2465     return "linkonce ";
2466   case GlobalValue::LinkOnceODRLinkage:
2467     return "linkonce_odr ";
2468   case GlobalValue::WeakAnyLinkage:
2469     return "weak ";
2470   case GlobalValue::WeakODRLinkage:
2471     return "weak_odr ";
2472   case GlobalValue::CommonLinkage:
2473     return "common ";
2474   case GlobalValue::AppendingLinkage:
2475     return "appending ";
2476   case GlobalValue::ExternalWeakLinkage:
2477     return "extern_weak ";
2478   case GlobalValue::AvailableExternallyLinkage:
2479     return "available_externally ";
2480   }
2481   llvm_unreachable("invalid linkage");
2482 }
2483 
2484 static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
2485                             formatted_raw_ostream &Out) {
2486   switch (Vis) {
2487   case GlobalValue::DefaultVisibility: break;
2488   case GlobalValue::HiddenVisibility:    Out << "hidden "; break;
2489   case GlobalValue::ProtectedVisibility: Out << "protected "; break;
2490   }
2491 }
2492 
2493 static void PrintDLLStorageClass(GlobalValue::DLLStorageClassTypes SCT,
2494                                  formatted_raw_ostream &Out) {
2495   switch (SCT) {
2496   case GlobalValue::DefaultStorageClass: break;
2497   case GlobalValue::DLLImportStorageClass: Out << "dllimport "; break;
2498   case GlobalValue::DLLExportStorageClass: Out << "dllexport "; break;
2499   }
2500 }
2501 
2502 static void PrintThreadLocalModel(GlobalVariable::ThreadLocalMode TLM,
2503                                   formatted_raw_ostream &Out) {
2504   switch (TLM) {
2505     case GlobalVariable::NotThreadLocal:
2506       break;
2507     case GlobalVariable::GeneralDynamicTLSModel:
2508       Out << "thread_local ";
2509       break;
2510     case GlobalVariable::LocalDynamicTLSModel:
2511       Out << "thread_local(localdynamic) ";
2512       break;
2513     case GlobalVariable::InitialExecTLSModel:
2514       Out << "thread_local(initialexec) ";
2515       break;
2516     case GlobalVariable::LocalExecTLSModel:
2517       Out << "thread_local(localexec) ";
2518       break;
2519   }
2520 }
2521 
2522 static StringRef getUnnamedAddrEncoding(GlobalVariable::UnnamedAddr UA) {
2523   switch (UA) {
2524   case GlobalVariable::UnnamedAddr::None:
2525     return "";
2526   case GlobalVariable::UnnamedAddr::Local:
2527     return "local_unnamed_addr";
2528   case GlobalVariable::UnnamedAddr::Global:
2529     return "unnamed_addr";
2530   }
2531   llvm_unreachable("Unknown UnnamedAddr");
2532 }
2533 
2534 static void maybePrintComdat(formatted_raw_ostream &Out,
2535                              const GlobalObject &GO) {
2536   const Comdat *C = GO.getComdat();
2537   if (!C)
2538     return;
2539 
2540   if (isa<GlobalVariable>(GO))
2541     Out << ',';
2542   Out << " comdat";
2543 
2544   if (GO.getName() == C->getName())
2545     return;
2546 
2547   Out << '(';
2548   PrintLLVMName(Out, C->getName(), ComdatPrefix);
2549   Out << ')';
2550 }
2551 
2552 void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
2553   if (GV->isMaterializable())
2554     Out << "; Materializable\n";
2555 
2556   WriteAsOperandInternal(Out, GV, &TypePrinter, &Machine, GV->getParent());
2557   Out << " = ";
2558 
2559   if (!GV->hasInitializer() && GV->hasExternalLinkage())
2560     Out << "external ";
2561 
2562   Out << getLinkagePrintName(GV->getLinkage());
2563   PrintVisibility(GV->getVisibility(), Out);
2564   PrintDLLStorageClass(GV->getDLLStorageClass(), Out);
2565   PrintThreadLocalModel(GV->getThreadLocalMode(), Out);
2566   StringRef UA = getUnnamedAddrEncoding(GV->getUnnamedAddr());
2567   if (!UA.empty())
2568       Out << UA << ' ';
2569 
2570   if (unsigned AddressSpace = GV->getType()->getAddressSpace())
2571     Out << "addrspace(" << AddressSpace << ") ";
2572   if (GV->isExternallyInitialized()) Out << "externally_initialized ";
2573   Out << (GV->isConstant() ? "constant " : "global ");
2574   TypePrinter.print(GV->getValueType(), Out);
2575 
2576   if (GV->hasInitializer()) {
2577     Out << ' ';
2578     writeOperand(GV->getInitializer(), false);
2579   }
2580 
2581   if (GV->hasSection()) {
2582     Out << ", section \"";
2583     PrintEscapedString(GV->getSection(), Out);
2584     Out << '"';
2585   }
2586   maybePrintComdat(Out, *GV);
2587   if (GV->getAlignment())
2588     Out << ", align " << GV->getAlignment();
2589 
2590   SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
2591   GV->getAllMetadata(MDs);
2592   printMetadataAttachments(MDs, ", ");
2593 
2594   auto Attrs = GV->getAttributes();
2595   if (Attrs.hasAttributes())
2596     Out << " #" << Machine.getAttributeGroupSlot(Attrs);
2597 
2598   printInfoComment(*GV);
2599 }
2600 
2601 void AssemblyWriter::printIndirectSymbol(const GlobalIndirectSymbol *GIS) {
2602   if (GIS->isMaterializable())
2603     Out << "; Materializable\n";
2604 
2605   WriteAsOperandInternal(Out, GIS, &TypePrinter, &Machine, GIS->getParent());
2606   Out << " = ";
2607 
2608   Out << getLinkagePrintName(GIS->getLinkage());
2609   PrintVisibility(GIS->getVisibility(), Out);
2610   PrintDLLStorageClass(GIS->getDLLStorageClass(), Out);
2611   PrintThreadLocalModel(GIS->getThreadLocalMode(), Out);
2612   StringRef UA = getUnnamedAddrEncoding(GIS->getUnnamedAddr());
2613   if (!UA.empty())
2614       Out << UA << ' ';
2615 
2616   if (isa<GlobalAlias>(GIS))
2617     Out << "alias ";
2618   else if (isa<GlobalIFunc>(GIS))
2619     Out << "ifunc ";
2620   else
2621     llvm_unreachable("Not an alias or ifunc!");
2622 
2623   TypePrinter.print(GIS->getValueType(), Out);
2624 
2625   Out << ", ";
2626 
2627   const Constant *IS = GIS->getIndirectSymbol();
2628 
2629   if (!IS) {
2630     TypePrinter.print(GIS->getType(), Out);
2631     Out << " <<NULL ALIASEE>>";
2632   } else {
2633     writeOperand(IS, !isa<ConstantExpr>(IS));
2634   }
2635 
2636   printInfoComment(*GIS);
2637   Out << '\n';
2638 }
2639 
2640 void AssemblyWriter::printComdat(const Comdat *C) {
2641   C->print(Out);
2642 }
2643 
2644 void AssemblyWriter::printTypeIdentities() {
2645   if (TypePrinter.NumberedTypes.empty() &&
2646       TypePrinter.NamedTypes.empty())
2647     return;
2648 
2649   Out << '\n';
2650 
2651   // We know all the numbers that each type is used and we know that it is a
2652   // dense assignment.  Convert the map to an index table.
2653   std::vector<StructType*> NumberedTypes(TypePrinter.NumberedTypes.size());
2654   for (DenseMap<StructType*, unsigned>::iterator I =
2655        TypePrinter.NumberedTypes.begin(), E = TypePrinter.NumberedTypes.end();
2656        I != E; ++I) {
2657     assert(I->second < NumberedTypes.size() && "Didn't get a dense numbering?");
2658     NumberedTypes[I->second] = I->first;
2659   }
2660 
2661   // Emit all numbered types.
2662   for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i) {
2663     Out << '%' << i << " = type ";
2664 
2665     // Make sure we print out at least one level of the type structure, so
2666     // that we do not get %2 = type %2
2667     TypePrinter.printStructBody(NumberedTypes[i], Out);
2668     Out << '\n';
2669   }
2670 
2671   for (unsigned i = 0, e = TypePrinter.NamedTypes.size(); i != e; ++i) {
2672     PrintLLVMName(Out, TypePrinter.NamedTypes[i]->getName(), LocalPrefix);
2673     Out << " = type ";
2674 
2675     // Make sure we print out at least one level of the type structure, so
2676     // that we do not get %FILE = type %FILE
2677     TypePrinter.printStructBody(TypePrinter.NamedTypes[i], Out);
2678     Out << '\n';
2679   }
2680 }
2681 
2682 /// printFunction - Print all aspects of a function.
2683 void AssemblyWriter::printFunction(const Function *F) {
2684   // Print out the return type and name.
2685   Out << '\n';
2686 
2687   if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
2688 
2689   if (F->isMaterializable())
2690     Out << "; Materializable\n";
2691 
2692   const AttributeList &Attrs = F->getAttributes();
2693   if (Attrs.hasAttributes(AttributeList::FunctionIndex)) {
2694     AttributeSet AS = Attrs.getFnAttributes();
2695     std::string AttrStr;
2696 
2697     for (const Attribute &Attr : AS) {
2698       if (!Attr.isStringAttribute()) {
2699         if (!AttrStr.empty()) AttrStr += ' ';
2700         AttrStr += Attr.getAsString();
2701       }
2702     }
2703 
2704     if (!AttrStr.empty())
2705       Out << "; Function Attrs: " << AttrStr << '\n';
2706   }
2707 
2708   Machine.incorporateFunction(F);
2709 
2710   if (F->isDeclaration()) {
2711     Out << "declare";
2712     SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
2713     F->getAllMetadata(MDs);
2714     printMetadataAttachments(MDs, " ");
2715     Out << ' ';
2716   } else
2717     Out << "define ";
2718 
2719   Out << getLinkagePrintName(F->getLinkage());
2720   PrintVisibility(F->getVisibility(), Out);
2721   PrintDLLStorageClass(F->getDLLStorageClass(), Out);
2722 
2723   // Print the calling convention.
2724   if (F->getCallingConv() != CallingConv::C) {
2725     PrintCallingConv(F->getCallingConv(), Out);
2726     Out << " ";
2727   }
2728 
2729   FunctionType *FT = F->getFunctionType();
2730   if (Attrs.hasAttributes(AttributeList::ReturnIndex))
2731     Out << Attrs.getAsString(AttributeList::ReturnIndex) << ' ';
2732   TypePrinter.print(F->getReturnType(), Out);
2733   Out << ' ';
2734   WriteAsOperandInternal(Out, F, &TypePrinter, &Machine, F->getParent());
2735   Out << '(';
2736 
2737   // Loop over the arguments, printing them...
2738   if (F->isDeclaration() && !IsForDebug) {
2739     // We're only interested in the type here - don't print argument names.
2740     for (unsigned I = 0, E = FT->getNumParams(); I != E; ++I) {
2741       // Insert commas as we go... the first arg doesn't get a comma
2742       if (I)
2743         Out << ", ";
2744       // Output type...
2745       TypePrinter.print(FT->getParamType(I), Out);
2746 
2747       AttributeSet ArgAttrs = Attrs.getParamAttributes(I);
2748       if (ArgAttrs.hasAttributes())
2749         Out << ' ' << ArgAttrs.getAsString();
2750     }
2751   } else {
2752     // The arguments are meaningful here, print them in detail.
2753     for (const Argument &Arg : F->args()) {
2754       // Insert commas as we go... the first arg doesn't get a comma
2755       if (Arg.getArgNo() != 0)
2756         Out << ", ";
2757       printArgument(&Arg, Attrs.getParamAttributes(Arg.getArgNo()));
2758     }
2759   }
2760 
2761   // Finish printing arguments...
2762   if (FT->isVarArg()) {
2763     if (FT->getNumParams()) Out << ", ";
2764     Out << "...";  // Output varargs portion of signature!
2765   }
2766   Out << ')';
2767   StringRef UA = getUnnamedAddrEncoding(F->getUnnamedAddr());
2768   if (!UA.empty())
2769     Out << ' ' << UA;
2770   if (Attrs.hasAttributes(AttributeList::FunctionIndex))
2771     Out << " #" << Machine.getAttributeGroupSlot(Attrs.getFnAttributes());
2772   if (F->hasSection()) {
2773     Out << " section \"";
2774     PrintEscapedString(F->getSection(), Out);
2775     Out << '"';
2776   }
2777   maybePrintComdat(Out, *F);
2778   if (F->getAlignment())
2779     Out << " align " << F->getAlignment();
2780   if (F->hasGC())
2781     Out << " gc \"" << F->getGC() << '"';
2782   if (F->hasPrefixData()) {
2783     Out << " prefix ";
2784     writeOperand(F->getPrefixData(), true);
2785   }
2786   if (F->hasPrologueData()) {
2787     Out << " prologue ";
2788     writeOperand(F->getPrologueData(), true);
2789   }
2790   if (F->hasPersonalityFn()) {
2791     Out << " personality ";
2792     writeOperand(F->getPersonalityFn(), /*PrintType=*/true);
2793   }
2794 
2795   if (F->isDeclaration()) {
2796     Out << '\n';
2797   } else {
2798     SmallVector<std::pair<unsigned, MDNode *>, 4> MDs;
2799     F->getAllMetadata(MDs);
2800     printMetadataAttachments(MDs, " ");
2801 
2802     Out << " {";
2803     // Output all of the function's basic blocks.
2804     for (const BasicBlock &BB : *F)
2805       printBasicBlock(&BB);
2806 
2807     // Output the function's use-lists.
2808     printUseLists(F);
2809 
2810     Out << "}\n";
2811   }
2812 
2813   Machine.purgeFunction();
2814 }
2815 
2816 /// printArgument - This member is called for every argument that is passed into
2817 /// the function.  Simply print it out
2818 void AssemblyWriter::printArgument(const Argument *Arg, AttributeSet Attrs) {
2819   // Output type...
2820   TypePrinter.print(Arg->getType(), Out);
2821 
2822   // Output parameter attributes list
2823   if (Attrs.hasAttributes())
2824     Out << ' ' << Attrs.getAsString();
2825 
2826   // Output name, if available...
2827   if (Arg->hasName()) {
2828     Out << ' ';
2829     PrintLLVMName(Out, Arg);
2830   }
2831 }
2832 
2833 /// printBasicBlock - This member is called for each basic block in a method.
2834 void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
2835   if (BB->hasName()) {              // Print out the label if it exists...
2836     Out << "\n";
2837     PrintLLVMName(Out, BB->getName(), LabelPrefix);
2838     Out << ':';
2839   } else if (!BB->use_empty()) {      // Don't print block # of no uses...
2840     Out << "\n; <label>:";
2841     int Slot = Machine.getLocalSlot(BB);
2842     if (Slot != -1)
2843       Out << Slot << ":";
2844     else
2845       Out << "<badref>";
2846   }
2847 
2848   if (!BB->getParent()) {
2849     Out.PadToColumn(50);
2850     Out << "; Error: Block without parent!";
2851   } else if (BB != &BB->getParent()->getEntryBlock()) {  // Not the entry block?
2852     // Output predecessors for the block.
2853     Out.PadToColumn(50);
2854     Out << ";";
2855     const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
2856 
2857     if (PI == PE) {
2858       Out << " No predecessors!";
2859     } else {
2860       Out << " preds = ";
2861       writeOperand(*PI, false);
2862       for (++PI; PI != PE; ++PI) {
2863         Out << ", ";
2864         writeOperand(*PI, false);
2865       }
2866     }
2867   }
2868 
2869   Out << "\n";
2870 
2871   if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
2872 
2873   // Output all of the instructions in the basic block...
2874   for (const Instruction &I : *BB) {
2875     printInstructionLine(I);
2876   }
2877 
2878   if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
2879 }
2880 
2881 /// printInstructionLine - Print an instruction and a newline character.
2882 void AssemblyWriter::printInstructionLine(const Instruction &I) {
2883   printInstruction(I);
2884   Out << '\n';
2885 }
2886 
2887 /// printGCRelocateComment - print comment after call to the gc.relocate
2888 /// intrinsic indicating base and derived pointer names.
2889 void AssemblyWriter::printGCRelocateComment(const GCRelocateInst &Relocate) {
2890   Out << " ; (";
2891   writeOperand(Relocate.getBasePtr(), false);
2892   Out << ", ";
2893   writeOperand(Relocate.getDerivedPtr(), false);
2894   Out << ")";
2895 }
2896 
2897 /// printInfoComment - Print a little comment after the instruction indicating
2898 /// which slot it occupies.
2899 void AssemblyWriter::printInfoComment(const Value &V) {
2900   if (const auto *Relocate = dyn_cast<GCRelocateInst>(&V))
2901     printGCRelocateComment(*Relocate);
2902 
2903   if (AnnotationWriter)
2904     AnnotationWriter->printInfoComment(V, Out);
2905 }
2906 
2907 // This member is called for each Instruction in a function..
2908 void AssemblyWriter::printInstruction(const Instruction &I) {
2909   if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
2910 
2911   // Print out indentation for an instruction.
2912   Out << "  ";
2913 
2914   // Print out name if it exists...
2915   if (I.hasName()) {
2916     PrintLLVMName(Out, &I);
2917     Out << " = ";
2918   } else if (!I.getType()->isVoidTy()) {
2919     // Print out the def slot taken.
2920     int SlotNum = Machine.getLocalSlot(&I);
2921     if (SlotNum == -1)
2922       Out << "<badref> = ";
2923     else
2924       Out << '%' << SlotNum << " = ";
2925   }
2926 
2927   if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
2928     if (CI->isMustTailCall())
2929       Out << "musttail ";
2930     else if (CI->isTailCall())
2931       Out << "tail ";
2932     else if (CI->isNoTailCall())
2933       Out << "notail ";
2934   }
2935 
2936   // Print out the opcode...
2937   Out << I.getOpcodeName();
2938 
2939   // If this is an atomic load or store, print out the atomic marker.
2940   if ((isa<LoadInst>(I)  && cast<LoadInst>(I).isAtomic()) ||
2941       (isa<StoreInst>(I) && cast<StoreInst>(I).isAtomic()))
2942     Out << " atomic";
2943 
2944   if (isa<AtomicCmpXchgInst>(I) && cast<AtomicCmpXchgInst>(I).isWeak())
2945     Out << " weak";
2946 
2947   // If this is a volatile operation, print out the volatile marker.
2948   if ((isa<LoadInst>(I)  && cast<LoadInst>(I).isVolatile()) ||
2949       (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()) ||
2950       (isa<AtomicCmpXchgInst>(I) && cast<AtomicCmpXchgInst>(I).isVolatile()) ||
2951       (isa<AtomicRMWInst>(I) && cast<AtomicRMWInst>(I).isVolatile()))
2952     Out << " volatile";
2953 
2954   // Print out optimization information.
2955   WriteOptimizationInfo(Out, &I);
2956 
2957   // Print out the compare instruction predicates
2958   if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
2959     Out << ' ' << CmpInst::getPredicateName(CI->getPredicate());
2960 
2961   // Print out the atomicrmw operation
2962   if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(&I))
2963     writeAtomicRMWOperation(Out, RMWI->getOperation());
2964 
2965   // Print out the type of the operands...
2966   const Value *Operand = I.getNumOperands() ? I.getOperand(0) : nullptr;
2967 
2968   // Special case conditional branches to swizzle the condition out to the front
2969   if (isa<BranchInst>(I) && cast<BranchInst>(I).isConditional()) {
2970     const BranchInst &BI(cast<BranchInst>(I));
2971     Out << ' ';
2972     writeOperand(BI.getCondition(), true);
2973     Out << ", ";
2974     writeOperand(BI.getSuccessor(0), true);
2975     Out << ", ";
2976     writeOperand(BI.getSuccessor(1), true);
2977 
2978   } else if (isa<SwitchInst>(I)) {
2979     const SwitchInst& SI(cast<SwitchInst>(I));
2980     // Special case switch instruction to get formatting nice and correct.
2981     Out << ' ';
2982     writeOperand(SI.getCondition(), true);
2983     Out << ", ";
2984     writeOperand(SI.getDefaultDest(), true);
2985     Out << " [";
2986     for (auto Case : SI.cases()) {
2987       Out << "\n    ";
2988       writeOperand(Case.getCaseValue(), true);
2989       Out << ", ";
2990       writeOperand(Case.getCaseSuccessor(), true);
2991     }
2992     Out << "\n  ]";
2993   } else if (isa<IndirectBrInst>(I)) {
2994     // Special case indirectbr instruction to get formatting nice and correct.
2995     Out << ' ';
2996     writeOperand(Operand, true);
2997     Out << ", [";
2998 
2999     for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
3000       if (i != 1)
3001         Out << ", ";
3002       writeOperand(I.getOperand(i), true);
3003     }
3004     Out << ']';
3005   } else if (const PHINode *PN = dyn_cast<PHINode>(&I)) {
3006     Out << ' ';
3007     TypePrinter.print(I.getType(), Out);
3008     Out << ' ';
3009 
3010     for (unsigned op = 0, Eop = PN->getNumIncomingValues(); op < Eop; ++op) {
3011       if (op) Out << ", ";
3012       Out << "[ ";
3013       writeOperand(PN->getIncomingValue(op), false); Out << ", ";
3014       writeOperand(PN->getIncomingBlock(op), false); Out << " ]";
3015     }
3016   } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
3017     Out << ' ';
3018     writeOperand(I.getOperand(0), true);
3019     for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
3020       Out << ", " << *i;
3021   } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
3022     Out << ' ';
3023     writeOperand(I.getOperand(0), true); Out << ", ";
3024     writeOperand(I.getOperand(1), true);
3025     for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
3026       Out << ", " << *i;
3027   } else if (const LandingPadInst *LPI = dyn_cast<LandingPadInst>(&I)) {
3028     Out << ' ';
3029     TypePrinter.print(I.getType(), Out);
3030     if (LPI->isCleanup() || LPI->getNumClauses() != 0)
3031       Out << '\n';
3032 
3033     if (LPI->isCleanup())
3034       Out << "          cleanup";
3035 
3036     for (unsigned i = 0, e = LPI->getNumClauses(); i != e; ++i) {
3037       if (i != 0 || LPI->isCleanup()) Out << "\n";
3038       if (LPI->isCatch(i))
3039         Out << "          catch ";
3040       else
3041         Out << "          filter ";
3042 
3043       writeOperand(LPI->getClause(i), true);
3044     }
3045   } else if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(&I)) {
3046     Out << " within ";
3047     writeOperand(CatchSwitch->getParentPad(), /*PrintType=*/false);
3048     Out << " [";
3049     unsigned Op = 0;
3050     for (const BasicBlock *PadBB : CatchSwitch->handlers()) {
3051       if (Op > 0)
3052         Out << ", ";
3053       writeOperand(PadBB, /*PrintType=*/true);
3054       ++Op;
3055     }
3056     Out << "] unwind ";
3057     if (const BasicBlock *UnwindDest = CatchSwitch->getUnwindDest())
3058       writeOperand(UnwindDest, /*PrintType=*/true);
3059     else
3060       Out << "to caller";
3061   } else if (const auto *FPI = dyn_cast<FuncletPadInst>(&I)) {
3062     Out << " within ";
3063     writeOperand(FPI->getParentPad(), /*PrintType=*/false);
3064     Out << " [";
3065     for (unsigned Op = 0, NumOps = FPI->getNumArgOperands(); Op < NumOps;
3066          ++Op) {
3067       if (Op > 0)
3068         Out << ", ";
3069       writeOperand(FPI->getArgOperand(Op), /*PrintType=*/true);
3070     }
3071     Out << ']';
3072   } else if (isa<ReturnInst>(I) && !Operand) {
3073     Out << " void";
3074   } else if (const auto *CRI = dyn_cast<CatchReturnInst>(&I)) {
3075     Out << " from ";
3076     writeOperand(CRI->getOperand(0), /*PrintType=*/false);
3077 
3078     Out << " to ";
3079     writeOperand(CRI->getOperand(1), /*PrintType=*/true);
3080   } else if (const auto *CRI = dyn_cast<CleanupReturnInst>(&I)) {
3081     Out << " from ";
3082     writeOperand(CRI->getOperand(0), /*PrintType=*/false);
3083 
3084     Out << " unwind ";
3085     if (CRI->hasUnwindDest())
3086       writeOperand(CRI->getOperand(1), /*PrintType=*/true);
3087     else
3088       Out << "to caller";
3089   } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
3090     // Print the calling convention being used.
3091     if (CI->getCallingConv() != CallingConv::C) {
3092       Out << " ";
3093       PrintCallingConv(CI->getCallingConv(), Out);
3094     }
3095 
3096     Operand = CI->getCalledValue();
3097     FunctionType *FTy = CI->getFunctionType();
3098     Type *RetTy = FTy->getReturnType();
3099     const AttributeList &PAL = CI->getAttributes();
3100 
3101     if (PAL.hasAttributes(AttributeList::ReturnIndex))
3102       Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex);
3103 
3104     // If possible, print out the short form of the call instruction.  We can
3105     // only do this if the first argument is a pointer to a nonvararg function,
3106     // and if the return type is not a pointer to a function.
3107     //
3108     Out << ' ';
3109     TypePrinter.print(FTy->isVarArg() ? FTy : RetTy, Out);
3110     Out << ' ';
3111     writeOperand(Operand, false);
3112     Out << '(';
3113     for (unsigned op = 0, Eop = CI->getNumArgOperands(); op < Eop; ++op) {
3114       if (op > 0)
3115         Out << ", ";
3116       writeParamOperand(CI->getArgOperand(op), PAL.getParamAttributes(op));
3117     }
3118 
3119     // Emit an ellipsis if this is a musttail call in a vararg function.  This
3120     // is only to aid readability, musttail calls forward varargs by default.
3121     if (CI->isMustTailCall() && CI->getParent() &&
3122         CI->getParent()->getParent() &&
3123         CI->getParent()->getParent()->isVarArg())
3124       Out << ", ...";
3125 
3126     Out << ')';
3127     if (PAL.hasAttributes(AttributeList::FunctionIndex))
3128       Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttributes());
3129 
3130     writeOperandBundles(CI);
3131   } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
3132     Operand = II->getCalledValue();
3133     FunctionType *FTy = II->getFunctionType();
3134     Type *RetTy = FTy->getReturnType();
3135     const AttributeList &PAL = II->getAttributes();
3136 
3137     // Print the calling convention being used.
3138     if (II->getCallingConv() != CallingConv::C) {
3139       Out << " ";
3140       PrintCallingConv(II->getCallingConv(), Out);
3141     }
3142 
3143     if (PAL.hasAttributes(AttributeList::ReturnIndex))
3144       Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex);
3145 
3146     // If possible, print out the short form of the invoke instruction. We can
3147     // only do this if the first argument is a pointer to a nonvararg function,
3148     // and if the return type is not a pointer to a function.
3149     //
3150     Out << ' ';
3151     TypePrinter.print(FTy->isVarArg() ? FTy : RetTy, Out);
3152     Out << ' ';
3153     writeOperand(Operand, false);
3154     Out << '(';
3155     for (unsigned op = 0, Eop = II->getNumArgOperands(); op < Eop; ++op) {
3156       if (op)
3157         Out << ", ";
3158       writeParamOperand(II->getArgOperand(op), PAL.getParamAttributes(op));
3159     }
3160 
3161     Out << ')';
3162     if (PAL.hasAttributes(AttributeList::FunctionIndex))
3163       Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttributes());
3164 
3165     writeOperandBundles(II);
3166 
3167     Out << "\n          to ";
3168     writeOperand(II->getNormalDest(), true);
3169     Out << " unwind ";
3170     writeOperand(II->getUnwindDest(), true);
3171   } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
3172     Out << ' ';
3173     if (AI->isUsedWithInAlloca())
3174       Out << "inalloca ";
3175     if (AI->isSwiftError())
3176       Out << "swifterror ";
3177     TypePrinter.print(AI->getAllocatedType(), Out);
3178 
3179     // Explicitly write the array size if the code is broken, if it's an array
3180     // allocation, or if the type is not canonical for scalar allocations.  The
3181     // latter case prevents the type from mutating when round-tripping through
3182     // assembly.
3183     if (!AI->getArraySize() || AI->isArrayAllocation() ||
3184         !AI->getArraySize()->getType()->isIntegerTy(32)) {
3185       Out << ", ";
3186       writeOperand(AI->getArraySize(), true);
3187     }
3188     if (AI->getAlignment()) {
3189       Out << ", align " << AI->getAlignment();
3190     }
3191 
3192     unsigned AddrSpace = AI->getType()->getAddressSpace();
3193     if (AddrSpace != 0) {
3194       Out << ", addrspace(" << AddrSpace << ')';
3195     }
3196   } else if (isa<CastInst>(I)) {
3197     if (Operand) {
3198       Out << ' ';
3199       writeOperand(Operand, true);   // Work with broken code
3200     }
3201     Out << " to ";
3202     TypePrinter.print(I.getType(), Out);
3203   } else if (isa<VAArgInst>(I)) {
3204     if (Operand) {
3205       Out << ' ';
3206       writeOperand(Operand, true);   // Work with broken code
3207     }
3208     Out << ", ";
3209     TypePrinter.print(I.getType(), Out);
3210   } else if (Operand) {   // Print the normal way.
3211     if (const auto *GEP = dyn_cast<GetElementPtrInst>(&I)) {
3212       Out << ' ';
3213       TypePrinter.print(GEP->getSourceElementType(), Out);
3214       Out << ',';
3215     } else if (const auto *LI = dyn_cast<LoadInst>(&I)) {
3216       Out << ' ';
3217       TypePrinter.print(LI->getType(), Out);
3218       Out << ',';
3219     }
3220 
3221     // PrintAllTypes - Instructions who have operands of all the same type
3222     // omit the type from all but the first operand.  If the instruction has
3223     // different type operands (for example br), then they are all printed.
3224     bool PrintAllTypes = false;
3225     Type *TheType = Operand->getType();
3226 
3227     // Select, Store and ShuffleVector always print all types.
3228     if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
3229         || isa<ReturnInst>(I)) {
3230       PrintAllTypes = true;
3231     } else {
3232       for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
3233         Operand = I.getOperand(i);
3234         // note that Operand shouldn't be null, but the test helps make dump()
3235         // more tolerant of malformed IR
3236         if (Operand && Operand->getType() != TheType) {
3237           PrintAllTypes = true;    // We have differing types!  Print them all!
3238           break;
3239         }
3240       }
3241     }
3242 
3243     if (!PrintAllTypes) {
3244       Out << ' ';
3245       TypePrinter.print(TheType, Out);
3246     }
3247 
3248     Out << ' ';
3249     for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
3250       if (i) Out << ", ";
3251       writeOperand(I.getOperand(i), PrintAllTypes);
3252     }
3253   }
3254 
3255   // Print atomic ordering/alignment for memory operations
3256   if (const LoadInst *LI = dyn_cast<LoadInst>(&I)) {
3257     if (LI->isAtomic())
3258       writeAtomic(LI->getContext(), LI->getOrdering(), LI->getSyncScopeID());
3259     if (LI->getAlignment())
3260       Out << ", align " << LI->getAlignment();
3261   } else if (const StoreInst *SI = dyn_cast<StoreInst>(&I)) {
3262     if (SI->isAtomic())
3263       writeAtomic(SI->getContext(), SI->getOrdering(), SI->getSyncScopeID());
3264     if (SI->getAlignment())
3265       Out << ", align " << SI->getAlignment();
3266   } else if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(&I)) {
3267     writeAtomicCmpXchg(CXI->getContext(), CXI->getSuccessOrdering(),
3268                        CXI->getFailureOrdering(), CXI->getSyncScopeID());
3269   } else if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(&I)) {
3270     writeAtomic(RMWI->getContext(), RMWI->getOrdering(),
3271                 RMWI->getSyncScopeID());
3272   } else if (const FenceInst *FI = dyn_cast<FenceInst>(&I)) {
3273     writeAtomic(FI->getContext(), FI->getOrdering(), FI->getSyncScopeID());
3274   }
3275 
3276   // Print Metadata info.
3277   SmallVector<std::pair<unsigned, MDNode *>, 4> InstMD;
3278   I.getAllMetadata(InstMD);
3279   printMetadataAttachments(InstMD, ", ");
3280 
3281   // Print a nice comment.
3282   printInfoComment(I);
3283 }
3284 
3285 void AssemblyWriter::printMetadataAttachments(
3286     const SmallVectorImpl<std::pair<unsigned, MDNode *>> &MDs,
3287     StringRef Separator) {
3288   if (MDs.empty())
3289     return;
3290 
3291   if (MDNames.empty())
3292     MDs[0].second->getContext().getMDKindNames(MDNames);
3293 
3294   for (const auto &I : MDs) {
3295     unsigned Kind = I.first;
3296     Out << Separator;
3297     if (Kind < MDNames.size()) {
3298       Out << "!";
3299       printMetadataIdentifier(MDNames[Kind], Out);
3300     } else
3301       Out << "!<unknown kind #" << Kind << ">";
3302     Out << ' ';
3303     WriteAsOperandInternal(Out, I.second, &TypePrinter, &Machine, TheModule);
3304   }
3305 }
3306 
3307 void AssemblyWriter::writeMDNode(unsigned Slot, const MDNode *Node) {
3308   Out << '!' << Slot << " = ";
3309   printMDNodeBody(Node);
3310   Out << "\n";
3311 }
3312 
3313 void AssemblyWriter::writeAllMDNodes() {
3314   SmallVector<const MDNode *, 16> Nodes;
3315   Nodes.resize(Machine.mdn_size());
3316   for (SlotTracker::mdn_iterator I = Machine.mdn_begin(), E = Machine.mdn_end();
3317        I != E; ++I)
3318     Nodes[I->second] = cast<MDNode>(I->first);
3319 
3320   for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
3321     writeMDNode(i, Nodes[i]);
3322   }
3323 }
3324 
3325 void AssemblyWriter::printMDNodeBody(const MDNode *Node) {
3326   WriteMDNodeBodyInternal(Out, Node, &TypePrinter, &Machine, TheModule);
3327 }
3328 
3329 void AssemblyWriter::writeAllAttributeGroups() {
3330   std::vector<std::pair<AttributeSet, unsigned>> asVec;
3331   asVec.resize(Machine.as_size());
3332 
3333   for (SlotTracker::as_iterator I = Machine.as_begin(), E = Machine.as_end();
3334        I != E; ++I)
3335     asVec[I->second] = *I;
3336 
3337   for (const auto &I : asVec)
3338     Out << "attributes #" << I.second << " = { "
3339         << I.first.getAsString(true) << " }\n";
3340 }
3341 
3342 void AssemblyWriter::printUseListOrder(const UseListOrder &Order) {
3343   bool IsInFunction = Machine.getFunction();
3344   if (IsInFunction)
3345     Out << "  ";
3346 
3347   Out << "uselistorder";
3348   if (const BasicBlock *BB =
3349           IsInFunction ? nullptr : dyn_cast<BasicBlock>(Order.V)) {
3350     Out << "_bb ";
3351     writeOperand(BB->getParent(), false);
3352     Out << ", ";
3353     writeOperand(BB, false);
3354   } else {
3355     Out << " ";
3356     writeOperand(Order.V, true);
3357   }
3358   Out << ", { ";
3359 
3360   assert(Order.Shuffle.size() >= 2 && "Shuffle too small");
3361   Out << Order.Shuffle[0];
3362   for (unsigned I = 1, E = Order.Shuffle.size(); I != E; ++I)
3363     Out << ", " << Order.Shuffle[I];
3364   Out << " }\n";
3365 }
3366 
3367 void AssemblyWriter::printUseLists(const Function *F) {
3368   auto hasMore =
3369       [&]() { return !UseListOrders.empty() && UseListOrders.back().F == F; };
3370   if (!hasMore())
3371     // Nothing to do.
3372     return;
3373 
3374   Out << "\n; uselistorder directives\n";
3375   while (hasMore()) {
3376     printUseListOrder(UseListOrders.back());
3377     UseListOrders.pop_back();
3378   }
3379 }
3380 
3381 //===----------------------------------------------------------------------===//
3382 //                       External Interface declarations
3383 //===----------------------------------------------------------------------===//
3384 
3385 void Function::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW,
3386                      bool ShouldPreserveUseListOrder,
3387                      bool IsForDebug) const {
3388   SlotTracker SlotTable(this->getParent());
3389   formatted_raw_ostream OS(ROS);
3390   AssemblyWriter W(OS, SlotTable, this->getParent(), AAW,
3391                    IsForDebug,
3392                    ShouldPreserveUseListOrder);
3393   W.printFunction(this);
3394 }
3395 
3396 void Module::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW,
3397                    bool ShouldPreserveUseListOrder, bool IsForDebug) const {
3398   SlotTracker SlotTable(this);
3399   formatted_raw_ostream OS(ROS);
3400   AssemblyWriter W(OS, SlotTable, this, AAW, IsForDebug,
3401                    ShouldPreserveUseListOrder);
3402   W.printModule(this);
3403 }
3404 
3405 void NamedMDNode::print(raw_ostream &ROS, bool IsForDebug) const {
3406   SlotTracker SlotTable(getParent());
3407   formatted_raw_ostream OS(ROS);
3408   AssemblyWriter W(OS, SlotTable, getParent(), nullptr, IsForDebug);
3409   W.printNamedMDNode(this);
3410 }
3411 
3412 void NamedMDNode::print(raw_ostream &ROS, ModuleSlotTracker &MST,
3413                         bool IsForDebug) const {
3414   Optional<SlotTracker> LocalST;
3415   SlotTracker *SlotTable;
3416   if (auto *ST = MST.getMachine())
3417     SlotTable = ST;
3418   else {
3419     LocalST.emplace(getParent());
3420     SlotTable = &*LocalST;
3421   }
3422 
3423   formatted_raw_ostream OS(ROS);
3424   AssemblyWriter W(OS, *SlotTable, getParent(), nullptr, IsForDebug);
3425   W.printNamedMDNode(this);
3426 }
3427 
3428 void Comdat::print(raw_ostream &ROS, bool /*IsForDebug*/) const {
3429   PrintLLVMName(ROS, getName(), ComdatPrefix);
3430   ROS << " = comdat ";
3431 
3432   switch (getSelectionKind()) {
3433   case Comdat::Any:
3434     ROS << "any";
3435     break;
3436   case Comdat::ExactMatch:
3437     ROS << "exactmatch";
3438     break;
3439   case Comdat::Largest:
3440     ROS << "largest";
3441     break;
3442   case Comdat::NoDuplicates:
3443     ROS << "noduplicates";
3444     break;
3445   case Comdat::SameSize:
3446     ROS << "samesize";
3447     break;
3448   }
3449 
3450   ROS << '\n';
3451 }
3452 
3453 void Type::print(raw_ostream &OS, bool /*IsForDebug*/, bool NoDetails) const {
3454   TypePrinting TP;
3455   TP.print(const_cast<Type*>(this), OS);
3456 
3457   if (NoDetails)
3458     return;
3459 
3460   // If the type is a named struct type, print the body as well.
3461   if (StructType *STy = dyn_cast<StructType>(const_cast<Type*>(this)))
3462     if (!STy->isLiteral()) {
3463       OS << " = type ";
3464       TP.printStructBody(STy, OS);
3465     }
3466 }
3467 
3468 static bool isReferencingMDNode(const Instruction &I) {
3469   if (const auto *CI = dyn_cast<CallInst>(&I))
3470     if (Function *F = CI->getCalledFunction())
3471       if (F->isIntrinsic())
3472         for (auto &Op : I.operands())
3473           if (auto *V = dyn_cast_or_null<MetadataAsValue>(Op))
3474             if (isa<MDNode>(V->getMetadata()))
3475               return true;
3476   return false;
3477 }
3478 
3479 void Value::print(raw_ostream &ROS, bool IsForDebug) const {
3480   bool ShouldInitializeAllMetadata = false;
3481   if (auto *I = dyn_cast<Instruction>(this))
3482     ShouldInitializeAllMetadata = isReferencingMDNode(*I);
3483   else if (isa<Function>(this) || isa<MetadataAsValue>(this))
3484     ShouldInitializeAllMetadata = true;
3485 
3486   ModuleSlotTracker MST(getModuleFromVal(this), ShouldInitializeAllMetadata);
3487   print(ROS, MST, IsForDebug);
3488 }
3489 
3490 void Value::print(raw_ostream &ROS, ModuleSlotTracker &MST,
3491                   bool IsForDebug) const {
3492   formatted_raw_ostream OS(ROS);
3493   SlotTracker EmptySlotTable(static_cast<const Module *>(nullptr));
3494   SlotTracker &SlotTable =
3495       MST.getMachine() ? *MST.getMachine() : EmptySlotTable;
3496   auto incorporateFunction = [&](const Function *F) {
3497     if (F)
3498       MST.incorporateFunction(*F);
3499   };
3500 
3501   if (const Instruction *I = dyn_cast<Instruction>(this)) {
3502     incorporateFunction(I->getParent() ? I->getParent()->getParent() : nullptr);
3503     AssemblyWriter W(OS, SlotTable, getModuleFromVal(I), nullptr, IsForDebug);
3504     W.printInstruction(*I);
3505   } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(this)) {
3506     incorporateFunction(BB->getParent());
3507     AssemblyWriter W(OS, SlotTable, getModuleFromVal(BB), nullptr, IsForDebug);
3508     W.printBasicBlock(BB);
3509   } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
3510     AssemblyWriter W(OS, SlotTable, GV->getParent(), nullptr, IsForDebug);
3511     if (const GlobalVariable *V = dyn_cast<GlobalVariable>(GV))
3512       W.printGlobal(V);
3513     else if (const Function *F = dyn_cast<Function>(GV))
3514       W.printFunction(F);
3515     else
3516       W.printIndirectSymbol(cast<GlobalIndirectSymbol>(GV));
3517   } else if (const MetadataAsValue *V = dyn_cast<MetadataAsValue>(this)) {
3518     V->getMetadata()->print(ROS, MST, getModuleFromVal(V));
3519   } else if (const Constant *C = dyn_cast<Constant>(this)) {
3520     TypePrinting TypePrinter;
3521     TypePrinter.print(C->getType(), OS);
3522     OS << ' ';
3523     WriteConstantInternal(OS, C, TypePrinter, MST.getMachine(), nullptr);
3524   } else if (isa<InlineAsm>(this) || isa<Argument>(this)) {
3525     this->printAsOperand(OS, /* PrintType */ true, MST);
3526   } else {
3527     llvm_unreachable("Unknown value to print out!");
3528   }
3529 }
3530 
3531 /// Print without a type, skipping the TypePrinting object.
3532 ///
3533 /// \return \c true iff printing was successful.
3534 static bool printWithoutType(const Value &V, raw_ostream &O,
3535                              SlotTracker *Machine, const Module *M) {
3536   if (V.hasName() || isa<GlobalValue>(V) ||
3537       (!isa<Constant>(V) && !isa<MetadataAsValue>(V))) {
3538     WriteAsOperandInternal(O, &V, nullptr, Machine, M);
3539     return true;
3540   }
3541   return false;
3542 }
3543 
3544 static void printAsOperandImpl(const Value &V, raw_ostream &O, bool PrintType,
3545                                ModuleSlotTracker &MST) {
3546   TypePrinting TypePrinter;
3547   if (const Module *M = MST.getModule())
3548     TypePrinter.incorporateTypes(*M);
3549   if (PrintType) {
3550     TypePrinter.print(V.getType(), O);
3551     O << ' ';
3552   }
3553 
3554   WriteAsOperandInternal(O, &V, &TypePrinter, MST.getMachine(),
3555                          MST.getModule());
3556 }
3557 
3558 void Value::printAsOperand(raw_ostream &O, bool PrintType,
3559                            const Module *M) const {
3560   if (!M)
3561     M = getModuleFromVal(this);
3562 
3563   if (!PrintType)
3564     if (printWithoutType(*this, O, nullptr, M))
3565       return;
3566 
3567   SlotTracker Machine(
3568       M, /* ShouldInitializeAllMetadata */ isa<MetadataAsValue>(this));
3569   ModuleSlotTracker MST(Machine, M);
3570   printAsOperandImpl(*this, O, PrintType, MST);
3571 }
3572 
3573 void Value::printAsOperand(raw_ostream &O, bool PrintType,
3574                            ModuleSlotTracker &MST) const {
3575   if (!PrintType)
3576     if (printWithoutType(*this, O, MST.getMachine(), MST.getModule()))
3577       return;
3578 
3579   printAsOperandImpl(*this, O, PrintType, MST);
3580 }
3581 
3582 static void printMetadataImpl(raw_ostream &ROS, const Metadata &MD,
3583                               ModuleSlotTracker &MST, const Module *M,
3584                               bool OnlyAsOperand) {
3585   formatted_raw_ostream OS(ROS);
3586 
3587   TypePrinting TypePrinter;
3588   if (M)
3589     TypePrinter.incorporateTypes(*M);
3590 
3591   WriteAsOperandInternal(OS, &MD, &TypePrinter, MST.getMachine(), M,
3592                          /* FromValue */ true);
3593 
3594   auto *N = dyn_cast<MDNode>(&MD);
3595   if (OnlyAsOperand || !N || isa<DIExpression>(MD))
3596     return;
3597 
3598   OS << " = ";
3599   WriteMDNodeBodyInternal(OS, N, &TypePrinter, MST.getMachine(), M);
3600 }
3601 
3602 void Metadata::printAsOperand(raw_ostream &OS, const Module *M) const {
3603   ModuleSlotTracker MST(M, isa<MDNode>(this));
3604   printMetadataImpl(OS, *this, MST, M, /* OnlyAsOperand */ true);
3605 }
3606 
3607 void Metadata::printAsOperand(raw_ostream &OS, ModuleSlotTracker &MST,
3608                               const Module *M) const {
3609   printMetadataImpl(OS, *this, MST, M, /* OnlyAsOperand */ true);
3610 }
3611 
3612 void Metadata::print(raw_ostream &OS, const Module *M,
3613                      bool /*IsForDebug*/) const {
3614   ModuleSlotTracker MST(M, isa<MDNode>(this));
3615   printMetadataImpl(OS, *this, MST, M, /* OnlyAsOperand */ false);
3616 }
3617 
3618 void Metadata::print(raw_ostream &OS, ModuleSlotTracker &MST,
3619                      const Module *M, bool /*IsForDebug*/) const {
3620   printMetadataImpl(OS, *this, MST, M, /* OnlyAsOperand */ false);
3621 }
3622 
3623 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3624 // Value::dump - allow easy printing of Values from the debugger.
3625 LLVM_DUMP_METHOD
3626 void Value::dump() const { print(dbgs(), /*IsForDebug=*/true); dbgs() << '\n'; }
3627 
3628 // Type::dump - allow easy printing of Types from the debugger.
3629 LLVM_DUMP_METHOD
3630 void Type::dump() const { print(dbgs(), /*IsForDebug=*/true); dbgs() << '\n'; }
3631 
3632 // Module::dump() - Allow printing of Modules from the debugger.
3633 LLVM_DUMP_METHOD
3634 void Module::dump() const {
3635   print(dbgs(), nullptr,
3636         /*ShouldPreserveUseListOrder=*/false, /*IsForDebug=*/true);
3637 }
3638 
3639 // \brief Allow printing of Comdats from the debugger.
3640 LLVM_DUMP_METHOD
3641 void Comdat::dump() const { print(dbgs(), /*IsForDebug=*/true); }
3642 
3643 // NamedMDNode::dump() - Allow printing of NamedMDNodes from the debugger.
3644 LLVM_DUMP_METHOD
3645 void NamedMDNode::dump() const { print(dbgs(), /*IsForDebug=*/true); }
3646 
3647 LLVM_DUMP_METHOD
3648 void Metadata::dump() const { dump(nullptr); }
3649 
3650 LLVM_DUMP_METHOD
3651 void Metadata::dump(const Module *M) const {
3652   print(dbgs(), M, /*IsForDebug=*/true);
3653   dbgs() << '\n';
3654 }
3655 #endif
3656