blob: 1f6b90059797661c171ca601fc69cc3b479bf1c4 [file] [log] [blame]
Chris Lattner3af3ba82002-05-09 21:31:18 +00001//===-- Writer.cpp - Library for converting LLVM code to C ----------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00009//
Chris Lattner897bf0d2004-02-13 06:18:21 +000010// This library converts LLVM code to C code, compilable by GCC and other C
11// compilers.
Chris Lattner16c7bb22002-05-09 02:28:59 +000012//
Chris Lattneredd8ce12003-05-03 03:14:35 +000013//===----------------------------------------------------------------------===//
Chris Lattner84e66652003-05-03 07:11:00 +000014
Chris Lattnerf31182a2004-02-13 23:18:48 +000015#include "CTargetMachine.h"
16#include "llvm/Target/TargetMachineImpls.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000017#include "llvm/Constants.h"
Chris Lattner2f5f51a2002-05-09 03:28:37 +000018#include "llvm/DerivedTypes.h"
19#include "llvm/Module.h"
Chris Lattnera9f5e052003-04-22 20:19:52 +000020#include "llvm/Instructions.h"
Chris Lattner0e9f93e2002-08-31 00:29:16 +000021#include "llvm/Pass.h"
Chris Lattner94f4f8e2004-02-13 23:00:29 +000022#include "llvm/PassManager.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000023#include "llvm/SymbolTable.h"
Chris Lattner18ac3c82003-05-08 18:41:45 +000024#include "llvm/Intrinsics.h"
Chris Lattnerd1cf1b42002-09-20 23:26:33 +000025#include "llvm/Analysis/ConstantsScanner.h"
Chris Lattnercb3ad012004-05-09 20:41:32 +000026#include "llvm/Analysis/FindUsedTypes.h"
27#include "llvm/Analysis/LoopInfo.h"
Chris Lattner30483732004-06-20 07:49:54 +000028#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattner94f4f8e2004-02-13 23:00:29 +000029#include "llvm/Transforms/Scalar.h"
Chris Lattner23e90702003-11-25 20:49:55 +000030#include "llvm/Support/CallSite.h"
Chris Lattnera05e0ec2004-05-09 03:42:48 +000031#include "llvm/Support/CFG.h"
Chris Lattner23e90702003-11-25 20:49:55 +000032#include "llvm/Support/GetElementPtrTypeIterator.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000033#include "llvm/Support/InstVisitor.h"
Brian Gaeke49a178b2003-07-25 20:21:06 +000034#include "llvm/Support/Mangler.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000035#include "Support/StringExtras.h"
Chris Lattner2bcab1f2004-02-24 18:34:10 +000036#include "Config/config.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000037#include <algorithm>
Reid Spencer954da372004-07-04 12:19:56 +000038#include <iostream>
Nick Hildenbrandt98502372002-11-18 20:55:50 +000039#include <sstream>
Chris Lattner897bf0d2004-02-13 06:18:21 +000040using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000041
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000042namespace {
Chris Lattner68758072004-05-09 06:20:51 +000043 /// NameAllUsedStructs - This pass inserts names for any unnamed structure
44 /// types that are used by the program.
45 ///
46 class CBackendNameAllUsedStructs : public Pass {
47 void getAnalysisUsage(AnalysisUsage &AU) const {
48 AU.addRequired<FindUsedTypes>();
49 }
50
51 virtual const char *getPassName() const {
52 return "C backend type canonicalizer";
53 }
54
55 virtual bool run(Module &M);
56 };
57
58 /// CWriter - This class is the main chunk of code that converts an LLVM
59 /// module to a C translation unit.
60 class CWriter : public FunctionPass, public InstVisitor<CWriter> {
Chris Lattneredd8ce12003-05-03 03:14:35 +000061 std::ostream &Out;
Chris Lattner4ef51372004-02-14 00:31:10 +000062 IntrinsicLowering &IL;
Brian Gaeked9fb37a2003-07-24 20:20:44 +000063 Mangler *Mang;
Chris Lattnercb3ad012004-05-09 20:41:32 +000064 LoopInfo *LI;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000065 const Module *TheModule;
Chris Lattneredd8ce12003-05-03 03:14:35 +000066 std::map<const Type *, std::string> TypeNames;
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +000067
Chris Lattneredd8ce12003-05-03 03:14:35 +000068 std::map<const ConstantFP *, unsigned> FPConstantMap;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000069 public:
Chris Lattner4ef51372004-02-14 00:31:10 +000070 CWriter(std::ostream &o, IntrinsicLowering &il) : Out(o), IL(il) {}
Chris Lattner0e9f93e2002-08-31 00:29:16 +000071
Chris Lattner94f4f8e2004-02-13 23:00:29 +000072 virtual const char *getPassName() const { return "C backend"; }
Chris Lattner0e9f93e2002-08-31 00:29:16 +000073
Chris Lattnercb3ad012004-05-09 20:41:32 +000074 void getAnalysisUsage(AnalysisUsage &AU) const {
75 AU.addRequired<LoopInfo>();
76 AU.setPreservesAll();
77 }
78
Chris Lattner68758072004-05-09 06:20:51 +000079 virtual bool doInitialization(Module &M);
Chris Lattner0e9f93e2002-08-31 00:29:16 +000080
Chris Lattner68758072004-05-09 06:20:51 +000081 bool runOnFunction(Function &F) {
Chris Lattnercb3ad012004-05-09 20:41:32 +000082 LI = &getAnalysis<LoopInfo>();
83
Chris Lattner68758072004-05-09 06:20:51 +000084 // Output all floating point constants that cannot be printed accurately.
85 printFloatingPointConstants(F);
86
87 lowerIntrinsics(F);
88 printFunction(F);
89 FPConstantMap.clear();
90 return false;
91 }
Chris Lattner0e9f93e2002-08-31 00:29:16 +000092
Chris Lattner68758072004-05-09 06:20:51 +000093 virtual bool doFinalization(Module &M) {
Chris Lattner0e9f93e2002-08-31 00:29:16 +000094 // Free memory...
Brian Gaeked9fb37a2003-07-24 20:20:44 +000095 delete Mang;
Chris Lattner0e9f93e2002-08-31 00:29:16 +000096 TypeNames.clear();
Chris Lattnercb3ad012004-05-09 20:41:32 +000097 return false;
Chris Lattner0e9f93e2002-08-31 00:29:16 +000098 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000099
Chris Lattneredd8ce12003-05-03 03:14:35 +0000100 std::ostream &printType(std::ostream &Out, const Type *Ty,
101 const std::string &VariableName = "",
Chris Lattner7635ea42003-11-03 01:01:59 +0000102 bool IgnoreName = false);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000103
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000104 void writeOperand(Value *Operand);
105 void writeOperandInternal(Value *Operand);
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000106
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000107 private :
Chris Lattnerc2421432004-05-09 04:30:20 +0000108 void lowerIntrinsics(Function &F);
Chris Lattner4ef51372004-02-14 00:31:10 +0000109
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000110 bool nameAllUsedStructureTypes(Module &M);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000111 void printModule(Module *M);
Chris Lattner68758072004-05-09 06:20:51 +0000112 void printModuleTypes(const SymbolTable &ST);
Chris Lattner2c601a72002-09-20 15:05:40 +0000113 void printContainedStructs(const Type *Ty, std::set<const StructType *> &);
Chris Lattner68758072004-05-09 06:20:51 +0000114 void printFloatingPointConstants(Function &F);
Chris Lattner4cda8352002-08-20 16:55:48 +0000115 void printFunctionSignature(const Function *F, bool Prototype);
116
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000117 void printFunction(Function &);
Chris Lattnercb3ad012004-05-09 20:41:32 +0000118 void printBasicBlock(BasicBlock *BB);
119 void printLoop(Loop *L);
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000120
Chris Lattner6d492922002-08-19 21:32:41 +0000121 void printConstant(Constant *CPV);
122 void printConstantArray(ConstantArray *CPA);
123
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000124 // isInlinableInst - Attempt to inline instructions into their uses to build
125 // trees as much as possible. To do this, we have to consistently decide
126 // what is acceptable to inline, so that variable declarations don't get
127 // printed and an extra copy of the expr is not emitted.
128 //
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000129 static bool isInlinableInst(const Instruction &I) {
Chris Lattner433e25a2004-05-20 20:25:50 +0000130 // Always inline setcc instructions, even if they are shared by multiple
131 // expressions. GCC generates horrible code if we don't.
132 if (isa<SetCondInst>(I)) return true;
133
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000134 // Must be an expression, must be used exactly once. If it is dead, we
135 // emit it inline where it would go.
Chris Lattnerfd059242003-10-15 16:48:29 +0000136 if (I.getType() == Type::VoidTy || !I.hasOneUse() ||
Nick Hildenbrandt2cf2cbc2002-11-06 20:07:54 +0000137 isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I) ||
Chris Lattner4d45bd02003-10-18 05:57:43 +0000138 isa<LoadInst>(I) || isa<VAArgInst>(I) || isa<VANextInst>(I))
Chris Lattnerd4e8d312003-07-23 20:45:31 +0000139 // Don't inline a load across a store or other bad things!
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000140 return false;
141
142 // Only inline instruction it it's use is in the same BB as the inst.
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000143 return I.getParent() == cast<Instruction>(I.use_back())->getParent();
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000144 }
145
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000146 // isDirectAlloca - Define fixed sized allocas in the entry block as direct
147 // variables which are accessed with the & operator. This causes GCC to
148 // generate significantly better code than to emit alloca calls directly.
149 //
150 static const AllocaInst *isDirectAlloca(const Value *V) {
151 const AllocaInst *AI = dyn_cast<AllocaInst>(V);
152 if (!AI) return false;
153 if (AI->isArrayAllocation())
154 return 0; // FIXME: we can also inline fixed size array allocas!
Chris Lattner02a3be02003-09-20 14:39:18 +0000155 if (AI->getParent() != &AI->getParent()->getParent()->getEntryBlock())
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000156 return 0;
157 return AI;
158 }
159
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000160 // Instruction visitation functions
161 friend class InstVisitor<CWriter>;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000162
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000163 void visitReturnInst(ReturnInst &I);
164 void visitBranchInst(BranchInst &I);
Chris Lattnera9f5e052003-04-22 20:19:52 +0000165 void visitSwitchInst(SwitchInst &I);
Chris Lattnercb3ad012004-05-09 20:41:32 +0000166 void visitInvokeInst(InvokeInst &I) {
167 assert(0 && "Lowerinvoke pass didn't work!");
168 }
169
170 void visitUnwindInst(UnwindInst &I) {
171 assert(0 && "Lowerinvoke pass didn't work!");
172 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000173
Chris Lattner84e66652003-05-03 07:11:00 +0000174 void visitPHINode(PHINode &I);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000175 void visitBinaryOperator(Instruction &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000176
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000177 void visitCastInst (CastInst &I);
Chris Lattner9f24a072004-03-12 05:52:14 +0000178 void visitSelectInst(SelectInst &I);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000179 void visitCallInst (CallInst &I);
Chris Lattner9bda5f52003-06-28 17:53:05 +0000180 void visitCallSite (CallSite CS);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000181 void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); }
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000182
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000183 void visitMallocInst(MallocInst &I);
184 void visitAllocaInst(AllocaInst &I);
185 void visitFreeInst (FreeInst &I);
186 void visitLoadInst (LoadInst &I);
187 void visitStoreInst (StoreInst &I);
188 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner4d45bd02003-10-18 05:57:43 +0000189 void visitVANextInst(VANextInst &I);
190 void visitVAArgInst (VAArgInst &I);
Chris Lattner2f5f51a2002-05-09 03:28:37 +0000191
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000192 void visitInstruction(Instruction &I) {
Chris Lattnere7f65d3b2002-06-30 16:07:20 +0000193 std::cerr << "C Writer does not know about " << I;
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000194 abort();
195 }
196
197 void outputLValue(Instruction *I) {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000198 Out << " " << Mang->getValueName(I) << " = ";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000199 }
Chris Lattnercb3ad012004-05-09 20:41:32 +0000200
201 bool isGotoCodeNecessary(BasicBlock *From, BasicBlock *To);
Chris Lattnera05e0ec2004-05-09 03:42:48 +0000202 void printPHICopiesForSuccessors(BasicBlock *CurBlock,
203 unsigned Indent);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000204 void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
205 unsigned Indent);
Chris Lattner23e90702003-11-25 20:49:55 +0000206 void printIndexingExpression(Value *Ptr, gep_type_iterator I,
207 gep_type_iterator E);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000208 };
Chris Lattner4ef51372004-02-14 00:31:10 +0000209}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000210
Chris Lattner68758072004-05-09 06:20:51 +0000211/// This method inserts names for any unnamed structure types that are used by
212/// the program, and removes names from structure types that are not used by the
213/// program.
214///
215bool CBackendNameAllUsedStructs::run(Module &M) {
216 // Get a set of types that are used by the program...
217 std::set<const Type *> UT = getAnalysis<FindUsedTypes>().getTypes();
218
219 // Loop over the module symbol table, removing types from UT that are
220 // already named, and removing names for structure types that are not used.
221 //
222 SymbolTable &MST = M.getSymbolTable();
Reid Spencer9231ac82004-05-25 08:53:40 +0000223 for (SymbolTable::type_iterator TI = MST.type_begin(), TE = MST.type_end();
224 TI != TE; ) {
225 SymbolTable::type_iterator I = TI++;
Reid Spencer954da372004-07-04 12:19:56 +0000226 if (const StructType *STy = dyn_cast<StructType>(I->second)) {
Reid Spencer9231ac82004-05-25 08:53:40 +0000227 // If this is not used, remove it from the symbol table.
228 std::set<const Type *>::iterator UTI = UT.find(STy);
229 if (UTI == UT.end())
Chris Lattnerd06a5492004-05-28 05:30:51 +0000230 MST.remove(I);
Reid Spencer9231ac82004-05-25 08:53:40 +0000231 else
232 UT.erase(UTI);
Chris Lattner68758072004-05-09 06:20:51 +0000233 }
Reid Spencer9231ac82004-05-25 08:53:40 +0000234 }
Chris Lattner68758072004-05-09 06:20:51 +0000235
236 // UT now contains types that are not named. Loop over it, naming
237 // structure types.
238 //
239 bool Changed = false;
Chris Lattner9d1af972004-05-28 05:47:27 +0000240 unsigned RenameCounter = 0;
Chris Lattner68758072004-05-09 06:20:51 +0000241 for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
242 I != E; ++I)
243 if (const StructType *ST = dyn_cast<StructType>(*I)) {
Chris Lattner9d1af972004-05-28 05:47:27 +0000244 while (M.addTypeName("unnamed"+utostr(RenameCounter), ST))
245 ++RenameCounter;
Chris Lattner68758072004-05-09 06:20:51 +0000246 Changed = true;
247 }
248 return Changed;
249}
250
251
Chris Lattner83c57752002-08-19 22:17:53 +0000252// Pass the Type* and the variable name and this prints out the variable
253// declaration.
254//
Chris Lattneredd8ce12003-05-03 03:14:35 +0000255std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty,
256 const std::string &NameSoFar,
Chris Lattner7635ea42003-11-03 01:01:59 +0000257 bool IgnoreName) {
Chris Lattner83c57752002-08-19 22:17:53 +0000258 if (Ty->isPrimitiveType())
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000259 switch (Ty->getTypeID()) {
Chris Lattner83c57752002-08-19 22:17:53 +0000260 case Type::VoidTyID: return Out << "void " << NameSoFar;
261 case Type::BoolTyID: return Out << "bool " << NameSoFar;
262 case Type::UByteTyID: return Out << "unsigned char " << NameSoFar;
263 case Type::SByteTyID: return Out << "signed char " << NameSoFar;
264 case Type::UShortTyID: return Out << "unsigned short " << NameSoFar;
265 case Type::ShortTyID: return Out << "short " << NameSoFar;
266 case Type::UIntTyID: return Out << "unsigned " << NameSoFar;
267 case Type::IntTyID: return Out << "int " << NameSoFar;
268 case Type::ULongTyID: return Out << "unsigned long long " << NameSoFar;
269 case Type::LongTyID: return Out << "signed long long " << NameSoFar;
270 case Type::FloatTyID: return Out << "float " << NameSoFar;
271 case Type::DoubleTyID: return Out << "double " << NameSoFar;
272 default :
273 std::cerr << "Unknown primitive type: " << Ty << "\n";
274 abort();
275 }
276
277 // Check to see if the type is named.
Chris Lattner04b72c82002-10-16 00:08:22 +0000278 if (!IgnoreName || isa<OpaqueType>(Ty)) {
Chris Lattneredd8ce12003-05-03 03:14:35 +0000279 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Chris Lattner5864da02003-08-24 21:00:22 +0000280 if (I != TypeNames.end()) return Out << I->second << " " << NameSoFar;
Chris Lattner04b72c82002-10-16 00:08:22 +0000281 }
Chris Lattner83c57752002-08-19 22:17:53 +0000282
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000283 switch (Ty->getTypeID()) {
Chris Lattner83c57752002-08-19 22:17:53 +0000284 case Type::FunctionTyID: {
285 const FunctionType *MTy = cast<FunctionType>(Ty);
Joel Stanley54f60322003-06-25 04:52:09 +0000286 std::stringstream FunctionInnards;
287 FunctionInnards << " (" << NameSoFar << ") (";
Chris Lattnerd5d89962004-02-09 04:14:01 +0000288 for (FunctionType::param_iterator I = MTy->param_begin(),
289 E = MTy->param_end(); I != E; ++I) {
290 if (I != MTy->param_begin())
Joel Stanley54f60322003-06-25 04:52:09 +0000291 FunctionInnards << ", ";
292 printType(FunctionInnards, *I, "");
Chris Lattner83c57752002-08-19 22:17:53 +0000293 }
294 if (MTy->isVarArg()) {
Chris Lattnerd5d89962004-02-09 04:14:01 +0000295 if (MTy->getNumParams())
Reid Spencer9231ac82004-05-25 08:53:40 +0000296 FunctionInnards << ", ...";
Chris Lattnerd5d89962004-02-09 04:14:01 +0000297 } else if (!MTy->getNumParams()) {
Joel Stanley54f60322003-06-25 04:52:09 +0000298 FunctionInnards << "void";
Chris Lattner83c57752002-08-19 22:17:53 +0000299 }
Joel Stanley54f60322003-06-25 04:52:09 +0000300 FunctionInnards << ")";
301 std::string tstr = FunctionInnards.str();
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000302 printType(Out, MTy->getReturnType(), tstr);
303 return Out;
Chris Lattner83c57752002-08-19 22:17:53 +0000304 }
305 case Type::StructTyID: {
306 const StructType *STy = cast<StructType>(Ty);
307 Out << NameSoFar + " {\n";
308 unsigned Idx = 0;
Chris Lattnerd21cd802004-02-09 04:37:31 +0000309 for (StructType::element_iterator I = STy->element_begin(),
310 E = STy->element_end(); I != E; ++I) {
Chris Lattner83c57752002-08-19 22:17:53 +0000311 Out << " ";
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000312 printType(Out, *I, "field" + utostr(Idx++));
Chris Lattner83c57752002-08-19 22:17:53 +0000313 Out << ";\n";
314 }
315 return Out << "}";
316 }
317
318 case Type::PointerTyID: {
319 const PointerType *PTy = cast<PointerType>(Ty);
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000320 std::string ptrName = "*" + NameSoFar;
321
Chris Lattner8917d362003-11-03 04:31:54 +0000322 if (isa<ArrayType>(PTy->getElementType()))
323 ptrName = "(" + ptrName + ")";
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000324
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000325 return printType(Out, PTy->getElementType(), ptrName);
Misha Brukman8f9f9a22003-07-21 16:34:35 +0000326 }
Chris Lattner83c57752002-08-19 22:17:53 +0000327
328 case Type::ArrayTyID: {
329 const ArrayType *ATy = cast<ArrayType>(Ty);
330 unsigned NumElements = ATy->getNumElements();
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000331 return printType(Out, ATy->getElementType(),
Chris Lattner83c57752002-08-19 22:17:53 +0000332 NameSoFar + "[" + utostr(NumElements) + "]");
333 }
Chris Lattner04b72c82002-10-16 00:08:22 +0000334
335 case Type::OpaqueTyID: {
336 static int Count = 0;
Chris Lattneredd8ce12003-05-03 03:14:35 +0000337 std::string TyName = "struct opaque_" + itostr(Count++);
Chris Lattner04b72c82002-10-16 00:08:22 +0000338 assert(TypeNames.find(Ty) == TypeNames.end());
339 TypeNames[Ty] = TyName;
340 return Out << TyName << " " << NameSoFar;
341 }
Chris Lattner83c57752002-08-19 22:17:53 +0000342 default:
343 assert(0 && "Unhandled case in getTypeProps!");
344 abort();
345 }
346
347 return Out;
348}
349
Chris Lattner6d492922002-08-19 21:32:41 +0000350void CWriter::printConstantArray(ConstantArray *CPA) {
351
352 // As a special case, print the array as a string if it is an array of
353 // ubytes or an array of sbytes with positive values.
354 //
355 const Type *ETy = CPA->getType()->getElementType();
356 bool isString = (ETy == Type::SByteTy || ETy == Type::UByteTy);
357
358 // Make sure the last character is a null char, as automatically added by C
Chris Lattner02da6c02003-06-16 12:09:09 +0000359 if (isString && (CPA->getNumOperands() == 0 ||
360 !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
Chris Lattner6d492922002-08-19 21:32:41 +0000361 isString = false;
362
363 if (isString) {
364 Out << "\"";
Chris Lattner02da6c02003-06-16 12:09:09 +0000365 // Keep track of whether the last number was a hexadecimal escape
366 bool LastWasHex = false;
367
Chris Lattner6d492922002-08-19 21:32:41 +0000368 // Do not include the last character, which we know is null
369 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000370 unsigned char C = cast<ConstantInt>(CPA->getOperand(i))->getRawValue();
Chris Lattner6d492922002-08-19 21:32:41 +0000371
Chris Lattner02da6c02003-06-16 12:09:09 +0000372 // Print it out literally if it is a printable character. The only thing
373 // to be careful about is when the last letter output was a hex escape
374 // code, in which case we have to be careful not to print out hex digits
Chris Lattnerda920902003-06-16 12:21:19 +0000375 // explicitly (the C compiler thinks it is a continuation of the previous
376 // character, sheesh...)
Chris Lattner02da6c02003-06-16 12:09:09 +0000377 //
378 if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
379 LastWasHex = false;
Nick Hildenbrandt088b4722002-11-06 21:40:23 +0000380 if (C == '"' || C == '\\')
381 Out << "\\" << C;
Nick Hildenbrandtc3dd2af2002-09-30 21:11:55 +0000382 else
383 Out << C;
Chris Lattner6d492922002-08-19 21:32:41 +0000384 } else {
Chris Lattner02da6c02003-06-16 12:09:09 +0000385 LastWasHex = false;
Chris Lattner6d492922002-08-19 21:32:41 +0000386 switch (C) {
387 case '\n': Out << "\\n"; break;
388 case '\t': Out << "\\t"; break;
389 case '\r': Out << "\\r"; break;
390 case '\v': Out << "\\v"; break;
391 case '\a': Out << "\\a"; break;
Nick Hildenbrandtc3dd2af2002-09-30 21:11:55 +0000392 case '\"': Out << "\\\""; break;
393 case '\'': Out << "\\\'"; break;
Chris Lattner6d492922002-08-19 21:32:41 +0000394 default:
395 Out << "\\x";
Chris Lattner02da6c02003-06-16 12:09:09 +0000396 Out << (char)(( C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'));
397 Out << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
398 LastWasHex = true;
Chris Lattner6d492922002-08-19 21:32:41 +0000399 break;
400 }
401 }
402 }
403 Out << "\"";
404 } else {
405 Out << "{";
406 if (CPA->getNumOperands()) {
407 Out << " ";
408 printConstant(cast<Constant>(CPA->getOperand(0)));
409 for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
410 Out << ", ";
411 printConstant(cast<Constant>(CPA->getOperand(i)));
412 }
413 }
414 Out << " }";
415 }
416}
417
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000418// isFPCSafeToPrint - Returns true if we may assume that CFP may be written out
419// textually as a double (rather than as a reference to a stack-allocated
420// variable). We decide this by converting CFP to a string and back into a
421// double, and then checking whether the conversion results in a bit-equal
422// double to the original value of CFP. This depends on us and the target C
423// compiler agreeing on the conversion process (which is pretty likely since we
424// only deal in IEEE FP).
425//
Chris Lattnercb3ad012004-05-09 20:41:32 +0000426static bool isFPCSafeToPrint(const ConstantFP *CFP) {
Chris Lattner4946a8c2003-10-13 17:13:53 +0000427#if HAVE_PRINTF_A
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000428 char Buffer[100];
429 sprintf(Buffer, "%a", CFP->getValue());
430
431 if (!strncmp(Buffer, "0x", 2) ||
432 !strncmp(Buffer, "-0x", 3) ||
433 !strncmp(Buffer, "+0x", 3))
434 return atof(Buffer) == CFP->getValue();
435 return false;
436#else
Brian Gaekeb471a232003-06-17 23:55:35 +0000437 std::string StrVal = ftostr(CFP->getValue());
Chris Lattner9860e772003-10-12 04:36:29 +0000438
439 while (StrVal[0] == ' ')
440 StrVal.erase(StrVal.begin());
441
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000442 // Check to make sure that the stringized number is not some string like "Inf"
443 // or NaN. Check that the string matches the "[-+]?[0-9]" regex.
Brian Gaekeb471a232003-06-17 23:55:35 +0000444 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
445 ((StrVal[0] == '-' || StrVal[0] == '+') &&
446 (StrVal[1] >= '0' && StrVal[1] <= '9')))
447 // Reparse stringized version!
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000448 return atof(StrVal.c_str()) == CFP->getValue();
Brian Gaekeb471a232003-06-17 23:55:35 +0000449 return false;
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000450#endif
Brian Gaekeb471a232003-06-17 23:55:35 +0000451}
Chris Lattner6d492922002-08-19 21:32:41 +0000452
453// printConstant - The LLVM Constant to C Constant converter.
454void CWriter::printConstant(Constant *CPV) {
455 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
456 switch (CE->getOpcode()) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000457 case Instruction::Cast:
458 Out << "((";
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000459 printType(Out, CPV->getType());
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000460 Out << ")";
Chris Lattner84c0d5e2003-05-14 17:50:19 +0000461 printConstant(CE->getOperand(0));
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000462 Out << ")";
463 return;
464
465 case Instruction::GetElementPtr:
Nick Hildenbrandtd2eb3862002-10-03 20:47:24 +0000466 Out << "(&(";
Chris Lattner23e90702003-11-25 20:49:55 +0000467 printIndexingExpression(CE->getOperand(0), gep_type_begin(CPV),
468 gep_type_end(CPV));
Nick Hildenbrandtd2eb3862002-10-03 20:47:24 +0000469 Out << "))";
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000470 return;
Chris Lattner6683dbf2004-04-01 05:28:26 +0000471 case Instruction::Select:
472 Out << "(";
473 printConstant(CE->getOperand(0));
474 Out << "?";
475 printConstant(CE->getOperand(1));
476 Out << ":";
477 printConstant(CE->getOperand(2));
478 Out << ")";
479 return;
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000480 case Instruction::Add:
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000481 case Instruction::Sub:
Chris Lattner29255922003-08-14 19:19:53 +0000482 case Instruction::Mul:
483 case Instruction::Div:
484 case Instruction::Rem:
485 case Instruction::SetEQ:
486 case Instruction::SetNE:
487 case Instruction::SetLT:
488 case Instruction::SetLE:
489 case Instruction::SetGT:
490 case Instruction::SetGE:
Brian Gaeke0415b6c2003-11-22 05:02:56 +0000491 case Instruction::Shl:
492 case Instruction::Shr:
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000493 Out << "(";
Chris Lattner84c0d5e2003-05-14 17:50:19 +0000494 printConstant(CE->getOperand(0));
Chris Lattner29255922003-08-14 19:19:53 +0000495 switch (CE->getOpcode()) {
496 case Instruction::Add: Out << " + "; break;
497 case Instruction::Sub: Out << " - "; break;
498 case Instruction::Mul: Out << " * "; break;
499 case Instruction::Div: Out << " / "; break;
500 case Instruction::Rem: Out << " % "; break;
501 case Instruction::SetEQ: Out << " == "; break;
502 case Instruction::SetNE: Out << " != "; break;
503 case Instruction::SetLT: Out << " < "; break;
504 case Instruction::SetLE: Out << " <= "; break;
505 case Instruction::SetGT: Out << " > "; break;
506 case Instruction::SetGE: Out << " >= "; break;
Brian Gaeke0415b6c2003-11-22 05:02:56 +0000507 case Instruction::Shl: Out << " << "; break;
508 case Instruction::Shr: Out << " >> "; break;
Chris Lattner29255922003-08-14 19:19:53 +0000509 default: assert(0 && "Illegal opcode here!");
510 }
Chris Lattner84c0d5e2003-05-14 17:50:19 +0000511 printConstant(CE->getOperand(1));
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000512 Out << ")";
513 return;
514
Chris Lattner6d492922002-08-19 21:32:41 +0000515 default:
516 std::cerr << "CWriter Error: Unhandled constant expression: "
517 << CE << "\n";
518 abort();
519 }
520 }
521
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000522 switch (CPV->getType()->getTypeID()) {
Chris Lattner6d492922002-08-19 21:32:41 +0000523 case Type::BoolTyID:
524 Out << (CPV == ConstantBool::False ? "0" : "1"); break;
525 case Type::SByteTyID:
526 case Type::ShortTyID:
Chris Lattner6d492922002-08-19 21:32:41 +0000527 Out << cast<ConstantSInt>(CPV)->getValue(); break;
Chris Lattner45343ea2003-05-12 15:39:31 +0000528 case Type::IntTyID:
529 if ((int)cast<ConstantSInt>(CPV)->getValue() == (int)0x80000000)
530 Out << "((int)0x80000000)"; // Handle MININT specially to avoid warning
531 else
532 Out << cast<ConstantSInt>(CPV)->getValue();
533 break;
534
Chris Lattner6d492922002-08-19 21:32:41 +0000535 case Type::LongTyID:
536 Out << cast<ConstantSInt>(CPV)->getValue() << "ll"; break;
537
538 case Type::UByteTyID:
539 case Type::UShortTyID:
540 Out << cast<ConstantUInt>(CPV)->getValue(); break;
541 case Type::UIntTyID:
542 Out << cast<ConstantUInt>(CPV)->getValue() << "u"; break;
543 case Type::ULongTyID:
544 Out << cast<ConstantUInt>(CPV)->getValue() << "ull"; break;
545
546 case Type::FloatTyID:
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000547 case Type::DoubleTyID: {
548 ConstantFP *FPC = cast<ConstantFP>(CPV);
Chris Lattneredd8ce12003-05-03 03:14:35 +0000549 std::map<const ConstantFP*, unsigned>::iterator I = FPConstantMap.find(FPC);
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000550 if (I != FPConstantMap.end()) {
551 // Because of FP precision problems we must load from a stack allocated
552 // value that holds the value in hex.
553 Out << "(*(" << (FPC->getType() == Type::FloatTy ? "float" : "double")
Chris Lattner9860e772003-10-12 04:36:29 +0000554 << "*)&FPConstant" << I->second << ")";
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000555 } else {
Chris Lattner4946a8c2003-10-13 17:13:53 +0000556#if HAVE_PRINTF_A
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000557 // Print out the constant as a floating point number.
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000558 char Buffer[100];
559 sprintf(Buffer, "%a", FPC->getValue());
560 Out << Buffer << " /*" << FPC->getValue() << "*/ ";
561#else
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000562 Out << ftostr(FPC->getValue());
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000563#endif
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000564 }
565 break;
566 }
Chris Lattner6d492922002-08-19 21:32:41 +0000567
568 case Type::ArrayTyID:
Chris Lattnercfb0fd22004-02-15 05:54:27 +0000569 if (isa<ConstantAggregateZero>(CPV)) {
570 const ArrayType *AT = cast<ArrayType>(CPV->getType());
571 Out << "{";
572 if (AT->getNumElements()) {
573 Out << " ";
574 Constant *CZ = Constant::getNullValue(AT->getElementType());
575 printConstant(CZ);
576 for (unsigned i = 1, e = AT->getNumElements(); i != e; ++i) {
577 Out << ", ";
578 printConstant(CZ);
579 }
580 }
581 Out << " }";
582 } else {
583 printConstantArray(cast<ConstantArray>(CPV));
584 }
Chris Lattner6d492922002-08-19 21:32:41 +0000585 break;
586
Chris Lattnercfb0fd22004-02-15 05:54:27 +0000587 case Type::StructTyID:
588 if (isa<ConstantAggregateZero>(CPV)) {
589 const StructType *ST = cast<StructType>(CPV->getType());
590 Out << "{";
591 if (ST->getNumElements()) {
592 Out << " ";
593 printConstant(Constant::getNullValue(ST->getElementType(0)));
594 for (unsigned i = 1, e = ST->getNumElements(); i != e; ++i) {
595 Out << ", ";
596 printConstant(Constant::getNullValue(ST->getElementType(i)));
597 }
Chris Lattner6d492922002-08-19 21:32:41 +0000598 }
Chris Lattnercfb0fd22004-02-15 05:54:27 +0000599 Out << " }";
600 } else {
601 Out << "{";
602 if (CPV->getNumOperands()) {
603 Out << " ";
604 printConstant(cast<Constant>(CPV->getOperand(0)));
605 for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
606 Out << ", ";
607 printConstant(cast<Constant>(CPV->getOperand(i)));
608 }
609 }
610 Out << " }";
Chris Lattner6d492922002-08-19 21:32:41 +0000611 }
Chris Lattner6d492922002-08-19 21:32:41 +0000612 break;
Chris Lattner6d492922002-08-19 21:32:41 +0000613
614 case Type::PointerTyID:
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000615 if (isa<ConstantPointerNull>(CPV)) {
Chris Lattnercf135cb2003-06-02 03:10:53 +0000616 Out << "((";
617 printType(Out, CPV->getType());
618 Out << ")/*NULL*/0)";
Chris Lattner6d492922002-08-19 21:32:41 +0000619 break;
620 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CPV)) {
621 writeOperand(CPR->getValue());
622 break;
623 }
624 // FALL THROUGH
625 default:
626 std::cerr << "Unknown constant type: " << CPV << "\n";
627 abort();
628 }
629}
630
631void CWriter::writeOperandInternal(Value *Operand) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000632 if (Instruction *I = dyn_cast<Instruction>(Operand))
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000633 if (isInlinableInst(*I) && !isDirectAlloca(I)) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000634 // Should we inline this instruction to build a tree?
635 Out << "(";
636 visit(*I);
637 Out << ")";
638 return;
639 }
640
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000641 if (Constant *CPV = dyn_cast<Constant>(Operand)) {
Chris Lattner6d492922002-08-19 21:32:41 +0000642 printConstant(CPV);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000643 } else {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000644 Out << Mang->getValueName(Operand);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000645 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000646}
647
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000648void CWriter::writeOperand(Value *Operand) {
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000649 if (isa<GlobalVariable>(Operand) || isDirectAlloca(Operand))
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000650 Out << "(&"; // Global variables are references as their addresses by llvm
651
652 writeOperandInternal(Operand);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000653
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000654 if (isa<GlobalVariable>(Operand) || isDirectAlloca(Operand))
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000655 Out << ")";
656}
657
Chris Lattner41488192003-06-28 17:15:12 +0000658// generateCompilerSpecificCode - This is where we add conditional compilation
659// directives to cater to specific compilers as need be.
660//
Chris Lattnerc59c1182003-11-16 22:06:14 +0000661static void generateCompilerSpecificCode(std::ostream& Out) {
Chris Lattner41488192003-06-28 17:15:12 +0000662 // Alloca is hard to get, and we don't want to include stdlib.h here...
663 Out << "/* get a declaration for alloca */\n"
Chris Lattner8fcf7972004-06-02 23:10:26 +0000664 << "#if defined(sun) || defined(__CYGWIN__)\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +0000665 << "extern void *__builtin_alloca(unsigned long);\n"
666 << "#define alloca(x) __builtin_alloca(x)\n"
667 << "#else\n"
Brian Gaekea0145cc2003-06-16 23:57:13 +0000668 << "#ifndef __FreeBSD__\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +0000669 << "#include <alloca.h>\n"
Brian Gaekea0145cc2003-06-16 23:57:13 +0000670 << "#endif\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +0000671 << "#endif\n\n";
Chris Lattner41488192003-06-28 17:15:12 +0000672
673 // We output GCC specific attributes to preserve 'linkonce'ness on globals.
674 // If we aren't being compiled with GCC, just drop these attributes.
Chris Lattner9bda5f52003-06-28 17:53:05 +0000675 Out << "#ifndef __GNUC__ /* Can only support \"linkonce\" vars with GCC */\n"
Chris Lattner41488192003-06-28 17:15:12 +0000676 << "#define __attribute__(X)\n"
Brian Gaeke27f7a712003-12-11 00:24:36 +0000677 << "#endif\n\n";
678
679#if 0
680 // At some point, we should support "external weak" vs. "weak" linkages.
681 // On Mac OS X, "external weak" is spelled "__attribute__((weak_import))".
682 Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
683 << "#define __EXTERNAL_WEAK__ __attribute__((weak_import))\n"
684 << "#elif defined(__GNUC__)\n"
685 << "#define __EXTERNAL_WEAK__ __attribute__((weak))\n"
686 << "#else\n"
687 << "#define __EXTERNAL_WEAK__\n"
688 << "#endif\n\n";
689#endif
690
691 // For now, turn off the weak linkage attribute on Mac OS X. (See above.)
692 Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
693 << "#define __ATTRIBUTE_WEAK__\n"
694 << "#elif defined(__GNUC__)\n"
695 << "#define __ATTRIBUTE_WEAK__ __attribute__((weak))\n"
696 << "#else\n"
697 << "#define __ATTRIBUTE_WEAK__\n"
698 << "#endif\n\n";
Joel Stanleyecd78ac2003-02-12 20:45:00 +0000699}
700
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000701bool CWriter::doInitialization(Module &M) {
702 // Initialize
703 TheModule = &M;
Chris Lattnerc2421432004-05-09 04:30:20 +0000704
705 IL.AddPrototypes(M);
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000706
707 // Ensure that all structure types have names...
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000708 Mang = new Mangler(M);
Chris Lattnerc59c1182003-11-16 22:06:14 +0000709
Chris Lattner16c7bb22002-05-09 02:28:59 +0000710 // get declaration for alloca
Joel Stanleyecd78ac2003-02-12 20:45:00 +0000711 Out << "/* Provide Declarations */\n";
Chris Lattnerc59c1182003-11-16 22:06:14 +0000712 Out << "#include <stdarg.h>\n"; // Varargs support
713 Out << "#include <setjmp.h>\n"; // Unwind support
Chris Lattner41488192003-06-28 17:15:12 +0000714 generateCompilerSpecificCode(Out);
Chris Lattnerc59c1182003-11-16 22:06:14 +0000715
Chris Lattnercf135cb2003-06-02 03:10:53 +0000716 // Provide a definition for `bool' if not compiling with a C++ compiler.
717 Out << "\n"
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000718 << "#ifndef __cplusplus\ntypedef unsigned char bool;\n#endif\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +0000719
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000720 << "\n\n/* Support for floating point constants */\n"
721 << "typedef unsigned long long ConstantDoubleTy;\n"
Chris Lattnereb6f8c72002-11-07 19:43:59 +0000722 << "typedef unsigned int ConstantFloatTy;\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +0000723
Chris Lattnera4d4a852002-08-19 21:48:40 +0000724 << "\n\n/* Global Declarations */\n";
725
726 // First output all the declarations for the program, because C requires
727 // Functions & globals to be declared before they are used.
728 //
Chris Lattner16c7bb22002-05-09 02:28:59 +0000729
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000730 // Loop over the symbol table, emitting all named constants...
Chris Lattner68758072004-05-09 06:20:51 +0000731 printModuleTypes(M.getSymbolTable());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000732
Chris Lattnera4d4a852002-08-19 21:48:40 +0000733 // Global variable declarations...
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000734 if (!M.gempty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000735 Out << "\n/* External Global Variable Declarations */\n";
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000736 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000737 if (I->hasExternalLinkage()) {
738 Out << "extern ";
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000739 printType(Out, I->getType()->getElementType(), Mang->getValueName(I));
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000740 Out << ";\n";
741 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000742 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000743 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000744
Chris Lattnera4d4a852002-08-19 21:48:40 +0000745 // Function declarations
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000746 if (!M.empty()) {
Chris Lattnera4d4a852002-08-19 21:48:40 +0000747 Out << "\n/* Function Declarations */\n";
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000748 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Chris Lattner4ef51372004-02-14 00:31:10 +0000749 // Don't print declarations for intrinsic functions.
Chris Lattner4589ed92004-05-09 16:03:29 +0000750 if (!I->getIntrinsicID() &&
751 I->getName() != "setjmp" && I->getName() != "longjmp") {
Nick Hildenbrandta1a64f82002-11-18 22:21:52 +0000752 printFunctionSignature(I, true);
Brian Gaeke27f7a712003-12-11 00:24:36 +0000753 if (I->hasWeakLinkage()) Out << " __ATTRIBUTE_WEAK__";
John Criswell3799eec2004-02-26 22:20:58 +0000754 if (I->hasLinkOnceLinkage()) Out << " __ATTRIBUTE_WEAK__";
Nick Hildenbrandta1a64f82002-11-18 22:21:52 +0000755 Out << ";\n";
756 }
Chris Lattner4cda8352002-08-20 16:55:48 +0000757 }
Chris Lattnera4d4a852002-08-19 21:48:40 +0000758 }
759
Joel Stanley54f60322003-06-25 04:52:09 +0000760 // Output the global variable declarations
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000761 if (!M.gempty()) {
Joel Stanley54f60322003-06-25 04:52:09 +0000762 Out << "\n\n/* Global Variable Declarations */\n";
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000763 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
Nick Hildenbrandt50de36a2002-10-28 19:05:12 +0000764 if (!I->isExternal()) {
765 Out << "extern ";
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000766 printType(Out, I->getType()->getElementType(), Mang->getValueName(I));
Chris Lattner2580d4f2003-11-03 17:32:38 +0000767
768 if (I->hasLinkOnceLinkage())
769 Out << " __attribute__((common))";
770 else if (I->hasWeakLinkage())
Brian Gaeke27f7a712003-12-11 00:24:36 +0000771 Out << " __ATTRIBUTE_WEAK__";
Nick Hildenbrandt50de36a2002-10-28 19:05:12 +0000772 Out << ";\n";
773 }
774 }
775
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000776 // Output the global variable definitions and contents...
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000777 if (!M.gempty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +0000778 Out << "\n\n/* Global Variable Definitions and Initialization */\n";
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000779 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
Chris Lattnere8e035b2002-10-16 20:08:47 +0000780 if (!I->isExternal()) {
781 if (I->hasInternalLinkage())
782 Out << "static ";
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000783 printType(Out, I->getType()->getElementType(), Mang->getValueName(I));
Chris Lattner76d9f1b2003-06-28 17:08:36 +0000784 if (I->hasLinkOnceLinkage())
785 Out << " __attribute__((common))";
Chris Lattner72ac148d2003-10-16 18:29:00 +0000786 else if (I->hasWeakLinkage())
Brian Gaeke27f7a712003-12-11 00:24:36 +0000787 Out << " __ATTRIBUTE_WEAK__";
Chris Lattner5ea326a2003-11-03 17:35:00 +0000788
789 // If the initializer is not null, emit the initializer. If it is null,
790 // we try to avoid emitting large amounts of zeros. The problem with
791 // this, however, occurs when the variable has weak linkage. In this
792 // case, the assembler will complain about the variable being both weak
793 // and common, so we disable this optimization.
Chris Lattnerf358c5a2004-02-20 05:49:22 +0000794 if (!I->getInitializer()->isNullValue()) {
Chris Lattner940b08d2003-06-06 07:10:24 +0000795 Out << " = " ;
796 writeOperand(I->getInitializer());
Chris Lattnerf358c5a2004-02-20 05:49:22 +0000797 } else if (I->hasWeakLinkage()) {
798 // We have to specify an initializer, but it doesn't have to be
799 // complete. If the value is an aggregate, print out { 0 }, and let
800 // the compiler figure out the rest of the zeros.
801 Out << " = " ;
802 if (isa<StructType>(I->getInitializer()->getType()) ||
803 isa<ArrayType>(I->getInitializer()->getType())) {
804 Out << "{ 0 }";
805 } else {
806 // Just print it out normally.
807 writeOperand(I->getInitializer());
808 }
Chris Lattner940b08d2003-06-06 07:10:24 +0000809 }
Chris Lattnere8e035b2002-10-16 20:08:47 +0000810 Out << ";\n";
Chris Lattnera4d4a852002-08-19 21:48:40 +0000811 }
Chris Lattnera4d4a852002-08-19 21:48:40 +0000812 }
813
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000814 if (!M.empty())
Chris Lattnera4d4a852002-08-19 21:48:40 +0000815 Out << "\n\n/* Function Bodies */\n";
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000816 return false;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000817}
818
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000819
Chris Lattner9860e772003-10-12 04:36:29 +0000820/// Output all floating point constants that cannot be printed accurately...
Chris Lattner68758072004-05-09 06:20:51 +0000821void CWriter::printFloatingPointConstants(Function &F) {
Chris Lattner9860e772003-10-12 04:36:29 +0000822 union {
823 double D;
Chris Lattnerc2421432004-05-09 04:30:20 +0000824 uint64_t U;
Chris Lattner9860e772003-10-12 04:36:29 +0000825 } DBLUnion;
826
827 union {
828 float F;
829 unsigned U;
830 } FLTUnion;
831
832 // Scan the module for floating point constants. If any FP constant is used
833 // in the function, we want to redirect it here so that we do not depend on
834 // the precision of the printed form, unless the printed form preserves
835 // precision.
836 //
Chris Lattner68758072004-05-09 06:20:51 +0000837 static unsigned FPCounter = 0;
838 for (constant_iterator I = constant_begin(&F), E = constant_end(&F);
839 I != E; ++I)
840 if (const ConstantFP *FPC = dyn_cast<ConstantFP>(*I))
841 if (!isFPCSafeToPrint(FPC) && // Do not put in FPConstantMap if safe.
842 !FPConstantMap.count(FPC)) {
843 double Val = FPC->getValue();
844
845 FPConstantMap[FPC] = FPCounter; // Number the FP constants
846
847 if (FPC->getType() == Type::DoubleTy) {
848 DBLUnion.D = Val;
849 Out << "static const ConstantDoubleTy FPConstant" << FPCounter++
850 << " = 0x" << std::hex << DBLUnion.U << std::dec
851 << "ULL; /* " << Val << " */\n";
852 } else if (FPC->getType() == Type::FloatTy) {
853 FLTUnion.F = Val;
854 Out << "static const ConstantFloatTy FPConstant" << FPCounter++
855 << " = 0x" << std::hex << FLTUnion.U << std::dec
856 << "U; /* " << Val << " */\n";
857 } else
858 assert(0 && "Unknown float type!");
859 }
Chris Lattner9860e772003-10-12 04:36:29 +0000860
861 Out << "\n";
Chris Lattner68758072004-05-09 06:20:51 +0000862}
Chris Lattner9860e772003-10-12 04:36:29 +0000863
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000864
Chris Lattner2db41cd2002-09-20 15:12:13 +0000865/// printSymbolTable - Run through symbol table looking for type names. If a
866/// type name is found, emit it's declaration...
Chris Lattnera4c047e2002-09-20 14:56:54 +0000867///
Chris Lattner68758072004-05-09 06:20:51 +0000868void CWriter::printModuleTypes(const SymbolTable &ST) {
Chris Lattner2db41cd2002-09-20 15:12:13 +0000869 // If there are no type names, exit early.
Reid Spencer9231ac82004-05-25 08:53:40 +0000870 if ( ! ST.hasTypes() )
Chris Lattner2db41cd2002-09-20 15:12:13 +0000871 return;
872
873 // We are only interested in the type plane of the symbol table...
Reid Spencer9231ac82004-05-25 08:53:40 +0000874 SymbolTable::type_const_iterator I = ST.type_begin();
875 SymbolTable::type_const_iterator End = ST.type_end();
Chris Lattner2db41cd2002-09-20 15:12:13 +0000876
Chris Lattner58d04d42002-09-20 15:18:30 +0000877 // Print out forward declarations for structure types before anything else!
878 Out << "/* Structure forward decls */\n";
879 for (; I != End; ++I)
Chris Lattner68758072004-05-09 06:20:51 +0000880 if (const Type *STy = dyn_cast<StructType>(I->second)) {
881 std::string Name = "struct l_" + Mangler::makeNameProper(I->first);
882 Out << Name << ";\n";
883 TypeNames.insert(std::make_pair(STy, Name));
884 }
Chris Lattner58d04d42002-09-20 15:18:30 +0000885
886 Out << "\n";
887
888 // Now we can print out typedefs...
889 Out << "/* Typedefs */\n";
Reid Spencer9231ac82004-05-25 08:53:40 +0000890 for (I = ST.type_begin(); I != End; ++I) {
Chris Lattner68758072004-05-09 06:20:51 +0000891 const Type *Ty = cast<Type>(I->second);
892 std::string Name = "l_" + Mangler::makeNameProper(I->first);
893 Out << "typedef ";
894 printType(Out, Ty, Name);
895 Out << ";\n";
896 }
Chris Lattnerfa395ec2003-11-02 01:29:27 +0000897
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000898 Out << "\n";
899
Chris Lattner2c601a72002-09-20 15:05:40 +0000900 // Keep track of which structures have been printed so far...
901 std::set<const StructType *> StructPrinted;
902
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000903 // Loop over all structures then push them into the stack so they are
904 // printed in the correct order.
Chris Lattner2db41cd2002-09-20 15:12:13 +0000905 //
Chris Lattner58d04d42002-09-20 15:18:30 +0000906 Out << "/* Structure contents */\n";
Reid Spencer9231ac82004-05-25 08:53:40 +0000907 for (I = ST.type_begin(); I != End; ++I)
Chris Lattner2db41cd2002-09-20 15:12:13 +0000908 if (const StructType *STy = dyn_cast<StructType>(I->second))
Chris Lattnerfa395ec2003-11-02 01:29:27 +0000909 // Only print out used types!
Chris Lattner68758072004-05-09 06:20:51 +0000910 printContainedStructs(STy, StructPrinted);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000911}
912
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000913// Push the struct onto the stack and recursively push all structs
914// this one depends on.
Chris Lattner2c601a72002-09-20 15:05:40 +0000915void CWriter::printContainedStructs(const Type *Ty,
916 std::set<const StructType*> &StructPrinted){
Misha Brukmanac25de32003-07-09 17:33:50 +0000917 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000918 //Check to see if we have already printed this struct
Chris Lattner2c601a72002-09-20 15:05:40 +0000919 if (StructPrinted.count(STy) == 0) {
920 // Print all contained types first...
Chris Lattnerd21cd802004-02-09 04:37:31 +0000921 for (StructType::element_iterator I = STy->element_begin(),
922 E = STy->element_end(); I != E; ++I) {
Chris Lattner2c601a72002-09-20 15:05:40 +0000923 const Type *Ty1 = I->get();
Chris Lattnera4c047e2002-09-20 14:56:54 +0000924 if (isa<StructType>(Ty1) || isa<ArrayType>(Ty1))
Chris Lattnerab2b3282003-05-29 15:12:27 +0000925 printContainedStructs(*I, StructPrinted);
Chris Lattnera4c047e2002-09-20 14:56:54 +0000926 }
927
Chris Lattner2c601a72002-09-20 15:05:40 +0000928 //Print structure type out..
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000929 StructPrinted.insert(STy);
Chris Lattneredd8ce12003-05-03 03:14:35 +0000930 std::string Name = TypeNames[STy];
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000931 printType(Out, STy, Name, true);
Chris Lattner58d04d42002-09-20 15:18:30 +0000932 Out << ";\n\n";
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000933 }
Chris Lattnera4c047e2002-09-20 14:56:54 +0000934
Chris Lattner2c601a72002-09-20 15:05:40 +0000935 // If it is an array, check contained types and continue
936 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)){
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000937 const Type *Ty1 = ATy->getElementType();
938 if (isa<StructType>(Ty1) || isa<ArrayType>(Ty1))
Chris Lattner2c601a72002-09-20 15:05:40 +0000939 printContainedStructs(Ty1, StructPrinted);
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +0000940 }
941}
942
Chris Lattner3ef6dc72002-05-09 14:40:11 +0000943
Chris Lattner4cda8352002-08-20 16:55:48 +0000944void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
Joel Stanley54f60322003-06-25 04:52:09 +0000945 if (F->hasInternalLinkage()) Out << "static ";
Joel Stanley54f60322003-06-25 04:52:09 +0000946
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000947 // Loop over the arguments, printing them...
Chris Lattner16c7bb22002-05-09 02:28:59 +0000948 const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000949
Joel Stanley54f60322003-06-25 04:52:09 +0000950 std::stringstream FunctionInnards;
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000951
952 // Print out the name...
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000953 FunctionInnards << Mang->getValueName(F) << "(";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000954
Chris Lattner16c7bb22002-05-09 02:28:59 +0000955 if (!F->isExternal()) {
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000956 if (!F->aempty()) {
Chris Lattneredd8ce12003-05-03 03:14:35 +0000957 std::string ArgName;
Chris Lattner4cda8352002-08-20 16:55:48 +0000958 if (F->abegin()->hasName() || !Prototype)
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000959 ArgName = Mang->getValueName(F->abegin());
Joel Stanley54f60322003-06-25 04:52:09 +0000960 printType(FunctionInnards, F->afront().getType(), ArgName);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000961 for (Function::const_aiterator I = ++F->abegin(), E = F->aend();
962 I != E; ++I) {
Joel Stanley54f60322003-06-25 04:52:09 +0000963 FunctionInnards << ", ";
Chris Lattner4cda8352002-08-20 16:55:48 +0000964 if (I->hasName() || !Prototype)
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000965 ArgName = Mang->getValueName(I);
Chris Lattner4cda8352002-08-20 16:55:48 +0000966 else
967 ArgName = "";
Joel Stanley54f60322003-06-25 04:52:09 +0000968 printType(FunctionInnards, I->getType(), ArgName);
Chris Lattnerdeed7a52002-05-09 15:18:52 +0000969 }
970 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000971 } else {
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000972 // Loop over the arguments, printing them...
Chris Lattnerd5d89962004-02-09 04:14:01 +0000973 for (FunctionType::param_iterator I = FT->param_begin(),
Reid Spencer9231ac82004-05-25 08:53:40 +0000974 E = FT->param_end(); I != E; ++I) {
Chris Lattnerd5d89962004-02-09 04:14:01 +0000975 if (I != FT->param_begin()) FunctionInnards << ", ";
Joel Stanley54f60322003-06-25 04:52:09 +0000976 printType(FunctionInnards, *I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000977 }
978 }
979
Chris Lattner1f8c4a12002-09-20 22:32:30 +0000980 // Finish printing arguments... if this is a vararg function, print the ...,
981 // unless there are no known types, in which case, we just emit ().
982 //
Chris Lattnerd5d89962004-02-09 04:14:01 +0000983 if (FT->isVarArg() && FT->getNumParams()) {
984 if (FT->getNumParams()) FunctionInnards << ", ";
Joel Stanley54f60322003-06-25 04:52:09 +0000985 FunctionInnards << "..."; // Output varargs portion of signature!
Chris Lattnerd5d89962004-02-09 04:14:01 +0000986 } else if (!FT->isVarArg() && FT->getNumParams() == 0) {
Chris Lattner4f7e1732003-11-26 00:09:17 +0000987 FunctionInnards << "void"; // ret() -> ret(void) in C.
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000988 }
Joel Stanley54f60322003-06-25 04:52:09 +0000989 FunctionInnards << ")";
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000990 // Print out the return type and the entire signature for that matter
Joel Stanley54f60322003-06-25 04:52:09 +0000991 printType(Out, F->getReturnType(), FunctionInnards.str());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000992}
993
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000994void CWriter::printFunction(Function &F) {
995 printFunctionSignature(&F, false);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000996 Out << " {\n";
997
Chris Lattner497e19a2002-05-09 20:39:03 +0000998 // print local variable information for the function
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000999 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ++I)
Chris Lattner6ffe5512004-04-27 15:13:33 +00001000 if (const AllocaInst *AI = isDirectAlloca(&*I)) {
Chris Lattnera8ab89e2003-06-17 04:39:14 +00001001 Out << " ";
Brian Gaeked9fb37a2003-07-24 20:20:44 +00001002 printType(Out, AI->getAllocatedType(), Mang->getValueName(AI));
Chris Lattnera8ab89e2003-06-17 04:39:14 +00001003 Out << "; /* Address exposed local */\n";
Chris Lattner6ffe5512004-04-27 15:13:33 +00001004 } else if (I->getType() != Type::VoidTy && !isInlinableInst(*I)) {
Chris Lattner16c7bb22002-05-09 02:28:59 +00001005 Out << " ";
Chris Lattner6ffe5512004-04-27 15:13:33 +00001006 printType(Out, I->getType(), Mang->getValueName(&*I));
Chris Lattner16c7bb22002-05-09 02:28:59 +00001007 Out << ";\n";
Chris Lattnera8ab89e2003-06-17 04:39:14 +00001008
Chris Lattner84e66652003-05-03 07:11:00 +00001009 if (isa<PHINode>(*I)) { // Print out PHI node temporaries as well...
1010 Out << " ";
Chris Lattner6ffe5512004-04-27 15:13:33 +00001011 printType(Out, I->getType(),
1012 Mang->getValueName(&*I)+"__PHI_TEMPORARY");
Chris Lattner84e66652003-05-03 07:11:00 +00001013 Out << ";\n";
1014 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001015 }
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001016
1017 Out << "\n";
1018
Chris Lattner16c7bb22002-05-09 02:28:59 +00001019 // print the basic blocks
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001020 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
Chris Lattnercb3ad012004-05-09 20:41:32 +00001021 if (Loop *L = LI->getLoopFor(BB)) {
1022 if (L->getHeader() == BB && L->getParentLoop() == 0)
1023 printLoop(L);
1024 } else {
1025 printBasicBlock(BB);
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001026 }
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00001027 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001028
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00001029 Out << "}\n\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001030}
1031
Chris Lattnercb3ad012004-05-09 20:41:32 +00001032void CWriter::printLoop(Loop *L) {
1033 Out << " do { /* Syntactic loop '" << L->getHeader()->getName()
1034 << "' to make GCC happy */\n";
1035 for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) {
1036 BasicBlock *BB = L->getBlocks()[i];
1037 Loop *BBLoop = LI->getLoopFor(BB);
1038 if (BBLoop == L)
1039 printBasicBlock(BB);
1040 else if (BB == BBLoop->getHeader() && BBLoop->getParentLoop() == L)
1041 printLoop(BBLoop);
1042 }
1043 Out << " } while (1); /* end of syntactic loop '"
1044 << L->getHeader()->getName() << "' */\n";
1045}
1046
1047void CWriter::printBasicBlock(BasicBlock *BB) {
1048
1049 // Don't print the label for the basic block if there are no uses, or if
1050 // the only terminator use is the predecessor basic block's terminator.
1051 // We have to scan the use list because PHI nodes use basic blocks too but
1052 // do not require a label to be generated.
1053 //
1054 bool NeedsLabel = false;
1055 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
1056 if (isGotoCodeNecessary(*PI, BB)) {
1057 NeedsLabel = true;
1058 break;
1059 }
1060
1061 if (NeedsLabel) Out << Mang->getValueName(BB) << ":\n";
1062
1063 // Output all of the instructions in the basic block...
1064 for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E;
1065 ++II) {
1066 if (!isInlinableInst(*II) && !isDirectAlloca(II)) {
1067 if (II->getType() != Type::VoidTy)
1068 outputLValue(II);
1069 else
1070 Out << " ";
1071 visit(*II);
1072 Out << ";\n";
1073 }
1074 }
1075
1076 // Don't emit prefix or suffix for the terminator...
1077 visit(*BB->getTerminator());
1078}
1079
1080
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001081// Specific Instruction type classes... note that all of the casts are
Misha Brukman5560c9d2003-08-18 14:43:39 +00001082// necessary because we use the instruction classes as opaque types...
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001083//
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001084void CWriter::visitReturnInst(ReturnInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001085 // Don't output a void return if this is the last basic block in the function
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001086 if (I.getNumOperands() == 0 &&
1087 &*--I.getParent()->getParent()->end() == I.getParent() &&
1088 !I.getParent()->size() == 1) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001089 return;
Chris Lattner963b70b2002-05-21 18:05:19 +00001090 }
Chris Lattner44408262002-05-09 03:50:42 +00001091
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001092 Out << " return";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001093 if (I.getNumOperands()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001094 Out << " ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001095 writeOperand(I.getOperand(0));
Chris Lattner16c7bb22002-05-09 02:28:59 +00001096 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001097 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001098}
1099
Chris Lattnera9f5e052003-04-22 20:19:52 +00001100void CWriter::visitSwitchInst(SwitchInst &SI) {
Chris Lattnera05e0ec2004-05-09 03:42:48 +00001101 printPHICopiesForSuccessors(SI.getParent(), 0);
1102
Chris Lattnera9f5e052003-04-22 20:19:52 +00001103 Out << " switch (";
1104 writeOperand(SI.getOperand(0));
Chris Lattnerf1acd962003-04-23 19:15:13 +00001105 Out << ") {\n default:\n";
1106 printBranchToBlock(SI.getParent(), SI.getDefaultDest(), 2);
Chris Lattnera9f5e052003-04-22 20:19:52 +00001107 Out << ";\n";
1108 for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2) {
1109 Out << " case ";
1110 writeOperand(SI.getOperand(i));
1111 Out << ":\n";
1112 BasicBlock *Succ = cast<BasicBlock>(SI.getOperand(i+1));
1113 printBranchToBlock(SI.getParent(), Succ, 2);
1114 if (Succ == SI.getParent()->getNext())
1115 Out << " break;\n";
1116 }
1117 Out << " }\n";
1118}
1119
Chris Lattnercb3ad012004-05-09 20:41:32 +00001120bool CWriter::isGotoCodeNecessary(BasicBlock *From, BasicBlock *To) {
1121 /// FIXME: This should be reenabled, but loop reordering safe!!
1122 return true;
1123
1124 if (From->getNext() != To) // Not the direct successor, we need a goto
1125 return true;
1126
1127 //isa<SwitchInst>(From->getTerminator())
Chris Lattner9bda5f52003-06-28 17:53:05 +00001128
Chris Lattnera9f5e052003-04-22 20:19:52 +00001129
Chris Lattnercb3ad012004-05-09 20:41:32 +00001130 if (LI->getLoopFor(From) != LI->getLoopFor(To))
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001131 return true;
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001132 return false;
1133}
1134
Chris Lattnera05e0ec2004-05-09 03:42:48 +00001135void CWriter::printPHICopiesForSuccessors(BasicBlock *CurBlock,
1136 unsigned Indent) {
1137 for (succ_iterator SI = succ_begin(CurBlock), E = succ_end(CurBlock);
1138 SI != E; ++SI)
1139 for (BasicBlock::iterator I = SI->begin();
1140 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
1141 // now we have to do the printing
1142 Out << std::string(Indent, ' ');
1143 Out << " " << Mang->getValueName(I) << "__PHI_TEMPORARY = ";
1144 writeOperand(PN->getIncomingValue(PN->getBasicBlockIndex(CurBlock)));
1145 Out << "; /* for PHI node */\n";
1146 }
1147}
1148
1149
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001150void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
Chris Lattner9bda5f52003-06-28 17:53:05 +00001151 unsigned Indent) {
Chris Lattnercb3ad012004-05-09 20:41:32 +00001152 if (isGotoCodeNecessary(CurBB, Succ)) {
Chris Lattneredd8ce12003-05-03 03:14:35 +00001153 Out << std::string(Indent, ' ') << " goto ";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001154 writeOperand(Succ);
1155 Out << ";\n";
1156 }
1157}
1158
Misha Brukman37f92e22003-09-11 22:34:13 +00001159// Branch instruction printing - Avoid printing out a branch to a basic block
1160// that immediately succeeds the current one.
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001161//
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001162void CWriter::visitBranchInst(BranchInst &I) {
Chris Lattnera05e0ec2004-05-09 03:42:48 +00001163 printPHICopiesForSuccessors(I.getParent(), 0);
1164
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001165 if (I.isConditional()) {
Chris Lattner5ef6ffd2003-10-12 08:12:58 +00001166 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(0))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001167 Out << " if (";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001168 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001169 Out << ") {\n";
1170
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001171 printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001172
Chris Lattner5ef6ffd2003-10-12 08:12:58 +00001173 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(1))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001174 Out << " } else {\n";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001175 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001176 }
1177 } else {
Misha Brukman5560c9d2003-08-18 14:43:39 +00001178 // First goto not necessary, assume second one is...
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001179 Out << " if (!";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001180 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001181 Out << ") {\n";
1182
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001183 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001184 }
1185
1186 Out << " }\n";
1187 } else {
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001188 printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001189 }
1190 Out << "\n";
1191}
1192
Chris Lattner84e66652003-05-03 07:11:00 +00001193// PHI nodes get copied into temporary values at the end of predecessor basic
1194// blocks. We now need to copy these temporary values into the REAL value for
1195// the PHI.
1196void CWriter::visitPHINode(PHINode &I) {
1197 writeOperand(&I);
1198 Out << "__PHI_TEMPORARY";
1199}
1200
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001201
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001202void CWriter::visitBinaryOperator(Instruction &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001203 // binary instructions, shift instructions, setCond instructions.
Chris Lattnerf5612b762003-04-23 19:09:22 +00001204 assert(!isa<PointerType>(I.getType()));
Brian Gaeke031a1122003-06-23 20:00:51 +00001205
1206 // We must cast the results of binary operations which might be promoted.
1207 bool needsCast = false;
1208 if ((I.getType() == Type::UByteTy) || (I.getType() == Type::SByteTy)
Brian Gaekee99f4cf2003-06-25 03:05:33 +00001209 || (I.getType() == Type::UShortTy) || (I.getType() == Type::ShortTy)
1210 || (I.getType() == Type::FloatTy)) {
Brian Gaeke031a1122003-06-23 20:00:51 +00001211 needsCast = true;
1212 Out << "((";
Chris Lattner7635ea42003-11-03 01:01:59 +00001213 printType(Out, I.getType());
Brian Gaeke031a1122003-06-23 20:00:51 +00001214 Out << ")(";
1215 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001216
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001217 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001218
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001219 switch (I.getOpcode()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001220 case Instruction::Add: Out << " + "; break;
1221 case Instruction::Sub: Out << " - "; break;
1222 case Instruction::Mul: Out << "*"; break;
1223 case Instruction::Div: Out << "/"; break;
1224 case Instruction::Rem: Out << "%"; break;
1225 case Instruction::And: Out << " & "; break;
1226 case Instruction::Or: Out << " | "; break;
1227 case Instruction::Xor: Out << " ^ "; break;
1228 case Instruction::SetEQ: Out << " == "; break;
1229 case Instruction::SetNE: Out << " != "; break;
1230 case Instruction::SetLE: Out << " <= "; break;
1231 case Instruction::SetGE: Out << " >= "; break;
1232 case Instruction::SetLT: Out << " < "; break;
1233 case Instruction::SetGT: Out << " > "; break;
1234 case Instruction::Shl : Out << " << "; break;
1235 case Instruction::Shr : Out << " >> "; break;
Chris Lattnere7f65d3b2002-06-30 16:07:20 +00001236 default: std::cerr << "Invalid operator type!" << I; abort();
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001237 }
1238
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001239 writeOperand(I.getOperand(1));
Brian Gaeke031a1122003-06-23 20:00:51 +00001240
1241 if (needsCast) {
1242 Out << "))";
1243 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001244}
1245
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001246void CWriter::visitCastInst(CastInst &I) {
Chris Lattnerd13bd222003-06-01 03:36:51 +00001247 if (I.getType() == Type::BoolTy) {
1248 Out << "(";
1249 writeOperand(I.getOperand(0));
1250 Out << " != 0)";
1251 return;
1252 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001253 Out << "(";
Chris Lattner7635ea42003-11-03 01:01:59 +00001254 printType(Out, I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001255 Out << ")";
Chris Lattnerf5612b762003-04-23 19:09:22 +00001256 if (isa<PointerType>(I.getType())&&I.getOperand(0)->getType()->isIntegral() ||
1257 isa<PointerType>(I.getOperand(0)->getType())&&I.getType()->isIntegral()) {
1258 // Avoid "cast to pointer from integer of different size" warnings
1259 Out << "(long)";
1260 }
Chris Lattnerd13bd222003-06-01 03:36:51 +00001261
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001262 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001263}
1264
Chris Lattner9f24a072004-03-12 05:52:14 +00001265void CWriter::visitSelectInst(SelectInst &I) {
1266 Out << "((";
1267 writeOperand(I.getCondition());
1268 Out << ") ? (";
1269 writeOperand(I.getTrueValue());
1270 Out << ") : (";
1271 writeOperand(I.getFalseValue());
1272 Out << "))";
1273}
1274
1275
Chris Lattnerc2421432004-05-09 04:30:20 +00001276void CWriter::lowerIntrinsics(Function &F) {
1277 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
1278 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
1279 if (CallInst *CI = dyn_cast<CallInst>(I++))
1280 if (Function *F = CI->getCalledFunction())
1281 switch (F->getIntrinsicID()) {
1282 case Intrinsic::not_intrinsic:
1283 case Intrinsic::vastart:
1284 case Intrinsic::vacopy:
1285 case Intrinsic::vaend:
1286 case Intrinsic::returnaddress:
1287 case Intrinsic::frameaddress:
1288 case Intrinsic::setjmp:
1289 case Intrinsic::longjmp:
1290 // We directly implement these intrinsics
1291 break;
1292 default:
1293 // All other intrinsic calls we must lower.
1294 Instruction *Before = CI->getPrev();
1295 IL.LowerIntrinsicCall(CI);
1296 if (Before) { // Move iterator to instruction after call
1297 I = Before; ++I;
1298 } else {
1299 I = BB->begin();
Chris Lattner4ef51372004-02-14 00:31:10 +00001300 }
Chris Lattnerc2421432004-05-09 04:30:20 +00001301 }
Chris Lattner4ef51372004-02-14 00:31:10 +00001302}
1303
1304
1305
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001306void CWriter::visitCallInst(CallInst &I) {
Chris Lattner18ac3c82003-05-08 18:41:45 +00001307 // Handle intrinsic function calls first...
1308 if (Function *F = I.getCalledFunction())
Brian Gaeked0fde302003-11-11 22:41:34 +00001309 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID()) {
Chris Lattner18ac3c82003-05-08 18:41:45 +00001310 switch (ID) {
Chris Lattner4ef51372004-02-14 00:31:10 +00001311 default: assert(0 && "Unknown LLVM intrinsic!");
Chris Lattner317201d2004-03-13 00:24:00 +00001312 case Intrinsic::vastart:
Chris Lattner4d45bd02003-10-18 05:57:43 +00001313 Out << "0; ";
1314
1315 Out << "va_start(*(va_list*)&" << Mang->getValueName(&I) << ", ";
Chris Lattner18ac3c82003-05-08 18:41:45 +00001316 // Output the last argument to the enclosing function...
Chris Lattner4065ef92003-10-23 18:39:22 +00001317 if (I.getParent()->getParent()->aempty()) {
1318 std::cerr << "The C backend does not currently support zero "
1319 << "argument varargs functions, such as '"
1320 << I.getParent()->getParent()->getName() << "'!\n";
1321 abort();
1322 }
Chris Lattner18ac3c82003-05-08 18:41:45 +00001323 writeOperand(&I.getParent()->getParent()->aback());
1324 Out << ")";
1325 return;
Chris Lattner317201d2004-03-13 00:24:00 +00001326 case Intrinsic::vaend:
Chris Lattner4d45bd02003-10-18 05:57:43 +00001327 Out << "va_end(*(va_list*)&";
Chris Lattner18ac3c82003-05-08 18:41:45 +00001328 writeOperand(I.getOperand(1));
1329 Out << ")";
1330 return;
Chris Lattner317201d2004-03-13 00:24:00 +00001331 case Intrinsic::vacopy:
Chris Lattner4d45bd02003-10-18 05:57:43 +00001332 Out << "0;";
1333 Out << "va_copy(*(va_list*)&" << Mang->getValueName(&I) << ", ";
1334 Out << "*(va_list*)&";
Chris Lattner18ac3c82003-05-08 18:41:45 +00001335 writeOperand(I.getOperand(1));
Chris Lattner18ac3c82003-05-08 18:41:45 +00001336 Out << ")";
1337 return;
Chris Lattnerfe1554a2004-02-14 02:55:36 +00001338 case Intrinsic::returnaddress:
1339 Out << "__builtin_return_address(";
1340 writeOperand(I.getOperand(1));
1341 Out << ")";
1342 return;
1343 case Intrinsic::frameaddress:
1344 Out << "__builtin_frame_address(";
1345 writeOperand(I.getOperand(1));
1346 Out << ")";
1347 return;
Chris Lattnere42cde22004-02-15 22:51:47 +00001348 case Intrinsic::setjmp:
1349 Out << "setjmp(*(jmp_buf*)";
1350 writeOperand(I.getOperand(1));
1351 Out << ")";
1352 return;
1353 case Intrinsic::longjmp:
1354 Out << "longjmp(*(jmp_buf*)";
1355 writeOperand(I.getOperand(1));
1356 Out << ", ";
1357 writeOperand(I.getOperand(2));
1358 Out << ")";
1359 return;
Chris Lattner18ac3c82003-05-08 18:41:45 +00001360 }
1361 }
Chris Lattner9bda5f52003-06-28 17:53:05 +00001362 visitCallSite(&I);
1363}
Chris Lattner18ac3c82003-05-08 18:41:45 +00001364
Chris Lattner9bda5f52003-06-28 17:53:05 +00001365void CWriter::visitCallSite(CallSite CS) {
1366 const PointerType *PTy = cast<PointerType>(CS.getCalledValue()->getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001367 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1368 const Type *RetTy = FTy->getReturnType();
1369
Chris Lattner9bda5f52003-06-28 17:53:05 +00001370 writeOperand(CS.getCalledValue());
Chris Lattnerfabc8802002-08-26 20:50:09 +00001371 Out << "(";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001372
Chris Lattner9bda5f52003-06-28 17:53:05 +00001373 if (CS.arg_begin() != CS.arg_end()) {
1374 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
1375 writeOperand(*AI);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001376
Chris Lattner9bda5f52003-06-28 17:53:05 +00001377 for (++AI; AI != AE; ++AI) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001378 Out << ", ";
Chris Lattner9bda5f52003-06-28 17:53:05 +00001379 writeOperand(*AI);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001380 }
1381 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001382 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001383}
1384
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001385void CWriter::visitMallocInst(MallocInst &I) {
Chris Lattnerf31182a2004-02-13 23:18:48 +00001386 assert(0 && "lowerallocations pass didn't work!");
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001387}
1388
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001389void CWriter::visitAllocaInst(AllocaInst &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001390 Out << "(";
Nick Hildenbrandt98502372002-11-18 20:55:50 +00001391 printType(Out, I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001392 Out << ") alloca(sizeof(";
Nick Hildenbrandt98502372002-11-18 20:55:50 +00001393 printType(Out, I.getType()->getElementType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001394 Out << ")";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001395 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001396 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001397 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001398 }
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001399 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001400}
1401
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001402void CWriter::visitFreeInst(FreeInst &I) {
Chris Lattnerf31182a2004-02-13 23:18:48 +00001403 assert(0 && "lowerallocations pass didn't work!");
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001404}
1405
Chris Lattner23e90702003-11-25 20:49:55 +00001406void CWriter::printIndexingExpression(Value *Ptr, gep_type_iterator I,
1407 gep_type_iterator E) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001408 bool HasImplicitAddress = false;
1409 // If accessing a global value with no indexing, avoid *(&GV) syndrome
1410 if (GlobalValue *V = dyn_cast<GlobalValue>(Ptr)) {
1411 HasImplicitAddress = true;
1412 } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(Ptr)) {
1413 HasImplicitAddress = true;
1414 Ptr = CPR->getValue(); // Get to the global...
Chris Lattnera8ab89e2003-06-17 04:39:14 +00001415 } else if (isDirectAlloca(Ptr)) {
1416 HasImplicitAddress = true;
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001417 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001418
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001419 if (I == E) {
1420 if (!HasImplicitAddress)
1421 Out << "*"; // Implicit zero first argument: '*x' is equivalent to 'x[0]'
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001422
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001423 writeOperandInternal(Ptr);
1424 return;
1425 }
1426
Chris Lattner23e90702003-11-25 20:49:55 +00001427 const Constant *CI = dyn_cast<Constant>(I.getOperand());
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001428 if (HasImplicitAddress && (!CI || !CI->isNullValue()))
1429 Out << "(&";
1430
1431 writeOperandInternal(Ptr);
1432
Nick Hildenbrandte548f002002-09-25 20:29:26 +00001433 if (HasImplicitAddress && (!CI || !CI->isNullValue())) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001434 Out << ")";
Nick Hildenbrandte548f002002-09-25 20:29:26 +00001435 HasImplicitAddress = false; // HIA is only true if we haven't addressed yet
1436 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001437
Nick Hildenbrandte548f002002-09-25 20:29:26 +00001438 assert(!HasImplicitAddress || (CI && CI->isNullValue()) &&
1439 "Can only have implicit address with direct accessing");
1440
1441 if (HasImplicitAddress) {
1442 ++I;
Chris Lattner23e90702003-11-25 20:49:55 +00001443 } else if (CI && CI->isNullValue()) {
1444 gep_type_iterator TmpI = I; ++TmpI;
1445
Nick Hildenbrandte548f002002-09-25 20:29:26 +00001446 // Print out the -> operator if possible...
Chris Lattner23e90702003-11-25 20:49:55 +00001447 if (TmpI != E && isa<StructType>(*TmpI)) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001448 Out << (HasImplicitAddress ? "." : "->");
Chris Lattnerbc771c52003-11-25 23:44:40 +00001449 Out << "field" << cast<ConstantUInt>(TmpI.getOperand())->getValue();
Chris Lattner23e90702003-11-25 20:49:55 +00001450 I = ++TmpI;
1451 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001452 }
Chris Lattner5dfe7672002-08-22 22:48:55 +00001453
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001454 for (; I != E; ++I)
Chris Lattner23e90702003-11-25 20:49:55 +00001455 if (isa<StructType>(*I)) {
1456 Out << ".field" << cast<ConstantUInt>(I.getOperand())->getValue();
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001457 } else {
Chris Lattner23e90702003-11-25 20:49:55 +00001458 Out << "[";
1459 writeOperand(I.getOperand());
1460 Out << "]";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001461 }
1462}
1463
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001464void CWriter::visitLoadInst(LoadInst &I) {
Nick Hildenbrandtca626922002-10-02 21:14:33 +00001465 Out << "*";
Chris Lattner5dfe7672002-08-22 22:48:55 +00001466 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001467}
1468
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001469void CWriter::visitStoreInst(StoreInst &I) {
Nick Hildenbrandtca626922002-10-02 21:14:33 +00001470 Out << "*";
Chris Lattner5dfe7672002-08-22 22:48:55 +00001471 writeOperand(I.getPointerOperand());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001472 Out << " = ";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001473 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001474}
1475
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001476void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
Nick Hildenbrandtca626922002-10-02 21:14:33 +00001477 Out << "&";
Chris Lattner23e90702003-11-25 20:49:55 +00001478 printIndexingExpression(I.getPointerOperand(), gep_type_begin(I),
1479 gep_type_end(I));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001480}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001481
Chris Lattner4d45bd02003-10-18 05:57:43 +00001482void CWriter::visitVANextInst(VANextInst &I) {
1483 Out << Mang->getValueName(I.getOperand(0));
1484 Out << "; va_arg(*(va_list*)&" << Mang->getValueName(&I) << ", ";
Chris Lattner7635ea42003-11-03 01:01:59 +00001485 printType(Out, I.getArgType());
Chris Lattner18ac3c82003-05-08 18:41:45 +00001486 Out << ")";
1487}
1488
Chris Lattner4d45bd02003-10-18 05:57:43 +00001489void CWriter::visitVAArgInst(VAArgInst &I) {
1490 Out << "0;\n";
1491 Out << "{ va_list Tmp; va_copy(Tmp, *(va_list*)&";
1492 writeOperand(I.getOperand(0));
1493 Out << ");\n " << Mang->getValueName(&I) << " = va_arg(Tmp, ";
Chris Lattner7635ea42003-11-03 01:01:59 +00001494 printType(Out, I.getType());
Chris Lattner4d45bd02003-10-18 05:57:43 +00001495 Out << ");\n va_end(Tmp); }";
1496}
1497
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001498//===----------------------------------------------------------------------===//
1499// External Interface declaration
1500//===----------------------------------------------------------------------===//
1501
Chris Lattnerf31182a2004-02-13 23:18:48 +00001502bool CTargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &o) {
Chris Lattner99c59e82004-05-23 21:23:35 +00001503 PM.add(createLowerGCPass());
Chris Lattnerf31182a2004-02-13 23:18:48 +00001504 PM.add(createLowerAllocationsPass());
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001505 PM.add(createLowerInvokePass());
Chris Lattner68758072004-05-09 06:20:51 +00001506 PM.add(new CBackendNameAllUsedStructs());
Chris Lattner4ef51372004-02-14 00:31:10 +00001507 PM.add(new CWriter(o, getIntrinsicLowering()));
Chris Lattnerf31182a2004-02-13 23:18:48 +00001508 return false;
1509}
1510
1511TargetMachine *llvm::allocateCTargetMachine(const Module &M,
1512 IntrinsicLowering *IL) {
1513 return new CTargetMachine(M, IL);
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001514}
Reid Spencer9231ac82004-05-25 08:53:40 +00001515
1516// vim: sw=2