blob: 910fde6a8bbe7d599994c73ee6b91b82d5f62c5d [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,
149 bool IgnoreName = false) {
150 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);
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000213 return printType(PTy->getElementType(), "(*" + NameSoFar + ")");
Chris Lattner83c57752002-08-19 22:17:53 +0000214 }
215
216 case Type::ArrayTyID: {
217 const ArrayType *ATy = cast<ArrayType>(Ty);
218 unsigned NumElements = ATy->getNumElements();
219 return printType(ATy->getElementType(),
220 NameSoFar + "[" + utostr(NumElements) + "]");
221 }
222 default:
223 assert(0 && "Unhandled case in getTypeProps!");
224 abort();
225 }
226
227 return Out;
228}
229
Chris Lattner6d492922002-08-19 21:32:41 +0000230void CWriter::printConstantArray(ConstantArray *CPA) {
231
232 // As a special case, print the array as a string if it is an array of
233 // ubytes or an array of sbytes with positive values.
234 //
235 const Type *ETy = CPA->getType()->getElementType();
236 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
237
238 // Make sure the last character is a null char, as automatically added by C
239 if (CPA->getNumOperands() == 0 ||
240 !cast<Constant>(*(CPA->op_end()-1))->isNullValue())
241 isString = false;
242
243 if (isString) {
244 Out << "\"";
245 // Do not include the last character, which we know is null
246 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
247 unsigned char C = (ETy == Type::SByteTy) ?
248 (unsigned char)cast<ConstantSInt>(CPA->getOperand(i))->getValue() :
249 (unsigned char)cast<ConstantUInt>(CPA->getOperand(i))->getValue();
250
251 if (isprint(C)) {
252 Out << C;
253 } else {
254 switch (C) {
255 case '\n': Out << "\\n"; break;
256 case '\t': Out << "\\t"; break;
257 case '\r': Out << "\\r"; break;
258 case '\v': Out << "\\v"; break;
259 case '\a': Out << "\\a"; break;
260 default:
261 Out << "\\x";
262 Out << ( C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A');
263 Out << ((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A');
264 break;
265 }
266 }
267 }
268 Out << "\"";
269 } else {
270 Out << "{";
271 if (CPA->getNumOperands()) {
272 Out << " ";
273 printConstant(cast<Constant>(CPA->getOperand(0)));
274 for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
275 Out << ", ";
276 printConstant(cast<Constant>(CPA->getOperand(i)));
277 }
278 }
279 Out << " }";
280 }
281}
282
283
284// printConstant - The LLVM Constant to C Constant converter.
285void CWriter::printConstant(Constant *CPV) {
286 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
287 switch (CE->getOpcode()) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000288 case Instruction::Cast:
289 Out << "((";
290 printType(CPV->getType());
291 Out << ")";
292 printConstant(cast<Constant>(CPV->getOperand(0)));
293 Out << ")";
294 return;
295
296 case Instruction::GetElementPtr:
297 Out << "&(";
298 printIndexingExpression(CPV->getOperand(0),
299 CPV->op_begin()+1, CPV->op_end());
300 Out << ")";
301 return;
302 case Instruction::Add:
303 Out << "(";
304 printConstant(cast<Constant>(CPV->getOperand(0)));
305 Out << " + ";
306 printConstant(cast<Constant>(CPV->getOperand(1)));
307 Out << ")";
308 return;
309 case Instruction::Sub:
310 Out << "(";
311 printConstant(cast<Constant>(CPV->getOperand(0)));
312 Out << " - ";
313 printConstant(cast<Constant>(CPV->getOperand(1)));
314 Out << ")";
315 return;
316
Chris Lattner6d492922002-08-19 21:32:41 +0000317 default:
318 std::cerr << "CWriter Error: Unhandled constant expression: "
319 << CE << "\n";
320 abort();
321 }
322 }
323
324 switch (CPV->getType()->getPrimitiveID()) {
325 case Type::BoolTyID:
326 Out << (CPV == ConstantBool::False ? "0" : "1"); break;
327 case Type::SByteTyID:
328 case Type::ShortTyID:
329 case Type::IntTyID:
330 Out << cast<ConstantSInt>(CPV)->getValue(); break;
331 case Type::LongTyID:
332 Out << cast<ConstantSInt>(CPV)->getValue() << "ll"; break;
333
334 case Type::UByteTyID:
335 case Type::UShortTyID:
336 Out << cast<ConstantUInt>(CPV)->getValue(); break;
337 case Type::UIntTyID:
338 Out << cast<ConstantUInt>(CPV)->getValue() << "u"; break;
339 case Type::ULongTyID:
340 Out << cast<ConstantUInt>(CPV)->getValue() << "ull"; break;
341
342 case Type::FloatTyID:
343 case Type::DoubleTyID:
344 Out << cast<ConstantFP>(CPV)->getValue(); break;
345
346 case Type::ArrayTyID:
347 printConstantArray(cast<ConstantArray>(CPV));
348 break;
349
350 case Type::StructTyID: {
351 Out << "{";
352 if (CPV->getNumOperands()) {
353 Out << " ";
354 printConstant(cast<Constant>(CPV->getOperand(0)));
355 for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
356 Out << ", ";
357 printConstant(cast<Constant>(CPV->getOperand(i)));
358 }
359 }
360 Out << " }";
361 break;
362 }
363
364 case Type::PointerTyID:
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000365 if (isa<ConstantPointerNull>(CPV)) {
366 Out << "((";
Chris Lattner3af3ba82002-05-09 21:31:18 +0000367 printType(CPV->getType(), "");
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000368 Out << ")NULL)";
Chris Lattner6d492922002-08-19 21:32:41 +0000369 break;
370 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CPV)) {
371 writeOperand(CPR->getValue());
372 break;
373 }
374 // FALL THROUGH
375 default:
376 std::cerr << "Unknown constant type: " << CPV << "\n";
377 abort();
378 }
379}
380
381void CWriter::writeOperandInternal(Value *Operand) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000382 if (Instruction *I = dyn_cast<Instruction>(Operand))
383 if (isInlinableInst(*I)) {
384 // Should we inline this instruction to build a tree?
385 Out << "(";
386 visit(*I);
387 Out << ")";
388 return;
389 }
390
Chris Lattner6d492922002-08-19 21:32:41 +0000391 if (Operand->hasName()) {
392 Out << getValueName(Operand);
393 } else if (Constant *CPV = dyn_cast<Constant>(Operand)) {
394 printConstant(CPV);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000395 } else {
396 int Slot = Table.getValSlot(Operand);
397 assert(Slot >= 0 && "Malformed LLVM!");
398 Out << "ltmp_" << Slot << "_" << Operand->getType()->getUniqueID();
399 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000400}
401
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000402void CWriter::writeOperand(Value *Operand) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000403 if (isa<GlobalVariable>(Operand))
404 Out << "(&"; // Global variables are references as their addresses by llvm
405
406 writeOperandInternal(Operand);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000407
408 if (isa<GlobalVariable>(Operand))
409 Out << ")";
410}
411
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000412void CWriter::printModule(Module *M) {
Chris Lattner78771c82002-05-17 04:55:35 +0000413 // Calculate which global values have names that will collide when we throw
414 // away type information.
Chris Lattner594b9fa2002-05-21 21:10:04 +0000415 { // Scope to delete the FoundNames set when we are done with it...
Chris Lattner78771c82002-05-17 04:55:35 +0000416 std::set<string> FoundNames;
417 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000418 if (I->hasName()) // If the global has a name...
419 if (FoundNames.count(I->getName())) // And the name is already used
420 MangledGlobals.insert(I); // Mangle the name
Chris Lattner78771c82002-05-17 04:55:35 +0000421 else
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000422 FoundNames.insert(I->getName()); // Otherwise, keep track of name
Chris Lattner78771c82002-05-17 04:55:35 +0000423
424 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000425 if (I->hasName()) // If the global has a name...
426 if (FoundNames.count(I->getName())) // And the name is already used
427 MangledGlobals.insert(I); // Mangle the name
Chris Lattner78771c82002-05-17 04:55:35 +0000428 else
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000429 FoundNames.insert(I->getName()); // Otherwise, keep track of name
Chris Lattner78771c82002-05-17 04:55:35 +0000430 }
431
432
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000433 // printing stdlib inclusion
434 // Out << "#include <stdlib.h>\n";
435
Chris Lattner16c7bb22002-05-09 02:28:59 +0000436 // get declaration for alloca
437 Out << "/* Provide Declarations */\n"
Chris Lattner594b9fa2002-05-21 21:10:04 +0000438 << "#include <malloc.h>\n"
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000439 << "#include <alloca.h>\n\n"
Chris Lattner16c7bb22002-05-09 02:28:59 +0000440
441 // Provide a definition for null if one does not already exist.
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000442 << "#ifndef NULL\n#define NULL 0\n#endif\n\n"
Chris Lattner16c7bb22002-05-09 02:28:59 +0000443 << "typedef unsigned char bool;\n"
444
Chris Lattnera4d4a852002-08-19 21:48:40 +0000445 << "\n\n/* Global Declarations */\n";
446
447 // First output all the declarations for the program, because C requires
448 // Functions & globals to be declared before they are used.
449 //
Chris Lattner16c7bb22002-05-09 02:28:59 +0000450
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000451 // Loop over the symbol table, emitting all named constants...
452 if (M->hasSymbolTable())
453 printSymbolTable(*M->getSymbolTable());
454
Chris Lattnera4d4a852002-08-19 21:48:40 +0000455 // Global variable declarations...
456 if (!M->gempty()) {
457 Out << "\n/* Global Variable Declarations */\n";
458 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
459 Out << (I->hasExternalLinkage() ? "extern " : "static ");
460 printType(I->getType()->getElementType(), getValueName(I));
461 Out << ";\n";
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000462 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000463 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000464
Chris Lattnera4d4a852002-08-19 21:48:40 +0000465 // Function declarations
466 if (!M->empty()) {
467 Out << "\n/* Function Declarations */\n";
Chris Lattner4cda8352002-08-20 16:55:48 +0000468 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
469 printFunctionSignature(I, true);
470 Out << ";\n";
471 }
Chris Lattnera4d4a852002-08-19 21:48:40 +0000472 }
473
474 // Output the global variable contents...
475 if (!M->gempty()) {
476 Out << "\n\n/* Global Data */\n";
477 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I) {
478 if (I->hasInternalLinkage()) Out << "static ";
479 printType(I->getType()->getElementType(), getValueName(I));
480
481 if (I->hasInitializer()) {
482 Out << " = " ;
483 writeOperand(I->getInitializer());
484 }
485 Out << ";\n";
486 }
487 }
488
Chris Lattner16c7bb22002-05-09 02:28:59 +0000489 // Output all of the functions...
Chris Lattnera4d4a852002-08-19 21:48:40 +0000490 if (!M->empty()) {
491 Out << "\n\n/* Function Bodies */\n";
492 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
493 printFunction(I);
494 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000495}
496
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000497
498// printSymbolTable - Run through symbol table looking for named constants
499// if a named constant is found, emit it's declaration...
500// Assuming that symbol table has only types and constants.
501void CWriter::printSymbolTable(const SymbolTable &ST) {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000502 for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) {
503 SymbolTable::type_const_iterator I = ST.type_begin(TI->first);
504 SymbolTable::type_const_iterator End = ST.type_end(TI->first);
505
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000506 for (; I != End; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000507 if (const Type *Ty = dyn_cast<StructType>(I->second)) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000508 string Name = "struct l_" + makeNameProper(I->first);
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000509 Out << Name << ";\n";
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000510 TypeNames.insert(std::make_pair(Ty, Name));
511 }
512 }
513
514 Out << "\n";
515
516 for (SymbolTable::const_iterator TI = ST.begin(); TI != ST.end(); ++TI) {
517 SymbolTable::type_const_iterator I = ST.type_begin(TI->first);
518 SymbolTable::type_const_iterator End = ST.type_end(TI->first);
519
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000520 for (; I != End; ++I) {
521 const Value *V = I->second;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000522 if (const Type *Ty = dyn_cast<Type>(V)) {
523 string Name = "l_" + makeNameProper(I->first);
Chris Lattner1f02c892002-05-09 20:14:10 +0000524 if (isa<StructType>(Ty))
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000525 Name = "struct " + makeNameProper(Name);
Chris Lattner1f02c892002-05-09 20:14:10 +0000526 else
527 Out << "typedef ";
528
Chris Lattner83c57752002-08-19 22:17:53 +0000529 printType(Ty, Name, true);
530 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000531 }
532 }
533 }
534}
535
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000536
Chris Lattner4cda8352002-08-20 16:55:48 +0000537void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000538 if (F->hasInternalLinkage()) Out << "static ";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000539
540 // Loop over the arguments, printing them...
Chris Lattner16c7bb22002-05-09 02:28:59 +0000541 const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000542
Chris Lattner16c7bb22002-05-09 02:28:59 +0000543 // Print out the return type and name...
Chris Lattner2a7ab2e2002-05-09 04:39:00 +0000544 printType(F->getReturnType());
Chris Lattner1f02c892002-05-09 20:14:10 +0000545 Out << getValueName(F) << "(";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000546
Chris Lattner16c7bb22002-05-09 02:28:59 +0000547 if (!F->isExternal()) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000548 if (!F->aempty()) {
Chris Lattner4cda8352002-08-20 16:55:48 +0000549 string ArgName;
550 if (F->abegin()->hasName() || !Prototype)
551 ArgName = getValueName(F->abegin());
552
553 printType(F->afront().getType(), ArgName);
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000554
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000555 for (Function::const_aiterator I = ++F->abegin(), E = F->aend();
556 I != E; ++I) {
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000557 Out << ", ";
Chris Lattner4cda8352002-08-20 16:55:48 +0000558 if (I->hasName() || !Prototype)
559 ArgName = getValueName(I);
560 else
561 ArgName = "";
562 printType(I->getType(), ArgName);
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000563 }
564 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000565 } else {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000566 // Loop over the arguments, printing them...
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000567 for (FunctionType::ParamTypes::const_iterator I =
Chris Lattner16c7bb22002-05-09 02:28:59 +0000568 FT->getParamTypes().begin(),
569 E = FT->getParamTypes().end(); I != E; ++I) {
570 if (I != FT->getParamTypes().begin()) Out << ", ";
Chris Lattner2a7ab2e2002-05-09 04:39:00 +0000571 printType(*I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000572 }
573 }
574
575 // Finish printing arguments...
Chris Lattner16c7bb22002-05-09 02:28:59 +0000576 if (FT->isVarArg()) {
577 if (FT->getParamTypes().size()) Out << ", ";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000578 Out << "..."; // Output varargs portion of signature!
579 }
Chris Lattner16c7bb22002-05-09 02:28:59 +0000580 Out << ")";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000581}
582
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000583
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000584void CWriter::printFunction(Function *F) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000585 if (F->isExternal()) return;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000586
Chris Lattnerf34ee812002-05-09 03:12:34 +0000587 Table.incorporateFunction(F);
588
Chris Lattner4cda8352002-08-20 16:55:48 +0000589 printFunctionSignature(F, false);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000590 Out << " {\n";
591
Chris Lattner497e19a2002-05-09 20:39:03 +0000592 // print local variable information for the function
Chris Lattner7683a122002-05-09 20:33:35 +0000593 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000594 if ((*I)->getType() != Type::VoidTy && !isInlinableInst(**I)) {
Chris Lattner16c7bb22002-05-09 02:28:59 +0000595 Out << " ";
Chris Lattner3af3ba82002-05-09 21:31:18 +0000596 printType((*I)->getType(), getValueName(*I));
Chris Lattner16c7bb22002-05-09 02:28:59 +0000597 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000598 }
Chris Lattner16c7bb22002-05-09 02:28:59 +0000599
600 // print the basic blocks
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000601 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
602 BasicBlock *Prev = BB->getPrev();
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000603
604 // Don't print the label for the basic block if there are no uses, or if the
605 // only terminator use is the precessor basic block's terminator. We have
606 // to scan the use list because PHI nodes use basic blocks too but do not
607 // require a label to be generated.
608 //
609 bool NeedsLabel = false;
610 for (Value::use_iterator UI = BB->use_begin(), UE = BB->use_end();
611 UI != UE; ++UI)
612 if (TerminatorInst *TI = dyn_cast<TerminatorInst>(*UI))
613 if (TI != Prev->getTerminator()) {
614 NeedsLabel = true;
615 break;
616 }
617
618 if (NeedsLabel) Out << getValueName(BB) << ":\n";
619
620 // Output all of the instructions in the basic block...
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000621 for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E; ++II){
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000622 if (!isInlinableInst(*II) && !isa<PHINode>(*II)) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000623 if (II->getType() != Type::VoidTy)
624 outputLValue(II);
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000625 else
626 Out << " ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000627 visit(*II);
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000628 Out << ";\n";
629 }
630 }
631
632 // Don't emit prefix or suffix for the terminator...
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000633 visit(*BB->getTerminator());
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000634 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000635
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000636 Out << "}\n\n";
Chris Lattnerf34ee812002-05-09 03:12:34 +0000637 Table.purgeFunction();
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000638}
639
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000640// Specific Instruction type classes... note that all of the casts are
641// neccesary because we use the instruction classes as opaque types...
642//
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000643void CWriter::visitReturnInst(ReturnInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000644 // Don't output a void return if this is the last basic block in the function
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000645 if (I.getNumOperands() == 0 &&
646 &*--I.getParent()->getParent()->end() == I.getParent() &&
647 !I.getParent()->size() == 1) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000648 return;
Chris Lattner963b70b2002-05-21 18:05:19 +0000649 }
Chris Lattner44408262002-05-09 03:50:42 +0000650
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000651 Out << " return";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000652 if (I.getNumOperands()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000653 Out << " ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000654 writeOperand(I.getOperand(0));
Chris Lattner16c7bb22002-05-09 02:28:59 +0000655 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000656 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000657}
658
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000659static bool isGotoCodeNeccessary(BasicBlock *From, BasicBlock *To) {
660 // If PHI nodes need copies, we need the copy code...
661 if (isa<PHINode>(To->front()) ||
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000662 From->getNext() != To) // Not directly successor, need goto
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000663 return true;
664
665 // Otherwise we don't need the code.
666 return false;
667}
668
669void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
670 unsigned Indent) {
671 for (BasicBlock::iterator I = Succ->begin();
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000672 PHINode *PN = dyn_cast<PHINode>(&*I); ++I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000673 // now we have to do the printing
674 Out << string(Indent, ' ');
675 outputLValue(PN);
676 writeOperand(PN->getIncomingValue(PN->getBasicBlockIndex(CurBB)));
677 Out << "; /* for PHI node */\n";
678 }
679
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000680 if (CurBB->getNext() != Succ) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000681 Out << string(Indent, ' ') << " goto ";
682 writeOperand(Succ);
683 Out << ";\n";
684 }
685}
686
687// Brach instruction printing - Avoid printing out a brach to a basic block that
688// immediately succeeds the current one.
689//
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000690void CWriter::visitBranchInst(BranchInst &I) {
691 if (I.isConditional()) {
692 if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(0))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000693 Out << " if (";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000694 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000695 Out << ") {\n";
696
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000697 printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000698
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000699 if (isGotoCodeNeccessary(I.getParent(), I.getSuccessor(1))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000700 Out << " } else {\n";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000701 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000702 }
703 } else {
704 // First goto not neccesary, assume second one is...
705 Out << " if (!";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000706 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000707 Out << ") {\n";
708
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000709 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000710 }
711
712 Out << " }\n";
713 } else {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000714 printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000715 }
716 Out << "\n";
717}
718
719
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000720void CWriter::visitBinaryOperator(Instruction &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000721 // binary instructions, shift instructions, setCond instructions.
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000722 if (isa<PointerType>(I.getType())) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000723 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000724 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000725 Out << ")";
726 }
727
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000728 if (isa<PointerType>(I.getType())) Out << "(long long)";
729 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000730
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000731 switch (I.getOpcode()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000732 case Instruction::Add: Out << " + "; break;
733 case Instruction::Sub: Out << " - "; break;
734 case Instruction::Mul: Out << "*"; break;
735 case Instruction::Div: Out << "/"; break;
736 case Instruction::Rem: Out << "%"; break;
737 case Instruction::And: Out << " & "; break;
738 case Instruction::Or: Out << " | "; break;
739 case Instruction::Xor: Out << " ^ "; break;
740 case Instruction::SetEQ: Out << " == "; break;
741 case Instruction::SetNE: Out << " != "; break;
742 case Instruction::SetLE: Out << " <= "; break;
743 case Instruction::SetGE: Out << " >= "; break;
744 case Instruction::SetLT: Out << " < "; break;
745 case Instruction::SetGT: Out << " > "; break;
746 case Instruction::Shl : Out << " << "; break;
747 case Instruction::Shr : Out << " >> "; break;
Chris Lattnere7f65d3b2002-06-30 16:07:20 +0000748 default: std::cerr << "Invalid operator type!" << I; abort();
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000749 }
750
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000751 if (isa<PointerType>(I.getType())) Out << "(long long)";
752 writeOperand(I.getOperand(1));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000753}
754
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000755void CWriter::visitCastInst(CastInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000756 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000757 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000758 Out << ")";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000759 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000760}
761
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000762void CWriter::visitCallInst(CallInst &I) {
763 const PointerType *PTy = cast<PointerType>(I.getCalledValue()->getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000764 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
765 const Type *RetTy = FTy->getReturnType();
766
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000767 Out << getValueName(I.getOperand(0)) << "(";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000768
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000769 if (I.getNumOperands() > 1) {
770 writeOperand(I.getOperand(1));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000771
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000772 for (unsigned op = 2, Eop = I.getNumOperands(); op != Eop; ++op) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000773 Out << ", ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000774 writeOperand(I.getOperand(op));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000775 }
776 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000777 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000778}
779
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000780void CWriter::visitMallocInst(MallocInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000781 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000782 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000783 Out << ")malloc(sizeof(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000784 printType(I.getType()->getElementType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000785 Out << ")";
786
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000787 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000788 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000789 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000790 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000791 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000792}
793
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000794void CWriter::visitAllocaInst(AllocaInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000795 Out << "(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000796 printType(I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000797 Out << ") alloca(sizeof(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000798 printType(I.getType()->getElementType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000799 Out << ")";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000800 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000801 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000802 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000803 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000804 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000805}
806
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000807void CWriter::visitFreeInst(FreeInst &I) {
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000808 Out << "free(";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000809 writeOperand(I.getOperand(0));
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000810 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000811}
812
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000813void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
814 User::op_iterator E) {
815 bool HasImplicitAddress = false;
816 // If accessing a global value with no indexing, avoid *(&GV) syndrome
817 if (GlobalValue *V = dyn_cast<GlobalValue>(Ptr)) {
818 HasImplicitAddress = true;
819 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Ptr)) {
820 HasImplicitAddress = true;
821 Ptr = CPR->getValue(); // Get to the global...
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000822 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000823
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000824 if (I == E) {
825 if (!HasImplicitAddress)
826 Out << "*"; // Implicit zero first argument: '*x' is equivalent to 'x[0]'
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000827
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000828 writeOperandInternal(Ptr);
829 return;
830 }
831
832 const Constant *CI = dyn_cast<Constant>(I->get());
833 if (HasImplicitAddress && (!CI || !CI->isNullValue()))
834 Out << "(&";
835
836 writeOperandInternal(Ptr);
837
838 if (HasImplicitAddress && (!CI || !CI->isNullValue()))
839 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000840
841 // Print out the -> operator if possible...
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000842 if (CI && CI->isNullValue() && I+1 != E) {
843 if ((*(I+1))->getType() == Type::UByteTy) {
844 Out << (HasImplicitAddress ? "." : "->");
845 Out << "field" << cast<ConstantUInt>(*(I+1))->getValue();
846 I += 2;
847 } else { // Performing array indexing. Just skip the 0
848 ++I;
849 }
850 } else if (HasImplicitAddress) {
851
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000852 }
853
854 for (; I != E; ++I)
855 if ((*I)->getType() == Type::UIntTy) {
856 Out << "[";
857 writeOperand(*I);
858 Out << "]";
859 } else {
860 Out << ".field" << cast<ConstantUInt>(*I)->getValue();
861 }
862}
863
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000864void CWriter::visitLoadInst(LoadInst &I) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000865 printIndexingExpression(I.getPointerOperand(), I.idx_begin(), I.idx_end());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000866}
867
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000868void CWriter::visitStoreInst(StoreInst &I) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000869 printIndexingExpression(I.getPointerOperand(), I.idx_begin(), I.idx_end());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000870 Out << " = ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000871 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000872}
873
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000874void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000875 Out << "&";
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000876 printIndexingExpression(I.getPointerOperand(), I.idx_begin(), I.idx_end());
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000877}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000878
879//===----------------------------------------------------------------------===//
880// External Interface declaration
881//===----------------------------------------------------------------------===//
882
Chris Lattnerf34ee812002-05-09 03:12:34 +0000883void WriteToC(const Module *M, ostream &Out) {
884 assert(M && "You can't write a null module!!");
885 SlotCalculator SlotTable(M, false);
886 CWriter W(Out, SlotTable, M);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000887 W.write((Module*)M);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000888 Out.flush();
889}