Reinstate "Nuke the old JIT."
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / Interpreter.h
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
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_EXECUTIONENGINE_INTERPRETER_INTERPRETER_H
15 #define LLVM_LIB_EXECUTIONENGINE_INTERPRETER_INTERPRETER_H
16
17 #include "llvm/ExecutionEngine/ExecutionEngine.h"
18 #include "llvm/ExecutionEngine/GenericValue.h"
19 #include "llvm/IR/CallSite.h"
20 #include "llvm/IR/DataLayout.h"
21 #include "llvm/IR/Function.h"
22 #include "llvm/IR/InstVisitor.h"
23 #include "llvm/Support/DataTypes.h"
24 #include "llvm/Support/ErrorHandling.h"
25 #include "llvm/Support/raw_ostream.h"
26 namespace llvm {
27
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;
33
34
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.
38 //
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]);
49   }
50 };
51
52 // AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
53 // a vector...
54 //
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; }
61
62   void add(void *mem) { H->add(mem); }
63 };
64
65 typedef std::vector<GenericValue> ValuePlaneTy;
66
67 // ExecutionContext struct - This struct represents one stack frame currently
68 // executing.
69 //
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
79 };
80
81 // Interpreter - This class represents the entirety of the interpreter.
82 //
83 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
84   GenericValue ExitValue;          // The return value of the called function
85   DataLayout TD;
86   IntrinsicLowering *IL;
87
88   // The runtime stack of executing code.  The top of the stack is the current
89   // function record.
90   std::vector<ExecutionContext> ECStack;
91
92   // AtExitHandlers - List of functions to call when the program exits,
93   // registered with the atexit() library function.
94   std::vector<Function*> AtExitHandlers;
95
96 public:
97   explicit Interpreter(std::unique_ptr<Module> M);
98   ~Interpreter();
99
100   /// runAtExitHandlers - Run any functions registered by the program's calls to
101   /// atexit(3), which we intercept and store in AtExitHandlers.
102   ///
103   void runAtExitHandlers();
104
105   static void Register() {
106     InterpCtor = create;
107   }
108
109   /// Create an interpreter ExecutionEngine.
110   ///
111   static ExecutionEngine *create(std::unique_ptr<Module> M,
112                                  std::string *ErrorStr = nullptr);
113
114   /// run - Start execution with the specified function and arguments.
115   ///
116   GenericValue runFunction(Function *F,
117                            const std::vector<GenericValue> &ArgValues) override;
118
119   void *getPointerToNamedFunction(const std::string &Name,
120                                   bool AbortOnFailure = true) override {
121     // FIXME: not implemented.
122     return nullptr;
123   }
124
125   // Methods used to execute code:
126   // Place a call on the stack
127   void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
128   void run();                // Execute instructions until nothing left to do
129
130   // Opcode Implementations
131   void visitReturnInst(ReturnInst &I);
132   void visitBranchInst(BranchInst &I);
133   void visitSwitchInst(SwitchInst &I);
134   void visitIndirectBrInst(IndirectBrInst &I);
135
136   void visitBinaryOperator(BinaryOperator &I);
137   void visitICmpInst(ICmpInst &I);
138   void visitFCmpInst(FCmpInst &I);
139   void visitAllocaInst(AllocaInst &I);
140   void visitLoadInst(LoadInst &I);
141   void visitStoreInst(StoreInst &I);
142   void visitGetElementPtrInst(GetElementPtrInst &I);
143   void visitPHINode(PHINode &PN) { 
144     llvm_unreachable("PHI nodes already handled!"); 
145   }
146   void visitTruncInst(TruncInst &I);
147   void visitZExtInst(ZExtInst &I);
148   void visitSExtInst(SExtInst &I);
149   void visitFPTruncInst(FPTruncInst &I);
150   void visitFPExtInst(FPExtInst &I);
151   void visitUIToFPInst(UIToFPInst &I);
152   void visitSIToFPInst(SIToFPInst &I);
153   void visitFPToUIInst(FPToUIInst &I);
154   void visitFPToSIInst(FPToSIInst &I);
155   void visitPtrToIntInst(PtrToIntInst &I);
156   void visitIntToPtrInst(IntToPtrInst &I);
157   void visitBitCastInst(BitCastInst &I);
158   void visitSelectInst(SelectInst &I);
159
160
161   void visitCallSite(CallSite CS);
162   void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); }
163   void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); }
164   void visitUnreachableInst(UnreachableInst &I);
165
166   void visitShl(BinaryOperator &I);
167   void visitLShr(BinaryOperator &I);
168   void visitAShr(BinaryOperator &I);
169
170   void visitVAArgInst(VAArgInst &I);
171   void visitExtractElementInst(ExtractElementInst &I);
172   void visitInsertElementInst(InsertElementInst &I);
173   void visitShuffleVectorInst(ShuffleVectorInst &I);
174
175   void visitExtractValueInst(ExtractValueInst &I);
176   void visitInsertValueInst(InsertValueInst &I);
177
178   void visitInstruction(Instruction &I) {
179     errs() << I << "\n";
180     llvm_unreachable("Instruction not interpretable yet!");
181   }
182
183   GenericValue callExternalFunction(Function *F,
184                                     const std::vector<GenericValue> &ArgVals);
185   void exitCalled(GenericValue GV);
186
187   void addAtExitHandler(Function *F) {
188     AtExitHandlers.push_back(F);
189   }
190
191   GenericValue *getFirstVarArg () {
192     return &(ECStack.back ().VarArgs[0]);
193   }
194
195 private:  // Helper functions
196   GenericValue executeGEPOperation(Value *Ptr, gep_type_iterator I,
197                                    gep_type_iterator E, ExecutionContext &SF);
198
199   // SwitchToNewBasicBlock - Start execution in a new basic block and run any
200   // PHI nodes in the top of the block.  This is used for intraprocedural
201   // control flow.
202   //
203   void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
204
205   void *getPointerToFunction(Function *F) override { return (void*)F; }
206
207   void initializeExecutionEngine() { }
208   void initializeExternalFunctions();
209   GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
210   GenericValue getOperandValue(Value *V, ExecutionContext &SF);
211   GenericValue executeTruncInst(Value *SrcVal, Type *DstTy,
212                                 ExecutionContext &SF);
213   GenericValue executeSExtInst(Value *SrcVal, Type *DstTy,
214                                ExecutionContext &SF);
215   GenericValue executeZExtInst(Value *SrcVal, Type *DstTy,
216                                ExecutionContext &SF);
217   GenericValue executeFPTruncInst(Value *SrcVal, Type *DstTy,
218                                   ExecutionContext &SF);
219   GenericValue executeFPExtInst(Value *SrcVal, Type *DstTy,
220                                 ExecutionContext &SF);
221   GenericValue executeFPToUIInst(Value *SrcVal, Type *DstTy,
222                                  ExecutionContext &SF);
223   GenericValue executeFPToSIInst(Value *SrcVal, Type *DstTy,
224                                  ExecutionContext &SF);
225   GenericValue executeUIToFPInst(Value *SrcVal, Type *DstTy,
226                                  ExecutionContext &SF);
227   GenericValue executeSIToFPInst(Value *SrcVal, Type *DstTy,
228                                  ExecutionContext &SF);
229   GenericValue executePtrToIntInst(Value *SrcVal, Type *DstTy,
230                                    ExecutionContext &SF);
231   GenericValue executeIntToPtrInst(Value *SrcVal, Type *DstTy,
232                                    ExecutionContext &SF);
233   GenericValue executeBitCastInst(Value *SrcVal, Type *DstTy,
234                                   ExecutionContext &SF);
235   GenericValue executeCastOperation(Instruction::CastOps opcode, Value *SrcVal, 
236                                     Type *Ty, ExecutionContext &SF);
237   void popStackAndReturnValueToCaller(Type *RetTy, GenericValue Result);
238
239 };
240
241 } // End llvm namespace
242
243 #endif