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 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // 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" |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 19 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 20 | namespace llvm { |
| 21 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 22 | class Function; |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 23 | class TargetMachine; |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 24 | class TargetJITInfo; |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 25 | class MachineCodeEmitter; |
| 26 | |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 27 | class JITState { |
| 28 | private: |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 29 | FunctionPassManager PM; // Passes to compile a function |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame^] | 30 | ModuleProvider *MP; // ModuleProvider used to create the PM |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 31 | |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame^] | 32 | /// PendingFunctions - Functions which have not been code generated yet, but |
| 33 | /// were called from a function being code generated. |
| 34 | std::vector<Function*> PendingFunctions; |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 35 | |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 36 | public: |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame^] | 37 | explicit JITState(ModuleProvider *MP) : PM(MP), MP(MP) {} |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 38 | |
Chris Lattner | f7e968a | 2007-04-20 22:40:40 +0000 | [diff] [blame] | 39 | FunctionPassManager &getPM(const MutexGuard &L) { |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 40 | return PM; |
| 41 | } |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame^] | 42 | |
| 43 | ModuleProvider *getMP() const { return MP; } |
| 44 | std::vector<Function*> &getPendingFunctions(const MutexGuard &L) { |
| 45 | return PendingFunctions; |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 46 | } |
| 47 | }; |
| 48 | |
| 49 | |
| 50 | class JIT : public ExecutionEngine { |
| 51 | TargetMachine &TM; // The current target we are compiling to |
| 52 | TargetJITInfo &TJI; // The JITInfo for the target we are compiling to |
| 53 | MachineCodeEmitter *MCE; // MCE object |
| 54 | |
Nate Begeman | f049e07 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 55 | JITState *jitstate; |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 56 | |
Chris Lattner | 34c9433 | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 57 | JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji, |
Evan Cheng | 502f20b | 2008-08-08 08:11:34 +0000 | [diff] [blame] | 58 | JITMemoryManager *JMM, bool Fast); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 59 | public: |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 60 | ~JIT(); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 2fe4bb0 | 2006-03-22 06:07:50 +0000 | [diff] [blame] | 62 | static void Register() { |
| 63 | JITCtor = create; |
| 64 | } |
| 65 | |
Chris Lattner | 890b4bd | 2004-11-20 03:11:07 +0000 | [diff] [blame] | 66 | /// getJITInfo - Return the target JIT information structure. |
| 67 | /// |
| 68 | TargetJITInfo &getJITInfo() const { return TJI; } |
| 69 | |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 70 | /// 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] | 71 | /// for the current target. Otherwise, return null. |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 72 | /// |
Evan Cheng | 502f20b | 2008-08-08 08:11:34 +0000 | [diff] [blame] | 73 | static ExecutionEngine *create(ModuleProvider *MP, std::string *Err, |
| 74 | bool Fast = false) { |
| 75 | return createJIT(MP, Err, 0, Fast); |
Chris Lattner | 34c9433 | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 76 | } |
Brian Gaeke | 82d8277 | 2003-09-03 20:34:19 +0000 | [diff] [blame] | 77 | |
Nate Begeman | f049e07 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 78 | virtual void addModuleProvider(ModuleProvider *MP); |
Nate Begeman | 60789e4 | 2009-01-23 19:27:28 +0000 | [diff] [blame] | 79 | |
| 80 | /// removeModuleProvider - Remove a ModuleProvider from the list of modules. |
| 81 | /// Relases the Module from the ModuleProvider, materializing it in the |
| 82 | /// process, and returns the materialized Module. |
Nate Begeman | f049e07 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 83 | virtual Module *removeModuleProvider(ModuleProvider *MP, |
| 84 | std::string *ErrInfo = 0); |
| 85 | |
Nate Begeman | 60789e4 | 2009-01-23 19:27:28 +0000 | [diff] [blame] | 86 | /// deleteModuleProvider - Remove a ModuleProvider from the list of modules, |
| 87 | /// and deletes the ModuleProvider and owned Module. Avoids materializing |
| 88 | /// the underlying module. |
| 89 | virtual void deleteModuleProvider(ModuleProvider *P,std::string *ErrInfo = 0); |
| 90 | |
Dan Gohman | ce3c413 | 2008-07-03 00:51:05 +0000 | [diff] [blame] | 91 | /// runFunction - Start execution with the specified function and arguments. |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 92 | /// |
Chris Lattner | ff0f1bb | 2003-12-26 06:13:47 +0000 | [diff] [blame] | 93 | virtual GenericValue runFunction(Function *F, |
| 94 | const std::vector<GenericValue> &ArgValues); |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 95 | |
Chris Lattner | 0d448c0 | 2003-01-13 01:00:48 +0000 | [diff] [blame] | 96 | /// getPointerToNamedFunction - This method returns the address of the |
| 97 | /// specified function by using the dlsym function call. As such it is only |
| 98 | /// useful for resolving library symbols, not code generated symbols. |
| 99 | /// |
Dan Gohman | 69f9378 | 2009-01-05 05:32:42 +0000 | [diff] [blame] | 100 | /// If AbortOnFailure is false and no function with the given name is |
| 101 | /// found, this function silently returns a null pointer. Otherwise, |
| 102 | /// it prints a message to stderr and aborts. |
| 103 | /// |
| 104 | void *getPointerToNamedFunction(const std::string &Name, |
| 105 | bool AbortOnFailure = true); |
Chris Lattner | 0d448c0 | 2003-01-13 01:00:48 +0000 | [diff] [blame] | 106 | |
Chris Lattner | c309a76 | 2003-05-08 21:34:11 +0000 | [diff] [blame] | 107 | // CompilationCallback - Invoked the first time that a call site is found, |
| 108 | // which causes lazy compilation of the target function. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 109 | // |
Chris Lattner | c309a76 | 2003-05-08 21:34:11 +0000 | [diff] [blame] | 110 | static void CompilationCallback(); |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 111 | |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 112 | /// getPointerToFunction - This returns the address of the specified function, |
| 113 | /// compiling it if necessary. |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 114 | /// |
Brian Gaeke | c227c1f | 2003-08-13 18:16:50 +0000 | [diff] [blame] | 115 | void *getPointerToFunction(Function *F); |
Chris Lattner | bba1b6d | 2003-06-01 23:24:36 +0000 | [diff] [blame] | 116 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 117 | /// getOrEmitGlobalVariable - Return the address of the specified global |
| 118 | /// variable, possibly emitting it to memory if needed. This is used by the |
| 119 | /// Emitter. |
| 120 | void *getOrEmitGlobalVariable(const GlobalVariable *GV); |
| 121 | |
Chris Lattner | 993bdce | 2003-12-12 07:12:02 +0000 | [diff] [blame] | 122 | /// getPointerToFunctionOrStub - If the specified function has been |
| 123 | /// code-gen'd, return a pointer to the function. If not, compile it, or use |
| 124 | /// a stub to implement lazy compilation if available. |
| 125 | /// |
| 126 | void *getPointerToFunctionOrStub(Function *F); |
| 127 | |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 128 | /// recompileAndRelinkFunction - This method is used to force a function |
| 129 | /// which has already been compiled, to be compiled again, possibly |
| 130 | /// after it has been modified. Then the entry to the old copy is overwritten |
| 131 | /// 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] | 132 | /// just like JIT::getPointerToFunction(). |
Brian Gaeke | 55c0f02 | 2003-10-17 18:27:12 +0000 | [diff] [blame] | 133 | /// |
| 134 | void *recompileAndRelinkFunction(Function *F); |
| 135 | |
Misha Brukman | 895eddf | 2004-11-07 23:58:46 +0000 | [diff] [blame] | 136 | /// freeMachineCodeForFunction - deallocate memory used to code-generate this |
| 137 | /// Function. |
| 138 | /// |
| 139 | void freeMachineCodeForFunction(Function *F); |
| 140 | |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame^] | 141 | /// addPendingFunction - while jitting non-lazily, a called but non-codegen'd |
| 142 | /// function was encountered. Add it to a pending list to be processed after |
| 143 | /// the current function. |
| 144 | /// |
| 145 | void addPendingFunction(Function *F); |
| 146 | |
Chris Lattner | e748401 | 2007-02-24 02:57:03 +0000 | [diff] [blame] | 147 | /// getCodeEmitter - Return the code emitter this JIT is emitting into. |
| 148 | MachineCodeEmitter *getCodeEmitter() const { return MCE; } |
Chris Lattner | 34c9433 | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 149 | |
| 150 | static ExecutionEngine *createJIT(ModuleProvider *MP, std::string *Err, |
Evan Cheng | 502f20b | 2008-08-08 08:11:34 +0000 | [diff] [blame] | 151 | JITMemoryManager *JMM, bool Fast); |
Chris Lattner | 34c9433 | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 152 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 153 | private: |
Chris Lattner | 9f2f142 | 2007-12-06 01:08:09 +0000 | [diff] [blame] | 154 | static MachineCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM); |
Dan Gohman | 21afcda | 2009-02-06 21:25:08 +0000 | [diff] [blame] | 155 | void runJITOnFunction(Function *F); |
| 156 | void runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked); |
Nate Begeman | d6b7a24 | 2009-02-18 08:31:02 +0000 | [diff] [blame^] | 157 | void updateFunctionStub(Function *F); |
| 158 | void updateDlsymStubTable(); |
| 159 | |
Nicolas Geoffray | 46fa139 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 160 | protected: |
| 161 | |
| 162 | /// getMemoryforGV - Allocate memory for a global variable. |
| 163 | virtual char* getMemoryForGV(const GlobalVariable* GV); |
| 164 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 165 | }; |
| 166 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 167 | } // End llvm namespace |
| 168 | |
Chris Lattner | 836f675 | 2002-12-24 00:01:22 +0000 | [diff] [blame] | 169 | #endif |