blob: 67fb70344115b2252d92431a11fed183353a111f [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001//===-- Interpreter.h ------------------------------------------*- C++ -*--===//
Misha Brukmand1c881a2005-04-21 22:43:08 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// 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 Brukmand1c881a2005-04-21 22:43:08 +00007//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
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"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/DataTypes.h"
Reid Spencer954da372004-07-04 12:19:56 +000024#include <iostream>
Chris Lattner5af0c482001-11-07 04:23:00 +000025
Brian Gaeked0fde302003-11-11 22:41:34 +000026namespace llvm {
27
Chris Lattner726c1ef2006-03-23 05:22:51 +000028class IntrinsicLowering;
Chris Lattnerb1dfc702004-02-26 07:59:22 +000029struct FunctionInfo;
Chris Lattnerc6b0fb32004-04-04 17:30:06 +000030template<typename T> class generic_gep_type_iterator;
Brian Gaekedfa58492003-12-11 00:23:28 +000031class ConstantExpr;
Chris Lattner702a8a02004-04-04 19:47:06 +000032typedef generic_gep_type_iterator<User::const_op_iterator> gep_type_iterator;
Chris Lattnerc6b0fb32004-04-04 17:30:06 +000033
Chris Lattner92101ac2001-08-23 17:05:04 +000034
Chris Lattner9bffa732002-02-19 18:50:09 +000035// AllocaHolder - Object to track all of the blocks of memory allocated by
Brian Gaekedfa58492003-12-11 00:23:28 +000036// alloca. When the function returns, this object is popped off the execution
Chris Lattner9bffa732002-02-19 18:50:09 +000037// stack, which causes the dtor to be run, which frees all the alloca'd memory.
38//
39class AllocaHolder {
40 friend class AllocaHolderHandle;
41 std::vector<void*> Allocations;
42 unsigned RefCnt;
43public:
44 AllocaHolder() : RefCnt(0) {}
45 void add(void *mem) { Allocations.push_back(mem); }
46 ~AllocaHolder() {
47 for (unsigned i = 0; i < Allocations.size(); ++i)
48 free(Allocations[i]);
49 }
50};
51
52// AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
53// a vector...
54//
55class AllocaHolderHandle {
56 AllocaHolder *H;
57public:
58 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; }
59 AllocaHolderHandle(const AllocaHolderHandle &AH) : H(AH.H) { H->RefCnt++; }
60 ~AllocaHolderHandle() { if (--H->RefCnt == 0) delete H; }
61
62 void add(void *mem) { H->add(mem); }
63};
64
Chris Lattner697954c2002-01-20 22:54:45 +000065typedef std::vector<GenericValue> ValuePlaneTy;
Chris Lattner92101ac2001-08-23 17:05:04 +000066
67// ExecutionContext struct - This struct represents one stack frame currently
68// executing.
69//
70struct ExecutionContext {
Chris Lattnerda82ed52003-05-08 16:18:31 +000071 Function *CurFunction;// The currently executing function
Chris Lattner92101ac2001-08-23 17:05:04 +000072 BasicBlock *CurBB; // The currently executing BB
73 BasicBlock::iterator CurInst; // The next instruction to execute
Brian Gaekef143d3c2003-10-24 19:59:37 +000074 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
Chris Lattnercdf51782003-05-08 16:06:52 +000075 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
Brian Gaeke2cb474c2003-11-07 19:26:23 +000076 CallSite Caller; // Holds the call that called subframes.
77 // NULL if main func or debugger invoked fn
Chris Lattner9bffa732002-02-19 18:50:09 +000078 AllocaHolderHandle Allocas; // Track memory allocated by alloca
Chris Lattner92101ac2001-08-23 17:05:04 +000079};
80
Chris Lattner92101ac2001-08-23 17:05:04 +000081// Interpreter - This class represents the entirety of the interpreter.
82//
Chris Lattnerd7916e92003-05-10 21:22:39 +000083class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
Jeff Cohen8c9191c2006-02-07 05:29:44 +000084 GenericValue ExitValue; // The return value of the called function
Chris Lattnerfe11a972002-12-23 23:59:41 +000085 TargetData TD;
Chris Lattner73011782003-12-28 09:44:37 +000086 IntrinsicLowering *IL;
Chris Lattner92101ac2001-08-23 17:05:04 +000087
88 // The runtime stack of executing code. The top of the stack is the current
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000089 // function record.
Chris Lattner697954c2002-01-20 22:54:45 +000090 std::vector<ExecutionContext> ECStack;
Chris Lattner92101ac2001-08-23 17:05:04 +000091
Brian Gaeke70975ee2003-09-05 18:42:01 +000092 // AtExitHandlers - List of functions to call when the program exits,
93 // registered with the atexit() library function.
Chris Lattner44edb6b2003-05-14 14:21:30 +000094 std::vector<Function*> AtExitHandlers;
Chris Lattner63bd6132003-09-17 17:26:22 +000095
Chris Lattner92101ac2001-08-23 17:05:04 +000096public:
Chris Lattner276f4b52006-06-16 18:08:38 +000097 Interpreter(Module *M);
Chris Lattner73011782003-12-28 09:44:37 +000098 ~Interpreter();
Chris Lattner92101ac2001-08-23 17:05:04 +000099
Chris Lattner2cab55d2003-12-26 06:13:05 +0000100 /// runAtExitHandlers - Run any functions registered by the program's calls to
101 /// atexit(3), which we intercept and store in AtExitHandlers.
Brian Gaeke70975ee2003-09-05 18:42:01 +0000102 ///
Chris Lattner2cab55d2003-12-26 06:13:05 +0000103 void runAtExitHandlers();
Brian Gaeke70975ee2003-09-05 18:42:01 +0000104
Chris Lattner2fe4bb02006-03-22 06:07:50 +0000105 static void Register() {
106 InterpCtor = create;
107 }
108
Chris Lattner726c1ef2006-03-23 05:22:51 +0000109 /// create - Create an interpreter ExecutionEngine. This can never fail.
Brian Gaeke82d82772003-09-03 20:34:19 +0000110 ///
Chris Lattner726c1ef2006-03-23 05:22:51 +0000111 static ExecutionEngine *create(ModuleProvider *M);
Brian Gaeke82d82772003-09-03 20:34:19 +0000112
Chris Lattnerfe11a972002-12-23 23:59:41 +0000113 /// run - Start execution with the specified function and arguments.
114 ///
Chris Lattner2cab55d2003-12-26 06:13:05 +0000115 virtual GenericValue runFunction(Function *F,
116 const std::vector<GenericValue> &ArgValues);
Chris Lattner92101ac2001-08-23 17:05:04 +0000117
Chris Lattnere63fc8b2003-12-08 08:23:04 +0000118 /// recompileAndRelinkFunction - For the interpreter, functions are always
119 /// up-to-date.
120 ///
121 virtual void *recompileAndRelinkFunction(Function *F) {
122 return getPointerToFunction(F);
123 }
124
Misha Brukman895eddf2004-11-07 23:58:46 +0000125 /// freeMachineCodeForFunction - The interpreter does not generate any code.
126 ///
127 void freeMachineCodeForFunction(Function *F) { }
Misha Brukmand1c881a2005-04-21 22:43:08 +0000128
Brian Gaeke70975ee2003-09-05 18:42:01 +0000129 // Methods used to execute code:
130 // Place a call on the stack
Chris Lattnerda82ed52003-05-08 16:18:31 +0000131 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
Brian Gaeke70975ee2003-09-05 18:42:01 +0000132 void run(); // Execute instructions until nothing left to do
Chris Lattner92101ac2001-08-23 17:05:04 +0000133
134 // Opcode Implementations
Chris Lattnerd7916e92003-05-10 21:22:39 +0000135 void visitReturnInst(ReturnInst &I);
136 void visitBranchInst(BranchInst &I);
137 void visitSwitchInst(SwitchInst &I);
138
139 void visitBinaryOperator(BinaryOperator &I);
140 void visitAllocationInst(AllocationInst &I);
141 void visitFreeInst(FreeInst &I);
142 void visitLoadInst(LoadInst &I);
143 void visitStoreInst(StoreInst &I);
144 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000145 void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); }
146 void visitCastInst(CastInst &I);
Chris Lattner759d34f2004-04-20 16:43:21 +0000147 void visitSelectInst(SelectInst &I);
148
Brian Gaekefea483d2003-11-07 20:04:22 +0000149
150 void visitCallSite(CallSite CS);
151 void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
152 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
Brian Gaeke9bf06b12003-11-07 20:07:06 +0000153 void visitUnwindInst(UnwindInst &I);
Chris Lattnerec7c1ab2004-10-16 18:21:33 +0000154 void visitUnreachableInst(UnreachableInst &I);
Brian Gaekefea483d2003-11-07 20:04:22 +0000155
Chris Lattnerd7916e92003-05-10 21:22:39 +0000156 void visitShl(ShiftInst &I);
Reid Spencer3822ff52006-11-08 06:47:33 +0000157 void visitLShr(ShiftInst &I);
158 void visitAShr(ShiftInst &I);
Brian Gaekec1a2be12003-11-07 21:20:47 +0000159 void visitVAArgInst(VAArgInst &I);
Chris Lattnerd7916e92003-05-10 21:22:39 +0000160 void visitInstruction(Instruction &I) {
161 std::cerr << I;
162 assert(0 && "Instruction not interpretable yet!");
163 }
164
Misha Brukmand1c881a2005-04-21 22:43:08 +0000165 GenericValue callExternalFunction(Function *F,
Chris Lattnerda82ed52003-05-08 16:18:31 +0000166 const std::vector<GenericValue> &ArgVals);
Chris Lattnere43db882001-10-27 04:15:57 +0000167 void exitCalled(GenericValue GV);
Chris Lattner92101ac2001-08-23 17:05:04 +0000168
Chris Lattner44edb6b2003-05-14 14:21:30 +0000169 void addAtExitHandler(Function *F) {
170 AtExitHandlers.push_back(F);
171 }
172
Brian Gaeke8da17482003-11-13 06:06:01 +0000173 GenericValue *getFirstVarArg () {
Brian Gaekee6258902004-02-13 06:18:39 +0000174 return &(ECStack.back ().VarArgs[0]);
Brian Gaeke8da17482003-11-13 06:06:01 +0000175 }
176
Chris Lattnerfe11a972002-12-23 23:59:41 +0000177 //FIXME: private:
178public:
Chris Lattner4af6de82003-11-25 20:44:56 +0000179 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
Misha Brukman3c944972005-04-22 04:08:30 +0000180 gep_type_iterator E, ExecutionContext &SF);
Chris Lattnerfe11a972002-12-23 23:59:41 +0000181
Chris Lattner92101ac2001-08-23 17:05:04 +0000182private: // Helper functions
Chris Lattner77113b62003-05-10 20:21:16 +0000183 // SwitchToNewBasicBlock - Start execution in a new basic block and run any
184 // PHI nodes in the top of the block. This is used for intraprocedural
185 // control flow.
Misha Brukmand1c881a2005-04-21 22:43:08 +0000186 //
Chris Lattner77113b62003-05-10 20:21:16 +0000187 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
188
Brian Gaekefb0ef2e2003-08-13 18:17:54 +0000189 void *getPointerToFunction(Function *F) { return (void*)F; }
Chris Lattnerfe11a972002-12-23 23:59:41 +0000190
Chris Lattner5deea3c2001-10-30 20:28:23 +0000191 void initializeExecutionEngine();
Chris Lattnerda82ed52003-05-08 16:18:31 +0000192 void initializeExternalFunctions();
Brian Gaekedfa58492003-12-11 00:23:28 +0000193 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
Brian Gaeke29794cb2003-09-05 18:55:03 +0000194 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
Reid Spencer3da59db2006-11-27 01:05:10 +0000195 GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal,
196 const Type *Ty, ExecutionContext &SF);
Brian Gaekeaf955ba2003-11-07 05:22:49 +0000197 void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result);
Chris Lattner92101ac2001-08-23 17:05:04 +0000198};
199
Brian Gaeked0fde302003-11-11 22:41:34 +0000200} // End llvm namespace
201
Chris Lattner92101ac2001-08-23 17:05:04 +0000202#endif