blob: 7757aae86135485ae360c9a17bd07c6bc7ad7dd3 [file] [log] [blame]
Chris Lattnerd7ff5782001-08-23 17:05:04 +00001//===-- Interpreter.h ------------------------------------------*- C++ -*--===//
John Criswell29265fe2003-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 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"
23#include "Support/DataTypes.h"
Chris Lattner1f017262001-11-07 04:23:00 +000024
Brian Gaeke960707c2003-11-11 22:41:34 +000025namespace llvm {
26
Chris Lattner234a2d42004-02-26 07:59:22 +000027struct FunctionInfo;
Chris Lattner092d2602004-04-04 17:30:06 +000028template<typename T> class generic_gep_type_iterator;
Brian Gaeke2bba1522003-12-11 00:23:28 +000029class ConstantExpr;
Chris Lattnerca76d112004-04-04 19:47:06 +000030typedef generic_gep_type_iterator<User::const_op_iterator> gep_type_iterator;
Chris Lattner092d2602004-04-04 17:30:06 +000031
Chris Lattnerd7ff5782001-08-23 17:05:04 +000032
Chris Lattnerfb55ba02002-02-19 18:50:09 +000033// AllocaHolder - Object to track all of the blocks of memory allocated by
Brian Gaeke2bba1522003-12-11 00:23:28 +000034// alloca. When the function returns, this object is popped off the execution
Chris Lattnerfb55ba02002-02-19 18:50:09 +000035// stack, which causes the dtor to be run, which frees all the alloca'd memory.
36//
37class AllocaHolder {
38 friend class AllocaHolderHandle;
39 std::vector<void*> Allocations;
40 unsigned RefCnt;
41public:
42 AllocaHolder() : RefCnt(0) {}
43 void add(void *mem) { Allocations.push_back(mem); }
44 ~AllocaHolder() {
45 for (unsigned i = 0; i < Allocations.size(); ++i)
46 free(Allocations[i]);
47 }
48};
49
50// AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
51// a vector...
52//
53class AllocaHolderHandle {
54 AllocaHolder *H;
55public:
56 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; }
57 AllocaHolderHandle(const AllocaHolderHandle &AH) : H(AH.H) { H->RefCnt++; }
58 ~AllocaHolderHandle() { if (--H->RefCnt == 0) delete H; }
59
60 void add(void *mem) { H->add(mem); }
61};
62
Chris Lattner7f74a562002-01-20 22:54:45 +000063typedef std::vector<GenericValue> ValuePlaneTy;
Chris Lattnerd7ff5782001-08-23 17:05:04 +000064
65// ExecutionContext struct - This struct represents one stack frame currently
66// executing.
67//
68struct ExecutionContext {
Chris Lattner470754e2003-05-08 16:18:31 +000069 Function *CurFunction;// The currently executing function
Chris Lattnerd7ff5782001-08-23 17:05:04 +000070 BasicBlock *CurBB; // The currently executing BB
71 BasicBlock::iterator CurInst; // The next instruction to execute
Brian Gaekeb77e5892003-10-24 19:59:37 +000072 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
Chris Lattner22e90432003-05-08 16:06:52 +000073 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
Brian Gaeke18b59572003-11-07 19:26:23 +000074 CallSite Caller; // Holds the call that called subframes.
75 // NULL if main func or debugger invoked fn
Chris Lattnerfb55ba02002-02-19 18:50:09 +000076 AllocaHolderHandle Allocas; // Track memory allocated by alloca
Chris Lattnerd7ff5782001-08-23 17:05:04 +000077};
78
Chris Lattnerd7ff5782001-08-23 17:05:04 +000079// Interpreter - This class represents the entirety of the interpreter.
80//
Chris Lattner185045c2003-05-10 21:22:39 +000081class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
Chris Lattnerd7ff5782001-08-23 17:05:04 +000082 int ExitCode; // The exit code to be returned by the lli util
Chris Lattnera0d7b082002-12-23 23:59:41 +000083 TargetData TD;
Chris Lattnerc8c6c032003-12-28 09:44:37 +000084 IntrinsicLowering *IL;
Chris Lattnerd7ff5782001-08-23 17:05:04 +000085
86 // The runtime stack of executing code. The top of the stack is the current
Chris Lattner62b7fd12002-04-07 20:49:59 +000087 // function record.
Chris Lattner7f74a562002-01-20 22:54:45 +000088 std::vector<ExecutionContext> ECStack;
Chris Lattnerd7ff5782001-08-23 17:05:04 +000089
Brian Gaekea7669032003-09-05 18:42:01 +000090 // AtExitHandlers - List of functions to call when the program exits,
91 // registered with the atexit() library function.
Chris Lattner4a5bb952003-05-14 14:21:30 +000092 std::vector<Function*> AtExitHandlers;
Chris Lattnera28e1f22003-09-17 17:26:22 +000093
Chris Lattnerd7ff5782001-08-23 17:05:04 +000094public:
Chris Lattnerc8c6c032003-12-28 09:44:37 +000095 Interpreter(Module *M, bool isLittleEndian, bool isLongPointer,
96 IntrinsicLowering *IL);
97 ~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 Lattnerc8c6c032003-12-28 09:44:37 +0000104 /// create - Create an interpreter ExecutionEngine. This can never fail. The
105 /// specified IntrinsicLowering implementation will be deleted when the
106 /// Interpreter execution engine is destroyed.
Brian Gaeke4bd3bd52003-09-03 20:34:19 +0000107 ///
Chris Lattnerc8c6c032003-12-28 09:44:37 +0000108 static ExecutionEngine *create(Module *M, IntrinsicLowering *IL);
Brian Gaeke4bd3bd52003-09-03 20:34:19 +0000109
Chris Lattnera0d7b082002-12-23 23:59:41 +0000110 /// run - Start execution with the specified function and arguments.
111 ///
Chris Lattnerd94296c2003-12-26 06:13:05 +0000112 virtual GenericValue runFunction(Function *F,
113 const std::vector<GenericValue> &ArgValues);
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000114
Chris Lattner86ad4c02003-12-08 08:23:04 +0000115 /// recompileAndRelinkFunction - For the interpreter, functions are always
116 /// up-to-date.
117 ///
118 virtual void *recompileAndRelinkFunction(Function *F) {
119 return getPointerToFunction(F);
120 }
121
Brian Gaekea7669032003-09-05 18:42:01 +0000122 // Methods used to execute code:
123 // Place a call on the stack
Chris Lattner470754e2003-05-08 16:18:31 +0000124 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
Brian Gaekea7669032003-09-05 18:42:01 +0000125 void run(); // Execute instructions until nothing left to do
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000126
127 // Opcode Implementations
Chris Lattner185045c2003-05-10 21:22:39 +0000128 void visitReturnInst(ReturnInst &I);
129 void visitBranchInst(BranchInst &I);
130 void visitSwitchInst(SwitchInst &I);
131
132 void visitBinaryOperator(BinaryOperator &I);
133 void visitAllocationInst(AllocationInst &I);
134 void visitFreeInst(FreeInst &I);
135 void visitLoadInst(LoadInst &I);
136 void visitStoreInst(StoreInst &I);
137 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner185045c2003-05-10 21:22:39 +0000138 void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); }
139 void visitCastInst(CastInst &I);
Chris Lattner2b2d7a92004-04-20 16:43:21 +0000140 void visitSelectInst(SelectInst &I);
141
Brian Gaekea6454d352003-11-07 20:04:22 +0000142
143 void visitCallSite(CallSite CS);
144 void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
145 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
Brian Gaeke6d145eb2003-11-07 20:07:06 +0000146 void visitUnwindInst(UnwindInst &I);
Brian Gaekea6454d352003-11-07 20:04:22 +0000147
Chris Lattner185045c2003-05-10 21:22:39 +0000148 void visitShl(ShiftInst &I);
149 void visitShr(ShiftInst &I);
Chris Lattnerfefd3be2003-10-18 05:55:25 +0000150 void visitVANextInst(VANextInst &I);
Brian Gaeke9ef636c2003-11-07 21:20:47 +0000151 void visitVAArgInst(VAArgInst &I);
Chris Lattner185045c2003-05-10 21:22:39 +0000152 void visitInstruction(Instruction &I) {
153 std::cerr << I;
154 assert(0 && "Instruction not interpretable yet!");
155 }
156
Chris Lattner470754e2003-05-08 16:18:31 +0000157 GenericValue callExternalFunction(Function *F,
158 const std::vector<GenericValue> &ArgVals);
Chris Lattner15157b82001-10-27 04:15:57 +0000159 void exitCalled(GenericValue GV);
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000160
Chris Lattner4a5bb952003-05-14 14:21:30 +0000161 void addAtExitHandler(Function *F) {
162 AtExitHandlers.push_back(F);
163 }
164
Brian Gaeked81ca472003-11-13 06:06:01 +0000165 GenericValue *getFirstVarArg () {
Brian Gaeke242ebf22004-02-13 06:18:39 +0000166 return &(ECStack.back ().VarArgs[0]);
Brian Gaeked81ca472003-11-13 06:06:01 +0000167 }
168
Chris Lattnera0d7b082002-12-23 23:59:41 +0000169 //FIXME: private:
170public:
Chris Lattnerf0788082003-11-25 20:44:56 +0000171 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
172 gep_type_iterator E, ExecutionContext &SF);
Chris Lattnera0d7b082002-12-23 23:59:41 +0000173
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000174private: // Helper functions
Chris Lattnerbd6771c2003-05-10 20:21:16 +0000175 // SwitchToNewBasicBlock - Start execution in a new basic block and run any
176 // PHI nodes in the top of the block. This is used for intraprocedural
177 // control flow.
178 //
179 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
180
Brian Gaekeaa586642003-08-13 18:17:54 +0000181 void *getPointerToFunction(Function *F) { return (void*)F; }
Chris Lattnera0d7b082002-12-23 23:59:41 +0000182
Chris Lattner8bd5c772001-10-30 20:28:23 +0000183 void initializeExecutionEngine();
Chris Lattner470754e2003-05-08 16:18:31 +0000184 void initializeExternalFunctions();
Brian Gaeke2bba1522003-12-11 00:23:28 +0000185 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
Brian Gaeke9b518bc2003-09-05 18:55:03 +0000186 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
187 GenericValue executeCastOperation(Value *SrcVal, const Type *Ty,
188 ExecutionContext &SF);
Brian Gaeke65cac902003-11-07 05:22:49 +0000189 void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result);
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000190};
191
Brian Gaeke960707c2003-11-11 22:41:34 +0000192} // End llvm namespace
193
Chris Lattnerd7ff5782001-08-23 17:05:04 +0000194#endif