Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- JIT.h - Class definition for the JIT --------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 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. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the top-level JIT data structure. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef JIT_H |
| 15 | #define JIT_H |
| 16 | |
| 17 | #include "llvm/ExecutionEngine/ExecutionEngine.h" |
| 18 | #include "llvm/PassManager.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 19 | |
| 20 | namespace llvm { |
| 21 | |
| 22 | class Function; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 23 | class TargetMachine; |
| 24 | class TargetJITInfo; |
| 25 | class MachineCodeEmitter; |
| 26 | |
| 27 | class JITState { |
| 28 | private: |
| 29 | FunctionPassManager PM; // Passes to compile a function |
Nate Begeman | 7b1a847 | 2009-02-18 08:31:02 +0000 | [diff] [blame] | 30 | ModuleProvider *MP; // ModuleProvider used to create the PM |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 31 | |
Nate Begeman | 7b1a847 | 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; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 35 | |
| 36 | public: |
Nate Begeman | 7b1a847 | 2009-02-18 08:31:02 +0000 | [diff] [blame] | 37 | explicit JITState(ModuleProvider *MP) : PM(MP), MP(MP) {} |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 38 | |
| 39 | FunctionPassManager &getPM(const MutexGuard &L) { |
| 40 | return PM; |
| 41 | } |
Nate Begeman | 7b1a847 | 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; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +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 | f7113d9 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 55 | JITState *jitstate; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 56 | |
Chris Lattner | 4db98aa | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 57 | JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji, |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame^] | 58 | JITMemoryManager *JMM, CodeGenOpt::Level OptLevel); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 59 | public: |
| 60 | ~JIT(); |
| 61 | |
| 62 | static void Register() { |
| 63 | JITCtor = create; |
| 64 | } |
| 65 | |
| 66 | /// getJITInfo - Return the target JIT information structure. |
| 67 | /// |
| 68 | TargetJITInfo &getJITInfo() const { return TJI; } |
| 69 | |
| 70 | /// create - Create an return a new JIT compiler if there is one available |
| 71 | /// for the current target. Otherwise, return null. |
| 72 | /// |
Evan Cheng | a6394fc | 2008-08-08 08:11:34 +0000 | [diff] [blame] | 73 | static ExecutionEngine *create(ModuleProvider *MP, std::string *Err, |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame^] | 74 | CodeGenOpt::Level OptLevel = |
| 75 | CodeGenOpt::Default) { |
Bill Wendling | 277d727 | 2009-04-29 00:32:19 +0000 | [diff] [blame] | 76 | return createJIT(MP, Err, 0, OptLevel); |
Chris Lattner | 4db98aa | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 77 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 78 | |
Nate Begeman | f7113d9 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 79 | virtual void addModuleProvider(ModuleProvider *MP); |
Nate Begeman | b34045e | 2009-01-23 19:27:28 +0000 | [diff] [blame] | 80 | |
| 81 | /// removeModuleProvider - Remove a ModuleProvider from the list of modules. |
| 82 | /// Relases the Module from the ModuleProvider, materializing it in the |
| 83 | /// process, and returns the materialized Module. |
Nate Begeman | f7113d9 | 2008-05-21 16:34:48 +0000 | [diff] [blame] | 84 | virtual Module *removeModuleProvider(ModuleProvider *MP, |
| 85 | std::string *ErrInfo = 0); |
| 86 | |
Nate Begeman | b34045e | 2009-01-23 19:27:28 +0000 | [diff] [blame] | 87 | /// deleteModuleProvider - Remove a ModuleProvider from the list of modules, |
| 88 | /// and deletes the ModuleProvider and owned Module. Avoids materializing |
| 89 | /// the underlying module. |
| 90 | virtual void deleteModuleProvider(ModuleProvider *P,std::string *ErrInfo = 0); |
| 91 | |
Dan Gohman | a744012 | 2008-07-03 00:51:05 +0000 | [diff] [blame] | 92 | /// runFunction - Start execution with the specified function and arguments. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 93 | /// |
| 94 | virtual GenericValue runFunction(Function *F, |
| 95 | const std::vector<GenericValue> &ArgValues); |
| 96 | |
| 97 | /// getPointerToNamedFunction - This method returns the address of the |
| 98 | /// specified function by using the dlsym function call. As such it is only |
| 99 | /// useful for resolving library symbols, not code generated symbols. |
| 100 | /// |
Dan Gohman | 0ae3962 | 2009-01-05 05:32:42 +0000 | [diff] [blame] | 101 | /// If AbortOnFailure is false and no function with the given name is |
| 102 | /// found, this function silently returns a null pointer. Otherwise, |
| 103 | /// it prints a message to stderr and aborts. |
| 104 | /// |
| 105 | void *getPointerToNamedFunction(const std::string &Name, |
| 106 | bool AbortOnFailure = true); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 107 | |
| 108 | // CompilationCallback - Invoked the first time that a call site is found, |
| 109 | // which causes lazy compilation of the target function. |
| 110 | // |
| 111 | static void CompilationCallback(); |
| 112 | |
| 113 | /// getPointerToFunction - This returns the address of the specified function, |
| 114 | /// compiling it if necessary. |
| 115 | /// |
| 116 | void *getPointerToFunction(Function *F); |
| 117 | |
| 118 | /// getOrEmitGlobalVariable - Return the address of the specified global |
| 119 | /// variable, possibly emitting it to memory if needed. This is used by the |
| 120 | /// Emitter. |
| 121 | void *getOrEmitGlobalVariable(const GlobalVariable *GV); |
| 122 | |
| 123 | /// getPointerToFunctionOrStub - If the specified function has been |
| 124 | /// code-gen'd, return a pointer to the function. If not, compile it, or use |
| 125 | /// a stub to implement lazy compilation if available. |
| 126 | /// |
| 127 | void *getPointerToFunctionOrStub(Function *F); |
| 128 | |
| 129 | /// recompileAndRelinkFunction - This method is used to force a function |
| 130 | /// which has already been compiled, to be compiled again, possibly |
| 131 | /// after it has been modified. Then the entry to the old copy is overwritten |
| 132 | /// with a branch to the new copy. If there was no old copy, this acts |
| 133 | /// just like JIT::getPointerToFunction(). |
| 134 | /// |
| 135 | void *recompileAndRelinkFunction(Function *F); |
| 136 | |
| 137 | /// freeMachineCodeForFunction - deallocate memory used to code-generate this |
| 138 | /// Function. |
| 139 | /// |
| 140 | void freeMachineCodeForFunction(Function *F); |
| 141 | |
Nate Begeman | 7b1a847 | 2009-02-18 08:31:02 +0000 | [diff] [blame] | 142 | /// addPendingFunction - while jitting non-lazily, a called but non-codegen'd |
| 143 | /// function was encountered. Add it to a pending list to be processed after |
| 144 | /// the current function. |
| 145 | /// |
| 146 | void addPendingFunction(Function *F); |
| 147 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 148 | /// getCodeEmitter - Return the code emitter this JIT is emitting into. |
| 149 | MachineCodeEmitter *getCodeEmitter() const { return MCE; } |
Chris Lattner | 4db98aa | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 150 | |
| 151 | static ExecutionEngine *createJIT(ModuleProvider *MP, std::string *Err, |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame^] | 152 | JITMemoryManager *JMM, |
| 153 | CodeGenOpt::Level OptLevel); |
Chris Lattner | 4db98aa | 2007-12-06 01:34:04 +0000 | [diff] [blame] | 154 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 155 | private: |
Chris Lattner | e44be00 | 2007-12-06 01:08:09 +0000 | [diff] [blame] | 156 | static MachineCodeEmitter *createEmitter(JIT &J, JITMemoryManager *JMM); |
Dan Gohman | 2970af1 | 2009-02-06 21:25:08 +0000 | [diff] [blame] | 157 | void runJITOnFunction(Function *F); |
| 158 | void runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked); |
Nate Begeman | 7b1a847 | 2009-02-18 08:31:02 +0000 | [diff] [blame] | 159 | void updateFunctionStub(Function *F); |
| 160 | void updateDlsymStubTable(); |
| 161 | |
Nicolas Geoffray | 46fa153 | 2008-10-25 15:41:43 +0000 | [diff] [blame] | 162 | protected: |
| 163 | |
| 164 | /// getMemoryforGV - Allocate memory for a global variable. |
| 165 | virtual char* getMemoryForGV(const GlobalVariable* GV); |
| 166 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 167 | }; |
| 168 | |
| 169 | } // End llvm namespace |
| 170 | |
| 171 | #endif |