Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 1 | //===-- MCJIT.h - Class definition for the MCJIT ----------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef LLVM_LIB_EXECUTIONENGINE_MCJIT_H |
| 11 | #define LLVM_LIB_EXECUTIONENGINE_MCJIT_H |
| 12 | |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/DenseMap.h" |
Andrew Kaylor | d8ffd9c | 2012-11-06 18:51:59 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/SmallVector.h" |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 15 | #include "llvm/ExecutionEngine/ExecutionEngine.h" |
Andrew Kaylor | ced4e8f | 2013-04-25 21:02:36 +0000 | [diff] [blame] | 16 | #include "llvm/ExecutionEngine/ObjectCache.h" |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 17 | #include "llvm/ExecutionEngine/ObjectImage.h" |
Jim Grosbach | 348a548 | 2011-03-22 01:06:42 +0000 | [diff] [blame] | 18 | #include "llvm/ExecutionEngine/RuntimeDyld.h" |
Chandler Carruth | 802d755 | 2012-12-04 07:12:27 +0000 | [diff] [blame] | 19 | #include "llvm/PassManager.h" |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 20 | |
| 21 | namespace llvm { |
| 22 | |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 23 | class MCJIT; |
| 24 | |
| 25 | // This is a helper class that the MCJIT execution engine uses for linking |
| 26 | // functions across modules that it owns. It aggregates the memory manager |
| 27 | // that is passed in to the MCJIT constructor and defers most functionality |
| 28 | // to that object. |
| 29 | class LinkingMemoryManager : public RTDyldMemoryManager { |
| 30 | public: |
| 31 | LinkingMemoryManager(MCJIT *Parent, RTDyldMemoryManager *MM) |
| 32 | : ParentEngine(Parent), ClientMM(MM) {} |
| 33 | |
| 34 | virtual uint64_t getSymbolAddress(const std::string &Name); |
| 35 | |
| 36 | // Functions deferred to client memory manager |
| 37 | virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame^] | 38 | unsigned SectionID, StringRef SectionName) { |
| 39 | return ClientMM->allocateCodeSection(Size, Alignment, SectionID, SectionName); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame^] | 43 | unsigned SectionID, StringRef SectionName, |
| 44 | bool IsReadOnly) { |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 45 | return ClientMM->allocateDataSection(Size, Alignment, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame^] | 46 | SectionID, SectionName, IsReadOnly); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | virtual void registerEHFrames(StringRef SectionData) { |
| 50 | ClientMM->registerEHFrames(SectionData); |
| 51 | } |
| 52 | |
| 53 | virtual bool finalizeMemory(std::string *ErrMsg = 0) { |
| 54 | return ClientMM->finalizeMemory(ErrMsg); |
| 55 | } |
| 56 | |
| 57 | private: |
| 58 | MCJIT *ParentEngine; |
| 59 | OwningPtr<RTDyldMemoryManager> ClientMM; |
| 60 | }; |
Andrew Kaylor | adc7056 | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 61 | |
Jim Grosbach | 7b16249 | 2011-03-18 22:48:41 +0000 | [diff] [blame] | 62 | // FIXME: This makes all kinds of horrible assumptions for the time being, |
| 63 | // like only having one module, not needing to worry about multi-threading, |
| 64 | // blah blah. Purely in get-it-up-and-limping mode for now. |
| 65 | |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 66 | class MCJIT : public ExecutionEngine { |
Jim Grosbach | bea6753 | 2012-08-21 15:42:49 +0000 | [diff] [blame] | 67 | MCJIT(Module *M, TargetMachine *tm, RTDyldMemoryManager *MemMgr, |
| 68 | bool AllocateGVsWithCode); |
Jim Grosbach | 7b16249 | 2011-03-18 22:48:41 +0000 | [diff] [blame] | 69 | |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 70 | enum ModuleState { |
| 71 | ModuleAdded, |
| 72 | ModuleEmitted, |
| 73 | ModuleLoading, |
| 74 | ModuleLoaded, |
| 75 | ModuleFinalizing, |
| 76 | ModuleFinalized |
| 77 | }; |
| 78 | |
| 79 | class MCJITModuleState { |
| 80 | public: |
| 81 | MCJITModuleState() : State(ModuleAdded) {} |
| 82 | |
| 83 | MCJITModuleState & operator=(ModuleState s) { State = s; return *this; } |
| 84 | bool hasBeenEmitted() { return State != ModuleAdded; } |
| 85 | bool hasBeenLoaded() { return State != ModuleAdded && |
| 86 | State != ModuleEmitted; } |
| 87 | bool hasBeenFinalized() { return State == ModuleFinalized; } |
| 88 | |
| 89 | private: |
| 90 | ModuleState State; |
| 91 | }; |
| 92 | |
Jim Grosbach | 7b16249 | 2011-03-18 22:48:41 +0000 | [diff] [blame] | 93 | TargetMachine *TM; |
| 94 | MCContext *Ctx; |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 95 | LinkingMemoryManager MemMgr; |
Andrew Kaylor | 1a568c3 | 2012-08-07 18:33:00 +0000 | [diff] [blame] | 96 | RuntimeDyld Dyld; |
Andrew Kaylor | d8ffd9c | 2012-11-06 18:51:59 +0000 | [diff] [blame] | 97 | SmallVector<JITEventListener*, 2> EventListeners; |
Jim Grosbach | 7b16249 | 2011-03-18 22:48:41 +0000 | [diff] [blame] | 98 | |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 99 | typedef DenseMap<Module *, MCJITModuleState> ModuleStateMap; |
| 100 | ModuleStateMap ModuleStates; |
| 101 | |
| 102 | typedef DenseMap<Module *, ObjectImage *> LoadedObjectMap; |
| 103 | LoadedObjectMap LoadedObjects; |
Jim Grosbach | 7b16249 | 2011-03-18 22:48:41 +0000 | [diff] [blame] | 104 | |
Andrew Kaylor | ced4e8f | 2013-04-25 21:02:36 +0000 | [diff] [blame] | 105 | // An optional ObjectCache to be notified of compiled objects and used to |
| 106 | // perform lookup of pre-compiled code to avoid re-compilation. |
| 107 | ObjectCache *ObjCache; |
| 108 | |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 109 | public: |
| 110 | ~MCJIT(); |
| 111 | |
| 112 | /// @name ExecutionEngine interface implementation |
| 113 | /// @{ |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 114 | virtual void addModule(Module *M); |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 115 | |
Andrew Kaylor | ced4e8f | 2013-04-25 21:02:36 +0000 | [diff] [blame] | 116 | /// Sets the object manager that MCJIT should use to avoid compilation. |
| 117 | virtual void setObjectCache(ObjectCache *manager); |
| 118 | |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 119 | virtual void generateCodeForModule(Module *M); |
| 120 | |
David Tweed | 2e7efed | 2013-05-17 10:01:46 +0000 | [diff] [blame] | 121 | /// finalizeObject - ensure the module is fully processed and is usable. |
| 122 | /// |
| 123 | /// It is the user-level function for completing the process of making the |
| 124 | /// object usable for execution. It should be called after sections within an |
| 125 | /// object have been relocated using mapSectionAddress. When this method is |
| 126 | /// called the MCJIT execution engine will reapply relocations for a loaded |
| 127 | /// object. |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 128 | /// FIXME: Do we really need both of these? |
Andrew Kaylor | a714efc | 2012-11-05 20:57:16 +0000 | [diff] [blame] | 129 | virtual void finalizeObject(); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 130 | virtual void finalizeModule(Module *); |
| 131 | void finalizeLoadedModules(); |
Andrew Kaylor | a714efc | 2012-11-05 20:57:16 +0000 | [diff] [blame] | 132 | |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 133 | virtual void *getPointerToBasicBlock(BasicBlock *BB); |
| 134 | |
| 135 | virtual void *getPointerToFunction(Function *F); |
| 136 | |
| 137 | virtual void *recompileAndRelinkFunction(Function *F); |
| 138 | |
| 139 | virtual void freeMachineCodeForFunction(Function *F); |
| 140 | |
| 141 | virtual GenericValue runFunction(Function *F, |
| 142 | const std::vector<GenericValue> &ArgValues); |
| 143 | |
Jim Grosbach | d527440 | 2011-03-22 18:05:27 +0000 | [diff] [blame] | 144 | /// getPointerToNamedFunction - This method returns the address of the |
| 145 | /// specified function by using the dlsym function call. As such it is only |
| 146 | /// useful for resolving library symbols, not code generated symbols. |
| 147 | /// |
| 148 | /// If AbortOnFailure is false and no function with the given name is |
| 149 | /// found, this function silently returns a null pointer. Otherwise, |
| 150 | /// it prints a message to stderr and aborts. |
| 151 | /// |
Danil Malyshev | 7e32578 | 2012-01-05 21:16:14 +0000 | [diff] [blame] | 152 | virtual void *getPointerToNamedFunction(const std::string &Name, |
| 153 | bool AbortOnFailure = true); |
Danil Malyshev | bfee542 | 2012-03-28 21:46:36 +0000 | [diff] [blame] | 154 | |
Jim Grosbach | 0ddb3a4 | 2012-01-16 23:50:55 +0000 | [diff] [blame] | 155 | /// mapSectionAddress - map a section to its target address space value. |
| 156 | /// Map the address of a JIT section as returned from the memory manager |
| 157 | /// to the address in the target process as the running code will see it. |
| 158 | /// This is the address which will be used for relocation resolution. |
Jim Grosbach | 6d61397 | 2012-09-13 21:50:06 +0000 | [diff] [blame] | 159 | virtual void mapSectionAddress(const void *LocalAddress, |
| 160 | uint64_t TargetAddress) { |
Jim Grosbach | 0ddb3a4 | 2012-01-16 23:50:55 +0000 | [diff] [blame] | 161 | Dyld.mapSectionAddress(LocalAddress, TargetAddress); |
| 162 | } |
Andrew Kaylor | d8ffd9c | 2012-11-06 18:51:59 +0000 | [diff] [blame] | 163 | virtual void RegisterJITEventListener(JITEventListener *L); |
| 164 | virtual void UnregisterJITEventListener(JITEventListener *L); |
| 165 | |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 166 | // If successful, these function will implicitly finalize all loaded objects. |
| 167 | // To get a function address within MCJIT without causing a finalize, use |
| 168 | // getSymbolAddress. |
| 169 | virtual uint64_t getGlobalValueAddress(const std::string &Name); |
| 170 | virtual uint64_t getFunctionAddress(const std::string &Name); |
| 171 | |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 172 | /// @} |
| 173 | /// @name (Private) Registration Interfaces |
| 174 | /// @{ |
| 175 | |
| 176 | static void Register() { |
| 177 | MCJITCtor = createJIT; |
| 178 | } |
| 179 | |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 180 | static ExecutionEngine *createJIT(Module *M, |
| 181 | std::string *ErrorStr, |
Filip Pizlo | 9bc53e8 | 2013-05-14 19:29:00 +0000 | [diff] [blame] | 182 | RTDyldMemoryManager *MemMgr, |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 183 | bool GVsWithCode, |
Dylan Noblesmith | 8418fdc | 2011-05-13 21:51:29 +0000 | [diff] [blame] | 184 | TargetMachine *TM); |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 185 | |
| 186 | // @} |
Andrew Kaylor | 1a568c3 | 2012-08-07 18:33:00 +0000 | [diff] [blame] | 187 | |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 188 | // This is not directly exposed via the ExecutionEngine API, but it is |
| 189 | // used by the LinkingMemoryManager. |
| 190 | uint64_t getSymbolAddress(const std::string &Name, |
| 191 | bool CheckFunctionsOnly); |
| 192 | |
Andrew Kaylor | 1a568c3 | 2012-08-07 18:33:00 +0000 | [diff] [blame] | 193 | protected: |
| 194 | /// emitObject -- Generate a JITed object in memory from the specified module |
| 195 | /// Currently, MCJIT only supports a single module and the module passed to |
| 196 | /// this function call is expected to be the contained module. The module |
| 197 | /// is passed as a parameter here to prepare for multiple module support in |
| 198 | /// the future. |
Andrew Kaylor | ced4e8f | 2013-04-25 21:02:36 +0000 | [diff] [blame] | 199 | ObjectBufferStream* emitObject(Module *M); |
| 200 | |
Andrew Kaylor | d8ffd9c | 2012-11-06 18:51:59 +0000 | [diff] [blame] | 201 | void NotifyObjectEmitted(const ObjectImage& Obj); |
| 202 | void NotifyFreeingObject(const ObjectImage& Obj); |
Andrew Kaylor | ea39592 | 2013-10-01 01:47:35 +0000 | [diff] [blame] | 203 | |
| 204 | uint64_t getExistingSymbolAddress(const std::string &Name); |
| 205 | Module *findModuleForSymbol(const std::string &Name, |
| 206 | bool CheckFunctionsOnly); |
Daniel Dunbar | 7e5d8a7 | 2010-11-17 16:06:43 +0000 | [diff] [blame] | 207 | }; |
| 208 | |
| 209 | } // End llvm namespace |
| 210 | |
| 211 | #endif |