7b2995f9b024563f96b02fcd43b2d66b94ef23c6
[oota-llvm.git] / lib / Target / CppBackend / CPPBackend.cpp
1 //===-- CPPBackend.cpp - Library for converting LLVM code to C++ code -----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the writing of the LLVM IR as a set of C++ calls to the
11 // LLVM IR interface. The input module is assumed to be verified.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "CPPTargetMachine.h"
16 #include "llvm/CallingConv.h"
17 #include "llvm/Constants.h"
18 #include "llvm/DerivedTypes.h"
19 #include "llvm/InlineAsm.h"
20 #include "llvm/Instruction.h"
21 #include "llvm/Instructions.h"
22 #include "llvm/Module.h"
23 #include "llvm/Pass.h"
24 #include "llvm/PassManager.h"
25 #include "llvm/TypeSymbolTable.h"
26 #include "llvm/Target/TargetMachineRegistry.h"
27 #include "llvm/ADT/StringExtras.h"
28 #include "llvm/ADT/STLExtras.h"
29 #include "llvm/ADT/SmallPtrSet.h"
30 #include "llvm/Support/CommandLine.h"
31 #include "llvm/Support/ErrorHandling.h"
32 #include "llvm/Support/FormattedStream.h"
33 #include "llvm/Support/Streams.h"
34 #include "llvm/Config/config.h"
35 #include <algorithm>
36 #include <set>
37
38 using namespace llvm;
39
40 static cl::opt<std::string>
41 FuncName("cppfname", cl::desc("Specify the name of the generated function"),
42          cl::value_desc("function name"));
43
44 enum WhatToGenerate {
45   GenProgram,
46   GenModule,
47   GenContents,
48   GenFunction,
49   GenFunctions,
50   GenInline,
51   GenVariable,
52   GenType
53 };
54
55 static cl::opt<WhatToGenerate> GenerationType("cppgen", cl::Optional,
56   cl::desc("Choose what kind of output to generate"),
57   cl::init(GenProgram),
58   cl::values(
59     clEnumValN(GenProgram,  "program",   "Generate a complete program"),
60     clEnumValN(GenModule,   "module",    "Generate a module definition"),
61     clEnumValN(GenContents, "contents",  "Generate contents of a module"),
62     clEnumValN(GenFunction, "function",  "Generate a function definition"),
63     clEnumValN(GenFunctions,"functions", "Generate all function definitions"),
64     clEnumValN(GenInline,   "inline",    "Generate an inline function"),
65     clEnumValN(GenVariable, "variable",  "Generate a variable definition"),
66     clEnumValN(GenType,     "type",      "Generate a type definition"),
67     clEnumValEnd
68   )
69 );
70
71 static cl::opt<std::string> NameToGenerate("cppfor", cl::Optional,
72   cl::desc("Specify the name of the thing to generate"),
73   cl::init("!bad!"));
74
75 /// CppBackendTargetMachineModule - Note that this is used on hosts
76 /// that cannot link in a library unless there are references into the
77 /// library.  In particular, it seems that it is not possible to get
78 /// things to work on Win32 without this.  Though it is unused, do not
79 /// remove it.
80 extern "C" int CppBackendTargetMachineModule;
81 int CppBackendTargetMachineModule = 0;
82
83 // Register the target.
84 extern Target TheCppBackendTarget;
85 static RegisterTarget<CPPTargetMachine> X(TheCppBackendTarget, "cpp", "C++ backend");
86
87 // Force static initialization.
88 extern "C" void LLVMInitializeCppBackendTarget() { }
89
90 namespace {
91   typedef std::vector<const Type*> TypeList;
92   typedef std::map<const Type*,std::string> TypeMap;
93   typedef std::map<const Value*,std::string> ValueMap;
94   typedef std::set<std::string> NameSet;
95   typedef std::set<const Type*> TypeSet;
96   typedef std::set<const Value*> ValueSet;
97   typedef std::map<const Value*,std::string> ForwardRefMap;
98
99   /// CppWriter - This class is the main chunk of code that converts an LLVM
100   /// module to a C++ translation unit.
101   class CppWriter : public ModulePass {
102     formatted_raw_ostream &Out;
103     const Module *TheModule;
104     uint64_t uniqueNum;
105     TypeMap TypeNames;
106     ValueMap ValueNames;
107     TypeMap UnresolvedTypes;
108     TypeList TypeStack;
109     NameSet UsedNames;
110     TypeSet DefinedTypes;
111     ValueSet DefinedValues;
112     ForwardRefMap ForwardRefs;
113     bool is_inline;
114
115   public:
116     static char ID;
117     explicit CppWriter(formatted_raw_ostream &o) :
118       ModulePass(&ID), Out(o), uniqueNum(0), is_inline(false) {}
119
120     virtual const char *getPassName() const { return "C++ backend"; }
121
122     bool runOnModule(Module &M);
123
124     void printProgram(const std::string& fname, const std::string& modName );
125     void printModule(const std::string& fname, const std::string& modName );
126     void printContents(const std::string& fname, const std::string& modName );
127     void printFunction(const std::string& fname, const std::string& funcName );
128     void printFunctions();
129     void printInline(const std::string& fname, const std::string& funcName );
130     void printVariable(const std::string& fname, const std::string& varName );
131     void printType(const std::string& fname, const std::string& typeName );
132
133     void error(const std::string& msg);
134
135   private:
136     void printLinkageType(GlobalValue::LinkageTypes LT);
137     void printVisibilityType(GlobalValue::VisibilityTypes VisTypes);
138     void printCallingConv(unsigned cc);
139     void printEscapedString(const std::string& str);
140     void printCFP(const ConstantFP* CFP);
141
142     std::string getCppName(const Type* val);
143     inline void printCppName(const Type* val);
144
145     std::string getCppName(const Value* val);
146     inline void printCppName(const Value* val);
147
148     void printAttributes(const AttrListPtr &PAL, const std::string &name);
149     bool printTypeInternal(const Type* Ty);
150     inline void printType(const Type* Ty);
151     void printTypes(const Module* M);
152
153     void printConstant(const Constant *CPV);
154     void printConstants(const Module* M);
155
156     void printVariableUses(const GlobalVariable *GV);
157     void printVariableHead(const GlobalVariable *GV);
158     void printVariableBody(const GlobalVariable *GV);
159
160     void printFunctionUses(const Function *F);
161     void printFunctionHead(const Function *F);
162     void printFunctionBody(const Function *F);
163     void printInstruction(const Instruction *I, const std::string& bbname);
164     std::string getOpName(Value*);
165
166     void printModuleBody();
167   };
168
169   static unsigned indent_level = 0;
170   inline formatted_raw_ostream& nl(formatted_raw_ostream& Out, int delta = 0) {
171     Out << "\n";
172     if (delta >= 0 || indent_level >= unsigned(-delta))
173       indent_level += delta;
174     for (unsigned i = 0; i < indent_level; ++i)
175       Out << "  ";
176     return Out;
177   }
178
179   inline void in() { indent_level++; }
180   inline void out() { if (indent_level >0) indent_level--; }
181
182   inline void
183   sanitize(std::string& str) {
184     for (size_t i = 0; i < str.length(); ++i)
185       if (!isalnum(str[i]) && str[i] != '_')
186         str[i] = '_';
187   }
188
189   inline std::string
190   getTypePrefix(const Type* Ty ) {
191     switch (Ty->getTypeID()) {
192     case Type::VoidTyID:     return "void_";
193     case Type::IntegerTyID:
194       return std::string("int") + utostr(cast<IntegerType>(Ty)->getBitWidth()) +
195         "_";
196     case Type::FloatTyID:    return "float_";
197     case Type::DoubleTyID:   return "double_";
198     case Type::LabelTyID:    return "label_";
199     case Type::FunctionTyID: return "func_";
200     case Type::StructTyID:   return "struct_";
201     case Type::ArrayTyID:    return "array_";
202     case Type::PointerTyID:  return "ptr_";
203     case Type::VectorTyID:   return "packed_";
204     case Type::OpaqueTyID:   return "opaque_";
205     default:                 return "other_";
206     }
207     return "unknown_";
208   }
209
210   // Looks up the type in the symbol table and returns a pointer to its name or
211   // a null pointer if it wasn't found. Note that this isn't the same as the
212   // Mode::getTypeName function which will return an empty string, not a null
213   // pointer if the name is not found.
214   inline const std::string*
215   findTypeName(const TypeSymbolTable& ST, const Type* Ty) {
216     TypeSymbolTable::const_iterator TI = ST.begin();
217     TypeSymbolTable::const_iterator TE = ST.end();
218     for (;TI != TE; ++TI)
219       if (TI->second == Ty)
220         return &(TI->first);
221     return 0;
222   }
223
224   void CppWriter::error(const std::string& msg) {
225     llvm_report_error(msg);
226   }
227
228   // printCFP - Print a floating point constant .. very carefully :)
229   // This makes sure that conversion to/from floating yields the same binary
230   // result so that we don't lose precision.
231   void CppWriter::printCFP(const ConstantFP *CFP) {
232     bool ignored;
233     APFloat APF = APFloat(CFP->getValueAPF());  // copy
234     if (CFP->getType() == Type::FloatTy)
235       APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
236     Out << "ConstantFP::get(";
237     Out << "APFloat(";
238 #if HAVE_PRINTF_A
239     char Buffer[100];
240     sprintf(Buffer, "%A", APF.convertToDouble());
241     if ((!strncmp(Buffer, "0x", 2) ||
242          !strncmp(Buffer, "-0x", 3) ||
243          !strncmp(Buffer, "+0x", 3)) &&
244         APF.bitwiseIsEqual(APFloat(atof(Buffer)))) {
245       if (CFP->getType() == Type::DoubleTy)
246         Out << "BitsToDouble(" << Buffer << ")";
247       else
248         Out << "BitsToFloat((float)" << Buffer << ")";
249       Out << ")";
250     } else {
251 #endif
252       std::string StrVal = ftostr(CFP->getValueAPF());
253
254       while (StrVal[0] == ' ')
255         StrVal.erase(StrVal.begin());
256
257       // Check to make sure that the stringized number is not some string like
258       // "Inf" or NaN.  Check that the string matches the "[-+]?[0-9]" regex.
259       if (((StrVal[0] >= '0' && StrVal[0] <= '9') ||
260            ((StrVal[0] == '-' || StrVal[0] == '+') &&
261             (StrVal[1] >= '0' && StrVal[1] <= '9'))) &&
262           (CFP->isExactlyValue(atof(StrVal.c_str())))) {
263         if (CFP->getType() == Type::DoubleTy)
264           Out <<  StrVal;
265         else
266           Out << StrVal << "f";
267       } else if (CFP->getType() == Type::DoubleTy)
268         Out << "BitsToDouble(0x"
269             << utohexstr(CFP->getValueAPF().bitcastToAPInt().getZExtValue())
270             << "ULL) /* " << StrVal << " */";
271       else
272         Out << "BitsToFloat(0x"
273             << utohexstr((uint32_t)CFP->getValueAPF().
274                                         bitcastToAPInt().getZExtValue())
275             << "U) /* " << StrVal << " */";
276       Out << ")";
277 #if HAVE_PRINTF_A
278     }
279 #endif
280     Out << ")";
281   }
282
283   void CppWriter::printCallingConv(unsigned cc){
284     // Print the calling convention.
285     switch (cc) {
286     case CallingConv::C:     Out << "CallingConv::C"; break;
287     case CallingConv::Fast:  Out << "CallingConv::Fast"; break;
288     case CallingConv::Cold:  Out << "CallingConv::Cold"; break;
289     case CallingConv::FirstTargetCC: Out << "CallingConv::FirstTargetCC"; break;
290     default:                 Out << cc; break;
291     }
292   }
293
294   void CppWriter::printLinkageType(GlobalValue::LinkageTypes LT) {
295     switch (LT) {
296     case GlobalValue::InternalLinkage:
297       Out << "GlobalValue::InternalLinkage"; break;
298     case GlobalValue::PrivateLinkage:
299       Out << "GlobalValue::PrivateLinkage"; break;
300     case GlobalValue::AvailableExternallyLinkage:
301       Out << "GlobalValue::AvailableExternallyLinkage "; break;
302     case GlobalValue::LinkOnceAnyLinkage:
303       Out << "GlobalValue::LinkOnceAnyLinkage "; break;
304     case GlobalValue::LinkOnceODRLinkage:
305       Out << "GlobalValue::LinkOnceODRLinkage "; break;
306     case GlobalValue::WeakAnyLinkage:
307       Out << "GlobalValue::WeakAnyLinkage"; break;
308     case GlobalValue::WeakODRLinkage:
309       Out << "GlobalValue::WeakODRLinkage"; break;
310     case GlobalValue::AppendingLinkage:
311       Out << "GlobalValue::AppendingLinkage"; break;
312     case GlobalValue::ExternalLinkage:
313       Out << "GlobalValue::ExternalLinkage"; break;
314     case GlobalValue::DLLImportLinkage:
315       Out << "GlobalValue::DLLImportLinkage"; break;
316     case GlobalValue::DLLExportLinkage:
317       Out << "GlobalValue::DLLExportLinkage"; break;
318     case GlobalValue::ExternalWeakLinkage:
319       Out << "GlobalValue::ExternalWeakLinkage"; break;
320     case GlobalValue::GhostLinkage:
321       Out << "GlobalValue::GhostLinkage"; break;
322     case GlobalValue::CommonLinkage:
323       Out << "GlobalValue::CommonLinkage"; break;
324     }
325   }
326
327   void CppWriter::printVisibilityType(GlobalValue::VisibilityTypes VisType) {
328     switch (VisType) {
329     default: llvm_unreachable("Unknown GVar visibility");
330     case GlobalValue::DefaultVisibility:
331       Out << "GlobalValue::DefaultVisibility";
332       break;
333     case GlobalValue::HiddenVisibility:
334       Out << "GlobalValue::HiddenVisibility";
335       break;
336     case GlobalValue::ProtectedVisibility:
337       Out << "GlobalValue::ProtectedVisibility";
338       break;
339     }
340   }
341
342   // printEscapedString - Print each character of the specified string, escaping
343   // it if it is not printable or if it is an escape char.
344   void CppWriter::printEscapedString(const std::string &Str) {
345     for (unsigned i = 0, e = Str.size(); i != e; ++i) {
346       unsigned char C = Str[i];
347       if (isprint(C) && C != '"' && C != '\\') {
348         Out << C;
349       } else {
350         Out << "\\x"
351             << (char) ((C/16  < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
352             << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
353       }
354     }
355   }
356
357   std::string CppWriter::getCppName(const Type* Ty) {
358     // First, handle the primitive types .. easy
359     if (Ty->isPrimitiveType() || Ty->isInteger()) {
360       switch (Ty->getTypeID()) {
361       case Type::VoidTyID:   return "Type::VoidTy";
362       case Type::IntegerTyID: {
363         unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
364         return "IntegerType::get(" + utostr(BitWidth) + ")";
365       }
366       case Type::X86_FP80TyID: return "Type::X86_FP80Ty";
367       case Type::FloatTyID:    return "Type::FloatTy";
368       case Type::DoubleTyID:   return "Type::DoubleTy";
369       case Type::LabelTyID:    return "Type::LabelTy";
370       default:
371         error("Invalid primitive type");
372         break;
373       }
374       return "Type::VoidTy"; // shouldn't be returned, but make it sensible
375     }
376
377     // Now, see if we've seen the type before and return that
378     TypeMap::iterator I = TypeNames.find(Ty);
379     if (I != TypeNames.end())
380       return I->second;
381
382     // Okay, let's build a new name for this type. Start with a prefix
383     const char* prefix = 0;
384     switch (Ty->getTypeID()) {
385     case Type::FunctionTyID:    prefix = "FuncTy_"; break;
386     case Type::StructTyID:      prefix = "StructTy_"; break;
387     case Type::ArrayTyID:       prefix = "ArrayTy_"; break;
388     case Type::PointerTyID:     prefix = "PointerTy_"; break;
389     case Type::OpaqueTyID:      prefix = "OpaqueTy_"; break;
390     case Type::VectorTyID:      prefix = "VectorTy_"; break;
391     default:                    prefix = "OtherTy_"; break; // prevent breakage
392     }
393
394     // See if the type has a name in the symboltable and build accordingly
395     const std::string* tName = findTypeName(TheModule->getTypeSymbolTable(), Ty);
396     std::string name;
397     if (tName)
398       name = std::string(prefix) + *tName;
399     else
400       name = std::string(prefix) + utostr(uniqueNum++);
401     sanitize(name);
402
403     // Save the name
404     return TypeNames[Ty] = name;
405   }
406
407   void CppWriter::printCppName(const Type* Ty) {
408     printEscapedString(getCppName(Ty));
409   }
410
411   std::string CppWriter::getCppName(const Value* val) {
412     std::string name;
413     ValueMap::iterator I = ValueNames.find(val);
414     if (I != ValueNames.end() && I->first == val)
415       return  I->second;
416
417     if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(val)) {
418       name = std::string("gvar_") +
419         getTypePrefix(GV->getType()->getElementType());
420     } else if (isa<Function>(val)) {
421       name = std::string("func_");
422     } else if (const Constant* C = dyn_cast<Constant>(val)) {
423       name = std::string("const_") + getTypePrefix(C->getType());
424     } else if (const Argument* Arg = dyn_cast<Argument>(val)) {
425       if (is_inline) {
426         unsigned argNum = std::distance(Arg->getParent()->arg_begin(),
427                                         Function::const_arg_iterator(Arg)) + 1;
428         name = std::string("arg_") + utostr(argNum);
429         NameSet::iterator NI = UsedNames.find(name);
430         if (NI != UsedNames.end())
431           name += std::string("_") + utostr(uniqueNum++);
432         UsedNames.insert(name);
433         return ValueNames[val] = name;
434       } else {
435         name = getTypePrefix(val->getType());
436       }
437     } else {
438       name = getTypePrefix(val->getType());
439     }
440     name += (val->hasName() ? val->getName() : utostr(uniqueNum++));
441     sanitize(name);
442     NameSet::iterator NI = UsedNames.find(name);
443     if (NI != UsedNames.end())
444       name += std::string("_") + utostr(uniqueNum++);
445     UsedNames.insert(name);
446     return ValueNames[val] = name;
447   }
448
449   void CppWriter::printCppName(const Value* val) {
450     printEscapedString(getCppName(val));
451   }
452
453   void CppWriter::printAttributes(const AttrListPtr &PAL,
454                                   const std::string &name) {
455     Out << "AttrListPtr " << name << "_PAL;";
456     nl(Out);
457     if (!PAL.isEmpty()) {
458       Out << '{'; in(); nl(Out);
459       Out << "SmallVector<AttributeWithIndex, 4> Attrs;"; nl(Out);
460       Out << "AttributeWithIndex PAWI;"; nl(Out);
461       for (unsigned i = 0; i < PAL.getNumSlots(); ++i) {
462         unsigned index = PAL.getSlot(i).Index;
463         Attributes attrs = PAL.getSlot(i).Attrs;
464         Out << "PAWI.Index = " << index << "U; PAWI.Attrs = 0 ";
465 #define HANDLE_ATTR(X)                 \
466         if (attrs & Attribute::X)      \
467           Out << " | Attribute::" #X;  \
468         attrs &= ~Attribute::X;
469         
470         HANDLE_ATTR(SExt);
471         HANDLE_ATTR(ZExt);
472         HANDLE_ATTR(NoReturn);
473         HANDLE_ATTR(InReg);
474         HANDLE_ATTR(StructRet);
475         HANDLE_ATTR(NoUnwind);
476         HANDLE_ATTR(NoAlias);
477         HANDLE_ATTR(ByVal);
478         HANDLE_ATTR(Nest);
479         HANDLE_ATTR(ReadNone);
480         HANDLE_ATTR(ReadOnly);
481         HANDLE_ATTR(NoInline);
482         HANDLE_ATTR(AlwaysInline);
483         HANDLE_ATTR(OptimizeForSize);
484         HANDLE_ATTR(StackProtect);
485         HANDLE_ATTR(StackProtectReq);
486         HANDLE_ATTR(NoCapture);
487 #undef HANDLE_ATTR
488         assert(attrs == 0 && "Unhandled attribute!");
489         Out << ";";
490         nl(Out);
491         Out << "Attrs.push_back(PAWI);";
492         nl(Out);
493       }
494       Out << name << "_PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());";
495       nl(Out);
496       out(); nl(Out);
497       Out << '}'; nl(Out);
498     }
499   }
500
501   bool CppWriter::printTypeInternal(const Type* Ty) {
502     // We don't print definitions for primitive types
503     if (Ty->isPrimitiveType() || Ty->isInteger())
504       return false;
505
506     // If we already defined this type, we don't need to define it again.
507     if (DefinedTypes.find(Ty) != DefinedTypes.end())
508       return false;
509
510     // Everything below needs the name for the type so get it now.
511     std::string typeName(getCppName(Ty));
512
513     // Search the type stack for recursion. If we find it, then generate this
514     // as an OpaqueType, but make sure not to do this multiple times because
515     // the type could appear in multiple places on the stack. Once the opaque
516     // definition is issued, it must not be re-issued. Consequently we have to
517     // check the UnresolvedTypes list as well.
518     TypeList::const_iterator TI = std::find(TypeStack.begin(), TypeStack.end(),
519                                             Ty);
520     if (TI != TypeStack.end()) {
521       TypeMap::const_iterator I = UnresolvedTypes.find(Ty);
522       if (I == UnresolvedTypes.end()) {
523         Out << "PATypeHolder " << typeName << "_fwd = OpaqueType::get();";
524         nl(Out);
525         UnresolvedTypes[Ty] = typeName;
526       }
527       return true;
528     }
529
530     // We're going to print a derived type which, by definition, contains other
531     // types. So, push this one we're printing onto the type stack to assist with
532     // recursive definitions.
533     TypeStack.push_back(Ty);
534
535     // Print the type definition
536     switch (Ty->getTypeID()) {
537     case Type::FunctionTyID:  {
538       const FunctionType* FT = cast<FunctionType>(Ty);
539       Out << "std::vector<const Type*>" << typeName << "_args;";
540       nl(Out);
541       FunctionType::param_iterator PI = FT->param_begin();
542       FunctionType::param_iterator PE = FT->param_end();
543       for (; PI != PE; ++PI) {
544         const Type* argTy = static_cast<const Type*>(*PI);
545         bool isForward = printTypeInternal(argTy);
546         std::string argName(getCppName(argTy));
547         Out << typeName << "_args.push_back(" << argName;
548         if (isForward)
549           Out << "_fwd";
550         Out << ");";
551         nl(Out);
552       }
553       bool isForward = printTypeInternal(FT->getReturnType());
554       std::string retTypeName(getCppName(FT->getReturnType()));
555       Out << "FunctionType* " << typeName << " = FunctionType::get(";
556       in(); nl(Out) << "/*Result=*/" << retTypeName;
557       if (isForward)
558         Out << "_fwd";
559       Out << ",";
560       nl(Out) << "/*Params=*/" << typeName << "_args,";
561       nl(Out) << "/*isVarArg=*/" << (FT->isVarArg() ? "true" : "false") << ");";
562       out();
563       nl(Out);
564       break;
565     }
566     case Type::StructTyID: {
567       const StructType* ST = cast<StructType>(Ty);
568       Out << "std::vector<const Type*>" << typeName << "_fields;";
569       nl(Out);
570       StructType::element_iterator EI = ST->element_begin();
571       StructType::element_iterator EE = ST->element_end();
572       for (; EI != EE; ++EI) {
573         const Type* fieldTy = static_cast<const Type*>(*EI);
574         bool isForward = printTypeInternal(fieldTy);
575         std::string fieldName(getCppName(fieldTy));
576         Out << typeName << "_fields.push_back(" << fieldName;
577         if (isForward)
578           Out << "_fwd";
579         Out << ");";
580         nl(Out);
581       }
582       Out << "StructType* " << typeName << " = StructType::get("
583           << typeName << "_fields, /*isPacked=*/"
584           << (ST->isPacked() ? "true" : "false") << ");";
585       nl(Out);
586       break;
587     }
588     case Type::ArrayTyID: {
589       const ArrayType* AT = cast<ArrayType>(Ty);
590       const Type* ET = AT->getElementType();
591       bool isForward = printTypeInternal(ET);
592       std::string elemName(getCppName(ET));
593       Out << "ArrayType* " << typeName << " = ArrayType::get("
594           << elemName << (isForward ? "_fwd" : "")
595           << ", " << utostr(AT->getNumElements()) << ");";
596       nl(Out);
597       break;
598     }
599     case Type::PointerTyID: {
600       const PointerType* PT = cast<PointerType>(Ty);
601       const Type* ET = PT->getElementType();
602       bool isForward = printTypeInternal(ET);
603       std::string elemName(getCppName(ET));
604       Out << "PointerType* " << typeName << " = PointerType::get("
605           << elemName << (isForward ? "_fwd" : "")
606           << ", " << utostr(PT->getAddressSpace()) << ");";
607       nl(Out);
608       break;
609     }
610     case Type::VectorTyID: {
611       const VectorType* PT = cast<VectorType>(Ty);
612       const Type* ET = PT->getElementType();
613       bool isForward = printTypeInternal(ET);
614       std::string elemName(getCppName(ET));
615       Out << "VectorType* " << typeName << " = VectorType::get("
616           << elemName << (isForward ? "_fwd" : "")
617           << ", " << utostr(PT->getNumElements()) << ");";
618       nl(Out);
619       break;
620     }
621     case Type::OpaqueTyID: {
622       Out << "OpaqueType* " << typeName << " = OpaqueType::get();";
623       nl(Out);
624       break;
625     }
626     default:
627       error("Invalid TypeID");
628     }
629
630     // If the type had a name, make sure we recreate it.
631     const std::string* progTypeName =
632       findTypeName(TheModule->getTypeSymbolTable(),Ty);
633     if (progTypeName) {
634       Out << "mod->addTypeName(\"" << *progTypeName << "\", "
635           << typeName << ");";
636       nl(Out);
637     }
638
639     // Pop us off the type stack
640     TypeStack.pop_back();
641
642     // Indicate that this type is now defined.
643     DefinedTypes.insert(Ty);
644
645     // Early resolve as many unresolved types as possible. Search the unresolved
646     // types map for the type we just printed. Now that its definition is complete
647     // we can resolve any previous references to it. This prevents a cascade of
648     // unresolved types.
649     TypeMap::iterator I = UnresolvedTypes.find(Ty);
650     if (I != UnresolvedTypes.end()) {
651       Out << "cast<OpaqueType>(" << I->second
652           << "_fwd.get())->refineAbstractTypeTo(" << I->second << ");";
653       nl(Out);
654       Out << I->second << " = cast<";
655       switch (Ty->getTypeID()) {
656       case Type::FunctionTyID: Out << "FunctionType"; break;
657       case Type::ArrayTyID:    Out << "ArrayType"; break;
658       case Type::StructTyID:   Out << "StructType"; break;
659       case Type::VectorTyID:   Out << "VectorType"; break;
660       case Type::PointerTyID:  Out << "PointerType"; break;
661       case Type::OpaqueTyID:   Out << "OpaqueType"; break;
662       default:                 Out << "NoSuchDerivedType"; break;
663       }
664       Out << ">(" << I->second << "_fwd.get());";
665       nl(Out); nl(Out);
666       UnresolvedTypes.erase(I);
667     }
668
669     // Finally, separate the type definition from other with a newline.
670     nl(Out);
671
672     // We weren't a recursive type
673     return false;
674   }
675
676   // Prints a type definition. Returns true if it could not resolve all the
677   // types in the definition but had to use a forward reference.
678   void CppWriter::printType(const Type* Ty) {
679     assert(TypeStack.empty());
680     TypeStack.clear();
681     printTypeInternal(Ty);
682     assert(TypeStack.empty());
683   }
684
685   void CppWriter::printTypes(const Module* M) {
686     // Walk the symbol table and print out all its types
687     const TypeSymbolTable& symtab = M->getTypeSymbolTable();
688     for (TypeSymbolTable::const_iterator TI = symtab.begin(), TE = symtab.end();
689          TI != TE; ++TI) {
690
691       // For primitive types and types already defined, just add a name
692       TypeMap::const_iterator TNI = TypeNames.find(TI->second);
693       if (TI->second->isInteger() || TI->second->isPrimitiveType() ||
694           TNI != TypeNames.end()) {
695         Out << "mod->addTypeName(\"";
696         printEscapedString(TI->first);
697         Out << "\", " << getCppName(TI->second) << ");";
698         nl(Out);
699         // For everything else, define the type
700       } else {
701         printType(TI->second);
702       }
703     }
704
705     // Add all of the global variables to the value table...
706     for (Module::const_global_iterator I = TheModule->global_begin(),
707            E = TheModule->global_end(); I != E; ++I) {
708       if (I->hasInitializer())
709         printType(I->getInitializer()->getType());
710       printType(I->getType());
711     }
712
713     // Add all the functions to the table
714     for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
715          FI != FE; ++FI) {
716       printType(FI->getReturnType());
717       printType(FI->getFunctionType());
718       // Add all the function arguments
719       for (Function::const_arg_iterator AI = FI->arg_begin(),
720              AE = FI->arg_end(); AI != AE; ++AI) {
721         printType(AI->getType());
722       }
723
724       // Add all of the basic blocks and instructions
725       for (Function::const_iterator BB = FI->begin(),
726              E = FI->end(); BB != E; ++BB) {
727         printType(BB->getType());
728         for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
729              ++I) {
730           printType(I->getType());
731           for (unsigned i = 0; i < I->getNumOperands(); ++i)
732             printType(I->getOperand(i)->getType());
733         }
734       }
735     }
736   }
737
738
739   // printConstant - Print out a constant pool entry...
740   void CppWriter::printConstant(const Constant *CV) {
741     // First, if the constant is actually a GlobalValue (variable or function)
742     // or its already in the constant list then we've printed it already and we
743     // can just return.
744     if (isa<GlobalValue>(CV) || ValueNames.find(CV) != ValueNames.end())
745       return;
746
747     std::string constName(getCppName(CV));
748     std::string typeName(getCppName(CV->getType()));
749
750     if (isa<GlobalValue>(CV)) {
751       // Skip variables and functions, we emit them elsewhere
752       return;
753     }
754
755     if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
756       std::string constValue = CI->getValue().toString(10, true);
757       Out << "ConstantInt* " << constName << " = ConstantInt::get(APInt("
758           << cast<IntegerType>(CI->getType())->getBitWidth() << ",  \""
759           <<  constValue << "\", " << constValue.length() << ", 10));";
760     } else if (isa<ConstantAggregateZero>(CV)) {
761       Out << "ConstantAggregateZero* " << constName
762           << " = ConstantAggregateZero::get(" << typeName << ");";
763     } else if (isa<ConstantPointerNull>(CV)) {
764       Out << "ConstantPointerNull* " << constName
765           << " = ConstantPointerNull::get(" << typeName << ");";
766     } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
767       Out << "ConstantFP* " << constName << " = ";
768       printCFP(CFP);
769       Out << ";";
770     } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
771       if (CA->isString() && CA->getType()->getElementType() == Type::Int8Ty) {
772         Out << "Constant* " << constName << " = ConstantArray::get(\"";
773         std::string tmp = CA->getAsString();
774         bool nullTerminate = false;
775         if (tmp[tmp.length()-1] == 0) {
776           tmp.erase(tmp.length()-1);
777           nullTerminate = true;
778         }
779         printEscapedString(tmp);
780         // Determine if we want null termination or not.
781         if (nullTerminate)
782           Out << "\", true"; // Indicate that the null terminator should be
783                              // added.
784         else
785           Out << "\", false";// No null terminator
786         Out << ");";
787       } else {
788         Out << "std::vector<Constant*> " << constName << "_elems;";
789         nl(Out);
790         unsigned N = CA->getNumOperands();
791         for (unsigned i = 0; i < N; ++i) {
792           printConstant(CA->getOperand(i)); // recurse to print operands
793           Out << constName << "_elems.push_back("
794               << getCppName(CA->getOperand(i)) << ");";
795           nl(Out);
796         }
797         Out << "Constant* " << constName << " = ConstantArray::get("
798             << typeName << ", " << constName << "_elems);";
799       }
800     } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
801       Out << "std::vector<Constant*> " << constName << "_fields;";
802       nl(Out);
803       unsigned N = CS->getNumOperands();
804       for (unsigned i = 0; i < N; i++) {
805         printConstant(CS->getOperand(i));
806         Out << constName << "_fields.push_back("
807             << getCppName(CS->getOperand(i)) << ");";
808         nl(Out);
809       }
810       Out << "Constant* " << constName << " = ConstantStruct::get("
811           << typeName << ", " << constName << "_fields);";
812     } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
813       Out << "std::vector<Constant*> " << constName << "_elems;";
814       nl(Out);
815       unsigned N = CP->getNumOperands();
816       for (unsigned i = 0; i < N; ++i) {
817         printConstant(CP->getOperand(i));
818         Out << constName << "_elems.push_back("
819             << getCppName(CP->getOperand(i)) << ");";
820         nl(Out);
821       }
822       Out << "Constant* " << constName << " = ConstantVector::get("
823           << typeName << ", " << constName << "_elems);";
824     } else if (isa<UndefValue>(CV)) {
825       Out << "UndefValue* " << constName << " = UndefValue::get("
826           << typeName << ");";
827     } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
828       if (CE->getOpcode() == Instruction::GetElementPtr) {
829         Out << "std::vector<Constant*> " << constName << "_indices;";
830         nl(Out);
831         printConstant(CE->getOperand(0));
832         for (unsigned i = 1; i < CE->getNumOperands(); ++i ) {
833           printConstant(CE->getOperand(i));
834           Out << constName << "_indices.push_back("
835               << getCppName(CE->getOperand(i)) << ");";
836           nl(Out);
837         }
838         Out << "Constant* " << constName
839             << " = ConstantExpr::getGetElementPtr("
840             << getCppName(CE->getOperand(0)) << ", "
841             << "&" << constName << "_indices[0], "
842             << constName << "_indices.size()"
843             << " );";
844       } else if (CE->isCast()) {
845         printConstant(CE->getOperand(0));
846         Out << "Constant* " << constName << " = ConstantExpr::getCast(";
847         switch (CE->getOpcode()) {
848         default: llvm_unreachable("Invalid cast opcode");
849         case Instruction::Trunc: Out << "Instruction::Trunc"; break;
850         case Instruction::ZExt:  Out << "Instruction::ZExt"; break;
851         case Instruction::SExt:  Out << "Instruction::SExt"; break;
852         case Instruction::FPTrunc:  Out << "Instruction::FPTrunc"; break;
853         case Instruction::FPExt:  Out << "Instruction::FPExt"; break;
854         case Instruction::FPToUI:  Out << "Instruction::FPToUI"; break;
855         case Instruction::FPToSI:  Out << "Instruction::FPToSI"; break;
856         case Instruction::UIToFP:  Out << "Instruction::UIToFP"; break;
857         case Instruction::SIToFP:  Out << "Instruction::SIToFP"; break;
858         case Instruction::PtrToInt:  Out << "Instruction::PtrToInt"; break;
859         case Instruction::IntToPtr:  Out << "Instruction::IntToPtr"; break;
860         case Instruction::BitCast:  Out << "Instruction::BitCast"; break;
861         }
862         Out << ", " << getCppName(CE->getOperand(0)) << ", "
863             << getCppName(CE->getType()) << ");";
864       } else {
865         unsigned N = CE->getNumOperands();
866         for (unsigned i = 0; i < N; ++i ) {
867           printConstant(CE->getOperand(i));
868         }
869         Out << "Constant* " << constName << " = ConstantExpr::";
870         switch (CE->getOpcode()) {
871         case Instruction::Add:    Out << "getAdd(";  break;
872         case Instruction::FAdd:   Out << "getFAdd(";  break;
873         case Instruction::Sub:    Out << "getSub("; break;
874         case Instruction::FSub:   Out << "getFSub("; break;
875         case Instruction::Mul:    Out << "getMul("; break;
876         case Instruction::FMul:   Out << "getFMul("; break;
877         case Instruction::UDiv:   Out << "getUDiv("; break;
878         case Instruction::SDiv:   Out << "getSDiv("; break;
879         case Instruction::FDiv:   Out << "getFDiv("; break;
880         case Instruction::URem:   Out << "getURem("; break;
881         case Instruction::SRem:   Out << "getSRem("; break;
882         case Instruction::FRem:   Out << "getFRem("; break;
883         case Instruction::And:    Out << "getAnd("; break;
884         case Instruction::Or:     Out << "getOr("; break;
885         case Instruction::Xor:    Out << "getXor("; break;
886         case Instruction::ICmp:
887           Out << "getICmp(ICmpInst::ICMP_";
888           switch (CE->getPredicate()) {
889           case ICmpInst::ICMP_EQ:  Out << "EQ"; break;
890           case ICmpInst::ICMP_NE:  Out << "NE"; break;
891           case ICmpInst::ICMP_SLT: Out << "SLT"; break;
892           case ICmpInst::ICMP_ULT: Out << "ULT"; break;
893           case ICmpInst::ICMP_SGT: Out << "SGT"; break;
894           case ICmpInst::ICMP_UGT: Out << "UGT"; break;
895           case ICmpInst::ICMP_SLE: Out << "SLE"; break;
896           case ICmpInst::ICMP_ULE: Out << "ULE"; break;
897           case ICmpInst::ICMP_SGE: Out << "SGE"; break;
898           case ICmpInst::ICMP_UGE: Out << "UGE"; break;
899           default: error("Invalid ICmp Predicate");
900           }
901           break;
902         case Instruction::FCmp:
903           Out << "getFCmp(FCmpInst::FCMP_";
904           switch (CE->getPredicate()) {
905           case FCmpInst::FCMP_FALSE: Out << "FALSE"; break;
906           case FCmpInst::FCMP_ORD:   Out << "ORD"; break;
907           case FCmpInst::FCMP_UNO:   Out << "UNO"; break;
908           case FCmpInst::FCMP_OEQ:   Out << "OEQ"; break;
909           case FCmpInst::FCMP_UEQ:   Out << "UEQ"; break;
910           case FCmpInst::FCMP_ONE:   Out << "ONE"; break;
911           case FCmpInst::FCMP_UNE:   Out << "UNE"; break;
912           case FCmpInst::FCMP_OLT:   Out << "OLT"; break;
913           case FCmpInst::FCMP_ULT:   Out << "ULT"; break;
914           case FCmpInst::FCMP_OGT:   Out << "OGT"; break;
915           case FCmpInst::FCMP_UGT:   Out << "UGT"; break;
916           case FCmpInst::FCMP_OLE:   Out << "OLE"; break;
917           case FCmpInst::FCMP_ULE:   Out << "ULE"; break;
918           case FCmpInst::FCMP_OGE:   Out << "OGE"; break;
919           case FCmpInst::FCMP_UGE:   Out << "UGE"; break;
920           case FCmpInst::FCMP_TRUE:  Out << "TRUE"; break;
921           default: error("Invalid FCmp Predicate");
922           }
923           break;
924         case Instruction::Shl:     Out << "getShl("; break;
925         case Instruction::LShr:    Out << "getLShr("; break;
926         case Instruction::AShr:    Out << "getAShr("; break;
927         case Instruction::Select:  Out << "getSelect("; break;
928         case Instruction::ExtractElement: Out << "getExtractElement("; break;
929         case Instruction::InsertElement:  Out << "getInsertElement("; break;
930         case Instruction::ShuffleVector:  Out << "getShuffleVector("; break;
931         default:
932           error("Invalid constant expression");
933           break;
934         }
935         Out << getCppName(CE->getOperand(0));
936         for (unsigned i = 1; i < CE->getNumOperands(); ++i)
937           Out << ", " << getCppName(CE->getOperand(i));
938         Out << ");";
939       }
940     } else {
941       error("Bad Constant");
942       Out << "Constant* " << constName << " = 0; ";
943     }
944     nl(Out);
945   }
946
947   void CppWriter::printConstants(const Module* M) {
948     // Traverse all the global variables looking for constant initializers
949     for (Module::const_global_iterator I = TheModule->global_begin(),
950            E = TheModule->global_end(); I != E; ++I)
951       if (I->hasInitializer())
952         printConstant(I->getInitializer());
953
954     // Traverse the LLVM functions looking for constants
955     for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
956          FI != FE; ++FI) {
957       // Add all of the basic blocks and instructions
958       for (Function::const_iterator BB = FI->begin(),
959              E = FI->end(); BB != E; ++BB) {
960         for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
961              ++I) {
962           for (unsigned i = 0; i < I->getNumOperands(); ++i) {
963             if (Constant* C = dyn_cast<Constant>(I->getOperand(i))) {
964               printConstant(C);
965             }
966           }
967         }
968       }
969     }
970   }
971
972   void CppWriter::printVariableUses(const GlobalVariable *GV) {
973     nl(Out) << "// Type Definitions";
974     nl(Out);
975     printType(GV->getType());
976     if (GV->hasInitializer()) {
977       Constant* Init = GV->getInitializer();
978       printType(Init->getType());
979       if (Function* F = dyn_cast<Function>(Init)) {
980         nl(Out)<< "/ Function Declarations"; nl(Out);
981         printFunctionHead(F);
982       } else if (GlobalVariable* gv = dyn_cast<GlobalVariable>(Init)) {
983         nl(Out) << "// Global Variable Declarations"; nl(Out);
984         printVariableHead(gv);
985       } else  {
986         nl(Out) << "// Constant Definitions"; nl(Out);
987         printConstant(gv);
988       }
989       if (GlobalVariable* gv = dyn_cast<GlobalVariable>(Init)) {
990         nl(Out) << "// Global Variable Definitions"; nl(Out);
991         printVariableBody(gv);
992       }
993     }
994   }
995
996   void CppWriter::printVariableHead(const GlobalVariable *GV) {
997     nl(Out) << "GlobalVariable* " << getCppName(GV);
998     if (is_inline) {
999       Out << " = mod->getGlobalVariable(";
1000       printEscapedString(GV->getName());
1001       Out << ", " << getCppName(GV->getType()->getElementType()) << ",true)";
1002       nl(Out) << "if (!" << getCppName(GV) << ") {";
1003       in(); nl(Out) << getCppName(GV);
1004     }
1005     Out << " = new GlobalVariable(/*Module=*/*mod";
1006     nl(Out) << "/*Type=*/";
1007     printCppName(GV->getType()->getElementType());
1008     Out << ",";
1009     nl(Out) << "/*isConstant=*/" << (GV->isConstant()?"true":"false");
1010     Out << ",";
1011     nl(Out) << "/*Linkage=*/";
1012     printLinkageType(GV->getLinkage());
1013     Out << ",";
1014     nl(Out) << "/*Initializer=*/0, ";
1015     if (GV->hasInitializer()) {
1016       Out << "// has initializer, specified below";
1017     }
1018     nl(Out) << "/*Name=*/\"";
1019     printEscapedString(GV->getName());
1020     Out << "\");";
1021     nl(Out);
1022
1023     if (GV->hasSection()) {
1024       printCppName(GV);
1025       Out << "->setSection(\"";
1026       printEscapedString(GV->getSection());
1027       Out << "\");";
1028       nl(Out);
1029     }
1030     if (GV->getAlignment()) {
1031       printCppName(GV);
1032       Out << "->setAlignment(" << utostr(GV->getAlignment()) << ");";
1033       nl(Out);
1034     }
1035     if (GV->getVisibility() != GlobalValue::DefaultVisibility) {
1036       printCppName(GV);
1037       Out << "->setVisibility(";
1038       printVisibilityType(GV->getVisibility());
1039       Out << ");";
1040       nl(Out);
1041     }
1042     if (is_inline) {
1043       out(); Out << "}"; nl(Out);
1044     }
1045   }
1046
1047   void CppWriter::printVariableBody(const GlobalVariable *GV) {
1048     if (GV->hasInitializer()) {
1049       printCppName(GV);
1050       Out << "->setInitializer(";
1051       Out << getCppName(GV->getInitializer()) << ");";
1052       nl(Out);
1053     }
1054   }
1055
1056   std::string CppWriter::getOpName(Value* V) {
1057     if (!isa<Instruction>(V) || DefinedValues.find(V) != DefinedValues.end())
1058       return getCppName(V);
1059
1060     // See if its alread in the map of forward references, if so just return the
1061     // name we already set up for it
1062     ForwardRefMap::const_iterator I = ForwardRefs.find(V);
1063     if (I != ForwardRefs.end())
1064       return I->second;
1065
1066     // This is a new forward reference. Generate a unique name for it
1067     std::string result(std::string("fwdref_") + utostr(uniqueNum++));
1068
1069     // Yes, this is a hack. An Argument is the smallest instantiable value that
1070     // we can make as a placeholder for the real value. We'll replace these
1071     // Argument instances later.
1072     Out << "Argument* " << result << " = new Argument("
1073         << getCppName(V->getType()) << ");";
1074     nl(Out);
1075     ForwardRefs[V] = result;
1076     return result;
1077   }
1078
1079   // printInstruction - This member is called for each Instruction in a function.
1080   void CppWriter::printInstruction(const Instruction *I,
1081                                    const std::string& bbname) {
1082     std::string iName(getCppName(I));
1083
1084     // Before we emit this instruction, we need to take care of generating any
1085     // forward references. So, we get the names of all the operands in advance
1086     std::string* opNames = new std::string[I->getNumOperands()];
1087     for (unsigned i = 0; i < I->getNumOperands(); i++) {
1088       opNames[i] = getOpName(I->getOperand(i));
1089     }
1090
1091     switch (I->getOpcode()) {
1092     default:
1093       error("Invalid instruction");
1094       break;
1095
1096     case Instruction::Ret: {
1097       const ReturnInst* ret =  cast<ReturnInst>(I);
1098       Out << "ReturnInst::Create("
1099           << (ret->getReturnValue() ? opNames[0] + ", " : "") << bbname << ");";
1100       break;
1101     }
1102     case Instruction::Br: {
1103       const BranchInst* br = cast<BranchInst>(I);
1104       Out << "BranchInst::Create(" ;
1105       if (br->getNumOperands() == 3 ) {
1106         Out << opNames[2] << ", "
1107             << opNames[1] << ", "
1108             << opNames[0] << ", ";
1109
1110       } else if (br->getNumOperands() == 1) {
1111         Out << opNames[0] << ", ";
1112       } else {
1113         error("Branch with 2 operands?");
1114       }
1115       Out << bbname << ");";
1116       break;
1117     }
1118     case Instruction::Switch: {
1119       const SwitchInst* sw = cast<SwitchInst>(I);
1120       Out << "SwitchInst* " << iName << " = SwitchInst::Create("
1121           << opNames[0] << ", "
1122           << opNames[1] << ", "
1123           << sw->getNumCases() << ", " << bbname << ");";
1124       nl(Out);
1125       for (unsigned i = 2; i < sw->getNumOperands(); i += 2 ) {
1126         Out << iName << "->addCase("
1127             << opNames[i] << ", "
1128             << opNames[i+1] << ");";
1129         nl(Out);
1130       }
1131       break;
1132     }
1133     case Instruction::Invoke: {
1134       const InvokeInst* inv = cast<InvokeInst>(I);
1135       Out << "std::vector<Value*> " << iName << "_params;";
1136       nl(Out);
1137       for (unsigned i = 3; i < inv->getNumOperands(); ++i) {
1138         Out << iName << "_params.push_back("
1139             << opNames[i] << ");";
1140         nl(Out);
1141       }
1142       Out << "InvokeInst *" << iName << " = InvokeInst::Create("
1143           << opNames[0] << ", "
1144           << opNames[1] << ", "
1145           << opNames[2] << ", "
1146           << iName << "_params.begin(), " << iName << "_params.end(), \"";
1147       printEscapedString(inv->getName());
1148       Out << "\", " << bbname << ");";
1149       nl(Out) << iName << "->setCallingConv(";
1150       printCallingConv(inv->getCallingConv());
1151       Out << ");";
1152       printAttributes(inv->getAttributes(), iName);
1153       Out << iName << "->setAttributes(" << iName << "_PAL);";
1154       nl(Out);
1155       break;
1156     }
1157     case Instruction::Unwind: {
1158       Out << "new UnwindInst("
1159           << bbname << ");";
1160       break;
1161     }
1162     case Instruction::Unreachable:{
1163       Out << "new UnreachableInst("
1164           << bbname << ");";
1165       break;
1166     }
1167     case Instruction::Add:
1168     case Instruction::FAdd:
1169     case Instruction::Sub:
1170     case Instruction::FSub:
1171     case Instruction::Mul:
1172     case Instruction::FMul:
1173     case Instruction::UDiv:
1174     case Instruction::SDiv:
1175     case Instruction::FDiv:
1176     case Instruction::URem:
1177     case Instruction::SRem:
1178     case Instruction::FRem:
1179     case Instruction::And:
1180     case Instruction::Or:
1181     case Instruction::Xor:
1182     case Instruction::Shl:
1183     case Instruction::LShr:
1184     case Instruction::AShr:{
1185       Out << "BinaryOperator* " << iName << " = BinaryOperator::Create(";
1186       switch (I->getOpcode()) {
1187       case Instruction::Add: Out << "Instruction::Add"; break;
1188       case Instruction::FAdd: Out << "Instruction::FAdd"; break;
1189       case Instruction::Sub: Out << "Instruction::Sub"; break;
1190       case Instruction::FSub: Out << "Instruction::FSub"; break;
1191       case Instruction::Mul: Out << "Instruction::Mul"; break;
1192       case Instruction::FMul: Out << "Instruction::FMul"; break;
1193       case Instruction::UDiv:Out << "Instruction::UDiv"; break;
1194       case Instruction::SDiv:Out << "Instruction::SDiv"; break;
1195       case Instruction::FDiv:Out << "Instruction::FDiv"; break;
1196       case Instruction::URem:Out << "Instruction::URem"; break;
1197       case Instruction::SRem:Out << "Instruction::SRem"; break;
1198       case Instruction::FRem:Out << "Instruction::FRem"; break;
1199       case Instruction::And: Out << "Instruction::And"; break;
1200       case Instruction::Or:  Out << "Instruction::Or";  break;
1201       case Instruction::Xor: Out << "Instruction::Xor"; break;
1202       case Instruction::Shl: Out << "Instruction::Shl"; break;
1203       case Instruction::LShr:Out << "Instruction::LShr"; break;
1204       case Instruction::AShr:Out << "Instruction::AShr"; break;
1205       default: Out << "Instruction::BadOpCode"; break;
1206       }
1207       Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1208       printEscapedString(I->getName());
1209       Out << "\", " << bbname << ");";
1210       break;
1211     }
1212     case Instruction::FCmp: {
1213       Out << "FCmpInst* " << iName << " = new FCmpInst(";
1214       switch (cast<FCmpInst>(I)->getPredicate()) {
1215       case FCmpInst::FCMP_FALSE: Out << "FCmpInst::FCMP_FALSE"; break;
1216       case FCmpInst::FCMP_OEQ  : Out << "FCmpInst::FCMP_OEQ"; break;
1217       case FCmpInst::FCMP_OGT  : Out << "FCmpInst::FCMP_OGT"; break;
1218       case FCmpInst::FCMP_OGE  : Out << "FCmpInst::FCMP_OGE"; break;
1219       case FCmpInst::FCMP_OLT  : Out << "FCmpInst::FCMP_OLT"; break;
1220       case FCmpInst::FCMP_OLE  : Out << "FCmpInst::FCMP_OLE"; break;
1221       case FCmpInst::FCMP_ONE  : Out << "FCmpInst::FCMP_ONE"; break;
1222       case FCmpInst::FCMP_ORD  : Out << "FCmpInst::FCMP_ORD"; break;
1223       case FCmpInst::FCMP_UNO  : Out << "FCmpInst::FCMP_UNO"; break;
1224       case FCmpInst::FCMP_UEQ  : Out << "FCmpInst::FCMP_UEQ"; break;
1225       case FCmpInst::FCMP_UGT  : Out << "FCmpInst::FCMP_UGT"; break;
1226       case FCmpInst::FCMP_UGE  : Out << "FCmpInst::FCMP_UGE"; break;
1227       case FCmpInst::FCMP_ULT  : Out << "FCmpInst::FCMP_ULT"; break;
1228       case FCmpInst::FCMP_ULE  : Out << "FCmpInst::FCMP_ULE"; break;
1229       case FCmpInst::FCMP_UNE  : Out << "FCmpInst::FCMP_UNE"; break;
1230       case FCmpInst::FCMP_TRUE : Out << "FCmpInst::FCMP_TRUE"; break;
1231       default: Out << "FCmpInst::BAD_ICMP_PREDICATE"; break;
1232       }
1233       Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1234       printEscapedString(I->getName());
1235       Out << "\", " << bbname << ");";
1236       break;
1237     }
1238     case Instruction::ICmp: {
1239       Out << "ICmpInst* " << iName << " = new ICmpInst(";
1240       switch (cast<ICmpInst>(I)->getPredicate()) {
1241       case ICmpInst::ICMP_EQ:  Out << "ICmpInst::ICMP_EQ";  break;
1242       case ICmpInst::ICMP_NE:  Out << "ICmpInst::ICMP_NE";  break;
1243       case ICmpInst::ICMP_ULE: Out << "ICmpInst::ICMP_ULE"; break;
1244       case ICmpInst::ICMP_SLE: Out << "ICmpInst::ICMP_SLE"; break;
1245       case ICmpInst::ICMP_UGE: Out << "ICmpInst::ICMP_UGE"; break;
1246       case ICmpInst::ICMP_SGE: Out << "ICmpInst::ICMP_SGE"; break;
1247       case ICmpInst::ICMP_ULT: Out << "ICmpInst::ICMP_ULT"; break;
1248       case ICmpInst::ICMP_SLT: Out << "ICmpInst::ICMP_SLT"; break;
1249       case ICmpInst::ICMP_UGT: Out << "ICmpInst::ICMP_UGT"; break;
1250       case ICmpInst::ICMP_SGT: Out << "ICmpInst::ICMP_SGT"; break;
1251       default: Out << "ICmpInst::BAD_ICMP_PREDICATE"; break;
1252       }
1253       Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1254       printEscapedString(I->getName());
1255       Out << "\", " << bbname << ");";
1256       break;
1257     }
1258     case Instruction::Malloc: {
1259       const MallocInst* mallocI = cast<MallocInst>(I);
1260       Out << "MallocInst* " << iName << " = new MallocInst("
1261           << getCppName(mallocI->getAllocatedType()) << ", ";
1262       if (mallocI->isArrayAllocation())
1263         Out << opNames[0] << ", " ;
1264       Out << "\"";
1265       printEscapedString(mallocI->getName());
1266       Out << "\", " << bbname << ");";
1267       if (mallocI->getAlignment())
1268         nl(Out) << iName << "->setAlignment("
1269             << mallocI->getAlignment() << ");";
1270       break;
1271     }
1272     case Instruction::Free: {
1273       Out << "FreeInst* " << iName << " = new FreeInst("
1274           << getCppName(I->getOperand(0)) << ", " << bbname << ");";
1275       break;
1276     }
1277     case Instruction::Alloca: {
1278       const AllocaInst* allocaI = cast<AllocaInst>(I);
1279       Out << "AllocaInst* " << iName << " = new AllocaInst("
1280           << getCppName(allocaI->getAllocatedType()) << ", ";
1281       if (allocaI->isArrayAllocation())
1282         Out << opNames[0] << ", ";
1283       Out << "\"";
1284       printEscapedString(allocaI->getName());
1285       Out << "\", " << bbname << ");";
1286       if (allocaI->getAlignment())
1287         nl(Out) << iName << "->setAlignment("
1288             << allocaI->getAlignment() << ");";
1289       break;
1290     }
1291     case Instruction::Load:{
1292       const LoadInst* load = cast<LoadInst>(I);
1293       Out << "LoadInst* " << iName << " = new LoadInst("
1294           << opNames[0] << ", \"";
1295       printEscapedString(load->getName());
1296       Out << "\", " << (load->isVolatile() ? "true" : "false" )
1297           << ", " << bbname << ");";
1298       break;
1299     }
1300     case Instruction::Store: {
1301       const StoreInst* store = cast<StoreInst>(I);
1302       Out << " new StoreInst("
1303           << opNames[0] << ", "
1304           << opNames[1] << ", "
1305           << (store->isVolatile() ? "true" : "false")
1306           << ", " << bbname << ");";
1307       break;
1308     }
1309     case Instruction::GetElementPtr: {
1310       const GetElementPtrInst* gep = cast<GetElementPtrInst>(I);
1311       if (gep->getNumOperands() <= 2) {
1312         Out << "GetElementPtrInst* " << iName << " = GetElementPtrInst::Create("
1313             << opNames[0];
1314         if (gep->getNumOperands() == 2)
1315           Out << ", " << opNames[1];
1316       } else {
1317         Out << "std::vector<Value*> " << iName << "_indices;";
1318         nl(Out);
1319         for (unsigned i = 1; i < gep->getNumOperands(); ++i ) {
1320           Out << iName << "_indices.push_back("
1321               << opNames[i] << ");";
1322           nl(Out);
1323         }
1324         Out << "Instruction* " << iName << " = GetElementPtrInst::Create("
1325             << opNames[0] << ", " << iName << "_indices.begin(), "
1326             << iName << "_indices.end()";
1327       }
1328       Out << ", \"";
1329       printEscapedString(gep->getName());
1330       Out << "\", " << bbname << ");";
1331       break;
1332     }
1333     case Instruction::PHI: {
1334       const PHINode* phi = cast<PHINode>(I);
1335
1336       Out << "PHINode* " << iName << " = PHINode::Create("
1337           << getCppName(phi->getType()) << ", \"";
1338       printEscapedString(phi->getName());
1339       Out << "\", " << bbname << ");";
1340       nl(Out) << iName << "->reserveOperandSpace("
1341         << phi->getNumIncomingValues()
1342           << ");";
1343       nl(Out);
1344       for (unsigned i = 0; i < phi->getNumOperands(); i+=2) {
1345         Out << iName << "->addIncoming("
1346             << opNames[i] << ", " << opNames[i+1] << ");";
1347         nl(Out);
1348       }
1349       break;
1350     }
1351     case Instruction::Trunc:
1352     case Instruction::ZExt:
1353     case Instruction::SExt:
1354     case Instruction::FPTrunc:
1355     case Instruction::FPExt:
1356     case Instruction::FPToUI:
1357     case Instruction::FPToSI:
1358     case Instruction::UIToFP:
1359     case Instruction::SIToFP:
1360     case Instruction::PtrToInt:
1361     case Instruction::IntToPtr:
1362     case Instruction::BitCast: {
1363       const CastInst* cst = cast<CastInst>(I);
1364       Out << "CastInst* " << iName << " = new ";
1365       switch (I->getOpcode()) {
1366       case Instruction::Trunc:    Out << "TruncInst"; break;
1367       case Instruction::ZExt:     Out << "ZExtInst"; break;
1368       case Instruction::SExt:     Out << "SExtInst"; break;
1369       case Instruction::FPTrunc:  Out << "FPTruncInst"; break;
1370       case Instruction::FPExt:    Out << "FPExtInst"; break;
1371       case Instruction::FPToUI:   Out << "FPToUIInst"; break;
1372       case Instruction::FPToSI:   Out << "FPToSIInst"; break;
1373       case Instruction::UIToFP:   Out << "UIToFPInst"; break;
1374       case Instruction::SIToFP:   Out << "SIToFPInst"; break;
1375       case Instruction::PtrToInt: Out << "PtrToIntInst"; break;
1376       case Instruction::IntToPtr: Out << "IntToPtrInst"; break;
1377       case Instruction::BitCast:  Out << "BitCastInst"; break;
1378       default: assert(!"Unreachable"); break;
1379       }
1380       Out << "(" << opNames[0] << ", "
1381           << getCppName(cst->getType()) << ", \"";
1382       printEscapedString(cst->getName());
1383       Out << "\", " << bbname << ");";
1384       break;
1385     }
1386     case Instruction::Call:{
1387       const CallInst* call = cast<CallInst>(I);
1388       if (const InlineAsm* ila = dyn_cast<InlineAsm>(call->getCalledValue())) {
1389         Out << "InlineAsm* " << getCppName(ila) << " = InlineAsm::get("
1390             << getCppName(ila->getFunctionType()) << ", \""
1391             << ila->getAsmString() << "\", \""
1392             << ila->getConstraintString() << "\","
1393             << (ila->hasSideEffects() ? "true" : "false") << ");";
1394         nl(Out);
1395       }
1396       if (call->getNumOperands() > 2) {
1397         Out << "std::vector<Value*> " << iName << "_params;";
1398         nl(Out);
1399         for (unsigned i = 1; i < call->getNumOperands(); ++i) {
1400           Out << iName << "_params.push_back(" << opNames[i] << ");";
1401           nl(Out);
1402         }
1403         Out << "CallInst* " << iName << " = CallInst::Create("
1404             << opNames[0] << ", " << iName << "_params.begin(), "
1405             << iName << "_params.end(), \"";
1406       } else if (call->getNumOperands() == 2) {
1407         Out << "CallInst* " << iName << " = CallInst::Create("
1408             << opNames[0] << ", " << opNames[1] << ", \"";
1409       } else {
1410         Out << "CallInst* " << iName << " = CallInst::Create(" << opNames[0]
1411             << ", \"";
1412       }
1413       printEscapedString(call->getName());
1414       Out << "\", " << bbname << ");";
1415       nl(Out) << iName << "->setCallingConv(";
1416       printCallingConv(call->getCallingConv());
1417       Out << ");";
1418       nl(Out) << iName << "->setTailCall("
1419           << (call->isTailCall() ? "true":"false");
1420       Out << ");";
1421       printAttributes(call->getAttributes(), iName);
1422       Out << iName << "->setAttributes(" << iName << "_PAL);";
1423       nl(Out);
1424       break;
1425     }
1426     case Instruction::Select: {
1427       const SelectInst* sel = cast<SelectInst>(I);
1428       Out << "SelectInst* " << getCppName(sel) << " = SelectInst::Create(";
1429       Out << opNames[0] << ", " << opNames[1] << ", " << opNames[2] << ", \"";
1430       printEscapedString(sel->getName());
1431       Out << "\", " << bbname << ");";
1432       break;
1433     }
1434     case Instruction::UserOp1:
1435       /// FALL THROUGH
1436     case Instruction::UserOp2: {
1437       /// FIXME: What should be done here?
1438       break;
1439     }
1440     case Instruction::VAArg: {
1441       const VAArgInst* va = cast<VAArgInst>(I);
1442       Out << "VAArgInst* " << getCppName(va) << " = new VAArgInst("
1443           << opNames[0] << ", " << getCppName(va->getType()) << ", \"";
1444       printEscapedString(va->getName());
1445       Out << "\", " << bbname << ");";
1446       break;
1447     }
1448     case Instruction::ExtractElement: {
1449       const ExtractElementInst* eei = cast<ExtractElementInst>(I);
1450       Out << "ExtractElementInst* " << getCppName(eei)
1451           << " = new ExtractElementInst(" << opNames[0]
1452           << ", " << opNames[1] << ", \"";
1453       printEscapedString(eei->getName());
1454       Out << "\", " << bbname << ");";
1455       break;
1456     }
1457     case Instruction::InsertElement: {
1458       const InsertElementInst* iei = cast<InsertElementInst>(I);
1459       Out << "InsertElementInst* " << getCppName(iei)
1460           << " = InsertElementInst::Create(" << opNames[0]
1461           << ", " << opNames[1] << ", " << opNames[2] << ", \"";
1462       printEscapedString(iei->getName());
1463       Out << "\", " << bbname << ");";
1464       break;
1465     }
1466     case Instruction::ShuffleVector: {
1467       const ShuffleVectorInst* svi = cast<ShuffleVectorInst>(I);
1468       Out << "ShuffleVectorInst* " << getCppName(svi)
1469           << " = new ShuffleVectorInst(" << opNames[0]
1470           << ", " << opNames[1] << ", " << opNames[2] << ", \"";
1471       printEscapedString(svi->getName());
1472       Out << "\", " << bbname << ");";
1473       break;
1474     }
1475     case Instruction::ExtractValue: {
1476       const ExtractValueInst *evi = cast<ExtractValueInst>(I);
1477       Out << "std::vector<unsigned> " << iName << "_indices;";
1478       nl(Out);
1479       for (unsigned i = 0; i < evi->getNumIndices(); ++i) {
1480         Out << iName << "_indices.push_back("
1481             << evi->idx_begin()[i] << ");";
1482         nl(Out);
1483       }
1484       Out << "ExtractValueInst* " << getCppName(evi)
1485           << " = ExtractValueInst::Create(" << opNames[0]
1486           << ", "
1487           << iName << "_indices.begin(), " << iName << "_indices.end(), \"";
1488       printEscapedString(evi->getName());
1489       Out << "\", " << bbname << ");";
1490       break;
1491     }
1492     case Instruction::InsertValue: {
1493       const InsertValueInst *ivi = cast<InsertValueInst>(I);
1494       Out << "std::vector<unsigned> " << iName << "_indices;";
1495       nl(Out);
1496       for (unsigned i = 0; i < ivi->getNumIndices(); ++i) {
1497         Out << iName << "_indices.push_back("
1498             << ivi->idx_begin()[i] << ");";
1499         nl(Out);
1500       }
1501       Out << "InsertValueInst* " << getCppName(ivi)
1502           << " = InsertValueInst::Create(" << opNames[0]
1503           << ", " << opNames[1] << ", "
1504           << iName << "_indices.begin(), " << iName << "_indices.end(), \"";
1505       printEscapedString(ivi->getName());
1506       Out << "\", " << bbname << ");";
1507       break;
1508     }
1509   }
1510   DefinedValues.insert(I);
1511   nl(Out);
1512   delete [] opNames;
1513 }
1514
1515   // Print out the types, constants and declarations needed by one function
1516   void CppWriter::printFunctionUses(const Function* F) {
1517     nl(Out) << "// Type Definitions"; nl(Out);
1518     if (!is_inline) {
1519       // Print the function's return type
1520       printType(F->getReturnType());
1521
1522       // Print the function's function type
1523       printType(F->getFunctionType());
1524
1525       // Print the types of each of the function's arguments
1526       for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1527            AI != AE; ++AI) {
1528         printType(AI->getType());
1529       }
1530     }
1531
1532     // Print type definitions for every type referenced by an instruction and
1533     // make a note of any global values or constants that are referenced
1534     SmallPtrSet<GlobalValue*,64> gvs;
1535     SmallPtrSet<Constant*,64> consts;
1536     for (Function::const_iterator BB = F->begin(), BE = F->end();
1537          BB != BE; ++BB){
1538       for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
1539            I != E; ++I) {
1540         // Print the type of the instruction itself
1541         printType(I->getType());
1542
1543         // Print the type of each of the instruction's operands
1544         for (unsigned i = 0; i < I->getNumOperands(); ++i) {
1545           Value* operand = I->getOperand(i);
1546           printType(operand->getType());
1547
1548           // If the operand references a GVal or Constant, make a note of it
1549           if (GlobalValue* GV = dyn_cast<GlobalValue>(operand)) {
1550             gvs.insert(GV);
1551             if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
1552               if (GVar->hasInitializer())
1553                 consts.insert(GVar->getInitializer());
1554           } else if (Constant* C = dyn_cast<Constant>(operand))
1555             consts.insert(C);
1556         }
1557       }
1558     }
1559
1560     // Print the function declarations for any functions encountered
1561     nl(Out) << "// Function Declarations"; nl(Out);
1562     for (SmallPtrSet<GlobalValue*,64>::iterator I = gvs.begin(), E = gvs.end();
1563          I != E; ++I) {
1564       if (Function* Fun = dyn_cast<Function>(*I)) {
1565         if (!is_inline || Fun != F)
1566           printFunctionHead(Fun);
1567       }
1568     }
1569
1570     // Print the global variable declarations for any variables encountered
1571     nl(Out) << "// Global Variable Declarations"; nl(Out);
1572     for (SmallPtrSet<GlobalValue*,64>::iterator I = gvs.begin(), E = gvs.end();
1573          I != E; ++I) {
1574       if (GlobalVariable* F = dyn_cast<GlobalVariable>(*I))
1575         printVariableHead(F);
1576     }
1577
1578   // Print the constants found
1579     nl(Out) << "// Constant Definitions"; nl(Out);
1580     for (SmallPtrSet<Constant*,64>::iterator I = consts.begin(),
1581            E = consts.end(); I != E; ++I) {
1582       printConstant(*I);
1583     }
1584
1585     // Process the global variables definitions now that all the constants have
1586     // been emitted. These definitions just couple the gvars with their constant
1587     // initializers.
1588     nl(Out) << "// Global Variable Definitions"; nl(Out);
1589     for (SmallPtrSet<GlobalValue*,64>::iterator I = gvs.begin(), E = gvs.end();
1590          I != E; ++I) {
1591       if (GlobalVariable* GV = dyn_cast<GlobalVariable>(*I))
1592         printVariableBody(GV);
1593     }
1594   }
1595
1596   void CppWriter::printFunctionHead(const Function* F) {
1597     nl(Out) << "Function* " << getCppName(F);
1598     if (is_inline) {
1599       Out << " = mod->getFunction(\"";
1600       printEscapedString(F->getName());
1601       Out << "\", " << getCppName(F->getFunctionType()) << ");";
1602       nl(Out) << "if (!" << getCppName(F) << ") {";
1603       nl(Out) << getCppName(F);
1604     }
1605     Out<< " = Function::Create(";
1606     nl(Out,1) << "/*Type=*/" << getCppName(F->getFunctionType()) << ",";
1607     nl(Out) << "/*Linkage=*/";
1608     printLinkageType(F->getLinkage());
1609     Out << ",";
1610     nl(Out) << "/*Name=*/\"";
1611     printEscapedString(F->getName());
1612     Out << "\", mod); " << (F->isDeclaration()? "// (external, no body)" : "");
1613     nl(Out,-1);
1614     printCppName(F);
1615     Out << "->setCallingConv(";
1616     printCallingConv(F->getCallingConv());
1617     Out << ");";
1618     nl(Out);
1619     if (F->hasSection()) {
1620       printCppName(F);
1621       Out << "->setSection(\"" << F->getSection() << "\");";
1622       nl(Out);
1623     }
1624     if (F->getAlignment()) {
1625       printCppName(F);
1626       Out << "->setAlignment(" << F->getAlignment() << ");";
1627       nl(Out);
1628     }
1629     if (F->getVisibility() != GlobalValue::DefaultVisibility) {
1630       printCppName(F);
1631       Out << "->setVisibility(";
1632       printVisibilityType(F->getVisibility());
1633       Out << ");";
1634       nl(Out);
1635     }
1636     if (F->hasGC()) {
1637       printCppName(F);
1638       Out << "->setGC(\"" << F->getGC() << "\");";
1639       nl(Out);
1640     }
1641     if (is_inline) {
1642       Out << "}";
1643       nl(Out);
1644     }
1645     printAttributes(F->getAttributes(), getCppName(F));
1646     printCppName(F);
1647     Out << "->setAttributes(" << getCppName(F) << "_PAL);";
1648     nl(Out);
1649   }
1650
1651   void CppWriter::printFunctionBody(const Function *F) {
1652     if (F->isDeclaration())
1653       return; // external functions have no bodies.
1654
1655     // Clear the DefinedValues and ForwardRefs maps because we can't have
1656     // cross-function forward refs
1657     ForwardRefs.clear();
1658     DefinedValues.clear();
1659
1660     // Create all the argument values
1661     if (!is_inline) {
1662       if (!F->arg_empty()) {
1663         Out << "Function::arg_iterator args = " << getCppName(F)
1664             << "->arg_begin();";
1665         nl(Out);
1666       }
1667       for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1668            AI != AE; ++AI) {
1669         Out << "Value* " << getCppName(AI) << " = args++;";
1670         nl(Out);
1671         if (AI->hasName()) {
1672           Out << getCppName(AI) << "->setName(\"" << AI->getName() << "\");";
1673           nl(Out);
1674         }
1675       }
1676     }
1677
1678     // Create all the basic blocks
1679     nl(Out);
1680     for (Function::const_iterator BI = F->begin(), BE = F->end();
1681          BI != BE; ++BI) {
1682       std::string bbname(getCppName(BI));
1683       Out << "BasicBlock* " << bbname << " = BasicBlock::Create(\"";
1684       if (BI->hasName())
1685         printEscapedString(BI->getName());
1686       Out << "\"," << getCppName(BI->getParent()) << ",0);";
1687       nl(Out);
1688     }
1689
1690     // Output all of its basic blocks... for the function
1691     for (Function::const_iterator BI = F->begin(), BE = F->end();
1692          BI != BE; ++BI) {
1693       std::string bbname(getCppName(BI));
1694       nl(Out) << "// Block " << BI->getName() << " (" << bbname << ")";
1695       nl(Out);
1696
1697       // Output all of the instructions in the basic block...
1698       for (BasicBlock::const_iterator I = BI->begin(), E = BI->end();
1699            I != E; ++I) {
1700         printInstruction(I,bbname);
1701       }
1702     }
1703
1704     // Loop over the ForwardRefs and resolve them now that all instructions
1705     // are generated.
1706     if (!ForwardRefs.empty()) {
1707       nl(Out) << "// Resolve Forward References";
1708       nl(Out);
1709     }
1710
1711     while (!ForwardRefs.empty()) {
1712       ForwardRefMap::iterator I = ForwardRefs.begin();
1713       Out << I->second << "->replaceAllUsesWith("
1714           << getCppName(I->first) << "); delete " << I->second << ";";
1715       nl(Out);
1716       ForwardRefs.erase(I);
1717     }
1718   }
1719
1720   void CppWriter::printInline(const std::string& fname,
1721                               const std::string& func) {
1722     const Function* F = TheModule->getFunction(func);
1723     if (!F) {
1724       error(std::string("Function '") + func + "' not found in input module");
1725       return;
1726     }
1727     if (F->isDeclaration()) {
1728       error(std::string("Function '") + func + "' is external!");
1729       return;
1730     }
1731     nl(Out) << "BasicBlock* " << fname << "(Module* mod, Function *"
1732             << getCppName(F);
1733     unsigned arg_count = 1;
1734     for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1735          AI != AE; ++AI) {
1736       Out << ", Value* arg_" << arg_count;
1737     }
1738     Out << ") {";
1739     nl(Out);
1740     is_inline = true;
1741     printFunctionUses(F);
1742     printFunctionBody(F);
1743     is_inline = false;
1744     Out << "return " << getCppName(F->begin()) << ";";
1745     nl(Out) << "}";
1746     nl(Out);
1747   }
1748
1749   void CppWriter::printModuleBody() {
1750     // Print out all the type definitions
1751     nl(Out) << "// Type Definitions"; nl(Out);
1752     printTypes(TheModule);
1753
1754     // Functions can call each other and global variables can reference them so
1755     // define all the functions first before emitting their function bodies.
1756     nl(Out) << "// Function Declarations"; nl(Out);
1757     for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1758          I != E; ++I)
1759       printFunctionHead(I);
1760
1761     // Process the global variables declarations. We can't initialze them until
1762     // after the constants are printed so just print a header for each global
1763     nl(Out) << "// Global Variable Declarations\n"; nl(Out);
1764     for (Module::const_global_iterator I = TheModule->global_begin(),
1765            E = TheModule->global_end(); I != E; ++I) {
1766       printVariableHead(I);
1767     }
1768
1769     // Print out all the constants definitions. Constants don't recurse except
1770     // through GlobalValues. All GlobalValues have been declared at this point
1771     // so we can proceed to generate the constants.
1772     nl(Out) << "// Constant Definitions"; nl(Out);
1773     printConstants(TheModule);
1774
1775     // Process the global variables definitions now that all the constants have
1776     // been emitted. These definitions just couple the gvars with their constant
1777     // initializers.
1778     nl(Out) << "// Global Variable Definitions"; nl(Out);
1779     for (Module::const_global_iterator I = TheModule->global_begin(),
1780            E = TheModule->global_end(); I != E; ++I) {
1781       printVariableBody(I);
1782     }
1783
1784     // Finally, we can safely put out all of the function bodies.
1785     nl(Out) << "// Function Definitions"; nl(Out);
1786     for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1787          I != E; ++I) {
1788       if (!I->isDeclaration()) {
1789         nl(Out) << "// Function: " << I->getName() << " (" << getCppName(I)
1790                 << ")";
1791         nl(Out) << "{";
1792         nl(Out,1);
1793         printFunctionBody(I);
1794         nl(Out,-1) << "}";
1795         nl(Out);
1796       }
1797     }
1798   }
1799
1800   void CppWriter::printProgram(const std::string& fname,
1801                                const std::string& mName) {
1802     Out << "#include <llvm/Module.h>\n";
1803     Out << "#include <llvm/DerivedTypes.h>\n";
1804     Out << "#include <llvm/Constants.h>\n";
1805     Out << "#include <llvm/GlobalVariable.h>\n";
1806     Out << "#include <llvm/Function.h>\n";
1807     Out << "#include <llvm/CallingConv.h>\n";
1808     Out << "#include <llvm/BasicBlock.h>\n";
1809     Out << "#include <llvm/Instructions.h>\n";
1810     Out << "#include <llvm/InlineAsm.h>\n";
1811     Out << "#include <llvm/Support/FormattedStream.h>\n";
1812     Out << "#include <llvm/Support/MathExtras.h>\n";
1813     Out << "#include <llvm/Pass.h>\n";
1814     Out << "#include <llvm/PassManager.h>\n";
1815     Out << "#include <llvm/ADT/SmallVector.h>\n";
1816     Out << "#include <llvm/Analysis/Verifier.h>\n";
1817     Out << "#include <llvm/Assembly/PrintModulePass.h>\n";
1818     Out << "#include <algorithm>\n";
1819     Out << "using namespace llvm;\n\n";
1820     Out << "Module* " << fname << "();\n\n";
1821     Out << "int main(int argc, char**argv) {\n";
1822     Out << "  Module* Mod = " << fname << "();\n";
1823     Out << "  verifyModule(*Mod, PrintMessageAction);\n";
1824     Out << "  outs().flush();\n";
1825     Out << "  PassManager PM;\n";
1826     Out << "  PM.add(createPrintModulePass(&outs()));\n";
1827     Out << "  PM.run(*Mod);\n";
1828     Out << "  return 0;\n";
1829     Out << "}\n\n";
1830     printModule(fname,mName);
1831   }
1832
1833   void CppWriter::printModule(const std::string& fname,
1834                               const std::string& mName) {
1835     nl(Out) << "Module* " << fname << "() {";
1836     nl(Out,1) << "// Module Construction";
1837     nl(Out) << "Module* mod = new Module(\"";
1838     printEscapedString(mName);
1839     Out << "\");";
1840     if (!TheModule->getTargetTriple().empty()) {
1841       nl(Out) << "mod->setDataLayout(\"" << TheModule->getDataLayout() << "\");";
1842     }
1843     if (!TheModule->getTargetTriple().empty()) {
1844       nl(Out) << "mod->setTargetTriple(\"" << TheModule->getTargetTriple()
1845               << "\");";
1846     }
1847
1848     if (!TheModule->getModuleInlineAsm().empty()) {
1849       nl(Out) << "mod->setModuleInlineAsm(\"";
1850       printEscapedString(TheModule->getModuleInlineAsm());
1851       Out << "\");";
1852     }
1853     nl(Out);
1854
1855     // Loop over the dependent libraries and emit them.
1856     Module::lib_iterator LI = TheModule->lib_begin();
1857     Module::lib_iterator LE = TheModule->lib_end();
1858     while (LI != LE) {
1859       Out << "mod->addLibrary(\"" << *LI << "\");";
1860       nl(Out);
1861       ++LI;
1862     }
1863     printModuleBody();
1864     nl(Out) << "return mod;";
1865     nl(Out,-1) << "}";
1866     nl(Out);
1867   }
1868
1869   void CppWriter::printContents(const std::string& fname,
1870                                 const std::string& mName) {
1871     Out << "\nModule* " << fname << "(Module *mod) {\n";
1872     Out << "\nmod->setModuleIdentifier(\"";
1873     printEscapedString(mName);
1874     Out << "\");\n";
1875     printModuleBody();
1876     Out << "\nreturn mod;\n";
1877     Out << "\n}\n";
1878   }
1879
1880   void CppWriter::printFunction(const std::string& fname,
1881                                 const std::string& funcName) {
1882     const Function* F = TheModule->getFunction(funcName);
1883     if (!F) {
1884       error(std::string("Function '") + funcName + "' not found in input module");
1885       return;
1886     }
1887     Out << "\nFunction* " << fname << "(Module *mod) {\n";
1888     printFunctionUses(F);
1889     printFunctionHead(F);
1890     printFunctionBody(F);
1891     Out << "return " << getCppName(F) << ";\n";
1892     Out << "}\n";
1893   }
1894
1895   void CppWriter::printFunctions() {
1896     const Module::FunctionListType &funcs = TheModule->getFunctionList();
1897     Module::const_iterator I  = funcs.begin();
1898     Module::const_iterator IE = funcs.end();
1899
1900     for (; I != IE; ++I) {
1901       const Function &func = *I;
1902       if (!func.isDeclaration()) {
1903         std::string name("define_");
1904         name += func.getName();
1905         printFunction(name, func.getName());
1906       }
1907     }
1908   }
1909
1910   void CppWriter::printVariable(const std::string& fname,
1911                                 const std::string& varName) {
1912     const GlobalVariable* GV = TheModule->getNamedGlobal(varName);
1913
1914     if (!GV) {
1915       error(std::string("Variable '") + varName + "' not found in input module");
1916       return;
1917     }
1918     Out << "\nGlobalVariable* " << fname << "(Module *mod) {\n";
1919     printVariableUses(GV);
1920     printVariableHead(GV);
1921     printVariableBody(GV);
1922     Out << "return " << getCppName(GV) << ";\n";
1923     Out << "}\n";
1924   }
1925
1926   void CppWriter::printType(const std::string& fname,
1927                             const std::string& typeName) {
1928     const Type* Ty = TheModule->getTypeByName(typeName);
1929     if (!Ty) {
1930       error(std::string("Type '") + typeName + "' not found in input module");
1931       return;
1932     }
1933     Out << "\nType* " << fname << "(Module *mod) {\n";
1934     printType(Ty);
1935     Out << "return " << getCppName(Ty) << ";\n";
1936     Out << "}\n";
1937   }
1938
1939   bool CppWriter::runOnModule(Module &M) {
1940     TheModule = &M;
1941
1942     // Emit a header
1943     Out << "// Generated by llvm2cpp - DO NOT MODIFY!\n\n";
1944
1945     // Get the name of the function we're supposed to generate
1946     std::string fname = FuncName.getValue();
1947
1948     // Get the name of the thing we are to generate
1949     std::string tgtname = NameToGenerate.getValue();
1950     if (GenerationType == GenModule ||
1951         GenerationType == GenContents ||
1952         GenerationType == GenProgram ||
1953         GenerationType == GenFunctions) {
1954       if (tgtname == "!bad!") {
1955         if (M.getModuleIdentifier() == "-")
1956           tgtname = "<stdin>";
1957         else
1958           tgtname = M.getModuleIdentifier();
1959       }
1960     } else if (tgtname == "!bad!")
1961       error("You must use the -for option with -gen-{function,variable,type}");
1962
1963     switch (WhatToGenerate(GenerationType)) {
1964      case GenProgram:
1965       if (fname.empty())
1966         fname = "makeLLVMModule";
1967       printProgram(fname,tgtname);
1968       break;
1969      case GenModule:
1970       if (fname.empty())
1971         fname = "makeLLVMModule";
1972       printModule(fname,tgtname);
1973       break;
1974      case GenContents:
1975       if (fname.empty())
1976         fname = "makeLLVMModuleContents";
1977       printContents(fname,tgtname);
1978       break;
1979      case GenFunction:
1980       if (fname.empty())
1981         fname = "makeLLVMFunction";
1982       printFunction(fname,tgtname);
1983       break;
1984      case GenFunctions:
1985       printFunctions();
1986       break;
1987      case GenInline:
1988       if (fname.empty())
1989         fname = "makeLLVMInline";
1990       printInline(fname,tgtname);
1991       break;
1992      case GenVariable:
1993       if (fname.empty())
1994         fname = "makeLLVMVariable";
1995       printVariable(fname,tgtname);
1996       break;
1997      case GenType:
1998       if (fname.empty())
1999         fname = "makeLLVMType";
2000       printType(fname,tgtname);
2001       break;
2002      default:
2003       error("Invalid generation option");
2004     }
2005
2006     return false;
2007   }
2008 }
2009
2010 char CppWriter::ID = 0;
2011
2012 //===----------------------------------------------------------------------===//
2013 //                       External Interface declaration
2014 //===----------------------------------------------------------------------===//
2015
2016 bool CPPTargetMachine::addPassesToEmitWholeFile(PassManager &PM,
2017                                                 formatted_raw_ostream &o,
2018                                                 CodeGenFileType FileType,
2019                                                 CodeGenOpt::Level OptLevel) {
2020   if (FileType != TargetMachine::AssemblyFile) return true;
2021   PM.add(new CppWriter(o));
2022   return false;
2023 }