blob: d30968e3c8ff646f27a50e5a22b8c7613b220d46 [file] [log] [blame]
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001//===-- CppWriter.cpp - Printing LLVM IR as a C++ Source File -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00007//
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 "llvm/CallingConv.h"
16#include "llvm/Constants.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/InlineAsm.h"
19#include "llvm/Instruction.h"
20#include "llvm/Instructions.h"
Reid Spencer6abd3da2007-04-11 09:54:08 +000021#include "llvm/ParameterAttributes.h"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000022#include "llvm/Module.h"
Reid Spencer78d033e2007-01-06 07:24:44 +000023#include "llvm/TypeSymbolTable.h"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000024#include "llvm/ADT/StringExtras.h"
25#include "llvm/ADT/STLExtras.h"
Reid Spencera4d71f02007-06-16 20:48:27 +000026#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer15f7e012006-05-30 21:18:23 +000027#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000028#include "llvm/Support/CFG.h"
29#include "llvm/Support/ManagedStatic.h"
30#include "llvm/Support/MathExtras.h"
Reid Spencerf977e7b2006-06-01 23:43:47 +000031#include "llvm/Config/config.h"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000032#include <algorithm>
33#include <iostream>
Reid Spencer66c87342006-05-30 03:43:49 +000034#include <set>
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000035
36using namespace llvm;
37
Reid Spencer15f7e012006-05-30 21:18:23 +000038static cl::opt<std::string>
Reid Spencer15f7e012006-05-30 21:18:23 +000039FuncName("funcname", cl::desc("Specify the name of the generated function"),
40 cl::value_desc("function name"));
41
Reid Spencer12803f52006-05-31 17:31:38 +000042enum WhatToGenerate {
43 GenProgram,
44 GenModule,
45 GenContents,
46 GenFunction,
Chris Lattner120119d2007-11-13 18:22:33 +000047 GenFunctions,
Reid Spencerf977e7b2006-06-01 23:43:47 +000048 GenInline,
Reid Spencer12803f52006-05-31 17:31:38 +000049 GenVariable,
50 GenType
51};
52
53static cl::opt<WhatToGenerate> GenerationType(cl::Optional,
54 cl::desc("Choose what kind of output to generate"),
55 cl::init(GenProgram),
56 cl::values(
Chris Lattner120119d2007-11-13 18:22:33 +000057 clEnumValN(GenProgram, "gen-program", "Generate a complete program"),
58 clEnumValN(GenModule, "gen-module", "Generate a module definition"),
59 clEnumValN(GenContents, "gen-contents", "Generate contents of a module"),
60 clEnumValN(GenFunction, "gen-function", "Generate a function definition"),
61 clEnumValN(GenFunctions,"gen-functions", "Generate all function definitions"),
62 clEnumValN(GenInline, "gen-inline", "Generate an inline function"),
63 clEnumValN(GenVariable, "gen-variable", "Generate a variable definition"),
64 clEnumValN(GenType, "gen-type", "Generate a type definition"),
Reid Spencer12803f52006-05-31 17:31:38 +000065 clEnumValEnd
66 )
67);
68
69static cl::opt<std::string> NameToGenerate("for", cl::Optional,
70 cl::desc("Specify the name of the thing to generate"),
71 cl::init("!bad!"));
Reid Spencer15f7e012006-05-30 21:18:23 +000072
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000073namespace {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000074typedef std::vector<const Type*> TypeList;
75typedef std::map<const Type*,std::string> TypeMap;
76typedef std::map<const Value*,std::string> ValueMap;
Reid Spencer66c87342006-05-30 03:43:49 +000077typedef std::set<std::string> NameSet;
Reid Spencer15f7e012006-05-30 21:18:23 +000078typedef std::set<const Type*> TypeSet;
79typedef std::set<const Value*> ValueSet;
80typedef std::map<const Value*,std::string> ForwardRefMap;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000081
Reid Spencere0d133f2006-05-29 18:08:06 +000082class CppWriter {
Reid Spencer12803f52006-05-31 17:31:38 +000083 const char* progname;
Reid Spencere0d133f2006-05-29 18:08:06 +000084 std::ostream &Out;
85 const Module *TheModule;
Andrew Lenharth539d8712006-05-31 20:18:56 +000086 uint64_t uniqueNum;
Reid Spencere0d133f2006-05-29 18:08:06 +000087 TypeMap TypeNames;
88 ValueMap ValueNames;
89 TypeMap UnresolvedTypes;
90 TypeList TypeStack;
Reid Spencer66c87342006-05-30 03:43:49 +000091 NameSet UsedNames;
Reid Spencer15f7e012006-05-30 21:18:23 +000092 TypeSet DefinedTypes;
93 ValueSet DefinedValues;
94 ForwardRefMap ForwardRefs;
Reid Spencerf977e7b2006-06-01 23:43:47 +000095 bool is_inline;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000096
Reid Spencere0d133f2006-05-29 18:08:06 +000097public:
Reid Spencer12803f52006-05-31 17:31:38 +000098 inline CppWriter(std::ostream &o, const Module *M, const char* pn="llvm2cpp")
99 : progname(pn), Out(o), TheModule(M), uniqueNum(0), TypeNames(),
Reid Spencerf977e7b2006-06-01 23:43:47 +0000100 ValueNames(), UnresolvedTypes(), TypeStack(), is_inline(false) { }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000101
Reid Spencere0d133f2006-05-29 18:08:06 +0000102 const Module* getModule() { return TheModule; }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000103
Reid Spencer12803f52006-05-31 17:31:38 +0000104 void printProgram(const std::string& fname, const std::string& modName );
105 void printModule(const std::string& fname, const std::string& modName );
106 void printContents(const std::string& fname, const std::string& modName );
107 void printFunction(const std::string& fname, const std::string& funcName );
Chris Lattner120119d2007-11-13 18:22:33 +0000108 void printFunctions();
Reid Spencerf977e7b2006-06-01 23:43:47 +0000109 void printInline(const std::string& fname, const std::string& funcName );
Reid Spencer12803f52006-05-31 17:31:38 +0000110 void printVariable(const std::string& fname, const std::string& varName );
111 void printType(const std::string& fname, const std::string& typeName );
112
113 void error(const std::string& msg);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000114
Reid Spencere0d133f2006-05-29 18:08:06 +0000115private:
Reid Spencer12803f52006-05-31 17:31:38 +0000116 void printLinkageType(GlobalValue::LinkageTypes LT);
Duncan Sandsdc024672007-11-27 13:23:08 +0000117 void printVisibilityType(GlobalValue::VisibilityTypes VisTypes);
Reid Spencer12803f52006-05-31 17:31:38 +0000118 void printCallingConv(unsigned cc);
119 void printEscapedString(const std::string& str);
120 void printCFP(const ConstantFP* CFP);
121
122 std::string getCppName(const Type* val);
123 inline void printCppName(const Type* val);
124
125 std::string getCppName(const Value* val);
126 inline void printCppName(const Value* val);
127
Duncan Sandsdc024672007-11-27 13:23:08 +0000128 void printParamAttrs(const ParamAttrsList* PAL, const std::string &name);
Reid Spencer12803f52006-05-31 17:31:38 +0000129 bool printTypeInternal(const Type* Ty);
130 inline void printType(const Type* Ty);
Reid Spencere0d133f2006-05-29 18:08:06 +0000131 void printTypes(const Module* M);
Reid Spencer12803f52006-05-31 17:31:38 +0000132
Reid Spencere0d133f2006-05-29 18:08:06 +0000133 void printConstant(const Constant *CPV);
Reid Spencer12803f52006-05-31 17:31:38 +0000134 void printConstants(const Module* M);
135
136 void printVariableUses(const GlobalVariable *GV);
137 void printVariableHead(const GlobalVariable *GV);
138 void printVariableBody(const GlobalVariable *GV);
139
140 void printFunctionUses(const Function *F);
Reid Spencer66c87342006-05-30 03:43:49 +0000141 void printFunctionHead(const Function *F);
142 void printFunctionBody(const Function *F);
Reid Spencere0d133f2006-05-29 18:08:06 +0000143 void printInstruction(const Instruction *I, const std::string& bbname);
Reid Spencer15f7e012006-05-30 21:18:23 +0000144 std::string getOpName(Value*);
145
Reid Spencer12803f52006-05-31 17:31:38 +0000146 void printModuleBody();
147
Reid Spencere0d133f2006-05-29 18:08:06 +0000148};
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000149
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000150static unsigned indent_level = 0;
151inline std::ostream& nl(std::ostream& Out, int delta = 0) {
152 Out << "\n";
153 if (delta >= 0 || indent_level >= unsigned(-delta))
154 indent_level += delta;
155 for (unsigned i = 0; i < indent_level; ++i)
156 Out << " ";
157 return Out;
158}
159
160inline void in() { indent_level++; }
161inline void out() { if (indent_level >0) indent_level--; }
162
Reid Spencer12803f52006-05-31 17:31:38 +0000163inline void
164sanitize(std::string& str) {
165 for (size_t i = 0; i < str.length(); ++i)
166 if (!isalnum(str[i]) && str[i] != '_')
167 str[i] = '_';
168}
169
Reid Spencera54b7cb2007-01-12 07:05:14 +0000170inline std::string
Reid Spencer12803f52006-05-31 17:31:38 +0000171getTypePrefix(const Type* Ty ) {
Reid Spencer12803f52006-05-31 17:31:38 +0000172 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000173 case Type::VoidTyID: return "void_";
174 case Type::IntegerTyID:
175 return std::string("int") + utostr(cast<IntegerType>(Ty)->getBitWidth()) +
176 "_";
177 case Type::FloatTyID: return "float_";
178 case Type::DoubleTyID: return "double_";
179 case Type::LabelTyID: return "label_";
180 case Type::FunctionTyID: return "func_";
181 case Type::StructTyID: return "struct_";
182 case Type::ArrayTyID: return "array_";
183 case Type::PointerTyID: return "ptr_";
Reid Spencer9d6565a2007-02-15 02:26:10 +0000184 case Type::VectorTyID: return "packed_";
Reid Spencera54b7cb2007-01-12 07:05:14 +0000185 case Type::OpaqueTyID: return "opaque_";
186 default: return "other_";
Reid Spencer12803f52006-05-31 17:31:38 +0000187 }
Reid Spencera54b7cb2007-01-12 07:05:14 +0000188 return "unknown_";
Reid Spencer12803f52006-05-31 17:31:38 +0000189}
190
191// Looks up the type in the symbol table and returns a pointer to its name or
192// a null pointer if it wasn't found. Note that this isn't the same as the
193// Mode::getTypeName function which will return an empty string, not a null
194// pointer if the name is not found.
195inline const std::string*
Reid Spencer78d033e2007-01-06 07:24:44 +0000196findTypeName(const TypeSymbolTable& ST, const Type* Ty)
Reid Spencer12803f52006-05-31 17:31:38 +0000197{
Reid Spencer78d033e2007-01-06 07:24:44 +0000198 TypeSymbolTable::const_iterator TI = ST.begin();
199 TypeSymbolTable::const_iterator TE = ST.end();
Reid Spencer12803f52006-05-31 17:31:38 +0000200 for (;TI != TE; ++TI)
201 if (TI->second == Ty)
202 return &(TI->first);
203 return 0;
204}
205
206void
207CppWriter::error(const std::string& msg) {
208 std::cerr << progname << ": " << msg << "\n";
209 exit(2);
210}
211
Reid Spencer15f7e012006-05-30 21:18:23 +0000212// printCFP - Print a floating point constant .. very carefully :)
213// This makes sure that conversion to/from floating yields the same binary
214// result so that we don't lose precision.
215void
216CppWriter::printCFP(const ConstantFP *CFP) {
Dale Johannesen43421b32007-09-06 18:13:44 +0000217 APFloat APF = APFloat(CFP->getValueAPF()); // copy
218 if (CFP->getType() == Type::FloatTy)
219 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven);
Reid Spencerf977e7b2006-06-01 23:43:47 +0000220 Out << "ConstantFP::get(";
221 if (CFP->getType() == Type::DoubleTy)
222 Out << "Type::DoubleTy, ";
223 else
224 Out << "Type::FloatTy, ";
Dale Johannesen43421b32007-09-06 18:13:44 +0000225 Out << "APFloat(";
Reid Spencer15f7e012006-05-30 21:18:23 +0000226#if HAVE_PRINTF_A
227 char Buffer[100];
Dale Johannesen43421b32007-09-06 18:13:44 +0000228 sprintf(Buffer, "%A", APF.convertToDouble());
Reid Spencer15f7e012006-05-30 21:18:23 +0000229 if ((!strncmp(Buffer, "0x", 2) ||
230 !strncmp(Buffer, "-0x", 3) ||
231 !strncmp(Buffer, "+0x", 3)) &&
Dale Johannesen43421b32007-09-06 18:13:44 +0000232 APF.bitwiseIsEqual(APFloat(atof(Buffer)))) {
Reid Spencerf977e7b2006-06-01 23:43:47 +0000233 if (CFP->getType() == Type::DoubleTy)
234 Out << "BitsToDouble(" << Buffer << ")";
235 else
Dale Johannesen43421b32007-09-06 18:13:44 +0000236 Out << "BitsToFloat((float)" << Buffer << ")";
237 Out << ")";
238 } else {
Reid Spencer15f7e012006-05-30 21:18:23 +0000239#endif
Dale Johannesen43421b32007-09-06 18:13:44 +0000240 std::string StrVal = ftostr(CFP->getValueAPF());
Reid Spencerf977e7b2006-06-01 23:43:47 +0000241
242 while (StrVal[0] == ' ')
243 StrVal.erase(StrVal.begin());
244
245 // Check to make sure that the stringized number is not some string like
246 // "Inf" or NaN. Check that the string matches the "[-+]?[0-9]" regex.
247 if (((StrVal[0] >= '0' && StrVal[0] <= '9') ||
248 ((StrVal[0] == '-' || StrVal[0] == '+') &&
249 (StrVal[1] >= '0' && StrVal[1] <= '9'))) &&
Dale Johannesen43421b32007-09-06 18:13:44 +0000250 (CFP->isExactlyValue(atof(StrVal.c_str())))) {
Reid Spencerf977e7b2006-06-01 23:43:47 +0000251 if (CFP->getType() == Type::DoubleTy)
252 Out << StrVal;
253 else
Dale Johannesen43421b32007-09-06 18:13:44 +0000254 Out << StrVal << "f";
255 }
Reid Spencerf977e7b2006-06-01 23:43:47 +0000256 else if (CFP->getType() == Type::DoubleTy)
Dale Johannesen43421b32007-09-06 18:13:44 +0000257 Out << "BitsToDouble(0x" << std::hex
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000258 << CFP->getValueAPF().convertToAPInt().getZExtValue()
Reid Spencerf977e7b2006-06-01 23:43:47 +0000259 << std::dec << "ULL) /* " << StrVal << " */";
260 else
Dale Johannesen43421b32007-09-06 18:13:44 +0000261 Out << "BitsToFloat(0x" << std::hex
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000262 << (uint32_t)CFP->getValueAPF().convertToAPInt().getZExtValue()
Reid Spencerf977e7b2006-06-01 23:43:47 +0000263 << std::dec << "U) /* " << StrVal << " */";
Dale Johannesen43421b32007-09-06 18:13:44 +0000264 Out << ")";
Reid Spencer15f7e012006-05-30 21:18:23 +0000265#if HAVE_PRINTF_A
266 }
267#endif
Reid Spencerf977e7b2006-06-01 23:43:47 +0000268 Out << ")";
Reid Spencer15f7e012006-05-30 21:18:23 +0000269}
270
Reid Spencer12803f52006-05-31 17:31:38 +0000271void
272CppWriter::printCallingConv(unsigned cc){
273 // Print the calling convention.
274 switch (cc) {
275 case CallingConv::C: Out << "CallingConv::C"; break;
Reid Spencer12803f52006-05-31 17:31:38 +0000276 case CallingConv::Fast: Out << "CallingConv::Fast"; break;
277 case CallingConv::Cold: Out << "CallingConv::Cold"; break;
278 case CallingConv::FirstTargetCC: Out << "CallingConv::FirstTargetCC"; break;
279 default: Out << cc; break;
280 }
281}
Reid Spencer15f7e012006-05-30 21:18:23 +0000282
Reid Spencer12803f52006-05-31 17:31:38 +0000283void
284CppWriter::printLinkageType(GlobalValue::LinkageTypes LT) {
285 switch (LT) {
286 case GlobalValue::InternalLinkage:
287 Out << "GlobalValue::InternalLinkage"; break;
288 case GlobalValue::LinkOnceLinkage:
289 Out << "GlobalValue::LinkOnceLinkage "; break;
290 case GlobalValue::WeakLinkage:
291 Out << "GlobalValue::WeakLinkage"; break;
292 case GlobalValue::AppendingLinkage:
293 Out << "GlobalValue::AppendingLinkage"; break;
294 case GlobalValue::ExternalLinkage:
295 Out << "GlobalValue::ExternalLinkage"; break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000296 case GlobalValue::DLLImportLinkage:
Anton Korobeynikov02e21522007-07-11 19:51:06 +0000297 Out << "GlobalValue::DLLImportLinkage"; break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000298 case GlobalValue::DLLExportLinkage:
Anton Korobeynikov02e21522007-07-11 19:51:06 +0000299 Out << "GlobalValue::DLLExportLinkage"; break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000300 case GlobalValue::ExternalWeakLinkage:
301 Out << "GlobalValue::ExternalWeakLinkage"; break;
Reid Spencer12803f52006-05-31 17:31:38 +0000302 case GlobalValue::GhostLinkage:
303 Out << "GlobalValue::GhostLinkage"; break;
304 }
Reid Spencer15f7e012006-05-30 21:18:23 +0000305}
306
Duncan Sandsdc024672007-11-27 13:23:08 +0000307void
308CppWriter::printVisibilityType(GlobalValue::VisibilityTypes VisType) {
309 switch (VisType) {
310 default: assert(0 && "Unknown GVar visibility");
311 case GlobalValue::DefaultVisibility:
312 Out << "GlobalValue::DefaultVisibility";
313 break;
314 case GlobalValue::HiddenVisibility:
315 Out << "GlobalValue::HiddenVisibility";
316 break;
317 case GlobalValue::ProtectedVisibility:
318 Out << "GlobalValue::ProtectedVisibility";
319 break;
320 }
321}
322
Reid Spencere0d133f2006-05-29 18:08:06 +0000323// printEscapedString - Print each character of the specified string, escaping
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000324// it if it is not printable or if it is an escape char.
Reid Spencere0d133f2006-05-29 18:08:06 +0000325void
326CppWriter::printEscapedString(const std::string &Str) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000327 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
328 unsigned char C = Str[i];
329 if (isprint(C) && C != '"' && C != '\\') {
330 Out << C;
331 } else {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000332 Out << "\\x"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000333 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
334 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
335 }
336 }
337}
338
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000339std::string
340CppWriter::getCppName(const Type* Ty)
341{
342 // First, handle the primitive types .. easy
Chris Lattner42a75512007-01-15 02:27:26 +0000343 if (Ty->isPrimitiveType() || Ty->isInteger()) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000344 switch (Ty->getTypeID()) {
Reid Spencer71d2ec92006-12-31 06:02:26 +0000345 case Type::VoidTyID: return "Type::VoidTy";
Reid Spencera54b7cb2007-01-12 07:05:14 +0000346 case Type::IntegerTyID: {
347 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
348 return "IntegerType::get(" + utostr(BitWidth) + ")";
349 }
Reid Spencer71d2ec92006-12-31 06:02:26 +0000350 case Type::FloatTyID: return "Type::FloatTy";
351 case Type::DoubleTyID: return "Type::DoubleTy";
352 case Type::LabelTyID: return "Type::LabelTy";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000353 default:
Reid Spencer12803f52006-05-31 17:31:38 +0000354 error("Invalid primitive type");
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000355 break;
356 }
357 return "Type::VoidTy"; // shouldn't be returned, but make it sensible
358 }
359
360 // Now, see if we've seen the type before and return that
361 TypeMap::iterator I = TypeNames.find(Ty);
362 if (I != TypeNames.end())
363 return I->second;
364
365 // Okay, let's build a new name for this type. Start with a prefix
366 const char* prefix = 0;
367 switch (Ty->getTypeID()) {
368 case Type::FunctionTyID: prefix = "FuncTy_"; break;
369 case Type::StructTyID: prefix = "StructTy_"; break;
370 case Type::ArrayTyID: prefix = "ArrayTy_"; break;
371 case Type::PointerTyID: prefix = "PointerTy_"; break;
372 case Type::OpaqueTyID: prefix = "OpaqueTy_"; break;
Reid Spencerac9dcb92007-02-15 03:39:18 +0000373 case Type::VectorTyID: prefix = "VectorTy_"; break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000374 default: prefix = "OtherTy_"; break; // prevent breakage
375 }
376
377 // See if the type has a name in the symboltable and build accordingly
Reid Spencer78d033e2007-01-06 07:24:44 +0000378 const std::string* tName = findTypeName(TheModule->getTypeSymbolTable(), Ty);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000379 std::string name;
380 if (tName)
381 name = std::string(prefix) + *tName;
382 else
383 name = std::string(prefix) + utostr(uniqueNum++);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000384 sanitize(name);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000385
386 // Save the name
387 return TypeNames[Ty] = name;
388}
389
Reid Spencer12803f52006-05-31 17:31:38 +0000390void
391CppWriter::printCppName(const Type* Ty)
392{
393 printEscapedString(getCppName(Ty));
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000394}
395
Reid Spencer12803f52006-05-31 17:31:38 +0000396std::string
397CppWriter::getCppName(const Value* val) {
398 std::string name;
399 ValueMap::iterator I = ValueNames.find(val);
400 if (I != ValueNames.end() && I->first == val)
401 return I->second;
Reid Spencer25edc352006-05-31 04:43:19 +0000402
Reid Spencer12803f52006-05-31 17:31:38 +0000403 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(val)) {
404 name = std::string("gvar_") +
405 getTypePrefix(GV->getType()->getElementType());
Reid Spencer3ed469c2006-11-02 20:25:50 +0000406 } else if (isa<Function>(val)) {
Reid Spencer12803f52006-05-31 17:31:38 +0000407 name = std::string("func_");
408 } else if (const Constant* C = dyn_cast<Constant>(val)) {
409 name = std::string("const_") + getTypePrefix(C->getType());
Reid Spencerf977e7b2006-06-01 23:43:47 +0000410 } else if (const Argument* Arg = dyn_cast<Argument>(val)) {
411 if (is_inline) {
412 unsigned argNum = std::distance(Arg->getParent()->arg_begin(),
413 Function::const_arg_iterator(Arg)) + 1;
414 name = std::string("arg_") + utostr(argNum);
415 NameSet::iterator NI = UsedNames.find(name);
416 if (NI != UsedNames.end())
417 name += std::string("_") + utostr(uniqueNum++);
418 UsedNames.insert(name);
419 return ValueNames[val] = name;
420 } else {
421 name = getTypePrefix(val->getType());
422 }
Reid Spencer12803f52006-05-31 17:31:38 +0000423 } else {
424 name = getTypePrefix(val->getType());
Reid Spencer25edc352006-05-31 04:43:19 +0000425 }
Reid Spencer12803f52006-05-31 17:31:38 +0000426 name += (val->hasName() ? val->getName() : utostr(uniqueNum++));
427 sanitize(name);
428 NameSet::iterator NI = UsedNames.find(name);
429 if (NI != UsedNames.end())
430 name += std::string("_") + utostr(uniqueNum++);
431 UsedNames.insert(name);
432 return ValueNames[val] = name;
Reid Spencer25edc352006-05-31 04:43:19 +0000433}
434
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000435void
Reid Spencer12803f52006-05-31 17:31:38 +0000436CppWriter::printCppName(const Value* val) {
437 printEscapedString(getCppName(val));
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000438}
439
Duncan Sandsdc024672007-11-27 13:23:08 +0000440void
441CppWriter::printParamAttrs(const ParamAttrsList* PAL, const std::string &name) {
442 Out << "ParamAttrsList *" << name << "_PAL = 0;";
443 nl(Out);
444 if (PAL) {
445 Out << '{'; in(); nl(Out);
446 Out << "ParamAttrsVector Attrs;"; nl(Out);
447 Out << "ParamAttrsWithIndex PAWI;"; nl(Out);
448 for (unsigned i = 0; i < PAL->size(); ++i) {
449 uint16_t index = PAL->getParamIndex(i);
450 uint16_t attrs = PAL->getParamAttrs(index);
451 Out << "PAWI.index = " << index << "; PAWI.attrs = 0 ";
452 if (attrs & ParamAttr::SExt)
453 Out << " | ParamAttr::SExt";
454 if (attrs & ParamAttr::ZExt)
455 Out << " | ParamAttr::ZExt";
456 if (attrs & ParamAttr::StructRet)
457 Out << " | ParamAttr::StructRet";
458 if (attrs & ParamAttr::InReg)
459 Out << " | ParamAttr::InReg";
460 if (attrs & ParamAttr::NoReturn)
461 Out << " | ParamAttr::NoReturn";
462 if (attrs & ParamAttr::NoUnwind)
463 Out << " | ParamAttr::NoUnwind";
464 Out << ";";
465 nl(Out);
466 Out << "Attrs.push_back(PAWI);";
467 nl(Out);
468 }
469 Out << name << "_PAL = ParamAttrsList::get(Attrs);";
470 nl(Out);
471 out(); nl(Out);
472 Out << '}'; nl(Out);
473 }
474}
475
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000476bool
Reid Spencer12803f52006-05-31 17:31:38 +0000477CppWriter::printTypeInternal(const Type* Ty) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000478 // We don't print definitions for primitive types
Chris Lattner42a75512007-01-15 02:27:26 +0000479 if (Ty->isPrimitiveType() || Ty->isInteger())
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000480 return false;
481
Reid Spencer15f7e012006-05-30 21:18:23 +0000482 // If we already defined this type, we don't need to define it again.
483 if (DefinedTypes.find(Ty) != DefinedTypes.end())
484 return false;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000485
Reid Spencer15f7e012006-05-30 21:18:23 +0000486 // Everything below needs the name for the type so get it now.
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000487 std::string typeName(getCppName(Ty));
488
489 // Search the type stack for recursion. If we find it, then generate this
490 // as an OpaqueType, but make sure not to do this multiple times because
491 // the type could appear in multiple places on the stack. Once the opaque
Reid Spencer15f7e012006-05-30 21:18:23 +0000492 // definition is issued, it must not be re-issued. Consequently we have to
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000493 // check the UnresolvedTypes list as well.
Reid Spencer12803f52006-05-31 17:31:38 +0000494 TypeList::const_iterator TI = std::find(TypeStack.begin(),TypeStack.end(),Ty);
495 if (TI != TypeStack.end()) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000496 TypeMap::const_iterator I = UnresolvedTypes.find(Ty);
497 if (I == UnresolvedTypes.end()) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000498 Out << "PATypeHolder " << typeName << "_fwd = OpaqueType::get();";
499 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000500 UnresolvedTypes[Ty] = typeName;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000501 }
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000502 return true;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000503 }
504
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000505 // We're going to print a derived type which, by definition, contains other
506 // types. So, push this one we're printing onto the type stack to assist with
507 // recursive definitions.
Reid Spencer15f7e012006-05-30 21:18:23 +0000508 TypeStack.push_back(Ty);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000509
510 // Print the type definition
511 switch (Ty->getTypeID()) {
512 case Type::FunctionTyID: {
513 const FunctionType* FT = cast<FunctionType>(Ty);
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000514 Out << "std::vector<const Type*>" << typeName << "_args;";
515 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000516 FunctionType::param_iterator PI = FT->param_begin();
517 FunctionType::param_iterator PE = FT->param_end();
518 for (; PI != PE; ++PI) {
519 const Type* argTy = static_cast<const Type*>(*PI);
Reid Spencer12803f52006-05-31 17:31:38 +0000520 bool isForward = printTypeInternal(argTy);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000521 std::string argName(getCppName(argTy));
522 Out << typeName << "_args.push_back(" << argName;
523 if (isForward)
524 Out << "_fwd";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000525 Out << ");";
526 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000527 }
Reid Spencer12803f52006-05-31 17:31:38 +0000528 bool isForward = printTypeInternal(FT->getReturnType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000529 std::string retTypeName(getCppName(FT->getReturnType()));
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000530 Out << "FunctionType* " << typeName << " = FunctionType::get(";
531 in(); nl(Out) << "/*Result=*/" << retTypeName;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000532 if (isForward)
533 Out << "_fwd";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000534 Out << ",";
535 nl(Out) << "/*Params=*/" << typeName << "_args,";
Duncan Sandsdc024672007-11-27 13:23:08 +0000536 nl(Out) << "/*isVarArg=*/" << (FT->isVarArg() ? "true" : "false") << ");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000537 out();
538 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000539 break;
540 }
541 case Type::StructTyID: {
542 const StructType* ST = cast<StructType>(Ty);
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000543 Out << "std::vector<const Type*>" << typeName << "_fields;";
544 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000545 StructType::element_iterator EI = ST->element_begin();
546 StructType::element_iterator EE = ST->element_end();
547 for (; EI != EE; ++EI) {
548 const Type* fieldTy = static_cast<const Type*>(*EI);
Reid Spencer12803f52006-05-31 17:31:38 +0000549 bool isForward = printTypeInternal(fieldTy);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000550 std::string fieldName(getCppName(fieldTy));
551 Out << typeName << "_fields.push_back(" << fieldName;
552 if (isForward)
553 Out << "_fwd";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000554 Out << ");";
555 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000556 }
557 Out << "StructType* " << typeName << " = StructType::get("
Reid Spencer46fea102007-04-11 12:41:49 +0000558 << typeName << "_fields, /*isPacked=*/"
559 << (ST->isPacked() ? "true" : "false") << ");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000560 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000561 break;
562 }
563 case Type::ArrayTyID: {
564 const ArrayType* AT = cast<ArrayType>(Ty);
565 const Type* ET = AT->getElementType();
Reid Spencer12803f52006-05-31 17:31:38 +0000566 bool isForward = printTypeInternal(ET);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000567 std::string elemName(getCppName(ET));
568 Out << "ArrayType* " << typeName << " = ArrayType::get("
569 << elemName << (isForward ? "_fwd" : "")
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000570 << ", " << utostr(AT->getNumElements()) << ");";
571 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000572 break;
573 }
574 case Type::PointerTyID: {
575 const PointerType* PT = cast<PointerType>(Ty);
576 const Type* ET = PT->getElementType();
Reid Spencer12803f52006-05-31 17:31:38 +0000577 bool isForward = printTypeInternal(ET);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000578 std::string elemName(getCppName(ET));
579 Out << "PointerType* " << typeName << " = PointerType::get("
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000580 << elemName << (isForward ? "_fwd" : "")
581 << ", " << utostr(PT->getAddressSpace()) << ");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000582 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000583 break;
584 }
Reid Spencer9d6565a2007-02-15 02:26:10 +0000585 case Type::VectorTyID: {
586 const VectorType* PT = cast<VectorType>(Ty);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000587 const Type* ET = PT->getElementType();
Reid Spencer12803f52006-05-31 17:31:38 +0000588 bool isForward = printTypeInternal(ET);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000589 std::string elemName(getCppName(ET));
Reid Spencer9d6565a2007-02-15 02:26:10 +0000590 Out << "VectorType* " << typeName << " = VectorType::get("
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000591 << elemName << (isForward ? "_fwd" : "")
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000592 << ", " << utostr(PT->getNumElements()) << ");";
593 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000594 break;
595 }
596 case Type::OpaqueTyID: {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000597 Out << "OpaqueType* " << typeName << " = OpaqueType::get();";
598 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000599 break;
600 }
601 default:
Reid Spencer12803f52006-05-31 17:31:38 +0000602 error("Invalid TypeID");
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000603 }
604
Reid Spencer74e032a2006-05-29 02:58:15 +0000605 // If the type had a name, make sure we recreate it.
606 const std::string* progTypeName =
Reid Spencer78d033e2007-01-06 07:24:44 +0000607 findTypeName(TheModule->getTypeSymbolTable(),Ty);
Reid Spencer07441662007-04-11 12:28:56 +0000608 if (progTypeName) {
Reid Spencer74e032a2006-05-29 02:58:15 +0000609 Out << "mod->addTypeName(\"" << *progTypeName << "\", "
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000610 << typeName << ");";
611 nl(Out);
Reid Spencer07441662007-04-11 12:28:56 +0000612 }
Reid Spencer74e032a2006-05-29 02:58:15 +0000613
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000614 // Pop us off the type stack
615 TypeStack.pop_back();
Reid Spencer15f7e012006-05-30 21:18:23 +0000616
617 // Indicate that this type is now defined.
618 DefinedTypes.insert(Ty);
619
620 // Early resolve as many unresolved types as possible. Search the unresolved
621 // types map for the type we just printed. Now that its definition is complete
622 // we can resolve any previous references to it. This prevents a cascade of
623 // unresolved types.
624 TypeMap::iterator I = UnresolvedTypes.find(Ty);
625 if (I != UnresolvedTypes.end()) {
626 Out << "cast<OpaqueType>(" << I->second
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000627 << "_fwd.get())->refineAbstractTypeTo(" << I->second << ");";
628 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +0000629 Out << I->second << " = cast<";
630 switch (Ty->getTypeID()) {
631 case Type::FunctionTyID: Out << "FunctionType"; break;
632 case Type::ArrayTyID: Out << "ArrayType"; break;
633 case Type::StructTyID: Out << "StructType"; break;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000634 case Type::VectorTyID: Out << "VectorType"; break;
Reid Spencer15f7e012006-05-30 21:18:23 +0000635 case Type::PointerTyID: Out << "PointerType"; break;
636 case Type::OpaqueTyID: Out << "OpaqueType"; break;
637 default: Out << "NoSuchDerivedType"; break;
638 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000639 Out << ">(" << I->second << "_fwd.get());";
640 nl(Out); nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +0000641 UnresolvedTypes.erase(I);
642 }
643
644 // Finally, separate the type definition from other with a newline.
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000645 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000646
647 // We weren't a recursive type
648 return false;
649}
650
Reid Spencer12803f52006-05-31 17:31:38 +0000651// Prints a type definition. Returns true if it could not resolve all the types
652// in the definition but had to use a forward reference.
653void
654CppWriter::printType(const Type* Ty) {
655 assert(TypeStack.empty());
656 TypeStack.clear();
657 printTypeInternal(Ty);
658 assert(TypeStack.empty());
659}
660
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000661void
662CppWriter::printTypes(const Module* M) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000663
664 // Walk the symbol table and print out all its types
Reid Spencer78d033e2007-01-06 07:24:44 +0000665 const TypeSymbolTable& symtab = M->getTypeSymbolTable();
666 for (TypeSymbolTable::const_iterator TI = symtab.begin(), TE = symtab.end();
667 TI != TE; ++TI) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000668
669 // For primitive types and types already defined, just add a name
670 TypeMap::const_iterator TNI = TypeNames.find(TI->second);
Chris Lattner42a75512007-01-15 02:27:26 +0000671 if (TI->second->isInteger() || TI->second->isPrimitiveType() ||
Reid Spencera54b7cb2007-01-12 07:05:14 +0000672 TNI != TypeNames.end()) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000673 Out << "mod->addTypeName(\"";
674 printEscapedString(TI->first);
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000675 Out << "\", " << getCppName(TI->second) << ");";
676 nl(Out);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000677 // For everything else, define the type
678 } else {
Reid Spencer12803f52006-05-31 17:31:38 +0000679 printType(TI->second);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000680 }
681 }
682
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000683 // Add all of the global variables to the value table...
684 for (Module::const_global_iterator I = TheModule->global_begin(),
685 E = TheModule->global_end(); I != E; ++I) {
686 if (I->hasInitializer())
Reid Spencer12803f52006-05-31 17:31:38 +0000687 printType(I->getInitializer()->getType());
688 printType(I->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000689 }
690
691 // Add all the functions to the table
692 for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
693 FI != FE; ++FI) {
Reid Spencer12803f52006-05-31 17:31:38 +0000694 printType(FI->getReturnType());
695 printType(FI->getFunctionType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000696 // Add all the function arguments
697 for(Function::const_arg_iterator AI = FI->arg_begin(),
698 AE = FI->arg_end(); AI != AE; ++AI) {
Reid Spencer12803f52006-05-31 17:31:38 +0000699 printType(AI->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000700 }
701
702 // Add all of the basic blocks and instructions
703 for (Function::const_iterator BB = FI->begin(),
704 E = FI->end(); BB != E; ++BB) {
Reid Spencer12803f52006-05-31 17:31:38 +0000705 printType(BB->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000706 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
707 ++I) {
Reid Spencer12803f52006-05-31 17:31:38 +0000708 printType(I->getType());
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000709 for (unsigned i = 0; i < I->getNumOperands(); ++i)
Reid Spencer12803f52006-05-31 17:31:38 +0000710 printType(I->getOperand(i)->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000711 }
712 }
713 }
714}
715
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000716
Reid Spencere0d133f2006-05-29 18:08:06 +0000717// printConstant - Print out a constant pool entry...
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000718void CppWriter::printConstant(const Constant *CV) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000719 // First, if the constant is actually a GlobalValue (variable or function) or
720 // its already in the constant list then we've printed it already and we can
721 // just return.
722 if (isa<GlobalValue>(CV) || ValueNames.find(CV) != ValueNames.end())
Reid Spencere0d133f2006-05-29 18:08:06 +0000723 return;
724
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000725 std::string constName(getCppName(CV));
726 std::string typeName(getCppName(CV->getType()));
727 if (CV->isNullValue()) {
728 Out << "Constant* " << constName << " = Constant::getNullValue("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000729 << typeName << ");";
730 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000731 return;
732 }
Reid Spencere0d133f2006-05-29 18:08:06 +0000733 if (isa<GlobalValue>(CV)) {
734 // Skip variables and functions, we emit them elsewhere
735 return;
736 }
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000737 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Reid Spencer4d26a062007-04-11 13:02:56 +0000738 Out << "ConstantInt* " << constName << " = ConstantInt::get(APInt("
739 << cast<IntegerType>(CI->getType())->getBitWidth() << ", "
Reid Spencer70297252007-03-01 20:55:43 +0000740 << " \"" << CI->getValue().toStringSigned(10) << "\", 10));";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000741 } else if (isa<ConstantAggregateZero>(CV)) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000742 Out << "ConstantAggregateZero* " << constName
743 << " = ConstantAggregateZero::get(" << typeName << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000744 } else if (isa<ConstantPointerNull>(CV)) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000745 Out << "ConstantPointerNull* " << constName
746 << " = ConstanPointerNull::get(" << typeName << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000747 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Reid Spencerf977e7b2006-06-01 23:43:47 +0000748 Out << "ConstantFP* " << constName << " = ";
Reid Spencer12803f52006-05-31 17:31:38 +0000749 printCFP(CFP);
Reid Spencerf977e7b2006-06-01 23:43:47 +0000750 Out << ";";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000751 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Reid Spencer71d2ec92006-12-31 06:02:26 +0000752 if (CA->isString() && CA->getType()->getElementType() == Type::Int8Ty) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000753 Out << "Constant* " << constName << " = ConstantArray::get(\"";
Reid Spencerc38adbb2007-06-25 16:45:54 +0000754 std::string tmp = CA->getAsString();
755 bool nullTerminate = false;
756 if (tmp[tmp.length()-1] == 0) {
757 tmp.erase(tmp.length()-1);
758 nullTerminate = true;
759 }
760 printEscapedString(tmp);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000761 // Determine if we want null termination or not.
Reid Spencerc38adbb2007-06-25 16:45:54 +0000762 if (nullTerminate)
Reid Spencer15f7e012006-05-30 21:18:23 +0000763 Out << "\", true"; // Indicate that the null terminator should be added.
Reid Spencerc38adbb2007-06-25 16:45:54 +0000764 else
765 Out << "\", false";// No null terminator
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000766 Out << ");";
767 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000768 Out << "std::vector<Constant*> " << constName << "_elems;";
769 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000770 unsigned N = CA->getNumOperands();
771 for (unsigned i = 0; i < N; ++i) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000772 printConstant(CA->getOperand(i)); // recurse to print operands
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000773 Out << constName << "_elems.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000774 << getCppName(CA->getOperand(i)) << ");";
775 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000776 }
777 Out << "Constant* " << constName << " = ConstantArray::get("
778 << typeName << ", " << constName << "_elems);";
779 }
780 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000781 Out << "std::vector<Constant*> " << constName << "_fields;";
782 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000783 unsigned N = CS->getNumOperands();
784 for (unsigned i = 0; i < N; i++) {
785 printConstant(CS->getOperand(i));
786 Out << constName << "_fields.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000787 << getCppName(CS->getOperand(i)) << ");";
788 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000789 }
790 Out << "Constant* " << constName << " = ConstantStruct::get("
791 << typeName << ", " << constName << "_fields);";
Reid Spencer9d6565a2007-02-15 02:26:10 +0000792 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000793 Out << "std::vector<Constant*> " << constName << "_elems;";
794 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000795 unsigned N = CP->getNumOperands();
796 for (unsigned i = 0; i < N; ++i) {
797 printConstant(CP->getOperand(i));
798 Out << constName << "_elems.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000799 << getCppName(CP->getOperand(i)) << ");";
800 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000801 }
Reid Spencer9d6565a2007-02-15 02:26:10 +0000802 Out << "Constant* " << constName << " = ConstantVector::get("
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000803 << typeName << ", " << constName << "_elems);";
804 } else if (isa<UndefValue>(CV)) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000805 Out << "UndefValue* " << constName << " = UndefValue::get("
Reid Spencere0d133f2006-05-29 18:08:06 +0000806 << typeName << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000807 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencere0d133f2006-05-29 18:08:06 +0000808 if (CE->getOpcode() == Instruction::GetElementPtr) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000809 Out << "std::vector<Constant*> " << constName << "_indices;";
810 nl(Out);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000811 printConstant(CE->getOperand(0));
Reid Spencere0d133f2006-05-29 18:08:06 +0000812 for (unsigned i = 1; i < CE->getNumOperands(); ++i ) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000813 printConstant(CE->getOperand(i));
Reid Spencere0d133f2006-05-29 18:08:06 +0000814 Out << constName << "_indices.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000815 << getCppName(CE->getOperand(i)) << ");";
816 nl(Out);
Reid Spencere0d133f2006-05-29 18:08:06 +0000817 }
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000818 Out << "Constant* " << constName
819 << " = ConstantExpr::getGetElementPtr("
820 << getCppName(CE->getOperand(0)) << ", "
David Greene418a04e2007-09-04 17:15:07 +0000821 << "&" << constName << "_indices[0], "
822 << constName << "_indices.size()"
Reid Spencer07441662007-04-11 12:28:56 +0000823 << " );";
Reid Spencer3da59db2006-11-27 01:05:10 +0000824 } else if (CE->isCast()) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000825 printConstant(CE->getOperand(0));
Reid Spencere0d133f2006-05-29 18:08:06 +0000826 Out << "Constant* " << constName << " = ConstantExpr::getCast(";
Reid Spencerb0e9f722006-12-12 01:31:37 +0000827 switch (CE->getOpcode()) {
828 default: assert(0 && "Invalid cast opcode");
829 case Instruction::Trunc: Out << "Instruction::Trunc"; break;
830 case Instruction::ZExt: Out << "Instruction::ZExt"; break;
831 case Instruction::SExt: Out << "Instruction::SExt"; break;
832 case Instruction::FPTrunc: Out << "Instruction::FPTrunc"; break;
833 case Instruction::FPExt: Out << "Instruction::FPExt"; break;
834 case Instruction::FPToUI: Out << "Instruction::FPToUI"; break;
835 case Instruction::FPToSI: Out << "Instruction::FPToSI"; break;
836 case Instruction::UIToFP: Out << "Instruction::UIToFP"; break;
837 case Instruction::SIToFP: Out << "Instruction::SIToFP"; break;
838 case Instruction::PtrToInt: Out << "Instruction::PtrToInt"; break;
839 case Instruction::IntToPtr: Out << "Instruction::IntToPtr"; break;
840 case Instruction::BitCast: Out << "Instruction::BitCast"; break;
841 }
842 Out << ", " << getCppName(CE->getOperand(0)) << ", "
843 << getCppName(CE->getType()) << ");";
Reid Spencere0d133f2006-05-29 18:08:06 +0000844 } else {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000845 unsigned N = CE->getNumOperands();
846 for (unsigned i = 0; i < N; ++i ) {
847 printConstant(CE->getOperand(i));
848 }
Reid Spencere0d133f2006-05-29 18:08:06 +0000849 Out << "Constant* " << constName << " = ConstantExpr::";
850 switch (CE->getOpcode()) {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000851 case Instruction::Add: Out << "getAdd("; break;
852 case Instruction::Sub: Out << "getSub("; break;
853 case Instruction::Mul: Out << "getMul("; break;
854 case Instruction::UDiv: Out << "getUDiv("; break;
855 case Instruction::SDiv: Out << "getSDiv("; break;
856 case Instruction::FDiv: Out << "getFDiv("; break;
857 case Instruction::URem: Out << "getURem("; break;
858 case Instruction::SRem: Out << "getSRem("; break;
859 case Instruction::FRem: Out << "getFRem("; break;
860 case Instruction::And: Out << "getAnd("; break;
861 case Instruction::Or: Out << "getOr("; break;
862 case Instruction::Xor: Out << "getXor("; break;
863 case Instruction::ICmp:
864 Out << "getICmp(ICmpInst::ICMP_";
865 switch (CE->getPredicate()) {
866 case ICmpInst::ICMP_EQ: Out << "EQ"; break;
867 case ICmpInst::ICMP_NE: Out << "NE"; break;
868 case ICmpInst::ICMP_SLT: Out << "SLT"; break;
869 case ICmpInst::ICMP_ULT: Out << "ULT"; break;
870 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
871 case ICmpInst::ICMP_UGT: Out << "UGT"; break;
872 case ICmpInst::ICMP_SLE: Out << "SLE"; break;
873 case ICmpInst::ICMP_ULE: Out << "ULE"; break;
874 case ICmpInst::ICMP_SGE: Out << "SGE"; break;
875 case ICmpInst::ICMP_UGE: Out << "UGE"; break;
876 default: error("Invalid ICmp Predicate");
877 }
878 break;
879 case Instruction::FCmp:
880 Out << "getFCmp(FCmpInst::FCMP_";
881 switch (CE->getPredicate()) {
882 case FCmpInst::FCMP_FALSE: Out << "FALSE"; break;
883 case FCmpInst::FCMP_ORD: Out << "ORD"; break;
884 case FCmpInst::FCMP_UNO: Out << "UNO"; break;
885 case FCmpInst::FCMP_OEQ: Out << "OEQ"; break;
886 case FCmpInst::FCMP_UEQ: Out << "UEQ"; break;
887 case FCmpInst::FCMP_ONE: Out << "ONE"; break;
888 case FCmpInst::FCMP_UNE: Out << "UNE"; break;
889 case FCmpInst::FCMP_OLT: Out << "OLT"; break;
890 case FCmpInst::FCMP_ULT: Out << "ULT"; break;
891 case FCmpInst::FCMP_OGT: Out << "OGT"; break;
892 case FCmpInst::FCMP_UGT: Out << "UGT"; break;
893 case FCmpInst::FCMP_OLE: Out << "OLE"; break;
894 case FCmpInst::FCMP_ULE: Out << "ULE"; break;
895 case FCmpInst::FCMP_OGE: Out << "OGE"; break;
896 case FCmpInst::FCMP_UGE: Out << "UGE"; break;
897 case FCmpInst::FCMP_TRUE: Out << "TRUE"; break;
898 default: error("Invalid FCmp Predicate");
899 }
900 break;
901 case Instruction::Shl: Out << "getShl("; break;
902 case Instruction::LShr: Out << "getLShr("; break;
903 case Instruction::AShr: Out << "getAShr("; break;
904 case Instruction::Select: Out << "getSelect("; break;
905 case Instruction::ExtractElement: Out << "getExtractElement("; break;
906 case Instruction::InsertElement: Out << "getInsertElement("; break;
907 case Instruction::ShuffleVector: Out << "getShuffleVector("; break;
Reid Spencere0d133f2006-05-29 18:08:06 +0000908 default:
Reid Spencer12803f52006-05-31 17:31:38 +0000909 error("Invalid constant expression");
Reid Spencere0d133f2006-05-29 18:08:06 +0000910 break;
911 }
912 Out << getCppName(CE->getOperand(0));
913 for (unsigned i = 1; i < CE->getNumOperands(); ++i)
914 Out << ", " << getCppName(CE->getOperand(i));
915 Out << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000916 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000917 } else {
Reid Spencer12803f52006-05-31 17:31:38 +0000918 error("Bad Constant");
Reid Spencere0d133f2006-05-29 18:08:06 +0000919 Out << "Constant* " << constName << " = 0; ";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000920 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000921 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000922}
923
Reid Spencer12803f52006-05-31 17:31:38 +0000924void
925CppWriter::printConstants(const Module* M) {
926 // Traverse all the global variables looking for constant initializers
927 for (Module::const_global_iterator I = TheModule->global_begin(),
928 E = TheModule->global_end(); I != E; ++I)
929 if (I->hasInitializer())
930 printConstant(I->getInitializer());
931
932 // Traverse the LLVM functions looking for constants
933 for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
934 FI != FE; ++FI) {
935 // Add all of the basic blocks and instructions
936 for (Function::const_iterator BB = FI->begin(),
937 E = FI->end(); BB != E; ++BB) {
938 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
939 ++I) {
940 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
941 if (Constant* C = dyn_cast<Constant>(I->getOperand(i))) {
942 printConstant(C);
943 }
944 }
945 }
946 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000947 }
Reid Spencer66c87342006-05-30 03:43:49 +0000948}
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000949
Reid Spencer12803f52006-05-31 17:31:38 +0000950void CppWriter::printVariableUses(const GlobalVariable *GV) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000951 nl(Out) << "// Type Definitions";
952 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000953 printType(GV->getType());
954 if (GV->hasInitializer()) {
955 Constant* Init = GV->getInitializer();
956 printType(Init->getType());
957 if (Function* F = dyn_cast<Function>(Init)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000958 nl(Out)<< "/ Function Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000959 printFunctionHead(F);
960 } else if (GlobalVariable* gv = dyn_cast<GlobalVariable>(Init)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000961 nl(Out) << "// Global Variable Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000962 printVariableHead(gv);
963 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000964 nl(Out) << "// Constant Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000965 printConstant(gv);
966 }
967 if (GlobalVariable* gv = dyn_cast<GlobalVariable>(Init)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000968 nl(Out) << "// Global Variable Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000969 printVariableBody(gv);
Reid Spencere0d133f2006-05-29 18:08:06 +0000970 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000971 }
Reid Spencer12803f52006-05-31 17:31:38 +0000972}
Reid Spencer15f7e012006-05-30 21:18:23 +0000973
Reid Spencer12803f52006-05-31 17:31:38 +0000974void CppWriter::printVariableHead(const GlobalVariable *GV) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000975 nl(Out) << "GlobalVariable* " << getCppName(GV);
Reid Spencerf977e7b2006-06-01 23:43:47 +0000976 if (is_inline) {
977 Out << " = mod->getGlobalVariable(";
978 printEscapedString(GV->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000979 Out << ", " << getCppName(GV->getType()->getElementType()) << ",true)";
980 nl(Out) << "if (!" << getCppName(GV) << ") {";
981 in(); nl(Out) << getCppName(GV);
Reid Spencerf977e7b2006-06-01 23:43:47 +0000982 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000983 Out << " = new GlobalVariable(";
984 nl(Out) << "/*Type=*/";
Reid Spencer12803f52006-05-31 17:31:38 +0000985 printCppName(GV->getType()->getElementType());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000986 Out << ",";
987 nl(Out) << "/*isConstant=*/" << (GV->isConstant()?"true":"false");
988 Out << ",";
989 nl(Out) << "/*Linkage=*/";
Reid Spencer12803f52006-05-31 17:31:38 +0000990 printLinkageType(GV->getLinkage());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000991 Out << ",";
992 nl(Out) << "/*Initializer=*/0, ";
Reid Spencer12803f52006-05-31 17:31:38 +0000993 if (GV->hasInitializer()) {
994 Out << "// has initializer, specified below";
Reid Spencer15f7e012006-05-30 21:18:23 +0000995 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000996 nl(Out) << "/*Name=*/\"";
Reid Spencer12803f52006-05-31 17:31:38 +0000997 printEscapedString(GV->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000998 Out << "\",";
999 nl(Out) << "mod);";
1000 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001001
1002 if (GV->hasSection()) {
1003 printCppName(GV);
1004 Out << "->setSection(\"";
1005 printEscapedString(GV->getSection());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001006 Out << "\");";
1007 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001008 }
1009 if (GV->getAlignment()) {
1010 printCppName(GV);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001011 Out << "->setAlignment(" << utostr(GV->getAlignment()) << ");";
1012 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001013 };
Duncan Sandsdc024672007-11-27 13:23:08 +00001014 if (GV->getVisibility() != GlobalValue::DefaultVisibility) {
1015 printCppName(GV);
1016 Out << "->setVisibility(";
1017 printVisibilityType(GV->getVisibility());
1018 Out << ");";
1019 nl(Out);
1020 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001021 if (is_inline) {
1022 out(); Out << "}"; nl(Out);
1023 }
Reid Spencer12803f52006-05-31 17:31:38 +00001024}
1025
1026void
1027CppWriter::printVariableBody(const GlobalVariable *GV) {
1028 if (GV->hasInitializer()) {
1029 printCppName(GV);
1030 Out << "->setInitializer(";
1031 //if (!isa<GlobalValue(GV->getInitializer()))
1032 //else
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001033 Out << getCppName(GV->getInitializer()) << ");";
1034 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001035 }
1036}
1037
1038std::string
1039CppWriter::getOpName(Value* V) {
1040 if (!isa<Instruction>(V) || DefinedValues.find(V) != DefinedValues.end())
1041 return getCppName(V);
1042
1043 // See if its alread in the map of forward references, if so just return the
1044 // name we already set up for it
1045 ForwardRefMap::const_iterator I = ForwardRefs.find(V);
1046 if (I != ForwardRefs.end())
1047 return I->second;
1048
1049 // This is a new forward reference. Generate a unique name for it
1050 std::string result(std::string("fwdref_") + utostr(uniqueNum++));
1051
1052 // Yes, this is a hack. An Argument is the smallest instantiable value that
1053 // we can make as a placeholder for the real value. We'll replace these
1054 // Argument instances later.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001055 Out << "Argument* " << result << " = new Argument("
1056 << getCppName(V->getType()) << ");";
1057 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001058 ForwardRefs[V] = result;
1059 return result;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001060}
1061
Reid Spencere0d133f2006-05-29 18:08:06 +00001062// printInstruction - This member is called for each Instruction in a function.
1063void
Reid Spencer12803f52006-05-31 17:31:38 +00001064CppWriter::printInstruction(const Instruction *I, const std::string& bbname) {
Reid Spencere0d133f2006-05-29 18:08:06 +00001065 std::string iName(getCppName(I));
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001066
Reid Spencer15f7e012006-05-30 21:18:23 +00001067 // Before we emit this instruction, we need to take care of generating any
1068 // forward references. So, we get the names of all the operands in advance
1069 std::string* opNames = new std::string[I->getNumOperands()];
1070 for (unsigned i = 0; i < I->getNumOperands(); i++) {
1071 opNames[i] = getOpName(I->getOperand(i));
1072 }
1073
Reid Spencere0d133f2006-05-29 18:08:06 +00001074 switch (I->getOpcode()) {
1075 case Instruction::Ret: {
1076 const ReturnInst* ret = cast<ReturnInst>(I);
Reid Spencer07441662007-04-11 12:28:56 +00001077 Out << "new ReturnInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001078 << (ret->getReturnValue() ? opNames[0] + ", " : "") << bbname << ");";
Reid Spencere0d133f2006-05-29 18:08:06 +00001079 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001080 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001081 case Instruction::Br: {
1082 const BranchInst* br = cast<BranchInst>(I);
Reid Spencer07441662007-04-11 12:28:56 +00001083 Out << "new BranchInst(" ;
Reid Spencere0d133f2006-05-29 18:08:06 +00001084 if (br->getNumOperands() == 3 ) {
Reid Spencer15f7e012006-05-30 21:18:23 +00001085 Out << opNames[0] << ", "
1086 << opNames[1] << ", "
1087 << opNames[2] << ", ";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001088
Reid Spencere0d133f2006-05-29 18:08:06 +00001089 } else if (br->getNumOperands() == 1) {
Reid Spencer15f7e012006-05-30 21:18:23 +00001090 Out << opNames[0] << ", ";
Reid Spencere0d133f2006-05-29 18:08:06 +00001091 } else {
Reid Spencer12803f52006-05-31 17:31:38 +00001092 error("Branch with 2 operands?");
Reid Spencere0d133f2006-05-29 18:08:06 +00001093 }
1094 Out << bbname << ");";
1095 break;
1096 }
Reid Spencer66c87342006-05-30 03:43:49 +00001097 case Instruction::Switch: {
1098 const SwitchInst* sw = cast<SwitchInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001099 Out << "SwitchInst* " << iName << " = new SwitchInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001100 << opNames[0] << ", "
1101 << opNames[1] << ", "
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001102 << sw->getNumCases() << ", " << bbname << ");";
1103 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +00001104 for (unsigned i = 2; i < sw->getNumOperands(); i += 2 ) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001105 Out << iName << "->addCase("
Reid Spencer15f7e012006-05-30 21:18:23 +00001106 << opNames[i] << ", "
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001107 << opNames[i+1] << ");";
1108 nl(Out);
Reid Spencer66c87342006-05-30 03:43:49 +00001109 }
1110 break;
1111 }
1112 case Instruction::Invoke: {
1113 const InvokeInst* inv = cast<InvokeInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001114 Out << "std::vector<Value*> " << iName << "_params;";
1115 nl(Out);
1116 for (unsigned i = 3; i < inv->getNumOperands(); ++i) {
1117 Out << iName << "_params.push_back("
1118 << opNames[i] << ");";
1119 nl(Out);
1120 }
Reid Spencer07441662007-04-11 12:28:56 +00001121 Out << "InvokeInst *" << iName << " = new InvokeInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001122 << opNames[0] << ", "
1123 << opNames[1] << ", "
1124 << opNames[2] << ", "
David Greenef1355a52007-08-27 19:04:21 +00001125 << iName << "_params.begin(), " << iName << "_params.end(), \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001126 printEscapedString(inv->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001127 Out << "\", " << bbname << ");";
1128 nl(Out) << iName << "->setCallingConv(";
Reid Spencer66c87342006-05-30 03:43:49 +00001129 printCallingConv(inv->getCallingConv());
1130 Out << ");";
Duncan Sandsdc024672007-11-27 13:23:08 +00001131 printParamAttrs(inv->getParamAttrs(), iName);
1132 Out << iName << "->setParamAttrs(" << iName << "_PAL);";
1133 nl(Out);
Reid Spencer66c87342006-05-30 03:43:49 +00001134 break;
1135 }
1136 case Instruction::Unwind: {
Reid Spencer07441662007-04-11 12:28:56 +00001137 Out << "new UnwindInst("
Reid Spencer66c87342006-05-30 03:43:49 +00001138 << bbname << ");";
1139 break;
1140 }
1141 case Instruction::Unreachable:{
Reid Spencer07441662007-04-11 12:28:56 +00001142 Out << "new UnreachableInst("
Reid Spencer66c87342006-05-30 03:43:49 +00001143 << bbname << ");";
1144 break;
1145 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001146 case Instruction::Add:
1147 case Instruction::Sub:
1148 case Instruction::Mul:
Reid Spencer1628cec2006-10-26 06:15:43 +00001149 case Instruction::UDiv:
1150 case Instruction::SDiv:
1151 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +00001152 case Instruction::URem:
1153 case Instruction::SRem:
1154 case Instruction::FRem:
Reid Spencere0d133f2006-05-29 18:08:06 +00001155 case Instruction::And:
1156 case Instruction::Or:
1157 case Instruction::Xor:
Reid Spencer66c87342006-05-30 03:43:49 +00001158 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001159 case Instruction::LShr:
1160 case Instruction::AShr:{
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001161 Out << "BinaryOperator* " << iName << " = BinaryOperator::create(";
Reid Spencer66c87342006-05-30 03:43:49 +00001162 switch (I->getOpcode()) {
1163 case Instruction::Add: Out << "Instruction::Add"; break;
1164 case Instruction::Sub: Out << "Instruction::Sub"; break;
1165 case Instruction::Mul: Out << "Instruction::Mul"; break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001166 case Instruction::UDiv:Out << "Instruction::UDiv"; break;
1167 case Instruction::SDiv:Out << "Instruction::SDiv"; break;
1168 case Instruction::FDiv:Out << "Instruction::FDiv"; break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001169 case Instruction::URem:Out << "Instruction::URem"; break;
1170 case Instruction::SRem:Out << "Instruction::SRem"; break;
1171 case Instruction::FRem:Out << "Instruction::FRem"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001172 case Instruction::And: Out << "Instruction::And"; break;
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001173 case Instruction::Or: Out << "Instruction::Or"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001174 case Instruction::Xor: Out << "Instruction::Xor"; break;
1175 case Instruction::Shl: Out << "Instruction::Shl"; break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001176 case Instruction::LShr:Out << "Instruction::LShr"; break;
1177 case Instruction::AShr:Out << "Instruction::AShr"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001178 default: Out << "Instruction::BadOpCode"; break;
1179 }
Reid Spencer15f7e012006-05-30 21:18:23 +00001180 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001181 printEscapedString(I->getName());
1182 Out << "\", " << bbname << ");";
1183 break;
1184 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00001185 case Instruction::FCmp: {
1186 Out << "FCmpInst* " << iName << " = new FCmpInst(";
1187 switch (cast<FCmpInst>(I)->getPredicate()) {
1188 case FCmpInst::FCMP_FALSE: Out << "FCmpInst::FCMP_FALSE"; break;
1189 case FCmpInst::FCMP_OEQ : Out << "FCmpInst::FCMP_OEQ"; break;
1190 case FCmpInst::FCMP_OGT : Out << "FCmpInst::FCMP_OGT"; break;
1191 case FCmpInst::FCMP_OGE : Out << "FCmpInst::FCMP_OGE"; break;
1192 case FCmpInst::FCMP_OLT : Out << "FCmpInst::FCMP_OLT"; break;
1193 case FCmpInst::FCMP_OLE : Out << "FCmpInst::FCMP_OLE"; break;
1194 case FCmpInst::FCMP_ONE : Out << "FCmpInst::FCMP_ONE"; break;
1195 case FCmpInst::FCMP_ORD : Out << "FCmpInst::FCMP_ORD"; break;
1196 case FCmpInst::FCMP_UNO : Out << "FCmpInst::FCMP_UNO"; break;
1197 case FCmpInst::FCMP_UEQ : Out << "FCmpInst::FCMP_UEQ"; break;
1198 case FCmpInst::FCMP_UGT : Out << "FCmpInst::FCMP_UGT"; break;
1199 case FCmpInst::FCMP_UGE : Out << "FCmpInst::FCMP_UGE"; break;
1200 case FCmpInst::FCMP_ULT : Out << "FCmpInst::FCMP_ULT"; break;
1201 case FCmpInst::FCMP_ULE : Out << "FCmpInst::FCMP_ULE"; break;
1202 case FCmpInst::FCMP_UNE : Out << "FCmpInst::FCMP_UNE"; break;
1203 case FCmpInst::FCMP_TRUE : Out << "FCmpInst::FCMP_TRUE"; break;
1204 default: Out << "FCmpInst::BAD_ICMP_PREDICATE"; break;
1205 }
1206 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1207 printEscapedString(I->getName());
1208 Out << "\", " << bbname << ");";
1209 break;
1210 }
1211 case Instruction::ICmp: {
1212 Out << "ICmpInst* " << iName << " = new ICmpInst(";
1213 switch (cast<ICmpInst>(I)->getPredicate()) {
1214 case ICmpInst::ICMP_EQ: Out << "ICmpInst::ICMP_EQ"; break;
1215 case ICmpInst::ICMP_NE: Out << "ICmpInst::ICMP_NE"; break;
1216 case ICmpInst::ICMP_ULE: Out << "ICmpInst::ICMP_ULE"; break;
1217 case ICmpInst::ICMP_SLE: Out << "ICmpInst::ICMP_SLE"; break;
1218 case ICmpInst::ICMP_UGE: Out << "ICmpInst::ICMP_UGE"; break;
1219 case ICmpInst::ICMP_SGE: Out << "ICmpInst::ICMP_SGE"; break;
1220 case ICmpInst::ICMP_ULT: Out << "ICmpInst::ICMP_ULT"; break;
1221 case ICmpInst::ICMP_SLT: Out << "ICmpInst::ICMP_SLT"; break;
1222 case ICmpInst::ICMP_UGT: Out << "ICmpInst::ICMP_UGT"; break;
1223 case ICmpInst::ICMP_SGT: Out << "ICmpInst::ICMP_SGT"; break;
1224 default: Out << "ICmpInst::BAD_ICMP_PREDICATE"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001225 }
Reid Spencer15f7e012006-05-30 21:18:23 +00001226 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001227 printEscapedString(I->getName());
1228 Out << "\", " << bbname << ");";
1229 break;
1230 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001231 case Instruction::Malloc: {
1232 const MallocInst* mallocI = cast<MallocInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001233 Out << "MallocInst* " << iName << " = new MallocInst("
Reid Spencere0d133f2006-05-29 18:08:06 +00001234 << getCppName(mallocI->getAllocatedType()) << ", ";
1235 if (mallocI->isArrayAllocation())
Reid Spencer15f7e012006-05-30 21:18:23 +00001236 Out << opNames[0] << ", " ;
Reid Spencere0d133f2006-05-29 18:08:06 +00001237 Out << "\"";
1238 printEscapedString(mallocI->getName());
1239 Out << "\", " << bbname << ");";
1240 if (mallocI->getAlignment())
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001241 nl(Out) << iName << "->setAlignment("
Reid Spencere0d133f2006-05-29 18:08:06 +00001242 << mallocI->getAlignment() << ");";
1243 break;
1244 }
Reid Spencer66c87342006-05-30 03:43:49 +00001245 case Instruction::Free: {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001246 Out << "FreeInst* " << iName << " = new FreeInst("
Reid Spencer66c87342006-05-30 03:43:49 +00001247 << getCppName(I->getOperand(0)) << ", " << bbname << ");";
1248 break;
1249 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001250 case Instruction::Alloca: {
1251 const AllocaInst* allocaI = cast<AllocaInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001252 Out << "AllocaInst* " << iName << " = new AllocaInst("
Reid Spencere0d133f2006-05-29 18:08:06 +00001253 << getCppName(allocaI->getAllocatedType()) << ", ";
1254 if (allocaI->isArrayAllocation())
Reid Spencer15f7e012006-05-30 21:18:23 +00001255 Out << opNames[0] << ", ";
Reid Spencere0d133f2006-05-29 18:08:06 +00001256 Out << "\"";
1257 printEscapedString(allocaI->getName());
1258 Out << "\", " << bbname << ");";
1259 if (allocaI->getAlignment())
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001260 nl(Out) << iName << "->setAlignment("
Reid Spencere0d133f2006-05-29 18:08:06 +00001261 << allocaI->getAlignment() << ");";
1262 break;
1263 }
Reid Spencer66c87342006-05-30 03:43:49 +00001264 case Instruction::Load:{
1265 const LoadInst* load = cast<LoadInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001266 Out << "LoadInst* " << iName << " = new LoadInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001267 << opNames[0] << ", \"";
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001268 printEscapedString(load->getName());
1269 Out << "\", " << (load->isVolatile() ? "true" : "false" )
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001270 << ", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001271 break;
1272 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001273 case Instruction::Store: {
1274 const StoreInst* store = cast<StoreInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001275 Out << "StoreInst* " << iName << " = new StoreInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001276 << opNames[0] << ", "
1277 << opNames[1] << ", "
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001278 << (store->isVolatile() ? "true" : "false")
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001279 << ", " << bbname << ");";
Reid Spencere0d133f2006-05-29 18:08:06 +00001280 break;
1281 }
1282 case Instruction::GetElementPtr: {
1283 const GetElementPtrInst* gep = cast<GetElementPtrInst>(I);
1284 if (gep->getNumOperands() <= 2) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001285 Out << "GetElementPtrInst* " << iName << " = new GetElementPtrInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001286 << opNames[0];
Reid Spencere0d133f2006-05-29 18:08:06 +00001287 if (gep->getNumOperands() == 2)
Reid Spencer15f7e012006-05-30 21:18:23 +00001288 Out << ", " << opNames[1];
Reid Spencere0d133f2006-05-29 18:08:06 +00001289 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001290 Out << "std::vector<Value*> " << iName << "_indices;";
1291 nl(Out);
Reid Spencere0d133f2006-05-29 18:08:06 +00001292 for (unsigned i = 1; i < gep->getNumOperands(); ++i ) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001293 Out << iName << "_indices.push_back("
1294 << opNames[i] << ");";
1295 nl(Out);
Reid Spencere0d133f2006-05-29 18:08:06 +00001296 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001297 Out << "Instruction* " << iName << " = new GetElementPtrInst("
David Greeneb8f74792007-09-04 15:46:09 +00001298 << opNames[0] << ", " << iName << "_indices.begin(), "
1299 << iName << "_indices.end()";
Reid Spencere0d133f2006-05-29 18:08:06 +00001300 }
1301 Out << ", \"";
1302 printEscapedString(gep->getName());
1303 Out << "\", " << bbname << ");";
1304 break;
1305 }
Reid Spencer66c87342006-05-30 03:43:49 +00001306 case Instruction::PHI: {
1307 const PHINode* phi = cast<PHINode>(I);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001308
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001309 Out << "PHINode* " << iName << " = new PHINode("
Reid Spencer66c87342006-05-30 03:43:49 +00001310 << getCppName(phi->getType()) << ", \"";
1311 printEscapedString(phi->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001312 Out << "\", " << bbname << ");";
1313 nl(Out) << iName << "->reserveOperandSpace("
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001314 << phi->getNumIncomingValues()
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001315 << ");";
1316 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +00001317 for (unsigned i = 0; i < phi->getNumOperands(); i+=2) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001318 Out << iName << "->addIncoming("
1319 << opNames[i] << ", " << opNames[i+1] << ");";
1320 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001321 }
Reid Spencer66c87342006-05-30 03:43:49 +00001322 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001323 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001324 case Instruction::Trunc:
1325 case Instruction::ZExt:
1326 case Instruction::SExt:
1327 case Instruction::FPTrunc:
1328 case Instruction::FPExt:
1329 case Instruction::FPToUI:
1330 case Instruction::FPToSI:
1331 case Instruction::UIToFP:
1332 case Instruction::SIToFP:
1333 case Instruction::PtrToInt:
1334 case Instruction::IntToPtr:
1335 case Instruction::BitCast: {
Reid Spencer66c87342006-05-30 03:43:49 +00001336 const CastInst* cst = cast<CastInst>(I);
Reid Spencer3da59db2006-11-27 01:05:10 +00001337 Out << "CastInst* " << iName << " = new ";
1338 switch (I->getOpcode()) {
Reid Spencer34816572007-02-16 06:34:39 +00001339 case Instruction::Trunc: Out << "TruncInst"; break;
1340 case Instruction::ZExt: Out << "ZExtInst"; break;
1341 case Instruction::SExt: Out << "SExtInst"; break;
1342 case Instruction::FPTrunc: Out << "FPTruncInst"; break;
1343 case Instruction::FPExt: Out << "FPExtInst"; break;
1344 case Instruction::FPToUI: Out << "FPToUIInst"; break;
1345 case Instruction::FPToSI: Out << "FPToSIInst"; break;
1346 case Instruction::UIToFP: Out << "UIToFPInst"; break;
1347 case Instruction::SIToFP: Out << "SIToFPInst"; break;
Reid Spencer07441662007-04-11 12:28:56 +00001348 case Instruction::PtrToInt: Out << "PtrToIntInst"; break;
Reid Spencer34816572007-02-16 06:34:39 +00001349 case Instruction::IntToPtr: Out << "IntToPtrInst"; break;
1350 case Instruction::BitCast: Out << "BitCastInst"; break;
Reid Spencer3da59db2006-11-27 01:05:10 +00001351 default: assert(!"Unreachable"); break;
1352 }
1353 Out << "(" << opNames[0] << ", "
Reid Spencer66c87342006-05-30 03:43:49 +00001354 << getCppName(cst->getType()) << ", \"";
1355 printEscapedString(cst->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001356 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001357 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001358 }
Reid Spencer66c87342006-05-30 03:43:49 +00001359 case Instruction::Call:{
1360 const CallInst* call = cast<CallInst>(I);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001361 if (InlineAsm* ila = dyn_cast<InlineAsm>(call->getOperand(0))) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001362 Out << "InlineAsm* " << getCppName(ila) << " = InlineAsm::get("
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001363 << getCppName(ila->getFunctionType()) << ", \""
1364 << ila->getAsmString() << "\", \""
1365 << ila->getConstraintString() << "\","
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001366 << (ila->hasSideEffects() ? "true" : "false") << ");";
1367 nl(Out);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001368 }
Reid Spencer22256f42007-08-02 03:30:26 +00001369 if (call->getNumOperands() > 2) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001370 Out << "std::vector<Value*> " << iName << "_params;";
1371 nl(Out);
1372 for (unsigned i = 1; i < call->getNumOperands(); ++i) {
1373 Out << iName << "_params.push_back(" << opNames[i] << ");";
1374 nl(Out);
1375 }
1376 Out << "CallInst* " << iName << " = new CallInst("
Reid Spencer22256f42007-08-02 03:30:26 +00001377 << opNames[0] << ", " << iName << "_params.begin(), "
1378 << iName << "_params.end(), \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001379 } else if (call->getNumOperands() == 2) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001380 Out << "CallInst* " << iName << " = new CallInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001381 << opNames[0] << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001382 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001383 Out << "CallInst* " << iName << " = new CallInst(" << opNames[0]
Reid Spencer15f7e012006-05-30 21:18:23 +00001384 << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001385 }
1386 printEscapedString(call->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001387 Out << "\", " << bbname << ");";
1388 nl(Out) << iName << "->setCallingConv(";
Reid Spencer66c87342006-05-30 03:43:49 +00001389 printCallingConv(call->getCallingConv());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001390 Out << ");";
1391 nl(Out) << iName << "->setTailCall("
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001392 << (call->isTailCall() ? "true":"false");
Reid Spencer66c87342006-05-30 03:43:49 +00001393 Out << ");";
Duncan Sandsdc024672007-11-27 13:23:08 +00001394 printParamAttrs(call->getParamAttrs(), iName);
1395 Out << iName << "->setParamAttrs(" << iName << "_PAL);";
1396 nl(Out);
Reid Spencer66c87342006-05-30 03:43:49 +00001397 break;
1398 }
1399 case Instruction::Select: {
1400 const SelectInst* sel = cast<SelectInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001401 Out << "SelectInst* " << getCppName(sel) << " = new SelectInst(";
Reid Spencer15f7e012006-05-30 21:18:23 +00001402 Out << opNames[0] << ", " << opNames[1] << ", " << opNames[2] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001403 printEscapedString(sel->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001404 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001405 break;
1406 }
1407 case Instruction::UserOp1:
1408 /// FALL THROUGH
1409 case Instruction::UserOp2: {
1410 /// FIXME: What should be done here?
1411 break;
1412 }
1413 case Instruction::VAArg: {
1414 const VAArgInst* va = cast<VAArgInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001415 Out << "VAArgInst* " << getCppName(va) << " = new VAArgInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001416 << opNames[0] << ", " << getCppName(va->getType()) << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001417 printEscapedString(va->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001418 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001419 break;
1420 }
1421 case Instruction::ExtractElement: {
1422 const ExtractElementInst* eei = cast<ExtractElementInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001423 Out << "ExtractElementInst* " << getCppName(eei)
Reid Spencer15f7e012006-05-30 21:18:23 +00001424 << " = new ExtractElementInst(" << opNames[0]
1425 << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001426 printEscapedString(eei->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001427 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001428 break;
1429 }
1430 case Instruction::InsertElement: {
1431 const InsertElementInst* iei = cast<InsertElementInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001432 Out << "InsertElementInst* " << getCppName(iei)
Reid Spencer15f7e012006-05-30 21:18:23 +00001433 << " = new InsertElementInst(" << opNames[0]
1434 << ", " << opNames[1] << ", " << opNames[2] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001435 printEscapedString(iei->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001436 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001437 break;
1438 }
1439 case Instruction::ShuffleVector: {
1440 const ShuffleVectorInst* svi = cast<ShuffleVectorInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001441 Out << "ShuffleVectorInst* " << getCppName(svi)
Reid Spencer15f7e012006-05-30 21:18:23 +00001442 << " = new ShuffleVectorInst(" << opNames[0]
1443 << ", " << opNames[1] << ", " << opNames[2] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001444 printEscapedString(svi->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001445 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001446 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001447 }
1448 }
Reid Spencer68464b72006-06-15 16:09:59 +00001449 DefinedValues.insert(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001450 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +00001451 delete [] opNames;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001452}
1453
Reid Spencer12803f52006-05-31 17:31:38 +00001454// Print out the types, constants and declarations needed by one function
1455void CppWriter::printFunctionUses(const Function* F) {
1456
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001457 nl(Out) << "// Type Definitions"; nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001458 if (!is_inline) {
1459 // Print the function's return type
1460 printType(F->getReturnType());
Reid Spencer12803f52006-05-31 17:31:38 +00001461
Reid Spencerf977e7b2006-06-01 23:43:47 +00001462 // Print the function's function type
1463 printType(F->getFunctionType());
Reid Spencer12803f52006-05-31 17:31:38 +00001464
Reid Spencerf977e7b2006-06-01 23:43:47 +00001465 // Print the types of each of the function's arguments
1466 for(Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1467 AI != AE; ++AI) {
1468 printType(AI->getType());
1469 }
Reid Spencer12803f52006-05-31 17:31:38 +00001470 }
1471
1472 // Print type definitions for every type referenced by an instruction and
1473 // make a note of any global values or constants that are referenced
Reid Spencera4d71f02007-06-16 20:48:27 +00001474 SmallPtrSet<GlobalValue*,64> gvs;
1475 SmallPtrSet<Constant*,64> consts;
Reid Spencer12803f52006-05-31 17:31:38 +00001476 for (Function::const_iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB){
1477 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
1478 I != E; ++I) {
1479 // Print the type of the instruction itself
1480 printType(I->getType());
1481
1482 // Print the type of each of the instruction's operands
1483 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
1484 Value* operand = I->getOperand(i);
1485 printType(operand->getType());
Reid Spencerab24b4c2007-06-16 20:33:24 +00001486
1487 // If the operand references a GVal or Constant, make a note of it
1488 if (GlobalValue* GV = dyn_cast<GlobalValue>(operand)) {
Reid Spencera4d71f02007-06-16 20:48:27 +00001489 gvs.insert(GV);
Reid Spencerab24b4c2007-06-16 20:33:24 +00001490 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
1491 if (GVar->hasInitializer())
Reid Spencera4d71f02007-06-16 20:48:27 +00001492 consts.insert(GVar->getInitializer());
Reid Spencerab24b4c2007-06-16 20:33:24 +00001493 } else if (Constant* C = dyn_cast<Constant>(operand))
Reid Spencera4d71f02007-06-16 20:48:27 +00001494 consts.insert(C);
Reid Spencer12803f52006-05-31 17:31:38 +00001495 }
1496 }
1497 }
1498
1499 // Print the function declarations for any functions encountered
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001500 nl(Out) << "// Function Declarations"; nl(Out);
Reid Spencera4d71f02007-06-16 20:48:27 +00001501 for (SmallPtrSet<GlobalValue*,64>::iterator I = gvs.begin(), E = gvs.end();
Reid Spencer12803f52006-05-31 17:31:38 +00001502 I != E; ++I) {
Reid Spencerf977e7b2006-06-01 23:43:47 +00001503 if (Function* Fun = dyn_cast<Function>(*I)) {
1504 if (!is_inline || Fun != F)
1505 printFunctionHead(Fun);
1506 }
Reid Spencer12803f52006-05-31 17:31:38 +00001507 }
1508
1509 // Print the global variable declarations for any variables encountered
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001510 nl(Out) << "// Global Variable Declarations"; nl(Out);
Reid Spencera4d71f02007-06-16 20:48:27 +00001511 for (SmallPtrSet<GlobalValue*,64>::iterator I = gvs.begin(), E = gvs.end();
Reid Spencer12803f52006-05-31 17:31:38 +00001512 I != E; ++I) {
1513 if (GlobalVariable* F = dyn_cast<GlobalVariable>(*I))
1514 printVariableHead(F);
1515 }
1516
1517 // Print the constants found
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001518 nl(Out) << "// Constant Definitions"; nl(Out);
Reid Spencera4d71f02007-06-16 20:48:27 +00001519 for (SmallPtrSet<Constant*,64>::iterator I = consts.begin(), E = consts.end();
Reid Spencer12803f52006-05-31 17:31:38 +00001520 I != E; ++I) {
Reid Spencerf977e7b2006-06-01 23:43:47 +00001521 printConstant(*I);
Reid Spencer12803f52006-05-31 17:31:38 +00001522 }
1523
1524 // Process the global variables definitions now that all the constants have
1525 // been emitted. These definitions just couple the gvars with their constant
1526 // initializers.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001527 nl(Out) << "// Global Variable Definitions"; nl(Out);
Reid Spencera4d71f02007-06-16 20:48:27 +00001528 for (SmallPtrSet<GlobalValue*,64>::iterator I = gvs.begin(), E = gvs.end();
Reid Spencer12803f52006-05-31 17:31:38 +00001529 I != E; ++I) {
1530 if (GlobalVariable* GV = dyn_cast<GlobalVariable>(*I))
1531 printVariableBody(GV);
1532 }
1533}
1534
1535void CppWriter::printFunctionHead(const Function* F) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001536 nl(Out) << "Function* " << getCppName(F);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001537 if (is_inline) {
1538 Out << " = mod->getFunction(\"";
1539 printEscapedString(F->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001540 Out << "\", " << getCppName(F->getFunctionType()) << ");";
1541 nl(Out) << "if (!" << getCppName(F) << ") {";
1542 nl(Out) << getCppName(F);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001543 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001544 Out<< " = new Function(";
1545 nl(Out,1) << "/*Type=*/" << getCppName(F->getFunctionType()) << ",";
1546 nl(Out) << "/*Linkage=*/";
Reid Spencer12803f52006-05-31 17:31:38 +00001547 printLinkageType(F->getLinkage());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001548 Out << ",";
1549 nl(Out) << "/*Name=*/\"";
Reid Spencer12803f52006-05-31 17:31:38 +00001550 printEscapedString(F->getName());
Reid Spencer5cbf9852007-01-30 20:08:39 +00001551 Out << "\", mod); " << (F->isDeclaration()? "// (external, no body)" : "");
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001552 nl(Out,-1);
Reid Spencer12803f52006-05-31 17:31:38 +00001553 printCppName(F);
1554 Out << "->setCallingConv(";
1555 printCallingConv(F->getCallingConv());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001556 Out << ");";
1557 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001558 if (F->hasSection()) {
1559 printCppName(F);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001560 Out << "->setSection(\"" << F->getSection() << "\");";
1561 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001562 }
1563 if (F->getAlignment()) {
1564 printCppName(F);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001565 Out << "->setAlignment(" << F->getAlignment() << ");";
1566 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001567 }
Duncan Sandsdc024672007-11-27 13:23:08 +00001568 if (F->getVisibility() != GlobalValue::DefaultVisibility) {
1569 printCppName(F);
1570 Out << "->setVisibility(";
1571 printVisibilityType(F->getVisibility());
1572 Out << ");";
1573 nl(Out);
1574 }
Gordon Henriksen194c90e2007-12-25 22:16:06 +00001575 if (F->hasCollector()) {
1576 printCppName(F);
1577 Out << "->setCollector(\"" << F->getCollector() << "\");";
1578 nl(Out);
1579 }
Reid Spencerf977e7b2006-06-01 23:43:47 +00001580 if (is_inline) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001581 Out << "}";
1582 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001583 }
Duncan Sandsdc024672007-11-27 13:23:08 +00001584 printParamAttrs(F->getParamAttrs(), getCppName(F));
1585 printCppName(F);
1586 Out << "->setParamAttrs(" << getCppName(F) << "_PAL);";
1587 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001588}
1589
1590void CppWriter::printFunctionBody(const Function *F) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001591 if (F->isDeclaration())
Reid Spencer12803f52006-05-31 17:31:38 +00001592 return; // external functions have no bodies.
1593
1594 // Clear the DefinedValues and ForwardRefs maps because we can't have
1595 // cross-function forward refs
1596 ForwardRefs.clear();
1597 DefinedValues.clear();
1598
1599 // Create all the argument values
Reid Spencerf977e7b2006-06-01 23:43:47 +00001600 if (!is_inline) {
1601 if (!F->arg_empty()) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001602 Out << "Function::arg_iterator args = " << getCppName(F)
1603 << "->arg_begin();";
1604 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001605 }
1606 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1607 AI != AE; ++AI) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001608 Out << "Value* " << getCppName(AI) << " = args++;";
1609 nl(Out);
1610 if (AI->hasName()) {
1611 Out << getCppName(AI) << "->setName(\"" << AI->getName() << "\");";
1612 nl(Out);
1613 }
Reid Spencerf977e7b2006-06-01 23:43:47 +00001614 }
Reid Spencer12803f52006-05-31 17:31:38 +00001615 }
1616
1617 // Create all the basic blocks
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001618 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001619 for (Function::const_iterator BI = F->begin(), BE = F->end();
1620 BI != BE; ++BI) {
1621 std::string bbname(getCppName(BI));
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001622 Out << "BasicBlock* " << bbname << " = new BasicBlock(\"";
Reid Spencer12803f52006-05-31 17:31:38 +00001623 if (BI->hasName())
1624 printEscapedString(BI->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001625 Out << "\"," << getCppName(BI->getParent()) << ",0);";
1626 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001627 }
1628
1629 // Output all of its basic blocks... for the function
1630 for (Function::const_iterator BI = F->begin(), BE = F->end();
1631 BI != BE; ++BI) {
1632 std::string bbname(getCppName(BI));
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001633 nl(Out) << "// Block " << BI->getName() << " (" << bbname << ")";
1634 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001635
1636 // Output all of the instructions in the basic block...
1637 for (BasicBlock::const_iterator I = BI->begin(), E = BI->end();
1638 I != E; ++I) {
1639 printInstruction(I,bbname);
1640 }
1641 }
1642
1643 // Loop over the ForwardRefs and resolve them now that all instructions
1644 // are generated.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001645 if (!ForwardRefs.empty()) {
1646 nl(Out) << "// Resolve Forward References";
1647 nl(Out);
1648 }
1649
Reid Spencer12803f52006-05-31 17:31:38 +00001650 while (!ForwardRefs.empty()) {
1651 ForwardRefMap::iterator I = ForwardRefs.begin();
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001652 Out << I->second << "->replaceAllUsesWith("
1653 << getCppName(I->first) << "); delete " << I->second << ";";
1654 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001655 ForwardRefs.erase(I);
1656 }
1657}
1658
Reid Spencerf977e7b2006-06-01 23:43:47 +00001659void CppWriter::printInline(const std::string& fname, const std::string& func) {
Reid Spencer688b0492007-02-05 21:19:13 +00001660 const Function* F = TheModule->getFunction(func);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001661 if (!F) {
1662 error(std::string("Function '") + func + "' not found in input module");
1663 return;
1664 }
Reid Spencer5cbf9852007-01-30 20:08:39 +00001665 if (F->isDeclaration()) {
Reid Spencerf977e7b2006-06-01 23:43:47 +00001666 error(std::string("Function '") + func + "' is external!");
1667 return;
1668 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001669 nl(Out) << "BasicBlock* " << fname << "(Module* mod, Function *"
Reid Spencerf977e7b2006-06-01 23:43:47 +00001670 << getCppName(F);
1671 unsigned arg_count = 1;
1672 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1673 AI != AE; ++AI) {
1674 Out << ", Value* arg_" << arg_count;
1675 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001676 Out << ") {";
1677 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001678 is_inline = true;
1679 printFunctionUses(F);
1680 printFunctionBody(F);
1681 is_inline = false;
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001682 Out << "return " << getCppName(F->begin()) << ";";
1683 nl(Out) << "}";
1684 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001685}
1686
Reid Spencer12803f52006-05-31 17:31:38 +00001687void CppWriter::printModuleBody() {
1688 // Print out all the type definitions
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001689 nl(Out) << "// Type Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001690 printTypes(TheModule);
1691
1692 // Functions can call each other and global variables can reference them so
1693 // define all the functions first before emitting their function bodies.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001694 nl(Out) << "// Function Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001695 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1696 I != E; ++I)
1697 printFunctionHead(I);
1698
1699 // Process the global variables declarations. We can't initialze them until
1700 // after the constants are printed so just print a header for each global
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001701 nl(Out) << "// Global Variable Declarations\n"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001702 for (Module::const_global_iterator I = TheModule->global_begin(),
1703 E = TheModule->global_end(); I != E; ++I) {
1704 printVariableHead(I);
1705 }
1706
1707 // Print out all the constants definitions. Constants don't recurse except
1708 // through GlobalValues. All GlobalValues have been declared at this point
1709 // so we can proceed to generate the constants.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001710 nl(Out) << "// Constant Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001711 printConstants(TheModule);
1712
1713 // Process the global variables definitions now that all the constants have
1714 // been emitted. These definitions just couple the gvars with their constant
1715 // initializers.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001716 nl(Out) << "// Global Variable Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001717 for (Module::const_global_iterator I = TheModule->global_begin(),
1718 E = TheModule->global_end(); I != E; ++I) {
1719 printVariableBody(I);
1720 }
1721
1722 // Finally, we can safely put out all of the function bodies.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001723 nl(Out) << "// Function Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001724 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1725 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001726 if (!I->isDeclaration()) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001727 nl(Out) << "// Function: " << I->getName() << " (" << getCppName(I)
1728 << ")";
1729 nl(Out) << "{";
1730 nl(Out,1);
Reid Spencer12803f52006-05-31 17:31:38 +00001731 printFunctionBody(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001732 nl(Out,-1) << "}";
1733 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001734 }
1735 }
1736}
1737
1738void CppWriter::printProgram(
1739 const std::string& fname,
1740 const std::string& mName
1741) {
1742 Out << "#include <llvm/Module.h>\n";
1743 Out << "#include <llvm/DerivedTypes.h>\n";
1744 Out << "#include <llvm/Constants.h>\n";
1745 Out << "#include <llvm/GlobalVariable.h>\n";
1746 Out << "#include <llvm/Function.h>\n";
1747 Out << "#include <llvm/CallingConv.h>\n";
1748 Out << "#include <llvm/BasicBlock.h>\n";
1749 Out << "#include <llvm/Instructions.h>\n";
1750 Out << "#include <llvm/InlineAsm.h>\n";
Reid Spencer07441662007-04-11 12:28:56 +00001751 Out << "#include <llvm/ParameterAttributes.h>\n";
Reid Spencerf977e7b2006-06-01 23:43:47 +00001752 Out << "#include <llvm/Support/MathExtras.h>\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001753 Out << "#include <llvm/Pass.h>\n";
1754 Out << "#include <llvm/PassManager.h>\n";
1755 Out << "#include <llvm/Analysis/Verifier.h>\n";
1756 Out << "#include <llvm/Assembly/PrintModulePass.h>\n";
1757 Out << "#include <algorithm>\n";
1758 Out << "#include <iostream>\n\n";
1759 Out << "using namespace llvm;\n\n";
1760 Out << "Module* " << fname << "();\n\n";
1761 Out << "int main(int argc, char**argv) {\n";
Nick Lewycky8946fe12007-06-16 16:17:35 +00001762 Out << " Module* Mod = " << fname << "();\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001763 Out << " verifyModule(*Mod, PrintMessageAction);\n";
1764 Out << " std::cerr.flush();\n";
1765 Out << " std::cout.flush();\n";
1766 Out << " PassManager PM;\n";
Reid Spencer07441662007-04-11 12:28:56 +00001767 Out << " PM.add(new PrintModulePass(&llvm::cout));\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001768 Out << " PM.run(*Mod);\n";
1769 Out << " return 0;\n";
1770 Out << "}\n\n";
1771 printModule(fname,mName);
1772}
1773
1774void CppWriter::printModule(
1775 const std::string& fname,
1776 const std::string& mName
1777) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001778 nl(Out) << "Module* " << fname << "() {";
1779 nl(Out,1) << "// Module Construction";
1780 nl(Out) << "Module* mod = new Module(\"" << mName << "\");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001781 if (!TheModule->getTargetTriple().empty()) {
Reid Spencer07441662007-04-11 12:28:56 +00001782 nl(Out) << "mod->setDataLayout(\"" << TheModule->getDataLayout() << "\");";
1783 }
1784 if (!TheModule->getTargetTriple().empty()) {
1785 nl(Out) << "mod->setTargetTriple(\"" << TheModule->getTargetTriple()
1786 << "\");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001787 }
Reid Spencer12803f52006-05-31 17:31:38 +00001788
1789 if (!TheModule->getModuleInlineAsm().empty()) {
Reid Spencer07441662007-04-11 12:28:56 +00001790 nl(Out) << "mod->setModuleInlineAsm(\"";
Reid Spencer12803f52006-05-31 17:31:38 +00001791 printEscapedString(TheModule->getModuleInlineAsm());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001792 Out << "\");";
Reid Spencer12803f52006-05-31 17:31:38 +00001793 }
Reid Spencer07441662007-04-11 12:28:56 +00001794 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001795
1796 // Loop over the dependent libraries and emit them.
1797 Module::lib_iterator LI = TheModule->lib_begin();
1798 Module::lib_iterator LE = TheModule->lib_end();
1799 while (LI != LE) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001800 Out << "mod->addLibrary(\"" << *LI << "\");";
1801 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001802 ++LI;
1803 }
1804 printModuleBody();
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001805 nl(Out) << "return mod;";
1806 nl(Out,-1) << "}";
1807 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001808}
1809
1810void CppWriter::printContents(
1811 const std::string& fname, // Name of generated function
1812 const std::string& mName // Name of module generated module
1813) {
1814 Out << "\nModule* " << fname << "(Module *mod) {\n";
1815 Out << "\nmod->setModuleIdentifier(\"" << mName << "\");\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001816 printModuleBody();
1817 Out << "\nreturn mod;\n";
1818 Out << "\n}\n";
1819}
1820
1821void CppWriter::printFunction(
1822 const std::string& fname, // Name of generated function
1823 const std::string& funcName // Name of function to generate
1824) {
Reid Spencer688b0492007-02-05 21:19:13 +00001825 const Function* F = TheModule->getFunction(funcName);
Reid Spencer12803f52006-05-31 17:31:38 +00001826 if (!F) {
1827 error(std::string("Function '") + funcName + "' not found in input module");
1828 return;
1829 }
1830 Out << "\nFunction* " << fname << "(Module *mod) {\n";
1831 printFunctionUses(F);
1832 printFunctionHead(F);
1833 printFunctionBody(F);
1834 Out << "return " << getCppName(F) << ";\n";
1835 Out << "}\n";
1836}
1837
Chris Lattner120119d2007-11-13 18:22:33 +00001838void CppWriter::printFunctions() {
1839 const Module::FunctionListType &funcs = TheModule->getFunctionList();
1840 Module::const_iterator I = funcs.begin();
1841 Module::const_iterator IE = funcs.end();
1842
1843 for (; I != IE; ++I) {
1844 const Function &func = *I;
1845 if (!func.isDeclaration()) {
1846 std::string name("define_");
1847 name += func.getName();
1848 printFunction(name, func.getName());
1849 }
1850 }
1851}
1852
Reid Spencer12803f52006-05-31 17:31:38 +00001853void CppWriter::printVariable(
1854 const std::string& fname, /// Name of generated function
1855 const std::string& varName // Name of variable to generate
1856) {
1857 const GlobalVariable* GV = TheModule->getNamedGlobal(varName);
1858
1859 if (!GV) {
1860 error(std::string("Variable '") + varName + "' not found in input module");
1861 return;
1862 }
1863 Out << "\nGlobalVariable* " << fname << "(Module *mod) {\n";
1864 printVariableUses(GV);
1865 printVariableHead(GV);
1866 printVariableBody(GV);
1867 Out << "return " << getCppName(GV) << ";\n";
1868 Out << "}\n";
1869}
1870
1871void CppWriter::printType(
1872 const std::string& fname, /// Name of generated function
1873 const std::string& typeName // Name of type to generate
1874) {
1875 const Type* Ty = TheModule->getTypeByName(typeName);
1876 if (!Ty) {
1877 error(std::string("Type '") + typeName + "' not found in input module");
1878 return;
1879 }
1880 Out << "\nType* " << fname << "(Module *mod) {\n";
1881 printType(Ty);
1882 Out << "return " << getCppName(Ty) << ";\n";
1883 Out << "}\n";
1884}
1885
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001886} // end anonymous llvm
1887
1888namespace llvm {
1889
1890void WriteModuleToCppFile(Module* mod, std::ostream& o) {
Reid Spencer12803f52006-05-31 17:31:38 +00001891 // Initialize a CppWriter for us to use
1892 CppWriter W(o, mod);
1893
1894 // Emit a header
Reid Spencer25edc352006-05-31 04:43:19 +00001895 o << "// Generated by llvm2cpp - DO NOT MODIFY!\n\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001896
1897 // Get the name of the function we're supposed to generate
Reid Spencer15f7e012006-05-30 21:18:23 +00001898 std::string fname = FuncName.getValue();
Reid Spencer12803f52006-05-31 17:31:38 +00001899
1900 // Get the name of the thing we are to generate
1901 std::string tgtname = NameToGenerate.getValue();
1902 if (GenerationType == GenModule ||
1903 GenerationType == GenContents ||
Chris Lattner120119d2007-11-13 18:22:33 +00001904 GenerationType == GenProgram ||
1905 GenerationType == GenFunctions) {
Reid Spencer12803f52006-05-31 17:31:38 +00001906 if (tgtname == "!bad!") {
1907 if (mod->getModuleIdentifier() == "-")
1908 tgtname = "<stdin>";
1909 else
1910 tgtname = mod->getModuleIdentifier();
1911 }
1912 } else if (tgtname == "!bad!") {
1913 W.error("You must use the -for option with -gen-{function,variable,type}");
1914 }
1915
1916 switch (WhatToGenerate(GenerationType)) {
1917 case GenProgram:
1918 if (fname.empty())
1919 fname = "makeLLVMModule";
1920 W.printProgram(fname,tgtname);
1921 break;
1922 case GenModule:
1923 if (fname.empty())
1924 fname = "makeLLVMModule";
1925 W.printModule(fname,tgtname);
1926 break;
1927 case GenContents:
1928 if (fname.empty())
1929 fname = "makeLLVMModuleContents";
1930 W.printContents(fname,tgtname);
1931 break;
1932 case GenFunction:
1933 if (fname.empty())
1934 fname = "makeLLVMFunction";
1935 W.printFunction(fname,tgtname);
1936 break;
Chris Lattner120119d2007-11-13 18:22:33 +00001937 case GenFunctions:
1938 W.printFunctions();
1939 break;
Reid Spencerf977e7b2006-06-01 23:43:47 +00001940 case GenInline:
1941 if (fname.empty())
1942 fname = "makeLLVMInline";
1943 W.printInline(fname,tgtname);
1944 break;
Reid Spencer12803f52006-05-31 17:31:38 +00001945 case GenVariable:
1946 if (fname.empty())
1947 fname = "makeLLVMVariable";
1948 W.printVariable(fname,tgtname);
1949 break;
1950 case GenType:
1951 if (fname.empty())
1952 fname = "makeLLVMType";
1953 W.printType(fname,tgtname);
1954 break;
1955 default:
1956 W.error("Invalid generation option");
Reid Spencer15f7e012006-05-30 21:18:23 +00001957 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001958}
1959
1960}