zpu: wip eke out some simple instructions for load/store/add
[llvm/zpu.git] / lib / ExecutionEngine / Interpreter / Interpreter.h
blob564e9abad9e7f784dd1b54937c970ac26cd80eec
1 //===-- Interpreter.h ------------------------------------------*- C++ -*--===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This header file defines the interpreter structure
12 //===----------------------------------------------------------------------===//
14 #ifndef LLI_INTERPRETER_H
15 #define LLI_INTERPRETER_H
17 #include "llvm/Function.h"
18 #include "llvm/ExecutionEngine/ExecutionEngine.h"
19 #include "llvm/ExecutionEngine/GenericValue.h"
20 #include "llvm/Target/TargetData.h"
21 #include "llvm/Support/CallSite.h"
22 #include "llvm/System/DataTypes.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/InstVisitor.h"
25 #include "llvm/Support/raw_ostream.h"
26 namespace llvm {
28 class IntrinsicLowering;
29 struct FunctionInfo;
30 template<typename T> class generic_gep_type_iterator;
31 class ConstantExpr;
32 typedef generic_gep_type_iterator<User::const_op_iterator> gep_type_iterator;
35 // AllocaHolder - Object to track all of the blocks of memory allocated by
36 // alloca. When the function returns, this object is popped off the execution
37 // stack, which causes the dtor to be run, which frees all the alloca'd memory.
39 class AllocaHolder {
40 friend class AllocaHolderHandle;
41 std::vector<void*> Allocations;
42 unsigned RefCnt;
43 public:
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]);
52 // AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
53 // a vector...
55 class AllocaHolderHandle {
56 AllocaHolder *H;
57 public:
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; }
62 void add(void *mem) { H->add(mem); }
65 typedef std::vector<GenericValue> ValuePlaneTy;
67 // ExecutionContext struct - This struct represents one stack frame currently
68 // executing.
70 struct ExecutionContext {
71 Function *CurFunction;// The currently executing function
72 BasicBlock *CurBB; // The currently executing BB
73 BasicBlock::iterator CurInst; // The next instruction to execute
74 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
75 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
76 CallSite Caller; // Holds the call that called subframes.
77 // NULL if main func or debugger invoked fn
78 AllocaHolderHandle Allocas; // Track memory allocated by alloca
81 // Interpreter - This class represents the entirety of the interpreter.
83 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
84 GenericValue ExitValue; // The return value of the called function
85 TargetData TD;
86 IntrinsicLowering *IL;
88 // The runtime stack of executing code. The top of the stack is the current
89 // function record.
90 std::vector<ExecutionContext> ECStack;
92 // AtExitHandlers - List of functions to call when the program exits,
93 // registered with the atexit() library function.
94 std::vector<Function*> AtExitHandlers;
96 public:
97 explicit Interpreter(Module *M);
98 ~Interpreter();
100 /// runAtExitHandlers - Run any functions registered by the program's calls to
101 /// atexit(3), which we intercept and store in AtExitHandlers.
103 void runAtExitHandlers();
105 static void Register() {
106 InterpCtor = create;
109 /// create - Create an interpreter ExecutionEngine. This can never fail.
111 static ExecutionEngine *create(Module *M, std::string *ErrorStr = 0);
113 /// run - Start execution with the specified function and arguments.
115 virtual GenericValue runFunction(Function *F,
116 const std::vector<GenericValue> &ArgValues);
118 /// recompileAndRelinkFunction - For the interpreter, functions are always
119 /// up-to-date.
121 virtual void *recompileAndRelinkFunction(Function *F) {
122 return getPointerToFunction(F);
125 /// freeMachineCodeForFunction - The interpreter does not generate any code.
127 void freeMachineCodeForFunction(Function *F) { }
129 // Methods used to execute code:
130 // Place a call on the stack
131 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
132 void run(); // Execute instructions until nothing left to do
134 // Opcode Implementations
135 void visitReturnInst(ReturnInst &I);
136 void visitBranchInst(BranchInst &I);
137 void visitSwitchInst(SwitchInst &I);
138 void visitIndirectBrInst(IndirectBrInst &I);
140 void visitBinaryOperator(BinaryOperator &I);
141 void visitICmpInst(ICmpInst &I);
142 void visitFCmpInst(FCmpInst &I);
143 void visitAllocaInst(AllocaInst &I);
144 void visitLoadInst(LoadInst &I);
145 void visitStoreInst(StoreInst &I);
146 void visitGetElementPtrInst(GetElementPtrInst &I);
147 void visitPHINode(PHINode &PN) {
148 llvm_unreachable("PHI nodes already handled!");
150 void visitTruncInst(TruncInst &I);
151 void visitZExtInst(ZExtInst &I);
152 void visitSExtInst(SExtInst &I);
153 void visitFPTruncInst(FPTruncInst &I);
154 void visitFPExtInst(FPExtInst &I);
155 void visitUIToFPInst(UIToFPInst &I);
156 void visitSIToFPInst(SIToFPInst &I);
157 void visitFPToUIInst(FPToUIInst &I);
158 void visitFPToSIInst(FPToSIInst &I);
159 void visitPtrToIntInst(PtrToIntInst &I);
160 void visitIntToPtrInst(IntToPtrInst &I);
161 void visitBitCastInst(BitCastInst &I);
162 void visitSelectInst(SelectInst &I);
165 void visitCallSite(CallSite CS);
166 void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
167 void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
168 void visitUnwindInst(UnwindInst &I);
169 void visitUnreachableInst(UnreachableInst &I);
171 void visitShl(BinaryOperator &I);
172 void visitLShr(BinaryOperator &I);
173 void visitAShr(BinaryOperator &I);
175 void visitVAArgInst(VAArgInst &I);
176 void visitInstruction(Instruction &I) {
177 errs() << I;
178 llvm_unreachable("Instruction not interpretable yet!");
181 GenericValue callExternalFunction(Function *F,
182 const std::vector<GenericValue> &ArgVals);
183 void exitCalled(GenericValue GV);
185 void addAtExitHandler(Function *F) {
186 AtExitHandlers.push_back(F);
189 GenericValue *getFirstVarArg () {
190 return &(ECStack.back ().VarArgs[0]);
193 private: // Helper functions
194 GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
195 gep_type_iterator E, ExecutionContext &SF);
197 // SwitchToNewBasicBlock - Start execution in a new basic block and run any
198 // PHI nodes in the top of the block. This is used for intraprocedural
199 // control flow.
201 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
203 void *getPointerToFunction(Function *F) { return (void*)F; }
204 void *getPointerToBasicBlock(BasicBlock *BB) { return (void*)BB; }
206 void initializeExecutionEngine() { }
207 void initializeExternalFunctions();
208 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
209 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
210 GenericValue executeTruncInst(Value *SrcVal, const Type *DstTy,
211 ExecutionContext &SF);
212 GenericValue executeSExtInst(Value *SrcVal, const Type *DstTy,
213 ExecutionContext &SF);
214 GenericValue executeZExtInst(Value *SrcVal, const Type *DstTy,
215 ExecutionContext &SF);
216 GenericValue executeFPTruncInst(Value *SrcVal, const Type *DstTy,
217 ExecutionContext &SF);
218 GenericValue executeFPExtInst(Value *SrcVal, const Type *DstTy,
219 ExecutionContext &SF);
220 GenericValue executeFPToUIInst(Value *SrcVal, const Type *DstTy,
221 ExecutionContext &SF);
222 GenericValue executeFPToSIInst(Value *SrcVal, const Type *DstTy,
223 ExecutionContext &SF);
224 GenericValue executeUIToFPInst(Value *SrcVal, const Type *DstTy,
225 ExecutionContext &SF);
226 GenericValue executeSIToFPInst(Value *SrcVal, const Type *DstTy,
227 ExecutionContext &SF);
228 GenericValue executePtrToIntInst(Value *SrcVal, const Type *DstTy,
229 ExecutionContext &SF);
230 GenericValue executeIntToPtrInst(Value *SrcVal, const Type *DstTy,
231 ExecutionContext &SF);
232 GenericValue executeBitCastInst(Value *SrcVal, const Type *DstTy,
233 ExecutionContext &SF);
234 GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal,
235 const Type *Ty, ExecutionContext &SF);
236 void popStackAndReturnValueToCaller(const Type *RetTy, GenericValue Result);
240 } // End llvm namespace
242 #endif