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