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