Get the CPP backend into some semblance of working by updating for numerous LLVMConte...
[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/ADT/StringExtras.h"
27 #include "llvm/ADT/STLExtras.h"
28 #include "llvm/ADT/SmallPtrSet.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/ErrorHandling.h"
31 #include "llvm/Support/FormattedStream.h"
32 #include "llvm/Support/Streams.h"
33 #include "llvm/Target/TargetRegistry.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 extern "C" void LLVMInitializeCppBackendTarget() {
76   // Register the target.
77   RegisterTargetMachine<CPPTargetMachine> X(TheCppBackendTarget);
78 }
79
80 namespace {
81   typedef std::vector<const Type*> TypeList;
82   typedef std::map<const Type*,std::string> TypeMap;
83   typedef std::map<const Value*,std::string> ValueMap;
84   typedef std::set<std::string> NameSet;
85   typedef std::set<const Type*> TypeSet;
86   typedef std::set<const Value*> ValueSet;
87   typedef std::map<const Value*,std::string> ForwardRefMap;
88
89   /// CppWriter - This class is the main chunk of code that converts an LLVM
90   /// module to a C++ translation unit.
91   class CppWriter : public ModulePass {
92     formatted_raw_ostream &Out;
93     const Module *TheModule;
94     uint64_t uniqueNum;
95     TypeMap TypeNames;
96     ValueMap ValueNames;
97     TypeMap UnresolvedTypes;
98     TypeList TypeStack;
99     NameSet UsedNames;
100     TypeSet DefinedTypes;
101     ValueSet DefinedValues;
102     ForwardRefMap ForwardRefs;
103     bool is_inline;
104
105   public:
106     static char ID;
107     explicit CppWriter(formatted_raw_ostream &o) :
108       ModulePass(&ID), Out(o), uniqueNum(0), is_inline(false) {}
109
110     virtual const char *getPassName() const { return "C++ backend"; }
111
112     bool runOnModule(Module &M);
113
114     void printProgram(const std::string& fname, const std::string& modName );
115     void printModule(const std::string& fname, const std::string& modName );
116     void printContents(const std::string& fname, const std::string& modName );
117     void printFunction(const std::string& fname, const std::string& funcName );
118     void printFunctions();
119     void printInline(const std::string& fname, const std::string& funcName );
120     void printVariable(const std::string& fname, const std::string& varName );
121     void printType(const std::string& fname, const std::string& typeName );
122
123     void error(const std::string& msg);
124
125   private:
126     void printLinkageType(GlobalValue::LinkageTypes LT);
127     void printVisibilityType(GlobalValue::VisibilityTypes VisTypes);
128     void printCallingConv(unsigned cc);
129     void printEscapedString(const std::string& str);
130     void printCFP(const ConstantFP* CFP);
131
132     std::string getCppName(const Type* val);
133     inline void printCppName(const Type* val);
134
135     std::string getCppName(const Value* val);
136     inline void printCppName(const Value* val);
137
138     void printAttributes(const AttrListPtr &PAL, const std::string &name);
139     bool printTypeInternal(const Type* Ty);
140     inline void printType(const Type* Ty);
141     void printTypes(const Module* M);
142
143     void printConstant(const Constant *CPV);
144     void printConstants(const Module* M);
145
146     void printVariableUses(const GlobalVariable *GV);
147     void printVariableHead(const GlobalVariable *GV);
148     void printVariableBody(const GlobalVariable *GV);
149
150     void printFunctionUses(const Function *F);
151     void printFunctionHead(const Function *F);
152     void printFunctionBody(const Function *F);
153     void printInstruction(const Instruction *I, const std::string& bbname);
154     std::string getOpName(Value*);
155
156     void printModuleBody();
157   };
158
159   static unsigned indent_level = 0;
160   inline formatted_raw_ostream& nl(formatted_raw_ostream& Out, int delta = 0) {
161     Out << "\n";
162     if (delta >= 0 || indent_level >= unsigned(-delta))
163       indent_level += delta;
164     for (unsigned i = 0; i < indent_level; ++i)
165       Out << "  ";
166     return Out;
167   }
168
169   inline void in() { indent_level++; }
170   inline void out() { if (indent_level >0) indent_level--; }
171
172   inline void
173   sanitize(std::string& str) {
174     for (size_t i = 0; i < str.length(); ++i)
175       if (!isalnum(str[i]) && str[i] != '_')
176         str[i] = '_';
177   }
178
179   inline std::string
180   getTypePrefix(const Type* Ty ) {
181     switch (Ty->getTypeID()) {
182     case Type::VoidTyID:     return "void_";
183     case Type::IntegerTyID:
184       return std::string("int") + utostr(cast<IntegerType>(Ty)->getBitWidth()) +
185         "_";
186     case Type::FloatTyID:    return "float_";
187     case Type::DoubleTyID:   return "double_";
188     case Type::LabelTyID:    return "label_";
189     case Type::FunctionTyID: return "func_";
190     case Type::StructTyID:   return "struct_";
191     case Type::ArrayTyID:    return "array_";
192     case Type::PointerTyID:  return "ptr_";
193     case Type::VectorTyID:   return "packed_";
194     case Type::OpaqueTyID:   return "opaque_";
195     default:                 return "other_";
196     }
197     return "unknown_";
198   }
199
200   // Looks up the type in the symbol table and returns a pointer to its name or
201   // a null pointer if it wasn't found. Note that this isn't the same as the
202   // Mode::getTypeName function which will return an empty string, not a null
203   // pointer if the name is not found.
204   inline const std::string*
205   findTypeName(const TypeSymbolTable& ST, const Type* Ty) {
206     TypeSymbolTable::const_iterator TI = ST.begin();
207     TypeSymbolTable::const_iterator TE = ST.end();
208     for (;TI != TE; ++TI)
209       if (TI->second == Ty)
210         return &(TI->first);
211     return 0;
212   }
213
214   void CppWriter::error(const std::string& msg) {
215     llvm_report_error(msg);
216   }
217
218   // printCFP - Print a floating point constant .. very carefully :)
219   // This makes sure that conversion to/from floating yields the same binary
220   // result so that we don't lose precision.
221   void CppWriter::printCFP(const ConstantFP *CFP) {
222     bool ignored;
223     APFloat APF = APFloat(CFP->getValueAPF());  // copy
224     if (CFP->getType() == Type::getFloatTy(CFP->getContext()))
225       APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
226     Out << "ConstantFP::get(";
227     Out << "APFloat(";
228 #if HAVE_PRINTF_A
229     char Buffer[100];
230     sprintf(Buffer, "%A", APF.convertToDouble());
231     if ((!strncmp(Buffer, "0x", 2) ||
232          !strncmp(Buffer, "-0x", 3) ||
233          !strncmp(Buffer, "+0x", 3)) &&
234         APF.bitwiseIsEqual(APFloat(atof(Buffer)))) {
235       if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
236         Out << "BitsToDouble(" << Buffer << ")";
237       else
238         Out << "BitsToFloat((float)" << Buffer << ")";
239       Out << ")";
240     } else {
241 #endif
242       std::string StrVal = ftostr(CFP->getValueAPF());
243
244       while (StrVal[0] == ' ')
245         StrVal.erase(StrVal.begin());
246
247       // Check to make sure that the stringized number is not some string like
248       // "Inf" or NaN.  Check that the string matches the "[-+]?[0-9]" regex.
249       if (((StrVal[0] >= '0' && StrVal[0] <= '9') ||
250            ((StrVal[0] == '-' || StrVal[0] == '+') &&
251             (StrVal[1] >= '0' && StrVal[1] <= '9'))) &&
252           (CFP->isExactlyValue(atof(StrVal.c_str())))) {
253         if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
254           Out <<  StrVal;
255         else
256           Out << StrVal << "f";
257       } else if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
258         Out << "BitsToDouble(0x"
259             << utohexstr(CFP->getValueAPF().bitcastToAPInt().getZExtValue())
260             << "ULL) /* " << StrVal << " */";
261       else
262         Out << "BitsToFloat(0x"
263             << utohexstr((uint32_t)CFP->getValueAPF().
264                                         bitcastToAPInt().getZExtValue())
265             << "U) /* " << StrVal << " */";
266       Out << ")";
267 #if HAVE_PRINTF_A
268     }
269 #endif
270     Out << ")";
271   }
272
273   void CppWriter::printCallingConv(unsigned cc){
274     // Print the calling convention.
275     switch (cc) {
276     case CallingConv::C:     Out << "CallingConv::C"; break;
277     case CallingConv::Fast:  Out << "CallingConv::Fast"; break;
278     case CallingConv::Cold:  Out << "CallingConv::Cold"; break;
279     case CallingConv::FirstTargetCC: Out << "CallingConv::FirstTargetCC"; break;
280     default:                 Out << cc; break;
281     }
282   }
283
284   void CppWriter::printLinkageType(GlobalValue::LinkageTypes LT) {
285     switch (LT) {
286     case GlobalValue::InternalLinkage:
287       Out << "GlobalValue::InternalLinkage"; break;
288     case GlobalValue::PrivateLinkage:
289       Out << "GlobalValue::PrivateLinkage"; break;
290     case GlobalValue::LinkerPrivateLinkage:
291       Out << "GlobalValue::LinkerPrivateLinkage"; break;
292     case GlobalValue::AvailableExternallyLinkage:
293       Out << "GlobalValue::AvailableExternallyLinkage "; break;
294     case GlobalValue::LinkOnceAnyLinkage:
295       Out << "GlobalValue::LinkOnceAnyLinkage "; break;
296     case GlobalValue::LinkOnceODRLinkage:
297       Out << "GlobalValue::LinkOnceODRLinkage "; break;
298     case GlobalValue::WeakAnyLinkage:
299       Out << "GlobalValue::WeakAnyLinkage"; break;
300     case GlobalValue::WeakODRLinkage:
301       Out << "GlobalValue::WeakODRLinkage"; break;
302     case GlobalValue::AppendingLinkage:
303       Out << "GlobalValue::AppendingLinkage"; break;
304     case GlobalValue::ExternalLinkage:
305       Out << "GlobalValue::ExternalLinkage"; break;
306     case GlobalValue::DLLImportLinkage:
307       Out << "GlobalValue::DLLImportLinkage"; break;
308     case GlobalValue::DLLExportLinkage:
309       Out << "GlobalValue::DLLExportLinkage"; break;
310     case GlobalValue::ExternalWeakLinkage:
311       Out << "GlobalValue::ExternalWeakLinkage"; break;
312     case GlobalValue::GhostLinkage:
313       Out << "GlobalValue::GhostLinkage"; break;
314     case GlobalValue::CommonLinkage:
315       Out << "GlobalValue::CommonLinkage"; break;
316     }
317   }
318
319   void CppWriter::printVisibilityType(GlobalValue::VisibilityTypes VisType) {
320     switch (VisType) {
321     default: llvm_unreachable("Unknown GVar visibility");
322     case GlobalValue::DefaultVisibility:
323       Out << "GlobalValue::DefaultVisibility";
324       break;
325     case GlobalValue::HiddenVisibility:
326       Out << "GlobalValue::HiddenVisibility";
327       break;
328     case GlobalValue::ProtectedVisibility:
329       Out << "GlobalValue::ProtectedVisibility";
330       break;
331     }
332   }
333
334   // printEscapedString - Print each character of the specified string, escaping
335   // it if it is not printable or if it is an escape char.
336   void CppWriter::printEscapedString(const std::string &Str) {
337     for (unsigned i = 0, e = Str.size(); i != e; ++i) {
338       unsigned char C = Str[i];
339       if (isprint(C) && C != '"' && C != '\\') {
340         Out << C;
341       } else {
342         Out << "\\x"
343             << (char) ((C/16  < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
344             << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
345       }
346     }
347   }
348
349   std::string CppWriter::getCppName(const Type* Ty) {
350     // First, handle the primitive types .. easy
351     if (Ty->isPrimitiveType() || Ty->isInteger()) {
352       switch (Ty->getTypeID()) {
353       case Type::VoidTyID:   return "Type::VoidTy";
354       case Type::IntegerTyID: {
355         unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
356         return "IntegerType::get(getGlobalContext(), " + utostr(BitWidth) + ")";
357       }
358       case Type::X86_FP80TyID: return "Type::X86_FP80Ty";
359       case Type::FloatTyID:    return "Type::FloatTy";
360       case Type::DoubleTyID:   return "Type::DoubleTy";
361       case Type::LabelTyID:    return "Type::LabelTy";
362       default:
363         error("Invalid primitive type");
364         break;
365       }
366       return "Type::VoidTy"; // shouldn't be returned, but make it sensible
367     }
368
369     // Now, see if we've seen the type before and return that
370     TypeMap::iterator I = TypeNames.find(Ty);
371     if (I != TypeNames.end())
372       return I->second;
373
374     // Okay, let's build a new name for this type. Start with a prefix
375     const char* prefix = 0;
376     switch (Ty->getTypeID()) {
377     case Type::FunctionTyID:    prefix = "FuncTy_"; break;
378     case Type::StructTyID:      prefix = "StructTy_"; break;
379     case Type::ArrayTyID:       prefix = "ArrayTy_"; break;
380     case Type::PointerTyID:     prefix = "PointerTy_"; break;
381     case Type::OpaqueTyID:      prefix = "OpaqueTy_"; break;
382     case Type::VectorTyID:      prefix = "VectorTy_"; break;
383     default:                    prefix = "OtherTy_"; break; // prevent breakage
384     }
385
386     // See if the type has a name in the symboltable and build accordingly
387     const std::string* tName = findTypeName(TheModule->getTypeSymbolTable(), Ty);
388     std::string name;
389     if (tName)
390       name = std::string(prefix) + *tName;
391     else
392       name = std::string(prefix) + utostr(uniqueNum++);
393     sanitize(name);
394
395     // Save the name
396     return TypeNames[Ty] = name;
397   }
398
399   void CppWriter::printCppName(const Type* Ty) {
400     printEscapedString(getCppName(Ty));
401   }
402
403   std::string CppWriter::getCppName(const Value* val) {
404     std::string name;
405     ValueMap::iterator I = ValueNames.find(val);
406     if (I != ValueNames.end() && I->first == val)
407       return  I->second;
408
409     if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(val)) {
410       name = std::string("gvar_") +
411         getTypePrefix(GV->getType()->getElementType());
412     } else if (isa<Function>(val)) {
413       name = std::string("func_");
414     } else if (const Constant* C = dyn_cast<Constant>(val)) {
415       name = std::string("const_") + getTypePrefix(C->getType());
416     } else if (const Argument* Arg = dyn_cast<Argument>(val)) {
417       if (is_inline) {
418         unsigned argNum = std::distance(Arg->getParent()->arg_begin(),
419                                         Function::const_arg_iterator(Arg)) + 1;
420         name = std::string("arg_") + utostr(argNum);
421         NameSet::iterator NI = UsedNames.find(name);
422         if (NI != UsedNames.end())
423           name += std::string("_") + utostr(uniqueNum++);
424         UsedNames.insert(name);
425         return ValueNames[val] = name;
426       } else {
427         name = getTypePrefix(val->getType());
428       }
429     } else {
430       name = getTypePrefix(val->getType());
431     }
432     if (val->hasName())
433       name += val->getName();
434     else
435       name += utostr(uniqueNum++);
436     sanitize(name);
437     NameSet::iterator NI = UsedNames.find(name);
438     if (NI != UsedNames.end())
439       name += std::string("_") + utostr(uniqueNum++);
440     UsedNames.insert(name);
441     return ValueNames[val] = name;
442   }
443
444   void CppWriter::printCppName(const Value* val) {
445     printEscapedString(getCppName(val));
446   }
447
448   void CppWriter::printAttributes(const AttrListPtr &PAL,
449                                   const std::string &name) {
450     Out << "AttrListPtr " << name << "_PAL;";
451     nl(Out);
452     if (!PAL.isEmpty()) {
453       Out << '{'; in(); nl(Out);
454       Out << "SmallVector<AttributeWithIndex, 4> Attrs;"; nl(Out);
455       Out << "AttributeWithIndex PAWI;"; nl(Out);
456       for (unsigned i = 0; i < PAL.getNumSlots(); ++i) {
457         unsigned index = PAL.getSlot(i).Index;
458         Attributes attrs = PAL.getSlot(i).Attrs;
459         Out << "PAWI.Index = " << index << "U; PAWI.Attrs = 0 ";
460 #define HANDLE_ATTR(X)                 \
461         if (attrs & Attribute::X)      \
462           Out << " | Attribute::" #X;  \
463         attrs &= ~Attribute::X;
464         
465         HANDLE_ATTR(SExt);
466         HANDLE_ATTR(ZExt);
467         HANDLE_ATTR(NoReturn);
468         HANDLE_ATTR(InReg);
469         HANDLE_ATTR(StructRet);
470         HANDLE_ATTR(NoUnwind);
471         HANDLE_ATTR(NoAlias);
472         HANDLE_ATTR(ByVal);
473         HANDLE_ATTR(Nest);
474         HANDLE_ATTR(ReadNone);
475         HANDLE_ATTR(ReadOnly);
476         HANDLE_ATTR(NoInline);
477         HANDLE_ATTR(AlwaysInline);
478         HANDLE_ATTR(OptimizeForSize);
479         HANDLE_ATTR(StackProtect);
480         HANDLE_ATTR(StackProtectReq);
481         HANDLE_ATTR(NoCapture);
482 #undef HANDLE_ATTR
483         assert(attrs == 0 && "Unhandled attribute!");
484         Out << ";";
485         nl(Out);
486         Out << "Attrs.push_back(PAWI);";
487         nl(Out);
488       }
489       Out << name << "_PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());";
490       nl(Out);
491       out(); nl(Out);
492       Out << '}'; nl(Out);
493     }
494   }
495
496   bool CppWriter::printTypeInternal(const Type* Ty) {
497     // We don't print definitions for primitive types
498     if (Ty->isPrimitiveType() || Ty->isInteger())
499       return false;
500
501     // If we already defined this type, we don't need to define it again.
502     if (DefinedTypes.find(Ty) != DefinedTypes.end())
503       return false;
504
505     // Everything below needs the name for the type so get it now.
506     std::string typeName(getCppName(Ty));
507
508     // Search the type stack for recursion. If we find it, then generate this
509     // as an OpaqueType, but make sure not to do this multiple times because
510     // the type could appear in multiple places on the stack. Once the opaque
511     // definition is issued, it must not be re-issued. Consequently we have to
512     // check the UnresolvedTypes list as well.
513     TypeList::const_iterator TI = std::find(TypeStack.begin(), TypeStack.end(),
514                                             Ty);
515     if (TI != TypeStack.end()) {
516       TypeMap::const_iterator I = UnresolvedTypes.find(Ty);
517       if (I == UnresolvedTypes.end()) {
518         Out << "PATypeHolder " << typeName << "_fwd = OpaqueType::get();";
519         nl(Out);
520         UnresolvedTypes[Ty] = typeName;
521       }
522       return true;
523     }
524
525     // We're going to print a derived type which, by definition, contains other
526     // types. So, push this one we're printing onto the type stack to assist with
527     // recursive definitions.
528     TypeStack.push_back(Ty);
529
530     // Print the type definition
531     switch (Ty->getTypeID()) {
532     case Type::FunctionTyID:  {
533       const FunctionType* FT = cast<FunctionType>(Ty);
534       Out << "std::vector<const Type*>" << typeName << "_args;";
535       nl(Out);
536       FunctionType::param_iterator PI = FT->param_begin();
537       FunctionType::param_iterator PE = FT->param_end();
538       for (; PI != PE; ++PI) {
539         const Type* argTy = static_cast<const Type*>(*PI);
540         bool isForward = printTypeInternal(argTy);
541         std::string argName(getCppName(argTy));
542         Out << typeName << "_args.push_back(" << argName;
543         if (isForward)
544           Out << "_fwd";
545         Out << ");";
546         nl(Out);
547       }
548       bool isForward = printTypeInternal(FT->getReturnType());
549       std::string retTypeName(getCppName(FT->getReturnType()));
550       Out << "FunctionType* " << typeName << " = FunctionType::get(";
551       in(); nl(Out) << "/*Result=*/" << retTypeName;
552       if (isForward)
553         Out << "_fwd";
554       Out << ",";
555       nl(Out) << "/*Params=*/" << typeName << "_args,";
556       nl(Out) << "/*isVarArg=*/" << (FT->isVarArg() ? "true" : "false") << ");";
557       out();
558       nl(Out);
559       break;
560     }
561     case Type::StructTyID: {
562       const StructType* ST = cast<StructType>(Ty);
563       Out << "std::vector<const Type*>" << typeName << "_fields;";
564       nl(Out);
565       StructType::element_iterator EI = ST->element_begin();
566       StructType::element_iterator EE = ST->element_end();
567       for (; EI != EE; ++EI) {
568         const Type* fieldTy = static_cast<const Type*>(*EI);
569         bool isForward = printTypeInternal(fieldTy);
570         std::string fieldName(getCppName(fieldTy));
571         Out << typeName << "_fields.push_back(" << fieldName;
572         if (isForward)
573           Out << "_fwd";
574         Out << ");";
575         nl(Out);
576       }
577       Out << "StructType* " << typeName << " = StructType::get("
578           << "mod->getContext(), "
579           << typeName << "_fields, /*isPacked=*/"
580           << (ST->isPacked() ? "true" : "false") << ");";
581       nl(Out);
582       break;
583     }
584     case Type::ArrayTyID: {
585       const ArrayType* AT = cast<ArrayType>(Ty);
586       const Type* ET = AT->getElementType();
587       bool isForward = printTypeInternal(ET);
588       std::string elemName(getCppName(ET));
589       Out << "ArrayType* " << typeName << " = ArrayType::get("
590           << elemName << (isForward ? "_fwd" : "")
591           << ", " << utostr(AT->getNumElements()) << ");";
592       nl(Out);
593       break;
594     }
595     case Type::PointerTyID: {
596       const PointerType* PT = cast<PointerType>(Ty);
597       const Type* ET = PT->getElementType();
598       bool isForward = printTypeInternal(ET);
599       std::string elemName(getCppName(ET));
600       Out << "PointerType* " << typeName << " = PointerType::get("
601           << elemName << (isForward ? "_fwd" : "")
602           << ", " << utostr(PT->getAddressSpace()) << ");";
603       nl(Out);
604       break;
605     }
606     case Type::VectorTyID: {
607       const VectorType* PT = cast<VectorType>(Ty);
608       const Type* ET = PT->getElementType();
609       bool isForward = printTypeInternal(ET);
610       std::string elemName(getCppName(ET));
611       Out << "VectorType* " << typeName << " = VectorType::get("
612           << elemName << (isForward ? "_fwd" : "")
613           << ", " << utostr(PT->getNumElements()) << ");";
614       nl(Out);
615       break;
616     }
617     case Type::OpaqueTyID: {
618       Out << "OpaqueType* " << typeName << " = OpaqueType::get();";
619       nl(Out);
620       break;
621     }
622     default:
623       error("Invalid TypeID");
624     }
625
626     // If the type had a name, make sure we recreate it.
627     const std::string* progTypeName =
628       findTypeName(TheModule->getTypeSymbolTable(),Ty);
629     if (progTypeName) {
630       Out << "mod->addTypeName(\"" << *progTypeName << "\", "
631           << typeName << ");";
632       nl(Out);
633     }
634
635     // Pop us off the type stack
636     TypeStack.pop_back();
637
638     // Indicate that this type is now defined.
639     DefinedTypes.insert(Ty);
640
641     // Early resolve as many unresolved types as possible. Search the unresolved
642     // types map for the type we just printed. Now that its definition is complete
643     // we can resolve any previous references to it. This prevents a cascade of
644     // unresolved types.
645     TypeMap::iterator I = UnresolvedTypes.find(Ty);
646     if (I != UnresolvedTypes.end()) {
647       Out << "cast<OpaqueType>(" << I->second
648           << "_fwd.get())->refineAbstractTypeTo(" << I->second << ");";
649       nl(Out);
650       Out << I->second << " = cast<";
651       switch (Ty->getTypeID()) {
652       case Type::FunctionTyID: Out << "FunctionType"; break;
653       case Type::ArrayTyID:    Out << "ArrayType"; break;
654       case Type::StructTyID:   Out << "StructType"; break;
655       case Type::VectorTyID:   Out << "VectorType"; break;
656       case Type::PointerTyID:  Out << "PointerType"; break;
657       case Type::OpaqueTyID:   Out << "OpaqueType"; break;
658       default:                 Out << "NoSuchDerivedType"; break;
659       }
660       Out << ">(" << I->second << "_fwd.get());";
661       nl(Out); nl(Out);
662       UnresolvedTypes.erase(I);
663     }
664
665     // Finally, separate the type definition from other with a newline.
666     nl(Out);
667
668     // We weren't a recursive type
669     return false;
670   }
671
672   // Prints a type definition. Returns true if it could not resolve all the
673   // types in the definition but had to use a forward reference.
674   void CppWriter::printType(const Type* Ty) {
675     assert(TypeStack.empty());
676     TypeStack.clear();
677     printTypeInternal(Ty);
678     assert(TypeStack.empty());
679   }
680
681   void CppWriter::printTypes(const Module* M) {
682     // Walk the symbol table and print out all its types
683     const TypeSymbolTable& symtab = M->getTypeSymbolTable();
684     for (TypeSymbolTable::const_iterator TI = symtab.begin(), TE = symtab.end();
685          TI != TE; ++TI) {
686
687       // For primitive types and types already defined, just add a name
688       TypeMap::const_iterator TNI = TypeNames.find(TI->second);
689       if (TI->second->isInteger() || TI->second->isPrimitiveType() ||
690           TNI != TypeNames.end()) {
691         Out << "mod->addTypeName(\"";
692         printEscapedString(TI->first);
693         Out << "\", " << getCppName(TI->second) << ");";
694         nl(Out);
695         // For everything else, define the type
696       } else {
697         printType(TI->second);
698       }
699     }
700
701     // Add all of the global variables to the value table...
702     for (Module::const_global_iterator I = TheModule->global_begin(),
703            E = TheModule->global_end(); I != E; ++I) {
704       if (I->hasInitializer())
705         printType(I->getInitializer()->getType());
706       printType(I->getType());
707     }
708
709     // Add all the functions to the table
710     for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
711          FI != FE; ++FI) {
712       printType(FI->getReturnType());
713       printType(FI->getFunctionType());
714       // Add all the function arguments
715       for (Function::const_arg_iterator AI = FI->arg_begin(),
716              AE = FI->arg_end(); AI != AE; ++AI) {
717         printType(AI->getType());
718       }
719
720       // Add all of the basic blocks and instructions
721       for (Function::const_iterator BB = FI->begin(),
722              E = FI->end(); BB != E; ++BB) {
723         printType(BB->getType());
724         for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
725              ++I) {
726           printType(I->getType());
727           for (unsigned i = 0; i < I->getNumOperands(); ++i)
728             printType(I->getOperand(i)->getType());
729         }
730       }
731     }
732   }
733
734
735   // printConstant - Print out a constant pool entry...
736   void CppWriter::printConstant(const Constant *CV) {
737     // First, if the constant is actually a GlobalValue (variable or function)
738     // or its already in the constant list then we've printed it already and we
739     // can just return.
740     if (isa<GlobalValue>(CV) || ValueNames.find(CV) != ValueNames.end())
741       return;
742
743     std::string constName(getCppName(CV));
744     std::string typeName(getCppName(CV->getType()));
745
746     if (isa<GlobalValue>(CV)) {
747       // Skip variables and functions, we emit them elsewhere
748       return;
749     }
750
751     if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
752       std::string constValue = CI->getValue().toString(10, true);
753       Out << "ConstantInt* " << constName
754           << " = ConstantInt::get(getGlobalContext(), APInt("
755           << cast<IntegerType>(CI->getType())->getBitWidth()
756           << ",  StringRef(\"" <<  constValue << "\"), 10));";
757     } else if (isa<ConstantAggregateZero>(CV)) {
758       Out << "ConstantAggregateZero* " << constName
759           << " = ConstantAggregateZero::get(" << typeName << ");";
760     } else if (isa<ConstantPointerNull>(CV)) {
761       Out << "ConstantPointerNull* " << constName
762           << " = ConstantPointerNull::get(" << typeName << ");";
763     } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
764       Out << "ConstantFP* " << constName << " = ";
765       printCFP(CFP);
766       Out << ";";
767     } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
768       if (CA->isString() &&
769           CA->getType()->getElementType() ==
770               Type::getInt8Ty(CA->getContext())) {
771         Out << "Constant* " << constName <<
772                " = ConstantArray::get(getGlobalContext(), \"";
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(getGlobalContext(), ";
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(getGlobalContext(), "
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 <<
1684              " = BasicBlock::Create(getGlobalContext(), \"";
1685       if (BI->hasName())
1686         printEscapedString(BI->getName());
1687       Out << "\"," << getCppName(BI->getParent()) << ",0);";
1688       nl(Out);
1689     }
1690
1691     // Output all of its basic blocks... for the function
1692     for (Function::const_iterator BI = F->begin(), BE = F->end();
1693          BI != BE; ++BI) {
1694       std::string bbname(getCppName(BI));
1695       nl(Out) << "// Block " << BI->getName() << " (" << bbname << ")";
1696       nl(Out);
1697
1698       // Output all of the instructions in the basic block...
1699       for (BasicBlock::const_iterator I = BI->begin(), E = BI->end();
1700            I != E; ++I) {
1701         printInstruction(I,bbname);
1702       }
1703     }
1704
1705     // Loop over the ForwardRefs and resolve them now that all instructions
1706     // are generated.
1707     if (!ForwardRefs.empty()) {
1708       nl(Out) << "// Resolve Forward References";
1709       nl(Out);
1710     }
1711
1712     while (!ForwardRefs.empty()) {
1713       ForwardRefMap::iterator I = ForwardRefs.begin();
1714       Out << I->second << "->replaceAllUsesWith("
1715           << getCppName(I->first) << "); delete " << I->second << ";";
1716       nl(Out);
1717       ForwardRefs.erase(I);
1718     }
1719   }
1720
1721   void CppWriter::printInline(const std::string& fname,
1722                               const std::string& func) {
1723     const Function* F = TheModule->getFunction(func);
1724     if (!F) {
1725       error(std::string("Function '") + func + "' not found in input module");
1726       return;
1727     }
1728     if (F->isDeclaration()) {
1729       error(std::string("Function '") + func + "' is external!");
1730       return;
1731     }
1732     nl(Out) << "BasicBlock* " << fname << "(Module* mod, Function *"
1733             << getCppName(F);
1734     unsigned arg_count = 1;
1735     for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1736          AI != AE; ++AI) {
1737       Out << ", Value* arg_" << arg_count;
1738     }
1739     Out << ") {";
1740     nl(Out);
1741     is_inline = true;
1742     printFunctionUses(F);
1743     printFunctionBody(F);
1744     is_inline = false;
1745     Out << "return " << getCppName(F->begin()) << ";";
1746     nl(Out) << "}";
1747     nl(Out);
1748   }
1749
1750   void CppWriter::printModuleBody() {
1751     // Print out all the type definitions
1752     nl(Out) << "// Type Definitions"; nl(Out);
1753     printTypes(TheModule);
1754
1755     // Functions can call each other and global variables can reference them so
1756     // define all the functions first before emitting their function bodies.
1757     nl(Out) << "// Function Declarations"; nl(Out);
1758     for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1759          I != E; ++I)
1760       printFunctionHead(I);
1761
1762     // Process the global variables declarations. We can't initialze them until
1763     // after the constants are printed so just print a header for each global
1764     nl(Out) << "// Global Variable Declarations\n"; nl(Out);
1765     for (Module::const_global_iterator I = TheModule->global_begin(),
1766            E = TheModule->global_end(); I != E; ++I) {
1767       printVariableHead(I);
1768     }
1769
1770     // Print out all the constants definitions. Constants don't recurse except
1771     // through GlobalValues. All GlobalValues have been declared at this point
1772     // so we can proceed to generate the constants.
1773     nl(Out) << "// Constant Definitions"; nl(Out);
1774     printConstants(TheModule);
1775
1776     // Process the global variables definitions now that all the constants have
1777     // been emitted. These definitions just couple the gvars with their constant
1778     // initializers.
1779     nl(Out) << "// Global Variable Definitions"; nl(Out);
1780     for (Module::const_global_iterator I = TheModule->global_begin(),
1781            E = TheModule->global_end(); I != E; ++I) {
1782       printVariableBody(I);
1783     }
1784
1785     // Finally, we can safely put out all of the function bodies.
1786     nl(Out) << "// Function Definitions"; nl(Out);
1787     for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1788          I != E; ++I) {
1789       if (!I->isDeclaration()) {
1790         nl(Out) << "// Function: " << I->getName() << " (" << getCppName(I)
1791                 << ")";
1792         nl(Out) << "{";
1793         nl(Out,1);
1794         printFunctionBody(I);
1795         nl(Out,-1) << "}";
1796         nl(Out);
1797       }
1798     }
1799   }
1800
1801   void CppWriter::printProgram(const std::string& fname,
1802                                const std::string& mName) {
1803     Out << "#include <llvm/LLVMContext.h>\n";
1804     Out << "#include <llvm/Module.h>\n";
1805     Out << "#include <llvm/DerivedTypes.h>\n";
1806     Out << "#include <llvm/Constants.h>\n";
1807     Out << "#include <llvm/GlobalVariable.h>\n";
1808     Out << "#include <llvm/Function.h>\n";
1809     Out << "#include <llvm/CallingConv.h>\n";
1810     Out << "#include <llvm/BasicBlock.h>\n";
1811     Out << "#include <llvm/Instructions.h>\n";
1812     Out << "#include <llvm/InlineAsm.h>\n";
1813     Out << "#include <llvm/Support/FormattedStream.h>\n";
1814     Out << "#include <llvm/Support/MathExtras.h>\n";
1815     Out << "#include <llvm/Pass.h>\n";
1816     Out << "#include <llvm/PassManager.h>\n";
1817     Out << "#include <llvm/ADT/SmallVector.h>\n";
1818     Out << "#include <llvm/Analysis/Verifier.h>\n";
1819     Out << "#include <llvm/Assembly/PrintModulePass.h>\n";
1820     Out << "#include <algorithm>\n";
1821     Out << "using namespace llvm;\n\n";
1822     Out << "Module* " << fname << "();\n\n";
1823     Out << "int main(int argc, char**argv) {\n";
1824     Out << "  Module* Mod = " << fname << "();\n";
1825     Out << "  verifyModule(*Mod, PrintMessageAction);\n";
1826     Out << "  PassManager PM;\n";
1827     Out << "  PM.add(createPrintModulePass(&outs()));\n";
1828     Out << "  PM.run(*Mod);\n";
1829     Out << "  return 0;\n";
1830     Out << "}\n\n";
1831     printModule(fname,mName);
1832   }
1833
1834   void CppWriter::printModule(const std::string& fname,
1835                               const std::string& mName) {
1836     nl(Out) << "Module* " << fname << "() {";
1837     nl(Out,1) << "// Module Construction";
1838     nl(Out) << "Module* mod = new Module(\"";
1839     printEscapedString(mName);
1840     Out << "\", getGlobalContext());";
1841     if (!TheModule->getTargetTriple().empty()) {
1842       nl(Out) << "mod->setDataLayout(\"" << TheModule->getDataLayout() << "\");";
1843     }
1844     if (!TheModule->getTargetTriple().empty()) {
1845       nl(Out) << "mod->setTargetTriple(\"" << TheModule->getTargetTriple()
1846               << "\");";
1847     }
1848
1849     if (!TheModule->getModuleInlineAsm().empty()) {
1850       nl(Out) << "mod->setModuleInlineAsm(\"";
1851       printEscapedString(TheModule->getModuleInlineAsm());
1852       Out << "\");";
1853     }
1854     nl(Out);
1855
1856     // Loop over the dependent libraries and emit them.
1857     Module::lib_iterator LI = TheModule->lib_begin();
1858     Module::lib_iterator LE = TheModule->lib_end();
1859     while (LI != LE) {
1860       Out << "mod->addLibrary(\"" << *LI << "\");";
1861       nl(Out);
1862       ++LI;
1863     }
1864     printModuleBody();
1865     nl(Out) << "return mod;";
1866     nl(Out,-1) << "}";
1867     nl(Out);
1868   }
1869
1870   void CppWriter::printContents(const std::string& fname,
1871                                 const std::string& mName) {
1872     Out << "\nModule* " << fname << "(Module *mod) {\n";
1873     Out << "\nmod->setModuleIdentifier(\"";
1874     printEscapedString(mName);
1875     Out << "\");\n";
1876     printModuleBody();
1877     Out << "\nreturn mod;\n";
1878     Out << "\n}\n";
1879   }
1880
1881   void CppWriter::printFunction(const std::string& fname,
1882                                 const std::string& funcName) {
1883     const Function* F = TheModule->getFunction(funcName);
1884     if (!F) {
1885       error(std::string("Function '") + funcName + "' not found in input module");
1886       return;
1887     }
1888     Out << "\nFunction* " << fname << "(Module *mod) {\n";
1889     printFunctionUses(F);
1890     printFunctionHead(F);
1891     printFunctionBody(F);
1892     Out << "return " << getCppName(F) << ";\n";
1893     Out << "}\n";
1894   }
1895
1896   void CppWriter::printFunctions() {
1897     const Module::FunctionListType &funcs = TheModule->getFunctionList();
1898     Module::const_iterator I  = funcs.begin();
1899     Module::const_iterator IE = funcs.end();
1900
1901     for (; I != IE; ++I) {
1902       const Function &func = *I;
1903       if (!func.isDeclaration()) {
1904         std::string name("define_");
1905         name += func.getName();
1906         printFunction(name, func.getName());
1907       }
1908     }
1909   }
1910
1911   void CppWriter::printVariable(const std::string& fname,
1912                                 const std::string& varName) {
1913     const GlobalVariable* GV = TheModule->getNamedGlobal(varName);
1914
1915     if (!GV) {
1916       error(std::string("Variable '") + varName + "' not found in input module");
1917       return;
1918     }
1919     Out << "\nGlobalVariable* " << fname << "(Module *mod) {\n";
1920     printVariableUses(GV);
1921     printVariableHead(GV);
1922     printVariableBody(GV);
1923     Out << "return " << getCppName(GV) << ";\n";
1924     Out << "}\n";
1925   }
1926
1927   void CppWriter::printType(const std::string& fname,
1928                             const std::string& typeName) {
1929     const Type* Ty = TheModule->getTypeByName(typeName);
1930     if (!Ty) {
1931       error(std::string("Type '") + typeName + "' not found in input module");
1932       return;
1933     }
1934     Out << "\nType* " << fname << "(Module *mod) {\n";
1935     printType(Ty);
1936     Out << "return " << getCppName(Ty) << ";\n";
1937     Out << "}\n";
1938   }
1939
1940   bool CppWriter::runOnModule(Module &M) {
1941     TheModule = &M;
1942
1943     // Emit a header
1944     Out << "// Generated by llvm2cpp - DO NOT MODIFY!\n\n";
1945
1946     // Get the name of the function we're supposed to generate
1947     std::string fname = FuncName.getValue();
1948
1949     // Get the name of the thing we are to generate
1950     std::string tgtname = NameToGenerate.getValue();
1951     if (GenerationType == GenModule ||
1952         GenerationType == GenContents ||
1953         GenerationType == GenProgram ||
1954         GenerationType == GenFunctions) {
1955       if (tgtname == "!bad!") {
1956         if (M.getModuleIdentifier() == "-")
1957           tgtname = "<stdin>";
1958         else
1959           tgtname = M.getModuleIdentifier();
1960       }
1961     } else if (tgtname == "!bad!")
1962       error("You must use the -for option with -gen-{function,variable,type}");
1963
1964     switch (WhatToGenerate(GenerationType)) {
1965      case GenProgram:
1966       if (fname.empty())
1967         fname = "makeLLVMModule";
1968       printProgram(fname,tgtname);
1969       break;
1970      case GenModule:
1971       if (fname.empty())
1972         fname = "makeLLVMModule";
1973       printModule(fname,tgtname);
1974       break;
1975      case GenContents:
1976       if (fname.empty())
1977         fname = "makeLLVMModuleContents";
1978       printContents(fname,tgtname);
1979       break;
1980      case GenFunction:
1981       if (fname.empty())
1982         fname = "makeLLVMFunction";
1983       printFunction(fname,tgtname);
1984       break;
1985      case GenFunctions:
1986       printFunctions();
1987       break;
1988      case GenInline:
1989       if (fname.empty())
1990         fname = "makeLLVMInline";
1991       printInline(fname,tgtname);
1992       break;
1993      case GenVariable:
1994       if (fname.empty())
1995         fname = "makeLLVMVariable";
1996       printVariable(fname,tgtname);
1997       break;
1998      case GenType:
1999       if (fname.empty())
2000         fname = "makeLLVMType";
2001       printType(fname,tgtname);
2002       break;
2003      default:
2004       error("Invalid generation option");
2005     }
2006
2007     return false;
2008   }
2009 }
2010
2011 char CppWriter::ID = 0;
2012
2013 //===----------------------------------------------------------------------===//
2014 //                       External Interface declaration
2015 //===----------------------------------------------------------------------===//
2016
2017 bool CPPTargetMachine::addPassesToEmitWholeFile(PassManager &PM,
2018                                                 formatted_raw_ostream &o,
2019                                                 CodeGenFileType FileType,
2020                                                 CodeGenOpt::Level OptLevel) {
2021   if (FileType != TargetMachine::AssemblyFile) return true;
2022   PM.add(new CppWriter(o));
2023   return false;
2024 }