blob: b05c5696faaf744288c72a9666afd559d26a7beb [file] [log] [blame]
Reid Spencer76796932007-01-10 04:17:32 +00001//===-- CBackend.cpp - Library for converting LLVM code to C --------------===//
Misha Brukmand6a29a52005-04-20 16:05:03 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmand6a29a52005-04-20 16:05:03 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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"
Chris Lattner0c54d892006-05-23 23:39:48 +000016#include "llvm/CallingConv.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"
Reid Spencer78d033e2007-01-06 07:24:44 +000023#include "llvm/TypeSymbolTable.h"
Chris Lattner18ac3c82003-05-08 18:41:45 +000024#include "llvm/Intrinsics.h"
Jim Laskey580418e2006-03-23 18:08:29 +000025#include "llvm/IntrinsicInst.h"
Andrew Lenharth29c277f2006-11-27 23:50:49 +000026#include "llvm/InlineAsm.h"
Chris Lattnerd1cf1b42002-09-20 23:26:33 +000027#include "llvm/Analysis/ConstantsScanner.h"
Chris Lattnercb3ad012004-05-09 20:41:32 +000028#include "llvm/Analysis/FindUsedTypes.h"
29#include "llvm/Analysis/LoopInfo.h"
Gordon Henriksence224772008-01-07 01:30:38 +000030#include "llvm/CodeGen/Passes.h"
Chris Lattner30483732004-06-20 07:49:54 +000031#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattner94f4f8e2004-02-13 23:00:29 +000032#include "llvm/Transforms/Scalar.h"
Chris Lattnerd36c9702004-07-11 02:48:49 +000033#include "llvm/Target/TargetMachineRegistry.h"
Andrew Lenharthe0cf0752006-11-28 19:53:36 +000034#include "llvm/Target/TargetAsmInfo.h"
Reid Spencer519e2392007-01-29 17:51:02 +000035#include "llvm/Target/TargetData.h"
Chris Lattner23e90702003-11-25 20:49:55 +000036#include "llvm/Support/CallSite.h"
Chris Lattnera05e0ec2004-05-09 03:42:48 +000037#include "llvm/Support/CFG.h"
Chris Lattner23e90702003-11-25 20:49:55 +000038#include "llvm/Support/GetElementPtrTypeIterator.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000039#include "llvm/Support/InstVisitor.h"
Brian Gaeke49a178b2003-07-25 20:21:06 +000040#include "llvm/Support/Mangler.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000041#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000042#include "llvm/ADT/StringExtras.h"
Chris Lattner67c2d182005-03-18 16:12:37 +000043#include "llvm/ADT/STLExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000044#include "llvm/Support/MathExtras.h"
45#include "llvm/Config/config.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000046#include <algorithm>
Bill Wendling1a097e32006-12-07 23:41:45 +000047#include <sstream>
Chris Lattner897bf0d2004-02-13 06:18:21 +000048using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000049
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000050namespace {
Chris Lattnerd36c9702004-07-11 02:48:49 +000051 // Register the target.
Chris Lattner71d24aa2004-07-11 03:27:42 +000052 RegisterTarget<CTargetMachine> X("c", " C backend");
Chris Lattnerd36c9702004-07-11 02:48:49 +000053
Chris Lattnerf9a05322006-02-13 22:22:42 +000054 /// CBackendNameAllUsedStructsAndMergeFunctions - This pass inserts names for
55 /// any unnamed structure types that are used by the program, and merges
56 /// external functions with the same name.
Chris Lattner68758072004-05-09 06:20:51 +000057 ///
Chris Lattnerf9a05322006-02-13 22:22:42 +000058 class CBackendNameAllUsedStructsAndMergeFunctions : public ModulePass {
Devang Patel794fd752007-05-01 21:15:47 +000059 public:
Devang Patel19974732007-05-03 01:11:54 +000060 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +000061 CBackendNameAllUsedStructsAndMergeFunctions()
62 : ModulePass((intptr_t)&ID) {}
Chris Lattner68758072004-05-09 06:20:51 +000063 void getAnalysisUsage(AnalysisUsage &AU) const {
64 AU.addRequired<FindUsedTypes>();
65 }
66
67 virtual const char *getPassName() const {
68 return "C backend type canonicalizer";
69 }
70
Chris Lattnerb12914b2004-09-20 04:48:05 +000071 virtual bool runOnModule(Module &M);
Chris Lattner68758072004-05-09 06:20:51 +000072 };
Misha Brukmand6a29a52005-04-20 16:05:03 +000073
Devang Patel19974732007-05-03 01:11:54 +000074 char CBackendNameAllUsedStructsAndMergeFunctions::ID = 0;
Devang Patel794fd752007-05-01 21:15:47 +000075
Chris Lattner68758072004-05-09 06:20:51 +000076 /// CWriter - This class is the main chunk of code that converts an LLVM
77 /// module to a C translation unit.
78 class CWriter : public FunctionPass, public InstVisitor<CWriter> {
Misha Brukmand6a29a52005-04-20 16:05:03 +000079 std::ostream &Out;
Reid Spencer519e2392007-01-29 17:51:02 +000080 IntrinsicLowering *IL;
Brian Gaeked9fb37a2003-07-24 20:20:44 +000081 Mangler *Mang;
Chris Lattnercb3ad012004-05-09 20:41:32 +000082 LoopInfo *LI;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000083 const Module *TheModule;
Andrew Lenharthe0cf0752006-11-28 19:53:36 +000084 const TargetAsmInfo* TAsm;
Reid Spencer519e2392007-01-29 17:51:02 +000085 const TargetData* TD;
Chris Lattneredd8ce12003-05-03 03:14:35 +000086 std::map<const Type *, std::string> TypeNames;
Chris Lattneredd8ce12003-05-03 03:14:35 +000087 std::map<const ConstantFP *, unsigned> FPConstantMap;
Reid Spencer69f80a62007-04-12 21:00:45 +000088 std::set<Function*> intrinsicPrototypesAlreadyGenerated;
Chris Lattnere05252b42008-03-02 08:07:24 +000089 std::set<const Argument*> ByValParams;
Reid Spencer69f80a62007-04-12 21:00:45 +000090
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000091 public:
Devang Patel19974732007-05-03 01:11:54 +000092 static char ID;
Dan Gohman950a4c42008-03-25 22:06:05 +000093 explicit CWriter(std::ostream &o)
Devang Patel794fd752007-05-01 21:15:47 +000094 : FunctionPass((intptr_t)&ID), Out(o), IL(0), Mang(0), LI(0),
95 TheModule(0), TAsm(0), TD(0) {}
Chris Lattner0e9f93e2002-08-31 00:29:16 +000096
Chris Lattner94f4f8e2004-02-13 23:00:29 +000097 virtual const char *getPassName() const { return "C backend"; }
Chris Lattner0e9f93e2002-08-31 00:29:16 +000098
Chris Lattnercb3ad012004-05-09 20:41:32 +000099 void getAnalysisUsage(AnalysisUsage &AU) const {
100 AU.addRequired<LoopInfo>();
101 AU.setPreservesAll();
102 }
103
Chris Lattner68758072004-05-09 06:20:51 +0000104 virtual bool doInitialization(Module &M);
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000105
Chris Lattner68758072004-05-09 06:20:51 +0000106 bool runOnFunction(Function &F) {
Chris Lattnercb3ad012004-05-09 20:41:32 +0000107 LI = &getAnalysis<LoopInfo>();
108
Chris Lattner3150e2d2004-12-05 06:49:44 +0000109 // Get rid of intrinsics we can't handle.
110 lowerIntrinsics(F);
111
Chris Lattner68758072004-05-09 06:20:51 +0000112 // Output all floating point constants that cannot be printed accurately.
113 printFloatingPointConstants(F);
Chris Lattner3150e2d2004-12-05 06:49:44 +0000114
Chris Lattner68758072004-05-09 06:20:51 +0000115 printFunction(F);
Chris Lattner68758072004-05-09 06:20:51 +0000116 return false;
117 }
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000118
Chris Lattner68758072004-05-09 06:20:51 +0000119 virtual bool doFinalization(Module &M) {
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000120 // Free memory...
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000121 delete Mang;
Evan Cheng588c6f82008-01-11 09:12:49 +0000122 FPConstantMap.clear();
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000123 TypeNames.clear();
Evan Cheng588c6f82008-01-11 09:12:49 +0000124 ByValParams.clear();
Chris Lattnere05252b42008-03-02 08:07:24 +0000125 intrinsicPrototypesAlreadyGenerated.clear();
Chris Lattnercb3ad012004-05-09 20:41:32 +0000126 return false;
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000127 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000128
Reid Spencer0ae96932007-01-07 03:24:48 +0000129 std::ostream &printType(std::ostream &Out, const Type *Ty,
Reid Spencer251f2142007-01-09 17:09:09 +0000130 bool isSigned = false,
Chris Lattneredd8ce12003-05-03 03:14:35 +0000131 const std::string &VariableName = "",
Duncan Sandsdc024672007-11-27 13:23:08 +0000132 bool IgnoreName = false,
Chris Lattner58d74912008-03-12 17:45:29 +0000133 const PAListPtr &PAL = PAListPtr());
Reid Spencera54b7cb2007-01-12 07:05:14 +0000134 std::ostream &printSimpleType(std::ostream &Out, const Type *Ty,
Chris Lattnerc8b6d332008-03-02 03:16:38 +0000135 bool isSigned,
136 const std::string &NameSoFar = "");
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000137
Chris Lattner0c54d892006-05-23 23:39:48 +0000138 void printStructReturnPointerFunctionType(std::ostream &Out,
Chris Lattner58d74912008-03-12 17:45:29 +0000139 const PAListPtr &PAL,
Chris Lattner0c54d892006-05-23 23:39:48 +0000140 const PointerType *Ty);
Chris Lattnere05252b42008-03-02 08:07:24 +0000141
142 /// writeOperandDeref - Print the result of dereferencing the specified
143 /// operand with '*'. This is equivalent to printing '*' then using
144 /// writeOperand, but avoids excess syntax in some cases.
145 void writeOperandDeref(Value *Operand) {
146 if (isAddressExposed(Operand)) {
147 // Already something with an address exposed.
148 writeOperandInternal(Operand);
149 } else {
150 Out << "*(";
151 writeOperand(Operand);
152 Out << ")";
153 }
154 }
Chris Lattner0c54d892006-05-23 23:39:48 +0000155
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000156 void writeOperand(Value *Operand);
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000157 void writeOperandRaw(Value *Operand);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000158 void writeOperandInternal(Value *Operand);
Reid Spencer1628cec2006-10-26 06:15:43 +0000159 void writeOperandWithCast(Value* Operand, unsigned Opcode);
Chris Lattner5bda9e42007-09-15 06:51:03 +0000160 void writeOperandWithCast(Value* Operand, const ICmpInst &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000161 bool writeInstructionCast(const Instruction &I);
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000162
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +0000163 void writeMemoryAccess(Value *Operand, const Type *OperandType,
164 bool IsVolatile, unsigned Alignment);
165
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000166 private :
Andrew Lenharthe0cf0752006-11-28 19:53:36 +0000167 std::string InterpretASMConstraint(InlineAsm::ConstraintInfo& c);
168
Chris Lattnerc2421432004-05-09 04:30:20 +0000169 void lowerIntrinsics(Function &F);
Chris Lattner4ef51372004-02-14 00:31:10 +0000170
Chris Lattner8c3c4bf2002-05-09 15:49:41 +0000171 void printModule(Module *M);
Reid Spencer78d033e2007-01-06 07:24:44 +0000172 void printModuleTypes(const TypeSymbolTable &ST);
Chris Lattner2c601a72002-09-20 15:05:40 +0000173 void printContainedStructs(const Type *Ty, std::set<const StructType *> &);
Chris Lattner68758072004-05-09 06:20:51 +0000174 void printFloatingPointConstants(Function &F);
Chris Lattner4cda8352002-08-20 16:55:48 +0000175 void printFunctionSignature(const Function *F, bool Prototype);
176
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000177 void printFunction(Function &);
Chris Lattnercb3ad012004-05-09 20:41:32 +0000178 void printBasicBlock(BasicBlock *BB);
179 void printLoop(Loop *L);
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000180
Reid Spencer3da59db2006-11-27 01:05:10 +0000181 void printCast(unsigned opcode, const Type *SrcTy, const Type *DstTy);
Chris Lattner6d492922002-08-19 21:32:41 +0000182 void printConstant(Constant *CPV);
Reid Spencer1628cec2006-10-26 06:15:43 +0000183 void printConstantWithCast(Constant *CPV, unsigned Opcode);
184 bool printConstExprCast(const ConstantExpr *CE);
Chris Lattner6d492922002-08-19 21:32:41 +0000185 void printConstantArray(ConstantArray *CPA);
Chris Lattnere05252b42008-03-02 08:07:24 +0000186 void printConstantVector(ConstantVector *CV);
Chris Lattner6d492922002-08-19 21:32:41 +0000187
Chris Lattnere05252b42008-03-02 08:07:24 +0000188 /// isAddressExposed - Return true if the specified value's name needs to
189 /// have its address taken in order to get a C value of the correct type.
190 /// This happens for global variables, byval parameters, and direct allocas.
191 bool isAddressExposed(const Value *V) const {
192 if (const Argument *A = dyn_cast<Argument>(V))
193 return ByValParams.count(A);
194 return isa<GlobalVariable>(V) || isDirectAlloca(V);
195 }
196
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000197 // isInlinableInst - Attempt to inline instructions into their uses to build
198 // trees as much as possible. To do this, we have to consistently decide
199 // what is acceptable to inline, so that variable declarations don't get
200 // printed and an extra copy of the expr is not emitted.
201 //
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000202 static bool isInlinableInst(const Instruction &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000203 // Always inline cmp instructions, even if they are shared by multiple
Chris Lattner433e25a2004-05-20 20:25:50 +0000204 // expressions. GCC generates horrible code if we don't.
Reid Spencere4d87aa2006-12-23 06:05:41 +0000205 if (isa<CmpInst>(I))
206 return true;
Chris Lattner433e25a2004-05-20 20:25:50 +0000207
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000208 // Must be an expression, must be used exactly once. If it is dead, we
209 // emit it inline where it would go.
Chris Lattnerfd059242003-10-15 16:48:29 +0000210 if (I.getType() == Type::VoidTy || !I.hasOneUse() ||
Misha Brukmand6a29a52005-04-20 16:05:03 +0000211 isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I) ||
Chris Lattner33a44d92008-03-02 03:52:39 +0000212 isa<LoadInst>(I) || isa<VAArgInst>(I) || isa<InsertElementInst>(I))
Chris Lattnerd4e8d312003-07-23 20:45:31 +0000213 // Don't inline a load across a store or other bad things!
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000214 return false;
215
Chris Lattnerb1855ad2008-03-02 05:41:07 +0000216 // Must not be used in inline asm, extractelement, or shufflevector.
217 if (I.hasOneUse()) {
218 const Instruction &User = cast<Instruction>(*I.use_back());
219 if (isInlineAsm(User) || isa<ExtractElementInst>(User) ||
220 isa<ShuffleVectorInst>(User))
221 return false;
222 }
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000223
Reid Spencer555a0b12006-12-11 20:39:15 +0000224 // Only inline instruction it if it's use is in the same BB as the inst.
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000225 return I.getParent() == cast<Instruction>(I.use_back())->getParent();
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000226 }
227
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000228 // isDirectAlloca - Define fixed sized allocas in the entry block as direct
229 // variables which are accessed with the & operator. This causes GCC to
230 // generate significantly better code than to emit alloca calls directly.
231 //
232 static const AllocaInst *isDirectAlloca(const Value *V) {
233 const AllocaInst *AI = dyn_cast<AllocaInst>(V);
234 if (!AI) return false;
235 if (AI->isArrayAllocation())
236 return 0; // FIXME: we can also inline fixed size array allocas!
Chris Lattner02a3be02003-09-20 14:39:18 +0000237 if (AI->getParent() != &AI->getParent()->getParent()->getEntryBlock())
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000238 return 0;
239 return AI;
240 }
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000241
242 // isInlineAsm - Check if the instruction is a call to an inline asm chunk
243 static bool isInlineAsm(const Instruction& I) {
244 if (isa<CallInst>(&I) && isa<InlineAsm>(I.getOperand(0)))
245 return true;
246 return false;
247 }
248
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000249 // Instruction visitation functions
250 friend class InstVisitor<CWriter>;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000251
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000252 void visitReturnInst(ReturnInst &I);
253 void visitBranchInst(BranchInst &I);
Chris Lattnera9f5e052003-04-22 20:19:52 +0000254 void visitSwitchInst(SwitchInst &I);
Chris Lattnercb3ad012004-05-09 20:41:32 +0000255 void visitInvokeInst(InvokeInst &I) {
256 assert(0 && "Lowerinvoke pass didn't work!");
257 }
258
259 void visitUnwindInst(UnwindInst &I) {
260 assert(0 && "Lowerinvoke pass didn't work!");
261 }
Chris Lattnera9d12c02004-10-16 18:12:13 +0000262 void visitUnreachableInst(UnreachableInst &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000263
Chris Lattner84e66652003-05-03 07:11:00 +0000264 void visitPHINode(PHINode &I);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000265 void visitBinaryOperator(Instruction &I);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000266 void visitICmpInst(ICmpInst &I);
267 void visitFCmpInst(FCmpInst &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000268
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000269 void visitCastInst (CastInst &I);
Chris Lattner9f24a072004-03-12 05:52:14 +0000270 void visitSelectInst(SelectInst &I);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000271 void visitCallInst (CallInst &I);
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000272 void visitInlineAsm(CallInst &I);
Chris Lattner2299fec2008-03-02 08:29:41 +0000273 bool visitBuiltinCall(CallInst &I, Intrinsic::ID ID, bool &WroteCallee);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000274
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000275 void visitMallocInst(MallocInst &I);
276 void visitAllocaInst(AllocaInst &I);
277 void visitFreeInst (FreeInst &I);
278 void visitLoadInst (LoadInst &I);
279 void visitStoreInst (StoreInst &I);
280 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner4d45bd02003-10-18 05:57:43 +0000281 void visitVAArgInst (VAArgInst &I);
Chris Lattner33a44d92008-03-02 03:52:39 +0000282
283 void visitInsertElementInst(InsertElementInst &I);
Chris Lattner0452ed62008-03-02 03:57:08 +0000284 void visitExtractElementInst(ExtractElementInst &I);
Chris Lattnerb1855ad2008-03-02 05:41:07 +0000285 void visitShuffleVectorInst(ShuffleVectorInst &SVI);
Chris Lattner2f5f51a2002-05-09 03:28:37 +0000286
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000287 void visitInstruction(Instruction &I) {
Bill Wendlingf5da1332006-12-07 22:21:48 +0000288 cerr << "C Writer does not know about " << I;
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000289 abort();
290 }
291
292 void outputLValue(Instruction *I) {
Bill Wendling145aad02007-02-23 22:45:08 +0000293 Out << " " << GetValueName(I) << " = ";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000294 }
Chris Lattnercb3ad012004-05-09 20:41:32 +0000295
296 bool isGotoCodeNecessary(BasicBlock *From, BasicBlock *To);
John Criswell57bbfce2004-10-20 14:38:39 +0000297 void printPHICopiesForSuccessor(BasicBlock *CurBlock,
298 BasicBlock *Successor, unsigned Indent);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000299 void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
300 unsigned Indent);
Chris Lattnere05252b42008-03-02 08:07:24 +0000301 void printGEPExpression(Value *Ptr, gep_type_iterator I,
302 gep_type_iterator E);
Bill Wendling145aad02007-02-23 22:45:08 +0000303
304 std::string GetValueName(const Value *Operand);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000305 };
Chris Lattner4ef51372004-02-14 00:31:10 +0000306}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000307
Devang Patel19974732007-05-03 01:11:54 +0000308char CWriter::ID = 0;
Devang Patel794fd752007-05-01 21:15:47 +0000309
Chris Lattner68758072004-05-09 06:20:51 +0000310/// This method inserts names for any unnamed structure types that are used by
311/// the program, and removes names from structure types that are not used by the
312/// program.
313///
Chris Lattnerf9a05322006-02-13 22:22:42 +0000314bool CBackendNameAllUsedStructsAndMergeFunctions::runOnModule(Module &M) {
Chris Lattner68758072004-05-09 06:20:51 +0000315 // Get a set of types that are used by the program...
316 std::set<const Type *> UT = getAnalysis<FindUsedTypes>().getTypes();
Misha Brukmand6a29a52005-04-20 16:05:03 +0000317
Chris Lattner68758072004-05-09 06:20:51 +0000318 // Loop over the module symbol table, removing types from UT that are
Chris Lattnerdbf69f12005-03-08 16:19:59 +0000319 // already named, and removing names for types that are not used.
Chris Lattner68758072004-05-09 06:20:51 +0000320 //
Reid Spencer78d033e2007-01-06 07:24:44 +0000321 TypeSymbolTable &TST = M.getTypeSymbolTable();
322 for (TypeSymbolTable::iterator TI = TST.begin(), TE = TST.end();
Reid Spencer9231ac82004-05-25 08:53:40 +0000323 TI != TE; ) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000324 TypeSymbolTable::iterator I = TI++;
Chris Lattner19e8b0c2007-01-16 07:22:23 +0000325
326 // If this isn't a struct type, remove it from our set of types to name.
327 // This simplifies emission later.
Chris Lattnera80cc932007-01-16 18:02:45 +0000328 if (!isa<StructType>(I->second) && !isa<OpaqueType>(I->second)) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000329 TST.remove(I);
Chris Lattner19e8b0c2007-01-16 07:22:23 +0000330 } else {
331 // If this is not used, remove it from the symbol table.
332 std::set<const Type *>::iterator UTI = UT.find(I->second);
333 if (UTI == UT.end())
334 TST.remove(I);
335 else
336 UT.erase(UTI); // Only keep one name for this type.
337 }
Reid Spencer9231ac82004-05-25 08:53:40 +0000338 }
Chris Lattner68758072004-05-09 06:20:51 +0000339
340 // UT now contains types that are not named. Loop over it, naming
341 // structure types.
342 //
343 bool Changed = false;
Chris Lattner9d1af972004-05-28 05:47:27 +0000344 unsigned RenameCounter = 0;
Chris Lattner68758072004-05-09 06:20:51 +0000345 for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
346 I != E; ++I)
347 if (const StructType *ST = dyn_cast<StructType>(*I)) {
Chris Lattner9d1af972004-05-28 05:47:27 +0000348 while (M.addTypeName("unnamed"+utostr(RenameCounter), ST))
349 ++RenameCounter;
Chris Lattner68758072004-05-09 06:20:51 +0000350 Changed = true;
351 }
Chris Lattnerf9a05322006-02-13 22:22:42 +0000352
353
354 // Loop over all external functions and globals. If we have two with
355 // identical names, merge them.
356 // FIXME: This code should disappear when we don't allow values with the same
357 // names when they have different types!
358 std::map<std::string, GlobalValue*> ExtSymbols;
359 for (Module::iterator I = M.begin(), E = M.end(); I != E;) {
360 Function *GV = I++;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000361 if (GV->isDeclaration() && GV->hasName()) {
Chris Lattnerf9a05322006-02-13 22:22:42 +0000362 std::pair<std::map<std::string, GlobalValue*>::iterator, bool> X
363 = ExtSymbols.insert(std::make_pair(GV->getName(), GV));
364 if (!X.second) {
365 // Found a conflict, replace this global with the previous one.
366 GlobalValue *OldGV = X.first->second;
Reid Spencer4da49122006-12-12 05:05:00 +0000367 GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
Chris Lattnerf9a05322006-02-13 22:22:42 +0000368 GV->eraseFromParent();
369 Changed = true;
370 }
371 }
372 }
373 // Do the same for globals.
374 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
375 I != E;) {
376 GlobalVariable *GV = I++;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000377 if (GV->isDeclaration() && GV->hasName()) {
Chris Lattnerf9a05322006-02-13 22:22:42 +0000378 std::pair<std::map<std::string, GlobalValue*>::iterator, bool> X
379 = ExtSymbols.insert(std::make_pair(GV->getName(), GV));
380 if (!X.second) {
381 // Found a conflict, replace this global with the previous one.
382 GlobalValue *OldGV = X.first->second;
Reid Spencer4da49122006-12-12 05:05:00 +0000383 GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
Chris Lattnerf9a05322006-02-13 22:22:42 +0000384 GV->eraseFromParent();
385 Changed = true;
386 }
387 }
388 }
389
Chris Lattner68758072004-05-09 06:20:51 +0000390 return Changed;
391}
392
Chris Lattner0c54d892006-05-23 23:39:48 +0000393/// printStructReturnPointerFunctionType - This is like printType for a struct
394/// return type, except, instead of printing the type as void (*)(Struct*, ...)
395/// print it as "Struct (*)(...)", for struct return functions.
396void CWriter::printStructReturnPointerFunctionType(std::ostream &Out,
Chris Lattner58d74912008-03-12 17:45:29 +0000397 const PAListPtr &PAL,
Chris Lattner0c54d892006-05-23 23:39:48 +0000398 const PointerType *TheTy) {
399 const FunctionType *FTy = cast<FunctionType>(TheTy->getElementType());
400 std::stringstream FunctionInnards;
401 FunctionInnards << " (*) (";
402 bool PrintedType = false;
403
404 FunctionType::param_iterator I = FTy->param_begin(), E = FTy->param_end();
405 const Type *RetTy = cast<PointerType>(I->get())->getElementType();
Reid Spencer0ae96932007-01-07 03:24:48 +0000406 unsigned Idx = 1;
Evan Cheng681d2b82008-01-11 03:07:46 +0000407 for (++I, ++Idx; I != E; ++I, ++Idx) {
Chris Lattner0c54d892006-05-23 23:39:48 +0000408 if (PrintedType)
409 FunctionInnards << ", ";
Evan Cheng681d2b82008-01-11 03:07:46 +0000410 const Type *ArgTy = *I;
Chris Lattner58d74912008-03-12 17:45:29 +0000411 if (PAL.paramHasAttr(Idx, ParamAttr::ByVal)) {
Evan Cheng588c6f82008-01-11 09:12:49 +0000412 assert(isa<PointerType>(ArgTy));
413 ArgTy = cast<PointerType>(ArgTy)->getElementType();
414 }
Evan Cheng681d2b82008-01-11 03:07:46 +0000415 printType(FunctionInnards, ArgTy,
Chris Lattner58d74912008-03-12 17:45:29 +0000416 /*isSigned=*/PAL.paramHasAttr(Idx, ParamAttr::SExt), "");
Chris Lattner0c54d892006-05-23 23:39:48 +0000417 PrintedType = true;
418 }
419 if (FTy->isVarArg()) {
420 if (PrintedType)
421 FunctionInnards << ", ...";
422 } else if (!PrintedType) {
423 FunctionInnards << "void";
424 }
425 FunctionInnards << ')';
426 std::string tstr = FunctionInnards.str();
Reid Spencer0ae96932007-01-07 03:24:48 +0000427 printType(Out, RetTy,
Chris Lattner58d74912008-03-12 17:45:29 +0000428 /*isSigned=*/PAL.paramHasAttr(0, ParamAttr::SExt), tstr);
Chris Lattner0c54d892006-05-23 23:39:48 +0000429}
430
Reid Spencere4d87aa2006-12-23 06:05:41 +0000431std::ostream &
Reid Spencera54b7cb2007-01-12 07:05:14 +0000432CWriter::printSimpleType(std::ostream &Out, const Type *Ty, bool isSigned,
Chris Lattner90683ab2008-03-02 03:41:23 +0000433 const std::string &NameSoFar) {
Chris Lattnerb61d41b2008-03-02 03:33:31 +0000434 assert((Ty->isPrimitiveType() || Ty->isInteger() || isa<VectorType>(Ty)) &&
Reid Spencera54b7cb2007-01-12 07:05:14 +0000435 "Invalid type for printSimpleType");
Reid Spencere4d87aa2006-12-23 06:05:41 +0000436 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000437 case Type::VoidTyID: return Out << "void " << NameSoFar;
438 case Type::IntegerTyID: {
439 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
440 if (NumBits == 1)
441 return Out << "bool " << NameSoFar;
442 else if (NumBits <= 8)
443 return Out << (isSigned?"signed":"unsigned") << " char " << NameSoFar;
444 else if (NumBits <= 16)
445 return Out << (isSigned?"signed":"unsigned") << " short " << NameSoFar;
446 else if (NumBits <= 32)
447 return Out << (isSigned?"signed":"unsigned") << " int " << NameSoFar;
448 else {
449 assert(NumBits <= 64 && "Bit widths > 64 not implemented yet");
450 return Out << (isSigned?"signed":"unsigned") << " long long "<< NameSoFar;
451 }
452 }
453 case Type::FloatTyID: return Out << "float " << NameSoFar;
454 case Type::DoubleTyID: return Out << "double " << NameSoFar;
Dale Johannesen53f0bc12007-09-17 00:38:27 +0000455 // Lacking emulation of FP80 on PPC, etc., we assume whichever of these is
456 // present matches host 'long double'.
457 case Type::X86_FP80TyID:
458 case Type::PPC_FP128TyID:
459 case Type::FP128TyID: return Out << "long double " << NameSoFar;
Chris Lattnerb61d41b2008-03-02 03:33:31 +0000460
461 case Type::VectorTyID: {
462 const VectorType *VTy = cast<VectorType>(Ty);
Chris Lattner90683ab2008-03-02 03:41:23 +0000463 return printSimpleType(Out, VTy->getElementType(), isSigned,
Chris Lattner32cba8e2008-03-02 03:39:43 +0000464 " __attribute__((vector_size(" +
465 utostr(TD->getABITypeSize(VTy)) + " ))) " + NameSoFar);
Chris Lattnerb61d41b2008-03-02 03:33:31 +0000466 }
467
468 default:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000469 cerr << "Unknown primitive type: " << *Ty << "\n";
470 abort();
471 }
472}
Chris Lattner68758072004-05-09 06:20:51 +0000473
Chris Lattner83c57752002-08-19 22:17:53 +0000474// Pass the Type* and the variable name and this prints out the variable
475// declaration.
476//
Chris Lattneredd8ce12003-05-03 03:14:35 +0000477std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty,
Reid Spencer0ae96932007-01-07 03:24:48 +0000478 bool isSigned, const std::string &NameSoFar,
Chris Lattner58d74912008-03-12 17:45:29 +0000479 bool IgnoreName, const PAListPtr &PAL) {
Chris Lattnerb61d41b2008-03-02 03:33:31 +0000480 if (Ty->isPrimitiveType() || Ty->isInteger() || isa<VectorType>(Ty)) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000481 printSimpleType(Out, Ty, isSigned, NameSoFar);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000482 return Out;
483 }
Misha Brukmand6a29a52005-04-20 16:05:03 +0000484
Chris Lattner83c57752002-08-19 22:17:53 +0000485 // Check to see if the type is named.
Chris Lattner04b72c82002-10-16 00:08:22 +0000486 if (!IgnoreName || isa<OpaqueType>(Ty)) {
Chris Lattneredd8ce12003-05-03 03:14:35 +0000487 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000488 if (I != TypeNames.end()) return Out << I->second << ' ' << NameSoFar;
Chris Lattner04b72c82002-10-16 00:08:22 +0000489 }
Chris Lattner83c57752002-08-19 22:17:53 +0000490
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000491 switch (Ty->getTypeID()) {
Chris Lattner83c57752002-08-19 22:17:53 +0000492 case Type::FunctionTyID: {
Chris Lattner0c54d892006-05-23 23:39:48 +0000493 const FunctionType *FTy = cast<FunctionType>(Ty);
Misha Brukmand6a29a52005-04-20 16:05:03 +0000494 std::stringstream FunctionInnards;
Joel Stanley54f60322003-06-25 04:52:09 +0000495 FunctionInnards << " (" << NameSoFar << ") (";
Reid Spencer0ae96932007-01-07 03:24:48 +0000496 unsigned Idx = 1;
Chris Lattner0c54d892006-05-23 23:39:48 +0000497 for (FunctionType::param_iterator I = FTy->param_begin(),
498 E = FTy->param_end(); I != E; ++I) {
Evan Cheng7723ab32008-01-12 18:53:07 +0000499 const Type *ArgTy = *I;
Chris Lattner58d74912008-03-12 17:45:29 +0000500 if (PAL.paramHasAttr(Idx, ParamAttr::ByVal)) {
Evan Cheng7723ab32008-01-12 18:53:07 +0000501 assert(isa<PointerType>(ArgTy));
502 ArgTy = cast<PointerType>(ArgTy)->getElementType();
503 }
Chris Lattner0c54d892006-05-23 23:39:48 +0000504 if (I != FTy->param_begin())
Joel Stanley54f60322003-06-25 04:52:09 +0000505 FunctionInnards << ", ";
Evan Cheng7723ab32008-01-12 18:53:07 +0000506 printType(FunctionInnards, ArgTy,
Chris Lattner58d74912008-03-12 17:45:29 +0000507 /*isSigned=*/PAL.paramHasAttr(Idx, ParamAttr::SExt), "");
Reid Spencer0ae96932007-01-07 03:24:48 +0000508 ++Idx;
Chris Lattner83c57752002-08-19 22:17:53 +0000509 }
Chris Lattner0c54d892006-05-23 23:39:48 +0000510 if (FTy->isVarArg()) {
511 if (FTy->getNumParams())
Reid Spencer9231ac82004-05-25 08:53:40 +0000512 FunctionInnards << ", ...";
Chris Lattner0c54d892006-05-23 23:39:48 +0000513 } else if (!FTy->getNumParams()) {
Joel Stanley54f60322003-06-25 04:52:09 +0000514 FunctionInnards << "void";
Chris Lattner83c57752002-08-19 22:17:53 +0000515 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000516 FunctionInnards << ')';
Joel Stanley54f60322003-06-25 04:52:09 +0000517 std::string tstr = FunctionInnards.str();
Reid Spencer0ae96932007-01-07 03:24:48 +0000518 printType(Out, FTy->getReturnType(),
Chris Lattner58d74912008-03-12 17:45:29 +0000519 /*isSigned=*/PAL.paramHasAttr(0, ParamAttr::SExt), tstr);
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000520 return Out;
Chris Lattner83c57752002-08-19 22:17:53 +0000521 }
522 case Type::StructTyID: {
523 const StructType *STy = cast<StructType>(Ty);
524 Out << NameSoFar + " {\n";
525 unsigned Idx = 0;
Chris Lattnerd21cd802004-02-09 04:37:31 +0000526 for (StructType::element_iterator I = STy->element_begin(),
527 E = STy->element_end(); I != E; ++I) {
Chris Lattner83c57752002-08-19 22:17:53 +0000528 Out << " ";
Reid Spencer251f2142007-01-09 17:09:09 +0000529 printType(Out, *I, false, "field" + utostr(Idx++));
Chris Lattner83c57752002-08-19 22:17:53 +0000530 Out << ";\n";
531 }
Lauro Ramos Venancioa126bb72007-07-11 19:56:53 +0000532 Out << '}';
533 if (STy->isPacked())
534 Out << " __attribute__ ((packed))";
535 return Out;
Misha Brukmand6a29a52005-04-20 16:05:03 +0000536 }
Chris Lattner83c57752002-08-19 22:17:53 +0000537
538 case Type::PointerTyID: {
539 const PointerType *PTy = cast<PointerType>(Ty);
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000540 std::string ptrName = "*" + NameSoFar;
541
Robert Bocchinob78e8382006-01-20 20:43:57 +0000542 if (isa<ArrayType>(PTy->getElementType()) ||
Reid Spencer9d6565a2007-02-15 02:26:10 +0000543 isa<VectorType>(PTy->getElementType()))
Chris Lattner8917d362003-11-03 04:31:54 +0000544 ptrName = "(" + ptrName + ")";
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000545
Chris Lattner58d74912008-03-12 17:45:29 +0000546 if (!PAL.isEmpty())
Evan Cheng7723ab32008-01-12 18:53:07 +0000547 // Must be a function ptr cast!
548 return printType(Out, PTy->getElementType(), false, ptrName, true, PAL);
Reid Spencer251f2142007-01-09 17:09:09 +0000549 return printType(Out, PTy->getElementType(), false, ptrName);
Misha Brukman8f9f9a22003-07-21 16:34:35 +0000550 }
Chris Lattner83c57752002-08-19 22:17:53 +0000551
552 case Type::ArrayTyID: {
553 const ArrayType *ATy = cast<ArrayType>(Ty);
554 unsigned NumElements = ATy->getNumElements();
Chris Lattner3e3b6f72004-12-15 23:13:15 +0000555 if (NumElements == 0) NumElements = 1;
Reid Spencer251f2142007-01-09 17:09:09 +0000556 return printType(Out, ATy->getElementType(), false,
Chris Lattner83c57752002-08-19 22:17:53 +0000557 NameSoFar + "[" + utostr(NumElements) + "]");
558 }
Chris Lattner04b72c82002-10-16 00:08:22 +0000559
560 case Type::OpaqueTyID: {
561 static int Count = 0;
Chris Lattneredd8ce12003-05-03 03:14:35 +0000562 std::string TyName = "struct opaque_" + itostr(Count++);
Chris Lattner04b72c82002-10-16 00:08:22 +0000563 assert(TypeNames.find(Ty) == TypeNames.end());
564 TypeNames[Ty] = TyName;
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000565 return Out << TyName << ' ' << NameSoFar;
Chris Lattner04b72c82002-10-16 00:08:22 +0000566 }
Chris Lattner83c57752002-08-19 22:17:53 +0000567 default:
568 assert(0 && "Unhandled case in getTypeProps!");
569 abort();
570 }
571
572 return Out;
573}
574
Chris Lattner6d492922002-08-19 21:32:41 +0000575void CWriter::printConstantArray(ConstantArray *CPA) {
576
577 // As a special case, print the array as a string if it is an array of
578 // ubytes or an array of sbytes with positive values.
Misha Brukmand6a29a52005-04-20 16:05:03 +0000579 //
Chris Lattner6d492922002-08-19 21:32:41 +0000580 const Type *ETy = CPA->getType()->getElementType();
Reid Spencer47857812006-12-31 05:55:36 +0000581 bool isString = (ETy == Type::Int8Ty || ETy == Type::Int8Ty);
Chris Lattner6d492922002-08-19 21:32:41 +0000582
583 // Make sure the last character is a null char, as automatically added by C
Chris Lattner02da6c02003-06-16 12:09:09 +0000584 if (isString && (CPA->getNumOperands() == 0 ||
585 !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
Chris Lattner6d492922002-08-19 21:32:41 +0000586 isString = false;
Misha Brukmand6a29a52005-04-20 16:05:03 +0000587
Chris Lattner6d492922002-08-19 21:32:41 +0000588 if (isString) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000589 Out << '\"';
Chris Lattner02da6c02003-06-16 12:09:09 +0000590 // Keep track of whether the last number was a hexadecimal escape
591 bool LastWasHex = false;
592
Chris Lattner6d492922002-08-19 21:32:41 +0000593 // Do not include the last character, which we know is null
594 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000595 unsigned char C = cast<ConstantInt>(CPA->getOperand(i))->getZExtValue();
Misha Brukmand6a29a52005-04-20 16:05:03 +0000596
Chris Lattner02da6c02003-06-16 12:09:09 +0000597 // Print it out literally if it is a printable character. The only thing
598 // to be careful about is when the last letter output was a hex escape
599 // code, in which case we have to be careful not to print out hex digits
Chris Lattnerda920902003-06-16 12:21:19 +0000600 // explicitly (the C compiler thinks it is a continuation of the previous
601 // character, sheesh...)
Chris Lattner02da6c02003-06-16 12:09:09 +0000602 //
603 if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
604 LastWasHex = false;
Nick Hildenbrandt088b4722002-11-06 21:40:23 +0000605 if (C == '"' || C == '\\')
606 Out << "\\" << C;
Nick Hildenbrandtc3dd2af2002-09-30 21:11:55 +0000607 else
608 Out << C;
Chris Lattner6d492922002-08-19 21:32:41 +0000609 } else {
Chris Lattner02da6c02003-06-16 12:09:09 +0000610 LastWasHex = false;
Chris Lattner6d492922002-08-19 21:32:41 +0000611 switch (C) {
612 case '\n': Out << "\\n"; break;
613 case '\t': Out << "\\t"; break;
614 case '\r': Out << "\\r"; break;
615 case '\v': Out << "\\v"; break;
616 case '\a': Out << "\\a"; break;
Nick Hildenbrandtc3dd2af2002-09-30 21:11:55 +0000617 case '\"': Out << "\\\""; break;
Misha Brukmand6a29a52005-04-20 16:05:03 +0000618 case '\'': Out << "\\\'"; break;
Chris Lattner6d492922002-08-19 21:32:41 +0000619 default:
620 Out << "\\x";
Chris Lattner02da6c02003-06-16 12:09:09 +0000621 Out << (char)(( C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'));
622 Out << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
623 LastWasHex = true;
Chris Lattner6d492922002-08-19 21:32:41 +0000624 break;
625 }
626 }
627 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000628 Out << '\"';
Chris Lattner6d492922002-08-19 21:32:41 +0000629 } else {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000630 Out << '{';
Chris Lattner6d492922002-08-19 21:32:41 +0000631 if (CPA->getNumOperands()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000632 Out << ' ';
Chris Lattner6d492922002-08-19 21:32:41 +0000633 printConstant(cast<Constant>(CPA->getOperand(0)));
634 for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
635 Out << ", ";
636 printConstant(cast<Constant>(CPA->getOperand(i)));
637 }
638 }
639 Out << " }";
640 }
641}
642
Reid Spencer9d6565a2007-02-15 02:26:10 +0000643void CWriter::printConstantVector(ConstantVector *CP) {
Robert Bocchinob78e8382006-01-20 20:43:57 +0000644 Out << '{';
645 if (CP->getNumOperands()) {
646 Out << ' ';
647 printConstant(cast<Constant>(CP->getOperand(0)));
648 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
649 Out << ", ";
650 printConstant(cast<Constant>(CP->getOperand(i)));
651 }
652 }
653 Out << " }";
654}
655
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000656// isFPCSafeToPrint - Returns true if we may assume that CFP may be written out
657// textually as a double (rather than as a reference to a stack-allocated
658// variable). We decide this by converting CFP to a string and back into a
659// double, and then checking whether the conversion results in a bit-equal
660// double to the original value of CFP. This depends on us and the target C
661// compiler agreeing on the conversion process (which is pretty likely since we
662// only deal in IEEE FP).
663//
Chris Lattnercb3ad012004-05-09 20:41:32 +0000664static bool isFPCSafeToPrint(const ConstantFP *CFP) {
Dale Johannesen53f0bc12007-09-17 00:38:27 +0000665 // Do long doubles in hex for now.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000666 if (CFP->getType()!=Type::FloatTy && CFP->getType()!=Type::DoubleTy)
667 return false;
Dale Johannesen43421b32007-09-06 18:13:44 +0000668 APFloat APF = APFloat(CFP->getValueAPF()); // copy
669 if (CFP->getType()==Type::FloatTy)
670 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven);
Reid Spencerbcf81242006-11-05 19:26:37 +0000671#if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000672 char Buffer[100];
Dale Johannesen43421b32007-09-06 18:13:44 +0000673 sprintf(Buffer, "%a", APF.convertToDouble());
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000674 if (!strncmp(Buffer, "0x", 2) ||
675 !strncmp(Buffer, "-0x", 3) ||
676 !strncmp(Buffer, "+0x", 3))
Dale Johannesen43421b32007-09-06 18:13:44 +0000677 return APF.bitwiseIsEqual(APFloat(atof(Buffer)));
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000678 return false;
679#else
Dale Johannesen43421b32007-09-06 18:13:44 +0000680 std::string StrVal = ftostr(APF);
Chris Lattner9860e772003-10-12 04:36:29 +0000681
682 while (StrVal[0] == ' ')
683 StrVal.erase(StrVal.begin());
684
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000685 // Check to make sure that the stringized number is not some string like "Inf"
686 // or NaN. Check that the string matches the "[-+]?[0-9]" regex.
Brian Gaekeb471a232003-06-17 23:55:35 +0000687 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
688 ((StrVal[0] == '-' || StrVal[0] == '+') &&
689 (StrVal[1] >= '0' && StrVal[1] <= '9')))
690 // Reparse stringized version!
Dale Johannesen43421b32007-09-06 18:13:44 +0000691 return APF.bitwiseIsEqual(APFloat(atof(StrVal.c_str())));
Brian Gaekeb471a232003-06-17 23:55:35 +0000692 return false;
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000693#endif
Brian Gaekeb471a232003-06-17 23:55:35 +0000694}
Chris Lattner6d492922002-08-19 21:32:41 +0000695
Reid Spencer3da59db2006-11-27 01:05:10 +0000696/// Print out the casting for a cast operation. This does the double casting
697/// necessary for conversion to the destination type, if necessary.
Reid Spencer3da59db2006-11-27 01:05:10 +0000698/// @brief Print a cast
699void CWriter::printCast(unsigned opc, const Type *SrcTy, const Type *DstTy) {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000700 // Print the destination type cast
701 switch (opc) {
702 case Instruction::UIToFP:
703 case Instruction::SIToFP:
704 case Instruction::IntToPtr:
705 case Instruction::Trunc:
706 case Instruction::BitCast:
707 case Instruction::FPExt:
708 case Instruction::FPTrunc: // For these the DstTy sign doesn't matter
709 Out << '(';
710 printType(Out, DstTy);
711 Out << ')';
712 break;
713 case Instruction::ZExt:
714 case Instruction::PtrToInt:
715 case Instruction::FPToUI: // For these, make sure we get an unsigned dest
716 Out << '(';
Reid Spencera54b7cb2007-01-12 07:05:14 +0000717 printSimpleType(Out, DstTy, false);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000718 Out << ')';
719 break;
720 case Instruction::SExt:
721 case Instruction::FPToSI: // For these, make sure we get a signed dest
722 Out << '(';
Reid Spencera54b7cb2007-01-12 07:05:14 +0000723 printSimpleType(Out, DstTy, true);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000724 Out << ')';
725 break;
726 default:
727 assert(0 && "Invalid cast opcode");
728 }
729
730 // Print the source type cast
Reid Spencer3da59db2006-11-27 01:05:10 +0000731 switch (opc) {
732 case Instruction::UIToFP:
733 case Instruction::ZExt:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000734 Out << '(';
Reid Spencera54b7cb2007-01-12 07:05:14 +0000735 printSimpleType(Out, SrcTy, false);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000736 Out << ')';
Reid Spencer3da59db2006-11-27 01:05:10 +0000737 break;
738 case Instruction::SIToFP:
739 case Instruction::SExt:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000740 Out << '(';
Reid Spencera54b7cb2007-01-12 07:05:14 +0000741 printSimpleType(Out, SrcTy, true);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000742 Out << ')';
Reid Spencer3da59db2006-11-27 01:05:10 +0000743 break;
744 case Instruction::IntToPtr:
745 case Instruction::PtrToInt:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000746 // Avoid "cast to pointer from integer of different size" warnings
747 Out << "(unsigned long)";
748 break;
Reid Spencer3da59db2006-11-27 01:05:10 +0000749 case Instruction::Trunc:
750 case Instruction::BitCast:
751 case Instruction::FPExt:
752 case Instruction::FPTrunc:
753 case Instruction::FPToSI:
754 case Instruction::FPToUI:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000755 break; // These don't need a source cast.
Reid Spencer3da59db2006-11-27 01:05:10 +0000756 default:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000757 assert(0 && "Invalid cast opcode");
Reid Spencer3da59db2006-11-27 01:05:10 +0000758 break;
759 }
760}
761
Chris Lattner6d492922002-08-19 21:32:41 +0000762// printConstant - The LLVM Constant to C Constant converter.
763void CWriter::printConstant(Constant *CPV) {
764 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
765 switch (CE->getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000766 case Instruction::Trunc:
767 case Instruction::ZExt:
768 case Instruction::SExt:
769 case Instruction::FPTrunc:
770 case Instruction::FPExt:
771 case Instruction::UIToFP:
772 case Instruction::SIToFP:
773 case Instruction::FPToUI:
774 case Instruction::FPToSI:
775 case Instruction::PtrToInt:
776 case Instruction::IntToPtr:
777 case Instruction::BitCast:
778 Out << "(";
779 printCast(CE->getOpcode(), CE->getOperand(0)->getType(), CE->getType());
Chris Lattner72623362007-05-03 02:57:13 +0000780 if (CE->getOpcode() == Instruction::SExt &&
781 CE->getOperand(0)->getType() == Type::Int1Ty) {
Reid Spencercee7ba32007-05-02 02:17:41 +0000782 // Make sure we really sext from bool here by subtracting from 0
783 Out << "0-";
Reid Spencercee7ba32007-05-02 02:17:41 +0000784 }
Chris Lattner72623362007-05-03 02:57:13 +0000785 printConstant(CE->getOperand(0));
786 if (CE->getType() == Type::Int1Ty &&
787 (CE->getOpcode() == Instruction::Trunc ||
788 CE->getOpcode() == Instruction::FPToUI ||
789 CE->getOpcode() == Instruction::FPToSI ||
790 CE->getOpcode() == Instruction::PtrToInt)) {
791 // Make sure we really truncate to bool here by anding with 1
792 Out << "&1u";
793 }
794 Out << ')';
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000795 return;
Chris Lattner72623362007-05-03 02:57:13 +0000796
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000797 case Instruction::GetElementPtr:
Chris Lattnere05252b42008-03-02 08:07:24 +0000798 Out << "(";
799 printGEPExpression(CE->getOperand(0), gep_type_begin(CPV),
800 gep_type_end(CPV));
801 Out << ")";
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000802 return;
Chris Lattner6683dbf2004-04-01 05:28:26 +0000803 case Instruction::Select:
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000804 Out << '(';
Chris Lattner6683dbf2004-04-01 05:28:26 +0000805 printConstant(CE->getOperand(0));
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000806 Out << '?';
Chris Lattner6683dbf2004-04-01 05:28:26 +0000807 printConstant(CE->getOperand(1));
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000808 Out << ':';
Chris Lattner6683dbf2004-04-01 05:28:26 +0000809 printConstant(CE->getOperand(2));
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000810 Out << ')';
Chris Lattner6683dbf2004-04-01 05:28:26 +0000811 return;
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000812 case Instruction::Add:
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000813 case Instruction::Sub:
Chris Lattner29255922003-08-14 19:19:53 +0000814 case Instruction::Mul:
Reid Spencer1628cec2006-10-26 06:15:43 +0000815 case Instruction::SDiv:
816 case Instruction::UDiv:
817 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000818 case Instruction::URem:
819 case Instruction::SRem:
820 case Instruction::FRem:
Chris Lattnerf376e5e2004-12-29 04:00:09 +0000821 case Instruction::And:
822 case Instruction::Or:
823 case Instruction::Xor:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000824 case Instruction::ICmp:
Brian Gaeke0415b6c2003-11-22 05:02:56 +0000825 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +0000826 case Instruction::LShr:
827 case Instruction::AShr:
Reid Spencer72ddc212006-10-26 06:17:40 +0000828 {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000829 Out << '(';
Reid Spencer1628cec2006-10-26 06:15:43 +0000830 bool NeedsClosingParens = printConstExprCast(CE);
831 printConstantWithCast(CE->getOperand(0), CE->getOpcode());
Chris Lattner29255922003-08-14 19:19:53 +0000832 switch (CE->getOpcode()) {
833 case Instruction::Add: Out << " + "; break;
834 case Instruction::Sub: Out << " - "; break;
835 case Instruction::Mul: Out << " * "; break;
Reid Spencer0a783f72006-11-02 01:53:59 +0000836 case Instruction::URem:
837 case Instruction::SRem:
838 case Instruction::FRem: Out << " % "; break;
Reid Spencer1628cec2006-10-26 06:15:43 +0000839 case Instruction::UDiv:
840 case Instruction::SDiv:
841 case Instruction::FDiv: Out << " / "; break;
Chris Lattnerf376e5e2004-12-29 04:00:09 +0000842 case Instruction::And: Out << " & "; break;
843 case Instruction::Or: Out << " | "; break;
844 case Instruction::Xor: Out << " ^ "; break;
Brian Gaeke0415b6c2003-11-22 05:02:56 +0000845 case Instruction::Shl: Out << " << "; break;
Reid Spencer3822ff52006-11-08 06:47:33 +0000846 case Instruction::LShr:
847 case Instruction::AShr: Out << " >> "; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000848 case Instruction::ICmp:
849 switch (CE->getPredicate()) {
850 case ICmpInst::ICMP_EQ: Out << " == "; break;
851 case ICmpInst::ICMP_NE: Out << " != "; break;
852 case ICmpInst::ICMP_SLT:
853 case ICmpInst::ICMP_ULT: Out << " < "; break;
854 case ICmpInst::ICMP_SLE:
855 case ICmpInst::ICMP_ULE: Out << " <= "; break;
856 case ICmpInst::ICMP_SGT:
857 case ICmpInst::ICMP_UGT: Out << " > "; break;
858 case ICmpInst::ICMP_SGE:
859 case ICmpInst::ICMP_UGE: Out << " >= "; break;
860 default: assert(0 && "Illegal ICmp predicate");
861 }
862 break;
Chris Lattner29255922003-08-14 19:19:53 +0000863 default: assert(0 && "Illegal opcode here!");
864 }
Reid Spencer1628cec2006-10-26 06:15:43 +0000865 printConstantWithCast(CE->getOperand(1), CE->getOpcode());
866 if (NeedsClosingParens)
867 Out << "))";
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000868 Out << ')';
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000869 return;
Reid Spencer72ddc212006-10-26 06:17:40 +0000870 }
Reid Spencerb801a272007-01-08 06:58:32 +0000871 case Instruction::FCmp: {
872 Out << '(';
873 bool NeedsClosingParens = printConstExprCast(CE);
874 if (CE->getPredicate() == FCmpInst::FCMP_FALSE)
875 Out << "0";
876 else if (CE->getPredicate() == FCmpInst::FCMP_TRUE)
877 Out << "1";
878 else {
879 const char* op = 0;
880 switch (CE->getPredicate()) {
881 default: assert(0 && "Illegal FCmp predicate");
882 case FCmpInst::FCMP_ORD: op = "ord"; break;
883 case FCmpInst::FCMP_UNO: op = "uno"; break;
884 case FCmpInst::FCMP_UEQ: op = "ueq"; break;
885 case FCmpInst::FCMP_UNE: op = "une"; break;
886 case FCmpInst::FCMP_ULT: op = "ult"; break;
887 case FCmpInst::FCMP_ULE: op = "ule"; break;
888 case FCmpInst::FCMP_UGT: op = "ugt"; break;
889 case FCmpInst::FCMP_UGE: op = "uge"; break;
890 case FCmpInst::FCMP_OEQ: op = "oeq"; break;
891 case FCmpInst::FCMP_ONE: op = "one"; break;
892 case FCmpInst::FCMP_OLT: op = "olt"; break;
893 case FCmpInst::FCMP_OLE: op = "ole"; break;
894 case FCmpInst::FCMP_OGT: op = "ogt"; break;
895 case FCmpInst::FCMP_OGE: op = "oge"; break;
896 }
897 Out << "llvm_fcmp_" << op << "(";
898 printConstantWithCast(CE->getOperand(0), CE->getOpcode());
899 Out << ", ";
900 printConstantWithCast(CE->getOperand(1), CE->getOpcode());
901 Out << ")";
902 }
903 if (NeedsClosingParens)
904 Out << "))";
905 Out << ')';
Anton Korobeynikovdceadaf2007-12-21 23:33:44 +0000906 return;
Reid Spencerb801a272007-01-08 06:58:32 +0000907 }
Chris Lattner6d492922002-08-19 21:32:41 +0000908 default:
Bill Wendlingf5da1332006-12-07 22:21:48 +0000909 cerr << "CWriter Error: Unhandled constant expression: "
910 << *CE << "\n";
Chris Lattner6d492922002-08-19 21:32:41 +0000911 abort();
912 }
Chris Lattnera9d12c02004-10-16 18:12:13 +0000913 } else if (isa<UndefValue>(CPV) && CPV->getType()->isFirstClassType()) {
Chris Lattner665825e2004-10-17 17:48:59 +0000914 Out << "((";
Reid Spencere4d87aa2006-12-23 06:05:41 +0000915 printType(Out, CPV->getType()); // sign doesn't matter
Chris Lattnerd9a706e2008-03-02 08:14:45 +0000916 Out << ")/*UNDEF*/";
917 if (!isa<VectorType>(CPV->getType())) {
918 Out << "0)";
919 } else {
920 Out << "{})";
921 }
Chris Lattnera9d12c02004-10-16 18:12:13 +0000922 return;
Chris Lattner6d492922002-08-19 21:32:41 +0000923 }
924
Reid Spencerfbe7ae92007-01-08 08:00:00 +0000925 if (ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
926 const Type* Ty = CI->getType();
Reid Spencer4fe16d62007-01-11 18:21:29 +0000927 if (Ty == Type::Int1Ty)
Chris Lattnerc8b6d332008-03-02 03:16:38 +0000928 Out << (CI->getZExtValue() ? '1' : '0');
929 else if (Ty == Type::Int32Ty)
930 Out << CI->getZExtValue() << 'u';
931 else if (Ty->getPrimitiveSizeInBits() > 32)
932 Out << CI->getZExtValue() << "ull";
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000933 else {
934 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +0000935 printSimpleType(Out, Ty, false) << ')';
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000936 if (CI->isMinValue(true))
937 Out << CI->getZExtValue() << 'u';
938 else
939 Out << CI->getSExtValue();
Chris Lattnerc8b6d332008-03-02 03:16:38 +0000940 Out << ')';
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000941 }
Reid Spencerfbe7ae92007-01-08 08:00:00 +0000942 return;
943 }
944
945 switch (CPV->getType()->getTypeID()) {
Chris Lattner6d492922002-08-19 21:32:41 +0000946 case Type::FloatTyID:
Dale Johannesen53f0bc12007-09-17 00:38:27 +0000947 case Type::DoubleTyID:
948 case Type::X86_FP80TyID:
949 case Type::PPC_FP128TyID:
950 case Type::FP128TyID: {
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000951 ConstantFP *FPC = cast<ConstantFP>(CPV);
Chris Lattneredd8ce12003-05-03 03:14:35 +0000952 std::map<const ConstantFP*, unsigned>::iterator I = FPConstantMap.find(FPC);
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000953 if (I != FPConstantMap.end()) {
954 // Because of FP precision problems we must load from a stack allocated
955 // value that holds the value in hex.
Dale Johannesen53f0bc12007-09-17 00:38:27 +0000956 Out << "(*(" << (FPC->getType() == Type::FloatTy ? "float" :
957 FPC->getType() == Type::DoubleTy ? "double" :
958 "long double")
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000959 << "*)&FPConstant" << I->second << ')';
Chris Lattnerd1cf1b42002-09-20 23:26:33 +0000960 } else {
Dale Johannesen53f0bc12007-09-17 00:38:27 +0000961 assert(FPC->getType() == Type::FloatTy ||
962 FPC->getType() == Type::DoubleTy);
Dale Johannesen43421b32007-09-06 18:13:44 +0000963 double V = FPC->getType() == Type::FloatTy ?
964 FPC->getValueAPF().convertToFloat() :
965 FPC->getValueAPF().convertToDouble();
966 if (IsNAN(V)) {
Brian Gaeke043c0bb2004-07-21 03:15:26 +0000967 // The value is NaN
Misha Brukmand6a29a52005-04-20 16:05:03 +0000968
Dale Johannesen43421b32007-09-06 18:13:44 +0000969 // FIXME the actual NaN bits should be emitted.
Brian Gaeke8a702e82004-08-25 19:00:42 +0000970 // The prefix for a quiet NaN is 0x7FF8. For a signalling NaN,
971 // it's 0x7ff4.
972 const unsigned long QuietNaN = 0x7ff8UL;
Reid Spencer3ed469c2006-11-02 20:25:50 +0000973 //const unsigned long SignalNaN = 0x7ff4UL;
Brian Gaeke8a702e82004-08-25 19:00:42 +0000974
975 // We need to grab the first part of the FP #
Brian Gaeke8a702e82004-08-25 19:00:42 +0000976 char Buffer[100];
977
Dale Johannesen43421b32007-09-06 18:13:44 +0000978 uint64_t ll = DoubleToBits(V);
Reid Spencer2bc320d2006-05-31 22:26:11 +0000979 sprintf(Buffer, "0x%llx", static_cast<long long>(ll));
Brian Gaeke8a702e82004-08-25 19:00:42 +0000980
981 std::string Num(&Buffer[0], &Buffer[6]);
982 unsigned long Val = strtoul(Num.c_str(), 0, 16);
983
Brian Gaeke043c0bb2004-07-21 03:15:26 +0000984 if (FPC->getType() == Type::FloatTy)
Brian Gaeke8a702e82004-08-25 19:00:42 +0000985 Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "F(\""
986 << Buffer << "\") /*nan*/ ";
Brian Gaeke043c0bb2004-07-21 03:15:26 +0000987 else
Brian Gaeke8a702e82004-08-25 19:00:42 +0000988 Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "(\""
989 << Buffer << "\") /*nan*/ ";
Dale Johannesen43421b32007-09-06 18:13:44 +0000990 } else if (IsInf(V)) {
Brian Gaeke043c0bb2004-07-21 03:15:26 +0000991 // The value is Inf
Dale Johannesen43421b32007-09-06 18:13:44 +0000992 if (V < 0) Out << '-';
Brian Gaeke8a702e82004-08-25 19:00:42 +0000993 Out << "LLVM_INF" << (FPC->getType() == Type::FloatTy ? "F" : "")
994 << " /*inf*/ ";
Brian Gaeke043c0bb2004-07-21 03:15:26 +0000995 } else {
Brian Gaeke07b52b32004-08-25 19:37:26 +0000996 std::string Num;
Reid Spencerbcf81242006-11-05 19:26:37 +0000997#if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
Brian Gaeke07b52b32004-08-25 19:37:26 +0000998 // Print out the constant as a floating point number.
999 char Buffer[100];
Dale Johannesen43421b32007-09-06 18:13:44 +00001000 sprintf(Buffer, "%a", V);
Brian Gaeke07b52b32004-08-25 19:37:26 +00001001 Num = Buffer;
1002#else
Dale Johannesen43421b32007-09-06 18:13:44 +00001003 Num = ftostr(FPC->getValueAPF());
Brian Gaeke07b52b32004-08-25 19:37:26 +00001004#endif
Dale Johannesen43421b32007-09-06 18:13:44 +00001005 Out << Num;
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001006 }
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001007 }
1008 break;
1009 }
Chris Lattner6d492922002-08-19 21:32:41 +00001010
1011 case Type::ArrayTyID:
Chris Lattner939732a2008-03-02 05:46:57 +00001012 if (ConstantArray *CA = dyn_cast<ConstantArray>(CPV)) {
Chris Lattner0a3d4d92008-03-02 03:18:46 +00001013 printConstantArray(CA);
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001014 } else {
1015 assert(isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV));
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001016 const ArrayType *AT = cast<ArrayType>(CPV->getType());
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001017 Out << '{';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001018 if (AT->getNumElements()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001019 Out << ' ';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001020 Constant *CZ = Constant::getNullValue(AT->getElementType());
1021 printConstant(CZ);
1022 for (unsigned i = 1, e = AT->getNumElements(); i != e; ++i) {
1023 Out << ", ";
1024 printConstant(CZ);
1025 }
1026 }
1027 Out << " }";
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001028 }
Chris Lattner6d492922002-08-19 21:32:41 +00001029 break;
1030
Reid Spencer9d6565a2007-02-15 02:26:10 +00001031 case Type::VectorTyID:
Chris Lattner85feab62008-03-02 03:29:50 +00001032 // Use C99 compound expression literal initializer syntax.
1033 Out << "(";
1034 printType(Out, CPV->getType());
1035 Out << ")";
Chris Lattner939732a2008-03-02 05:46:57 +00001036 if (ConstantVector *CV = dyn_cast<ConstantVector>(CPV)) {
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001037 printConstantVector(CV);
1038 } else {
1039 assert(isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV));
1040 const VectorType *VT = cast<VectorType>(CPV->getType());
1041 Out << "{ ";
1042 Constant *CZ = Constant::getNullValue(VT->getElementType());
1043 printConstant(CZ);
Chris Lattner0a3d4d92008-03-02 03:18:46 +00001044 for (unsigned i = 1, e = VT->getNumElements(); i != e; ++i) {
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001045 Out << ", ";
Robert Bocchinob78e8382006-01-20 20:43:57 +00001046 printConstant(CZ);
Robert Bocchinob78e8382006-01-20 20:43:57 +00001047 }
1048 Out << " }";
Robert Bocchinob78e8382006-01-20 20:43:57 +00001049 }
1050 break;
1051
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001052 case Type::StructTyID:
Chris Lattnera9d12c02004-10-16 18:12:13 +00001053 if (isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV)) {
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001054 const StructType *ST = cast<StructType>(CPV->getType());
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001055 Out << '{';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001056 if (ST->getNumElements()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001057 Out << ' ';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001058 printConstant(Constant::getNullValue(ST->getElementType(0)));
1059 for (unsigned i = 1, e = ST->getNumElements(); i != e; ++i) {
1060 Out << ", ";
1061 printConstant(Constant::getNullValue(ST->getElementType(i)));
1062 }
Chris Lattner6d492922002-08-19 21:32:41 +00001063 }
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001064 Out << " }";
1065 } else {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001066 Out << '{';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001067 if (CPV->getNumOperands()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001068 Out << ' ';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001069 printConstant(cast<Constant>(CPV->getOperand(0)));
1070 for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
1071 Out << ", ";
1072 printConstant(cast<Constant>(CPV->getOperand(i)));
1073 }
1074 }
1075 Out << " }";
Chris Lattner6d492922002-08-19 21:32:41 +00001076 }
Chris Lattner6d492922002-08-19 21:32:41 +00001077 break;
Chris Lattner6d492922002-08-19 21:32:41 +00001078
1079 case Type::PointerTyID:
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001080 if (isa<ConstantPointerNull>(CPV)) {
Chris Lattnercf135cb2003-06-02 03:10:53 +00001081 Out << "((";
Reid Spencere4d87aa2006-12-23 06:05:41 +00001082 printType(Out, CPV->getType()); // sign doesn't matter
Chris Lattnercf135cb2003-06-02 03:10:53 +00001083 Out << ")/*NULL*/0)";
Chris Lattner6d492922002-08-19 21:32:41 +00001084 break;
Reid Spencer518310c2004-07-18 00:44:37 +00001085 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(CPV)) {
1086 writeOperand(GV);
Chris Lattner6d492922002-08-19 21:32:41 +00001087 break;
1088 }
1089 // FALL THROUGH
1090 default:
Bill Wendlingf5da1332006-12-07 22:21:48 +00001091 cerr << "Unknown constant type: " << *CPV << "\n";
Chris Lattner6d492922002-08-19 21:32:41 +00001092 abort();
1093 }
1094}
1095
Reid Spencer1628cec2006-10-26 06:15:43 +00001096// Some constant expressions need to be casted back to the original types
1097// because their operands were casted to the expected type. This function takes
1098// care of detecting that case and printing the cast for the ConstantExpr.
1099bool CWriter::printConstExprCast(const ConstantExpr* CE) {
Reid Spencer3822ff52006-11-08 06:47:33 +00001100 bool NeedsExplicitCast = false;
Reid Spencer3da59db2006-11-27 01:05:10 +00001101 const Type *Ty = CE->getOperand(0)->getType();
Reid Spencere4d87aa2006-12-23 06:05:41 +00001102 bool TypeIsSigned = false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001103 switch (CE->getOpcode()) {
Reid Spencer3822ff52006-11-08 06:47:33 +00001104 case Instruction::LShr:
Reid Spencer0a783f72006-11-02 01:53:59 +00001105 case Instruction::URem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001106 case Instruction::UDiv: NeedsExplicitCast = true; break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001107 case Instruction::AShr:
Reid Spencer0a783f72006-11-02 01:53:59 +00001108 case Instruction::SRem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001109 case Instruction::SDiv: NeedsExplicitCast = true; TypeIsSigned = true; break;
Reid Spencer3da59db2006-11-27 01:05:10 +00001110 case Instruction::SExt:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001111 Ty = CE->getType();
1112 NeedsExplicitCast = true;
1113 TypeIsSigned = true;
1114 break;
1115 case Instruction::ZExt:
Reid Spencer3da59db2006-11-27 01:05:10 +00001116 case Instruction::Trunc:
1117 case Instruction::FPTrunc:
1118 case Instruction::FPExt:
1119 case Instruction::UIToFP:
1120 case Instruction::SIToFP:
1121 case Instruction::FPToUI:
1122 case Instruction::FPToSI:
1123 case Instruction::PtrToInt:
1124 case Instruction::IntToPtr:
1125 case Instruction::BitCast:
1126 Ty = CE->getType();
1127 NeedsExplicitCast = true;
1128 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001129 default: break;
1130 }
Reid Spencer3822ff52006-11-08 06:47:33 +00001131 if (NeedsExplicitCast) {
Reid Spencer1628cec2006-10-26 06:15:43 +00001132 Out << "((";
Chris Lattner42a75512007-01-15 02:27:26 +00001133 if (Ty->isInteger() && Ty != Type::Int1Ty)
Reid Spencera54b7cb2007-01-12 07:05:14 +00001134 printSimpleType(Out, Ty, TypeIsSigned);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001135 else
Reid Spencer251f2142007-01-09 17:09:09 +00001136 printType(Out, Ty); // not integer, sign doesn't matter
Reid Spencer1628cec2006-10-26 06:15:43 +00001137 Out << ")(";
1138 }
Reid Spencer3822ff52006-11-08 06:47:33 +00001139 return NeedsExplicitCast;
Reid Spencer1628cec2006-10-26 06:15:43 +00001140}
1141
1142// Print a constant assuming that it is the operand for a given Opcode. The
1143// opcodes that care about sign need to cast their operands to the expected
1144// type before the operation proceeds. This function does the casting.
1145void CWriter::printConstantWithCast(Constant* CPV, unsigned Opcode) {
1146
1147 // Extract the operand's type, we'll need it.
1148 const Type* OpTy = CPV->getType();
1149
1150 // Indicate whether to do the cast or not.
1151 bool shouldCast = false;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001152 bool typeIsSigned = false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001153
1154 // Based on the Opcode for which this Constant is being written, determine
1155 // the new type to which the operand should be casted by setting the value
Reid Spencer3da59db2006-11-27 01:05:10 +00001156 // of OpTy. If we change OpTy, also set shouldCast to true so it gets
1157 // casted below.
Reid Spencer1628cec2006-10-26 06:15:43 +00001158 switch (Opcode) {
1159 default:
1160 // for most instructions, it doesn't matter
1161 break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001162 case Instruction::LShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001163 case Instruction::UDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +00001164 case Instruction::URem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001165 shouldCast = true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001166 break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001167 case Instruction::AShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001168 case Instruction::SDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +00001169 case Instruction::SRem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001170 shouldCast = true;
1171 typeIsSigned = true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001172 break;
1173 }
1174
Reid Spencer3da59db2006-11-27 01:05:10 +00001175 // Write out the casted constant if we should, otherwise just write the
Reid Spencer1628cec2006-10-26 06:15:43 +00001176 // operand.
1177 if (shouldCast) {
1178 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001179 printSimpleType(Out, OpTy, typeIsSigned);
Reid Spencer1628cec2006-10-26 06:15:43 +00001180 Out << ")";
1181 printConstant(CPV);
1182 Out << ")";
1183 } else
Reid Spencere4d87aa2006-12-23 06:05:41 +00001184 printConstant(CPV);
Reid Spencer1628cec2006-10-26 06:15:43 +00001185}
1186
Bill Wendling145aad02007-02-23 22:45:08 +00001187std::string CWriter::GetValueName(const Value *Operand) {
1188 std::string Name;
1189
1190 if (!isa<GlobalValue>(Operand) && Operand->getName() != "") {
1191 std::string VarName;
1192
1193 Name = Operand->getName();
1194 VarName.reserve(Name.capacity());
1195
1196 for (std::string::iterator I = Name.begin(), E = Name.end();
1197 I != E; ++I) {
1198 char ch = *I;
1199
1200 if (!((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') ||
Lauro Ramos Venancio1f4a8872008-02-28 20:26:04 +00001201 (ch >= '0' && ch <= '9') || ch == '_')) {
1202 char buffer[5];
1203 sprintf(buffer, "_%x_", ch);
1204 VarName += buffer;
1205 } else
Bill Wendling145aad02007-02-23 22:45:08 +00001206 VarName += ch;
1207 }
1208
1209 Name = "llvm_cbe_" + VarName;
1210 } else {
1211 Name = Mang->getValueName(Operand);
1212 }
1213
1214 return Name;
1215}
1216
Chris Lattner6d492922002-08-19 21:32:41 +00001217void CWriter::writeOperandInternal(Value *Operand) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001218 if (Instruction *I = dyn_cast<Instruction>(Operand))
Chris Lattnera8ab89e2003-06-17 04:39:14 +00001219 if (isInlinableInst(*I) && !isDirectAlloca(I)) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001220 // Should we inline this instruction to build a tree?
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001221 Out << '(';
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001222 visit(*I);
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001223 Out << ')';
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001224 return;
1225 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00001226
Reid Spencer518310c2004-07-18 00:44:37 +00001227 Constant* CPV = dyn_cast<Constant>(Operand);
Bill Wendling145aad02007-02-23 22:45:08 +00001228
1229 if (CPV && !isa<GlobalValue>(CPV))
Misha Brukmand6a29a52005-04-20 16:05:03 +00001230 printConstant(CPV);
Bill Wendling145aad02007-02-23 22:45:08 +00001231 else
1232 Out << GetValueName(Operand);
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001233}
1234
Andrew Lenharth29c277f2006-11-27 23:50:49 +00001235void CWriter::writeOperandRaw(Value *Operand) {
1236 Constant* CPV = dyn_cast<Constant>(Operand);
1237 if (CPV && !isa<GlobalValue>(CPV)) {
1238 printConstant(CPV);
1239 } else {
Bill Wendling145aad02007-02-23 22:45:08 +00001240 Out << GetValueName(Operand);
Andrew Lenharth29c277f2006-11-27 23:50:49 +00001241 }
1242}
1243
Chris Lattnerbb03efd2002-06-25 15:57:03 +00001244void CWriter::writeOperand(Value *Operand) {
Chris Lattnere05252b42008-03-02 08:07:24 +00001245 bool isAddressImplicit = isAddressExposed(Operand);
1246 if (isAddressImplicit)
Reid Spencer3da59db2006-11-27 01:05:10 +00001247 Out << "(&"; // Global variables are referenced as their addresses by llvm
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001248
1249 writeOperandInternal(Operand);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001250
Chris Lattnere05252b42008-03-02 08:07:24 +00001251 if (isAddressImplicit)
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001252 Out << ')';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001253}
1254
Reid Spencer1628cec2006-10-26 06:15:43 +00001255// Some instructions need to have their result value casted back to the
1256// original types because their operands were casted to the expected type.
1257// This function takes care of detecting that case and printing the cast
1258// for the Instruction.
1259bool CWriter::writeInstructionCast(const Instruction &I) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001260 const Type *Ty = I.getOperand(0)->getType();
Reid Spencer1628cec2006-10-26 06:15:43 +00001261 switch (I.getOpcode()) {
Reid Spencer3822ff52006-11-08 06:47:33 +00001262 case Instruction::LShr:
Reid Spencer0a783f72006-11-02 01:53:59 +00001263 case Instruction::URem:
Reid Spencer3da59db2006-11-27 01:05:10 +00001264 case Instruction::UDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001265 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001266 printSimpleType(Out, Ty, false);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001267 Out << ")(";
1268 return true;
Reid Spencer3822ff52006-11-08 06:47:33 +00001269 case Instruction::AShr:
Reid Spencer0a783f72006-11-02 01:53:59 +00001270 case Instruction::SRem:
Reid Spencer3da59db2006-11-27 01:05:10 +00001271 case Instruction::SDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001272 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001273 printSimpleType(Out, Ty, true);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001274 Out << ")(";
1275 return true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001276 default: break;
1277 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00001278 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001279}
1280
1281// Write the operand with a cast to another type based on the Opcode being used.
1282// This will be used in cases where an instruction has specific type
1283// requirements (usually signedness) for its operands.
1284void CWriter::writeOperandWithCast(Value* Operand, unsigned Opcode) {
1285
1286 // Extract the operand's type, we'll need it.
1287 const Type* OpTy = Operand->getType();
1288
1289 // Indicate whether to do the cast or not.
1290 bool shouldCast = false;
1291
Reid Spencere4d87aa2006-12-23 06:05:41 +00001292 // Indicate whether the cast should be to a signed type or not.
1293 bool castIsSigned = false;
1294
Reid Spencer1628cec2006-10-26 06:15:43 +00001295 // Based on the Opcode for which this Operand is being written, determine
1296 // the new type to which the operand should be casted by setting the value
1297 // of OpTy. If we change OpTy, also set shouldCast to true.
1298 switch (Opcode) {
1299 default:
1300 // for most instructions, it doesn't matter
1301 break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001302 case Instruction::LShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001303 case Instruction::UDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001304 case Instruction::URem: // Cast to unsigned first
1305 shouldCast = true;
1306 castIsSigned = false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001307 break;
Chris Lattner96b207c2007-09-22 20:16:48 +00001308 case Instruction::GetElementPtr:
Reid Spencer3822ff52006-11-08 06:47:33 +00001309 case Instruction::AShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001310 case Instruction::SDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001311 case Instruction::SRem: // Cast to signed first
1312 shouldCast = true;
1313 castIsSigned = true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001314 break;
1315 }
1316
1317 // Write out the casted operand if we should, otherwise just write the
1318 // operand.
1319 if (shouldCast) {
1320 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001321 printSimpleType(Out, OpTy, castIsSigned);
Reid Spencer1628cec2006-10-26 06:15:43 +00001322 Out << ")";
Chris Lattner72623362007-05-03 02:57:13 +00001323 writeOperand(Operand);
Reid Spencer1628cec2006-10-26 06:15:43 +00001324 Out << ")";
1325 } else
1326 writeOperand(Operand);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001327}
Reid Spencer1628cec2006-10-26 06:15:43 +00001328
Reid Spencere4d87aa2006-12-23 06:05:41 +00001329// Write the operand with a cast to another type based on the icmp predicate
1330// being used.
Chris Lattner5bda9e42007-09-15 06:51:03 +00001331void CWriter::writeOperandWithCast(Value* Operand, const ICmpInst &Cmp) {
1332 // This has to do a cast to ensure the operand has the right signedness.
1333 // Also, if the operand is a pointer, we make sure to cast to an integer when
1334 // doing the comparison both for signedness and so that the C compiler doesn't
1335 // optimize things like "p < NULL" to false (p may contain an integer value
1336 // f.e.).
1337 bool shouldCast = Cmp.isRelational();
Reid Spencere4d87aa2006-12-23 06:05:41 +00001338
1339 // Write out the casted operand if we should, otherwise just write the
1340 // operand.
Chris Lattner5bda9e42007-09-15 06:51:03 +00001341 if (!shouldCast) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001342 writeOperand(Operand);
Chris Lattner5bda9e42007-09-15 06:51:03 +00001343 return;
1344 }
1345
1346 // Should this be a signed comparison? If so, convert to signed.
1347 bool castIsSigned = Cmp.isSignedPredicate();
1348
1349 // If the operand was a pointer, convert to a large integer type.
1350 const Type* OpTy = Operand->getType();
1351 if (isa<PointerType>(OpTy))
1352 OpTy = TD->getIntPtrType();
1353
1354 Out << "((";
1355 printSimpleType(Out, OpTy, castIsSigned);
1356 Out << ")";
1357 writeOperand(Operand);
1358 Out << ")";
Reid Spencer1628cec2006-10-26 06:15:43 +00001359}
1360
Chris Lattner41488192003-06-28 17:15:12 +00001361// generateCompilerSpecificCode - This is where we add conditional compilation
1362// directives to cater to specific compilers as need be.
1363//
Chris Lattnerc59c1182003-11-16 22:06:14 +00001364static void generateCompilerSpecificCode(std::ostream& Out) {
Chris Lattner9a571ba2006-03-07 22:58:23 +00001365 // Alloca is hard to get, and we don't want to include stdlib.h here.
Chris Lattner41488192003-06-28 17:15:12 +00001366 Out << "/* get a declaration for alloca */\n"
Chris Lattnerd9477602006-06-02 18:54:01 +00001367 << "#if defined(__CYGWIN__) || defined(__MINGW32__)\n"
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00001368 << "#define alloca(x) __builtin_alloca((x))\n"
1369 << "#define _alloca(x) __builtin_alloca((x))\n"
Reid Spencera8411a62005-01-23 04:32:47 +00001370 << "#elif defined(__APPLE__)\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001371 << "extern void *__builtin_alloca(unsigned long);\n"
1372 << "#define alloca(x) __builtin_alloca(x)\n"
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00001373 << "#define longjmp _longjmp\n"
1374 << "#define setjmp _setjmp\n"
Brian Gaekece630052004-12-10 05:44:45 +00001375 << "#elif defined(__sun__)\n"
1376 << "#if defined(__sparcv9)\n"
1377 << "extern void *__builtin_alloca(unsigned long);\n"
1378 << "#else\n"
1379 << "extern void *__builtin_alloca(unsigned int);\n"
1380 << "#endif\n"
1381 << "#define alloca(x) __builtin_alloca(x)\n"
Chris Lattnerd3f6a8a2008-01-12 06:46:09 +00001382 << "#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)\n"
Chris Lattner60e66742004-10-06 04:21:52 +00001383 << "#define alloca(x) __builtin_alloca(x)\n"
Jeff Cohenab478952007-03-28 23:08:37 +00001384 << "#elif defined(_MSC_VER)\n"
Jeff Cohene2cd2a02007-03-29 17:42:21 +00001385 << "#define inline _inline\n"
Jeff Cohenab478952007-03-28 23:08:37 +00001386 << "#define alloca(x) _alloca(x)\n"
1387 << "#else\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001388 << "#include <alloca.h>\n"
1389 << "#endif\n\n";
Chris Lattner41488192003-06-28 17:15:12 +00001390
1391 // We output GCC specific attributes to preserve 'linkonce'ness on globals.
1392 // If we aren't being compiled with GCC, just drop these attributes.
Chris Lattner9bda5f52003-06-28 17:53:05 +00001393 Out << "#ifndef __GNUC__ /* Can only support \"linkonce\" vars with GCC */\n"
Chris Lattner41488192003-06-28 17:15:12 +00001394 << "#define __attribute__(X)\n"
Brian Gaeke27f7a712003-12-11 00:24:36 +00001395 << "#endif\n\n";
1396
Brian Gaeke27f7a712003-12-11 00:24:36 +00001397 // On Mac OS X, "external weak" is spelled "__attribute__((weak_import))".
1398 Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
1399 << "#define __EXTERNAL_WEAK__ __attribute__((weak_import))\n"
1400 << "#elif defined(__GNUC__)\n"
1401 << "#define __EXTERNAL_WEAK__ __attribute__((weak))\n"
1402 << "#else\n"
1403 << "#define __EXTERNAL_WEAK__\n"
1404 << "#endif\n\n";
Brian Gaeke27f7a712003-12-11 00:24:36 +00001405
1406 // For now, turn off the weak linkage attribute on Mac OS X. (See above.)
1407 Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
1408 << "#define __ATTRIBUTE_WEAK__\n"
1409 << "#elif defined(__GNUC__)\n"
1410 << "#define __ATTRIBUTE_WEAK__ __attribute__((weak))\n"
1411 << "#else\n"
1412 << "#define __ATTRIBUTE_WEAK__\n"
1413 << "#endif\n\n";
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001414
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001415 // Add hidden visibility support. FIXME: APPLE_CC?
1416 Out << "#if defined(__GNUC__)\n"
1417 << "#define __HIDDEN__ __attribute__((visibility(\"hidden\")))\n"
1418 << "#endif\n\n";
1419
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001420 // Define NaN and Inf as GCC builtins if using GCC, as 0 otherwise
1421 // From the GCC documentation:
Misha Brukmand6a29a52005-04-20 16:05:03 +00001422 //
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001423 // double __builtin_nan (const char *str)
1424 //
1425 // This is an implementation of the ISO C99 function nan.
1426 //
1427 // Since ISO C99 defines this function in terms of strtod, which we do
1428 // not implement, a description of the parsing is in order. The string is
1429 // parsed as by strtol; that is, the base is recognized by leading 0 or
1430 // 0x prefixes. The number parsed is placed in the significand such that
1431 // the least significant bit of the number is at the least significant
1432 // bit of the significand. The number is truncated to fit the significand
1433 // field provided. The significand is forced to be a quiet NaN.
1434 //
1435 // This function, if given a string literal, is evaluated early enough
1436 // that it is considered a compile-time constant.
1437 //
1438 // float __builtin_nanf (const char *str)
1439 //
1440 // Similar to __builtin_nan, except the return type is float.
1441 //
1442 // double __builtin_inf (void)
1443 //
1444 // Similar to __builtin_huge_val, except a warning is generated if the
1445 // target floating-point format does not support infinities. This
1446 // function is suitable for implementing the ISO C99 macro INFINITY.
1447 //
1448 // float __builtin_inff (void)
1449 //
1450 // Similar to __builtin_inf, except the return type is float.
1451 Out << "#ifdef __GNUC__\n"
Brian Gaeke8a702e82004-08-25 19:00:42 +00001452 << "#define LLVM_NAN(NanStr) __builtin_nan(NanStr) /* Double */\n"
1453 << "#define LLVM_NANF(NanStr) __builtin_nanf(NanStr) /* Float */\n"
1454 << "#define LLVM_NANS(NanStr) __builtin_nans(NanStr) /* Double */\n"
1455 << "#define LLVM_NANSF(NanStr) __builtin_nansf(NanStr) /* Float */\n"
1456 << "#define LLVM_INF __builtin_inf() /* Double */\n"
1457 << "#define LLVM_INFF __builtin_inff() /* Float */\n"
Chris Lattnerf9a05322006-02-13 22:22:42 +00001458 << "#define LLVM_PREFETCH(addr,rw,locality) "
1459 "__builtin_prefetch(addr,rw,locality)\n"
Chris Lattner9a571ba2006-03-07 22:58:23 +00001460 << "#define __ATTRIBUTE_CTOR__ __attribute__((constructor))\n"
1461 << "#define __ATTRIBUTE_DTOR__ __attribute__((destructor))\n"
Chris Lattnerdacbe7b2006-07-28 20:58:47 +00001462 << "#define LLVM_ASM __asm__\n"
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001463 << "#else\n"
Brian Gaeke8a702e82004-08-25 19:00:42 +00001464 << "#define LLVM_NAN(NanStr) ((double)0.0) /* Double */\n"
1465 << "#define LLVM_NANF(NanStr) 0.0F /* Float */\n"
1466 << "#define LLVM_NANS(NanStr) ((double)0.0) /* Double */\n"
1467 << "#define LLVM_NANSF(NanStr) 0.0F /* Float */\n"
1468 << "#define LLVM_INF ((double)0.0) /* Double */\n"
1469 << "#define LLVM_INFF 0.0F /* Float */\n"
Chris Lattner50a8a172005-05-06 06:58:42 +00001470 << "#define LLVM_PREFETCH(addr,rw,locality) /* PREFETCH */\n"
Chris Lattner9a571ba2006-03-07 22:58:23 +00001471 << "#define __ATTRIBUTE_CTOR__\n"
1472 << "#define __ATTRIBUTE_DTOR__\n"
Chris Lattnerdacbe7b2006-07-28 20:58:47 +00001473 << "#define LLVM_ASM(X)\n"
Chris Lattner50a8a172005-05-06 06:58:42 +00001474 << "#endif\n\n";
Chris Lattner40c1b662007-05-13 22:19:27 +00001475
1476 Out << "#if __GNUC__ < 4 /* Old GCC's, or compilers not GCC */ \n"
1477 << "#define __builtin_stack_save() 0 /* not implemented */\n"
1478 << "#define __builtin_stack_restore(X) /* noop */\n"
1479 << "#endif\n\n";
Chris Lattner50a8a172005-05-06 06:58:42 +00001480
1481 // Output target-specific code that should be inserted into main.
1482 Out << "#define CODE_FOR_MAIN() /* Any target-specific code for main()*/\n";
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001483}
1484
Chris Lattner9a571ba2006-03-07 22:58:23 +00001485/// FindStaticTors - Given a static ctor/dtor list, unpack its contents into
1486/// the StaticTors set.
1487static void FindStaticTors(GlobalVariable *GV, std::set<Function*> &StaticTors){
1488 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
1489 if (!InitList) return;
1490
1491 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
1492 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
1493 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
1494
1495 if (CS->getOperand(1)->isNullValue())
1496 return; // Found a null terminator, exit printing.
1497 Constant *FP = CS->getOperand(1);
1498 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +00001499 if (CE->isCast())
Chris Lattner9a571ba2006-03-07 22:58:23 +00001500 FP = CE->getOperand(0);
1501 if (Function *F = dyn_cast<Function>(FP))
1502 StaticTors.insert(F);
1503 }
1504}
1505
1506enum SpecialGlobalClass {
1507 NotSpecial = 0,
1508 GlobalCtors, GlobalDtors,
1509 NotPrinted
1510};
1511
1512/// getGlobalVariableClass - If this is a global that is specially recognized
1513/// by LLVM, return a code that indicates how we should handle it.
1514static SpecialGlobalClass getGlobalVariableClass(const GlobalVariable *GV) {
1515 // If this is a global ctors/dtors list, handle it now.
1516 if (GV->hasAppendingLinkage() && GV->use_empty()) {
1517 if (GV->getName() == "llvm.global_ctors")
1518 return GlobalCtors;
1519 else if (GV->getName() == "llvm.global_dtors")
1520 return GlobalDtors;
1521 }
1522
1523 // Otherwise, it it is other metadata, don't print it. This catches things
1524 // like debug information.
1525 if (GV->getSection() == "llvm.metadata")
1526 return NotPrinted;
1527
1528 return NotSpecial;
1529}
1530
1531
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001532bool CWriter::doInitialization(Module &M) {
1533 // Initialize
1534 TheModule = &M;
Chris Lattnerc2421432004-05-09 04:30:20 +00001535
Reid Spencer519e2392007-01-29 17:51:02 +00001536 TD = new TargetData(&M);
1537 IL = new IntrinsicLowering(*TD);
1538 IL->AddPrototypes(M);
Misha Brukmand6a29a52005-04-20 16:05:03 +00001539
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001540 // Ensure that all structure types have names...
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001541 Mang = new Mangler(M);
Chris Lattnerba9c6432005-11-10 21:39:29 +00001542 Mang->markCharUnacceptable('.');
Chris Lattnerc59c1182003-11-16 22:06:14 +00001543
Chris Lattner9a571ba2006-03-07 22:58:23 +00001544 // Keep track of which functions are static ctors/dtors so they can have
1545 // an attribute added to their prototypes.
1546 std::set<Function*> StaticCtors, StaticDtors;
1547 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1548 I != E; ++I) {
1549 switch (getGlobalVariableClass(I)) {
1550 default: break;
1551 case GlobalCtors:
1552 FindStaticTors(I, StaticCtors);
1553 break;
1554 case GlobalDtors:
1555 FindStaticTors(I, StaticDtors);
1556 break;
1557 }
1558 }
1559
Chris Lattner16c7bb22002-05-09 02:28:59 +00001560 // get declaration for alloca
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001561 Out << "/* Provide Declarations */\n";
Chris Lattnerc59c1182003-11-16 22:06:14 +00001562 Out << "#include <stdarg.h>\n"; // Varargs support
1563 Out << "#include <setjmp.h>\n"; // Unwind support
Chris Lattner41488192003-06-28 17:15:12 +00001564 generateCompilerSpecificCode(Out);
Chris Lattnerc59c1182003-11-16 22:06:14 +00001565
Chris Lattnercf135cb2003-06-02 03:10:53 +00001566 // Provide a definition for `bool' if not compiling with a C++ compiler.
1567 Out << "\n"
Vikram S. Adve969c4ad2002-08-25 20:00:08 +00001568 << "#ifndef __cplusplus\ntypedef unsigned char bool;\n#endif\n"
Misha Brukmand6a29a52005-04-20 16:05:03 +00001569
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001570 << "\n\n/* Support for floating point constants */\n"
1571 << "typedef unsigned long long ConstantDoubleTy;\n"
Chris Lattnereb6f8c72002-11-07 19:43:59 +00001572 << "typedef unsigned int ConstantFloatTy;\n"
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001573 << "typedef struct { unsigned long long f1; unsigned short f2; "
1574 "unsigned short pad[3]; } ConstantFP80Ty;\n"
Dale Johannesen6e644732007-10-15 01:05:37 +00001575 // This is used for both kinds of 128-bit long double; meaning differs.
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001576 << "typedef struct { unsigned long long f1; unsigned long long f2; }"
1577 " ConstantFP128Ty;\n"
Chris Lattnera4d4a852002-08-19 21:48:40 +00001578 << "\n\n/* Global Declarations */\n";
1579
1580 // First output all the declarations for the program, because C requires
1581 // Functions & globals to be declared before they are used.
1582 //
Chris Lattner16c7bb22002-05-09 02:28:59 +00001583
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001584 // Loop over the symbol table, emitting all named constants...
Reid Spencer78d033e2007-01-06 07:24:44 +00001585 printModuleTypes(M.getTypeSymbolTable());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001586
Chris Lattnera4d4a852002-08-19 21:48:40 +00001587 // Global variable declarations...
Chris Lattnere4d5c442005-03-15 04:54:21 +00001588 if (!M.global_empty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001589 Out << "\n/* External Global Variable Declarations */\n";
Chris Lattnerf9a05322006-02-13 22:22:42 +00001590 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1591 I != E; ++I) {
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001592
1593 if (I->hasExternalLinkage() || I->hasExternalWeakLinkage())
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001594 Out << "extern ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001595 else if (I->hasDLLImportLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001596 Out << "__declspec(dllimport) ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001597 else
1598 continue; // Internal Global
1599
1600 // Thread Local Storage
1601 if (I->isThreadLocal())
1602 Out << "__thread ";
1603
1604 printType(Out, I->getType()->getElementType(), false, GetValueName(I));
1605
1606 if (I->hasExternalWeakLinkage())
1607 Out << " __EXTERNAL_WEAK__";
1608 Out << ";\n";
Chris Lattnerdeed7a52002-05-09 15:18:52 +00001609 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +00001610 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001611
Chris Lattnera4d4a852002-08-19 21:48:40 +00001612 // Function declarations
Chris Lattner9a571ba2006-03-07 22:58:23 +00001613 Out << "\n/* Function Declarations */\n";
Chris Lattner57da2522005-08-23 20:22:50 +00001614 Out << "double fmod(double, double);\n"; // Support for FP rem
1615 Out << "float fmodf(float, float);\n";
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001616 Out << "long double fmodl(long double, long double);\n";
Chris Lattner57da2522005-08-23 20:22:50 +00001617
Chris Lattner9a571ba2006-03-07 22:58:23 +00001618 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1619 // Don't print declarations for intrinsic functions.
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001620 if (!I->isIntrinsic() && I->getName() != "setjmp" &&
Reid Spencer2cb46e12006-10-22 09:58:21 +00001621 I->getName() != "longjmp" && I->getName() != "_setjmp") {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001622 if (I->hasExternalWeakLinkage())
1623 Out << "extern ";
Chris Lattner9a571ba2006-03-07 22:58:23 +00001624 printFunctionSignature(I, true);
1625 if (I->hasWeakLinkage() || I->hasLinkOnceLinkage())
1626 Out << " __ATTRIBUTE_WEAK__";
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001627 if (I->hasExternalWeakLinkage())
1628 Out << " __EXTERNAL_WEAK__";
Chris Lattner9a571ba2006-03-07 22:58:23 +00001629 if (StaticCtors.count(I))
1630 Out << " __ATTRIBUTE_CTOR__";
1631 if (StaticDtors.count(I))
1632 Out << " __ATTRIBUTE_DTOR__";
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001633 if (I->hasHiddenVisibility())
1634 Out << " __HIDDEN__";
Chris Lattnerdacbe7b2006-07-28 20:58:47 +00001635
1636 if (I->hasName() && I->getName()[0] == 1)
1637 Out << " LLVM_ASM(\"" << I->getName().c_str()+1 << "\")";
1638
Chris Lattner9a571ba2006-03-07 22:58:23 +00001639 Out << ";\n";
Chris Lattner4cda8352002-08-20 16:55:48 +00001640 }
Chris Lattnera4d4a852002-08-19 21:48:40 +00001641 }
1642
Joel Stanley54f60322003-06-25 04:52:09 +00001643 // Output the global variable declarations
Chris Lattnere4d5c442005-03-15 04:54:21 +00001644 if (!M.global_empty()) {
Joel Stanley54f60322003-06-25 04:52:09 +00001645 Out << "\n\n/* Global Variable Declarations */\n";
Chris Lattnerf9a05322006-02-13 22:22:42 +00001646 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1647 I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +00001648 if (!I->isDeclaration()) {
Chris Lattner9a571ba2006-03-07 22:58:23 +00001649 // Ignore special globals, such as debug info.
1650 if (getGlobalVariableClass(I))
1651 continue;
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001652
Chris Lattnercc16a8e2004-12-03 17:19:10 +00001653 if (I->hasInternalLinkage())
1654 Out << "static ";
1655 else
1656 Out << "extern ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001657
1658 // Thread Local Storage
1659 if (I->isThreadLocal())
1660 Out << "__thread ";
1661
Reid Spencer251f2142007-01-09 17:09:09 +00001662 printType(Out, I->getType()->getElementType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00001663 GetValueName(I));
Chris Lattner2580d4f2003-11-03 17:32:38 +00001664
1665 if (I->hasLinkOnceLinkage())
1666 Out << " __attribute__((common))";
1667 else if (I->hasWeakLinkage())
Brian Gaeke27f7a712003-12-11 00:24:36 +00001668 Out << " __ATTRIBUTE_WEAK__";
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001669 else if (I->hasExternalWeakLinkage())
1670 Out << " __EXTERNAL_WEAK__";
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001671 if (I->hasHiddenVisibility())
1672 Out << " __HIDDEN__";
Nick Hildenbrandt50de36a2002-10-28 19:05:12 +00001673 Out << ";\n";
1674 }
1675 }
1676
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001677 // Output the global variable definitions and contents...
Chris Lattnere4d5c442005-03-15 04:54:21 +00001678 if (!M.global_empty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001679 Out << "\n\n/* Global Variable Definitions and Initialization */\n";
Chris Lattnerf9a05322006-02-13 22:22:42 +00001680 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1681 I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +00001682 if (!I->isDeclaration()) {
Chris Lattner9a571ba2006-03-07 22:58:23 +00001683 // Ignore special globals, such as debug info.
1684 if (getGlobalVariableClass(I))
1685 continue;
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001686
Chris Lattnere8e035b2002-10-16 20:08:47 +00001687 if (I->hasInternalLinkage())
1688 Out << "static ";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001689 else if (I->hasDLLImportLinkage())
1690 Out << "__declspec(dllimport) ";
1691 else if (I->hasDLLExportLinkage())
1692 Out << "__declspec(dllexport) ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001693
1694 // Thread Local Storage
1695 if (I->isThreadLocal())
1696 Out << "__thread ";
1697
Reid Spencer251f2142007-01-09 17:09:09 +00001698 printType(Out, I->getType()->getElementType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00001699 GetValueName(I));
Chris Lattner76d9f1b2003-06-28 17:08:36 +00001700 if (I->hasLinkOnceLinkage())
1701 Out << " __attribute__((common))";
Chris Lattner72ac148d2003-10-16 18:29:00 +00001702 else if (I->hasWeakLinkage())
Brian Gaeke27f7a712003-12-11 00:24:36 +00001703 Out << " __ATTRIBUTE_WEAK__";
Chris Lattner5ea326a2003-11-03 17:35:00 +00001704
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001705 if (I->hasHiddenVisibility())
1706 Out << " __HIDDEN__";
1707
Chris Lattner5ea326a2003-11-03 17:35:00 +00001708 // If the initializer is not null, emit the initializer. If it is null,
1709 // we try to avoid emitting large amounts of zeros. The problem with
1710 // this, however, occurs when the variable has weak linkage. In this
1711 // case, the assembler will complain about the variable being both weak
1712 // and common, so we disable this optimization.
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001713 if (!I->getInitializer()->isNullValue()) {
Chris Lattner940b08d2003-06-06 07:10:24 +00001714 Out << " = " ;
1715 writeOperand(I->getInitializer());
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001716 } else if (I->hasWeakLinkage()) {
1717 // We have to specify an initializer, but it doesn't have to be
1718 // complete. If the value is an aggregate, print out { 0 }, and let
1719 // the compiler figure out the rest of the zeros.
1720 Out << " = " ;
1721 if (isa<StructType>(I->getInitializer()->getType()) ||
Robert Bocchinob78e8382006-01-20 20:43:57 +00001722 isa<ArrayType>(I->getInitializer()->getType()) ||
Reid Spencer9d6565a2007-02-15 02:26:10 +00001723 isa<VectorType>(I->getInitializer()->getType())) {
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001724 Out << "{ 0 }";
1725 } else {
1726 // Just print it out normally.
1727 writeOperand(I->getInitializer());
1728 }
Chris Lattner940b08d2003-06-06 07:10:24 +00001729 }
Chris Lattnere8e035b2002-10-16 20:08:47 +00001730 Out << ";\n";
Chris Lattnera4d4a852002-08-19 21:48:40 +00001731 }
Chris Lattnera4d4a852002-08-19 21:48:40 +00001732 }
1733
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001734 if (!M.empty())
Chris Lattnera4d4a852002-08-19 21:48:40 +00001735 Out << "\n\n/* Function Bodies */\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001736
1737 // Emit some helper functions for dealing with FCMP instruction's
1738 // predicates
1739 Out << "static inline int llvm_fcmp_ord(double X, double Y) { ";
1740 Out << "return X == X && Y == Y; }\n";
1741 Out << "static inline int llvm_fcmp_uno(double X, double Y) { ";
1742 Out << "return X != X || Y != Y; }\n";
1743 Out << "static inline int llvm_fcmp_ueq(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001744 Out << "return X == Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001745 Out << "static inline int llvm_fcmp_une(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001746 Out << "return X != Y; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001747 Out << "static inline int llvm_fcmp_ult(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001748 Out << "return X < Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001749 Out << "static inline int llvm_fcmp_ugt(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001750 Out << "return X > Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001751 Out << "static inline int llvm_fcmp_ule(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001752 Out << "return X <= Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001753 Out << "static inline int llvm_fcmp_uge(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001754 Out << "return X >= Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001755 Out << "static inline int llvm_fcmp_oeq(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001756 Out << "return X == Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001757 Out << "static inline int llvm_fcmp_one(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001758 Out << "return X != Y && llvm_fcmp_ord(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001759 Out << "static inline int llvm_fcmp_olt(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001760 Out << "return X < Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001761 Out << "static inline int llvm_fcmp_ogt(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001762 Out << "return X > Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001763 Out << "static inline int llvm_fcmp_ole(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001764 Out << "return X <= Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001765 Out << "static inline int llvm_fcmp_oge(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001766 Out << "return X >= Y ; }\n";
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001767 return false;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001768}
1769
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001770
Chris Lattner9860e772003-10-12 04:36:29 +00001771/// Output all floating point constants that cannot be printed accurately...
Chris Lattner68758072004-05-09 06:20:51 +00001772void CWriter::printFloatingPointConstants(Function &F) {
Chris Lattner9860e772003-10-12 04:36:29 +00001773 // Scan the module for floating point constants. If any FP constant is used
1774 // in the function, we want to redirect it here so that we do not depend on
1775 // the precision of the printed form, unless the printed form preserves
1776 // precision.
1777 //
Chris Lattner68758072004-05-09 06:20:51 +00001778 static unsigned FPCounter = 0;
1779 for (constant_iterator I = constant_begin(&F), E = constant_end(&F);
1780 I != E; ++I)
1781 if (const ConstantFP *FPC = dyn_cast<ConstantFP>(*I))
1782 if (!isFPCSafeToPrint(FPC) && // Do not put in FPConstantMap if safe.
1783 !FPConstantMap.count(FPC)) {
Chris Lattner68758072004-05-09 06:20:51 +00001784 FPConstantMap[FPC] = FPCounter; // Number the FP constants
Misha Brukmand6a29a52005-04-20 16:05:03 +00001785
Chris Lattner68758072004-05-09 06:20:51 +00001786 if (FPC->getType() == Type::DoubleTy) {
Dale Johannesen43421b32007-09-06 18:13:44 +00001787 double Val = FPC->getValueAPF().convertToDouble();
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001788 uint64_t i = FPC->getValueAPF().convertToAPInt().getZExtValue();
Chris Lattner68758072004-05-09 06:20:51 +00001789 Out << "static const ConstantDoubleTy FPConstant" << FPCounter++
Dale Johannesen3f6eb742007-09-11 18:32:33 +00001790 << " = 0x" << std::hex << i << std::dec
Chris Lattner68758072004-05-09 06:20:51 +00001791 << "ULL; /* " << Val << " */\n";
1792 } else if (FPC->getType() == Type::FloatTy) {
Dale Johannesen43421b32007-09-06 18:13:44 +00001793 float Val = FPC->getValueAPF().convertToFloat();
Dale Johannesen9d5f4562007-09-12 03:30:33 +00001794 uint32_t i = (uint32_t)FPC->getValueAPF().convertToAPInt().
1795 getZExtValue();
Chris Lattner68758072004-05-09 06:20:51 +00001796 Out << "static const ConstantFloatTy FPConstant" << FPCounter++
Dale Johannesen3f6eb742007-09-11 18:32:33 +00001797 << " = 0x" << std::hex << i << std::dec
Chris Lattner68758072004-05-09 06:20:51 +00001798 << "U; /* " << Val << " */\n";
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001799 } else if (FPC->getType() == Type::X86_FP80Ty) {
Dale Johannesen693717f2007-09-26 23:20:33 +00001800 // api needed to prevent premature destruction
1801 APInt api = FPC->getValueAPF().convertToAPInt();
1802 const uint64_t *p = api.getRawData();
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001803 Out << "static const ConstantFP80Ty FPConstant" << FPCounter++
1804 << " = { 0x" << std::hex
1805 << ((uint16_t)p[1] | (p[0] & 0xffffffffffffLL)<<16)
1806 << ", 0x" << (uint16_t)(p[0] >> 48) << ",0,0,0"
1807 << "}; /* Long double constant */\n" << std::dec;
Dale Johannesen6e644732007-10-15 01:05:37 +00001808 } else if (FPC->getType() == Type::PPC_FP128Ty) {
1809 APInt api = FPC->getValueAPF().convertToAPInt();
1810 const uint64_t *p = api.getRawData();
1811 Out << "static const ConstantFP128Ty FPConstant" << FPCounter++
1812 << " = { 0x" << std::hex
1813 << p[0] << ", 0x" << p[1]
1814 << "}; /* Long double constant */\n" << std::dec;
1815
Chris Lattner68758072004-05-09 06:20:51 +00001816 } else
1817 assert(0 && "Unknown float type!");
1818 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00001819
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001820 Out << '\n';
Chris Lattner68758072004-05-09 06:20:51 +00001821}
Chris Lattner9860e772003-10-12 04:36:29 +00001822
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001823
Chris Lattner2db41cd2002-09-20 15:12:13 +00001824/// printSymbolTable - Run through symbol table looking for type names. If a
Robert Bocchinob78e8382006-01-20 20:43:57 +00001825/// type name is found, emit its declaration...
Chris Lattnera4c047e2002-09-20 14:56:54 +00001826///
Reid Spencer78d033e2007-01-06 07:24:44 +00001827void CWriter::printModuleTypes(const TypeSymbolTable &TST) {
Reid Spencer555a0b12006-12-11 20:39:15 +00001828 Out << "/* Helper union for bitcasts */\n";
1829 Out << "typedef union {\n";
Reid Spencer47857812006-12-31 05:55:36 +00001830 Out << " unsigned int Int32;\n";
1831 Out << " unsigned long long Int64;\n";
Reid Spencer22b36fb2006-12-12 00:11:08 +00001832 Out << " float Float;\n";
1833 Out << " double Double;\n";
Reid Spencer555a0b12006-12-11 20:39:15 +00001834 Out << "} llvmBitCastUnion;\n";
1835
Chris Lattnerb15fde22005-03-06 02:28:23 +00001836 // We are only interested in the type plane of the symbol table.
Reid Spencer78d033e2007-01-06 07:24:44 +00001837 TypeSymbolTable::const_iterator I = TST.begin();
1838 TypeSymbolTable::const_iterator End = TST.end();
Chris Lattnerb15fde22005-03-06 02:28:23 +00001839
1840 // If there are no type names, exit early.
1841 if (I == End) return;
Misha Brukmand6a29a52005-04-20 16:05:03 +00001842
Chris Lattner58d04d42002-09-20 15:18:30 +00001843 // Print out forward declarations for structure types before anything else!
1844 Out << "/* Structure forward decls */\n";
Chris Lattnera80cc932007-01-16 18:02:45 +00001845 for (; I != End; ++I) {
1846 std::string Name = "struct l_" + Mang->makeNameProper(I->first);
1847 Out << Name << ";\n";
1848 TypeNames.insert(std::make_pair(I->second, Name));
1849 }
Chris Lattner58d04d42002-09-20 15:18:30 +00001850
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001851 Out << '\n';
Chris Lattner58d04d42002-09-20 15:18:30 +00001852
Chris Lattner19e8b0c2007-01-16 07:22:23 +00001853 // Now we can print out typedefs. Above, we guaranteed that this can only be
Chris Lattnera80cc932007-01-16 18:02:45 +00001854 // for struct or opaque types.
Chris Lattner58d04d42002-09-20 15:18:30 +00001855 Out << "/* Typedefs */\n";
Reid Spencer78d033e2007-01-06 07:24:44 +00001856 for (I = TST.begin(); I != End; ++I) {
Chris Lattner36c975c2005-11-10 18:53:25 +00001857 std::string Name = "l_" + Mang->makeNameProper(I->first);
Chris Lattner68758072004-05-09 06:20:51 +00001858 Out << "typedef ";
Chris Lattnera80cc932007-01-16 18:02:45 +00001859 printType(Out, I->second, false, Name);
Chris Lattner68758072004-05-09 06:20:51 +00001860 Out << ";\n";
1861 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00001862
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001863 Out << '\n';
Chris Lattner3ef6dc72002-05-09 14:40:11 +00001864
Chris Lattner2c601a72002-09-20 15:05:40 +00001865 // Keep track of which structures have been printed so far...
1866 std::set<const StructType *> StructPrinted;
1867
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00001868 // Loop over all structures then push them into the stack so they are
1869 // printed in the correct order.
Chris Lattner2db41cd2002-09-20 15:12:13 +00001870 //
Chris Lattner58d04d42002-09-20 15:18:30 +00001871 Out << "/* Structure contents */\n";
Reid Spencer78d033e2007-01-06 07:24:44 +00001872 for (I = TST.begin(); I != End; ++I)
Chris Lattner2db41cd2002-09-20 15:12:13 +00001873 if (const StructType *STy = dyn_cast<StructType>(I->second))
Chris Lattnerfa395ec2003-11-02 01:29:27 +00001874 // Only print out used types!
Chris Lattner68758072004-05-09 06:20:51 +00001875 printContainedStructs(STy, StructPrinted);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001876}
1877
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00001878// Push the struct onto the stack and recursively push all structs
1879// this one depends on.
Robert Bocchinob78e8382006-01-20 20:43:57 +00001880//
Reid Spencerac9dcb92007-02-15 03:39:18 +00001881// TODO: Make this work properly with vector types
Robert Bocchinob78e8382006-01-20 20:43:57 +00001882//
Chris Lattner2c601a72002-09-20 15:05:40 +00001883void CWriter::printContainedStructs(const Type *Ty,
1884 std::set<const StructType*> &StructPrinted){
Chris Lattner14d9b202006-01-20 18:57:03 +00001885 // Don't walk through pointers.
Chris Lattner42a75512007-01-15 02:27:26 +00001886 if (isa<PointerType>(Ty) || Ty->isPrimitiveType() || Ty->isInteger()) return;
Chris Lattner14d9b202006-01-20 18:57:03 +00001887
1888 // Print all contained types first.
1889 for (Type::subtype_iterator I = Ty->subtype_begin(),
1890 E = Ty->subtype_end(); I != E; ++I)
1891 printContainedStructs(*I, StructPrinted);
1892
Misha Brukmanac25de32003-07-09 17:33:50 +00001893 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Chris Lattner14d9b202006-01-20 18:57:03 +00001894 // Check to see if we have already printed this struct.
1895 if (StructPrinted.insert(STy).second) {
1896 // Print structure type out.
Misha Brukmand6a29a52005-04-20 16:05:03 +00001897 std::string Name = TypeNames[STy];
Reid Spencer251f2142007-01-09 17:09:09 +00001898 printType(Out, STy, false, Name, true);
Chris Lattner58d04d42002-09-20 15:18:30 +00001899 Out << ";\n\n";
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00001900 }
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00001901 }
1902}
1903
Chris Lattner4cda8352002-08-20 16:55:48 +00001904void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001905 /// isStructReturn - Should this function actually return a struct by-value?
Devang Patel41e23972008-03-03 21:46:28 +00001906 bool isStructReturn = F->hasStructRetAttr();
Chris Lattner0c54d892006-05-23 23:39:48 +00001907
Joel Stanley54f60322003-06-25 04:52:09 +00001908 if (F->hasInternalLinkage()) Out << "static ";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001909 if (F->hasDLLImportLinkage()) Out << "__declspec(dllimport) ";
1910 if (F->hasDLLExportLinkage()) Out << "__declspec(dllexport) ";
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00001911 switch (F->getCallingConv()) {
1912 case CallingConv::X86_StdCall:
1913 Out << "__stdcall ";
1914 break;
1915 case CallingConv::X86_FastCall:
1916 Out << "__fastcall ";
1917 break;
1918 }
1919
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001920 // Loop over the arguments, printing them...
Chris Lattner16c7bb22002-05-09 02:28:59 +00001921 const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
Chris Lattner58d74912008-03-12 17:45:29 +00001922 const PAListPtr &PAL = F->getParamAttrs();
Misha Brukmand6a29a52005-04-20 16:05:03 +00001923
1924 std::stringstream FunctionInnards;
1925
Nick Hildenbrandt98502372002-11-18 20:55:50 +00001926 // Print out the name...
Bill Wendling145aad02007-02-23 22:45:08 +00001927 FunctionInnards << GetValueName(F) << '(';
Misha Brukmand6a29a52005-04-20 16:05:03 +00001928
Chris Lattner0c54d892006-05-23 23:39:48 +00001929 bool PrintedArg = false;
Reid Spencer5cbf9852007-01-30 20:08:39 +00001930 if (!F->isDeclaration()) {
Chris Lattnere4d5c442005-03-15 04:54:21 +00001931 if (!F->arg_empty()) {
Chris Lattner0c54d892006-05-23 23:39:48 +00001932 Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Evan Cheng681d2b82008-01-11 03:07:46 +00001933 unsigned Idx = 1;
Chris Lattner0c54d892006-05-23 23:39:48 +00001934
1935 // If this is a struct-return function, don't print the hidden
1936 // struct-return argument.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001937 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00001938 assert(I != E && "Invalid struct return function!");
1939 ++I;
Evan Cheng681d2b82008-01-11 03:07:46 +00001940 ++Idx;
Chris Lattner0c54d892006-05-23 23:39:48 +00001941 }
1942
Chris Lattneredd8ce12003-05-03 03:14:35 +00001943 std::string ArgName;
Chris Lattner0c54d892006-05-23 23:39:48 +00001944 for (; I != E; ++I) {
1945 if (PrintedArg) FunctionInnards << ", ";
Chris Lattner4cda8352002-08-20 16:55:48 +00001946 if (I->hasName() || !Prototype)
Bill Wendling145aad02007-02-23 22:45:08 +00001947 ArgName = GetValueName(I);
Misha Brukmand6a29a52005-04-20 16:05:03 +00001948 else
Chris Lattner4cda8352002-08-20 16:55:48 +00001949 ArgName = "";
Evan Cheng681d2b82008-01-11 03:07:46 +00001950 const Type *ArgTy = I->getType();
Chris Lattner58d74912008-03-12 17:45:29 +00001951 if (PAL.paramHasAttr(Idx, ParamAttr::ByVal)) {
Evan Cheng588c6f82008-01-11 09:12:49 +00001952 ArgTy = cast<PointerType>(ArgTy)->getElementType();
Chris Lattnere05252b42008-03-02 08:07:24 +00001953 ByValParams.insert(I);
Evan Cheng588c6f82008-01-11 09:12:49 +00001954 }
Evan Cheng681d2b82008-01-11 03:07:46 +00001955 printType(FunctionInnards, ArgTy,
Chris Lattner58d74912008-03-12 17:45:29 +00001956 /*isSigned=*/PAL.paramHasAttr(Idx, ParamAttr::SExt),
Reid Spencer0ae96932007-01-07 03:24:48 +00001957 ArgName);
Chris Lattner0c54d892006-05-23 23:39:48 +00001958 PrintedArg = true;
Reid Spencer0ae96932007-01-07 03:24:48 +00001959 ++Idx;
Chris Lattnerdeed7a52002-05-09 15:18:52 +00001960 }
1961 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001962 } else {
Chris Lattner0c54d892006-05-23 23:39:48 +00001963 // Loop over the arguments, printing them.
1964 FunctionType::param_iterator I = FT->param_begin(), E = FT->param_end();
Evan Cheng3d794782008-01-11 23:10:11 +00001965 unsigned Idx = 1;
Chris Lattner0c54d892006-05-23 23:39:48 +00001966
1967 // If this is a struct-return function, don't print the hidden
1968 // struct-return argument.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001969 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00001970 assert(I != E && "Invalid struct return function!");
1971 ++I;
Evan Cheng3d794782008-01-11 23:10:11 +00001972 ++Idx;
Chris Lattner0c54d892006-05-23 23:39:48 +00001973 }
1974
1975 for (; I != E; ++I) {
1976 if (PrintedArg) FunctionInnards << ", ";
Evan Cheng3d794782008-01-11 23:10:11 +00001977 const Type *ArgTy = *I;
Chris Lattner58d74912008-03-12 17:45:29 +00001978 if (PAL.paramHasAttr(Idx, ParamAttr::ByVal)) {
Evan Cheng3d794782008-01-11 23:10:11 +00001979 assert(isa<PointerType>(ArgTy));
1980 ArgTy = cast<PointerType>(ArgTy)->getElementType();
1981 }
1982 printType(FunctionInnards, ArgTy,
Chris Lattner58d74912008-03-12 17:45:29 +00001983 /*isSigned=*/PAL.paramHasAttr(Idx, ParamAttr::SExt));
Chris Lattner0c54d892006-05-23 23:39:48 +00001984 PrintedArg = true;
Reid Spencer0ae96932007-01-07 03:24:48 +00001985 ++Idx;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001986 }
1987 }
1988
Chris Lattner1f8c4a12002-09-20 22:32:30 +00001989 // Finish printing arguments... if this is a vararg function, print the ...,
1990 // unless there are no known types, in which case, we just emit ().
1991 //
Chris Lattner0c54d892006-05-23 23:39:48 +00001992 if (FT->isVarArg() && PrintedArg) {
1993 if (PrintedArg) FunctionInnards << ", ";
Joel Stanley54f60322003-06-25 04:52:09 +00001994 FunctionInnards << "..."; // Output varargs portion of signature!
Chris Lattner0c54d892006-05-23 23:39:48 +00001995 } else if (!FT->isVarArg() && !PrintedArg) {
Chris Lattner4f7e1732003-11-26 00:09:17 +00001996 FunctionInnards << "void"; // ret() -> ret(void) in C.
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001997 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001998 FunctionInnards << ')';
Chris Lattner0c54d892006-05-23 23:39:48 +00001999
2000 // Get the return tpe for the function.
2001 const Type *RetTy;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002002 if (!isStructReturn)
Chris Lattner0c54d892006-05-23 23:39:48 +00002003 RetTy = F->getReturnType();
2004 else {
2005 // If this is a struct-return function, print the struct-return type.
2006 RetTy = cast<PointerType>(FT->getParamType(0))->getElementType();
2007 }
2008
2009 // Print out the return type and the signature built above.
Reid Spencer30f9e27f2007-01-09 06:38:06 +00002010 printType(Out, RetTy,
Chris Lattner58d74912008-03-12 17:45:29 +00002011 /*isSigned=*/PAL.paramHasAttr(0, ParamAttr::SExt),
Reid Spencer0ae96932007-01-07 03:24:48 +00002012 FunctionInnards.str());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002013}
2014
Reid Spencer22586642006-12-17 20:24:50 +00002015static inline bool isFPIntBitCast(const Instruction &I) {
2016 if (!isa<BitCastInst>(I))
2017 return false;
2018 const Type *SrcTy = I.getOperand(0)->getType();
2019 const Type *DstTy = I.getType();
Chris Lattner42a75512007-01-15 02:27:26 +00002020 return (SrcTy->isFloatingPoint() && DstTy->isInteger()) ||
2021 (DstTy->isFloatingPoint() && SrcTy->isInteger());
Reid Spencer22586642006-12-17 20:24:50 +00002022}
2023
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002024void CWriter::printFunction(Function &F) {
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002025 /// isStructReturn - Should this function actually return a struct by-value?
Devang Patel41e23972008-03-03 21:46:28 +00002026 bool isStructReturn = F.hasStructRetAttr();
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002027
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002028 printFunctionSignature(&F, false);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002029 Out << " {\n";
Chris Lattner0c54d892006-05-23 23:39:48 +00002030
2031 // If this is a struct return function, handle the result with magic.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002032 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002033 const Type *StructTy =
2034 cast<PointerType>(F.arg_begin()->getType())->getElementType();
2035 Out << " ";
Reid Spencer251f2142007-01-09 17:09:09 +00002036 printType(Out, StructTy, false, "StructReturn");
Chris Lattner0c54d892006-05-23 23:39:48 +00002037 Out << "; /* Struct return temporary */\n";
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002038
Chris Lattner0c54d892006-05-23 23:39:48 +00002039 Out << " ";
Reid Spencer251f2142007-01-09 17:09:09 +00002040 printType(Out, F.arg_begin()->getType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00002041 GetValueName(F.arg_begin()));
Chris Lattner0c54d892006-05-23 23:39:48 +00002042 Out << " = &StructReturn;\n";
2043 }
2044
2045 bool PrintedVar = false;
2046
Chris Lattner497e19a2002-05-09 20:39:03 +00002047 // print local variable information for the function
Reid Spencer941cfda2006-12-17 18:50:51 +00002048 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ++I) {
Chris Lattner6ffe5512004-04-27 15:13:33 +00002049 if (const AllocaInst *AI = isDirectAlloca(&*I)) {
Chris Lattnera8ab89e2003-06-17 04:39:14 +00002050 Out << " ";
Bill Wendling145aad02007-02-23 22:45:08 +00002051 printType(Out, AI->getAllocatedType(), false, GetValueName(AI));
Misha Brukman41ce39c2005-01-31 06:19:57 +00002052 Out << "; /* Address-exposed local */\n";
Chris Lattner0c54d892006-05-23 23:39:48 +00002053 PrintedVar = true;
Chris Lattner6ffe5512004-04-27 15:13:33 +00002054 } else if (I->getType() != Type::VoidTy && !isInlinableInst(*I)) {
Chris Lattner16c7bb22002-05-09 02:28:59 +00002055 Out << " ";
Bill Wendling145aad02007-02-23 22:45:08 +00002056 printType(Out, I->getType(), false, GetValueName(&*I));
Chris Lattner16c7bb22002-05-09 02:28:59 +00002057 Out << ";\n";
Misha Brukmand6a29a52005-04-20 16:05:03 +00002058
Chris Lattner84e66652003-05-03 07:11:00 +00002059 if (isa<PHINode>(*I)) { // Print out PHI node temporaries as well...
2060 Out << " ";
Reid Spencer251f2142007-01-09 17:09:09 +00002061 printType(Out, I->getType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00002062 GetValueName(&*I)+"__PHI_TEMPORARY");
Chris Lattner84e66652003-05-03 07:11:00 +00002063 Out << ";\n";
2064 }
Chris Lattner0c54d892006-05-23 23:39:48 +00002065 PrintedVar = true;
Reid Spencer941cfda2006-12-17 18:50:51 +00002066 }
2067 // We need a temporary for the BitCast to use so it can pluck a value out
Reid Spencere4d87aa2006-12-23 06:05:41 +00002068 // of a union to do the BitCast. This is separate from the need for a
Reid Spencer941cfda2006-12-17 18:50:51 +00002069 // variable to hold the result of the BitCast.
Reid Spencer22586642006-12-17 20:24:50 +00002070 if (isFPIntBitCast(*I)) {
Bill Wendling145aad02007-02-23 22:45:08 +00002071 Out << " llvmBitCastUnion " << GetValueName(&*I)
Reid Spencer555a0b12006-12-11 20:39:15 +00002072 << "__BITCAST_TEMPORARY;\n";
Reid Spencer941cfda2006-12-17 18:50:51 +00002073 PrintedVar = true;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002074 }
Reid Spencer941cfda2006-12-17 18:50:51 +00002075 }
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00002076
Chris Lattner0c54d892006-05-23 23:39:48 +00002077 if (PrintedVar)
2078 Out << '\n';
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00002079
Chris Lattner395fd592004-12-13 21:52:52 +00002080 if (F.hasExternalLinkage() && F.getName() == "main")
Chris Lattner50a8a172005-05-06 06:58:42 +00002081 Out << " CODE_FOR_MAIN();\n";
Chris Lattner395fd592004-12-13 21:52:52 +00002082
Chris Lattner16c7bb22002-05-09 02:28:59 +00002083 // print the basic blocks
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002084 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
Chris Lattnercb3ad012004-05-09 20:41:32 +00002085 if (Loop *L = LI->getLoopFor(BB)) {
2086 if (L->getHeader() == BB && L->getParentLoop() == 0)
2087 printLoop(L);
2088 } else {
2089 printBasicBlock(BB);
Chris Lattnerd0c668c2002-05-09 21:18:38 +00002090 }
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002091 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00002092
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002093 Out << "}\n\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002094}
2095
Chris Lattnercb3ad012004-05-09 20:41:32 +00002096void CWriter::printLoop(Loop *L) {
2097 Out << " do { /* Syntactic loop '" << L->getHeader()->getName()
2098 << "' to make GCC happy */\n";
2099 for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) {
2100 BasicBlock *BB = L->getBlocks()[i];
2101 Loop *BBLoop = LI->getLoopFor(BB);
2102 if (BBLoop == L)
2103 printBasicBlock(BB);
2104 else if (BB == BBLoop->getHeader() && BBLoop->getParentLoop() == L)
Misha Brukmand6a29a52005-04-20 16:05:03 +00002105 printLoop(BBLoop);
Chris Lattnercb3ad012004-05-09 20:41:32 +00002106 }
2107 Out << " } while (1); /* end of syntactic loop '"
2108 << L->getHeader()->getName() << "' */\n";
2109}
2110
2111void CWriter::printBasicBlock(BasicBlock *BB) {
2112
2113 // Don't print the label for the basic block if there are no uses, or if
2114 // the only terminator use is the predecessor basic block's terminator.
2115 // We have to scan the use list because PHI nodes use basic blocks too but
2116 // do not require a label to be generated.
2117 //
2118 bool NeedsLabel = false;
2119 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
2120 if (isGotoCodeNecessary(*PI, BB)) {
2121 NeedsLabel = true;
2122 break;
2123 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00002124
Bill Wendling145aad02007-02-23 22:45:08 +00002125 if (NeedsLabel) Out << GetValueName(BB) << ":\n";
Misha Brukmand6a29a52005-04-20 16:05:03 +00002126
Chris Lattnercb3ad012004-05-09 20:41:32 +00002127 // Output all of the instructions in the basic block...
2128 for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E;
2129 ++II) {
2130 if (!isInlinableInst(*II) && !isDirectAlloca(II)) {
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002131 if (II->getType() != Type::VoidTy && !isInlineAsm(*II))
Chris Lattnercb3ad012004-05-09 20:41:32 +00002132 outputLValue(II);
2133 else
2134 Out << " ";
2135 visit(*II);
2136 Out << ";\n";
2137 }
2138 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00002139
Chris Lattnercb3ad012004-05-09 20:41:32 +00002140 // Don't emit prefix or suffix for the terminator...
2141 visit(*BB->getTerminator());
2142}
2143
2144
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002145// Specific Instruction type classes... note that all of the casts are
Misha Brukman5560c9d2003-08-18 14:43:39 +00002146// necessary because we use the instruction classes as opaque types...
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002147//
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002148void CWriter::visitReturnInst(ReturnInst &I) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002149 // If this is a struct return function, return the temporary struct.
Devang Patel41e23972008-03-03 21:46:28 +00002150 bool isStructReturn = I.getParent()->getParent()->hasStructRetAttr();
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002151
2152 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002153 Out << " return StructReturn;\n";
2154 return;
2155 }
2156
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002157 // Don't output a void return if this is the last basic block in the function
Misha Brukmand6a29a52005-04-20 16:05:03 +00002158 if (I.getNumOperands() == 0 &&
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002159 &*--I.getParent()->getParent()->end() == I.getParent() &&
2160 !I.getParent()->size() == 1) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002161 return;
Chris Lattner963b70b2002-05-21 18:05:19 +00002162 }
Chris Lattner44408262002-05-09 03:50:42 +00002163
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002164 Out << " return";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002165 if (I.getNumOperands()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002166 Out << ' ';
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002167 writeOperand(I.getOperand(0));
Chris Lattner16c7bb22002-05-09 02:28:59 +00002168 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002169 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002170}
2171
Chris Lattnera9f5e052003-04-22 20:19:52 +00002172void CWriter::visitSwitchInst(SwitchInst &SI) {
Chris Lattnera05e0ec2004-05-09 03:42:48 +00002173
Chris Lattnera9f5e052003-04-22 20:19:52 +00002174 Out << " switch (";
2175 writeOperand(SI.getOperand(0));
Chris Lattnerf1acd962003-04-23 19:15:13 +00002176 Out << ") {\n default:\n";
John Criswell30cc2272004-10-25 18:30:09 +00002177 printPHICopiesForSuccessor (SI.getParent(), SI.getDefaultDest(), 2);
Chris Lattnerf1acd962003-04-23 19:15:13 +00002178 printBranchToBlock(SI.getParent(), SI.getDefaultDest(), 2);
Chris Lattnera9f5e052003-04-22 20:19:52 +00002179 Out << ";\n";
2180 for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2) {
2181 Out << " case ";
2182 writeOperand(SI.getOperand(i));
2183 Out << ":\n";
2184 BasicBlock *Succ = cast<BasicBlock>(SI.getOperand(i+1));
John Criswell30cc2272004-10-25 18:30:09 +00002185 printPHICopiesForSuccessor (SI.getParent(), Succ, 2);
Chris Lattnera9f5e052003-04-22 20:19:52 +00002186 printBranchToBlock(SI.getParent(), Succ, 2);
Chris Lattnerefd02c72005-03-19 17:35:11 +00002187 if (Function::iterator(Succ) == next(Function::iterator(SI.getParent())))
Chris Lattnera9f5e052003-04-22 20:19:52 +00002188 Out << " break;\n";
2189 }
2190 Out << " }\n";
2191}
2192
Chris Lattnera9d12c02004-10-16 18:12:13 +00002193void CWriter::visitUnreachableInst(UnreachableInst &I) {
Chris Lattner963869e2004-10-17 23:49:11 +00002194 Out << " /*UNREACHABLE*/;\n";
Chris Lattnera9d12c02004-10-16 18:12:13 +00002195}
2196
Chris Lattnercb3ad012004-05-09 20:41:32 +00002197bool CWriter::isGotoCodeNecessary(BasicBlock *From, BasicBlock *To) {
2198 /// FIXME: This should be reenabled, but loop reordering safe!!
2199 return true;
2200
Chris Lattner67c2d182005-03-18 16:12:37 +00002201 if (next(Function::iterator(From)) != Function::iterator(To))
2202 return true; // Not the direct successor, we need a goto.
Chris Lattnercb3ad012004-05-09 20:41:32 +00002203
2204 //isa<SwitchInst>(From->getTerminator())
Chris Lattner9bda5f52003-06-28 17:53:05 +00002205
Chris Lattnercb3ad012004-05-09 20:41:32 +00002206 if (LI->getLoopFor(From) != LI->getLoopFor(To))
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002207 return true;
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002208 return false;
2209}
2210
John Criswell57bbfce2004-10-20 14:38:39 +00002211void CWriter::printPHICopiesForSuccessor (BasicBlock *CurBlock,
Misha Brukmand6a29a52005-04-20 16:05:03 +00002212 BasicBlock *Successor,
John Criswell57bbfce2004-10-20 14:38:39 +00002213 unsigned Indent) {
2214 for (BasicBlock::iterator I = Successor->begin(); isa<PHINode>(I); ++I) {
2215 PHINode *PN = cast<PHINode>(I);
2216 // Now we have to do the printing.
2217 Value *IV = PN->getIncomingValueForBlock(CurBlock);
2218 if (!isa<UndefValue>(IV)) {
2219 Out << std::string(Indent, ' ');
Bill Wendling145aad02007-02-23 22:45:08 +00002220 Out << " " << GetValueName(I) << "__PHI_TEMPORARY = ";
John Criswell57bbfce2004-10-20 14:38:39 +00002221 writeOperand(IV);
2222 Out << "; /* for PHI node */\n";
2223 }
2224 }
2225}
2226
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002227void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
Chris Lattner9bda5f52003-06-28 17:53:05 +00002228 unsigned Indent) {
Chris Lattnercb3ad012004-05-09 20:41:32 +00002229 if (isGotoCodeNecessary(CurBB, Succ)) {
Chris Lattneredd8ce12003-05-03 03:14:35 +00002230 Out << std::string(Indent, ' ') << " goto ";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002231 writeOperand(Succ);
2232 Out << ";\n";
2233 }
2234}
2235
Misha Brukman37f92e22003-09-11 22:34:13 +00002236// Branch instruction printing - Avoid printing out a branch to a basic block
2237// that immediately succeeds the current one.
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002238//
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002239void CWriter::visitBranchInst(BranchInst &I) {
Chris Lattnera05e0ec2004-05-09 03:42:48 +00002240
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002241 if (I.isConditional()) {
Chris Lattner5ef6ffd2003-10-12 08:12:58 +00002242 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(0))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002243 Out << " if (";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002244 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002245 Out << ") {\n";
Misha Brukmand6a29a52005-04-20 16:05:03 +00002246
John Criswell57bbfce2004-10-20 14:38:39 +00002247 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 2);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002248 printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
Misha Brukmand6a29a52005-04-20 16:05:03 +00002249
Chris Lattner5ef6ffd2003-10-12 08:12:58 +00002250 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(1))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002251 Out << " } else {\n";
John Criswell57bbfce2004-10-20 14:38:39 +00002252 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002253 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002254 }
2255 } else {
Misha Brukman5560c9d2003-08-18 14:43:39 +00002256 // First goto not necessary, assume second one is...
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002257 Out << " if (!";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002258 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002259 Out << ") {\n";
2260
John Criswell57bbfce2004-10-20 14:38:39 +00002261 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002262 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002263 }
2264
2265 Out << " }\n";
2266 } else {
John Criswell57bbfce2004-10-20 14:38:39 +00002267 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 0);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002268 printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002269 }
2270 Out << "\n";
2271}
2272
Chris Lattner84e66652003-05-03 07:11:00 +00002273// PHI nodes get copied into temporary values at the end of predecessor basic
2274// blocks. We now need to copy these temporary values into the REAL value for
2275// the PHI.
2276void CWriter::visitPHINode(PHINode &I) {
2277 writeOperand(&I);
2278 Out << "__PHI_TEMPORARY";
2279}
2280
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002281
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002282void CWriter::visitBinaryOperator(Instruction &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002283 // binary instructions, shift instructions, setCond instructions.
Chris Lattnerf5612b762003-04-23 19:09:22 +00002284 assert(!isa<PointerType>(I.getType()));
Brian Gaeke031a1122003-06-23 20:00:51 +00002285
2286 // We must cast the results of binary operations which might be promoted.
2287 bool needsCast = false;
Reid Spencer47857812006-12-31 05:55:36 +00002288 if ((I.getType() == Type::Int8Ty) || (I.getType() == Type::Int16Ty)
Brian Gaekee99f4cf2003-06-25 03:05:33 +00002289 || (I.getType() == Type::FloatTy)) {
Brian Gaeke031a1122003-06-23 20:00:51 +00002290 needsCast = true;
2291 Out << "((";
Reid Spencer251f2142007-01-09 17:09:09 +00002292 printType(Out, I.getType(), false);
Brian Gaeke031a1122003-06-23 20:00:51 +00002293 Out << ")(";
2294 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002295
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002296 // If this is a negation operation, print it out as such. For FP, we don't
2297 // want to print "-0.0 - X".
2298 if (BinaryOperator::isNeg(&I)) {
John Criswellce4e1e42005-07-14 19:41:16 +00002299 Out << "-(";
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002300 writeOperand(BinaryOperator::getNegArgument(cast<BinaryOperator>(&I)));
John Criswellce4e1e42005-07-14 19:41:16 +00002301 Out << ")";
Reid Spencer0a783f72006-11-02 01:53:59 +00002302 } else if (I.getOpcode() == Instruction::FRem) {
Chris Lattner57da2522005-08-23 20:22:50 +00002303 // Output a call to fmod/fmodf instead of emitting a%b
2304 if (I.getType() == Type::FloatTy)
2305 Out << "fmodf(";
Dale Johannesen53f0bc12007-09-17 00:38:27 +00002306 else if (I.getType() == Type::DoubleTy)
Chris Lattner57da2522005-08-23 20:22:50 +00002307 Out << "fmod(";
Dale Johannesen53f0bc12007-09-17 00:38:27 +00002308 else // all 3 flavors of long double
2309 Out << "fmodl(";
Chris Lattner57da2522005-08-23 20:22:50 +00002310 writeOperand(I.getOperand(0));
2311 Out << ", ";
2312 writeOperand(I.getOperand(1));
2313 Out << ")";
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002314 } else {
Reid Spencer1628cec2006-10-26 06:15:43 +00002315
2316 // Write out the cast of the instruction's value back to the proper type
2317 // if necessary.
2318 bool NeedsClosingParens = writeInstructionCast(I);
2319
2320 // Certain instructions require the operand to be forced to a specific type
2321 // so we use writeOperandWithCast here instead of writeOperand. Similarly
2322 // below for operand 1
2323 writeOperandWithCast(I.getOperand(0), I.getOpcode());
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002324
2325 switch (I.getOpcode()) {
Reid Spencer832254e2007-02-02 02:16:23 +00002326 case Instruction::Add: Out << " + "; break;
2327 case Instruction::Sub: Out << " - "; break;
2328 case Instruction::Mul: Out << " * "; break;
Reid Spencer0a783f72006-11-02 01:53:59 +00002329 case Instruction::URem:
2330 case Instruction::SRem:
Reid Spencer832254e2007-02-02 02:16:23 +00002331 case Instruction::FRem: Out << " % "; break;
Reid Spencer1628cec2006-10-26 06:15:43 +00002332 case Instruction::UDiv:
2333 case Instruction::SDiv:
Reid Spencer832254e2007-02-02 02:16:23 +00002334 case Instruction::FDiv: Out << " / "; break;
2335 case Instruction::And: Out << " & "; break;
2336 case Instruction::Or: Out << " | "; break;
2337 case Instruction::Xor: Out << " ^ "; break;
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002338 case Instruction::Shl : Out << " << "; break;
Reid Spencer3822ff52006-11-08 06:47:33 +00002339 case Instruction::LShr:
2340 case Instruction::AShr: Out << " >> "; break;
Bill Wendlingf5da1332006-12-07 22:21:48 +00002341 default: cerr << "Invalid operator type!" << I; abort();
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002342 }
2343
Reid Spencer1628cec2006-10-26 06:15:43 +00002344 writeOperandWithCast(I.getOperand(1), I.getOpcode());
2345 if (NeedsClosingParens)
2346 Out << "))";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002347 }
2348
Brian Gaeke031a1122003-06-23 20:00:51 +00002349 if (needsCast) {
2350 Out << "))";
2351 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002352}
2353
Reid Spencere4d87aa2006-12-23 06:05:41 +00002354void CWriter::visitICmpInst(ICmpInst &I) {
2355 // We must cast the results of icmp which might be promoted.
2356 bool needsCast = false;
2357
2358 // Write out the cast of the instruction's value back to the proper type
2359 // if necessary.
2360 bool NeedsClosingParens = writeInstructionCast(I);
2361
2362 // Certain icmp predicate require the operand to be forced to a specific type
2363 // so we use writeOperandWithCast here instead of writeOperand. Similarly
2364 // below for operand 1
Chris Lattner5bda9e42007-09-15 06:51:03 +00002365 writeOperandWithCast(I.getOperand(0), I);
Reid Spencere4d87aa2006-12-23 06:05:41 +00002366
2367 switch (I.getPredicate()) {
2368 case ICmpInst::ICMP_EQ: Out << " == "; break;
2369 case ICmpInst::ICMP_NE: Out << " != "; break;
2370 case ICmpInst::ICMP_ULE:
2371 case ICmpInst::ICMP_SLE: Out << " <= "; break;
2372 case ICmpInst::ICMP_UGE:
2373 case ICmpInst::ICMP_SGE: Out << " >= "; break;
2374 case ICmpInst::ICMP_ULT:
2375 case ICmpInst::ICMP_SLT: Out << " < "; break;
2376 case ICmpInst::ICMP_UGT:
2377 case ICmpInst::ICMP_SGT: Out << " > "; break;
2378 default: cerr << "Invalid icmp predicate!" << I; abort();
2379 }
2380
Chris Lattner5bda9e42007-09-15 06:51:03 +00002381 writeOperandWithCast(I.getOperand(1), I);
Reid Spencere4d87aa2006-12-23 06:05:41 +00002382 if (NeedsClosingParens)
2383 Out << "))";
2384
2385 if (needsCast) {
2386 Out << "))";
2387 }
2388}
2389
2390void CWriter::visitFCmpInst(FCmpInst &I) {
Reid Spencerb801a272007-01-08 06:58:32 +00002391 if (I.getPredicate() == FCmpInst::FCMP_FALSE) {
2392 Out << "0";
2393 return;
2394 }
2395 if (I.getPredicate() == FCmpInst::FCMP_TRUE) {
2396 Out << "1";
2397 return;
2398 }
2399
2400 const char* op = 0;
2401 switch (I.getPredicate()) {
2402 default: assert(0 && "Illegal FCmp predicate");
2403 case FCmpInst::FCMP_ORD: op = "ord"; break;
2404 case FCmpInst::FCMP_UNO: op = "uno"; break;
2405 case FCmpInst::FCMP_UEQ: op = "ueq"; break;
2406 case FCmpInst::FCMP_UNE: op = "une"; break;
2407 case FCmpInst::FCMP_ULT: op = "ult"; break;
2408 case FCmpInst::FCMP_ULE: op = "ule"; break;
2409 case FCmpInst::FCMP_UGT: op = "ugt"; break;
2410 case FCmpInst::FCMP_UGE: op = "uge"; break;
2411 case FCmpInst::FCMP_OEQ: op = "oeq"; break;
2412 case FCmpInst::FCMP_ONE: op = "one"; break;
2413 case FCmpInst::FCMP_OLT: op = "olt"; break;
2414 case FCmpInst::FCMP_OLE: op = "ole"; break;
2415 case FCmpInst::FCMP_OGT: op = "ogt"; break;
2416 case FCmpInst::FCMP_OGE: op = "oge"; break;
2417 }
2418
2419 Out << "llvm_fcmp_" << op << "(";
Reid Spencere4d87aa2006-12-23 06:05:41 +00002420 // Write the first operand
2421 writeOperand(I.getOperand(0));
Reid Spencerb801a272007-01-08 06:58:32 +00002422 Out << ", ";
Reid Spencere4d87aa2006-12-23 06:05:41 +00002423 // Write the second operand
2424 writeOperand(I.getOperand(1));
Reid Spencerb801a272007-01-08 06:58:32 +00002425 Out << ")";
Reid Spencere4d87aa2006-12-23 06:05:41 +00002426}
2427
Reid Spencer555a0b12006-12-11 20:39:15 +00002428static const char * getFloatBitCastField(const Type *Ty) {
2429 switch (Ty->getTypeID()) {
2430 default: assert(0 && "Invalid Type");
Reid Spencer47857812006-12-31 05:55:36 +00002431 case Type::FloatTyID: return "Float";
Reid Spencer47857812006-12-31 05:55:36 +00002432 case Type::DoubleTyID: return "Double";
Reid Spencera54b7cb2007-01-12 07:05:14 +00002433 case Type::IntegerTyID: {
2434 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
2435 if (NumBits <= 32)
2436 return "Int32";
2437 else
2438 return "Int64";
2439 }
Reid Spencer555a0b12006-12-11 20:39:15 +00002440 }
2441}
2442
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002443void CWriter::visitCastInst(CastInst &I) {
Reid Spencer3da59db2006-11-27 01:05:10 +00002444 const Type *DstTy = I.getType();
2445 const Type *SrcTy = I.getOperand(0)->getType();
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002446 Out << '(';
Reid Spencer22586642006-12-17 20:24:50 +00002447 if (isFPIntBitCast(I)) {
Reid Spencer555a0b12006-12-11 20:39:15 +00002448 // These int<->float and long<->double casts need to be handled specially
Bill Wendling145aad02007-02-23 22:45:08 +00002449 Out << GetValueName(&I) << "__BITCAST_TEMPORARY."
Reid Spencer555a0b12006-12-11 20:39:15 +00002450 << getFloatBitCastField(I.getOperand(0)->getType()) << " = ";
2451 writeOperand(I.getOperand(0));
Bill Wendling145aad02007-02-23 22:45:08 +00002452 Out << ", " << GetValueName(&I) << "__BITCAST_TEMPORARY."
Reid Spencer555a0b12006-12-11 20:39:15 +00002453 << getFloatBitCastField(I.getType());
2454 } else {
2455 printCast(I.getOpcode(), SrcTy, DstTy);
Chris Lattner72623362007-05-03 02:57:13 +00002456 if (I.getOpcode() == Instruction::SExt && SrcTy == Type::Int1Ty) {
Reid Spencer555a0b12006-12-11 20:39:15 +00002457 // Make sure we really get a sext from bool by subtracing the bool from 0
2458 Out << "0-";
2459 }
Chris Lattner72623362007-05-03 02:57:13 +00002460 writeOperand(I.getOperand(0));
2461 if (DstTy == Type::Int1Ty &&
2462 (I.getOpcode() == Instruction::Trunc ||
2463 I.getOpcode() == Instruction::FPToUI ||
2464 I.getOpcode() == Instruction::FPToSI ||
2465 I.getOpcode() == Instruction::PtrToInt)) {
2466 // Make sure we really get a trunc to bool by anding the operand with 1
2467 Out << "&1u";
2468 }
Reid Spencer3da59db2006-11-27 01:05:10 +00002469 }
Chris Lattner72623362007-05-03 02:57:13 +00002470 Out << ')';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002471}
2472
Chris Lattner9f24a072004-03-12 05:52:14 +00002473void CWriter::visitSelectInst(SelectInst &I) {
2474 Out << "((";
2475 writeOperand(I.getCondition());
2476 Out << ") ? (";
2477 writeOperand(I.getTrueValue());
2478 Out << ") : (";
2479 writeOperand(I.getFalseValue());
Misha Brukmand6a29a52005-04-20 16:05:03 +00002480 Out << "))";
Chris Lattner9f24a072004-03-12 05:52:14 +00002481}
2482
2483
Chris Lattnerc2421432004-05-09 04:30:20 +00002484void CWriter::lowerIntrinsics(Function &F) {
Reid Spencer69f80a62007-04-12 21:00:45 +00002485 // This is used to keep track of intrinsics that get generated to a lowered
2486 // function. We must generate the prototypes before the function body which
2487 // will only be expanded on first use (by the loop below).
2488 std::vector<Function*> prototypesToGen;
2489
2490 // Examine all the instructions in this function to find the intrinsics that
2491 // need to be lowered.
Jeff Cohen614408d2007-04-13 22:52:03 +00002492 for (Function::iterator BB = F.begin(), EE = F.end(); BB != EE; ++BB)
Chris Lattnerc2421432004-05-09 04:30:20 +00002493 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
2494 if (CallInst *CI = dyn_cast<CallInst>(I++))
2495 if (Function *F = CI->getCalledFunction())
2496 switch (F->getIntrinsicID()) {
2497 case Intrinsic::not_intrinsic:
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00002498 case Intrinsic::memory_barrier:
Chris Lattnerc2421432004-05-09 04:30:20 +00002499 case Intrinsic::vastart:
2500 case Intrinsic::vacopy:
2501 case Intrinsic::vaend:
2502 case Intrinsic::returnaddress:
2503 case Intrinsic::frameaddress:
2504 case Intrinsic::setjmp:
2505 case Intrinsic::longjmp:
Chris Lattner33e9d292005-02-28 19:29:46 +00002506 case Intrinsic::prefetch:
Jim Laskey7075d6f2006-03-08 19:31:15 +00002507 case Intrinsic::dbg_stoppoint:
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00002508 case Intrinsic::powi:
Chris Lattner4e220122008-03-02 08:47:13 +00002509 case Intrinsic::x86_sse_cmp_ss:
2510 case Intrinsic::x86_sse_cmp_ps:
2511 case Intrinsic::x86_sse2_cmp_sd:
2512 case Intrinsic::x86_sse2_cmp_pd:
Chris Lattnerff939212008-03-02 08:54:27 +00002513 case Intrinsic::ppc_altivec_lvsl:
Chris Lattner4e220122008-03-02 08:47:13 +00002514 // We directly implement these intrinsics
Chris Lattnerc2421432004-05-09 04:30:20 +00002515 break;
2516 default:
Chris Lattner87242152006-03-13 23:09:05 +00002517 // If this is an intrinsic that directly corresponds to a GCC
2518 // builtin, we handle it.
2519 const char *BuiltinName = "";
2520#define GET_GCC_BUILTIN_NAME
2521#include "llvm/Intrinsics.gen"
2522#undef GET_GCC_BUILTIN_NAME
2523 // If we handle it, don't lower it.
2524 if (BuiltinName[0]) break;
2525
Chris Lattnerc2421432004-05-09 04:30:20 +00002526 // All other intrinsic calls we must lower.
Chris Lattner67c2d182005-03-18 16:12:37 +00002527 Instruction *Before = 0;
Misha Brukmand6a29a52005-04-20 16:05:03 +00002528 if (CI != &BB->front())
Chris Lattner67c2d182005-03-18 16:12:37 +00002529 Before = prior(BasicBlock::iterator(CI));
Misha Brukmand6a29a52005-04-20 16:05:03 +00002530
Reid Spencer519e2392007-01-29 17:51:02 +00002531 IL->LowerIntrinsicCall(CI);
Chris Lattnerc2421432004-05-09 04:30:20 +00002532 if (Before) { // Move iterator to instruction after call
2533 I = Before; ++I;
2534 } else {
2535 I = BB->begin();
Chris Lattner4ef51372004-02-14 00:31:10 +00002536 }
Reid Spencer69f80a62007-04-12 21:00:45 +00002537 // If the intrinsic got lowered to another call, and that call has
2538 // a definition then we need to make sure its prototype is emitted
2539 // before any calls to it.
2540 if (CallInst *Call = dyn_cast<CallInst>(I))
2541 if (Function *NewF = Call->getCalledFunction())
2542 if (!NewF->isDeclaration())
2543 prototypesToGen.push_back(NewF);
2544
Chris Lattner87242152006-03-13 23:09:05 +00002545 break;
Chris Lattnerc2421432004-05-09 04:30:20 +00002546 }
Chris Lattner4ef51372004-02-14 00:31:10 +00002547
Reid Spencer69f80a62007-04-12 21:00:45 +00002548 // We may have collected some prototypes to emit in the loop above.
2549 // Emit them now, before the function that uses them is emitted. But,
2550 // be careful not to emit them twice.
2551 std::vector<Function*>::iterator I = prototypesToGen.begin();
2552 std::vector<Function*>::iterator E = prototypesToGen.end();
2553 for ( ; I != E; ++I) {
Reid Spencer57c5b182007-04-12 21:57:15 +00002554 if (intrinsicPrototypesAlreadyGenerated.insert(*I).second) {
Reid Spencer69f80a62007-04-12 21:00:45 +00002555 Out << '\n';
2556 printFunctionSignature(*I, true);
2557 Out << ";\n";
Reid Spencer69f80a62007-04-12 21:00:45 +00002558 }
2559 }
2560}
Chris Lattner4ef51372004-02-14 00:31:10 +00002561
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002562void CWriter::visitCallInst(CallInst &I) {
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002563 //check if we have inline asm
2564 if (isInlineAsm(I)) {
2565 visitInlineAsm(I);
2566 return;
2567 }
2568
Chris Lattner87242152006-03-13 23:09:05 +00002569 bool WroteCallee = false;
2570
Chris Lattner18ac3c82003-05-08 18:41:45 +00002571 // Handle intrinsic function calls first...
2572 if (Function *F = I.getCalledFunction())
Chris Lattner2299fec2008-03-02 08:29:41 +00002573 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
2574 if (visitBuiltinCall(I, ID, WroteCallee))
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00002575 return;
Chris Lattner18ac3c82003-05-08 18:41:45 +00002576
Chris Lattner4394d512004-11-13 22:21:56 +00002577 Value *Callee = I.getCalledValue();
Misha Brukmand6a29a52005-04-20 16:05:03 +00002578
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002579 const PointerType *PTy = cast<PointerType>(Callee->getType());
2580 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
2581
Chris Lattner0c54d892006-05-23 23:39:48 +00002582 // If this is a call to a struct-return function, assign to the first
2583 // parameter instead of passing it to the call.
Chris Lattner58d74912008-03-12 17:45:29 +00002584 const PAListPtr &PAL = I.getParamAttrs();
Evan Cheng7723ab32008-01-12 18:53:07 +00002585 bool hasByVal = I.hasByValArgument();
Devang Patel41e23972008-03-03 21:46:28 +00002586 bool isStructRet = I.hasStructRetAttr();
Chris Lattner0c54d892006-05-23 23:39:48 +00002587 if (isStructRet) {
Chris Lattnere05252b42008-03-02 08:07:24 +00002588 writeOperandDeref(I.getOperand(1));
Evan Cheng3d794782008-01-11 23:10:11 +00002589 Out << " = ";
Chris Lattner0c54d892006-05-23 23:39:48 +00002590 }
2591
Chris Lattnerfe673d92005-05-06 06:53:07 +00002592 if (I.isTailCall()) Out << " /*tail*/ ";
Chris Lattner0c54d892006-05-23 23:39:48 +00002593
2594 if (!WroteCallee) {
2595 // If this is an indirect call to a struct return function, we need to cast
Evan Cheng7723ab32008-01-12 18:53:07 +00002596 // the pointer. Ditto for indirect calls with byval arguments.
2597 bool NeedsCast = (hasByVal || isStructRet) && !isa<Function>(Callee);
Misha Brukmand6a29a52005-04-20 16:05:03 +00002598
Chris Lattner0c54d892006-05-23 23:39:48 +00002599 // GCC is a real PITA. It does not permit codegening casts of functions to
2600 // function pointers if they are in a call (it generates a trap instruction
2601 // instead!). We work around this by inserting a cast to void* in between
2602 // the function and the function pointer cast. Unfortunately, we can't just
2603 // form the constant expression here, because the folder will immediately
2604 // nuke it.
2605 //
2606 // Note finally, that this is completely unsafe. ANSI C does not guarantee
2607 // that void* and function pointers have the same size. :( To deal with this
2608 // in the common case, we handle casts where the number of arguments passed
2609 // match exactly.
2610 //
2611 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Callee))
Reid Spencer3da59db2006-11-27 01:05:10 +00002612 if (CE->isCast())
Chris Lattner0c54d892006-05-23 23:39:48 +00002613 if (Function *RF = dyn_cast<Function>(CE->getOperand(0))) {
2614 NeedsCast = true;
2615 Callee = RF;
2616 }
2617
2618 if (NeedsCast) {
2619 // Ok, just cast the pointer type.
2620 Out << "((";
Evan Cheng7723ab32008-01-12 18:53:07 +00002621 if (isStructRet)
Duncan Sandsdc024672007-11-27 13:23:08 +00002622 printStructReturnPointerFunctionType(Out, PAL,
Chris Lattner0c54d892006-05-23 23:39:48 +00002623 cast<PointerType>(I.getCalledValue()->getType()));
Evan Cheng7723ab32008-01-12 18:53:07 +00002624 else if (hasByVal)
2625 printType(Out, I.getCalledValue()->getType(), false, "", true, PAL);
2626 else
2627 printType(Out, I.getCalledValue()->getType());
Chris Lattner0c54d892006-05-23 23:39:48 +00002628 Out << ")(void*)";
2629 }
2630 writeOperand(Callee);
2631 if (NeedsCast) Out << ')';
2632 }
2633
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002634 Out << '(';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002635
Chris Lattner4394d512004-11-13 22:21:56 +00002636 unsigned NumDeclaredParams = FTy->getNumParams();
2637
Chris Lattner0c54d892006-05-23 23:39:48 +00002638 CallSite::arg_iterator AI = I.op_begin()+1, AE = I.op_end();
2639 unsigned ArgNo = 0;
2640 if (isStructRet) { // Skip struct return argument.
2641 ++AI;
2642 ++ArgNo;
2643 }
2644
2645 bool PrintedArg = false;
Evan Cheng3d794782008-01-11 23:10:11 +00002646 for (; AI != AE; ++AI, ++ArgNo) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002647 if (PrintedArg) Out << ", ";
2648 if (ArgNo < NumDeclaredParams &&
2649 (*AI)->getType() != FTy->getParamType(ArgNo)) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002650 Out << '(';
Reid Spencer0ae96932007-01-07 03:24:48 +00002651 printType(Out, FTy->getParamType(ArgNo),
Chris Lattner58d74912008-03-12 17:45:29 +00002652 /*isSigned=*/PAL.paramHasAttr(ArgNo+1, ParamAttr::SExt));
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002653 Out << ')';
Chris Lattner4394d512004-11-13 22:21:56 +00002654 }
Evan Cheng3d794782008-01-11 23:10:11 +00002655 // Check if the argument is expected to be passed by value.
Chris Lattnere05252b42008-03-02 08:07:24 +00002656 if (I.paramHasAttr(ArgNo+1, ParamAttr::ByVal))
2657 writeOperandDeref(*AI);
2658 else
2659 writeOperand(*AI);
Chris Lattner0c54d892006-05-23 23:39:48 +00002660 PrintedArg = true;
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002661 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002662 Out << ')';
Misha Brukmand6a29a52005-04-20 16:05:03 +00002663}
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002664
Chris Lattner2299fec2008-03-02 08:29:41 +00002665/// visitBuiltinCall - Handle the call to the specified builtin. Returns true
2666/// if the entire call is handled, return false it it wasn't handled, and
2667/// optionally set 'WroteCallee' if the callee has already been printed out.
2668bool CWriter::visitBuiltinCall(CallInst &I, Intrinsic::ID ID,
2669 bool &WroteCallee) {
2670 switch (ID) {
2671 default: {
2672 // If this is an intrinsic that directly corresponds to a GCC
2673 // builtin, we emit it here.
2674 const char *BuiltinName = "";
2675 Function *F = I.getCalledFunction();
2676#define GET_GCC_BUILTIN_NAME
2677#include "llvm/Intrinsics.gen"
2678#undef GET_GCC_BUILTIN_NAME
2679 assert(BuiltinName[0] && "Unknown LLVM intrinsic!");
2680
2681 Out << BuiltinName;
2682 WroteCallee = true;
2683 return false;
2684 }
2685 case Intrinsic::memory_barrier:
Andrew Lenharth6ad150b2008-03-05 23:41:37 +00002686 Out << "__sync_synchronize()";
Chris Lattner2299fec2008-03-02 08:29:41 +00002687 return true;
2688 case Intrinsic::vastart:
2689 Out << "0; ";
2690
2691 Out << "va_start(*(va_list*)";
2692 writeOperand(I.getOperand(1));
2693 Out << ", ";
2694 // Output the last argument to the enclosing function.
2695 if (I.getParent()->getParent()->arg_empty()) {
2696 cerr << "The C backend does not currently support zero "
2697 << "argument varargs functions, such as '"
2698 << I.getParent()->getParent()->getName() << "'!\n";
2699 abort();
2700 }
2701 writeOperand(--I.getParent()->getParent()->arg_end());
2702 Out << ')';
2703 return true;
2704 case Intrinsic::vaend:
2705 if (!isa<ConstantPointerNull>(I.getOperand(1))) {
2706 Out << "0; va_end(*(va_list*)";
2707 writeOperand(I.getOperand(1));
2708 Out << ')';
2709 } else {
2710 Out << "va_end(*(va_list*)0)";
2711 }
2712 return true;
2713 case Intrinsic::vacopy:
2714 Out << "0; ";
2715 Out << "va_copy(*(va_list*)";
2716 writeOperand(I.getOperand(1));
2717 Out << ", *(va_list*)";
2718 writeOperand(I.getOperand(2));
2719 Out << ')';
2720 return true;
2721 case Intrinsic::returnaddress:
2722 Out << "__builtin_return_address(";
2723 writeOperand(I.getOperand(1));
2724 Out << ')';
2725 return true;
2726 case Intrinsic::frameaddress:
2727 Out << "__builtin_frame_address(";
2728 writeOperand(I.getOperand(1));
2729 Out << ')';
2730 return true;
2731 case Intrinsic::powi:
2732 Out << "__builtin_powi(";
2733 writeOperand(I.getOperand(1));
2734 Out << ", ";
2735 writeOperand(I.getOperand(2));
2736 Out << ')';
2737 return true;
2738 case Intrinsic::setjmp:
2739 Out << "setjmp(*(jmp_buf*)";
2740 writeOperand(I.getOperand(1));
2741 Out << ')';
2742 return true;
2743 case Intrinsic::longjmp:
2744 Out << "longjmp(*(jmp_buf*)";
2745 writeOperand(I.getOperand(1));
2746 Out << ", ";
2747 writeOperand(I.getOperand(2));
2748 Out << ')';
2749 return true;
2750 case Intrinsic::prefetch:
2751 Out << "LLVM_PREFETCH((const void *)";
2752 writeOperand(I.getOperand(1));
2753 Out << ", ";
2754 writeOperand(I.getOperand(2));
2755 Out << ", ";
2756 writeOperand(I.getOperand(3));
2757 Out << ")";
2758 return true;
2759 case Intrinsic::stacksave:
2760 // Emit this as: Val = 0; *((void**)&Val) = __builtin_stack_save()
2761 // to work around GCC bugs (see PR1809).
2762 Out << "0; *((void**)&" << GetValueName(&I)
2763 << ") = __builtin_stack_save()";
2764 return true;
2765 case Intrinsic::dbg_stoppoint: {
2766 // If we use writeOperand directly we get a "u" suffix which is rejected
2767 // by gcc.
2768 DbgStopPointInst &SPI = cast<DbgStopPointInst>(I);
2769 Out << "\n#line "
2770 << SPI.getLine()
2771 << " \"" << SPI.getDirectory()
2772 << SPI.getFileName() << "\"\n";
2773 return true;
2774 }
Chris Lattner4e220122008-03-02 08:47:13 +00002775 case Intrinsic::x86_sse_cmp_ss:
2776 case Intrinsic::x86_sse_cmp_ps:
2777 case Intrinsic::x86_sse2_cmp_sd:
2778 case Intrinsic::x86_sse2_cmp_pd:
2779 Out << '(';
2780 printType(Out, I.getType());
2781 Out << ')';
2782 // Multiple GCC builtins multiplex onto this intrinsic.
2783 switch (cast<ConstantInt>(I.getOperand(3))->getZExtValue()) {
2784 default: assert(0 && "Invalid llvm.x86.sse.cmp!");
2785 case 0: Out << "__builtin_ia32_cmpeq"; break;
2786 case 1: Out << "__builtin_ia32_cmplt"; break;
2787 case 2: Out << "__builtin_ia32_cmple"; break;
2788 case 3: Out << "__builtin_ia32_cmpunord"; break;
2789 case 4: Out << "__builtin_ia32_cmpneq"; break;
2790 case 5: Out << "__builtin_ia32_cmpnlt"; break;
2791 case 6: Out << "__builtin_ia32_cmpnle"; break;
2792 case 7: Out << "__builtin_ia32_cmpord"; break;
2793 }
2794 if (ID == Intrinsic::x86_sse_cmp_ps || ID == Intrinsic::x86_sse2_cmp_pd)
2795 Out << 'p';
2796 else
2797 Out << 's';
2798 if (ID == Intrinsic::x86_sse_cmp_ss || ID == Intrinsic::x86_sse_cmp_ps)
2799 Out << 's';
2800 else
2801 Out << 'd';
2802
2803 Out << "(";
2804 writeOperand(I.getOperand(1));
2805 Out << ", ";
2806 writeOperand(I.getOperand(2));
2807 Out << ")";
2808 return true;
Chris Lattnerff939212008-03-02 08:54:27 +00002809 case Intrinsic::ppc_altivec_lvsl:
2810 Out << '(';
2811 printType(Out, I.getType());
2812 Out << ')';
2813 Out << "__builtin_altivec_lvsl(0, (void*)";
2814 writeOperand(I.getOperand(1));
2815 Out << ")";
2816 return true;
Chris Lattner2299fec2008-03-02 08:29:41 +00002817 }
2818}
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002819
2820//This converts the llvm constraint string to something gcc is expecting.
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002821//TODO: work out platform independent constraints and factor those out
Andrew Lenharth238581f2006-11-28 19:56:02 +00002822// of the per target tables
2823// handle multiple constraint codes
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00002824std::string CWriter::InterpretASMConstraint(InlineAsm::ConstraintInfo& c) {
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002825
2826 assert(c.Codes.size() == 1 && "Too many asm constraint codes to handle");
2827
Dan Gohmancfbb2f02008-03-25 21:45:14 +00002828 const char *const *table = 0;
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00002829
2830 //Grab the translation table from TargetAsmInfo if it exists
2831 if (!TAsm) {
2832 std::string E;
Gordon Henriksen4b2b9402007-10-17 21:28:48 +00002833 const TargetMachineRegistry::entry* Match =
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00002834 TargetMachineRegistry::getClosestStaticTargetForModule(*TheModule, E);
2835 if (Match) {
2836 //Per platform Target Machines don't exist, so create it
2837 // this must be done only once
2838 const TargetMachine* TM = Match->CtorFn(*TheModule, "");
2839 TAsm = TM->getTargetAsmInfo();
2840 }
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002841 }
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00002842 if (TAsm)
2843 table = TAsm->getAsmCBE();
2844
2845 //Search the translation table if it exists
2846 for (int i = 0; table && table[i]; i += 2)
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002847 if (c.Codes[0] == table[i])
2848 return table[i+1];
2849
Andrew Lenharth85f22282006-11-28 22:25:32 +00002850 //default is identity
2851 return c.Codes[0];
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002852}
2853
2854//TODO: import logic from AsmPrinter.cpp
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00002855static std::string gccifyAsm(std::string asmstr) {
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002856 for (std::string::size_type i = 0; i != asmstr.size(); ++i)
2857 if (asmstr[i] == '\n')
2858 asmstr.replace(i, 1, "\\n");
2859 else if (asmstr[i] == '\t')
2860 asmstr.replace(i, 1, "\\t");
2861 else if (asmstr[i] == '$') {
2862 if (asmstr[i + 1] == '{') {
2863 std::string::size_type a = asmstr.find_first_of(':', i + 1);
2864 std::string::size_type b = asmstr.find_first_of('}', i + 1);
2865 std::string n = "%" +
2866 asmstr.substr(a + 1, b - a - 1) +
2867 asmstr.substr(i + 2, a - i - 2);
2868 asmstr.replace(i, b - i + 1, n);
2869 i += n.size() - 1;
2870 } else
2871 asmstr.replace(i, 1, "%");
2872 }
2873 else if (asmstr[i] == '%')//grr
2874 { asmstr.replace(i, 1, "%%"); ++i;}
2875
2876 return asmstr;
2877}
2878
Andrew Lenharth238581f2006-11-28 19:56:02 +00002879//TODO: assumptions about what consume arguments from the call are likely wrong
2880// handle communitivity
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002881void CWriter::visitInlineAsm(CallInst &CI) {
2882 InlineAsm* as = cast<InlineAsm>(CI.getOperand(0));
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002883 std::vector<InlineAsm::ConstraintInfo> Constraints = as->ParseConstraints();
2884 std::vector<std::pair<std::string, Value*> > Input;
2885 std::vector<std::pair<std::string, Value*> > Output;
2886 std::string Clobber;
2887 int count = CI.getType() == Type::VoidTy ? 1 : 0;
2888 for (std::vector<InlineAsm::ConstraintInfo>::iterator I = Constraints.begin(),
2889 E = Constraints.end(); I != E; ++I) {
2890 assert(I->Codes.size() == 1 && "Too many asm constraint codes to handle");
2891 std::string c =
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00002892 InterpretASMConstraint(*I);
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002893 switch(I->Type) {
2894 default:
2895 assert(0 && "Unknown asm constraint");
2896 break;
2897 case InlineAsm::isInput: {
2898 if (c.size()) {
2899 Input.push_back(std::make_pair(c, count ? CI.getOperand(count) : &CI));
2900 ++count; //consume arg
2901 }
2902 break;
2903 }
2904 case InlineAsm::isOutput: {
2905 if (c.size()) {
2906 Output.push_back(std::make_pair("="+((I->isEarlyClobber ? "&" : "")+c),
2907 count ? CI.getOperand(count) : &CI));
2908 ++count; //consume arg
2909 }
2910 break;
2911 }
2912 case InlineAsm::isClobber: {
2913 if (c.size())
2914 Clobber += ",\"" + c + "\"";
2915 break;
2916 }
2917 }
2918 }
2919
2920 //fix up the asm string for gcc
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00002921 std::string asmstr = gccifyAsm(as->getAsmString());
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002922
2923 Out << "__asm__ volatile (\"" << asmstr << "\"\n";
2924 Out << " :";
Chris Lattnere05252b42008-03-02 08:07:24 +00002925 for (std::vector<std::pair<std::string, Value*> >::iterator I =Output.begin(),
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002926 E = Output.end(); I != E; ++I) {
2927 Out << "\"" << I->first << "\"(";
2928 writeOperandRaw(I->second);
2929 Out << ")";
2930 if (I + 1 != E)
2931 Out << ",";
2932 }
2933 Out << "\n :";
2934 for (std::vector<std::pair<std::string, Value*> >::iterator I = Input.begin(),
2935 E = Input.end(); I != E; ++I) {
2936 Out << "\"" << I->first << "\"(";
2937 writeOperandRaw(I->second);
2938 Out << ")";
2939 if (I + 1 != E)
2940 Out << ",";
2941 }
Andrew Lenharthf45148e2006-11-28 23:07:32 +00002942 if (Clobber.size())
2943 Out << "\n :" << Clobber.substr(1);
2944 Out << ")";
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002945}
2946
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002947void CWriter::visitMallocInst(MallocInst &I) {
Chris Lattnerf31182a2004-02-13 23:18:48 +00002948 assert(0 && "lowerallocations pass didn't work!");
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002949}
2950
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002951void CWriter::visitAllocaInst(AllocaInst &I) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002952 Out << '(';
Nick Hildenbrandt98502372002-11-18 20:55:50 +00002953 printType(Out, I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002954 Out << ") alloca(sizeof(";
Nick Hildenbrandt98502372002-11-18 20:55:50 +00002955 printType(Out, I.getType()->getElementType());
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002956 Out << ')';
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002957 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002958 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002959 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002960 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002961 Out << ')';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002962}
2963
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002964void CWriter::visitFreeInst(FreeInst &I) {
Chris Lattnerf31182a2004-02-13 23:18:48 +00002965 assert(0 && "lowerallocations pass didn't work!");
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002966}
2967
Chris Lattnere05252b42008-03-02 08:07:24 +00002968void CWriter::printGEPExpression(Value *Ptr, gep_type_iterator I,
2969 gep_type_iterator E) {
2970
2971 // If there are no indices, just print out the pointer.
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00002972 if (I == E) {
Chris Lattnere05252b42008-03-02 08:07:24 +00002973 writeOperand(Ptr);
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00002974 return;
2975 }
Chris Lattnere05252b42008-03-02 08:07:24 +00002976
2977 // Find out if the last index is into a vector. If so, we have to print this
2978 // specially. Since vectors can't have elements of indexable type, only the
2979 // last index could possibly be of a vector element.
2980 const VectorType *LastIndexIsVector = 0;
2981 {
2982 for (gep_type_iterator TmpI = I; TmpI != E; ++TmpI)
2983 LastIndexIsVector = dyn_cast<VectorType>(*TmpI);
Nick Hildenbrandte548f002002-09-25 20:29:26 +00002984 }
Chris Lattnere05252b42008-03-02 08:07:24 +00002985
2986 Out << "(";
2987
2988 // If the last index is into a vector, we can't print it as &a[i][j] because
2989 // we can't index into a vector with j in GCC. Instead, emit this as
2990 // (((float*)&a[i])+j)
2991 if (LastIndexIsVector) {
2992 Out << "((";
2993 printType(Out, PointerType::getUnqual(LastIndexIsVector->getElementType()));
2994 Out << ")(";
2995 }
2996
2997 Out << '&';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002998
Chris Lattnere05252b42008-03-02 08:07:24 +00002999 // If the first index is 0 (very typical) we can do a number of
3000 // simplifications to clean up the code.
3001 Value *FirstOp = I.getOperand();
3002 if (!isa<Constant>(FirstOp) || !cast<Constant>(FirstOp)->isNullValue()) {
3003 // First index isn't simple, print it the hard way.
3004 writeOperand(Ptr);
3005 } else {
3006 ++I; // Skip the zero index.
Nick Hildenbrandte548f002002-09-25 20:29:26 +00003007
Chris Lattnere05252b42008-03-02 08:07:24 +00003008 // Okay, emit the first operand. If Ptr is something that is already address
3009 // exposed, like a global, avoid emitting (&foo)[0], just emit foo instead.
3010 if (isAddressExposed(Ptr)) {
3011 writeOperandInternal(Ptr);
3012 } else if (I != E && isa<StructType>(*I)) {
3013 // If we didn't already emit the first operand, see if we can print it as
3014 // P->f instead of "P[0].f"
3015 writeOperand(Ptr);
3016 Out << "->field" << cast<ConstantInt>(I.getOperand())->getZExtValue();
3017 ++I; // eat the struct index as well.
3018 } else {
3019 // Instead of emitting P[0][1], emit (*P)[1], which is more idiomatic.
3020 Out << "(*";
3021 writeOperand(Ptr);
3022 Out << ")";
Chris Lattner23e90702003-11-25 20:49:55 +00003023 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003024 }
Chris Lattner5dfe7672002-08-22 22:48:55 +00003025
Chris Lattnere05252b42008-03-02 08:07:24 +00003026 for (; I != E; ++I) {
Chris Lattner23e90702003-11-25 20:49:55 +00003027 if (isa<StructType>(*I)) {
Reid Spencerb83eb642006-10-20 07:07:24 +00003028 Out << ".field" << cast<ConstantInt>(I.getOperand())->getZExtValue();
Chris Lattnere05252b42008-03-02 08:07:24 +00003029 } else if (!isa<VectorType>(*I)) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00003030 Out << '[';
Chris Lattner96b207c2007-09-22 20:16:48 +00003031 writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
Misha Brukmanb70aaa62005-02-14 18:52:35 +00003032 Out << ']';
Chris Lattnere05252b42008-03-02 08:07:24 +00003033 } else {
3034 // If the last index is into a vector, then print it out as "+j)". This
3035 // works with the 'LastIndexIsVector' code above.
3036 if (isa<Constant>(I.getOperand()) &&
3037 cast<Constant>(I.getOperand())->isNullValue()) {
3038 Out << "))"; // avoid "+0".
3039 } else {
3040 Out << ")+(";
3041 writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
3042 Out << "))";
3043 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003044 }
Chris Lattnere05252b42008-03-02 08:07:24 +00003045 }
3046 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003047}
3048
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003049void CWriter::writeMemoryAccess(Value *Operand, const Type *OperandType,
3050 bool IsVolatile, unsigned Alignment) {
3051
3052 bool IsUnaligned = Alignment &&
3053 Alignment < TD->getABITypeAlignment(OperandType);
3054
3055 if (!IsUnaligned)
3056 Out << '*';
3057 if (IsVolatile || IsUnaligned) {
Chris Lattner8399e022005-02-15 05:52:14 +00003058 Out << "((";
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003059 if (IsUnaligned)
3060 Out << "struct __attribute__ ((packed, aligned(" << Alignment << "))) {";
3061 printType(Out, OperandType, false, IsUnaligned ? "data" : "volatile*");
3062 if (IsUnaligned) {
3063 Out << "; } ";
3064 if (IsVolatile) Out << "volatile ";
3065 Out << "*";
3066 }
Chris Lattnerb94388a2005-09-27 20:52:44 +00003067 Out << ")";
Chris Lattner9d30e222005-02-14 16:47:52 +00003068 }
3069
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003070 writeOperand(Operand);
Chris Lattner9d30e222005-02-14 16:47:52 +00003071
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003072 if (IsVolatile || IsUnaligned) {
Misha Brukman23ba0c52005-03-08 00:26:08 +00003073 Out << ')';
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003074 if (IsUnaligned)
3075 Out << "->data";
3076 }
3077}
3078
3079void CWriter::visitLoadInst(LoadInst &I) {
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003080 writeMemoryAccess(I.getOperand(0), I.getType(), I.isVolatile(),
3081 I.getAlignment());
3082
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003083}
3084
Chris Lattnerbb03efd2002-06-25 15:57:03 +00003085void CWriter::visitStoreInst(StoreInst &I) {
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003086 writeMemoryAccess(I.getPointerOperand(), I.getOperand(0)->getType(),
3087 I.isVolatile(), I.getAlignment());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003088 Out << " = ";
Reid Spencerbdc75082007-03-03 16:33:33 +00003089 Value *Operand = I.getOperand(0);
3090 Constant *BitMask = 0;
3091 if (const IntegerType* ITy = dyn_cast<IntegerType>(Operand->getType()))
3092 if (!ITy->isPowerOf2ByteWidth())
3093 // We have a bit width that doesn't match an even power-of-2 byte
3094 // size. Consequently we must & the value with the type's bit mask
3095 BitMask = ConstantInt::get(ITy, ITy->getBitMask());
3096 if (BitMask)
3097 Out << "((";
3098 writeOperand(Operand);
3099 if (BitMask) {
3100 Out << ") & ";
3101 printConstant(BitMask);
3102 Out << ")";
3103 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003104}
3105
Chris Lattnerbb03efd2002-06-25 15:57:03 +00003106void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattnere05252b42008-03-02 08:07:24 +00003107 printGEPExpression(I.getPointerOperand(), gep_type_begin(I),
3108 gep_type_end(I));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003109}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00003110
Chris Lattner4d45bd02003-10-18 05:57:43 +00003111void CWriter::visitVAArgInst(VAArgInst &I) {
Andrew Lenharth558bc882005-06-18 18:34:52 +00003112 Out << "va_arg(*(va_list*)";
Chris Lattner4d45bd02003-10-18 05:57:43 +00003113 writeOperand(I.getOperand(0));
Andrew Lenharth558bc882005-06-18 18:34:52 +00003114 Out << ", ";
Chris Lattner7635ea42003-11-03 01:01:59 +00003115 printType(Out, I.getType());
Andrew Lenharth558bc882005-06-18 18:34:52 +00003116 Out << ");\n ";
Chris Lattner4d45bd02003-10-18 05:57:43 +00003117}
3118
Chris Lattner33a44d92008-03-02 03:52:39 +00003119void CWriter::visitInsertElementInst(InsertElementInst &I) {
3120 const Type *EltTy = I.getType()->getElementType();
3121 writeOperand(I.getOperand(0));
3122 Out << ";\n ";
3123 Out << "((";
3124 printType(Out, PointerType::getUnqual(EltTy));
3125 Out << ")(&" << GetValueName(&I) << "))[";
Chris Lattner33a44d92008-03-02 03:52:39 +00003126 writeOperand(I.getOperand(2));
Chris Lattner9152daf2008-03-02 08:10:16 +00003127 Out << "] = (";
3128 writeOperand(I.getOperand(1));
Chris Lattner33a44d92008-03-02 03:52:39 +00003129 Out << ")";
3130}
3131
Chris Lattner0452ed62008-03-02 03:57:08 +00003132void CWriter::visitExtractElementInst(ExtractElementInst &I) {
3133 // We know that our operand is not inlined.
3134 Out << "((";
3135 const Type *EltTy =
3136 cast<VectorType>(I.getOperand(0)->getType())->getElementType();
3137 printType(Out, PointerType::getUnqual(EltTy));
3138 Out << ")(&" << GetValueName(I.getOperand(0)) << "))[";
3139 writeOperand(I.getOperand(1));
3140 Out << "]";
3141}
3142
Chris Lattnerb1855ad2008-03-02 05:41:07 +00003143void CWriter::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
3144 Out << "(";
3145 printType(Out, SVI.getType());
3146 Out << "){ ";
3147 const VectorType *VT = SVI.getType();
3148 unsigned NumElts = VT->getNumElements();
3149 const Type *EltTy = VT->getElementType();
3150
3151 for (unsigned i = 0; i != NumElts; ++i) {
3152 if (i) Out << ", ";
3153 int SrcVal = SVI.getMaskValue(i);
3154 if ((unsigned)SrcVal >= NumElts*2) {
3155 Out << " 0/*undef*/ ";
3156 } else {
3157 Value *Op = SVI.getOperand((unsigned)SrcVal >= NumElts);
3158 if (isa<Instruction>(Op)) {
3159 // Do an extractelement of this value from the appropriate input.
3160 Out << "((";
3161 printType(Out, PointerType::getUnqual(EltTy));
3162 Out << ")(&" << GetValueName(Op)
3163 << "))[" << (SrcVal & NumElts-1) << "]";
3164 } else if (isa<ConstantAggregateZero>(Op) || isa<UndefValue>(Op)) {
3165 Out << "0";
3166 } else {
3167 printConstant(cast<ConstantVector>(Op)->getOperand(SrcVal & NumElts-1));
3168 }
3169 }
3170 }
3171 Out << "}";
3172}
Chris Lattner0452ed62008-03-02 03:57:08 +00003173
Chris Lattner33a44d92008-03-02 03:52:39 +00003174
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00003175//===----------------------------------------------------------------------===//
3176// External Interface declaration
3177//===----------------------------------------------------------------------===//
3178
Chris Lattner1911fd42006-09-04 04:14:57 +00003179bool CTargetMachine::addPassesToEmitWholeFile(PassManager &PM,
3180 std::ostream &o,
3181 CodeGenFileType FileType,
3182 bool Fast) {
Chris Lattner0431c962005-06-25 02:48:37 +00003183 if (FileType != TargetMachine::AssemblyFile) return true;
3184
Gordon Henriksence224772008-01-07 01:30:38 +00003185 PM.add(createGCLoweringPass());
Chris Lattnerf7fe4942005-03-03 01:04:50 +00003186 PM.add(createLowerAllocationsPass(true));
Chris Lattner94f4f8e2004-02-13 23:00:29 +00003187 PM.add(createLowerInvokePass());
Chris Lattnerbad13eb2005-11-02 17:42:58 +00003188 PM.add(createCFGSimplificationPass()); // clean up after lower invoke.
Chris Lattnerf9a05322006-02-13 22:22:42 +00003189 PM.add(new CBackendNameAllUsedStructsAndMergeFunctions());
Chris Lattnerbc641b92006-03-23 05:43:16 +00003190 PM.add(new CWriter(o));
Gordon Henriksence224772008-01-07 01:30:38 +00003191 PM.add(createCollectorMetadataDeleter());
Chris Lattnerf31182a2004-02-13 23:18:48 +00003192 return false;
3193}