fe736bb00cce3a9672caed59f0d0348faeefc6bf
[oota-llvm.git] / include / llvm / ExecutionEngine / RuntimeDyld.h
1 //===-- RuntimeDyld.h - Run-time dynamic linker for MC-JIT ------*- 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 // Interface for the runtime dynamic linker facilities of the MC-JIT.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_EXECUTIONENGINE_RUNTIMEDYLD_H
15 #define LLVM_EXECUTIONENGINE_RUNTIMEDYLD_H
16
17 #include "JITSymbolFlags.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Object/ObjectFile.h"
21 #include "llvm/Support/Memory.h"
22 #include "llvm/DebugInfo/DIContext.h"
23 #include <map>
24 #include <memory>
25
26 namespace llvm {
27
28 namespace object {
29   class ObjectFile;
30   template <typename T> class OwningBinary;
31 }
32
33 class RuntimeDyldImpl;
34 class RuntimeDyldCheckerImpl;
35
36 class RuntimeDyld {
37   friend class RuntimeDyldCheckerImpl;
38
39   RuntimeDyld(const RuntimeDyld &) = delete;
40   void operator=(const RuntimeDyld &) = delete;
41
42 protected:
43   // Change the address associated with a section when resolving relocations.
44   // Any relocations already associated with the symbol will be re-resolved.
45   void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
46 public:
47
48   /// \brief Information about a named symbol.
49   class SymbolInfo : public JITSymbolBase {
50   public:
51     SymbolInfo(std::nullptr_t) : JITSymbolBase(JITSymbolFlags::None), Address(0) {}
52     SymbolInfo(uint64_t Address, JITSymbolFlags Flags)
53       : JITSymbolBase(Flags), Address(Address) {}
54     explicit operator bool() const { return Address != 0; }
55     uint64_t getAddress() const { return Address; }
56   private:
57     uint64_t Address;
58   };
59
60   /// \brief Information about the loaded object.
61   class LoadedObjectInfo : public llvm::LoadedObjectInfo {
62     friend class RuntimeDyldImpl;
63   public:
64     typedef std::map<object::SectionRef, unsigned> ObjSectionToIDMap;
65
66     LoadedObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap)
67       : RTDyld(RTDyld), ObjSecToIDMap(ObjSecToIDMap) { }
68
69     virtual object::OwningBinary<object::ObjectFile>
70     getObjectForDebug(const object::ObjectFile &Obj) const = 0;
71
72     uint64_t
73     getSectionLoadAddress(const object::SectionRef &Sec) const override;
74
75   protected:
76     virtual void anchor();
77
78     RuntimeDyldImpl &RTDyld;
79     ObjSectionToIDMap ObjSecToIDMap;
80   };
81
82   template <typename Derived> struct LoadedObjectInfoHelper : LoadedObjectInfo {
83   protected:
84     LoadedObjectInfoHelper(const LoadedObjectInfoHelper &) = default;
85     LoadedObjectInfoHelper() = default;
86
87   public:
88     LoadedObjectInfoHelper(RuntimeDyldImpl &RTDyld,
89                            LoadedObjectInfo::ObjSectionToIDMap ObjSecToIDMap)
90         : LoadedObjectInfo(RTDyld, std::move(ObjSecToIDMap)) {}
91     std::unique_ptr<llvm::LoadedObjectInfo> clone() const override {
92       return llvm::make_unique<Derived>(static_cast<const Derived &>(*this));
93     }
94   };
95
96   /// \brief Memory Management.
97   class MemoryManager {
98     friend class RuntimeDyld;
99   public:
100     MemoryManager() : FinalizationLocked(false) {}
101     virtual ~MemoryManager() {}
102
103     /// Allocate a memory block of (at least) the given size suitable for
104     /// executable code. The SectionID is a unique identifier assigned by the
105     /// RuntimeDyld instance, and optionally recorded by the memory manager to
106     /// access a loaded section.
107     virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
108                                          unsigned SectionID,
109                                          StringRef SectionName) = 0;
110
111     /// Allocate a memory block of (at least) the given size suitable for data.
112     /// The SectionID is a unique identifier assigned by the JIT engine, and
113     /// optionally recorded by the memory manager to access a loaded section.
114     virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
115                                          unsigned SectionID,
116                                          StringRef SectionName,
117                                          bool IsReadOnly) = 0;
118
119     /// Inform the memory manager about the total amount of memory required to
120     /// allocate all sections to be loaded:
121     /// \p CodeSize - the total size of all code sections
122     /// \p DataSizeRO - the total size of all read-only data sections
123     /// \p DataSizeRW - the total size of all read-write data sections
124     ///
125     /// Note that by default the callback is disabled. To enable it
126     /// redefine the method needsToReserveAllocationSpace to return true.
127     virtual void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign,
128                                         uintptr_t RODataSize,
129                                         uint32_t RODataAlign,
130                                         uintptr_t RWDataSize,
131                                         uint32_t RWDataAlign) {}
132
133     /// Override to return true to enable the reserveAllocationSpace callback.
134     virtual bool needsToReserveAllocationSpace() { return false; }
135
136     /// Register the EH frames with the runtime so that c++ exceptions work.
137     ///
138     /// \p Addr parameter provides the local address of the EH frame section
139     /// data, while \p LoadAddr provides the address of the data in the target
140     /// address space.  If the section has not been remapped (which will usually
141     /// be the case for local execution) these two values will be the same.
142     virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
143                                   size_t Size) = 0;
144     virtual void deregisterEHFrames(uint8_t *addr, uint64_t LoadAddr,
145                                     size_t Size) = 0;
146
147     /// This method is called when object loading is complete and section page
148     /// permissions can be applied.  It is up to the memory manager implementation
149     /// to decide whether or not to act on this method.  The memory manager will
150     /// typically allocate all sections as read-write and then apply specific
151     /// permissions when this method is called.  Code sections cannot be executed
152     /// until this function has been called.  In addition, any cache coherency
153     /// operations needed to reliably use the memory are also performed.
154     ///
155     /// Returns true if an error occurred, false otherwise.
156     virtual bool finalizeMemory(std::string *ErrMsg = nullptr) = 0;
157
158   private:
159     virtual void anchor();
160     bool FinalizationLocked;
161   };
162
163   /// \brief Symbol resolution.
164   class SymbolResolver {
165   public:
166     virtual ~SymbolResolver() {}
167
168     /// This method returns the address of the specified function or variable.
169     /// It is used to resolve symbols during module linking.
170     ///
171     /// If the returned symbol's address is equal to ~0ULL then RuntimeDyld will
172     /// skip all relocations for that symbol, and the client will be responsible
173     /// for handling them manually.
174     virtual SymbolInfo findSymbol(const std::string &Name) = 0;
175
176     /// This method returns the address of the specified symbol if it exists
177     /// within the logical dynamic library represented by this
178     /// RTDyldMemoryManager. Unlike getSymbolAddress, queries through this
179     /// interface should return addresses for hidden symbols.
180     ///
181     /// This is of particular importance for the Orc JIT APIs, which support lazy
182     /// compilation by breaking up modules: Each of those broken out modules
183     /// must be able to resolve hidden symbols provided by the others. Clients
184     /// writing memory managers for MCJIT can usually ignore this method.
185     ///
186     /// This method will be queried by RuntimeDyld when checking for previous
187     /// definitions of common symbols. It will *not* be queried by default when
188     /// resolving external symbols (this minimises the link-time overhead for
189     /// MCJIT clients who don't care about Orc features). If you are writing a
190     /// RTDyldMemoryManager for Orc and want "external" symbol resolution to
191     /// search the logical dylib, you should override your getSymbolAddress
192     /// method call this method directly.
193     virtual SymbolInfo findSymbolInLogicalDylib(const std::string &Name) = 0;
194   private:
195     virtual void anchor();
196   };
197
198   /// \brief Construct a RuntimeDyld instance.
199   RuntimeDyld(MemoryManager &MemMgr, SymbolResolver &Resolver);
200   ~RuntimeDyld();
201
202   /// Add the referenced object file to the list of objects to be loaded and
203   /// relocated.
204   std::unique_ptr<LoadedObjectInfo> loadObject(const object::ObjectFile &O);
205
206   /// Get the address of our local copy of the symbol. This may or may not
207   /// be the address used for relocation (clients can copy the data around
208   /// and resolve relocatons based on where they put it).
209   void *getSymbolLocalAddress(StringRef Name) const;
210
211   /// Get the target address and flags for the named symbol.
212   /// This address is the one used for relocation.
213   SymbolInfo getSymbol(StringRef Name) const;
214
215   /// Resolve the relocations for all symbols we currently know about.
216   void resolveRelocations();
217
218   /// Map a section to its target address space value.
219   /// Map the address of a JIT section as returned from the memory manager
220   /// to the address in the target process as the running code will see it.
221   /// This is the address which will be used for relocation resolution.
222   void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
223
224   /// Register any EH frame sections that have been loaded but not previously
225   /// registered with the memory manager.  Note, RuntimeDyld is responsible
226   /// for identifying the EH frame and calling the memory manager with the
227   /// EH frame section data.  However, the memory manager itself will handle
228   /// the actual target-specific EH frame registration.
229   void registerEHFrames();
230
231   void deregisterEHFrames();
232
233   bool hasError();
234   StringRef getErrorString();
235
236   /// By default, only sections that are "required for execution" are passed to
237   /// the RTDyldMemoryManager, and other sections are discarded. Passing 'true'
238   /// to this method will cause RuntimeDyld to pass all sections to its
239   /// memory manager regardless of whether they are "required to execute" in the
240   /// usual sense. This is useful for inspecting metadata sections that may not
241   /// contain relocations, E.g. Debug info, stackmaps.
242   ///
243   /// Must be called before the first object file is loaded.
244   void setProcessAllSections(bool ProcessAllSections) {
245     assert(!Dyld && "setProcessAllSections must be called before loadObject.");
246     this->ProcessAllSections = ProcessAllSections;
247   }
248
249   /// Perform all actions needed to make the code owned by this RuntimeDyld
250   /// instance executable:
251   ///
252   /// 1) Apply relocations.
253   /// 2) Register EH frames.
254   /// 3) Update memory permissions*.
255   ///
256   /// * Finalization is potentially recursive**, and the 3rd step will only be
257   ///   applied by the outermost call to finalize. This allows different
258   ///   RuntimeDyld instances to share a memory manager without the innermost
259   ///   finalization locking the memory and causing relocation fixup errors in
260   ///   outer instances.
261   ///
262   /// ** Recursive finalization occurs when one RuntimeDyld instances needs the
263   ///   address of a symbol owned by some other instance in order to apply
264   ///   relocations.
265   ///
266   void finalizeWithMemoryManagerLocking();
267
268 private:
269   // RuntimeDyldImpl is the actual class. RuntimeDyld is just the public
270   // interface.
271   std::unique_ptr<RuntimeDyldImpl> Dyld;
272   MemoryManager &MemMgr;
273   SymbolResolver &Resolver;
274   bool ProcessAllSections;
275   RuntimeDyldCheckerImpl *Checker;
276 };
277
278 } // end namespace llvm
279
280 #endif // LLVM_EXECUTIONENGINE_RUNTIMEDYLD_H