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