blob: 465a08a2641dc1b6910e3956cbaeff99d052d70b [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 Lattnerda82ed52003-05-08 16:18:31 +000027struct FunctionInfo; // Defined in ExecutionAnnotations.h
Chris Lattner4af6de82003-11-25 20:44:56 +000028class gep_type_iterator;
Chris Lattner92101ac2001-08-23 17:05:04 +000029
Chris Lattner9bffa732002-02-19 18:50:09 +000030// AllocaHolder - Object to track all of the blocks of memory allocated by
31// alloca. When the function returns, this object is poped off the execution
32// stack, which causes the dtor to be run, which frees all the alloca'd memory.
33//
34class AllocaHolder {
35 friend class AllocaHolderHandle;
36 std::vector<void*> Allocations;
37 unsigned RefCnt;
38public:
39 AllocaHolder() : RefCnt(0) {}
40 void add(void *mem) { Allocations.push_back(mem); }
41 ~AllocaHolder() {
42 for (unsigned i = 0; i < Allocations.size(); ++i)
43 free(Allocations[i]);
44 }
45};
46
47// AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
48// a vector...
49//
50class AllocaHolderHandle {
51 AllocaHolder *H;
52public:
53 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; }
54 AllocaHolderHandle(const AllocaHolderHandle &AH) : H(AH.H) { H->RefCnt++; }
55 ~AllocaHolderHandle() { if (--H->RefCnt == 0) delete H; }
56
57 void add(void *mem) { H->add(mem); }
58};
59
Chris Lattner697954c2002-01-20 22:54:45 +000060typedef std::vector<GenericValue> ValuePlaneTy;
Chris Lattner92101ac2001-08-23 17:05:04 +000061
62// ExecutionContext struct - This struct represents one stack frame currently
63// executing.
64//
65struct ExecutionContext {
Chris Lattnerda82ed52003-05-08 16:18:31 +000066 Function *CurFunction;// The currently executing function
Chris Lattner92101ac2001-08-23 17:05:04 +000067 BasicBlock *CurBB; // The currently executing BB
68 BasicBlock::iterator CurInst; // The next instruction to execute
Brian Gaekef143d3c2003-10-24 19:59:37 +000069 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
Chris Lattnercdf51782003-05-08 16:06:52 +000070 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
Brian Gaeke2cb474c2003-11-07 19:26:23 +000071 CallSite Caller; // Holds the call that called subframes.
72 // NULL if main func or debugger invoked fn
Chris Lattner9bffa732002-02-19 18:50:09 +000073 AllocaHolderHandle Allocas; // Track memory allocated by alloca
Chris Lattner92101ac2001-08-23 17:05:04 +000074};
75
Chris Lattner92101ac2001-08-23 17:05:04 +000076// Interpreter - This class represents the entirety of the interpreter.
77//
Chris Lattnerd7916e92003-05-10 21:22:39 +000078class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
Chris Lattner92101ac2001-08-23 17:05:04 +000079 int ExitCode; // The exit code to be returned by the lli util
Chris Lattnerfe11a972002-12-23 23:59:41 +000080 TargetData TD;
Chris Lattner92101ac2001-08-23 17:05:04 +000081
82 // The runtime stack of executing code. The top of the stack is the current
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000083 // function record.
Chris Lattner697954c2002-01-20 22:54:45 +000084 std::vector<ExecutionContext> ECStack;
Chris Lattner92101ac2001-08-23 17:05:04 +000085
Brian Gaeke70975ee2003-09-05 18:42:01 +000086 // AtExitHandlers - List of functions to call when the program exits,
87 // registered with the atexit() library function.
Chris Lattner44edb6b2003-05-14 14:21:30 +000088 std::vector<Function*> AtExitHandlers;
Chris Lattner63bd6132003-09-17 17:26:22 +000089
Chris Lattner92101ac2001-08-23 17:05:04 +000090public:
Brian Gaekef143d3c2003-10-24 19:59:37 +000091 Interpreter(Module *M, bool isLittleEndian, bool isLongPointer);
92 inline ~Interpreter() { }
Chris Lattner92101ac2001-08-23 17:05:04 +000093
Brian Gaeke70975ee2003-09-05 18:42:01 +000094 /// runAtExitHandlers - Run any functions registered by the
95 /// program's calls to atexit(3), which we intercept and store in
96 /// AtExitHandlers.
97 ///
98 void runAtExitHandlers ();
99
Brian Gaeke82d82772003-09-03 20:34:19 +0000100 /// create - Create an interpreter ExecutionEngine. This can never fail.
101 ///
Brian Gaekef143d3c2003-10-24 19:59:37 +0000102 static ExecutionEngine *create(Module *M);
Brian Gaeke82d82772003-09-03 20:34:19 +0000103
Chris Lattnerfe11a972002-12-23 23:59:41 +0000104 /// run - Start execution with the specified function and arguments.
105 ///
Brian Gaeke70975ee2003-09-05 18:42:01 +0000106 virtual GenericValue run(Function *F,
107 const std::vector<GenericValue> &ArgValues);
Chris Lattner92101ac2001-08-23 17:05:04 +0000108
Brian Gaeke70975ee2003-09-05 18:42:01 +0000109 // Methods used to execute code:
110 // Place a call on the stack
Chris Lattnerda82ed52003-05-08 16:18:31 +0000111 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
Brian Gaeke70975ee2003-09-05 18:42:01 +0000112 void run(); // Execute instructions until nothing left to do
Chris Lattner92101ac2001-08-23 17:05:04 +0000113
114 // Opcode Implementations
Chris Lattnerd7916e92003-05-10 21:22:39 +0000115 void visitReturnInst(ReturnInst &I);
116 void visitBranchInst(BranchInst &I);
117 void visitSwitchInst(SwitchInst &I);
118
119 void visitBinaryOperator(BinaryOperator &I);
120 void visitAllocationInst(AllocationInst &I);
121 void visitFreeInst(FreeInst &I);
122 void visitLoadInst(LoadInst &I);
123 void visitStoreInst(StoreInst &I);
124 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000125 void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); }
126 void visitCastInst(CastInst &I);
Brian Gaekefea483d2003-11-07 20:04:22 +0000127
128 void visitCallSite(CallSite CS);
129 void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
130 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
Brian Gaeke9bf06b12003-11-07 20:07:06 +0000131 void visitUnwindInst(UnwindInst &I);
Brian Gaekefea483d2003-11-07 20:04:22 +0000132
Chris Lattnerd7916e92003-05-10 21:22:39 +0000133 void visitShl(ShiftInst &I);
134 void visitShr(ShiftInst &I);
Chris Lattner4c665492003-10-18 05:55:25 +0000135 void visitVANextInst(VANextInst &I);
Brian Gaekec1a2be12003-11-07 21:20:47 +0000136 void visitVAArgInst(VAArgInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000137 void visitInstruction(Instruction &I) {
138 std::cerr << I;
139 assert(0 && "Instruction not interpretable yet!");
140 }
141
Chris Lattnerda82ed52003-05-08 16:18:31 +0000142 GenericValue callExternalFunction(Function *F,
143 const std::vector<GenericValue> &ArgVals);
Chris Lattnere43db882001-10-27 04:15:57 +0000144 void exitCalled(GenericValue GV);
Chris Lattner92101ac2001-08-23 17:05:04 +0000145
Chris Lattner44edb6b2003-05-14 14:21:30 +0000146 void addAtExitHandler(Function *F) {
147 AtExitHandlers.push_back(F);
148 }
149
Brian Gaeke8da17482003-11-13 06:06:01 +0000150 GenericValue *getFirstVarArg () {
151 return &(ECStack[ECStack.size () - 2].VarArgs[0]);
152 }
153
Chris Lattnerfe11a972002-12-23 23:59:41 +0000154 //FIXME: private:
155public:
Chris Lattner4af6de82003-11-25 20:44:56 +0000156 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
157 gep_type_iterator E, ExecutionContext &SF);
Chris Lattnerfe11a972002-12-23 23:59:41 +0000158
Chris Lattner92101ac2001-08-23 17:05:04 +0000159private: // Helper functions
Chris Lattner77113b62003-05-10 20:21:16 +0000160 // SwitchToNewBasicBlock - Start execution in a new basic block and run any
161 // PHI nodes in the top of the block. This is used for intraprocedural
162 // control flow.
163 //
164 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
165
Brian Gaekefb0ef2e2003-08-13 18:17:54 +0000166 void *getPointerToFunction(Function *F) { return (void*)F; }
Chris Lattnerfe11a972002-12-23 23:59:41 +0000167
Chris Lattner5deea3c2001-10-30 20:28:23 +0000168 void initializeExecutionEngine();
Chris Lattnerda82ed52003-05-08 16:18:31 +0000169 void initializeExternalFunctions();
Brian Gaeke29794cb2003-09-05 18:55:03 +0000170 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
171 GenericValue executeCastOperation(Value *SrcVal, const Type *Ty,
172 ExecutionContext &SF);
Brian Gaekeaf955ba2003-11-07 05:22:49 +0000173 void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result);
Chris Lattner92101ac2001-08-23 17:05:04 +0000174};
175
Brian Gaeked0fde302003-11-11 22:41:34 +0000176} // End llvm namespace
177
Chris Lattner92101ac2001-08-23 17:05:04 +0000178#endif