IR: add a second ordering operand to cmpxhg for failure
[oota-llvm.git] / lib / IR / AsmWriter.cpp
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 "AsmWriter.h"
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/SmallString.h"
21 #include "llvm/ADT/StringExtras.h"
22 #include "llvm/IR/AssemblyAnnotationWriter.h"
23 #include "llvm/IR/CFG.h"
24 #include "llvm/IR/CallingConv.h"
25 #include "llvm/IR/Constants.h"
26 #include "llvm/IR/DebugInfo.h"
27 #include "llvm/IR/DerivedTypes.h"
28 #include "llvm/IR/IRPrintingPasses.h"
29 #include "llvm/IR/InlineAsm.h"
30 #include "llvm/IR/IntrinsicInst.h"
31 #include "llvm/IR/LLVMContext.h"
32 #include "llvm/IR/Module.h"
33 #include "llvm/IR/Operator.h"
34 #include "llvm/IR/TypeFinder.h"
35 #include "llvm/IR/ValueSymbolTable.h"
36 #include "llvm/Support/Debug.h"
37 #include "llvm/Support/Dwarf.h"
38 #include "llvm/Support/ErrorHandling.h"
39 #include "llvm/Support/FormattedStream.h"
40 #include "llvm/Support/MathExtras.h"
41 #include <algorithm>
42 #include <cctype>
43 using namespace llvm;
44
45 // Make virtual table appear in this compilation unit.
46 AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
47
48 //===----------------------------------------------------------------------===//
49 // Helper Functions
50 //===----------------------------------------------------------------------===//
51
52 static const Module *getModuleFromVal(const Value *V) {
53   if (const Argument *MA = dyn_cast<Argument>(V))
54     return MA->getParent() ? MA->getParent()->getParent() : 0;
55
56   if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
57     return BB->getParent() ? BB->getParent()->getParent() : 0;
58
59   if (const Instruction *I = dyn_cast<Instruction>(V)) {
60     const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
61     return M ? M->getParent() : 0;
62   }
63
64   if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
65     return GV->getParent();
66   return 0;
67 }
68
69 static void PrintCallingConv(unsigned cc, raw_ostream &Out) {
70   switch (cc) {
71   default:                         Out << "cc" << cc; break;
72   case CallingConv::Fast:          Out << "fastcc"; break;
73   case CallingConv::Cold:          Out << "coldcc"; break;
74   case CallingConv::WebKit_JS:     Out << "webkit_jscc"; break;
75   case CallingConv::AnyReg:        Out << "anyregcc"; break;
76   case CallingConv::PreserveMost:  Out << "preserve_mostcc"; break;
77   case CallingConv::PreserveAll:   Out << "preserve_allcc"; break;
78   case CallingConv::X86_StdCall:   Out << "x86_stdcallcc"; break;
79   case CallingConv::X86_FastCall:  Out << "x86_fastcallcc"; break;
80   case CallingConv::X86_ThisCall:  Out << "x86_thiscallcc"; break;
81   case CallingConv::X86_CDeclMethod:Out << "x86_cdeclmethodcc"; break;
82   case CallingConv::Intel_OCL_BI:  Out << "intel_ocl_bicc"; break;
83   case CallingConv::ARM_APCS:      Out << "arm_apcscc"; break;
84   case CallingConv::ARM_AAPCS:     Out << "arm_aapcscc"; break;
85   case CallingConv::ARM_AAPCS_VFP: Out << "arm_aapcs_vfpcc"; break;
86   case CallingConv::MSP430_INTR:   Out << "msp430_intrcc"; break;
87   case CallingConv::PTX_Kernel:    Out << "ptx_kernel"; break;
88   case CallingConv::PTX_Device:    Out << "ptx_device"; break;
89   case CallingConv::X86_64_SysV:   Out << "x86_64_sysvcc"; break;
90   case CallingConv::X86_64_Win64:  Out << "x86_64_win64cc"; break;
91   case CallingConv::SPIR_FUNC:     Out << "spir_func"; break;
92   case CallingConv::SPIR_KERNEL:   Out << "spir_kernel"; break;
93   }
94 }
95
96 // PrintEscapedString - Print each character of the specified string, escaping
97 // it if it is not printable or if it is an escape char.
98 static void PrintEscapedString(StringRef Name, raw_ostream &Out) {
99   for (unsigned i = 0, e = Name.size(); i != e; ++i) {
100     unsigned char C = Name[i];
101     if (isprint(C) && C != '\\' && C != '"')
102       Out << C;
103     else
104       Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
105   }
106 }
107
108 enum PrefixType {
109   GlobalPrefix,
110   LabelPrefix,
111   LocalPrefix,
112   NoPrefix
113 };
114
115 /// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
116 /// prefixed with % (if the string only contains simple characters) or is
117 /// surrounded with ""'s (if it has special chars in it).  Print it out.
118 static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) {
119   assert(!Name.empty() && "Cannot get empty name!");
120   switch (Prefix) {
121   case NoPrefix: break;
122   case GlobalPrefix: OS << '@'; break;
123   case LabelPrefix:  break;
124   case LocalPrefix:  OS << '%'; break;
125   }
126
127   // Scan the name to see if it needs quotes first.
128   bool NeedsQuotes = isdigit(static_cast<unsigned char>(Name[0]));
129   if (!NeedsQuotes) {
130     for (unsigned i = 0, e = Name.size(); i != e; ++i) {
131       // By making this unsigned, the value passed in to isalnum will always be
132       // in the range 0-255.  This is important when building with MSVC because
133       // its implementation will assert.  This situation can arise when dealing
134       // with UTF-8 multibyte characters.
135       unsigned char C = Name[i];
136       if (!isalnum(static_cast<unsigned char>(C)) && C != '-' && C != '.' &&
137           C != '_') {
138         NeedsQuotes = true;
139         break;
140       }
141     }
142   }
143
144   // If we didn't need any quotes, just write out the name in one blast.
145   if (!NeedsQuotes) {
146     OS << Name;
147     return;
148   }
149
150   // Okay, we need quotes.  Output the quotes and escape any scary characters as
151   // needed.
152   OS << '"';
153   PrintEscapedString(Name, OS);
154   OS << '"';
155 }
156
157 /// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
158 /// prefixed with % (if the string only contains simple characters) or is
159 /// surrounded with ""'s (if it has special chars in it).  Print it out.
160 static void PrintLLVMName(raw_ostream &OS, const Value *V) {
161   PrintLLVMName(OS, V->getName(),
162                 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
163 }
164
165
166 namespace llvm {
167
168 void TypePrinting::incorporateTypes(const Module &M) {
169   NamedTypes.run(M, false);
170
171   // The list of struct types we got back includes all the struct types, split
172   // the unnamed ones out to a numbering and remove the anonymous structs.
173   unsigned NextNumber = 0;
174
175   std::vector<StructType*>::iterator NextToUse = NamedTypes.begin(), I, E;
176   for (I = NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I) {
177     StructType *STy = *I;
178
179     // Ignore anonymous types.
180     if (STy->isLiteral())
181       continue;
182
183     if (STy->getName().empty())
184       NumberedTypes[STy] = NextNumber++;
185     else
186       *NextToUse++ = STy;
187   }
188
189   NamedTypes.erase(NextToUse, NamedTypes.end());
190 }
191
192
193 /// CalcTypeName - Write the specified type to the specified raw_ostream, making
194 /// use of type names or up references to shorten the type name where possible.
195 void TypePrinting::print(Type *Ty, raw_ostream &OS) {
196   switch (Ty->getTypeID()) {
197   case Type::VoidTyID:      OS << "void"; return;
198   case Type::HalfTyID:      OS << "half"; return;
199   case Type::FloatTyID:     OS << "float"; return;
200   case Type::DoubleTyID:    OS << "double"; return;
201   case Type::X86_FP80TyID:  OS << "x86_fp80"; return;
202   case Type::FP128TyID:     OS << "fp128"; return;
203   case Type::PPC_FP128TyID: OS << "ppc_fp128"; return;
204   case Type::LabelTyID:     OS << "label"; return;
205   case Type::MetadataTyID:  OS << "metadata"; return;
206   case Type::X86_MMXTyID:   OS << "x86_mmx"; return;
207   case Type::IntegerTyID:
208     OS << 'i' << cast<IntegerType>(Ty)->getBitWidth();
209     return;
210
211   case Type::FunctionTyID: {
212     FunctionType *FTy = cast<FunctionType>(Ty);
213     print(FTy->getReturnType(), OS);
214     OS << " (";
215     for (FunctionType::param_iterator I = FTy->param_begin(),
216          E = FTy->param_end(); I != E; ++I) {
217       if (I != FTy->param_begin())
218         OS << ", ";
219       print(*I, OS);
220     }
221     if (FTy->isVarArg()) {
222       if (FTy->getNumParams()) OS << ", ";
223       OS << "...";
224     }
225     OS << ')';
226     return;
227   }
228   case Type::StructTyID: {
229     StructType *STy = cast<StructType>(Ty);
230
231     if (STy->isLiteral())
232       return printStructBody(STy, OS);
233
234     if (!STy->getName().empty())
235       return PrintLLVMName(OS, STy->getName(), LocalPrefix);
236
237     DenseMap<StructType*, unsigned>::iterator I = NumberedTypes.find(STy);
238     if (I != NumberedTypes.end())
239       OS << '%' << I->second;
240     else  // Not enumerated, print the hex address.
241       OS << "%\"type " << STy << '\"';
242     return;
243   }
244   case Type::PointerTyID: {
245     PointerType *PTy = cast<PointerType>(Ty);
246     print(PTy->getElementType(), OS);
247     if (unsigned AddressSpace = PTy->getAddressSpace())
248       OS << " addrspace(" << AddressSpace << ')';
249     OS << '*';
250     return;
251   }
252   case Type::ArrayTyID: {
253     ArrayType *ATy = cast<ArrayType>(Ty);
254     OS << '[' << ATy->getNumElements() << " x ";
255     print(ATy->getElementType(), OS);
256     OS << ']';
257     return;
258   }
259   case Type::VectorTyID: {
260     VectorType *PTy = cast<VectorType>(Ty);
261     OS << "<" << PTy->getNumElements() << " x ";
262     print(PTy->getElementType(), OS);
263     OS << '>';
264     return;
265   }
266   }
267   llvm_unreachable("Invalid TypeID");
268 }
269
270 void TypePrinting::printStructBody(StructType *STy, raw_ostream &OS) {
271   if (STy->isOpaque()) {
272     OS << "opaque";
273     return;
274   }
275
276   if (STy->isPacked())
277     OS << '<';
278
279   if (STy->getNumElements() == 0) {
280     OS << "{}";
281   } else {
282     StructType::element_iterator I = STy->element_begin();
283     OS << "{ ";
284     print(*I++, OS);
285     for (StructType::element_iterator E = STy->element_end(); I != E; ++I) {
286       OS << ", ";
287       print(*I, OS);
288     }
289
290     OS << " }";
291   }
292   if (STy->isPacked())
293     OS << '>';
294 }
295
296 //===----------------------------------------------------------------------===//
297 // SlotTracker Class: Enumerate slot numbers for unnamed values
298 //===----------------------------------------------------------------------===//
299 /// This class provides computation of slot numbers for LLVM Assembly writing.
300 ///
301 class SlotTracker {
302 public:
303   /// ValueMap - A mapping of Values to slot numbers.
304   typedef DenseMap<const Value*, unsigned> ValueMap;
305
306 private:
307   /// TheModule - The module for which we are holding slot numbers.
308   const Module* TheModule;
309
310   /// TheFunction - The function for which we are holding slot numbers.
311   const Function* TheFunction;
312   bool FunctionProcessed;
313
314   /// mMap - The slot map for the module level data.
315   ValueMap mMap;
316   unsigned mNext;
317
318   /// fMap - The slot map for the function level data.
319   ValueMap fMap;
320   unsigned fNext;
321
322   /// mdnMap - Map for MDNodes.
323   DenseMap<const MDNode*, unsigned> mdnMap;
324   unsigned mdnNext;
325
326   /// asMap - The slot map for attribute sets.
327   DenseMap<AttributeSet, unsigned> asMap;
328   unsigned asNext;
329 public:
330   /// Construct from a module
331   explicit SlotTracker(const Module *M);
332   /// Construct from a function, starting out in incorp state.
333   explicit SlotTracker(const Function *F);
334
335   /// Return the slot number of the specified value in it's type
336   /// plane.  If something is not in the SlotTracker, return -1.
337   int getLocalSlot(const Value *V);
338   int getGlobalSlot(const GlobalValue *V);
339   int getMetadataSlot(const MDNode *N);
340   int getAttributeGroupSlot(AttributeSet AS);
341
342   /// If you'd like to deal with a function instead of just a module, use
343   /// this method to get its data into the SlotTracker.
344   void incorporateFunction(const Function *F) {
345     TheFunction = F;
346     FunctionProcessed = false;
347   }
348
349   /// After calling incorporateFunction, use this method to remove the
350   /// most recently incorporated function from the SlotTracker. This
351   /// will reset the state of the machine back to just the module contents.
352   void purgeFunction();
353
354   /// MDNode map iterators.
355   typedef DenseMap<const MDNode*, unsigned>::iterator mdn_iterator;
356   mdn_iterator mdn_begin() { return mdnMap.begin(); }
357   mdn_iterator mdn_end() { return mdnMap.end(); }
358   unsigned mdn_size() const { return mdnMap.size(); }
359   bool mdn_empty() const { return mdnMap.empty(); }
360
361   /// AttributeSet map iterators.
362   typedef DenseMap<AttributeSet, unsigned>::iterator as_iterator;
363   as_iterator as_begin()   { return asMap.begin(); }
364   as_iterator as_end()     { return asMap.end(); }
365   unsigned as_size() const { return asMap.size(); }
366   bool as_empty() const    { return asMap.empty(); }
367
368   /// This function does the actual initialization.
369   inline void initialize();
370
371   // Implementation Details
372 private:
373   /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
374   void CreateModuleSlot(const GlobalValue *V);
375
376   /// CreateMetadataSlot - Insert the specified MDNode* into the slot table.
377   void CreateMetadataSlot(const MDNode *N);
378
379   /// CreateFunctionSlot - Insert the specified Value* into the slot table.
380   void CreateFunctionSlot(const Value *V);
381
382   /// \brief Insert the specified AttributeSet into the slot table.
383   void CreateAttributeSetSlot(AttributeSet AS);
384
385   /// Add all of the module level global variables (and their initializers)
386   /// and function declarations, but not the contents of those functions.
387   void processModule();
388
389   /// Add all of the functions arguments, basic blocks, and instructions.
390   void processFunction();
391
392   SlotTracker(const SlotTracker &) LLVM_DELETED_FUNCTION;
393   void operator=(const SlotTracker &) LLVM_DELETED_FUNCTION;
394 };
395
396 SlotTracker *createSlotTracker(const Module *M) {
397   return new SlotTracker(M);
398 }
399
400 static SlotTracker *createSlotTracker(const Value *V) {
401   if (const Argument *FA = dyn_cast<Argument>(V))
402     return new SlotTracker(FA->getParent());
403
404   if (const Instruction *I = dyn_cast<Instruction>(V))
405     if (I->getParent())
406       return new SlotTracker(I->getParent()->getParent());
407
408   if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
409     return new SlotTracker(BB->getParent());
410
411   if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
412     return new SlotTracker(GV->getParent());
413
414   if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
415     return new SlotTracker(GA->getParent());
416
417   if (const Function *Func = dyn_cast<Function>(V))
418     return new SlotTracker(Func);
419
420   if (const MDNode *MD = dyn_cast<MDNode>(V)) {
421     if (!MD->isFunctionLocal())
422       return new SlotTracker(MD->getFunction());
423
424     return new SlotTracker((Function *)0);
425   }
426
427   return 0;
428 }
429
430 #if 0
431 #define ST_DEBUG(X) dbgs() << X
432 #else
433 #define ST_DEBUG(X)
434 #endif
435
436 // Module level constructor. Causes the contents of the Module (sans functions)
437 // to be added to the slot table.
438 SlotTracker::SlotTracker(const Module *M)
439   : TheModule(M), TheFunction(0), FunctionProcessed(false),
440     mNext(0), fNext(0),  mdnNext(0), asNext(0) {
441 }
442
443 // Function level constructor. Causes the contents of the Module and the one
444 // function provided to be added to the slot table.
445 SlotTracker::SlotTracker(const Function *F)
446   : TheModule(F ? F->getParent() : 0), TheFunction(F), FunctionProcessed(false),
447     mNext(0), fNext(0), mdnNext(0), asNext(0) {
448 }
449
450 inline void SlotTracker::initialize() {
451   if (TheModule) {
452     processModule();
453     TheModule = 0; ///< Prevent re-processing next time we're called.
454   }
455
456   if (TheFunction && !FunctionProcessed)
457     processFunction();
458 }
459
460 // Iterate through all the global variables, functions, and global
461 // variable initializers and create slots for them.
462 void SlotTracker::processModule() {
463   ST_DEBUG("begin processModule!\n");
464
465   // Add all of the unnamed global variables to the value table.
466   for (Module::const_global_iterator I = TheModule->global_begin(),
467          E = TheModule->global_end(); I != E; ++I) {
468     if (!I->hasName())
469       CreateModuleSlot(I);
470   }
471
472   // Add metadata used by named metadata.
473   for (Module::const_named_metadata_iterator
474          I = TheModule->named_metadata_begin(),
475          E = TheModule->named_metadata_end(); I != E; ++I) {
476     const NamedMDNode *NMD = I;
477     for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i)
478       CreateMetadataSlot(NMD->getOperand(i));
479   }
480
481   for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
482        I != E; ++I) {
483     if (!I->hasName())
484       // Add all the unnamed functions to the table.
485       CreateModuleSlot(I);
486
487     // Add all the function attributes to the table.
488     // FIXME: Add attributes of other objects?
489     AttributeSet FnAttrs = I->getAttributes().getFnAttributes();
490     if (FnAttrs.hasAttributes(AttributeSet::FunctionIndex))
491       CreateAttributeSetSlot(FnAttrs);
492   }
493
494   ST_DEBUG("end processModule!\n");
495 }
496
497 // Process the arguments, basic blocks, and instructions  of a function.
498 void SlotTracker::processFunction() {
499   ST_DEBUG("begin processFunction!\n");
500   fNext = 0;
501
502   // Add all the function arguments with no names.
503   for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
504       AE = TheFunction->arg_end(); AI != AE; ++AI)
505     if (!AI->hasName())
506       CreateFunctionSlot(AI);
507
508   ST_DEBUG("Inserting Instructions:\n");
509
510   SmallVector<std::pair<unsigned, MDNode*>, 4> MDForInst;
511
512   // Add all of the basic blocks and instructions with no names.
513   for (Function::const_iterator BB = TheFunction->begin(),
514        E = TheFunction->end(); BB != E; ++BB) {
515     if (!BB->hasName())
516       CreateFunctionSlot(BB);
517
518     for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E;
519          ++I) {
520       if (!I->getType()->isVoidTy() && !I->hasName())
521         CreateFunctionSlot(I);
522
523       // Intrinsics can directly use metadata.  We allow direct calls to any
524       // llvm.foo function here, because the target may not be linked into the
525       // optimizer.
526       if (const CallInst *CI = dyn_cast<CallInst>(I)) {
527         if (Function *F = CI->getCalledFunction())
528           if (F->isIntrinsic())
529             for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
530               if (MDNode *N = dyn_cast_or_null<MDNode>(I->getOperand(i)))
531                 CreateMetadataSlot(N);
532
533         // Add all the call attributes to the table.
534         AttributeSet Attrs = CI->getAttributes().getFnAttributes();
535         if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
536           CreateAttributeSetSlot(Attrs);
537       } else if (const InvokeInst *II = dyn_cast<InvokeInst>(I)) {
538         // Add all the call attributes to the table.
539         AttributeSet Attrs = II->getAttributes().getFnAttributes();
540         if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
541           CreateAttributeSetSlot(Attrs);
542       }
543
544       // Process metadata attached with this instruction.
545       I->getAllMetadata(MDForInst);
546       for (unsigned i = 0, e = MDForInst.size(); i != e; ++i)
547         CreateMetadataSlot(MDForInst[i].second);
548       MDForInst.clear();
549     }
550   }
551
552   FunctionProcessed = true;
553
554   ST_DEBUG("end processFunction!\n");
555 }
556
557 /// Clean up after incorporating a function. This is the only way to get out of
558 /// the function incorporation state that affects get*Slot/Create*Slot. Function
559 /// incorporation state is indicated by TheFunction != 0.
560 void SlotTracker::purgeFunction() {
561   ST_DEBUG("begin purgeFunction!\n");
562   fMap.clear(); // Simply discard the function level map
563   TheFunction = 0;
564   FunctionProcessed = false;
565   ST_DEBUG("end purgeFunction!\n");
566 }
567
568 /// getGlobalSlot - Get the slot number of a global value.
569 int SlotTracker::getGlobalSlot(const GlobalValue *V) {
570   // Check for uninitialized state and do lazy initialization.
571   initialize();
572
573   // Find the value in the module map
574   ValueMap::iterator MI = mMap.find(V);
575   return MI == mMap.end() ? -1 : (int)MI->second;
576 }
577
578 /// getMetadataSlot - Get the slot number of a MDNode.
579 int SlotTracker::getMetadataSlot(const MDNode *N) {
580   // Check for uninitialized state and do lazy initialization.
581   initialize();
582
583   // Find the MDNode in the module map
584   mdn_iterator MI = mdnMap.find(N);
585   return MI == mdnMap.end() ? -1 : (int)MI->second;
586 }
587
588
589 /// getLocalSlot - Get the slot number for a value that is local to a function.
590 int SlotTracker::getLocalSlot(const Value *V) {
591   assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
592
593   // Check for uninitialized state and do lazy initialization.
594   initialize();
595
596   ValueMap::iterator FI = fMap.find(V);
597   return FI == fMap.end() ? -1 : (int)FI->second;
598 }
599
600 int SlotTracker::getAttributeGroupSlot(AttributeSet AS) {
601   // Check for uninitialized state and do lazy initialization.
602   initialize();
603
604   // Find the AttributeSet in the module map.
605   as_iterator AI = asMap.find(AS);
606   return AI == asMap.end() ? -1 : (int)AI->second;
607 }
608
609 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
610 void SlotTracker::CreateModuleSlot(const GlobalValue *V) {
611   assert(V && "Can't insert a null Value into SlotTracker!");
612   assert(!V->getType()->isVoidTy() && "Doesn't need a slot!");
613   assert(!V->hasName() && "Doesn't need a slot!");
614
615   unsigned DestSlot = mNext++;
616   mMap[V] = DestSlot;
617
618   ST_DEBUG("  Inserting value [" << V->getType() << "] = " << V << " slot=" <<
619            DestSlot << " [");
620   // G = Global, F = Function, A = Alias, o = other
621   ST_DEBUG((isa<GlobalVariable>(V) ? 'G' :
622             (isa<Function>(V) ? 'F' :
623              (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n");
624 }
625
626 /// CreateSlot - Create a new slot for the specified value if it has no name.
627 void SlotTracker::CreateFunctionSlot(const Value *V) {
628   assert(!V->getType()->isVoidTy() && !V->hasName() && "Doesn't need a slot!");
629
630   unsigned DestSlot = fNext++;
631   fMap[V] = DestSlot;
632
633   // G = Global, F = Function, o = other
634   ST_DEBUG("  Inserting value [" << V->getType() << "] = " << V << " slot=" <<
635            DestSlot << " [o]\n");
636 }
637
638 /// CreateModuleSlot - Insert the specified MDNode* into the slot table.
639 void SlotTracker::CreateMetadataSlot(const MDNode *N) {
640   assert(N && "Can't insert a null Value into SlotTracker!");
641
642   // Don't insert if N is a function-local metadata, these are always printed
643   // inline.
644   if (!N->isFunctionLocal()) {
645     mdn_iterator I = mdnMap.find(N);
646     if (I != mdnMap.end())
647       return;
648
649     unsigned DestSlot = mdnNext++;
650     mdnMap[N] = DestSlot;
651   }
652
653   // Recursively add any MDNodes referenced by operands.
654   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
655     if (const MDNode *Op = dyn_cast_or_null<MDNode>(N->getOperand(i)))
656       CreateMetadataSlot(Op);
657 }
658
659 void SlotTracker::CreateAttributeSetSlot(AttributeSet AS) {
660   assert(AS.hasAttributes(AttributeSet::FunctionIndex) &&
661          "Doesn't need a slot!");
662
663   as_iterator I = asMap.find(AS);
664   if (I != asMap.end())
665     return;
666
667   unsigned DestSlot = asNext++;
668   asMap[AS] = DestSlot;
669 }
670
671 //===----------------------------------------------------------------------===//
672 // AsmWriter Implementation
673 //===----------------------------------------------------------------------===//
674
675 static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
676                                    TypePrinting *TypePrinter,
677                                    SlotTracker *Machine,
678                                    const Module *Context);
679
680 static const char *getPredicateText(unsigned predicate) {
681   const char * pred = "unknown";
682   switch (predicate) {
683   case FCmpInst::FCMP_FALSE: pred = "false"; break;
684   case FCmpInst::FCMP_OEQ:   pred = "oeq"; break;
685   case FCmpInst::FCMP_OGT:   pred = "ogt"; break;
686   case FCmpInst::FCMP_OGE:   pred = "oge"; break;
687   case FCmpInst::FCMP_OLT:   pred = "olt"; break;
688   case FCmpInst::FCMP_OLE:   pred = "ole"; break;
689   case FCmpInst::FCMP_ONE:   pred = "one"; break;
690   case FCmpInst::FCMP_ORD:   pred = "ord"; break;
691   case FCmpInst::FCMP_UNO:   pred = "uno"; break;
692   case FCmpInst::FCMP_UEQ:   pred = "ueq"; break;
693   case FCmpInst::FCMP_UGT:   pred = "ugt"; break;
694   case FCmpInst::FCMP_UGE:   pred = "uge"; break;
695   case FCmpInst::FCMP_ULT:   pred = "ult"; break;
696   case FCmpInst::FCMP_ULE:   pred = "ule"; break;
697   case FCmpInst::FCMP_UNE:   pred = "une"; break;
698   case FCmpInst::FCMP_TRUE:  pred = "true"; break;
699   case ICmpInst::ICMP_EQ:    pred = "eq"; break;
700   case ICmpInst::ICMP_NE:    pred = "ne"; break;
701   case ICmpInst::ICMP_SGT:   pred = "sgt"; break;
702   case ICmpInst::ICMP_SGE:   pred = "sge"; break;
703   case ICmpInst::ICMP_SLT:   pred = "slt"; break;
704   case ICmpInst::ICMP_SLE:   pred = "sle"; break;
705   case ICmpInst::ICMP_UGT:   pred = "ugt"; break;
706   case ICmpInst::ICMP_UGE:   pred = "uge"; break;
707   case ICmpInst::ICMP_ULT:   pred = "ult"; break;
708   case ICmpInst::ICMP_ULE:   pred = "ule"; break;
709   }
710   return pred;
711 }
712
713 static void writeAtomicRMWOperation(raw_ostream &Out,
714                                     AtomicRMWInst::BinOp Op) {
715   switch (Op) {
716   default: Out << " <unknown operation " << Op << ">"; break;
717   case AtomicRMWInst::Xchg: Out << " xchg"; break;
718   case AtomicRMWInst::Add:  Out << " add"; break;
719   case AtomicRMWInst::Sub:  Out << " sub"; break;
720   case AtomicRMWInst::And:  Out << " and"; break;
721   case AtomicRMWInst::Nand: Out << " nand"; break;
722   case AtomicRMWInst::Or:   Out << " or"; break;
723   case AtomicRMWInst::Xor:  Out << " xor"; break;
724   case AtomicRMWInst::Max:  Out << " max"; break;
725   case AtomicRMWInst::Min:  Out << " min"; break;
726   case AtomicRMWInst::UMax: Out << " umax"; break;
727   case AtomicRMWInst::UMin: Out << " umin"; break;
728   }
729 }
730
731 static void WriteOptimizationInfo(raw_ostream &Out, const User *U) {
732   if (const FPMathOperator *FPO = dyn_cast<const FPMathOperator>(U)) {
733     // Unsafe algebra implies all the others, no need to write them all out
734     if (FPO->hasUnsafeAlgebra())
735       Out << " fast";
736     else {
737       if (FPO->hasNoNaNs())
738         Out << " nnan";
739       if (FPO->hasNoInfs())
740         Out << " ninf";
741       if (FPO->hasNoSignedZeros())
742         Out << " nsz";
743       if (FPO->hasAllowReciprocal())
744         Out << " arcp";
745     }
746   }
747
748   if (const OverflowingBinaryOperator *OBO =
749         dyn_cast<OverflowingBinaryOperator>(U)) {
750     if (OBO->hasNoUnsignedWrap())
751       Out << " nuw";
752     if (OBO->hasNoSignedWrap())
753       Out << " nsw";
754   } else if (const PossiblyExactOperator *Div =
755                dyn_cast<PossiblyExactOperator>(U)) {
756     if (Div->isExact())
757       Out << " exact";
758   } else if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
759     if (GEP->isInBounds())
760       Out << " inbounds";
761   }
762 }
763
764 static void WriteConstantInternal(raw_ostream &Out, const Constant *CV,
765                                   TypePrinting &TypePrinter,
766                                   SlotTracker *Machine,
767                                   const Module *Context) {
768   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
769     if (CI->getType()->isIntegerTy(1)) {
770       Out << (CI->getZExtValue() ? "true" : "false");
771       return;
772     }
773     Out << CI->getValue();
774     return;
775   }
776
777   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
778     if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle ||
779         &CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble) {
780       // We would like to output the FP constant value in exponential notation,
781       // but we cannot do this if doing so will lose precision.  Check here to
782       // make sure that we only output it in exponential format if we can parse
783       // the value back and get the same value.
784       //
785       bool ignored;
786       bool isHalf = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEhalf;
787       bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
788       bool isInf = CFP->getValueAPF().isInfinity();
789       bool isNaN = CFP->getValueAPF().isNaN();
790       if (!isHalf && !isInf && !isNaN) {
791         double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
792                                 CFP->getValueAPF().convertToFloat();
793         SmallString<128> StrVal;
794         raw_svector_ostream(StrVal) << Val;
795
796         // Check to make sure that the stringized number is not some string like
797         // "Inf" or NaN, that atof will accept, but the lexer will not.  Check
798         // that the string matches the "[-+]?[0-9]" regex.
799         //
800         if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
801             ((StrVal[0] == '-' || StrVal[0] == '+') &&
802              (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
803           // Reparse stringized version!
804           if (APFloat(APFloat::IEEEdouble, StrVal).convertToDouble() == Val) {
805             Out << StrVal.str();
806             return;
807           }
808         }
809       }
810       // Otherwise we could not reparse it to exactly the same value, so we must
811       // output the string in hexadecimal format!  Note that loading and storing
812       // floating point types changes the bits of NaNs on some hosts, notably
813       // x86, so we must not use these types.
814       assert(sizeof(double) == sizeof(uint64_t) &&
815              "assuming that double is 64 bits!");
816       char Buffer[40];
817       APFloat apf = CFP->getValueAPF();
818       // Halves and floats are represented in ASCII IR as double, convert.
819       if (!isDouble)
820         apf.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
821                           &ignored);
822       Out << "0x" <<
823               utohex_buffer(uint64_t(apf.bitcastToAPInt().getZExtValue()),
824                             Buffer+40);
825       return;
826     }
827
828     // Either half, or some form of long double.
829     // These appear as a magic letter identifying the type, then a
830     // fixed number of hex digits.
831     Out << "0x";
832     // Bit position, in the current word, of the next nibble to print.
833     int shiftcount;
834
835     if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended) {
836       Out << 'K';
837       // api needed to prevent premature destruction
838       APInt api = CFP->getValueAPF().bitcastToAPInt();
839       const uint64_t* p = api.getRawData();
840       uint64_t word = p[1];
841       shiftcount = 12;
842       int width = api.getBitWidth();
843       for (int j=0; j<width; j+=4, shiftcount-=4) {
844         unsigned int nibble = (word>>shiftcount) & 15;
845         if (nibble < 10)
846           Out << (unsigned char)(nibble + '0');
847         else
848           Out << (unsigned char)(nibble - 10 + 'A');
849         if (shiftcount == 0 && j+4 < width) {
850           word = *p;
851           shiftcount = 64;
852           if (width-j-4 < 64)
853             shiftcount = width-j-4;
854         }
855       }
856       return;
857     } else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad) {
858       shiftcount = 60;
859       Out << 'L';
860     } else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble) {
861       shiftcount = 60;
862       Out << 'M';
863     } else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEhalf) {
864       shiftcount = 12;
865       Out << 'H';
866     } else
867       llvm_unreachable("Unsupported floating point type");
868     // api needed to prevent premature destruction
869     APInt api = CFP->getValueAPF().bitcastToAPInt();
870     const uint64_t* p = api.getRawData();
871     uint64_t word = *p;
872     int width = api.getBitWidth();
873     for (int j=0; j<width; j+=4, shiftcount-=4) {
874       unsigned int nibble = (word>>shiftcount) & 15;
875       if (nibble < 10)
876         Out << (unsigned char)(nibble + '0');
877       else
878         Out << (unsigned char)(nibble - 10 + 'A');
879       if (shiftcount == 0 && j+4 < width) {
880         word = *(++p);
881         shiftcount = 64;
882         if (width-j-4 < 64)
883           shiftcount = width-j-4;
884       }
885     }
886     return;
887   }
888
889   if (isa<ConstantAggregateZero>(CV)) {
890     Out << "zeroinitializer";
891     return;
892   }
893
894   if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) {
895     Out << "blockaddress(";
896     WriteAsOperandInternal(Out, BA->getFunction(), &TypePrinter, Machine,
897                            Context);
898     Out << ", ";
899     WriteAsOperandInternal(Out, BA->getBasicBlock(), &TypePrinter, Machine,
900                            Context);
901     Out << ")";
902     return;
903   }
904
905   if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
906     Type *ETy = CA->getType()->getElementType();
907     Out << '[';
908     TypePrinter.print(ETy, Out);
909     Out << ' ';
910     WriteAsOperandInternal(Out, CA->getOperand(0),
911                            &TypePrinter, Machine,
912                            Context);
913     for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
914       Out << ", ";
915       TypePrinter.print(ETy, Out);
916       Out << ' ';
917       WriteAsOperandInternal(Out, CA->getOperand(i), &TypePrinter, Machine,
918                              Context);
919     }
920     Out << ']';
921     return;
922   }
923
924   if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) {
925     // As a special case, print the array as a string if it is an array of
926     // i8 with ConstantInt values.
927     if (CA->isString()) {
928       Out << "c\"";
929       PrintEscapedString(CA->getAsString(), Out);
930       Out << '"';
931       return;
932     }
933
934     Type *ETy = CA->getType()->getElementType();
935     Out << '[';
936     TypePrinter.print(ETy, Out);
937     Out << ' ';
938     WriteAsOperandInternal(Out, CA->getElementAsConstant(0),
939                            &TypePrinter, Machine,
940                            Context);
941     for (unsigned i = 1, e = CA->getNumElements(); i != e; ++i) {
942       Out << ", ";
943       TypePrinter.print(ETy, Out);
944       Out << ' ';
945       WriteAsOperandInternal(Out, CA->getElementAsConstant(i), &TypePrinter,
946                              Machine, Context);
947     }
948     Out << ']';
949     return;
950   }
951
952
953   if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
954     if (CS->getType()->isPacked())
955       Out << '<';
956     Out << '{';
957     unsigned N = CS->getNumOperands();
958     if (N) {
959       Out << ' ';
960       TypePrinter.print(CS->getOperand(0)->getType(), Out);
961       Out << ' ';
962
963       WriteAsOperandInternal(Out, CS->getOperand(0), &TypePrinter, Machine,
964                              Context);
965
966       for (unsigned i = 1; i < N; i++) {
967         Out << ", ";
968         TypePrinter.print(CS->getOperand(i)->getType(), Out);
969         Out << ' ';
970
971         WriteAsOperandInternal(Out, CS->getOperand(i), &TypePrinter, Machine,
972                                Context);
973       }
974       Out << ' ';
975     }
976
977     Out << '}';
978     if (CS->getType()->isPacked())
979       Out << '>';
980     return;
981   }
982
983   if (isa<ConstantVector>(CV) || isa<ConstantDataVector>(CV)) {
984     Type *ETy = CV->getType()->getVectorElementType();
985     Out << '<';
986     TypePrinter.print(ETy, Out);
987     Out << ' ';
988     WriteAsOperandInternal(Out, CV->getAggregateElement(0U), &TypePrinter,
989                            Machine, Context);
990     for (unsigned i = 1, e = CV->getType()->getVectorNumElements(); i != e;++i){
991       Out << ", ";
992       TypePrinter.print(ETy, Out);
993       Out << ' ';
994       WriteAsOperandInternal(Out, CV->getAggregateElement(i), &TypePrinter,
995                              Machine, Context);
996     }
997     Out << '>';
998     return;
999   }
1000
1001   if (isa<ConstantPointerNull>(CV)) {
1002     Out << "null";
1003     return;
1004   }
1005
1006   if (isa<UndefValue>(CV)) {
1007     Out << "undef";
1008     return;
1009   }
1010
1011   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
1012     Out << CE->getOpcodeName();
1013     WriteOptimizationInfo(Out, CE);
1014     if (CE->isCompare())
1015       Out << ' ' << getPredicateText(CE->getPredicate());
1016     Out << " (";
1017
1018     for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
1019       TypePrinter.print((*OI)->getType(), Out);
1020       Out << ' ';
1021       WriteAsOperandInternal(Out, *OI, &TypePrinter, Machine, Context);
1022       if (OI+1 != CE->op_end())
1023         Out << ", ";
1024     }
1025
1026     if (CE->hasIndices()) {
1027       ArrayRef<unsigned> Indices = CE->getIndices();
1028       for (unsigned i = 0, e = Indices.size(); i != e; ++i)
1029         Out << ", " << Indices[i];
1030     }
1031
1032     if (CE->isCast()) {
1033       Out << " to ";
1034       TypePrinter.print(CE->getType(), Out);
1035     }
1036
1037     Out << ')';
1038     return;
1039   }
1040
1041   Out << "<placeholder or erroneous Constant>";
1042 }
1043
1044 static void WriteMDNodeBodyInternal(raw_ostream &Out, const MDNode *Node,
1045                                     TypePrinting *TypePrinter,
1046                                     SlotTracker *Machine,
1047                                     const Module *Context) {
1048   Out << "!{";
1049   for (unsigned mi = 0, me = Node->getNumOperands(); mi != me; ++mi) {
1050     const Value *V = Node->getOperand(mi);
1051     if (V == 0)
1052       Out << "null";
1053     else {
1054       TypePrinter->print(V->getType(), Out);
1055       Out << ' ';
1056       WriteAsOperandInternal(Out, Node->getOperand(mi),
1057                              TypePrinter, Machine, Context);
1058     }
1059     if (mi + 1 != me)
1060       Out << ", ";
1061   }
1062
1063   Out << "}";
1064 }
1065
1066 // Full implementation of printing a Value as an operand with support for
1067 // TypePrinting, etc.
1068 static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
1069                                    TypePrinting *TypePrinter,
1070                                    SlotTracker *Machine,
1071                                    const Module *Context) {
1072   if (V->hasName()) {
1073     PrintLLVMName(Out, V);
1074     return;
1075   }
1076
1077   const Constant *CV = dyn_cast<Constant>(V);
1078   if (CV && !isa<GlobalValue>(CV)) {
1079     assert(TypePrinter && "Constants require TypePrinting!");
1080     WriteConstantInternal(Out, CV, *TypePrinter, Machine, Context);
1081     return;
1082   }
1083
1084   if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
1085     Out << "asm ";
1086     if (IA->hasSideEffects())
1087       Out << "sideeffect ";
1088     if (IA->isAlignStack())
1089       Out << "alignstack ";
1090     // We don't emit the AD_ATT dialect as it's the assumed default.
1091     if (IA->getDialect() == InlineAsm::AD_Intel)
1092       Out << "inteldialect ";
1093     Out << '"';
1094     PrintEscapedString(IA->getAsmString(), Out);
1095     Out << "\", \"";
1096     PrintEscapedString(IA->getConstraintString(), Out);
1097     Out << '"';
1098     return;
1099   }
1100
1101   if (const MDNode *N = dyn_cast<MDNode>(V)) {
1102     if (N->isFunctionLocal()) {
1103       // Print metadata inline, not via slot reference number.
1104       WriteMDNodeBodyInternal(Out, N, TypePrinter, Machine, Context);
1105       return;
1106     }
1107
1108     if (!Machine) {
1109       if (N->isFunctionLocal())
1110         Machine = new SlotTracker(N->getFunction());
1111       else
1112         Machine = new SlotTracker(Context);
1113     }
1114     int Slot = Machine->getMetadataSlot(N);
1115     if (Slot == -1)
1116       Out << "<badref>";
1117     else
1118       Out << '!' << Slot;
1119     return;
1120   }
1121
1122   if (const MDString *MDS = dyn_cast<MDString>(V)) {
1123     Out << "!\"";
1124     PrintEscapedString(MDS->getString(), Out);
1125     Out << '"';
1126     return;
1127   }
1128
1129   if (V->getValueID() == Value::PseudoSourceValueVal ||
1130       V->getValueID() == Value::FixedStackPseudoSourceValueVal) {
1131     V->print(Out);
1132     return;
1133   }
1134
1135   char Prefix = '%';
1136   int Slot;
1137   // If we have a SlotTracker, use it.
1138   if (Machine) {
1139     if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
1140       Slot = Machine->getGlobalSlot(GV);
1141       Prefix = '@';
1142     } else {
1143       Slot = Machine->getLocalSlot(V);
1144
1145       // If the local value didn't succeed, then we may be referring to a value
1146       // from a different function.  Translate it, as this can happen when using
1147       // address of blocks.
1148       if (Slot == -1)
1149         if ((Machine = createSlotTracker(V))) {
1150           Slot = Machine->getLocalSlot(V);
1151           delete Machine;
1152         }
1153     }
1154   } else if ((Machine = createSlotTracker(V))) {
1155     // Otherwise, create one to get the # and then destroy it.
1156     if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
1157       Slot = Machine->getGlobalSlot(GV);
1158       Prefix = '@';
1159     } else {
1160       Slot = Machine->getLocalSlot(V);
1161     }
1162     delete Machine;
1163     Machine = 0;
1164   } else {
1165     Slot = -1;
1166   }
1167
1168   if (Slot != -1)
1169     Out << Prefix << Slot;
1170   else
1171     Out << "<badref>";
1172 }
1173
1174 void AssemblyWriter::init() {
1175   if (TheModule)
1176     TypePrinter.incorporateTypes(*TheModule);
1177 }
1178
1179
1180 AssemblyWriter::AssemblyWriter(formatted_raw_ostream &o, SlotTracker &Mac,
1181                                const Module *M,
1182                                AssemblyAnnotationWriter *AAW)
1183   : Out(o), TheModule(M), Machine(Mac), AnnotationWriter(AAW) {
1184   init();
1185 }
1186
1187 AssemblyWriter::AssemblyWriter(formatted_raw_ostream &o, const Module *M,
1188                                AssemblyAnnotationWriter *AAW)
1189   : Out(o), TheModule(M), ModuleSlotTracker(createSlotTracker(M)),
1190     Machine(*ModuleSlotTracker), AnnotationWriter(AAW) {
1191   init();
1192 }
1193
1194 AssemblyWriter::~AssemblyWriter() { }
1195
1196 void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
1197   if (Operand == 0) {
1198     Out << "<null operand!>";
1199     return;
1200   }
1201   if (PrintType) {
1202     TypePrinter.print(Operand->getType(), Out);
1203     Out << ' ';
1204   }
1205   WriteAsOperandInternal(Out, Operand, &TypePrinter, &Machine, TheModule);
1206 }
1207
1208 void AssemblyWriter::writeAtomic(AtomicOrdering Ordering,
1209                                  SynchronizationScope SynchScope) {
1210   if (Ordering == NotAtomic)
1211     return;
1212
1213   switch (SynchScope) {
1214   case SingleThread: Out << " singlethread"; break;
1215   case CrossThread: break;
1216   }
1217
1218   switch (Ordering) {
1219   default: Out << " <bad ordering " << int(Ordering) << ">"; break;
1220   case Unordered: Out << " unordered"; break;
1221   case Monotonic: Out << " monotonic"; break;
1222   case Acquire: Out << " acquire"; break;
1223   case Release: Out << " release"; break;
1224   case AcquireRelease: Out << " acq_rel"; break;
1225   case SequentiallyConsistent: Out << " seq_cst"; break;
1226   }
1227 }
1228
1229 void AssemblyWriter::writeAtomicCmpXchg(AtomicOrdering SuccessOrdering,
1230                                         AtomicOrdering FailureOrdering,
1231                                         SynchronizationScope SynchScope) {
1232   assert(SuccessOrdering != NotAtomic && FailureOrdering != NotAtomic);
1233
1234   switch (SynchScope) {
1235   case SingleThread: Out << " singlethread"; break;
1236   case CrossThread: break;
1237   }
1238
1239   switch (SuccessOrdering) {
1240   default: Out << " <bad ordering " << int(SuccessOrdering) << ">"; break;
1241   case Unordered: Out << " unordered"; break;
1242   case Monotonic: Out << " monotonic"; break;
1243   case Acquire: Out << " acquire"; break;
1244   case Release: Out << " release"; break;
1245   case AcquireRelease: Out << " acq_rel"; break;
1246   case SequentiallyConsistent: Out << " seq_cst"; break;
1247   }
1248
1249   switch (FailureOrdering) {
1250   default: Out << " <bad ordering " << int(FailureOrdering) << ">"; break;
1251   case Unordered: Out << " unordered"; break;
1252   case Monotonic: Out << " monotonic"; break;
1253   case Acquire: Out << " acquire"; break;
1254   case Release: Out << " release"; break;
1255   case AcquireRelease: Out << " acq_rel"; break;
1256   case SequentiallyConsistent: Out << " seq_cst"; break;
1257   }
1258 }
1259
1260 void AssemblyWriter::writeParamOperand(const Value *Operand,
1261                                        AttributeSet Attrs, unsigned Idx) {
1262   if (Operand == 0) {
1263     Out << "<null operand!>";
1264     return;
1265   }
1266
1267   // Print the type
1268   TypePrinter.print(Operand->getType(), Out);
1269   // Print parameter attributes list
1270   if (Attrs.hasAttributes(Idx))
1271     Out << ' ' << Attrs.getAsString(Idx);
1272   Out << ' ';
1273   // Print the operand
1274   WriteAsOperandInternal(Out, Operand, &TypePrinter, &Machine, TheModule);
1275 }
1276
1277 void AssemblyWriter::printModule(const Module *M) {
1278   Machine.initialize();
1279
1280   if (!M->getModuleIdentifier().empty() &&
1281       // Don't print the ID if it will start a new line (which would
1282       // require a comment char before it).
1283       M->getModuleIdentifier().find('\n') == std::string::npos)
1284     Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
1285
1286   const std::string &DL = M->getDataLayoutStr();
1287   if (!DL.empty())
1288     Out << "target datalayout = \"" << DL << "\"\n";
1289   if (!M->getTargetTriple().empty())
1290     Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
1291
1292   if (!M->getModuleInlineAsm().empty()) {
1293     // Split the string into lines, to make it easier to read the .ll file.
1294     std::string Asm = M->getModuleInlineAsm();
1295     size_t CurPos = 0;
1296     size_t NewLine = Asm.find_first_of('\n', CurPos);
1297     Out << '\n';
1298     while (NewLine != std::string::npos) {
1299       // We found a newline, print the portion of the asm string from the
1300       // last newline up to this newline.
1301       Out << "module asm \"";
1302       PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1303                          Out);
1304       Out << "\"\n";
1305       CurPos = NewLine+1;
1306       NewLine = Asm.find_first_of('\n', CurPos);
1307     }
1308     std::string rest(Asm.begin()+CurPos, Asm.end());
1309     if (!rest.empty()) {
1310       Out << "module asm \"";
1311       PrintEscapedString(rest, Out);
1312       Out << "\"\n";
1313     }
1314   }
1315
1316   printTypeIdentities();
1317
1318   // Output all globals.
1319   if (!M->global_empty()) Out << '\n';
1320   for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
1321        I != E; ++I) {
1322     printGlobal(I); Out << '\n';
1323   }
1324
1325   // Output all aliases.
1326   if (!M->alias_empty()) Out << "\n";
1327   for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
1328        I != E; ++I)
1329     printAlias(I);
1330
1331   // Output all of the functions.
1332   for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
1333     printFunction(I);
1334
1335   // Output all attribute groups.
1336   if (!Machine.as_empty()) {
1337     Out << '\n';
1338     writeAllAttributeGroups();
1339   }
1340
1341   // Output named metadata.
1342   if (!M->named_metadata_empty()) Out << '\n';
1343
1344   for (Module::const_named_metadata_iterator I = M->named_metadata_begin(),
1345        E = M->named_metadata_end(); I != E; ++I)
1346     printNamedMDNode(I);
1347
1348   // Output metadata.
1349   if (!Machine.mdn_empty()) {
1350     Out << '\n';
1351     writeAllMDNodes();
1352   }
1353 }
1354
1355 void AssemblyWriter::printNamedMDNode(const NamedMDNode *NMD) {
1356   Out << '!';
1357   StringRef Name = NMD->getName();
1358   if (Name.empty()) {
1359     Out << "<empty name> ";
1360   } else {
1361     if (isalpha(static_cast<unsigned char>(Name[0])) ||
1362         Name[0] == '-' || Name[0] == '$' ||
1363         Name[0] == '.' || Name[0] == '_')
1364       Out << Name[0];
1365     else
1366       Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F);
1367     for (unsigned i = 1, e = Name.size(); i != e; ++i) {
1368       unsigned char C = Name[i];
1369       if (isalnum(static_cast<unsigned char>(C)) || C == '-' || C == '$' ||
1370           C == '.' || C == '_')
1371         Out << C;
1372       else
1373         Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
1374     }
1375   }
1376   Out << " = !{";
1377   for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
1378     if (i) Out << ", ";
1379     int Slot = Machine.getMetadataSlot(NMD->getOperand(i));
1380     if (Slot == -1)
1381       Out << "<badref>";
1382     else
1383       Out << '!' << Slot;
1384   }
1385   Out << "}\n";
1386 }
1387
1388
1389 static void PrintLinkage(GlobalValue::LinkageTypes LT,
1390                          formatted_raw_ostream &Out) {
1391   switch (LT) {
1392   case GlobalValue::ExternalLinkage: break;
1393   case GlobalValue::PrivateLinkage:       Out << "private ";        break;
1394   case GlobalValue::LinkerPrivateLinkage: Out << "linker_private "; break;
1395   case GlobalValue::LinkerPrivateWeakLinkage:
1396     Out << "linker_private_weak ";
1397     break;
1398   case GlobalValue::InternalLinkage:      Out << "internal ";       break;
1399   case GlobalValue::LinkOnceAnyLinkage:   Out << "linkonce ";       break;
1400   case GlobalValue::LinkOnceODRLinkage:   Out << "linkonce_odr ";   break;
1401   case GlobalValue::WeakAnyLinkage:       Out << "weak ";           break;
1402   case GlobalValue::WeakODRLinkage:       Out << "weak_odr ";       break;
1403   case GlobalValue::CommonLinkage:        Out << "common ";         break;
1404   case GlobalValue::AppendingLinkage:     Out << "appending ";      break;
1405   case GlobalValue::ExternalWeakLinkage:  Out << "extern_weak ";    break;
1406   case GlobalValue::AvailableExternallyLinkage:
1407     Out << "available_externally ";
1408     break;
1409   }
1410 }
1411
1412
1413 static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
1414                             formatted_raw_ostream &Out) {
1415   switch (Vis) {
1416   case GlobalValue::DefaultVisibility: break;
1417   case GlobalValue::HiddenVisibility:    Out << "hidden "; break;
1418   case GlobalValue::ProtectedVisibility: Out << "protected "; break;
1419   }
1420 }
1421
1422 static void PrintDLLStorageClass(GlobalValue::DLLStorageClassTypes SCT,
1423                                  formatted_raw_ostream &Out) {
1424   switch (SCT) {
1425   case GlobalValue::DefaultStorageClass: break;
1426   case GlobalValue::DLLImportStorageClass: Out << "dllimport "; break;
1427   case GlobalValue::DLLExportStorageClass: Out << "dllexport "; break;
1428   }
1429 }
1430
1431 static void PrintThreadLocalModel(GlobalVariable::ThreadLocalMode TLM,
1432                                   formatted_raw_ostream &Out) {
1433   switch (TLM) {
1434     case GlobalVariable::NotThreadLocal:
1435       break;
1436     case GlobalVariable::GeneralDynamicTLSModel:
1437       Out << "thread_local ";
1438       break;
1439     case GlobalVariable::LocalDynamicTLSModel:
1440       Out << "thread_local(localdynamic) ";
1441       break;
1442     case GlobalVariable::InitialExecTLSModel:
1443       Out << "thread_local(initialexec) ";
1444       break;
1445     case GlobalVariable::LocalExecTLSModel:
1446       Out << "thread_local(localexec) ";
1447       break;
1448   }
1449 }
1450
1451 void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
1452   if (GV->isMaterializable())
1453     Out << "; Materializable\n";
1454
1455   WriteAsOperandInternal(Out, GV, &TypePrinter, &Machine, GV->getParent());
1456   Out << " = ";
1457
1458   if (!GV->hasInitializer() && GV->hasExternalLinkage())
1459     Out << "external ";
1460
1461   PrintLinkage(GV->getLinkage(), Out);
1462   PrintVisibility(GV->getVisibility(), Out);
1463   PrintDLLStorageClass(GV->getDLLStorageClass(), Out);
1464   PrintThreadLocalModel(GV->getThreadLocalMode(), Out);
1465
1466   if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1467     Out << "addrspace(" << AddressSpace << ") ";
1468   if (GV->hasUnnamedAddr()) Out << "unnamed_addr ";
1469   if (GV->isExternallyInitialized()) Out << "externally_initialized ";
1470   Out << (GV->isConstant() ? "constant " : "global ");
1471   TypePrinter.print(GV->getType()->getElementType(), Out);
1472
1473   if (GV->hasInitializer()) {
1474     Out << ' ';
1475     writeOperand(GV->getInitializer(), false);
1476   }
1477
1478   if (GV->hasSection()) {
1479     Out << ", section \"";
1480     PrintEscapedString(GV->getSection(), Out);
1481     Out << '"';
1482   }
1483   if (GV->getAlignment())
1484     Out << ", align " << GV->getAlignment();
1485
1486   printInfoComment(*GV);
1487 }
1488
1489 void AssemblyWriter::printAlias(const GlobalAlias *GA) {
1490   if (GA->isMaterializable())
1491     Out << "; Materializable\n";
1492
1493   // Don't crash when dumping partially built GA
1494   if (!GA->hasName())
1495     Out << "<<nameless>> = ";
1496   else {
1497     PrintLLVMName(Out, GA);
1498     Out << " = ";
1499   }
1500   PrintVisibility(GA->getVisibility(), Out);
1501   PrintDLLStorageClass(GA->getDLLStorageClass(), Out);
1502
1503   Out << "alias ";
1504
1505   PrintLinkage(GA->getLinkage(), Out);
1506
1507   const Constant *Aliasee = GA->getAliasee();
1508
1509   if (Aliasee == 0) {
1510     TypePrinter.print(GA->getType(), Out);
1511     Out << " <<NULL ALIASEE>>";
1512   } else {
1513     writeOperand(Aliasee, !isa<ConstantExpr>(Aliasee));
1514   }
1515
1516   printInfoComment(*GA);
1517   Out << '\n';
1518 }
1519
1520 void AssemblyWriter::printTypeIdentities() {
1521   if (TypePrinter.NumberedTypes.empty() &&
1522       TypePrinter.NamedTypes.empty())
1523     return;
1524
1525   Out << '\n';
1526
1527   // We know all the numbers that each type is used and we know that it is a
1528   // dense assignment.  Convert the map to an index table.
1529   std::vector<StructType*> NumberedTypes(TypePrinter.NumberedTypes.size());
1530   for (DenseMap<StructType*, unsigned>::iterator I =
1531        TypePrinter.NumberedTypes.begin(), E = TypePrinter.NumberedTypes.end();
1532        I != E; ++I) {
1533     assert(I->second < NumberedTypes.size() && "Didn't get a dense numbering?");
1534     NumberedTypes[I->second] = I->first;
1535   }
1536
1537   // Emit all numbered types.
1538   for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i) {
1539     Out << '%' << i << " = type ";
1540
1541     // Make sure we print out at least one level of the type structure, so
1542     // that we do not get %2 = type %2
1543     TypePrinter.printStructBody(NumberedTypes[i], Out);
1544     Out << '\n';
1545   }
1546
1547   for (unsigned i = 0, e = TypePrinter.NamedTypes.size(); i != e; ++i) {
1548     PrintLLVMName(Out, TypePrinter.NamedTypes[i]->getName(), LocalPrefix);
1549     Out << " = type ";
1550
1551     // Make sure we print out at least one level of the type structure, so
1552     // that we do not get %FILE = type %FILE
1553     TypePrinter.printStructBody(TypePrinter.NamedTypes[i], Out);
1554     Out << '\n';
1555   }
1556 }
1557
1558 /// printFunction - Print all aspects of a function.
1559 ///
1560 void AssemblyWriter::printFunction(const Function *F) {
1561   // Print out the return type and name.
1562   Out << '\n';
1563
1564   if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
1565
1566   if (F->isMaterializable())
1567     Out << "; Materializable\n";
1568
1569   const AttributeSet &Attrs = F->getAttributes();
1570   if (Attrs.hasAttributes(AttributeSet::FunctionIndex)) {
1571     AttributeSet AS = Attrs.getFnAttributes();
1572     std::string AttrStr;
1573
1574     unsigned Idx = 0;
1575     for (unsigned E = AS.getNumSlots(); Idx != E; ++Idx)
1576       if (AS.getSlotIndex(Idx) == AttributeSet::FunctionIndex)
1577         break;
1578
1579     for (AttributeSet::iterator I = AS.begin(Idx), E = AS.end(Idx);
1580          I != E; ++I) {
1581       Attribute Attr = *I;
1582       if (!Attr.isStringAttribute()) {
1583         if (!AttrStr.empty()) AttrStr += ' ';
1584         AttrStr += Attr.getAsString();
1585       }
1586     }
1587
1588     if (!AttrStr.empty())
1589       Out << "; Function Attrs: " << AttrStr << '\n';
1590   }
1591
1592   if (F->isDeclaration())
1593     Out << "declare ";
1594   else
1595     Out << "define ";
1596
1597   PrintLinkage(F->getLinkage(), Out);
1598   PrintVisibility(F->getVisibility(), Out);
1599   PrintDLLStorageClass(F->getDLLStorageClass(), Out);
1600
1601   // Print the calling convention.
1602   if (F->getCallingConv() != CallingConv::C) {
1603     PrintCallingConv(F->getCallingConv(), Out);
1604     Out << " ";
1605   }
1606
1607   FunctionType *FT = F->getFunctionType();
1608   if (Attrs.hasAttributes(AttributeSet::ReturnIndex))
1609     Out <<  Attrs.getAsString(AttributeSet::ReturnIndex) << ' ';
1610   TypePrinter.print(F->getReturnType(), Out);
1611   Out << ' ';
1612   WriteAsOperandInternal(Out, F, &TypePrinter, &Machine, F->getParent());
1613   Out << '(';
1614   Machine.incorporateFunction(F);
1615
1616   // Loop over the arguments, printing them...
1617
1618   unsigned Idx = 1;
1619   if (!F->isDeclaration()) {
1620     // If this isn't a declaration, print the argument names as well.
1621     for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1622          I != E; ++I) {
1623       // Insert commas as we go... the first arg doesn't get a comma
1624       if (I != F->arg_begin()) Out << ", ";
1625       printArgument(I, Attrs, Idx);
1626       Idx++;
1627     }
1628   } else {
1629     // Otherwise, print the types from the function type.
1630     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1631       // Insert commas as we go... the first arg doesn't get a comma
1632       if (i) Out << ", ";
1633
1634       // Output type...
1635       TypePrinter.print(FT->getParamType(i), Out);
1636
1637       if (Attrs.hasAttributes(i+1))
1638         Out << ' ' << Attrs.getAsString(i+1);
1639     }
1640   }
1641
1642   // Finish printing arguments...
1643   if (FT->isVarArg()) {
1644     if (FT->getNumParams()) Out << ", ";
1645     Out << "...";  // Output varargs portion of signature!
1646   }
1647   Out << ')';
1648   if (F->hasUnnamedAddr())
1649     Out << " unnamed_addr";
1650   if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
1651     Out << " #" << Machine.getAttributeGroupSlot(Attrs.getFnAttributes());
1652   if (F->hasSection()) {
1653     Out << " section \"";
1654     PrintEscapedString(F->getSection(), Out);
1655     Out << '"';
1656   }
1657   if (F->getAlignment())
1658     Out << " align " << F->getAlignment();
1659   if (F->hasGC())
1660     Out << " gc \"" << F->getGC() << '"';
1661   if (F->hasPrefixData()) {
1662     Out << " prefix ";
1663     writeOperand(F->getPrefixData(), true);
1664   }
1665   if (F->isDeclaration()) {
1666     Out << '\n';
1667   } else {
1668     Out << " {";
1669     // Output all of the function's basic blocks.
1670     for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1671       printBasicBlock(I);
1672
1673     Out << "}\n";
1674   }
1675
1676   Machine.purgeFunction();
1677 }
1678
1679 /// printArgument - This member is called for every argument that is passed into
1680 /// the function.  Simply print it out
1681 ///
1682 void AssemblyWriter::printArgument(const Argument *Arg,
1683                                    AttributeSet Attrs, unsigned Idx) {
1684   // Output type...
1685   TypePrinter.print(Arg->getType(), Out);
1686
1687   // Output parameter attributes list
1688   if (Attrs.hasAttributes(Idx))
1689     Out << ' ' << Attrs.getAsString(Idx);
1690
1691   // Output name, if available...
1692   if (Arg->hasName()) {
1693     Out << ' ';
1694     PrintLLVMName(Out, Arg);
1695   }
1696 }
1697
1698 /// printBasicBlock - This member is called for each basic block in a method.
1699 ///
1700 void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
1701   if (BB->hasName()) {              // Print out the label if it exists...
1702     Out << "\n";
1703     PrintLLVMName(Out, BB->getName(), LabelPrefix);
1704     Out << ':';
1705   } else if (!BB->use_empty()) {      // Don't print block # of no uses...
1706     Out << "\n; <label>:";
1707     int Slot = Machine.getLocalSlot(BB);
1708     if (Slot != -1)
1709       Out << Slot;
1710     else
1711       Out << "<badref>";
1712   }
1713
1714   if (BB->getParent() == 0) {
1715     Out.PadToColumn(50);
1716     Out << "; Error: Block without parent!";
1717   } else if (BB != &BB->getParent()->getEntryBlock()) {  // Not the entry block?
1718     // Output predecessors for the block.
1719     Out.PadToColumn(50);
1720     Out << ";";
1721     const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
1722
1723     if (PI == PE) {
1724       Out << " No predecessors!";
1725     } else {
1726       Out << " preds = ";
1727       writeOperand(*PI, false);
1728       for (++PI; PI != PE; ++PI) {
1729         Out << ", ";
1730         writeOperand(*PI, false);
1731       }
1732     }
1733   }
1734
1735   Out << "\n";
1736
1737   if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
1738
1739   // Output all of the instructions in the basic block...
1740   for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
1741     printInstructionLine(*I);
1742   }
1743
1744   if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
1745 }
1746
1747 /// printInstructionLine - Print an instruction and a newline character.
1748 void AssemblyWriter::printInstructionLine(const Instruction &I) {
1749   printInstruction(I);
1750   Out << '\n';
1751 }
1752
1753 /// printInfoComment - Print a little comment after the instruction indicating
1754 /// which slot it occupies.
1755 ///
1756 void AssemblyWriter::printInfoComment(const Value &V) {
1757   if (AnnotationWriter)
1758     AnnotationWriter->printInfoComment(V, Out);
1759 }
1760
1761 // This member is called for each Instruction in a function..
1762 void AssemblyWriter::printInstruction(const Instruction &I) {
1763   if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
1764
1765   // Print out indentation for an instruction.
1766   Out << "  ";
1767
1768   // Print out name if it exists...
1769   if (I.hasName()) {
1770     PrintLLVMName(Out, &I);
1771     Out << " = ";
1772   } else if (!I.getType()->isVoidTy()) {
1773     // Print out the def slot taken.
1774     int SlotNum = Machine.getLocalSlot(&I);
1775     if (SlotNum == -1)
1776       Out << "<badref> = ";
1777     else
1778       Out << '%' << SlotNum << " = ";
1779   }
1780
1781   if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall())
1782     Out << "tail ";
1783
1784   // Print out the opcode...
1785   Out << I.getOpcodeName();
1786
1787   // If this is an atomic load or store, print out the atomic marker.
1788   if ((isa<LoadInst>(I)  && cast<LoadInst>(I).isAtomic()) ||
1789       (isa<StoreInst>(I) && cast<StoreInst>(I).isAtomic()))
1790     Out << " atomic";
1791
1792   // If this is a volatile operation, print out the volatile marker.
1793   if ((isa<LoadInst>(I)  && cast<LoadInst>(I).isVolatile()) ||
1794       (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()) ||
1795       (isa<AtomicCmpXchgInst>(I) && cast<AtomicCmpXchgInst>(I).isVolatile()) ||
1796       (isa<AtomicRMWInst>(I) && cast<AtomicRMWInst>(I).isVolatile()))
1797     Out << " volatile";
1798
1799   // Print out optimization information.
1800   WriteOptimizationInfo(Out, &I);
1801
1802   // Print out the compare instruction predicates
1803   if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
1804     Out << ' ' << getPredicateText(CI->getPredicate());
1805
1806   // Print out the atomicrmw operation
1807   if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(&I))
1808     writeAtomicRMWOperation(Out, RMWI->getOperation());
1809
1810   // Print out the type of the operands...
1811   const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
1812
1813   // Special case conditional branches to swizzle the condition out to the front
1814   if (isa<BranchInst>(I) && cast<BranchInst>(I).isConditional()) {
1815     const BranchInst &BI(cast<BranchInst>(I));
1816     Out << ' ';
1817     writeOperand(BI.getCondition(), true);
1818     Out << ", ";
1819     writeOperand(BI.getSuccessor(0), true);
1820     Out << ", ";
1821     writeOperand(BI.getSuccessor(1), true);
1822
1823   } else if (isa<SwitchInst>(I)) {
1824     const SwitchInst& SI(cast<SwitchInst>(I));
1825     // Special case switch instruction to get formatting nice and correct.
1826     Out << ' ';
1827     writeOperand(SI.getCondition(), true);
1828     Out << ", ";
1829     writeOperand(SI.getDefaultDest(), true);
1830     Out << " [";
1831     for (SwitchInst::ConstCaseIt i = SI.case_begin(), e = SI.case_end();
1832          i != e; ++i) {
1833       Out << "\n    ";
1834       writeOperand(i.getCaseValue(), true);
1835       Out << ", ";
1836       writeOperand(i.getCaseSuccessor(), true);
1837     }
1838     Out << "\n  ]";
1839   } else if (isa<IndirectBrInst>(I)) {
1840     // Special case indirectbr instruction to get formatting nice and correct.
1841     Out << ' ';
1842     writeOperand(Operand, true);
1843     Out << ", [";
1844
1845     for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1846       if (i != 1)
1847         Out << ", ";
1848       writeOperand(I.getOperand(i), true);
1849     }
1850     Out << ']';
1851   } else if (const PHINode *PN = dyn_cast<PHINode>(&I)) {
1852     Out << ' ';
1853     TypePrinter.print(I.getType(), Out);
1854     Out << ' ';
1855
1856     for (unsigned op = 0, Eop = PN->getNumIncomingValues(); op < Eop; ++op) {
1857       if (op) Out << ", ";
1858       Out << "[ ";
1859       writeOperand(PN->getIncomingValue(op), false); Out << ", ";
1860       writeOperand(PN->getIncomingBlock(op), false); Out << " ]";
1861     }
1862   } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
1863     Out << ' ';
1864     writeOperand(I.getOperand(0), true);
1865     for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
1866       Out << ", " << *i;
1867   } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
1868     Out << ' ';
1869     writeOperand(I.getOperand(0), true); Out << ", ";
1870     writeOperand(I.getOperand(1), true);
1871     for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
1872       Out << ", " << *i;
1873   } else if (const LandingPadInst *LPI = dyn_cast<LandingPadInst>(&I)) {
1874     Out << ' ';
1875     TypePrinter.print(I.getType(), Out);
1876     Out << " personality ";
1877     writeOperand(I.getOperand(0), true); Out << '\n';
1878
1879     if (LPI->isCleanup())
1880       Out << "          cleanup";
1881
1882     for (unsigned i = 0, e = LPI->getNumClauses(); i != e; ++i) {
1883       if (i != 0 || LPI->isCleanup()) Out << "\n";
1884       if (LPI->isCatch(i))
1885         Out << "          catch ";
1886       else
1887         Out << "          filter ";
1888
1889       writeOperand(LPI->getClause(i), true);
1890     }
1891   } else if (isa<ReturnInst>(I) && !Operand) {
1892     Out << " void";
1893   } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1894     // Print the calling convention being used.
1895     if (CI->getCallingConv() != CallingConv::C) {
1896       Out << " ";
1897       PrintCallingConv(CI->getCallingConv(), Out);
1898     }
1899
1900     Operand = CI->getCalledValue();
1901     PointerType *PTy = cast<PointerType>(Operand->getType());
1902     FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1903     Type *RetTy = FTy->getReturnType();
1904     const AttributeSet &PAL = CI->getAttributes();
1905
1906     if (PAL.hasAttributes(AttributeSet::ReturnIndex))
1907       Out << ' ' << PAL.getAsString(AttributeSet::ReturnIndex);
1908
1909     // If possible, print out the short form of the call instruction.  We can
1910     // only do this if the first argument is a pointer to a nonvararg function,
1911     // and if the return type is not a pointer to a function.
1912     //
1913     Out << ' ';
1914     if (!FTy->isVarArg() &&
1915         (!RetTy->isPointerTy() ||
1916          !cast<PointerType>(RetTy)->getElementType()->isFunctionTy())) {
1917       TypePrinter.print(RetTy, Out);
1918       Out << ' ';
1919       writeOperand(Operand, false);
1920     } else {
1921       writeOperand(Operand, true);
1922     }
1923     Out << '(';
1924     for (unsigned op = 0, Eop = CI->getNumArgOperands(); op < Eop; ++op) {
1925       if (op > 0)
1926         Out << ", ";
1927       writeParamOperand(CI->getArgOperand(op), PAL, op + 1);
1928     }
1929     Out << ')';
1930     if (PAL.hasAttributes(AttributeSet::FunctionIndex))
1931       Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttributes());
1932   } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
1933     Operand = II->getCalledValue();
1934     PointerType *PTy = cast<PointerType>(Operand->getType());
1935     FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1936     Type *RetTy = FTy->getReturnType();
1937     const AttributeSet &PAL = II->getAttributes();
1938
1939     // Print the calling convention being used.
1940     if (II->getCallingConv() != CallingConv::C) {
1941       Out << " ";
1942       PrintCallingConv(II->getCallingConv(), Out);
1943     }
1944
1945     if (PAL.hasAttributes(AttributeSet::ReturnIndex))
1946       Out << ' ' << PAL.getAsString(AttributeSet::ReturnIndex);
1947
1948     // If possible, print out the short form of the invoke instruction. We can
1949     // only do this if the first argument is a pointer to a nonvararg function,
1950     // and if the return type is not a pointer to a function.
1951     //
1952     Out << ' ';
1953     if (!FTy->isVarArg() &&
1954         (!RetTy->isPointerTy() ||
1955          !cast<PointerType>(RetTy)->getElementType()->isFunctionTy())) {
1956       TypePrinter.print(RetTy, Out);
1957       Out << ' ';
1958       writeOperand(Operand, false);
1959     } else {
1960       writeOperand(Operand, true);
1961     }
1962     Out << '(';
1963     for (unsigned op = 0, Eop = II->getNumArgOperands(); op < Eop; ++op) {
1964       if (op)
1965         Out << ", ";
1966       writeParamOperand(II->getArgOperand(op), PAL, op + 1);
1967     }
1968
1969     Out << ')';
1970     if (PAL.hasAttributes(AttributeSet::FunctionIndex))
1971       Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttributes());
1972
1973     Out << "\n          to ";
1974     writeOperand(II->getNormalDest(), true);
1975     Out << " unwind ";
1976     writeOperand(II->getUnwindDest(), true);
1977
1978   } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
1979     Out << ' ';
1980     if (AI->isUsedWithInAlloca())
1981       Out << "inalloca ";
1982     TypePrinter.print(AI->getAllocatedType(), Out);
1983     if (!AI->getArraySize() || AI->isArrayAllocation()) {
1984       Out << ", ";
1985       writeOperand(AI->getArraySize(), true);
1986     }
1987     if (AI->getAlignment()) {
1988       Out << ", align " << AI->getAlignment();
1989     }
1990   } else if (isa<CastInst>(I)) {
1991     if (Operand) {
1992       Out << ' ';
1993       writeOperand(Operand, true);   // Work with broken code
1994     }
1995     Out << " to ";
1996     TypePrinter.print(I.getType(), Out);
1997   } else if (isa<VAArgInst>(I)) {
1998     if (Operand) {
1999       Out << ' ';
2000       writeOperand(Operand, true);   // Work with broken code
2001     }
2002     Out << ", ";
2003     TypePrinter.print(I.getType(), Out);
2004   } else if (Operand) {   // Print the normal way.
2005
2006     // PrintAllTypes - Instructions who have operands of all the same type
2007     // omit the type from all but the first operand.  If the instruction has
2008     // different type operands (for example br), then they are all printed.
2009     bool PrintAllTypes = false;
2010     Type *TheType = Operand->getType();
2011
2012     // Select, Store and ShuffleVector always print all types.
2013     if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
2014         || isa<ReturnInst>(I)) {
2015       PrintAllTypes = true;
2016     } else {
2017       for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
2018         Operand = I.getOperand(i);
2019         // note that Operand shouldn't be null, but the test helps make dump()
2020         // more tolerant of malformed IR
2021         if (Operand && Operand->getType() != TheType) {
2022           PrintAllTypes = true;    // We have differing types!  Print them all!
2023           break;
2024         }
2025       }
2026     }
2027
2028     if (!PrintAllTypes) {
2029       Out << ' ';
2030       TypePrinter.print(TheType, Out);
2031     }
2032
2033     Out << ' ';
2034     for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
2035       if (i) Out << ", ";
2036       writeOperand(I.getOperand(i), PrintAllTypes);
2037     }
2038   }
2039
2040   // Print atomic ordering/alignment for memory operations
2041   if (const LoadInst *LI = dyn_cast<LoadInst>(&I)) {
2042     if (LI->isAtomic())
2043       writeAtomic(LI->getOrdering(), LI->getSynchScope());
2044     if (LI->getAlignment())
2045       Out << ", align " << LI->getAlignment();
2046   } else if (const StoreInst *SI = dyn_cast<StoreInst>(&I)) {
2047     if (SI->isAtomic())
2048       writeAtomic(SI->getOrdering(), SI->getSynchScope());
2049     if (SI->getAlignment())
2050       Out << ", align " << SI->getAlignment();
2051   } else if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(&I)) {
2052     writeAtomicCmpXchg(CXI->getSuccessOrdering(), CXI->getFailureOrdering(),
2053                        CXI->getSynchScope());
2054   } else if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(&I)) {
2055     writeAtomic(RMWI->getOrdering(), RMWI->getSynchScope());
2056   } else if (const FenceInst *FI = dyn_cast<FenceInst>(&I)) {
2057     writeAtomic(FI->getOrdering(), FI->getSynchScope());
2058   }
2059
2060   // Print Metadata info.
2061   SmallVector<std::pair<unsigned, MDNode*>, 4> InstMD;
2062   I.getAllMetadata(InstMD);
2063   if (!InstMD.empty()) {
2064     SmallVector<StringRef, 8> MDNames;
2065     I.getType()->getContext().getMDKindNames(MDNames);
2066     for (unsigned i = 0, e = InstMD.size(); i != e; ++i) {
2067       unsigned Kind = InstMD[i].first;
2068        if (Kind < MDNames.size()) {
2069          Out << ", !" << MDNames[Kind];
2070        } else {
2071          Out << ", !<unknown kind #" << Kind << ">";
2072        }
2073       Out << ' ';
2074       WriteAsOperandInternal(Out, InstMD[i].second, &TypePrinter, &Machine,
2075                              TheModule);
2076     }
2077   }
2078   printInfoComment(I);
2079 }
2080
2081 static void WriteMDNodeComment(const MDNode *Node,
2082                                formatted_raw_ostream &Out) {
2083   if (Node->getNumOperands() < 1)
2084     return;
2085
2086   Value *Op = Node->getOperand(0);
2087   if (!Op || !isa<ConstantInt>(Op) || cast<ConstantInt>(Op)->getBitWidth() < 32)
2088     return;
2089
2090   DIDescriptor Desc(Node);
2091   if (!Desc.Verify())
2092     return;
2093
2094   unsigned Tag = Desc.getTag();
2095   Out.PadToColumn(50);
2096   if (dwarf::TagString(Tag)) {
2097     Out << "; ";
2098     Desc.print(Out);
2099   } else if (Tag == dwarf::DW_TAG_user_base) {
2100     Out << "; [ DW_TAG_user_base ]";
2101   }
2102 }
2103
2104 void AssemblyWriter::writeMDNode(unsigned Slot, const MDNode *Node) {
2105   Out << '!' << Slot << " = metadata ";
2106   printMDNodeBody(Node);
2107 }
2108
2109 void AssemblyWriter::writeAllMDNodes() {
2110   SmallVector<const MDNode *, 16> Nodes;
2111   Nodes.resize(Machine.mdn_size());
2112   for (SlotTracker::mdn_iterator I = Machine.mdn_begin(), E = Machine.mdn_end();
2113        I != E; ++I)
2114     Nodes[I->second] = cast<MDNode>(I->first);
2115
2116   for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
2117     writeMDNode(i, Nodes[i]);
2118   }
2119 }
2120
2121 void AssemblyWriter::printMDNodeBody(const MDNode *Node) {
2122   WriteMDNodeBodyInternal(Out, Node, &TypePrinter, &Machine, TheModule);
2123   WriteMDNodeComment(Node, Out);
2124   Out << "\n";
2125 }
2126
2127 void AssemblyWriter::writeAllAttributeGroups() {
2128   std::vector<std::pair<AttributeSet, unsigned> > asVec;
2129   asVec.resize(Machine.as_size());
2130
2131   for (SlotTracker::as_iterator I = Machine.as_begin(), E = Machine.as_end();
2132        I != E; ++I)
2133     asVec[I->second] = *I;
2134
2135   for (std::vector<std::pair<AttributeSet, unsigned> >::iterator
2136          I = asVec.begin(), E = asVec.end(); I != E; ++I)
2137     Out << "attributes #" << I->second << " = { "
2138         << I->first.getAsString(AttributeSet::FunctionIndex, true) << " }\n";
2139 }
2140
2141 } // namespace llvm
2142
2143 //===----------------------------------------------------------------------===//
2144 //                       External Interface declarations
2145 //===----------------------------------------------------------------------===//
2146
2147 void Module::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
2148   SlotTracker SlotTable(this);
2149   formatted_raw_ostream OS(ROS);
2150   AssemblyWriter W(OS, SlotTable, this, AAW);
2151   W.printModule(this);
2152 }
2153
2154 void NamedMDNode::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
2155   SlotTracker SlotTable(getParent());
2156   formatted_raw_ostream OS(ROS);
2157   AssemblyWriter W(OS, SlotTable, getParent(), AAW);
2158   W.printNamedMDNode(this);
2159 }
2160
2161 void Type::print(raw_ostream &OS) const {
2162   if (this == 0) {
2163     OS << "<null Type>";
2164     return;
2165   }
2166   TypePrinting TP;
2167   TP.print(const_cast<Type*>(this), OS);
2168
2169   // If the type is a named struct type, print the body as well.
2170   if (StructType *STy = dyn_cast<StructType>(const_cast<Type*>(this)))
2171     if (!STy->isLiteral()) {
2172       OS << " = type ";
2173       TP.printStructBody(STy, OS);
2174     }
2175 }
2176
2177 void Value::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
2178   if (this == 0) {
2179     ROS << "printing a <null> value\n";
2180     return;
2181   }
2182   formatted_raw_ostream OS(ROS);
2183   if (const Instruction *I = dyn_cast<Instruction>(this)) {
2184     const Function *F = I->getParent() ? I->getParent()->getParent() : 0;
2185     SlotTracker SlotTable(F);
2186     AssemblyWriter W(OS, SlotTable, getModuleFromVal(I), AAW);
2187     W.printInstruction(*I);
2188   } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(this)) {
2189     SlotTracker SlotTable(BB->getParent());
2190     AssemblyWriter W(OS, SlotTable, getModuleFromVal(BB), AAW);
2191     W.printBasicBlock(BB);
2192   } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
2193     SlotTracker SlotTable(GV->getParent());
2194     AssemblyWriter W(OS, SlotTable, GV->getParent(), AAW);
2195     if (const GlobalVariable *V = dyn_cast<GlobalVariable>(GV))
2196       W.printGlobal(V);
2197     else if (const Function *F = dyn_cast<Function>(GV))
2198       W.printFunction(F);
2199     else
2200       W.printAlias(cast<GlobalAlias>(GV));
2201   } else if (const MDNode *N = dyn_cast<MDNode>(this)) {
2202     const Function *F = N->getFunction();
2203     SlotTracker SlotTable(F);
2204     AssemblyWriter W(OS, SlotTable, F ? F->getParent() : 0, AAW);
2205     W.printMDNodeBody(N);
2206   } else if (const Constant *C = dyn_cast<Constant>(this)) {
2207     TypePrinting TypePrinter;
2208     TypePrinter.print(C->getType(), OS);
2209     OS << ' ';
2210     WriteConstantInternal(OS, C, TypePrinter, 0, 0);
2211   } else if (isa<InlineAsm>(this) || isa<MDString>(this) ||
2212              isa<Argument>(this)) {
2213     this->printAsOperand(OS);
2214   } else {
2215     // Otherwise we don't know what it is. Call the virtual function to
2216     // allow a subclass to print itself.
2217     printCustom(OS);
2218   }
2219 }
2220
2221 void Value::printAsOperand(raw_ostream &O, bool PrintType, const Module *M) const {
2222   // Fast path: Don't construct and populate a TypePrinting object if we
2223   // won't be needing any types printed.
2224   if (!PrintType &&
2225       ((!isa<Constant>(this) && !isa<MDNode>(this)) ||
2226        hasName() || isa<GlobalValue>(this))) {
2227     WriteAsOperandInternal(O, this, 0, 0, M);
2228     return;
2229   }
2230
2231   if (!M)
2232     M = getModuleFromVal(this);
2233
2234   TypePrinting TypePrinter;
2235   if (M)
2236     TypePrinter.incorporateTypes(*M);
2237   if (PrintType) {
2238     TypePrinter.print(getType(), O);
2239     O << ' ';
2240   }
2241
2242   WriteAsOperandInternal(O, this, &TypePrinter, 0, M);
2243 }
2244
2245 // Value::printCustom - subclasses should override this to implement printing.
2246 void Value::printCustom(raw_ostream &OS) const {
2247   llvm_unreachable("Unknown value to print out!");
2248 }
2249
2250 // Value::dump - allow easy printing of Values from the debugger.
2251 void Value::dump() const { print(dbgs()); dbgs() << '\n'; }
2252
2253 // Type::dump - allow easy printing of Types from the debugger.
2254 void Type::dump() const { print(dbgs()); }
2255
2256 // Module::dump() - Allow printing of Modules from the debugger.
2257 void Module::dump() const { print(dbgs(), 0); }
2258
2259 // NamedMDNode::dump() - Allow printing of NamedMDNodes from the debugger.
2260 void NamedMDNode::dump() const { print(dbgs(), 0); }