Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1 | //===-- Interpreter.h ------------------------------------------*- C++ -*--===// |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 2 | // |
| 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 Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 9 | // |
| 10 | // This header file defines the interpreter structure |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLI_INTERPRETER_H |
| 15 | #define LLI_INTERPRETER_H |
| 16 | |
Chris Lattner | 502dda0 | 2003-11-05 06:20:27 +0000 | [diff] [blame] | 17 | #include "llvm/Function.h" |
Brian Gaeke | 9722294 | 2003-09-05 19:39:22 +0000 | [diff] [blame] | 18 | #include "llvm/ExecutionEngine/ExecutionEngine.h" |
| 19 | #include "llvm/ExecutionEngine/GenericValue.h" |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 20 | #include "llvm/Support/InstVisitor.h" |
Brian Gaeke | 2cb474c | 2003-11-07 19:26:23 +0000 | [diff] [blame] | 21 | #include "llvm/Support/CallSite.h" |
Chris Lattner | fd13129 | 2003-09-05 20:08:15 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetData.h" |
| 23 | #include "Support/DataTypes.h" |
Chris Lattner | 5af0c48 | 2001-11-07 04:23:00 +0000 | [diff] [blame] | 24 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 25 | namespace llvm { |
| 26 | |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 27 | struct FunctionInfo; // Defined in ExecutionAnnotations.h |
Chris Lattner | 4af6de8 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 28 | class gep_type_iterator; |
Brian Gaeke | dfa5849 | 2003-12-11 00:23:28 +0000 | [diff] [blame^] | 29 | class ConstantExpr; |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 30 | |
Chris Lattner | 9bffa73 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 31 | // AllocaHolder - Object to track all of the blocks of memory allocated by |
Brian Gaeke | dfa5849 | 2003-12-11 00:23:28 +0000 | [diff] [blame^] | 32 | // alloca. When the function returns, this object is popped off the execution |
Chris Lattner | 9bffa73 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 33 | // stack, which causes the dtor to be run, which frees all the alloca'd memory. |
| 34 | // |
| 35 | class AllocaHolder { |
| 36 | friend class AllocaHolderHandle; |
| 37 | std::vector<void*> Allocations; |
| 38 | unsigned RefCnt; |
| 39 | public: |
| 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 | // |
| 51 | class AllocaHolderHandle { |
| 52 | AllocaHolder *H; |
| 53 | public: |
| 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 Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 61 | typedef std::vector<GenericValue> ValuePlaneTy; |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 62 | |
| 63 | // ExecutionContext struct - This struct represents one stack frame currently |
| 64 | // executing. |
| 65 | // |
| 66 | struct ExecutionContext { |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 67 | Function *CurFunction;// The currently executing function |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 68 | BasicBlock *CurBB; // The currently executing BB |
| 69 | BasicBlock::iterator CurInst; // The next instruction to execute |
Brian Gaeke | f143d3c | 2003-10-24 19:59:37 +0000 | [diff] [blame] | 70 | std::map<Value *, GenericValue> Values; // LLVM values used in this invocation |
Chris Lattner | cdf5178 | 2003-05-08 16:06:52 +0000 | [diff] [blame] | 71 | std::vector<GenericValue> VarArgs; // Values passed through an ellipsis |
Brian Gaeke | 2cb474c | 2003-11-07 19:26:23 +0000 | [diff] [blame] | 72 | CallSite Caller; // Holds the call that called subframes. |
| 73 | // NULL if main func or debugger invoked fn |
Chris Lattner | 9bffa73 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 74 | AllocaHolderHandle Allocas; // Track memory allocated by alloca |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 75 | }; |
| 76 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 77 | // Interpreter - This class represents the entirety of the interpreter. |
| 78 | // |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 79 | class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 80 | int ExitCode; // The exit code to be returned by the lli util |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 81 | TargetData TD; |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 82 | |
| 83 | // The runtime stack of executing code. The top of the stack is the current |
Chris Lattner | 2fbfdcf | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 84 | // function record. |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 85 | std::vector<ExecutionContext> ECStack; |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 86 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 87 | // AtExitHandlers - List of functions to call when the program exits, |
| 88 | // registered with the atexit() library function. |
Chris Lattner | 44edb6b | 2003-05-14 14:21:30 +0000 | [diff] [blame] | 89 | std::vector<Function*> AtExitHandlers; |
Chris Lattner | 63bd613 | 2003-09-17 17:26:22 +0000 | [diff] [blame] | 90 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 91 | public: |
Brian Gaeke | f143d3c | 2003-10-24 19:59:37 +0000 | [diff] [blame] | 92 | Interpreter(Module *M, bool isLittleEndian, bool isLongPointer); |
| 93 | inline ~Interpreter() { } |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 94 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 95 | /// runAtExitHandlers - Run any functions registered by the |
| 96 | /// program's calls to atexit(3), which we intercept and store in |
| 97 | /// AtExitHandlers. |
| 98 | /// |
| 99 | void runAtExitHandlers (); |
| 100 | |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 101 | /// create - Create an interpreter ExecutionEngine. This can never fail. |
| 102 | /// |
Brian Gaeke | f143d3c | 2003-10-24 19:59:37 +0000 | [diff] [blame] | 103 | static ExecutionEngine *create(Module *M); |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 104 | |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 105 | /// run - Start execution with the specified function and arguments. |
| 106 | /// |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 107 | virtual GenericValue run(Function *F, |
| 108 | const std::vector<GenericValue> &ArgValues); |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 109 | |
Chris Lattner | e63fc8b | 2003-12-08 08:23:04 +0000 | [diff] [blame] | 110 | /// recompileAndRelinkFunction - For the interpreter, functions are always |
| 111 | /// up-to-date. |
| 112 | /// |
| 113 | virtual void *recompileAndRelinkFunction(Function *F) { |
| 114 | return getPointerToFunction(F); |
| 115 | } |
| 116 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 117 | // Methods used to execute code: |
| 118 | // Place a call on the stack |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 119 | void callFunction(Function *F, const std::vector<GenericValue> &ArgVals); |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 120 | void run(); // Execute instructions until nothing left to do |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 121 | |
| 122 | // Opcode Implementations |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 123 | void visitReturnInst(ReturnInst &I); |
| 124 | void visitBranchInst(BranchInst &I); |
| 125 | void visitSwitchInst(SwitchInst &I); |
| 126 | |
| 127 | void visitBinaryOperator(BinaryOperator &I); |
| 128 | void visitAllocationInst(AllocationInst &I); |
| 129 | void visitFreeInst(FreeInst &I); |
| 130 | void visitLoadInst(LoadInst &I); |
| 131 | void visitStoreInst(StoreInst &I); |
| 132 | void visitGetElementPtrInst(GetElementPtrInst &I); |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 133 | void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); } |
| 134 | void visitCastInst(CastInst &I); |
Brian Gaeke | fea483d | 2003-11-07 20:04:22 +0000 | [diff] [blame] | 135 | |
| 136 | void visitCallSite(CallSite CS); |
| 137 | void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); } |
| 138 | void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); } |
Brian Gaeke | 9bf06b1 | 2003-11-07 20:07:06 +0000 | [diff] [blame] | 139 | void visitUnwindInst(UnwindInst &I); |
Brian Gaeke | fea483d | 2003-11-07 20:04:22 +0000 | [diff] [blame] | 140 | |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 141 | void visitShl(ShiftInst &I); |
| 142 | void visitShr(ShiftInst &I); |
Chris Lattner | 4c66549 | 2003-10-18 05:55:25 +0000 | [diff] [blame] | 143 | void visitVANextInst(VANextInst &I); |
Brian Gaeke | c1a2be1 | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 144 | void visitVAArgInst(VAArgInst &I); |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 145 | void visitInstruction(Instruction &I) { |
| 146 | std::cerr << I; |
| 147 | assert(0 && "Instruction not interpretable yet!"); |
| 148 | } |
| 149 | |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 150 | GenericValue callExternalFunction(Function *F, |
| 151 | const std::vector<GenericValue> &ArgVals); |
Chris Lattner | e43db88 | 2001-10-27 04:15:57 +0000 | [diff] [blame] | 152 | void exitCalled(GenericValue GV); |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 153 | |
Chris Lattner | 44edb6b | 2003-05-14 14:21:30 +0000 | [diff] [blame] | 154 | void addAtExitHandler(Function *F) { |
| 155 | AtExitHandlers.push_back(F); |
| 156 | } |
| 157 | |
Brian Gaeke | 8da1748 | 2003-11-13 06:06:01 +0000 | [diff] [blame] | 158 | GenericValue *getFirstVarArg () { |
| 159 | return &(ECStack[ECStack.size () - 2].VarArgs[0]); |
| 160 | } |
| 161 | |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 162 | //FIXME: private: |
| 163 | public: |
Chris Lattner | 4af6de8 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 164 | GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I, |
| 165 | gep_type_iterator E, ExecutionContext &SF); |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 166 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 167 | private: // Helper functions |
Chris Lattner | 77113b6 | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 168 | // SwitchToNewBasicBlock - Start execution in a new basic block and run any |
| 169 | // PHI nodes in the top of the block. This is used for intraprocedural |
| 170 | // control flow. |
| 171 | // |
| 172 | void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF); |
| 173 | |
Brian Gaeke | fb0ef2e | 2003-08-13 18:17:54 +0000 | [diff] [blame] | 174 | void *getPointerToFunction(Function *F) { return (void*)F; } |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 175 | |
Chris Lattner | 5deea3c | 2001-10-30 20:28:23 +0000 | [diff] [blame] | 176 | void initializeExecutionEngine(); |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 177 | void initializeExternalFunctions(); |
Brian Gaeke | dfa5849 | 2003-12-11 00:23:28 +0000 | [diff] [blame^] | 178 | GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF); |
Brian Gaeke | 29794cb | 2003-09-05 18:55:03 +0000 | [diff] [blame] | 179 | GenericValue getOperandValue(Value *V, ExecutionContext &SF); |
| 180 | GenericValue executeCastOperation(Value *SrcVal, const Type *Ty, |
| 181 | ExecutionContext &SF); |
Brian Gaeke | af955ba | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 182 | void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result); |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 183 | }; |
| 184 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 185 | } // End llvm namespace |
| 186 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 187 | #endif |