Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 1 | //===-- VM.h - Definitions for Virtual Machine ------------------*- C++ -*-===// |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame^] | 2 | // |
| 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 Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines the top-level Virtual Machine data structure. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef VM_H |
| 15 | #define VM_H |
| 16 | |
Brian Gaeke | 9722294 | 2003-09-05 19:39:22 +0000 | [diff] [blame] | 17 | #include "llvm/ExecutionEngine/ExecutionEngine.h" |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 18 | #include "llvm/PassManager.h" |
| 19 | #include <map> |
| 20 | |
| 21 | class Function; |
| 22 | class GlobalValue; |
| 23 | class Constant; |
| 24 | class TargetMachine; |
| 25 | class MachineCodeEmitter; |
| 26 | |
| 27 | class VM : public ExecutionEngine { |
| 28 | TargetMachine &TM; // The current target we are compiling to |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 29 | FunctionPassManager PM; // Passes to compile a function |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 30 | MachineCodeEmitter *MCE; // MCE object |
| 31 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 32 | public: |
Misha Brukman | 005e5e9 | 2003-10-14 21:37:41 +0000 | [diff] [blame] | 33 | VM(ModuleProvider *MP, TargetMachine *tm); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 34 | ~VM(); |
| 35 | |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 36 | /// create - Create an return a new JIT compiler if there is one available |
| 37 | /// for the current target. Otherwise, return null. |
| 38 | /// |
Misha Brukman | 005e5e9 | 2003-10-14 21:37:41 +0000 | [diff] [blame] | 39 | static ExecutionEngine *create(ModuleProvider *MP); |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 41 | /// run - Start execution with the specified function and arguments. |
| 42 | /// |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 43 | virtual GenericValue run(Function *F, |
| 44 | const std::vector<GenericValue> &ArgValues); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 45 | |
Chris Lattner | 0d448c0 | 2003-01-13 01:00:48 +0000 | [diff] [blame] | 46 | /// getPointerToNamedFunction - This method returns the address of the |
| 47 | /// specified function by using the dlsym function call. As such it is only |
| 48 | /// useful for resolving library symbols, not code generated symbols. |
| 49 | /// |
| 50 | void *getPointerToNamedFunction(const std::string &Name); |
| 51 | |
Chris Lattner | c309a76 | 2003-05-08 21:34:11 +0000 | [diff] [blame] | 52 | // CompilationCallback - Invoked the first time that a call site is found, |
| 53 | // which causes lazy compilation of the target function. |
| 54 | // |
| 55 | static void CompilationCallback(); |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 56 | |
| 57 | /// runAtExitHandlers - Before exiting the program, at_exit functions must be |
| 58 | /// called. This method calls them. |
| 59 | /// |
| 60 | static void runAtExitHandlers(); |
| 61 | |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 62 | /// getPointerToFunction - This returns the address of the specified function, |
| 63 | /// compiling it if necessary. |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 64 | /// |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 65 | void *getPointerToFunction(Function *F); |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 66 | |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 67 | /// recompileAndRelinkFunction - This method is used to force a function |
| 68 | /// which has already been compiled, to be compiled again, possibly |
| 69 | /// after it has been modified. Then the entry to the old copy is overwritten |
| 70 | /// with a branch to the new copy. If there was no old copy, this acts |
| 71 | /// just like VM::getPointerToFunction(). |
| 72 | /// |
| 73 | void *recompileAndRelinkFunction(Function *F); |
| 74 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 75 | private: |
Misha Brukman | 906f5fa | 2003-06-02 03:23:16 +0000 | [diff] [blame] | 76 | static MachineCodeEmitter *createEmitter(VM &V); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 77 | void setupPassManager(); |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 78 | void runJITOnFunction (Function *F); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | #endif |