blob: 4ee4b115f9ff86ba97cd4138d2ccf976516328ab [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- CBackend.cpp - Library for converting LLVM code to C --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This library converts LLVM code to C code, compilable by GCC and other C
11// compilers.
12//
13//===----------------------------------------------------------------------===//
14
15#include "CTargetMachine.h"
16#include "llvm/CallingConv.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/Module.h"
20#include "llvm/Instructions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/Pass.h"
22#include "llvm/PassManager.h"
23#include "llvm/TypeSymbolTable.h"
24#include "llvm/Intrinsics.h"
25#include "llvm/IntrinsicInst.h"
26#include "llvm/InlineAsm.h"
Daniel Dunbar4baa5fe2009-08-03 04:03:51 +000027#include "llvm/ADT/StringExtras.h"
Chris Lattnera38b2872010-01-13 06:38:18 +000028#include "llvm/ADT/SmallString.h"
Daniel Dunbar4baa5fe2009-08-03 04:03:51 +000029#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/Analysis/ConstantsScanner.h"
31#include "llvm/Analysis/FindUsedTypes.h"
32#include "llvm/Analysis/LoopInfo.h"
Anton Korobeynikov865e6752009-08-05 09:29:56 +000033#include "llvm/Analysis/ValueTracking.h"
Gordon Henriksendf87fdc2008-01-07 01:30:38 +000034#include "llvm/CodeGen/Passes.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattner31a54742010-01-16 21:57:06 +000036#include "llvm/Target/Mangler.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#include "llvm/Transforms/Scalar.h"
Chris Lattner621c44d2009-08-22 20:48:53 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4aeebec2010-03-12 18:44:54 +000039#include "llvm/MC/MCContext.h"
Chris Lattner11d7dfa2010-01-13 21:12:34 +000040#include "llvm/MC/MCSymbol.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041#include "llvm/Target/TargetData.h"
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000042#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043#include "llvm/Support/CallSite.h"
44#include "llvm/Support/CFG.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000045#include "llvm/Support/ErrorHandling.h"
David Greene302008d2009-07-14 20:18:05 +000046#include "llvm/Support/FormattedStream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047#include "llvm/Support/GetElementPtrTypeIterator.h"
48#include "llvm/Support/InstVisitor.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049#include "llvm/Support/MathExtras.h"
Daniel Dunbar4baa5fe2009-08-03 04:03:51 +000050#include "llvm/System/Host.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051#include "llvm/Config/config.h"
52#include <algorithm>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053using namespace llvm;
54
Daniel Dunbarc680b012009-07-25 06:49:55 +000055extern "C" void LLVMInitializeCBackendTarget() {
56 // Register the target.
Daniel Dunbare6ad1102009-08-04 04:02:45 +000057 RegisterTargetMachine<CTargetMachine> X(TheCBackendTarget);
Daniel Dunbarc680b012009-07-25 06:49:55 +000058}
Douglas Gregor1dc5ff42009-06-16 20:12:29 +000059
Dan Gohman089efff2008-05-13 00:00:25 +000060namespace {
Chris Lattner63ab9bb2010-01-17 18:22:35 +000061 class CBEMCAsmInfo : public MCAsmInfo {
62 public:
Chris Lattner50f82ef2010-01-20 06:34:14 +000063 CBEMCAsmInfo() {
Chris Lattner63ab9bb2010-01-17 18:22:35 +000064 GlobalPrefix = "";
65 PrivateGlobalPrefix = "";
66 }
67 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +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.
71 ///
72 class CBackendNameAllUsedStructsAndMergeFunctions : public ModulePass {
73 public:
74 static char ID;
75 CBackendNameAllUsedStructsAndMergeFunctions()
Owen Anderson75693222010-08-06 18:33:48 +000076 : ModulePass(ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
85 virtual bool runOnModule(Module &M);
86 };
87
88 char CBackendNameAllUsedStructsAndMergeFunctions::ID = 0;
89
90 /// 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 Greene302008d2009-07-14 20:18:05 +000093 formatted_raw_ostream &Out;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094 IntrinsicLowering *IL;
95 Mangler *Mang;
96 LoopInfo *LI;
97 const Module *TheModule;
Chris Lattner621c44d2009-08-22 20:48:53 +000098 const MCAsmInfo* TAsm;
Chris Lattner4aeebec2010-03-12 18:44:54 +000099 MCContext *TCtx;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100 const TargetData* TD;
101 std::map<const Type *, std::string> TypeNames;
102 std::map<const ConstantFP *, unsigned> FPConstantMap;
103 std::set<Function*> intrinsicPrototypesAlreadyGenerated;
Chris Lattner8bbc8592008-03-02 08:07:24 +0000104 std::set<const Argument*> ByValParams;
Chris Lattnerf6e12012008-10-22 04:53:16 +0000105 unsigned FPCounter;
Owen Andersonde8a9442009-06-26 19:48:37 +0000106 unsigned OpaqueCounter;
Chris Lattnerb66867f2009-07-13 23:46:46 +0000107 DenseMap<const Value*, unsigned> AnonValueNumbers;
108 unsigned NextAnonValueNumber;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109
110 public:
111 static char ID;
David Greene302008d2009-07-14 20:18:05 +0000112 explicit CWriter(formatted_raw_ostream &o)
Owen Anderson75693222010-08-06 18:33:48 +0000113 : FunctionPass(ID), Out(o), IL(0), Mang(0), LI(0),
Jeffrey Yasskinb1884692010-03-19 07:06:46 +0000114 TheModule(0), TAsm(0), TCtx(0), TD(0), OpaqueCounter(0),
115 NextAnonValueNumber(0) {
Chris Lattnerf6e12012008-10-22 04:53:16 +0000116 FPCounter = 0;
117 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118
119 virtual const char *getPassName() const { return "C backend"; }
120
121 void getAnalysisUsage(AnalysisUsage &AU) const {
122 AU.addRequired<LoopInfo>();
123 AU.setPreservesAll();
124 }
125
126 virtual bool doInitialization(Module &M);
127
128 bool runOnFunction(Function &F) {
Chris Lattner3ed055f2009-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 LI = &getAnalysis<LoopInfo>();
135
136 // Get rid of intrinsics we can't handle.
137 lowerIntrinsics(F);
138
139 // Output all floating point constants that cannot be printed accurately.
140 printFloatingPointConstants(F);
141
142 printFunction(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 return false;
144 }
145
146 virtual bool doFinalization(Module &M) {
147 // Free memory...
Nuno Lopes6c857162009-01-13 23:35:49 +0000148 delete IL;
149 delete TD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000150 delete Mang;
Jeffrey Yasskinb1884692010-03-19 07:06:46 +0000151 delete TCtx;
152 delete TAsm;
Evan Cheng17254e62008-01-11 09:12:49 +0000153 FPConstantMap.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 TypeNames.clear();
Evan Cheng17254e62008-01-11 09:12:49 +0000155 ByValParams.clear();
Chris Lattner8bbc8592008-03-02 08:07:24 +0000156 intrinsicPrototypesAlreadyGenerated.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 return false;
158 }
159
Duncan Sands711e63c2010-02-21 19:15:19 +0000160 raw_ostream &printType(raw_ostream &Out, const Type *Ty,
David Greene302008d2009-07-14 20:18:05 +0000161 bool isSigned = false,
162 const std::string &VariableName = "",
163 bool IgnoreName = false,
164 const AttrListPtr &PAL = AttrListPtr());
Duncan Sands711e63c2010-02-21 19:15:19 +0000165 raw_ostream &printSimpleType(raw_ostream &Out, const Type *Ty,
166 bool isSigned,
Owen Anderson847b99b2008-08-21 00:14:44 +0000167 const std::string &NameSoFar = "");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168
Duncan Sands711e63c2010-02-21 19:15:19 +0000169 void printStructReturnPointerFunctionType(raw_ostream &Out,
Devang Pateld222f862008-09-25 21:00:45 +0000170 const AttrListPtr &PAL,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 const PointerType *Ty);
Chris Lattner8bbc8592008-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 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186
Dan Gohmanad831302008-07-24 17:57:48 +0000187 void writeOperand(Value *Operand, bool Static = false);
Chris Lattnerd70f5a82008-05-31 09:23:55 +0000188 void writeInstComputationInline(Instruction &I);
Dan Gohmanad831302008-07-24 17:57:48 +0000189 void writeOperandInternal(Value *Operand, bool Static = false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 void writeOperandWithCast(Value* Operand, unsigned Opcode);
Chris Lattner389c9142007-09-15 06:51:03 +0000191 void writeOperandWithCast(Value* Operand, const ICmpInst &I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 bool writeInstructionCast(const Instruction &I);
193
Lauro Ramos Venancio11048c12008-02-01 21:25:59 +0000194 void writeMemoryAccess(Value *Operand, const Type *OperandType,
195 bool IsVolatile, unsigned Alignment);
196
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 private :
198 std::string InterpretASMConstraint(InlineAsm::ConstraintInfo& c);
199
200 void lowerIntrinsics(Function &F);
201
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000202 void printModuleTypes(const TypeSymbolTable &ST);
Dan Gohman5d995b02008-06-02 21:30:49 +0000203 void printContainedStructs(const Type *Ty, std::set<const Type *> &);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 void printFloatingPointConstants(Function &F);
Chris Lattnerf6e12012008-10-22 04:53:16 +0000205 void printFloatingPointConstants(const Constant *C);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 void printFunctionSignature(const Function *F, bool Prototype);
207
208 void printFunction(Function &);
209 void printBasicBlock(BasicBlock *BB);
210 void printLoop(Loop *L);
211
212 void printCast(unsigned opcode, const Type *SrcTy, const Type *DstTy);
Dan Gohmanad831302008-07-24 17:57:48 +0000213 void printConstant(Constant *CPV, bool Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 void printConstantWithCast(Constant *CPV, unsigned Opcode);
Dan Gohmanad831302008-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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218
Chris Lattner8bbc8592008-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 }
227
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 //
233 static bool isInlinableInst(const Instruction &I) {
234 // Always inline cmp instructions, even if they are shared by multiple
235 // expressions. GCC generates horrible code if we don't.
236 if (isa<CmpInst>(I))
237 return true;
238
239 // Must be an expression, must be used exactly once. If it is dead, we
240 // emit it inline where it would go.
Owen Anderson35b47072009-08-13 21:58:54 +0000241 if (I.getType() == Type::getVoidTy(I.getContext()) || !I.hasOneUse() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 isa<TerminatorInst>(I) || isa<CallInst>(I) || isa<PHINode>(I) ||
Dan Gohman5d995b02008-06-02 21:30:49 +0000243 isa<LoadInst>(I) || isa<VAArgInst>(I) || isa<InsertElementInst>(I) ||
244 isa<InsertValueInst>(I))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 // Don't inline a load across a store or other bad things!
246 return false;
247
Chris Lattnerf858a042008-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 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255
256 // Only inline instruction it if it's use is in the same BB as the inst.
257 return I.getParent() == cast<Instruction>(I.use_back())->getParent();
258 }
259
260 // 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 Lattnerc1045a52010-06-14 18:28:57 +0000266 if (!AI) return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 if (AI->isArrayAllocation())
268 return 0; // FIXME: we can also inline fixed size array allocas!
269 if (AI->getParent() != &AI->getParent()->getParent()->getEntryBlock())
270 return 0;
271 return AI;
272 }
273
274 // isInlineAsm - Check if the instruction is a call to an inline asm chunk
275 static bool isInlineAsm(const Instruction& I) {
Gabor Greif63c1c392010-04-08 13:08:11 +0000276 if (const CallInst *CI = dyn_cast<CallInst>(&I))
277 return isa<InlineAsm>(CI->getCalledValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 return false;
279 }
280
281 // Instruction visitation functions
282 friend class InstVisitor<CWriter>;
283
284 void visitReturnInst(ReturnInst &I);
285 void visitBranchInst(BranchInst &I);
286 void visitSwitchInst(SwitchInst &I);
Chris Lattner4c3800f2009-10-28 00:19:10 +0000287 void visitIndirectBrInst(IndirectBrInst &I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 void visitInvokeInst(InvokeInst &I) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000289 llvm_unreachable("Lowerinvoke pass didn't work!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290 }
291
292 void visitUnwindInst(UnwindInst &I) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000293 llvm_unreachable("Lowerinvoke pass didn't work!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 }
295 void visitUnreachableInst(UnreachableInst &I);
296
297 void visitPHINode(PHINode &I);
298 void visitBinaryOperator(Instruction &I);
299 void visitICmpInst(ICmpInst &I);
300 void visitFCmpInst(FCmpInst &I);
301
302 void visitCastInst (CastInst &I);
303 void visitSelectInst(SelectInst &I);
304 void visitCallInst (CallInst &I);
305 void visitInlineAsm(CallInst &I);
Chris Lattnera74b9182008-03-02 08:29:41 +0000306 bool visitBuiltinCall(CallInst &I, Intrinsic::ID ID, bool &WroteCallee);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 void visitAllocaInst(AllocaInst &I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 void visitLoadInst (LoadInst &I);
310 void visitStoreInst (StoreInst &I);
311 void visitGetElementPtrInst(GetElementPtrInst &I);
312 void visitVAArgInst (VAArgInst &I);
Chris Lattnerf41a7942008-03-02 03:52:39 +0000313
314 void visitInsertElementInst(InsertElementInst &I);
Chris Lattnera5f0bc02008-03-02 03:57:08 +0000315 void visitExtractElementInst(ExtractElementInst &I);
Chris Lattnerf858a042008-03-02 05:41:07 +0000316 void visitShuffleVectorInst(ShuffleVectorInst &SVI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317
Dan Gohman5d995b02008-06-02 21:30:49 +0000318 void visitInsertValueInst(InsertValueInst &I);
319 void visitExtractValueInst(ExtractValueInst &I);
320
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 void visitInstruction(Instruction &I) {
Edwin Török4d9756a2009-07-08 20:53:28 +0000322#ifndef NDEBUG
Chris Lattner8a6411c2009-08-23 04:37:46 +0000323 errs() << "C Writer does not know about " << I;
Edwin Török4d9756a2009-07-08 20:53:28 +0000324#endif
Edwin Törökbd448e32009-07-14 16:55:14 +0000325 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326 }
327
328 void outputLValue(Instruction *I) {
329 Out << " " << GetValueName(I) << " = ";
330 }
331
332 bool isGotoCodeNecessary(BasicBlock *From, BasicBlock *To);
333 void printPHICopiesForSuccessor(BasicBlock *CurBlock,
334 BasicBlock *Successor, unsigned Indent);
335 void printBranchToBlock(BasicBlock *CurBlock, BasicBlock *SuccBlock,
336 unsigned Indent);
Chris Lattner8bbc8592008-03-02 08:07:24 +0000337 void printGEPExpression(Value *Ptr, gep_type_iterator I,
Dan Gohmanad831302008-07-24 17:57:48 +0000338 gep_type_iterator E, bool Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339
340 std::string GetValueName(const Value *Operand);
341 };
342}
343
344char CWriter::ID = 0;
345
Chris Lattnerd2f59b82010-01-13 19:54:07 +0000346
Chris Lattner55f4aca2010-01-22 18:33:00 +0000347static std::string CBEMangle(const std::string &S) {
Chris Lattner306ee862010-01-17 19:32:29 +0000348 std::string Result;
349
350 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 Lattnerd2f59b82010-01-13 19:54:07 +0000360}
361
362
Dan Gohmanf17a25c2007-07-18 16:29:46 +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///
367bool CBackendNameAllUsedStructsAndMergeFunctions::runOnModule(Module &M) {
368 // Get a set of types that are used by the program...
369 std::set<const Type *> UT = getAnalysis<FindUsedTypes>().getTypes();
370
371 // Loop over the module symbol table, removing types from UT that are
372 // already named, and removing names for types that are not used.
373 //
374 TypeSymbolTable &TST = M.getTypeSymbolTable();
375 for (TypeSymbolTable::iterator TI = TST.begin(), TE = TST.end();
376 TI != TE; ) {
377 TypeSymbolTable::iterator I = TI++;
378
Dan Gohman5d995b02008-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 Sands1e6932c2010-02-16 14:50:09 +0000381 if (!I->second->isStructTy() && !I->second->isOpaqueTy() &&
Duncan Sands10343d92010-02-16 11:11:14 +0000382 !I->second->isArrayTy()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 TST.remove(I);
384 } 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 }
392 }
393
394 // UT now contains types that are not named. Loop over it, naming
395 // structure types.
396 //
397 bool Changed = false;
398 unsigned RenameCounter = 0;
399 for (std::set<const Type *>::const_iterator I = UT.begin(), E = UT.end();
400 I != E; ++I)
Duncan Sands10343d92010-02-16 11:11:14 +0000401 if ((*I)->isStructTy() || (*I)->isArrayTy()) {
Dan Gohman5d995b02008-06-02 21:30:49 +0000402 while (M.addTypeName("unnamed"+utostr(RenameCounter), *I))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 ++RenameCounter;
404 Changed = true;
405 }
406
407
408 // 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++;
415 if (GV->isDeclaration() && GV->hasName()) {
416 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;
421 GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
422 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++;
431 if (GV->isDeclaration() && GV->hasName()) {
432 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;
437 GV->replaceAllUsesWith(ConstantExpr::getBitCast(OldGV, GV->getType()));
438 GV->eraseFromParent();
439 Changed = true;
440 }
441 }
442 }
443
444 return Changed;
445}
446
447/// 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 Sands711e63c2010-02-21 19:15:19 +0000450void CWriter::printStructReturnPointerFunctionType(raw_ostream &Out,
Devang Pateld222f862008-09-25 21:00:45 +0000451 const AttrListPtr &PAL,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 const PointerType *TheTy) {
453 const FunctionType *FTy = cast<FunctionType>(TheTy->getElementType());
Duncan Sands711e63c2010-02-21 19:15:19 +0000454 std::string tstr;
455 raw_string_ostream FunctionInnards(tstr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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();
461 unsigned Idx = 1;
Evan Cheng2054cb02008-01-11 03:07:46 +0000462 for (++I, ++Idx; I != E; ++I, ++Idx) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463 if (PrintedType)
464 FunctionInnards << ", ";
Evan Cheng2054cb02008-01-11 03:07:46 +0000465 const Type *ArgTy = *I;
Devang Pateld222f862008-09-25 21:00:45 +0000466 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Duncan Sands10343d92010-02-16 11:11:14 +0000467 assert(ArgTy->isPointerTy());
Evan Cheng17254e62008-01-11 09:12:49 +0000468 ArgTy = cast<PointerType>(ArgTy)->getElementType();
469 }
Evan Cheng2054cb02008-01-11 03:07:46 +0000470 printType(FunctionInnards, ArgTy,
Devang Pateld222f862008-09-25 21:00:45 +0000471 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 PrintedType = true;
473 }
474 if (FTy->isVarArg()) {
Chris Lattner10c749c2010-04-10 19:12:44 +0000475 if (!PrintedType)
476 FunctionInnards << " int"; //dummy argument for empty vararg functs
477 FunctionInnards << ", ...";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 } else if (!PrintedType) {
479 FunctionInnards << "void";
480 }
481 FunctionInnards << ')';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 printType(Out, RetTy,
Duncan Sands711e63c2010-02-21 19:15:19 +0000483 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484}
485
Owen Anderson847b99b2008-08-21 00:14:44 +0000486raw_ostream &
Duncan Sands711e63c2010-02-21 19:15:19 +0000487CWriter::printSimpleType(raw_ostream &Out, const Type *Ty, bool isSigned,
Chris Lattnerd8090712008-03-02 03:41:23 +0000488 const std::string &NameSoFar) {
Duncan Sands10343d92010-02-16 11:11:14 +0000489 assert((Ty->isPrimitiveType() || Ty->isIntegerTy() || Ty->isVectorTy()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000490 "Invalid type for printSimpleType");
491 switch (Ty->getTypeID()) {
492 case Type::VoidTyID: return Out << "void " << NameSoFar;
493 case Type::IntegerTyID: {
494 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
495 if (NumBits == 1)
496 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 Gohmana2245af2008-04-02 19:40:14 +0000503 else if (NumBits <= 64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 return Out << (isSigned?"signed":"unsigned") << " long long "<< NameSoFar;
Dan Gohmana2245af2008-04-02 19:40:14 +0000505 else {
506 assert(NumBits <= 128 && "Bit widths > 128 not implemented yet");
507 return Out << (isSigned?"llvmInt128":"llvmUInt128") << " " << NameSoFar;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 }
509 }
510 case Type::FloatTyID: return Out << "float " << NameSoFar;
511 case Type::DoubleTyID: return Out << "double " << NameSoFar;
Dale Johannesen137cef62007-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 Johannesene6668e12010-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 Lattnerdb6d5ce2008-03-02 03:33:31 +0000522 case Type::VectorTyID: {
523 const VectorType *VTy = cast<VectorType>(Ty);
Chris Lattnerd8090712008-03-02 03:41:23 +0000524 return printSimpleType(Out, VTy->getElementType(), isSigned,
Chris Lattnerfddca552008-03-02 03:39:43 +0000525 " __attribute__((vector_size(" +
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000526 utostr(TD->getTypeAllocSize(VTy)) + " ))) " + NameSoFar);
Chris Lattnerdb6d5ce2008-03-02 03:33:31 +0000527 }
528
529 default:
Edwin Török4d9756a2009-07-08 20:53:28 +0000530#ifndef NDEBUG
Chris Lattner8a6411c2009-08-23 04:37:46 +0000531 errs() << "Unknown primitive type: " << *Ty << "\n";
Edwin Török4d9756a2009-07-08 20:53:28 +0000532#endif
Edwin Törökbd448e32009-07-14 16:55:14 +0000533 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 }
535}
536
537// Pass the Type* and the variable name and this prints out the variable
538// declaration.
539//
Duncan Sands711e63c2010-02-21 19:15:19 +0000540raw_ostream &CWriter::printType(raw_ostream &Out, const Type *Ty,
David Greene302008d2009-07-14 20:18:05 +0000541 bool isSigned, const std::string &NameSoFar,
542 bool IgnoreName, const AttrListPtr &PAL) {
Duncan Sands10343d92010-02-16 11:11:14 +0000543 if (Ty->isPrimitiveType() || Ty->isIntegerTy() || Ty->isVectorTy()) {
Owen Anderson847b99b2008-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 Sands1e6932c2010-02-16 14:50:09 +0000549 if (!IgnoreName || Ty->isOpaqueTy()) {
Owen Anderson847b99b2008-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 Sands711e63c2010-02-21 19:15:19 +0000557 std::string tstr;
558 raw_string_ostream FunctionInnards(tstr);
Owen Anderson847b99b2008-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 Pateld222f862008-09-25 21:00:45 +0000564 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Duncan Sands10343d92010-02-16 11:11:14 +0000565 assert(ArgTy->isPointerTy());
Owen Anderson847b99b2008-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 Pateld222f862008-09-25 21:00:45 +0000571 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
Owen Anderson847b99b2008-08-21 00:14:44 +0000572 ++Idx;
573 }
574 if (FTy->isVarArg()) {
Chris Lattner10c749c2010-04-10 19:12:44 +0000575 if (!FTy->getNumParams())
576 FunctionInnards << " int"; //dummy argument for empty vaarg functs
577 FunctionInnards << ", ...";
Owen Anderson847b99b2008-08-21 00:14:44 +0000578 } else if (!FTy->getNumParams()) {
579 FunctionInnards << "void";
580 }
581 FunctionInnards << ')';
Owen Anderson847b99b2008-08-21 00:14:44 +0000582 printType(Out, FTy->getReturnType(),
Duncan Sands711e63c2010-02-21 19:15:19 +0000583 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584 return Out;
585 }
586 case Type::StructTyID: {
587 const StructType *STy = cast<StructType>(Ty);
588 Out << NameSoFar + " {\n";
589 unsigned Idx = 0;
590 for (StructType::element_iterator I = STy->element_begin(),
591 E = STy->element_end(); I != E; ++I) {
592 Out << " ";
593 printType(Out, *I, false, "field" + utostr(Idx++));
594 Out << ";\n";
595 }
596 Out << '}';
597 if (STy->isPacked())
598 Out << " __attribute__ ((packed))";
599 return Out;
600 }
601
602 case Type::PointerTyID: {
603 const PointerType *PTy = cast<PointerType>(Ty);
604 std::string ptrName = "*" + NameSoFar;
605
Duncan Sands10343d92010-02-16 11:11:14 +0000606 if (PTy->getElementType()->isArrayTy() ||
607 PTy->getElementType()->isVectorTy())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 ptrName = "(" + ptrName + ")";
609
Chris Lattner1c8733e2008-03-12 17:45:29 +0000610 if (!PAL.isEmpty())
Evan Chengb8a072c2008-01-12 18:53:07 +0000611 // Must be a function ptr cast!
612 return printType(Out, PTy->getElementType(), false, ptrName, true, PAL);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 return printType(Out, PTy->getElementType(), false, ptrName);
614 }
615
616 case Type::ArrayTyID: {
617 const ArrayType *ATy = cast<ArrayType>(Ty);
618 unsigned NumElements = ATy->getNumElements();
619 if (NumElements == 0) NumElements = 1;
Dan Gohman5d995b02008-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 << "; }";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626 }
627
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628 case Type::OpaqueTyID: {
Owen Andersonde8a9442009-06-26 19:48:37 +0000629 std::string TyName = "struct opaque_" + itostr(OpaqueCounter++);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 assert(TypeNames.find(Ty) == TypeNames.end());
631 TypeNames[Ty] = TyName;
632 return Out << TyName << ' ' << NameSoFar;
633 }
634 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000635 llvm_unreachable("Unhandled case in getTypeProps!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 }
637
638 return Out;
639}
640
Dan Gohmanad831302008-07-24 17:57:48 +0000641void CWriter::printConstantArray(ConstantArray *CPA, bool Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +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.
645 //
646 const Type *ETy = CPA->getType()->getElementType();
Owen Anderson35b47072009-08-13 21:58:54 +0000647 bool isString = (ETy == Type::getInt8Ty(CPA->getContext()) ||
648 ETy == Type::getInt8Ty(CPA->getContext()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649
650 // Make sure the last character is a null char, as automatically added by C
651 if (isString && (CPA->getNumOperands() == 0 ||
652 !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
653 isString = false;
654
655 if (isString) {
656 Out << '\"';
657 // Keep track of whether the last number was a hexadecimal escape
658 bool LastWasHex = false;
659
660 // Do not include the last character, which we know is null
661 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
662 unsigned char C = cast<ConstantInt>(CPA->getOperand(i))->getZExtValue();
663
664 // 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
667 // explicitly (the C compiler thinks it is a continuation of the previous
668 // character, sheesh...)
669 //
670 if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
671 LastWasHex = false;
672 if (C == '"' || C == '\\')
Chris Lattner009f3962008-08-21 05:51:43 +0000673 Out << "\\" << (char)C;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 else
Chris Lattner009f3962008-08-21 05:51:43 +0000675 Out << (char)C;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676 } else {
677 LastWasHex = false;
678 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;
684 case '\"': Out << "\\\""; break;
685 case '\'': Out << "\\\'"; break;
686 default:
687 Out << "\\x";
688 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;
691 break;
692 }
693 }
694 }
695 Out << '\"';
696 } else {
697 Out << '{';
698 if (CPA->getNumOperands()) {
699 Out << ' ';
Dan Gohmanad831302008-07-24 17:57:48 +0000700 printConstant(cast<Constant>(CPA->getOperand(0)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000701 for (unsigned i = 1, e = CPA->getNumOperands(); i != e; ++i) {
702 Out << ", ";
Dan Gohmanad831302008-07-24 17:57:48 +0000703 printConstant(cast<Constant>(CPA->getOperand(i)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 }
705 }
706 Out << " }";
707 }
708}
709
Dan Gohmanad831302008-07-24 17:57:48 +0000710void CWriter::printConstantVector(ConstantVector *CP, bool Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 Out << '{';
712 if (CP->getNumOperands()) {
713 Out << ' ';
Dan Gohmanad831302008-07-24 17:57:48 +0000714 printConstant(cast<Constant>(CP->getOperand(0)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715 for (unsigned i = 1, e = CP->getNumOperands(); i != e; ++i) {
716 Out << ", ";
Dan Gohmanad831302008-07-24 17:57:48 +0000717 printConstant(cast<Constant>(CP->getOperand(i)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718 }
719 }
720 Out << " }";
721}
722
723// 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//
731static bool isFPCSafeToPrint(const ConstantFP *CFP) {
Dale Johannesen6e547b42008-10-09 23:00:39 +0000732 bool ignored;
Dale Johannesen137cef62007-09-17 00:38:27 +0000733 // Do long doubles in hex for now.
Owen Anderson35b47072009-08-13 21:58:54 +0000734 if (CFP->getType() != Type::getFloatTy(CFP->getContext()) &&
735 CFP->getType() != Type::getDoubleTy(CFP->getContext()))
Dale Johannesen2fc20782007-09-14 22:26:36 +0000736 return false;
Dale Johannesenb9de9f02007-09-06 18:13:44 +0000737 APFloat APF = APFloat(CFP->getValueAPF()); // copy
Owen Anderson35b47072009-08-13 21:58:54 +0000738 if (CFP->getType() == Type::getFloatTy(CFP->getContext()))
Dale Johannesen6e547b42008-10-09 23:00:39 +0000739 APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &ignored);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740#if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
741 char Buffer[100];
Dale Johannesenb9de9f02007-09-06 18:13:44 +0000742 sprintf(Buffer, "%a", APF.convertToDouble());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743 if (!strncmp(Buffer, "0x", 2) ||
744 !strncmp(Buffer, "-0x", 3) ||
745 !strncmp(Buffer, "+0x", 3))
Dale Johannesenb9de9f02007-09-06 18:13:44 +0000746 return APF.bitwiseIsEqual(APFloat(atof(Buffer)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000747 return false;
748#else
Dale Johannesenb9de9f02007-09-06 18:13:44 +0000749 std::string StrVal = ftostr(APF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000750
751 while (StrVal[0] == ' ')
752 StrVal.erase(StrVal.begin());
753
754 // 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.
756 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
757 ((StrVal[0] == '-' || StrVal[0] == '+') &&
758 (StrVal[1] >= '0' && StrVal[1] <= '9')))
759 // Reparse stringized version!
Dale Johannesenb9de9f02007-09-06 18:13:44 +0000760 return APF.bitwiseIsEqual(APFloat(atof(StrVal.c_str())));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000761 return false;
762#endif
763}
764
765/// Print out the casting for a cast operation. This does the double casting
766/// necessary for conversion to the destination type, if necessary.
767/// @brief Print a cast
768void CWriter::printCast(unsigned opc, const Type *SrcTy, const Type *DstTy) {
769 // 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 << '(';
786 printSimpleType(Out, DstTy, false);
787 Out << ')';
788 break;
789 case Instruction::SExt:
790 case Instruction::FPToSI: // For these, make sure we get a signed dest
791 Out << '(';
792 printSimpleType(Out, DstTy, true);
793 Out << ')';
794 break;
795 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000796 llvm_unreachable("Invalid cast opcode");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000797 }
798
799 // Print the source type cast
800 switch (opc) {
801 case Instruction::UIToFP:
802 case Instruction::ZExt:
803 Out << '(';
804 printSimpleType(Out, SrcTy, false);
805 Out << ')';
806 break;
807 case Instruction::SIToFP:
808 case Instruction::SExt:
809 Out << '(';
810 printSimpleType(Out, SrcTy, true);
811 Out << ')';
812 break;
813 case Instruction::IntToPtr:
814 case Instruction::PtrToInt:
815 // Avoid "cast to pointer from integer of different size" warnings
816 Out << "(unsigned long)";
817 break;
818 case Instruction::Trunc:
819 case Instruction::BitCast:
820 case Instruction::FPExt:
821 case Instruction::FPTrunc:
822 case Instruction::FPToSI:
823 case Instruction::FPToUI:
824 break; // These don't need a source cast.
825 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000826 llvm_unreachable("Invalid cast opcode");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 break;
828 }
829}
830
831// printConstant - The LLVM Constant to C Constant converter.
Dan Gohmanad831302008-07-24 17:57:48 +0000832void CWriter::printConstant(Constant *CPV, bool Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000833 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CPV)) {
834 switch (CE->getOpcode()) {
835 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());
849 if (CE->getOpcode() == Instruction::SExt &&
Owen Anderson35b47072009-08-13 21:58:54 +0000850 CE->getOperand(0)->getType() == Type::getInt1Ty(CPV->getContext())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 // Make sure we really sext from bool here by subtracting from 0
852 Out << "0-";
853 }
Dan Gohmanad831302008-07-24 17:57:48 +0000854 printConstant(CE->getOperand(0), Static);
Owen Anderson35b47072009-08-13 21:58:54 +0000855 if (CE->getType() == Type::getInt1Ty(CPV->getContext()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 << ')';
864 return;
865
866 case Instruction::GetElementPtr:
Chris Lattner8bbc8592008-03-02 08:07:24 +0000867 Out << "(";
868 printGEPExpression(CE->getOperand(0), gep_type_begin(CPV),
Dan Gohmanad831302008-07-24 17:57:48 +0000869 gep_type_end(CPV), Static);
Chris Lattner8bbc8592008-03-02 08:07:24 +0000870 Out << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 return;
872 case Instruction::Select:
873 Out << '(';
Dan Gohmanad831302008-07-24 17:57:48 +0000874 printConstant(CE->getOperand(0), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875 Out << '?';
Dan Gohmanad831302008-07-24 17:57:48 +0000876 printConstant(CE->getOperand(1), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 Out << ':';
Dan Gohmanad831302008-07-24 17:57:48 +0000878 printConstant(CE->getOperand(2), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879 Out << ')';
880 return;
881 case Instruction::Add:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000882 case Instruction::FAdd:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000883 case Instruction::Sub:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000884 case Instruction::FSub:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885 case Instruction::Mul:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000886 case Instruction::FMul:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 case Instruction::SDiv:
888 case Instruction::UDiv:
889 case Instruction::FDiv:
890 case Instruction::URem:
891 case Instruction::SRem:
892 case Instruction::FRem:
893 case Instruction::And:
894 case Instruction::Or:
895 case Instruction::Xor:
896 case Instruction::ICmp:
897 case Instruction::Shl:
898 case Instruction::LShr:
899 case Instruction::AShr:
900 {
901 Out << '(';
Dan Gohmanad831302008-07-24 17:57:48 +0000902 bool NeedsClosingParens = printConstExprCast(CE, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000903 printConstantWithCast(CE->getOperand(0), CE->getOpcode());
904 switch (CE->getOpcode()) {
Dan Gohman7ce405e2009-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 case Instruction::URem:
912 case Instruction::SRem:
913 case Instruction::FRem: Out << " % "; break;
914 case Instruction::UDiv:
915 case Instruction::SDiv:
916 case Instruction::FDiv: Out << " / "; break;
917 case Instruction::And: Out << " & "; break;
918 case Instruction::Or: Out << " | "; break;
919 case Instruction::Xor: Out << " ^ "; break;
920 case Instruction::Shl: Out << " << "; break;
921 case Instruction::LShr:
922 case Instruction::AShr: Out << " >> "; break;
923 case Instruction::ICmp:
924 switch (CE->getPredicate()) {
925 case ICmpInst::ICMP_EQ: Out << " == "; break;
926 case ICmpInst::ICMP_NE: Out << " != "; break;
927 case ICmpInst::ICMP_SLT:
928 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;
Edwin Törökbd448e32009-07-14 16:55:14 +0000935 default: llvm_unreachable("Illegal ICmp predicate");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000936 }
937 break;
Edwin Törökbd448e32009-07-14 16:55:14 +0000938 default: llvm_unreachable("Illegal opcode here!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 }
940 printConstantWithCast(CE->getOperand(1), CE->getOpcode());
941 if (NeedsClosingParens)
942 Out << "))";
943 Out << ')';
944 return;
945 }
946 case Instruction::FCmp: {
947 Out << '(';
Dan Gohmanad831302008-07-24 17:57:48 +0000948 bool NeedsClosingParens = printConstExprCast(CE, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000956 default: llvm_unreachable("Illegal FCmp predicate");
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Korobeynikov44891ce2007-12-21 23:33:44 +0000981 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000982 }
983 default:
Edwin Török4d9756a2009-07-08 20:53:28 +0000984#ifndef NDEBUG
Chris Lattner8a6411c2009-08-23 04:37:46 +0000985 errs() << "CWriter Error: Unhandled constant expression: "
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986 << *CE << "\n";
Edwin Török4d9756a2009-07-08 20:53:28 +0000987#endif
Edwin Törökbd448e32009-07-14 16:55:14 +0000988 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 }
Dan Gohman76c2cb42008-05-23 16:57:00 +0000990 } else if (isa<UndefValue>(CPV) && CPV->getType()->isSingleValueType()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 Out << "((";
992 printType(Out, CPV->getType()); // sign doesn't matter
Chris Lattnerc72d9e32008-03-02 08:14:45 +0000993 Out << ")/*UNDEF*/";
Duncan Sands10343d92010-02-16 11:11:14 +0000994 if (!CPV->getType()->isVectorTy()) {
Chris Lattnerc72d9e32008-03-02 08:14:45 +0000995 Out << "0)";
996 } else {
997 Out << "{})";
998 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000999 return;
1000 }
1001
1002 if (ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
1003 const Type* Ty = CI->getType();
Owen Anderson35b47072009-08-13 21:58:54 +00001004 if (Ty == Type::getInt1Ty(CPV->getContext()))
Chris Lattner63fb1f02008-03-02 03:16:38 +00001005 Out << (CI->getZExtValue() ? '1' : '0');
Owen Anderson35b47072009-08-13 21:58:54 +00001006 else if (Ty == Type::getInt32Ty(CPV->getContext()))
Chris Lattner63fb1f02008-03-02 03:16:38 +00001007 Out << CI->getZExtValue() << 'u';
1008 else if (Ty->getPrimitiveSizeInBits() > 32)
1009 Out << CI->getZExtValue() << "ull";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 else {
1011 Out << "((";
1012 printSimpleType(Out, Ty, false) << ')';
1013 if (CI->isMinValue(true))
1014 Out << CI->getZExtValue() << 'u';
1015 else
1016 Out << CI->getSExtValue();
Dale Johannesen8830f922009-05-19 00:46:42 +00001017 Out << ')';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001018 }
1019 return;
1020 }
1021
1022 switch (CPV->getType()->getTypeID()) {
1023 case Type::FloatTyID:
Dale Johannesen137cef62007-09-17 00:38:27 +00001024 case Type::DoubleTyID:
1025 case Type::X86_FP80TyID:
1026 case Type::PPC_FP128TyID:
1027 case Type::FP128TyID: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028 ConstantFP *FPC = cast<ConstantFP>(CPV);
1029 std::map<const ConstantFP*, unsigned>::iterator I = FPConstantMap.find(FPC);
1030 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 Anderson35b47072009-08-13 21:58:54 +00001033 Out << "(*(" << (FPC->getType() == Type::getFloatTy(CPV->getContext()) ?
1034 "float" :
1035 FPC->getType() == Type::getDoubleTy(CPV->getContext()) ?
1036 "double" :
Dale Johannesen137cef62007-09-17 00:38:27 +00001037 "long double")
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 << "*)&FPConstant" << I->second << ')';
1039 } else {
Chris Lattnera68e3512008-10-17 06:11:48 +00001040 double V;
Owen Anderson35b47072009-08-13 21:58:54 +00001041 if (FPC->getType() == Type::getFloatTy(CPV->getContext()))
Chris Lattnera68e3512008-10-17 06:11:48 +00001042 V = FPC->getValueAPF().convertToFloat();
Owen Anderson35b47072009-08-13 21:58:54 +00001043 else if (FPC->getType() == Type::getDoubleTy(CPV->getContext()))
Chris Lattnera68e3512008-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 }
1054
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001055 if (IsNAN(V)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 // The value is NaN
1057
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001058 // FIXME the actual NaN bits should be emitted.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 // The prefix for a quiet NaN is 0x7FF8. For a signalling NaN,
1060 // it's 0x7ff4.
1061 const unsigned long QuietNaN = 0x7ff8UL;
1062 //const unsigned long SignalNaN = 0x7ff4UL;
1063
1064 // We need to grab the first part of the FP #
1065 char Buffer[100];
1066
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001067 uint64_t ll = DoubleToBits(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 sprintf(Buffer, "0x%llx", static_cast<long long>(ll));
1069
1070 std::string Num(&Buffer[0], &Buffer[6]);
1071 unsigned long Val = strtoul(Num.c_str(), 0, 16);
1072
Owen Anderson35b47072009-08-13 21:58:54 +00001073 if (FPC->getType() == Type::getFloatTy(FPC->getContext()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074 Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "F(\""
1075 << Buffer << "\") /*nan*/ ";
1076 else
1077 Out << "LLVM_NAN" << (Val == QuietNaN ? "" : "S") << "(\""
1078 << Buffer << "\") /*nan*/ ";
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001079 } else if (IsInf(V)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 // The value is Inf
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001081 if (V < 0) Out << '-';
Owen Anderson35b47072009-08-13 21:58:54 +00001082 Out << "LLVM_INF" <<
1083 (FPC->getType() == Type::getFloatTy(FPC->getContext()) ? "F" : "")
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 << " /*inf*/ ";
1085 } else {
1086 std::string Num;
1087#if HAVE_PRINTF_A && ENABLE_CBE_PRINTF_A
1088 // Print out the constant as a floating point number.
1089 char Buffer[100];
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001090 sprintf(Buffer, "%a", V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 Num = Buffer;
1092#else
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001093 Num = ftostr(FPC->getValueAPF());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094#endif
Dale Johannesenb9de9f02007-09-06 18:13:44 +00001095 Out << Num;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 }
1097 }
1098 break;
1099 }
1100
1101 case Type::ArrayTyID:
Dan Gohman29b19472008-07-23 18:41:03 +00001102 // Use C99 compound expression literal initializer syntax.
Dan Gohmanad831302008-07-24 17:57:48 +00001103 if (!Static) {
1104 Out << "(";
1105 printType(Out, CPV->getType());
1106 Out << ")";
1107 }
Dan Gohman5d995b02008-06-02 21:30:49 +00001108 Out << "{ "; // Arrays are wrapped in struct types.
Chris Lattner8673e322008-03-02 05:46:57 +00001109 if (ConstantArray *CA = dyn_cast<ConstantArray>(CPV)) {
Dan Gohmanad831302008-07-24 17:57:48 +00001110 printConstantArray(CA, Static);
Chris Lattner63fb1f02008-03-02 03:16:38 +00001111 } else {
1112 assert(isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 const ArrayType *AT = cast<ArrayType>(CPV->getType());
1114 Out << '{';
1115 if (AT->getNumElements()) {
1116 Out << ' ';
Owen Andersonaac28372009-07-31 20:28:14 +00001117 Constant *CZ = Constant::getNullValue(AT->getElementType());
Dan Gohmanad831302008-07-24 17:57:48 +00001118 printConstant(CZ, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 for (unsigned i = 1, e = AT->getNumElements(); i != e; ++i) {
1120 Out << ", ";
Dan Gohmanad831302008-07-24 17:57:48 +00001121 printConstant(CZ, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 }
1123 }
1124 Out << " }";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001125 }
Dan Gohman5d995b02008-06-02 21:30:49 +00001126 Out << " }"; // Arrays are wrapped in struct types.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 break;
1128
1129 case Type::VectorTyID:
Chris Lattner70f0f672008-03-02 03:29:50 +00001130 // Use C99 compound expression literal initializer syntax.
Dan Gohmanad831302008-07-24 17:57:48 +00001131 if (!Static) {
1132 Out << "(";
1133 printType(Out, CPV->getType());
1134 Out << ")";
1135 }
Chris Lattner8673e322008-03-02 05:46:57 +00001136 if (ConstantVector *CV = dyn_cast<ConstantVector>(CPV)) {
Dan Gohmanad831302008-07-24 17:57:48 +00001137 printConstantVector(CV, Static);
Chris Lattner63fb1f02008-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 Andersonaac28372009-07-31 20:28:14 +00001142 Constant *CZ = Constant::getNullValue(VT->getElementType());
Dan Gohmanad831302008-07-24 17:57:48 +00001143 printConstant(CZ, Static);
Chris Lattner6d4cd9b2008-03-02 03:18:46 +00001144 for (unsigned i = 1, e = VT->getNumElements(); i != e; ++i) {
Chris Lattner63fb1f02008-03-02 03:16:38 +00001145 Out << ", ";
Dan Gohmanad831302008-07-24 17:57:48 +00001146 printConstant(CZ, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 }
1148 Out << " }";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149 }
1150 break;
1151
1152 case Type::StructTyID:
Dan Gohman29b19472008-07-23 18:41:03 +00001153 // Use C99 compound expression literal initializer syntax.
Dan Gohmanad831302008-07-24 17:57:48 +00001154 if (!Static) {
1155 Out << "(";
1156 printType(Out, CPV->getType());
1157 Out << ")";
1158 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001159 if (isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV)) {
1160 const StructType *ST = cast<StructType>(CPV->getType());
1161 Out << '{';
1162 if (ST->getNumElements()) {
1163 Out << ' ';
Owen Andersonaac28372009-07-31 20:28:14 +00001164 printConstant(Constant::getNullValue(ST->getElementType(0)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 for (unsigned i = 1, e = ST->getNumElements(); i != e; ++i) {
1166 Out << ", ";
Owen Andersonaac28372009-07-31 20:28:14 +00001167 printConstant(Constant::getNullValue(ST->getElementType(i)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 }
1169 }
1170 Out << " }";
1171 } else {
1172 Out << '{';
1173 if (CPV->getNumOperands()) {
1174 Out << ' ';
Dan Gohmanad831302008-07-24 17:57:48 +00001175 printConstant(cast<Constant>(CPV->getOperand(0)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001176 for (unsigned i = 1, e = CPV->getNumOperands(); i != e; ++i) {
1177 Out << ", ";
Dan Gohmanad831302008-07-24 17:57:48 +00001178 printConstant(cast<Constant>(CPV->getOperand(i)), Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001179 }
1180 }
1181 Out << " }";
1182 }
1183 break;
1184
1185 case Type::PointerTyID:
1186 if (isa<ConstantPointerNull>(CPV)) {
1187 Out << "((";
1188 printType(Out, CPV->getType()); // sign doesn't matter
1189 Out << ")/*NULL*/0)";
1190 break;
1191 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(CPV)) {
Dan Gohmanad831302008-07-24 17:57:48 +00001192 writeOperand(GV, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001193 break;
1194 }
1195 // FALL THROUGH
1196 default:
Edwin Török4d9756a2009-07-08 20:53:28 +00001197#ifndef NDEBUG
Chris Lattner8a6411c2009-08-23 04:37:46 +00001198 errs() << "Unknown constant type: " << *CPV << "\n";
Edwin Török4d9756a2009-07-08 20:53:28 +00001199#endif
Edwin Törökbd448e32009-07-14 16:55:14 +00001200 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201 }
1202}
1203
1204// 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 Gohmanad831302008-07-24 17:57:48 +00001207bool CWriter::printConstExprCast(const ConstantExpr* CE, bool Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001208 bool NeedsExplicitCast = false;
1209 const Type *Ty = CE->getOperand(0)->getType();
1210 bool TypeIsSigned = false;
1211 switch (CE->getOpcode()) {
Dan Gohmane1790de2008-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001217 case Instruction::LShr:
1218 case Instruction::URem:
1219 case Instruction::UDiv: NeedsExplicitCast = true; break;
1220 case Instruction::AShr:
1221 case Instruction::SRem:
1222 case Instruction::SDiv: NeedsExplicitCast = true; TypeIsSigned = true; break;
1223 case Instruction::SExt:
1224 Ty = CE->getType();
1225 NeedsExplicitCast = true;
1226 TypeIsSigned = true;
1227 break;
1228 case Instruction::ZExt:
1229 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;
1242 default: break;
1243 }
1244 if (NeedsExplicitCast) {
1245 Out << "((";
Duncan Sandse92dee12010-02-15 16:12:20 +00001246 if (Ty->isIntegerTy() && Ty != Type::getInt1Ty(Ty->getContext()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001247 printSimpleType(Out, Ty, TypeIsSigned);
1248 else
1249 printType(Out, Ty); // not integer, sign doesn't matter
1250 Out << ")(";
1251 }
1252 return NeedsExplicitCast;
1253}
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;
1265 bool typeIsSigned = false;
1266
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
1269 // of OpTy. If we change OpTy, also set shouldCast to true so it gets
1270 // casted below.
1271 switch (Opcode) {
1272 default:
1273 // for most instructions, it doesn't matter
1274 break;
Dan Gohmane1790de2008-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001280 case Instruction::LShr:
1281 case Instruction::UDiv:
1282 case Instruction::URem:
1283 shouldCast = true;
1284 break;
1285 case Instruction::AShr:
1286 case Instruction::SDiv:
1287 case Instruction::SRem:
1288 shouldCast = true;
1289 typeIsSigned = true;
1290 break;
1291 }
1292
1293 // Write out the casted constant if we should, otherwise just write the
1294 // operand.
1295 if (shouldCast) {
1296 Out << "((";
1297 printSimpleType(Out, OpTy, typeIsSigned);
1298 Out << ")";
Dan Gohmanad831302008-07-24 17:57:48 +00001299 printConstant(CPV, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300 Out << ")";
1301 } else
Dan Gohmanad831302008-07-24 17:57:48 +00001302 printConstant(CPV, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303}
1304
1305std::string CWriter::GetValueName(const Value *Operand) {
Gabor Greif34246d22010-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 Lattnerb66867f2009-07-13 23:46:46 +00001313 // Mangle globals with the standard mangler interface for LLC compatibility.
Chris Lattnerd2f59b82010-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 Lattner55f4aca2010-01-22 18:33:00 +00001317 return CBEMangle(Str.str().str());
Chris Lattnerd2f59b82010-01-13 19:54:07 +00001318 }
Chris Lattnerb66867f2009-07-13 23:46:46 +00001319
1320 std::string Name = Operand->getName();
1321
1322 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 }
1328
1329 std::string VarName;
1330 VarName.reserve(Name.capacity());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001331
Chris Lattnerb66867f2009-07-13 23:46:46 +00001332 for (std::string::iterator I = Name.begin(), E = Name.end();
1333 I != E; ++I) {
1334 char ch = *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001335
Chris Lattnerb66867f2009-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001343 }
1344
Chris Lattnerb66867f2009-07-13 23:46:46 +00001345 return "llvm_cbe_" + VarName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001346}
1347
Chris Lattnerd70f5a82008-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 Johannesen787881e2009-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 Sandse92dee12010-02-15 16:12:20 +00001354 if (Ty->isIntegerTy() && (Ty!=Type::getInt1Ty(I.getContext()) &&
Owen Anderson35b47072009-08-13 21:58:54 +00001355 Ty!=Type::getInt8Ty(I.getContext()) &&
1356 Ty!=Type::getInt16Ty(I.getContext()) &&
1357 Ty!=Type::getInt32Ty(I.getContext()) &&
1358 Ty!=Type::getInt64Ty(I.getContext()))) {
Chris Lattner8316f2d2010-04-07 22:58:41 +00001359 report_fatal_error("The C backend does not currently support integer "
Edwin Török4d9756a2009-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 Johannesen787881e2009-06-18 01:07:23 +00001362 }
1363
Chris Lattnerd70f5a82008-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 Anderson35b47072009-08-13 21:58:54 +00001368 if (I.getType() == Type::getInt1Ty(I.getContext()) &&
1369 !isa<ICmpInst>(I) && !isa<FCmpInst>(I))
Chris Lattnerd70f5a82008-05-31 09:23:55 +00001370 NeedBoolTrunc = true;
1371
1372 if (NeedBoolTrunc)
1373 Out << "((";
1374
1375 visit(I);
1376
1377 if (NeedBoolTrunc)
1378 Out << ")&1)";
1379}
1380
1381
Dan Gohmanad831302008-07-24 17:57:48 +00001382void CWriter::writeOperandInternal(Value *Operand, bool Static) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383 if (Instruction *I = dyn_cast<Instruction>(Operand))
Chris Lattnerd70f5a82008-05-31 09:23:55 +00001384 // Should we inline this instruction to build a tree?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001385 if (isInlinableInst(*I) && !isDirectAlloca(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001386 Out << '(';
Chris Lattnerd70f5a82008-05-31 09:23:55 +00001387 writeInstComputationInline(*I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388 Out << ')';
1389 return;
1390 }
1391
1392 Constant* CPV = dyn_cast<Constant>(Operand);
1393
1394 if (CPV && !isa<GlobalValue>(CPV))
Dan Gohmanad831302008-07-24 17:57:48 +00001395 printConstant(CPV, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001396 else
1397 Out << GetValueName(Operand);
1398}
1399
Dan Gohmanad831302008-07-24 17:57:48 +00001400void CWriter::writeOperand(Value *Operand, bool Static) {
Chris Lattner8bbc8592008-03-02 08:07:24 +00001401 bool isAddressImplicit = isAddressExposed(Operand);
1402 if (isAddressImplicit)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001403 Out << "(&"; // Global variables are referenced as their addresses by llvm
1404
Dan Gohmanad831302008-07-24 17:57:48 +00001405 writeOperandInternal(Operand, Static);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001406
Chris Lattner8bbc8592008-03-02 08:07:24 +00001407 if (isAddressImplicit)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001408 Out << ')';
1409}
1410
1411// 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
1414// for the Instruction.
1415bool CWriter::writeInstructionCast(const Instruction &I) {
1416 const Type *Ty = I.getOperand(0)->getType();
1417 switch (I.getOpcode()) {
Dan Gohmane1790de2008-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001423 case Instruction::LShr:
1424 case Instruction::URem:
1425 case Instruction::UDiv:
1426 Out << "((";
1427 printSimpleType(Out, Ty, false);
1428 Out << ")(";
1429 return true;
1430 case Instruction::AShr:
1431 case Instruction::SRem:
1432 case Instruction::SDiv:
1433 Out << "((";
1434 printSimpleType(Out, Ty, true);
1435 Out << ")(";
1436 return true;
1437 default: break;
1438 }
1439 return false;
1440}
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
1444// requirements (usually signedness) for its operands.
1445void 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
1453 // Indicate whether the cast should be to a signed type or not.
1454 bool castIsSigned = false;
1455
1456 // 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
1462 break;
Dan Gohmane1790de2008-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001468 case Instruction::LShr:
1469 case Instruction::UDiv:
1470 case Instruction::URem: // Cast to unsigned first
1471 shouldCast = true;
1472 castIsSigned = false;
1473 break;
Chris Lattner7ce1ee42007-09-22 20:16:48 +00001474 case Instruction::GetElementPtr:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001475 case Instruction::AShr:
1476 case Instruction::SDiv:
1477 case Instruction::SRem: // Cast to signed first
1478 shouldCast = true;
1479 castIsSigned = true;
1480 break;
1481 }
1482
1483 // Write out the casted operand if we should, otherwise just write the
1484 // operand.
1485 if (shouldCast) {
1486 Out << "((";
1487 printSimpleType(Out, OpTy, castIsSigned);
1488 Out << ")";
1489 writeOperand(Operand);
1490 Out << ")";
1491 } else
1492 writeOperand(Operand);
1493}
1494
1495// Write the operand with a cast to another type based on the icmp predicate
1496// being used.
Chris Lattner389c9142007-09-15 06:51:03 +00001497void CWriter::writeOperandWithCast(Value* Operand, const ICmpInst &Cmp) {
1498 // This has to do a cast to ensure the operand has the right signedness.
1499 // 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();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001504
1505 // Write out the casted operand if we should, otherwise just write the
1506 // operand.
Chris Lattner389c9142007-09-15 06:51:03 +00001507 if (!shouldCast) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001508 writeOperand(Operand);
Chris Lattner389c9142007-09-15 06:51:03 +00001509 return;
1510 }
1511
1512 // Should this be a signed comparison? If so, convert to signed.
Nick Lewyckyb0796c62009-10-25 05:20:17 +00001513 bool castIsSigned = Cmp.isSigned();
Chris Lattner389c9142007-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 Sands10343d92010-02-16 11:11:14 +00001517 if (OpTy->isPointerTy())
Owen Anderson35b47072009-08-13 21:58:54 +00001518 OpTy = TD->getIntPtrType(Operand->getContext());
Chris Lattner389c9142007-09-15 06:51:03 +00001519
1520 Out << "((";
1521 printSimpleType(Out, OpTy, castIsSigned);
1522 Out << ")";
1523 writeOperand(Operand);
1524 Out << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001525}
1526
1527// generateCompilerSpecificCode - This is where we add conditional compilation
1528// directives to cater to specific compilers as need be.
1529//
David Greene302008d2009-07-14 20:18:05 +00001530static void generateCompilerSpecificCode(formatted_raw_ostream& Out,
Dan Gohman3f795232008-04-02 23:52:49 +00001531 const TargetData *TD) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001532 // Alloca is hard to get, and we don't want to include stdlib.h here.
1533 Out << "/* get a declaration for alloca */\n"
1534 << "#if defined(__CYGWIN__) || defined(__MINGW32__)\n"
1535 << "#define alloca(x) __builtin_alloca((x))\n"
Anton Korobeynikov9664a752009-08-05 09:31:07 +00001536 << "#define _alloca(x) __builtin_alloca((x))\n"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001537 << "#elif defined(__APPLE__)\n"
1538 << "extern void *__builtin_alloca(unsigned long);\n"
1539 << "#define alloca(x) __builtin_alloca(x)\n"
1540 << "#define longjmp _longjmp\n"
1541 << "#define setjmp _setjmp\n"
1542 << "#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 Korobeynikov9664a752009-08-05 09:31:07 +00001549 << "#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__arm__)\n"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001550 << "#define alloca(x) __builtin_alloca(x)\n"
1551 << "#elif defined(_MSC_VER)\n"
1552 << "#define inline _inline\n"
1553 << "#define alloca(x) _alloca(x)\n"
1554 << "#else\n"
1555 << "#include <alloca.h>\n"
1556 << "#endif\n\n";
1557
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.
1560 Out << "#ifndef __GNUC__ /* Can only support \"linkonce\" vars with GCC */\n"
1561 << "#define __attribute__(X)\n"
1562 << "#endif\n\n";
1563
1564 // 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";
1572
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";
1581
1582 // Add hidden visibility support. FIXME: APPLE_CC?
1583 Out << "#if defined(__GNUC__)\n"
1584 << "#define __HIDDEN__ __attribute__((visibility(\"hidden\")))\n"
1585 << "#endif\n\n";
1586
1587 // Define NaN and Inf as GCC builtins if using GCC, as 0 otherwise
1588 // From the GCC documentation:
1589 //
1590 // 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"
1619 << "#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"
1625 << "#define LLVM_PREFETCH(addr,rw,locality) "
1626 "__builtin_prefetch(addr,rw,locality)\n"
1627 << "#define __ATTRIBUTE_CTOR__ __attribute__((constructor))\n"
1628 << "#define __ATTRIBUTE_DTOR__ __attribute__((destructor))\n"
1629 << "#define LLVM_ASM __asm__\n"
1630 << "#else\n"
1631 << "#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"
1637 << "#define LLVM_PREFETCH(addr,rw,locality) /* PREFETCH */\n"
1638 << "#define __ATTRIBUTE_CTOR__\n"
1639 << "#define __ATTRIBUTE_DTOR__\n"
1640 << "#define LLVM_ASM(X)\n"
1641 << "#endif\n\n";
1642
1643 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";
1647
Dan Gohman3f795232008-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 Lattnerab6d3382008-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 Gohmana2245af2008-04-02 19:40:14 +00001655
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001656 // Output target-specific code that should be inserted into main.
1657 Out << "#define CODE_FOR_MAIN() /* Any target-specific code for main()*/\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001658}
1659
1660/// 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;
1665
1666 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.
1669
1670 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))
1674 if (CE->isCast())
1675 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 }
1697
Dan Gohmandf1a7ff2010-02-10 16:03:48 +00001698 // Otherwise, if it is other metadata, don't print it. This catches things
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001699 // like debug information.
1700 if (GV->getSection() == "llvm.metadata")
1701 return NotPrinted;
1702
1703 return NotSpecial;
1704}
1705
Anton Korobeynikov865e6752009-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}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001730
1731bool CWriter::doInitialization(Module &M) {
Daniel Dunbar5392e062009-07-17 03:43:21 +00001732 FunctionPass::doInitialization(M);
1733
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001734 // Initialize
1735 TheModule = &M;
1736
1737 TD = new TargetData(&M);
1738 IL = new IntrinsicLowering(*TD);
1739 IL->AddPrototypes(M);
1740
Chris Lattner63ab9bb2010-01-17 18:22:35 +00001741#if 0
1742 std::string Triple = TheModule->getTargetTriple();
1743 if (Triple.empty())
1744 Triple = llvm::sys::getHostTriple();
1745
1746 std::string E;
1747 if (const Target *Match = TargetRegistry::lookupTarget(Triple, E))
1748 TAsm = Match->createAsmInfo(Triple);
1749#endif
Chris Lattner50f82ef2010-01-20 06:34:14 +00001750 TAsm = new CBEMCAsmInfo();
Chris Lattner4aeebec2010-03-12 18:44:54 +00001751 TCtx = new MCContext(*TAsm);
Chris Lattner2a2a6732010-03-12 20:47:28 +00001752 Mang = new Mangler(*TCtx, *TD);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001753
1754 // 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 }
1769
1770 // get declaration for alloca
1771 Out << "/* Provide Declarations */\n";
1772 Out << "#include <stdarg.h>\n"; // Varargs support
1773 Out << "#include <setjmp.h>\n"; // Unwind support
Dan Gohman3f795232008-04-02 23:52:49 +00001774 generateCompilerSpecificCode(Out, TD);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001775
1776 // Provide a definition for `bool' if not compiling with a C++ compiler.
1777 Out << "\n"
1778 << "#ifndef __cplusplus\ntypedef unsigned char bool;\n#endif\n"
1779
1780 << "\n\n/* Support for floating point constants */\n"
1781 << "typedef unsigned long long ConstantDoubleTy;\n"
1782 << "typedef unsigned int ConstantFloatTy;\n"
Dale Johannesen137cef62007-09-17 00:38:27 +00001783 << "typedef struct { unsigned long long f1; unsigned short f2; "
1784 "unsigned short pad[3]; } ConstantFP80Ty;\n"
Dale Johannesen091dcfd2007-10-15 01:05:37 +00001785 // This is used for both kinds of 128-bit long double; meaning differs.
Dale Johannesen137cef62007-09-17 00:38:27 +00001786 << "typedef struct { unsigned long long f1; unsigned long long f2; }"
1787 " ConstantFP128Ty;\n"
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Korobeynikov865e6752009-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 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001816
1817 // Loop over the symbol table, emitting all named constants...
1818 printModuleTypes(M.getTypeSymbolTable());
1819
1820 // Global variable declarations...
1821 if (!M.global_empty()) {
1822 Out << "\n/* External Global Variable Declarations */\n";
1823 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1824 I != E; ++I) {
1825
Dale Johannesen49c44122008-05-14 20:12:51 +00001826 if (I->hasExternalLinkage() || I->hasExternalWeakLinkage() ||
1827 I->hasCommonLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001828 Out << "extern ";
1829 else if (I->hasDLLImportLinkage())
1830 Out << "__declspec(dllimport) ";
1831 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";
1843 }
1844 }
1845
1846 // Function declarations
1847 Out << "\n/* Function Declarations */\n";
1848 Out << "double fmod(double, double);\n"; // Support for FP rem
1849 Out << "float fmodf(float, float);\n";
Dale Johannesen137cef62007-09-17 00:38:27 +00001850 Out << "long double fmodl(long double, long double);\n";
Evan Chengd2d22fe2008-06-07 07:50:29 +00001851
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001852 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1853 // Don't print declarations for intrinsic functions.
Duncan Sands79d28872007-12-03 20:06:50 +00001854 if (!I->isIntrinsic() && I->getName() != "setjmp" &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001855 I->getName() != "longjmp" && I->getName() != "_setjmp") {
1856 if (I->hasExternalWeakLinkage())
1857 Out << "extern ";
1858 printFunctionSignature(I, true);
Evan Chengd2d22fe2008-06-07 07:50:29 +00001859 if (I->hasWeakLinkage() || I->hasLinkOnceLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001860 Out << " __ATTRIBUTE_WEAK__";
1861 if (I->hasExternalWeakLinkage())
1862 Out << " __EXTERNAL_WEAK__";
1863 if (StaticCtors.count(I))
1864 Out << " __ATTRIBUTE_CTOR__";
1865 if (StaticDtors.count(I))
1866 Out << " __ATTRIBUTE_DTOR__";
1867 if (I->hasHiddenVisibility())
1868 Out << " __HIDDEN__";
Evan Chengd2d22fe2008-06-07 07:50:29 +00001869
1870 if (I->hasName() && I->getName()[0] == 1)
Daniel Dunbar936763a2009-07-22 21:10:12 +00001871 Out << " LLVM_ASM(\"" << I->getName().substr(1) << "\")";
Evan Chengd2d22fe2008-06-07 07:50:29 +00001872
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001873 Out << ";\n";
1874 }
1875 }
1876
1877 // Output the global variable declarations
1878 if (!M.global_empty()) {
1879 Out << "\n\n/* Global Variable Declarations */\n";
1880 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
1881 I != E; ++I)
1882 if (!I->isDeclaration()) {
1883 // Ignore special globals, such as debug info.
1884 if (getGlobalVariableClass(I))
1885 continue;
1886
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001887 if (I->hasLocalLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001888 Out << "static ";
1889 else
1890 Out << "extern ";
1891
1892 // Thread Local Storage
1893 if (I->isThreadLocal())
1894 Out << "__thread ";
1895
1896 printType(Out, I->getType()->getElementType(), false,
1897 GetValueName(I));
1898
1899 if (I->hasLinkOnceLinkage())
1900 Out << " __attribute__((common))";
Dale Johannesen49c44122008-05-14 20:12:51 +00001901 else if (I->hasCommonLinkage()) // FIXME is this right?
1902 Out << " __ATTRIBUTE_WEAK__";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001903 else if (I->hasWeakLinkage())
1904 Out << " __ATTRIBUTE_WEAK__";
1905 else if (I->hasExternalWeakLinkage())
1906 Out << " __EXTERNAL_WEAK__";
1907 if (I->hasHiddenVisibility())
1908 Out << " __HIDDEN__";
1909 Out << ";\n";
1910 }
1911 }
1912
1913 // Output the global variable definitions and contents...
1914 if (!M.global_empty()) {
1915 Out << "\n\n/* Global Variable Definitions and Initialization */\n";
Evan Chengd2d22fe2008-06-07 07:50:29 +00001916 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001917 I != E; ++I)
1918 if (!I->isDeclaration()) {
1919 // Ignore special globals, such as debug info.
1920 if (getGlobalVariableClass(I))
1921 continue;
1922
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001923 if (I->hasLocalLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001924 Out << "static ";
1925 else if (I->hasDLLImportLinkage())
1926 Out << "__declspec(dllimport) ";
1927 else if (I->hasDLLExportLinkage())
1928 Out << "__declspec(dllexport) ";
1929
1930 // Thread Local Storage
1931 if (I->isThreadLocal())
1932 Out << "__thread ";
1933
1934 printType(Out, I->getType()->getElementType(), false,
1935 GetValueName(I));
1936 if (I->hasLinkOnceLinkage())
1937 Out << " __attribute__((common))";
1938 else if (I->hasWeakLinkage())
1939 Out << " __ATTRIBUTE_WEAK__";
Dale Johannesen49c44122008-05-14 20:12:51 +00001940 else if (I->hasCommonLinkage())
1941 Out << " __ATTRIBUTE_WEAK__";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001942
1943 if (I->hasHiddenVisibility())
1944 Out << " __HIDDEN__";
1945
1946 // 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 Johannesen49c44122008-05-14 20:12:51 +00001951 // FIXME common linkage should avoid this problem.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001952 if (!I->getInitializer()->isNullValue()) {
1953 Out << " = " ;
Dan Gohmanad831302008-07-24 17:57:48 +00001954 writeOperand(I->getInitializer(), true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Sands10343d92010-02-16 11:11:14 +00001960 if (I->getInitializer()->getType()->isStructTy() ||
1961 I->getInitializer()->getType()->isVectorTy()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001962 Out << "{ 0 }";
Duncan Sands10343d92010-02-16 11:11:14 +00001963 } else if (I->getInitializer()->getType()->isArrayTy()) {
Dan Gohman5d995b02008-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 } }";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001967 } else {
1968 // Just print it out normally.
Dan Gohmanad831302008-07-24 17:57:48 +00001969 writeOperand(I->getInitializer(), true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001970 }
1971 }
1972 Out << ";\n";
1973 }
1974 }
1975
1976 if (!M.empty())
1977 Out << "\n\n/* Function Bodies */\n";
1978
1979 // Emit some helper functions for dealing with FCMP instruction's
1980 // 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) { ";
1986 Out << "return X == Y || llvm_fcmp_uno(X, Y); }\n";
1987 Out << "static inline int llvm_fcmp_une(double X, double Y) { ";
1988 Out << "return X != Y; }\n";
1989 Out << "static inline int llvm_fcmp_ult(double X, double Y) { ";
1990 Out << "return X < Y || llvm_fcmp_uno(X, Y); }\n";
1991 Out << "static inline int llvm_fcmp_ugt(double X, double Y) { ";
1992 Out << "return X > Y || llvm_fcmp_uno(X, Y); }\n";
1993 Out << "static inline int llvm_fcmp_ule(double X, double Y) { ";
1994 Out << "return X <= Y || llvm_fcmp_uno(X, Y); }\n";
1995 Out << "static inline int llvm_fcmp_uge(double X, double Y) { ";
1996 Out << "return X >= Y || llvm_fcmp_uno(X, Y); }\n";
1997 Out << "static inline int llvm_fcmp_oeq(double X, double Y) { ";
1998 Out << "return X == Y ; }\n";
1999 Out << "static inline int llvm_fcmp_one(double X, double Y) { ";
2000 Out << "return X != Y && llvm_fcmp_ord(X, Y); }\n";
2001 Out << "static inline int llvm_fcmp_olt(double X, double Y) { ";
2002 Out << "return X < Y ; }\n";
2003 Out << "static inline int llvm_fcmp_ogt(double X, double Y) { ";
2004 Out << "return X > Y ; }\n";
2005 Out << "static inline int llvm_fcmp_ole(double X, double Y) { ";
2006 Out << "return X <= Y ; }\n";
2007 Out << "static inline int llvm_fcmp_oge(double X, double Y) { ";
2008 Out << "return X >= Y ; }\n";
2009 return false;
2010}
2011
2012
2013/// Output all floating point constants that cannot be printed accurately...
2014void CWriter::printFloatingPointConstants(Function &F) {
2015 // 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 //
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002020 for (constant_iterator I = constant_begin(&F), E = constant_end(&F);
2021 I != E; ++I)
Chris Lattnerf6e12012008-10-22 04:53:16 +00002022 printFloatingPointConstants(*I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002023
2024 Out << '\n';
2025}
2026
Chris Lattnerf6e12012008-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 }
2034
2035 // 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
2045
Owen Anderson35b47072009-08-13 21:58:54 +00002046 if (FPC->getType() == Type::getDoubleTy(FPC->getContext())) {
Chris Lattnerf6e12012008-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 Anderson35b47072009-08-13 21:58:54 +00002052 } else if (FPC->getType() == Type::getFloatTy(FPC->getContext())) {
Chris Lattnerf6e12012008-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 Anderson35b47072009-08-13 21:58:54 +00002059 } else if (FPC->getType() == Type::getX86_FP80Ty(FPC->getContext())) {
Chris Lattnerf6e12012008-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++
Dale Johannesen0a92eac2009-03-23 21:16:53 +00002064 << " = { 0x" << utohexstr(p[0])
2065 << "ULL, 0x" << utohexstr((uint16_t)p[1]) << ",{0,0,0}"
Chris Lattnerf6e12012008-10-22 04:53:16 +00002066 << "}; /* Long double constant */\n";
Anton Korobeynikov3e721692009-08-26 17:39:23 +00002067 } else if (FPC->getType() == Type::getPPC_FP128Ty(FPC->getContext()) ||
2068 FPC->getType() == Type::getFP128Ty(FPC->getContext())) {
Chris Lattnerf6e12012008-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";
2075
2076 } else {
Edwin Törökbd448e32009-07-14 16:55:14 +00002077 llvm_unreachable("Unknown float type!");
Chris Lattnerf6e12012008-10-22 04:53:16 +00002078 }
2079}
2080
2081
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002082
2083/// printSymbolTable - Run through symbol table looking for type names. If a
2084/// type name is found, emit its declaration...
2085///
2086void CWriter::printModuleTypes(const TypeSymbolTable &TST) {
2087 Out << "/* Helper union for bitcasts */\n";
2088 Out << "typedef union {\n";
2089 Out << " unsigned int Int32;\n";
2090 Out << " unsigned long long Int64;\n";
2091 Out << " float Float;\n";
2092 Out << " double Double;\n";
2093 Out << "} llvmBitCastUnion;\n";
2094
2095 // We are only interested in the type plane of the symbol table.
2096 TypeSymbolTable::const_iterator I = TST.begin();
2097 TypeSymbolTable::const_iterator End = TST.end();
2098
2099 // If there are no type names, exit early.
2100 if (I == End) return;
2101
2102 // Print out forward declarations for structure types before anything else!
2103 Out << "/* Structure forward decls */\n";
2104 for (; I != End; ++I) {
Chris Lattner55f4aca2010-01-22 18:33:00 +00002105 std::string Name = "struct " + CBEMangle("l_"+I->first);
Chris Lattnerd2f59b82010-01-13 19:54:07 +00002106 Out << Name << ";\n";
2107 TypeNames.insert(std::make_pair(I->second, Name));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002108 }
2109
2110 Out << '\n';
2111
2112 // Now we can print out typedefs. Above, we guaranteed that this can only be
2113 // for struct or opaque types.
2114 Out << "/* Typedefs */\n";
2115 for (I = TST.begin(); I != End; ++I) {
Chris Lattner55f4aca2010-01-22 18:33:00 +00002116 std::string Name = CBEMangle("l_"+I->first);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002117 Out << "typedef ";
Chris Lattnerd2f59b82010-01-13 19:54:07 +00002118 printType(Out, I->second, false, Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002119 Out << ";\n";
2120 }
2121
2122 Out << '\n';
2123
2124 // Keep track of which structures have been printed so far...
Dan Gohman5d995b02008-06-02 21:30:49 +00002125 std::set<const Type *> StructPrinted;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002126
2127 // Loop over all structures then push them into the stack so they are
2128 // printed in the correct order.
2129 //
2130 Out << "/* Structure contents */\n";
2131 for (I = TST.begin(); I != End; ++I)
Duncan Sands10343d92010-02-16 11:11:14 +00002132 if (I->second->isStructTy() || I->second->isArrayTy())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002133 // Only print out used types!
Dan Gohman5d995b02008-06-02 21:30:49 +00002134 printContainedStructs(I->second, StructPrinted);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002135}
2136
2137// Push the struct onto the stack and recursively push all structs
2138// this one depends on.
2139//
2140// TODO: Make this work properly with vector types
2141//
2142void CWriter::printContainedStructs(const Type *Ty,
Dan Gohman5d995b02008-06-02 21:30:49 +00002143 std::set<const Type*> &StructPrinted) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002144 // Don't walk through pointers.
Duncan Sands10343d92010-02-16 11:11:14 +00002145 if (Ty->isPointerTy() || Ty->isPrimitiveType() || Ty->isIntegerTy())
Duncan Sandse92dee12010-02-15 16:12:20 +00002146 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002147
2148 // 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);
2152
Duncan Sands10343d92010-02-16 11:11:14 +00002153 if (Ty->isStructTy() || Ty->isArrayTy()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002154 // Check to see if we have already printed this struct.
Dan Gohman5d995b02008-06-02 21:30:49 +00002155 if (StructPrinted.insert(Ty).second) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002156 // Print structure type out.
Dan Gohman5d995b02008-06-02 21:30:49 +00002157 std::string Name = TypeNames[Ty];
2158 printType(Out, Ty, false, Name, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002159 Out << ";\n\n";
2160 }
2161 }
2162}
2163
2164void CWriter::printFunctionSignature(const Function *F, bool Prototype) {
2165 /// isStructReturn - Should this function actually return a struct by-value?
Devang Patel949a4b72008-03-03 21:46:28 +00002166 bool isStructReturn = F->hasStructRetAttr();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002167
Rafael Espindolaa168fc92009-01-15 20:18:42 +00002168 if (F->hasLocalLinkage()) Out << "static ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002169 if (F->hasDLLImportLinkage()) Out << "__declspec(dllimport) ";
2170 if (F->hasDLLExportLinkage()) Out << "__declspec(dllexport) ";
2171 switch (F->getCallingConv()) {
2172 case CallingConv::X86_StdCall:
Nick Lewyckyc0b01ea2008-11-26 03:17:27 +00002173 Out << "__attribute__((stdcall)) ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002174 break;
2175 case CallingConv::X86_FastCall:
Nick Lewyckyc0b01ea2008-11-26 03:17:27 +00002176 Out << "__attribute__((fastcall)) ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002177 break;
Anton Korobeynikove454f182010-05-16 09:08:45 +00002178 case CallingConv::X86_ThisCall:
2179 Out << "__attribute__((thiscall)) ";
2180 break;
Sandeep Patel5838baa2009-09-02 08:44:58 +00002181 default:
2182 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002183 }
2184
2185 // Loop over the arguments, printing them...
2186 const FunctionType *FT = cast<FunctionType>(F->getFunctionType());
Devang Pateld222f862008-09-25 21:00:45 +00002187 const AttrListPtr &PAL = F->getAttributes();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002188
Duncan Sands711e63c2010-02-21 19:15:19 +00002189 std::string tstr;
2190 raw_string_ostream FunctionInnards(tstr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002191
2192 // Print out the name...
2193 FunctionInnards << GetValueName(F) << '(';
2194
2195 bool PrintedArg = false;
2196 if (!F->isDeclaration()) {
2197 if (!F->arg_empty()) {
2198 Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Evan Cheng2054cb02008-01-11 03:07:46 +00002199 unsigned Idx = 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002200
2201 // If this is a struct-return function, don't print the hidden
2202 // struct-return argument.
2203 if (isStructReturn) {
2204 assert(I != E && "Invalid struct return function!");
2205 ++I;
Evan Cheng2054cb02008-01-11 03:07:46 +00002206 ++Idx;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002207 }
2208
2209 std::string ArgName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002210 for (; I != E; ++I) {
2211 if (PrintedArg) FunctionInnards << ", ";
2212 if (I->hasName() || !Prototype)
2213 ArgName = GetValueName(I);
2214 else
2215 ArgName = "";
Evan Cheng2054cb02008-01-11 03:07:46 +00002216 const Type *ArgTy = I->getType();
Devang Pateld222f862008-09-25 21:00:45 +00002217 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Evan Cheng17254e62008-01-11 09:12:49 +00002218 ArgTy = cast<PointerType>(ArgTy)->getElementType();
Chris Lattner8bbc8592008-03-02 08:07:24 +00002219 ByValParams.insert(I);
Evan Cheng17254e62008-01-11 09:12:49 +00002220 }
Evan Cheng2054cb02008-01-11 03:07:46 +00002221 printType(FunctionInnards, ArgTy,
Devang Pateld222f862008-09-25 21:00:45 +00002222 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002223 ArgName);
2224 PrintedArg = true;
2225 ++Idx;
2226 }
2227 }
2228 } else {
2229 // Loop over the arguments, printing them.
2230 FunctionType::param_iterator I = FT->param_begin(), E = FT->param_end();
Evan Chengf8956382008-01-11 23:10:11 +00002231 unsigned Idx = 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002232
2233 // If this is a struct-return function, don't print the hidden
2234 // struct-return argument.
2235 if (isStructReturn) {
2236 assert(I != E && "Invalid struct return function!");
2237 ++I;
Evan Chengf8956382008-01-11 23:10:11 +00002238 ++Idx;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002239 }
2240
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002241 for (; I != E; ++I) {
2242 if (PrintedArg) FunctionInnards << ", ";
Evan Chengf8956382008-01-11 23:10:11 +00002243 const Type *ArgTy = *I;
Devang Pateld222f862008-09-25 21:00:45 +00002244 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
Duncan Sands10343d92010-02-16 11:11:14 +00002245 assert(ArgTy->isPointerTy());
Evan Chengf8956382008-01-11 23:10:11 +00002246 ArgTy = cast<PointerType>(ArgTy)->getElementType();
2247 }
2248 printType(FunctionInnards, ArgTy,
Devang Pateld222f862008-09-25 21:00:45 +00002249 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002250 PrintedArg = true;
2251 ++Idx;
2252 }
2253 }
2254
Chris Lattner10c749c2010-04-10 19:12:44 +00002255 if (!PrintedArg && FT->isVarArg()) {
2256 FunctionInnards << "int vararg_dummy_arg";
2257 PrintedArg = true;
2258 }
2259
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 //
2263 if (FT->isVarArg() && PrintedArg) {
Chris Lattner10c749c2010-04-10 19:12:44 +00002264 FunctionInnards << ",..."; // Output varargs portion of signature!
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002265 } else if (!FT->isVarArg() && !PrintedArg) {
2266 FunctionInnards << "void"; // ret() -> ret(void) in C.
2267 }
2268 FunctionInnards << ')';
2269
2270 // Get the return tpe for the function.
2271 const Type *RetTy;
2272 if (!isStructReturn)
2273 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 }
2278
2279 // Print out the return type and the signature built above.
2280 printType(Out, RetTy,
Devang Pateld222f862008-09-25 21:00:45 +00002281 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002282 FunctionInnards.str());
2283}
2284
2285static 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 Sandse92dee12010-02-15 16:12:20 +00002290 return (SrcTy->isFloatingPointTy() && DstTy->isIntegerTy()) ||
2291 (DstTy->isFloatingPointTy() && SrcTy->isIntegerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002292}
2293
2294void CWriter::printFunction(Function &F) {
2295 /// isStructReturn - Should this function actually return a struct by-value?
Devang Patel949a4b72008-03-03 21:46:28 +00002296 bool isStructReturn = F.hasStructRetAttr();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002297
2298 printFunctionSignature(&F, false);
2299 Out << " {\n";
2300
2301 // If this is a struct return function, handle the result with magic.
2302 if (isStructReturn) {
2303 const Type *StructTy =
2304 cast<PointerType>(F.arg_begin()->getType())->getElementType();
2305 Out << " ";
2306 printType(Out, StructTy, false, "StructReturn");
2307 Out << "; /* Struct return temporary */\n";
2308
2309 Out << " ";
2310 printType(Out, F.arg_begin()->getType(), false,
2311 GetValueName(F.arg_begin()));
2312 Out << " = &StructReturn;\n";
2313 }
2314
2315 bool PrintedVar = false;
2316
2317 // print local variable information for the function
2318 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ++I) {
2319 if (const AllocaInst *AI = isDirectAlloca(&*I)) {
2320 Out << " ";
2321 printType(Out, AI->getAllocatedType(), false, GetValueName(AI));
2322 Out << "; /* Address-exposed local */\n";
2323 PrintedVar = true;
Owen Anderson35b47072009-08-13 21:58:54 +00002324 } else if (I->getType() != Type::getVoidTy(F.getContext()) &&
2325 !isInlinableInst(*I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002326 Out << " ";
2327 printType(Out, I->getType(), false, GetValueName(&*I));
2328 Out << ";\n";
2329
2330 if (isa<PHINode>(*I)) { // Print out PHI node temporaries as well...
2331 Out << " ";
2332 printType(Out, I->getType(), false,
2333 GetValueName(&*I)+"__PHI_TEMPORARY");
2334 Out << ";\n";
2335 }
2336 PrintedVar = true;
2337 }
2338 // We need a temporary for the BitCast to use so it can pluck a value out
2339 // of a union to do the BitCast. This is separate from the need for a
2340 // variable to hold the result of the BitCast.
2341 if (isFPIntBitCast(*I)) {
2342 Out << " llvmBitCastUnion " << GetValueName(&*I)
2343 << "__BITCAST_TEMPORARY;\n";
2344 PrintedVar = true;
2345 }
2346 }
2347
2348 if (PrintedVar)
2349 Out << '\n';
2350
2351 if (F.hasExternalLinkage() && F.getName() == "main")
2352 Out << " CODE_FOR_MAIN();\n";
2353
2354 // print the basic blocks
2355 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
2356 if (Loop *L = LI->getLoopFor(BB)) {
2357 if (L->getHeader() == BB && L->getParentLoop() == 0)
2358 printLoop(L);
2359 } else {
2360 printBasicBlock(BB);
2361 }
2362 }
2363
2364 Out << "}\n\n";
2365}
2366
2367void 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)
2376 printLoop(BBLoop);
2377 }
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 }
2395
2396 if (NeedsLabel) Out << GetValueName(BB) << ":\n";
2397
2398 // 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 Anderson35b47072009-08-13 21:58:54 +00002402 if (II->getType() != Type::getVoidTy(BB->getContext()) &&
2403 !isInlineAsm(*II))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002404 outputLValue(II);
2405 else
2406 Out << " ";
Chris Lattnerd70f5a82008-05-31 09:23:55 +00002407 writeInstComputationInline(*II);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002408 Out << ";\n";
2409 }
2410 }
2411
Chris Lattnerd70f5a82008-05-31 09:23:55 +00002412 // Don't emit prefix or suffix for the terminator.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002413 visit(*BB->getTerminator());
2414}
2415
2416
2417// Specific Instruction type classes... note that all of the casts are
2418// necessary because we use the instruction classes as opaque types...
2419//
2420void CWriter::visitReturnInst(ReturnInst &I) {
2421 // If this is a struct return function, return the temporary struct.
Devang Patel949a4b72008-03-03 21:46:28 +00002422 bool isStructReturn = I.getParent()->getParent()->hasStructRetAttr();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002423
2424 if (isStructReturn) {
2425 Out << " return StructReturn;\n";
2426 return;
2427 }
2428
2429 // Don't output a void return if this is the last basic block in the function
2430 if (I.getNumOperands() == 0 &&
2431 &*--I.getParent()->getParent()->end() == I.getParent() &&
2432 !I.getParent()->size() == 1) {
2433 return;
2434 }
2435
Dan Gohman93d04582008-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002454 Out << " return";
2455 if (I.getNumOperands()) {
2456 Out << ' ';
2457 writeOperand(I.getOperand(0));
2458 }
2459 Out << ";\n";
2460}
2461
2462void CWriter::visitSwitchInst(SwitchInst &SI) {
2463
2464 Out << " switch (";
2465 writeOperand(SI.getOperand(0));
2466 Out << ") {\n default:\n";
2467 printPHICopiesForSuccessor (SI.getParent(), SI.getDefaultDest(), 2);
2468 printBranchToBlock(SI.getParent(), SI.getDefaultDest(), 2);
2469 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));
2475 printPHICopiesForSuccessor (SI.getParent(), Succ, 2);
2476 printBranchToBlock(SI.getParent(), Succ, 2);
Chris Lattnerb44b4292009-12-03 00:50:42 +00002477 if (Function::iterator(Succ) == llvm::next(Function::iterator(SI.getParent())))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002478 Out << " break;\n";
2479 }
2480 Out << " }\n";
2481}
2482
Chris Lattner4c3800f2009-10-28 00:19:10 +00002483void CWriter::visitIndirectBrInst(IndirectBrInst &IBI) {
Chris Lattner20e88f52009-10-27 21:21:06 +00002484 Out << " goto *(void*)(";
2485 writeOperand(IBI.getOperand(0));
2486 Out << ");\n";
2487}
2488
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002489void CWriter::visitUnreachableInst(UnreachableInst &I) {
2490 Out << " /*UNREACHABLE*/;\n";
2491}
2492
2493bool CWriter::isGotoCodeNecessary(BasicBlock *From, BasicBlock *To) {
2494 /// FIXME: This should be reenabled, but loop reordering safe!!
2495 return true;
2496
Chris Lattnerb44b4292009-12-03 00:50:42 +00002497 if (llvm::next(Function::iterator(From)) != Function::iterator(To))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002498 return true; // Not the direct successor, we need a goto.
2499
2500 //isa<SwitchInst>(From->getTerminator())
2501
2502 if (LI->getLoopFor(From) != LI->getLoopFor(To))
2503 return true;
2504 return false;
2505}
2506
2507void CWriter::printPHICopiesForSuccessor (BasicBlock *CurBlock,
2508 BasicBlock *Successor,
2509 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, ' ');
2516 Out << " " << GetValueName(I) << "__PHI_TEMPORARY = ";
2517 writeOperand(IV);
2518 Out << "; /* for PHI node */\n";
2519 }
2520 }
2521}
2522
2523void CWriter::printBranchToBlock(BasicBlock *CurBB, BasicBlock *Succ,
2524 unsigned Indent) {
2525 if (isGotoCodeNecessary(CurBB, Succ)) {
2526 Out << std::string(Indent, ' ') << " goto ";
2527 writeOperand(Succ);
2528 Out << ";\n";
2529 }
2530}
2531
2532// Branch instruction printing - Avoid printing out a branch to a basic block
2533// that immediately succeeds the current one.
2534//
2535void CWriter::visitBranchInst(BranchInst &I) {
2536
2537 if (I.isConditional()) {
2538 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(0))) {
2539 Out << " if (";
2540 writeOperand(I.getCondition());
2541 Out << ") {\n";
2542
2543 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 2);
2544 printBranchToBlock(I.getParent(), I.getSuccessor(0), 2);
2545
2546 if (isGotoCodeNecessary(I.getParent(), I.getSuccessor(1))) {
2547 Out << " } else {\n";
2548 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
2549 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
2550 }
2551 } else {
2552 // First goto not necessary, assume second one is...
2553 Out << " if (!";
2554 writeOperand(I.getCondition());
2555 Out << ") {\n";
2556
2557 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(1), 2);
2558 printBranchToBlock(I.getParent(), I.getSuccessor(1), 2);
2559 }
2560
2561 Out << " }\n";
2562 } else {
2563 printPHICopiesForSuccessor (I.getParent(), I.getSuccessor(0), 0);
2564 printBranchToBlock(I.getParent(), I.getSuccessor(0), 0);
2565 }
2566 Out << "\n";
2567}
2568
2569// 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
2577
2578void CWriter::visitBinaryOperator(Instruction &I) {
2579 // binary instructions, shift instructions, setCond instructions.
Duncan Sands10343d92010-02-16 11:11:14 +00002580 assert(!I.getType()->isPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002581
2582 // We must cast the results of binary operations which might be promoted.
2583 bool needsCast = false;
Owen Anderson35b47072009-08-13 21:58:54 +00002584 if ((I.getType() == Type::getInt8Ty(I.getContext())) ||
2585 (I.getType() == Type::getInt16Ty(I.getContext()))
2586 || (I.getType() == Type::getFloatTy(I.getContext()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002587 needsCast = true;
2588 Out << "((";
2589 printType(Out, I.getType(), false);
2590 Out << ")(";
2591 }
2592
2593 // If this is a negation operation, print it out as such. For FP, we don't
2594 // want to print "-0.0 - X".
Owen Anderson76f49252009-07-13 22:18:28 +00002595 if (BinaryOperator::isNeg(&I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002596 Out << "-(";
2597 writeOperand(BinaryOperator::getNegArgument(cast<BinaryOperator>(&I)));
2598 Out << ")";
Owen Anderson76f49252009-07-13 22:18:28 +00002599 } else if (BinaryOperator::isFNeg(&I)) {
Dan Gohman7ce405e2009-06-04 22:49:04 +00002600 Out << "-(";
2601 writeOperand(BinaryOperator::getFNegArgument(cast<BinaryOperator>(&I)));
2602 Out << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002603 } else if (I.getOpcode() == Instruction::FRem) {
2604 // Output a call to fmod/fmodf instead of emitting a%b
Owen Anderson35b47072009-08-13 21:58:54 +00002605 if (I.getType() == Type::getFloatTy(I.getContext()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002606 Out << "fmodf(";
Owen Anderson35b47072009-08-13 21:58:54 +00002607 else if (I.getType() == Type::getDoubleTy(I.getContext()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002608 Out << "fmod(";
Dale Johannesen137cef62007-09-17 00:38:27 +00002609 else // all 3 flavors of long double
2610 Out << "fmodl(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002611 writeOperand(I.getOperand(0));
2612 Out << ", ";
2613 writeOperand(I.getOperand(1));
2614 Out << ")";
2615 } else {
2616
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());
2625
2626 switch (I.getOpcode()) {
Dan Gohman7ce405e2009-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002633 case Instruction::URem:
2634 case Instruction::SRem:
2635 case Instruction::FRem: Out << " % "; break;
2636 case Instruction::UDiv:
2637 case Instruction::SDiv:
2638 case Instruction::FDiv: Out << " / "; break;
2639 case Instruction::And: Out << " & "; break;
2640 case Instruction::Or: Out << " | "; break;
2641 case Instruction::Xor: Out << " ^ "; break;
2642 case Instruction::Shl : Out << " << "; break;
2643 case Instruction::LShr:
2644 case Instruction::AShr: Out << " >> "; break;
Edwin Török4d9756a2009-07-08 20:53:28 +00002645 default:
2646#ifndef NDEBUG
Chris Lattner8a6411c2009-08-23 04:37:46 +00002647 errs() << "Invalid operator type!" << I;
Edwin Török4d9756a2009-07-08 20:53:28 +00002648#endif
Edwin Törökbd448e32009-07-14 16:55:14 +00002649 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002650 }
2651
2652 writeOperandWithCast(I.getOperand(1), I.getOpcode());
2653 if (NeedsClosingParens)
2654 Out << "))";
2655 }
2656
2657 if (needsCast) {
2658 Out << "))";
2659 }
2660}
2661
2662void 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 Lattner389c9142007-09-15 06:51:03 +00002673 writeOperandWithCast(I.getOperand(0), I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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;
Edwin Török4d9756a2009-07-08 20:53:28 +00002686 default:
2687#ifndef NDEBUG
Chris Lattner8a6411c2009-08-23 04:37:46 +00002688 errs() << "Invalid icmp predicate!" << I;
Edwin Török4d9756a2009-07-08 20:53:28 +00002689#endif
Edwin Törökbd448e32009-07-14 16:55:14 +00002690 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002691 }
2692
Chris Lattner389c9142007-09-15 06:51:03 +00002693 writeOperandWithCast(I.getOperand(1), I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002694 if (NeedsClosingParens)
2695 Out << "))";
2696
2697 if (needsCast) {
2698 Out << "))";
2699 }
2700}
2701
2702void CWriter::visitFCmpInst(FCmpInst &I) {
2703 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()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00002714 default: llvm_unreachable("Illegal FCmp predicate");
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 << "(";
2732 // Write the first operand
2733 writeOperand(I.getOperand(0));
2734 Out << ", ";
2735 // Write the second operand
2736 writeOperand(I.getOperand(1));
2737 Out << ")";
2738}
2739
2740static const char * getFloatBitCastField(const Type *Ty) {
2741 switch (Ty->getTypeID()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00002742 default: llvm_unreachable("Invalid Type");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002743 case Type::FloatTyID: return "Float";
2744 case Type::DoubleTyID: return "Double";
2745 case Type::IntegerTyID: {
2746 unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth();
2747 if (NumBits <= 32)
2748 return "Int32";
2749 else
2750 return "Int64";
2751 }
2752 }
2753}
2754
2755void CWriter::visitCastInst(CastInst &I) {
2756 const Type *DstTy = I.getType();
2757 const Type *SrcTy = I.getOperand(0)->getType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002758 if (isFPIntBitCast(I)) {
Chris Lattnerd70f5a82008-05-31 09:23:55 +00002759 Out << '(';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002760 // These int<->float and long<->double casts need to be handled specially
2761 Out << GetValueName(&I) << "__BITCAST_TEMPORARY."
2762 << getFloatBitCastField(I.getOperand(0)->getType()) << " = ";
2763 writeOperand(I.getOperand(0));
2764 Out << ", " << GetValueName(&I) << "__BITCAST_TEMPORARY."
2765 << getFloatBitCastField(I.getType());
Chris Lattnerd70f5a82008-05-31 09:23:55 +00002766 Out << ')';
2767 return;
2768 }
2769
2770 Out << '(';
2771 printCast(I.getOpcode(), SrcTy, DstTy);
2772
2773 // Make a sext from i1 work by subtracting the i1 from 0 (an int).
Owen Anderson35b47072009-08-13 21:58:54 +00002774 if (SrcTy == Type::getInt1Ty(I.getContext()) &&
2775 I.getOpcode() == Instruction::SExt)
Chris Lattnerd70f5a82008-05-31 09:23:55 +00002776 Out << "0-";
2777
2778 writeOperand(I.getOperand(0));
2779
Owen Anderson35b47072009-08-13 21:58:54 +00002780 if (DstTy == Type::getInt1Ty(I.getContext()) &&
Chris Lattnerd70f5a82008-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)) {
2785 // Make sure we really get a trunc to bool by anding the operand with 1
2786 Out << "&1u";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002787 }
2788 Out << ')';
2789}
2790
2791void CWriter::visitSelectInst(SelectInst &I) {
2792 Out << "((";
2793 writeOperand(I.getCondition());
2794 Out << ") ? (";
2795 writeOperand(I.getTrueValue());
2796 Out << ") : (";
2797 writeOperand(I.getFalseValue());
2798 Out << "))";
2799}
2800
2801
2802void CWriter::lowerIntrinsics(Function &F) {
2803 // 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.
2810 for (Function::iterator BB = F.begin(), EE = F.end(); BB != EE; ++BB)
2811 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 Lenharth0531ec52008-02-16 14:46:26 +00002816 case Intrinsic::memory_barrier:
Dan Gohmanf17a25c2007-07-18 16:29:46 +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:
2824 case Intrinsic::prefetch:
Dale Johannesenc339d8e2007-10-02 17:43:59 +00002825 case Intrinsic::powi:
Chris Lattner6a947cb2008-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 Lattner709df322008-03-02 08:54:27 +00002830 case Intrinsic::ppc_altivec_lvsl:
Chris Lattner6a947cb2008-03-02 08:47:13 +00002831 // We directly implement these intrinsics
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002832 break;
2833 default:
2834 // 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;
2842
2843 // All other intrinsic calls we must lower.
2844 Instruction *Before = 0;
2845 if (CI != &BB->front())
2846 Before = prior(BasicBlock::iterator(CI));
2847
2848 IL->LowerIntrinsicCall(CI);
2849 if (Before) { // Move iterator to instruction after call
2850 I = Before; ++I;
2851 } else {
2852 I = BB->begin();
2853 }
2854 // 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
2862 break;
2863 }
2864
2865 // We may have collected some prototypes to emit in the loop above.
2866 // 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) {
2871 if (intrinsicPrototypesAlreadyGenerated.insert(*I).second) {
2872 Out << '\n';
2873 printFunctionSignature(*I, true);
2874 Out << ";\n";
2875 }
2876 }
2877}
2878
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002879void CWriter::visitCallInst(CallInst &I) {
Gabor Greif96af5272010-04-08 13:50:42 +00002880 if (isa<InlineAsm>(I.getCalledValue()))
Chris Lattner8a3b6e42008-05-22 06:19:37 +00002881 return visitInlineAsm(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002882
2883 bool WroteCallee = false;
2884
2885 // Handle intrinsic function calls first...
2886 if (Function *F = I.getCalledFunction())
Chris Lattnera74b9182008-03-02 08:29:41 +00002887 if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
2888 if (visitBuiltinCall(I, ID, WroteCallee))
Andrew Lenharth0531ec52008-02-16 14:46:26 +00002889 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002890
2891 Value *Callee = I.getCalledValue();
2892
2893 const PointerType *PTy = cast<PointerType>(Callee->getType());
2894 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
2895
2896 // If this is a call to a struct-return function, assign to the first
2897 // parameter instead of passing it to the call.
Devang Pateld222f862008-09-25 21:00:45 +00002898 const AttrListPtr &PAL = I.getAttributes();
Evan Chengb8a072c2008-01-12 18:53:07 +00002899 bool hasByVal = I.hasByValArgument();
Devang Patel949a4b72008-03-03 21:46:28 +00002900 bool isStructRet = I.hasStructRetAttr();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002901 if (isStructRet) {
Gabor Greifcc001622010-06-26 12:09:10 +00002902 writeOperandDeref(I.getArgOperand(0));
Evan Chengf8956382008-01-11 23:10:11 +00002903 Out << " = ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002904 }
2905
2906 if (I.isTailCall()) Out << " /*tail*/ ";
2907
2908 if (!WroteCallee) {
2909 // If this is an indirect call to a struct return function, we need to cast
Evan Chengb8a072c2008-01-12 18:53:07 +00002910 // the pointer. Ditto for indirect calls with byval arguments.
2911 bool NeedsCast = (hasByVal || isStructRet) && !isa<Function>(Callee);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002912
2913 // 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))
2926 if (CE->isCast())
2927 if (Function *RF = dyn_cast<Function>(CE->getOperand(0))) {
2928 NeedsCast = true;
2929 Callee = RF;
2930 }
2931
2932 if (NeedsCast) {
2933 // Ok, just cast the pointer type.
2934 Out << "((";
Evan Chengb8a072c2008-01-12 18:53:07 +00002935 if (isStructRet)
Duncan Sandsf5588dc2007-11-27 13:23:08 +00002936 printStructReturnPointerFunctionType(Out, PAL,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002937 cast<PointerType>(I.getCalledValue()->getType()));
Evan Chengb8a072c2008-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());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002942 Out << ")(void*)";
2943 }
2944 writeOperand(Callee);
2945 if (NeedsCast) Out << ')';
2946 }
2947
2948 Out << '(';
2949
Chris Lattner10c749c2010-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002956 unsigned NumDeclaredParams = FTy->getNumParams();
Gabor Greifcc001622010-06-26 12:09:10 +00002957 CallSite CS(&I);
2958 CallSite::arg_iterator AI = CS.arg_begin(), AE = CS.arg_end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002959 unsigned ArgNo = 0;
2960 if (isStructRet) { // Skip struct return argument.
2961 ++AI;
2962 ++ArgNo;
2963 }
2964
Chris Lattner10c749c2010-04-10 19:12:44 +00002965
Evan Chengf8956382008-01-11 23:10:11 +00002966 for (; AI != AE; ++AI, ++ArgNo) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002967 if (PrintedArg) Out << ", ";
2968 if (ArgNo < NumDeclaredParams &&
2969 (*AI)->getType() != FTy->getParamType(ArgNo)) {
2970 Out << '(';
2971 printType(Out, FTy->getParamType(ArgNo),
Devang Pateld222f862008-09-25 21:00:45 +00002972 /*isSigned=*/PAL.paramHasAttr(ArgNo+1, Attribute::SExt));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002973 Out << ')';
2974 }
Evan Chengf8956382008-01-11 23:10:11 +00002975 // Check if the argument is expected to be passed by value.
Devang Pateld222f862008-09-25 21:00:45 +00002976 if (I.paramHasAttr(ArgNo+1, Attribute::ByVal))
Chris Lattner8bbc8592008-03-02 08:07:24 +00002977 writeOperandDeref(*AI);
2978 else
2979 writeOperand(*AI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002980 PrintedArg = true;
2981 }
2982 Out << ')';
2983}
2984
Chris Lattnera74b9182008-03-02 08:29:41 +00002985/// visitBuiltinCall - Handle the call to the specified builtin. Returns true
Dan Gohmandf1a7ff2010-02-10 16:03:48 +00002986/// if the entire call is handled, return false if it wasn't handled, and
Chris Lattnera74b9182008-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!");
3000
3001 Out << BuiltinName;
3002 WroteCallee = true;
3003 return false;
3004 }
3005 case Intrinsic::memory_barrier:
Andrew Lenharth5c976182008-03-05 23:41:37 +00003006 Out << "__sync_synchronize()";
Chris Lattnera74b9182008-03-02 08:29:41 +00003007 return true;
3008 case Intrinsic::vastart:
3009 Out << "0; ";
3010
3011 Out << "va_start(*(va_list*)";
Gabor Greifcc001622010-06-26 12:09:10 +00003012 writeOperand(I.getArgOperand(0));
Chris Lattnera74b9182008-03-02 08:29:41 +00003013 Out << ", ";
3014 // Output the last argument to the enclosing function.
Chris Lattner10c749c2010-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 Lattnera74b9182008-03-02 08:29:41 +00003019 Out << ')';
3020 return true;
3021 case Intrinsic::vaend:
Gabor Greifcc001622010-06-26 12:09:10 +00003022 if (!isa<ConstantPointerNull>(I.getArgOperand(0))) {
Chris Lattnera74b9182008-03-02 08:29:41 +00003023 Out << "0; va_end(*(va_list*)";
Gabor Greifcc001622010-06-26 12:09:10 +00003024 writeOperand(I.getArgOperand(0));
Chris Lattnera74b9182008-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 Greifcc001622010-06-26 12:09:10 +00003033 writeOperand(I.getArgOperand(0));
Eric Christopherfbf918b2010-04-16 23:37:20 +00003034 Out << ", *(va_list*)";
Gabor Greifcc001622010-06-26 12:09:10 +00003035 writeOperand(I.getArgOperand(1));
Chris Lattnera74b9182008-03-02 08:29:41 +00003036 Out << ')';
3037 return true;
3038 case Intrinsic::returnaddress:
3039 Out << "__builtin_return_address(";
Gabor Greifcc001622010-06-26 12:09:10 +00003040 writeOperand(I.getArgOperand(0));
Chris Lattnera74b9182008-03-02 08:29:41 +00003041 Out << ')';
3042 return true;
3043 case Intrinsic::frameaddress:
3044 Out << "__builtin_frame_address(";
Gabor Greifcc001622010-06-26 12:09:10 +00003045 writeOperand(I.getArgOperand(0));
Chris Lattnera74b9182008-03-02 08:29:41 +00003046 Out << ')';
3047 return true;
3048 case Intrinsic::powi:
3049 Out << "__builtin_powi(";
Gabor Greifcc001622010-06-26 12:09:10 +00003050 writeOperand(I.getArgOperand(0));
Eric Christopherfbf918b2010-04-16 23:37:20 +00003051 Out << ", ";
Gabor Greifcc001622010-06-26 12:09:10 +00003052 writeOperand(I.getArgOperand(1));
Chris Lattnera74b9182008-03-02 08:29:41 +00003053 Out << ')';
3054 return true;
3055 case Intrinsic::setjmp:
3056 Out << "setjmp(*(jmp_buf*)";
Gabor Greifcc001622010-06-26 12:09:10 +00003057 writeOperand(I.getArgOperand(0));
Chris Lattnera74b9182008-03-02 08:29:41 +00003058 Out << ')';
3059 return true;
3060 case Intrinsic::longjmp:
3061 Out << "longjmp(*(jmp_buf*)";
Gabor Greifcc001622010-06-26 12:09:10 +00003062 writeOperand(I.getArgOperand(0));
Eric Christopherfbf918b2010-04-16 23:37:20 +00003063 Out << ", ";
Gabor Greifcc001622010-06-26 12:09:10 +00003064 writeOperand(I.getArgOperand(1));
Chris Lattnera74b9182008-03-02 08:29:41 +00003065 Out << ')';
3066 return true;
3067 case Intrinsic::prefetch:
3068 Out << "LLVM_PREFETCH((const void *)";
Gabor Greifcc001622010-06-26 12:09:10 +00003069 writeOperand(I.getArgOperand(0));
Chris Lattnera74b9182008-03-02 08:29:41 +00003070 Out << ", ";
Gabor Greifcc001622010-06-26 12:09:10 +00003071 writeOperand(I.getArgOperand(1));
Eric Christopherfbf918b2010-04-16 23:37:20 +00003072 Out << ", ";
Gabor Greifcc001622010-06-26 12:09:10 +00003073 writeOperand(I.getArgOperand(2));
Chris Lattnera74b9182008-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 Lattner6a947cb2008-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());
3088 Out << ')';
3089 // Multiple GCC builtins multiplex onto this intrinsic.
Gabor Greifcc001622010-06-26 12:09:10 +00003090 switch (cast<ConstantInt>(I.getArgOperand(2))->getZExtValue()) {
Edwin Törökbd448e32009-07-14 16:55:14 +00003091 default: llvm_unreachable("Invalid llvm.x86.sse.cmp!");
Chris Lattner6a947cb2008-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';
3109
3110 Out << "(";
Gabor Greifcc001622010-06-26 12:09:10 +00003111 writeOperand(I.getArgOperand(0));
Eric Christopherfbf918b2010-04-16 23:37:20 +00003112 Out << ", ";
Gabor Greifcc001622010-06-26 12:09:10 +00003113 writeOperand(I.getArgOperand(1));
Chris Lattner6a947cb2008-03-02 08:47:13 +00003114 Out << ")";
3115 return true;
Chris Lattner709df322008-03-02 08:54:27 +00003116 case Intrinsic::ppc_altivec_lvsl:
3117 Out << '(';
3118 printType(Out, I.getType());
3119 Out << ')';
3120 Out << "__builtin_altivec_lvsl(0, (void*)";
Gabor Greifcc001622010-06-26 12:09:10 +00003121 writeOperand(I.getArgOperand(0));
Chris Lattner709df322008-03-02 08:54:27 +00003122 Out << ")";
3123 return true;
Chris Lattnera74b9182008-03-02 08:29:41 +00003124 }
3125}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003126
3127//This converts the llvm constraint string to something gcc is expecting.
3128//TODO: work out platform independent constraints and factor those out
3129// of the per target tables
3130// handle multiple constraint codes
3131std::string CWriter::InterpretASMConstraint(InlineAsm::ConstraintInfo& c) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003132 assert(c.Codes.size() == 1 && "Too many asm constraint codes to handle");
3133
Chris Lattner621c44d2009-08-22 20:48:53 +00003134 // Grab the translation table from MCAsmInfo if it exists.
Chris Lattner63ab9bb2010-01-17 18:22:35 +00003135 const MCAsmInfo *TargetAsm;
3136 std::string Triple = TheModule->getTargetTriple();
3137 if (Triple.empty())
3138 Triple = llvm::sys::getHostTriple();
3139
3140 std::string E;
3141 if (const Target *Match = TargetRegistry::lookupTarget(Triple, E))
3142 TargetAsm = Match->createAsmInfo(Triple);
3143 else
3144 return c.Codes[0];
3145
3146 const char *const *table = TargetAsm->getAsmCBE();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003147
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00003148 // Search the translation table if it exists.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003149 for (int i = 0; table && table[i]; i += 2)
Chris Lattner63ab9bb2010-01-17 18:22:35 +00003150 if (c.Codes[0] == table[i]) {
3151 delete TargetAsm;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003152 return table[i+1];
Chris Lattner63ab9bb2010-01-17 18:22:35 +00003153 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003154
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00003155 // Default is identity.
Chris Lattner63ab9bb2010-01-17 18:22:35 +00003156 delete TargetAsm;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003157 return c.Codes[0];
3158}
3159
3160//TODO: import logic from AsmPrinter.cpp
3161static std::string gccifyAsm(std::string asmstr) {
3162 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);
3171 std::string n = "%" +
3172 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;}
3181
3182 return asmstr;
3183}
3184
3185//TODO: assumptions about what consume arguments from the call are likely wrong
3186// handle communitivity
3187void CWriter::visitInlineAsm(CallInst &CI) {
Gabor Greif96af5272010-04-08 13:50:42 +00003188 InlineAsm* as = cast<InlineAsm>(CI.getCalledValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003189 std::vector<InlineAsm::ConstraintInfo> Constraints = as->ParseConstraints();
Chris Lattner8a3b6e42008-05-22 06:19:37 +00003190
3191 std::vector<std::pair<Value*, int> > ResultVals;
Owen Anderson35b47072009-08-13 21:58:54 +00003192 if (CI.getType() == Type::getVoidTy(CI.getContext()))
Chris Lattner8a3b6e42008-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 }
3200
Chris Lattnera605a9c2008-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;
3207
3208 // Convert over all the output constraints.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003209 for (std::vector<InlineAsm::ConstraintInfo>::iterator I = Constraints.begin(),
Chris Lattnera605a9c2008-06-04 18:03:28 +00003210 E = Constraints.end(); I != E; ++I) {
3211
3212 if (I->Type != InlineAsm::isOutput) {
3213 ++ValueCount;
3214 continue; // Ignore non-output constraints.
3215 }
3216
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003217 assert(I->Codes.size() == 1 && "Too many asm constraint codes to handle");
Chris Lattner8a3b6e42008-05-22 06:19:37 +00003218 std::string C = InterpretASMConstraint(*I);
3219 if (C.empty()) continue;
3220
Chris Lattnera605a9c2008-06-04 18:03:28 +00003221 if (!IsFirst) {
Chris Lattner8a3b6e42008-05-22 06:19:37 +00003222 Out << ", ";
Chris Lattnera605a9c2008-06-04 18:03:28 +00003223 IsFirst = false;
3224 }
3225
3226 // Unpack the dest.
3227 Value *DestVal;
3228 int DestValNo = -1;
3229
3230 if (ValueCount < ResultVals.size()) {
3231 DestVal = ResultVals[ValueCount].first;
3232 DestValNo = ResultVals[ValueCount].second;
3233 } else
Gabor Greifcc001622010-06-26 12:09:10 +00003234 DestVal = CI.getArgOperand(ValueCount-ResultVals.size());
Chris Lattnera605a9c2008-06-04 18:03:28 +00003235
3236 if (I->isEarlyClobber)
3237 C = "&"+C;
3238
3239 Out << "\"=" << C << "\"(" << GetValueName(DestVal);
3240 if (DestValNo != -1)
3241 Out << ".field" << DestValNo; // Multiple retvals.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003242 Out << ")";
Chris Lattnera605a9c2008-06-04 18:03:28 +00003243 ++ValueCount;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003244 }
Chris Lattnera605a9c2008-06-04 18:03:28 +00003245
3246
3247 // Convert over all the input constraints.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003248 Out << "\n :";
Chris Lattnera605a9c2008-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 }
3257
3258 assert(I->Codes.size() == 1 && "Too many asm constraint codes to handle");
3259 std::string C = InterpretASMConstraint(*I);
3260 if (C.empty()) continue;
3261
3262 if (!IsFirst) {
Chris Lattner5fee1202008-05-22 06:29:38 +00003263 Out << ", ";
Chris Lattnera605a9c2008-06-04 18:03:28 +00003264 IsFirst = false;
3265 }
3266
3267 assert(ValueCount >= ResultVals.size() && "Input can't refer to result");
Gabor Greifcc001622010-06-26 12:09:10 +00003268 Value *SrcVal = CI.getArgOperand(ValueCount-ResultVals.size());
Chris Lattnera605a9c2008-06-04 18:03:28 +00003269
3270 Out << "\"" << C << "\"(";
3271 if (!I->isIndirect)
3272 writeOperand(SrcVal);
3273 else
3274 writeOperandDeref(SrcVal);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003275 Out << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003276 }
Chris Lattnera605a9c2008-06-04 18:03:28 +00003277
3278 // Convert over the clobber constraints.
3279 IsFirst = true;
Chris Lattnera605a9c2008-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;
3288
3289 if (!IsFirst) {
3290 Out << ", ";
3291 IsFirst = false;
3292 }
3293
3294 Out << '\"' << C << '"';
3295 }
3296
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003297 Out << ")";
3298}
3299
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003300void CWriter::visitAllocaInst(AllocaInst &I) {
3301 Out << '(';
3302 printType(Out, I.getType());
3303 Out << ") alloca(sizeof(";
3304 printType(Out, I.getType()->getElementType());
3305 Out << ')';
3306 if (I.isArrayAllocation()) {
3307 Out << " * " ;
3308 writeOperand(I.getOperand(0));
3309 }
3310 Out << ')';
3311}
3312
Chris Lattner8bbc8592008-03-02 08:07:24 +00003313void CWriter::printGEPExpression(Value *Ptr, gep_type_iterator I,
Dan Gohmanad831302008-07-24 17:57:48 +00003314 gep_type_iterator E, bool Static) {
Chris Lattner8bbc8592008-03-02 08:07:24 +00003315
3316 // If there are no indices, just print out the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003317 if (I == E) {
Chris Lattner8bbc8592008-03-02 08:07:24 +00003318 writeOperand(Ptr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003319 return;
3320 }
Chris Lattner8bbc8592008-03-02 08:07:24 +00003321
3322 // 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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003329 }
Chris Lattner8bbc8592008-03-02 08:07:24 +00003330
3331 Out << "(";
3332
3333 // 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 }
3341
3342 Out << '&';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003343
Chris Lattner8bbc8592008-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.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003352
Chris Lattner8bbc8592008-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 Gohmanad831302008-07-24 17:57:48 +00003356 writeOperandInternal(Ptr, Static);
Duncan Sands10343d92010-02-16 11:11:14 +00003357 } else if (I != E && (*I)->isStructTy()) {
Chris Lattner8bbc8592008-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 << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368 }
3369 }
3370
Chris Lattner8bbc8592008-03-02 08:07:24 +00003371 for (; I != E; ++I) {
Duncan Sands10343d92010-02-16 11:11:14 +00003372 if ((*I)->isStructTy()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003373 Out << ".field" << cast<ConstantInt>(I.getOperand())->getZExtValue();
Duncan Sands10343d92010-02-16 11:11:14 +00003374 } else if ((*I)->isArrayTy()) {
Dan Gohman5d995b02008-06-02 21:30:49 +00003375 Out << ".array[";
3376 writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
3377 Out << ']';
Duncan Sands10343d92010-02-16 11:11:14 +00003378 } else if (!(*I)->isVectorTy()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003379 Out << '[';
Chris Lattner7ce1ee42007-09-22 20:16:48 +00003380 writeOperandWithCast(I.getOperand(), Instruction::GetElementPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003381 Out << ']';
Chris Lattner8bbc8592008-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 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003393 }
Chris Lattner8bbc8592008-03-02 08:07:24 +00003394 }
3395 Out << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003396}
3397
Lauro Ramos Venancio11048c12008-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) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003407 Out << "((";
Lauro Ramos Venancio11048c12008-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 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003416 Out << ")";
3417 }
3418
Lauro Ramos Venancio11048c12008-02-01 21:25:59 +00003419 writeOperand(Operand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003420
Lauro Ramos Venancio11048c12008-02-01 21:25:59 +00003421 if (IsVolatile || IsUnaligned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003422 Out << ')';
Lauro Ramos Venancio11048c12008-02-01 21:25:59 +00003423 if (IsUnaligned)
3424 Out << "->data";
3425 }
3426}
3427
3428void CWriter::visitLoadInst(LoadInst &I) {
Lauro Ramos Venancio11048c12008-02-01 21:25:59 +00003429 writeMemoryAccess(I.getOperand(0), I.getType(), I.isVolatile(),
3430 I.getAlignment());
3431
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003432}
3433
3434void CWriter::visitStoreInst(StoreInst &I) {
Lauro Ramos Venancio11048c12008-02-01 21:25:59 +00003435 writeMemoryAccess(I.getPointerOperand(), I.getOperand(0)->getType(),
3436 I.isVolatile(), I.getAlignment());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003437 Out << " = ";
3438 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 Andersoneacb44d2009-07-24 23:12:02 +00003444 BitMask = ConstantInt::get(ITy, ITy->getBitMask());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003445 if (BitMask)
3446 Out << "((";
3447 writeOperand(Operand);
3448 if (BitMask) {
3449 Out << ") & ";
Dan Gohmanad831302008-07-24 17:57:48 +00003450 printConstant(BitMask, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003451 Out << ")";
3452 }
3453}
3454
3455void CWriter::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattner8bbc8592008-03-02 08:07:24 +00003456 printGEPExpression(I.getPointerOperand(), gep_type_begin(I),
Dan Gohmanad831302008-07-24 17:57:48 +00003457 gep_type_end(I), false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003458}
3459
3460void CWriter::visitVAArgInst(VAArgInst &I) {
3461 Out << "va_arg(*(va_list*)";
3462 writeOperand(I.getOperand(0));
3463 Out << ", ";
3464 printType(Out, I.getType());
3465 Out << ");\n ";
3466}
3467
Chris Lattnerf41a7942008-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 Lattnerf41a7942008-03-02 03:52:39 +00003475 writeOperand(I.getOperand(2));
Chris Lattner09418362008-03-02 08:10:16 +00003476 Out << "] = (";
3477 writeOperand(I.getOperand(1));
Chris Lattnerf41a7942008-03-02 03:52:39 +00003478 Out << ")";
3479}
3480
Chris Lattnera5f0bc02008-03-02 03:57:08 +00003481void CWriter::visitExtractElementInst(ExtractElementInst &I) {
3482 // We know that our operand is not inlined.
3483 Out << "((";
3484 const Type *EltTy =
3485 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 Lattnerf858a042008-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 Sandsf6890712008-05-27 11:50:51 +00003512 << "))[" << (SrcVal & (NumElts-1)) << "]";
Chris Lattnerf858a042008-03-02 05:41:07 +00003513 } else if (isa<ConstantAggregateZero>(Op) || isa<UndefValue>(Op)) {
3514 Out << "0";
3515 } else {
Duncan Sandsf6890712008-05-27 11:50:51 +00003516 printConstant(cast<ConstantVector>(Op)->getOperand(SrcVal &
Dan Gohmanad831302008-07-24 17:57:48 +00003517 (NumElts-1)),
3518 false);
Chris Lattnerf858a042008-03-02 05:41:07 +00003519 }
3520 }
3521 }
3522 Out << "}";
3523}
Chris Lattnera5f0bc02008-03-02 03:57:08 +00003524
Dan Gohman5d995b02008-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 Sands10343d92010-02-16 11:11:14 +00003536 if (IndexedTy->isArrayTy())
Dan Gohman5d995b02008-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 Sands10343d92010-02-16 11:11:14 +00003557 if (IndexedTy->isArrayTy())
Dan Gohman5d995b02008-06-02 21:30:49 +00003558 Out << ".array[" << *i << "]";
3559 else
3560 Out << ".field" << *i;
3561 }
3562 }
3563 Out << ")";
3564}
3565
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003566//===----------------------------------------------------------------------===//
3567// External Interface declaration
3568//===----------------------------------------------------------------------===//
3569
Dan Gohman62c02922010-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 Lattner53f24982010-02-02 21:06:45 +00003575 if (FileType != TargetMachine::CGFT_AssemblyFile) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003576
Gordon Henriksendf87fdc2008-01-07 01:30:38 +00003577 PM.add(createGCLoweringPass());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003578 PM.add(createLowerInvokePass());
3579 PM.add(createCFGSimplificationPass()); // clean up after lower invoke.
3580 PM.add(new CBackendNameAllUsedStructsAndMergeFunctions());
3581 PM.add(new CWriter(o));
Gordon Henriksen1aed5992008-08-17 18:44:35 +00003582 PM.add(createGCInfoDeleter());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003583 return false;
3584}