blob: d56161f2945aa66a13e784fa63420a34956e4a29 [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001//===-- Interpreter.h ------------------------------------------*- C++ -*--===//
Misha Brukmand1c881a2005-04-21 22:43:08 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmand1c881a2005-04-21 22:43:08 +00007//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattner92101ac2001-08-23 17:05:04 +00009//
10// This header file defines the interpreter structure
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLI_INTERPRETER_H
15#define LLI_INTERPRETER_H
16
Chris Lattner502dda02003-11-05 06:20:27 +000017#include "llvm/Function.h"
Brian Gaeke97222942003-09-05 19:39:22 +000018#include "llvm/ExecutionEngine/ExecutionEngine.h"
19#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattnerd7916e92003-05-10 21:22:39 +000020#include "llvm/Support/InstVisitor.h"
Brian Gaeke2cb474c2003-11-07 19:26:23 +000021#include "llvm/Support/CallSite.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000022#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/DataTypes.h"
Chris Lattner5af0c482001-11-07 04:23:00 +000024
Brian Gaeked0fde302003-11-11 22:41:34 +000025namespace llvm {
26
Chris Lattner726c1ef2006-03-23 05:22:51 +000027class IntrinsicLowering;
Chris Lattnerb1dfc702004-02-26 07:59:22 +000028struct FunctionInfo;
Chris Lattnerc6b0fb32004-04-04 17:30:06 +000029template<typename T> class generic_gep_type_iterator;
Brian Gaekedfa58492003-12-11 00:23:28 +000030class ConstantExpr;
Chris Lattner702a8a02004-04-04 19:47:06 +000031typedef generic_gep_type_iterator<User::const_op_iterator> gep_type_iterator;
Chris Lattnerc6b0fb32004-04-04 17:30:06 +000032
Chris Lattner92101ac2001-08-23 17:05:04 +000033
Chris Lattner9bffa732002-02-19 18:50:09 +000034// AllocaHolder - Object to track all of the blocks of memory allocated by
Brian Gaekedfa58492003-12-11 00:23:28 +000035// alloca. When the function returns, this object is popped off the execution
Chris Lattner9bffa732002-02-19 18:50:09 +000036// stack, which causes the dtor to be run, which frees all the alloca'd memory.
37//
38class AllocaHolder {
39 friend class AllocaHolderHandle;
40 std::vector<void*> Allocations;
41 unsigned RefCnt;
42public:
43 AllocaHolder() : RefCnt(0) {}
44 void add(void *mem) { Allocations.push_back(mem); }
45 ~AllocaHolder() {
46 for (unsigned i = 0; i < Allocations.size(); ++i)
47 free(Allocations[i]);
48 }
49};
50
51// AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
52// a vector...
53//
54class AllocaHolderHandle {
55 AllocaHolder *H;
56public:
57 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; }
58 AllocaHolderHandle(const AllocaHolderHandle &AH) : H(AH.H) { H->RefCnt++; }
59 ~AllocaHolderHandle() { if (--H->RefCnt == 0) delete H; }
60
61 void add(void *mem) { H->add(mem); }
62};
63
Chris Lattner697954c2002-01-20 22:54:45 +000064typedef std::vector<GenericValue> ValuePlaneTy;
Chris Lattner92101ac2001-08-23 17:05:04 +000065
66// ExecutionContext struct - This struct represents one stack frame currently
67// executing.
68//
69struct ExecutionContext {
Chris Lattnerda82ed52003-05-08 16:18:31 +000070 Function *CurFunction;// The currently executing function
Chris Lattner92101ac2001-08-23 17:05:04 +000071 BasicBlock *CurBB; // The currently executing BB
72 BasicBlock::iterator CurInst; // The next instruction to execute
Brian Gaekef143d3c2003-10-24 19:59:37 +000073 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
Chris Lattnercdf51782003-05-08 16:06:52 +000074 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
Brian Gaeke2cb474c2003-11-07 19:26:23 +000075 CallSite Caller; // Holds the call that called subframes.
76 // NULL if main func or debugger invoked fn
Chris Lattner9bffa732002-02-19 18:50:09 +000077 AllocaHolderHandle Allocas; // Track memory allocated by alloca
Chris Lattner92101ac2001-08-23 17:05:04 +000078};
79
Chris Lattner92101ac2001-08-23 17:05:04 +000080// Interpreter - This class represents the entirety of the interpreter.
81//
Chris Lattnerd7916e92003-05-10 21:22:39 +000082class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
Jeff Cohen8c9191c2006-02-07 05:29:44 +000083 GenericValue ExitValue; // The return value of the called function
Chris Lattnerfe11a972002-12-23 23:59:41 +000084 TargetData TD;
Chris Lattner73011782003-12-28 09:44:37 +000085 IntrinsicLowering *IL;
Chris Lattner92101ac2001-08-23 17:05:04 +000086
87 // The runtime stack of executing code. The top of the stack is the current
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000088 // function record.
Chris Lattner697954c2002-01-20 22:54:45 +000089 std::vector<ExecutionContext> ECStack;
Chris Lattner92101ac2001-08-23 17:05:04 +000090
Brian Gaeke70975ee2003-09-05 18:42:01 +000091 // AtExitHandlers - List of functions to call when the program exits,
92 // registered with the atexit() library function.
Chris Lattner44edb6b2003-05-14 14:21:30 +000093 std::vector<Function*> AtExitHandlers;
Chris Lattner63bd6132003-09-17 17:26:22 +000094
Chris Lattner92101ac2001-08-23 17:05:04 +000095public:
Chris Lattner9f2f1422007-12-06 01:08:09 +000096 explicit Interpreter(ModuleProvider *M);
Chris Lattner73011782003-12-28 09:44:37 +000097 ~Interpreter();
Chris Lattner92101ac2001-08-23 17:05:04 +000098
Chris Lattner2cab55d2003-12-26 06:13:05 +000099 /// runAtExitHandlers - Run any functions registered by the program's calls to
100 /// atexit(3), which we intercept and store in AtExitHandlers.
Brian Gaeke70975ee2003-09-05 18:42:01 +0000101 ///
Chris Lattner2cab55d2003-12-26 06:13:05 +0000102 void runAtExitHandlers();
Brian Gaeke70975ee2003-09-05 18:42:01 +0000103
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000104 static void Register() {
105 InterpCtor = create;
106 }
107
Chris Lattner726c1ef2006-03-23 05:22:51 +0000108 /// create - Create an interpreter ExecutionEngine. This can never fail.
Brian Gaeke82d82772003-09-03 20:34:19 +0000109 ///
Evan Cheng502f20b2008-08-08 08:11:34 +0000110 static ExecutionEngine *create(ModuleProvider *M, std::string *ErrorStr = 0,
Jeffrey Yasskin489393d2009-07-08 21:59:57 +0000111 CodeGenOpt::Level = CodeGenOpt::Default,
112 bool GVsWithCode = true);
Brian Gaeke82d82772003-09-03 20:34:19 +0000113
Chris Lattnerfe11a972002-12-23 23:59:41 +0000114 /// run - Start execution with the specified function and arguments.
115 ///
Chris Lattner2cab55d2003-12-26 06:13:05 +0000116 virtual GenericValue runFunction(Function *F,
117 const std::vector<GenericValue> &ArgValues);
Chris Lattner92101ac2001-08-23 17:05:04 +0000118
Chris Lattnere63fc8b2003-12-08 08:23:04 +0000119 /// recompileAndRelinkFunction - For the interpreter, functions are always
120 /// up-to-date.
121 ///
122 virtual void *recompileAndRelinkFunction(Function *F) {
123 return getPointerToFunction(F);
124 }
125
Misha Brukman895eddf2004-11-07 23:58:46 +0000126 /// freeMachineCodeForFunction - The interpreter does not generate any code.
127 ///
128 void freeMachineCodeForFunction(Function *F) { }
Misha Brukmand1c881a2005-04-21 22:43:08 +0000129
Brian Gaeke70975ee2003-09-05 18:42:01 +0000130 // Methods used to execute code:
131 // Place a call on the stack
Chris Lattnerda82ed52003-05-08 16:18:31 +0000132 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
Brian Gaeke70975ee2003-09-05 18:42:01 +0000133 void run(); // Execute instructions until nothing left to do
Chris Lattner92101ac2001-08-23 17:05:04 +0000134
135 // Opcode Implementations
Chris Lattnerd7916e92003-05-10 21:22:39 +0000136 void visitReturnInst(ReturnInst &I);
137 void visitBranchInst(BranchInst &I);
138 void visitSwitchInst(SwitchInst &I);
139
140 void visitBinaryOperator(BinaryOperator &I);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000141 void visitICmpInst(ICmpInst &I);
142 void visitFCmpInst(FCmpInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000143 void visitAllocationInst(AllocationInst &I);
144 void visitFreeInst(FreeInst &I);
145 void visitLoadInst(LoadInst &I);
146 void visitStoreInst(StoreInst &I);
147 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000148 void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); }
Reid Spencera54b7cb2007-01-12 07:05:14 +0000149 void visitTruncInst(TruncInst &I);
150 void visitZExtInst(ZExtInst &I);
151 void visitSExtInst(SExtInst &I);
152 void visitFPTruncInst(FPTruncInst &I);
153 void visitFPExtInst(FPExtInst &I);
154 void visitUIToFPInst(UIToFPInst &I);
155 void visitSIToFPInst(SIToFPInst &I);
156 void visitFPToUIInst(FPToUIInst &I);
157 void visitFPToSIInst(FPToSIInst &I);
158 void visitPtrToIntInst(PtrToIntInst &I);
159 void visitIntToPtrInst(IntToPtrInst &I);
160 void visitBitCastInst(BitCastInst &I);
Chris Lattner759d34f2004-04-20 16:43:21 +0000161 void visitSelectInst(SelectInst &I);
162
Brian Gaekefea483d2003-11-07 20:04:22 +0000163
164 void visitCallSite(CallSite CS);
165 void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
166 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
Brian Gaeke9bf06b12003-11-07 20:07:06 +0000167 void visitUnwindInst(UnwindInst &I);
Chris Lattnerec7c1ab2004-10-16 18:21:33 +0000168 void visitUnreachableInst(UnreachableInst &I);
Brian Gaekefea483d2003-11-07 20:04:22 +0000169
Reid Spencer832254e2007-02-02 02:16:23 +0000170 void visitShl(BinaryOperator &I);
171 void visitLShr(BinaryOperator &I);
172 void visitAShr(BinaryOperator &I);
173
Brian Gaekec1a2be12003-11-07 21:20:47 +0000174 void visitVAArgInst(VAArgInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000175 void visitInstruction(Instruction &I) {
Bill Wendling832171c2006-12-07 20:04:42 +0000176 cerr << I;
Chris Lattnerd7916e92003-05-10 21:22:39 +0000177 assert(0 && "Instruction not interpretable yet!");
178 }
179
Misha Brukmand1c881a2005-04-21 22:43:08 +0000180 GenericValue callExternalFunction(Function *F,
Chris Lattnerda82ed52003-05-08 16:18:31 +0000181 const std::vector<GenericValue> &ArgVals);
Chris Lattnere43db882001-10-27 04:15:57 +0000182 void exitCalled(GenericValue GV);
Chris Lattner92101ac2001-08-23 17:05:04 +0000183
Chris Lattner44edb6b2003-05-14 14:21:30 +0000184 void addAtExitHandler(Function *F) {
185 AtExitHandlers.push_back(F);
186 }
187
Brian Gaeke8da17482003-11-13 06:06:01 +0000188 GenericValue *getFirstVarArg () {
Brian Gaekee6258902004-02-13 06:18:39 +0000189 return &(ECStack.back ().VarArgs[0]);
Brian Gaeke8da17482003-11-13 06:06:01 +0000190 }
191
Chris Lattnerfe11a972002-12-23 23:59:41 +0000192 //FIXME: private:
193public:
Chris Lattner4af6de82003-11-25 20:44:56 +0000194 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
Misha Brukman3c944972005-04-22 04:08:30 +0000195 gep_type_iterator E, ExecutionContext &SF);
Chris Lattnerfe11a972002-12-23 23:59:41 +0000196
Chris Lattner92101ac2001-08-23 17:05:04 +0000197private: // Helper functions
Chris Lattner77113b62003-05-10 20:21:16 +0000198 // SwitchToNewBasicBlock - Start execution in a new basic block and run any
199 // PHI nodes in the top of the block. This is used for intraprocedural
200 // control flow.
Misha Brukmand1c881a2005-04-21 22:43:08 +0000201 //
Chris Lattner77113b62003-05-10 20:21:16 +0000202 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
203
Brian Gaekefb0ef2e2003-08-13 18:17:54 +0000204 void *getPointerToFunction(Function *F) { return (void*)F; }
Chris Lattnerfe11a972002-12-23 23:59:41 +0000205
Owen Andersonfdca74c2009-06-26 16:46:15 +0000206 void initializeExecutionEngine() { }
Chris Lattnerda82ed52003-05-08 16:18:31 +0000207 void initializeExternalFunctions();
Brian Gaekedfa58492003-12-11 00:23:28 +0000208 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
Brian Gaeke29794cb2003-09-05 18:55:03 +0000209 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
Reid Spencera54b7cb2007-01-12 07:05:14 +0000210 GenericValue executeTruncInst(Value *SrcVal, const Type *DstTy,
211 ExecutionContext &SF);
212 GenericValue executeSExtInst(Value *SrcVal, const Type *DstTy,
213 ExecutionContext &SF);
214 GenericValue executeZExtInst(Value *SrcVal, const Type *DstTy,
215 ExecutionContext &SF);
216 GenericValue executeFPTruncInst(Value *SrcVal, const Type *DstTy,
217 ExecutionContext &SF);
218 GenericValue executeFPExtInst(Value *SrcVal, const Type *DstTy,
219 ExecutionContext &SF);
220 GenericValue executeFPToUIInst(Value *SrcVal, const Type *DstTy,
221 ExecutionContext &SF);
222 GenericValue executeFPToSIInst(Value *SrcVal, const Type *DstTy,
223 ExecutionContext &SF);
224 GenericValue executeUIToFPInst(Value *SrcVal, const Type *DstTy,
225 ExecutionContext &SF);
226 GenericValue executeSIToFPInst(Value *SrcVal, const Type *DstTy,
227 ExecutionContext &SF);
228 GenericValue executePtrToIntInst(Value *SrcVal, const Type *DstTy,
229 ExecutionContext &SF);
230 GenericValue executeIntToPtrInst(Value *SrcVal, const Type *DstTy,
231 ExecutionContext &SF);
232 GenericValue executeBitCastInst(Value *SrcVal, const Type *DstTy,
233 ExecutionContext &SF);
Reid Spencer3da59db2006-11-27 01:05:10 +0000234 GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal,
235 const Type *Ty, ExecutionContext &SF);
Brian Gaekeaf955ba2003-11-07 05:22:49 +0000236 void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result);
Reid Spencer90935f62007-01-18 02:12:10 +0000237
Chris Lattner92101ac2001-08-23 17:05:04 +0000238};
239
Brian Gaeked0fde302003-11-11 22:41:34 +0000240} // End llvm namespace
241
Chris Lattner92101ac2001-08-23 17:05:04 +0000242#endif