Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 1 | //===-- Interpreter.h ------------------------------------------*- C++ -*--===// |
Misha Brukman | d1c881a | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 2 | // |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 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. |
Misha Brukman | d1c881a | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 7 | // |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 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" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 23 | #include "llvm/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 | 726c1ef | 2006-03-23 05:22:51 +0000 | [diff] [blame] | 27 | class IntrinsicLowering; |
Chris Lattner | b1dfc70 | 2004-02-26 07:59:22 +0000 | [diff] [blame] | 28 | struct FunctionInfo; |
Chris Lattner | c6b0fb3 | 2004-04-04 17:30:06 +0000 | [diff] [blame] | 29 | template<typename T> class generic_gep_type_iterator; |
Brian Gaeke | dfa5849 | 2003-12-11 00:23:28 +0000 | [diff] [blame] | 30 | class ConstantExpr; |
Chris Lattner | 702a8a0 | 2004-04-04 19:47:06 +0000 | [diff] [blame] | 31 | typedef generic_gep_type_iterator<User::const_op_iterator> gep_type_iterator; |
Chris Lattner | c6b0fb3 | 2004-04-04 17:30:06 +0000 | [diff] [blame] | 32 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 33 | |
Chris Lattner | 9bffa73 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 34 | // AllocaHolder - Object to track all of the blocks of memory allocated by |
Brian Gaeke | dfa5849 | 2003-12-11 00:23:28 +0000 | [diff] [blame] | 35 | // alloca. When the function returns, this object is popped off the execution |
Chris Lattner | 9bffa73 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 36 | // stack, which causes the dtor to be run, which frees all the alloca'd memory. |
| 37 | // |
| 38 | class AllocaHolder { |
| 39 | friend class AllocaHolderHandle; |
| 40 | std::vector<void*> Allocations; |
| 41 | unsigned RefCnt; |
| 42 | public: |
| 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 | // |
| 54 | class AllocaHolderHandle { |
| 55 | AllocaHolder *H; |
| 56 | public: |
| 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 Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 64 | typedef std::vector<GenericValue> ValuePlaneTy; |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 65 | |
| 66 | // ExecutionContext struct - This struct represents one stack frame currently |
| 67 | // executing. |
| 68 | // |
| 69 | struct ExecutionContext { |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 70 | Function *CurFunction;// The currently executing function |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 71 | BasicBlock *CurBB; // The currently executing BB |
| 72 | BasicBlock::iterator CurInst; // The next instruction to execute |
Brian Gaeke | f143d3c | 2003-10-24 19:59:37 +0000 | [diff] [blame] | 73 | std::map<Value *, GenericValue> Values; // LLVM values used in this invocation |
Chris Lattner | cdf5178 | 2003-05-08 16:06:52 +0000 | [diff] [blame] | 74 | std::vector<GenericValue> VarArgs; // Values passed through an ellipsis |
Brian Gaeke | 2cb474c | 2003-11-07 19:26:23 +0000 | [diff] [blame] | 75 | CallSite Caller; // Holds the call that called subframes. |
| 76 | // NULL if main func or debugger invoked fn |
Chris Lattner | 9bffa73 | 2002-02-19 18:50:09 +0000 | [diff] [blame] | 77 | AllocaHolderHandle Allocas; // Track memory allocated by alloca |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 78 | }; |
| 79 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 80 | // Interpreter - This class represents the entirety of the interpreter. |
| 81 | // |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 82 | class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { |
Jeff Cohen | 8c9191c | 2006-02-07 05:29:44 +0000 | [diff] [blame] | 83 | GenericValue ExitValue; // The return value of the called function |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 84 | TargetData TD; |
Chris Lattner | 7301178 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 85 | IntrinsicLowering *IL; |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 86 | |
| 87 | // 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] | 88 | // function record. |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 89 | std::vector<ExecutionContext> ECStack; |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 90 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 91 | // AtExitHandlers - List of functions to call when the program exits, |
| 92 | // registered with the atexit() library function. |
Chris Lattner | 44edb6b | 2003-05-14 14:21:30 +0000 | [diff] [blame] | 93 | std::vector<Function*> AtExitHandlers; |
Chris Lattner | 63bd613 | 2003-09-17 17:26:22 +0000 | [diff] [blame] | 94 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 95 | public: |
Chris Lattner | 276f4b5 | 2006-06-16 18:08:38 +0000 | [diff] [blame] | 96 | Interpreter(Module *M); |
Chris Lattner | 7301178 | 2003-12-28 09:44:37 +0000 | [diff] [blame] | 97 | ~Interpreter(); |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 98 | |
Chris Lattner | 2cab55d | 2003-12-26 06:13:05 +0000 | [diff] [blame] | 99 | /// runAtExitHandlers - Run any functions registered by the program's calls to |
| 100 | /// atexit(3), which we intercept and store in AtExitHandlers. |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 101 | /// |
Chris Lattner | 2cab55d | 2003-12-26 06:13:05 +0000 | [diff] [blame] | 102 | void runAtExitHandlers(); |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 103 | |
Chris Lattner | 2fe4bb0 | 2006-03-22 06:07:50 +0000 | [diff] [blame] | 104 | static void Register() { |
| 105 | InterpCtor = create; |
| 106 | } |
| 107 | |
Chris Lattner | 726c1ef | 2006-03-23 05:22:51 +0000 | [diff] [blame] | 108 | /// create - Create an interpreter ExecutionEngine. This can never fail. |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 109 | /// |
Chris Lattner | 726c1ef | 2006-03-23 05:22:51 +0000 | [diff] [blame] | 110 | static ExecutionEngine *create(ModuleProvider *M); |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 111 | |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 112 | /// run - Start execution with the specified function and arguments. |
| 113 | /// |
Chris Lattner | 2cab55d | 2003-12-26 06:13:05 +0000 | [diff] [blame] | 114 | virtual GenericValue runFunction(Function *F, |
| 115 | const std::vector<GenericValue> &ArgValues); |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 116 | |
Chris Lattner | e63fc8b | 2003-12-08 08:23:04 +0000 | [diff] [blame] | 117 | /// recompileAndRelinkFunction - For the interpreter, functions are always |
| 118 | /// up-to-date. |
| 119 | /// |
| 120 | virtual void *recompileAndRelinkFunction(Function *F) { |
| 121 | return getPointerToFunction(F); |
| 122 | } |
| 123 | |
Misha Brukman | 895eddf | 2004-11-07 23:58:46 +0000 | [diff] [blame] | 124 | /// freeMachineCodeForFunction - The interpreter does not generate any code. |
| 125 | /// |
| 126 | void freeMachineCodeForFunction(Function *F) { } |
Misha Brukman | d1c881a | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 127 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 128 | // Methods used to execute code: |
| 129 | // Place a call on the stack |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 130 | void callFunction(Function *F, const std::vector<GenericValue> &ArgVals); |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 131 | void run(); // Execute instructions until nothing left to do |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 132 | |
| 133 | // Opcode Implementations |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 134 | void visitReturnInst(ReturnInst &I); |
| 135 | void visitBranchInst(BranchInst &I); |
| 136 | void visitSwitchInst(SwitchInst &I); |
| 137 | |
| 138 | void visitBinaryOperator(BinaryOperator &I); |
Reid Spencer | e4d87aa | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 139 | void visitICmpInst(ICmpInst &I); |
| 140 | void visitFCmpInst(FCmpInst &I); |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 141 | void visitAllocationInst(AllocationInst &I); |
| 142 | void visitFreeInst(FreeInst &I); |
| 143 | void visitLoadInst(LoadInst &I); |
| 144 | void visitStoreInst(StoreInst &I); |
| 145 | void visitGetElementPtrInst(GetElementPtrInst &I); |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 146 | void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); } |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 147 | void visitTruncInst(TruncInst &I); |
| 148 | void visitZExtInst(ZExtInst &I); |
| 149 | void visitSExtInst(SExtInst &I); |
| 150 | void visitFPTruncInst(FPTruncInst &I); |
| 151 | void visitFPExtInst(FPExtInst &I); |
| 152 | void visitUIToFPInst(UIToFPInst &I); |
| 153 | void visitSIToFPInst(SIToFPInst &I); |
| 154 | void visitFPToUIInst(FPToUIInst &I); |
| 155 | void visitFPToSIInst(FPToSIInst &I); |
| 156 | void visitPtrToIntInst(PtrToIntInst &I); |
| 157 | void visitIntToPtrInst(IntToPtrInst &I); |
| 158 | void visitBitCastInst(BitCastInst &I); |
Chris Lattner | 759d34f | 2004-04-20 16:43:21 +0000 | [diff] [blame] | 159 | void visitSelectInst(SelectInst &I); |
| 160 | |
Brian Gaeke | fea483d | 2003-11-07 20:04:22 +0000 | [diff] [blame] | 161 | |
| 162 | void visitCallSite(CallSite CS); |
| 163 | void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); } |
| 164 | void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); } |
Brian Gaeke | 9bf06b1 | 2003-11-07 20:07:06 +0000 | [diff] [blame] | 165 | void visitUnwindInst(UnwindInst &I); |
Chris Lattner | ec7c1ab | 2004-10-16 18:21:33 +0000 | [diff] [blame] | 166 | void visitUnreachableInst(UnreachableInst &I); |
Brian Gaeke | fea483d | 2003-11-07 20:04:22 +0000 | [diff] [blame] | 167 | |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 168 | void visitShl(ShiftInst &I); |
Reid Spencer | 3822ff5 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 169 | void visitLShr(ShiftInst &I); |
| 170 | void visitAShr(ShiftInst &I); |
Brian Gaeke | c1a2be1 | 2003-11-07 21:20:47 +0000 | [diff] [blame] | 171 | void visitVAArgInst(VAArgInst &I); |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 172 | void visitInstruction(Instruction &I) { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 173 | cerr << I; |
Chris Lattner | d7916e9 | 2003-05-10 21:22:39 +0000 | [diff] [blame] | 174 | assert(0 && "Instruction not interpretable yet!"); |
| 175 | } |
| 176 | |
Misha Brukman | d1c881a | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 177 | GenericValue callExternalFunction(Function *F, |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 178 | const std::vector<GenericValue> &ArgVals); |
Chris Lattner | e43db88 | 2001-10-27 04:15:57 +0000 | [diff] [blame] | 179 | void exitCalled(GenericValue GV); |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 180 | |
Chris Lattner | 44edb6b | 2003-05-14 14:21:30 +0000 | [diff] [blame] | 181 | void addAtExitHandler(Function *F) { |
| 182 | AtExitHandlers.push_back(F); |
| 183 | } |
| 184 | |
Brian Gaeke | 8da1748 | 2003-11-13 06:06:01 +0000 | [diff] [blame] | 185 | GenericValue *getFirstVarArg () { |
Brian Gaeke | e625890 | 2004-02-13 06:18:39 +0000 | [diff] [blame] | 186 | return &(ECStack.back ().VarArgs[0]); |
Brian Gaeke | 8da1748 | 2003-11-13 06:06:01 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 189 | //FIXME: private: |
| 190 | public: |
Chris Lattner | 4af6de8 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 191 | GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I, |
Misha Brukman | 3c94497 | 2005-04-22 04:08:30 +0000 | [diff] [blame] | 192 | gep_type_iterator E, ExecutionContext &SF); |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 193 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 194 | private: // Helper functions |
Chris Lattner | 77113b6 | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 195 | // SwitchToNewBasicBlock - Start execution in a new basic block and run any |
| 196 | // PHI nodes in the top of the block. This is used for intraprocedural |
| 197 | // control flow. |
Misha Brukman | d1c881a | 2005-04-21 22:43:08 +0000 | [diff] [blame] | 198 | // |
Chris Lattner | 77113b6 | 2003-05-10 20:21:16 +0000 | [diff] [blame] | 199 | void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF); |
| 200 | |
Brian Gaeke | fb0ef2e | 2003-08-13 18:17:54 +0000 | [diff] [blame] | 201 | void *getPointerToFunction(Function *F) { return (void*)F; } |
Chris Lattner | fe11a97 | 2002-12-23 23:59:41 +0000 | [diff] [blame] | 202 | |
Chris Lattner | 5deea3c | 2001-10-30 20:28:23 +0000 | [diff] [blame] | 203 | void initializeExecutionEngine(); |
Chris Lattner | da82ed5 | 2003-05-08 16:18:31 +0000 | [diff] [blame] | 204 | void initializeExternalFunctions(); |
Brian Gaeke | dfa5849 | 2003-12-11 00:23:28 +0000 | [diff] [blame] | 205 | GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF); |
Brian Gaeke | 29794cb | 2003-09-05 18:55:03 +0000 | [diff] [blame] | 206 | GenericValue getOperandValue(Value *V, ExecutionContext &SF); |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 207 | GenericValue executeTruncInst(Value *SrcVal, const Type *DstTy, |
| 208 | ExecutionContext &SF); |
| 209 | GenericValue executeSExtInst(Value *SrcVal, const Type *DstTy, |
| 210 | ExecutionContext &SF); |
| 211 | GenericValue executeZExtInst(Value *SrcVal, const Type *DstTy, |
| 212 | ExecutionContext &SF); |
| 213 | GenericValue executeFPTruncInst(Value *SrcVal, const Type *DstTy, |
| 214 | ExecutionContext &SF); |
| 215 | GenericValue executeFPExtInst(Value *SrcVal, const Type *DstTy, |
| 216 | ExecutionContext &SF); |
| 217 | GenericValue executeFPToUIInst(Value *SrcVal, const Type *DstTy, |
| 218 | ExecutionContext &SF); |
| 219 | GenericValue executeFPToSIInst(Value *SrcVal, const Type *DstTy, |
| 220 | ExecutionContext &SF); |
| 221 | GenericValue executeUIToFPInst(Value *SrcVal, const Type *DstTy, |
| 222 | ExecutionContext &SF); |
| 223 | GenericValue executeSIToFPInst(Value *SrcVal, const Type *DstTy, |
| 224 | ExecutionContext &SF); |
| 225 | GenericValue executePtrToIntInst(Value *SrcVal, const Type *DstTy, |
| 226 | ExecutionContext &SF); |
| 227 | GenericValue executeIntToPtrInst(Value *SrcVal, const Type *DstTy, |
| 228 | ExecutionContext &SF); |
| 229 | GenericValue executeBitCastInst(Value *SrcVal, const Type *DstTy, |
| 230 | ExecutionContext &SF); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 231 | GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal, |
| 232 | const Type *Ty, ExecutionContext &SF); |
Brian Gaeke | af955ba | 2003-11-07 05:22:49 +0000 | [diff] [blame] | 233 | void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result); |
Reid Spencer | 90935f6 | 2007-01-18 02:12:10 +0000 | [diff] [blame] | 234 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 235 | }; |
| 236 | |
Reid Spencer | 90935f6 | 2007-01-18 02:12:10 +0000 | [diff] [blame] | 237 | inline void maskToBitWidth(GenericValue& GV, unsigned BitWidth) { |
| 238 | uint64_t BitMask = (1ull << BitWidth) - 1; |
| 239 | if (BitWidth <= 8) |
| 240 | GV.Int8Val &= BitMask; |
| 241 | else if (BitWidth <= 16) |
| 242 | GV.Int16Val &= BitMask; |
| 243 | else if (BitWidth <= 32) |
| 244 | GV.Int32Val &= BitMask; |
| 245 | else |
| 246 | GV.Int64Val &= BitMask; |
| 247 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 248 | } // End llvm namespace |
| 249 | |
Chris Lattner | 92101ac | 2001-08-23 17:05:04 +0000 | [diff] [blame] | 250 | #endif |