Implement review feedback
[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 was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source 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/ParameterAttributes.h"
24 #include "llvm/InlineAsm.h"
25 #include "llvm/Instruction.h"
26 #include "llvm/Instructions.h"
27 #include "llvm/Module.h"
28 #include "llvm/ValueSymbolTable.h"
29 #include "llvm/TypeSymbolTable.h"
30 #include "llvm/ADT/StringExtras.h"
31 #include "llvm/ADT/STLExtras.h"
32 #include "llvm/Support/CFG.h"
33 #include "llvm/Support/MathExtras.h"
34 #include "llvm/Support/Streams.h"
35 #include <algorithm>
36 using namespace llvm;
37
38 namespace llvm {
39
40 // Make virtual table appear in this compilation unit.
41 AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
42
43 /// This class provides computation of slot numbers for LLVM Assembly writing.
44 /// @brief LLVM Assembly Writing Slot Computation.
45 class SlotMachine {
46
47 /// @name Types
48 /// @{
49 public:
50
51   /// @brief A mapping of Values to slot numbers
52   typedef std::map<const Value*,unsigned> ValueMap;
53
54 /// @}
55 /// @name Constructors
56 /// @{
57 public:
58   /// @brief Construct from a module
59   SlotMachine(const Module *M);
60
61   /// @brief Construct from a function, starting out in incorp state.
62   SlotMachine(const Function *F);
63
64 /// @}
65 /// @name Accessors
66 /// @{
67 public:
68   /// Return the slot number of the specified value in it's type
69   /// plane.  If something is not in the SlotMachine, return -1.
70   int getLocalSlot(const Value *V);
71   int getGlobalSlot(const GlobalValue *V);
72
73 /// @}
74 /// @name Mutators
75 /// @{
76 public:
77   /// If you'd like to deal with a function instead of just a module, use
78   /// this method to get its data into the SlotMachine.
79   void incorporateFunction(const Function *F) {
80     TheFunction = F;
81     FunctionProcessed = false;
82   }
83
84   /// After calling incorporateFunction, use this method to remove the
85   /// most recently incorporated function from the SlotMachine. This
86   /// will reset the state of the machine back to just the module contents.
87   void purgeFunction();
88
89 /// @}
90 /// @name Implementation Details
91 /// @{
92 private:
93   /// This function does the actual initialization.
94   inline void initialize();
95
96   /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
97   void CreateModuleSlot(const GlobalValue *V);
98   
99   /// CreateFunctionSlot - Insert the specified Value* into the slot table.
100   void CreateFunctionSlot(const Value *V);
101
102   /// Add all of the module level global variables (and their initializers)
103   /// and function declarations, but not the contents of those functions.
104   void processModule();
105
106   /// Add all of the functions arguments, basic blocks, and instructions
107   void processFunction();
108
109   SlotMachine(const SlotMachine &);  // DO NOT IMPLEMENT
110   void operator=(const SlotMachine &);  // DO NOT IMPLEMENT
111
112 /// @}
113 /// @name Data
114 /// @{
115 public:
116
117   /// @brief The module for which we are holding slot numbers
118   const Module* TheModule;
119
120   /// @brief The function for which we are holding slot numbers
121   const Function* TheFunction;
122   bool FunctionProcessed;
123
124   /// @brief The TypePlanes map for the module level data
125   ValueMap mMap;
126   unsigned mNext;
127
128   /// @brief The TypePlanes map for the function level data
129   ValueMap fMap;
130   unsigned fNext;
131
132 /// @}
133
134 };
135
136 }  // end namespace llvm
137
138 static RegisterPass<PrintModulePass>
139 X("printm", "Print module to stderr");
140 static RegisterPass<PrintFunctionPass>
141 Y("print","Print function to stderr");
142
143 static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
144                                std::map<const Type *, std::string> &TypeTable,
145                                    SlotMachine *Machine);
146
147 static const Module *getModuleFromVal(const Value *V) {
148   if (const Argument *MA = dyn_cast<Argument>(V))
149     return MA->getParent() ? MA->getParent()->getParent() : 0;
150   else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
151     return BB->getParent() ? BB->getParent()->getParent() : 0;
152   else if (const Instruction *I = dyn_cast<Instruction>(V)) {
153     const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
154     return M ? M->getParent() : 0;
155   } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
156     return GV->getParent();
157   return 0;
158 }
159
160 static SlotMachine *createSlotMachine(const Value *V) {
161   if (const Argument *FA = dyn_cast<Argument>(V)) {
162     return new SlotMachine(FA->getParent());
163   } else if (const Instruction *I = dyn_cast<Instruction>(V)) {
164     return new SlotMachine(I->getParent()->getParent());
165   } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
166     return new SlotMachine(BB->getParent());
167   } else if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)){
168     return new SlotMachine(GV->getParent());
169   } else if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)){
170     return new SlotMachine(GA->getParent());    
171   } else if (const Function *Func = dyn_cast<Function>(V)) {
172     return new SlotMachine(Func);
173   }
174   return 0;
175 }
176
177 /// NameNeedsQuotes - Return true if the specified llvm name should be wrapped
178 /// with ""'s.
179 static bool NameNeedsQuotes(const std::string &Name) {
180   if (Name[0] >= '0' && Name[0] <= '9') return true;
181   // Scan to see if we have any characters that are not on the "white list"
182   for (unsigned i = 0, e = Name.size(); i != e; ++i) {
183     char C = Name[i];
184     assert(C != '"' && "Illegal character in LLVM value name!");
185     if ((C < 'a' || C > 'z') && (C < 'A' || C > 'Z') && (C < '0' || C > '9') &&
186         C != '-' && C != '.' && C != '_')
187       return true;
188   }
189   return false;
190 }
191
192 enum PrefixType {
193   GlobalPrefix,
194   LabelPrefix,
195   LocalPrefix
196 };
197
198 /// getLLVMName - Turn the specified string into an 'LLVM name', which is either
199 /// prefixed with % (if the string only contains simple characters) or is
200 /// surrounded with ""'s (if it has special chars in it).
201 static std::string getLLVMName(const std::string &Name, PrefixType Prefix) {
202   assert(!Name.empty() && "Cannot get empty name!");
203
204   // First character cannot start with a number...
205   if (NameNeedsQuotes(Name)) {
206     if (Prefix == GlobalPrefix)
207       return "@\"" + Name + "\"";
208     return "\"" + Name + "\"";
209   }
210
211   // If we get here, then the identifier is legal to use as a "VarID".
212   switch (Prefix) {
213   default: assert(0 && "Bad prefix!");
214   case GlobalPrefix: return '@' + Name;
215   case LabelPrefix:  return Name;
216   case LocalPrefix:  return '%' + Name;
217   }      
218 }
219
220
221 /// fillTypeNameTable - If the module has a symbol table, take all global types
222 /// and stuff their names into the TypeNames map.
223 ///
224 static void fillTypeNameTable(const Module *M,
225                               std::map<const Type *, std::string> &TypeNames) {
226   if (!M) return;
227   const TypeSymbolTable &ST = M->getTypeSymbolTable();
228   TypeSymbolTable::const_iterator TI = ST.begin();
229   for (; TI != ST.end(); ++TI) {
230     // As a heuristic, don't insert pointer to primitive types, because
231     // they are used too often to have a single useful name.
232     //
233     const Type *Ty = cast<Type>(TI->second);
234     if (!isa<PointerType>(Ty) ||
235         !cast<PointerType>(Ty)->getElementType()->isPrimitiveType() ||
236         !cast<PointerType>(Ty)->getElementType()->isInteger() ||
237         isa<OpaqueType>(cast<PointerType>(Ty)->getElementType()))
238       TypeNames.insert(std::make_pair(Ty, getLLVMName(TI->first, LocalPrefix)));
239   }
240 }
241
242
243
244 static void calcTypeName(const Type *Ty,
245                          std::vector<const Type *> &TypeStack,
246                          std::map<const Type *, std::string> &TypeNames,
247                          std::string & Result){
248   if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty))) {
249     Result += Ty->getDescription();  // Base case
250     return;
251   }
252
253   // Check to see if the type is named.
254   std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
255   if (I != TypeNames.end()) {
256     Result += I->second;
257     return;
258   }
259
260   if (isa<OpaqueType>(Ty)) {
261     Result += "opaque";
262     return;
263   }
264
265   // Check to see if the Type is already on the stack...
266   unsigned Slot = 0, CurSize = TypeStack.size();
267   while (Slot < CurSize && TypeStack[Slot] != Ty) ++Slot; // Scan for type
268
269   // This is another base case for the recursion.  In this case, we know
270   // that we have looped back to a type that we have previously visited.
271   // Generate the appropriate upreference to handle this.
272   if (Slot < CurSize) {
273     Result += "\\" + utostr(CurSize-Slot);     // Here's the upreference
274     return;
275   }
276
277   TypeStack.push_back(Ty);    // Recursive case: Add us to the stack..
278
279   switch (Ty->getTypeID()) {
280   case Type::IntegerTyID: {
281     unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
282     Result += "i" + utostr(BitWidth);
283     break;
284   }
285   case Type::FunctionTyID: {
286     const FunctionType *FTy = cast<FunctionType>(Ty);
287     calcTypeName(FTy->getReturnType(), TypeStack, TypeNames, Result);
288     Result += " (";
289     unsigned Idx = 1;
290     const ParamAttrsList *Attrs = FTy->getParamAttrs();
291     for (FunctionType::param_iterator I = FTy->param_begin(),
292            E = FTy->param_end(); I != E; ++I) {
293       if (I != FTy->param_begin())
294         Result += ", ";
295       calcTypeName(*I, TypeStack, TypeNames, Result);
296       if (Attrs && Attrs->getParamAttrs(Idx) != ParamAttr::None) {
297         Result += + " ";
298         Result += Attrs->getParamAttrsTextByIndex(Idx);
299       }
300       Idx++;
301     }
302     if (FTy->isVarArg()) {
303       if (FTy->getNumParams()) Result += ", ";
304       Result += "...";
305     }
306     Result += ")";
307     if (Attrs && Attrs->getParamAttrs(0) != ParamAttr::None) {
308       Result += " ";
309       Result += Attrs->getParamAttrsTextByIndex(0);
310     }
311     break;
312   }
313   case Type::StructTyID: {
314     const StructType *STy = cast<StructType>(Ty);
315     if (STy->isPacked())
316       Result += '<';
317     Result += "{ ";
318     for (StructType::element_iterator I = STy->element_begin(),
319            E = STy->element_end(); I != E; ++I) {
320       if (I != STy->element_begin())
321         Result += ", ";
322       calcTypeName(*I, TypeStack, TypeNames, Result);
323     }
324     Result += " }";
325     if (STy->isPacked())
326       Result += '>';
327     break;
328   }
329   case Type::PointerTyID:
330     calcTypeName(cast<PointerType>(Ty)->getElementType(),
331                           TypeStack, TypeNames, Result);
332     Result += "*";
333     break;
334   case Type::ArrayTyID: {
335     const ArrayType *ATy = cast<ArrayType>(Ty);
336     Result += "[" + utostr(ATy->getNumElements()) + " x ";
337     calcTypeName(ATy->getElementType(), TypeStack, TypeNames, Result);
338     Result += "]";
339     break;
340   }
341   case Type::VectorTyID: {
342     const VectorType *PTy = cast<VectorType>(Ty);
343     Result += "<" + utostr(PTy->getNumElements()) + " x ";
344     calcTypeName(PTy->getElementType(), TypeStack, TypeNames, Result);
345     Result += ">";
346     break;
347   }
348   case Type::OpaqueTyID:
349     Result += "opaque";
350     break;
351   default:
352     Result += "<unrecognized-type>";
353     break;
354   }
355
356   TypeStack.pop_back();       // Remove self from stack...
357 }
358
359
360 /// printTypeInt - The internal guts of printing out a type that has a
361 /// potentially named portion.
362 ///
363 static std::ostream &printTypeInt(std::ostream &Out, const Type *Ty,
364                               std::map<const Type *, std::string> &TypeNames) {
365   // Primitive types always print out their description, regardless of whether
366   // they have been named or not.
367   //
368   if (Ty->isInteger() || (Ty->isPrimitiveType() && !isa<OpaqueType>(Ty)))
369     return Out << Ty->getDescription();
370
371   // Check to see if the type is named.
372   std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
373   if (I != TypeNames.end()) return Out << I->second;
374
375   // Otherwise we have a type that has not been named but is a derived type.
376   // Carefully recurse the type hierarchy to print out any contained symbolic
377   // names.
378   //
379   std::vector<const Type *> TypeStack;
380   std::string TypeName;
381   calcTypeName(Ty, TypeStack, TypeNames, TypeName);
382   TypeNames.insert(std::make_pair(Ty, TypeName));//Cache type name for later use
383   return (Out << TypeName);
384 }
385
386
387 /// WriteTypeSymbolic - This attempts to write the specified type as a symbolic
388 /// type, iff there is an entry in the modules symbol table for the specified
389 /// type or one of it's component types. This is slower than a simple x << Type
390 ///
391 std::ostream &llvm::WriteTypeSymbolic(std::ostream &Out, const Type *Ty,
392                                       const Module *M) {
393   Out << ' ';
394
395   // If they want us to print out a type, but there is no context, we can't
396   // print it symbolically.
397   if (!M)
398     return Out << Ty->getDescription();
399     
400   std::map<const Type *, std::string> TypeNames;
401   fillTypeNameTable(M, TypeNames);
402   return printTypeInt(Out, Ty, TypeNames);
403 }
404
405 // PrintEscapedString - Print each character of the specified string, escaping
406 // it if it is not printable or if it is an escape char.
407 static void PrintEscapedString(const std::string &Str, std::ostream &Out) {
408   for (unsigned i = 0, e = Str.size(); i != e; ++i) {
409     unsigned char C = Str[i];
410     if (isprint(C) && C != '"' && C != '\\') {
411       Out << C;
412     } else {
413       Out << '\\'
414           << (char) ((C/16  < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
415           << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
416     }
417   }
418 }
419
420 static const char *getPredicateText(unsigned predicate) {
421   const char * pred = "unknown";
422   switch (predicate) {
423     case FCmpInst::FCMP_FALSE: pred = "false"; break;
424     case FCmpInst::FCMP_OEQ:   pred = "oeq"; break;
425     case FCmpInst::FCMP_OGT:   pred = "ogt"; break;
426     case FCmpInst::FCMP_OGE:   pred = "oge"; break;
427     case FCmpInst::FCMP_OLT:   pred = "olt"; break;
428     case FCmpInst::FCMP_OLE:   pred = "ole"; break;
429     case FCmpInst::FCMP_ONE:   pred = "one"; break;
430     case FCmpInst::FCMP_ORD:   pred = "ord"; break;
431     case FCmpInst::FCMP_UNO:   pred = "uno"; break;
432     case FCmpInst::FCMP_UEQ:   pred = "ueq"; break;
433     case FCmpInst::FCMP_UGT:   pred = "ugt"; break;
434     case FCmpInst::FCMP_UGE:   pred = "uge"; break;
435     case FCmpInst::FCMP_ULT:   pred = "ult"; break;
436     case FCmpInst::FCMP_ULE:   pred = "ule"; break;
437     case FCmpInst::FCMP_UNE:   pred = "une"; break;
438     case FCmpInst::FCMP_TRUE:  pred = "true"; break;
439     case ICmpInst::ICMP_EQ:    pred = "eq"; break;
440     case ICmpInst::ICMP_NE:    pred = "ne"; break;
441     case ICmpInst::ICMP_SGT:   pred = "sgt"; break;
442     case ICmpInst::ICMP_SGE:   pred = "sge"; break;
443     case ICmpInst::ICMP_SLT:   pred = "slt"; break;
444     case ICmpInst::ICMP_SLE:   pred = "sle"; break;
445     case ICmpInst::ICMP_UGT:   pred = "ugt"; break;
446     case ICmpInst::ICMP_UGE:   pred = "uge"; break;
447     case ICmpInst::ICMP_ULT:   pred = "ult"; break;
448     case ICmpInst::ICMP_ULE:   pred = "ule"; break;
449   }
450   return pred;
451 }
452
453 /// @brief Internal constant writer.
454 static void WriteConstantInt(std::ostream &Out, const Constant *CV,
455                              std::map<const Type *, std::string> &TypeTable,
456                              SlotMachine *Machine) {
457   const int IndentSize = 4;
458   static std::string Indent = "\n";
459   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
460     if (CI->getType() == Type::Int1Ty) 
461       Out << (CI->getZExtValue() ? "true" : "false");
462     else 
463       Out << CI->getValue().toStringSigned(10);
464   } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
465     // We would like to output the FP constant value in exponential notation,
466     // but we cannot do this if doing so will lose precision.  Check here to
467     // make sure that we only output it in exponential format if we can parse
468     // the value back and get the same value.
469     //
470     std::string StrVal = ftostr(CFP->getValue());
471
472     // Check to make sure that the stringized number is not some string like
473     // "Inf" or NaN, that atof will accept, but the lexer will not.  Check that
474     // the string matches the "[-+]?[0-9]" regex.
475     //
476     if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
477         ((StrVal[0] == '-' || StrVal[0] == '+') &&
478          (StrVal[1] >= '0' && StrVal[1] <= '9')))
479       // Reparse stringized version!
480       if (atof(StrVal.c_str()) == CFP->getValue()) {
481         Out << StrVal;
482         return;
483       }
484
485     // Otherwise we could not reparse it to exactly the same value, so we must
486     // output the string in hexadecimal format!
487     assert(sizeof(double) == sizeof(uint64_t) &&
488            "assuming that double is 64 bits!");
489     Out << "0x" << utohexstr(DoubleToBits(CFP->getValue()));
490
491   } else if (isa<ConstantAggregateZero>(CV)) {
492     Out << "zeroinitializer";
493   } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
494     // As a special case, print the array as a string if it is an array of
495     // ubytes or an array of sbytes with positive values.
496     //
497     const Type *ETy = CA->getType()->getElementType();
498     if (CA->isString()) {
499       Out << "c\"";
500       PrintEscapedString(CA->getAsString(), Out);
501       Out << "\"";
502
503     } else {                // Cannot output in string format...
504       Out << '[';
505       if (CA->getNumOperands()) {
506         Out << ' ';
507         printTypeInt(Out, ETy, TypeTable);
508         WriteAsOperandInternal(Out, CA->getOperand(0),
509                                TypeTable, Machine);
510         for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
511           Out << ", ";
512           printTypeInt(Out, ETy, TypeTable);
513           WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
514         }
515       }
516       Out << " ]";
517     }
518   } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
519     if (CS->getType()->isPacked())
520       Out << '<';
521     Out << '{';
522     unsigned N = CS->getNumOperands();
523     if (N) {
524       if (N > 2) {
525         Indent += std::string(IndentSize, ' ');
526         Out << Indent;
527       } else {
528         Out << ' ';
529       }
530       printTypeInt(Out, CS->getOperand(0)->getType(), TypeTable);
531
532       WriteAsOperandInternal(Out, CS->getOperand(0), TypeTable, Machine);
533
534       for (unsigned i = 1; i < N; i++) {
535         Out << ", ";
536         if (N > 2) Out << Indent;
537         printTypeInt(Out, CS->getOperand(i)->getType(), TypeTable);
538
539         WriteAsOperandInternal(Out, CS->getOperand(i), TypeTable, Machine);
540       }
541       if (N > 2) Indent.resize(Indent.size() - IndentSize);
542     }
543  
544     Out << " }";
545     if (CS->getType()->isPacked())
546       Out << '>';
547   } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
548       const Type *ETy = CP->getType()->getElementType();
549       assert(CP->getNumOperands() > 0 &&
550              "Number of operands for a PackedConst must be > 0");
551       Out << '<';
552       Out << ' ';
553       printTypeInt(Out, ETy, TypeTable);
554       WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
555       for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
556           Out << ", ";
557           printTypeInt(Out, ETy, TypeTable);
558           WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
559       }
560       Out << " >";
561   } else if (isa<ConstantPointerNull>(CV)) {
562     Out << "null";
563
564   } else if (isa<UndefValue>(CV)) {
565     Out << "undef";
566
567   } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
568     Out << CE->getOpcodeName();
569     if (CE->isCompare())
570       Out << " " << getPredicateText(CE->getPredicate());
571     Out << " (";
572
573     for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
574       printTypeInt(Out, (*OI)->getType(), TypeTable);
575       WriteAsOperandInternal(Out, *OI, TypeTable, Machine);
576       if (OI+1 != CE->op_end())
577         Out << ", ";
578     }
579
580     if (CE->isCast()) {
581       Out << " to ";
582       printTypeInt(Out, CE->getType(), TypeTable);
583     }
584
585     Out << ')';
586
587   } else {
588     Out << "<placeholder or erroneous Constant>";
589   }
590 }
591
592
593 /// WriteAsOperand - Write the name of the specified value out to the specified
594 /// ostream.  This can be useful when you just want to print int %reg126, not
595 /// the whole instruction that generated it.
596 ///
597 static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
598                                   std::map<const Type*, std::string> &TypeTable,
599                                    SlotMachine *Machine) {
600   Out << ' ';
601   if (V->hasName())
602     Out << getLLVMName(V->getName(),
603                        isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
604   else {
605     const Constant *CV = dyn_cast<Constant>(V);
606     if (CV && !isa<GlobalValue>(CV)) {
607       WriteConstantInt(Out, CV, TypeTable, Machine);
608     } else if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
609       Out << "asm ";
610       if (IA->hasSideEffects())
611         Out << "sideeffect ";
612       Out << '"';
613       PrintEscapedString(IA->getAsmString(), Out);
614       Out << "\", \"";
615       PrintEscapedString(IA->getConstraintString(), Out);
616       Out << '"';
617     } else {
618       char Prefix = '%';
619       int Slot;
620       if (Machine) {
621         if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
622           Slot = Machine->getGlobalSlot(GV);
623           Prefix = '@';
624         } else {
625           Slot = Machine->getLocalSlot(V);
626         }
627       } else {
628         Machine = createSlotMachine(V);
629         if (Machine) {
630           if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
631             Slot = Machine->getGlobalSlot(GV);
632             Prefix = '@';
633           } else {
634             Slot = Machine->getLocalSlot(V);
635           }
636         } else {
637           Slot = -1;
638         }
639         delete Machine;
640       }
641       if (Slot != -1)
642         Out << Prefix << Slot;
643       else
644         Out << "<badref>";
645     }
646   }
647 }
648
649 /// WriteAsOperand - Write the name of the specified value out to the specified
650 /// ostream.  This can be useful when you just want to print int %reg126, not
651 /// the whole instruction that generated it.
652 ///
653 std::ostream &llvm::WriteAsOperand(std::ostream &Out, const Value *V,
654                                    bool PrintType, const Module *Context) {
655   std::map<const Type *, std::string> TypeNames;
656   if (Context == 0) Context = getModuleFromVal(V);
657
658   if (Context)
659     fillTypeNameTable(Context, TypeNames);
660
661   if (PrintType)
662     printTypeInt(Out, V->getType(), TypeNames);
663
664   WriteAsOperandInternal(Out, V, TypeNames, 0);
665   return Out;
666 }
667
668
669 namespace llvm {
670
671 class AssemblyWriter {
672   std::ostream &Out;
673   SlotMachine &Machine;
674   const Module *TheModule;
675   std::map<const Type *, std::string> TypeNames;
676   AssemblyAnnotationWriter *AnnotationWriter;
677 public:
678   inline AssemblyWriter(std::ostream &o, SlotMachine &Mac, const Module *M,
679                         AssemblyAnnotationWriter *AAW)
680     : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
681
682     // If the module has a symbol table, take all global types and stuff their
683     // names into the TypeNames map.
684     //
685     fillTypeNameTable(M, TypeNames);
686   }
687
688   inline void write(const Module *M)         { printModule(M);       }
689   inline void write(const GlobalVariable *G) { printGlobal(G);       }
690   inline void write(const GlobalAlias *G)    { printAlias(G);        }
691   inline void write(const Function *F)       { printFunction(F);     }
692   inline void write(const BasicBlock *BB)    { printBasicBlock(BB);  }
693   inline void write(const Instruction *I)    { printInstruction(*I); }
694   inline void write(const Type *Ty)          { printType(Ty);        }
695
696   void writeOperand(const Value *Op, bool PrintType);
697
698   const Module* getModule() { return TheModule; }
699
700 private:
701   void printModule(const Module *M);
702   void printTypeSymbolTable(const TypeSymbolTable &ST);
703   void printGlobal(const GlobalVariable *GV);
704   void printAlias(const GlobalAlias *GV);
705   void printFunction(const Function *F);
706   void printArgument(const Argument *FA, uint16_t ParamAttrs);
707   void printBasicBlock(const BasicBlock *BB);
708   void printInstruction(const Instruction &I);
709
710   // printType - Go to extreme measures to attempt to print out a short,
711   // symbolic version of a type name.
712   //
713   std::ostream &printType(const Type *Ty) {
714     return printTypeInt(Out, Ty, TypeNames);
715   }
716
717   // printTypeAtLeastOneLevel - Print out one level of the possibly complex type
718   // without considering any symbolic types that we may have equal to it.
719   //
720   std::ostream &printTypeAtLeastOneLevel(const Type *Ty);
721
722   // printInfoComment - Print a little comment after the instruction indicating
723   // which slot it occupies.
724   void printInfoComment(const Value &V);
725 };
726 }  // end of llvm namespace
727
728 /// printTypeAtLeastOneLevel - Print out one level of the possibly complex type
729 /// without considering any symbolic types that we may have equal to it.
730 ///
731 std::ostream &AssemblyWriter::printTypeAtLeastOneLevel(const Type *Ty) {
732   if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty))
733     Out << "i" << utostr(ITy->getBitWidth());
734   else if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
735     printType(FTy->getReturnType());
736     Out << " (";
737     unsigned Idx = 1;
738     const ParamAttrsList *Attrs = FTy->getParamAttrs();
739     for (FunctionType::param_iterator I = FTy->param_begin(),
740            E = FTy->param_end(); I != E; ++I) {
741       if (I != FTy->param_begin())
742         Out << ", ";
743       printType(*I);
744       if (Attrs && Attrs->getParamAttrs(Idx) != ParamAttr::None) {
745         Out << " " << Attrs->getParamAttrsTextByIndex(Idx);
746       }
747       Idx++;
748     }
749     if (FTy->isVarArg()) {
750       if (FTy->getNumParams()) Out << ", ";
751       Out << "...";
752     }
753     Out << ')';
754     if (Attrs && Attrs->getParamAttrs(0) != ParamAttr::None)
755       Out << ' ' << Attrs->getParamAttrsTextByIndex(0);
756   } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
757     if (STy->isPacked())
758       Out << '<';
759     Out << "{ ";
760     for (StructType::element_iterator I = STy->element_begin(),
761            E = STy->element_end(); I != E; ++I) {
762       if (I != STy->element_begin())
763         Out << ", ";
764       printType(*I);
765     }
766     Out << " }";
767     if (STy->isPacked())
768       Out << '>';
769   } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
770     printType(PTy->getElementType()) << '*';
771   } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
772     Out << '[' << ATy->getNumElements() << " x ";
773     printType(ATy->getElementType()) << ']';
774   } else if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
775     Out << '<' << PTy->getNumElements() << " x ";
776     printType(PTy->getElementType()) << '>';
777   }
778   else if (isa<OpaqueType>(Ty)) {
779     Out << "opaque";
780   } else {
781     if (!Ty->isPrimitiveType())
782       Out << "<unknown derived type>";
783     printType(Ty);
784   }
785   return Out;
786 }
787
788
789 void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
790   if (Operand == 0) {
791     Out << "<null operand!>";
792   } else {
793     if (PrintType) { Out << ' '; printType(Operand->getType()); }
794     WriteAsOperandInternal(Out, Operand, TypeNames, &Machine);
795   }
796 }
797
798
799 void AssemblyWriter::printModule(const Module *M) {
800   if (!M->getModuleIdentifier().empty() &&
801       // Don't print the ID if it will start a new line (which would
802       // require a comment char before it).
803       M->getModuleIdentifier().find('\n') == std::string::npos)
804     Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
805
806   if (!M->getDataLayout().empty())
807     Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
808   if (!M->getTargetTriple().empty())
809     Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
810
811   if (!M->getModuleInlineAsm().empty()) {
812     // Split the string into lines, to make it easier to read the .ll file.
813     std::string Asm = M->getModuleInlineAsm();
814     size_t CurPos = 0;
815     size_t NewLine = Asm.find_first_of('\n', CurPos);
816     while (NewLine != std::string::npos) {
817       // We found a newline, print the portion of the asm string from the
818       // last newline up to this newline.
819       Out << "module asm \"";
820       PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
821                          Out);
822       Out << "\"\n";
823       CurPos = NewLine+1;
824       NewLine = Asm.find_first_of('\n', CurPos);
825     }
826     Out << "module asm \"";
827     PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
828     Out << "\"\n";
829   }
830   
831   // Loop over the dependent libraries and emit them.
832   Module::lib_iterator LI = M->lib_begin();
833   Module::lib_iterator LE = M->lib_end();
834   if (LI != LE) {
835     Out << "deplibs = [ ";
836     while (LI != LE) {
837       Out << '"' << *LI << '"';
838       ++LI;
839       if (LI != LE)
840         Out << ", ";
841     }
842     Out << " ]\n";
843   }
844
845   // Loop over the symbol table, emitting all named constants.
846   printTypeSymbolTable(M->getTypeSymbolTable());
847
848   for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
849        I != E; ++I)
850     printGlobal(I);
851   
852   // Output all aliases.
853   if (!M->alias_empty()) Out << "\n";
854   for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
855        I != E; ++I)
856     printAlias(I);
857
858   // Output all of the functions.
859   for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
860     printFunction(I);
861 }
862
863 void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
864   if (GV->hasName()) Out << getLLVMName(GV->getName(), GlobalPrefix) << " = ";
865
866   if (!GV->hasInitializer())
867     switch (GV->getLinkage()) {
868      case GlobalValue::DLLImportLinkage:   Out << "dllimport "; break;
869      case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
870      default: Out << "external "; break;
871     } else {
872     switch (GV->getLinkage()) {
873     case GlobalValue::InternalLinkage:     Out << "internal "; break;
874     case GlobalValue::LinkOnceLinkage:     Out << "linkonce "; break;
875     case GlobalValue::WeakLinkage:         Out << "weak "; break;
876     case GlobalValue::AppendingLinkage:    Out << "appending "; break;
877     case GlobalValue::DLLImportLinkage:    Out << "dllimport "; break;
878     case GlobalValue::DLLExportLinkage:    Out << "dllexport "; break;     
879     case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
880     case GlobalValue::ExternalLinkage:     break;
881     case GlobalValue::GhostLinkage:
882       cerr << "GhostLinkage not allowed in AsmWriter!\n";
883       abort();
884     }
885     switch (GV->getVisibility()) {
886     default: assert(0 && "Invalid visibility style!");
887     case GlobalValue::DefaultVisibility: break;
888     case GlobalValue::HiddenVisibility: Out << "hidden "; break;
889     }
890   }
891
892   if (GV->isThreadLocal()) Out << "thread_local ";
893   Out << (GV->isConstant() ? "constant " : "global ");
894   printType(GV->getType()->getElementType());
895
896   if (GV->hasInitializer()) {
897     Constant* C = cast<Constant>(GV->getInitializer());
898     assert(C &&  "GlobalVar initializer isn't constant?");
899     writeOperand(GV->getInitializer(), false);
900   }
901
902   if (GV->hasSection())
903     Out << ", section \"" << GV->getSection() << '"';
904   if (GV->getAlignment())
905     Out << ", align " << GV->getAlignment();
906
907   printInfoComment(*GV);
908   Out << "\n";
909 }
910
911 void AssemblyWriter::printAlias(const GlobalAlias *GA) {
912   Out << getLLVMName(GA->getName(), GlobalPrefix) << " = ";
913   switch (GA->getVisibility()) {
914   default: assert(0 && "Invalid visibility style!");
915   case GlobalValue::DefaultVisibility: break;
916   case GlobalValue::HiddenVisibility: Out << "hidden "; break;
917   }
918
919   Out << "alias ";
920
921   switch (GA->getLinkage()) {
922   case GlobalValue::WeakLinkage: Out << "weak "; break;
923   case GlobalValue::InternalLinkage: Out << "internal "; break;
924   case GlobalValue::ExternalLinkage: break;
925   default:
926    assert(0 && "Invalid alias linkage");
927   }
928   
929   const Constant *Aliasee = GA->getAliasee();
930     
931   if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Aliasee)) {
932     printType(GV->getType());
933     Out << " " << getLLVMName(GV->getName(), GlobalPrefix);
934   } else if (const Function *F = dyn_cast<Function>(Aliasee)) {
935     printType(F->getFunctionType());
936     Out << "* ";
937
938     if (!F->getName().empty())
939       Out << getLLVMName(F->getName(), GlobalPrefix);
940     else
941       Out << "@\"\"";
942   } else {
943     const ConstantExpr *CE = 0;
944     if ((CE = dyn_cast<ConstantExpr>(Aliasee)) &&
945         (CE->getOpcode() == Instruction::BitCast)) {
946       writeOperand(CE, false);    
947     } else
948       assert(0 && "Unsupported aliasee");
949   }
950   
951   printInfoComment(*GA);
952   Out << "\n";
953 }
954
955 void AssemblyWriter::printTypeSymbolTable(const TypeSymbolTable &ST) {
956   // Print the types.
957   for (TypeSymbolTable::const_iterator TI = ST.begin(), TE = ST.end();
958        TI != TE; ++TI) {
959     Out << "\t" << getLLVMName(TI->first, LocalPrefix) << " = type ";
960
961     // Make sure we print out at least one level of the type structure, so
962     // that we do not get %FILE = type %FILE
963     //
964     printTypeAtLeastOneLevel(TI->second) << "\n";
965   }
966 }
967
968 /// printFunction - Print all aspects of a function.
969 ///
970 void AssemblyWriter::printFunction(const Function *F) {
971   // Print out the return type and name...
972   Out << "\n";
973
974   if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
975
976   if (F->isDeclaration())
977     switch (F->getLinkage()) {
978     case GlobalValue::DLLImportLinkage:    Out << "declare dllimport "; break;
979     case GlobalValue::ExternalWeakLinkage: Out << "declare extern_weak "; break;
980     default: Out << "declare ";
981     }
982   else {
983     Out << "define ";
984     switch (F->getLinkage()) {
985     case GlobalValue::InternalLinkage:     Out << "internal "; break;
986     case GlobalValue::LinkOnceLinkage:     Out << "linkonce "; break;
987     case GlobalValue::WeakLinkage:         Out << "weak "; break;
988     case GlobalValue::AppendingLinkage:    Out << "appending "; break;
989     case GlobalValue::DLLImportLinkage:    Out << "dllimport "; break;
990     case GlobalValue::DLLExportLinkage:    Out << "dllexport "; break;
991     case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;      
992     case GlobalValue::ExternalLinkage: break;
993     case GlobalValue::GhostLinkage:
994       cerr << "GhostLinkage not allowed in AsmWriter!\n";
995       abort();
996     }
997     switch (F->getVisibility()) {
998     default: assert(0 && "Invalid visibility style!");
999     case GlobalValue::DefaultVisibility: break;
1000     case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1001     }
1002   }
1003
1004   // Print the calling convention.
1005   switch (F->getCallingConv()) {
1006   case CallingConv::C: break;   // default
1007   case CallingConv::Fast:         Out << "fastcc "; break;
1008   case CallingConv::Cold:         Out << "coldcc "; break;
1009   case CallingConv::X86_StdCall:  Out << "x86_stdcallcc "; break;
1010   case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break; 
1011   default: Out << "cc" << F->getCallingConv() << " "; break;
1012   }
1013
1014   const FunctionType *FT = F->getFunctionType();
1015   const ParamAttrsList *Attrs = FT->getParamAttrs();
1016   printType(F->getReturnType()) << ' ';
1017   if (!F->getName().empty())
1018     Out << getLLVMName(F->getName(), GlobalPrefix);
1019   else
1020     Out << "@\"\"";
1021   Out << '(';
1022   Machine.incorporateFunction(F);
1023
1024   // Loop over the arguments, printing them...
1025
1026   unsigned Idx = 1;
1027   if (!F->isDeclaration()) {
1028     // If this isn't a declaration, print the argument names as well.
1029     for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1030          I != E; ++I) {
1031       // Insert commas as we go... the first arg doesn't get a comma
1032       if (I != F->arg_begin()) Out << ", ";
1033       printArgument(I, (Attrs ? Attrs->getParamAttrs(Idx)
1034                               : uint16_t(ParamAttr::None)));
1035       Idx++;
1036     }
1037   } else {
1038     // Otherwise, print the types from the function type.
1039     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1040       // Insert commas as we go... the first arg doesn't get a comma
1041       if (i) Out << ", ";
1042       
1043       // Output type...
1044       printType(FT->getParamType(i));
1045       
1046       unsigned ArgAttrs = ParamAttr::None;
1047       if (Attrs) ArgAttrs = Attrs->getParamAttrs(i+1);
1048       if (ArgAttrs != ParamAttr::None)
1049         Out << ' ' << ParamAttrsList::getParamAttrsText(ArgAttrs);
1050     }
1051   }
1052
1053   // Finish printing arguments...
1054   if (FT->isVarArg()) {
1055     if (FT->getNumParams()) Out << ", ";
1056     Out << "...";  // Output varargs portion of signature!
1057   }
1058   Out << ')';
1059   if (Attrs && Attrs->getParamAttrs(0) != ParamAttr::None)
1060     Out << ' ' << Attrs->getParamAttrsTextByIndex(0);
1061   if (F->hasSection())
1062     Out << " section \"" << F->getSection() << '"';
1063   if (F->getAlignment())
1064     Out << " align " << F->getAlignment();
1065
1066   if (F->isDeclaration()) {
1067     Out << "\n";
1068   } else {
1069     Out << " {";
1070
1071     // Output all of its basic blocks... for the function
1072     for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1073       printBasicBlock(I);
1074
1075     Out << "}\n";
1076   }
1077
1078   Machine.purgeFunction();
1079 }
1080
1081 /// printArgument - This member is called for every argument that is passed into
1082 /// the function.  Simply print it out
1083 ///
1084 void AssemblyWriter::printArgument(const Argument *Arg, uint16_t Attrs) {
1085   // Output type...
1086   printType(Arg->getType());
1087
1088   if (Attrs != ParamAttr::None)
1089     Out << ' ' << ParamAttrsList::getParamAttrsText(Attrs);
1090
1091   // Output name, if available...
1092   if (Arg->hasName())
1093     Out << ' ' << getLLVMName(Arg->getName(), LocalPrefix);
1094 }
1095
1096 /// printBasicBlock - This member is called for each basic block in a method.
1097 ///
1098 void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
1099   if (BB->hasName()) {              // Print out the label if it exists...
1100     Out << "\n" << getLLVMName(BB->getName(), LabelPrefix) << ':';
1101   } else if (!BB->use_empty()) {      // Don't print block # of no uses...
1102     Out << "\n; <label>:";
1103     int Slot = Machine.getLocalSlot(BB);
1104     if (Slot != -1)
1105       Out << Slot;
1106     else
1107       Out << "<badref>";
1108   }
1109
1110   if (BB->getParent() == 0)
1111     Out << "\t\t; Error: Block without parent!";
1112   else {
1113     if (BB != &BB->getParent()->getEntryBlock()) {  // Not the entry block?
1114       // Output predecessors for the block...
1115       Out << "\t\t;";
1116       pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
1117
1118       if (PI == PE) {
1119         Out << " No predecessors!";
1120       } else {
1121         Out << " preds =";
1122         writeOperand(*PI, false);
1123         for (++PI; PI != PE; ++PI) {
1124           Out << ',';
1125           writeOperand(*PI, false);
1126         }
1127       }
1128     }
1129   }
1130
1131   Out << "\n";
1132
1133   if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
1134
1135   // Output all of the instructions in the basic block...
1136   for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1137     printInstruction(*I);
1138
1139   if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
1140 }
1141
1142
1143 /// printInfoComment - Print a little comment after the instruction indicating
1144 /// which slot it occupies.
1145 ///
1146 void AssemblyWriter::printInfoComment(const Value &V) {
1147   if (V.getType() != Type::VoidTy) {
1148     Out << "\t\t; <";
1149     printType(V.getType()) << '>';
1150
1151     if (!V.hasName()) {
1152       int SlotNum;
1153       if (const GlobalValue *GV = dyn_cast<GlobalValue>(&V))
1154         SlotNum = Machine.getGlobalSlot(GV);
1155       else
1156         SlotNum = Machine.getLocalSlot(&V);
1157       if (SlotNum == -1)
1158         Out << ":<badref>";
1159       else
1160         Out << ':' << SlotNum; // Print out the def slot taken.
1161     }
1162     Out << " [#uses=" << V.getNumUses() << ']';  // Output # uses
1163   }
1164 }
1165
1166 // This member is called for each Instruction in a function..
1167 void AssemblyWriter::printInstruction(const Instruction &I) {
1168   if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
1169
1170   Out << "\t";
1171
1172   // Print out name if it exists...
1173   if (I.hasName())
1174     Out << getLLVMName(I.getName(), LocalPrefix) << " = ";
1175
1176   // If this is a volatile load or store, print out the volatile marker.
1177   if ((isa<LoadInst>(I)  && cast<LoadInst>(I).isVolatile()) ||
1178       (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile())) {
1179       Out << "volatile ";
1180   } else if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall()) {
1181     // If this is a call, check if it's a tail call.
1182     Out << "tail ";
1183   }
1184
1185   // Print out the opcode...
1186   Out << I.getOpcodeName();
1187
1188   // Print out the compare instruction predicates
1189   if (const FCmpInst *FCI = dyn_cast<FCmpInst>(&I)) {
1190     Out << " " << getPredicateText(FCI->getPredicate());
1191   } else if (const ICmpInst *ICI = dyn_cast<ICmpInst>(&I)) {
1192     Out << " " << getPredicateText(ICI->getPredicate());
1193   }
1194
1195   // Print out the type of the operands...
1196   const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
1197
1198   // Special case conditional branches to swizzle the condition out to the front
1199   if (isa<BranchInst>(I) && I.getNumOperands() > 1) {
1200     writeOperand(I.getOperand(2), true);
1201     Out << ',';
1202     writeOperand(Operand, true);
1203     Out << ',';
1204     writeOperand(I.getOperand(1), true);
1205
1206   } else if (isa<SwitchInst>(I)) {
1207     // Special case switch statement to get formatting nice and correct...
1208     writeOperand(Operand        , true); Out << ',';
1209     writeOperand(I.getOperand(1), true); Out << " [";
1210
1211     for (unsigned op = 2, Eop = I.getNumOperands(); op < Eop; op += 2) {
1212       Out << "\n\t\t";
1213       writeOperand(I.getOperand(op  ), true); Out << ',';
1214       writeOperand(I.getOperand(op+1), true);
1215     }
1216     Out << "\n\t]";
1217   } else if (isa<PHINode>(I)) {
1218     Out << ' ';
1219     printType(I.getType());
1220     Out << ' ';
1221
1222     for (unsigned op = 0, Eop = I.getNumOperands(); op < Eop; op += 2) {
1223       if (op) Out << ", ";
1224       Out << '[';
1225       writeOperand(I.getOperand(op  ), false); Out << ',';
1226       writeOperand(I.getOperand(op+1), false); Out << " ]";
1227     }
1228   } else if (isa<ReturnInst>(I) && !Operand) {
1229     Out << " void";
1230   } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1231     // Print the calling convention being used.
1232     switch (CI->getCallingConv()) {
1233     case CallingConv::C: break;   // default
1234     case CallingConv::Fast:  Out << " fastcc"; break;
1235     case CallingConv::Cold:  Out << " coldcc"; break;
1236     case CallingConv::X86_StdCall:  Out << "x86_stdcallcc "; break;
1237     case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break; 
1238     default: Out << " cc" << CI->getCallingConv(); break;
1239     }
1240
1241     const PointerType    *PTy = cast<PointerType>(Operand->getType());
1242     const FunctionType   *FTy = cast<FunctionType>(PTy->getElementType());
1243     const Type         *RetTy = FTy->getReturnType();
1244     const ParamAttrsList *PAL = FTy->getParamAttrs();
1245
1246     // If possible, print out the short form of the call instruction.  We can
1247     // only do this if the first argument is a pointer to a nonvararg function,
1248     // and if the return type is not a pointer to a function.
1249     //
1250     if (!FTy->isVarArg() &&
1251         (!isa<PointerType>(RetTy) ||
1252          !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
1253       Out << ' '; printType(RetTy);
1254       writeOperand(Operand, false);
1255     } else {
1256       writeOperand(Operand, true);
1257     }
1258     Out << '(';
1259     for (unsigned op = 1, Eop = I.getNumOperands(); op < Eop; ++op) {
1260       if (op > 1)
1261         Out << ',';
1262       writeOperand(I.getOperand(op), true);
1263       if (PAL && PAL->getParamAttrs(op) != ParamAttr::None)
1264         Out << " " << PAL->getParamAttrsTextByIndex(op);
1265     }
1266     Out << " )";
1267     if (PAL && PAL->getParamAttrs(0) != ParamAttr::None)
1268       Out << ' ' << PAL->getParamAttrsTextByIndex(0);
1269   } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
1270     const PointerType    *PTy = cast<PointerType>(Operand->getType());
1271     const FunctionType   *FTy = cast<FunctionType>(PTy->getElementType());
1272     const Type         *RetTy = FTy->getReturnType();
1273     const ParamAttrsList *PAL = FTy->getParamAttrs();
1274
1275     // Print the calling convention being used.
1276     switch (II->getCallingConv()) {
1277     case CallingConv::C: break;   // default
1278     case CallingConv::Fast:  Out << " fastcc"; break;
1279     case CallingConv::Cold:  Out << " coldcc"; break;
1280     case CallingConv::X86_StdCall:  Out << "x86_stdcallcc "; break;
1281     case CallingConv::X86_FastCall: Out << "x86_fastcallcc "; break;
1282     default: Out << " cc" << II->getCallingConv(); break;
1283     }
1284
1285     // If possible, print out the short form of the invoke instruction. We can
1286     // only do this if the first argument is a pointer to a nonvararg function,
1287     // and if the return type is not a pointer to a function.
1288     //
1289     if (!FTy->isVarArg() &&
1290         (!isa<PointerType>(RetTy) ||
1291          !isa<FunctionType>(cast<PointerType>(RetTy)->getElementType()))) {
1292       Out << ' '; printType(RetTy);
1293       writeOperand(Operand, false);
1294     } else {
1295       writeOperand(Operand, true);
1296     }
1297
1298     Out << '(';
1299     for (unsigned op = 3, Eop = I.getNumOperands(); op < Eop; ++op) {
1300       if (op > 3)
1301         Out << ',';
1302       writeOperand(I.getOperand(op), true);
1303       if (PAL && PAL->getParamAttrs(op-2) != ParamAttr::None)
1304         Out << " " << PAL->getParamAttrsTextByIndex(op-2);
1305     }
1306
1307     Out << " )";
1308     if (PAL && PAL->getParamAttrs(0) != ParamAttr::None)
1309       Out << " " << PAL->getParamAttrsTextByIndex(0);
1310     Out << "\n\t\t\tto";
1311     writeOperand(II->getNormalDest(), true);
1312     Out << " unwind";
1313     writeOperand(II->getUnwindDest(), true);
1314
1315   } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
1316     Out << ' ';
1317     printType(AI->getType()->getElementType());
1318     if (AI->isArrayAllocation()) {
1319       Out << ',';
1320       writeOperand(AI->getArraySize(), true);
1321     }
1322     if (AI->getAlignment()) {
1323       Out << ", align " << AI->getAlignment();
1324     }
1325   } else if (isa<CastInst>(I)) {
1326     if (Operand) writeOperand(Operand, true);   // Work with broken code
1327     Out << " to ";
1328     printType(I.getType());
1329   } else if (isa<VAArgInst>(I)) {
1330     if (Operand) writeOperand(Operand, true);   // Work with broken code
1331     Out << ", ";
1332     printType(I.getType());
1333   } else if (Operand) {   // Print the normal way...
1334
1335     // PrintAllTypes - Instructions who have operands of all the same type
1336     // omit the type from all but the first operand.  If the instruction has
1337     // different type operands (for example br), then they are all printed.
1338     bool PrintAllTypes = false;
1339     const Type *TheType = Operand->getType();
1340
1341     // Select, Store and ShuffleVector always print all types.
1342     if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)) {
1343       PrintAllTypes = true;
1344     } else {
1345       for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1346         Operand = I.getOperand(i);
1347         if (Operand->getType() != TheType) {
1348           PrintAllTypes = true;    // We have differing types!  Print them all!
1349           break;
1350         }
1351       }
1352     }
1353
1354     if (!PrintAllTypes) {
1355       Out << ' ';
1356       printType(TheType);
1357     }
1358
1359     for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
1360       if (i) Out << ',';
1361       writeOperand(I.getOperand(i), PrintAllTypes);
1362     }
1363   }
1364   
1365   // Print post operand alignment for load/store
1366   if (isa<LoadInst>(I) && cast<LoadInst>(I).getAlignment()) {
1367     Out << ", align " << cast<LoadInst>(I).getAlignment();
1368   } else if (isa<StoreInst>(I) && cast<StoreInst>(I).getAlignment()) {
1369     Out << ", align " << cast<StoreInst>(I).getAlignment();
1370   }
1371
1372   printInfoComment(I);
1373   Out << "\n";
1374 }
1375
1376
1377 //===----------------------------------------------------------------------===//
1378 //                       External Interface declarations
1379 //===----------------------------------------------------------------------===//
1380
1381 void Module::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
1382   SlotMachine SlotTable(this);
1383   AssemblyWriter W(o, SlotTable, this, AAW);
1384   W.write(this);
1385 }
1386
1387 void GlobalVariable::print(std::ostream &o) const {
1388   SlotMachine SlotTable(getParent());
1389   AssemblyWriter W(o, SlotTable, getParent(), 0);
1390   W.write(this);
1391 }
1392
1393 void GlobalAlias::print(std::ostream &o) const {
1394   SlotMachine SlotTable(getParent());
1395   AssemblyWriter W(o, SlotTable, getParent(), 0);
1396   W.write(this);
1397 }
1398
1399 void Function::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
1400   SlotMachine SlotTable(getParent());
1401   AssemblyWriter W(o, SlotTable, getParent(), AAW);
1402
1403   W.write(this);
1404 }
1405
1406 void InlineAsm::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
1407   WriteAsOperand(o, this, true, 0);
1408 }
1409
1410 void BasicBlock::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
1411   SlotMachine SlotTable(getParent());
1412   AssemblyWriter W(o, SlotTable,
1413                    getParent() ? getParent()->getParent() : 0, AAW);
1414   W.write(this);
1415 }
1416
1417 void Instruction::print(std::ostream &o, AssemblyAnnotationWriter *AAW) const {
1418   const Function *F = getParent() ? getParent()->getParent() : 0;
1419   SlotMachine SlotTable(F);
1420   AssemblyWriter W(o, SlotTable, F ? F->getParent() : 0, AAW);
1421
1422   W.write(this);
1423 }
1424
1425 void Constant::print(std::ostream &o) const {
1426   if (this == 0) { o << "<null> constant value\n"; return; }
1427
1428   o << ' ' << getType()->getDescription() << ' ';
1429
1430   std::map<const Type *, std::string> TypeTable;
1431   WriteConstantInt(o, this, TypeTable, 0);
1432 }
1433
1434 void Type::print(std::ostream &o) const {
1435   if (this == 0)
1436     o << "<null Type>";
1437   else
1438     o << getDescription();
1439 }
1440
1441 void Argument::print(std::ostream &o) const {
1442   WriteAsOperand(o, this, true, getParent() ? getParent()->getParent() : 0);
1443 }
1444
1445 // Value::dump - allow easy printing of  Values from the debugger.
1446 // Located here because so much of the needed functionality is here.
1447 void Value::dump() const { print(*cerr.stream()); cerr << '\n'; }
1448
1449 // Type::dump - allow easy printing of  Values from the debugger.
1450 // Located here because so much of the needed functionality is here.
1451 void Type::dump() const { print(*cerr.stream()); cerr << '\n'; }
1452
1453 void
1454 ParamAttrsList::dump() const {
1455   cerr << "PAL[ ";
1456   for (unsigned i = 0; i < attrs.size(); ++i) {
1457     uint16_t index = getParamIndex(i);
1458     uint16_t attrs = getParamAttrs(index);
1459     cerr << "{" << index << "," << attrs << "} ";
1460   }
1461   cerr << "]\n";
1462 }
1463
1464 //===----------------------------------------------------------------------===//
1465 //                         SlotMachine Implementation
1466 //===----------------------------------------------------------------------===//
1467
1468 #if 0
1469 #define SC_DEBUG(X) cerr << X
1470 #else
1471 #define SC_DEBUG(X)
1472 #endif
1473
1474 // Module level constructor. Causes the contents of the Module (sans functions)
1475 // to be added to the slot table.
1476 SlotMachine::SlotMachine(const Module *M)
1477   : TheModule(M)    ///< Saved for lazy initialization.
1478   , TheFunction(0)
1479   , FunctionProcessed(false)
1480   , mMap(), mNext(0), fMap(), fNext(0)
1481 {
1482 }
1483
1484 // Function level constructor. Causes the contents of the Module and the one
1485 // function provided to be added to the slot table.
1486 SlotMachine::SlotMachine(const Function *F)
1487   : TheModule(F ? F->getParent() : 0) ///< Saved for lazy initialization
1488   , TheFunction(F) ///< Saved for lazy initialization
1489   , FunctionProcessed(false)
1490   , mMap(), mNext(0), fMap(), fNext(0)
1491 {
1492 }
1493
1494 inline void SlotMachine::initialize() {
1495   if (TheModule) {
1496     processModule();
1497     TheModule = 0; ///< Prevent re-processing next time we're called.
1498   }
1499   if (TheFunction && !FunctionProcessed)
1500     processFunction();
1501 }
1502
1503 // Iterate through all the global variables, functions, and global
1504 // variable initializers and create slots for them.
1505 void SlotMachine::processModule() {
1506   SC_DEBUG("begin processModule!\n");
1507
1508   // Add all of the unnamed global variables to the value table.
1509   for (Module::const_global_iterator I = TheModule->global_begin(),
1510        E = TheModule->global_end(); I != E; ++I)
1511     if (!I->hasName()) 
1512       CreateModuleSlot(I);
1513
1514   // Add all the unnamed functions to the table.
1515   for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1516        I != E; ++I)
1517     if (!I->hasName())
1518       CreateModuleSlot(I);
1519
1520   SC_DEBUG("end processModule!\n");
1521 }
1522
1523
1524 // Process the arguments, basic blocks, and instructions  of a function.
1525 void SlotMachine::processFunction() {
1526   SC_DEBUG("begin processFunction!\n");
1527   fNext = 0;
1528
1529   // Add all the function arguments with no names.
1530   for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
1531       AE = TheFunction->arg_end(); AI != AE; ++AI)
1532     if (!AI->hasName())
1533       CreateFunctionSlot(AI);
1534
1535   SC_DEBUG("Inserting Instructions:\n");
1536
1537   // Add all of the basic blocks and instructions with no names.
1538   for (Function::const_iterator BB = TheFunction->begin(),
1539        E = TheFunction->end(); BB != E; ++BB) {
1540     if (!BB->hasName())
1541       CreateFunctionSlot(BB);
1542     for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
1543       if (I->getType() != Type::VoidTy && !I->hasName())
1544         CreateFunctionSlot(I);
1545   }
1546
1547   FunctionProcessed = true;
1548
1549   SC_DEBUG("end processFunction!\n");
1550 }
1551
1552 /// Clean up after incorporating a function. This is the only way to get out of
1553 /// the function incorporation state that affects get*Slot/Create*Slot. Function
1554 /// incorporation state is indicated by TheFunction != 0.
1555 void SlotMachine::purgeFunction() {
1556   SC_DEBUG("begin purgeFunction!\n");
1557   fMap.clear(); // Simply discard the function level map
1558   TheFunction = 0;
1559   FunctionProcessed = false;
1560   SC_DEBUG("end purgeFunction!\n");
1561 }
1562
1563 /// getGlobalSlot - Get the slot number of a global value.
1564 int SlotMachine::getGlobalSlot(const GlobalValue *V) {
1565   // Check for uninitialized state and do lazy initialization.
1566   initialize();
1567   
1568   // Find the type plane in the module map
1569   ValueMap::const_iterator MI = mMap.find(V);
1570   if (MI == mMap.end()) return -1;
1571
1572   return MI->second;
1573 }
1574
1575
1576 /// getLocalSlot - Get the slot number for a value that is local to a function.
1577 int SlotMachine::getLocalSlot(const Value *V) {
1578   assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
1579
1580   // Check for uninitialized state and do lazy initialization.
1581   initialize();
1582
1583   ValueMap::const_iterator FI = fMap.find(V);
1584   if (FI == fMap.end()) return -1;
1585   
1586   return FI->second;
1587 }
1588
1589
1590 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
1591 void SlotMachine::CreateModuleSlot(const GlobalValue *V) {
1592   assert(V && "Can't insert a null Value into SlotMachine!");
1593   assert(V->getType() != Type::VoidTy && "Doesn't need a slot!");
1594   assert(!V->hasName() && "Doesn't need a slot!");
1595   
1596   unsigned DestSlot = mNext++;
1597   mMap[V] = DestSlot;
1598   
1599   SC_DEBUG("  Inserting value [" << V->getType() << "] = " << V << " slot=" <<
1600            DestSlot << " [");
1601   // G = Global, F = Function, A = Alias, o = other
1602   SC_DEBUG((isa<GlobalVariable>(V) ? 'G' :
1603             (isa<Function> ? 'F' :
1604              (isa<GlobalAlias> ? 'A' : 'o'))) << "]\n");
1605 }
1606
1607
1608 /// CreateSlot - Create a new slot for the specified value if it has no name.
1609 void SlotMachine::CreateFunctionSlot(const Value *V) {
1610   const Type *VTy = V->getType();
1611   assert(VTy != Type::VoidTy && !V->hasName() && "Doesn't need a slot!");
1612   
1613   unsigned DestSlot = fNext++;
1614   fMap[V] = DestSlot;
1615   
1616   // G = Global, F = Function, o = other
1617   SC_DEBUG("  Inserting value [" << VTy << "] = " << V << " slot=" <<
1618            DestSlot << " [o]\n");
1619 }