blob: 9c9c097b4c3d975c8b2676e9071bd7c760b33754 [file] [log] [blame]
Anton Korobeynikov78695032008-04-23 22:29:24 +00001//===-- CPPBackend.cpp - Library for converting LLVM code to C++ code -----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the writing of the LLVM IR as a set of C++ calls to the
11// LLVM IR interface. The input module is assumed to be verified.
12//
13//===----------------------------------------------------------------------===//
14
15#include "CPPTargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/SmallPtrSet.h"
17#include "llvm/ADT/StringExtras.h"
Rafael Espindola5682ce22015-04-09 21:06:08 +000018#include "llvm/ADT/STLExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Config/config.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/CallingConv.h"
21#include "llvm/IR/Constants.h"
22#include "llvm/IR/DerivedTypes.h"
23#include "llvm/IR/InlineAsm.h"
24#include "llvm/IR/Instruction.h"
25#include "llvm/IR/Instructions.h"
Chandler Carruth30d69c22015-02-13 10:01:29 +000026#include "llvm/IR/LegacyPassManager.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Module.h"
Evan Cheng1705ab02011-07-14 23:50:31 +000028#include "llvm/MC/MCAsmInfo.h"
Evan Chengc5e6d2f2011-07-11 03:57:24 +000029#include "llvm/MC/MCInstrInfo.h"
Evan Cheng91111d22011-07-09 05:47:46 +000030#include "llvm/MC/MCSubtargetInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Pass.h"
Anton Korobeynikov78695032008-04-23 22:29:24 +000032#include "llvm/Support/CommandLine.h"
Torok Edwinf8d479c2009-07-08 20:55:50 +000033#include "llvm/Support/ErrorHandling.h"
David Greenea31f96c2009-07-14 20:18:05 +000034#include "llvm/Support/FormattedStream.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000035#include "llvm/Support/TargetRegistry.h"
Anton Korobeynikov78695032008-04-23 22:29:24 +000036#include <algorithm>
Will Dietz981af002013-10-12 00:55:57 +000037#include <cctype>
Benjamin Kramerb0640db2012-03-23 11:35:30 +000038#include <cstdio>
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000039#include <map>
Benjamin Kramerb0640db2012-03-23 11:35:30 +000040#include <set>
Anton Korobeynikov78695032008-04-23 22:29:24 +000041using namespace llvm;
42
43static cl::opt<std::string>
Anton Korobeynikov9dcc3e92008-04-23 22:37:03 +000044FuncName("cppfname", cl::desc("Specify the name of the generated function"),
Anton Korobeynikov78695032008-04-23 22:29:24 +000045 cl::value_desc("function name"));
46
47enum WhatToGenerate {
48 GenProgram,
49 GenModule,
50 GenContents,
51 GenFunction,
52 GenFunctions,
53 GenInline,
54 GenVariable,
55 GenType
56};
57
Anton Korobeynikov9dcc3e92008-04-23 22:37:03 +000058static cl::opt<WhatToGenerate> GenerationType("cppgen", cl::Optional,
Anton Korobeynikov78695032008-04-23 22:29:24 +000059 cl::desc("Choose what kind of output to generate"),
60 cl::init(GenProgram),
61 cl::values(
Anton Korobeynikov9dcc3e92008-04-23 22:37:03 +000062 clEnumValN(GenProgram, "program", "Generate a complete program"),
63 clEnumValN(GenModule, "module", "Generate a module definition"),
64 clEnumValN(GenContents, "contents", "Generate contents of a module"),
65 clEnumValN(GenFunction, "function", "Generate a function definition"),
66 clEnumValN(GenFunctions,"functions", "Generate all function definitions"),
67 clEnumValN(GenInline, "inline", "Generate an inline function"),
68 clEnumValN(GenVariable, "variable", "Generate a variable definition"),
69 clEnumValN(GenType, "type", "Generate a type definition"),
Anton Korobeynikov78695032008-04-23 22:29:24 +000070 clEnumValEnd
71 )
72);
73
Anton Korobeynikov9dcc3e92008-04-23 22:37:03 +000074static cl::opt<std::string> NameToGenerate("cppfor", cl::Optional,
Anton Korobeynikov78695032008-04-23 22:29:24 +000075 cl::desc("Specify the name of the thing to generate"),
76 cl::init("!bad!"));
77
Daniel Dunbar5680b4f2009-07-25 06:49:55 +000078extern "C" void LLVMInitializeCppBackendTarget() {
79 // Register the target.
Daniel Dunbar09c1d002009-08-04 04:02:45 +000080 RegisterTargetMachine<CPPTargetMachine> X(TheCppBackendTarget);
Daniel Dunbar5680b4f2009-07-25 06:49:55 +000081}
Douglas Gregor1b731d52009-06-16 20:12:29 +000082
Dan Gohmand78c4002008-05-13 00:00:25 +000083namespace {
Chris Lattner229907c2011-07-18 04:54:35 +000084 typedef std::vector<Type*> TypeList;
85 typedef std::map<Type*,std::string> TypeMap;
Anton Korobeynikov78695032008-04-23 22:29:24 +000086 typedef std::map<const Value*,std::string> ValueMap;
87 typedef std::set<std::string> NameSet;
Chris Lattner229907c2011-07-18 04:54:35 +000088 typedef std::set<Type*> TypeSet;
Anton Korobeynikov78695032008-04-23 22:29:24 +000089 typedef std::set<const Value*> ValueSet;
90 typedef std::map<const Value*,std::string> ForwardRefMap;
91
92 /// CppWriter - This class is the main chunk of code that converts an LLVM
93 /// module to a C++ translation unit.
94 class CppWriter : public ModulePass {
Rafael Espindola5682ce22015-04-09 21:06:08 +000095 std::unique_ptr<formatted_raw_ostream> OutOwner;
David Greenea31f96c2009-07-14 20:18:05 +000096 formatted_raw_ostream &Out;
Anton Korobeynikov78695032008-04-23 22:29:24 +000097 const Module *TheModule;
98 uint64_t uniqueNum;
99 TypeMap TypeNames;
100 ValueMap ValueNames;
Anton Korobeynikov78695032008-04-23 22:29:24 +0000101 NameSet UsedNames;
102 TypeSet DefinedTypes;
103 ValueSet DefinedValues;
104 ForwardRefMap ForwardRefs;
105 bool is_inline;
Chris Lattnerbb45b962010-06-21 23:14:47 +0000106 unsigned indent_level;
Anton Korobeynikov78695032008-04-23 22:29:24 +0000107
108 public:
109 static char ID;
Rafael Espindola5682ce22015-04-09 21:06:08 +0000110 explicit CppWriter(std::unique_ptr<formatted_raw_ostream> o)
111 : ModulePass(ID), OutOwner(std::move(o)), Out(*OutOwner), uniqueNum(0),
112 is_inline(false), indent_level(0) {}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000113
Craig Topper9d74a5a2014-04-29 07:58:41 +0000114 const char *getPassName() const override { return "C++ backend"; }
Anton Korobeynikov78695032008-04-23 22:29:24 +0000115
Craig Topper9d74a5a2014-04-29 07:58:41 +0000116 bool runOnModule(Module &M) override;
Anton Korobeynikov78695032008-04-23 22:29:24 +0000117
Anton Korobeynikov78695032008-04-23 22:29:24 +0000118 void printProgram(const std::string& fname, const std::string& modName );
119 void printModule(const std::string& fname, const std::string& modName );
120 void printContents(const std::string& fname, const std::string& modName );
121 void printFunction(const std::string& fname, const std::string& funcName );
122 void printFunctions();
123 void printInline(const std::string& fname, const std::string& funcName );
124 void printVariable(const std::string& fname, const std::string& varName );
125 void printType(const std::string& fname, const std::string& typeName );
126
127 void error(const std::string& msg);
128
Chris Lattnerbb45b962010-06-21 23:14:47 +0000129
130 formatted_raw_ostream& nl(formatted_raw_ostream &Out, int delta = 0);
131 inline void in() { indent_level++; }
132 inline void out() { if (indent_level >0) indent_level--; }
133
Anton Korobeynikov78695032008-04-23 22:29:24 +0000134 private:
135 void printLinkageType(GlobalValue::LinkageTypes LT);
136 void printVisibilityType(GlobalValue::VisibilityTypes VisTypes);
Nico Rieck7157bb72014-01-14 15:22:47 +0000137 void printDLLStorageClassType(GlobalValue::DLLStorageClassTypes DSCType);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000138 void printThreadLocalMode(GlobalVariable::ThreadLocalMode TLM);
Sandeep Patel68c5f472009-09-02 08:44:58 +0000139 void printCallingConv(CallingConv::ID cc);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000140 void printEscapedString(const std::string& str);
141 void printCFP(const ConstantFP* CFP);
142
Chris Lattner229907c2011-07-18 04:54:35 +0000143 std::string getCppName(Type* val);
144 inline void printCppName(Type* val);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000145
146 std::string getCppName(const Value* val);
147 inline void printCppName(const Value* val);
148
Bill Wendlinge94d8432012-12-07 23:16:57 +0000149 void printAttributes(const AttributeSet &PAL, const std::string &name);
Chris Lattner229907c2011-07-18 04:54:35 +0000150 void printType(Type* Ty);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000151 void printTypes(const Module* M);
152
153 void printConstant(const Constant *CPV);
154 void printConstants(const Module* M);
155
156 void printVariableUses(const GlobalVariable *GV);
157 void printVariableHead(const GlobalVariable *GV);
158 void printVariableBody(const GlobalVariable *GV);
159
160 void printFunctionUses(const Function *F);
161 void printFunctionHead(const Function *F);
162 void printFunctionBody(const Function *F);
163 void printInstruction(const Instruction *I, const std::string& bbname);
Eli Friedman95031ed2011-09-29 20:21:17 +0000164 std::string getOpName(const Value*);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000165
166 void printModuleBody();
167 };
Chris Lattnera0b8c902010-06-21 23:12:56 +0000168} // end anonymous namespace.
Anton Korobeynikov78695032008-04-23 22:29:24 +0000169
Chris Lattnerbb45b962010-06-21 23:14:47 +0000170formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) {
171 Out << '\n';
Chris Lattnera0b8c902010-06-21 23:12:56 +0000172 if (delta >= 0 || indent_level >= unsigned(-delta))
173 indent_level += delta;
Chris Lattnerbb45b962010-06-21 23:14:47 +0000174 Out.indent(indent_level);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000175 return Out;
176}
177
Chris Lattnera0b8c902010-06-21 23:12:56 +0000178static inline void sanitize(std::string &str) {
179 for (size_t i = 0; i < str.length(); ++i)
180 if (!isalnum(str[i]) && str[i] != '_')
181 str[i] = '_';
182}
183
Chris Lattner229907c2011-07-18 04:54:35 +0000184static std::string getTypePrefix(Type *Ty) {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000185 switch (Ty->getTypeID()) {
186 case Type::VoidTyID: return "void_";
187 case Type::IntegerTyID:
188 return "int" + utostr(cast<IntegerType>(Ty)->getBitWidth()) + "_";
189 case Type::FloatTyID: return "float_";
190 case Type::DoubleTyID: return "double_";
191 case Type::LabelTyID: return "label_";
192 case Type::FunctionTyID: return "func_";
193 case Type::StructTyID: return "struct_";
194 case Type::ArrayTyID: return "array_";
195 case Type::PointerTyID: return "ptr_";
196 case Type::VectorTyID: return "packed_";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000197 default: return "other_";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000198 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000199}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000200
Chris Lattnera0b8c902010-06-21 23:12:56 +0000201void CppWriter::error(const std::string& msg) {
202 report_fatal_error(msg);
203}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000204
Benjamin Kramercbf108e2012-03-23 11:26:29 +0000205static inline std::string ftostr(const APFloat& V) {
206 std::string Buf;
207 if (&V.getSemantics() == &APFloat::IEEEdouble) {
208 raw_string_ostream(Buf) << V.convertToDouble();
209 return Buf;
210 } else if (&V.getSemantics() == &APFloat::IEEEsingle) {
211 raw_string_ostream(Buf) << (double)V.convertToFloat();
212 return Buf;
213 }
214 return "<unknown format in ftostr>"; // error
215}
216
Chris Lattnera0b8c902010-06-21 23:12:56 +0000217// printCFP - Print a floating point constant .. very carefully :)
218// This makes sure that conversion to/from floating yields the same binary
219// result so that we don't lose precision.
220void CppWriter::printCFP(const ConstantFP *CFP) {
221 bool ignored;
222 APFloat APF = APFloat(CFP->getValueAPF()); // copy
223 if (CFP->getType() == Type::getFloatTy(CFP->getContext()))
224 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
225 Out << "ConstantFP::get(mod->getContext(), ";
226 Out << "APFloat(";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000227#if HAVE_PRINTF_A
Chris Lattnera0b8c902010-06-21 23:12:56 +0000228 char Buffer[100];
229 sprintf(Buffer, "%A", APF.convertToDouble());
230 if ((!strncmp(Buffer, "0x", 2) ||
231 !strncmp(Buffer, "-0x", 3) ||
232 !strncmp(Buffer, "+0x", 3)) &&
233 APF.bitwiseIsEqual(APFloat(atof(Buffer)))) {
234 if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
235 Out << "BitsToDouble(" << Buffer << ")";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000236 else
Chris Lattnera0b8c902010-06-21 23:12:56 +0000237 Out << "BitsToFloat((float)" << Buffer << ")";
238 Out << ")";
239 } else {
240#endif
241 std::string StrVal = ftostr(CFP->getValueAPF());
Anton Korobeynikov78695032008-04-23 22:29:24 +0000242
Chris Lattnera0b8c902010-06-21 23:12:56 +0000243 while (StrVal[0] == ' ')
244 StrVal.erase(StrVal.begin());
245
246 // Check to make sure that the stringized number is not some string like
247 // "Inf" or NaN. Check that the string matches the "[-+]?[0-9]" regex.
248 if (((StrVal[0] >= '0' && StrVal[0] <= '9') ||
249 ((StrVal[0] == '-' || StrVal[0] == '+') &&
250 (StrVal[1] >= '0' && StrVal[1] <= '9'))) &&
251 (CFP->isExactlyValue(atof(StrVal.c_str())))) {
252 if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
253 Out << StrVal;
254 else
255 Out << StrVal << "f";
256 } else if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
257 Out << "BitsToDouble(0x"
258 << utohexstr(CFP->getValueAPF().bitcastToAPInt().getZExtValue())
259 << "ULL) /* " << StrVal << " */";
260 else
261 Out << "BitsToFloat(0x"
262 << utohexstr((uint32_t)CFP->getValueAPF().
263 bitcastToAPInt().getZExtValue())
264 << "U) /* " << StrVal << " */";
265 Out << ")";
266#if HAVE_PRINTF_A
267 }
268#endif
269 Out << ")";
270}
271
272void CppWriter::printCallingConv(CallingConv::ID cc){
273 // Print the calling convention.
274 switch (cc) {
275 case CallingConv::C: Out << "CallingConv::C"; break;
276 case CallingConv::Fast: Out << "CallingConv::Fast"; break;
277 case CallingConv::Cold: Out << "CallingConv::Cold"; break;
278 case CallingConv::FirstTargetCC: Out << "CallingConv::FirstTargetCC"; break;
279 default: Out << cc; break;
280 }
281}
282
283void CppWriter::printLinkageType(GlobalValue::LinkageTypes LT) {
284 switch (LT) {
285 case GlobalValue::InternalLinkage:
286 Out << "GlobalValue::InternalLinkage"; break;
287 case GlobalValue::PrivateLinkage:
288 Out << "GlobalValue::PrivateLinkage"; break;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000289 case GlobalValue::AvailableExternallyLinkage:
290 Out << "GlobalValue::AvailableExternallyLinkage "; break;
291 case GlobalValue::LinkOnceAnyLinkage:
292 Out << "GlobalValue::LinkOnceAnyLinkage "; break;
293 case GlobalValue::LinkOnceODRLinkage:
294 Out << "GlobalValue::LinkOnceODRLinkage "; break;
295 case GlobalValue::WeakAnyLinkage:
296 Out << "GlobalValue::WeakAnyLinkage"; break;
297 case GlobalValue::WeakODRLinkage:
298 Out << "GlobalValue::WeakODRLinkage"; break;
299 case GlobalValue::AppendingLinkage:
300 Out << "GlobalValue::AppendingLinkage"; break;
301 case GlobalValue::ExternalLinkage:
302 Out << "GlobalValue::ExternalLinkage"; break;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000303 case GlobalValue::ExternalWeakLinkage:
304 Out << "GlobalValue::ExternalWeakLinkage"; break;
305 case GlobalValue::CommonLinkage:
306 Out << "GlobalValue::CommonLinkage"; break;
307 }
308}
309
310void CppWriter::printVisibilityType(GlobalValue::VisibilityTypes VisType) {
311 switch (VisType) {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000312 case GlobalValue::DefaultVisibility:
313 Out << "GlobalValue::DefaultVisibility";
314 break;
315 case GlobalValue::HiddenVisibility:
316 Out << "GlobalValue::HiddenVisibility";
317 break;
318 case GlobalValue::ProtectedVisibility:
319 Out << "GlobalValue::ProtectedVisibility";
320 break;
321 }
322}
323
Nico Rieck7157bb72014-01-14 15:22:47 +0000324void CppWriter::printDLLStorageClassType(
325 GlobalValue::DLLStorageClassTypes DSCType) {
326 switch (DSCType) {
327 case GlobalValue::DefaultStorageClass:
328 Out << "GlobalValue::DefaultStorageClass";
329 break;
330 case GlobalValue::DLLImportStorageClass:
331 Out << "GlobalValue::DLLImportStorageClass";
332 break;
333 case GlobalValue::DLLExportStorageClass:
334 Out << "GlobalValue::DLLExportStorageClass";
335 break;
336 }
337}
338
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000339void CppWriter::printThreadLocalMode(GlobalVariable::ThreadLocalMode TLM) {
340 switch (TLM) {
341 case GlobalVariable::NotThreadLocal:
342 Out << "GlobalVariable::NotThreadLocal";
343 break;
344 case GlobalVariable::GeneralDynamicTLSModel:
345 Out << "GlobalVariable::GeneralDynamicTLSModel";
346 break;
347 case GlobalVariable::LocalDynamicTLSModel:
348 Out << "GlobalVariable::LocalDynamicTLSModel";
349 break;
350 case GlobalVariable::InitialExecTLSModel:
351 Out << "GlobalVariable::InitialExecTLSModel";
352 break;
353 case GlobalVariable::LocalExecTLSModel:
354 Out << "GlobalVariable::LocalExecTLSModel";
355 break;
356 }
357}
358
Chris Lattnera0b8c902010-06-21 23:12:56 +0000359// printEscapedString - Print each character of the specified string, escaping
360// it if it is not printable or if it is an escape char.
361void CppWriter::printEscapedString(const std::string &Str) {
362 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
363 unsigned char C = Str[i];
364 if (isprint(C) && C != '"' && C != '\\') {
365 Out << C;
366 } else {
367 Out << "\\x"
368 << (char) ((C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'))
369 << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
370 }
371 }
372}
373
Chris Lattner229907c2011-07-18 04:54:35 +0000374std::string CppWriter::getCppName(Type* Ty) {
Rafael Espindola08013342013-12-07 19:34:20 +0000375 switch (Ty->getTypeID()) {
376 default:
377 break;
378 case Type::VoidTyID:
Chris Lattnera0b8c902010-06-21 23:12:56 +0000379 return "Type::getVoidTy(mod->getContext())";
Rafael Espindola08013342013-12-07 19:34:20 +0000380 case Type::IntegerTyID: {
381 unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
382 return "IntegerType::get(mod->getContext(), " + utostr(BitWidth) + ")";
383 }
384 case Type::X86_FP80TyID:
385 return "Type::getX86_FP80Ty(mod->getContext())";
386 case Type::FloatTyID:
387 return "Type::getFloatTy(mod->getContext())";
388 case Type::DoubleTyID:
389 return "Type::getDoubleTy(mod->getContext())";
390 case Type::LabelTyID:
391 return "Type::getLabelTy(mod->getContext())";
392 case Type::X86_MMXTyID:
393 return "Type::getX86_MMXTy(mod->getContext())";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000394 }
395
Chris Lattnera0b8c902010-06-21 23:12:56 +0000396 // Now, see if we've seen the type before and return that
397 TypeMap::iterator I = TypeNames.find(Ty);
398 if (I != TypeNames.end())
399 return I->second;
400
401 // Okay, let's build a new name for this type. Start with a prefix
Craig Topper062a2ba2014-04-25 05:30:21 +0000402 const char* prefix = nullptr;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000403 switch (Ty->getTypeID()) {
404 case Type::FunctionTyID: prefix = "FuncTy_"; break;
405 case Type::StructTyID: prefix = "StructTy_"; break;
406 case Type::ArrayTyID: prefix = "ArrayTy_"; break;
407 case Type::PointerTyID: prefix = "PointerTy_"; break;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000408 case Type::VectorTyID: prefix = "VectorTy_"; break;
409 default: prefix = "OtherTy_"; break; // prevent breakage
Anton Korobeynikov78695032008-04-23 22:29:24 +0000410 }
411
Chris Lattnera0b8c902010-06-21 23:12:56 +0000412 // See if the type has a name in the symboltable and build accordingly
Chris Lattnera0b8c902010-06-21 23:12:56 +0000413 std::string name;
Chris Lattner229907c2011-07-18 04:54:35 +0000414 if (StructType *STy = dyn_cast<StructType>(Ty))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000415 if (STy->hasName())
416 name = STy->getName();
417
418 if (name.empty())
419 name = utostr(uniqueNum++);
420
421 name = std::string(prefix) + name;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000422 sanitize(name);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000423
Chris Lattnera0b8c902010-06-21 23:12:56 +0000424 // Save the name
425 return TypeNames[Ty] = name;
426}
427
Chris Lattner229907c2011-07-18 04:54:35 +0000428void CppWriter::printCppName(Type* Ty) {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000429 printEscapedString(getCppName(Ty));
430}
431
432std::string CppWriter::getCppName(const Value* val) {
433 std::string name;
434 ValueMap::iterator I = ValueNames.find(val);
435 if (I != ValueNames.end() && I->first == val)
436 return I->second;
437
438 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(val)) {
439 name = std::string("gvar_") +
440 getTypePrefix(GV->getType()->getElementType());
441 } else if (isa<Function>(val)) {
442 name = std::string("func_");
443 } else if (const Constant* C = dyn_cast<Constant>(val)) {
444 name = std::string("const_") + getTypePrefix(C->getType());
445 } else if (const Argument* Arg = dyn_cast<Argument>(val)) {
446 if (is_inline) {
447 unsigned argNum = std::distance(Arg->getParent()->arg_begin(),
448 Function::const_arg_iterator(Arg)) + 1;
449 name = std::string("arg_") + utostr(argNum);
450 NameSet::iterator NI = UsedNames.find(name);
451 if (NI != UsedNames.end())
452 name += std::string("_") + utostr(uniqueNum++);
453 UsedNames.insert(name);
454 return ValueNames[val] = name;
Anton Korobeynikov78695032008-04-23 22:29:24 +0000455 } else {
456 name = getTypePrefix(val->getType());
457 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000458 } else {
459 name = getTypePrefix(val->getType());
Anton Korobeynikov78695032008-04-23 22:29:24 +0000460 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000461 if (val->hasName())
462 name += val->getName();
463 else
464 name += utostr(uniqueNum++);
465 sanitize(name);
466 NameSet::iterator NI = UsedNames.find(name);
467 if (NI != UsedNames.end())
468 name += std::string("_") + utostr(uniqueNum++);
469 UsedNames.insert(name);
470 return ValueNames[val] = name;
471}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000472
Chris Lattnera0b8c902010-06-21 23:12:56 +0000473void CppWriter::printCppName(const Value* val) {
474 printEscapedString(getCppName(val));
475}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000476
Bill Wendlinge94d8432012-12-07 23:16:57 +0000477void CppWriter::printAttributes(const AttributeSet &PAL,
Chris Lattnera0b8c902010-06-21 23:12:56 +0000478 const std::string &name) {
Bill Wendlinge94d8432012-12-07 23:16:57 +0000479 Out << "AttributeSet " << name << "_PAL;";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000480 nl(Out);
481 if (!PAL.isEmpty()) {
482 Out << '{'; in(); nl(Out);
Bill Wendlingcc1fc942013-01-27 01:22:51 +0000483 Out << "SmallVector<AttributeSet, 4> Attrs;"; nl(Out);
484 Out << "AttributeSet PAS;"; in(); nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000485 for (unsigned i = 0; i < PAL.getNumSlots(); ++i) {
Bill Wendling86492832013-01-25 21:46:52 +0000486 unsigned index = PAL.getSlotIndex(i);
Bill Wendling57625a42013-01-25 23:09:36 +0000487 AttrBuilder attrs(PAL.getSlotAttributes(i), index);
Bill Wendlingcc1fc942013-01-27 01:22:51 +0000488 Out << "{"; in(); nl(Out);
489 Out << "AttrBuilder B;"; nl(Out);
Bill Wendlingbbcdf4e2012-10-10 07:36:45 +0000490
Bill Wendlingcc1fc942013-01-27 01:22:51 +0000491#define HANDLE_ATTR(X) \
492 if (attrs.contains(Attribute::X)) { \
493 Out << "B.addAttribute(Attribute::" #X ");"; nl(Out); \
494 attrs.removeAttribute(Attribute::X); \
495 }
Bill Wendlingbbcdf4e2012-10-10 07:36:45 +0000496
Chris Lattnera0b8c902010-06-21 23:12:56 +0000497 HANDLE_ATTR(SExt);
498 HANDLE_ATTR(ZExt);
499 HANDLE_ATTR(NoReturn);
500 HANDLE_ATTR(InReg);
501 HANDLE_ATTR(StructRet);
502 HANDLE_ATTR(NoUnwind);
503 HANDLE_ATTR(NoAlias);
504 HANDLE_ATTR(ByVal);
Reid Klecknera534a382013-12-19 02:14:12 +0000505 HANDLE_ATTR(InAlloca);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000506 HANDLE_ATTR(Nest);
507 HANDLE_ATTR(ReadNone);
508 HANDLE_ATTR(ReadOnly);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000509 HANDLE_ATTR(NoInline);
510 HANDLE_ATTR(AlwaysInline);
Andrea Di Biagio377496b2013-08-23 11:53:55 +0000511 HANDLE_ATTR(OptimizeNone);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000512 HANDLE_ATTR(OptimizeForSize);
513 HANDLE_ATTR(StackProtect);
514 HANDLE_ATTR(StackProtectReq);
Bill Wendlingd154e2832013-01-23 06:41:41 +0000515 HANDLE_ATTR(StackProtectStrong);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000516 HANDLE_ATTR(SafeStack);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000517 HANDLE_ATTR(NoCapture);
Eli Friedmanba9b25a2010-07-16 18:47:20 +0000518 HANDLE_ATTR(NoRedZone);
519 HANDLE_ATTR(NoImplicitFloat);
520 HANDLE_ATTR(Naked);
521 HANDLE_ATTR(InlineHint);
Rafael Espindolacc349c82011-10-03 14:45:37 +0000522 HANDLE_ATTR(ReturnsTwice);
Bill Wendling413bff12011-08-09 00:47:30 +0000523 HANDLE_ATTR(UWTable);
524 HANDLE_ATTR(NonLazyBind);
Quentin Colombet5799e9f2012-10-30 16:32:52 +0000525 HANDLE_ATTR(MinSize);
Chris Lattner1a579352009-01-13 07:22:22 +0000526#undef HANDLE_ATTR
Bill Wendlingcc1fc942013-01-27 01:22:51 +0000527
528 if (attrs.contains(Attribute::StackAlignment)) {
529 Out << "B.addStackAlignmentAttr(" << attrs.getStackAlignment()<<')';
530 nl(Out);
531 attrs.removeAttribute(Attribute::StackAlignment);
532 }
533
Bill Wendlingcc1fc942013-01-27 01:22:51 +0000534 Out << "PAS = AttributeSet::get(mod->getContext(), ";
535 if (index == ~0U)
536 Out << "~0U,";
537 else
538 Out << index << "U,";
539 Out << " B);"; out(); nl(Out);
540 Out << "}"; out(); nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000541 nl(Out);
Bill Wendlingcc1fc942013-01-27 01:22:51 +0000542 Out << "Attrs.push_back(PAS);"; nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000543 }
Bill Wendlinge94d8432012-12-07 23:16:57 +0000544 Out << name << "_PAL = AttributeSet::get(mod->getContext(), Attrs);";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000545 nl(Out);
546 out(); nl(Out);
547 Out << '}'; nl(Out);
548 }
549}
550
Chris Lattner229907c2011-07-18 04:54:35 +0000551void CppWriter::printType(Type* Ty) {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000552 // We don't print definitions for primitive types
Rafael Espindola08013342013-12-07 19:34:20 +0000553 if (Ty->isFloatingPointTy() || Ty->isX86_MMXTy() || Ty->isIntegerTy() ||
554 Ty->isLabelTy() || Ty->isMetadataTy() || Ty->isVoidTy())
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000555 return;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000556
557 // If we already defined this type, we don't need to define it again.
558 if (DefinedTypes.find(Ty) != DefinedTypes.end())
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000559 return;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000560
561 // Everything below needs the name for the type so get it now.
562 std::string typeName(getCppName(Ty));
563
Chris Lattnera0b8c902010-06-21 23:12:56 +0000564 // Print the type definition
565 switch (Ty->getTypeID()) {
566 case Type::FunctionTyID: {
Chris Lattner229907c2011-07-18 04:54:35 +0000567 FunctionType* FT = cast<FunctionType>(Ty);
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000568 Out << "std::vector<Type*>" << typeName << "_args;";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000569 nl(Out);
570 FunctionType::param_iterator PI = FT->param_begin();
571 FunctionType::param_iterator PE = FT->param_end();
572 for (; PI != PE; ++PI) {
Chris Lattner229907c2011-07-18 04:54:35 +0000573 Type* argTy = static_cast<Type*>(*PI);
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000574 printType(argTy);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000575 std::string argName(getCppName(argTy));
576 Out << typeName << "_args.push_back(" << argName;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000577 Out << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000578 nl(Out);
579 }
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000580 printType(FT->getReturnType());
Chris Lattnera0b8c902010-06-21 23:12:56 +0000581 std::string retTypeName(getCppName(FT->getReturnType()));
582 Out << "FunctionType* " << typeName << " = FunctionType::get(";
583 in(); nl(Out) << "/*Result=*/" << retTypeName;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000584 Out << ",";
585 nl(Out) << "/*Params=*/" << typeName << "_args,";
586 nl(Out) << "/*isVarArg=*/" << (FT->isVarArg() ? "true" : "false") << ");";
587 out();
Anton Korobeynikov78695032008-04-23 22:29:24 +0000588 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000589 break;
Anton Korobeynikov78695032008-04-23 22:29:24 +0000590 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000591 case Type::StructTyID: {
Chris Lattner229907c2011-07-18 04:54:35 +0000592 StructType* ST = cast<StructType>(Ty);
Chris Lattner01beceb2011-08-12 18:07:07 +0000593 if (!ST->isLiteral()) {
Nicolas Geoffraya0263e72011-10-08 11:56:36 +0000594 Out << "StructType *" << typeName << " = mod->getTypeByName(\"";
595 printEscapedString(ST->getName());
596 Out << "\");";
597 nl(Out);
598 Out << "if (!" << typeName << ") {";
599 nl(Out);
600 Out << typeName << " = ";
Chris Lattner01beceb2011-08-12 18:07:07 +0000601 Out << "StructType::create(mod->getContext(), \"";
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000602 printEscapedString(ST->getName());
603 Out << "\");";
604 nl(Out);
Nicolas Geoffraya0263e72011-10-08 11:56:36 +0000605 Out << "}";
606 nl(Out);
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000607 // Indicate that this type is now defined.
608 DefinedTypes.insert(Ty);
609 }
610
611 Out << "std::vector<Type*>" << typeName << "_fields;";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000612 nl(Out);
613 StructType::element_iterator EI = ST->element_begin();
614 StructType::element_iterator EE = ST->element_end();
615 for (; EI != EE; ++EI) {
Chris Lattner229907c2011-07-18 04:54:35 +0000616 Type* fieldTy = static_cast<Type*>(*EI);
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000617 printType(fieldTy);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000618 std::string fieldName(getCppName(fieldTy));
619 Out << typeName << "_fields.push_back(" << fieldName;
Chris Lattnera0b8c902010-06-21 23:12:56 +0000620 Out << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000621 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000622 }
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000623
Chris Lattner01beceb2011-08-12 18:07:07 +0000624 if (ST->isLiteral()) {
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000625 Out << "StructType *" << typeName << " = ";
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000626 Out << "StructType::get(" << "mod->getContext(), ";
627 } else {
Nicolas Geoffraya0263e72011-10-08 11:56:36 +0000628 Out << "if (" << typeName << "->isOpaque()) {";
629 nl(Out);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000630 Out << typeName << "->setBody(";
631 }
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000632
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000633 Out << typeName << "_fields, /*isPacked=*/"
Chris Lattnera0b8c902010-06-21 23:12:56 +0000634 << (ST->isPacked() ? "true" : "false") << ");";
635 nl(Out);
Nicolas Geoffraya0263e72011-10-08 11:56:36 +0000636 if (!ST->isLiteral()) {
637 Out << "}";
638 nl(Out);
639 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000640 break;
641 }
642 case Type::ArrayTyID: {
Chris Lattner229907c2011-07-18 04:54:35 +0000643 ArrayType* AT = cast<ArrayType>(Ty);
644 Type* ET = AT->getElementType();
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000645 printType(ET);
646 if (DefinedTypes.find(Ty) == DefinedTypes.end()) {
647 std::string elemName(getCppName(ET));
648 Out << "ArrayType* " << typeName << " = ArrayType::get("
Benjamin Kramerdba7ee92015-05-28 11:24:24 +0000649 << elemName << ", " << AT->getNumElements() << ");";
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000650 nl(Out);
651 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000652 break;
653 }
654 case Type::PointerTyID: {
Chris Lattner229907c2011-07-18 04:54:35 +0000655 PointerType* PT = cast<PointerType>(Ty);
656 Type* ET = PT->getElementType();
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000657 printType(ET);
658 if (DefinedTypes.find(Ty) == DefinedTypes.end()) {
659 std::string elemName(getCppName(ET));
660 Out << "PointerType* " << typeName << " = PointerType::get("
Benjamin Kramerdba7ee92015-05-28 11:24:24 +0000661 << elemName << ", " << PT->getAddressSpace() << ");";
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000662 nl(Out);
663 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000664 break;
665 }
666 case Type::VectorTyID: {
Chris Lattner229907c2011-07-18 04:54:35 +0000667 VectorType* PT = cast<VectorType>(Ty);
668 Type* ET = PT->getElementType();
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000669 printType(ET);
670 if (DefinedTypes.find(Ty) == DefinedTypes.end()) {
671 std::string elemName(getCppName(ET));
672 Out << "VectorType* " << typeName << " = VectorType::get("
Benjamin Kramerdba7ee92015-05-28 11:24:24 +0000673 << elemName << ", " << PT->getNumElements() << ");";
Nicolas Geoffrayf470b5b2011-07-14 21:04:35 +0000674 nl(Out);
675 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000676 break;
677 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000678 default:
679 error("Invalid TypeID");
680 }
681
Chris Lattnera0b8c902010-06-21 23:12:56 +0000682 // Indicate that this type is now defined.
683 DefinedTypes.insert(Ty);
684
Chris Lattnera0b8c902010-06-21 23:12:56 +0000685 // Finally, separate the type definition from other with a newline.
686 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000687}
688
689void CppWriter::printTypes(const Module* M) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000690 // Add all of the global variables to the value table.
Chris Lattnera0b8c902010-06-21 23:12:56 +0000691 for (Module::const_global_iterator I = TheModule->global_begin(),
692 E = TheModule->global_end(); I != E; ++I) {
693 if (I->hasInitializer())
694 printType(I->getInitializer()->getType());
695 printType(I->getType());
696 }
697
698 // Add all the functions to the table
699 for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
700 FI != FE; ++FI) {
701 printType(FI->getReturnType());
702 printType(FI->getFunctionType());
703 // Add all the function arguments
704 for (Function::const_arg_iterator AI = FI->arg_begin(),
705 AE = FI->arg_end(); AI != AE; ++AI) {
706 printType(AI->getType());
707 }
708
709 // Add all of the basic blocks and instructions
710 for (Function::const_iterator BB = FI->begin(),
711 E = FI->end(); BB != E; ++BB) {
712 printType(BB->getType());
713 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
714 ++I) {
715 printType(I->getType());
716 for (unsigned i = 0; i < I->getNumOperands(); ++i)
717 printType(I->getOperand(i)->getType());
Anton Korobeynikov78695032008-04-23 22:29:24 +0000718 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000719 }
720 }
721}
722
723
724// printConstant - Print out a constant pool entry...
725void CppWriter::printConstant(const Constant *CV) {
726 // First, if the constant is actually a GlobalValue (variable or function)
727 // or its already in the constant list then we've printed it already and we
728 // can just return.
729 if (isa<GlobalValue>(CV) || ValueNames.find(CV) != ValueNames.end())
730 return;
731
732 std::string constName(getCppName(CV));
733 std::string typeName(getCppName(CV->getType()));
734
Chris Lattnera0b8c902010-06-21 23:12:56 +0000735 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
736 std::string constValue = CI->getValue().toString(10, true);
737 Out << "ConstantInt* " << constName
738 << " = ConstantInt::get(mod->getContext(), APInt("
739 << cast<IntegerType>(CI->getType())->getBitWidth()
740 << ", StringRef(\"" << constValue << "\"), 10));";
741 } else if (isa<ConstantAggregateZero>(CV)) {
742 Out << "ConstantAggregateZero* " << constName
743 << " = ConstantAggregateZero::get(" << typeName << ");";
744 } else if (isa<ConstantPointerNull>(CV)) {
745 Out << "ConstantPointerNull* " << constName
746 << " = ConstantPointerNull::get(" << typeName << ");";
747 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
748 Out << "ConstantFP* " << constName << " = ";
749 printCFP(CFP);
750 Out << ";";
751 } else if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000752 Out << "std::vector<Constant*> " << constName << "_elems;";
753 nl(Out);
754 unsigned N = CA->getNumOperands();
755 for (unsigned i = 0; i < N; ++i) {
756 printConstant(CA->getOperand(i)); // recurse to print operands
757 Out << constName << "_elems.push_back("
758 << getCppName(CA->getOperand(i)) << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000759 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +0000760 }
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000761 Out << "Constant* " << constName << " = ConstantArray::get("
762 << typeName << ", " << constName << "_elems);";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000763 } else if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
764 Out << "std::vector<Constant*> " << constName << "_fields;";
765 nl(Out);
766 unsigned N = CS->getNumOperands();
767 for (unsigned i = 0; i < N; i++) {
768 printConstant(CS->getOperand(i));
769 Out << constName << "_fields.push_back("
770 << getCppName(CS->getOperand(i)) << ");";
771 nl(Out);
772 }
773 Out << "Constant* " << constName << " = ConstantStruct::get("
774 << typeName << ", " << constName << "_fields);";
Duncan Sandsefabc252012-02-05 14:16:09 +0000775 } else if (const ConstantVector *CVec = dyn_cast<ConstantVector>(CV)) {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000776 Out << "std::vector<Constant*> " << constName << "_elems;";
777 nl(Out);
Duncan Sandsefabc252012-02-05 14:16:09 +0000778 unsigned N = CVec->getNumOperands();
Chris Lattnera0b8c902010-06-21 23:12:56 +0000779 for (unsigned i = 0; i < N; ++i) {
Duncan Sandsefabc252012-02-05 14:16:09 +0000780 printConstant(CVec->getOperand(i));
Chris Lattnera0b8c902010-06-21 23:12:56 +0000781 Out << constName << "_elems.push_back("
Duncan Sandsefabc252012-02-05 14:16:09 +0000782 << getCppName(CVec->getOperand(i)) << ");";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000783 nl(Out);
784 }
785 Out << "Constant* " << constName << " = ConstantVector::get("
786 << typeName << ", " << constName << "_elems);";
787 } else if (isa<UndefValue>(CV)) {
788 Out << "UndefValue* " << constName << " = UndefValue::get("
789 << typeName << ");";
Chris Lattner139822f2012-01-24 14:17:05 +0000790 } else if (const ConstantDataSequential *CDS =
791 dyn_cast<ConstantDataSequential>(CV)) {
792 if (CDS->isString()) {
793 Out << "Constant *" << constName <<
794 " = ConstantDataArray::getString(mod->getContext(), \"";
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000795 StringRef Str = CDS->getAsString();
Chris Lattner139822f2012-01-24 14:17:05 +0000796 bool nullTerminate = false;
797 if (Str.back() == 0) {
798 Str = Str.drop_back();
799 nullTerminate = true;
800 }
801 printEscapedString(Str);
802 // Determine if we want null termination or not.
803 if (nullTerminate)
804 Out << "\", true);";
805 else
806 Out << "\", false);";// No null terminator
807 } else {
808 // TODO: Could generate more efficient code generating CDS calls instead.
809 Out << "std::vector<Constant*> " << constName << "_elems;";
810 nl(Out);
811 for (unsigned i = 0; i != CDS->getNumElements(); ++i) {
812 Constant *Elt = CDS->getElementAsConstant(i);
813 printConstant(Elt);
814 Out << constName << "_elems.push_back(" << getCppName(Elt) << ");";
815 nl(Out);
816 }
817 Out << "Constant* " << constName;
818
819 if (isa<ArrayType>(CDS->getType()))
820 Out << " = ConstantArray::get(";
821 else
822 Out << " = ConstantVector::get(";
823 Out << typeName << ", " << constName << "_elems);";
824 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000825 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
826 if (CE->getOpcode() == Instruction::GetElementPtr) {
827 Out << "std::vector<Constant*> " << constName << "_indices;";
828 nl(Out);
829 printConstant(CE->getOperand(0));
830 for (unsigned i = 1; i < CE->getNumOperands(); ++i ) {
831 printConstant(CE->getOperand(i));
832 Out << constName << "_indices.push_back("
833 << getCppName(CE->getOperand(i)) << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000834 nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000835 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000836 Out << "Constant* " << constName
837 << " = ConstantExpr::getGetElementPtr("
838 << getCppName(CE->getOperand(0)) << ", "
Nicolas Geoffray6820c1e2011-07-21 20:59:21 +0000839 << constName << "_indices);";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000840 } else if (CE->isCast()) {
841 printConstant(CE->getOperand(0));
842 Out << "Constant* " << constName << " = ConstantExpr::getCast(";
843 switch (CE->getOpcode()) {
844 default: llvm_unreachable("Invalid cast opcode");
845 case Instruction::Trunc: Out << "Instruction::Trunc"; break;
846 case Instruction::ZExt: Out << "Instruction::ZExt"; break;
847 case Instruction::SExt: Out << "Instruction::SExt"; break;
848 case Instruction::FPTrunc: Out << "Instruction::FPTrunc"; break;
849 case Instruction::FPExt: Out << "Instruction::FPExt"; break;
850 case Instruction::FPToUI: Out << "Instruction::FPToUI"; break;
851 case Instruction::FPToSI: Out << "Instruction::FPToSI"; break;
852 case Instruction::UIToFP: Out << "Instruction::UIToFP"; break;
853 case Instruction::SIToFP: Out << "Instruction::SIToFP"; break;
854 case Instruction::PtrToInt: Out << "Instruction::PtrToInt"; break;
855 case Instruction::IntToPtr: Out << "Instruction::IntToPtr"; break;
856 case Instruction::BitCast: Out << "Instruction::BitCast"; break;
857 }
858 Out << ", " << getCppName(CE->getOperand(0)) << ", "
859 << getCppName(CE->getType()) << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000860 } else {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000861 unsigned N = CE->getNumOperands();
862 for (unsigned i = 0; i < N; ++i ) {
863 printConstant(CE->getOperand(i));
864 }
865 Out << "Constant* " << constName << " = ConstantExpr::";
866 switch (CE->getOpcode()) {
867 case Instruction::Add: Out << "getAdd("; break;
868 case Instruction::FAdd: Out << "getFAdd("; break;
869 case Instruction::Sub: Out << "getSub("; break;
870 case Instruction::FSub: Out << "getFSub("; break;
871 case Instruction::Mul: Out << "getMul("; break;
872 case Instruction::FMul: Out << "getFMul("; break;
873 case Instruction::UDiv: Out << "getUDiv("; break;
874 case Instruction::SDiv: Out << "getSDiv("; break;
875 case Instruction::FDiv: Out << "getFDiv("; break;
876 case Instruction::URem: Out << "getURem("; break;
877 case Instruction::SRem: Out << "getSRem("; break;
878 case Instruction::FRem: Out << "getFRem("; break;
879 case Instruction::And: Out << "getAnd("; break;
880 case Instruction::Or: Out << "getOr("; break;
881 case Instruction::Xor: Out << "getXor("; break;
882 case Instruction::ICmp:
883 Out << "getICmp(ICmpInst::ICMP_";
884 switch (CE->getPredicate()) {
885 case ICmpInst::ICMP_EQ: Out << "EQ"; break;
886 case ICmpInst::ICMP_NE: Out << "NE"; break;
887 case ICmpInst::ICMP_SLT: Out << "SLT"; break;
888 case ICmpInst::ICMP_ULT: Out << "ULT"; break;
889 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
890 case ICmpInst::ICMP_UGT: Out << "UGT"; break;
891 case ICmpInst::ICMP_SLE: Out << "SLE"; break;
892 case ICmpInst::ICMP_ULE: Out << "ULE"; break;
893 case ICmpInst::ICMP_SGE: Out << "SGE"; break;
894 case ICmpInst::ICMP_UGE: Out << "UGE"; break;
895 default: error("Invalid ICmp Predicate");
896 }
897 break;
898 case Instruction::FCmp:
899 Out << "getFCmp(FCmpInst::FCMP_";
900 switch (CE->getPredicate()) {
901 case FCmpInst::FCMP_FALSE: Out << "FALSE"; break;
902 case FCmpInst::FCMP_ORD: Out << "ORD"; break;
903 case FCmpInst::FCMP_UNO: Out << "UNO"; break;
904 case FCmpInst::FCMP_OEQ: Out << "OEQ"; break;
905 case FCmpInst::FCMP_UEQ: Out << "UEQ"; break;
906 case FCmpInst::FCMP_ONE: Out << "ONE"; break;
907 case FCmpInst::FCMP_UNE: Out << "UNE"; break;
908 case FCmpInst::FCMP_OLT: Out << "OLT"; break;
909 case FCmpInst::FCMP_ULT: Out << "ULT"; break;
910 case FCmpInst::FCMP_OGT: Out << "OGT"; break;
911 case FCmpInst::FCMP_UGT: Out << "UGT"; break;
912 case FCmpInst::FCMP_OLE: Out << "OLE"; break;
913 case FCmpInst::FCMP_ULE: Out << "ULE"; break;
914 case FCmpInst::FCMP_OGE: Out << "OGE"; break;
915 case FCmpInst::FCMP_UGE: Out << "UGE"; break;
916 case FCmpInst::FCMP_TRUE: Out << "TRUE"; break;
917 default: error("Invalid FCmp Predicate");
918 }
919 break;
920 case Instruction::Shl: Out << "getShl("; break;
921 case Instruction::LShr: Out << "getLShr("; break;
922 case Instruction::AShr: Out << "getAShr("; break;
923 case Instruction::Select: Out << "getSelect("; break;
924 case Instruction::ExtractElement: Out << "getExtractElement("; break;
925 case Instruction::InsertElement: Out << "getInsertElement("; break;
926 case Instruction::ShuffleVector: Out << "getShuffleVector("; break;
927 default:
928 error("Invalid constant expression");
929 break;
930 }
931 Out << getCppName(CE->getOperand(0));
932 for (unsigned i = 1; i < CE->getNumOperands(); ++i)
933 Out << ", " << getCppName(CE->getOperand(i));
934 Out << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000935 }
Chris Lattner64960f52010-06-21 23:19:36 +0000936 } else if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) {
937 Out << "Constant* " << constName << " = ";
938 Out << "BlockAddress::get(" << getOpName(BA->getBasicBlock()) << ");";
Chris Lattnera0b8c902010-06-21 23:12:56 +0000939 } else {
940 error("Bad Constant");
941 Out << "Constant* " << constName << " = 0; ";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000942 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000943 nl(Out);
944}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000945
Chris Lattnera0b8c902010-06-21 23:12:56 +0000946void CppWriter::printConstants(const Module* M) {
947 // Traverse all the global variables looking for constant initializers
948 for (Module::const_global_iterator I = TheModule->global_begin(),
949 E = TheModule->global_end(); I != E; ++I)
950 if (I->hasInitializer())
951 printConstant(I->getInitializer());
Anton Korobeynikov78695032008-04-23 22:29:24 +0000952
Chris Lattnera0b8c902010-06-21 23:12:56 +0000953 // Traverse the LLVM functions looking for constants
954 for (Module::const_iterator FI = TheModule->begin(), FE = TheModule->end();
955 FI != FE; ++FI) {
956 // Add all of the basic blocks and instructions
957 for (Function::const_iterator BB = FI->begin(),
958 E = FI->end(); BB != E; ++BB) {
959 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;
960 ++I) {
961 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
962 if (Constant* C = dyn_cast<Constant>(I->getOperand(i))) {
963 printConstant(C);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000964 }
965 }
966 }
967 }
968 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000969}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000970
Chris Lattnera0b8c902010-06-21 23:12:56 +0000971void CppWriter::printVariableUses(const GlobalVariable *GV) {
972 nl(Out) << "// Type Definitions";
973 nl(Out);
974 printType(GV->getType());
975 if (GV->hasInitializer()) {
Jay Foad60020682011-06-19 18:37:11 +0000976 const Constant *Init = GV->getInitializer();
Chris Lattnera0b8c902010-06-21 23:12:56 +0000977 printType(Init->getType());
Jay Foad60020682011-06-19 18:37:11 +0000978 if (const Function *F = dyn_cast<Function>(Init)) {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000979 nl(Out)<< "/ Function Declarations"; nl(Out);
980 printFunctionHead(F);
Jay Foad60020682011-06-19 18:37:11 +0000981 } else if (const GlobalVariable* gv = dyn_cast<GlobalVariable>(Init)) {
Chris Lattnera0b8c902010-06-21 23:12:56 +0000982 nl(Out) << "// Global Variable Declarations"; nl(Out);
983 printVariableHead(gv);
984
985 nl(Out) << "// Global Variable Definitions"; nl(Out);
986 printVariableBody(gv);
987 } else {
988 nl(Out) << "// Constant Definitions"; nl(Out);
989 printConstant(Init);
Anton Korobeynikov78695032008-04-23 22:29:24 +0000990 }
991 }
Chris Lattnera0b8c902010-06-21 23:12:56 +0000992}
Anton Korobeynikov78695032008-04-23 22:29:24 +0000993
Chris Lattnera0b8c902010-06-21 23:12:56 +0000994void CppWriter::printVariableHead(const GlobalVariable *GV) {
995 nl(Out) << "GlobalVariable* " << getCppName(GV);
996 if (is_inline) {
997 Out << " = mod->getGlobalVariable(mod->getContext(), ";
Anton Korobeynikov78695032008-04-23 22:29:24 +0000998 printEscapedString(GV->getName());
Chris Lattnera0b8c902010-06-21 23:12:56 +0000999 Out << ", " << getCppName(GV->getType()->getElementType()) << ",true)";
1000 nl(Out) << "if (!" << getCppName(GV) << ") {";
1001 in(); nl(Out) << getCppName(GV);
1002 }
1003 Out << " = new GlobalVariable(/*Module=*/*mod, ";
1004 nl(Out) << "/*Type=*/";
1005 printCppName(GV->getType()->getElementType());
1006 Out << ",";
1007 nl(Out) << "/*isConstant=*/" << (GV->isConstant()?"true":"false");
1008 Out << ",";
1009 nl(Out) << "/*Linkage=*/";
1010 printLinkageType(GV->getLinkage());
1011 Out << ",";
1012 nl(Out) << "/*Initializer=*/0, ";
1013 if (GV->hasInitializer()) {
1014 Out << "// has initializer, specified below";
1015 }
1016 nl(Out) << "/*Name=*/\"";
1017 printEscapedString(GV->getName());
1018 Out << "\");";
1019 nl(Out);
1020
1021 if (GV->hasSection()) {
1022 printCppName(GV);
1023 Out << "->setSection(\"";
1024 printEscapedString(GV->getSection());
Owen Anderson96b491a2009-07-10 16:42:19 +00001025 Out << "\");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001026 nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +00001027 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001028 if (GV->getAlignment()) {
1029 printCppName(GV);
Benjamin Kramerdba7ee92015-05-28 11:24:24 +00001030 Out << "->setAlignment(" << GV->getAlignment() << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001031 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +00001032 }
1033 if (GV->getVisibility() != GlobalValue::DefaultVisibility) {
1034 printCppName(GV);
1035 Out << "->setVisibility(";
1036 printVisibilityType(GV->getVisibility());
1037 Out << ");";
1038 nl(Out);
1039 }
Nico Rieck7157bb72014-01-14 15:22:47 +00001040 if (GV->getDLLStorageClass() != GlobalValue::DefaultStorageClass) {
1041 printCppName(GV);
1042 Out << "->setDLLStorageClass(";
1043 printDLLStorageClassType(GV->getDLLStorageClass());
1044 Out << ");";
1045 nl(Out);
1046 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001047 if (GV->isThreadLocal()) {
1048 printCppName(GV);
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001049 Out << "->setThreadLocalMode(";
1050 printThreadLocalMode(GV->getThreadLocalMode());
1051 Out << ");";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001052 nl(Out);
1053 }
1054 if (is_inline) {
1055 out(); Out << "}"; nl(Out);
1056 }
1057}
1058
1059void CppWriter::printVariableBody(const GlobalVariable *GV) {
1060 if (GV->hasInitializer()) {
1061 printCppName(GV);
1062 Out << "->setInitializer(";
1063 Out << getCppName(GV->getInitializer()) << ");";
1064 nl(Out);
1065 }
1066}
1067
Eli Friedman95031ed2011-09-29 20:21:17 +00001068std::string CppWriter::getOpName(const Value* V) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001069 if (!isa<Instruction>(V) || DefinedValues.find(V) != DefinedValues.end())
1070 return getCppName(V);
1071
1072 // See if its alread in the map of forward references, if so just return the
1073 // name we already set up for it
1074 ForwardRefMap::const_iterator I = ForwardRefs.find(V);
1075 if (I != ForwardRefs.end())
1076 return I->second;
1077
1078 // This is a new forward reference. Generate a unique name for it
1079 std::string result(std::string("fwdref_") + utostr(uniqueNum++));
1080
1081 // Yes, this is a hack. An Argument is the smallest instantiable value that
1082 // we can make as a placeholder for the real value. We'll replace these
1083 // Argument instances later.
1084 Out << "Argument* " << result << " = new Argument("
1085 << getCppName(V->getType()) << ");";
1086 nl(Out);
1087 ForwardRefs[V] = result;
1088 return result;
1089}
1090
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001091static StringRef ConvertAtomicOrdering(AtomicOrdering Ordering) {
1092 switch (Ordering) {
1093 case NotAtomic: return "NotAtomic";
1094 case Unordered: return "Unordered";
1095 case Monotonic: return "Monotonic";
1096 case Acquire: return "Acquire";
1097 case Release: return "Release";
1098 case AcquireRelease: return "AcquireRelease";
1099 case SequentiallyConsistent: return "SequentiallyConsistent";
1100 }
1101 llvm_unreachable("Unknown ordering");
1102}
1103
1104static StringRef ConvertAtomicSynchScope(SynchronizationScope SynchScope) {
1105 switch (SynchScope) {
1106 case SingleThread: return "SingleThread";
1107 case CrossThread: return "CrossThread";
1108 }
1109 llvm_unreachable("Unknown synch scope");
1110}
1111
Chris Lattnera0b8c902010-06-21 23:12:56 +00001112// printInstruction - This member is called for each Instruction in a function.
1113void CppWriter::printInstruction(const Instruction *I,
1114 const std::string& bbname) {
1115 std::string iName(getCppName(I));
1116
1117 // Before we emit this instruction, we need to take care of generating any
1118 // forward references. So, we get the names of all the operands in advance
1119 const unsigned Ops(I->getNumOperands());
1120 std::string* opNames = new std::string[Ops];
Chris Lattner64960f52010-06-21 23:19:36 +00001121 for (unsigned i = 0; i < Ops; i++)
Chris Lattnera0b8c902010-06-21 23:12:56 +00001122 opNames[i] = getOpName(I->getOperand(i));
Anton Korobeynikov78695032008-04-23 22:29:24 +00001123
Chris Lattnera0b8c902010-06-21 23:12:56 +00001124 switch (I->getOpcode()) {
1125 default:
1126 error("Invalid instruction");
1127 break;
Anton Korobeynikov78695032008-04-23 22:29:24 +00001128
Chris Lattnera0b8c902010-06-21 23:12:56 +00001129 case Instruction::Ret: {
1130 const ReturnInst* ret = cast<ReturnInst>(I);
1131 Out << "ReturnInst::Create(mod->getContext(), "
1132 << (ret->getReturnValue() ? opNames[0] + ", " : "") << bbname << ");";
1133 break;
1134 }
1135 case Instruction::Br: {
1136 const BranchInst* br = cast<BranchInst>(I);
1137 Out << "BranchInst::Create(" ;
Chris Lattner64960f52010-06-21 23:19:36 +00001138 if (br->getNumOperands() == 3) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001139 Out << opNames[2] << ", "
Anton Korobeynikov78695032008-04-23 22:29:24 +00001140 << opNames[1] << ", "
Chris Lattnera0b8c902010-06-21 23:12:56 +00001141 << opNames[0] << ", ";
1142
1143 } else if (br->getNumOperands() == 1) {
1144 Out << opNames[0] << ", ";
1145 } else {
1146 error("Branch with 2 operands?");
1147 }
1148 Out << bbname << ");";
1149 break;
1150 }
1151 case Instruction::Switch: {
1152 const SwitchInst *SI = cast<SwitchInst>(I);
1153 Out << "SwitchInst* " << iName << " = SwitchInst::Create("
Eli Friedman95031ed2011-09-29 20:21:17 +00001154 << getOpName(SI->getCondition()) << ", "
1155 << getOpName(SI->getDefaultDest()) << ", "
Chris Lattnera0b8c902010-06-21 23:12:56 +00001156 << SI->getNumCases() << ", " << bbname << ");";
1157 nl(Out);
Stepan Dyatkovskiy97b02fc2012-03-11 06:09:17 +00001158 for (SwitchInst::ConstCaseIt i = SI->case_begin(), e = SI->case_end();
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00001159 i != e; ++i) {
Bob Wilsone4077362013-09-09 19:14:35 +00001160 const ConstantInt* CaseVal = i.getCaseValue();
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00001161 const BasicBlock *BB = i.getCaseSuccessor();
Chris Lattnera0b8c902010-06-21 23:12:56 +00001162 Out << iName << "->addCase("
Eli Friedman95031ed2011-09-29 20:21:17 +00001163 << getOpName(CaseVal) << ", "
1164 << getOpName(BB) << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001165 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +00001166 }
1167 break;
1168 }
1169 case Instruction::IndirectBr: {
1170 const IndirectBrInst *IBI = cast<IndirectBrInst>(I);
1171 Out << "IndirectBrInst *" << iName << " = IndirectBrInst::Create("
1172 << opNames[0] << ", " << IBI->getNumDestinations() << ");";
1173 nl(Out);
1174 for (unsigned i = 1; i != IBI->getNumOperands(); ++i) {
1175 Out << iName << "->addDestination(" << opNames[i] << ");";
1176 nl(Out);
1177 }
1178 break;
1179 }
Bill Wendlingf891bf82011-07-31 06:30:59 +00001180 case Instruction::Resume: {
Eli Friedman410393a2013-09-24 00:36:09 +00001181 Out << "ResumeInst::Create(" << opNames[0] << ", " << bbname << ");";
Bill Wendlingf891bf82011-07-31 06:30:59 +00001182 break;
1183 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001184 case Instruction::Invoke: {
1185 const InvokeInst* inv = cast<InvokeInst>(I);
1186 Out << "std::vector<Value*> " << iName << "_params;";
1187 nl(Out);
1188 for (unsigned i = 0; i < inv->getNumArgOperands(); ++i) {
1189 Out << iName << "_params.push_back("
1190 << getOpName(inv->getArgOperand(i)) << ");";
1191 nl(Out);
1192 }
1193 // FIXME: This shouldn't use magic numbers -3, -2, and -1.
1194 Out << "InvokeInst *" << iName << " = InvokeInst::Create("
Eli Friedman410393a2013-09-24 00:36:09 +00001195 << getOpName(inv->getCalledValue()) << ", "
Chris Lattnera0b8c902010-06-21 23:12:56 +00001196 << getOpName(inv->getNormalDest()) << ", "
1197 << getOpName(inv->getUnwindDest()) << ", "
Nick Lewyckydf06b6e2011-09-05 18:50:59 +00001198 << iName << "_params, \"";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001199 printEscapedString(inv->getName());
1200 Out << "\", " << bbname << ");";
1201 nl(Out) << iName << "->setCallingConv(";
1202 printCallingConv(inv->getCallingConv());
1203 Out << ");";
1204 printAttributes(inv->getAttributes(), iName);
1205 Out << iName << "->setAttributes(" << iName << "_PAL);";
1206 nl(Out);
1207 break;
1208 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001209 case Instruction::Unreachable: {
1210 Out << "new UnreachableInst("
1211 << "mod->getContext(), "
1212 << bbname << ");";
1213 break;
1214 }
1215 case Instruction::Add:
1216 case Instruction::FAdd:
1217 case Instruction::Sub:
1218 case Instruction::FSub:
1219 case Instruction::Mul:
1220 case Instruction::FMul:
1221 case Instruction::UDiv:
1222 case Instruction::SDiv:
1223 case Instruction::FDiv:
1224 case Instruction::URem:
1225 case Instruction::SRem:
1226 case Instruction::FRem:
1227 case Instruction::And:
1228 case Instruction::Or:
1229 case Instruction::Xor:
1230 case Instruction::Shl:
1231 case Instruction::LShr:
1232 case Instruction::AShr:{
1233 Out << "BinaryOperator* " << iName << " = BinaryOperator::Create(";
1234 switch (I->getOpcode()) {
1235 case Instruction::Add: Out << "Instruction::Add"; break;
1236 case Instruction::FAdd: Out << "Instruction::FAdd"; break;
1237 case Instruction::Sub: Out << "Instruction::Sub"; break;
1238 case Instruction::FSub: Out << "Instruction::FSub"; break;
1239 case Instruction::Mul: Out << "Instruction::Mul"; break;
1240 case Instruction::FMul: Out << "Instruction::FMul"; break;
1241 case Instruction::UDiv:Out << "Instruction::UDiv"; break;
1242 case Instruction::SDiv:Out << "Instruction::SDiv"; break;
1243 case Instruction::FDiv:Out << "Instruction::FDiv"; break;
1244 case Instruction::URem:Out << "Instruction::URem"; break;
1245 case Instruction::SRem:Out << "Instruction::SRem"; break;
1246 case Instruction::FRem:Out << "Instruction::FRem"; break;
1247 case Instruction::And: Out << "Instruction::And"; break;
1248 case Instruction::Or: Out << "Instruction::Or"; break;
1249 case Instruction::Xor: Out << "Instruction::Xor"; break;
1250 case Instruction::Shl: Out << "Instruction::Shl"; break;
1251 case Instruction::LShr:Out << "Instruction::LShr"; break;
1252 case Instruction::AShr:Out << "Instruction::AShr"; break;
1253 default: Out << "Instruction::BadOpCode"; break;
1254 }
1255 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1256 printEscapedString(I->getName());
1257 Out << "\", " << bbname << ");";
1258 break;
1259 }
1260 case Instruction::FCmp: {
1261 Out << "FCmpInst* " << iName << " = new FCmpInst(*" << bbname << ", ";
1262 switch (cast<FCmpInst>(I)->getPredicate()) {
1263 case FCmpInst::FCMP_FALSE: Out << "FCmpInst::FCMP_FALSE"; break;
1264 case FCmpInst::FCMP_OEQ : Out << "FCmpInst::FCMP_OEQ"; break;
1265 case FCmpInst::FCMP_OGT : Out << "FCmpInst::FCMP_OGT"; break;
1266 case FCmpInst::FCMP_OGE : Out << "FCmpInst::FCMP_OGE"; break;
1267 case FCmpInst::FCMP_OLT : Out << "FCmpInst::FCMP_OLT"; break;
1268 case FCmpInst::FCMP_OLE : Out << "FCmpInst::FCMP_OLE"; break;
1269 case FCmpInst::FCMP_ONE : Out << "FCmpInst::FCMP_ONE"; break;
1270 case FCmpInst::FCMP_ORD : Out << "FCmpInst::FCMP_ORD"; break;
1271 case FCmpInst::FCMP_UNO : Out << "FCmpInst::FCMP_UNO"; break;
1272 case FCmpInst::FCMP_UEQ : Out << "FCmpInst::FCMP_UEQ"; break;
1273 case FCmpInst::FCMP_UGT : Out << "FCmpInst::FCMP_UGT"; break;
1274 case FCmpInst::FCMP_UGE : Out << "FCmpInst::FCMP_UGE"; break;
1275 case FCmpInst::FCMP_ULT : Out << "FCmpInst::FCMP_ULT"; break;
1276 case FCmpInst::FCMP_ULE : Out << "FCmpInst::FCMP_ULE"; break;
1277 case FCmpInst::FCMP_UNE : Out << "FCmpInst::FCMP_UNE"; break;
1278 case FCmpInst::FCMP_TRUE : Out << "FCmpInst::FCMP_TRUE"; break;
1279 default: Out << "FCmpInst::BAD_ICMP_PREDICATE"; break;
1280 }
1281 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1282 printEscapedString(I->getName());
1283 Out << "\");";
1284 break;
1285 }
1286 case Instruction::ICmp: {
1287 Out << "ICmpInst* " << iName << " = new ICmpInst(*" << bbname << ", ";
1288 switch (cast<ICmpInst>(I)->getPredicate()) {
1289 case ICmpInst::ICMP_EQ: Out << "ICmpInst::ICMP_EQ"; break;
1290 case ICmpInst::ICMP_NE: Out << "ICmpInst::ICMP_NE"; break;
1291 case ICmpInst::ICMP_ULE: Out << "ICmpInst::ICMP_ULE"; break;
1292 case ICmpInst::ICMP_SLE: Out << "ICmpInst::ICMP_SLE"; break;
1293 case ICmpInst::ICMP_UGE: Out << "ICmpInst::ICMP_UGE"; break;
1294 case ICmpInst::ICMP_SGE: Out << "ICmpInst::ICMP_SGE"; break;
1295 case ICmpInst::ICMP_ULT: Out << "ICmpInst::ICMP_ULT"; break;
1296 case ICmpInst::ICMP_SLT: Out << "ICmpInst::ICMP_SLT"; break;
1297 case ICmpInst::ICMP_UGT: Out << "ICmpInst::ICMP_UGT"; break;
1298 case ICmpInst::ICMP_SGT: Out << "ICmpInst::ICMP_SGT"; break;
1299 default: Out << "ICmpInst::BAD_ICMP_PREDICATE"; break;
1300 }
1301 Out << ", " << opNames[0] << ", " << opNames[1] << ", \"";
1302 printEscapedString(I->getName());
1303 Out << "\");";
1304 break;
1305 }
1306 case Instruction::Alloca: {
1307 const AllocaInst* allocaI = cast<AllocaInst>(I);
1308 Out << "AllocaInst* " << iName << " = new AllocaInst("
1309 << getCppName(allocaI->getAllocatedType()) << ", ";
1310 if (allocaI->isArrayAllocation())
1311 Out << opNames[0] << ", ";
1312 Out << "\"";
1313 printEscapedString(allocaI->getName());
1314 Out << "\", " << bbname << ");";
1315 if (allocaI->getAlignment())
1316 nl(Out) << iName << "->setAlignment("
1317 << allocaI->getAlignment() << ");";
1318 break;
1319 }
Gabor Greif7d4038dd2010-06-26 12:17:21 +00001320 case Instruction::Load: {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001321 const LoadInst* load = cast<LoadInst>(I);
1322 Out << "LoadInst* " << iName << " = new LoadInst("
1323 << opNames[0] << ", \"";
1324 printEscapedString(load->getName());
1325 Out << "\", " << (load->isVolatile() ? "true" : "false" )
1326 << ", " << bbname << ");";
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001327 if (load->getAlignment())
1328 nl(Out) << iName << "->setAlignment("
1329 << load->getAlignment() << ");";
1330 if (load->isAtomic()) {
1331 StringRef Ordering = ConvertAtomicOrdering(load->getOrdering());
1332 StringRef CrossThread = ConvertAtomicSynchScope(load->getSynchScope());
1333 nl(Out) << iName << "->setAtomic("
1334 << Ordering << ", " << CrossThread << ");";
1335 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001336 break;
1337 }
1338 case Instruction::Store: {
1339 const StoreInst* store = cast<StoreInst>(I);
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001340 Out << "StoreInst* " << iName << " = new StoreInst("
Chris Lattnera0b8c902010-06-21 23:12:56 +00001341 << opNames[0] << ", "
1342 << opNames[1] << ", "
1343 << (store->isVolatile() ? "true" : "false")
1344 << ", " << bbname << ");";
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001345 if (store->getAlignment())
1346 nl(Out) << iName << "->setAlignment("
1347 << store->getAlignment() << ");";
1348 if (store->isAtomic()) {
1349 StringRef Ordering = ConvertAtomicOrdering(store->getOrdering());
1350 StringRef CrossThread = ConvertAtomicSynchScope(store->getSynchScope());
1351 nl(Out) << iName << "->setAtomic("
1352 << Ordering << ", " << CrossThread << ");";
1353 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001354 break;
1355 }
1356 case Instruction::GetElementPtr: {
1357 const GetElementPtrInst* gep = cast<GetElementPtrInst>(I);
1358 if (gep->getNumOperands() <= 2) {
1359 Out << "GetElementPtrInst* " << iName << " = GetElementPtrInst::Create("
1360 << opNames[0];
1361 if (gep->getNumOperands() == 2)
1362 Out << ", " << opNames[1];
1363 } else {
1364 Out << "std::vector<Value*> " << iName << "_indices;";
1365 nl(Out);
1366 for (unsigned i = 1; i < gep->getNumOperands(); ++i ) {
1367 Out << iName << "_indices.push_back("
1368 << opNames[i] << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001369 nl(Out);
1370 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001371 Out << "Instruction* " << iName << " = GetElementPtrInst::Create("
Nicolas Geoffray84c7b9e2011-07-26 20:52:25 +00001372 << opNames[0] << ", " << iName << "_indices";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001373 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001374 Out << ", \"";
1375 printEscapedString(gep->getName());
1376 Out << "\", " << bbname << ");";
1377 break;
1378 }
1379 case Instruction::PHI: {
1380 const PHINode* phi = cast<PHINode>(I);
1381
1382 Out << "PHINode* " << iName << " = PHINode::Create("
Nicolas Geoffray9137ee82011-04-10 17:39:40 +00001383 << getCppName(phi->getType()) << ", "
Jay Foad52131342011-03-30 11:28:46 +00001384 << phi->getNumIncomingValues() << ", \"";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001385 printEscapedString(phi->getName());
1386 Out << "\", " << bbname << ");";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001387 nl(Out);
Jay Foad372ad642011-06-20 14:18:48 +00001388 for (unsigned i = 0; i < phi->getNumIncomingValues(); ++i) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001389 Out << iName << "->addIncoming("
Jay Foad372ad642011-06-20 14:18:48 +00001390 << opNames[PHINode::getOperandNumForIncomingValue(i)] << ", "
Jay Foad61ea0e42011-06-23 09:09:15 +00001391 << getOpName(phi->getIncomingBlock(i)) << ");";
Chris Lattnere8628a02009-10-27 21:24:48 +00001392 nl(Out);
Chris Lattnere8628a02009-10-27 21:24:48 +00001393 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001394 break;
1395 }
1396 case Instruction::Trunc:
1397 case Instruction::ZExt:
1398 case Instruction::SExt:
1399 case Instruction::FPTrunc:
1400 case Instruction::FPExt:
1401 case Instruction::FPToUI:
1402 case Instruction::FPToSI:
1403 case Instruction::UIToFP:
1404 case Instruction::SIToFP:
1405 case Instruction::PtrToInt:
1406 case Instruction::IntToPtr:
1407 case Instruction::BitCast: {
1408 const CastInst* cst = cast<CastInst>(I);
1409 Out << "CastInst* " << iName << " = new ";
1410 switch (I->getOpcode()) {
1411 case Instruction::Trunc: Out << "TruncInst"; break;
1412 case Instruction::ZExt: Out << "ZExtInst"; break;
1413 case Instruction::SExt: Out << "SExtInst"; break;
1414 case Instruction::FPTrunc: Out << "FPTruncInst"; break;
1415 case Instruction::FPExt: Out << "FPExtInst"; break;
1416 case Instruction::FPToUI: Out << "FPToUIInst"; break;
1417 case Instruction::FPToSI: Out << "FPToSIInst"; break;
1418 case Instruction::UIToFP: Out << "UIToFPInst"; break;
1419 case Instruction::SIToFP: Out << "SIToFPInst"; break;
1420 case Instruction::PtrToInt: Out << "PtrToIntInst"; break;
1421 case Instruction::IntToPtr: Out << "IntToPtrInst"; break;
1422 case Instruction::BitCast: Out << "BitCastInst"; break;
Craig Toppere55c5562012-02-07 02:50:20 +00001423 default: llvm_unreachable("Unreachable");
Chris Lattnera0b8c902010-06-21 23:12:56 +00001424 }
1425 Out << "(" << opNames[0] << ", "
1426 << getCppName(cst->getType()) << ", \"";
1427 printEscapedString(cst->getName());
1428 Out << "\", " << bbname << ");";
1429 break;
1430 }
Gabor Greif7d4038dd2010-06-26 12:17:21 +00001431 case Instruction::Call: {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001432 const CallInst* call = cast<CallInst>(I);
1433 if (const InlineAsm* ila = dyn_cast<InlineAsm>(call->getCalledValue())) {
1434 Out << "InlineAsm* " << getCppName(ila) << " = InlineAsm::get("
1435 << getCppName(ila->getFunctionType()) << ", \""
1436 << ila->getAsmString() << "\", \""
1437 << ila->getConstraintString() << "\","
1438 << (ila->hasSideEffects() ? "true" : "false") << ");";
1439 nl(Out);
1440 }
Gabor Greif7d4038dd2010-06-26 12:17:21 +00001441 if (call->getNumArgOperands() > 1) {
Anton Korobeynikov78695032008-04-23 22:29:24 +00001442 Out << "std::vector<Value*> " << iName << "_params;";
1443 nl(Out);
Gabor Greife537ddb2010-07-02 19:08:46 +00001444 for (unsigned i = 0; i < call->getNumArgOperands(); ++i) {
Gabor Greif03e7e682010-07-13 15:31:36 +00001445 Out << iName << "_params.push_back(" << opNames[i] << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001446 nl(Out);
1447 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001448 Out << "CallInst* " << iName << " = CallInst::Create("
Gabor Greif3e44ea12010-07-22 10:37:47 +00001449 << opNames[call->getNumArgOperands()] << ", "
Nicolas Geoffray6820c1e2011-07-21 20:59:21 +00001450 << iName << "_params, \"";
Gabor Greif7d4038dd2010-06-26 12:17:21 +00001451 } else if (call->getNumArgOperands() == 1) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001452 Out << "CallInst* " << iName << " = CallInst::Create("
Gabor Greif03e7e682010-07-13 15:31:36 +00001453 << opNames[call->getNumArgOperands()] << ", " << opNames[0] << ", \"";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001454 } else {
Gabor Greif03e7e682010-07-13 15:31:36 +00001455 Out << "CallInst* " << iName << " = CallInst::Create("
1456 << opNames[call->getNumArgOperands()] << ", \"";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001457 }
1458 printEscapedString(call->getName());
1459 Out << "\", " << bbname << ");";
1460 nl(Out) << iName << "->setCallingConv(";
1461 printCallingConv(call->getCallingConv());
1462 Out << ");";
1463 nl(Out) << iName << "->setTailCall("
Gabor Greif7d4038dd2010-06-26 12:17:21 +00001464 << (call->isTailCall() ? "true" : "false");
Chris Lattnera0b8c902010-06-21 23:12:56 +00001465 Out << ");";
Gabor Greif9da02a82010-07-02 19:26:28 +00001466 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +00001467 printAttributes(call->getAttributes(), iName);
1468 Out << iName << "->setAttributes(" << iName << "_PAL);";
1469 nl(Out);
1470 break;
1471 }
1472 case Instruction::Select: {
1473 const SelectInst* sel = cast<SelectInst>(I);
1474 Out << "SelectInst* " << getCppName(sel) << " = SelectInst::Create(";
1475 Out << opNames[0] << ", " << opNames[1] << ", " << opNames[2] << ", \"";
1476 printEscapedString(sel->getName());
1477 Out << "\", " << bbname << ");";
1478 break;
1479 }
1480 case Instruction::UserOp1:
1481 /// FALL THROUGH
1482 case Instruction::UserOp2: {
1483 /// FIXME: What should be done here?
1484 break;
1485 }
1486 case Instruction::VAArg: {
1487 const VAArgInst* va = cast<VAArgInst>(I);
1488 Out << "VAArgInst* " << getCppName(va) << " = new VAArgInst("
1489 << opNames[0] << ", " << getCppName(va->getType()) << ", \"";
1490 printEscapedString(va->getName());
1491 Out << "\", " << bbname << ");";
1492 break;
1493 }
1494 case Instruction::ExtractElement: {
1495 const ExtractElementInst* eei = cast<ExtractElementInst>(I);
1496 Out << "ExtractElementInst* " << getCppName(eei)
1497 << " = new ExtractElementInst(" << opNames[0]
1498 << ", " << opNames[1] << ", \"";
1499 printEscapedString(eei->getName());
1500 Out << "\", " << bbname << ");";
1501 break;
1502 }
1503 case Instruction::InsertElement: {
1504 const InsertElementInst* iei = cast<InsertElementInst>(I);
1505 Out << "InsertElementInst* " << getCppName(iei)
1506 << " = InsertElementInst::Create(" << opNames[0]
1507 << ", " << opNames[1] << ", " << opNames[2] << ", \"";
1508 printEscapedString(iei->getName());
1509 Out << "\", " << bbname << ");";
1510 break;
1511 }
1512 case Instruction::ShuffleVector: {
1513 const ShuffleVectorInst* svi = cast<ShuffleVectorInst>(I);
1514 Out << "ShuffleVectorInst* " << getCppName(svi)
1515 << " = new ShuffleVectorInst(" << opNames[0]
1516 << ", " << opNames[1] << ", " << opNames[2] << ", \"";
1517 printEscapedString(svi->getName());
1518 Out << "\", " << bbname << ");";
1519 break;
1520 }
1521 case Instruction::ExtractValue: {
1522 const ExtractValueInst *evi = cast<ExtractValueInst>(I);
1523 Out << "std::vector<unsigned> " << iName << "_indices;";
1524 nl(Out);
1525 for (unsigned i = 0; i < evi->getNumIndices(); ++i) {
1526 Out << iName << "_indices.push_back("
1527 << evi->idx_begin()[i] << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001528 nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +00001529 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001530 Out << "ExtractValueInst* " << getCppName(evi)
1531 << " = ExtractValueInst::Create(" << opNames[0]
1532 << ", "
Nick Lewyckydf06b6e2011-09-05 18:50:59 +00001533 << iName << "_indices, \"";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001534 printEscapedString(evi->getName());
1535 Out << "\", " << bbname << ");";
1536 break;
1537 }
1538 case Instruction::InsertValue: {
1539 const InsertValueInst *ivi = cast<InsertValueInst>(I);
1540 Out << "std::vector<unsigned> " << iName << "_indices;";
1541 nl(Out);
1542 for (unsigned i = 0; i < ivi->getNumIndices(); ++i) {
1543 Out << iName << "_indices.push_back("
1544 << ivi->idx_begin()[i] << ");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001545 nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +00001546 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001547 Out << "InsertValueInst* " << getCppName(ivi)
1548 << " = InsertValueInst::Create(" << opNames[0]
1549 << ", " << opNames[1] << ", "
Nick Lewyckydf06b6e2011-09-05 18:50:59 +00001550 << iName << "_indices, \"";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001551 printEscapedString(ivi->getName());
1552 Out << "\", " << bbname << ");";
1553 break;
1554 }
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001555 case Instruction::Fence: {
1556 const FenceInst *fi = cast<FenceInst>(I);
1557 StringRef Ordering = ConvertAtomicOrdering(fi->getOrdering());
1558 StringRef CrossThread = ConvertAtomicSynchScope(fi->getSynchScope());
1559 Out << "FenceInst* " << iName
1560 << " = new FenceInst(mod->getContext(), "
Eli Friedman5b693c22011-11-04 17:29:35 +00001561 << Ordering << ", " << CrossThread << ", " << bbname
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001562 << ");";
1563 break;
1564 }
1565 case Instruction::AtomicCmpXchg: {
1566 const AtomicCmpXchgInst *cxi = cast<AtomicCmpXchgInst>(I);
Tim Northovere94a5182014-03-11 10:48:52 +00001567 StringRef SuccessOrdering =
1568 ConvertAtomicOrdering(cxi->getSuccessOrdering());
1569 StringRef FailureOrdering =
1570 ConvertAtomicOrdering(cxi->getFailureOrdering());
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001571 StringRef CrossThread = ConvertAtomicSynchScope(cxi->getSynchScope());
1572 Out << "AtomicCmpXchgInst* " << iName
1573 << " = new AtomicCmpXchgInst("
1574 << opNames[0] << ", " << opNames[1] << ", " << opNames[2] << ", "
Tim Northovere94a5182014-03-11 10:48:52 +00001575 << SuccessOrdering << ", " << FailureOrdering << ", "
1576 << CrossThread << ", " << bbname
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001577 << ");";
1578 nl(Out) << iName << "->setName(\"";
1579 printEscapedString(cxi->getName());
1580 Out << "\");";
Tim Northover24fe2322014-06-13 09:14:50 +00001581 nl(Out) << iName << "->setVolatile("
1582 << (cxi->isVolatile() ? "true" : "false") << ");";
Tim Northover420a2162014-06-13 14:24:07 +00001583 nl(Out) << iName << "->setWeak("
1584 << (cxi->isWeak() ? "true" : "false") << ");";
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001585 break;
1586 }
1587 case Instruction::AtomicRMW: {
1588 const AtomicRMWInst *rmwi = cast<AtomicRMWInst>(I);
1589 StringRef Ordering = ConvertAtomicOrdering(rmwi->getOrdering());
1590 StringRef CrossThread = ConvertAtomicSynchScope(rmwi->getSynchScope());
1591 StringRef Operation;
1592 switch (rmwi->getOperation()) {
1593 case AtomicRMWInst::Xchg: Operation = "AtomicRMWInst::Xchg"; break;
1594 case AtomicRMWInst::Add: Operation = "AtomicRMWInst::Add"; break;
1595 case AtomicRMWInst::Sub: Operation = "AtomicRMWInst::Sub"; break;
1596 case AtomicRMWInst::And: Operation = "AtomicRMWInst::And"; break;
1597 case AtomicRMWInst::Nand: Operation = "AtomicRMWInst::Nand"; break;
1598 case AtomicRMWInst::Or: Operation = "AtomicRMWInst::Or"; break;
1599 case AtomicRMWInst::Xor: Operation = "AtomicRMWInst::Xor"; break;
1600 case AtomicRMWInst::Max: Operation = "AtomicRMWInst::Max"; break;
1601 case AtomicRMWInst::Min: Operation = "AtomicRMWInst::Min"; break;
1602 case AtomicRMWInst::UMax: Operation = "AtomicRMWInst::UMax"; break;
1603 case AtomicRMWInst::UMin: Operation = "AtomicRMWInst::UMin"; break;
1604 case AtomicRMWInst::BAD_BINOP: llvm_unreachable("Bad atomic operation");
1605 }
1606 Out << "AtomicRMWInst* " << iName
1607 << " = new AtomicRMWInst("
1608 << Operation << ", "
1609 << opNames[0] << ", " << opNames[1] << ", "
Eli Friedman5b693c22011-11-04 17:29:35 +00001610 << Ordering << ", " << CrossThread << ", " << bbname
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001611 << ");";
1612 nl(Out) << iName << "->setName(\"";
1613 printEscapedString(rmwi->getName());
1614 Out << "\");";
Tim Northover24fe2322014-06-13 09:14:50 +00001615 nl(Out) << iName << "->setVolatile("
1616 << (rmwi->isVolatile() ? "true" : "false") << ");";
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001617 break;
1618 }
Eli Friedman410393a2013-09-24 00:36:09 +00001619 case Instruction::LandingPad: {
1620 const LandingPadInst *lpi = cast<LandingPadInst>(I);
1621 Out << "LandingPadInst* " << iName << " = LandingPadInst::Create(";
1622 printCppName(lpi->getType());
1623 Out << ", " << opNames[0] << ", " << lpi->getNumClauses() << ", \"";
1624 printEscapedString(lpi->getName());
1625 Out << "\", " << bbname << ");";
1626 nl(Out) << iName << "->setCleanup("
1627 << (lpi->isCleanup() ? "true" : "false")
1628 << ");";
1629 for (unsigned i = 0, e = lpi->getNumClauses(); i != e; ++i)
1630 nl(Out) << iName << "->addClause(" << opNames[i+1] << ");";
1631 break;
1632 }
Anton Korobeynikov78695032008-04-23 22:29:24 +00001633 }
1634 DefinedValues.insert(I);
1635 nl(Out);
1636 delete [] opNames;
1637}
1638
Chris Lattnera0b8c902010-06-21 23:12:56 +00001639// Print out the types, constants and declarations needed by one function
1640void CppWriter::printFunctionUses(const Function* F) {
1641 nl(Out) << "// Type Definitions"; nl(Out);
1642 if (!is_inline) {
1643 // Print the function's return type
1644 printType(F->getReturnType());
Anton Korobeynikov78695032008-04-23 22:29:24 +00001645
Chris Lattnera0b8c902010-06-21 23:12:56 +00001646 // Print the function's function type
1647 printType(F->getFunctionType());
Anton Korobeynikov78695032008-04-23 22:29:24 +00001648
Chris Lattnera0b8c902010-06-21 23:12:56 +00001649 // Print the types of each of the function's arguments
Anton Korobeynikov78695032008-04-23 22:29:24 +00001650 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1651 AI != AE; ++AI) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001652 printType(AI->getType());
Anton Korobeynikov78695032008-04-23 22:29:24 +00001653 }
Anton Korobeynikov78695032008-04-23 22:29:24 +00001654 }
1655
Chris Lattnera0b8c902010-06-21 23:12:56 +00001656 // Print type definitions for every type referenced by an instruction and
1657 // make a note of any global values or constants that are referenced
1658 SmallPtrSet<GlobalValue*,64> gvs;
1659 SmallPtrSet<Constant*,64> consts;
1660 for (Function::const_iterator BB = F->begin(), BE = F->end();
1661 BB != BE; ++BB){
1662 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
Anton Korobeynikov78695032008-04-23 22:29:24 +00001663 I != E; ++I) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001664 // Print the type of the instruction itself
1665 printType(I->getType());
1666
1667 // Print the type of each of the instruction's operands
1668 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
1669 Value* operand = I->getOperand(i);
1670 printType(operand->getType());
1671
1672 // If the operand references a GVal or Constant, make a note of it
1673 if (GlobalValue* GV = dyn_cast<GlobalValue>(operand)) {
1674 gvs.insert(GV);
Nicolas Geoffray235b66c2010-11-28 18:00:53 +00001675 if (GenerationType != GenFunction)
1676 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
1677 if (GVar->hasInitializer())
1678 consts.insert(GVar->getInitializer());
1679 } else if (Constant* C = dyn_cast<Constant>(operand)) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001680 consts.insert(C);
Nicolas Geoffray235b66c2010-11-28 18:00:53 +00001681 for (unsigned j = 0; j < C->getNumOperands(); ++j) {
1682 // If the operand references a GVal or Constant, make a note of it
1683 Value* operand = C->getOperand(j);
1684 printType(operand->getType());
1685 if (GlobalValue* GV = dyn_cast<GlobalValue>(operand)) {
1686 gvs.insert(GV);
1687 if (GenerationType != GenFunction)
1688 if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
1689 if (GVar->hasInitializer())
1690 consts.insert(GVar->getInitializer());
1691 }
1692 }
1693 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001694 }
1695 }
1696 }
1697
1698 // Print the function declarations for any functions encountered
1699 nl(Out) << "// Function Declarations"; nl(Out);
Rafael Espindola331380a2014-05-08 18:40:06 +00001700 for (auto *GV : gvs) {
1701 if (Function *Fun = dyn_cast<Function>(GV)) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001702 if (!is_inline || Fun != F)
1703 printFunctionHead(Fun);
1704 }
1705 }
1706
1707 // Print the global variable declarations for any variables encountered
1708 nl(Out) << "// Global Variable Declarations"; nl(Out);
Rafael Espindola331380a2014-05-08 18:40:06 +00001709 for (auto *GV : gvs) {
1710 if (GlobalVariable *F = dyn_cast<GlobalVariable>(GV))
Chris Lattnera0b8c902010-06-21 23:12:56 +00001711 printVariableHead(F);
1712 }
1713
Nicolas Geoffray235b66c2010-11-28 18:00:53 +00001714 // Print the constants found
Chris Lattnera0b8c902010-06-21 23:12:56 +00001715 nl(Out) << "// Constant Definitions"; nl(Out);
Rafael Espindola331380a2014-05-08 18:40:06 +00001716 for (const auto *C : consts) {
1717 printConstant(C);
Chris Lattnera0b8c902010-06-21 23:12:56 +00001718 }
1719
1720 // Process the global variables definitions now that all the constants have
1721 // been emitted. These definitions just couple the gvars with their constant
1722 // initializers.
Nicolas Geoffray235b66c2010-11-28 18:00:53 +00001723 if (GenerationType != GenFunction) {
1724 nl(Out) << "// Global Variable Definitions"; nl(Out);
Benjamin Kramer90a84a32015-04-16 12:43:07 +00001725 for (auto *GV : gvs) {
Rafael Espindola331380a2014-05-08 18:40:06 +00001726 if (GlobalVariable *Var = dyn_cast<GlobalVariable>(GV))
1727 printVariableBody(Var);
Nicolas Geoffray235b66c2010-11-28 18:00:53 +00001728 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001729 }
1730}
1731
1732void CppWriter::printFunctionHead(const Function* F) {
1733 nl(Out) << "Function* " << getCppName(F);
Nicolas Geoffraya0263e72011-10-08 11:56:36 +00001734 Out << " = mod->getFunction(\"";
1735 printEscapedString(F->getName());
1736 Out << "\");";
1737 nl(Out) << "if (!" << getCppName(F) << ") {";
1738 nl(Out) << getCppName(F);
1739
Chris Lattnera0b8c902010-06-21 23:12:56 +00001740 Out<< " = Function::Create(";
1741 nl(Out,1) << "/*Type=*/" << getCppName(F->getFunctionType()) << ",";
1742 nl(Out) << "/*Linkage=*/";
1743 printLinkageType(F->getLinkage());
1744 Out << ",";
1745 nl(Out) << "/*Name=*/\"";
1746 printEscapedString(F->getName());
1747 Out << "\", mod); " << (F->isDeclaration()? "// (external, no body)" : "");
1748 nl(Out,-1);
1749 printCppName(F);
1750 Out << "->setCallingConv(";
1751 printCallingConv(F->getCallingConv());
1752 Out << ");";
1753 nl(Out);
1754 if (F->hasSection()) {
1755 printCppName(F);
1756 Out << "->setSection(\"" << F->getSection() << "\");";
1757 nl(Out);
1758 }
1759 if (F->getAlignment()) {
1760 printCppName(F);
1761 Out << "->setAlignment(" << F->getAlignment() << ");";
1762 nl(Out);
1763 }
1764 if (F->getVisibility() != GlobalValue::DefaultVisibility) {
1765 printCppName(F);
1766 Out << "->setVisibility(";
1767 printVisibilityType(F->getVisibility());
1768 Out << ");";
1769 nl(Out);
1770 }
Nico Rieck7157bb72014-01-14 15:22:47 +00001771 if (F->getDLLStorageClass() != GlobalValue::DefaultStorageClass) {
1772 printCppName(F);
1773 Out << "->setDLLStorageClass(";
1774 printDLLStorageClassType(F->getDLLStorageClass());
1775 Out << ");";
1776 nl(Out);
1777 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001778 if (F->hasGC()) {
1779 printCppName(F);
1780 Out << "->setGC(\"" << F->getGC() << "\");";
1781 nl(Out);
1782 }
Nicolas Geoffraya0263e72011-10-08 11:56:36 +00001783 Out << "}";
1784 nl(Out);
Chris Lattnera0b8c902010-06-21 23:12:56 +00001785 printAttributes(F->getAttributes(), getCppName(F));
1786 printCppName(F);
1787 Out << "->setAttributes(" << getCppName(F) << "_PAL);";
1788 nl(Out);
1789}
1790
1791void CppWriter::printFunctionBody(const Function *F) {
1792 if (F->isDeclaration())
1793 return; // external functions have no bodies.
1794
1795 // Clear the DefinedValues and ForwardRefs maps because we can't have
1796 // cross-function forward refs
1797 ForwardRefs.clear();
1798 DefinedValues.clear();
1799
1800 // Create all the argument values
1801 if (!is_inline) {
1802 if (!F->arg_empty()) {
1803 Out << "Function::arg_iterator args = " << getCppName(F)
1804 << "->arg_begin();";
1805 nl(Out);
1806 }
1807 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1808 AI != AE; ++AI) {
1809 Out << "Value* " << getCppName(AI) << " = args++;";
1810 nl(Out);
1811 if (AI->hasName()) {
Eli Friedmand28ddbf2011-10-31 23:59:22 +00001812 Out << getCppName(AI) << "->setName(\"";
1813 printEscapedString(AI->getName());
1814 Out << "\");";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001815 nl(Out);
1816 }
1817 }
1818 }
1819
Chris Lattnera0b8c902010-06-21 23:12:56 +00001820 // Create all the basic blocks
1821 nl(Out);
1822 for (Function::const_iterator BI = F->begin(), BE = F->end();
1823 BI != BE; ++BI) {
1824 std::string bbname(getCppName(BI));
1825 Out << "BasicBlock* " << bbname <<
1826 " = BasicBlock::Create(mod->getContext(), \"";
1827 if (BI->hasName())
1828 printEscapedString(BI->getName());
1829 Out << "\"," << getCppName(BI->getParent()) << ",0);";
1830 nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +00001831 }
1832
Chris Lattnera0b8c902010-06-21 23:12:56 +00001833 // Output all of its basic blocks... for the function
1834 for (Function::const_iterator BI = F->begin(), BE = F->end();
1835 BI != BE; ++BI) {
1836 std::string bbname(getCppName(BI));
1837 nl(Out) << "// Block " << BI->getName() << " (" << bbname << ")";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001838 nl(Out);
1839
Chris Lattnera0b8c902010-06-21 23:12:56 +00001840 // Output all of the instructions in the basic block...
1841 for (BasicBlock::const_iterator I = BI->begin(), E = BI->end();
1842 I != E; ++I) {
1843 printInstruction(I,bbname);
1844 }
1845 }
1846
1847 // Loop over the ForwardRefs and resolve them now that all instructions
1848 // are generated.
1849 if (!ForwardRefs.empty()) {
1850 nl(Out) << "// Resolve Forward References";
1851 nl(Out);
1852 }
1853
1854 while (!ForwardRefs.empty()) {
1855 ForwardRefMap::iterator I = ForwardRefs.begin();
1856 Out << I->second << "->replaceAllUsesWith("
1857 << getCppName(I->first) << "); delete " << I->second << ";";
1858 nl(Out);
1859 ForwardRefs.erase(I);
1860 }
1861}
1862
1863void CppWriter::printInline(const std::string& fname,
1864 const std::string& func) {
1865 const Function* F = TheModule->getFunction(func);
1866 if (!F) {
1867 error(std::string("Function '") + func + "' not found in input module");
1868 return;
1869 }
1870 if (F->isDeclaration()) {
1871 error(std::string("Function '") + func + "' is external!");
1872 return;
1873 }
1874 nl(Out) << "BasicBlock* " << fname << "(Module* mod, Function *"
1875 << getCppName(F);
1876 unsigned arg_count = 1;
1877 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
1878 AI != AE; ++AI) {
Craig Topper62cb2bc2013-07-31 03:22:07 +00001879 Out << ", Value* arg_" << arg_count++;
Chris Lattnera0b8c902010-06-21 23:12:56 +00001880 }
1881 Out << ") {";
1882 nl(Out);
1883 is_inline = true;
1884 printFunctionUses(F);
1885 printFunctionBody(F);
1886 is_inline = false;
1887 Out << "return " << getCppName(F->begin()) << ";";
1888 nl(Out) << "}";
1889 nl(Out);
1890}
1891
1892void CppWriter::printModuleBody() {
1893 // Print out all the type definitions
1894 nl(Out) << "// Type Definitions"; nl(Out);
1895 printTypes(TheModule);
1896
1897 // Functions can call each other and global variables can reference them so
1898 // define all the functions first before emitting their function bodies.
1899 nl(Out) << "// Function Declarations"; nl(Out);
1900 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1901 I != E; ++I)
1902 printFunctionHead(I);
1903
1904 // Process the global variables declarations. We can't initialze them until
1905 // after the constants are printed so just print a header for each global
1906 nl(Out) << "// Global Variable Declarations\n"; nl(Out);
1907 for (Module::const_global_iterator I = TheModule->global_begin(),
1908 E = TheModule->global_end(); I != E; ++I) {
1909 printVariableHead(I);
1910 }
1911
1912 // Print out all the constants definitions. Constants don't recurse except
1913 // through GlobalValues. All GlobalValues have been declared at this point
1914 // so we can proceed to generate the constants.
1915 nl(Out) << "// Constant Definitions"; nl(Out);
1916 printConstants(TheModule);
1917
1918 // Process the global variables definitions now that all the constants have
1919 // been emitted. These definitions just couple the gvars with their constant
1920 // initializers.
1921 nl(Out) << "// Global Variable Definitions"; nl(Out);
1922 for (Module::const_global_iterator I = TheModule->global_begin(),
1923 E = TheModule->global_end(); I != E; ++I) {
1924 printVariableBody(I);
1925 }
1926
1927 // Finally, we can safely put out all of the function bodies.
1928 nl(Out) << "// Function Definitions"; nl(Out);
1929 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
1930 I != E; ++I) {
1931 if (!I->isDeclaration()) {
1932 nl(Out) << "// Function: " << I->getName() << " (" << getCppName(I)
1933 << ")";
1934 nl(Out) << "{";
1935 nl(Out,1);
1936 printFunctionBody(I);
1937 nl(Out,-1) << "}";
Anton Korobeynikov78695032008-04-23 22:29:24 +00001938 nl(Out);
Anton Korobeynikov78695032008-04-23 22:29:24 +00001939 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00001940 }
1941}
1942
1943void CppWriter::printProgram(const std::string& fname,
1944 const std::string& mName) {
Chris Lattnera0b8c902010-06-21 23:12:56 +00001945 Out << "#include <llvm/Pass.h>\n";
Bill Wendlingcc1fc942013-01-27 01:22:51 +00001946
Chris Lattnera0b8c902010-06-21 23:12:56 +00001947 Out << "#include <llvm/ADT/SmallVector.h>\n";
1948 Out << "#include <llvm/Analysis/Verifier.h>\n";
Bill Wendlingcc1fc942013-01-27 01:22:51 +00001949 Out << "#include <llvm/IR/BasicBlock.h>\n";
1950 Out << "#include <llvm/IR/CallingConv.h>\n";
1951 Out << "#include <llvm/IR/Constants.h>\n";
1952 Out << "#include <llvm/IR/DerivedTypes.h>\n";
1953 Out << "#include <llvm/IR/Function.h>\n";
1954 Out << "#include <llvm/IR/GlobalVariable.h>\n";
Chandler Carruthb8ddc702014-01-12 11:10:32 +00001955 Out << "#include <llvm/IR/IRPrintingPasses.h>\n";
Bill Wendlingcc1fc942013-01-27 01:22:51 +00001956 Out << "#include <llvm/IR/InlineAsm.h>\n";
1957 Out << "#include <llvm/IR/Instructions.h>\n";
1958 Out << "#include <llvm/IR/LLVMContext.h>\n";
Chandler Carruth30d69c22015-02-13 10:01:29 +00001959 Out << "#include <llvm/IR/LegacyPassManager.h>\n";
Bill Wendlingcc1fc942013-01-27 01:22:51 +00001960 Out << "#include <llvm/IR/Module.h>\n";
1961 Out << "#include <llvm/Support/FormattedStream.h>\n";
1962 Out << "#include <llvm/Support/MathExtras.h>\n";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001963 Out << "#include <algorithm>\n";
1964 Out << "using namespace llvm;\n\n";
1965 Out << "Module* " << fname << "();\n\n";
1966 Out << "int main(int argc, char**argv) {\n";
1967 Out << " Module* Mod = " << fname << "();\n";
1968 Out << " verifyModule(*Mod, PrintMessageAction);\n";
1969 Out << " PassManager PM;\n";
1970 Out << " PM.add(createPrintModulePass(&outs()));\n";
1971 Out << " PM.run(*Mod);\n";
1972 Out << " return 0;\n";
1973 Out << "}\n\n";
1974 printModule(fname,mName);
1975}
1976
1977void CppWriter::printModule(const std::string& fname,
1978 const std::string& mName) {
1979 nl(Out) << "Module* " << fname << "() {";
1980 nl(Out,1) << "// Module Construction";
1981 nl(Out) << "Module* mod = new Module(\"";
1982 printEscapedString(mName);
1983 Out << "\", getGlobalContext());";
1984 if (!TheModule->getTargetTriple().empty()) {
Mehdi Amini46a43552015-03-04 18:43:29 +00001985 nl(Out) << "mod->setDataLayout(\"" << TheModule->getDataLayoutStr()
1986 << "\");";
Chris Lattnera0b8c902010-06-21 23:12:56 +00001987 }
1988 if (!TheModule->getTargetTriple().empty()) {
1989 nl(Out) << "mod->setTargetTriple(\"" << TheModule->getTargetTriple()
1990 << "\");";
1991 }
1992
1993 if (!TheModule->getModuleInlineAsm().empty()) {
1994 nl(Out) << "mod->setModuleInlineAsm(\"";
1995 printEscapedString(TheModule->getModuleInlineAsm());
1996 Out << "\");";
1997 }
1998 nl(Out);
1999
Chris Lattnera0b8c902010-06-21 23:12:56 +00002000 printModuleBody();
2001 nl(Out) << "return mod;";
2002 nl(Out,-1) << "}";
2003 nl(Out);
2004}
Anton Korobeynikov78695032008-04-23 22:29:24 +00002005
Chris Lattnera0b8c902010-06-21 23:12:56 +00002006void CppWriter::printContents(const std::string& fname,
2007 const std::string& mName) {
2008 Out << "\nModule* " << fname << "(Module *mod) {\n";
2009 Out << "\nmod->setModuleIdentifier(\"";
2010 printEscapedString(mName);
2011 Out << "\");\n";
2012 printModuleBody();
2013 Out << "\nreturn mod;\n";
2014 Out << "\n}\n";
2015}
2016
2017void CppWriter::printFunction(const std::string& fname,
2018 const std::string& funcName) {
2019 const Function* F = TheModule->getFunction(funcName);
2020 if (!F) {
2021 error(std::string("Function '") + funcName + "' not found in input module");
2022 return;
Anton Korobeynikov78695032008-04-23 22:29:24 +00002023 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00002024 Out << "\nFunction* " << fname << "(Module *mod) {\n";
2025 printFunctionUses(F);
2026 printFunctionHead(F);
2027 printFunctionBody(F);
2028 Out << "return " << getCppName(F) << ";\n";
2029 Out << "}\n";
2030}
Anton Korobeynikov78695032008-04-23 22:29:24 +00002031
Chris Lattnera0b8c902010-06-21 23:12:56 +00002032void CppWriter::printFunctions() {
2033 const Module::FunctionListType &funcs = TheModule->getFunctionList();
2034 Module::const_iterator I = funcs.begin();
2035 Module::const_iterator IE = funcs.end();
Anton Korobeynikov78695032008-04-23 22:29:24 +00002036
Chris Lattnera0b8c902010-06-21 23:12:56 +00002037 for (; I != IE; ++I) {
2038 const Function &func = *I;
2039 if (!func.isDeclaration()) {
2040 std::string name("define_");
2041 name += func.getName();
2042 printFunction(name, func.getName());
Anton Korobeynikov78695032008-04-23 22:29:24 +00002043 }
2044 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00002045}
Anton Korobeynikov78695032008-04-23 22:29:24 +00002046
Chris Lattnera0b8c902010-06-21 23:12:56 +00002047void CppWriter::printVariable(const std::string& fname,
2048 const std::string& varName) {
2049 const GlobalVariable* GV = TheModule->getNamedGlobal(varName);
Anton Korobeynikov78695032008-04-23 22:29:24 +00002050
Chris Lattnera0b8c902010-06-21 23:12:56 +00002051 if (!GV) {
2052 error(std::string("Variable '") + varName + "' not found in input module");
2053 return;
2054 }
2055 Out << "\nGlobalVariable* " << fname << "(Module *mod) {\n";
2056 printVariableUses(GV);
2057 printVariableHead(GV);
2058 printVariableBody(GV);
2059 Out << "return " << getCppName(GV) << ";\n";
2060 Out << "}\n";
2061}
2062
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002063void CppWriter::printType(const std::string &fname,
2064 const std::string &typeName) {
Chris Lattner229907c2011-07-18 04:54:35 +00002065 Type* Ty = TheModule->getTypeByName(typeName);
Chris Lattnera0b8c902010-06-21 23:12:56 +00002066 if (!Ty) {
2067 error(std::string("Type '") + typeName + "' not found in input module");
2068 return;
2069 }
2070 Out << "\nType* " << fname << "(Module *mod) {\n";
2071 printType(Ty);
2072 Out << "return " << getCppName(Ty) << ";\n";
2073 Out << "}\n";
2074}
2075
2076bool CppWriter::runOnModule(Module &M) {
2077 TheModule = &M;
2078
2079 // Emit a header
2080 Out << "// Generated by llvm2cpp - DO NOT MODIFY!\n\n";
2081
2082 // Get the name of the function we're supposed to generate
2083 std::string fname = FuncName.getValue();
2084
2085 // Get the name of the thing we are to generate
2086 std::string tgtname = NameToGenerate.getValue();
2087 if (GenerationType == GenModule ||
2088 GenerationType == GenContents ||
2089 GenerationType == GenProgram ||
2090 GenerationType == GenFunctions) {
2091 if (tgtname == "!bad!") {
2092 if (M.getModuleIdentifier() == "-")
2093 tgtname = "<stdin>";
2094 else
2095 tgtname = M.getModuleIdentifier();
Anton Korobeynikov78695032008-04-23 22:29:24 +00002096 }
Chris Lattnera0b8c902010-06-21 23:12:56 +00002097 } else if (tgtname == "!bad!")
2098 error("You must use the -for option with -gen-{function,variable,type}");
2099
2100 switch (WhatToGenerate(GenerationType)) {
2101 case GenProgram:
2102 if (fname.empty())
2103 fname = "makeLLVMModule";
2104 printProgram(fname,tgtname);
2105 break;
2106 case GenModule:
2107 if (fname.empty())
2108 fname = "makeLLVMModule";
2109 printModule(fname,tgtname);
2110 break;
2111 case GenContents:
2112 if (fname.empty())
2113 fname = "makeLLVMModuleContents";
2114 printContents(fname,tgtname);
2115 break;
2116 case GenFunction:
2117 if (fname.empty())
2118 fname = "makeLLVMFunction";
2119 printFunction(fname,tgtname);
2120 break;
2121 case GenFunctions:
2122 printFunctions();
2123 break;
2124 case GenInline:
2125 if (fname.empty())
2126 fname = "makeLLVMInline";
2127 printInline(fname,tgtname);
2128 break;
2129 case GenVariable:
2130 if (fname.empty())
2131 fname = "makeLLVMVariable";
2132 printVariable(fname,tgtname);
2133 break;
2134 case GenType:
2135 if (fname.empty())
2136 fname = "makeLLVMType";
2137 printType(fname,tgtname);
2138 break;
Anton Korobeynikov78695032008-04-23 22:29:24 +00002139 }
2140
Chris Lattnera0b8c902010-06-21 23:12:56 +00002141 return false;
Anton Korobeynikov78695032008-04-23 22:29:24 +00002142}
2143
2144char CppWriter::ID = 0;
2145
2146//===----------------------------------------------------------------------===//
2147// External Interface declaration
2148//===----------------------------------------------------------------------===//
2149
Rafael Espindola5560a4c2015-04-14 22:14:34 +00002150bool CPPTargetMachine::addPassesToEmitFile(
2151 PassManagerBase &PM, raw_pwrite_stream &o, CodeGenFileType FileType,
Alex Lorenz735c47e2015-06-15 20:30:22 +00002152 bool DisableVerify, AnalysisID StartAfter, AnalysisID StopAfter,
2153 MachineFunctionInitializer *MFInitializer) {
Rafael Espindola5682ce22015-04-09 21:06:08 +00002154 if (FileType != TargetMachine::CGFT_AssemblyFile)
2155 return true;
2156 auto FOut = llvm::make_unique<formatted_raw_ostream>(o);
2157 PM.add(new CppWriter(std::move(FOut)));
Anton Korobeynikov78695032008-04-23 22:29:24 +00002158 return false;
2159}