blob: 6b13c90f6671ae50e45788b88d51baac85a42c0a [file] [log] [blame]
Chris Lattnerd7ff5782001-08-23 17:05:04 +00001//===-- Interpreter.h ------------------------------------------*- C++ -*--===//
Misha Brukman91fb9ab2005-04-21 22:43:08 +00002//
John Criswell29265fe2003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman91fb9ab2005-04-21 22:43:08 +00007//
John Criswell29265fe2003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattnerd7ff5782001-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 Lattnerb5b9ba62003-11-05 06:20:27 +000017#include "llvm/Function.h"
Brian Gaekef3a300d2003-09-05 19:39:22 +000018#include "llvm/ExecutionEngine/ExecutionEngine.h"
19#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattner185045c2003-05-10 21:22:39 +000020#include "llvm/Support/InstVisitor.h"
Brian Gaeke18b59572003-11-07 19:26:23 +000021#include "llvm/Support/CallSite.h"
Chris Lattnerad481312003-09-05 20:08:15 +000022#include "llvm/Target/TargetData.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/Support/DataTypes.h"
Chris Lattner1f017262001-11-07 04:23:00 +000024
Brian Gaeke960707c2003-11-11 22:41:34 +000025namespace llvm {
26
Chris Lattner0b2de9f2006-03-23 05:22:51 +000027class IntrinsicLowering;
Chris Lattner234a2d42004-02-26 07:59:22 +000028struct FunctionInfo;
Chris Lattner092d2602004-04-04 17:30:06 +000029template<typename T> class generic_gep_type_iterator;
Brian Gaeke2bba1522003-12-11 00:23:28 +000030class ConstantExpr;
Chris Lattnerca76d112004-04-04 19:47:06 +000031typedef generic_gep_type_iterator<User::const_op_iterator> gep_type_iterator;
Chris Lattner092d2602004-04-04 17:30:06 +000032
Chris Lattnerd7ff5782001-08-23 17:05:04 +000033
Chris Lattnerfb55ba02002-02-19 18:50:09 +000034// AllocaHolder - Object to track all of the blocks of memory allocated by
Brian Gaeke2bba1522003-12-11 00:23:28 +000035// alloca. When the function returns, this object is popped off the execution
Chris Lattnerfb55ba02002-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 Lattner7f74a562002-01-20 22:54:45 +000064typedef std::vector<GenericValue> ValuePlaneTy;
Chris Lattnerd7ff5782001-08-23 17:05:04 +000065
66// ExecutionContext struct - This struct represents one stack frame currently
67// executing.
68//
69struct ExecutionContext {
Chris Lattner470754e2003-05-08 16:18:31 +000070 Function *CurFunction;// The currently executing function
Chris Lattnerd7ff5782001-08-23 17:05:04 +000071 BasicBlock *CurBB; // The currently executing BB
72 BasicBlock::iterator CurInst; // The next instruction to execute
Brian Gaekeb77e5892003-10-24 19:59:37 +000073 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
Chris Lattner22e90432003-05-08 16:06:52 +000074 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
Brian Gaeke18b59572003-11-07 19:26:23 +000075 CallSite Caller; // Holds the call that called subframes.
76 // NULL if main func or debugger invoked fn
Chris Lattnerfb55ba02002-02-19 18:50:09 +000077 AllocaHolderHandle Allocas; // Track memory allocated by alloca
Chris Lattnerd7ff5782001-08-23 17:05:04 +000078};
79
Chris Lattnerd7ff5782001-08-23 17:05:04 +000080// Interpreter - This class represents the entirety of the interpreter.
81//
Chris Lattner185045c2003-05-10 21:22:39 +000082class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
Jeff Cohen24396692006-02-07 05:29:44 +000083 GenericValue ExitValue; // The return value of the called function
Chris Lattnera0d7b082002-12-23 23:59:41 +000084 TargetData TD;
Chris Lattnerc8c6c032003-12-28 09:44:37 +000085 IntrinsicLowering *IL;
Chris Lattnerd7ff5782001-08-23 17:05:04 +000086
87 // The runtime stack of executing code. The top of the stack is the current
Chris Lattner62b7fd12002-04-07 20:49:59 +000088 // function record.
Chris Lattner7f74a562002-01-20 22:54:45 +000089 std::vector<ExecutionContext> ECStack;
Chris Lattnerd7ff5782001-08-23 17:05:04 +000090
Brian Gaekea7669032003-09-05 18:42:01 +000091 // AtExitHandlers - List of functions to call when the program exits,
92 // registered with the atexit() library function.
Chris Lattner4a5bb952003-05-14 14:21:30 +000093 std::vector<Function*> AtExitHandlers;
Chris Lattnera28e1f22003-09-17 17:26:22 +000094
Chris Lattnerd7ff5782001-08-23 17:05:04 +000095public:
Chris Lattnerdc351b92007-12-06 01:08:09 +000096 explicit Interpreter(ModuleProvider *M);
Chris Lattnerc8c6c032003-12-28 09:44:37 +000097 ~Interpreter();
Chris Lattnerd7ff5782001-08-23 17:05:04 +000098
Chris Lattnerd94296c2003-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 Gaekea7669032003-09-05 18:42:01 +0000101 ///
Chris Lattnerd94296c2003-12-26 06:13:05 +0000102 void runAtExitHandlers();
Brian Gaekea7669032003-09-05 18:42:01 +0000103
Chris Lattner2d52c1b2006-03-22 06:07:50 +0000104 static void Register() {
105 InterpCtor = create;
106 }
107
Chris Lattner0b2de9f2006-03-23 05:22:51 +0000108 /// create - Create an interpreter ExecutionEngine. This can never fail.
Brian Gaeke4bd3bd52003-09-03 20:34:19 +0000109 ///
Evan Cheng7ff05bf2008-08-08 08:11:34 +0000110 static ExecutionEngine *create(ModuleProvider *M, std::string *ErrorStr = 0,
Bill Wendling026e5d72009-04-29 23:29:43 +0000111 CodeGenOpt::Level = CodeGenOpt::Default);
Brian Gaeke4bd3bd52003-09-03 20:34:19 +0000112
Chris Lattnera0d7b082002-12-23 23:59:41 +0000113 /// run - Start execution with the specified function and arguments.
114 ///
Chris Lattnerd94296c2003-12-26 06:13:05 +0000115 virtual GenericValue runFunction(Function *F,
116 const std::vector<GenericValue> &ArgValues);
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000117
Chris Lattner86ad4c02003-12-08 08:23:04 +0000118 /// recompileAndRelinkFunction - For the interpreter, functions are always
119 /// up-to-date.
120 ///
121 virtual void *recompileAndRelinkFunction(Function *F) {
122 return getPointerToFunction(F);
123 }
124
Misha Brukman624685d2004-11-07 23:58:46 +0000125 /// freeMachineCodeForFunction - The interpreter does not generate any code.
126 ///
127 void freeMachineCodeForFunction(Function *F) { }
Misha Brukman91fb9ab2005-04-21 22:43:08 +0000128
Brian Gaekea7669032003-09-05 18:42:01 +0000129 // Methods used to execute code:
130 // Place a call on the stack
Chris Lattner470754e2003-05-08 16:18:31 +0000131 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
Brian Gaekea7669032003-09-05 18:42:01 +0000132 void run(); // Execute instructions until nothing left to do
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000133
134 // Opcode Implementations
Chris Lattner185045c2003-05-10 21:22:39 +0000135 void visitReturnInst(ReturnInst &I);
136 void visitBranchInst(BranchInst &I);
137 void visitSwitchInst(SwitchInst &I);
138
139 void visitBinaryOperator(BinaryOperator &I);
Reid Spencer266e42b2006-12-23 06:05:41 +0000140 void visitICmpInst(ICmpInst &I);
141 void visitFCmpInst(FCmpInst &I);
Chris Lattner185045c2003-05-10 21:22:39 +0000142 void visitAllocationInst(AllocationInst &I);
143 void visitFreeInst(FreeInst &I);
144 void visitLoadInst(LoadInst &I);
145 void visitStoreInst(StoreInst &I);
146 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner185045c2003-05-10 21:22:39 +0000147 void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); }
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000148 void visitTruncInst(TruncInst &I);
149 void visitZExtInst(ZExtInst &I);
150 void visitSExtInst(SExtInst &I);
151 void visitFPTruncInst(FPTruncInst &I);
152 void visitFPExtInst(FPExtInst &I);
153 void visitUIToFPInst(UIToFPInst &I);
154 void visitSIToFPInst(SIToFPInst &I);
155 void visitFPToUIInst(FPToUIInst &I);
156 void visitFPToSIInst(FPToSIInst &I);
157 void visitPtrToIntInst(PtrToIntInst &I);
158 void visitIntToPtrInst(IntToPtrInst &I);
159 void visitBitCastInst(BitCastInst &I);
Chris Lattner2b2d7a92004-04-20 16:43:21 +0000160 void visitSelectInst(SelectInst &I);
161
Brian Gaekea6454d352003-11-07 20:04:22 +0000162
163 void visitCallSite(CallSite CS);
164 void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
165 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
Brian Gaeke6d145eb2003-11-07 20:07:06 +0000166 void visitUnwindInst(UnwindInst &I);
Chris Lattner98e54142004-10-16 18:21:33 +0000167 void visitUnreachableInst(UnreachableInst &I);
Brian Gaekea6454d352003-11-07 20:04:22 +0000168
Reid Spencer2341c222007-02-02 02:16:23 +0000169 void visitShl(BinaryOperator &I);
170 void visitLShr(BinaryOperator &I);
171 void visitAShr(BinaryOperator &I);
172
Brian Gaeke9ef636c2003-11-07 21:20:47 +0000173 void visitVAArgInst(VAArgInst &I);
Chris Lattner185045c2003-05-10 21:22:39 +0000174 void visitInstruction(Instruction &I) {
Bill Wendling22e978a2006-12-07 20:04:42 +0000175 cerr << I;
Chris Lattner185045c2003-05-10 21:22:39 +0000176 assert(0 && "Instruction not interpretable yet!");
177 }
178
Misha Brukman91fb9ab2005-04-21 22:43:08 +0000179 GenericValue callExternalFunction(Function *F,
Chris Lattner470754e2003-05-08 16:18:31 +0000180 const std::vector<GenericValue> &ArgVals);
Chris Lattner15157b82001-10-27 04:15:57 +0000181 void exitCalled(GenericValue GV);
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000182
Chris Lattner4a5bb952003-05-14 14:21:30 +0000183 void addAtExitHandler(Function *F) {
184 AtExitHandlers.push_back(F);
185 }
186
Brian Gaeked81ca472003-11-13 06:06:01 +0000187 GenericValue *getFirstVarArg () {
Brian Gaeke242ebf22004-02-13 06:18:39 +0000188 return &(ECStack.back ().VarArgs[0]);
Brian Gaeked81ca472003-11-13 06:06:01 +0000189 }
190
Chris Lattnera0d7b082002-12-23 23:59:41 +0000191 //FIXME: private:
192public:
Chris Lattnerf0788082003-11-25 20:44:56 +0000193 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
Misha Brukman5191b4b2005-04-22 04:08:30 +0000194 gep_type_iterator E, ExecutionContext &SF);
Chris Lattnera0d7b082002-12-23 23:59:41 +0000195
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000196private: // Helper functions
Chris Lattnerbd6771c2003-05-10 20:21:16 +0000197 // SwitchToNewBasicBlock - Start execution in a new basic block and run any
198 // PHI nodes in the top of the block. This is used for intraprocedural
199 // control flow.
Misha Brukman91fb9ab2005-04-21 22:43:08 +0000200 //
Chris Lattnerbd6771c2003-05-10 20:21:16 +0000201 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
202
Brian Gaekeaa586642003-08-13 18:17:54 +0000203 void *getPointerToFunction(Function *F) { return (void*)F; }
Chris Lattnera0d7b082002-12-23 23:59:41 +0000204
Owen Anderson455df542009-06-26 16:46:15 +0000205 void initializeExecutionEngine() { }
Chris Lattner470754e2003-05-08 16:18:31 +0000206 void initializeExternalFunctions();
Brian Gaeke2bba1522003-12-11 00:23:28 +0000207 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
Brian Gaeke9b518bc2003-09-05 18:55:03 +0000208 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000209 GenericValue executeTruncInst(Value *SrcVal, const Type *DstTy,
210 ExecutionContext &SF);
211 GenericValue executeSExtInst(Value *SrcVal, const Type *DstTy,
212 ExecutionContext &SF);
213 GenericValue executeZExtInst(Value *SrcVal, const Type *DstTy,
214 ExecutionContext &SF);
215 GenericValue executeFPTruncInst(Value *SrcVal, const Type *DstTy,
216 ExecutionContext &SF);
217 GenericValue executeFPExtInst(Value *SrcVal, const Type *DstTy,
218 ExecutionContext &SF);
219 GenericValue executeFPToUIInst(Value *SrcVal, const Type *DstTy,
220 ExecutionContext &SF);
221 GenericValue executeFPToSIInst(Value *SrcVal, const Type *DstTy,
222 ExecutionContext &SF);
223 GenericValue executeUIToFPInst(Value *SrcVal, const Type *DstTy,
224 ExecutionContext &SF);
225 GenericValue executeSIToFPInst(Value *SrcVal, const Type *DstTy,
226 ExecutionContext &SF);
227 GenericValue executePtrToIntInst(Value *SrcVal, const Type *DstTy,
228 ExecutionContext &SF);
229 GenericValue executeIntToPtrInst(Value *SrcVal, const Type *DstTy,
230 ExecutionContext &SF);
231 GenericValue executeBitCastInst(Value *SrcVal, const Type *DstTy,
232 ExecutionContext &SF);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000233 GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal,
234 const Type *Ty, ExecutionContext &SF);
Brian Gaeke65cac902003-11-07 05:22:49 +0000235 void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result);
Reid Spencer10fe0e02007-01-18 02:12:10 +0000236
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000237};
238
Brian Gaeke960707c2003-11-11 22:41:34 +0000239} // End llvm namespace
240
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000241#endif