blob: c2dadadfd30225ee9eaf1af702e6e64b2319805b [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//
Reid Spencere0d133f2006-05-29 18:08:06 +00005// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source 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 Spencer15f7e012006-05-30 21:18:23 +000026#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000027#include "llvm/Support/CFG.h"
28#include "llvm/Support/ManagedStatic.h"
29#include "llvm/Support/MathExtras.h"
Reid Spencerf977e7b2006-06-01 23:43:47 +000030#include "llvm/Config/config.h"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000031#include <algorithm>
32#include <iostream>
Reid Spencer66c87342006-05-30 03:43:49 +000033#include <set>
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000034
35using namespace llvm;
36
Reid Spencer15f7e012006-05-30 21:18:23 +000037static cl::opt<std::string>
Reid Spencer15f7e012006-05-30 21:18:23 +000038FuncName("funcname", cl::desc("Specify the name of the generated function"),
39 cl::value_desc("function name"));
40
Reid Spencer12803f52006-05-31 17:31:38 +000041enum WhatToGenerate {
42 GenProgram,
43 GenModule,
44 GenContents,
45 GenFunction,
Reid Spencerf977e7b2006-06-01 23:43:47 +000046 GenInline,
Reid Spencer12803f52006-05-31 17:31:38 +000047 GenVariable,
48 GenType
49};
50
51static cl::opt<WhatToGenerate> GenerationType(cl::Optional,
52 cl::desc("Choose what kind of output to generate"),
53 cl::init(GenProgram),
54 cl::values(
55 clEnumValN(GenProgram, "gen-program", "Generate a complete program"),
56 clEnumValN(GenModule, "gen-module", "Generate a module definition"),
57 clEnumValN(GenContents,"gen-contents", "Generate contents of a module"),
58 clEnumValN(GenFunction,"gen-function", "Generate a function definition"),
Reid Spencerf977e7b2006-06-01 23:43:47 +000059 clEnumValN(GenInline, "gen-inline", "Generate an inline function"),
Reid Spencer12803f52006-05-31 17:31:38 +000060 clEnumValN(GenVariable,"gen-variable", "Generate a variable definition"),
61 clEnumValN(GenType, "gen-type", "Generate a type definition"),
62 clEnumValEnd
63 )
64);
65
66static cl::opt<std::string> NameToGenerate("for", cl::Optional,
67 cl::desc("Specify the name of the thing to generate"),
68 cl::init("!bad!"));
Reid Spencer15f7e012006-05-30 21:18:23 +000069
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000070namespace {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000071typedef std::vector<const Type*> TypeList;
72typedef std::map<const Type*,std::string> TypeMap;
73typedef std::map<const Value*,std::string> ValueMap;
Reid Spencer66c87342006-05-30 03:43:49 +000074typedef std::set<std::string> NameSet;
Reid Spencer15f7e012006-05-30 21:18:23 +000075typedef std::set<const Type*> TypeSet;
76typedef std::set<const Value*> ValueSet;
77typedef std::map<const Value*,std::string> ForwardRefMap;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000078
Reid Spencere0d133f2006-05-29 18:08:06 +000079class CppWriter {
Reid Spencer12803f52006-05-31 17:31:38 +000080 const char* progname;
Reid Spencere0d133f2006-05-29 18:08:06 +000081 std::ostream &Out;
82 const Module *TheModule;
Andrew Lenharth539d8712006-05-31 20:18:56 +000083 uint64_t uniqueNum;
Reid Spencere0d133f2006-05-29 18:08:06 +000084 TypeMap TypeNames;
85 ValueMap ValueNames;
86 TypeMap UnresolvedTypes;
87 TypeList TypeStack;
Reid Spencer66c87342006-05-30 03:43:49 +000088 NameSet UsedNames;
Reid Spencer15f7e012006-05-30 21:18:23 +000089 TypeSet DefinedTypes;
90 ValueSet DefinedValues;
91 ForwardRefMap ForwardRefs;
Reid Spencerf977e7b2006-06-01 23:43:47 +000092 bool is_inline;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000093
Reid Spencere0d133f2006-05-29 18:08:06 +000094public:
Reid Spencer12803f52006-05-31 17:31:38 +000095 inline CppWriter(std::ostream &o, const Module *M, const char* pn="llvm2cpp")
96 : progname(pn), Out(o), TheModule(M), uniqueNum(0), TypeNames(),
Reid Spencerf977e7b2006-06-01 23:43:47 +000097 ValueNames(), UnresolvedTypes(), TypeStack(), is_inline(false) { }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000098
Reid Spencere0d133f2006-05-29 18:08:06 +000099 const Module* getModule() { return TheModule; }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000100
Reid Spencer12803f52006-05-31 17:31:38 +0000101 void printProgram(const std::string& fname, const std::string& modName );
102 void printModule(const std::string& fname, const std::string& modName );
103 void printContents(const std::string& fname, const std::string& modName );
104 void printFunction(const std::string& fname, const std::string& funcName );
Reid Spencerf977e7b2006-06-01 23:43:47 +0000105 void printInline(const std::string& fname, const std::string& funcName );
Reid Spencer12803f52006-05-31 17:31:38 +0000106 void printVariable(const std::string& fname, const std::string& varName );
107 void printType(const std::string& fname, const std::string& typeName );
108
109 void error(const std::string& msg);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000110
Reid Spencere0d133f2006-05-29 18:08:06 +0000111private:
Reid Spencer12803f52006-05-31 17:31:38 +0000112 void printLinkageType(GlobalValue::LinkageTypes LT);
113 void printCallingConv(unsigned cc);
114 void printEscapedString(const std::string& str);
115 void printCFP(const ConstantFP* CFP);
116
117 std::string getCppName(const Type* val);
118 inline void printCppName(const Type* val);
119
120 std::string getCppName(const Value* val);
121 inline void printCppName(const Value* val);
122
123 bool printTypeInternal(const Type* Ty);
124 inline void printType(const Type* Ty);
Reid Spencere0d133f2006-05-29 18:08:06 +0000125 void printTypes(const Module* M);
Reid Spencer12803f52006-05-31 17:31:38 +0000126
Reid Spencere0d133f2006-05-29 18:08:06 +0000127 void printConstant(const Constant *CPV);
Reid Spencer12803f52006-05-31 17:31:38 +0000128 void printConstants(const Module* M);
129
130 void printVariableUses(const GlobalVariable *GV);
131 void printVariableHead(const GlobalVariable *GV);
132 void printVariableBody(const GlobalVariable *GV);
133
134 void printFunctionUses(const Function *F);
Reid Spencer66c87342006-05-30 03:43:49 +0000135 void printFunctionHead(const Function *F);
136 void printFunctionBody(const Function *F);
Reid Spencere0d133f2006-05-29 18:08:06 +0000137 void printInstruction(const Instruction *I, const std::string& bbname);
Reid Spencer15f7e012006-05-30 21:18:23 +0000138 std::string getOpName(Value*);
139
Reid Spencer12803f52006-05-31 17:31:38 +0000140 void printModuleBody();
141
Reid Spencere0d133f2006-05-29 18:08:06 +0000142};
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000143
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000144static unsigned indent_level = 0;
145inline std::ostream& nl(std::ostream& Out, int delta = 0) {
146 Out << "\n";
147 if (delta >= 0 || indent_level >= unsigned(-delta))
148 indent_level += delta;
149 for (unsigned i = 0; i < indent_level; ++i)
150 Out << " ";
151 return Out;
152}
153
154inline void in() { indent_level++; }
155inline void out() { if (indent_level >0) indent_level--; }
156
Reid Spencer12803f52006-05-31 17:31:38 +0000157inline void
158sanitize(std::string& str) {
159 for (size_t i = 0; i < str.length(); ++i)
160 if (!isalnum(str[i]) && str[i] != '_')
161 str[i] = '_';
162}
163
Reid Spencera54b7cb2007-01-12 07:05:14 +0000164inline std::string
Reid Spencer12803f52006-05-31 17:31:38 +0000165getTypePrefix(const Type* Ty ) {
Reid Spencer12803f52006-05-31 17:31:38 +0000166 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000167 case Type::VoidTyID: return "void_";
168 case Type::IntegerTyID:
169 return std::string("int") + utostr(cast<IntegerType>(Ty)->getBitWidth()) +
170 "_";
171 case Type::FloatTyID: return "float_";
172 case Type::DoubleTyID: return "double_";
173 case Type::LabelTyID: return "label_";
174 case Type::FunctionTyID: return "func_";
175 case Type::StructTyID: return "struct_";
176 case Type::ArrayTyID: return "array_";
177 case Type::PointerTyID: return "ptr_";
Reid Spencer9d6565a2007-02-15 02:26:10 +0000178 case Type::VectorTyID: return "packed_";
Reid Spencera54b7cb2007-01-12 07:05:14 +0000179 case Type::OpaqueTyID: return "opaque_";
180 default: return "other_";
Reid Spencer12803f52006-05-31 17:31:38 +0000181 }
Reid Spencera54b7cb2007-01-12 07:05:14 +0000182 return "unknown_";
Reid Spencer12803f52006-05-31 17:31:38 +0000183}
184
185// Looks up the type in the symbol table and returns a pointer to its name or
186// a null pointer if it wasn't found. Note that this isn't the same as the
187// Mode::getTypeName function which will return an empty string, not a null
188// pointer if the name is not found.
189inline const std::string*
Reid Spencer78d033e2007-01-06 07:24:44 +0000190findTypeName(const TypeSymbolTable& ST, const Type* Ty)
Reid Spencer12803f52006-05-31 17:31:38 +0000191{
Reid Spencer78d033e2007-01-06 07:24:44 +0000192 TypeSymbolTable::const_iterator TI = ST.begin();
193 TypeSymbolTable::const_iterator TE = ST.end();
Reid Spencer12803f52006-05-31 17:31:38 +0000194 for (;TI != TE; ++TI)
195 if (TI->second == Ty)
196 return &(TI->first);
197 return 0;
198}
199
200void
201CppWriter::error(const std::string& msg) {
202 std::cerr << progname << ": " << msg << "\n";
203 exit(2);
204}
205
Reid Spencer15f7e012006-05-30 21:18:23 +0000206// printCFP - Print a floating point constant .. very carefully :)
207// This makes sure that conversion to/from floating yields the same binary
208// result so that we don't lose precision.
209void
210CppWriter::printCFP(const ConstantFP *CFP) {
Reid Spencerf977e7b2006-06-01 23:43:47 +0000211 Out << "ConstantFP::get(";
212 if (CFP->getType() == Type::DoubleTy)
213 Out << "Type::DoubleTy, ";
214 else
215 Out << "Type::FloatTy, ";
Reid Spencer15f7e012006-05-30 21:18:23 +0000216#if HAVE_PRINTF_A
217 char Buffer[100];
218 sprintf(Buffer, "%A", CFP->getValue());
219 if ((!strncmp(Buffer, "0x", 2) ||
220 !strncmp(Buffer, "-0x", 3) ||
221 !strncmp(Buffer, "+0x", 3)) &&
222 (atof(Buffer) == CFP->getValue()))
Reid Spencerf977e7b2006-06-01 23:43:47 +0000223 if (CFP->getType() == Type::DoubleTy)
224 Out << "BitsToDouble(" << Buffer << ")";
225 else
226 Out << "BitsToFloat(" << Buffer << ")";
Reid Spencer15f7e012006-05-30 21:18:23 +0000227 else {
Reid Spencer15f7e012006-05-30 21:18:23 +0000228#endif
Reid Spencerf977e7b2006-06-01 23:43:47 +0000229 std::string StrVal = ftostr(CFP->getValue());
230
231 while (StrVal[0] == ' ')
232 StrVal.erase(StrVal.begin());
233
234 // Check to make sure that the stringized number is not some string like
235 // "Inf" or NaN. Check that the string matches the "[-+]?[0-9]" regex.
236 if (((StrVal[0] >= '0' && StrVal[0] <= '9') ||
237 ((StrVal[0] == '-' || StrVal[0] == '+') &&
238 (StrVal[1] >= '0' && StrVal[1] <= '9'))) &&
239 (atof(StrVal.c_str()) == CFP->getValue()))
240 if (CFP->getType() == Type::DoubleTy)
241 Out << StrVal;
242 else
243 Out << StrVal;
244 else if (CFP->getType() == Type::DoubleTy)
245 Out << "BitsToDouble(0x" << std::hex << DoubleToBits(CFP->getValue())
246 << std::dec << "ULL) /* " << StrVal << " */";
247 else
248 Out << "BitsToFloat(0x" << std::hex << FloatToBits(CFP->getValue())
249 << std::dec << "U) /* " << StrVal << " */";
Reid Spencer15f7e012006-05-30 21:18:23 +0000250#if HAVE_PRINTF_A
251 }
252#endif
Reid Spencerf977e7b2006-06-01 23:43:47 +0000253 Out << ")";
Reid Spencer15f7e012006-05-30 21:18:23 +0000254}
255
Reid Spencer12803f52006-05-31 17:31:38 +0000256void
257CppWriter::printCallingConv(unsigned cc){
258 // Print the calling convention.
259 switch (cc) {
260 case CallingConv::C: Out << "CallingConv::C"; break;
Reid Spencer12803f52006-05-31 17:31:38 +0000261 case CallingConv::Fast: Out << "CallingConv::Fast"; break;
262 case CallingConv::Cold: Out << "CallingConv::Cold"; break;
263 case CallingConv::FirstTargetCC: Out << "CallingConv::FirstTargetCC"; break;
264 default: Out << cc; break;
265 }
266}
Reid Spencer15f7e012006-05-30 21:18:23 +0000267
Reid Spencer12803f52006-05-31 17:31:38 +0000268void
269CppWriter::printLinkageType(GlobalValue::LinkageTypes LT) {
270 switch (LT) {
271 case GlobalValue::InternalLinkage:
272 Out << "GlobalValue::InternalLinkage"; break;
273 case GlobalValue::LinkOnceLinkage:
274 Out << "GlobalValue::LinkOnceLinkage "; break;
275 case GlobalValue::WeakLinkage:
276 Out << "GlobalValue::WeakLinkage"; break;
277 case GlobalValue::AppendingLinkage:
278 Out << "GlobalValue::AppendingLinkage"; break;
279 case GlobalValue::ExternalLinkage:
280 Out << "GlobalValue::ExternalLinkage"; break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000281 case GlobalValue::DLLImportLinkage:
282 Out << "GlobalValue::DllImportLinkage"; break;
283 case GlobalValue::DLLExportLinkage:
284 Out << "GlobalValue::DllExportLinkage"; break;
285 case GlobalValue::ExternalWeakLinkage:
286 Out << "GlobalValue::ExternalWeakLinkage"; break;
Reid Spencer12803f52006-05-31 17:31:38 +0000287 case GlobalValue::GhostLinkage:
288 Out << "GlobalValue::GhostLinkage"; break;
289 }
Reid Spencer15f7e012006-05-30 21:18:23 +0000290}
291
Reid Spencere0d133f2006-05-29 18:08:06 +0000292// printEscapedString - Print each character of the specified string, escaping
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000293// it if it is not printable or if it is an escape char.
Reid Spencere0d133f2006-05-29 18:08:06 +0000294void
295CppWriter::printEscapedString(const std::string &Str) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000296 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
297 unsigned char C = Str[i];
298 if (isprint(C) && C != '"' && C != '\\') {
299 Out << C;
300 } else {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000301 Out << "\\x"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000302 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
303 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
304 }
305 }
306}
307
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000308std::string
309CppWriter::getCppName(const Type* Ty)
310{
311 // First, handle the primitive types .. easy
Chris Lattner42a75512007-01-15 02:27:26 +0000312 if (Ty->isPrimitiveType() || Ty->isInteger()) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000313 switch (Ty->getTypeID()) {
Reid Spencer71d2ec92006-12-31 06:02:26 +0000314 case Type::VoidTyID: return "Type::VoidTy";
Reid Spencera54b7cb2007-01-12 07:05:14 +0000315 case Type::IntegerTyID: {
316 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
317 return "IntegerType::get(" + utostr(BitWidth) + ")";
318 }
Reid Spencer71d2ec92006-12-31 06:02:26 +0000319 case Type::FloatTyID: return "Type::FloatTy";
320 case Type::DoubleTyID: return "Type::DoubleTy";
321 case Type::LabelTyID: return "Type::LabelTy";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000322 default:
Reid Spencer12803f52006-05-31 17:31:38 +0000323 error("Invalid primitive type");
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000324 break;
325 }
326 return "Type::VoidTy"; // shouldn't be returned, but make it sensible
327 }
328
329 // Now, see if we've seen the type before and return that
330 TypeMap::iterator I = TypeNames.find(Ty);
331 if (I != TypeNames.end())
332 return I->second;
333
334 // Okay, let's build a new name for this type. Start with a prefix
335 const char* prefix = 0;
336 switch (Ty->getTypeID()) {
337 case Type::FunctionTyID: prefix = "FuncTy_"; break;
338 case Type::StructTyID: prefix = "StructTy_"; break;
339 case Type::ArrayTyID: prefix = "ArrayTy_"; break;
340 case Type::PointerTyID: prefix = "PointerTy_"; break;
341 case Type::OpaqueTyID: prefix = "OpaqueTy_"; break;
Reid Spencerac9dcb92007-02-15 03:39:18 +0000342 case Type::VectorTyID: prefix = "VectorTy_"; break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000343 default: prefix = "OtherTy_"; break; // prevent breakage
344 }
345
346 // See if the type has a name in the symboltable and build accordingly
Reid Spencer78d033e2007-01-06 07:24:44 +0000347 const std::string* tName = findTypeName(TheModule->getTypeSymbolTable(), Ty);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000348 std::string name;
349 if (tName)
350 name = std::string(prefix) + *tName;
351 else
352 name = std::string(prefix) + utostr(uniqueNum++);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000353 sanitize(name);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000354
355 // Save the name
356 return TypeNames[Ty] = name;
357}
358
Reid Spencer12803f52006-05-31 17:31:38 +0000359void
360CppWriter::printCppName(const Type* Ty)
361{
362 printEscapedString(getCppName(Ty));
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000363}
364
Reid Spencer12803f52006-05-31 17:31:38 +0000365std::string
366CppWriter::getCppName(const Value* val) {
367 std::string name;
368 ValueMap::iterator I = ValueNames.find(val);
369 if (I != ValueNames.end() && I->first == val)
370 return I->second;
Reid Spencer25edc352006-05-31 04:43:19 +0000371
Reid Spencer12803f52006-05-31 17:31:38 +0000372 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(val)) {
373 name = std::string("gvar_") +
374 getTypePrefix(GV->getType()->getElementType());
Reid Spencer3ed469c2006-11-02 20:25:50 +0000375 } else if (isa<Function>(val)) {
Reid Spencer12803f52006-05-31 17:31:38 +0000376 name = std::string("func_");
377 } else if (const Constant* C = dyn_cast<Constant>(val)) {
378 name = std::string("const_") + getTypePrefix(C->getType());
Reid Spencerf977e7b2006-06-01 23:43:47 +0000379 } else if (const Argument* Arg = dyn_cast<Argument>(val)) {
380 if (is_inline) {
381 unsigned argNum = std::distance(Arg->getParent()->arg_begin(),
382 Function::const_arg_iterator(Arg)) + 1;
383 name = std::string("arg_") + utostr(argNum);
384 NameSet::iterator NI = UsedNames.find(name);
385 if (NI != UsedNames.end())
386 name += std::string("_") + utostr(uniqueNum++);
387 UsedNames.insert(name);
388 return ValueNames[val] = name;
389 } else {
390 name = getTypePrefix(val->getType());
391 }
Reid Spencer12803f52006-05-31 17:31:38 +0000392 } else {
393 name = getTypePrefix(val->getType());
Reid Spencer25edc352006-05-31 04:43:19 +0000394 }
Reid Spencer12803f52006-05-31 17:31:38 +0000395 name += (val->hasName() ? val->getName() : utostr(uniqueNum++));
396 sanitize(name);
397 NameSet::iterator NI = UsedNames.find(name);
398 if (NI != UsedNames.end())
399 name += std::string("_") + utostr(uniqueNum++);
400 UsedNames.insert(name);
401 return ValueNames[val] = name;
Reid Spencer25edc352006-05-31 04:43:19 +0000402}
403
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000404void
Reid Spencer12803f52006-05-31 17:31:38 +0000405CppWriter::printCppName(const Value* val) {
406 printEscapedString(getCppName(val));
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000407}
408
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000409bool
Reid Spencer12803f52006-05-31 17:31:38 +0000410CppWriter::printTypeInternal(const Type* Ty) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000411 // We don't print definitions for primitive types
Chris Lattner42a75512007-01-15 02:27:26 +0000412 if (Ty->isPrimitiveType() || Ty->isInteger())
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000413 return false;
414
Reid Spencer15f7e012006-05-30 21:18:23 +0000415 // If we already defined this type, we don't need to define it again.
416 if (DefinedTypes.find(Ty) != DefinedTypes.end())
417 return false;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000418
Reid Spencer15f7e012006-05-30 21:18:23 +0000419 // Everything below needs the name for the type so get it now.
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000420 std::string typeName(getCppName(Ty));
421
422 // Search the type stack for recursion. If we find it, then generate this
423 // as an OpaqueType, but make sure not to do this multiple times because
424 // the type could appear in multiple places on the stack. Once the opaque
Reid Spencer15f7e012006-05-30 21:18:23 +0000425 // definition is issued, it must not be re-issued. Consequently we have to
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000426 // check the UnresolvedTypes list as well.
Reid Spencer12803f52006-05-31 17:31:38 +0000427 TypeList::const_iterator TI = std::find(TypeStack.begin(),TypeStack.end(),Ty);
428 if (TI != TypeStack.end()) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000429 TypeMap::const_iterator I = UnresolvedTypes.find(Ty);
430 if (I == UnresolvedTypes.end()) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000431 Out << "PATypeHolder " << typeName << "_fwd = OpaqueType::get();";
432 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000433 UnresolvedTypes[Ty] = typeName;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000434 }
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000435 return true;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000436 }
437
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000438 // We're going to print a derived type which, by definition, contains other
439 // types. So, push this one we're printing onto the type stack to assist with
440 // recursive definitions.
Reid Spencer15f7e012006-05-30 21:18:23 +0000441 TypeStack.push_back(Ty);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000442
443 // Print the type definition
444 switch (Ty->getTypeID()) {
445 case Type::FunctionTyID: {
446 const FunctionType* FT = cast<FunctionType>(Ty);
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000447 Out << "std::vector<const Type*>" << typeName << "_args;";
448 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000449 FunctionType::param_iterator PI = FT->param_begin();
450 FunctionType::param_iterator PE = FT->param_end();
451 for (; PI != PE; ++PI) {
452 const Type* argTy = static_cast<const Type*>(*PI);
Reid Spencer12803f52006-05-31 17:31:38 +0000453 bool isForward = printTypeInternal(argTy);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000454 std::string argName(getCppName(argTy));
455 Out << typeName << "_args.push_back(" << argName;
456 if (isForward)
457 Out << "_fwd";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000458 Out << ");";
459 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000460 }
Reid Spencer6abd3da2007-04-11 09:54:08 +0000461 const ParamAttrsList *PAL = FT->getParamAttrs();
462 Out << "ParamAttrsList *" << typeName << "_PAL = 0;";
Reid Spencera9297b12007-04-11 10:01:32 +0000463 nl(Out);
Reid Spencer6abd3da2007-04-11 09:54:08 +0000464 if (PAL && !PAL->empty()) {
465 Out << typeName << "_PAL = new ParamAttrsList();";
Reid Spencera9297b12007-04-11 10:01:32 +0000466 nl(Out);
Reid Spencer6abd3da2007-04-11 09:54:08 +0000467 for (unsigned i = 0; i < PAL->size(); ++i) {
468 uint16_t index = PAL->getParamIndex(i);
469 uint16_t attrs = PAL->getParamAttrs(index);
Reid Spencer07441662007-04-11 12:28:56 +0000470 Out << typeName << "_PAL->addAttributes(" << index << ", 0";
Reid Spencer6abd3da2007-04-11 09:54:08 +0000471 if (attrs & ParamAttr::SExt)
472 Out << " | ParamAttr::SExt";
473 if (attrs & ParamAttr::ZExt)
474 Out << " | ParamAttr::ZExt";
475 if (attrs & ParamAttr::StructRet)
476 Out << " | ParamAttr::StructRet";
477 if (attrs & ParamAttr::InReg)
478 Out << " | ParamAttr::InReg";
479 if (attrs & ParamAttr::NoReturn)
480 Out << " | ParamAttr::NoReturn";
481 if (attrs & ParamAttr::NoUnwind)
482 Out << " | ParamAttr::NoUnwind";
483 Out << ");";
Reid Spencera9297b12007-04-11 10:01:32 +0000484 nl(Out);
Reid Spencer6abd3da2007-04-11 09:54:08 +0000485 }
486 }
Reid Spencer12803f52006-05-31 17:31:38 +0000487 bool isForward = printTypeInternal(FT->getReturnType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000488 std::string retTypeName(getCppName(FT->getReturnType()));
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000489 Out << "FunctionType* " << typeName << " = FunctionType::get(";
490 in(); nl(Out) << "/*Result=*/" << retTypeName;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000491 if (isForward)
492 Out << "_fwd";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000493 Out << ",";
494 nl(Out) << "/*Params=*/" << typeName << "_args,";
Reid Spencer07441662007-04-11 12:28:56 +0000495 nl(Out) << "/*isVarArg=*/" << (FT->isVarArg() ? "true," : "false,") ;
Reid Spencera9297b12007-04-11 10:01:32 +0000496 nl(Out) << "/*ParamAttrs=*/" << typeName << "_PAL" << ");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000497 out();
498 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000499 break;
500 }
501 case Type::StructTyID: {
502 const StructType* ST = cast<StructType>(Ty);
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000503 Out << "std::vector<const Type*>" << typeName << "_fields;";
504 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000505 StructType::element_iterator EI = ST->element_begin();
506 StructType::element_iterator EE = ST->element_end();
507 for (; EI != EE; ++EI) {
508 const Type* fieldTy = static_cast<const Type*>(*EI);
Reid Spencer12803f52006-05-31 17:31:38 +0000509 bool isForward = printTypeInternal(fieldTy);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000510 std::string fieldName(getCppName(fieldTy));
511 Out << typeName << "_fields.push_back(" << fieldName;
512 if (isForward)
513 Out << "_fwd";
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000514 Out << ");";
515 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000516 }
517 Out << "StructType* " << typeName << " = StructType::get("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000518 << typeName << "_fields);";
519 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000520 break;
521 }
522 case Type::ArrayTyID: {
523 const ArrayType* AT = cast<ArrayType>(Ty);
524 const Type* ET = AT->getElementType();
Reid Spencer12803f52006-05-31 17:31:38 +0000525 bool isForward = printTypeInternal(ET);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000526 std::string elemName(getCppName(ET));
527 Out << "ArrayType* " << typeName << " = ArrayType::get("
528 << elemName << (isForward ? "_fwd" : "")
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000529 << ", " << utostr(AT->getNumElements()) << ");";
530 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000531 break;
532 }
533 case Type::PointerTyID: {
534 const PointerType* PT = cast<PointerType>(Ty);
535 const Type* ET = PT->getElementType();
Reid Spencer12803f52006-05-31 17:31:38 +0000536 bool isForward = printTypeInternal(ET);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000537 std::string elemName(getCppName(ET));
538 Out << "PointerType* " << typeName << " = PointerType::get("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000539 << elemName << (isForward ? "_fwd" : "") << ");";
540 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000541 break;
542 }
Reid Spencer9d6565a2007-02-15 02:26:10 +0000543 case Type::VectorTyID: {
544 const VectorType* PT = cast<VectorType>(Ty);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000545 const Type* ET = PT->getElementType();
Reid Spencer12803f52006-05-31 17:31:38 +0000546 bool isForward = printTypeInternal(ET);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000547 std::string elemName(getCppName(ET));
Reid Spencer9d6565a2007-02-15 02:26:10 +0000548 Out << "VectorType* " << typeName << " = VectorType::get("
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000549 << elemName << (isForward ? "_fwd" : "")
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000550 << ", " << utostr(PT->getNumElements()) << ");";
551 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000552 break;
553 }
554 case Type::OpaqueTyID: {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000555 Out << "OpaqueType* " << typeName << " = OpaqueType::get();";
556 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000557 break;
558 }
559 default:
Reid Spencer12803f52006-05-31 17:31:38 +0000560 error("Invalid TypeID");
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000561 }
562
Reid Spencer74e032a2006-05-29 02:58:15 +0000563 // If the type had a name, make sure we recreate it.
564 const std::string* progTypeName =
Reid Spencer78d033e2007-01-06 07:24:44 +0000565 findTypeName(TheModule->getTypeSymbolTable(),Ty);
Reid Spencer07441662007-04-11 12:28:56 +0000566 if (progTypeName) {
Reid Spencer74e032a2006-05-29 02:58:15 +0000567 Out << "mod->addTypeName(\"" << *progTypeName << "\", "
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000568 << typeName << ");";
569 nl(Out);
Reid Spencer07441662007-04-11 12:28:56 +0000570 }
Reid Spencer74e032a2006-05-29 02:58:15 +0000571
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000572 // Pop us off the type stack
573 TypeStack.pop_back();
Reid Spencer15f7e012006-05-30 21:18:23 +0000574
575 // Indicate that this type is now defined.
576 DefinedTypes.insert(Ty);
577
578 // Early resolve as many unresolved types as possible. Search the unresolved
579 // types map for the type we just printed. Now that its definition is complete
580 // we can resolve any previous references to it. This prevents a cascade of
581 // unresolved types.
582 TypeMap::iterator I = UnresolvedTypes.find(Ty);
583 if (I != UnresolvedTypes.end()) {
584 Out << "cast<OpaqueType>(" << I->second
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000585 << "_fwd.get())->refineAbstractTypeTo(" << I->second << ");";
586 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +0000587 Out << I->second << " = cast<";
588 switch (Ty->getTypeID()) {
589 case Type::FunctionTyID: Out << "FunctionType"; break;
590 case Type::ArrayTyID: Out << "ArrayType"; break;
591 case Type::StructTyID: Out << "StructType"; break;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000592 case Type::VectorTyID: Out << "VectorType"; break;
Reid Spencer15f7e012006-05-30 21:18:23 +0000593 case Type::PointerTyID: Out << "PointerType"; break;
594 case Type::OpaqueTyID: Out << "OpaqueType"; break;
595 default: Out << "NoSuchDerivedType"; break;
596 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000597 Out << ">(" << I->second << "_fwd.get());";
598 nl(Out); nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +0000599 UnresolvedTypes.erase(I);
600 }
601
602 // Finally, separate the type definition from other with a newline.
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000603 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000604
605 // We weren't a recursive type
606 return false;
607}
608
Reid Spencer12803f52006-05-31 17:31:38 +0000609// Prints a type definition. Returns true if it could not resolve all the types
610// in the definition but had to use a forward reference.
611void
612CppWriter::printType(const Type* Ty) {
613 assert(TypeStack.empty());
614 TypeStack.clear();
615 printTypeInternal(Ty);
616 assert(TypeStack.empty());
617}
618
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000619void
620CppWriter::printTypes(const Module* M) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000621
622 // Walk the symbol table and print out all its types
Reid Spencer78d033e2007-01-06 07:24:44 +0000623 const TypeSymbolTable& symtab = M->getTypeSymbolTable();
624 for (TypeSymbolTable::const_iterator TI = symtab.begin(), TE = symtab.end();
625 TI != TE; ++TI) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000626
627 // For primitive types and types already defined, just add a name
628 TypeMap::const_iterator TNI = TypeNames.find(TI->second);
Chris Lattner42a75512007-01-15 02:27:26 +0000629 if (TI->second->isInteger() || TI->second->isPrimitiveType() ||
Reid Spencera54b7cb2007-01-12 07:05:14 +0000630 TNI != TypeNames.end()) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000631 Out << "mod->addTypeName(\"";
632 printEscapedString(TI->first);
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000633 Out << "\", " << getCppName(TI->second) << ");";
634 nl(Out);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000635 // For everything else, define the type
636 } else {
Reid Spencer12803f52006-05-31 17:31:38 +0000637 printType(TI->second);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000638 }
639 }
640
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000641 // Add all of the global variables to the value table...
642 for (Module::const_global_iterator I = TheModule->global_begin(),
643 E = TheModule->global_end(); I != E; ++I) {
644 if (I->hasInitializer())
Reid Spencer12803f52006-05-31 17:31:38 +0000645 printType(I->getInitializer()->getType());
646 printType(I->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000647 }
648
649 // Add all the functions to the table
650 for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
651 FI != FE; ++FI) {
Reid Spencer12803f52006-05-31 17:31:38 +0000652 printType(FI->getReturnType());
653 printType(FI->getFunctionType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000654 // Add all the function arguments
655 for(Function::const_arg_iterator AI = FI->arg_begin(),
656 AE = FI->arg_end(); AI != AE; ++AI) {
Reid Spencer12803f52006-05-31 17:31:38 +0000657 printType(AI->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000658 }
659
660 // Add all of the basic blocks and instructions
661 for (Function::const_iterator BB = FI->begin(),
662 E = FI->end(); BB != E; ++BB) {
Reid Spencer12803f52006-05-31 17:31:38 +0000663 printType(BB->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000664 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
665 ++I) {
Reid Spencer12803f52006-05-31 17:31:38 +0000666 printType(I->getType());
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000667 for (unsigned i = 0; i < I->getNumOperands(); ++i)
Reid Spencer12803f52006-05-31 17:31:38 +0000668 printType(I->getOperand(i)->getType());
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000669 }
670 }
671 }
672}
673
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000674
Reid Spencere0d133f2006-05-29 18:08:06 +0000675// printConstant - Print out a constant pool entry...
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000676void CppWriter::printConstant(const Constant *CV) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000677 // First, if the constant is actually a GlobalValue (variable or function) or
678 // its already in the constant list then we've printed it already and we can
679 // just return.
680 if (isa<GlobalValue>(CV) || ValueNames.find(CV) != ValueNames.end())
Reid Spencere0d133f2006-05-29 18:08:06 +0000681 return;
682
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000683 std::string constName(getCppName(CV));
684 std::string typeName(getCppName(CV->getType()));
685 if (CV->isNullValue()) {
686 Out << "Constant* " << constName << " = Constant::getNullValue("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000687 << typeName << ");";
688 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000689 return;
690 }
Reid Spencere0d133f2006-05-29 18:08:06 +0000691 if (isa<GlobalValue>(CV)) {
692 // Skip variables and functions, we emit them elsewhere
693 return;
694 }
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000695 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Chris Lattnerf6e7bb42007-01-12 18:37:29 +0000696 Out << "ConstantInt* " << constName << " = ConstantInt::get("
Reid Spencer07441662007-04-11 12:28:56 +0000697 << "APInt(cast<IntegerType>(" << typeName << ")->getBitWidth(),"
Reid Spencer70297252007-03-01 20:55:43 +0000698 << " \"" << CI->getValue().toStringSigned(10) << "\", 10));";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000699 } else if (isa<ConstantAggregateZero>(CV)) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000700 Out << "ConstantAggregateZero* " << constName
701 << " = ConstantAggregateZero::get(" << typeName << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000702 } else if (isa<ConstantPointerNull>(CV)) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000703 Out << "ConstantPointerNull* " << constName
704 << " = ConstanPointerNull::get(" << typeName << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000705 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Reid Spencerf977e7b2006-06-01 23:43:47 +0000706 Out << "ConstantFP* " << constName << " = ";
Reid Spencer12803f52006-05-31 17:31:38 +0000707 printCFP(CFP);
Reid Spencerf977e7b2006-06-01 23:43:47 +0000708 Out << ";";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000709 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Reid Spencer71d2ec92006-12-31 06:02:26 +0000710 if (CA->isString() && CA->getType()->getElementType() == Type::Int8Ty) {
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000711 Out << "Constant* " << constName << " = ConstantArray::get(\"";
Reid Spencere0d133f2006-05-29 18:08:06 +0000712 printEscapedString(CA->getAsString());
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000713 // Determine if we want null termination or not.
714 if (CA->getType()->getNumElements() <= CA->getAsString().length())
Reid Spencer15f7e012006-05-30 21:18:23 +0000715 Out << "\", false";// No null terminator
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000716 else
Reid Spencer15f7e012006-05-30 21:18:23 +0000717 Out << "\", true"; // Indicate that the null terminator should be added.
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000718 Out << ");";
719 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000720 Out << "std::vector<Constant*> " << constName << "_elems;";
721 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000722 unsigned N = CA->getNumOperands();
723 for (unsigned i = 0; i < N; ++i) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000724 printConstant(CA->getOperand(i)); // recurse to print operands
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000725 Out << constName << "_elems.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000726 << getCppName(CA->getOperand(i)) << ");";
727 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000728 }
729 Out << "Constant* " << constName << " = ConstantArray::get("
730 << typeName << ", " << constName << "_elems);";
731 }
732 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000733 Out << "std::vector<Constant*> " << constName << "_fields;";
734 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000735 unsigned N = CS->getNumOperands();
736 for (unsigned i = 0; i < N; i++) {
737 printConstant(CS->getOperand(i));
738 Out << constName << "_fields.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000739 << getCppName(CS->getOperand(i)) << ");";
740 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000741 }
742 Out << "Constant* " << constName << " = ConstantStruct::get("
743 << typeName << ", " << constName << "_fields);";
Reid Spencer9d6565a2007-02-15 02:26:10 +0000744 } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000745 Out << "std::vector<Constant*> " << constName << "_elems;";
746 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000747 unsigned N = CP->getNumOperands();
748 for (unsigned i = 0; i < N; ++i) {
749 printConstant(CP->getOperand(i));
750 Out << constName << "_elems.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000751 << getCppName(CP->getOperand(i)) << ");";
752 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000753 }
Reid Spencer9d6565a2007-02-15 02:26:10 +0000754 Out << "Constant* " << constName << " = ConstantVector::get("
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000755 << typeName << ", " << constName << "_elems);";
756 } else if (isa<UndefValue>(CV)) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000757 Out << "UndefValue* " << constName << " = UndefValue::get("
Reid Spencere0d133f2006-05-29 18:08:06 +0000758 << typeName << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000759 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencere0d133f2006-05-29 18:08:06 +0000760 if (CE->getOpcode() == Instruction::GetElementPtr) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000761 Out << "std::vector<Constant*> " << constName << "_indices;";
762 nl(Out);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000763 printConstant(CE->getOperand(0));
Reid Spencere0d133f2006-05-29 18:08:06 +0000764 for (unsigned i = 1; i < CE->getNumOperands(); ++i ) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000765 printConstant(CE->getOperand(i));
Reid Spencere0d133f2006-05-29 18:08:06 +0000766 Out << constName << "_indices.push_back("
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000767 << getCppName(CE->getOperand(i)) << ");";
768 nl(Out);
Reid Spencere0d133f2006-05-29 18:08:06 +0000769 }
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000770 Out << "Constant* " << constName
771 << " = ConstantExpr::getGetElementPtr("
772 << getCppName(CE->getOperand(0)) << ", "
Reid Spencer07441662007-04-11 12:28:56 +0000773 << "&" << constName << "_indices[0], " << CE->getNumOperands() - 1
774 << " );";
Reid Spencer3da59db2006-11-27 01:05:10 +0000775 } else if (CE->isCast()) {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000776 printConstant(CE->getOperand(0));
Reid Spencere0d133f2006-05-29 18:08:06 +0000777 Out << "Constant* " << constName << " = ConstantExpr::getCast(";
Reid Spencerb0e9f722006-12-12 01:31:37 +0000778 switch (CE->getOpcode()) {
779 default: assert(0 && "Invalid cast opcode");
780 case Instruction::Trunc: Out << "Instruction::Trunc"; break;
781 case Instruction::ZExt: Out << "Instruction::ZExt"; break;
782 case Instruction::SExt: Out << "Instruction::SExt"; break;
783 case Instruction::FPTrunc: Out << "Instruction::FPTrunc"; break;
784 case Instruction::FPExt: Out << "Instruction::FPExt"; break;
785 case Instruction::FPToUI: Out << "Instruction::FPToUI"; break;
786 case Instruction::FPToSI: Out << "Instruction::FPToSI"; break;
787 case Instruction::UIToFP: Out << "Instruction::UIToFP"; break;
788 case Instruction::SIToFP: Out << "Instruction::SIToFP"; break;
789 case Instruction::PtrToInt: Out << "Instruction::PtrToInt"; break;
790 case Instruction::IntToPtr: Out << "Instruction::IntToPtr"; break;
791 case Instruction::BitCast: Out << "Instruction::BitCast"; break;
792 }
793 Out << ", " << getCppName(CE->getOperand(0)) << ", "
794 << getCppName(CE->getType()) << ");";
Reid Spencere0d133f2006-05-29 18:08:06 +0000795 } else {
Reid Spencer1a2a0cc2006-05-30 10:21:41 +0000796 unsigned N = CE->getNumOperands();
797 for (unsigned i = 0; i < N; ++i ) {
798 printConstant(CE->getOperand(i));
799 }
Reid Spencere0d133f2006-05-29 18:08:06 +0000800 Out << "Constant* " << constName << " = ConstantExpr::";
801 switch (CE->getOpcode()) {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000802 case Instruction::Add: Out << "getAdd("; break;
803 case Instruction::Sub: Out << "getSub("; break;
804 case Instruction::Mul: Out << "getMul("; break;
805 case Instruction::UDiv: Out << "getUDiv("; break;
806 case Instruction::SDiv: Out << "getSDiv("; break;
807 case Instruction::FDiv: Out << "getFDiv("; break;
808 case Instruction::URem: Out << "getURem("; break;
809 case Instruction::SRem: Out << "getSRem("; break;
810 case Instruction::FRem: Out << "getFRem("; break;
811 case Instruction::And: Out << "getAnd("; break;
812 case Instruction::Or: Out << "getOr("; break;
813 case Instruction::Xor: Out << "getXor("; break;
814 case Instruction::ICmp:
815 Out << "getICmp(ICmpInst::ICMP_";
816 switch (CE->getPredicate()) {
817 case ICmpInst::ICMP_EQ: Out << "EQ"; break;
818 case ICmpInst::ICMP_NE: Out << "NE"; break;
819 case ICmpInst::ICMP_SLT: Out << "SLT"; break;
820 case ICmpInst::ICMP_ULT: Out << "ULT"; break;
821 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
822 case ICmpInst::ICMP_UGT: Out << "UGT"; break;
823 case ICmpInst::ICMP_SLE: Out << "SLE"; break;
824 case ICmpInst::ICMP_ULE: Out << "ULE"; break;
825 case ICmpInst::ICMP_SGE: Out << "SGE"; break;
826 case ICmpInst::ICMP_UGE: Out << "UGE"; break;
827 default: error("Invalid ICmp Predicate");
828 }
829 break;
830 case Instruction::FCmp:
831 Out << "getFCmp(FCmpInst::FCMP_";
832 switch (CE->getPredicate()) {
833 case FCmpInst::FCMP_FALSE: Out << "FALSE"; break;
834 case FCmpInst::FCMP_ORD: Out << "ORD"; break;
835 case FCmpInst::FCMP_UNO: Out << "UNO"; break;
836 case FCmpInst::FCMP_OEQ: Out << "OEQ"; break;
837 case FCmpInst::FCMP_UEQ: Out << "UEQ"; break;
838 case FCmpInst::FCMP_ONE: Out << "ONE"; break;
839 case FCmpInst::FCMP_UNE: Out << "UNE"; break;
840 case FCmpInst::FCMP_OLT: Out << "OLT"; break;
841 case FCmpInst::FCMP_ULT: Out << "ULT"; break;
842 case FCmpInst::FCMP_OGT: Out << "OGT"; break;
843 case FCmpInst::FCMP_UGT: Out << "UGT"; break;
844 case FCmpInst::FCMP_OLE: Out << "OLE"; break;
845 case FCmpInst::FCMP_ULE: Out << "ULE"; break;
846 case FCmpInst::FCMP_OGE: Out << "OGE"; break;
847 case FCmpInst::FCMP_UGE: Out << "UGE"; break;
848 case FCmpInst::FCMP_TRUE: Out << "TRUE"; break;
849 default: error("Invalid FCmp Predicate");
850 }
851 break;
852 case Instruction::Shl: Out << "getShl("; break;
853 case Instruction::LShr: Out << "getLShr("; break;
854 case Instruction::AShr: Out << "getAShr("; break;
855 case Instruction::Select: Out << "getSelect("; break;
856 case Instruction::ExtractElement: Out << "getExtractElement("; break;
857 case Instruction::InsertElement: Out << "getInsertElement("; break;
858 case Instruction::ShuffleVector: Out << "getShuffleVector("; break;
Reid Spencere0d133f2006-05-29 18:08:06 +0000859 default:
Reid Spencer12803f52006-05-31 17:31:38 +0000860 error("Invalid constant expression");
Reid Spencere0d133f2006-05-29 18:08:06 +0000861 break;
862 }
863 Out << getCppName(CE->getOperand(0));
864 for (unsigned i = 1; i < CE->getNumOperands(); ++i)
865 Out << ", " << getCppName(CE->getOperand(i));
866 Out << ");";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000867 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000868 } else {
Reid Spencer12803f52006-05-31 17:31:38 +0000869 error("Bad Constant");
Reid Spencere0d133f2006-05-29 18:08:06 +0000870 Out << "Constant* " << constName << " = 0; ";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000871 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000872 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000873}
874
Reid Spencer12803f52006-05-31 17:31:38 +0000875void
876CppWriter::printConstants(const Module* M) {
877 // Traverse all the global variables looking for constant initializers
878 for (Module::const_global_iterator I = TheModule->global_begin(),
879 E = TheModule->global_end(); I != E; ++I)
880 if (I->hasInitializer())
881 printConstant(I->getInitializer());
882
883 // Traverse the LLVM functions looking for constants
884 for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
885 FI != FE; ++FI) {
886 // Add all of the basic blocks and instructions
887 for (Function::const_iterator BB = FI->begin(),
888 E = FI->end(); BB != E; ++BB) {
889 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
890 ++I) {
891 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
892 if (Constant* C = dyn_cast<Constant>(I->getOperand(i))) {
893 printConstant(C);
894 }
895 }
896 }
897 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000898 }
Reid Spencer66c87342006-05-30 03:43:49 +0000899}
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000900
Reid Spencer12803f52006-05-31 17:31:38 +0000901void CppWriter::printVariableUses(const GlobalVariable *GV) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000902 nl(Out) << "// Type Definitions";
903 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000904 printType(GV->getType());
905 if (GV->hasInitializer()) {
906 Constant* Init = GV->getInitializer();
907 printType(Init->getType());
908 if (Function* F = dyn_cast<Function>(Init)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000909 nl(Out)<< "/ Function Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000910 printFunctionHead(F);
911 } else if (GlobalVariable* gv = dyn_cast<GlobalVariable>(Init)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000912 nl(Out) << "// Global Variable Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000913 printVariableHead(gv);
914 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000915 nl(Out) << "// Constant Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000916 printConstant(gv);
917 }
918 if (GlobalVariable* gv = dyn_cast<GlobalVariable>(Init)) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000919 nl(Out) << "// Global Variable Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000920 printVariableBody(gv);
Reid Spencere0d133f2006-05-29 18:08:06 +0000921 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000922 }
Reid Spencer12803f52006-05-31 17:31:38 +0000923}
Reid Spencer15f7e012006-05-30 21:18:23 +0000924
Reid Spencer12803f52006-05-31 17:31:38 +0000925void CppWriter::printVariableHead(const GlobalVariable *GV) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000926 nl(Out) << "GlobalVariable* " << getCppName(GV);
Reid Spencerf977e7b2006-06-01 23:43:47 +0000927 if (is_inline) {
928 Out << " = mod->getGlobalVariable(";
929 printEscapedString(GV->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000930 Out << ", " << getCppName(GV->getType()->getElementType()) << ",true)";
931 nl(Out) << "if (!" << getCppName(GV) << ") {";
932 in(); nl(Out) << getCppName(GV);
Reid Spencerf977e7b2006-06-01 23:43:47 +0000933 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000934 Out << " = new GlobalVariable(";
935 nl(Out) << "/*Type=*/";
Reid Spencer12803f52006-05-31 17:31:38 +0000936 printCppName(GV->getType()->getElementType());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000937 Out << ",";
938 nl(Out) << "/*isConstant=*/" << (GV->isConstant()?"true":"false");
939 Out << ",";
940 nl(Out) << "/*Linkage=*/";
Reid Spencer12803f52006-05-31 17:31:38 +0000941 printLinkageType(GV->getLinkage());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000942 Out << ",";
943 nl(Out) << "/*Initializer=*/0, ";
Reid Spencer12803f52006-05-31 17:31:38 +0000944 if (GV->hasInitializer()) {
945 Out << "// has initializer, specified below";
Reid Spencer15f7e012006-05-30 21:18:23 +0000946 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000947 nl(Out) << "/*Name=*/\"";
Reid Spencer12803f52006-05-31 17:31:38 +0000948 printEscapedString(GV->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000949 Out << "\",";
950 nl(Out) << "mod);";
951 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000952
953 if (GV->hasSection()) {
954 printCppName(GV);
955 Out << "->setSection(\"";
956 printEscapedString(GV->getSection());
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000957 Out << "\");";
958 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000959 }
960 if (GV->getAlignment()) {
961 printCppName(GV);
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000962 Out << "->setAlignment(" << utostr(GV->getAlignment()) << ");";
963 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000964 };
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000965 if (is_inline) {
966 out(); Out << "}"; nl(Out);
967 }
Reid Spencer12803f52006-05-31 17:31:38 +0000968}
969
970void
971CppWriter::printVariableBody(const GlobalVariable *GV) {
972 if (GV->hasInitializer()) {
973 printCppName(GV);
974 Out << "->setInitializer(";
975 //if (!isa<GlobalValue(GV->getInitializer()))
976 //else
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000977 Out << getCppName(GV->getInitializer()) << ");";
978 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +0000979 }
980}
981
982std::string
983CppWriter::getOpName(Value* V) {
984 if (!isa<Instruction>(V) || DefinedValues.find(V) != DefinedValues.end())
985 return getCppName(V);
986
987 // See if its alread in the map of forward references, if so just return the
988 // name we already set up for it
989 ForwardRefMap::const_iterator I = ForwardRefs.find(V);
990 if (I != ForwardRefs.end())
991 return I->second;
992
993 // This is a new forward reference. Generate a unique name for it
994 std::string result(std::string("fwdref_") + utostr(uniqueNum++));
995
996 // Yes, this is a hack. An Argument is the smallest instantiable value that
997 // we can make as a placeholder for the real value. We'll replace these
998 // Argument instances later.
Reid Spencer70bbf9a2006-08-14 22:35:15 +0000999 Out << "Argument* " << result << " = new Argument("
1000 << getCppName(V->getType()) << ");";
1001 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001002 ForwardRefs[V] = result;
1003 return result;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001004}
1005
Reid Spencere0d133f2006-05-29 18:08:06 +00001006// printInstruction - This member is called for each Instruction in a function.
1007void
Reid Spencer12803f52006-05-31 17:31:38 +00001008CppWriter::printInstruction(const Instruction *I, const std::string& bbname) {
Reid Spencere0d133f2006-05-29 18:08:06 +00001009 std::string iName(getCppName(I));
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001010
Reid Spencer15f7e012006-05-30 21:18:23 +00001011 // Before we emit this instruction, we need to take care of generating any
1012 // forward references. So, we get the names of all the operands in advance
1013 std::string* opNames = new std::string[I->getNumOperands()];
1014 for (unsigned i = 0; i < I->getNumOperands(); i++) {
1015 opNames[i] = getOpName(I->getOperand(i));
1016 }
1017
Reid Spencere0d133f2006-05-29 18:08:06 +00001018 switch (I->getOpcode()) {
1019 case Instruction::Ret: {
1020 const ReturnInst* ret = cast<ReturnInst>(I);
Reid Spencer07441662007-04-11 12:28:56 +00001021 Out << "new ReturnInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001022 << (ret->getReturnValue() ? opNames[0] + ", " : "") << bbname << ");";
Reid Spencere0d133f2006-05-29 18:08:06 +00001023 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001024 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001025 case Instruction::Br: {
1026 const BranchInst* br = cast<BranchInst>(I);
Reid Spencer07441662007-04-11 12:28:56 +00001027 Out << "new BranchInst(" ;
Reid Spencere0d133f2006-05-29 18:08:06 +00001028 if (br->getNumOperands() == 3 ) {
Reid Spencer15f7e012006-05-30 21:18:23 +00001029 Out << opNames[0] << ", "
1030 << opNames[1] << ", "
1031 << opNames[2] << ", ";
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001032
Reid Spencere0d133f2006-05-29 18:08:06 +00001033 } else if (br->getNumOperands() == 1) {
Reid Spencer15f7e012006-05-30 21:18:23 +00001034 Out << opNames[0] << ", ";
Reid Spencere0d133f2006-05-29 18:08:06 +00001035 } else {
Reid Spencer12803f52006-05-31 17:31:38 +00001036 error("Branch with 2 operands?");
Reid Spencere0d133f2006-05-29 18:08:06 +00001037 }
1038 Out << bbname << ");";
1039 break;
1040 }
Reid Spencer66c87342006-05-30 03:43:49 +00001041 case Instruction::Switch: {
1042 const SwitchInst* sw = cast<SwitchInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001043 Out << "SwitchInst* " << iName << " = new SwitchInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001044 << opNames[0] << ", "
1045 << opNames[1] << ", "
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001046 << sw->getNumCases() << ", " << bbname << ");";
1047 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +00001048 for (unsigned i = 2; i < sw->getNumOperands(); i += 2 ) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001049 Out << iName << "->addCase("
Reid Spencer15f7e012006-05-30 21:18:23 +00001050 << opNames[i] << ", "
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001051 << opNames[i+1] << ");";
1052 nl(Out);
Reid Spencer66c87342006-05-30 03:43:49 +00001053 }
1054 break;
1055 }
1056 case Instruction::Invoke: {
1057 const InvokeInst* inv = cast<InvokeInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001058 Out << "std::vector<Value*> " << iName << "_params;";
1059 nl(Out);
1060 for (unsigned i = 3; i < inv->getNumOperands(); ++i) {
1061 Out << iName << "_params.push_back("
1062 << opNames[i] << ");";
1063 nl(Out);
1064 }
Reid Spencer07441662007-04-11 12:28:56 +00001065 Out << "InvokeInst *" << iName << " = new InvokeInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001066 << opNames[0] << ", "
1067 << opNames[1] << ", "
1068 << opNames[2] << ", "
Reid Spencer07441662007-04-11 12:28:56 +00001069 << "&" << iName << "_params[0], " << inv->getNumOperands() - 3
1070 << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001071 printEscapedString(inv->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001072 Out << "\", " << bbname << ");";
1073 nl(Out) << iName << "->setCallingConv(";
Reid Spencer66c87342006-05-30 03:43:49 +00001074 printCallingConv(inv->getCallingConv());
1075 Out << ");";
1076 break;
1077 }
1078 case Instruction::Unwind: {
Reid Spencer07441662007-04-11 12:28:56 +00001079 Out << "new UnwindInst("
Reid Spencer66c87342006-05-30 03:43:49 +00001080 << bbname << ");";
1081 break;
1082 }
1083 case Instruction::Unreachable:{
Reid Spencer07441662007-04-11 12:28:56 +00001084 Out << "new UnreachableInst("
Reid Spencer66c87342006-05-30 03:43:49 +00001085 << bbname << ");";
1086 break;
1087 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001088 case Instruction::Add:
1089 case Instruction::Sub:
1090 case Instruction::Mul:
Reid Spencer1628cec2006-10-26 06:15:43 +00001091 case Instruction::UDiv:
1092 case Instruction::SDiv:
1093 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +00001094 case Instruction::URem:
1095 case Instruction::SRem:
1096 case Instruction::FRem:
Reid Spencere0d133f2006-05-29 18:08:06 +00001097 case Instruction::And:
1098 case Instruction::Or:
1099 case Instruction::Xor:
Reid Spencer66c87342006-05-30 03:43:49 +00001100 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +00001101 case Instruction::LShr:
1102 case Instruction::AShr:{
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001103 Out << "BinaryOperator* " << iName << " = BinaryOperator::create(";
Reid Spencer66c87342006-05-30 03:43:49 +00001104 switch (I->getOpcode()) {
1105 case Instruction::Add: Out << "Instruction::Add"; break;
1106 case Instruction::Sub: Out << "Instruction::Sub"; break;
1107 case Instruction::Mul: Out << "Instruction::Mul"; break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001108 case Instruction::UDiv:Out << "Instruction::UDiv"; break;
1109 case Instruction::SDiv:Out << "Instruction::SDiv"; break;
1110 case Instruction::FDiv:Out << "Instruction::FDiv"; break;
Reid Spencer0a783f72006-11-02 01:53:59 +00001111 case Instruction::URem:Out << "Instruction::URem"; break;
1112 case Instruction::SRem:Out << "Instruction::SRem"; break;
1113 case Instruction::FRem:Out << "Instruction::FRem"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001114 case Instruction::And: Out << "Instruction::And"; break;
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001115 case Instruction::Or: Out << "Instruction::Or"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001116 case Instruction::Xor: Out << "Instruction::Xor"; break;
1117 case Instruction::Shl: Out << "Instruction::Shl"; break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001118 case Instruction::LShr:Out << "Instruction::LShr"; break;
1119 case Instruction::AShr:Out << "Instruction::AShr"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001120 default: Out << "Instruction::BadOpCode"; break;
1121 }
Reid Spencer15f7e012006-05-30 21:18:23 +00001122 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001123 printEscapedString(I->getName());
1124 Out << "\", " << bbname << ");";
1125 break;
1126 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00001127 case Instruction::FCmp: {
1128 Out << "FCmpInst* " << iName << " = new FCmpInst(";
1129 switch (cast<FCmpInst>(I)->getPredicate()) {
1130 case FCmpInst::FCMP_FALSE: Out << "FCmpInst::FCMP_FALSE"; break;
1131 case FCmpInst::FCMP_OEQ : Out << "FCmpInst::FCMP_OEQ"; break;
1132 case FCmpInst::FCMP_OGT : Out << "FCmpInst::FCMP_OGT"; break;
1133 case FCmpInst::FCMP_OGE : Out << "FCmpInst::FCMP_OGE"; break;
1134 case FCmpInst::FCMP_OLT : Out << "FCmpInst::FCMP_OLT"; break;
1135 case FCmpInst::FCMP_OLE : Out << "FCmpInst::FCMP_OLE"; break;
1136 case FCmpInst::FCMP_ONE : Out << "FCmpInst::FCMP_ONE"; break;
1137 case FCmpInst::FCMP_ORD : Out << "FCmpInst::FCMP_ORD"; break;
1138 case FCmpInst::FCMP_UNO : Out << "FCmpInst::FCMP_UNO"; break;
1139 case FCmpInst::FCMP_UEQ : Out << "FCmpInst::FCMP_UEQ"; break;
1140 case FCmpInst::FCMP_UGT : Out << "FCmpInst::FCMP_UGT"; break;
1141 case FCmpInst::FCMP_UGE : Out << "FCmpInst::FCMP_UGE"; break;
1142 case FCmpInst::FCMP_ULT : Out << "FCmpInst::FCMP_ULT"; break;
1143 case FCmpInst::FCMP_ULE : Out << "FCmpInst::FCMP_ULE"; break;
1144 case FCmpInst::FCMP_UNE : Out << "FCmpInst::FCMP_UNE"; break;
1145 case FCmpInst::FCMP_TRUE : Out << "FCmpInst::FCMP_TRUE"; break;
1146 default: Out << "FCmpInst::BAD_ICMP_PREDICATE"; break;
1147 }
1148 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1149 printEscapedString(I->getName());
1150 Out << "\", " << bbname << ");";
1151 break;
1152 }
1153 case Instruction::ICmp: {
1154 Out << "ICmpInst* " << iName << " = new ICmpInst(";
1155 switch (cast<ICmpInst>(I)->getPredicate()) {
1156 case ICmpInst::ICMP_EQ: Out << "ICmpInst::ICMP_EQ"; break;
1157 case ICmpInst::ICMP_NE: Out << "ICmpInst::ICMP_NE"; break;
1158 case ICmpInst::ICMP_ULE: Out << "ICmpInst::ICMP_ULE"; break;
1159 case ICmpInst::ICMP_SLE: Out << "ICmpInst::ICMP_SLE"; break;
1160 case ICmpInst::ICMP_UGE: Out << "ICmpInst::ICMP_UGE"; break;
1161 case ICmpInst::ICMP_SGE: Out << "ICmpInst::ICMP_SGE"; break;
1162 case ICmpInst::ICMP_ULT: Out << "ICmpInst::ICMP_ULT"; break;
1163 case ICmpInst::ICMP_SLT: Out << "ICmpInst::ICMP_SLT"; break;
1164 case ICmpInst::ICMP_UGT: Out << "ICmpInst::ICMP_UGT"; break;
1165 case ICmpInst::ICMP_SGT: Out << "ICmpInst::ICMP_SGT"; break;
1166 default: Out << "ICmpInst::BAD_ICMP_PREDICATE"; break;
Reid Spencer66c87342006-05-30 03:43:49 +00001167 }
Reid Spencer15f7e012006-05-30 21:18:23 +00001168 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001169 printEscapedString(I->getName());
1170 Out << "\", " << bbname << ");";
1171 break;
1172 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001173 case Instruction::Malloc: {
1174 const MallocInst* mallocI = cast<MallocInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001175 Out << "MallocInst* " << iName << " = new MallocInst("
Reid Spencere0d133f2006-05-29 18:08:06 +00001176 << getCppName(mallocI->getAllocatedType()) << ", ";
1177 if (mallocI->isArrayAllocation())
Reid Spencer15f7e012006-05-30 21:18:23 +00001178 Out << opNames[0] << ", " ;
Reid Spencere0d133f2006-05-29 18:08:06 +00001179 Out << "\"";
1180 printEscapedString(mallocI->getName());
1181 Out << "\", " << bbname << ");";
1182 if (mallocI->getAlignment())
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001183 nl(Out) << iName << "->setAlignment("
Reid Spencere0d133f2006-05-29 18:08:06 +00001184 << mallocI->getAlignment() << ");";
1185 break;
1186 }
Reid Spencer66c87342006-05-30 03:43:49 +00001187 case Instruction::Free: {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001188 Out << "FreeInst* " << iName << " = new FreeInst("
Reid Spencer66c87342006-05-30 03:43:49 +00001189 << getCppName(I->getOperand(0)) << ", " << bbname << ");";
1190 break;
1191 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001192 case Instruction::Alloca: {
1193 const AllocaInst* allocaI = cast<AllocaInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001194 Out << "AllocaInst* " << iName << " = new AllocaInst("
Reid Spencere0d133f2006-05-29 18:08:06 +00001195 << getCppName(allocaI->getAllocatedType()) << ", ";
1196 if (allocaI->isArrayAllocation())
Reid Spencer15f7e012006-05-30 21:18:23 +00001197 Out << opNames[0] << ", ";
Reid Spencere0d133f2006-05-29 18:08:06 +00001198 Out << "\"";
1199 printEscapedString(allocaI->getName());
1200 Out << "\", " << bbname << ");";
1201 if (allocaI->getAlignment())
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001202 nl(Out) << iName << "->setAlignment("
Reid Spencere0d133f2006-05-29 18:08:06 +00001203 << allocaI->getAlignment() << ");";
1204 break;
1205 }
Reid Spencer66c87342006-05-30 03:43:49 +00001206 case Instruction::Load:{
1207 const LoadInst* load = cast<LoadInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001208 Out << "LoadInst* " << iName << " = new LoadInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001209 << opNames[0] << ", \"";
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001210 printEscapedString(load->getName());
1211 Out << "\", " << (load->isVolatile() ? "true" : "false" )
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001212 << ", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001213 break;
1214 }
Reid Spencere0d133f2006-05-29 18:08:06 +00001215 case Instruction::Store: {
1216 const StoreInst* store = cast<StoreInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001217 Out << "StoreInst* " << iName << " = new StoreInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001218 << opNames[0] << ", "
1219 << opNames[1] << ", "
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001220 << (store->isVolatile() ? "true" : "false")
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001221 << ", " << bbname << ");";
Reid Spencere0d133f2006-05-29 18:08:06 +00001222 break;
1223 }
1224 case Instruction::GetElementPtr: {
1225 const GetElementPtrInst* gep = cast<GetElementPtrInst>(I);
1226 if (gep->getNumOperands() <= 2) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001227 Out << "GetElementPtrInst* " << iName << " = new GetElementPtrInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001228 << opNames[0];
Reid Spencere0d133f2006-05-29 18:08:06 +00001229 if (gep->getNumOperands() == 2)
Reid Spencer15f7e012006-05-30 21:18:23 +00001230 Out << ", " << opNames[1];
Reid Spencere0d133f2006-05-29 18:08:06 +00001231 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001232 Out << "std::vector<Value*> " << iName << "_indices;";
1233 nl(Out);
Reid Spencere0d133f2006-05-29 18:08:06 +00001234 for (unsigned i = 1; i < gep->getNumOperands(); ++i ) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001235 Out << iName << "_indices.push_back("
1236 << opNames[i] << ");";
1237 nl(Out);
Reid Spencere0d133f2006-05-29 18:08:06 +00001238 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001239 Out << "Instruction* " << iName << " = new GetElementPtrInst("
Reid Spencer07441662007-04-11 12:28:56 +00001240 << opNames[0] << ", &" << iName << "_indices[0], "
1241 << gep->getNumOperands() - 1;
Reid Spencere0d133f2006-05-29 18:08:06 +00001242 }
1243 Out << ", \"";
1244 printEscapedString(gep->getName());
1245 Out << "\", " << bbname << ");";
1246 break;
1247 }
Reid Spencer66c87342006-05-30 03:43:49 +00001248 case Instruction::PHI: {
1249 const PHINode* phi = cast<PHINode>(I);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001250
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001251 Out << "PHINode* " << iName << " = new PHINode("
Reid Spencer66c87342006-05-30 03:43:49 +00001252 << getCppName(phi->getType()) << ", \"";
1253 printEscapedString(phi->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001254 Out << "\", " << bbname << ");";
1255 nl(Out) << iName << "->reserveOperandSpace("
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001256 << phi->getNumIncomingValues()
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001257 << ");";
1258 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +00001259 for (unsigned i = 0; i < phi->getNumOperands(); i+=2) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001260 Out << iName << "->addIncoming("
1261 << opNames[i] << ", " << opNames[i+1] << ");";
1262 nl(Out);
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001263 }
Reid Spencer66c87342006-05-30 03:43:49 +00001264 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001265 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001266 case Instruction::Trunc:
1267 case Instruction::ZExt:
1268 case Instruction::SExt:
1269 case Instruction::FPTrunc:
1270 case Instruction::FPExt:
1271 case Instruction::FPToUI:
1272 case Instruction::FPToSI:
1273 case Instruction::UIToFP:
1274 case Instruction::SIToFP:
1275 case Instruction::PtrToInt:
1276 case Instruction::IntToPtr:
1277 case Instruction::BitCast: {
Reid Spencer66c87342006-05-30 03:43:49 +00001278 const CastInst* cst = cast<CastInst>(I);
Reid Spencer3da59db2006-11-27 01:05:10 +00001279 Out << "CastInst* " << iName << " = new ";
1280 switch (I->getOpcode()) {
Reid Spencer34816572007-02-16 06:34:39 +00001281 case Instruction::Trunc: Out << "TruncInst"; break;
1282 case Instruction::ZExt: Out << "ZExtInst"; break;
1283 case Instruction::SExt: Out << "SExtInst"; break;
1284 case Instruction::FPTrunc: Out << "FPTruncInst"; break;
1285 case Instruction::FPExt: Out << "FPExtInst"; break;
1286 case Instruction::FPToUI: Out << "FPToUIInst"; break;
1287 case Instruction::FPToSI: Out << "FPToSIInst"; break;
1288 case Instruction::UIToFP: Out << "UIToFPInst"; break;
1289 case Instruction::SIToFP: Out << "SIToFPInst"; break;
Reid Spencer07441662007-04-11 12:28:56 +00001290 case Instruction::PtrToInt: Out << "PtrToIntInst"; break;
Reid Spencer34816572007-02-16 06:34:39 +00001291 case Instruction::IntToPtr: Out << "IntToPtrInst"; break;
1292 case Instruction::BitCast: Out << "BitCastInst"; break;
Reid Spencer3da59db2006-11-27 01:05:10 +00001293 default: assert(!"Unreachable"); break;
1294 }
1295 Out << "(" << opNames[0] << ", "
Reid Spencer66c87342006-05-30 03:43:49 +00001296 << getCppName(cst->getType()) << ", \"";
1297 printEscapedString(cst->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001298 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001299 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001300 }
Reid Spencer66c87342006-05-30 03:43:49 +00001301 case Instruction::Call:{
1302 const CallInst* call = cast<CallInst>(I);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001303 if (InlineAsm* ila = dyn_cast<InlineAsm>(call->getOperand(0))) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001304 Out << "InlineAsm* " << getCppName(ila) << " = InlineAsm::get("
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001305 << getCppName(ila->getFunctionType()) << ", \""
1306 << ila->getAsmString() << "\", \""
1307 << ila->getConstraintString() << "\","
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001308 << (ila->hasSideEffects() ? "true" : "false") << ");";
1309 nl(Out);
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001310 }
Reid Spencer66c87342006-05-30 03:43:49 +00001311 if (call->getNumOperands() > 3) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001312 Out << "std::vector<Value*> " << iName << "_params;";
1313 nl(Out);
1314 for (unsigned i = 1; i < call->getNumOperands(); ++i) {
1315 Out << iName << "_params.push_back(" << opNames[i] << ");";
1316 nl(Out);
1317 }
1318 Out << "CallInst* " << iName << " = new CallInst("
Reid Spencer07441662007-04-11 12:28:56 +00001319 << opNames[0] << ", &" << iName << "_params[0], "
1320 << call->getNumOperands() - 1 << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001321 } else if (call->getNumOperands() == 3) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001322 Out << "CallInst* " << iName << " = new CallInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001323 << opNames[0] << ", " << opNames[1] << ", " << opNames[2] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001324 } else if (call->getNumOperands() == 2) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001325 Out << "CallInst* " << iName << " = new CallInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001326 << opNames[0] << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001327 } else {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001328 Out << "CallInst* " << iName << " = new CallInst(" << opNames[0]
Reid Spencer15f7e012006-05-30 21:18:23 +00001329 << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001330 }
1331 printEscapedString(call->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001332 Out << "\", " << bbname << ");";
1333 nl(Out) << iName << "->setCallingConv(";
Reid Spencer66c87342006-05-30 03:43:49 +00001334 printCallingConv(call->getCallingConv());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001335 Out << ");";
1336 nl(Out) << iName << "->setTailCall("
Reid Spencer1a2a0cc2006-05-30 10:21:41 +00001337 << (call->isTailCall() ? "true":"false");
Reid Spencer66c87342006-05-30 03:43:49 +00001338 Out << ");";
1339 break;
1340 }
1341 case Instruction::Select: {
1342 const SelectInst* sel = cast<SelectInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001343 Out << "SelectInst* " << getCppName(sel) << " = new SelectInst(";
Reid Spencer15f7e012006-05-30 21:18:23 +00001344 Out << opNames[0] << ", " << opNames[1] << ", " << opNames[2] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001345 printEscapedString(sel->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001346 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001347 break;
1348 }
1349 case Instruction::UserOp1:
1350 /// FALL THROUGH
1351 case Instruction::UserOp2: {
1352 /// FIXME: What should be done here?
1353 break;
1354 }
1355 case Instruction::VAArg: {
1356 const VAArgInst* va = cast<VAArgInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001357 Out << "VAArgInst* " << getCppName(va) << " = new VAArgInst("
Reid Spencer15f7e012006-05-30 21:18:23 +00001358 << opNames[0] << ", " << getCppName(va->getType()) << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001359 printEscapedString(va->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001360 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001361 break;
1362 }
1363 case Instruction::ExtractElement: {
1364 const ExtractElementInst* eei = cast<ExtractElementInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001365 Out << "ExtractElementInst* " << getCppName(eei)
Reid Spencer15f7e012006-05-30 21:18:23 +00001366 << " = new ExtractElementInst(" << opNames[0]
1367 << ", " << opNames[1] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001368 printEscapedString(eei->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001369 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001370 break;
1371 }
1372 case Instruction::InsertElement: {
1373 const InsertElementInst* iei = cast<InsertElementInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001374 Out << "InsertElementInst* " << getCppName(iei)
Reid Spencer15f7e012006-05-30 21:18:23 +00001375 << " = new InsertElementInst(" << opNames[0]
1376 << ", " << opNames[1] << ", " << opNames[2] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001377 printEscapedString(iei->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001378 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001379 break;
1380 }
1381 case Instruction::ShuffleVector: {
1382 const ShuffleVectorInst* svi = cast<ShuffleVectorInst>(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001383 Out << "ShuffleVectorInst* " << getCppName(svi)
Reid Spencer15f7e012006-05-30 21:18:23 +00001384 << " = new ShuffleVectorInst(" << opNames[0]
1385 << ", " << opNames[1] << ", " << opNames[2] << ", \"";
Reid Spencer66c87342006-05-30 03:43:49 +00001386 printEscapedString(svi->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001387 Out << "\", " << bbname << ");";
Reid Spencer66c87342006-05-30 03:43:49 +00001388 break;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001389 }
1390 }
Reid Spencer68464b72006-06-15 16:09:59 +00001391 DefinedValues.insert(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001392 nl(Out);
Reid Spencer15f7e012006-05-30 21:18:23 +00001393 delete [] opNames;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001394}
1395
Reid Spencer12803f52006-05-31 17:31:38 +00001396// Print out the types, constants and declarations needed by one function
1397void CppWriter::printFunctionUses(const Function* F) {
1398
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001399 nl(Out) << "// Type Definitions"; nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001400 if (!is_inline) {
1401 // Print the function's return type
1402 printType(F->getReturnType());
Reid Spencer12803f52006-05-31 17:31:38 +00001403
Reid Spencerf977e7b2006-06-01 23:43:47 +00001404 // Print the function's function type
1405 printType(F->getFunctionType());
Reid Spencer12803f52006-05-31 17:31:38 +00001406
Reid Spencerf977e7b2006-06-01 23:43:47 +00001407 // Print the types of each of the function's arguments
1408 for(Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1409 AI != AE; ++AI) {
1410 printType(AI->getType());
1411 }
Reid Spencer12803f52006-05-31 17:31:38 +00001412 }
1413
1414 // Print type definitions for every type referenced by an instruction and
1415 // make a note of any global values or constants that are referenced
1416 std::vector<GlobalValue*> gvs;
1417 std::vector<Constant*> consts;
1418 for (Function::const_iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB){
1419 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
1420 I != E; ++I) {
1421 // Print the type of the instruction itself
1422 printType(I->getType());
1423
1424 // Print the type of each of the instruction's operands
1425 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
1426 Value* operand = I->getOperand(i);
1427 printType(operand->getType());
1428 if (GlobalValue* GV = dyn_cast<GlobalValue>(operand))
1429 gvs.push_back(GV);
1430 else if (Constant* C = dyn_cast<Constant>(operand))
1431 consts.push_back(C);
1432 }
1433 }
1434 }
1435
1436 // Print the function declarations for any functions encountered
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001437 nl(Out) << "// Function Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001438 for (std::vector<GlobalValue*>::iterator I = gvs.begin(), E = gvs.end();
1439 I != E; ++I) {
Reid Spencerf977e7b2006-06-01 23:43:47 +00001440 if (Function* Fun = dyn_cast<Function>(*I)) {
1441 if (!is_inline || Fun != F)
1442 printFunctionHead(Fun);
1443 }
Reid Spencer12803f52006-05-31 17:31:38 +00001444 }
1445
1446 // Print the global variable declarations for any variables encountered
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001447 nl(Out) << "// Global Variable Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001448 for (std::vector<GlobalValue*>::iterator I = gvs.begin(), E = gvs.end();
1449 I != E; ++I) {
1450 if (GlobalVariable* F = dyn_cast<GlobalVariable>(*I))
1451 printVariableHead(F);
1452 }
1453
1454 // Print the constants found
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001455 nl(Out) << "// Constant Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001456 for (std::vector<Constant*>::iterator I = consts.begin(), E = consts.end();
1457 I != E; ++I) {
Reid Spencerf977e7b2006-06-01 23:43:47 +00001458 printConstant(*I);
Reid Spencer12803f52006-05-31 17:31:38 +00001459 }
1460
1461 // Process the global variables definitions now that all the constants have
1462 // been emitted. These definitions just couple the gvars with their constant
1463 // initializers.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001464 nl(Out) << "// Global Variable Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001465 for (std::vector<GlobalValue*>::iterator I = gvs.begin(), E = gvs.end();
1466 I != E; ++I) {
1467 if (GlobalVariable* GV = dyn_cast<GlobalVariable>(*I))
1468 printVariableBody(GV);
1469 }
1470}
1471
1472void CppWriter::printFunctionHead(const Function* F) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001473 nl(Out) << "Function* " << getCppName(F);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001474 if (is_inline) {
1475 Out << " = mod->getFunction(\"";
1476 printEscapedString(F->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001477 Out << "\", " << getCppName(F->getFunctionType()) << ");";
1478 nl(Out) << "if (!" << getCppName(F) << ") {";
1479 nl(Out) << getCppName(F);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001480 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001481 Out<< " = new Function(";
1482 nl(Out,1) << "/*Type=*/" << getCppName(F->getFunctionType()) << ",";
1483 nl(Out) << "/*Linkage=*/";
Reid Spencer12803f52006-05-31 17:31:38 +00001484 printLinkageType(F->getLinkage());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001485 Out << ",";
1486 nl(Out) << "/*Name=*/\"";
Reid Spencer12803f52006-05-31 17:31:38 +00001487 printEscapedString(F->getName());
Reid Spencer5cbf9852007-01-30 20:08:39 +00001488 Out << "\", mod); " << (F->isDeclaration()? "// (external, no body)" : "");
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001489 nl(Out,-1);
Reid Spencer12803f52006-05-31 17:31:38 +00001490 printCppName(F);
1491 Out << "->setCallingConv(";
1492 printCallingConv(F->getCallingConv());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001493 Out << ");";
1494 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001495 if (F->hasSection()) {
1496 printCppName(F);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001497 Out << "->setSection(\"" << F->getSection() << "\");";
1498 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001499 }
1500 if (F->getAlignment()) {
1501 printCppName(F);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001502 Out << "->setAlignment(" << F->getAlignment() << ");";
1503 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001504 }
Reid Spencerf977e7b2006-06-01 23:43:47 +00001505 if (is_inline) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001506 Out << "}";
1507 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001508 }
Reid Spencer12803f52006-05-31 17:31:38 +00001509}
1510
1511void CppWriter::printFunctionBody(const Function *F) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001512 if (F->isDeclaration())
Reid Spencer12803f52006-05-31 17:31:38 +00001513 return; // external functions have no bodies.
1514
1515 // Clear the DefinedValues and ForwardRefs maps because we can't have
1516 // cross-function forward refs
1517 ForwardRefs.clear();
1518 DefinedValues.clear();
1519
1520 // Create all the argument values
Reid Spencerf977e7b2006-06-01 23:43:47 +00001521 if (!is_inline) {
1522 if (!F->arg_empty()) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001523 Out << "Function::arg_iterator args = " << getCppName(F)
1524 << "->arg_begin();";
1525 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001526 }
1527 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1528 AI != AE; ++AI) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001529 Out << "Value* " << getCppName(AI) << " = args++;";
1530 nl(Out);
1531 if (AI->hasName()) {
1532 Out << getCppName(AI) << "->setName(\"" << AI->getName() << "\");";
1533 nl(Out);
1534 }
Reid Spencerf977e7b2006-06-01 23:43:47 +00001535 }
Reid Spencer12803f52006-05-31 17:31:38 +00001536 }
1537
1538 // Create all the basic blocks
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001539 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001540 for (Function::const_iterator BI = F->begin(), BE = F->end();
1541 BI != BE; ++BI) {
1542 std::string bbname(getCppName(BI));
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001543 Out << "BasicBlock* " << bbname << " = new BasicBlock(\"";
Reid Spencer12803f52006-05-31 17:31:38 +00001544 if (BI->hasName())
1545 printEscapedString(BI->getName());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001546 Out << "\"," << getCppName(BI->getParent()) << ",0);";
1547 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001548 }
1549
1550 // Output all of its basic blocks... for the function
1551 for (Function::const_iterator BI = F->begin(), BE = F->end();
1552 BI != BE; ++BI) {
1553 std::string bbname(getCppName(BI));
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001554 nl(Out) << "// Block " << BI->getName() << " (" << bbname << ")";
1555 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001556
1557 // Output all of the instructions in the basic block...
1558 for (BasicBlock::const_iterator I = BI->begin(), E = BI->end();
1559 I != E; ++I) {
1560 printInstruction(I,bbname);
1561 }
1562 }
1563
1564 // Loop over the ForwardRefs and resolve them now that all instructions
1565 // are generated.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001566 if (!ForwardRefs.empty()) {
1567 nl(Out) << "// Resolve Forward References";
1568 nl(Out);
1569 }
1570
Reid Spencer12803f52006-05-31 17:31:38 +00001571 while (!ForwardRefs.empty()) {
1572 ForwardRefMap::iterator I = ForwardRefs.begin();
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001573 Out << I->second << "->replaceAllUsesWith("
1574 << getCppName(I->first) << "); delete " << I->second << ";";
1575 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001576 ForwardRefs.erase(I);
1577 }
1578}
1579
Reid Spencerf977e7b2006-06-01 23:43:47 +00001580void CppWriter::printInline(const std::string& fname, const std::string& func) {
Reid Spencer688b0492007-02-05 21:19:13 +00001581 const Function* F = TheModule->getFunction(func);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001582 if (!F) {
1583 error(std::string("Function '") + func + "' not found in input module");
1584 return;
1585 }
Reid Spencer5cbf9852007-01-30 20:08:39 +00001586 if (F->isDeclaration()) {
Reid Spencerf977e7b2006-06-01 23:43:47 +00001587 error(std::string("Function '") + func + "' is external!");
1588 return;
1589 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001590 nl(Out) << "BasicBlock* " << fname << "(Module* mod, Function *"
Reid Spencerf977e7b2006-06-01 23:43:47 +00001591 << getCppName(F);
1592 unsigned arg_count = 1;
1593 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1594 AI != AE; ++AI) {
1595 Out << ", Value* arg_" << arg_count;
1596 }
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001597 Out << ") {";
1598 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001599 is_inline = true;
1600 printFunctionUses(F);
1601 printFunctionBody(F);
1602 is_inline = false;
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001603 Out << "return " << getCppName(F->begin()) << ";";
1604 nl(Out) << "}";
1605 nl(Out);
Reid Spencerf977e7b2006-06-01 23:43:47 +00001606}
1607
Reid Spencer12803f52006-05-31 17:31:38 +00001608void CppWriter::printModuleBody() {
1609 // Print out all the type definitions
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001610 nl(Out) << "// Type Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001611 printTypes(TheModule);
1612
1613 // Functions can call each other and global variables can reference them so
1614 // define all the functions first before emitting their function bodies.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001615 nl(Out) << "// Function Declarations"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001616 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1617 I != E; ++I)
1618 printFunctionHead(I);
1619
1620 // Process the global variables declarations. We can't initialze them until
1621 // after the constants are printed so just print a header for each global
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001622 nl(Out) << "// Global Variable Declarations\n"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001623 for (Module::const_global_iterator I = TheModule->global_begin(),
1624 E = TheModule->global_end(); I != E; ++I) {
1625 printVariableHead(I);
1626 }
1627
1628 // Print out all the constants definitions. Constants don't recurse except
1629 // through GlobalValues. All GlobalValues have been declared at this point
1630 // so we can proceed to generate the constants.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001631 nl(Out) << "// Constant Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001632 printConstants(TheModule);
1633
1634 // Process the global variables definitions now that all the constants have
1635 // been emitted. These definitions just couple the gvars with their constant
1636 // initializers.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001637 nl(Out) << "// Global Variable Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001638 for (Module::const_global_iterator I = TheModule->global_begin(),
1639 E = TheModule->global_end(); I != E; ++I) {
1640 printVariableBody(I);
1641 }
1642
1643 // Finally, we can safely put out all of the function bodies.
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001644 nl(Out) << "// Function Definitions"; nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001645 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1646 I != E; ++I) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001647 if (!I->isDeclaration()) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001648 nl(Out) << "// Function: " << I->getName() << " (" << getCppName(I)
1649 << ")";
1650 nl(Out) << "{";
1651 nl(Out,1);
Reid Spencer12803f52006-05-31 17:31:38 +00001652 printFunctionBody(I);
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001653 nl(Out,-1) << "}";
1654 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001655 }
1656 }
1657}
1658
1659void CppWriter::printProgram(
1660 const std::string& fname,
1661 const std::string& mName
1662) {
1663 Out << "#include <llvm/Module.h>\n";
1664 Out << "#include <llvm/DerivedTypes.h>\n";
1665 Out << "#include <llvm/Constants.h>\n";
1666 Out << "#include <llvm/GlobalVariable.h>\n";
1667 Out << "#include <llvm/Function.h>\n";
1668 Out << "#include <llvm/CallingConv.h>\n";
1669 Out << "#include <llvm/BasicBlock.h>\n";
1670 Out << "#include <llvm/Instructions.h>\n";
1671 Out << "#include <llvm/InlineAsm.h>\n";
Reid Spencer07441662007-04-11 12:28:56 +00001672 Out << "#include <llvm/ParameterAttributes.h>\n";
Reid Spencerf977e7b2006-06-01 23:43:47 +00001673 Out << "#include <llvm/Support/MathExtras.h>\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001674 Out << "#include <llvm/Pass.h>\n";
1675 Out << "#include <llvm/PassManager.h>\n";
1676 Out << "#include <llvm/Analysis/Verifier.h>\n";
1677 Out << "#include <llvm/Assembly/PrintModulePass.h>\n";
1678 Out << "#include <algorithm>\n";
1679 Out << "#include <iostream>\n\n";
1680 Out << "using namespace llvm;\n\n";
1681 Out << "Module* " << fname << "();\n\n";
1682 Out << "int main(int argc, char**argv) {\n";
1683 Out << " Module* Mod = makeLLVMModule();\n";
1684 Out << " verifyModule(*Mod, PrintMessageAction);\n";
1685 Out << " std::cerr.flush();\n";
1686 Out << " std::cout.flush();\n";
1687 Out << " PassManager PM;\n";
Reid Spencer07441662007-04-11 12:28:56 +00001688 Out << " PM.add(new PrintModulePass(&llvm::cout));\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001689 Out << " PM.run(*Mod);\n";
1690 Out << " return 0;\n";
1691 Out << "}\n\n";
1692 printModule(fname,mName);
1693}
1694
1695void CppWriter::printModule(
1696 const std::string& fname,
1697 const std::string& mName
1698) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001699 nl(Out) << "Module* " << fname << "() {";
1700 nl(Out,1) << "// Module Construction";
1701 nl(Out) << "Module* mod = new Module(\"" << mName << "\");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001702 if (!TheModule->getTargetTriple().empty()) {
Reid Spencer07441662007-04-11 12:28:56 +00001703 nl(Out) << "mod->setDataLayout(\"" << TheModule->getDataLayout() << "\");";
1704 }
1705 if (!TheModule->getTargetTriple().empty()) {
1706 nl(Out) << "mod->setTargetTriple(\"" << TheModule->getTargetTriple()
1707 << "\");";
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001708 }
Reid Spencer12803f52006-05-31 17:31:38 +00001709
1710 if (!TheModule->getModuleInlineAsm().empty()) {
Reid Spencer07441662007-04-11 12:28:56 +00001711 nl(Out) << "mod->setModuleInlineAsm(\"";
Reid Spencer12803f52006-05-31 17:31:38 +00001712 printEscapedString(TheModule->getModuleInlineAsm());
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001713 Out << "\");";
Reid Spencer12803f52006-05-31 17:31:38 +00001714 }
Reid Spencer07441662007-04-11 12:28:56 +00001715 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001716
1717 // Loop over the dependent libraries and emit them.
1718 Module::lib_iterator LI = TheModule->lib_begin();
1719 Module::lib_iterator LE = TheModule->lib_end();
1720 while (LI != LE) {
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001721 Out << "mod->addLibrary(\"" << *LI << "\");";
1722 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001723 ++LI;
1724 }
1725 printModuleBody();
Reid Spencer70bbf9a2006-08-14 22:35:15 +00001726 nl(Out) << "return mod;";
1727 nl(Out,-1) << "}";
1728 nl(Out);
Reid Spencer12803f52006-05-31 17:31:38 +00001729}
1730
1731void CppWriter::printContents(
1732 const std::string& fname, // Name of generated function
1733 const std::string& mName // Name of module generated module
1734) {
1735 Out << "\nModule* " << fname << "(Module *mod) {\n";
1736 Out << "\nmod->setModuleIdentifier(\"" << mName << "\");\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001737 printModuleBody();
1738 Out << "\nreturn mod;\n";
1739 Out << "\n}\n";
1740}
1741
1742void CppWriter::printFunction(
1743 const std::string& fname, // Name of generated function
1744 const std::string& funcName // Name of function to generate
1745) {
Reid Spencer688b0492007-02-05 21:19:13 +00001746 const Function* F = TheModule->getFunction(funcName);
Reid Spencer12803f52006-05-31 17:31:38 +00001747 if (!F) {
1748 error(std::string("Function '") + funcName + "' not found in input module");
1749 return;
1750 }
1751 Out << "\nFunction* " << fname << "(Module *mod) {\n";
1752 printFunctionUses(F);
1753 printFunctionHead(F);
1754 printFunctionBody(F);
1755 Out << "return " << getCppName(F) << ";\n";
1756 Out << "}\n";
1757}
1758
1759void CppWriter::printVariable(
1760 const std::string& fname, /// Name of generated function
1761 const std::string& varName // Name of variable to generate
1762) {
1763 const GlobalVariable* GV = TheModule->getNamedGlobal(varName);
1764
1765 if (!GV) {
1766 error(std::string("Variable '") + varName + "' not found in input module");
1767 return;
1768 }
1769 Out << "\nGlobalVariable* " << fname << "(Module *mod) {\n";
1770 printVariableUses(GV);
1771 printVariableHead(GV);
1772 printVariableBody(GV);
1773 Out << "return " << getCppName(GV) << ";\n";
1774 Out << "}\n";
1775}
1776
1777void CppWriter::printType(
1778 const std::string& fname, /// Name of generated function
1779 const std::string& typeName // Name of type to generate
1780) {
1781 const Type* Ty = TheModule->getTypeByName(typeName);
1782 if (!Ty) {
1783 error(std::string("Type '") + typeName + "' not found in input module");
1784 return;
1785 }
1786 Out << "\nType* " << fname << "(Module *mod) {\n";
1787 printType(Ty);
1788 Out << "return " << getCppName(Ty) << ";\n";
1789 Out << "}\n";
1790}
1791
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001792} // end anonymous llvm
1793
1794namespace llvm {
1795
1796void WriteModuleToCppFile(Module* mod, std::ostream& o) {
Reid Spencer12803f52006-05-31 17:31:38 +00001797 // Initialize a CppWriter for us to use
1798 CppWriter W(o, mod);
1799
1800 // Emit a header
Reid Spencer25edc352006-05-31 04:43:19 +00001801 o << "// Generated by llvm2cpp - DO NOT MODIFY!\n\n";
Reid Spencer12803f52006-05-31 17:31:38 +00001802
1803 // Get the name of the function we're supposed to generate
Reid Spencer15f7e012006-05-30 21:18:23 +00001804 std::string fname = FuncName.getValue();
Reid Spencer12803f52006-05-31 17:31:38 +00001805
1806 // Get the name of the thing we are to generate
1807 std::string tgtname = NameToGenerate.getValue();
1808 if (GenerationType == GenModule ||
1809 GenerationType == GenContents ||
1810 GenerationType == GenProgram) {
1811 if (tgtname == "!bad!") {
1812 if (mod->getModuleIdentifier() == "-")
1813 tgtname = "<stdin>";
1814 else
1815 tgtname = mod->getModuleIdentifier();
1816 }
1817 } else if (tgtname == "!bad!") {
1818 W.error("You must use the -for option with -gen-{function,variable,type}");
1819 }
1820
1821 switch (WhatToGenerate(GenerationType)) {
1822 case GenProgram:
1823 if (fname.empty())
1824 fname = "makeLLVMModule";
1825 W.printProgram(fname,tgtname);
1826 break;
1827 case GenModule:
1828 if (fname.empty())
1829 fname = "makeLLVMModule";
1830 W.printModule(fname,tgtname);
1831 break;
1832 case GenContents:
1833 if (fname.empty())
1834 fname = "makeLLVMModuleContents";
1835 W.printContents(fname,tgtname);
1836 break;
1837 case GenFunction:
1838 if (fname.empty())
1839 fname = "makeLLVMFunction";
1840 W.printFunction(fname,tgtname);
1841 break;
Reid Spencerf977e7b2006-06-01 23:43:47 +00001842 case GenInline:
1843 if (fname.empty())
1844 fname = "makeLLVMInline";
1845 W.printInline(fname,tgtname);
1846 break;
Reid Spencer12803f52006-05-31 17:31:38 +00001847 case GenVariable:
1848 if (fname.empty())
1849 fname = "makeLLVMVariable";
1850 W.printVariable(fname,tgtname);
1851 break;
1852 case GenType:
1853 if (fname.empty())
1854 fname = "makeLLVMType";
1855 W.printType(fname,tgtname);
1856 break;
1857 default:
1858 W.error("Invalid generation option");
Reid Spencer15f7e012006-05-30 21:18:23 +00001859 }
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00001860}
1861
1862}