Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 1 | //===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 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. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 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 | |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 30 | class JITState { |
| 31 | private: |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 32 | FunctionPassManager PM; // Passes to compile a function |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 33 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 34 | /// PendingGlobals - Global variables which have had memory allocated for them |
| 35 | /// while a function was code generated, but which have not been initialized |
| 36 | /// yet. |
| 37 | std::vector<const GlobalVariable*> PendingGlobals; |
| 38 | |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 39 | public: |
| 40 | JITState(ModuleProvider *MP) : PM(MP) {} |
| 41 | |
| 42 | FunctionPassManager& getPM(const MutexGuard& locked) { |
| 43 | return PM; |
| 44 | } |
| 45 | |
| 46 | std::vector<const GlobalVariable*>& getPendingGlobals(const MutexGuard& locked) { |
| 47 | return PendingGlobals; |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | |
| 52 | class JIT : public ExecutionEngine { |
| 53 | TargetMachine &TM; // The current target we are compiling to |
| 54 | TargetJITInfo &TJI; // The JITInfo for the target we are compiling to |
| 55 | MachineCodeEmitter *MCE; // MCE object |
| 56 | |
| 57 | JITState state; |
| 58 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 59 | JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 60 | public: |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 61 | ~JIT(); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 62 | |
Chris Lattner | 2fe4bb0 | 2006-03-22 06:07:50 +0000 | [diff] [blame] | 63 | static void Register() { |
| 64 | JITCtor = create; |
| 65 | } |
| 66 | |
Chris Lattner | 890b4bd | 2004-11-20 03:11:07 +0000 | [diff] [blame] | 67 | /// getJITInfo - Return the target JIT information structure. |
| 68 | /// |
| 69 | TargetJITInfo &getJITInfo() const { return TJI; } |
| 70 | |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 71 | /// create - Create an return a new JIT compiler if there is one available |
Chris Lattner | 726c1ef | 2006-03-23 05:22:51 +0000 | [diff] [blame] | 72 | /// for the current target. Otherwise, return null. |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 73 | /// |
Chris Lattner | 726c1ef | 2006-03-23 05:22:51 +0000 | [diff] [blame] | 74 | static ExecutionEngine *create(ModuleProvider *MP); |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 75 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 76 | /// run - Start execution with the specified function and arguments. |
| 77 | /// |
Chris Lattner | ff0f1bb | 2003-12-26 06:13:47 +0000 | [diff] [blame] | 78 | virtual GenericValue runFunction(Function *F, |
| 79 | const std::vector<GenericValue> &ArgValues); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 80 | |
Chris Lattner | 0d448c0 | 2003-01-13 01:00:48 +0000 | [diff] [blame] | 81 | /// getPointerToNamedFunction - This method returns the address of the |
| 82 | /// specified function by using the dlsym function call. As such it is only |
| 83 | /// useful for resolving library symbols, not code generated symbols. |
| 84 | /// |
| 85 | void *getPointerToNamedFunction(const std::string &Name); |
| 86 | |
Chris Lattner | c309a76 | 2003-05-08 21:34:11 +0000 | [diff] [blame] | 87 | // CompilationCallback - Invoked the first time that a call site is found, |
| 88 | // which causes lazy compilation of the target function. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 89 | // |
Chris Lattner | c309a76 | 2003-05-08 21:34:11 +0000 | [diff] [blame] | 90 | static void CompilationCallback(); |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 91 | |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 92 | /// getPointerToFunction - This returns the address of the specified function, |
| 93 | /// compiling it if necessary. |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 94 | /// |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 95 | void *getPointerToFunction(Function *F); |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 96 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 97 | /// getOrEmitGlobalVariable - Return the address of the specified global |
| 98 | /// variable, possibly emitting it to memory if needed. This is used by the |
| 99 | /// Emitter. |
| 100 | void *getOrEmitGlobalVariable(const GlobalVariable *GV); |
| 101 | |
Chris Lattner | 993bdce | 2003-12-12 07:12:02 +0000 | [diff] [blame] | 102 | /// getPointerToFunctionOrStub - If the specified function has been |
| 103 | /// code-gen'd, return a pointer to the function. If not, compile it, or use |
| 104 | /// a stub to implement lazy compilation if available. |
| 105 | /// |
| 106 | void *getPointerToFunctionOrStub(Function *F); |
| 107 | |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 108 | /// recompileAndRelinkFunction - This method is used to force a function |
| 109 | /// which has already been compiled, to be compiled again, possibly |
| 110 | /// after it has been modified. Then the entry to the old copy is overwritten |
| 111 | /// 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] | 112 | /// just like JIT::getPointerToFunction(). |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 113 | /// |
| 114 | void *recompileAndRelinkFunction(Function *F); |
| 115 | |
Misha Brukman | 895eddf | 2004-11-07 23:58:46 +0000 | [diff] [blame] | 116 | /// freeMachineCodeForFunction - deallocate memory used to code-generate this |
| 117 | /// Function. |
| 118 | /// |
| 119 | void freeMachineCodeForFunction(Function *F); |
| 120 | |
Chris Lattner | e748401 | 2007-02-24 02:57:03 +0000 | [diff] [blame^] | 121 | /// getCodeEmitter - Return the code emitter this JIT is emitting into. |
| 122 | MachineCodeEmitter *getCodeEmitter() const { return MCE; } |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 123 | private: |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 124 | static MachineCodeEmitter *createEmitter(JIT &J); |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 125 | void runJITOnFunction (Function *F); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 126 | }; |
| 127 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 128 | } // End llvm namespace |
| 129 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 130 | #endif |