blob: f4fb7a245857961962d1753ec9abace6562279ea [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//
3// This library implements the functionality defined in llvm/Assembly/CWriter.h
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00004//
5// TODO : Recursive types.
Chris Lattner16c7bb22002-05-09 02:28:59 +00006//
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00007//===-----------------------------------------------------------------------==//
Chris Lattner16c7bb22002-05-09 02:28:59 +00008
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00009#include "llvm/Assembly/CWriter.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000010#include "llvm/Constants.h"
Chris Lattner2f5f51a2002-05-09 03:28:37 +000011#include "llvm/DerivedTypes.h"
12#include "llvm/Module.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000013#include "llvm/iMemory.h"
14#include "llvm/iTerminators.h"
15#include "llvm/iPHINode.h"
16#include "llvm/iOther.h"
Chris Lattner2f5f51a2002-05-09 03:28:37 +000017#include "llvm/iOperators.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000018#include "llvm/SymbolTable.h"
Chris Lattner3af3ba82002-05-09 21:31:18 +000019#include "llvm/SlotCalculator.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000020#include "llvm/Support/InstVisitor.h"
Chris Lattner7683a122002-05-09 20:33:35 +000021#include "llvm/Support/InstIterator.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000022#include "Support/StringExtras.h"
23#include "Support/STLExtras.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000024#include <algorithm>
Chris Lattner78771c82002-05-17 04:55:35 +000025#include <set>
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000026using std::string;
27using std::map;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000028using std::ostream;
29
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000030namespace {
Chris Lattner4fbf26d2002-05-09 20:53:56 +000031 class CWriter : public InstVisitor<CWriter> {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000032 ostream& Out;
33 SlotCalculator &Table;
34 const Module *TheModule;
35 map<const Type *, string> TypeNames;
Chris Lattner78771c82002-05-17 04:55:35 +000036 std::set<const Value*> MangledGlobals;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000037 public:
38 inline CWriter(ostream &o, SlotCalculator &Tab, const Module *M)
39 : Out(o), Table(Tab), TheModule(M) {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000040 }
41
Chris Lattner8c3c4bf2002-05-09 15:49:41 +000042 inline void write(Module *M) { printModule(M); }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000043
Chris Lattner83c57752002-08-19 22:17:53 +000044 ostream &printType(const Type *Ty, const string &VariableName = "",
45 bool IgnoreName = false);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000046
Chris Lattnerbb03efd2002-06-25 15:57:03 +000047 void writeOperand(Value *Operand);
48 void writeOperandInternal(Value *Operand);
Chris Lattnerb5af06a2002-05-09 03:06:06 +000049
50 string getValueName(const Value *V);
Chris Lattnerb5af06a2002-05-09 03:06:06 +000051
Chris Lattner4fbf26d2002-05-09 20:53:56 +000052 private :
Chris Lattner8c3c4bf2002-05-09 15:49:41 +000053 void printModule(Module *M);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000054 void printSymbolTable(const SymbolTable &ST);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000055 void printGlobal(const GlobalVariable *GV);
Chris Lattner4cda8352002-08-20 16:55:48 +000056 void printFunctionSignature(const Function *F, bool Prototype);
57
Chris Lattner8c3c4bf2002-05-09 15:49:41 +000058 void printFunction(Function *);
Chris Lattnerb5af06a2002-05-09 03:06:06 +000059
Chris Lattner6d492922002-08-19 21:32:41 +000060 void printConstant(Constant *CPV);
61 void printConstantArray(ConstantArray *CPA);
62
Chris Lattnerd0c668c2002-05-09 21:18:38 +000063 // isInlinableInst - Attempt to inline instructions into their uses to build
64 // trees as much as possible. To do this, we have to consistently decide
65 // what is acceptable to inline, so that variable declarations don't get
66 // printed and an extra copy of the expr is not emitted.
67 //
Chris Lattnerbb03efd2002-06-25 15:57:03 +000068 static bool isInlinableInst(const Instruction &I) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +000069 // Must be an expression, must be used exactly once. If it is dead, we
70 // emit it inline where it would go.
Chris Lattnerbb03efd2002-06-25 15:57:03 +000071 if (I.getType() == Type::VoidTy || I.use_size() != 1 ||
Chris Lattnerd0c668c2002-05-09 21:18:38 +000072 isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I))
73 return false;
74
75 // Only inline instruction it it's use is in the same BB as the inst.
Chris Lattnerbb03efd2002-06-25 15:57:03 +000076 return I.getParent() == cast<Instruction>(I.use_back())->getParent();
Chris Lattnerd0c668c2002-05-09 21:18:38 +000077 }
78
Chris Lattner4fbf26d2002-05-09 20:53:56 +000079 // Instruction visitation functions
80 friend class InstVisitor<CWriter>;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000081
Chris Lattnerbb03efd2002-06-25 15:57:03 +000082 void visitReturnInst(ReturnInst &I);
83 void visitBranchInst(BranchInst &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000084
Chris Lattnerbb03efd2002-06-25 15:57:03 +000085 void visitPHINode(PHINode &I) {}
Chris Lattnerbb03efd2002-06-25 15:57:03 +000086 void visitBinaryOperator(Instruction &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000087
Chris Lattnerbb03efd2002-06-25 15:57:03 +000088 void visitCastInst (CastInst &I);
89 void visitCallInst (CallInst &I);
90 void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); }
Chris Lattner4fbf26d2002-05-09 20:53:56 +000091
Chris Lattnerbb03efd2002-06-25 15:57:03 +000092 void visitMallocInst(MallocInst &I);
93 void visitAllocaInst(AllocaInst &I);
94 void visitFreeInst (FreeInst &I);
95 void visitLoadInst (LoadInst &I);
96 void visitStoreInst (StoreInst &I);
97 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner2f5f51a2002-05-09 03:28:37 +000098
Chris Lattnerbb03efd2002-06-25 15:57:03 +000099 void visitInstruction(Instruction &I) {
Chris Lattnere7f65d3b2002-06-30 16:07:20 +0000100 std::cerr << "C Writer does not know about " << I;
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000101 abort();
102 }
103
104 void outputLValue(Instruction *I) {
105 Out << " " << getValueName(I) << " = ";
106 }
107 void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
108 unsigned Indent);
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000109 void printIndexingExpression(Value *Ptr, User::op_iterator I,
110 User::op_iterator E);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000111 };
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000112}
113
Chris Lattner2f499022002-05-09 04:21:21 +0000114// We dont want identifier names with ., space, - in them.
115// So we replace them with _
116static string makeNameProper(string x) {
117 string tmp;
118 for (string::iterator sI = x.begin(), sEnd = x.end(); sI != sEnd; sI++)
119 switch (*sI) {
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000120 case '.': tmp += "d_"; break;
121 case ' ': tmp += "s_"; break;
122 case '-': tmp += "D_"; break;
Chris Lattner2f499022002-05-09 04:21:21 +0000123 default: tmp += *sI;
124 }
125
126 return tmp;
127}
128
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000129string CWriter::getValueName(const Value *V) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000130 if (V->hasName()) { // Print out the label if it exists...
131 if (isa<GlobalValue>(V) && // Do not mangle globals...
132 cast<GlobalValue>(V)->hasExternalLinkage() && // Unless it's internal or
133 !MangledGlobals.count(V)) // Unless the name would collide if we don't
Chris Lattner2f499022002-05-09 04:21:21 +0000134 return makeNameProper(V->getName());
135
Chris Lattner2d05a1a2002-05-09 05:16:40 +0000136 return "l" + utostr(V->getType()->getUniqueID()) + "_" +
137 makeNameProper(V->getName());
Chris Lattner2f499022002-05-09 04:21:21 +0000138 }
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000139
140 int Slot = Table.getValSlot(V);
141 assert(Slot >= 0 && "Invalid value!");
Chris Lattner2d05a1a2002-05-09 05:16:40 +0000142 return "ltmp_" + itostr(Slot) + "_" + utostr(V->getType()->getUniqueID());
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000143}
144
Chris Lattner83c57752002-08-19 22:17:53 +0000145// Pass the Type* and the variable name and this prints out the variable
146// declaration.
147//
148ostream &CWriter::printType(const Type *Ty, const string &NameSoFar,
Anand Shuklaed0f1c52002-08-23 10:55:49 +0000149 bool IgnoreName) {
Chris Lattner83c57752002-08-19 22:17:53 +0000150 if (Ty->isPrimitiveType())
151 switch (Ty->getPrimitiveID()) {
152 case Type::VoidTyID: return Out << "void " << NameSoFar;
153 case Type::BoolTyID: return Out << "bool " << NameSoFar;
154 case Type::UByteTyID: return Out << "unsigned char " << NameSoFar;
155 case Type::SByteTyID: return Out << "signed char " << NameSoFar;
156 case Type::UShortTyID: return Out << "unsigned short " << NameSoFar;
157 case Type::ShortTyID: return Out << "short " << NameSoFar;
158 case Type::UIntTyID: return Out << "unsigned " << NameSoFar;
159 case Type::IntTyID: return Out << "int " << NameSoFar;
160 case Type::ULongTyID: return Out << "unsigned long long " << NameSoFar;
161 case Type::LongTyID: return Out << "signed long long " << NameSoFar;
162 case Type::FloatTyID: return Out << "float " << NameSoFar;
163 case Type::DoubleTyID: return Out << "double " << NameSoFar;
164 default :
165 std::cerr << "Unknown primitive type: " << Ty << "\n";
166 abort();
167 }
168
169 // Check to see if the type is named.
170 if (!IgnoreName) {
171 map<const Type *, string>::iterator I = TypeNames.find(Ty);
172 if (I != TypeNames.end()) {
173 return Out << I->second << " " << NameSoFar;
174 }
175 }
176
Chris Lattner83c57752002-08-19 22:17:53 +0000177 switch (Ty->getPrimitiveID()) {
178 case Type::FunctionTyID: {
179 const FunctionType *MTy = cast<FunctionType>(Ty);
180 printType(MTy->getReturnType(), "");
181 Out << " " << NameSoFar << " (";
182
183 for (FunctionType::ParamTypes::const_iterator
184 I = MTy->getParamTypes().begin(),
185 E = MTy->getParamTypes().end(); I != E; ++I) {
186 if (I != MTy->getParamTypes().begin())
187 Out << ", ";
188 printType(*I, "");
189 }
190 if (MTy->isVarArg()) {
191 if (!MTy->getParamTypes().empty())
192 Out << ", ";
193 Out << "...";
194 }
195 return Out << ")";
196 }
197 case Type::StructTyID: {
198 const StructType *STy = cast<StructType>(Ty);
199 Out << NameSoFar + " {\n";
200 unsigned Idx = 0;
201 for (StructType::ElementTypes::const_iterator
202 I = STy->getElementTypes().begin(),
203 E = STy->getElementTypes().end(); I != E; ++I) {
204 Out << " ";
205 printType(*I, "field" + utostr(Idx++));
206 Out << ";\n";
207 }
208 return Out << "}";
209 }
210
211 case Type::PointerTyID: {
212 const PointerType *PTy = cast<PointerType>(Ty);
Vikram S. Adve42eb2ba2002-08-24 14:44:23 +0000213 std::string ptrName = NameSoFar.length()? "(*"+NameSoFar+")" : string("*");
214 return printType(PTy->getElementType(), ptrName);
Chris Lattner83c57752002-08-19 22:17:53 +0000215 }
216
217 case Type::ArrayTyID: {
218 const ArrayType *ATy = cast<ArrayType>(Ty);
219 unsigned NumElements = ATy->getNumElements();
220 return printType(ATy->getElementType(),
221 NameSoFar + "[" + utostr(NumElements) + "]");
222 }
223 default:
224 assert(0 && "Unhandled case in getTypeProps!");
225 abort();
226 }
227
228 return Out;
229}
230
Chris Lattner6d492922002-08-19 21:32:41 +0000231void CWriter::printConstantArray(ConstantArray *CPA) {
232
233 // As a special case, print the array as a string if it is an array of
234 // ubytes or an array of sbytes with positive values.
235 //
236 const Type *ETy = CPA->getType()->getElementType();
237 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
238
239 // Make sure the last character is a null char, as automatically added by C
240 if (CPA->getNumOperands() == 0 ||
241 !cast<Constant>(*(CPA->op_end()-1))->isNullValue())
242 isString = false;
243
244 if (isString) {
245 Out << "\"";
246 // Do not include the last character, which we know is null
247 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
248 unsigned char C = (ETy == Type::SByteTy) ?
249 (unsigned char)cast<ConstantSInt>(CPA->getOperand(i))->getValue() :
250 (unsigned char)cast<ConstantUInt>(CPA->getOperand(i))->getValue();
251
252 if (isprint(C)) {
253 Out << C;
254 } else {
255 switch (C) {
256 case '\n': Out << "\\n"; break;
257 case '\t': Out << "\\t"; break;
258 case '\r': Out << "\\r"; break;
259 case '\v': Out << "\\v"; break;
260 case '\a': Out << "\\a"; break;
261 default:
262 Out << "\\x";
263 Out << ( C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A');
264 Out << ((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A');
265 break;
266 }
267 }
268 }
269 Out << "\"";
270 } else {
271 Out << "{";
272 if (CPA->getNumOperands()) {
273 Out << " ";
274 printConstant(cast<Constant>(CPA->getOperand(0)));
275 for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
276 Out << ", ";
277 printConstant(cast<Constant>(CPA->getOperand(i)));
278 }
279 }
280 Out << " }";
281 }
282}
283
284
285// printConstant - The LLVM Constant to C Constant converter.
286void CWriter::printConstant(Constant *CPV) {
287 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
288 switch (CE->getOpcode()) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000289 case Instruction::Cast:
290 Out << "((";
291 printType(CPV->getType());
292 Out << ")";
293 printConstant(cast<Constant>(CPV->getOperand(0)));
294 Out << ")";
295 return;
296
297 case Instruction::GetElementPtr:
298 Out << "&(";
299 printIndexingExpression(CPV->getOperand(0),
300 CPV->op_begin()+1, CPV->op_end());
301 Out << ")";
302 return;
303 case Instruction::Add:
304 Out << "(";
305 printConstant(cast<Constant>(CPV->getOperand(0)));
306 Out << " + ";
307 printConstant(cast<Constant>(CPV->getOperand(1)));
308 Out << ")";
309 return;
310 case Instruction::Sub:
311 Out << "(";
312 printConstant(cast<Constant>(CPV->getOperand(0)));
313 Out << " - ";
314 printConstant(cast<Constant>(CPV->getOperand(1)));
315 Out << ")";
316 return;
317
Chris Lattner6d492922002-08-19 21:32:41 +0000318 default:
319 std::cerr << "CWriter Error: Unhandled constant expression: "
320 << CE << "\n";
321 abort();
322 }
323 }
324
325 switch (CPV->getType()->getPrimitiveID()) {
326 case Type::BoolTyID:
327 Out << (CPV == ConstantBool::False ? "0" : "1"); break;
328 case Type::SByteTyID:
329 case Type::ShortTyID:
330 case Type::IntTyID:
331 Out << cast<ConstantSInt>(CPV)->getValue(); break;
332 case Type::LongTyID:
333 Out << cast<ConstantSInt>(CPV)->getValue() << "ll"; break;
334
335 case Type::UByteTyID:
336 case Type::UShortTyID:
337 Out << cast<ConstantUInt>(CPV)->getValue(); break;
338 case Type::UIntTyID:
339 Out << cast<ConstantUInt>(CPV)->getValue() << "u"; break;
340 case Type::ULongTyID:
341 Out << cast<ConstantUInt>(CPV)->getValue() << "ull"; break;
342
343 case Type::FloatTyID:
344 case Type::DoubleTyID:
345 Out << cast<ConstantFP>(CPV)->getValue(); break;
346
347 case Type::ArrayTyID:
348 printConstantArray(cast<ConstantArray>(CPV));
349 break;
350
351 case Type::StructTyID: {
352 Out << "{";
353 if (CPV->getNumOperands()) {
354 Out << " ";
355 printConstant(cast<Constant>(CPV->getOperand(0)));
356 for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
357 Out << ", ";
358 printConstant(cast<Constant>(CPV->getOperand(i)));
359 }
360 }
361 Out << " }";
362 break;
363 }
364
365 case Type::PointerTyID:
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000366 if (isa<ConstantPointerNull>(CPV)) {
367 Out << "((";
Chris Lattner3af3ba82002-05-09 21:31:18 +0000368 printType(CPV->getType(), "");
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000369 Out << ")NULL)";
Chris Lattner6d492922002-08-19 21:32:41 +0000370 break;
371 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CPV)) {
372 writeOperand(CPR->getValue());
373 break;
374 }
375 // FALL THROUGH
376 default:
377 std::cerr << "Unknown constant type: " << CPV << "\n";
378 abort();
379 }
380}
381
382void CWriter::writeOperandInternal(Value *Operand) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000383 if (Instruction *I = dyn_cast<Instruction>(Operand))
384 if (isInlinableInst(*I)) {
385 // Should we inline this instruction to build a tree?
386 Out << "(";
387 visit(*I);
388 Out << ")";
389 return;
390 }
391
Chris Lattner6d492922002-08-19 21:32:41 +0000392 if (Operand->hasName()) {
393 Out << getValueName(Operand);
394 } else if (Constant *CPV = dyn_cast<Constant>(Operand)) {
395 printConstant(CPV);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000396 } else {
397 int Slot = Table.getValSlot(Operand);
398 assert(Slot >= 0 && "Malformed LLVM!");
399 Out << "ltmp_" << Slot << "_" << Operand->getType()->getUniqueID();
400 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000401}
402
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000403void CWriter::writeOperand(Value *Operand) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000404 if (isa<GlobalVariable>(Operand))
405 Out << "(&"; // Global variables are references as their addresses by llvm
406
407 writeOperandInternal(Operand);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000408
409 if (isa<GlobalVariable>(Operand))
410 Out << ")";
411}
412
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000413void CWriter::printModule(Module *M) {
Chris Lattner78771c82002-05-17 04:55:35 +0000414 // Calculate which global values have names that will collide when we throw
415 // away type information.
Chris Lattner594b9fa2002-05-21 21:10:04 +0000416 { // Scope to delete the FoundNames set when we are done with it...
Chris Lattner78771c82002-05-17 04:55:35 +0000417 std::set<string> FoundNames;
418 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000419 if (I->hasName()) // If the global has a name...
420 if (FoundNames.count(I->getName())) // And the name is already used
421 MangledGlobals.insert(I); // Mangle the name
Chris Lattner78771c82002-05-17 04:55:35 +0000422 else
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000423 FoundNames.insert(I->getName()); // Otherwise, keep track of name
Chris Lattner78771c82002-05-17 04:55:35 +0000424
425 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000426 if (I->hasName()) // If the global has a name...
427 if (FoundNames.count(I->getName())) // And the name is already used
428 MangledGlobals.insert(I); // Mangle the name
Chris Lattner78771c82002-05-17 04:55:35 +0000429 else
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000430 FoundNames.insert(I->getName()); // Otherwise, keep track of name
Chris Lattner78771c82002-05-17 04:55:35 +0000431 }
432
433
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000434 // printing stdlib inclusion
435 // Out << "#include <stdlib.h>\n";
436
Chris Lattner16c7bb22002-05-09 02:28:59 +0000437 // get declaration for alloca
438 Out << "/* Provide Declarations */\n"
Chris Lattner594b9fa2002-05-21 21:10:04 +0000439 << "#include <malloc.h>\n"
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000440 << "#include <alloca.h>\n\n"
Chris Lattner16c7bb22002-05-09 02:28:59 +0000441
442 // Provide a definition for null if one does not already exist.
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000443 << "#ifndef NULL\n#define NULL 0\n#endif\n\n"
Chris Lattner16c7bb22002-05-09 02:28:59 +0000444 << "typedef unsigned char bool;\n"
445
Chris Lattnera4d4a852002-08-19 21:48:40 +0000446 << "\n\n/* Global Declarations */\n";
447
448 // First output all the declarations for the program, because C requires
449 // Functions & globals to be declared before they are used.
450 //
Chris Lattner16c7bb22002-05-09 02:28:59 +0000451
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000452 // Loop over the symbol table, emitting all named constants...
453 if (M->hasSymbolTable())
454 printSymbolTable(*M->getSymbolTable());
455
Chris Lattnera4d4a852002-08-19 21:48:40 +0000456 // Global variable declarations...
457 if (!M->gempty()) {
458 Out << "\n/* Global Variable Declarations */\n";
459 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
460 Out << (I->hasExternalLinkage() ? "extern " : "static ");
461 printType(I->getType()->getElementType(), getValueName(I));
462 Out << ";\n";
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000463 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000464 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000465
Chris Lattnera4d4a852002-08-19 21:48:40 +0000466 // Function declarations
467 if (!M->empty()) {
468 Out << "\n/* Function Declarations */\n";
Chris Lattner4cda8352002-08-20 16:55:48 +0000469 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
470 printFunctionSignature(I, true);
471 Out << ";\n";
472 }
Chris Lattnera4d4a852002-08-19 21:48:40 +0000473 }
474
475 // Output the global variable contents...
476 if (!M->gempty()) {
477 Out << "\n\n/* Global Data */\n";
478 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
479 if (I->hasInternalLinkage()) Out << "static ";
480 printType(I->getType()->getElementType(), getValueName(I));
481
482 if (I->hasInitializer()) {
483 Out << " = " ;
484 writeOperand(I->getInitializer());
485 }
486 Out << ";\n";
487 }
488 }
489
Chris Lattner16c7bb22002-05-09 02:28:59 +0000490 // Output all of the functions...
Chris Lattnera4d4a852002-08-19 21:48:40 +0000491 if (!M->empty()) {
492 Out << "\n\n/* Function Bodies */\n";
493 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
494 printFunction(I);
495 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000496}
497
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000498
499// printSymbolTable - Run through symbol table looking for named constants
500// if a named constant is found, emit it's declaration...
501// Assuming that symbol table has only types and constants.
502void CWriter::printSymbolTable(const SymbolTable &ST) {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000503 for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) {
504 SymbolTable::type_const_iterator I = ST.type_begin(TI->first);
505 SymbolTable::type_const_iterator End = ST.type_end(TI->first);
506
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000507 for (; I != End; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000508 if (const Type *Ty = dyn_cast<StructType>(I->second)) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000509 string Name = "struct l_" + makeNameProper(I->first);
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000510 Out << Name << ";\n";
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000511 TypeNames.insert(std::make_pair(Ty, Name));
512 }
513 }
514
515 Out << "\n";
516
517 for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) {
518 SymbolTable::type_const_iterator I = ST.type_begin(TI->first);
519 SymbolTable::type_const_iterator End = ST.type_end(TI->first);
520
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000521 for (; I != End; ++I) {
522 const Value *V = I->second;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000523 if (const Type *Ty = dyn_cast<Type>(V)) {
524 string Name = "l_" + makeNameProper(I->first);
Chris Lattner1f02c892002-05-09 20:14:10 +0000525 if (isa<StructType>(Ty))
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000526 Name = "struct " + makeNameProper(Name);
Chris Lattner1f02c892002-05-09 20:14:10 +0000527 else
528 Out << "typedef ";
529
Chris Lattner83c57752002-08-19 22:17:53 +0000530 printType(Ty, Name, true);
531 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000532 }
533 }
534 }
535}
536
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000537
Chris Lattner4cda8352002-08-20 16:55:48 +0000538void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000539 if (F->hasInternalLinkage()) Out << "static ";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000540
541 // Loop over the arguments, printing them...
Chris Lattner16c7bb22002-05-09 02:28:59 +0000542 const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000543
Chris Lattner16c7bb22002-05-09 02:28:59 +0000544 // Print out the return type and name...
Chris Lattner2a7ab2e2002-05-09 04:39:00 +0000545 printType(F->getReturnType());
Chris Lattner1f02c892002-05-09 20:14:10 +0000546 Out << getValueName(F) << "(";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000547
Chris Lattner16c7bb22002-05-09 02:28:59 +0000548 if (!F->isExternal()) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000549 if (!F->aempty()) {
Chris Lattner4cda8352002-08-20 16:55:48 +0000550 string ArgName;
551 if (F->abegin()->hasName() || !Prototype)
552 ArgName = getValueName(F->abegin());
553
554 printType(F->afront().getType(), ArgName);
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000555
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000556 for (Function::const_aiterator I = ++F->abegin(), E = F->aend();
557 I != E; ++I) {
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000558 Out << ", ";
Chris Lattner4cda8352002-08-20 16:55:48 +0000559 if (I->hasName() || !Prototype)
560 ArgName = getValueName(I);
561 else
562 ArgName = "";
563 printType(I->getType(), ArgName);
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000564 }
565 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000566 } else {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000567 // Loop over the arguments, printing them...
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000568 for (FunctionType::ParamTypes::const_iterator I =
Chris Lattner16c7bb22002-05-09 02:28:59 +0000569 FT->getParamTypes().begin(),
570 E = FT->getParamTypes().end(); I != E; ++I) {
571 if (I != FT->getParamTypes().begin()) Out << ", ";
Chris Lattner2a7ab2e2002-05-09 04:39:00 +0000572 printType(*I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000573 }
574 }
575
576 // Finish printing arguments...
Chris Lattner16c7bb22002-05-09 02:28:59 +0000577 if (FT->isVarArg()) {
578 if (FT->getParamTypes().size()) Out << ", ";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000579 Out << "..."; // Output varargs portion of signature!
580 }
Chris Lattner16c7bb22002-05-09 02:28:59 +0000581 Out << ")";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000582}
583
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000584
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000585void CWriter::printFunction(Function *F) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000586 if (F->isExternal()) return;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000587
Chris Lattnerf34ee812002-05-09 03:12:34 +0000588 Table.incorporateFunction(F);
589
Chris Lattner4cda8352002-08-20 16:55:48 +0000590 printFunctionSignature(F, false);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000591 Out << " {\n";
592
Chris Lattner497e19a2002-05-09 20:39:03 +0000593 // print local variable information for the function
Chris Lattner7683a122002-05-09 20:33:35 +0000594 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000595 if ((*I)->getType() != Type::VoidTy && !isInlinableInst(**I)) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000596 Out << " ";
Chris Lattner3af3ba82002-05-09 21:31:18 +0000597 printType((*I)->getType(), getValueName(*I));
Chris Lattner16c7bb22002-05-09 02:28:59 +0000598 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000599 }
Chris Lattner16c7bb22002-05-09 02:28:59 +0000600
601 // print the basic blocks
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000602 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
603 BasicBlock *Prev = BB->getPrev();
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000604
605 // Don't print the label for the basic block if there are no uses, or if the
606 // only terminator use is the precessor basic block's terminator. We have
607 // to scan the use list because PHI nodes use basic blocks too but do not
608 // require a label to be generated.
609 //
610 bool NeedsLabel = false;
611 for (Value::use_iterator UI = BB->use_begin(), UE = BB->use_end();
612 UI != UE; ++UI)
613 if (TerminatorInst *TI = dyn_cast<TerminatorInst>(*UI))
614 if (TI != Prev->getTerminator()) {
615 NeedsLabel = true;
616 break;
617 }
618
619 if (NeedsLabel) Out << getValueName(BB) << ":\n";
620
621 // Output all of the instructions in the basic block...
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000622 for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E; ++II){
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000623 if (!isInlinableInst(*II) && !isa<PHINode>(*II)) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000624 if (II->getType() != Type::VoidTy)
625 outputLValue(II);
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000626 else
627 Out << " ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000628 visit(*II);
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000629 Out << ";\n";
630 }
631 }
632
633 // Don't emit prefix or suffix for the terminator...
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000634 visit(*BB->getTerminator());
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000635 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000636
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000637 Out << "}\n\n";
Chris Lattnerf34ee812002-05-09 03:12:34 +0000638 Table.purgeFunction();
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000639}
640
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000641// Specific Instruction type classes... note that all of the casts are
642// neccesary because we use the instruction classes as opaque types...
643//
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000644void CWriter::visitReturnInst(ReturnInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000645 // Don't output a void return if this is the last basic block in the function
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000646 if (I.getNumOperands() == 0 &&
647 &*--I.getParent()->getParent()->end() == I.getParent() &&
648 !I.getParent()->size() == 1) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000649 return;
Chris Lattner963b70b2002-05-21 18:05:19 +0000650 }
Chris Lattner44408262002-05-09 03:50:42 +0000651
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000652 Out << " return";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000653 if (I.getNumOperands()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000654 Out << " ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000655 writeOperand(I.getOperand(0));
Chris Lattner16c7bb22002-05-09 02:28:59 +0000656 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000657 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000658}
659
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000660static bool isGotoCodeNeccessary(BasicBlock *From, BasicBlock *To) {
661 // If PHI nodes need copies, we need the copy code...
662 if (isa<PHINode>(To->front()) ||
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000663 From->getNext() != To) // Not directly successor, need goto
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000664 return true;
665
666 // Otherwise we don't need the code.
667 return false;
668}
669
670void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
671 unsigned Indent) {
672 for (BasicBlock::iterator I = Succ->begin();
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000673 PHINode *PN = dyn_cast<PHINode>(&*I); ++I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000674 // now we have to do the printing
675 Out << string(Indent, ' ');
676 outputLValue(PN);
677 writeOperand(PN->getIncomingValue(PN->getBasicBlockIndex(CurBB)));
678 Out << "; /* for PHI node */\n";
679 }
680
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000681 if (CurBB->getNext() != Succ) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000682 Out << string(Indent, ' ') << " goto ";
683 writeOperand(Succ);
684 Out << ";\n";
685 }
686}
687
688// Brach instruction printing - Avoid printing out a brach to a basic block that
689// immediately succeeds the current one.
690//
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000691void CWriter::visitBranchInst(BranchInst &I) {
692 if (I.isConditional()) {
693 if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(0))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000694 Out << " if (";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000695 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000696 Out << ") {\n";
697
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000698 printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000699
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000700 if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(1))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000701 Out << " } else {\n";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000702 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000703 }
704 } else {
705 // First goto not neccesary, assume second one is...
706 Out << " if (!";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000707 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000708 Out << ") {\n";
709
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000710 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000711 }
712
713 Out << " }\n";
714 } else {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000715 printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000716 }
717 Out << "\n";
718}
719
720
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000721void CWriter::visitBinaryOperator(Instruction &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000722 // binary instructions, shift instructions, setCond instructions.
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000723 if (isa<PointerType>(I.getType())) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000724 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000725 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000726 Out << ")";
727 }
728
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000729 if (isa<PointerType>(I.getType())) Out << "(long long)";
730 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000731
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000732 switch (I.getOpcode()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000733 case Instruction::Add: Out << " + "; break;
734 case Instruction::Sub: Out << " - "; break;
735 case Instruction::Mul: Out << "*"; break;
736 case Instruction::Div: Out << "/"; break;
737 case Instruction::Rem: Out << "%"; break;
738 case Instruction::And: Out << " & "; break;
739 case Instruction::Or: Out << " | "; break;
740 case Instruction::Xor: Out << " ^ "; break;
741 case Instruction::SetEQ: Out << " == "; break;
742 case Instruction::SetNE: Out << " != "; break;
743 case Instruction::SetLE: Out << " <= "; break;
744 case Instruction::SetGE: Out << " >= "; break;
745 case Instruction::SetLT: Out << " < "; break;
746 case Instruction::SetGT: Out << " > "; break;
747 case Instruction::Shl : Out << " << "; break;
748 case Instruction::Shr : Out << " >> "; break;
Chris Lattnere7f65d3b2002-06-30 16:07:20 +0000749 default: std::cerr << "Invalid operator type!" << I; abort();
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000750 }
751
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000752 if (isa<PointerType>(I.getType())) Out << "(long long)";
753 writeOperand(I.getOperand(1));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000754}
755
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000756void CWriter::visitCastInst(CastInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000757 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000758 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000759 Out << ")";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000760 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000761}
762
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000763void CWriter::visitCallInst(CallInst &I) {
764 const PointerType *PTy = cast<PointerType>(I.getCalledValue()->getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000765 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
766 const Type *RetTy = FTy->getReturnType();
767
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000768 Out << getValueName(I.getOperand(0)) << "(";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000769
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000770 if (I.getNumOperands() > 1) {
771 writeOperand(I.getOperand(1));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000772
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000773 for (unsigned op = 2, Eop = I.getNumOperands(); op != Eop; ++op) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000774 Out << ", ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000775 writeOperand(I.getOperand(op));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000776 }
777 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000778 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000779}
780
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000781void CWriter::visitMallocInst(MallocInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000782 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000783 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000784 Out << ")malloc(sizeof(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000785 printType(I.getType()->getElementType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000786 Out << ")";
787
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000788 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000789 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000790 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000791 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000792 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000793}
794
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000795void CWriter::visitAllocaInst(AllocaInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000796 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000797 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000798 Out << ") alloca(sizeof(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000799 printType(I.getType()->getElementType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000800 Out << ")";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000801 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000802 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000803 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000804 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000805 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000806}
807
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000808void CWriter::visitFreeInst(FreeInst &I) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000809 Out << "free(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000810 writeOperand(I.getOperand(0));
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000811 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000812}
813
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000814void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
815 User::op_iterator E) {
816 bool HasImplicitAddress = false;
817 // If accessing a global value with no indexing, avoid *(&GV) syndrome
818 if (GlobalValue *V = dyn_cast<GlobalValue>(Ptr)) {
819 HasImplicitAddress = true;
820 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Ptr)) {
821 HasImplicitAddress = true;
822 Ptr = CPR->getValue(); // Get to the global...
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000823 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000824
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000825 if (I == E) {
826 if (!HasImplicitAddress)
827 Out << "*"; // Implicit zero first argument: '*x' is equivalent to 'x[0]'
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000828
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000829 writeOperandInternal(Ptr);
830 return;
831 }
832
833 const Constant *CI = dyn_cast<Constant>(I->get());
834 if (HasImplicitAddress && (!CI || !CI->isNullValue()))
835 Out << "(&";
836
837 writeOperandInternal(Ptr);
838
839 if (HasImplicitAddress && (!CI || !CI->isNullValue()))
840 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000841
842 // Print out the -> operator if possible...
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000843 if (CI && CI->isNullValue() && I+1 != E) {
844 if ((*(I+1))->getType() == Type::UByteTy) {
845 Out << (HasImplicitAddress ? "." : "->");
846 Out << "field" << cast<ConstantUInt>(*(I+1))->getValue();
847 I += 2;
Vikram S. Adve42eb2ba2002-08-24 14:44:23 +0000848 } else { // First array index of 0: Just skip it
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000849 ++I;
850 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000851 }
Chris Lattner5dfe7672002-08-22 22:48:55 +0000852
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000853 for (; I != E; ++I)
854 if ((*I)->getType() == Type::UIntTy) {
Vikram S. Adve42eb2ba2002-08-24 14:44:23 +0000855 Out << "[((int) ("; // sign-extend from 32 (to 64) bits
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000856 writeOperand(*I);
Vikram S. Adve42eb2ba2002-08-24 14:44:23 +0000857 Out << " * sizeof(";
858 printType(cast<PointerType>(Ptr->getType())->getElementType());
859 Out << "))) / sizeof(";
860 printType(cast<PointerType>(Ptr->getType())->getElementType());
861 Out << ")]";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000862 } else {
863 Out << ".field" << cast<ConstantUInt>(*I)->getValue();
864 }
865}
866
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000867void CWriter::visitLoadInst(LoadInst &I) {
Chris Lattner5dfe7672002-08-22 22:48:55 +0000868 Out << "*";
869 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000870}
871
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000872void CWriter::visitStoreInst(StoreInst &I) {
Chris Lattner5dfe7672002-08-22 22:48:55 +0000873 Out << "*";
874 writeOperand(I.getPointerOperand());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000875 Out << " = ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000876 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000877}
878
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000879void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000880 Out << "&";
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000881 printIndexingExpression(I.getPointerOperand(), I.idx_begin(), I.idx_end());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000882}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000883
884//===----------------------------------------------------------------------===//
885// External Interface declaration
886//===----------------------------------------------------------------------===//
887
Chris Lattnerf34ee812002-05-09 03:12:34 +0000888void WriteToC(const Module *M, ostream &Out) {
889 assert(M && "You can't write a null module!!");
890 SlotCalculator SlotTable(M, false);
891 CWriter W(Out, SlotTable, M);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000892 W.write((Module*)M);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000893 Out.flush();
894}