blob: cc17e99a96729348c7b11d777e64e71133c9da73 [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001//===-- Interpreter.h ------------------------------------------*- C++ -*--===//
John Criswell856ba762003-10-21 15:17:13 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
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"
23#include "Support/DataTypes.h"
Chris Lattner5af0c482001-11-07 04:23:00 +000024
Brian Gaeked0fde302003-11-11 22:41:34 +000025namespace llvm {
26
Chris Lattnerb1dfc702004-02-26 07:59:22 +000027struct FunctionInfo;
Chris Lattner4af6de82003-11-25 20:44:56 +000028class gep_type_iterator;
Brian Gaekedfa58492003-12-11 00:23:28 +000029class ConstantExpr;
Chris Lattner92101ac2001-08-23 17:05:04 +000030
Chris Lattner9bffa732002-02-19 18:50:09 +000031// AllocaHolder - Object to track all of the blocks of memory allocated by
Brian Gaekedfa58492003-12-11 00:23:28 +000032// alloca. When the function returns, this object is popped off the execution
Chris Lattner9bffa732002-02-19 18:50:09 +000033// stack, which causes the dtor to be run, which frees all the alloca'd memory.
34//
35class AllocaHolder {
36 friend class AllocaHolderHandle;
37 std::vector<void*> Allocations;
38 unsigned RefCnt;
39public:
40 AllocaHolder() : RefCnt(0) {}
41 void add(void *mem) { Allocations.push_back(mem); }
42 ~AllocaHolder() {
43 for (unsigned i = 0; i < Allocations.size(); ++i)
44 free(Allocations[i]);
45 }
46};
47
48// AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
49// a vector...
50//
51class AllocaHolderHandle {
52 AllocaHolder *H;
53public:
54 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; }
55 AllocaHolderHandle(const AllocaHolderHandle &AH) : H(AH.H) { H->RefCnt++; }
56 ~AllocaHolderHandle() { if (--H->RefCnt == 0) delete H; }
57
58 void add(void *mem) { H->add(mem); }
59};
60
Chris Lattner697954c2002-01-20 22:54:45 +000061typedef std::vector<GenericValue> ValuePlaneTy;
Chris Lattner92101ac2001-08-23 17:05:04 +000062
63// ExecutionContext struct - This struct represents one stack frame currently
64// executing.
65//
66struct ExecutionContext {
Chris Lattnerda82ed52003-05-08 16:18:31 +000067 Function *CurFunction;// The currently executing function
Chris Lattner92101ac2001-08-23 17:05:04 +000068 BasicBlock *CurBB; // The currently executing BB
69 BasicBlock::iterator CurInst; // The next instruction to execute
Brian Gaekef143d3c2003-10-24 19:59:37 +000070 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
Chris Lattnercdf51782003-05-08 16:06:52 +000071 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
Brian Gaeke2cb474c2003-11-07 19:26:23 +000072 CallSite Caller; // Holds the call that called subframes.
73 // NULL if main func or debugger invoked fn
Chris Lattner9bffa732002-02-19 18:50:09 +000074 AllocaHolderHandle Allocas; // Track memory allocated by alloca
Chris Lattner92101ac2001-08-23 17:05:04 +000075};
76
Chris Lattner92101ac2001-08-23 17:05:04 +000077// Interpreter - This class represents the entirety of the interpreter.
78//
Chris Lattnerd7916e92003-05-10 21:22:39 +000079class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
Chris Lattner92101ac2001-08-23 17:05:04 +000080 int ExitCode; // The exit code to be returned by the lli util
Chris Lattnerfe11a972002-12-23 23:59:41 +000081 TargetData TD;
Chris Lattner73011782003-12-28 09:44:37 +000082 IntrinsicLowering *IL;
Chris Lattner92101ac2001-08-23 17:05:04 +000083
84 // The runtime stack of executing code. The top of the stack is the current
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000085 // function record.
Chris Lattner697954c2002-01-20 22:54:45 +000086 std::vector<ExecutionContext> ECStack;
Chris Lattner92101ac2001-08-23 17:05:04 +000087
Brian Gaeke70975ee2003-09-05 18:42:01 +000088 // AtExitHandlers - List of functions to call when the program exits,
89 // registered with the atexit() library function.
Chris Lattner44edb6b2003-05-14 14:21:30 +000090 std::vector<Function*> AtExitHandlers;
Chris Lattner63bd6132003-09-17 17:26:22 +000091
Chris Lattner92101ac2001-08-23 17:05:04 +000092public:
Chris Lattner73011782003-12-28 09:44:37 +000093 Interpreter(Module *M, bool isLittleEndian, bool isLongPointer,
94 IntrinsicLowering *IL);
95 ~Interpreter();
Chris Lattner92101ac2001-08-23 17:05:04 +000096
Chris Lattner2cab55d2003-12-26 06:13:05 +000097 /// runAtExitHandlers - Run any functions registered by the program's calls to
98 /// atexit(3), which we intercept and store in AtExitHandlers.
Brian Gaeke70975ee2003-09-05 18:42:01 +000099 ///
Chris Lattner2cab55d2003-12-26 06:13:05 +0000100 void runAtExitHandlers();
Brian Gaeke70975ee2003-09-05 18:42:01 +0000101
Chris Lattner73011782003-12-28 09:44:37 +0000102 /// create - Create an interpreter ExecutionEngine. This can never fail. The
103 /// specified IntrinsicLowering implementation will be deleted when the
104 /// Interpreter execution engine is destroyed.
Brian Gaeke82d82772003-09-03 20:34:19 +0000105 ///
Chris Lattner73011782003-12-28 09:44:37 +0000106 static ExecutionEngine *create(Module *M, IntrinsicLowering *IL);
Brian Gaeke82d82772003-09-03 20:34:19 +0000107
Chris Lattnerfe11a972002-12-23 23:59:41 +0000108 /// run - Start execution with the specified function and arguments.
109 ///
Chris Lattner2cab55d2003-12-26 06:13:05 +0000110 virtual GenericValue runFunction(Function *F,
111 const std::vector<GenericValue> &ArgValues);
Chris Lattner92101ac2001-08-23 17:05:04 +0000112
Chris Lattnere63fc8b2003-12-08 08:23:04 +0000113 /// recompileAndRelinkFunction - For the interpreter, functions are always
114 /// up-to-date.
115 ///
116 virtual void *recompileAndRelinkFunction(Function *F) {
117 return getPointerToFunction(F);
118 }
119
Brian Gaeke70975ee2003-09-05 18:42:01 +0000120 // Methods used to execute code:
121 // Place a call on the stack
Chris Lattnerda82ed52003-05-08 16:18:31 +0000122 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
Brian Gaeke70975ee2003-09-05 18:42:01 +0000123 void run(); // Execute instructions until nothing left to do
Chris Lattner92101ac2001-08-23 17:05:04 +0000124
125 // Opcode Implementations
Chris Lattnerd7916e92003-05-10 21:22:39 +0000126 void visitReturnInst(ReturnInst &I);
127 void visitBranchInst(BranchInst &I);
128 void visitSwitchInst(SwitchInst &I);
129
130 void visitBinaryOperator(BinaryOperator &I);
131 void visitAllocationInst(AllocationInst &I);
132 void visitFreeInst(FreeInst &I);
133 void visitLoadInst(LoadInst &I);
134 void visitStoreInst(StoreInst &I);
135 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000136 void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); }
137 void visitCastInst(CastInst &I);
Brian Gaekefea483d2003-11-07 20:04:22 +0000138
139 void visitCallSite(CallSite CS);
140 void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
141 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
Brian Gaeke9bf06b12003-11-07 20:07:06 +0000142 void visitUnwindInst(UnwindInst &I);
Brian Gaekefea483d2003-11-07 20:04:22 +0000143
Chris Lattnerd7916e92003-05-10 21:22:39 +0000144 void visitShl(ShiftInst &I);
145 void visitShr(ShiftInst &I);
Chris Lattner4c665492003-10-18 05:55:25 +0000146 void visitVANextInst(VANextInst &I);
Brian Gaekec1a2be12003-11-07 21:20:47 +0000147 void visitVAArgInst(VAArgInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000148 void visitInstruction(Instruction &I) {
149 std::cerr << I;
150 assert(0 && "Instruction not interpretable yet!");
151 }
152
Chris Lattnerda82ed52003-05-08 16:18:31 +0000153 GenericValue callExternalFunction(Function *F,
154 const std::vector<GenericValue> &ArgVals);
Chris Lattnere43db882001-10-27 04:15:57 +0000155 void exitCalled(GenericValue GV);
Chris Lattner92101ac2001-08-23 17:05:04 +0000156
Chris Lattner44edb6b2003-05-14 14:21:30 +0000157 void addAtExitHandler(Function *F) {
158 AtExitHandlers.push_back(F);
159 }
160
Brian Gaeke8da17482003-11-13 06:06:01 +0000161 GenericValue *getFirstVarArg () {
Brian Gaekee6258902004-02-13 06:18:39 +0000162 return &(ECStack.back ().VarArgs[0]);
Brian Gaeke8da17482003-11-13 06:06:01 +0000163 }
164
Chris Lattnerfe11a972002-12-23 23:59:41 +0000165 //FIXME: private:
166public:
Chris Lattner4af6de82003-11-25 20:44:56 +0000167 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
168 gep_type_iterator E, ExecutionContext &SF);
Chris Lattnerfe11a972002-12-23 23:59:41 +0000169
Chris Lattner92101ac2001-08-23 17:05:04 +0000170private: // Helper functions
Chris Lattner77113b62003-05-10 20:21:16 +0000171 // SwitchToNewBasicBlock - Start execution in a new basic block and run any
172 // PHI nodes in the top of the block. This is used for intraprocedural
173 // control flow.
174 //
175 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
176
Brian Gaekefb0ef2e2003-08-13 18:17:54 +0000177 void *getPointerToFunction(Function *F) { return (void*)F; }
Chris Lattnerfe11a972002-12-23 23:59:41 +0000178
Chris Lattner5deea3c2001-10-30 20:28:23 +0000179 void initializeExecutionEngine();
Chris Lattnerda82ed52003-05-08 16:18:31 +0000180 void initializeExternalFunctions();
Brian Gaekedfa58492003-12-11 00:23:28 +0000181 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
Brian Gaeke29794cb2003-09-05 18:55:03 +0000182 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
183 GenericValue executeCastOperation(Value *SrcVal, const Type *Ty,
184 ExecutionContext &SF);
Brian Gaekeaf955ba2003-11-07 05:22:49 +0000185 void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result);
Chris Lattner92101ac2001-08-23 17:05:04 +0000186};
187
Brian Gaeked0fde302003-11-11 22:41:34 +0000188} // End llvm namespace
189
Chris Lattner92101ac2001-08-23 17:05:04 +0000190#endif