blob: 3b8c67d45b1a0d3733a0e302579282e6caedad30 [file] [log] [blame]
Chris Lattner3af3ba82002-05-09 21:31:18 +00001//===-- Writer.cpp - Library for converting LLVM code to C ----------------===//
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002//
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00003// This library converts LLVM code to C code, compilable by GCC.
Chris Lattner16c7bb22002-05-09 02:28:59 +00004//
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00005//===-----------------------------------------------------------------------==//
Chris Lattner16c7bb22002-05-09 02:28:59 +00006
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00007#include "llvm/Assembly/CWriter.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00008#include "llvm/Constants.h"
Chris Lattner2f5f51a2002-05-09 03:28:37 +00009#include "llvm/DerivedTypes.h"
10#include "llvm/Module.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000011#include "llvm/iMemory.h"
12#include "llvm/iTerminators.h"
13#include "llvm/iPHINode.h"
14#include "llvm/iOther.h"
Chris Lattner2f5f51a2002-05-09 03:28:37 +000015#include "llvm/iOperators.h"
Chris Lattner0e9f93e2002-08-31 00:29:16 +000016#include "llvm/Pass.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000017#include "llvm/SymbolTable.h"
Chris Lattner3af3ba82002-05-09 21:31:18 +000018#include "llvm/SlotCalculator.h"
Chris Lattner0e9f93e2002-08-31 00:29:16 +000019#include "llvm/Analysis/FindUsedTypes.h"
Chris Lattnerd1cf1b42002-09-20 23:26:33 +000020#include "llvm/Analysis/ConstantsScanner.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000021#include "llvm/Support/InstVisitor.h"
Chris Lattner7683a122002-05-09 20:33:35 +000022#include "llvm/Support/InstIterator.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000023#include "Support/StringExtras.h"
24#include "Support/STLExtras.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000025#include <algorithm>
Chris Lattner78771c82002-05-17 04:55:35 +000026#include <set>
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000027using std::string;
28using std::map;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000029using std::ostream;
30
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000031namespace {
Chris Lattner0e9f93e2002-08-31 00:29:16 +000032 class CWriter : public Pass, public InstVisitor<CWriter> {
33 ostream &Out;
34 SlotCalculator *Table;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000035 const Module *TheModule;
36 map<const Type *, string> TypeNames;
Chris Lattner78771c82002-05-17 04:55:35 +000037 std::set<const Value*> MangledGlobals;
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +000038
Chris Lattnerd1cf1b42002-09-20 23:26:33 +000039 map<const ConstantFP *, unsigned> FPConstantMap;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000040 public:
Chris Lattner0e9f93e2002-08-31 00:29:16 +000041 CWriter(ostream &o) : Out(o) {}
42
43 void getAnalysisUsage(AnalysisUsage &AU) const {
44 AU.setPreservesAll();
45 AU.addRequired<FindUsedTypes>();
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000046 }
Chris Lattner0e9f93e2002-08-31 00:29:16 +000047
48 virtual bool run(Module &M) {
49 // Initialize
50 Table = new SlotCalculator(&M, false);
51 TheModule = &M;
52
53 // Ensure that all structure types have names...
54 bool Changed = nameAllUsedStructureTypes(M);
55
56 // Run...
57 printModule(&M);
58
59 // Free memory...
60 delete Table;
61 TypeNames.clear();
62 MangledGlobals.clear();
63 return false;
64 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000065
Chris Lattner83c57752002-08-19 22:17:53 +000066 ostream &printType(const Type *Ty, const string &VariableName = "",
Vikram S. Adve969c4ad2002-08-25 20:00:08 +000067 bool IgnoreName = false, bool namedContext = true);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000068
Chris Lattnerbb03efd2002-06-25 15:57:03 +000069 void writeOperand(Value *Operand);
70 void writeOperandInternal(Value *Operand);
Chris Lattnerb5af06a2002-05-09 03:06:06 +000071
72 string getValueName(const Value *V);
Chris Lattnerb5af06a2002-05-09 03:06:06 +000073
Chris Lattner4fbf26d2002-05-09 20:53:56 +000074 private :
Chris Lattner0e9f93e2002-08-31 00:29:16 +000075 bool nameAllUsedStructureTypes(Module &M);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +000076 void printModule(Module *M);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000077 void printSymbolTable(const SymbolTable &ST);
Chris Lattner2c601a72002-09-20 15:05:40 +000078 void printContainedStructs(const Type *Ty, std::set<const StructType *> &);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000079 void printGlobal(const GlobalVariable *GV);
Chris Lattner4cda8352002-08-20 16:55:48 +000080 void printFunctionSignature(const Function *F, bool Prototype);
81
Chris Lattner8c3c4bf2002-05-09 15:49:41 +000082 void printFunction(Function *);
Chris Lattnerb5af06a2002-05-09 03:06:06 +000083
Chris Lattner6d492922002-08-19 21:32:41 +000084 void printConstant(Constant *CPV);
85 void printConstantArray(ConstantArray *CPA);
86
Chris Lattnerd0c668c2002-05-09 21:18:38 +000087 // isInlinableInst - Attempt to inline instructions into their uses to build
88 // trees as much as possible. To do this, we have to consistently decide
89 // what is acceptable to inline, so that variable declarations don't get
90 // printed and an extra copy of the expr is not emitted.
91 //
Chris Lattnerbb03efd2002-06-25 15:57:03 +000092 static bool isInlinableInst(const Instruction &I) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +000093 // Must be an expression, must be used exactly once. If it is dead, we
94 // emit it inline where it would go.
Chris Lattnerbb03efd2002-06-25 15:57:03 +000095 if (I.getType() == Type::VoidTy || I.use_size() != 1 ||
Chris Lattnerd0c668c2002-05-09 21:18:38 +000096 isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I))
97 return false;
98
99 // Only inline instruction it it's use is in the same BB as the inst.
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000100 return I.getParent() == cast<Instruction>(I.use_back())->getParent();
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000101 }
102
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000103 // Instruction visitation functions
104 friend class InstVisitor<CWriter>;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000105
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000106 void visitReturnInst(ReturnInst &I);
107 void visitBranchInst(BranchInst &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000108
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000109 void visitPHINode(PHINode &I) {}
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000110 void visitBinaryOperator(Instruction &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000111
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000112 void visitCastInst (CastInst &I);
113 void visitCallInst (CallInst &I);
114 void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000115
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000116 void visitMallocInst(MallocInst &I);
117 void visitAllocaInst(AllocaInst &I);
118 void visitFreeInst (FreeInst &I);
119 void visitLoadInst (LoadInst &I);
120 void visitStoreInst (StoreInst &I);
121 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner2f5f51a2002-05-09 03:28:37 +0000122
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000123 void visitInstruction(Instruction &I) {
Chris Lattnere7f65d3b2002-06-30 16:07:20 +0000124 std::cerr << "C Writer does not know about " << I;
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000125 abort();
126 }
127
128 void outputLValue(Instruction *I) {
129 Out << " " << getValueName(I) << " = ";
130 }
131 void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
132 unsigned Indent);
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000133 void printIndexingExpression(Value *Ptr, User::op_iterator I,
134 User::op_iterator E);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000135 };
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000136}
137
Chris Lattner2f499022002-05-09 04:21:21 +0000138// We dont want identifier names with ., space, - in them.
139// So we replace them with _
140static string makeNameProper(string x) {
141 string tmp;
142 for (string::iterator sI = x.begin(), sEnd = x.end(); sI != sEnd; sI++)
143 switch (*sI) {
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000144 case '.': tmp += "d_"; break;
145 case ' ': tmp += "s_"; break;
146 case '-': tmp += "D_"; break;
Chris Lattner2f499022002-05-09 04:21:21 +0000147 default: tmp += *sI;
148 }
149
150 return tmp;
151}
152
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000153string CWriter::getValueName(const Value *V) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000154 if (V->hasName()) { // Print out the label if it exists...
155 if (isa<GlobalValue>(V) && // Do not mangle globals...
156 cast<GlobalValue>(V)->hasExternalLinkage() && // Unless it's internal or
157 !MangledGlobals.count(V)) // Unless the name would collide if we don't
Chris Lattner2f499022002-05-09 04:21:21 +0000158 return makeNameProper(V->getName());
159
Chris Lattner2d05a1a2002-05-09 05:16:40 +0000160 return "l" + utostr(V->getType()->getUniqueID()) + "_" +
161 makeNameProper(V->getName());
Chris Lattner2f499022002-05-09 04:21:21 +0000162 }
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000163
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000164 int Slot = Table->getValSlot(V);
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000165 assert(Slot >= 0 && "Invalid value!");
Chris Lattner2d05a1a2002-05-09 05:16:40 +0000166 return "ltmp_" + itostr(Slot) + "_" + utostr(V->getType()->getUniqueID());
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000167}
168
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000169// A pointer type should not use parens around *'s alone, e.g., (**)
170inline bool ptrTypeNameNeedsParens(const string &NameSoFar) {
171 return (NameSoFar.find_last_not_of('*') != std::string::npos);
172}
173
Chris Lattner83c57752002-08-19 22:17:53 +0000174// Pass the Type* and the variable name and this prints out the variable
175// declaration.
176//
177ostream &CWriter::printType(const Type *Ty, const string &NameSoFar,
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000178 bool IgnoreName, bool namedContext) {
Chris Lattner83c57752002-08-19 22:17:53 +0000179 if (Ty->isPrimitiveType())
180 switch (Ty->getPrimitiveID()) {
181 case Type::VoidTyID: return Out << "void " << NameSoFar;
182 case Type::BoolTyID: return Out << "bool " << NameSoFar;
183 case Type::UByteTyID: return Out << "unsigned char " << NameSoFar;
184 case Type::SByteTyID: return Out << "signed char " << NameSoFar;
185 case Type::UShortTyID: return Out << "unsigned short " << NameSoFar;
186 case Type::ShortTyID: return Out << "short " << NameSoFar;
187 case Type::UIntTyID: return Out << "unsigned " << NameSoFar;
188 case Type::IntTyID: return Out << "int " << NameSoFar;
189 case Type::ULongTyID: return Out << "unsigned long long " << NameSoFar;
190 case Type::LongTyID: return Out << "signed long long " << NameSoFar;
191 case Type::FloatTyID: return Out << "float " << NameSoFar;
192 case Type::DoubleTyID: return Out << "double " << NameSoFar;
193 default :
194 std::cerr << "Unknown primitive type: " << Ty << "\n";
195 abort();
196 }
197
198 // Check to see if the type is named.
199 if (!IgnoreName) {
200 map<const Type *, string>::iterator I = TypeNames.find(Ty);
201 if (I != TypeNames.end()) {
202 return Out << I->second << " " << NameSoFar;
203 }
204 }
205
Chris Lattner83c57752002-08-19 22:17:53 +0000206 switch (Ty->getPrimitiveID()) {
207 case Type::FunctionTyID: {
208 const FunctionType *MTy = cast<FunctionType>(Ty);
209 printType(MTy->getReturnType(), "");
210 Out << " " << NameSoFar << " (";
211
212 for (FunctionType::ParamTypes::const_iterator
213 I = MTy->getParamTypes().begin(),
214 E = MTy->getParamTypes().end(); I != E; ++I) {
215 if (I != MTy->getParamTypes().begin())
216 Out << ", ";
217 printType(*I, "");
218 }
219 if (MTy->isVarArg()) {
220 if (!MTy->getParamTypes().empty())
221 Out << ", ";
222 Out << "...";
223 }
224 return Out << ")";
225 }
226 case Type::StructTyID: {
227 const StructType *STy = cast<StructType>(Ty);
228 Out << NameSoFar + " {\n";
229 unsigned Idx = 0;
230 for (StructType::ElementTypes::const_iterator
231 I = STy->getElementTypes().begin(),
232 E = STy->getElementTypes().end(); I != E; ++I) {
233 Out << " ";
234 printType(*I, "field" + utostr(Idx++));
235 Out << ";\n";
236 }
237 return Out << "}";
238 }
239
240 case Type::PointerTyID: {
241 const PointerType *PTy = cast<PointerType>(Ty);
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000242 std::string ptrName = "*" + NameSoFar;
243
244 // Do not need parens around "* NameSoFar" if NameSoFar consists only
245 // of zero or more '*' chars *and* this is not an unnamed pointer type
246 // such as the result type in a cast statement. Otherwise, enclose in ( ).
Nick Hildenbrandtc14ded42002-09-23 21:02:50 +0000247 if (ptrTypeNameNeedsParens(NameSoFar) || !namedContext ||
248 PTy->getElementType()->getPrimitiveID() == Type::ArrayTyID)
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000249 ptrName = "(" + ptrName + ")"; //
250
Vikram S. Adve42eb2ba2002-08-24 14:44:23 +0000251 return printType(PTy->getElementType(), ptrName);
Chris Lattner83c57752002-08-19 22:17:53 +0000252 }
253
254 case Type::ArrayTyID: {
255 const ArrayType *ATy = cast<ArrayType>(Ty);
256 unsigned NumElements = ATy->getNumElements();
257 return printType(ATy->getElementType(),
258 NameSoFar + "[" + utostr(NumElements) + "]");
259 }
260 default:
261 assert(0 && "Unhandled case in getTypeProps!");
262 abort();
263 }
264
265 return Out;
266}
267
Chris Lattner6d492922002-08-19 21:32:41 +0000268void CWriter::printConstantArray(ConstantArray *CPA) {
269
270 // As a special case, print the array as a string if it is an array of
271 // ubytes or an array of sbytes with positive values.
272 //
273 const Type *ETy = CPA->getType()->getElementType();
274 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
275
276 // Make sure the last character is a null char, as automatically added by C
277 if (CPA->getNumOperands() == 0 ||
278 !cast<Constant>(*(CPA->op_end()-1))->isNullValue())
279 isString = false;
280
281 if (isString) {
282 Out << "\"";
283 // Do not include the last character, which we know is null
284 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
285 unsigned char C = (ETy == Type::SByteTy) ?
286 (unsigned char)cast<ConstantSInt>(CPA->getOperand(i))->getValue() :
287 (unsigned char)cast<ConstantUInt>(CPA->getOperand(i))->getValue();
288
289 if (isprint(C)) {
290 Out << C;
291 } else {
292 switch (C) {
293 case '\n': Out << "\\n"; break;
294 case '\t': Out << "\\t"; break;
295 case '\r': Out << "\\r"; break;
296 case '\v': Out << "\\v"; break;
297 case '\a': Out << "\\a"; break;
298 default:
299 Out << "\\x";
300 Out << ( C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A');
301 Out << ((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A');
302 break;
303 }
304 }
305 }
306 Out << "\"";
307 } else {
308 Out << "{";
309 if (CPA->getNumOperands()) {
310 Out << " ";
311 printConstant(cast<Constant>(CPA->getOperand(0)));
312 for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
313 Out << ", ";
314 printConstant(cast<Constant>(CPA->getOperand(i)));
315 }
316 }
317 Out << " }";
318 }
319}
320
321
322// printConstant - The LLVM Constant to C Constant converter.
323void CWriter::printConstant(Constant *CPV) {
324 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
325 switch (CE->getOpcode()) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000326 case Instruction::Cast:
327 Out << "((";
328 printType(CPV->getType());
329 Out << ")";
330 printConstant(cast<Constant>(CPV->getOperand(0)));
331 Out << ")";
332 return;
333
334 case Instruction::GetElementPtr:
335 Out << "&(";
336 printIndexingExpression(CPV->getOperand(0),
337 CPV->op_begin()+1, CPV->op_end());
338 Out << ")";
339 return;
340 case Instruction::Add:
341 Out << "(";
342 printConstant(cast<Constant>(CPV->getOperand(0)));
343 Out << " + ";
344 printConstant(cast<Constant>(CPV->getOperand(1)));
345 Out << ")";
346 return;
347 case Instruction::Sub:
348 Out << "(";
349 printConstant(cast<Constant>(CPV->getOperand(0)));
350 Out << " - ";
351 printConstant(cast<Constant>(CPV->getOperand(1)));
352 Out << ")";
353 return;
354
Chris Lattner6d492922002-08-19 21:32:41 +0000355 default:
356 std::cerr << "CWriter Error: Unhandled constant expression: "
357 << CE << "\n";
358 abort();
359 }
360 }
361
362 switch (CPV->getType()->getPrimitiveID()) {
363 case Type::BoolTyID:
364 Out << (CPV == ConstantBool::False ? "0" : "1"); break;
365 case Type::SByteTyID:
366 case Type::ShortTyID:
367 case Type::IntTyID:
368 Out << cast<ConstantSInt>(CPV)->getValue(); break;
369 case Type::LongTyID:
370 Out << cast<ConstantSInt>(CPV)->getValue() << "ll"; break;
371
372 case Type::UByteTyID:
373 case Type::UShortTyID:
374 Out << cast<ConstantUInt>(CPV)->getValue(); break;
375 case Type::UIntTyID:
376 Out << cast<ConstantUInt>(CPV)->getValue() << "u"; break;
377 case Type::ULongTyID:
378 Out << cast<ConstantUInt>(CPV)->getValue() << "ull"; break;
379
380 case Type::FloatTyID:
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000381 case Type::DoubleTyID: {
382 ConstantFP *FPC = cast<ConstantFP>(CPV);
383 map<const ConstantFP *, unsigned>::iterator I = FPConstantMap.find(FPC);
384 if (I != FPConstantMap.end()) {
385 // Because of FP precision problems we must load from a stack allocated
386 // value that holds the value in hex.
387 Out << "(*(" << (FPC->getType() == Type::FloatTy ? "float" : "double")
388 << "*)&FloatConstant" << I->second << ")";
389 } else {
390 Out << FPC->getValue();
391 }
392 break;
393 }
Chris Lattner6d492922002-08-19 21:32:41 +0000394
395 case Type::ArrayTyID:
396 printConstantArray(cast<ConstantArray>(CPV));
397 break;
398
399 case Type::StructTyID: {
400 Out << "{";
401 if (CPV->getNumOperands()) {
402 Out << " ";
403 printConstant(cast<Constant>(CPV->getOperand(0)));
404 for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
405 Out << ", ";
406 printConstant(cast<Constant>(CPV->getOperand(i)));
407 }
408 }
409 Out << " }";
410 break;
411 }
412
413 case Type::PointerTyID:
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000414 if (isa<ConstantPointerNull>(CPV)) {
415 Out << "((";
Chris Lattner3af3ba82002-05-09 21:31:18 +0000416 printType(CPV->getType(), "");
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000417 Out << ")NULL)";
Chris Lattner6d492922002-08-19 21:32:41 +0000418 break;
419 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CPV)) {
420 writeOperand(CPR->getValue());
421 break;
422 }
423 // FALL THROUGH
424 default:
425 std::cerr << "Unknown constant type: " << CPV << "\n";
426 abort();
427 }
428}
429
430void CWriter::writeOperandInternal(Value *Operand) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000431 if (Instruction *I = dyn_cast<Instruction>(Operand))
432 if (isInlinableInst(*I)) {
433 // Should we inline this instruction to build a tree?
434 Out << "(";
435 visit(*I);
436 Out << ")";
437 return;
438 }
439
Chris Lattner6d492922002-08-19 21:32:41 +0000440 if (Operand->hasName()) {
441 Out << getValueName(Operand);
442 } else if (Constant *CPV = dyn_cast<Constant>(Operand)) {
443 printConstant(CPV);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000444 } else {
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000445 int Slot = Table->getValSlot(Operand);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000446 assert(Slot >= 0 && "Malformed LLVM!");
447 Out << "ltmp_" << Slot << "_" << Operand->getType()->getUniqueID();
448 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000449}
450
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000451void CWriter::writeOperand(Value *Operand) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000452 if (isa<GlobalVariable>(Operand))
453 Out << "(&"; // Global variables are references as their addresses by llvm
454
455 writeOperandInternal(Operand);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000456
457 if (isa<GlobalVariable>(Operand))
458 Out << ")";
459}
460
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000461// nameAllUsedStructureTypes - If there are structure types in the module that
462// are used but do not have names assigned to them in the symbol table yet then
463// we assign them names now.
464//
465bool CWriter::nameAllUsedStructureTypes(Module &M) {
466 // Get a set of types that are used by the program...
467 std::set<const Type *> UT = getAnalysis<FindUsedTypes>().getTypes();
468
469 // Loop over the module symbol table, removing types from UT that are already
470 // named.
471 //
472 SymbolTable *MST = M.getSymbolTableSure();
473 if (MST->find(Type::TypeTy) != MST->end())
474 for (SymbolTable::type_iterator I = MST->type_begin(Type::TypeTy),
475 E = MST->type_end(Type::TypeTy); I != E; ++I)
476 UT.erase(cast<Type>(I->second));
477
478 // UT now contains types that are not named. Loop over it, naming structure
479 // types.
480 //
481 bool Changed = false;
482 for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
483 I != E; ++I)
484 if (const StructType *ST = dyn_cast<StructType>(*I)) {
485 ((Value*)ST)->setName("unnamed", MST);
486 Changed = true;
487 }
488 return Changed;
489}
490
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000491void CWriter::printModule(Module *M) {
Chris Lattner78771c82002-05-17 04:55:35 +0000492 // Calculate which global values have names that will collide when we throw
493 // away type information.
Chris Lattner594b9fa2002-05-21 21:10:04 +0000494 { // Scope to delete the FoundNames set when we are done with it...
Chris Lattner78771c82002-05-17 04:55:35 +0000495 std::set<string> FoundNames;
496 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000497 if (I->hasName()) // If the global has a name...
498 if (FoundNames.count(I->getName())) // And the name is already used
499 MangledGlobals.insert(I); // Mangle the name
Chris Lattner78771c82002-05-17 04:55:35 +0000500 else
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000501 FoundNames.insert(I->getName()); // Otherwise, keep track of name
Chris Lattner78771c82002-05-17 04:55:35 +0000502
503 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000504 if (I->hasName()) // If the global has a name...
505 if (FoundNames.count(I->getName())) // And the name is already used
506 MangledGlobals.insert(I); // Mangle the name
Chris Lattner78771c82002-05-17 04:55:35 +0000507 else
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000508 FoundNames.insert(I->getName()); // Otherwise, keep track of name
Chris Lattner78771c82002-05-17 04:55:35 +0000509 }
510
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000511 // printing stdlib inclusion
512 // Out << "#include <stdlib.h>\n";
513
Chris Lattner16c7bb22002-05-09 02:28:59 +0000514 // get declaration for alloca
515 Out << "/* Provide Declarations */\n"
Chris Lattner594b9fa2002-05-21 21:10:04 +0000516 << "#include <malloc.h>\n"
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000517 << "#include <alloca.h>\n\n"
Chris Lattner16c7bb22002-05-09 02:28:59 +0000518
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000519 // Provide a definition for null if one does not already exist,
520 // and for `bool' if not compiling with a C++ compiler.
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000521 << "#ifndef NULL\n#define NULL 0\n#endif\n\n"
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000522 << "#ifndef __cplusplus\ntypedef unsigned char bool;\n#endif\n"
Chris Lattner16c7bb22002-05-09 02:28:59 +0000523
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000524 << "\n\n/* Support for floating point constants */\n"
525 << "typedef unsigned long long ConstantDoubleTy;\n"
526
Chris Lattnera4d4a852002-08-19 21:48:40 +0000527 << "\n\n/* Global Declarations */\n";
528
529 // First output all the declarations for the program, because C requires
530 // Functions & globals to be declared before they are used.
531 //
Chris Lattner16c7bb22002-05-09 02:28:59 +0000532
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000533 // Loop over the symbol table, emitting all named constants...
534 if (M->hasSymbolTable())
535 printSymbolTable(*M->getSymbolTable());
536
Chris Lattnera4d4a852002-08-19 21:48:40 +0000537 // Global variable declarations...
538 if (!M->gempty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000539 Out << "\n/* External Global Variable Declarations */\n";
Chris Lattnera4d4a852002-08-19 21:48:40 +0000540 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000541 if (I->hasExternalLinkage()) {
542 Out << "extern ";
543 printType(I->getType()->getElementType(), getValueName(I));
544 Out << ";\n";
545 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000546 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000547 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000548
Chris Lattnera4d4a852002-08-19 21:48:40 +0000549 // Function declarations
550 if (!M->empty()) {
551 Out << "\n/* Function Declarations */\n";
Chris Lattner4cda8352002-08-20 16:55:48 +0000552 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
553 printFunctionSignature(I, true);
554 Out << ";\n";
555 }
Chris Lattnera4d4a852002-08-19 21:48:40 +0000556 }
557
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000558 // Output the global variable definitions and contents...
Chris Lattnera4d4a852002-08-19 21:48:40 +0000559 if (!M->gempty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000560 Out << "\n\n/* Global Variable Definitions and Initialization */\n";
Chris Lattnera4d4a852002-08-19 21:48:40 +0000561 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000562 if (I->hasExternalLinkage())
563 continue; // printed above!
564 Out << "static ";
Chris Lattnera4d4a852002-08-19 21:48:40 +0000565 printType(I->getType()->getElementType(), getValueName(I));
566
567 if (I->hasInitializer()) {
568 Out << " = " ;
569 writeOperand(I->getInitializer());
570 }
571 Out << ";\n";
572 }
573 }
574
Chris Lattner16c7bb22002-05-09 02:28:59 +0000575 // Output all of the functions...
Chris Lattnera4d4a852002-08-19 21:48:40 +0000576 if (!M->empty()) {
577 Out << "\n\n/* Function Bodies */\n";
578 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
579 printFunction(I);
580 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000581}
582
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000583
Chris Lattner2db41cd2002-09-20 15:12:13 +0000584/// printSymbolTable - Run through symbol table looking for type names. If a
585/// type name is found, emit it's declaration...
Chris Lattnera4c047e2002-09-20 14:56:54 +0000586///
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000587void CWriter::printSymbolTable(const SymbolTable &ST) {
Chris Lattner2db41cd2002-09-20 15:12:13 +0000588 // If there are no type names, exit early.
589 if (ST.find(Type::TypeTy) == ST.end())
590 return;
591
592 // We are only interested in the type plane of the symbol table...
593 SymbolTable::type_const_iterator I = ST.type_begin(Type::TypeTy);
594 SymbolTable::type_const_iterator End = ST.type_end(Type::TypeTy);
595
Chris Lattner58d04d42002-09-20 15:18:30 +0000596 // Print out forward declarations for structure types before anything else!
597 Out << "/* Structure forward decls */\n";
598 for (; I != End; ++I)
599 if (const Type *STy = dyn_cast<StructType>(I->second)) {
600 string Name = "struct l_" + makeNameProper(I->first);
601 Out << Name << ";\n";
602 TypeNames.insert(std::make_pair(STy, Name));
603 }
604
605 Out << "\n";
606
607 // Now we can print out typedefs...
608 Out << "/* Typedefs */\n";
609 for (I = ST.type_begin(Type::TypeTy); I != End; ++I) {
610 const Type *Ty = cast<Type>(I->second);
611 string Name = "l_" + makeNameProper(I->first);
612 Out << "typedef ";
Chris Lattner270d78a2002-09-20 15:20:24 +0000613 printType(Ty, Name);
Chris Lattner58d04d42002-09-20 15:18:30 +0000614 Out << ";\n";
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000615 }
616
617 Out << "\n";
618
Chris Lattner2c601a72002-09-20 15:05:40 +0000619 // Keep track of which structures have been printed so far...
620 std::set<const StructType *> StructPrinted;
621
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000622 // Loop over all structures then push them into the stack so they are
623 // printed in the correct order.
Chris Lattner2db41cd2002-09-20 15:12:13 +0000624 //
Chris Lattner58d04d42002-09-20 15:18:30 +0000625 Out << "/* Structure contents */\n";
Chris Lattner2db41cd2002-09-20 15:12:13 +0000626 for (I = ST.type_begin(Type::TypeTy); I != End; ++I)
627 if (const StructType *STy = dyn_cast<StructType>(I->second))
628 printContainedStructs(STy, StructPrinted);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000629}
630
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000631// Push the struct onto the stack and recursively push all structs
632// this one depends on.
Chris Lattner2c601a72002-09-20 15:05:40 +0000633void CWriter::printContainedStructs(const Type *Ty,
634 std::set<const StructType*> &StructPrinted){
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000635 if (const StructType *STy = dyn_cast<StructType>(Ty)){
636 //Check to see if we have already printed this struct
Chris Lattner2c601a72002-09-20 15:05:40 +0000637 if (StructPrinted.count(STy) == 0) {
638 // Print all contained types first...
Chris Lattnera4c047e2002-09-20 14:56:54 +0000639 for (StructType::ElementTypes::const_iterator
640 I = STy->getElementTypes().begin(),
641 E = STy->getElementTypes().end(); I != E; ++I) {
Chris Lattner2c601a72002-09-20 15:05:40 +0000642 const Type *Ty1 = I->get();
Chris Lattnera4c047e2002-09-20 14:56:54 +0000643 if (isa<StructType>(Ty1) || isa<ArrayType>(Ty1))
Chris Lattner2c601a72002-09-20 15:05:40 +0000644 printContainedStructs(Ty1, StructPrinted);
Chris Lattnera4c047e2002-09-20 14:56:54 +0000645 }
646
Chris Lattner2c601a72002-09-20 15:05:40 +0000647 //Print structure type out..
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000648 StructPrinted.insert(STy);
649 string Name = TypeNames[STy];
650 printType(STy, Name, true);
Chris Lattner58d04d42002-09-20 15:18:30 +0000651 Out << ";\n\n";
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000652 }
Chris Lattnera4c047e2002-09-20 14:56:54 +0000653
Chris Lattner2c601a72002-09-20 15:05:40 +0000654 // If it is an array, check contained types and continue
655 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)){
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000656 const Type *Ty1 = ATy->getElementType();
657 if (isa<StructType>(Ty1) || isa<ArrayType>(Ty1))
Chris Lattner2c601a72002-09-20 15:05:40 +0000658 printContainedStructs(Ty1, StructPrinted);
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000659 }
660}
661
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000662
Chris Lattner4cda8352002-08-20 16:55:48 +0000663void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000664 if (F->hasInternalLinkage()) Out << "static ";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000665
666 // Loop over the arguments, printing them...
Chris Lattner16c7bb22002-05-09 02:28:59 +0000667 const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000668
Chris Lattner16c7bb22002-05-09 02:28:59 +0000669 // Print out the return type and name...
Chris Lattner2a7ab2e2002-05-09 04:39:00 +0000670 printType(F->getReturnType());
Chris Lattner1f02c892002-05-09 20:14:10 +0000671 Out << getValueName(F) << "(";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000672
Chris Lattner16c7bb22002-05-09 02:28:59 +0000673 if (!F->isExternal()) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000674 if (!F->aempty()) {
Chris Lattner4cda8352002-08-20 16:55:48 +0000675 string ArgName;
676 if (F->abegin()->hasName() || !Prototype)
677 ArgName = getValueName(F->abegin());
678
679 printType(F->afront().getType(), ArgName);
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000680
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000681 for (Function::const_aiterator I = ++F->abegin(), E = F->aend();
682 I != E; ++I) {
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000683 Out << ", ";
Chris Lattner4cda8352002-08-20 16:55:48 +0000684 if (I->hasName() || !Prototype)
685 ArgName = getValueName(I);
686 else
687 ArgName = "";
688 printType(I->getType(), ArgName);
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000689 }
690 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000691 } else {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000692 // Loop over the arguments, printing them...
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000693 for (FunctionType::ParamTypes::const_iterator I =
Chris Lattner16c7bb22002-05-09 02:28:59 +0000694 FT->getParamTypes().begin(),
695 E = FT->getParamTypes().end(); I != E; ++I) {
696 if (I != FT->getParamTypes().begin()) Out << ", ";
Chris Lattner2a7ab2e2002-05-09 04:39:00 +0000697 printType(*I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000698 }
699 }
700
Chris Lattner1f8c4a12002-09-20 22:32:30 +0000701 // Finish printing arguments... if this is a vararg function, print the ...,
702 // unless there are no known types, in which case, we just emit ().
703 //
704 if (FT->isVarArg() && !FT->getParamTypes().empty()) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000705 if (FT->getParamTypes().size()) Out << ", ";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000706 Out << "..."; // Output varargs portion of signature!
707 }
Chris Lattner16c7bb22002-05-09 02:28:59 +0000708 Out << ")";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000709}
710
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000711
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000712void CWriter::printFunction(Function *F) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000713 if (F->isExternal()) return;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000714
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000715 Table->incorporateFunction(F);
Chris Lattnerf34ee812002-05-09 03:12:34 +0000716
Chris Lattner4cda8352002-08-20 16:55:48 +0000717 printFunctionSignature(F, false);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000718 Out << " {\n";
719
Chris Lattner497e19a2002-05-09 20:39:03 +0000720 // print local variable information for the function
Chris Lattner7683a122002-05-09 20:33:35 +0000721 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000722 if ((*I)->getType() != Type::VoidTy && !isInlinableInst(**I)) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000723 Out << " ";
Chris Lattner3af3ba82002-05-09 21:31:18 +0000724 printType((*I)->getType(), getValueName(*I));
Chris Lattner16c7bb22002-05-09 02:28:59 +0000725 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000726 }
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000727
728 Out << "\n";
729
730 // Scan the function for floating point constants. If any FP constant is used
731 // in the function, we want to redirect it here so that we do not depend on
732 // the precision of the printed form.
733 //
734 unsigned FPCounter = 0;
735 for (constant_iterator I = constant_begin(F), E = constant_end(F); I != E;++I)
736 if (const ConstantFP *FPC = dyn_cast<ConstantFP>(*I))
737 if (FPConstantMap.find(FPC) == FPConstantMap.end()) {
738 double Val = FPC->getValue();
739
740 FPConstantMap[FPC] = FPCounter; // Number the FP constants
741 Out << " const ConstantDoubleTy FloatConstant" << FPCounter++
742 << " = 0x" << std::hex << *(unsigned long long*)&Val << std::dec
743 << "; /* " << Val << " */\n";
744 }
745
746 Out << "\n";
Chris Lattner16c7bb22002-05-09 02:28:59 +0000747
748 // print the basic blocks
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000749 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
750 BasicBlock *Prev = BB->getPrev();
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000751
752 // Don't print the label for the basic block if there are no uses, or if the
753 // only terminator use is the precessor basic block's terminator. We have
754 // to scan the use list because PHI nodes use basic blocks too but do not
755 // require a label to be generated.
756 //
757 bool NeedsLabel = false;
758 for (Value::use_iterator UI = BB->use_begin(), UE = BB->use_end();
759 UI != UE; ++UI)
760 if (TerminatorInst *TI = dyn_cast<TerminatorInst>(*UI))
761 if (TI != Prev->getTerminator()) {
762 NeedsLabel = true;
763 break;
764 }
765
766 if (NeedsLabel) Out << getValueName(BB) << ":\n";
767
768 // Output all of the instructions in the basic block...
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000769 for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E; ++II){
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000770 if (!isInlinableInst(*II) && !isa<PHINode>(*II)) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000771 if (II->getType() != Type::VoidTy)
772 outputLValue(II);
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000773 else
774 Out << " ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000775 visit(*II);
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000776 Out << ";\n";
777 }
778 }
779
780 // Don't emit prefix or suffix for the terminator...
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000781 visit(*BB->getTerminator());
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000782 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000783
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000784 Out << "}\n\n";
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000785 Table->purgeFunction();
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000786 FPConstantMap.clear();
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000787}
788
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000789// Specific Instruction type classes... note that all of the casts are
790// neccesary because we use the instruction classes as opaque types...
791//
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000792void CWriter::visitReturnInst(ReturnInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000793 // Don't output a void return if this is the last basic block in the function
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000794 if (I.getNumOperands() == 0 &&
795 &*--I.getParent()->getParent()->end() == I.getParent() &&
796 !I.getParent()->size() == 1) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000797 return;
Chris Lattner963b70b2002-05-21 18:05:19 +0000798 }
Chris Lattner44408262002-05-09 03:50:42 +0000799
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000800 Out << " return";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000801 if (I.getNumOperands()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000802 Out << " ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000803 writeOperand(I.getOperand(0));
Chris Lattner16c7bb22002-05-09 02:28:59 +0000804 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000805 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000806}
807
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000808static bool isGotoCodeNeccessary(BasicBlock *From, BasicBlock *To) {
809 // If PHI nodes need copies, we need the copy code...
810 if (isa<PHINode>(To->front()) ||
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000811 From->getNext() != To) // Not directly successor, need goto
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000812 return true;
813
814 // Otherwise we don't need the code.
815 return false;
816}
817
818void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
819 unsigned Indent) {
820 for (BasicBlock::iterator I = Succ->begin();
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000821 PHINode *PN = dyn_cast<PHINode>(&*I); ++I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000822 // now we have to do the printing
823 Out << string(Indent, ' ');
824 outputLValue(PN);
825 writeOperand(PN->getIncomingValue(PN->getBasicBlockIndex(CurBB)));
826 Out << "; /* for PHI node */\n";
827 }
828
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000829 if (CurBB->getNext() != Succ) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000830 Out << string(Indent, ' ') << " goto ";
831 writeOperand(Succ);
832 Out << ";\n";
833 }
834}
835
836// Brach instruction printing - Avoid printing out a brach to a basic block that
837// immediately succeeds the current one.
838//
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000839void CWriter::visitBranchInst(BranchInst &I) {
840 if (I.isConditional()) {
841 if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(0))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000842 Out << " if (";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000843 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000844 Out << ") {\n";
845
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000846 printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000847
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000848 if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(1))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000849 Out << " } else {\n";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000850 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000851 }
852 } else {
853 // First goto not neccesary, assume second one is...
854 Out << " if (!";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000855 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000856 Out << ") {\n";
857
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000858 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000859 }
860
861 Out << " }\n";
862 } else {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000863 printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000864 }
865 Out << "\n";
866}
867
868
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000869void CWriter::visitBinaryOperator(Instruction &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000870 // binary instructions, shift instructions, setCond instructions.
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000871 if (isa<PointerType>(I.getType())) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000872 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000873 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000874 Out << ")";
875 }
876
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000877 if (isa<PointerType>(I.getType())) Out << "(long long)";
878 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000879
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000880 switch (I.getOpcode()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000881 case Instruction::Add: Out << " + "; break;
882 case Instruction::Sub: Out << " - "; break;
883 case Instruction::Mul: Out << "*"; break;
884 case Instruction::Div: Out << "/"; break;
885 case Instruction::Rem: Out << "%"; break;
886 case Instruction::And: Out << " & "; break;
887 case Instruction::Or: Out << " | "; break;
888 case Instruction::Xor: Out << " ^ "; break;
889 case Instruction::SetEQ: Out << " == "; break;
890 case Instruction::SetNE: Out << " != "; break;
891 case Instruction::SetLE: Out << " <= "; break;
892 case Instruction::SetGE: Out << " >= "; break;
893 case Instruction::SetLT: Out << " < "; break;
894 case Instruction::SetGT: Out << " > "; break;
895 case Instruction::Shl : Out << " << "; break;
896 case Instruction::Shr : Out << " >> "; break;
Chris Lattnere7f65d3b2002-06-30 16:07:20 +0000897 default: std::cerr << "Invalid operator type!" << I; abort();
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000898 }
899
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000900 if (isa<PointerType>(I.getType())) Out << "(long long)";
901 writeOperand(I.getOperand(1));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000902}
903
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000904void CWriter::visitCastInst(CastInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000905 Out << "(";
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000906 printType(I.getType(), string(""),/*ignoreName*/false, /*namedContext*/false);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000907 Out << ")";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000908 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000909}
910
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000911void CWriter::visitCallInst(CallInst &I) {
912 const PointerType *PTy = cast<PointerType>(I.getCalledValue()->getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000913 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
914 const Type *RetTy = FTy->getReturnType();
915
Chris Lattnerfabc8802002-08-26 20:50:09 +0000916 writeOperand(I.getOperand(0));
917 Out << "(";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000918
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000919 if (I.getNumOperands() > 1) {
920 writeOperand(I.getOperand(1));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000921
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000922 for (unsigned op = 2, Eop = I.getNumOperands(); op != Eop; ++op) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000923 Out << ", ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000924 writeOperand(I.getOperand(op));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000925 }
926 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000927 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000928}
929
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000930void CWriter::visitMallocInst(MallocInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000931 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000932 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000933 Out << ")malloc(sizeof(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000934 printType(I.getType()->getElementType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000935 Out << ")";
936
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000937 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000938 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000939 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000940 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000941 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000942}
943
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000944void CWriter::visitAllocaInst(AllocaInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000945 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000946 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000947 Out << ") alloca(sizeof(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000948 printType(I.getType()->getElementType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000949 Out << ")";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000950 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000951 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000952 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000953 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000954 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000955}
956
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000957void CWriter::visitFreeInst(FreeInst &I) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000958 Out << "free(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000959 writeOperand(I.getOperand(0));
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000960 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000961}
962
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000963void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
964 User::op_iterator E) {
965 bool HasImplicitAddress = false;
966 // If accessing a global value with no indexing, avoid *(&GV) syndrome
967 if (GlobalValue *V = dyn_cast<GlobalValue>(Ptr)) {
968 HasImplicitAddress = true;
969 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Ptr)) {
970 HasImplicitAddress = true;
971 Ptr = CPR->getValue(); // Get to the global...
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000972 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000973
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000974 if (I == E) {
975 if (!HasImplicitAddress)
976 Out << "*"; // Implicit zero first argument: '*x' is equivalent to 'x[0]'
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000977
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000978 writeOperandInternal(Ptr);
979 return;
980 }
981
982 const Constant *CI = dyn_cast<Constant>(I->get());
983 if (HasImplicitAddress && (!CI || !CI->isNullValue()))
984 Out << "(&";
985
986 writeOperandInternal(Ptr);
987
988 if (HasImplicitAddress && (!CI || !CI->isNullValue()))
989 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000990
991 // Print out the -> operator if possible...
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000992 if (CI && CI->isNullValue() && I+1 != E) {
993 if ((*(I+1))->getType() == Type::UByteTy) {
994 Out << (HasImplicitAddress ? "." : "->");
995 Out << "field" << cast<ConstantUInt>(*(I+1))->getValue();
996 I += 2;
Vikram S. Adve42eb2ba2002-08-24 14:44:23 +0000997 } else { // First array index of 0: Just skip it
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000998 ++I;
999 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001000 }
Chris Lattner5dfe7672002-08-22 22:48:55 +00001001
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001002 for (; I != E; ++I)
Chris Lattner106ff452002-09-11 01:21:29 +00001003 if ((*I)->getType() == Type::LongTy) {
Vikram S. Adve9d6f13f2002-09-15 21:51:04 +00001004 Out << "[";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001005 writeOperand(*I);
Vikram S. Adve9d6f13f2002-09-15 21:51:04 +00001006 Out << "]";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001007 } else {
Chris Lattner59afbf32002-09-12 20:34:47 +00001008 Out << ".field" << cast<ConstantUInt>(*I)->getValue();
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001009 }
1010}
1011
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001012void CWriter::visitLoadInst(LoadInst &I) {
Chris Lattner5dfe7672002-08-22 22:48:55 +00001013 Out << "*";
1014 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001015}
1016
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001017void CWriter::visitStoreInst(StoreInst &I) {
Chris Lattner5dfe7672002-08-22 22:48:55 +00001018 Out << "*";
1019 writeOperand(I.getPointerOperand());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001020 Out << " = ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001021 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001022}
1023
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001024void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001025 Out << "&";
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001026 printIndexingExpression(I.getPointerOperand(), I.idx_begin(), I.idx_end());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001027}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001028
1029//===----------------------------------------------------------------------===//
1030// External Interface declaration
1031//===----------------------------------------------------------------------===//
1032
Chris Lattner0e9f93e2002-08-31 00:29:16 +00001033Pass *createWriteToCPass(std::ostream &o) { return new CWriter(o); }