blob: 8e84ed366679ad78e049f7a48ea34a2645878667 [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"
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +000027#include "llvm/ADT/StringExtras.h"
Chris Lattner48130352010-01-13 06:38:18 +000028#include "llvm/ADT/SmallString.h"
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +000029#include "llvm/ADT/STLExtras.h"
Chris Lattnerd1cf1b42002-09-20 23:26:33 +000030#include "llvm/Analysis/ConstantsScanner.h"
Chris Lattnercb3ad012004-05-09 20:41:32 +000031#include "llvm/Analysis/FindUsedTypes.h"
32#include "llvm/Analysis/LoopInfo.h"
Anton Korobeynikove641b522009-08-05 09:29:56 +000033#include "llvm/Analysis/ValueTracking.h"
Gordon Henriksence224772008-01-07 01:30:38 +000034#include "llvm/CodeGen/Passes.h"
Chris Lattner30483732004-06-20 07:49:54 +000035#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattner45111d12010-01-16 21:57:06 +000036#include "llvm/Target/Mangler.h"
Chris Lattner94f4f8e2004-02-13 23:00:29 +000037#include "llvm/Transforms/Scalar.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattner5ef31a02010-03-12 18:44:54 +000039#include "llvm/MC/MCContext.h"
Chris Lattnera46a3442010-01-13 21:12:34 +000040#include "llvm/MC/MCSymbol.h"
Reid Spencer519e2392007-01-29 17:51:02 +000041#include "llvm/Target/TargetData.h"
Daniel Dunbar51b198a2009-07-15 20:24:03 +000042#include "llvm/Target/TargetRegistry.h"
Chris Lattner23e90702003-11-25 20:49:55 +000043#include "llvm/Support/CallSite.h"
Chris Lattnera05e0ec2004-05-09 03:42:48 +000044#include "llvm/Support/CFG.h"
Torok Edwindac237e2009-07-08 20:53:28 +000045#include "llvm/Support/ErrorHandling.h"
David Greene71847812009-07-14 20:18:05 +000046#include "llvm/Support/FormattedStream.h"
Chris Lattner23e90702003-11-25 20:49:55 +000047#include "llvm/Support/GetElementPtrTypeIterator.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000048#include "llvm/Support/InstVisitor.h"
Jim Laskeycb6682f2005-08-17 19:34:49 +000049#include "llvm/Support/MathExtras.h"
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +000050#include "llvm/System/Host.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000051#include "llvm/Config/config.h"
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000052#include <algorithm>
Chris Lattner897bf0d2004-02-13 06:18:21 +000053using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000054
Michael J. Spencerbcf4b832010-09-14 04:27:26 +000055extern "C" void LLVMInitializeCBackendTarget() {
Daniel Dunbar0c795d62009-07-25 06:49:55 +000056 // Register the target.
Daniel Dunbar214e2232009-08-04 04:02:45 +000057 RegisterTargetMachine<CTargetMachine> X(TheCBackendTarget);
Daniel Dunbar0c795d62009-07-25 06:49:55 +000058}
Douglas Gregor1555a232009-06-16 20:12:29 +000059
Dan Gohman844731a2008-05-13 00:00:25 +000060namespace {
Chris Lattnerc0dba722010-01-17 18:22:35 +000061 class CBEMCAsmInfo : public MCAsmInfo {
62 public:
Chris Lattner8eeba352010-01-20 06:34:14 +000063 CBEMCAsmInfo() {
Chris Lattnerc0dba722010-01-17 18:22:35 +000064 GlobalPrefix = "";
65 PrivateGlobalPrefix = "";
66 }
67 };
Chris Lattnerf9a05322006-02-13 22:22:42 +000068 /// CBackendNameAllUsedStructsAndMergeFunctions - This pass inserts names for
69 /// any unnamed structure types that are used by the program, and merges
70 /// external functions with the same name.
Chris Lattner68758072004-05-09 06:20:51 +000071 ///
Chris Lattnerf9a05322006-02-13 22:22:42 +000072 class CBackendNameAllUsedStructsAndMergeFunctions : public ModulePass {
Devang Patel794fd752007-05-01 21:15:47 +000073 public:
Devang Patel19974732007-05-03 01:11:54 +000074 static char ID;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +000075 CBackendNameAllUsedStructsAndMergeFunctions()
Owen Anderson90c579d2010-08-06 18:33:48 +000076 : ModulePass(ID) {}
Chris Lattner68758072004-05-09 06:20:51 +000077 void getAnalysisUsage(AnalysisUsage &AU) const {
78 AU.addRequired<FindUsedTypes>();
79 }
80
81 virtual const char *getPassName() const {
82 return "C backend type canonicalizer";
83 }
84
Chris Lattnerb12914b2004-09-20 04:48:05 +000085 virtual bool runOnModule(Module &M);
Chris Lattner68758072004-05-09 06:20:51 +000086 };
Misha Brukmand6a29a52005-04-20 16:05:03 +000087
Devang Patel19974732007-05-03 01:11:54 +000088 char CBackendNameAllUsedStructsAndMergeFunctions::ID = 0;
Devang Patel794fd752007-05-01 21:15:47 +000089
Chris Lattner68758072004-05-09 06:20:51 +000090 /// CWriter - This class is the main chunk of code that converts an LLVM
91 /// module to a C translation unit.
92 class CWriter : public FunctionPass, public InstVisitor<CWriter> {
David Greene71847812009-07-14 20:18:05 +000093 formatted_raw_ostream &Out;
Reid Spencer519e2392007-01-29 17:51:02 +000094 IntrinsicLowering *IL;
Brian Gaeked9fb37a2003-07-24 20:20:44 +000095 Mangler *Mang;
Chris Lattnercb3ad012004-05-09 20:41:32 +000096 LoopInfo *LI;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +000097 const Module *TheModule;
Chris Lattneraf76e592009-08-22 20:48:53 +000098 const MCAsmInfo* TAsm;
Chris Lattner5ef31a02010-03-12 18:44:54 +000099 MCContext *TCtx;
Reid Spencer519e2392007-01-29 17:51:02 +0000100 const TargetData* TD;
Chris Lattneredd8ce12003-05-03 03:14:35 +0000101 std::map<const Type *, std::string> TypeNames;
Chris Lattneredd8ce12003-05-03 03:14:35 +0000102 std::map<const ConstantFP *, unsigned> FPConstantMap;
Reid Spencer69f80a62007-04-12 21:00:45 +0000103 std::set<Function*> intrinsicPrototypesAlreadyGenerated;
Chris Lattnere05252b42008-03-02 08:07:24 +0000104 std::set<const Argument*> ByValParams;
Chris Lattneraecc22a2008-10-22 04:53:16 +0000105 unsigned FPCounter;
Owen Anderson52132bf2009-06-26 19:48:37 +0000106 unsigned OpaqueCounter;
Chris Lattnerca1bafd2009-07-13 23:46:46 +0000107 DenseMap<const Value*, unsigned> AnonValueNumbers;
108 unsigned NextAnonValueNumber;
Reid Spencer69f80a62007-04-12 21:00:45 +0000109
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000110 public:
Devang Patel19974732007-05-03 01:11:54 +0000111 static char ID;
David Greene71847812009-07-14 20:18:05 +0000112 explicit CWriter(formatted_raw_ostream &o)
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000113 : FunctionPass(ID), Out(o), IL(0), Mang(0), LI(0),
Jeffrey Yasskin509bcb12010-03-19 07:06:46 +0000114 TheModule(0), TAsm(0), TCtx(0), TD(0), OpaqueCounter(0),
115 NextAnonValueNumber(0) {
Chris Lattneraecc22a2008-10-22 04:53:16 +0000116 FPCounter = 0;
117 }
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000118
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000119 virtual const char *getPassName() const { return "C backend"; }
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000120
Chris Lattnercb3ad012004-05-09 20:41:32 +0000121 void getAnalysisUsage(AnalysisUsage &AU) const {
122 AU.addRequired<LoopInfo>();
123 AU.setPreservesAll();
124 }
125
Chris Lattner68758072004-05-09 06:20:51 +0000126 virtual bool doInitialization(Module &M);
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000127
Chris Lattner68758072004-05-09 06:20:51 +0000128 bool runOnFunction(Function &F) {
Chris Lattner9062d9a2009-04-17 00:26:12 +0000129 // Do not codegen any 'available_externally' functions at all, they have
130 // definitions outside the translation unit.
131 if (F.hasAvailableExternallyLinkage())
132 return false;
133
Chris Lattnercb3ad012004-05-09 20:41:32 +0000134 LI = &getAnalysis<LoopInfo>();
135
Chris Lattner3150e2d2004-12-05 06:49:44 +0000136 // Get rid of intrinsics we can't handle.
137 lowerIntrinsics(F);
138
Chris Lattner68758072004-05-09 06:20:51 +0000139 // Output all floating point constants that cannot be printed accurately.
140 printFloatingPointConstants(F);
Chris Lattner3150e2d2004-12-05 06:49:44 +0000141
Chris Lattner68758072004-05-09 06:20:51 +0000142 printFunction(F);
Chris Lattner68758072004-05-09 06:20:51 +0000143 return false;
144 }
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000145
Chris Lattner68758072004-05-09 06:20:51 +0000146 virtual bool doFinalization(Module &M) {
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000147 // Free memory...
Nuno Lopesbb6382e2009-01-13 23:35:49 +0000148 delete IL;
149 delete TD;
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000150 delete Mang;
Jeffrey Yasskin509bcb12010-03-19 07:06:46 +0000151 delete TCtx;
152 delete TAsm;
Evan Cheng588c6f82008-01-11 09:12:49 +0000153 FPConstantMap.clear();
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000154 TypeNames.clear();
Evan Cheng588c6f82008-01-11 09:12:49 +0000155 ByValParams.clear();
Chris Lattnere05252b42008-03-02 08:07:24 +0000156 intrinsicPrototypesAlreadyGenerated.clear();
Chris Lattnercb3ad012004-05-09 20:41:32 +0000157 return false;
Chris Lattner0e9f93e2002-08-31 00:29:16 +0000158 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000159
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000160 raw_ostream &printType(raw_ostream &Out, const Type *Ty,
David Greene71847812009-07-14 20:18:05 +0000161 bool isSigned = false,
162 const std::string &VariableName = "",
163 bool IgnoreName = false,
164 const AttrListPtr &PAL = AttrListPtr());
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000165 raw_ostream &printSimpleType(raw_ostream &Out, const Type *Ty,
166 bool isSigned,
Owen Andersoncb371882008-08-21 00:14:44 +0000167 const std::string &NameSoFar = "");
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000168
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000169 void printStructReturnPointerFunctionType(raw_ostream &Out,
Devang Patel05988662008-09-25 21:00:45 +0000170 const AttrListPtr &PAL,
Chris Lattner0c54d892006-05-23 23:39:48 +0000171 const PointerType *Ty);
Chris Lattnere05252b42008-03-02 08:07:24 +0000172
173 /// writeOperandDeref - Print the result of dereferencing the specified
174 /// operand with '*'. This is equivalent to printing '*' then using
175 /// writeOperand, but avoids excess syntax in some cases.
176 void writeOperandDeref(Value *Operand) {
177 if (isAddressExposed(Operand)) {
178 // Already something with an address exposed.
179 writeOperandInternal(Operand);
180 } else {
181 Out << "*(";
182 writeOperand(Operand);
183 Out << ")";
184 }
185 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000186
Dan Gohman9f8d5712008-07-24 17:57:48 +0000187 void writeOperand(Value *Operand, bool Static = false);
Chris Lattnere56d9462008-05-31 09:23:55 +0000188 void writeInstComputationInline(Instruction &I);
Dan Gohman9f8d5712008-07-24 17:57:48 +0000189 void writeOperandInternal(Value *Operand, bool Static = false);
Reid Spencer1628cec2006-10-26 06:15:43 +0000190 void writeOperandWithCast(Value* Operand, unsigned Opcode);
Chris Lattner5bda9e42007-09-15 06:51:03 +0000191 void writeOperandWithCast(Value* Operand, const ICmpInst &I);
Reid Spencer1628cec2006-10-26 06:15:43 +0000192 bool writeInstructionCast(const Instruction &I);
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000193
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +0000194 void writeMemoryAccess(Value *Operand, const Type *OperandType,
195 bool IsVolatile, unsigned Alignment);
196
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000197 private :
Andrew Lenharthe0cf0752006-11-28 19:53:36 +0000198 std::string InterpretASMConstraint(InlineAsm::ConstraintInfo& c);
199
Chris Lattnerc2421432004-05-09 04:30:20 +0000200 void lowerIntrinsics(Function &F);
Chris Lattner4ef51372004-02-14 00:31:10 +0000201
Reid Spencer78d033e2007-01-06 07:24:44 +0000202 void printModuleTypes(const TypeSymbolTable &ST);
Dan Gohman193c2352008-06-02 21:30:49 +0000203 void printContainedStructs(const Type *Ty, std::set<const Type *> &);
Chris Lattner68758072004-05-09 06:20:51 +0000204 void printFloatingPointConstants(Function &F);
Chris Lattneraecc22a2008-10-22 04:53:16 +0000205 void printFloatingPointConstants(const Constant *C);
Chris Lattner4cda8352002-08-20 16:55:48 +0000206 void printFunctionSignature(const Function *F, bool Prototype);
207
Chris Lattner94f4f8e2004-02-13 23:00:29 +0000208 void printFunction(Function &);
Chris Lattnercb3ad012004-05-09 20:41:32 +0000209 void printBasicBlock(BasicBlock *BB);
210 void printLoop(Loop *L);
Chris Lattnerb5af06a2002-05-09 03:06:06 +0000211
Reid Spencer3da59db2006-11-27 01:05:10 +0000212 void printCast(unsigned opcode, const Type *SrcTy, const Type *DstTy);
Dan Gohman9f8d5712008-07-24 17:57:48 +0000213 void printConstant(Constant *CPV, bool Static);
Reid Spencer1628cec2006-10-26 06:15:43 +0000214 void printConstantWithCast(Constant *CPV, unsigned Opcode);
Dan Gohman9f8d5712008-07-24 17:57:48 +0000215 bool printConstExprCast(const ConstantExpr *CE, bool Static);
216 void printConstantArray(ConstantArray *CPA, bool Static);
217 void printConstantVector(ConstantVector *CV, bool Static);
Chris Lattner6d492922002-08-19 21:32:41 +0000218
Chris Lattnere05252b42008-03-02 08:07:24 +0000219 /// isAddressExposed - Return true if the specified value's name needs to
220 /// have its address taken in order to get a C value of the correct type.
221 /// This happens for global variables, byval parameters, and direct allocas.
222 bool isAddressExposed(const Value *V) const {
223 if (const Argument *A = dyn_cast<Argument>(V))
224 return ByValParams.count(A);
225 return isa<GlobalVariable>(V) || isDirectAlloca(V);
226 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000227
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000228 // isInlinableInst - Attempt to inline instructions into their uses to build
229 // trees as much as possible. To do this, we have to consistently decide
230 // what is acceptable to inline, so that variable declarations don't get
231 // printed and an extra copy of the expr is not emitted.
232 //
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000233 static bool isInlinableInst(const Instruction &I) {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000234 // Always inline cmp instructions, even if they are shared by multiple
Chris Lattner433e25a2004-05-20 20:25:50 +0000235 // expressions. GCC generates horrible code if we don't.
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000236 if (isa<CmpInst>(I))
Reid Spencere4d87aa2006-12-23 06:05:41 +0000237 return true;
Chris Lattner433e25a2004-05-20 20:25:50 +0000238
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000239 // Must be an expression, must be used exactly once. If it is dead, we
240 // emit it inline where it would go.
Owen Anderson1d0be152009-08-13 21:58:54 +0000241 if (I.getType() == Type::getVoidTy(I.getContext()) || !I.hasOneUse() ||
Misha Brukmand6a29a52005-04-20 16:05:03 +0000242 isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I) ||
Dan Gohman193c2352008-06-02 21:30:49 +0000243 isa<LoadInst>(I) || isa<VAArgInst>(I) || isa<InsertElementInst>(I) ||
244 isa<InsertValueInst>(I))
Chris Lattnerd4e8d312003-07-23 20:45:31 +0000245 // Don't inline a load across a store or other bad things!
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000246 return false;
247
Chris Lattnerb1855ad2008-03-02 05:41:07 +0000248 // Must not be used in inline asm, extractelement, or shufflevector.
249 if (I.hasOneUse()) {
250 const Instruction &User = cast<Instruction>(*I.use_back());
251 if (isInlineAsm(User) || isa<ExtractElementInst>(User) ||
252 isa<ShuffleVectorInst>(User))
253 return false;
254 }
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000255
Reid Spencer555a0b12006-12-11 20:39:15 +0000256 // Only inline instruction it if it's use is in the same BB as the inst.
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000257 return I.getParent() == cast<Instruction>(I.use_back())->getParent();
Chris Lattnerd0c668c2002-05-09 21:18:38 +0000258 }
259
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000260 // isDirectAlloca - Define fixed sized allocas in the entry block as direct
261 // variables which are accessed with the & operator. This causes GCC to
262 // generate significantly better code than to emit alloca calls directly.
263 //
264 static const AllocaInst *isDirectAlloca(const Value *V) {
265 const AllocaInst *AI = dyn_cast<AllocaInst>(V);
Chris Lattneref66df42010-06-14 18:28:57 +0000266 if (!AI) return 0;
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000267 if (AI->isArrayAllocation())
268 return 0; // FIXME: we can also inline fixed size array allocas!
Chris Lattner02a3be02003-09-20 14:39:18 +0000269 if (AI->getParent() != &AI->getParent()->getParent()->getEntryBlock())
Chris Lattnera8ab89e2003-06-17 04:39:14 +0000270 return 0;
271 return AI;
272 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000273
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000274 // isInlineAsm - Check if the instruction is a call to an inline asm chunk
275 static bool isInlineAsm(const Instruction& I) {
Gabor Greife964af62010-04-08 13:08:11 +0000276 if (const CallInst *CI = dyn_cast<CallInst>(&I))
277 return isa<InlineAsm>(CI->getCalledValue());
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000278 return false;
279 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000280
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000281 // Instruction visitation functions
282 friend class InstVisitor<CWriter>;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000283
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000284 void visitReturnInst(ReturnInst &I);
285 void visitBranchInst(BranchInst &I);
Chris Lattnera9f5e052003-04-22 20:19:52 +0000286 void visitSwitchInst(SwitchInst &I);
Chris Lattnerab21db72009-10-28 00:19:10 +0000287 void visitIndirectBrInst(IndirectBrInst &I);
Chris Lattnercb3ad012004-05-09 20:41:32 +0000288 void visitInvokeInst(InvokeInst &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000289 llvm_unreachable("Lowerinvoke pass didn't work!");
Chris Lattnercb3ad012004-05-09 20:41:32 +0000290 }
291
292 void visitUnwindInst(UnwindInst &I) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000293 llvm_unreachable("Lowerinvoke pass didn't work!");
Chris Lattnercb3ad012004-05-09 20:41:32 +0000294 }
Chris Lattnera9d12c02004-10-16 18:12:13 +0000295 void visitUnreachableInst(UnreachableInst &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000296
Chris Lattner84e66652003-05-03 07:11:00 +0000297 void visitPHINode(PHINode &I);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000298 void visitBinaryOperator(Instruction &I);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000299 void visitICmpInst(ICmpInst &I);
300 void visitFCmpInst(FCmpInst &I);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000301
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000302 void visitCastInst (CastInst &I);
Chris Lattner9f24a072004-03-12 05:52:14 +0000303 void visitSelectInst(SelectInst &I);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000304 void visitCallInst (CallInst &I);
Andrew Lenharth29c277f2006-11-27 23:50:49 +0000305 void visitInlineAsm(CallInst &I);
Chris Lattner2299fec2008-03-02 08:29:41 +0000306 bool visitBuiltinCall(CallInst &I, Intrinsic::ID ID, bool &WroteCallee);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000307
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000308 void visitAllocaInst(AllocaInst &I);
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000309 void visitLoadInst (LoadInst &I);
310 void visitStoreInst (StoreInst &I);
311 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner4d45bd02003-10-18 05:57:43 +0000312 void visitVAArgInst (VAArgInst &I);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000313
Chris Lattner33a44d92008-03-02 03:52:39 +0000314 void visitInsertElementInst(InsertElementInst &I);
Chris Lattner0452ed62008-03-02 03:57:08 +0000315 void visitExtractElementInst(ExtractElementInst &I);
Chris Lattnerb1855ad2008-03-02 05:41:07 +0000316 void visitShuffleVectorInst(ShuffleVectorInst &SVI);
Chris Lattner2f5f51a2002-05-09 03:28:37 +0000317
Dan Gohman193c2352008-06-02 21:30:49 +0000318 void visitInsertValueInst(InsertValueInst &I);
319 void visitExtractValueInst(ExtractValueInst &I);
320
Chris Lattnerbb03efd2002-06-25 15:57:03 +0000321 void visitInstruction(Instruction &I) {
Torok Edwindac237e2009-07-08 20:53:28 +0000322#ifndef NDEBUG
Chris Lattnerbdff5482009-08-23 04:37:46 +0000323 errs() << "C Writer does not know about " << I;
Torok Edwindac237e2009-07-08 20:53:28 +0000324#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000325 llvm_unreachable(0);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000326 }
327
328 void outputLValue(Instruction *I) {
Bill Wendling145aad02007-02-23 22:45:08 +0000329 Out << " " << GetValueName(I) << " = ";
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000330 }
Chris Lattnercb3ad012004-05-09 20:41:32 +0000331
332 bool isGotoCodeNecessary(BasicBlock *From, BasicBlock *To);
John Criswell57bbfce2004-10-20 14:38:39 +0000333 void printPHICopiesForSuccessor(BasicBlock *CurBlock,
334 BasicBlock *Successor, unsigned Indent);
Chris Lattner4fbf26d2002-05-09 20:53:56 +0000335 void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
336 unsigned Indent);
Chris Lattnere05252b42008-03-02 08:07:24 +0000337 void printGEPExpression(Value *Ptr, gep_type_iterator I,
Dan Gohman9f8d5712008-07-24 17:57:48 +0000338 gep_type_iterator E, bool Static);
Bill Wendling145aad02007-02-23 22:45:08 +0000339
340 std::string GetValueName(const Value *Operand);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000341 };
Chris Lattner4ef51372004-02-14 00:31:10 +0000342}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +0000343
Devang Patel19974732007-05-03 01:11:54 +0000344char CWriter::ID = 0;
Devang Patel794fd752007-05-01 21:15:47 +0000345
Chris Lattner471f1e92010-01-13 19:54:07 +0000346
Chris Lattner7481ae62010-01-22 18:33:00 +0000347static std::string CBEMangle(const std::string &S) {
Chris Lattner0bd58b02010-01-17 19:32:29 +0000348 std::string Result;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000349
Chris Lattner0bd58b02010-01-17 19:32:29 +0000350 for (unsigned i = 0, e = S.size(); i != e; ++i)
351 if (isalnum(S[i]) || S[i] == '_') {
352 Result += S[i];
353 } else {
354 Result += '_';
355 Result += 'A'+(S[i]&15);
356 Result += 'A'+((S[i]>>4)&15);
357 Result += '_';
358 }
359 return Result;
Chris Lattner471f1e92010-01-13 19:54:07 +0000360}
361
362
Chris Lattner68758072004-05-09 06:20:51 +0000363/// This method inserts names for any unnamed structure types that are used by
364/// the program, and removes names from structure types that are not used by the
365/// program.
366///
Chris Lattnerf9a05322006-02-13 22:22:42 +0000367bool CBackendNameAllUsedStructsAndMergeFunctions::runOnModule(Module &M) {
Chris Lattner68758072004-05-09 06:20:51 +0000368 // Get a set of types that are used by the program...
369 std::set<const Type *> UT = getAnalysis<FindUsedTypes>().getTypes();
Misha Brukmand6a29a52005-04-20 16:05:03 +0000370
Chris Lattner68758072004-05-09 06:20:51 +0000371 // Loop over the module symbol table, removing types from UT that are
Chris Lattnerdbf69f12005-03-08 16:19:59 +0000372 // already named, and removing names for types that are not used.
Chris Lattner68758072004-05-09 06:20:51 +0000373 //
Reid Spencer78d033e2007-01-06 07:24:44 +0000374 TypeSymbolTable &TST = M.getTypeSymbolTable();
375 for (TypeSymbolTable::iterator TI = TST.begin(), TE = TST.end();
Reid Spencer9231ac82004-05-25 08:53:40 +0000376 TI != TE; ) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000377 TypeSymbolTable::iterator I = TI++;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000378
Dan Gohman193c2352008-06-02 21:30:49 +0000379 // If this isn't a struct or array type, remove it from our set of types
380 // to name. This simplifies emission later.
Duncan Sands47c51882010-02-16 14:50:09 +0000381 if (!I->second->isStructTy() && !I->second->isOpaqueTy() &&
Duncan Sands1df98592010-02-16 11:11:14 +0000382 !I->second->isArrayTy()) {
Reid Spencer78d033e2007-01-06 07:24:44 +0000383 TST.remove(I);
Chris Lattner19e8b0c2007-01-16 07:22:23 +0000384 } else {
385 // If this is not used, remove it from the symbol table.
386 std::set<const Type *>::iterator UTI = UT.find(I->second);
387 if (UTI == UT.end())
388 TST.remove(I);
389 else
390 UT.erase(UTI); // Only keep one name for this type.
391 }
Reid Spencer9231ac82004-05-25 08:53:40 +0000392 }
Chris Lattner68758072004-05-09 06:20:51 +0000393
394 // UT now contains types that are not named. Loop over it, naming
395 // structure types.
396 //
397 bool Changed = false;
Chris Lattner9d1af972004-05-28 05:47:27 +0000398 unsigned RenameCounter = 0;
Chris Lattner68758072004-05-09 06:20:51 +0000399 for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
400 I != E; ++I)
Duncan Sands1df98592010-02-16 11:11:14 +0000401 if ((*I)->isStructTy() || (*I)->isArrayTy()) {
Dan Gohman193c2352008-06-02 21:30:49 +0000402 while (M.addTypeName("unnamed"+utostr(RenameCounter), *I))
Chris Lattner9d1af972004-05-28 05:47:27 +0000403 ++RenameCounter;
Chris Lattner68758072004-05-09 06:20:51 +0000404 Changed = true;
405 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000406
407
Chris Lattnerf9a05322006-02-13 22:22:42 +0000408 // Loop over all external functions and globals. If we have two with
409 // identical names, merge them.
410 // FIXME: This code should disappear when we don't allow values with the same
411 // names when they have different types!
412 std::map<std::string, GlobalValue*> ExtSymbols;
413 for (Module::iterator I = M.begin(), E = M.end(); I != E;) {
414 Function *GV = I++;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000415 if (GV->isDeclaration() && GV->hasName()) {
Chris Lattnerf9a05322006-02-13 22:22:42 +0000416 std::pair<std::map<std::string, GlobalValue*>::iterator, bool> X
417 = ExtSymbols.insert(std::make_pair(GV->getName(), GV));
418 if (!X.second) {
419 // Found a conflict, replace this global with the previous one.
420 GlobalValue *OldGV = X.first->second;
Reid Spencer4da49122006-12-12 05:05:00 +0000421 GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
Chris Lattnerf9a05322006-02-13 22:22:42 +0000422 GV->eraseFromParent();
423 Changed = true;
424 }
425 }
426 }
427 // Do the same for globals.
428 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
429 I != E;) {
430 GlobalVariable *GV = I++;
Reid Spencer5cbf9852007-01-30 20:08:39 +0000431 if (GV->isDeclaration() && GV->hasName()) {
Chris Lattnerf9a05322006-02-13 22:22:42 +0000432 std::pair<std::map<std::string, GlobalValue*>::iterator, bool> X
433 = ExtSymbols.insert(std::make_pair(GV->getName(), GV));
434 if (!X.second) {
435 // Found a conflict, replace this global with the previous one.
436 GlobalValue *OldGV = X.first->second;
Reid Spencer4da49122006-12-12 05:05:00 +0000437 GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
Chris Lattnerf9a05322006-02-13 22:22:42 +0000438 GV->eraseFromParent();
439 Changed = true;
440 }
441 }
442 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000443
Chris Lattner68758072004-05-09 06:20:51 +0000444 return Changed;
445}
446
Chris Lattner0c54d892006-05-23 23:39:48 +0000447/// printStructReturnPointerFunctionType - This is like printType for a struct
448/// return type, except, instead of printing the type as void (*)(Struct*, ...)
449/// print it as "Struct (*)(...)", for struct return functions.
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000450void CWriter::printStructReturnPointerFunctionType(raw_ostream &Out,
Devang Patel05988662008-09-25 21:00:45 +0000451 const AttrListPtr &PAL,
Chris Lattner0c54d892006-05-23 23:39:48 +0000452 const PointerType *TheTy) {
453 const FunctionType *FTy = cast<FunctionType>(TheTy->getElementType());
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000454 std::string tstr;
455 raw_string_ostream FunctionInnards(tstr);
Chris Lattner0c54d892006-05-23 23:39:48 +0000456 FunctionInnards << " (*) (";
457 bool PrintedType = false;
458
459 FunctionType::param_iterator I = FTy->param_begin(), E = FTy->param_end();
460 const Type *RetTy = cast<PointerType>(I->get())->getElementType();
Reid Spencer0ae96932007-01-07 03:24:48 +0000461 unsigned Idx = 1;
Evan Cheng681d2b82008-01-11 03:07:46 +0000462 for (++I, ++Idx; I != E; ++I, ++Idx) {
Chris Lattner0c54d892006-05-23 23:39:48 +0000463 if (PrintedType)
464 FunctionInnards << ", ";
Evan Cheng681d2b82008-01-11 03:07:46 +0000465 const Type *ArgTy = *I;
Devang Patel05988662008-09-25 21:00:45 +0000466 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Duncan Sands1df98592010-02-16 11:11:14 +0000467 assert(ArgTy->isPointerTy());
Evan Cheng588c6f82008-01-11 09:12:49 +0000468 ArgTy = cast<PointerType>(ArgTy)->getElementType();
469 }
Evan Cheng681d2b82008-01-11 03:07:46 +0000470 printType(FunctionInnards, ArgTy,
Devang Patel05988662008-09-25 21:00:45 +0000471 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
Chris Lattner0c54d892006-05-23 23:39:48 +0000472 PrintedType = true;
473 }
474 if (FTy->isVarArg()) {
Chris Lattner5106dcd2010-04-10 19:12:44 +0000475 if (!PrintedType)
476 FunctionInnards << " int"; //dummy argument for empty vararg functs
477 FunctionInnards << ", ...";
Chris Lattner0c54d892006-05-23 23:39:48 +0000478 } else if (!PrintedType) {
479 FunctionInnards << "void";
480 }
481 FunctionInnards << ')';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000482 printType(Out, RetTy,
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000483 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
Chris Lattner0c54d892006-05-23 23:39:48 +0000484}
485
Owen Andersoncb371882008-08-21 00:14:44 +0000486raw_ostream &
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000487CWriter::printSimpleType(raw_ostream &Out, const Type *Ty, bool isSigned,
Chris Lattner90683ab2008-03-02 03:41:23 +0000488 const std::string &NameSoFar) {
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000489 assert((Ty->isPrimitiveType() || Ty->isIntegerTy() || Ty->isVectorTy()) &&
Reid Spencera54b7cb2007-01-12 07:05:14 +0000490 "Invalid type for printSimpleType");
Reid Spencere4d87aa2006-12-23 06:05:41 +0000491 switch (Ty->getTypeID()) {
Reid Spencera54b7cb2007-01-12 07:05:14 +0000492 case Type::VoidTyID: return Out << "void " << NameSoFar;
493 case Type::IntegerTyID: {
494 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000495 if (NumBits == 1)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000496 return Out << "bool " << NameSoFar;
497 else if (NumBits <= 8)
498 return Out << (isSigned?"signed":"unsigned") << " char " << NameSoFar;
499 else if (NumBits <= 16)
500 return Out << (isSigned?"signed":"unsigned") << " short " << NameSoFar;
501 else if (NumBits <= 32)
502 return Out << (isSigned?"signed":"unsigned") << " int " << NameSoFar;
Dan Gohmand7614802008-04-02 19:40:14 +0000503 else if (NumBits <= 64)
Reid Spencera54b7cb2007-01-12 07:05:14 +0000504 return Out << (isSigned?"signed":"unsigned") << " long long "<< NameSoFar;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000505 else {
Dan Gohmand7614802008-04-02 19:40:14 +0000506 assert(NumBits <= 128 && "Bit widths > 128 not implemented yet");
507 return Out << (isSigned?"llvmInt128":"llvmUInt128") << " " << NameSoFar;
Reid Spencera54b7cb2007-01-12 07:05:14 +0000508 }
509 }
510 case Type::FloatTyID: return Out << "float " << NameSoFar;
511 case Type::DoubleTyID: return Out << "double " << NameSoFar;
Dale Johannesen53f0bc12007-09-17 00:38:27 +0000512 // Lacking emulation of FP80 on PPC, etc., we assume whichever of these is
513 // present matches host 'long double'.
514 case Type::X86_FP80TyID:
515 case Type::PPC_FP128TyID:
516 case Type::FP128TyID: return Out << "long double " << NameSoFar;
Dale Johannesenbb811a22010-09-10 20:55:01 +0000517
518 case Type::X86_MMXTyID:
519 return printSimpleType(Out, Type::getInt32Ty(Ty->getContext()), isSigned,
520 " __attribute__((vector_size(64))) " + NameSoFar);
521
Chris Lattnerb61d41b2008-03-02 03:33:31 +0000522 case Type::VectorTyID: {
523 const VectorType *VTy = cast<VectorType>(Ty);
Chris Lattner90683ab2008-03-02 03:41:23 +0000524 return printSimpleType(Out, VTy->getElementType(), isSigned,
Chris Lattner32cba8e2008-03-02 03:39:43 +0000525 " __attribute__((vector_size(" +
Duncan Sands777d2302009-05-09 07:06:46 +0000526 utostr(TD->getTypeAllocSize(VTy)) + " ))) " + NameSoFar);
Chris Lattnerb61d41b2008-03-02 03:33:31 +0000527 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000528
Chris Lattnerb61d41b2008-03-02 03:33:31 +0000529 default:
Torok Edwindac237e2009-07-08 20:53:28 +0000530#ifndef NDEBUG
Chris Lattnerbdff5482009-08-23 04:37:46 +0000531 errs() << "Unknown primitive type: " << *Ty << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +0000532#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000533 llvm_unreachable(0);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000534 }
535}
Chris Lattner68758072004-05-09 06:20:51 +0000536
Chris Lattner83c57752002-08-19 22:17:53 +0000537// Pass the Type* and the variable name and this prints out the variable
538// declaration.
539//
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000540raw_ostream &CWriter::printType(raw_ostream &Out, const Type *Ty,
David Greene71847812009-07-14 20:18:05 +0000541 bool isSigned, const std::string &NameSoFar,
542 bool IgnoreName, const AttrListPtr &PAL) {
Duncan Sands1df98592010-02-16 11:11:14 +0000543 if (Ty->isPrimitiveType() || Ty->isIntegerTy() || Ty->isVectorTy()) {
Owen Andersoncb371882008-08-21 00:14:44 +0000544 printSimpleType(Out, Ty, isSigned, NameSoFar);
545 return Out;
546 }
547
548 // Check to see if the type is named.
Duncan Sands47c51882010-02-16 14:50:09 +0000549 if (!IgnoreName || Ty->isOpaqueTy()) {
Owen Andersoncb371882008-08-21 00:14:44 +0000550 std::map<const Type *, std::string>::iterator I = TypeNames.find(Ty);
551 if (I != TypeNames.end()) return Out << I->second << ' ' << NameSoFar;
552 }
553
554 switch (Ty->getTypeID()) {
555 case Type::FunctionTyID: {
556 const FunctionType *FTy = cast<FunctionType>(Ty);
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000557 std::string tstr;
558 raw_string_ostream FunctionInnards(tstr);
Owen Andersoncb371882008-08-21 00:14:44 +0000559 FunctionInnards << " (" << NameSoFar << ") (";
560 unsigned Idx = 1;
561 for (FunctionType::param_iterator I = FTy->param_begin(),
562 E = FTy->param_end(); I != E; ++I) {
563 const Type *ArgTy = *I;
Devang Patel05988662008-09-25 21:00:45 +0000564 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Duncan Sands1df98592010-02-16 11:11:14 +0000565 assert(ArgTy->isPointerTy());
Owen Andersoncb371882008-08-21 00:14:44 +0000566 ArgTy = cast<PointerType>(ArgTy)->getElementType();
567 }
568 if (I != FTy->param_begin())
569 FunctionInnards << ", ";
570 printType(FunctionInnards, ArgTy,
Devang Patel05988662008-09-25 21:00:45 +0000571 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
Owen Andersoncb371882008-08-21 00:14:44 +0000572 ++Idx;
573 }
574 if (FTy->isVarArg()) {
Chris Lattner5106dcd2010-04-10 19:12:44 +0000575 if (!FTy->getNumParams())
576 FunctionInnards << " int"; //dummy argument for empty vaarg functs
577 FunctionInnards << ", ...";
Owen Andersoncb371882008-08-21 00:14:44 +0000578 } else if (!FTy->getNumParams()) {
579 FunctionInnards << "void";
580 }
581 FunctionInnards << ')';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000582 printType(Out, FTy->getReturnType(),
Duncan Sandsbb1d4512010-02-21 19:15:19 +0000583 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
Nick Hildenbrandt98502372002-11-18 20:55:50 +0000584 return Out;
Chris Lattner83c57752002-08-19 22:17:53 +0000585 }
586 case Type::StructTyID: {
587 const StructType *STy = cast<StructType>(Ty);
588 Out << NameSoFar + " {\n";
589 unsigned Idx = 0;
Chris Lattnerd21cd802004-02-09 04:37:31 +0000590 for (StructType::element_iterator I = STy->element_begin(),
591 E = STy->element_end(); I != E; ++I) {
Chris Lattner83c57752002-08-19 22:17:53 +0000592 Out << " ";
Reid Spencer251f2142007-01-09 17:09:09 +0000593 printType(Out, *I, false, "field" + utostr(Idx++));
Chris Lattner83c57752002-08-19 22:17:53 +0000594 Out << ";\n";
595 }
Lauro Ramos Venancioa126bb72007-07-11 19:56:53 +0000596 Out << '}';
597 if (STy->isPacked())
598 Out << " __attribute__ ((packed))";
599 return Out;
Misha Brukmand6a29a52005-04-20 16:05:03 +0000600 }
Chris Lattner83c57752002-08-19 22:17:53 +0000601
602 case Type::PointerTyID: {
603 const PointerType *PTy = cast<PointerType>(Ty);
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000604 std::string ptrName = "*" + NameSoFar;
605
Duncan Sands1df98592010-02-16 11:11:14 +0000606 if (PTy->getElementType()->isArrayTy() ||
607 PTy->getElementType()->isVectorTy())
Chris Lattner8917d362003-11-03 04:31:54 +0000608 ptrName = "(" + ptrName + ")";
Vikram S. Adve969c4ad2002-08-25 20:00:08 +0000609
Chris Lattner58d74912008-03-12 17:45:29 +0000610 if (!PAL.isEmpty())
Evan Cheng7723ab32008-01-12 18:53:07 +0000611 // Must be a function ptr cast!
612 return printType(Out, PTy->getElementType(), false, ptrName, true, PAL);
Reid Spencer251f2142007-01-09 17:09:09 +0000613 return printType(Out, PTy->getElementType(), false, ptrName);
Misha Brukman8f9f9a22003-07-21 16:34:35 +0000614 }
Chris Lattner83c57752002-08-19 22:17:53 +0000615
616 case Type::ArrayTyID: {
617 const ArrayType *ATy = cast<ArrayType>(Ty);
618 unsigned NumElements = ATy->getNumElements();
Chris Lattner3e3b6f72004-12-15 23:13:15 +0000619 if (NumElements == 0) NumElements = 1;
Dan Gohman193c2352008-06-02 21:30:49 +0000620 // Arrays are wrapped in structs to allow them to have normal
621 // value semantics (avoiding the array "decay").
622 Out << NameSoFar << " { ";
623 printType(Out, ATy->getElementType(), false,
624 "array[" + utostr(NumElements) + "]");
625 return Out << "; }";
Chris Lattner83c57752002-08-19 22:17:53 +0000626 }
Chris Lattner04b72c82002-10-16 00:08:22 +0000627
628 case Type::OpaqueTyID: {
Owen Anderson52132bf2009-06-26 19:48:37 +0000629 std::string TyName = "struct opaque_" + itostr(OpaqueCounter++);
Chris Lattner04b72c82002-10-16 00:08:22 +0000630 assert(TypeNames.find(Ty) == TypeNames.end());
631 TypeNames[Ty] = TyName;
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000632 return Out << TyName << ' ' << NameSoFar;
Chris Lattner04b72c82002-10-16 00:08:22 +0000633 }
Chris Lattner83c57752002-08-19 22:17:53 +0000634 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000635 llvm_unreachable("Unhandled case in getTypeProps!");
Chris Lattner83c57752002-08-19 22:17:53 +0000636 }
637
638 return Out;
639}
640
Dan Gohman9f8d5712008-07-24 17:57:48 +0000641void CWriter::printConstantArray(ConstantArray *CPA, bool Static) {
Chris Lattner6d492922002-08-19 21:32:41 +0000642
643 // As a special case, print the array as a string if it is an array of
644 // ubytes or an array of sbytes with positive values.
Misha Brukmand6a29a52005-04-20 16:05:03 +0000645 //
Chris Lattner6d492922002-08-19 21:32:41 +0000646 const Type *ETy = CPA->getType()->getElementType();
Owen Anderson1d0be152009-08-13 21:58:54 +0000647 bool isString = (ETy == Type::getInt8Ty(CPA->getContext()) ||
648 ETy == Type::getInt8Ty(CPA->getContext()));
Chris Lattner6d492922002-08-19 21:32:41 +0000649
650 // Make sure the last character is a null char, as automatically added by C
Chris Lattner02da6c02003-06-16 12:09:09 +0000651 if (isString && (CPA->getNumOperands() == 0 ||
652 !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
Chris Lattner6d492922002-08-19 21:32:41 +0000653 isString = false;
Misha Brukmand6a29a52005-04-20 16:05:03 +0000654
Chris Lattner6d492922002-08-19 21:32:41 +0000655 if (isString) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000656 Out << '\"';
Chris Lattner02da6c02003-06-16 12:09:09 +0000657 // Keep track of whether the last number was a hexadecimal escape
658 bool LastWasHex = false;
659
Chris Lattner6d492922002-08-19 21:32:41 +0000660 // Do not include the last character, which we know is null
661 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000662 unsigned char C = cast<ConstantInt>(CPA->getOperand(i))->getZExtValue();
Misha Brukmand6a29a52005-04-20 16:05:03 +0000663
Chris Lattner02da6c02003-06-16 12:09:09 +0000664 // Print it out literally if it is a printable character. The only thing
665 // to be careful about is when the last letter output was a hex escape
666 // code, in which case we have to be careful not to print out hex digits
Chris Lattnerda920902003-06-16 12:21:19 +0000667 // explicitly (the C compiler thinks it is a continuation of the previous
668 // character, sheesh...)
Chris Lattner02da6c02003-06-16 12:09:09 +0000669 //
670 if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
671 LastWasHex = false;
Nick Hildenbrandt088b4722002-11-06 21:40:23 +0000672 if (C == '"' || C == '\\')
Chris Lattner1f0f37a2008-08-21 05:51:43 +0000673 Out << "\\" << (char)C;
Nick Hildenbrandtc3dd2af2002-09-30 21:11:55 +0000674 else
Chris Lattner1f0f37a2008-08-21 05:51:43 +0000675 Out << (char)C;
Chris Lattner6d492922002-08-19 21:32:41 +0000676 } else {
Chris Lattner02da6c02003-06-16 12:09:09 +0000677 LastWasHex = false;
Chris Lattner6d492922002-08-19 21:32:41 +0000678 switch (C) {
679 case '\n': Out << "\\n"; break;
680 case '\t': Out << "\\t"; break;
681 case '\r': Out << "\\r"; break;
682 case '\v': Out << "\\v"; break;
683 case '\a': Out << "\\a"; break;
Nick Hildenbrandtc3dd2af2002-09-30 21:11:55 +0000684 case '\"': Out << "\\\""; break;
Misha Brukmand6a29a52005-04-20 16:05:03 +0000685 case '\'': Out << "\\\'"; break;
Chris Lattner6d492922002-08-19 21:32:41 +0000686 default:
687 Out << "\\x";
Chris Lattner02da6c02003-06-16 12:09:09 +0000688 Out << (char)(( C/16 < 10) ? ( C/16 +'0') : ( C/16 -10+'A'));
689 Out << (char)(((C&15) < 10) ? ((C&15)+'0') : ((C&15)-10+'A'));
690 LastWasHex = true;
Chris Lattner6d492922002-08-19 21:32:41 +0000691 break;
692 }
693 }
694 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000695 Out << '\"';
Chris Lattner6d492922002-08-19 21:32:41 +0000696 } else {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000697 Out << '{';
Chris Lattner6d492922002-08-19 21:32:41 +0000698 if (CPA->getNumOperands()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000699 Out << ' ';
Dan Gohman9f8d5712008-07-24 17:57:48 +0000700 printConstant(cast<Constant>(CPA->getOperand(0)), Static);
Chris Lattner6d492922002-08-19 21:32:41 +0000701 for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
702 Out << ", ";
Dan Gohman9f8d5712008-07-24 17:57:48 +0000703 printConstant(cast<Constant>(CPA->getOperand(i)), Static);
Chris Lattner6d492922002-08-19 21:32:41 +0000704 }
705 }
706 Out << " }";
707 }
708}
709
Dan Gohman9f8d5712008-07-24 17:57:48 +0000710void CWriter::printConstantVector(ConstantVector *CP, bool Static) {
Robert Bocchinob78e8382006-01-20 20:43:57 +0000711 Out << '{';
712 if (CP->getNumOperands()) {
713 Out << ' ';
Dan Gohman9f8d5712008-07-24 17:57:48 +0000714 printConstant(cast<Constant>(CP->getOperand(0)), Static);
Robert Bocchinob78e8382006-01-20 20:43:57 +0000715 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
716 Out << ", ";
Dan Gohman9f8d5712008-07-24 17:57:48 +0000717 printConstant(cast<Constant>(CP->getOperand(i)), Static);
Robert Bocchinob78e8382006-01-20 20:43:57 +0000718 }
719 }
720 Out << " }";
721}
722
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000723// isFPCSafeToPrint - Returns true if we may assume that CFP may be written out
724// textually as a double (rather than as a reference to a stack-allocated
725// variable). We decide this by converting CFP to a string and back into a
726// double, and then checking whether the conversion results in a bit-equal
727// double to the original value of CFP. This depends on us and the target C
728// compiler agreeing on the conversion process (which is pretty likely since we
729// only deal in IEEE FP).
730//
Chris Lattnercb3ad012004-05-09 20:41:32 +0000731static bool isFPCSafeToPrint(const ConstantFP *CFP) {
Dale Johannesen23a98552008-10-09 23:00:39 +0000732 bool ignored;
Dale Johannesen53f0bc12007-09-17 00:38:27 +0000733 // Do long doubles in hex for now.
Owen Anderson1d0be152009-08-13 21:58:54 +0000734 if (CFP->getType() != Type::getFloatTy(CFP->getContext()) &&
735 CFP->getType() != Type::getDoubleTy(CFP->getContext()))
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000736 return false;
Dale Johannesen43421b32007-09-06 18:13:44 +0000737 APFloat APF = APFloat(CFP->getValueAPF()); // copy
Owen Anderson1d0be152009-08-13 21:58:54 +0000738 if (CFP->getType() == Type::getFloatTy(CFP->getContext()))
Dale Johannesen23a98552008-10-09 23:00:39 +0000739 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
Reid Spencerbcf81242006-11-05 19:26:37 +0000740#if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000741 char Buffer[100];
Dale Johannesen43421b32007-09-06 18:13:44 +0000742 sprintf(Buffer, "%a", APF.convertToDouble());
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000743 if (!strncmp(Buffer, "0x", 2) ||
744 !strncmp(Buffer, "-0x", 3) ||
745 !strncmp(Buffer, "+0x", 3))
Dale Johannesen43421b32007-09-06 18:13:44 +0000746 return APF.bitwiseIsEqual(APFloat(atof(Buffer)));
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000747 return false;
748#else
Dale Johannesen43421b32007-09-06 18:13:44 +0000749 std::string StrVal = ftostr(APF);
Chris Lattner9860e772003-10-12 04:36:29 +0000750
751 while (StrVal[0] == ' ')
752 StrVal.erase(StrVal.begin());
753
Chris Lattnerdd76aca2003-10-05 00:40:51 +0000754 // Check to make sure that the stringized number is not some string like "Inf"
755 // or NaN. Check that the string matches the "[-+]?[0-9]" regex.
Brian Gaekeb471a232003-06-17 23:55:35 +0000756 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
757 ((StrVal[0] == '-' || StrVal[0] == '+') &&
758 (StrVal[1] >= '0' && StrVal[1] <= '9')))
759 // Reparse stringized version!
Dale Johannesen43421b32007-09-06 18:13:44 +0000760 return APF.bitwiseIsEqual(APFloat(atof(StrVal.c_str())));
Brian Gaekeb471a232003-06-17 23:55:35 +0000761 return false;
Chris Lattner5ef6ffd2003-10-12 08:12:58 +0000762#endif
Brian Gaekeb471a232003-06-17 23:55:35 +0000763}
Chris Lattner6d492922002-08-19 21:32:41 +0000764
Reid Spencer3da59db2006-11-27 01:05:10 +0000765/// Print out the casting for a cast operation. This does the double casting
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000766/// necessary for conversion to the destination type, if necessary.
Reid Spencer3da59db2006-11-27 01:05:10 +0000767/// @brief Print a cast
768void CWriter::printCast(unsigned opc, const Type *SrcTy, const Type *DstTy) {
Reid Spencere4d87aa2006-12-23 06:05:41 +0000769 // Print the destination type cast
770 switch (opc) {
771 case Instruction::UIToFP:
772 case Instruction::SIToFP:
773 case Instruction::IntToPtr:
774 case Instruction::Trunc:
775 case Instruction::BitCast:
776 case Instruction::FPExt:
777 case Instruction::FPTrunc: // For these the DstTy sign doesn't matter
778 Out << '(';
779 printType(Out, DstTy);
780 Out << ')';
781 break;
782 case Instruction::ZExt:
783 case Instruction::PtrToInt:
784 case Instruction::FPToUI: // For these, make sure we get an unsigned dest
785 Out << '(';
Reid Spencera54b7cb2007-01-12 07:05:14 +0000786 printSimpleType(Out, DstTy, false);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000787 Out << ')';
788 break;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000789 case Instruction::SExt:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000790 case Instruction::FPToSI: // For these, make sure we get a signed dest
791 Out << '(';
Reid Spencera54b7cb2007-01-12 07:05:14 +0000792 printSimpleType(Out, DstTy, true);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000793 Out << ')';
794 break;
795 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000796 llvm_unreachable("Invalid cast opcode");
Reid Spencere4d87aa2006-12-23 06:05:41 +0000797 }
798
799 // Print the source type cast
Reid Spencer3da59db2006-11-27 01:05:10 +0000800 switch (opc) {
801 case Instruction::UIToFP:
802 case Instruction::ZExt:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000803 Out << '(';
Reid Spencera54b7cb2007-01-12 07:05:14 +0000804 printSimpleType(Out, SrcTy, false);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000805 Out << ')';
Reid Spencer3da59db2006-11-27 01:05:10 +0000806 break;
807 case Instruction::SIToFP:
808 case Instruction::SExt:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000809 Out << '(';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000810 printSimpleType(Out, SrcTy, true);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000811 Out << ')';
Reid Spencer3da59db2006-11-27 01:05:10 +0000812 break;
813 case Instruction::IntToPtr:
814 case Instruction::PtrToInt:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000815 // Avoid "cast to pointer from integer of different size" warnings
816 Out << "(unsigned long)";
817 break;
Reid Spencer3da59db2006-11-27 01:05:10 +0000818 case Instruction::Trunc:
819 case Instruction::BitCast:
820 case Instruction::FPExt:
821 case Instruction::FPTrunc:
822 case Instruction::FPToSI:
823 case Instruction::FPToUI:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000824 break; // These don't need a source cast.
Reid Spencer3da59db2006-11-27 01:05:10 +0000825 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000826 llvm_unreachable("Invalid cast opcode");
Reid Spencer3da59db2006-11-27 01:05:10 +0000827 break;
828 }
829}
830
Chris Lattner6d492922002-08-19 21:32:41 +0000831// printConstant - The LLVM Constant to C Constant converter.
Dan Gohman9f8d5712008-07-24 17:57:48 +0000832void CWriter::printConstant(Constant *CPV, bool Static) {
Chris Lattner6d492922002-08-19 21:32:41 +0000833 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
834 switch (CE->getOpcode()) {
Reid Spencer3da59db2006-11-27 01:05:10 +0000835 case Instruction::Trunc:
836 case Instruction::ZExt:
837 case Instruction::SExt:
838 case Instruction::FPTrunc:
839 case Instruction::FPExt:
840 case Instruction::UIToFP:
841 case Instruction::SIToFP:
842 case Instruction::FPToUI:
843 case Instruction::FPToSI:
844 case Instruction::PtrToInt:
845 case Instruction::IntToPtr:
846 case Instruction::BitCast:
847 Out << "(";
848 printCast(CE->getOpcode(), CE->getOperand(0)->getType(), CE->getType());
Chris Lattner72623362007-05-03 02:57:13 +0000849 if (CE->getOpcode() == Instruction::SExt &&
Owen Anderson1d0be152009-08-13 21:58:54 +0000850 CE->getOperand(0)->getType() == Type::getInt1Ty(CPV->getContext())) {
Reid Spencercee7ba32007-05-02 02:17:41 +0000851 // Make sure we really sext from bool here by subtracting from 0
852 Out << "0-";
Reid Spencercee7ba32007-05-02 02:17:41 +0000853 }
Dan Gohman9f8d5712008-07-24 17:57:48 +0000854 printConstant(CE->getOperand(0), Static);
Owen Anderson1d0be152009-08-13 21:58:54 +0000855 if (CE->getType() == Type::getInt1Ty(CPV->getContext()) &&
Chris Lattner72623362007-05-03 02:57:13 +0000856 (CE->getOpcode() == Instruction::Trunc ||
857 CE->getOpcode() == Instruction::FPToUI ||
858 CE->getOpcode() == Instruction::FPToSI ||
859 CE->getOpcode() == Instruction::PtrToInt)) {
860 // Make sure we really truncate to bool here by anding with 1
861 Out << "&1u";
862 }
863 Out << ')';
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000864 return;
Chris Lattner72623362007-05-03 02:57:13 +0000865
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000866 case Instruction::GetElementPtr:
Chris Lattnere05252b42008-03-02 08:07:24 +0000867 Out << "(";
868 printGEPExpression(CE->getOperand(0), gep_type_begin(CPV),
Dan Gohman9f8d5712008-07-24 17:57:48 +0000869 gep_type_end(CPV), Static);
Chris Lattnere05252b42008-03-02 08:07:24 +0000870 Out << ")";
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000871 return;
Chris Lattner6683dbf2004-04-01 05:28:26 +0000872 case Instruction::Select:
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000873 Out << '(';
Dan Gohman9f8d5712008-07-24 17:57:48 +0000874 printConstant(CE->getOperand(0), Static);
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000875 Out << '?';
Dan Gohman9f8d5712008-07-24 17:57:48 +0000876 printConstant(CE->getOperand(1), Static);
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000877 Out << ':';
Dan Gohman9f8d5712008-07-24 17:57:48 +0000878 printConstant(CE->getOperand(2), Static);
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000879 Out << ')';
Chris Lattner6683dbf2004-04-01 05:28:26 +0000880 return;
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000881 case Instruction::Add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000882 case Instruction::FAdd:
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000883 case Instruction::Sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000884 case Instruction::FSub:
Chris Lattner29255922003-08-14 19:19:53 +0000885 case Instruction::Mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000886 case Instruction::FMul:
Reid Spencer1628cec2006-10-26 06:15:43 +0000887 case Instruction::SDiv:
888 case Instruction::UDiv:
889 case Instruction::FDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +0000890 case Instruction::URem:
891 case Instruction::SRem:
892 case Instruction::FRem:
Chris Lattnerf376e5e2004-12-29 04:00:09 +0000893 case Instruction::And:
894 case Instruction::Or:
895 case Instruction::Xor:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000896 case Instruction::ICmp:
Brian Gaeke0415b6c2003-11-22 05:02:56 +0000897 case Instruction::Shl:
Reid Spencer3822ff52006-11-08 06:47:33 +0000898 case Instruction::LShr:
899 case Instruction::AShr:
Reid Spencer72ddc212006-10-26 06:17:40 +0000900 {
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000901 Out << '(';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000902 bool NeedsClosingParens = printConstExprCast(CE, Static);
Reid Spencer1628cec2006-10-26 06:15:43 +0000903 printConstantWithCast(CE->getOperand(0), CE->getOpcode());
Chris Lattner29255922003-08-14 19:19:53 +0000904 switch (CE->getOpcode()) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000905 case Instruction::Add:
906 case Instruction::FAdd: Out << " + "; break;
907 case Instruction::Sub:
908 case Instruction::FSub: Out << " - "; break;
909 case Instruction::Mul:
910 case Instruction::FMul: Out << " * "; break;
Reid Spencer0a783f72006-11-02 01:53:59 +0000911 case Instruction::URem:
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000912 case Instruction::SRem:
Reid Spencer0a783f72006-11-02 01:53:59 +0000913 case Instruction::FRem: Out << " % "; break;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000914 case Instruction::UDiv:
915 case Instruction::SDiv:
Reid Spencer1628cec2006-10-26 06:15:43 +0000916 case Instruction::FDiv: Out << " / "; break;
Chris Lattnerf376e5e2004-12-29 04:00:09 +0000917 case Instruction::And: Out << " & "; break;
918 case Instruction::Or: Out << " | "; break;
919 case Instruction::Xor: Out << " ^ "; break;
Brian Gaeke0415b6c2003-11-22 05:02:56 +0000920 case Instruction::Shl: Out << " << "; break;
Reid Spencer3822ff52006-11-08 06:47:33 +0000921 case Instruction::LShr:
922 case Instruction::AShr: Out << " >> "; break;
Reid Spencere4d87aa2006-12-23 06:05:41 +0000923 case Instruction::ICmp:
924 switch (CE->getPredicate()) {
925 case ICmpInst::ICMP_EQ: Out << " == "; break;
926 case ICmpInst::ICMP_NE: Out << " != "; break;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000927 case ICmpInst::ICMP_SLT:
Reid Spencere4d87aa2006-12-23 06:05:41 +0000928 case ICmpInst::ICMP_ULT: Out << " < "; break;
929 case ICmpInst::ICMP_SLE:
930 case ICmpInst::ICMP_ULE: Out << " <= "; break;
931 case ICmpInst::ICMP_SGT:
932 case ICmpInst::ICMP_UGT: Out << " > "; break;
933 case ICmpInst::ICMP_SGE:
934 case ICmpInst::ICMP_UGE: Out << " >= "; break;
Torok Edwinc23197a2009-07-14 16:55:14 +0000935 default: llvm_unreachable("Illegal ICmp predicate");
Reid Spencere4d87aa2006-12-23 06:05:41 +0000936 }
937 break;
Torok Edwinc23197a2009-07-14 16:55:14 +0000938 default: llvm_unreachable("Illegal opcode here!");
Chris Lattner29255922003-08-14 19:19:53 +0000939 }
Reid Spencer1628cec2006-10-26 06:15:43 +0000940 printConstantWithCast(CE->getOperand(1), CE->getOpcode());
941 if (NeedsClosingParens)
942 Out << "))";
Misha Brukmanb70aaa62005-02-14 18:52:35 +0000943 Out << ')';
Chris Lattnerdf35a1c2002-08-19 23:09:46 +0000944 return;
Reid Spencer72ddc212006-10-26 06:17:40 +0000945 }
Reid Spencerb801a272007-01-08 06:58:32 +0000946 case Instruction::FCmp: {
Michael J. Spencerbcf4b832010-09-14 04:27:26 +0000947 Out << '(';
948 bool NeedsClosingParens = printConstExprCast(CE, Static);
Reid Spencerb801a272007-01-08 06:58:32 +0000949 if (CE->getPredicate() == FCmpInst::FCMP_FALSE)
950 Out << "0";
951 else if (CE->getPredicate() == FCmpInst::FCMP_TRUE)
952 Out << "1";
953 else {
954 const char* op = 0;
955 switch (CE->getPredicate()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000956 default: llvm_unreachable("Illegal FCmp predicate");
Reid Spencerb801a272007-01-08 06:58:32 +0000957 case FCmpInst::FCMP_ORD: op = "ord"; break;
958 case FCmpInst::FCMP_UNO: op = "uno"; break;
959 case FCmpInst::FCMP_UEQ: op = "ueq"; break;
960 case FCmpInst::FCMP_UNE: op = "une"; break;
961 case FCmpInst::FCMP_ULT: op = "ult"; break;
962 case FCmpInst::FCMP_ULE: op = "ule"; break;
963 case FCmpInst::FCMP_UGT: op = "ugt"; break;
964 case FCmpInst::FCMP_UGE: op = "uge"; break;
965 case FCmpInst::FCMP_OEQ: op = "oeq"; break;
966 case FCmpInst::FCMP_ONE: op = "one"; break;
967 case FCmpInst::FCMP_OLT: op = "olt"; break;
968 case FCmpInst::FCMP_OLE: op = "ole"; break;
969 case FCmpInst::FCMP_OGT: op = "ogt"; break;
970 case FCmpInst::FCMP_OGE: op = "oge"; break;
971 }
972 Out << "llvm_fcmp_" << op << "(";
973 printConstantWithCast(CE->getOperand(0), CE->getOpcode());
974 Out << ", ";
975 printConstantWithCast(CE->getOperand(1), CE->getOpcode());
976 Out << ")";
977 }
978 if (NeedsClosingParens)
979 Out << "))";
980 Out << ')';
Anton Korobeynikovdceadaf2007-12-21 23:33:44 +0000981 return;
Reid Spencerb801a272007-01-08 06:58:32 +0000982 }
Chris Lattner6d492922002-08-19 21:32:41 +0000983 default:
Torok Edwindac237e2009-07-08 20:53:28 +0000984#ifndef NDEBUG
Chris Lattnerbdff5482009-08-23 04:37:46 +0000985 errs() << "CWriter Error: Unhandled constant expression: "
Bill Wendlingf5da1332006-12-07 22:21:48 +0000986 << *CE << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +0000987#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000988 llvm_unreachable(0);
Chris Lattner6d492922002-08-19 21:32:41 +0000989 }
Dan Gohman17dab192008-05-23 16:57:00 +0000990 } else if (isa<UndefValue>(CPV) && CPV->getType()->isSingleValueType()) {
Chris Lattner665825e2004-10-17 17:48:59 +0000991 Out << "((";
Reid Spencere4d87aa2006-12-23 06:05:41 +0000992 printType(Out, CPV->getType()); // sign doesn't matter
Chris Lattnerd9a706e2008-03-02 08:14:45 +0000993 Out << ")/*UNDEF*/";
Duncan Sands1df98592010-02-16 11:11:14 +0000994 if (!CPV->getType()->isVectorTy()) {
Chris Lattnerd9a706e2008-03-02 08:14:45 +0000995 Out << "0)";
996 } else {
997 Out << "{})";
998 }
Chris Lattnera9d12c02004-10-16 18:12:13 +0000999 return;
Chris Lattner6d492922002-08-19 21:32:41 +00001000 }
1001
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001002 if (ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
1003 const Type* Ty = CI->getType();
Owen Anderson1d0be152009-08-13 21:58:54 +00001004 if (Ty == Type::getInt1Ty(CPV->getContext()))
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001005 Out << (CI->getZExtValue() ? '1' : '0');
Owen Anderson1d0be152009-08-13 21:58:54 +00001006 else if (Ty == Type::getInt32Ty(CPV->getContext()))
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001007 Out << CI->getZExtValue() << 'u';
1008 else if (Ty->getPrimitiveSizeInBits() > 32)
1009 Out << CI->getZExtValue() << "ull";
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001010 else {
1011 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001012 printSimpleType(Out, Ty, false) << ')';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001013 if (CI->isMinValue(true))
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001014 Out << CI->getZExtValue() << 'u';
1015 else
1016 Out << CI->getSExtValue();
Dale Johannesenf4786cc2009-05-19 00:46:42 +00001017 Out << ')';
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001018 }
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001019 return;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001020 }
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001021
1022 switch (CPV->getType()->getTypeID()) {
Chris Lattner6d492922002-08-19 21:32:41 +00001023 case Type::FloatTyID:
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001024 case Type::DoubleTyID:
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001025 case Type::X86_FP80TyID:
1026 case Type::PPC_FP128TyID:
1027 case Type::FP128TyID: {
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001028 ConstantFP *FPC = cast<ConstantFP>(CPV);
Chris Lattneredd8ce12003-05-03 03:14:35 +00001029 std::map<const ConstantFP*, unsigned>::iterator I = FPConstantMap.find(FPC);
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001030 if (I != FPConstantMap.end()) {
1031 // Because of FP precision problems we must load from a stack allocated
1032 // value that holds the value in hex.
Owen Anderson1d0be152009-08-13 21:58:54 +00001033 Out << "(*(" << (FPC->getType() == Type::getFloatTy(CPV->getContext()) ?
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001034 "float" :
1035 FPC->getType() == Type::getDoubleTy(CPV->getContext()) ?
Owen Anderson1d0be152009-08-13 21:58:54 +00001036 "double" :
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001037 "long double")
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001038 << "*)&FPConstant" << I->second << ')';
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001039 } else {
Chris Lattnerabec4742008-10-17 06:11:48 +00001040 double V;
Owen Anderson1d0be152009-08-13 21:58:54 +00001041 if (FPC->getType() == Type::getFloatTy(CPV->getContext()))
Chris Lattnerabec4742008-10-17 06:11:48 +00001042 V = FPC->getValueAPF().convertToFloat();
Owen Anderson1d0be152009-08-13 21:58:54 +00001043 else if (FPC->getType() == Type::getDoubleTy(CPV->getContext()))
Chris Lattnerabec4742008-10-17 06:11:48 +00001044 V = FPC->getValueAPF().convertToDouble();
1045 else {
1046 // Long double. Convert the number to double, discarding precision.
1047 // This is not awesome, but it at least makes the CBE output somewhat
1048 // useful.
1049 APFloat Tmp = FPC->getValueAPF();
1050 bool LosesInfo;
1051 Tmp.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &LosesInfo);
1052 V = Tmp.convertToDouble();
1053 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001054
Dale Johannesen43421b32007-09-06 18:13:44 +00001055 if (IsNAN(V)) {
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001056 // The value is NaN
Misha Brukmand6a29a52005-04-20 16:05:03 +00001057
Dale Johannesen43421b32007-09-06 18:13:44 +00001058 // FIXME the actual NaN bits should be emitted.
Brian Gaeke8a702e82004-08-25 19:00:42 +00001059 // The prefix for a quiet NaN is 0x7FF8. For a signalling NaN,
1060 // it's 0x7ff4.
1061 const unsigned long QuietNaN = 0x7ff8UL;
Reid Spencer3ed469c2006-11-02 20:25:50 +00001062 //const unsigned long SignalNaN = 0x7ff4UL;
Brian Gaeke8a702e82004-08-25 19:00:42 +00001063
1064 // We need to grab the first part of the FP #
Brian Gaeke8a702e82004-08-25 19:00:42 +00001065 char Buffer[100];
1066
Dale Johannesen43421b32007-09-06 18:13:44 +00001067 uint64_t ll = DoubleToBits(V);
Reid Spencer2bc320d2006-05-31 22:26:11 +00001068 sprintf(Buffer, "0x%llx", static_cast<long long>(ll));
Brian Gaeke8a702e82004-08-25 19:00:42 +00001069
1070 std::string Num(&Buffer[0], &Buffer[6]);
1071 unsigned long Val = strtoul(Num.c_str(), 0, 16);
1072
Owen Anderson1d0be152009-08-13 21:58:54 +00001073 if (FPC->getType() == Type::getFloatTy(FPC->getContext()))
Brian Gaeke8a702e82004-08-25 19:00:42 +00001074 Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "F(\""
1075 << Buffer << "\") /*nan*/ ";
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001076 else
Brian Gaeke8a702e82004-08-25 19:00:42 +00001077 Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "(\""
1078 << Buffer << "\") /*nan*/ ";
Dale Johannesen43421b32007-09-06 18:13:44 +00001079 } else if (IsInf(V)) {
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001080 // The value is Inf
Dale Johannesen43421b32007-09-06 18:13:44 +00001081 if (V < 0) Out << '-';
Owen Anderson1d0be152009-08-13 21:58:54 +00001082 Out << "LLVM_INF" <<
1083 (FPC->getType() == Type::getFloatTy(FPC->getContext()) ? "F" : "")
Brian Gaeke8a702e82004-08-25 19:00:42 +00001084 << " /*inf*/ ";
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001085 } else {
Brian Gaeke07b52b32004-08-25 19:37:26 +00001086 std::string Num;
Reid Spencerbcf81242006-11-05 19:26:37 +00001087#if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
Brian Gaeke07b52b32004-08-25 19:37:26 +00001088 // Print out the constant as a floating point number.
1089 char Buffer[100];
Dale Johannesen43421b32007-09-06 18:13:44 +00001090 sprintf(Buffer, "%a", V);
Brian Gaeke07b52b32004-08-25 19:37:26 +00001091 Num = Buffer;
1092#else
Dale Johannesen43421b32007-09-06 18:13:44 +00001093 Num = ftostr(FPC->getValueAPF());
Brian Gaeke07b52b32004-08-25 19:37:26 +00001094#endif
Dale Johannesen43421b32007-09-06 18:13:44 +00001095 Out << Num;
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001096 }
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001097 }
1098 break;
1099 }
Chris Lattner6d492922002-08-19 21:32:41 +00001100
1101 case Type::ArrayTyID:
Dan Gohman1a245392008-07-23 18:41:03 +00001102 // Use C99 compound expression literal initializer syntax.
Dan Gohman9f8d5712008-07-24 17:57:48 +00001103 if (!Static) {
1104 Out << "(";
1105 printType(Out, CPV->getType());
1106 Out << ")";
1107 }
Dan Gohman193c2352008-06-02 21:30:49 +00001108 Out << "{ "; // Arrays are wrapped in struct types.
Chris Lattner939732a2008-03-02 05:46:57 +00001109 if (ConstantArray *CA = dyn_cast<ConstantArray>(CPV)) {
Dan Gohman9f8d5712008-07-24 17:57:48 +00001110 printConstantArray(CA, Static);
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001111 } else {
1112 assert(isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV));
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001113 const ArrayType *AT = cast<ArrayType>(CPV->getType());
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001114 Out << '{';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001115 if (AT->getNumElements()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001116 Out << ' ';
Owen Andersona7235ea2009-07-31 20:28:14 +00001117 Constant *CZ = Constant::getNullValue(AT->getElementType());
Dan Gohman9f8d5712008-07-24 17:57:48 +00001118 printConstant(CZ, Static);
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001119 for (unsigned i = 1, e = AT->getNumElements(); i != e; ++i) {
1120 Out << ", ";
Dan Gohman9f8d5712008-07-24 17:57:48 +00001121 printConstant(CZ, Static);
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001122 }
1123 }
1124 Out << " }";
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001125 }
Dan Gohman193c2352008-06-02 21:30:49 +00001126 Out << " }"; // Arrays are wrapped in struct types.
Chris Lattner6d492922002-08-19 21:32:41 +00001127 break;
1128
Reid Spencer9d6565a2007-02-15 02:26:10 +00001129 case Type::VectorTyID:
Chris Lattner85feab62008-03-02 03:29:50 +00001130 // Use C99 compound expression literal initializer syntax.
Dan Gohman9f8d5712008-07-24 17:57:48 +00001131 if (!Static) {
1132 Out << "(";
1133 printType(Out, CPV->getType());
1134 Out << ")";
1135 }
Chris Lattner939732a2008-03-02 05:46:57 +00001136 if (ConstantVector *CV = dyn_cast<ConstantVector>(CPV)) {
Dan Gohman9f8d5712008-07-24 17:57:48 +00001137 printConstantVector(CV, Static);
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001138 } else {
1139 assert(isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV));
1140 const VectorType *VT = cast<VectorType>(CPV->getType());
1141 Out << "{ ";
Owen Andersona7235ea2009-07-31 20:28:14 +00001142 Constant *CZ = Constant::getNullValue(VT->getElementType());
Dan Gohman9f8d5712008-07-24 17:57:48 +00001143 printConstant(CZ, Static);
Chris Lattner0a3d4d92008-03-02 03:18:46 +00001144 for (unsigned i = 1, e = VT->getNumElements(); i != e; ++i) {
Chris Lattnerc8b6d332008-03-02 03:16:38 +00001145 Out << ", ";
Dan Gohman9f8d5712008-07-24 17:57:48 +00001146 printConstant(CZ, Static);
Robert Bocchinob78e8382006-01-20 20:43:57 +00001147 }
1148 Out << " }";
Robert Bocchinob78e8382006-01-20 20:43:57 +00001149 }
1150 break;
1151
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001152 case Type::StructTyID:
Dan Gohman1a245392008-07-23 18:41:03 +00001153 // Use C99 compound expression literal initializer syntax.
Dan Gohman9f8d5712008-07-24 17:57:48 +00001154 if (!Static) {
1155 Out << "(";
1156 printType(Out, CPV->getType());
1157 Out << ")";
1158 }
Chris Lattnera9d12c02004-10-16 18:12:13 +00001159 if (isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV)) {
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001160 const StructType *ST = cast<StructType>(CPV->getType());
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001161 Out << '{';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001162 if (ST->getNumElements()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001163 Out << ' ';
Owen Andersona7235ea2009-07-31 20:28:14 +00001164 printConstant(Constant::getNullValue(ST->getElementType(0)), Static);
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001165 for (unsigned i = 1, e = ST->getNumElements(); i != e; ++i) {
1166 Out << ", ";
Owen Andersona7235ea2009-07-31 20:28:14 +00001167 printConstant(Constant::getNullValue(ST->getElementType(i)), Static);
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001168 }
Chris Lattner6d492922002-08-19 21:32:41 +00001169 }
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001170 Out << " }";
1171 } else {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001172 Out << '{';
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001173 if (CPV->getNumOperands()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001174 Out << ' ';
Dan Gohman9f8d5712008-07-24 17:57:48 +00001175 printConstant(cast<Constant>(CPV->getOperand(0)), Static);
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001176 for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
1177 Out << ", ";
Dan Gohman9f8d5712008-07-24 17:57:48 +00001178 printConstant(cast<Constant>(CPV->getOperand(i)), Static);
Chris Lattnercfb0fd22004-02-15 05:54:27 +00001179 }
1180 }
1181 Out << " }";
Chris Lattner6d492922002-08-19 21:32:41 +00001182 }
Chris Lattner6d492922002-08-19 21:32:41 +00001183 break;
Chris Lattner6d492922002-08-19 21:32:41 +00001184
1185 case Type::PointerTyID:
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001186 if (isa<ConstantPointerNull>(CPV)) {
Chris Lattnercf135cb2003-06-02 03:10:53 +00001187 Out << "((";
Reid Spencere4d87aa2006-12-23 06:05:41 +00001188 printType(Out, CPV->getType()); // sign doesn't matter
Chris Lattnercf135cb2003-06-02 03:10:53 +00001189 Out << ")/*NULL*/0)";
Chris Lattner6d492922002-08-19 21:32:41 +00001190 break;
Reid Spencer518310c2004-07-18 00:44:37 +00001191 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(CPV)) {
Dan Gohman9f8d5712008-07-24 17:57:48 +00001192 writeOperand(GV, Static);
Chris Lattner6d492922002-08-19 21:32:41 +00001193 break;
1194 }
1195 // FALL THROUGH
1196 default:
Torok Edwindac237e2009-07-08 20:53:28 +00001197#ifndef NDEBUG
Chris Lattnerbdff5482009-08-23 04:37:46 +00001198 errs() << "Unknown constant type: " << *CPV << "\n";
Torok Edwindac237e2009-07-08 20:53:28 +00001199#endif
Torok Edwinc23197a2009-07-14 16:55:14 +00001200 llvm_unreachable(0);
Chris Lattner6d492922002-08-19 21:32:41 +00001201 }
1202}
1203
Reid Spencer1628cec2006-10-26 06:15:43 +00001204// Some constant expressions need to be casted back to the original types
1205// because their operands were casted to the expected type. This function takes
1206// care of detecting that case and printing the cast for the ConstantExpr.
Dan Gohman9f8d5712008-07-24 17:57:48 +00001207bool CWriter::printConstExprCast(const ConstantExpr* CE, bool Static) {
Reid Spencer3822ff52006-11-08 06:47:33 +00001208 bool NeedsExplicitCast = false;
Reid Spencer3da59db2006-11-27 01:05:10 +00001209 const Type *Ty = CE->getOperand(0)->getType();
Reid Spencere4d87aa2006-12-23 06:05:41 +00001210 bool TypeIsSigned = false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001211 switch (CE->getOpcode()) {
Dan Gohman5a11aba2008-07-18 18:43:12 +00001212 case Instruction::Add:
1213 case Instruction::Sub:
1214 case Instruction::Mul:
1215 // We need to cast integer arithmetic so that it is always performed
1216 // as unsigned, to avoid undefined behavior on overflow.
Reid Spencer3822ff52006-11-08 06:47:33 +00001217 case Instruction::LShr:
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001218 case Instruction::URem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001219 case Instruction::UDiv: NeedsExplicitCast = true; break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001220 case Instruction::AShr:
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001221 case Instruction::SRem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001222 case Instruction::SDiv: NeedsExplicitCast = true; TypeIsSigned = true; break;
Reid Spencer3da59db2006-11-27 01:05:10 +00001223 case Instruction::SExt:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001224 Ty = CE->getType();
1225 NeedsExplicitCast = true;
1226 TypeIsSigned = true;
1227 break;
1228 case Instruction::ZExt:
Reid Spencer3da59db2006-11-27 01:05:10 +00001229 case Instruction::Trunc:
1230 case Instruction::FPTrunc:
1231 case Instruction::FPExt:
1232 case Instruction::UIToFP:
1233 case Instruction::SIToFP:
1234 case Instruction::FPToUI:
1235 case Instruction::FPToSI:
1236 case Instruction::PtrToInt:
1237 case Instruction::IntToPtr:
1238 case Instruction::BitCast:
1239 Ty = CE->getType();
1240 NeedsExplicitCast = true;
1241 break;
Reid Spencer1628cec2006-10-26 06:15:43 +00001242 default: break;
1243 }
Reid Spencer3822ff52006-11-08 06:47:33 +00001244 if (NeedsExplicitCast) {
Reid Spencer1628cec2006-10-26 06:15:43 +00001245 Out << "((";
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001246 if (Ty->isIntegerTy() && Ty != Type::getInt1Ty(Ty->getContext()))
Reid Spencera54b7cb2007-01-12 07:05:14 +00001247 printSimpleType(Out, Ty, TypeIsSigned);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001248 else
Reid Spencer251f2142007-01-09 17:09:09 +00001249 printType(Out, Ty); // not integer, sign doesn't matter
Reid Spencer1628cec2006-10-26 06:15:43 +00001250 Out << ")(";
1251 }
Reid Spencer3822ff52006-11-08 06:47:33 +00001252 return NeedsExplicitCast;
Reid Spencer1628cec2006-10-26 06:15:43 +00001253}
1254
1255// Print a constant assuming that it is the operand for a given Opcode. The
1256// opcodes that care about sign need to cast their operands to the expected
1257// type before the operation proceeds. This function does the casting.
1258void CWriter::printConstantWithCast(Constant* CPV, unsigned Opcode) {
1259
1260 // Extract the operand's type, we'll need it.
1261 const Type* OpTy = CPV->getType();
1262
1263 // Indicate whether to do the cast or not.
1264 bool shouldCast = false;
Reid Spencere4d87aa2006-12-23 06:05:41 +00001265 bool typeIsSigned = false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001266
1267 // Based on the Opcode for which this Constant is being written, determine
1268 // the new type to which the operand should be casted by setting the value
Reid Spencer3da59db2006-11-27 01:05:10 +00001269 // of OpTy. If we change OpTy, also set shouldCast to true so it gets
1270 // casted below.
Reid Spencer1628cec2006-10-26 06:15:43 +00001271 switch (Opcode) {
1272 default:
1273 // for most instructions, it doesn't matter
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001274 break;
Dan Gohman5a11aba2008-07-18 18:43:12 +00001275 case Instruction::Add:
1276 case Instruction::Sub:
1277 case Instruction::Mul:
1278 // We need to cast integer arithmetic so that it is always performed
1279 // as unsigned, to avoid undefined behavior on overflow.
Reid Spencer3822ff52006-11-08 06:47:33 +00001280 case Instruction::LShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001281 case Instruction::UDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +00001282 case Instruction::URem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001283 shouldCast = true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001284 break;
Reid Spencer3822ff52006-11-08 06:47:33 +00001285 case Instruction::AShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001286 case Instruction::SDiv:
Reid Spencer0a783f72006-11-02 01:53:59 +00001287 case Instruction::SRem:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001288 shouldCast = true;
1289 typeIsSigned = true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001290 break;
1291 }
1292
Reid Spencer3da59db2006-11-27 01:05:10 +00001293 // Write out the casted constant if we should, otherwise just write the
Reid Spencer1628cec2006-10-26 06:15:43 +00001294 // operand.
1295 if (shouldCast) {
1296 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001297 printSimpleType(Out, OpTy, typeIsSigned);
Reid Spencer1628cec2006-10-26 06:15:43 +00001298 Out << ")";
Dan Gohman9f8d5712008-07-24 17:57:48 +00001299 printConstant(CPV, false);
Reid Spencer1628cec2006-10-26 06:15:43 +00001300 Out << ")";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001301 } else
Dan Gohman9f8d5712008-07-24 17:57:48 +00001302 printConstant(CPV, false);
Reid Spencer1628cec2006-10-26 06:15:43 +00001303}
1304
Bill Wendling145aad02007-02-23 22:45:08 +00001305std::string CWriter::GetValueName(const Value *Operand) {
Gabor Greifac27ec02010-08-04 10:00:52 +00001306
1307 // Resolve potential alias.
1308 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(Operand)) {
1309 if (const Value *V = GA->resolveAliasedGlobal(false))
1310 Operand = V;
1311 }
1312
Chris Lattnerca1bafd2009-07-13 23:46:46 +00001313 // Mangle globals with the standard mangler interface for LLC compatibility.
Chris Lattner471f1e92010-01-13 19:54:07 +00001314 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Operand)) {
1315 SmallString<128> Str;
1316 Mang->getNameWithPrefix(Str, GV, false);
Chris Lattner7481ae62010-01-22 18:33:00 +00001317 return CBEMangle(Str.str().str());
Chris Lattner471f1e92010-01-13 19:54:07 +00001318 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001319
Chris Lattnerca1bafd2009-07-13 23:46:46 +00001320 std::string Name = Operand->getName();
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001321
Chris Lattnerca1bafd2009-07-13 23:46:46 +00001322 if (Name.empty()) { // Assign unique names to local temporaries.
1323 unsigned &No = AnonValueNumbers[Operand];
1324 if (No == 0)
1325 No = ++NextAnonValueNumber;
1326 Name = "tmp__" + utostr(No);
1327 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001328
Chris Lattnerca1bafd2009-07-13 23:46:46 +00001329 std::string VarName;
1330 VarName.reserve(Name.capacity());
Bill Wendling145aad02007-02-23 22:45:08 +00001331
Chris Lattnerca1bafd2009-07-13 23:46:46 +00001332 for (std::string::iterator I = Name.begin(), E = Name.end();
1333 I != E; ++I) {
1334 char ch = *I;
Bill Wendling145aad02007-02-23 22:45:08 +00001335
Chris Lattnerca1bafd2009-07-13 23:46:46 +00001336 if (!((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') ||
1337 (ch >= '0' && ch <= '9') || ch == '_')) {
1338 char buffer[5];
1339 sprintf(buffer, "_%x_", ch);
1340 VarName += buffer;
1341 } else
1342 VarName += ch;
Bill Wendling145aad02007-02-23 22:45:08 +00001343 }
1344
Chris Lattnerca1bafd2009-07-13 23:46:46 +00001345 return "llvm_cbe_" + VarName;
Bill Wendling145aad02007-02-23 22:45:08 +00001346}
1347
Chris Lattnere56d9462008-05-31 09:23:55 +00001348/// writeInstComputationInline - Emit the computation for the specified
1349/// instruction inline, with no destination provided.
1350void CWriter::writeInstComputationInline(Instruction &I) {
Dale Johannesen06398942009-06-18 01:07:23 +00001351 // We can't currently support integer types other than 1, 8, 16, 32, 64.
1352 // Validate this.
1353 const Type *Ty = I.getType();
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00001354 if (Ty->isIntegerTy() && (Ty!=Type::getInt1Ty(I.getContext()) &&
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001355 Ty!=Type::getInt8Ty(I.getContext()) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00001356 Ty!=Type::getInt16Ty(I.getContext()) &&
1357 Ty!=Type::getInt32Ty(I.getContext()) &&
1358 Ty!=Type::getInt64Ty(I.getContext()))) {
Chris Lattner75361b62010-04-07 22:58:41 +00001359 report_fatal_error("The C backend does not currently support integer "
Torok Edwindac237e2009-07-08 20:53:28 +00001360 "types of widths other than 1, 8, 16, 32, 64.\n"
1361 "This is being tracked as PR 4158.");
Dale Johannesen06398942009-06-18 01:07:23 +00001362 }
1363
Chris Lattnere56d9462008-05-31 09:23:55 +00001364 // If this is a non-trivial bool computation, make sure to truncate down to
1365 // a 1 bit value. This is important because we want "add i1 x, y" to return
1366 // "0" when x and y are true, not "2" for example.
1367 bool NeedBoolTrunc = false;
Owen Anderson1d0be152009-08-13 21:58:54 +00001368 if (I.getType() == Type::getInt1Ty(I.getContext()) &&
1369 !isa<ICmpInst>(I) && !isa<FCmpInst>(I))
Chris Lattnere56d9462008-05-31 09:23:55 +00001370 NeedBoolTrunc = true;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001371
Chris Lattnere56d9462008-05-31 09:23:55 +00001372 if (NeedBoolTrunc)
1373 Out << "((";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001374
Chris Lattnere56d9462008-05-31 09:23:55 +00001375 visit(I);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001376
Chris Lattnere56d9462008-05-31 09:23:55 +00001377 if (NeedBoolTrunc)
1378 Out << ")&1)";
1379}
1380
1381
Dan Gohman9f8d5712008-07-24 17:57:48 +00001382void CWriter::writeOperandInternal(Value *Operand, bool Static) {
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001383 if (Instruction *I = dyn_cast<Instruction>(Operand))
Chris Lattnere56d9462008-05-31 09:23:55 +00001384 // Should we inline this instruction to build a tree?
Chris Lattnera8ab89e2003-06-17 04:39:14 +00001385 if (isInlinableInst(*I) && !isDirectAlloca(I)) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001386 Out << '(';
Chris Lattnere56d9462008-05-31 09:23:55 +00001387 writeInstComputationInline(*I);
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001388 Out << ')';
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00001389 return;
1390 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00001391
Reid Spencer518310c2004-07-18 00:44:37 +00001392 Constant* CPV = dyn_cast<Constant>(Operand);
Bill Wendling145aad02007-02-23 22:45:08 +00001393
1394 if (CPV && !isa<GlobalValue>(CPV))
Dan Gohman9f8d5712008-07-24 17:57:48 +00001395 printConstant(CPV, Static);
Bill Wendling145aad02007-02-23 22:45:08 +00001396 else
1397 Out << GetValueName(Operand);
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001398}
1399
Dan Gohman9f8d5712008-07-24 17:57:48 +00001400void CWriter::writeOperand(Value *Operand, bool Static) {
Chris Lattnere05252b42008-03-02 08:07:24 +00001401 bool isAddressImplicit = isAddressExposed(Operand);
1402 if (isAddressImplicit)
Reid Spencer3da59db2006-11-27 01:05:10 +00001403 Out << "(&"; // Global variables are referenced as their addresses by llvm
Chris Lattnerd0c668c2002-05-09 21:18:38 +00001404
Dan Gohman9f8d5712008-07-24 17:57:48 +00001405 writeOperandInternal(Operand, Static);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001406
Chris Lattnere05252b42008-03-02 08:07:24 +00001407 if (isAddressImplicit)
Misha Brukmanb70aaa62005-02-14 18:52:35 +00001408 Out << ')';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00001409}
1410
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001411// Some instructions need to have their result value casted back to the
1412// original types because their operands were casted to the expected type.
1413// This function takes care of detecting that case and printing the cast
Reid Spencer1628cec2006-10-26 06:15:43 +00001414// for the Instruction.
1415bool CWriter::writeInstructionCast(const Instruction &I) {
Reid Spencer3da59db2006-11-27 01:05:10 +00001416 const Type *Ty = I.getOperand(0)->getType();
Reid Spencer1628cec2006-10-26 06:15:43 +00001417 switch (I.getOpcode()) {
Dan Gohman5a11aba2008-07-18 18:43:12 +00001418 case Instruction::Add:
1419 case Instruction::Sub:
1420 case Instruction::Mul:
1421 // We need to cast integer arithmetic so that it is always performed
1422 // as unsigned, to avoid undefined behavior on overflow.
Reid Spencer3822ff52006-11-08 06:47:33 +00001423 case Instruction::LShr:
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001424 case Instruction::URem:
1425 case Instruction::UDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001426 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001427 printSimpleType(Out, Ty, false);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001428 Out << ")(";
1429 return true;
Reid Spencer3822ff52006-11-08 06:47:33 +00001430 case Instruction::AShr:
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001431 case Instruction::SRem:
1432 case Instruction::SDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001433 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001434 printSimpleType(Out, Ty, true);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001435 Out << ")(";
1436 return true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001437 default: break;
1438 }
Reid Spencere4d87aa2006-12-23 06:05:41 +00001439 return false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001440}
1441
1442// Write the operand with a cast to another type based on the Opcode being used.
1443// This will be used in cases where an instruction has specific type
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001444// requirements (usually signedness) for its operands.
Reid Spencer1628cec2006-10-26 06:15:43 +00001445void CWriter::writeOperandWithCast(Value* Operand, unsigned Opcode) {
1446
1447 // Extract the operand's type, we'll need it.
1448 const Type* OpTy = Operand->getType();
1449
1450 // Indicate whether to do the cast or not.
1451 bool shouldCast = false;
1452
Reid Spencere4d87aa2006-12-23 06:05:41 +00001453 // Indicate whether the cast should be to a signed type or not.
1454 bool castIsSigned = false;
1455
Reid Spencer1628cec2006-10-26 06:15:43 +00001456 // Based on the Opcode for which this Operand is being written, determine
1457 // the new type to which the operand should be casted by setting the value
1458 // of OpTy. If we change OpTy, also set shouldCast to true.
1459 switch (Opcode) {
1460 default:
1461 // for most instructions, it doesn't matter
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001462 break;
Dan Gohman5a11aba2008-07-18 18:43:12 +00001463 case Instruction::Add:
1464 case Instruction::Sub:
1465 case Instruction::Mul:
1466 // We need to cast integer arithmetic so that it is always performed
1467 // as unsigned, to avoid undefined behavior on overflow.
Reid Spencer3822ff52006-11-08 06:47:33 +00001468 case Instruction::LShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001469 case Instruction::UDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001470 case Instruction::URem: // Cast to unsigned first
1471 shouldCast = true;
1472 castIsSigned = false;
Reid Spencer1628cec2006-10-26 06:15:43 +00001473 break;
Chris Lattner96b207c2007-09-22 20:16:48 +00001474 case Instruction::GetElementPtr:
Reid Spencer3822ff52006-11-08 06:47:33 +00001475 case Instruction::AShr:
Reid Spencer1628cec2006-10-26 06:15:43 +00001476 case Instruction::SDiv:
Reid Spencere4d87aa2006-12-23 06:05:41 +00001477 case Instruction::SRem: // Cast to signed first
1478 shouldCast = true;
1479 castIsSigned = true;
Reid Spencer1628cec2006-10-26 06:15:43 +00001480 break;
1481 }
1482
1483 // Write out the casted operand if we should, otherwise just write the
1484 // operand.
1485 if (shouldCast) {
1486 Out << "((";
Reid Spencera54b7cb2007-01-12 07:05:14 +00001487 printSimpleType(Out, OpTy, castIsSigned);
Reid Spencer1628cec2006-10-26 06:15:43 +00001488 Out << ")";
Chris Lattner72623362007-05-03 02:57:13 +00001489 writeOperand(Operand);
Reid Spencer1628cec2006-10-26 06:15:43 +00001490 Out << ")";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001491 } else
Reid Spencer1628cec2006-10-26 06:15:43 +00001492 writeOperand(Operand);
Reid Spencere4d87aa2006-12-23 06:05:41 +00001493}
Reid Spencer1628cec2006-10-26 06:15:43 +00001494
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001495// Write the operand with a cast to another type based on the icmp predicate
1496// being used.
Chris Lattner5bda9e42007-09-15 06:51:03 +00001497void CWriter::writeOperandWithCast(Value* Operand, const ICmpInst &Cmp) {
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001498 // This has to do a cast to ensure the operand has the right signedness.
Chris Lattner5bda9e42007-09-15 06:51:03 +00001499 // Also, if the operand is a pointer, we make sure to cast to an integer when
1500 // doing the comparison both for signedness and so that the C compiler doesn't
1501 // optimize things like "p < NULL" to false (p may contain an integer value
1502 // f.e.).
1503 bool shouldCast = Cmp.isRelational();
Reid Spencere4d87aa2006-12-23 06:05:41 +00001504
1505 // Write out the casted operand if we should, otherwise just write the
1506 // operand.
Chris Lattner5bda9e42007-09-15 06:51:03 +00001507 if (!shouldCast) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00001508 writeOperand(Operand);
Chris Lattner5bda9e42007-09-15 06:51:03 +00001509 return;
1510 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001511
Chris Lattner5bda9e42007-09-15 06:51:03 +00001512 // Should this be a signed comparison? If so, convert to signed.
Nick Lewycky4a134af2009-10-25 05:20:17 +00001513 bool castIsSigned = Cmp.isSigned();
Chris Lattner5bda9e42007-09-15 06:51:03 +00001514
1515 // If the operand was a pointer, convert to a large integer type.
1516 const Type* OpTy = Operand->getType();
Duncan Sands1df98592010-02-16 11:11:14 +00001517 if (OpTy->isPointerTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00001518 OpTy = TD->getIntPtrType(Operand->getContext());
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001519
Chris Lattner5bda9e42007-09-15 06:51:03 +00001520 Out << "((";
1521 printSimpleType(Out, OpTy, castIsSigned);
1522 Out << ")";
1523 writeOperand(Operand);
1524 Out << ")";
Reid Spencer1628cec2006-10-26 06:15:43 +00001525}
1526
Chris Lattner41488192003-06-28 17:15:12 +00001527// generateCompilerSpecificCode - This is where we add conditional compilation
1528// directives to cater to specific compilers as need be.
1529//
David Greene71847812009-07-14 20:18:05 +00001530static void generateCompilerSpecificCode(formatted_raw_ostream& Out,
Dan Gohman271515a2008-04-02 23:52:49 +00001531 const TargetData *TD) {
Chris Lattner9a571ba2006-03-07 22:58:23 +00001532 // Alloca is hard to get, and we don't want to include stdlib.h here.
Chris Lattner41488192003-06-28 17:15:12 +00001533 Out << "/* get a declaration for alloca */\n"
Chris Lattnerd9477602006-06-02 18:54:01 +00001534 << "#if defined(__CYGWIN__) || defined(__MINGW32__)\n"
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00001535 << "#define alloca(x) __builtin_alloca((x))\n"
Anton Korobeynikove392c832009-08-05 09:31:07 +00001536 << "#define _alloca(x) __builtin_alloca((x))\n"
Reid Spencera8411a62005-01-23 04:32:47 +00001537 << "#elif defined(__APPLE__)\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001538 << "extern void *__builtin_alloca(unsigned long);\n"
1539 << "#define alloca(x) __builtin_alloca(x)\n"
Anton Korobeynikovd27a2582006-12-10 23:12:42 +00001540 << "#define longjmp _longjmp\n"
1541 << "#define setjmp _setjmp\n"
Brian Gaekece630052004-12-10 05:44:45 +00001542 << "#elif defined(__sun__)\n"
1543 << "#if defined(__sparcv9)\n"
1544 << "extern void *__builtin_alloca(unsigned long);\n"
1545 << "#else\n"
1546 << "extern void *__builtin_alloca(unsigned int);\n"
1547 << "#endif\n"
1548 << "#define alloca(x) __builtin_alloca(x)\n"
Anton Korobeynikove392c832009-08-05 09:31:07 +00001549 << "#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__arm__)\n"
Chris Lattner60e66742004-10-06 04:21:52 +00001550 << "#define alloca(x) __builtin_alloca(x)\n"
Jeff Cohenab478952007-03-28 23:08:37 +00001551 << "#elif defined(_MSC_VER)\n"
Jeff Cohene2cd2a02007-03-29 17:42:21 +00001552 << "#define inline _inline\n"
Jeff Cohenab478952007-03-28 23:08:37 +00001553 << "#define alloca(x) _alloca(x)\n"
1554 << "#else\n"
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001555 << "#include <alloca.h>\n"
1556 << "#endif\n\n";
Chris Lattner41488192003-06-28 17:15:12 +00001557
1558 // We output GCC specific attributes to preserve 'linkonce'ness on globals.
1559 // If we aren't being compiled with GCC, just drop these attributes.
Chris Lattner9bda5f52003-06-28 17:53:05 +00001560 Out << "#ifndef __GNUC__ /* Can only support \"linkonce\" vars with GCC */\n"
Chris Lattner41488192003-06-28 17:15:12 +00001561 << "#define __attribute__(X)\n"
Brian Gaeke27f7a712003-12-11 00:24:36 +00001562 << "#endif\n\n";
1563
Brian Gaeke27f7a712003-12-11 00:24:36 +00001564 // On Mac OS X, "external weak" is spelled "__attribute__((weak_import))".
1565 Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
1566 << "#define __EXTERNAL_WEAK__ __attribute__((weak_import))\n"
1567 << "#elif defined(__GNUC__)\n"
1568 << "#define __EXTERNAL_WEAK__ __attribute__((weak))\n"
1569 << "#else\n"
1570 << "#define __EXTERNAL_WEAK__\n"
1571 << "#endif\n\n";
Brian Gaeke27f7a712003-12-11 00:24:36 +00001572
1573 // For now, turn off the weak linkage attribute on Mac OS X. (See above.)
1574 Out << "#if defined(__GNUC__) && defined(__APPLE_CC__)\n"
1575 << "#define __ATTRIBUTE_WEAK__\n"
1576 << "#elif defined(__GNUC__)\n"
1577 << "#define __ATTRIBUTE_WEAK__ __attribute__((weak))\n"
1578 << "#else\n"
1579 << "#define __ATTRIBUTE_WEAK__\n"
1580 << "#endif\n\n";
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001581
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001582 // Add hidden visibility support. FIXME: APPLE_CC?
1583 Out << "#if defined(__GNUC__)\n"
1584 << "#define __HIDDEN__ __attribute__((visibility(\"hidden\")))\n"
1585 << "#endif\n\n";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001586
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001587 // Define NaN and Inf as GCC builtins if using GCC, as 0 otherwise
1588 // From the GCC documentation:
Misha Brukmand6a29a52005-04-20 16:05:03 +00001589 //
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001590 // double __builtin_nan (const char *str)
1591 //
1592 // This is an implementation of the ISO C99 function nan.
1593 //
1594 // Since ISO C99 defines this function in terms of strtod, which we do
1595 // not implement, a description of the parsing is in order. The string is
1596 // parsed as by strtol; that is, the base is recognized by leading 0 or
1597 // 0x prefixes. The number parsed is placed in the significand such that
1598 // the least significant bit of the number is at the least significant
1599 // bit of the significand. The number is truncated to fit the significand
1600 // field provided. The significand is forced to be a quiet NaN.
1601 //
1602 // This function, if given a string literal, is evaluated early enough
1603 // that it is considered a compile-time constant.
1604 //
1605 // float __builtin_nanf (const char *str)
1606 //
1607 // Similar to __builtin_nan, except the return type is float.
1608 //
1609 // double __builtin_inf (void)
1610 //
1611 // Similar to __builtin_huge_val, except a warning is generated if the
1612 // target floating-point format does not support infinities. This
1613 // function is suitable for implementing the ISO C99 macro INFINITY.
1614 //
1615 // float __builtin_inff (void)
1616 //
1617 // Similar to __builtin_inf, except the return type is float.
1618 Out << "#ifdef __GNUC__\n"
Brian Gaeke8a702e82004-08-25 19:00:42 +00001619 << "#define LLVM_NAN(NanStr) __builtin_nan(NanStr) /* Double */\n"
1620 << "#define LLVM_NANF(NanStr) __builtin_nanf(NanStr) /* Float */\n"
1621 << "#define LLVM_NANS(NanStr) __builtin_nans(NanStr) /* Double */\n"
1622 << "#define LLVM_NANSF(NanStr) __builtin_nansf(NanStr) /* Float */\n"
1623 << "#define LLVM_INF __builtin_inf() /* Double */\n"
1624 << "#define LLVM_INFF __builtin_inff() /* Float */\n"
Chris Lattnerf9a05322006-02-13 22:22:42 +00001625 << "#define LLVM_PREFETCH(addr,rw,locality) "
1626 "__builtin_prefetch(addr,rw,locality)\n"
Chris Lattner9a571ba2006-03-07 22:58:23 +00001627 << "#define __ATTRIBUTE_CTOR__ __attribute__((constructor))\n"
1628 << "#define __ATTRIBUTE_DTOR__ __attribute__((destructor))\n"
Chris Lattnerdacbe7b2006-07-28 20:58:47 +00001629 << "#define LLVM_ASM __asm__\n"
Brian Gaeke043c0bb2004-07-21 03:15:26 +00001630 << "#else\n"
Brian Gaeke8a702e82004-08-25 19:00:42 +00001631 << "#define LLVM_NAN(NanStr) ((double)0.0) /* Double */\n"
1632 << "#define LLVM_NANF(NanStr) 0.0F /* Float */\n"
1633 << "#define LLVM_NANS(NanStr) ((double)0.0) /* Double */\n"
1634 << "#define LLVM_NANSF(NanStr) 0.0F /* Float */\n"
1635 << "#define LLVM_INF ((double)0.0) /* Double */\n"
1636 << "#define LLVM_INFF 0.0F /* Float */\n"
Chris Lattner50a8a172005-05-06 06:58:42 +00001637 << "#define LLVM_PREFETCH(addr,rw,locality) /* PREFETCH */\n"
Chris Lattner9a571ba2006-03-07 22:58:23 +00001638 << "#define __ATTRIBUTE_CTOR__\n"
1639 << "#define __ATTRIBUTE_DTOR__\n"
Chris Lattnerdacbe7b2006-07-28 20:58:47 +00001640 << "#define LLVM_ASM(X)\n"
Chris Lattner50a8a172005-05-06 06:58:42 +00001641 << "#endif\n\n";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001642
Chris Lattner40c1b662007-05-13 22:19:27 +00001643 Out << "#if __GNUC__ < 4 /* Old GCC's, or compilers not GCC */ \n"
1644 << "#define __builtin_stack_save() 0 /* not implemented */\n"
1645 << "#define __builtin_stack_restore(X) /* noop */\n"
1646 << "#endif\n\n";
Chris Lattner50a8a172005-05-06 06:58:42 +00001647
Dan Gohman271515a2008-04-02 23:52:49 +00001648 // Output typedefs for 128-bit integers. If these are needed with a
1649 // 32-bit target or with a C compiler that doesn't support mode(TI),
1650 // more drastic measures will be needed.
Chris Lattner9e4ff942008-06-16 04:25:29 +00001651 Out << "#if __GNUC__ && __LP64__ /* 128-bit integer types */\n"
1652 << "typedef int __attribute__((mode(TI))) llvmInt128;\n"
1653 << "typedef unsigned __attribute__((mode(TI))) llvmUInt128;\n"
1654 << "#endif\n\n";
Dan Gohmand7614802008-04-02 19:40:14 +00001655
Chris Lattner50a8a172005-05-06 06:58:42 +00001656 // Output target-specific code that should be inserted into main.
1657 Out << "#define CODE_FOR_MAIN() /* Any target-specific code for main()*/\n";
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001658}
1659
Chris Lattner9a571ba2006-03-07 22:58:23 +00001660/// FindStaticTors - Given a static ctor/dtor list, unpack its contents into
1661/// the StaticTors set.
1662static void FindStaticTors(GlobalVariable *GV, std::set<Function*> &StaticTors){
1663 ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
1664 if (!InitList) return;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001665
Chris Lattner9a571ba2006-03-07 22:58:23 +00001666 for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
1667 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
1668 if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001669
Chris Lattner9a571ba2006-03-07 22:58:23 +00001670 if (CS->getOperand(1)->isNullValue())
1671 return; // Found a null terminator, exit printing.
1672 Constant *FP = CS->getOperand(1);
1673 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(FP))
Reid Spencer3da59db2006-11-27 01:05:10 +00001674 if (CE->isCast())
Chris Lattner9a571ba2006-03-07 22:58:23 +00001675 FP = CE->getOperand(0);
1676 if (Function *F = dyn_cast<Function>(FP))
1677 StaticTors.insert(F);
1678 }
1679}
1680
1681enum SpecialGlobalClass {
1682 NotSpecial = 0,
1683 GlobalCtors, GlobalDtors,
1684 NotPrinted
1685};
1686
1687/// getGlobalVariableClass - If this is a global that is specially recognized
1688/// by LLVM, return a code that indicates how we should handle it.
1689static SpecialGlobalClass getGlobalVariableClass(const GlobalVariable *GV) {
1690 // If this is a global ctors/dtors list, handle it now.
1691 if (GV->hasAppendingLinkage() && GV->use_empty()) {
1692 if (GV->getName() == "llvm.global_ctors")
1693 return GlobalCtors;
1694 else if (GV->getName() == "llvm.global_dtors")
1695 return GlobalDtors;
1696 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001697
Dan Gohmanf451cb82010-02-10 16:03:48 +00001698 // Otherwise, if it is other metadata, don't print it. This catches things
Chris Lattner9a571ba2006-03-07 22:58:23 +00001699 // like debug information.
1700 if (GV->getSection() == "llvm.metadata")
1701 return NotPrinted;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001702
Chris Lattner9a571ba2006-03-07 22:58:23 +00001703 return NotSpecial;
1704}
1705
Anton Korobeynikove641b522009-08-05 09:29:56 +00001706// PrintEscapedString - Print each character of the specified string, escaping
1707// it if it is not printable or if it is an escape char.
1708static void PrintEscapedString(const char *Str, unsigned Length,
1709 raw_ostream &Out) {
1710 for (unsigned i = 0; i != Length; ++i) {
1711 unsigned char C = Str[i];
1712 if (isprint(C) && C != '\\' && C != '"')
1713 Out << C;
1714 else if (C == '\\')
1715 Out << "\\\\";
1716 else if (C == '\"')
1717 Out << "\\\"";
1718 else if (C == '\t')
1719 Out << "\\t";
1720 else
1721 Out << "\\x" << hexdigit(C >> 4) << hexdigit(C & 0x0F);
1722 }
1723}
1724
1725// PrintEscapedString - Print each character of the specified string, escaping
1726// it if it is not printable or if it is an escape char.
1727static void PrintEscapedString(const std::string &Str, raw_ostream &Out) {
1728 PrintEscapedString(Str.c_str(), Str.size(), Out);
1729}
Chris Lattner9a571ba2006-03-07 22:58:23 +00001730
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001731bool CWriter::doInitialization(Module &M) {
Daniel Dunbar53448652009-07-17 03:43:21 +00001732 FunctionPass::doInitialization(M);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001733
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001734 // Initialize
1735 TheModule = &M;
Chris Lattnerc2421432004-05-09 04:30:20 +00001736
Reid Spencer519e2392007-01-29 17:51:02 +00001737 TD = new TargetData(&M);
1738 IL = new IntrinsicLowering(*TD);
1739 IL->AddPrototypes(M);
Misha Brukmand6a29a52005-04-20 16:05:03 +00001740
Chris Lattnerc0dba722010-01-17 18:22:35 +00001741#if 0
1742 std::string Triple = TheModule->getTargetTriple();
1743 if (Triple.empty())
1744 Triple = llvm::sys::getHostTriple();
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001745
Chris Lattnerc0dba722010-01-17 18:22:35 +00001746 std::string E;
1747 if (const Target *Match = TargetRegistry::lookupTarget(Triple, E))
1748 TAsm = Match->createAsmInfo(Triple);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001749#endif
Chris Lattner8eeba352010-01-20 06:34:14 +00001750 TAsm = new CBEMCAsmInfo();
Chris Lattner5ef31a02010-03-12 18:44:54 +00001751 TCtx = new MCContext(*TAsm);
Chris Lattnerb87c3052010-03-12 20:47:28 +00001752 Mang = new Mangler(*TCtx, *TD);
Chris Lattnerc59c1182003-11-16 22:06:14 +00001753
Chris Lattner9a571ba2006-03-07 22:58:23 +00001754 // Keep track of which functions are static ctors/dtors so they can have
1755 // an attribute added to their prototypes.
1756 std::set<Function*> StaticCtors, StaticDtors;
1757 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1758 I != E; ++I) {
1759 switch (getGlobalVariableClass(I)) {
1760 default: break;
1761 case GlobalCtors:
1762 FindStaticTors(I, StaticCtors);
1763 break;
1764 case GlobalDtors:
1765 FindStaticTors(I, StaticDtors);
1766 break;
1767 }
1768 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001769
Chris Lattner16c7bb22002-05-09 02:28:59 +00001770 // get declaration for alloca
Joel Stanleyecd78ac2003-02-12 20:45:00 +00001771 Out << "/* Provide Declarations */\n";
Chris Lattnerc59c1182003-11-16 22:06:14 +00001772 Out << "#include <stdarg.h>\n"; // Varargs support
1773 Out << "#include <setjmp.h>\n"; // Unwind support
Dan Gohman271515a2008-04-02 23:52:49 +00001774 generateCompilerSpecificCode(Out, TD);
Chris Lattnerc59c1182003-11-16 22:06:14 +00001775
Chris Lattnercf135cb2003-06-02 03:10:53 +00001776 // Provide a definition for `bool' if not compiling with a C++ compiler.
1777 Out << "\n"
Vikram S. Adve969c4ad2002-08-25 20:00:08 +00001778 << "#ifndef __cplusplus\ntypedef unsigned char bool;\n#endif\n"
Misha Brukmand6a29a52005-04-20 16:05:03 +00001779
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00001780 << "\n\n/* Support for floating point constants */\n"
1781 << "typedef unsigned long long ConstantDoubleTy;\n"
Chris Lattnereb6f8c72002-11-07 19:43:59 +00001782 << "typedef unsigned int ConstantFloatTy;\n"
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001783 << "typedef struct { unsigned long long f1; unsigned short f2; "
1784 "unsigned short pad[3]; } ConstantFP80Ty;\n"
Dale Johannesen6e644732007-10-15 01:05:37 +00001785 // This is used for both kinds of 128-bit long double; meaning differs.
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001786 << "typedef struct { unsigned long long f1; unsigned long long f2; }"
1787 " ConstantFP128Ty;\n"
Chris Lattnera4d4a852002-08-19 21:48:40 +00001788 << "\n\n/* Global Declarations */\n";
1789
1790 // First output all the declarations for the program, because C requires
1791 // Functions & globals to be declared before they are used.
1792 //
Anton Korobeynikove641b522009-08-05 09:29:56 +00001793 if (!M.getModuleInlineAsm().empty()) {
1794 Out << "/* Module asm statements */\n"
1795 << "asm(";
1796
1797 // Split the string into lines, to make it easier to read the .ll file.
1798 std::string Asm = M.getModuleInlineAsm();
1799 size_t CurPos = 0;
1800 size_t NewLine = Asm.find_first_of('\n', CurPos);
1801 while (NewLine != std::string::npos) {
1802 // We found a newline, print the portion of the asm string from the
1803 // last newline up to this newline.
1804 Out << "\"";
1805 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1806 Out);
1807 Out << "\\n\"\n";
1808 CurPos = NewLine+1;
1809 NewLine = Asm.find_first_of('\n', CurPos);
1810 }
1811 Out << "\"";
1812 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.end()), Out);
1813 Out << "\");\n"
1814 << "/* End Module asm statements */\n";
1815 }
Chris Lattner16c7bb22002-05-09 02:28:59 +00001816
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001817 // Loop over the symbol table, emitting all named constants...
Reid Spencer78d033e2007-01-06 07:24:44 +00001818 printModuleTypes(M.getTypeSymbolTable());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001819
Chris Lattnera4d4a852002-08-19 21:48:40 +00001820 // Global variable declarations...
Chris Lattnere4d5c442005-03-15 04:54:21 +00001821 if (!M.global_empty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001822 Out << "\n/* External Global Variable Declarations */\n";
Chris Lattnerf9a05322006-02-13 22:22:42 +00001823 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1824 I != E; ++I) {
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001825
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001826 if (I->hasExternalLinkage() || I->hasExternalWeakLinkage() ||
Dale Johannesenaafce772008-05-14 20:12:51 +00001827 I->hasCommonLinkage())
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001828 Out << "extern ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001829 else if (I->hasDLLImportLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001830 Out << "__declspec(dllimport) ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001831 else
1832 continue; // Internal Global
1833
1834 // Thread Local Storage
1835 if (I->isThreadLocal())
1836 Out << "__thread ";
1837
1838 printType(Out, I->getType()->getElementType(), false, GetValueName(I));
1839
1840 if (I->hasExternalWeakLinkage())
1841 Out << " __EXTERNAL_WEAK__";
1842 Out << ";\n";
Chris Lattnerdeed7a52002-05-09 15:18:52 +00001843 }
Chris Lattnerdeed7a52002-05-09 15:18:52 +00001844 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00001845
Chris Lattnera4d4a852002-08-19 21:48:40 +00001846 // Function declarations
Chris Lattner9a571ba2006-03-07 22:58:23 +00001847 Out << "\n/* Function Declarations */\n";
Chris Lattner57da2522005-08-23 20:22:50 +00001848 Out << "double fmod(double, double);\n"; // Support for FP rem
1849 Out << "float fmodf(float, float);\n";
Dale Johannesen53f0bc12007-09-17 00:38:27 +00001850 Out << "long double fmodl(long double, long double);\n";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001851
Chris Lattner9a571ba2006-03-07 22:58:23 +00001852 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1853 // Don't print declarations for intrinsic functions.
Duncan Sandsa3355ff2007-12-03 20:06:50 +00001854 if (!I->isIntrinsic() && I->getName() != "setjmp" &&
Reid Spencer2cb46e12006-10-22 09:58:21 +00001855 I->getName() != "longjmp" && I->getName() != "_setjmp") {
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001856 if (I->hasExternalWeakLinkage())
1857 Out << "extern ";
Chris Lattner9a571ba2006-03-07 22:58:23 +00001858 printFunctionSignature(I, true);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001859 if (I->hasWeakLinkage() || I->hasLinkOnceLinkage())
Chris Lattner9a571ba2006-03-07 22:58:23 +00001860 Out << " __ATTRIBUTE_WEAK__";
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001861 if (I->hasExternalWeakLinkage())
1862 Out << " __EXTERNAL_WEAK__";
Chris Lattner9a571ba2006-03-07 22:58:23 +00001863 if (StaticCtors.count(I))
1864 Out << " __ATTRIBUTE_CTOR__";
1865 if (StaticDtors.count(I))
1866 Out << " __ATTRIBUTE_DTOR__";
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001867 if (I->hasHiddenVisibility())
1868 Out << " __HIDDEN__";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001869
Evan Cheng3e3aa862008-06-07 07:50:29 +00001870 if (I->hasName() && I->getName()[0] == 1)
Daniel Dunbar8f603022009-07-22 21:10:12 +00001871 Out << " LLVM_ASM(\"" << I->getName().substr(1) << "\")";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001872
Chris Lattner9a571ba2006-03-07 22:58:23 +00001873 Out << ";\n";
Chris Lattner4cda8352002-08-20 16:55:48 +00001874 }
Chris Lattnera4d4a852002-08-19 21:48:40 +00001875 }
1876
Joel Stanley54f60322003-06-25 04:52:09 +00001877 // Output the global variable declarations
Chris Lattnere4d5c442005-03-15 04:54:21 +00001878 if (!M.global_empty()) {
Joel Stanley54f60322003-06-25 04:52:09 +00001879 Out << "\n\n/* Global Variable Declarations */\n";
Chris Lattnerf9a05322006-02-13 22:22:42 +00001880 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1881 I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +00001882 if (!I->isDeclaration()) {
Chris Lattner9a571ba2006-03-07 22:58:23 +00001883 // Ignore special globals, such as debug info.
1884 if (getGlobalVariableClass(I))
1885 continue;
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001886
Rafael Espindolabb46f522009-01-15 20:18:42 +00001887 if (I->hasLocalLinkage())
Chris Lattnercc16a8e2004-12-03 17:19:10 +00001888 Out << "static ";
1889 else
1890 Out << "extern ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001891
1892 // Thread Local Storage
1893 if (I->isThreadLocal())
1894 Out << "__thread ";
1895
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001896 printType(Out, I->getType()->getElementType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00001897 GetValueName(I));
Chris Lattner2580d4f2003-11-03 17:32:38 +00001898
1899 if (I->hasLinkOnceLinkage())
1900 Out << " __attribute__((common))";
Dale Johannesenaafce772008-05-14 20:12:51 +00001901 else if (I->hasCommonLinkage()) // FIXME is this right?
1902 Out << " __ATTRIBUTE_WEAK__";
Chris Lattner2580d4f2003-11-03 17:32:38 +00001903 else if (I->hasWeakLinkage())
Brian Gaeke27f7a712003-12-11 00:24:36 +00001904 Out << " __ATTRIBUTE_WEAK__";
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +00001905 else if (I->hasExternalWeakLinkage())
1906 Out << " __EXTERNAL_WEAK__";
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001907 if (I->hasHiddenVisibility())
1908 Out << " __HIDDEN__";
Nick Hildenbrandt50de36a2002-10-28 19:05:12 +00001909 Out << ";\n";
1910 }
1911 }
1912
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001913 // Output the global variable definitions and contents...
Chris Lattnere4d5c442005-03-15 04:54:21 +00001914 if (!M.global_empty()) {
Vikram S. Adve913bfbc2002-09-17 11:50:38 +00001915 Out << "\n\n/* Global Variable Definitions and Initialization */\n";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001916 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattnerf9a05322006-02-13 22:22:42 +00001917 I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +00001918 if (!I->isDeclaration()) {
Chris Lattner9a571ba2006-03-07 22:58:23 +00001919 // Ignore special globals, such as debug info.
1920 if (getGlobalVariableClass(I))
1921 continue;
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001922
Rafael Espindolabb46f522009-01-15 20:18:42 +00001923 if (I->hasLocalLinkage())
Chris Lattnere8e035b2002-10-16 20:08:47 +00001924 Out << "static ";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00001925 else if (I->hasDLLImportLinkage())
1926 Out << "__declspec(dllimport) ";
1927 else if (I->hasDLLExportLinkage())
1928 Out << "__declspec(dllexport) ";
Lauro Ramos Venancio26ca64c2007-04-12 18:42:08 +00001929
1930 // Thread Local Storage
1931 if (I->isThreadLocal())
1932 Out << "__thread ";
1933
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001934 printType(Out, I->getType()->getElementType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00001935 GetValueName(I));
Chris Lattner76d9f1b2003-06-28 17:08:36 +00001936 if (I->hasLinkOnceLinkage())
1937 Out << " __attribute__((common))";
Chris Lattner72ac148d2003-10-16 18:29:00 +00001938 else if (I->hasWeakLinkage())
Brian Gaeke27f7a712003-12-11 00:24:36 +00001939 Out << " __ATTRIBUTE_WEAK__";
Dale Johannesenaafce772008-05-14 20:12:51 +00001940 else if (I->hasCommonLinkage())
1941 Out << " __ATTRIBUTE_WEAK__";
Chris Lattner5ea326a2003-11-03 17:35:00 +00001942
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001943 if (I->hasHiddenVisibility())
1944 Out << " __HIDDEN__";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001945
Chris Lattner5ea326a2003-11-03 17:35:00 +00001946 // If the initializer is not null, emit the initializer. If it is null,
1947 // we try to avoid emitting large amounts of zeros. The problem with
1948 // this, however, occurs when the variable has weak linkage. In this
1949 // case, the assembler will complain about the variable being both weak
1950 // and common, so we disable this optimization.
Dale Johannesenaafce772008-05-14 20:12:51 +00001951 // FIXME common linkage should avoid this problem.
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001952 if (!I->getInitializer()->isNullValue()) {
Chris Lattner940b08d2003-06-06 07:10:24 +00001953 Out << " = " ;
Dan Gohman9f8d5712008-07-24 17:57:48 +00001954 writeOperand(I->getInitializer(), true);
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001955 } else if (I->hasWeakLinkage()) {
1956 // We have to specify an initializer, but it doesn't have to be
1957 // complete. If the value is an aggregate, print out { 0 }, and let
1958 // the compiler figure out the rest of the zeros.
1959 Out << " = " ;
Duncan Sands1df98592010-02-16 11:11:14 +00001960 if (I->getInitializer()->getType()->isStructTy() ||
1961 I->getInitializer()->getType()->isVectorTy()) {
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001962 Out << "{ 0 }";
Duncan Sands1df98592010-02-16 11:11:14 +00001963 } else if (I->getInitializer()->getType()->isArrayTy()) {
Dan Gohman193c2352008-06-02 21:30:49 +00001964 // As with structs and vectors, but with an extra set of braces
1965 // because arrays are wrapped in structs.
1966 Out << "{ { 0 } }";
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001967 } else {
1968 // Just print it out normally.
Dan Gohman9f8d5712008-07-24 17:57:48 +00001969 writeOperand(I->getInitializer(), true);
Chris Lattnerf358c5a2004-02-20 05:49:22 +00001970 }
Chris Lattner940b08d2003-06-06 07:10:24 +00001971 }
Chris Lattnere8e035b2002-10-16 20:08:47 +00001972 Out << ";\n";
Chris Lattnera4d4a852002-08-19 21:48:40 +00001973 }
Chris Lattnera4d4a852002-08-19 21:48:40 +00001974 }
1975
Chris Lattner94f4f8e2004-02-13 23:00:29 +00001976 if (!M.empty())
Chris Lattnera4d4a852002-08-19 21:48:40 +00001977 Out << "\n\n/* Function Bodies */\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001978
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00001979 // Emit some helper functions for dealing with FCMP instruction's
Reid Spencerb801a272007-01-08 06:58:32 +00001980 // predicates
1981 Out << "static inline int llvm_fcmp_ord(double X, double Y) { ";
1982 Out << "return X == X && Y == Y; }\n";
1983 Out << "static inline int llvm_fcmp_uno(double X, double Y) { ";
1984 Out << "return X != X || Y != Y; }\n";
1985 Out << "static inline int llvm_fcmp_ueq(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001986 Out << "return X == Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001987 Out << "static inline int llvm_fcmp_une(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001988 Out << "return X != Y; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001989 Out << "static inline int llvm_fcmp_ult(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001990 Out << "return X < Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001991 Out << "static inline int llvm_fcmp_ugt(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001992 Out << "return X > Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001993 Out << "static inline int llvm_fcmp_ule(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001994 Out << "return X <= Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001995 Out << "static inline int llvm_fcmp_uge(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001996 Out << "return X >= Y || llvm_fcmp_uno(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001997 Out << "static inline int llvm_fcmp_oeq(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00001998 Out << "return X == Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00001999 Out << "static inline int llvm_fcmp_one(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00002000 Out << "return X != Y && llvm_fcmp_ord(X, Y); }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00002001 Out << "static inline int llvm_fcmp_olt(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00002002 Out << "return X < Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00002003 Out << "static inline int llvm_fcmp_ogt(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00002004 Out << "return X > Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00002005 Out << "static inline int llvm_fcmp_ole(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00002006 Out << "return X <= Y ; }\n";
Reid Spencerb801a272007-01-08 06:58:32 +00002007 Out << "static inline int llvm_fcmp_oge(double X, double Y) { ";
Reid Spencerfbe7ae92007-01-08 08:00:00 +00002008 Out << "return X >= Y ; }\n";
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002009 return false;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002010}
2011
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002012
Chris Lattner9860e772003-10-12 04:36:29 +00002013/// Output all floating point constants that cannot be printed accurately...
Chris Lattner68758072004-05-09 06:20:51 +00002014void CWriter::printFloatingPointConstants(Function &F) {
Chris Lattner9860e772003-10-12 04:36:29 +00002015 // Scan the module for floating point constants. If any FP constant is used
2016 // in the function, we want to redirect it here so that we do not depend on
2017 // the precision of the printed form, unless the printed form preserves
2018 // precision.
2019 //
Chris Lattner68758072004-05-09 06:20:51 +00002020 for (constant_iterator I = constant_begin(&F), E = constant_end(&F);
2021 I != E; ++I)
Chris Lattneraecc22a2008-10-22 04:53:16 +00002022 printFloatingPointConstants(*I);
Misha Brukmand6a29a52005-04-20 16:05:03 +00002023
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002024 Out << '\n';
Chris Lattner68758072004-05-09 06:20:51 +00002025}
Chris Lattner9860e772003-10-12 04:36:29 +00002026
Chris Lattneraecc22a2008-10-22 04:53:16 +00002027void CWriter::printFloatingPointConstants(const Constant *C) {
2028 // If this is a constant expression, recursively check for constant fp values.
2029 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
2030 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
2031 printFloatingPointConstants(CE->getOperand(i));
2032 return;
2033 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002034
Chris Lattneraecc22a2008-10-22 04:53:16 +00002035 // Otherwise, check for a FP constant that we need to print.
2036 const ConstantFP *FPC = dyn_cast<ConstantFP>(C);
2037 if (FPC == 0 ||
2038 // Do not put in FPConstantMap if safe.
2039 isFPCSafeToPrint(FPC) ||
2040 // Already printed this constant?
2041 FPConstantMap.count(FPC))
2042 return;
2043
2044 FPConstantMap[FPC] = FPCounter; // Number the FP constants
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002045
Owen Anderson1d0be152009-08-13 21:58:54 +00002046 if (FPC->getType() == Type::getDoubleTy(FPC->getContext())) {
Chris Lattneraecc22a2008-10-22 04:53:16 +00002047 double Val = FPC->getValueAPF().convertToDouble();
2048 uint64_t i = FPC->getValueAPF().bitcastToAPInt().getZExtValue();
2049 Out << "static const ConstantDoubleTy FPConstant" << FPCounter++
2050 << " = 0x" << utohexstr(i)
2051 << "ULL; /* " << Val << " */\n";
Owen Anderson1d0be152009-08-13 21:58:54 +00002052 } else if (FPC->getType() == Type::getFloatTy(FPC->getContext())) {
Chris Lattneraecc22a2008-10-22 04:53:16 +00002053 float Val = FPC->getValueAPF().convertToFloat();
2054 uint32_t i = (uint32_t)FPC->getValueAPF().bitcastToAPInt().
2055 getZExtValue();
2056 Out << "static const ConstantFloatTy FPConstant" << FPCounter++
2057 << " = 0x" << utohexstr(i)
2058 << "U; /* " << Val << " */\n";
Owen Anderson1d0be152009-08-13 21:58:54 +00002059 } else if (FPC->getType() == Type::getX86_FP80Ty(FPC->getContext())) {
Chris Lattneraecc22a2008-10-22 04:53:16 +00002060 // api needed to prevent premature destruction
2061 APInt api = FPC->getValueAPF().bitcastToAPInt();
2062 const uint64_t *p = api.getRawData();
2063 Out << "static const ConstantFP80Ty FPConstant" << FPCounter++
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002064 << " = { 0x" << utohexstr(p[0])
Dale Johannesen1b25cb22009-03-23 21:16:53 +00002065 << "ULL, 0x" << utohexstr((uint16_t)p[1]) << ",{0,0,0}"
Chris Lattneraecc22a2008-10-22 04:53:16 +00002066 << "}; /* Long double constant */\n";
Anton Korobeynikovefc3f3a2009-08-26 17:39:23 +00002067 } else if (FPC->getType() == Type::getPPC_FP128Ty(FPC->getContext()) ||
2068 FPC->getType() == Type::getFP128Ty(FPC->getContext())) {
Chris Lattneraecc22a2008-10-22 04:53:16 +00002069 APInt api = FPC->getValueAPF().bitcastToAPInt();
2070 const uint64_t *p = api.getRawData();
2071 Out << "static const ConstantFP128Ty FPConstant" << FPCounter++
2072 << " = { 0x"
2073 << utohexstr(p[0]) << ", 0x" << utohexstr(p[1])
2074 << "}; /* Long double constant */\n";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002075
Chris Lattneraecc22a2008-10-22 04:53:16 +00002076 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00002077 llvm_unreachable("Unknown float type!");
Chris Lattneraecc22a2008-10-22 04:53:16 +00002078 }
2079}
2080
2081
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002082
Chris Lattner2db41cd2002-09-20 15:12:13 +00002083/// printSymbolTable - Run through symbol table looking for type names. If a
Robert Bocchinob78e8382006-01-20 20:43:57 +00002084/// type name is found, emit its declaration...
Chris Lattnera4c047e2002-09-20 14:56:54 +00002085///
Reid Spencer78d033e2007-01-06 07:24:44 +00002086void CWriter::printModuleTypes(const TypeSymbolTable &TST) {
Reid Spencer555a0b12006-12-11 20:39:15 +00002087 Out << "/* Helper union for bitcasts */\n";
2088 Out << "typedef union {\n";
Reid Spencer47857812006-12-31 05:55:36 +00002089 Out << " unsigned int Int32;\n";
2090 Out << " unsigned long long Int64;\n";
Reid Spencer22b36fb2006-12-12 00:11:08 +00002091 Out << " float Float;\n";
2092 Out << " double Double;\n";
Reid Spencer555a0b12006-12-11 20:39:15 +00002093 Out << "} llvmBitCastUnion;\n";
2094
Chris Lattnerb15fde22005-03-06 02:28:23 +00002095 // We are only interested in the type plane of the symbol table.
Reid Spencer78d033e2007-01-06 07:24:44 +00002096 TypeSymbolTable::const_iterator I = TST.begin();
2097 TypeSymbolTable::const_iterator End = TST.end();
Chris Lattnerb15fde22005-03-06 02:28:23 +00002098
2099 // If there are no type names, exit early.
2100 if (I == End) return;
Misha Brukmand6a29a52005-04-20 16:05:03 +00002101
Chris Lattner58d04d42002-09-20 15:18:30 +00002102 // Print out forward declarations for structure types before anything else!
2103 Out << "/* Structure forward decls */\n";
Chris Lattnera80cc932007-01-16 18:02:45 +00002104 for (; I != End; ++I) {
Chris Lattner7481ae62010-01-22 18:33:00 +00002105 std::string Name = "struct " + CBEMangle("l_"+I->first);
Chris Lattner471f1e92010-01-13 19:54:07 +00002106 Out << Name << ";\n";
2107 TypeNames.insert(std::make_pair(I->second, Name));
Chris Lattnera80cc932007-01-16 18:02:45 +00002108 }
Chris Lattner58d04d42002-09-20 15:18:30 +00002109
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002110 Out << '\n';
Chris Lattner58d04d42002-09-20 15:18:30 +00002111
Chris Lattner19e8b0c2007-01-16 07:22:23 +00002112 // Now we can print out typedefs. Above, we guaranteed that this can only be
Chris Lattnera80cc932007-01-16 18:02:45 +00002113 // for struct or opaque types.
Chris Lattner58d04d42002-09-20 15:18:30 +00002114 Out << "/* Typedefs */\n";
Reid Spencer78d033e2007-01-06 07:24:44 +00002115 for (I = TST.begin(); I != End; ++I) {
Chris Lattner7481ae62010-01-22 18:33:00 +00002116 std::string Name = CBEMangle("l_"+I->first);
Chris Lattner68758072004-05-09 06:20:51 +00002117 Out << "typedef ";
Chris Lattner471f1e92010-01-13 19:54:07 +00002118 printType(Out, I->second, false, Name);
Chris Lattner68758072004-05-09 06:20:51 +00002119 Out << ";\n";
2120 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00002121
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002122 Out << '\n';
Chris Lattner3ef6dc72002-05-09 14:40:11 +00002123
Chris Lattner2c601a72002-09-20 15:05:40 +00002124 // Keep track of which structures have been printed so far...
Dan Gohman193c2352008-06-02 21:30:49 +00002125 std::set<const Type *> StructPrinted;
Chris Lattner2c601a72002-09-20 15:05:40 +00002126
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00002127 // Loop over all structures then push them into the stack so they are
2128 // printed in the correct order.
Chris Lattner2db41cd2002-09-20 15:12:13 +00002129 //
Chris Lattner58d04d42002-09-20 15:18:30 +00002130 Out << "/* Structure contents */\n";
Reid Spencer78d033e2007-01-06 07:24:44 +00002131 for (I = TST.begin(); I != End; ++I)
Duncan Sands1df98592010-02-16 11:11:14 +00002132 if (I->second->isStructTy() || I->second->isArrayTy())
Chris Lattnerfa395ec2003-11-02 01:29:27 +00002133 // Only print out used types!
Dan Gohman193c2352008-06-02 21:30:49 +00002134 printContainedStructs(I->second, StructPrinted);
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002135}
2136
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00002137// Push the struct onto the stack and recursively push all structs
2138// this one depends on.
Robert Bocchinob78e8382006-01-20 20:43:57 +00002139//
Reid Spencerac9dcb92007-02-15 03:39:18 +00002140// TODO: Make this work properly with vector types
Robert Bocchinob78e8382006-01-20 20:43:57 +00002141//
Chris Lattner2c601a72002-09-20 15:05:40 +00002142void CWriter::printContainedStructs(const Type *Ty,
Dan Gohman193c2352008-06-02 21:30:49 +00002143 std::set<const Type*> &StructPrinted) {
Chris Lattner14d9b202006-01-20 18:57:03 +00002144 // Don't walk through pointers.
Duncan Sands1df98592010-02-16 11:11:14 +00002145 if (Ty->isPointerTy() || Ty->isPrimitiveType() || Ty->isIntegerTy())
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002146 return;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002147
Chris Lattner14d9b202006-01-20 18:57:03 +00002148 // Print all contained types first.
2149 for (Type::subtype_iterator I = Ty->subtype_begin(),
2150 E = Ty->subtype_end(); I != E; ++I)
2151 printContainedStructs(*I, StructPrinted);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002152
Duncan Sands1df98592010-02-16 11:11:14 +00002153 if (Ty->isStructTy() || Ty->isArrayTy()) {
Chris Lattner14d9b202006-01-20 18:57:03 +00002154 // Check to see if we have already printed this struct.
Dan Gohman193c2352008-06-02 21:30:49 +00002155 if (StructPrinted.insert(Ty).second) {
Chris Lattner14d9b202006-01-20 18:57:03 +00002156 // Print structure type out.
Dan Gohman193c2352008-06-02 21:30:49 +00002157 std::string Name = TypeNames[Ty];
2158 printType(Out, Ty, false, Name, true);
Chris Lattner58d04d42002-09-20 15:18:30 +00002159 Out << ";\n\n";
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00002160 }
Nick Hildenbrandt67aa2e22002-09-14 21:36:24 +00002161 }
2162}
2163
Chris Lattner4cda8352002-08-20 16:55:48 +00002164void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002165 /// isStructReturn - Should this function actually return a struct by-value?
Devang Patel41e23972008-03-03 21:46:28 +00002166 bool isStructReturn = F->hasStructRetAttr();
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002167
Rafael Espindolabb46f522009-01-15 20:18:42 +00002168 if (F->hasLocalLinkage()) Out << "static ";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +00002169 if (F->hasDLLImportLinkage()) Out << "__declspec(dllimport) ";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002170 if (F->hasDLLExportLinkage()) Out << "__declspec(dllexport) ";
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00002171 switch (F->getCallingConv()) {
2172 case CallingConv::X86_StdCall:
Nick Lewyckyf9ef5b32008-11-26 03:17:27 +00002173 Out << "__attribute__((stdcall)) ";
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00002174 break;
2175 case CallingConv::X86_FastCall:
Nick Lewyckyf9ef5b32008-11-26 03:17:27 +00002176 Out << "__attribute__((fastcall)) ";
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00002177 break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002178 case CallingConv::X86_ThisCall:
2179 Out << "__attribute__((thiscall)) ";
2180 break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002181 default:
2182 break;
Anton Korobeynikovbcb97702006-09-17 20:25:45 +00002183 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002184
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002185 // Loop over the arguments, printing them...
Chris Lattner16c7bb22002-05-09 02:28:59 +00002186 const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
Devang Patel05988662008-09-25 21:00:45 +00002187 const AttrListPtr &PAL = F->getAttributes();
Misha Brukmand6a29a52005-04-20 16:05:03 +00002188
Duncan Sandsbb1d4512010-02-21 19:15:19 +00002189 std::string tstr;
2190 raw_string_ostream FunctionInnards(tstr);
Misha Brukmand6a29a52005-04-20 16:05:03 +00002191
Nick Hildenbrandt98502372002-11-18 20:55:50 +00002192 // Print out the name...
Bill Wendling145aad02007-02-23 22:45:08 +00002193 FunctionInnards << GetValueName(F) << '(';
Misha Brukmand6a29a52005-04-20 16:05:03 +00002194
Chris Lattner0c54d892006-05-23 23:39:48 +00002195 bool PrintedArg = false;
Reid Spencer5cbf9852007-01-30 20:08:39 +00002196 if (!F->isDeclaration()) {
Chris Lattnere4d5c442005-03-15 04:54:21 +00002197 if (!F->arg_empty()) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002198 Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Evan Cheng681d2b82008-01-11 03:07:46 +00002199 unsigned Idx = 1;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002200
Chris Lattner0c54d892006-05-23 23:39:48 +00002201 // If this is a struct-return function, don't print the hidden
2202 // struct-return argument.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002203 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002204 assert(I != E && "Invalid struct return function!");
2205 ++I;
Evan Cheng681d2b82008-01-11 03:07:46 +00002206 ++Idx;
Chris Lattner0c54d892006-05-23 23:39:48 +00002207 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002208
Chris Lattneredd8ce12003-05-03 03:14:35 +00002209 std::string ArgName;
Chris Lattner0c54d892006-05-23 23:39:48 +00002210 for (; I != E; ++I) {
2211 if (PrintedArg) FunctionInnards << ", ";
Chris Lattner4cda8352002-08-20 16:55:48 +00002212 if (I->hasName() || !Prototype)
Bill Wendling145aad02007-02-23 22:45:08 +00002213 ArgName = GetValueName(I);
Misha Brukmand6a29a52005-04-20 16:05:03 +00002214 else
Chris Lattner4cda8352002-08-20 16:55:48 +00002215 ArgName = "";
Evan Cheng681d2b82008-01-11 03:07:46 +00002216 const Type *ArgTy = I->getType();
Devang Patel05988662008-09-25 21:00:45 +00002217 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Evan Cheng588c6f82008-01-11 09:12:49 +00002218 ArgTy = cast<PointerType>(ArgTy)->getElementType();
Chris Lattnere05252b42008-03-02 08:07:24 +00002219 ByValParams.insert(I);
Evan Cheng588c6f82008-01-11 09:12:49 +00002220 }
Evan Cheng681d2b82008-01-11 03:07:46 +00002221 printType(FunctionInnards, ArgTy,
Devang Patel05988662008-09-25 21:00:45 +00002222 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt),
Reid Spencer0ae96932007-01-07 03:24:48 +00002223 ArgName);
Chris Lattner0c54d892006-05-23 23:39:48 +00002224 PrintedArg = true;
Reid Spencer0ae96932007-01-07 03:24:48 +00002225 ++Idx;
Chris Lattnerdeed7a52002-05-09 15:18:52 +00002226 }
2227 }
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002228 } else {
Chris Lattner0c54d892006-05-23 23:39:48 +00002229 // Loop over the arguments, printing them.
2230 FunctionType::param_iterator I = FT->param_begin(), E = FT->param_end();
Evan Cheng3d794782008-01-11 23:10:11 +00002231 unsigned Idx = 1;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002232
Chris Lattner0c54d892006-05-23 23:39:48 +00002233 // If this is a struct-return function, don't print the hidden
2234 // struct-return argument.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002235 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002236 assert(I != E && "Invalid struct return function!");
2237 ++I;
Evan Cheng3d794782008-01-11 23:10:11 +00002238 ++Idx;
Chris Lattner0c54d892006-05-23 23:39:48 +00002239 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002240
Chris Lattner0c54d892006-05-23 23:39:48 +00002241 for (; I != E; ++I) {
2242 if (PrintedArg) FunctionInnards << ", ";
Evan Cheng3d794782008-01-11 23:10:11 +00002243 const Type *ArgTy = *I;
Devang Patel05988662008-09-25 21:00:45 +00002244 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Duncan Sands1df98592010-02-16 11:11:14 +00002245 assert(ArgTy->isPointerTy());
Evan Cheng3d794782008-01-11 23:10:11 +00002246 ArgTy = cast<PointerType>(ArgTy)->getElementType();
2247 }
2248 printType(FunctionInnards, ArgTy,
Devang Patel05988662008-09-25 21:00:45 +00002249 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt));
Chris Lattner0c54d892006-05-23 23:39:48 +00002250 PrintedArg = true;
Reid Spencer0ae96932007-01-07 03:24:48 +00002251 ++Idx;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002252 }
2253 }
2254
Chris Lattner5106dcd2010-04-10 19:12:44 +00002255 if (!PrintedArg && FT->isVarArg()) {
2256 FunctionInnards << "int vararg_dummy_arg";
2257 PrintedArg = true;
2258 }
2259
Chris Lattner1f8c4a12002-09-20 22:32:30 +00002260 // Finish printing arguments... if this is a vararg function, print the ...,
2261 // unless there are no known types, in which case, we just emit ().
2262 //
Chris Lattner0c54d892006-05-23 23:39:48 +00002263 if (FT->isVarArg() && PrintedArg) {
Chris Lattner5106dcd2010-04-10 19:12:44 +00002264 FunctionInnards << ",..."; // Output varargs portion of signature!
Chris Lattner0c54d892006-05-23 23:39:48 +00002265 } else if (!FT->isVarArg() && !PrintedArg) {
Chris Lattner4f7e1732003-11-26 00:09:17 +00002266 FunctionInnards << "void"; // ret() -> ret(void) in C.
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002267 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002268 FunctionInnards << ')';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002269
Chris Lattner0c54d892006-05-23 23:39:48 +00002270 // Get the return tpe for the function.
2271 const Type *RetTy;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002272 if (!isStructReturn)
Chris Lattner0c54d892006-05-23 23:39:48 +00002273 RetTy = F->getReturnType();
2274 else {
2275 // If this is a struct-return function, print the struct-return type.
2276 RetTy = cast<PointerType>(FT->getParamType(0))->getElementType();
2277 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002278
Chris Lattner0c54d892006-05-23 23:39:48 +00002279 // Print out the return type and the signature built above.
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002280 printType(Out, RetTy,
Devang Patel05988662008-09-25 21:00:45 +00002281 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt),
Reid Spencer0ae96932007-01-07 03:24:48 +00002282 FunctionInnards.str());
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002283}
2284
Reid Spencer22586642006-12-17 20:24:50 +00002285static inline bool isFPIntBitCast(const Instruction &I) {
2286 if (!isa<BitCastInst>(I))
2287 return false;
2288 const Type *SrcTy = I.getOperand(0)->getType();
2289 const Type *DstTy = I.getType();
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002290 return (SrcTy->isFloatingPointTy() && DstTy->isIntegerTy()) ||
2291 (DstTy->isFloatingPointTy() && SrcTy->isIntegerTy());
Reid Spencer22586642006-12-17 20:24:50 +00002292}
2293
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002294void CWriter::printFunction(Function &F) {
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002295 /// isStructReturn - Should this function actually return a struct by-value?
Devang Patel41e23972008-03-03 21:46:28 +00002296 bool isStructReturn = F.hasStructRetAttr();
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002297
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002298 printFunctionSignature(&F, false);
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002299 Out << " {\n";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002300
Chris Lattner0c54d892006-05-23 23:39:48 +00002301 // If this is a struct return function, handle the result with magic.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002302 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002303 const Type *StructTy =
2304 cast<PointerType>(F.arg_begin()->getType())->getElementType();
2305 Out << " ";
Reid Spencer251f2142007-01-09 17:09:09 +00002306 printType(Out, StructTy, false, "StructReturn");
Chris Lattner0c54d892006-05-23 23:39:48 +00002307 Out << "; /* Struct return temporary */\n";
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002308
Chris Lattner0c54d892006-05-23 23:39:48 +00002309 Out << " ";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002310 printType(Out, F.arg_begin()->getType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00002311 GetValueName(F.arg_begin()));
Chris Lattner0c54d892006-05-23 23:39:48 +00002312 Out << " = &StructReturn;\n";
2313 }
2314
2315 bool PrintedVar = false;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002316
Chris Lattner497e19a2002-05-09 20:39:03 +00002317 // print local variable information for the function
Reid Spencer941cfda2006-12-17 18:50:51 +00002318 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ++I) {
Chris Lattner6ffe5512004-04-27 15:13:33 +00002319 if (const AllocaInst *AI = isDirectAlloca(&*I)) {
Chris Lattnera8ab89e2003-06-17 04:39:14 +00002320 Out << " ";
Bill Wendling145aad02007-02-23 22:45:08 +00002321 printType(Out, AI->getAllocatedType(), false, GetValueName(AI));
Misha Brukman41ce39c2005-01-31 06:19:57 +00002322 Out << "; /* Address-exposed local */\n";
Chris Lattner0c54d892006-05-23 23:39:48 +00002323 PrintedVar = true;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002324 } else if (I->getType() != Type::getVoidTy(F.getContext()) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00002325 !isInlinableInst(*I)) {
Chris Lattner16c7bb22002-05-09 02:28:59 +00002326 Out << " ";
Bill Wendling145aad02007-02-23 22:45:08 +00002327 printType(Out, I->getType(), false, GetValueName(&*I));
Chris Lattner16c7bb22002-05-09 02:28:59 +00002328 Out << ";\n";
Misha Brukmand6a29a52005-04-20 16:05:03 +00002329
Chris Lattner84e66652003-05-03 07:11:00 +00002330 if (isa<PHINode>(*I)) { // Print out PHI node temporaries as well...
2331 Out << " ";
Reid Spencer251f2142007-01-09 17:09:09 +00002332 printType(Out, I->getType(), false,
Bill Wendling145aad02007-02-23 22:45:08 +00002333 GetValueName(&*I)+"__PHI_TEMPORARY");
Chris Lattner84e66652003-05-03 07:11:00 +00002334 Out << ";\n";
2335 }
Chris Lattner0c54d892006-05-23 23:39:48 +00002336 PrintedVar = true;
Reid Spencer941cfda2006-12-17 18:50:51 +00002337 }
2338 // We need a temporary for the BitCast to use so it can pluck a value out
Reid Spencere4d87aa2006-12-23 06:05:41 +00002339 // of a union to do the BitCast. This is separate from the need for a
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002340 // variable to hold the result of the BitCast.
Reid Spencer22586642006-12-17 20:24:50 +00002341 if (isFPIntBitCast(*I)) {
Bill Wendling145aad02007-02-23 22:45:08 +00002342 Out << " llvmBitCastUnion " << GetValueName(&*I)
Reid Spencer555a0b12006-12-11 20:39:15 +00002343 << "__BITCAST_TEMPORARY;\n";
Reid Spencer941cfda2006-12-17 18:50:51 +00002344 PrintedVar = true;
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002345 }
Reid Spencer941cfda2006-12-17 18:50:51 +00002346 }
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00002347
Chris Lattner0c54d892006-05-23 23:39:48 +00002348 if (PrintedVar)
2349 Out << '\n';
Chris Lattnerd1cf1b42002-09-20 23:26:33 +00002350
Chris Lattner395fd592004-12-13 21:52:52 +00002351 if (F.hasExternalLinkage() && F.getName() == "main")
Chris Lattner50a8a172005-05-06 06:58:42 +00002352 Out << " CODE_FOR_MAIN();\n";
Chris Lattner395fd592004-12-13 21:52:52 +00002353
Chris Lattner16c7bb22002-05-09 02:28:59 +00002354 // print the basic blocks
Chris Lattner94f4f8e2004-02-13 23:00:29 +00002355 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
Chris Lattnercb3ad012004-05-09 20:41:32 +00002356 if (Loop *L = LI->getLoopFor(BB)) {
2357 if (L->getHeader() == BB && L->getParentLoop() == 0)
2358 printLoop(L);
2359 } else {
2360 printBasicBlock(BB);
Chris Lattnerd0c668c2002-05-09 21:18:38 +00002361 }
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002362 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00002363
Chris Lattner8c3c4bf2002-05-09 15:49:41 +00002364 Out << "}\n\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002365}
2366
Chris Lattnercb3ad012004-05-09 20:41:32 +00002367void CWriter::printLoop(Loop *L) {
2368 Out << " do { /* Syntactic loop '" << L->getHeader()->getName()
2369 << "' to make GCC happy */\n";
2370 for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) {
2371 BasicBlock *BB = L->getBlocks()[i];
2372 Loop *BBLoop = LI->getLoopFor(BB);
2373 if (BBLoop == L)
2374 printBasicBlock(BB);
2375 else if (BB == BBLoop->getHeader() && BBLoop->getParentLoop() == L)
Misha Brukmand6a29a52005-04-20 16:05:03 +00002376 printLoop(BBLoop);
Chris Lattnercb3ad012004-05-09 20:41:32 +00002377 }
2378 Out << " } while (1); /* end of syntactic loop '"
2379 << L->getHeader()->getName() << "' */\n";
2380}
2381
2382void CWriter::printBasicBlock(BasicBlock *BB) {
2383
2384 // Don't print the label for the basic block if there are no uses, or if
2385 // the only terminator use is the predecessor basic block's terminator.
2386 // We have to scan the use list because PHI nodes use basic blocks too but
2387 // do not require a label to be generated.
2388 //
2389 bool NeedsLabel = false;
2390 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
2391 if (isGotoCodeNecessary(*PI, BB)) {
2392 NeedsLabel = true;
2393 break;
2394 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00002395
Bill Wendling145aad02007-02-23 22:45:08 +00002396 if (NeedsLabel) Out << GetValueName(BB) << ":\n";
Misha Brukmand6a29a52005-04-20 16:05:03 +00002397
Chris Lattnercb3ad012004-05-09 20:41:32 +00002398 // Output all of the instructions in the basic block...
2399 for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E;
2400 ++II) {
2401 if (!isInlinableInst(*II) && !isDirectAlloca(II)) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002402 if (II->getType() != Type::getVoidTy(BB->getContext()) &&
2403 !isInlineAsm(*II))
Chris Lattnercb3ad012004-05-09 20:41:32 +00002404 outputLValue(II);
2405 else
2406 Out << " ";
Chris Lattnere56d9462008-05-31 09:23:55 +00002407 writeInstComputationInline(*II);
Chris Lattnercb3ad012004-05-09 20:41:32 +00002408 Out << ";\n";
2409 }
2410 }
Misha Brukmand6a29a52005-04-20 16:05:03 +00002411
Chris Lattnere56d9462008-05-31 09:23:55 +00002412 // Don't emit prefix or suffix for the terminator.
Chris Lattnercb3ad012004-05-09 20:41:32 +00002413 visit(*BB->getTerminator());
2414}
2415
2416
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002417// Specific Instruction type classes... note that all of the casts are
Misha Brukman5560c9d2003-08-18 14:43:39 +00002418// necessary because we use the instruction classes as opaque types...
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002419//
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002420void CWriter::visitReturnInst(ReturnInst &I) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002421 // If this is a struct return function, return the temporary struct.
Devang Patel41e23972008-03-03 21:46:28 +00002422 bool isStructReturn = I.getParent()->getParent()->hasStructRetAttr();
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002423
2424 if (isStructReturn) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002425 Out << " return StructReturn;\n";
2426 return;
2427 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002428
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002429 // Don't output a void return if this is the last basic block in the function
Misha Brukmand6a29a52005-04-20 16:05:03 +00002430 if (I.getNumOperands() == 0 &&
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002431 &*--I.getParent()->getParent()->end() == I.getParent() &&
2432 !I.getParent()->size() == 1) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002433 return;
Chris Lattner963b70b2002-05-21 18:05:19 +00002434 }
Chris Lattner44408262002-05-09 03:50:42 +00002435
Dan Gohman76612792008-04-23 21:49:29 +00002436 if (I.getNumOperands() > 1) {
2437 Out << " {\n";
2438 Out << " ";
2439 printType(Out, I.getParent()->getParent()->getReturnType());
2440 Out << " llvm_cbe_mrv_temp = {\n";
2441 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
2442 Out << " ";
2443 writeOperand(I.getOperand(i));
2444 if (i != e - 1)
2445 Out << ",";
2446 Out << "\n";
2447 }
2448 Out << " };\n";
2449 Out << " return llvm_cbe_mrv_temp;\n";
2450 Out << " }\n";
2451 return;
2452 }
2453
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002454 Out << " return";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002455 if (I.getNumOperands()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002456 Out << ' ';
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002457 writeOperand(I.getOperand(0));
Chris Lattner16c7bb22002-05-09 02:28:59 +00002458 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002459 Out << ";\n";
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00002460}
2461
Chris Lattnera9f5e052003-04-22 20:19:52 +00002462void CWriter::visitSwitchInst(SwitchInst &SI) {
Chris Lattnera05e0ec2004-05-09 03:42:48 +00002463
Chris Lattnera9f5e052003-04-22 20:19:52 +00002464 Out << " switch (";
2465 writeOperand(SI.getOperand(0));
Chris Lattnerf1acd962003-04-23 19:15:13 +00002466 Out << ") {\n default:\n";
John Criswell30cc2272004-10-25 18:30:09 +00002467 printPHICopiesForSuccessor (SI.getParent(), SI.getDefaultDest(), 2);
Chris Lattnerf1acd962003-04-23 19:15:13 +00002468 printBranchToBlock(SI.getParent(), SI.getDefaultDest(), 2);
Chris Lattnera9f5e052003-04-22 20:19:52 +00002469 Out << ";\n";
2470 for (unsigned i = 2, e = SI.getNumOperands(); i != e; i += 2) {
2471 Out << " case ";
2472 writeOperand(SI.getOperand(i));
2473 Out << ":\n";
2474 BasicBlock *Succ = cast<BasicBlock>(SI.getOperand(i+1));
John Criswell30cc2272004-10-25 18:30:09 +00002475 printPHICopiesForSuccessor (SI.getParent(), Succ, 2);
Chris Lattnera9f5e052003-04-22 20:19:52 +00002476 printBranchToBlock(SI.getParent(), Succ, 2);
Chris Lattner7896c9f2009-12-03 00:50:42 +00002477 if (Function::iterator(Succ) == llvm::next(Function::iterator(SI.getParent())))
Chris Lattnera9f5e052003-04-22 20:19:52 +00002478 Out << " break;\n";
2479 }
2480 Out << " }\n";
2481}
2482
Chris Lattnerab21db72009-10-28 00:19:10 +00002483void CWriter::visitIndirectBrInst(IndirectBrInst &IBI) {
Chris Lattnerf0dca282009-10-27 21:21:06 +00002484 Out << " goto *(void*)(";
2485 writeOperand(IBI.getOperand(0));
2486 Out << ");\n";
2487}
2488
Chris Lattnera9d12c02004-10-16 18:12:13 +00002489void CWriter::visitUnreachableInst(UnreachableInst &I) {
Chris Lattner963869e2004-10-17 23:49:11 +00002490 Out << " /*UNREACHABLE*/;\n";
Chris Lattnera9d12c02004-10-16 18:12:13 +00002491}
2492
Chris Lattnercb3ad012004-05-09 20:41:32 +00002493bool CWriter::isGotoCodeNecessary(BasicBlock *From, BasicBlock *To) {
2494 /// FIXME: This should be reenabled, but loop reordering safe!!
2495 return true;
2496
Chris Lattner7896c9f2009-12-03 00:50:42 +00002497 if (llvm::next(Function::iterator(From)) != Function::iterator(To))
Chris Lattner67c2d182005-03-18 16:12:37 +00002498 return true; // Not the direct successor, we need a goto.
Chris Lattnercb3ad012004-05-09 20:41:32 +00002499
2500 //isa<SwitchInst>(From->getTerminator())
Chris Lattner9bda5f52003-06-28 17:53:05 +00002501
Chris Lattnercb3ad012004-05-09 20:41:32 +00002502 if (LI->getLoopFor(From) != LI->getLoopFor(To))
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002503 return true;
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002504 return false;
2505}
2506
John Criswell57bbfce2004-10-20 14:38:39 +00002507void CWriter::printPHICopiesForSuccessor (BasicBlock *CurBlock,
Misha Brukmand6a29a52005-04-20 16:05:03 +00002508 BasicBlock *Successor,
John Criswell57bbfce2004-10-20 14:38:39 +00002509 unsigned Indent) {
2510 for (BasicBlock::iterator I = Successor->begin(); isa<PHINode>(I); ++I) {
2511 PHINode *PN = cast<PHINode>(I);
2512 // Now we have to do the printing.
2513 Value *IV = PN->getIncomingValueForBlock(CurBlock);
2514 if (!isa<UndefValue>(IV)) {
2515 Out << std::string(Indent, ' ');
Bill Wendling145aad02007-02-23 22:45:08 +00002516 Out << " " << GetValueName(I) << "__PHI_TEMPORARY = ";
John Criswell57bbfce2004-10-20 14:38:39 +00002517 writeOperand(IV);
2518 Out << "; /* for PHI node */\n";
2519 }
2520 }
2521}
2522
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002523void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
Chris Lattner9bda5f52003-06-28 17:53:05 +00002524 unsigned Indent) {
Chris Lattnercb3ad012004-05-09 20:41:32 +00002525 if (isGotoCodeNecessary(CurBB, Succ)) {
Chris Lattneredd8ce12003-05-03 03:14:35 +00002526 Out << std::string(Indent, ' ') << " goto ";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002527 writeOperand(Succ);
2528 Out << ";\n";
2529 }
2530}
2531
Misha Brukman37f92e22003-09-11 22:34:13 +00002532// Branch instruction printing - Avoid printing out a branch to a basic block
2533// that immediately succeeds the current one.
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002534//
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002535void CWriter::visitBranchInst(BranchInst &I) {
Chris Lattnera05e0ec2004-05-09 03:42:48 +00002536
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002537 if (I.isConditional()) {
Chris Lattner5ef6ffd2003-10-12 08:12:58 +00002538 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(0))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002539 Out << " if (";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002540 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002541 Out << ") {\n";
Misha Brukmand6a29a52005-04-20 16:05:03 +00002542
John Criswell57bbfce2004-10-20 14:38:39 +00002543 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 2);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002544 printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
Misha Brukmand6a29a52005-04-20 16:05:03 +00002545
Chris Lattner5ef6ffd2003-10-12 08:12:58 +00002546 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(1))) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002547 Out << " } else {\n";
John Criswell57bbfce2004-10-20 14:38:39 +00002548 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002549 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002550 }
2551 } else {
Misha Brukman5560c9d2003-08-18 14:43:39 +00002552 // First goto not necessary, assume second one is...
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002553 Out << " if (!";
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002554 writeOperand(I.getCondition());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002555 Out << ") {\n";
2556
John Criswell57bbfce2004-10-20 14:38:39 +00002557 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002558 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002559 }
2560
2561 Out << " }\n";
2562 } else {
John Criswell57bbfce2004-10-20 14:38:39 +00002563 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 0);
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002564 printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002565 }
2566 Out << "\n";
2567}
2568
Chris Lattner84e66652003-05-03 07:11:00 +00002569// PHI nodes get copied into temporary values at the end of predecessor basic
2570// blocks. We now need to copy these temporary values into the REAL value for
2571// the PHI.
2572void CWriter::visitPHINode(PHINode &I) {
2573 writeOperand(&I);
2574 Out << "__PHI_TEMPORARY";
2575}
2576
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002577
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002578void CWriter::visitBinaryOperator(Instruction &I) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002579 // binary instructions, shift instructions, setCond instructions.
Duncan Sands1df98592010-02-16 11:11:14 +00002580 assert(!I.getType()->isPointerTy());
Brian Gaeke031a1122003-06-23 20:00:51 +00002581
2582 // We must cast the results of binary operations which might be promoted.
2583 bool needsCast = false;
Owen Anderson1d0be152009-08-13 21:58:54 +00002584 if ((I.getType() == Type::getInt8Ty(I.getContext())) ||
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002585 (I.getType() == Type::getInt16Ty(I.getContext()))
Owen Anderson1d0be152009-08-13 21:58:54 +00002586 || (I.getType() == Type::getFloatTy(I.getContext()))) {
Brian Gaeke031a1122003-06-23 20:00:51 +00002587 needsCast = true;
2588 Out << "((";
Reid Spencer251f2142007-01-09 17:09:09 +00002589 printType(Out, I.getType(), false);
Brian Gaeke031a1122003-06-23 20:00:51 +00002590 Out << ")(";
2591 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002592
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002593 // If this is a negation operation, print it out as such. For FP, we don't
2594 // want to print "-0.0 - X".
Owen Andersonfa82b6e2009-07-13 22:18:28 +00002595 if (BinaryOperator::isNeg(&I)) {
John Criswellce4e1e42005-07-14 19:41:16 +00002596 Out << "-(";
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002597 writeOperand(BinaryOperator::getNegArgument(cast<BinaryOperator>(&I)));
John Criswellce4e1e42005-07-14 19:41:16 +00002598 Out << ")";
Owen Andersonfa82b6e2009-07-13 22:18:28 +00002599 } else if (BinaryOperator::isFNeg(&I)) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002600 Out << "-(";
2601 writeOperand(BinaryOperator::getFNegArgument(cast<BinaryOperator>(&I)));
2602 Out << ")";
Reid Spencer0a783f72006-11-02 01:53:59 +00002603 } else if (I.getOpcode() == Instruction::FRem) {
Chris Lattner57da2522005-08-23 20:22:50 +00002604 // Output a call to fmod/fmodf instead of emitting a%b
Owen Anderson1d0be152009-08-13 21:58:54 +00002605 if (I.getType() == Type::getFloatTy(I.getContext()))
Chris Lattner57da2522005-08-23 20:22:50 +00002606 Out << "fmodf(";
Owen Anderson1d0be152009-08-13 21:58:54 +00002607 else if (I.getType() == Type::getDoubleTy(I.getContext()))
Chris Lattner57da2522005-08-23 20:22:50 +00002608 Out << "fmod(";
Dale Johannesen53f0bc12007-09-17 00:38:27 +00002609 else // all 3 flavors of long double
2610 Out << "fmodl(";
Chris Lattner57da2522005-08-23 20:22:50 +00002611 writeOperand(I.getOperand(0));
2612 Out << ", ";
2613 writeOperand(I.getOperand(1));
2614 Out << ")";
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002615 } else {
Reid Spencer1628cec2006-10-26 06:15:43 +00002616
2617 // Write out the cast of the instruction's value back to the proper type
2618 // if necessary.
2619 bool NeedsClosingParens = writeInstructionCast(I);
2620
2621 // Certain instructions require the operand to be forced to a specific type
2622 // so we use writeOperandWithCast here instead of writeOperand. Similarly
2623 // below for operand 1
2624 writeOperandWithCast(I.getOperand(0), I.getOpcode());
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002625
2626 switch (I.getOpcode()) {
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002627 case Instruction::Add:
2628 case Instruction::FAdd: Out << " + "; break;
2629 case Instruction::Sub:
2630 case Instruction::FSub: Out << " - "; break;
2631 case Instruction::Mul:
2632 case Instruction::FMul: Out << " * "; break;
Reid Spencer0a783f72006-11-02 01:53:59 +00002633 case Instruction::URem:
2634 case Instruction::SRem:
Reid Spencer832254e2007-02-02 02:16:23 +00002635 case Instruction::FRem: Out << " % "; break;
Reid Spencer1628cec2006-10-26 06:15:43 +00002636 case Instruction::UDiv:
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002637 case Instruction::SDiv:
Reid Spencer832254e2007-02-02 02:16:23 +00002638 case Instruction::FDiv: Out << " / "; break;
2639 case Instruction::And: Out << " & "; break;
2640 case Instruction::Or: Out << " | "; break;
2641 case Instruction::Xor: Out << " ^ "; break;
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002642 case Instruction::Shl : Out << " << "; break;
Reid Spencer3822ff52006-11-08 06:47:33 +00002643 case Instruction::LShr:
2644 case Instruction::AShr: Out << " >> "; break;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002645 default:
Torok Edwindac237e2009-07-08 20:53:28 +00002646#ifndef NDEBUG
Chris Lattnerbdff5482009-08-23 04:37:46 +00002647 errs() << "Invalid operator type!" << I;
Torok Edwindac237e2009-07-08 20:53:28 +00002648#endif
Torok Edwinc23197a2009-07-14 16:55:14 +00002649 llvm_unreachable(0);
Chris Lattner6d9b69f2005-03-03 21:12:04 +00002650 }
2651
Reid Spencer1628cec2006-10-26 06:15:43 +00002652 writeOperandWithCast(I.getOperand(1), I.getOpcode());
2653 if (NeedsClosingParens)
2654 Out << "))";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002655 }
2656
Brian Gaeke031a1122003-06-23 20:00:51 +00002657 if (needsCast) {
2658 Out << "))";
2659 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002660}
2661
Reid Spencere4d87aa2006-12-23 06:05:41 +00002662void CWriter::visitICmpInst(ICmpInst &I) {
2663 // We must cast the results of icmp which might be promoted.
2664 bool needsCast = false;
2665
2666 // Write out the cast of the instruction's value back to the proper type
2667 // if necessary.
2668 bool NeedsClosingParens = writeInstructionCast(I);
2669
2670 // Certain icmp predicate require the operand to be forced to a specific type
2671 // so we use writeOperandWithCast here instead of writeOperand. Similarly
2672 // below for operand 1
Chris Lattner5bda9e42007-09-15 06:51:03 +00002673 writeOperandWithCast(I.getOperand(0), I);
Reid Spencere4d87aa2006-12-23 06:05:41 +00002674
2675 switch (I.getPredicate()) {
2676 case ICmpInst::ICMP_EQ: Out << " == "; break;
2677 case ICmpInst::ICMP_NE: Out << " != "; break;
2678 case ICmpInst::ICMP_ULE:
2679 case ICmpInst::ICMP_SLE: Out << " <= "; break;
2680 case ICmpInst::ICMP_UGE:
2681 case ICmpInst::ICMP_SGE: Out << " >= "; break;
2682 case ICmpInst::ICMP_ULT:
2683 case ICmpInst::ICMP_SLT: Out << " < "; break;
2684 case ICmpInst::ICMP_UGT:
2685 case ICmpInst::ICMP_SGT: Out << " > "; break;
Torok Edwindac237e2009-07-08 20:53:28 +00002686 default:
2687#ifndef NDEBUG
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002688 errs() << "Invalid icmp predicate!" << I;
Torok Edwindac237e2009-07-08 20:53:28 +00002689#endif
Torok Edwinc23197a2009-07-14 16:55:14 +00002690 llvm_unreachable(0);
Reid Spencere4d87aa2006-12-23 06:05:41 +00002691 }
2692
Chris Lattner5bda9e42007-09-15 06:51:03 +00002693 writeOperandWithCast(I.getOperand(1), I);
Reid Spencere4d87aa2006-12-23 06:05:41 +00002694 if (NeedsClosingParens)
2695 Out << "))";
2696
2697 if (needsCast) {
2698 Out << "))";
2699 }
2700}
2701
2702void CWriter::visitFCmpInst(FCmpInst &I) {
Reid Spencerb801a272007-01-08 06:58:32 +00002703 if (I.getPredicate() == FCmpInst::FCMP_FALSE) {
2704 Out << "0";
2705 return;
2706 }
2707 if (I.getPredicate() == FCmpInst::FCMP_TRUE) {
2708 Out << "1";
2709 return;
2710 }
2711
2712 const char* op = 0;
2713 switch (I.getPredicate()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002714 default: llvm_unreachable("Illegal FCmp predicate");
Reid Spencerb801a272007-01-08 06:58:32 +00002715 case FCmpInst::FCMP_ORD: op = "ord"; break;
2716 case FCmpInst::FCMP_UNO: op = "uno"; break;
2717 case FCmpInst::FCMP_UEQ: op = "ueq"; break;
2718 case FCmpInst::FCMP_UNE: op = "une"; break;
2719 case FCmpInst::FCMP_ULT: op = "ult"; break;
2720 case FCmpInst::FCMP_ULE: op = "ule"; break;
2721 case FCmpInst::FCMP_UGT: op = "ugt"; break;
2722 case FCmpInst::FCMP_UGE: op = "uge"; break;
2723 case FCmpInst::FCMP_OEQ: op = "oeq"; break;
2724 case FCmpInst::FCMP_ONE: op = "one"; break;
2725 case FCmpInst::FCMP_OLT: op = "olt"; break;
2726 case FCmpInst::FCMP_OLE: op = "ole"; break;
2727 case FCmpInst::FCMP_OGT: op = "ogt"; break;
2728 case FCmpInst::FCMP_OGE: op = "oge"; break;
2729 }
2730
2731 Out << "llvm_fcmp_" << op << "(";
Reid Spencere4d87aa2006-12-23 06:05:41 +00002732 // Write the first operand
2733 writeOperand(I.getOperand(0));
Reid Spencerb801a272007-01-08 06:58:32 +00002734 Out << ", ";
Reid Spencere4d87aa2006-12-23 06:05:41 +00002735 // Write the second operand
2736 writeOperand(I.getOperand(1));
Reid Spencerb801a272007-01-08 06:58:32 +00002737 Out << ")";
Reid Spencere4d87aa2006-12-23 06:05:41 +00002738}
2739
Reid Spencer555a0b12006-12-11 20:39:15 +00002740static const char * getFloatBitCastField(const Type *Ty) {
2741 switch (Ty->getTypeID()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002742 default: llvm_unreachable("Invalid Type");
Reid Spencer47857812006-12-31 05:55:36 +00002743 case Type::FloatTyID: return "Float";
Reid Spencer47857812006-12-31 05:55:36 +00002744 case Type::DoubleTyID: return "Double";
Reid Spencera54b7cb2007-01-12 07:05:14 +00002745 case Type::IntegerTyID: {
2746 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
2747 if (NumBits <= 32)
2748 return "Int32";
2749 else
2750 return "Int64";
2751 }
Reid Spencer555a0b12006-12-11 20:39:15 +00002752 }
2753}
2754
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002755void CWriter::visitCastInst(CastInst &I) {
Reid Spencer3da59db2006-11-27 01:05:10 +00002756 const Type *DstTy = I.getType();
2757 const Type *SrcTy = I.getOperand(0)->getType();
Reid Spencer22586642006-12-17 20:24:50 +00002758 if (isFPIntBitCast(I)) {
Chris Lattnere56d9462008-05-31 09:23:55 +00002759 Out << '(';
Reid Spencer555a0b12006-12-11 20:39:15 +00002760 // These int<->float and long<->double casts need to be handled specially
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002761 Out << GetValueName(&I) << "__BITCAST_TEMPORARY."
Reid Spencer555a0b12006-12-11 20:39:15 +00002762 << getFloatBitCastField(I.getOperand(0)->getType()) << " = ";
2763 writeOperand(I.getOperand(0));
Bill Wendling145aad02007-02-23 22:45:08 +00002764 Out << ", " << GetValueName(&I) << "__BITCAST_TEMPORARY."
Reid Spencer555a0b12006-12-11 20:39:15 +00002765 << getFloatBitCastField(I.getType());
Chris Lattnere56d9462008-05-31 09:23:55 +00002766 Out << ')';
2767 return;
2768 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002769
Chris Lattnere56d9462008-05-31 09:23:55 +00002770 Out << '(';
2771 printCast(I.getOpcode(), SrcTy, DstTy);
2772
2773 // Make a sext from i1 work by subtracting the i1 from 0 (an int).
Owen Anderson1d0be152009-08-13 21:58:54 +00002774 if (SrcTy == Type::getInt1Ty(I.getContext()) &&
2775 I.getOpcode() == Instruction::SExt)
Chris Lattnere56d9462008-05-31 09:23:55 +00002776 Out << "0-";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002777
Chris Lattnere56d9462008-05-31 09:23:55 +00002778 writeOperand(I.getOperand(0));
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002779
2780 if (DstTy == Type::getInt1Ty(I.getContext()) &&
Chris Lattnere56d9462008-05-31 09:23:55 +00002781 (I.getOpcode() == Instruction::Trunc ||
2782 I.getOpcode() == Instruction::FPToUI ||
2783 I.getOpcode() == Instruction::FPToSI ||
2784 I.getOpcode() == Instruction::PtrToInt)) {
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002785 // Make sure we really get a trunc to bool by anding the operand with 1
Chris Lattnere56d9462008-05-31 09:23:55 +00002786 Out << "&1u";
Reid Spencer3da59db2006-11-27 01:05:10 +00002787 }
Chris Lattner72623362007-05-03 02:57:13 +00002788 Out << ')';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002789}
2790
Chris Lattner9f24a072004-03-12 05:52:14 +00002791void CWriter::visitSelectInst(SelectInst &I) {
2792 Out << "((";
2793 writeOperand(I.getCondition());
2794 Out << ") ? (";
2795 writeOperand(I.getTrueValue());
2796 Out << ") : (";
2797 writeOperand(I.getFalseValue());
Misha Brukmand6a29a52005-04-20 16:05:03 +00002798 Out << "))";
Chris Lattner9f24a072004-03-12 05:52:14 +00002799}
2800
2801
Chris Lattnerc2421432004-05-09 04:30:20 +00002802void CWriter::lowerIntrinsics(Function &F) {
Reid Spencer69f80a62007-04-12 21:00:45 +00002803 // This is used to keep track of intrinsics that get generated to a lowered
2804 // function. We must generate the prototypes before the function body which
2805 // will only be expanded on first use (by the loop below).
2806 std::vector<Function*> prototypesToGen;
2807
2808 // Examine all the instructions in this function to find the intrinsics that
2809 // need to be lowered.
Jeff Cohen614408d2007-04-13 22:52:03 +00002810 for (Function::iterator BB = F.begin(), EE = F.end(); BB != EE; ++BB)
Chris Lattnerc2421432004-05-09 04:30:20 +00002811 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
2812 if (CallInst *CI = dyn_cast<CallInst>(I++))
2813 if (Function *F = CI->getCalledFunction())
2814 switch (F->getIntrinsicID()) {
2815 case Intrinsic::not_intrinsic:
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00002816 case Intrinsic::memory_barrier:
Chris Lattnerc2421432004-05-09 04:30:20 +00002817 case Intrinsic::vastart:
2818 case Intrinsic::vacopy:
2819 case Intrinsic::vaend:
2820 case Intrinsic::returnaddress:
2821 case Intrinsic::frameaddress:
2822 case Intrinsic::setjmp:
2823 case Intrinsic::longjmp:
Chris Lattner33e9d292005-02-28 19:29:46 +00002824 case Intrinsic::prefetch:
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00002825 case Intrinsic::powi:
Chris Lattner4e220122008-03-02 08:47:13 +00002826 case Intrinsic::x86_sse_cmp_ss:
2827 case Intrinsic::x86_sse_cmp_ps:
2828 case Intrinsic::x86_sse2_cmp_sd:
2829 case Intrinsic::x86_sse2_cmp_pd:
Chris Lattnerff939212008-03-02 08:54:27 +00002830 case Intrinsic::ppc_altivec_lvsl:
Chris Lattner4e220122008-03-02 08:47:13 +00002831 // We directly implement these intrinsics
Chris Lattnerc2421432004-05-09 04:30:20 +00002832 break;
2833 default:
Chris Lattner87242152006-03-13 23:09:05 +00002834 // If this is an intrinsic that directly corresponds to a GCC
2835 // builtin, we handle it.
2836 const char *BuiltinName = "";
2837#define GET_GCC_BUILTIN_NAME
2838#include "llvm/Intrinsics.gen"
2839#undef GET_GCC_BUILTIN_NAME
2840 // If we handle it, don't lower it.
2841 if (BuiltinName[0]) break;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002842
Chris Lattnerc2421432004-05-09 04:30:20 +00002843 // All other intrinsic calls we must lower.
Chris Lattner67c2d182005-03-18 16:12:37 +00002844 Instruction *Before = 0;
Misha Brukmand6a29a52005-04-20 16:05:03 +00002845 if (CI != &BB->front())
Chris Lattner67c2d182005-03-18 16:12:37 +00002846 Before = prior(BasicBlock::iterator(CI));
Misha Brukmand6a29a52005-04-20 16:05:03 +00002847
Reid Spencer519e2392007-01-29 17:51:02 +00002848 IL->LowerIntrinsicCall(CI);
Chris Lattnerc2421432004-05-09 04:30:20 +00002849 if (Before) { // Move iterator to instruction after call
2850 I = Before; ++I;
2851 } else {
2852 I = BB->begin();
Chris Lattner4ef51372004-02-14 00:31:10 +00002853 }
Reid Spencer69f80a62007-04-12 21:00:45 +00002854 // If the intrinsic got lowered to another call, and that call has
2855 // a definition then we need to make sure its prototype is emitted
2856 // before any calls to it.
2857 if (CallInst *Call = dyn_cast<CallInst>(I))
2858 if (Function *NewF = Call->getCalledFunction())
2859 if (!NewF->isDeclaration())
2860 prototypesToGen.push_back(NewF);
2861
Chris Lattner87242152006-03-13 23:09:05 +00002862 break;
Chris Lattnerc2421432004-05-09 04:30:20 +00002863 }
Chris Lattner4ef51372004-02-14 00:31:10 +00002864
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002865 // We may have collected some prototypes to emit in the loop above.
Reid Spencer69f80a62007-04-12 21:00:45 +00002866 // Emit them now, before the function that uses them is emitted. But,
2867 // be careful not to emit them twice.
2868 std::vector<Function*>::iterator I = prototypesToGen.begin();
2869 std::vector<Function*>::iterator E = prototypesToGen.end();
2870 for ( ; I != E; ++I) {
Reid Spencer57c5b182007-04-12 21:57:15 +00002871 if (intrinsicPrototypesAlreadyGenerated.insert(*I).second) {
Reid Spencer69f80a62007-04-12 21:00:45 +00002872 Out << '\n';
2873 printFunctionSignature(*I, true);
2874 Out << ";\n";
Reid Spencer69f80a62007-04-12 21:00:45 +00002875 }
2876 }
2877}
Chris Lattner4ef51372004-02-14 00:31:10 +00002878
Chris Lattnerbb03efd2002-06-25 15:57:03 +00002879void CWriter::visitCallInst(CallInst &I) {
Gabor Greiff042f972010-04-08 13:50:42 +00002880 if (isa<InlineAsm>(I.getCalledValue()))
Chris Lattnerf6a048c2008-05-22 06:19:37 +00002881 return visitInlineAsm(I);
Andrew Lenharth29c277f2006-11-27 23:50:49 +00002882
Chris Lattner87242152006-03-13 23:09:05 +00002883 bool WroteCallee = false;
2884
Chris Lattner18ac3c82003-05-08 18:41:45 +00002885 // Handle intrinsic function calls first...
2886 if (Function *F = I.getCalledFunction())
Chris Lattner2299fec2008-03-02 08:29:41 +00002887 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
2888 if (visitBuiltinCall(I, ID, WroteCallee))
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00002889 return;
Chris Lattner18ac3c82003-05-08 18:41:45 +00002890
Chris Lattner4394d512004-11-13 22:21:56 +00002891 Value *Callee = I.getCalledValue();
Misha Brukmand6a29a52005-04-20 16:05:03 +00002892
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002893 const PointerType *PTy = cast<PointerType>(Callee->getType());
2894 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
2895
Chris Lattner0c54d892006-05-23 23:39:48 +00002896 // If this is a call to a struct-return function, assign to the first
2897 // parameter instead of passing it to the call.
Devang Patel05988662008-09-25 21:00:45 +00002898 const AttrListPtr &PAL = I.getAttributes();
Evan Cheng7723ab32008-01-12 18:53:07 +00002899 bool hasByVal = I.hasByValArgument();
Devang Patel41e23972008-03-03 21:46:28 +00002900 bool isStructRet = I.hasStructRetAttr();
Chris Lattner0c54d892006-05-23 23:39:48 +00002901 if (isStructRet) {
Gabor Greif6bec14f2010-06-26 12:09:10 +00002902 writeOperandDeref(I.getArgOperand(0));
Evan Cheng3d794782008-01-11 23:10:11 +00002903 Out << " = ";
Chris Lattner0c54d892006-05-23 23:39:48 +00002904 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002905
Chris Lattnerfe673d92005-05-06 06:53:07 +00002906 if (I.isTailCall()) Out << " /*tail*/ ";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002907
Chris Lattner0c54d892006-05-23 23:39:48 +00002908 if (!WroteCallee) {
2909 // If this is an indirect call to a struct return function, we need to cast
Evan Cheng7723ab32008-01-12 18:53:07 +00002910 // the pointer. Ditto for indirect calls with byval arguments.
2911 bool NeedsCast = (hasByVal || isStructRet) && !isa<Function>(Callee);
Misha Brukmand6a29a52005-04-20 16:05:03 +00002912
Chris Lattner0c54d892006-05-23 23:39:48 +00002913 // GCC is a real PITA. It does not permit codegening casts of functions to
2914 // function pointers if they are in a call (it generates a trap instruction
2915 // instead!). We work around this by inserting a cast to void* in between
2916 // the function and the function pointer cast. Unfortunately, we can't just
2917 // form the constant expression here, because the folder will immediately
2918 // nuke it.
2919 //
2920 // Note finally, that this is completely unsafe. ANSI C does not guarantee
2921 // that void* and function pointers have the same size. :( To deal with this
2922 // in the common case, we handle casts where the number of arguments passed
2923 // match exactly.
2924 //
2925 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Callee))
Reid Spencer3da59db2006-11-27 01:05:10 +00002926 if (CE->isCast())
Chris Lattner0c54d892006-05-23 23:39:48 +00002927 if (Function *RF = dyn_cast<Function>(CE->getOperand(0))) {
2928 NeedsCast = true;
2929 Callee = RF;
2930 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002931
Chris Lattner0c54d892006-05-23 23:39:48 +00002932 if (NeedsCast) {
2933 // Ok, just cast the pointer type.
2934 Out << "((";
Evan Cheng7723ab32008-01-12 18:53:07 +00002935 if (isStructRet)
Duncan Sandsdc024672007-11-27 13:23:08 +00002936 printStructReturnPointerFunctionType(Out, PAL,
Chris Lattner0c54d892006-05-23 23:39:48 +00002937 cast<PointerType>(I.getCalledValue()->getType()));
Evan Cheng7723ab32008-01-12 18:53:07 +00002938 else if (hasByVal)
2939 printType(Out, I.getCalledValue()->getType(), false, "", true, PAL);
2940 else
2941 printType(Out, I.getCalledValue()->getType());
Chris Lattner0c54d892006-05-23 23:39:48 +00002942 Out << ")(void*)";
2943 }
2944 writeOperand(Callee);
2945 if (NeedsCast) Out << ')';
2946 }
2947
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002948 Out << '(';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002949
Chris Lattner5106dcd2010-04-10 19:12:44 +00002950 bool PrintedArg = false;
2951 if(FTy->isVarArg() && !FTy->getNumParams()) {
2952 Out << "0 /*dummy arg*/";
2953 PrintedArg = true;
2954 }
2955
Chris Lattner4394d512004-11-13 22:21:56 +00002956 unsigned NumDeclaredParams = FTy->getNumParams();
Gabor Greif6bec14f2010-06-26 12:09:10 +00002957 CallSite CS(&I);
2958 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
Chris Lattner0c54d892006-05-23 23:39:48 +00002959 unsigned ArgNo = 0;
2960 if (isStructRet) { // Skip struct return argument.
2961 ++AI;
2962 ++ArgNo;
2963 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002964
Chris Lattner5106dcd2010-04-10 19:12:44 +00002965
Evan Cheng3d794782008-01-11 23:10:11 +00002966 for (; AI != AE; ++AI, ++ArgNo) {
Chris Lattner0c54d892006-05-23 23:39:48 +00002967 if (PrintedArg) Out << ", ";
2968 if (ArgNo < NumDeclaredParams &&
2969 (*AI)->getType() != FTy->getParamType(ArgNo)) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002970 Out << '(';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00002971 printType(Out, FTy->getParamType(ArgNo),
Devang Patel05988662008-09-25 21:00:45 +00002972 /*isSigned=*/PAL.paramHasAttr(ArgNo+1, Attribute::SExt));
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002973 Out << ')';
Chris Lattner4394d512004-11-13 22:21:56 +00002974 }
Evan Cheng3d794782008-01-11 23:10:11 +00002975 // Check if the argument is expected to be passed by value.
Devang Patel05988662008-09-25 21:00:45 +00002976 if (I.paramHasAttr(ArgNo+1, Attribute::ByVal))
Chris Lattnere05252b42008-03-02 08:07:24 +00002977 writeOperandDeref(*AI);
2978 else
2979 writeOperand(*AI);
Chris Lattner0c54d892006-05-23 23:39:48 +00002980 PrintedArg = true;
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002981 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +00002982 Out << ')';
Misha Brukmand6a29a52005-04-20 16:05:03 +00002983}
Chris Lattner4fbf26d2002-05-09 20:53:56 +00002984
Chris Lattner2299fec2008-03-02 08:29:41 +00002985/// visitBuiltinCall - Handle the call to the specified builtin. Returns true
Dan Gohmanf451cb82010-02-10 16:03:48 +00002986/// if the entire call is handled, return false if it wasn't handled, and
Chris Lattner2299fec2008-03-02 08:29:41 +00002987/// optionally set 'WroteCallee' if the callee has already been printed out.
2988bool CWriter::visitBuiltinCall(CallInst &I, Intrinsic::ID ID,
2989 bool &WroteCallee) {
2990 switch (ID) {
2991 default: {
2992 // If this is an intrinsic that directly corresponds to a GCC
2993 // builtin, we emit it here.
2994 const char *BuiltinName = "";
2995 Function *F = I.getCalledFunction();
2996#define GET_GCC_BUILTIN_NAME
2997#include "llvm/Intrinsics.gen"
2998#undef GET_GCC_BUILTIN_NAME
2999 assert(BuiltinName[0] && "Unknown LLVM intrinsic!");
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003000
Chris Lattner2299fec2008-03-02 08:29:41 +00003001 Out << BuiltinName;
3002 WroteCallee = true;
3003 return false;
3004 }
3005 case Intrinsic::memory_barrier:
Andrew Lenharth6ad150b2008-03-05 23:41:37 +00003006 Out << "__sync_synchronize()";
Chris Lattner2299fec2008-03-02 08:29:41 +00003007 return true;
3008 case Intrinsic::vastart:
3009 Out << "0; ";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003010
Chris Lattner2299fec2008-03-02 08:29:41 +00003011 Out << "va_start(*(va_list*)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003012 writeOperand(I.getArgOperand(0));
Chris Lattner2299fec2008-03-02 08:29:41 +00003013 Out << ", ";
3014 // Output the last argument to the enclosing function.
Chris Lattner5106dcd2010-04-10 19:12:44 +00003015 if (I.getParent()->getParent()->arg_empty())
3016 Out << "vararg_dummy_arg";
3017 else
3018 writeOperand(--I.getParent()->getParent()->arg_end());
Chris Lattner2299fec2008-03-02 08:29:41 +00003019 Out << ')';
3020 return true;
3021 case Intrinsic::vaend:
Gabor Greif6bec14f2010-06-26 12:09:10 +00003022 if (!isa<ConstantPointerNull>(I.getArgOperand(0))) {
Chris Lattner2299fec2008-03-02 08:29:41 +00003023 Out << "0; va_end(*(va_list*)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003024 writeOperand(I.getArgOperand(0));
Chris Lattner2299fec2008-03-02 08:29:41 +00003025 Out << ')';
3026 } else {
3027 Out << "va_end(*(va_list*)0)";
3028 }
3029 return true;
3030 case Intrinsic::vacopy:
3031 Out << "0; ";
3032 Out << "va_copy(*(va_list*)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003033 writeOperand(I.getArgOperand(0));
Eric Christopher551754c2010-04-16 23:37:20 +00003034 Out << ", *(va_list*)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003035 writeOperand(I.getArgOperand(1));
Chris Lattner2299fec2008-03-02 08:29:41 +00003036 Out << ')';
3037 return true;
3038 case Intrinsic::returnaddress:
3039 Out << "__builtin_return_address(";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003040 writeOperand(I.getArgOperand(0));
Chris Lattner2299fec2008-03-02 08:29:41 +00003041 Out << ')';
3042 return true;
3043 case Intrinsic::frameaddress:
3044 Out << "__builtin_frame_address(";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003045 writeOperand(I.getArgOperand(0));
Chris Lattner2299fec2008-03-02 08:29:41 +00003046 Out << ')';
3047 return true;
3048 case Intrinsic::powi:
3049 Out << "__builtin_powi(";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003050 writeOperand(I.getArgOperand(0));
Eric Christopher551754c2010-04-16 23:37:20 +00003051 Out << ", ";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003052 writeOperand(I.getArgOperand(1));
Chris Lattner2299fec2008-03-02 08:29:41 +00003053 Out << ')';
3054 return true;
3055 case Intrinsic::setjmp:
3056 Out << "setjmp(*(jmp_buf*)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003057 writeOperand(I.getArgOperand(0));
Chris Lattner2299fec2008-03-02 08:29:41 +00003058 Out << ')';
3059 return true;
3060 case Intrinsic::longjmp:
3061 Out << "longjmp(*(jmp_buf*)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003062 writeOperand(I.getArgOperand(0));
Eric Christopher551754c2010-04-16 23:37:20 +00003063 Out << ", ";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003064 writeOperand(I.getArgOperand(1));
Chris Lattner2299fec2008-03-02 08:29:41 +00003065 Out << ')';
3066 return true;
3067 case Intrinsic::prefetch:
3068 Out << "LLVM_PREFETCH((const void *)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003069 writeOperand(I.getArgOperand(0));
Chris Lattner2299fec2008-03-02 08:29:41 +00003070 Out << ", ";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003071 writeOperand(I.getArgOperand(1));
Eric Christopher551754c2010-04-16 23:37:20 +00003072 Out << ", ";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003073 writeOperand(I.getArgOperand(2));
Chris Lattner2299fec2008-03-02 08:29:41 +00003074 Out << ")";
3075 return true;
3076 case Intrinsic::stacksave:
3077 // Emit this as: Val = 0; *((void**)&Val) = __builtin_stack_save()
3078 // to work around GCC bugs (see PR1809).
3079 Out << "0; *((void**)&" << GetValueName(&I)
3080 << ") = __builtin_stack_save()";
3081 return true;
Chris Lattner4e220122008-03-02 08:47:13 +00003082 case Intrinsic::x86_sse_cmp_ss:
3083 case Intrinsic::x86_sse_cmp_ps:
3084 case Intrinsic::x86_sse2_cmp_sd:
3085 case Intrinsic::x86_sse2_cmp_pd:
3086 Out << '(';
3087 printType(Out, I.getType());
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003088 Out << ')';
Chris Lattner4e220122008-03-02 08:47:13 +00003089 // Multiple GCC builtins multiplex onto this intrinsic.
Gabor Greif6bec14f2010-06-26 12:09:10 +00003090 switch (cast<ConstantInt>(I.getArgOperand(2))->getZExtValue()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003091 default: llvm_unreachable("Invalid llvm.x86.sse.cmp!");
Chris Lattner4e220122008-03-02 08:47:13 +00003092 case 0: Out << "__builtin_ia32_cmpeq"; break;
3093 case 1: Out << "__builtin_ia32_cmplt"; break;
3094 case 2: Out << "__builtin_ia32_cmple"; break;
3095 case 3: Out << "__builtin_ia32_cmpunord"; break;
3096 case 4: Out << "__builtin_ia32_cmpneq"; break;
3097 case 5: Out << "__builtin_ia32_cmpnlt"; break;
3098 case 6: Out << "__builtin_ia32_cmpnle"; break;
3099 case 7: Out << "__builtin_ia32_cmpord"; break;
3100 }
3101 if (ID == Intrinsic::x86_sse_cmp_ps || ID == Intrinsic::x86_sse2_cmp_pd)
3102 Out << 'p';
3103 else
3104 Out << 's';
3105 if (ID == Intrinsic::x86_sse_cmp_ss || ID == Intrinsic::x86_sse_cmp_ps)
3106 Out << 's';
3107 else
3108 Out << 'd';
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003109
Chris Lattner4e220122008-03-02 08:47:13 +00003110 Out << "(";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003111 writeOperand(I.getArgOperand(0));
Eric Christopher551754c2010-04-16 23:37:20 +00003112 Out << ", ";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003113 writeOperand(I.getArgOperand(1));
Chris Lattner4e220122008-03-02 08:47:13 +00003114 Out << ")";
3115 return true;
Chris Lattnerff939212008-03-02 08:54:27 +00003116 case Intrinsic::ppc_altivec_lvsl:
3117 Out << '(';
3118 printType(Out, I.getType());
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003119 Out << ')';
Chris Lattnerff939212008-03-02 08:54:27 +00003120 Out << "__builtin_altivec_lvsl(0, (void*)";
Gabor Greif6bec14f2010-06-26 12:09:10 +00003121 writeOperand(I.getArgOperand(0));
Chris Lattnerff939212008-03-02 08:54:27 +00003122 Out << ")";
3123 return true;
Chris Lattner2299fec2008-03-02 08:29:41 +00003124 }
3125}
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003126
3127//This converts the llvm constraint string to something gcc is expecting.
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003128//TODO: work out platform independent constraints and factor those out
Andrew Lenharth238581f2006-11-28 19:56:02 +00003129// of the per target tables
3130// handle multiple constraint codes
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00003131std::string CWriter::InterpretASMConstraint(InlineAsm::ConstraintInfo& c) {
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003132 assert(c.Codes.size() == 1 && "Too many asm constraint codes to handle");
3133
Chris Lattneraf76e592009-08-22 20:48:53 +00003134 // Grab the translation table from MCAsmInfo if it exists.
Chris Lattnerc0dba722010-01-17 18:22:35 +00003135 const MCAsmInfo *TargetAsm;
3136 std::string Triple = TheModule->getTargetTriple();
3137 if (Triple.empty())
3138 Triple = llvm::sys::getHostTriple();
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003139
Chris Lattnerc0dba722010-01-17 18:22:35 +00003140 std::string E;
3141 if (const Target *Match = TargetRegistry::lookupTarget(Triple, E))
3142 TargetAsm = Match->createAsmInfo(Triple);
3143 else
3144 return c.Codes[0];
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003145
Chris Lattnerc0dba722010-01-17 18:22:35 +00003146 const char *const *table = TargetAsm->getAsmCBE();
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00003147
Daniel Dunbar51b198a2009-07-15 20:24:03 +00003148 // Search the translation table if it exists.
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00003149 for (int i = 0; table && table[i]; i += 2)
Chris Lattnerc0dba722010-01-17 18:22:35 +00003150 if (c.Codes[0] == table[i]) {
3151 delete TargetAsm;
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003152 return table[i+1];
Chris Lattnerc0dba722010-01-17 18:22:35 +00003153 }
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003154
Daniel Dunbar51b198a2009-07-15 20:24:03 +00003155 // Default is identity.
Chris Lattnerc0dba722010-01-17 18:22:35 +00003156 delete TargetAsm;
Andrew Lenharth85f22282006-11-28 22:25:32 +00003157 return c.Codes[0];
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003158}
3159
3160//TODO: import logic from AsmPrinter.cpp
Andrew Lenharthe0cf0752006-11-28 19:53:36 +00003161static std::string gccifyAsm(std::string asmstr) {
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003162 for (std::string::size_type i = 0; i != asmstr.size(); ++i)
3163 if (asmstr[i] == '\n')
3164 asmstr.replace(i, 1, "\\n");
3165 else if (asmstr[i] == '\t')
3166 asmstr.replace(i, 1, "\\t");
3167 else if (asmstr[i] == '$') {
3168 if (asmstr[i + 1] == '{') {
3169 std::string::size_type a = asmstr.find_first_of(':', i + 1);
3170 std::string::size_type b = asmstr.find_first_of('}', i + 1);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003171 std::string n = "%" +
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003172 asmstr.substr(a + 1, b - a - 1) +
3173 asmstr.substr(i + 2, a - i - 2);
3174 asmstr.replace(i, b - i + 1, n);
3175 i += n.size() - 1;
3176 } else
3177 asmstr.replace(i, 1, "%");
3178 }
3179 else if (asmstr[i] == '%')//grr
3180 { asmstr.replace(i, 1, "%%"); ++i;}
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003181
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003182 return asmstr;
3183}
3184
Andrew Lenharth238581f2006-11-28 19:56:02 +00003185//TODO: assumptions about what consume arguments from the call are likely wrong
3186// handle communitivity
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003187void CWriter::visitInlineAsm(CallInst &CI) {
Gabor Greiff042f972010-04-08 13:50:42 +00003188 InlineAsm* as = cast<InlineAsm>(CI.getCalledValue());
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003189 std::vector<InlineAsm::ConstraintInfo> Constraints = as->ParseConstraints();
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003190
Chris Lattnerf6a048c2008-05-22 06:19:37 +00003191 std::vector<std::pair<Value*, int> > ResultVals;
Owen Anderson1d0be152009-08-13 21:58:54 +00003192 if (CI.getType() == Type::getVoidTy(CI.getContext()))
Chris Lattnerf6a048c2008-05-22 06:19:37 +00003193 ;
3194 else if (const StructType *ST = dyn_cast<StructType>(CI.getType())) {
3195 for (unsigned i = 0, e = ST->getNumElements(); i != e; ++i)
3196 ResultVals.push_back(std::make_pair(&CI, (int)i));
3197 } else {
3198 ResultVals.push_back(std::make_pair(&CI, -1));
3199 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003200
Chris Lattner67f631d2008-06-04 18:03:28 +00003201 // Fix up the asm string for gcc and emit it.
3202 Out << "__asm__ volatile (\"" << gccifyAsm(as->getAsmString()) << "\"\n";
3203 Out << " :";
3204
3205 unsigned ValueCount = 0;
3206 bool IsFirst = true;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003207
Chris Lattner67f631d2008-06-04 18:03:28 +00003208 // Convert over all the output constraints.
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003209 for (std::vector<InlineAsm::ConstraintInfo>::iterator I = Constraints.begin(),
Chris Lattner67f631d2008-06-04 18:03:28 +00003210 E = Constraints.end(); I != E; ++I) {
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003211
Chris Lattner67f631d2008-06-04 18:03:28 +00003212 if (I->Type != InlineAsm::isOutput) {
3213 ++ValueCount;
3214 continue; // Ignore non-output constraints.
3215 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003216
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003217 assert(I->Codes.size() == 1 && "Too many asm constraint codes to handle");
Chris Lattnerf6a048c2008-05-22 06:19:37 +00003218 std::string C = InterpretASMConstraint(*I);
3219 if (C.empty()) continue;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003220
Chris Lattner67f631d2008-06-04 18:03:28 +00003221 if (!IsFirst) {
Chris Lattnerf6a048c2008-05-22 06:19:37 +00003222 Out << ", ";
Chris Lattner67f631d2008-06-04 18:03:28 +00003223 IsFirst = false;
3224 }
3225
3226 // Unpack the dest.
3227 Value *DestVal;
3228 int DestValNo = -1;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003229
Chris Lattner67f631d2008-06-04 18:03:28 +00003230 if (ValueCount < ResultVals.size()) {
3231 DestVal = ResultVals[ValueCount].first;
3232 DestValNo = ResultVals[ValueCount].second;
3233 } else
Gabor Greif6bec14f2010-06-26 12:09:10 +00003234 DestVal = CI.getArgOperand(ValueCount-ResultVals.size());
Chris Lattner67f631d2008-06-04 18:03:28 +00003235
3236 if (I->isEarlyClobber)
3237 C = "&"+C;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003238
Chris Lattner67f631d2008-06-04 18:03:28 +00003239 Out << "\"=" << C << "\"(" << GetValueName(DestVal);
3240 if (DestValNo != -1)
3241 Out << ".field" << DestValNo; // Multiple retvals.
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003242 Out << ")";
Chris Lattner67f631d2008-06-04 18:03:28 +00003243 ++ValueCount;
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003244 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003245
3246
Chris Lattner67f631d2008-06-04 18:03:28 +00003247 // Convert over all the input constraints.
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003248 Out << "\n :";
Chris Lattner67f631d2008-06-04 18:03:28 +00003249 IsFirst = true;
3250 ValueCount = 0;
3251 for (std::vector<InlineAsm::ConstraintInfo>::iterator I = Constraints.begin(),
3252 E = Constraints.end(); I != E; ++I) {
3253 if (I->Type != InlineAsm::isInput) {
3254 ++ValueCount;
3255 continue; // Ignore non-input constraints.
3256 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003257
Chris Lattner67f631d2008-06-04 18:03:28 +00003258 assert(I->Codes.size() == 1 && "Too many asm constraint codes to handle");
3259 std::string C = InterpretASMConstraint(*I);
3260 if (C.empty()) continue;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003261
Chris Lattner67f631d2008-06-04 18:03:28 +00003262 if (!IsFirst) {
Chris Lattner687a4cb2008-05-22 06:29:38 +00003263 Out << ", ";
Chris Lattner67f631d2008-06-04 18:03:28 +00003264 IsFirst = false;
3265 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003266
Chris Lattner67f631d2008-06-04 18:03:28 +00003267 assert(ValueCount >= ResultVals.size() && "Input can't refer to result");
Gabor Greif6bec14f2010-06-26 12:09:10 +00003268 Value *SrcVal = CI.getArgOperand(ValueCount-ResultVals.size());
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003269
Chris Lattner67f631d2008-06-04 18:03:28 +00003270 Out << "\"" << C << "\"(";
3271 if (!I->isIndirect)
3272 writeOperand(SrcVal);
3273 else
3274 writeOperandDeref(SrcVal);
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003275 Out << ")";
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003276 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003277
Chris Lattner67f631d2008-06-04 18:03:28 +00003278 // Convert over the clobber constraints.
3279 IsFirst = true;
Chris Lattner67f631d2008-06-04 18:03:28 +00003280 for (std::vector<InlineAsm::ConstraintInfo>::iterator I = Constraints.begin(),
3281 E = Constraints.end(); I != E; ++I) {
3282 if (I->Type != InlineAsm::isClobber)
3283 continue; // Ignore non-input constraints.
3284
3285 assert(I->Codes.size() == 1 && "Too many asm constraint codes to handle");
3286 std::string C = InterpretASMConstraint(*I);
3287 if (C.empty()) continue;
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003288
Chris Lattner67f631d2008-06-04 18:03:28 +00003289 if (!IsFirst) {
3290 Out << ", ";
3291 IsFirst = false;
3292 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003293
Chris Lattner67f631d2008-06-04 18:03:28 +00003294 Out << '\"' << C << '"';
3295 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003296
Andrew Lenharthf45148e2006-11-28 23:07:32 +00003297 Out << ")";
Andrew Lenharth29c277f2006-11-27 23:50:49 +00003298}
3299
Chris Lattnerbb03efd2002-06-25 15:57:03 +00003300void CWriter::visitAllocaInst(AllocaInst &I) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00003301 Out << '(';
Nick Hildenbrandt98502372002-11-18 20:55:50 +00003302 printType(Out, I.getType());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003303 Out << ") alloca(sizeof(";
Nick Hildenbrandt98502372002-11-18 20:55:50 +00003304 printType(Out, I.getType()->getElementType());
Misha Brukmanb70aaa62005-02-14 18:52:35 +00003305 Out << ')';
Chris Lattnerbb03efd2002-06-25 15:57:03 +00003306 if (I.isArrayAllocation()) {
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003307 Out << " * " ;
Chris Lattnerbb03efd2002-06-25 15:57:03 +00003308 writeOperand(I.getOperand(0));
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003309 }
Misha Brukmanb70aaa62005-02-14 18:52:35 +00003310 Out << ')';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003311}
3312
Chris Lattnere05252b42008-03-02 08:07:24 +00003313void CWriter::printGEPExpression(Value *Ptr, gep_type_iterator I,
Dan Gohman9f8d5712008-07-24 17:57:48 +00003314 gep_type_iterator E, bool Static) {
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003315
Chris Lattnere05252b42008-03-02 08:07:24 +00003316 // If there are no indices, just print out the pointer.
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00003317 if (I == E) {
Chris Lattnere05252b42008-03-02 08:07:24 +00003318 writeOperand(Ptr);
Chris Lattnerdf35a1c2002-08-19 23:09:46 +00003319 return;
3320 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003321
Chris Lattnere05252b42008-03-02 08:07:24 +00003322 // Find out if the last index is into a vector. If so, we have to print this
3323 // specially. Since vectors can't have elements of indexable type, only the
3324 // last index could possibly be of a vector element.
3325 const VectorType *LastIndexIsVector = 0;
3326 {
3327 for (gep_type_iterator TmpI = I; TmpI != E; ++TmpI)
3328 LastIndexIsVector = dyn_cast<VectorType>(*TmpI);
Nick Hildenbrandte548f002002-09-25 20:29:26 +00003329 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003330
Chris Lattnere05252b42008-03-02 08:07:24 +00003331 Out << "(";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003332
Chris Lattnere05252b42008-03-02 08:07:24 +00003333 // If the last index is into a vector, we can't print it as &a[i][j] because
3334 // we can't index into a vector with j in GCC. Instead, emit this as
3335 // (((float*)&a[i])+j)
3336 if (LastIndexIsVector) {
3337 Out << "((";
3338 printType(Out, PointerType::getUnqual(LastIndexIsVector->getElementType()));
3339 Out << ")(";
3340 }
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003341
Chris Lattnere05252b42008-03-02 08:07:24 +00003342 Out << '&';
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003343
Chris Lattnere05252b42008-03-02 08:07:24 +00003344 // If the first index is 0 (very typical) we can do a number of
3345 // simplifications to clean up the code.
3346 Value *FirstOp = I.getOperand();
3347 if (!isa<Constant>(FirstOp) || !cast<Constant>(FirstOp)->isNullValue()) {
3348 // First index isn't simple, print it the hard way.
3349 writeOperand(Ptr);
3350 } else {
3351 ++I; // Skip the zero index.
Nick Hildenbrandte548f002002-09-25 20:29:26 +00003352
Chris Lattnere05252b42008-03-02 08:07:24 +00003353 // Okay, emit the first operand. If Ptr is something that is already address
3354 // exposed, like a global, avoid emitting (&foo)[0], just emit foo instead.
3355 if (isAddressExposed(Ptr)) {
Dan Gohman9f8d5712008-07-24 17:57:48 +00003356 writeOperandInternal(Ptr, Static);
Duncan Sands1df98592010-02-16 11:11:14 +00003357 } else if (I != E && (*I)->isStructTy()) {
Chris Lattnere05252b42008-03-02 08:07:24 +00003358 // If we didn't already emit the first operand, see if we can print it as
3359 // P->f instead of "P[0].f"
3360 writeOperand(Ptr);
3361 Out << "->field" << cast<ConstantInt>(I.getOperand())->getZExtValue();
3362 ++I; // eat the struct index as well.
3363 } else {
3364 // Instead of emitting P[0][1], emit (*P)[1], which is more idiomatic.
3365 Out << "(*";
3366 writeOperand(Ptr);
3367 Out << ")";
Chris Lattner23e90702003-11-25 20:49:55 +00003368 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003369 }
Chris Lattner5dfe7672002-08-22 22:48:55 +00003370
Chris Lattnere05252b42008-03-02 08:07:24 +00003371 for (; I != E; ++I) {
Duncan Sands1df98592010-02-16 11:11:14 +00003372 if ((*I)->isStructTy()) {
Reid Spencerb83eb642006-10-20 07:07:24 +00003373 Out << ".field" << cast<ConstantInt>(I.getOperand())->getZExtValue();
Duncan Sands1df98592010-02-16 11:11:14 +00003374 } else if ((*I)->isArrayTy()) {
Dan Gohman193c2352008-06-02 21:30:49 +00003375 Out << ".array[";
3376 writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
3377 Out << ']';
Duncan Sands1df98592010-02-16 11:11:14 +00003378 } else if (!(*I)->isVectorTy()) {
Misha Brukmanb70aaa62005-02-14 18:52:35 +00003379 Out << '[';
Chris Lattner96b207c2007-09-22 20:16:48 +00003380 writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
Misha Brukmanb70aaa62005-02-14 18:52:35 +00003381 Out << ']';
Chris Lattnere05252b42008-03-02 08:07:24 +00003382 } else {
3383 // If the last index is into a vector, then print it out as "+j)". This
3384 // works with the 'LastIndexIsVector' code above.
3385 if (isa<Constant>(I.getOperand()) &&
3386 cast<Constant>(I.getOperand())->isNullValue()) {
3387 Out << "))"; // avoid "+0".
3388 } else {
3389 Out << ")+(";
3390 writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
3391 Out << "))";
3392 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003393 }
Chris Lattnere05252b42008-03-02 08:07:24 +00003394 }
3395 Out << ")";
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003396}
3397
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003398void CWriter::writeMemoryAccess(Value *Operand, const Type *OperandType,
3399 bool IsVolatile, unsigned Alignment) {
3400
3401 bool IsUnaligned = Alignment &&
3402 Alignment < TD->getABITypeAlignment(OperandType);
3403
3404 if (!IsUnaligned)
3405 Out << '*';
3406 if (IsVolatile || IsUnaligned) {
Chris Lattner8399e022005-02-15 05:52:14 +00003407 Out << "((";
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003408 if (IsUnaligned)
3409 Out << "struct __attribute__ ((packed, aligned(" << Alignment << "))) {";
3410 printType(Out, OperandType, false, IsUnaligned ? "data" : "volatile*");
3411 if (IsUnaligned) {
3412 Out << "; } ";
3413 if (IsVolatile) Out << "volatile ";
3414 Out << "*";
3415 }
Chris Lattnerb94388a2005-09-27 20:52:44 +00003416 Out << ")";
Chris Lattner9d30e222005-02-14 16:47:52 +00003417 }
3418
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003419 writeOperand(Operand);
Chris Lattner9d30e222005-02-14 16:47:52 +00003420
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003421 if (IsVolatile || IsUnaligned) {
Misha Brukman23ba0c52005-03-08 00:26:08 +00003422 Out << ')';
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003423 if (IsUnaligned)
3424 Out << "->data";
3425 }
3426}
3427
3428void CWriter::visitLoadInst(LoadInst &I) {
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003429 writeMemoryAccess(I.getOperand(0), I.getType(), I.isVolatile(),
3430 I.getAlignment());
3431
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003432}
3433
Chris Lattnerbb03efd2002-06-25 15:57:03 +00003434void CWriter::visitStoreInst(StoreInst &I) {
Lauro Ramos Venancio859efca2008-02-01 21:25:59 +00003435 writeMemoryAccess(I.getPointerOperand(), I.getOperand(0)->getType(),
3436 I.isVolatile(), I.getAlignment());
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003437 Out << " = ";
Reid Spencerbdc75082007-03-03 16:33:33 +00003438 Value *Operand = I.getOperand(0);
3439 Constant *BitMask = 0;
3440 if (const IntegerType* ITy = dyn_cast<IntegerType>(Operand->getType()))
3441 if (!ITy->isPowerOf2ByteWidth())
3442 // We have a bit width that doesn't match an even power-of-2 byte
3443 // size. Consequently we must & the value with the type's bit mask
Owen Andersoneed707b2009-07-24 23:12:02 +00003444 BitMask = ConstantInt::get(ITy, ITy->getBitMask());
Reid Spencerbdc75082007-03-03 16:33:33 +00003445 if (BitMask)
3446 Out << "((";
3447 writeOperand(Operand);
3448 if (BitMask) {
3449 Out << ") & ";
Dan Gohman9f8d5712008-07-24 17:57:48 +00003450 printConstant(BitMask, false);
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003451 Out << ")";
Reid Spencerbdc75082007-03-03 16:33:33 +00003452 }
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003453}
3454
Chris Lattnerbb03efd2002-06-25 15:57:03 +00003455void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattnere05252b42008-03-02 08:07:24 +00003456 printGEPExpression(I.getPointerOperand(), gep_type_begin(I),
Dan Gohman9f8d5712008-07-24 17:57:48 +00003457 gep_type_end(I), false);
Chris Lattner4fbf26d2002-05-09 20:53:56 +00003458}
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00003459
Chris Lattner4d45bd02003-10-18 05:57:43 +00003460void CWriter::visitVAArgInst(VAArgInst &I) {
Andrew Lenharth558bc882005-06-18 18:34:52 +00003461 Out << "va_arg(*(va_list*)";
Chris Lattner4d45bd02003-10-18 05:57:43 +00003462 writeOperand(I.getOperand(0));
Andrew Lenharth558bc882005-06-18 18:34:52 +00003463 Out << ", ";
Chris Lattner7635ea42003-11-03 01:01:59 +00003464 printType(Out, I.getType());
Andrew Lenharth558bc882005-06-18 18:34:52 +00003465 Out << ");\n ";
Chris Lattner4d45bd02003-10-18 05:57:43 +00003466}
3467
Chris Lattner33a44d92008-03-02 03:52:39 +00003468void CWriter::visitInsertElementInst(InsertElementInst &I) {
3469 const Type *EltTy = I.getType()->getElementType();
3470 writeOperand(I.getOperand(0));
3471 Out << ";\n ";
3472 Out << "((";
3473 printType(Out, PointerType::getUnqual(EltTy));
3474 Out << ")(&" << GetValueName(&I) << "))[";
Chris Lattner33a44d92008-03-02 03:52:39 +00003475 writeOperand(I.getOperand(2));
Chris Lattner9152daf2008-03-02 08:10:16 +00003476 Out << "] = (";
3477 writeOperand(I.getOperand(1));
Chris Lattner33a44d92008-03-02 03:52:39 +00003478 Out << ")";
3479}
3480
Chris Lattner0452ed62008-03-02 03:57:08 +00003481void CWriter::visitExtractElementInst(ExtractElementInst &I) {
3482 // We know that our operand is not inlined.
3483 Out << "((";
Michael J. Spencerbcf4b832010-09-14 04:27:26 +00003484 const Type *EltTy =
Chris Lattner0452ed62008-03-02 03:57:08 +00003485 cast<VectorType>(I.getOperand(0)->getType())->getElementType();
3486 printType(Out, PointerType::getUnqual(EltTy));
3487 Out << ")(&" << GetValueName(I.getOperand(0)) << "))[";
3488 writeOperand(I.getOperand(1));
3489 Out << "]";
3490}
3491
Chris Lattnerb1855ad2008-03-02 05:41:07 +00003492void CWriter::visitShuffleVectorInst(ShuffleVectorInst &SVI) {
3493 Out << "(";
3494 printType(Out, SVI.getType());
3495 Out << "){ ";
3496 const VectorType *VT = SVI.getType();
3497 unsigned NumElts = VT->getNumElements();
3498 const Type *EltTy = VT->getElementType();
3499
3500 for (unsigned i = 0; i != NumElts; ++i) {
3501 if (i) Out << ", ";
3502 int SrcVal = SVI.getMaskValue(i);
3503 if ((unsigned)SrcVal >= NumElts*2) {
3504 Out << " 0/*undef*/ ";
3505 } else {
3506 Value *Op = SVI.getOperand((unsigned)SrcVal >= NumElts);
3507 if (isa<Instruction>(Op)) {
3508 // Do an extractelement of this value from the appropriate input.
3509 Out << "((";
3510 printType(Out, PointerType::getUnqual(EltTy));
3511 Out << ")(&" << GetValueName(Op)
Duncan Sands43e2a032008-05-27 11:50:51 +00003512 << "))[" << (SrcVal & (NumElts-1)) << "]";
Chris Lattnerb1855ad2008-03-02 05:41:07 +00003513 } else if (isa<ConstantAggregateZero>(Op) || isa<UndefValue>(Op)) {
3514 Out << "0";
3515 } else {
Duncan Sands43e2a032008-05-27 11:50:51 +00003516 printConstant(cast<ConstantVector>(Op)->getOperand(SrcVal &
Dan Gohman9f8d5712008-07-24 17:57:48 +00003517 (NumElts-1)),
3518 false);
Chris Lattnerb1855ad2008-03-02 05:41:07 +00003519 }
3520 }
3521 }
3522 Out << "}";
3523}
Chris Lattner0452ed62008-03-02 03:57:08 +00003524
Dan Gohman193c2352008-06-02 21:30:49 +00003525void CWriter::visitInsertValueInst(InsertValueInst &IVI) {
3526 // Start by copying the entire aggregate value into the result variable.
3527 writeOperand(IVI.getOperand(0));
3528 Out << ";\n ";
3529
3530 // Then do the insert to update the field.
3531 Out << GetValueName(&IVI);
3532 for (const unsigned *b = IVI.idx_begin(), *i = b, *e = IVI.idx_end();
3533 i != e; ++i) {
3534 const Type *IndexedTy =
3535 ExtractValueInst::getIndexedType(IVI.getOperand(0)->getType(), b, i+1);
Duncan Sands1df98592010-02-16 11:11:14 +00003536 if (IndexedTy->isArrayTy())
Dan Gohman193c2352008-06-02 21:30:49 +00003537 Out << ".array[" << *i << "]";
3538 else
3539 Out << ".field" << *i;
3540 }
3541 Out << " = ";
3542 writeOperand(IVI.getOperand(1));
3543}
3544
3545void CWriter::visitExtractValueInst(ExtractValueInst &EVI) {
3546 Out << "(";
3547 if (isa<UndefValue>(EVI.getOperand(0))) {
3548 Out << "(";
3549 printType(Out, EVI.getType());
3550 Out << ") 0/*UNDEF*/";
3551 } else {
3552 Out << GetValueName(EVI.getOperand(0));
3553 for (const unsigned *b = EVI.idx_begin(), *i = b, *e = EVI.idx_end();
3554 i != e; ++i) {
3555 const Type *IndexedTy =
3556 ExtractValueInst::getIndexedType(EVI.getOperand(0)->getType(), b, i+1);
Duncan Sands1df98592010-02-16 11:11:14 +00003557 if (IndexedTy->isArrayTy())
Dan Gohman193c2352008-06-02 21:30:49 +00003558 Out << ".array[" << *i << "]";
3559 else
3560 Out << ".field" << *i;
3561 }
3562 }
3563 Out << ")";
3564}
3565
Sumant Kowshik9ddc86c2002-05-08 18:09:58 +00003566//===----------------------------------------------------------------------===//
3567// External Interface declaration
3568//===----------------------------------------------------------------------===//
3569
Dan Gohman99dca4f2010-05-11 19:57:55 +00003570bool CTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
3571 formatted_raw_ostream &o,
3572 CodeGenFileType FileType,
3573 CodeGenOpt::Level OptLevel,
3574 bool DisableVerify) {
Chris Lattner211edae2010-02-02 21:06:45 +00003575 if (FileType != TargetMachine::CGFT_AssemblyFile) return true;
Chris Lattner0431c962005-06-25 02:48:37 +00003576
Gordon Henriksence224772008-01-07 01:30:38 +00003577 PM.add(createGCLoweringPass());
Chris Lattner94f4f8e2004-02-13 23:00:29 +00003578 PM.add(createLowerInvokePass());
Chris Lattnerbad13eb2005-11-02 17:42:58 +00003579 PM.add(createCFGSimplificationPass()); // clean up after lower invoke.
Chris Lattnerf9a05322006-02-13 22:22:42 +00003580 PM.add(new CBackendNameAllUsedStructsAndMergeFunctions());
Chris Lattnerbc641b92006-03-23 05:43:16 +00003581 PM.add(new CWriter(o));
Gordon Henriksen5eca0752008-08-17 18:44:35 +00003582 PM.add(createGCInfoDeleter());
Chris Lattnerf31182a2004-02-13 23:18:48 +00003583 return false;
3584}