Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 1 | //===-- JIT.h - Class definition for the JIT --------------------*- 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 | // |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 10 | // This file defines the top-level JIT data structure. |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 14 | #ifndef JIT_H |
| 15 | #define JIT_H |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 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 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 21 | namespace llvm { |
| 22 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 23 | class Function; |
| 24 | class GlobalValue; |
| 25 | class Constant; |
| 26 | class TargetMachine; |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 27 | class TargetJITInfo; |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 28 | class MachineCodeEmitter; |
| 29 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 30 | class JIT : public ExecutionEngine { |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 31 | TargetMachine &TM; // The current target we are compiling to |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 32 | TargetJITInfo &TJI; // The JITInfo for the target we are compiling to |
| 33 | |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 34 | FunctionPassManager PM; // Passes to compile a function |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 35 | MachineCodeEmitter *MCE; // MCE object |
| 36 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame^] | 37 | /// PendingGlobals - Global variables which have had memory allocated for them |
| 38 | /// while a function was code generated, but which have not been initialized |
| 39 | /// yet. |
| 40 | std::vector<const GlobalVariable*> PendingGlobals; |
| 41 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 42 | JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 43 | public: |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 44 | ~JIT(); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 45 | |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 46 | /// create - Create an return a new JIT compiler if there is one available |
| 47 | /// for the current target. Otherwise, return null. |
| 48 | /// |
Misha Brukman | 005e5e9 | 2003-10-14 21:37:41 +0000 | [diff] [blame] | 49 | static ExecutionEngine *create(ModuleProvider *MP); |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 51 | /// run - Start execution with the specified function and arguments. |
| 52 | /// |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 53 | virtual GenericValue run(Function *F, |
| 54 | const std::vector<GenericValue> &ArgValues); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 0d448c0 | 2003-01-13 01:00:48 +0000 | [diff] [blame] | 56 | /// getPointerToNamedFunction - This method returns the address of the |
| 57 | /// specified function by using the dlsym function call. As such it is only |
| 58 | /// useful for resolving library symbols, not code generated symbols. |
| 59 | /// |
| 60 | void *getPointerToNamedFunction(const std::string &Name); |
| 61 | |
Chris Lattner | c309a76 | 2003-05-08 21:34:11 +0000 | [diff] [blame] | 62 | // CompilationCallback - Invoked the first time that a call site is found, |
| 63 | // which causes lazy compilation of the target function. |
| 64 | // |
| 65 | static void CompilationCallback(); |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 66 | |
| 67 | /// runAtExitHandlers - Before exiting the program, at_exit functions must be |
| 68 | /// called. This method calls them. |
| 69 | /// |
| 70 | static void runAtExitHandlers(); |
| 71 | |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 72 | /// getPointerToFunction - This returns the address of the specified function, |
| 73 | /// compiling it if necessary. |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 74 | /// |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 75 | void *getPointerToFunction(Function *F); |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 76 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame^] | 77 | /// getOrEmitGlobalVariable - Return the address of the specified global |
| 78 | /// variable, possibly emitting it to memory if needed. This is used by the |
| 79 | /// Emitter. |
| 80 | void *getOrEmitGlobalVariable(const GlobalVariable *GV); |
| 81 | |
Chris Lattner | 993bdce | 2003-12-12 07:12:02 +0000 | [diff] [blame] | 82 | /// getPointerToFunctionOrStub - If the specified function has been |
| 83 | /// code-gen'd, return a pointer to the function. If not, compile it, or use |
| 84 | /// a stub to implement lazy compilation if available. |
| 85 | /// |
| 86 | void *getPointerToFunctionOrStub(Function *F); |
| 87 | |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 88 | /// recompileAndRelinkFunction - This method is used to force a function |
| 89 | /// which has already been compiled, to be compiled again, possibly |
| 90 | /// after it has been modified. Then the entry to the old copy is overwritten |
| 91 | /// with a branch to the new copy. If there was no old copy, this acts |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 92 | /// just like JIT::getPointerToFunction(). |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 93 | /// |
| 94 | void *recompileAndRelinkFunction(Function *F); |
| 95 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 96 | private: |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 97 | static MachineCodeEmitter *createEmitter(JIT &J); |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 98 | void runJITOnFunction (Function *F); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 101 | } // End llvm namespace |
| 102 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 103 | #endif |