blob: 379cb4ad868a4259ecb538b5069198cfe7a863e3 [file] [log] [blame]
Jim Grosbach06594e12012-01-16 23:50:58 +00001//===-- RuntimeDyldImpl.h - Run-time dynamic linker for MC-JIT --*- C++ -*-===//
Danil Malyshev72510f22011-07-13 07:57:58 +00002//
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 implementations of runtime dynamic linker facilities.
11//
12//===----------------------------------------------------------------------===//
13
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000014#ifndef LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_RUNTIMEDYLDIMPL_H
15#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_RUNTIMEDYLDIMPL_H
Danil Malyshev72510f22011-07-13 07:57:58 +000016
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000017#include "llvm/ADT/DenseMap.h"
Danil Malyshev72510f22011-07-13 07:57:58 +000018#include "llvm/ADT/SmallVector.h"
Eli Bendersky32d54882012-04-30 10:06:27 +000019#include "llvm/ADT/StringMap.h"
20#include "llvm/ADT/Triple.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000021#include "llvm/ExecutionEngine/ObjectImage.h"
22#include "llvm/ExecutionEngine/RuntimeDyld.h"
Lang Hamese1c11382014-06-27 20:20:57 +000023#include "llvm/ExecutionEngine/RuntimeDyldChecker.h"
Eli Bendersky32d54882012-04-30 10:06:27 +000024#include "llvm/Object/ObjectFile.h"
Danil Malyshev72510f22011-07-13 07:57:58 +000025#include "llvm/Support/Debug.h"
26#include "llvm/Support/ErrorHandling.h"
Danil Malyshev70d22cc2012-03-30 16:45:19 +000027#include "llvm/Support/Format.h"
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +000028#include "llvm/Support/Host.h"
Andrew Kaylor4fba0492013-10-21 17:42:06 +000029#include "llvm/Support/Mutex.h"
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +000030#include "llvm/Support/SwapByteOrder.h"
Eli Bendersky32d54882012-04-30 10:06:27 +000031#include "llvm/Support/raw_ostream.h"
Eli Bendersky32d54882012-04-30 10:06:27 +000032#include <map>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000033#include <system_error>
Danil Malyshev72510f22011-07-13 07:57:58 +000034
35using namespace llvm;
Danil Malyshev70d22cc2012-03-30 16:45:19 +000036using namespace llvm::object;
Danil Malyshev72510f22011-07-13 07:57:58 +000037
38namespace llvm {
Danil Malyshev70d22cc2012-03-30 16:45:19 +000039
Andrew Kayloradc70562012-10-02 21:18:39 +000040class ObjectBuffer;
Eli Bendersky32d54882012-04-30 10:06:27 +000041class Twine;
42
Eli Bendersky32d54882012-04-30 10:06:27 +000043/// SectionEntry - represents a section emitted into memory by the dynamic
44/// linker.
Danil Malyshev70d22cc2012-03-30 16:45:19 +000045class SectionEntry {
46public:
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +000047 /// Name - section name.
48 StringRef Name;
49
Eli Bendersky32d54882012-04-30 10:06:27 +000050 /// Address - address in the linker's memory where the section resides.
51 uint8_t *Address;
52
Rafael Espindolafa5942b2013-05-05 20:43:10 +000053 /// Size - section size. Doesn't include the stubs.
Eli Bendersky32d54882012-04-30 10:06:27 +000054 size_t Size;
55
56 /// LoadAddress - the address of the section in the target process's memory.
57 /// Used for situations in which JIT-ed code is being executed in the address
58 /// space of a separate process. If the code executes in the same address
59 /// space where it was JIT-ed, this just equals Address.
60 uint64_t LoadAddress;
61
62 /// StubOffset - used for architectures with stub functions for far
63 /// relocations (like ARM).
64 uintptr_t StubOffset;
65
66 /// ObjAddress - address of the section in the in-memory object file. Used
67 /// for calculating relocations in some object formats (like MachO).
68 uintptr_t ObjAddress;
69
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +000070 SectionEntry(StringRef name, uint8_t *address, size_t size,
Rafael Espindolafa5942b2013-05-05 20:43:10 +000071 uintptr_t objAddress)
Juergen Ributzka7608dc02014-03-21 20:28:42 +000072 : Name(name), Address(address), Size(size),
Lang Hames0717c3de2014-08-27 17:48:07 +000073 LoadAddress(reinterpret_cast<uintptr_t>(address)), StubOffset(size),
Juergen Ributzka7608dc02014-03-21 20:28:42 +000074 ObjAddress(objAddress) {}
Danil Malyshev70d22cc2012-03-30 16:45:19 +000075};
76
Eli Bendersky32d54882012-04-30 10:06:27 +000077/// RelocationEntry - used to represent relocations internally in the dynamic
78/// linker.
Danil Malyshev70d22cc2012-03-30 16:45:19 +000079class RelocationEntry {
80public:
Eli Bendersky32d54882012-04-30 10:06:27 +000081 /// SectionID - the section this relocation points to.
82 unsigned SectionID;
83
84 /// Offset - offset into the section.
Andrew Kaylor4612fed2013-08-19 23:27:43 +000085 uint64_t Offset;
Eli Bendersky32d54882012-04-30 10:06:27 +000086
87 /// RelType - relocation type.
88 uint32_t RelType;
89
90 /// Addend - the relocation addend encoded in the instruction itself. Also
91 /// used to make a relocation section relative instead of symbol relative.
Andrew Kaylor4612fed2013-08-19 23:27:43 +000092 int64_t Addend;
93
Lang Hames36072da2014-05-12 21:39:59 +000094 struct SectionPair {
95 uint32_t SectionA;
96 uint32_t SectionB;
97 };
98
Andrew Kaylor4612fed2013-08-19 23:27:43 +000099 /// SymOffset - Section offset of the relocation entry's symbol (used for GOT
100 /// lookup).
Lang Hames36072da2014-05-12 21:39:59 +0000101 union {
102 uint64_t SymOffset;
103 SectionPair Sections;
104 };
Eli Bendersky32d54882012-04-30 10:06:27 +0000105
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000106 /// True if this is a PCRel relocation (MachO specific).
107 bool IsPCRel;
108
109 /// The size of this relocation (MachO specific).
110 unsigned Size;
111
Eli Bendersky32d54882012-04-30 10:06:27 +0000112 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000113 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
114 SymOffset(0), IsPCRel(false), Size(0) {}
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000115
116 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
117 uint64_t symoffset)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000118 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
119 SymOffset(symoffset), IsPCRel(false), Size(0) {}
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000120
121 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
122 bool IsPCRel, unsigned Size)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000123 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
124 SymOffset(0), IsPCRel(IsPCRel), Size(Size) {}
Lang Hames36072da2014-05-12 21:39:59 +0000125
126 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
127 unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB,
128 uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
129 : SectionID(id), Offset(offset), RelType(type),
130 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel),
131 Size(Size) {
132 Sections.SectionA = SectionA;
133 Sections.SectionB = SectionB;
134 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000135};
136
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000137class RelocationValueRef {
138public:
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000139 unsigned SectionID;
140 uint64_t Offset;
141 int64_t Addend;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000142 const char *SymbolName;
Craig Toppere73658d2014-04-28 04:05:08 +0000143 RelocationValueRef() : SectionID(0), Offset(0), Addend(0),
144 SymbolName(nullptr) {}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000145
146 inline bool operator==(const RelocationValueRef &Other) const {
Benjamin Kramer5a712502013-08-20 09:27:31 +0000147 return SectionID == Other.SectionID && Offset == Other.Offset &&
148 Addend == Other.Addend && SymbolName == Other.SymbolName;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000149 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000150 inline bool operator<(const RelocationValueRef &Other) const {
Benjamin Kramer5a712502013-08-20 09:27:31 +0000151 if (SectionID != Other.SectionID)
152 return SectionID < Other.SectionID;
153 if (Offset != Other.Offset)
154 return Offset < Other.Offset;
155 if (Addend != Other.Addend)
156 return Addend < Other.Addend;
157 return SymbolName < Other.SymbolName;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000158 }
159};
160
Danil Malyshev72510f22011-07-13 07:57:58 +0000161class RuntimeDyldImpl {
Lang Hamesf7acddd2014-07-22 22:47:39 +0000162 friend class RuntimeDyldCheckerImpl;
Lang Hamese1c11382014-06-27 20:20:57 +0000163private:
164
165 uint64_t getAnySymbolRemoteAddress(StringRef Symbol) {
166 if (uint64_t InternalSymbolAddr = getSymbolLoadAddress(Symbol))
167 return InternalSymbolAddr;
168 return MemMgr->getSymbolAddress(Symbol);
169 }
170
Danil Malyshev72510f22011-07-13 07:57:58 +0000171protected:
Danil Malyshev72510f22011-07-13 07:57:58 +0000172 // The MemoryManager to load objects into.
173 RTDyldMemoryManager *MemMgr;
174
Lang Hamesf7acddd2014-07-22 22:47:39 +0000175 // Attached RuntimeDyldChecker instance. Null if no instance attached.
176 RuntimeDyldCheckerImpl *Checker;
177
Eli Bendersky32d54882012-04-30 10:06:27 +0000178 // A list of all sections emitted by the dynamic linker. These sections are
179 // referenced in the code by means of their index in this list - SectionID.
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000180 typedef SmallVector<SectionEntry, 64> SectionList;
181 SectionList Sections;
Danil Malyshev72510f22011-07-13 07:57:58 +0000182
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000183 typedef unsigned SID; // Type for SectionIDs
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000184#define RTDYLD_INVALID_SECTION_ID ((SID)(-1))
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000185
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000186 // Keep a map of sections from object file to the SectionID which
187 // references it.
188 typedef std::map<SectionRef, unsigned> ObjSectionToIDMap;
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000189
Eli Benderskyfc079082012-05-01 06:58:59 +0000190 // A global symbol table for symbols from all loaded modules. Maps the
191 // symbol name to a (SectionID, offset in section) pair.
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000192 typedef std::pair<unsigned, uintptr_t> SymbolLoc;
Eli Benderskyfc079082012-05-01 06:58:59 +0000193 typedef StringMap<SymbolLoc> SymbolTableMap;
194 SymbolTableMap GlobalSymbolTable;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000195
Tim Northover94bc73d2012-10-29 10:47:04 +0000196 // Pair representing the size and alignment requirement for a common symbol.
197 typedef std::pair<unsigned, unsigned> CommonSymbolInfo;
198 // Keep a map of common symbols to their info pairs
199 typedef std::map<SymbolRef, CommonSymbolInfo> CommonSymbolMap;
Preston Gurd2138ef62012-04-12 20:13:57 +0000200
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000201 // For each symbol, keep a list of relocations based on it. Anytime
202 // its address is reassigned (the JIT re-compiled the function, e.g.),
203 // the relocations get re-resolved.
204 // The symbol (or section) the relocation is sourced from is the Key
205 // in the relocation list where it's stored.
206 typedef SmallVector<RelocationEntry, 64> RelocationList;
207 // Relocations to sections already loaded. Indexed by SectionID which is the
Benjamin Kramerbde91762012-06-02 10:20:22 +0000208 // source of the address. The target where the address will be written is
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000209 // SectionID/Offset in the relocation itself.
210 DenseMap<unsigned, RelocationList> Relocations;
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000211
212 // Relocations to external symbols that are not yet resolved. Symbols are
213 // external when they aren't found in the global symbol table of all loaded
214 // modules. This map is indexed by symbol name.
215 StringMap<RelocationList> ExternalSymbolRelocations;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000216
Lang Hamesf7acddd2014-07-22 22:47:39 +0000217
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000218 typedef std::map<RelocationValueRef, uintptr_t> StubMap;
219
220 Triple::ArchType Arch;
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000221 bool IsTargetLittleEndian;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000222
Lang Hames868d4b32014-03-20 21:06:46 +0000223 // True if all sections should be passed to the memory manager, false if only
224 // sections containing relocations should be. Defaults to 'false'.
225 bool ProcessAllSections;
226
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000227 // This mutex prevents simultaneously loading objects from two different
228 // threads. This keeps us from having to protect individual data structures
229 // and guarantees that section allocation requests to the memory manager
230 // won't be interleaved between modules. It is also used in mapSectionAddress
231 // and resolveRelocations to protect write access to internal data structures.
232 //
233 // loadObject may be called on the same thread during the handling of of
234 // processRelocations, and that's OK. The handling of the relocation lists
235 // is written in such a way as to work correctly if new elements are added to
236 // the end of the list while the list is being processed.
237 sys::Mutex lock;
238
Andrew Kaylor2ba21c52013-10-15 21:32:56 +0000239 virtual unsigned getMaxStubSize() = 0;
240 virtual unsigned getStubAlignment() = 0;
Richard Sandifordca044082013-05-03 14:15:35 +0000241
Danil Malyshev72510f22011-07-13 07:57:58 +0000242 bool HasError;
243 std::string ErrorStr;
244
245 // Set the error state and record an error string.
246 bool Error(const Twine &Msg) {
247 ErrorStr = Msg.str();
248 HasError = true;
249 return true;
250 }
251
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000252 uint64_t getSectionLoadAddress(unsigned SectionID) {
253 return Sections[SectionID].LoadAddress;
254 }
255
Jim Grosbacheff0a402012-01-16 22:26:39 +0000256 uint8_t *getSectionAddress(unsigned SectionID) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000257 return (uint8_t *)Sections[SectionID].Address;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000258 }
Danil Malyshev72510f22011-07-13 07:57:58 +0000259
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000260 void writeInt16BE(uint8_t *Addr, uint16_t Value) {
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000261 if (IsTargetLittleEndian)
Artyom Skrobov9aea8432014-06-14 13:18:07 +0000262 sys::swapByteOrder(Value);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000263 *Addr = (Value >> 8) & 0xFF;
264 *(Addr + 1) = Value & 0xFF;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000265 }
266
267 void writeInt32BE(uint8_t *Addr, uint32_t Value) {
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000268 if (IsTargetLittleEndian)
Artyom Skrobov9aea8432014-06-14 13:18:07 +0000269 sys::swapByteOrder(Value);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000270 *Addr = (Value >> 24) & 0xFF;
271 *(Addr + 1) = (Value >> 16) & 0xFF;
272 *(Addr + 2) = (Value >> 8) & 0xFF;
273 *(Addr + 3) = Value & 0xFF;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000274 }
275
276 void writeInt64BE(uint8_t *Addr, uint64_t Value) {
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000277 if (IsTargetLittleEndian)
Artyom Skrobov9aea8432014-06-14 13:18:07 +0000278 sys::swapByteOrder(Value);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000279 *Addr = (Value >> 56) & 0xFF;
280 *(Addr + 1) = (Value >> 48) & 0xFF;
281 *(Addr + 2) = (Value >> 40) & 0xFF;
282 *(Addr + 3) = (Value >> 32) & 0xFF;
283 *(Addr + 4) = (Value >> 24) & 0xFF;
284 *(Addr + 5) = (Value >> 16) & 0xFF;
285 *(Addr + 6) = (Value >> 8) & 0xFF;
286 *(Addr + 7) = Value & 0xFF;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000287 }
288
Eli Bendersky667b8792012-05-01 10:41:12 +0000289 /// \brief Given the common symbols discovered in the object file, emit a
290 /// new section for them and update the symbol mappings in the object and
291 /// symbol table.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000292 void emitCommonSymbols(ObjectImage &Obj, const CommonSymbolMap &CommonSymbols,
293 uint64_t TotalSize, SymbolTableMap &SymbolTable);
Preston Gurd2138ef62012-04-12 20:13:57 +0000294
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000295 /// \brief Emits section data from the object file to the MemoryManager.
296 /// \param IsCode if it's true then allocateCodeSection() will be
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000297 /// used for emits, else allocateDataSection() will be used.
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000298 /// \return SectionID.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000299 unsigned emitSection(ObjectImage &Obj, const SectionRef &Section,
Preston Gurdcc31af92012-04-16 22:12:58 +0000300 bool IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000301
302 /// \brief Find Section in LocalSections. If the secton is not found - emit
303 /// it and store in LocalSections.
304 /// \param IsCode if it's true then allocateCodeSection() will be
305 /// used for emmits, else allocateDataSection() will be used.
306 /// \return SectionID.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000307 unsigned findOrEmitSection(ObjectImage &Obj, const SectionRef &Section,
308 bool IsCode, ObjSectionToIDMap &LocalSections);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000309
Eli Bendersky667b8792012-05-01 10:41:12 +0000310 // \brief Add a relocation entry that uses the given section.
311 void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID);
312
313 // \brief Add a relocation entry that uses the given symbol. This symbol may
314 // be found in the global symbol table, or it may be external.
315 void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000316
317 /// \brief Emits long jump instruction to Addr.
318 /// \return Pointer to the memory area for emitting target address.
Ulrich Weigand752b5c92014-07-20 23:53:14 +0000319 uint8_t *createStubFunction(uint8_t *Addr, unsigned AbiVariant = 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000320
321 /// \brief Resolves relocations from Relocs list with address from Value.
322 void resolveRelocationList(const RelocationList &Relocs, uint64_t Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000323
324 /// \brief A object file specific relocation resolver
Rafael Espindolab39478e2013-04-29 19:33:51 +0000325 /// \param RE The relocation to be resolved
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000326 /// \param Value Target symbol address to apply the relocation action
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000327 virtual void resolveRelocation(const RelocationEntry &RE, uint64_t Value) = 0;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000328
Juergen Ributzka838282e2014-03-21 20:38:46 +0000329 /// \brief Parses one or more object file relocations (some object files use
330 /// relocation pairs) and stores it to Relocations or SymbolRelocations
331 /// (this depends on the object file type).
332 /// \return Iterator to the next relocation that needs to be parsed.
Juergen Ributzka046709f2014-03-21 07:26:41 +0000333 virtual relocation_iterator
334 processRelocationRef(unsigned SectionID, relocation_iterator RelI,
335 ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID,
336 const SymbolTableMap &Symbols, StubMap &Stubs) = 0;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000337
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000338 /// \brief Resolve relocations to external symbols.
339 void resolveExternalSymbols();
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000340
341 /// \brief Update GOT entries for external symbols.
342 // The base class does nothing. ELF overrides this.
343 virtual void updateGOTEntries(StringRef Name, uint64_t Addr) {}
344
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000345 // \brief Compute an upper bound of the memory that is required to load all
346 // sections
347 void computeTotalAllocSize(ObjectImage &Obj, uint64_t &CodeSize,
348 uint64_t &DataSizeRO, uint64_t &DataSizeRW);
349
Lang Hames937ec542014-02-12 21:30:07 +0000350 // \brief Compute the stub buffer size required for a section
Juergen Ributzka046709f2014-03-21 07:26:41 +0000351 unsigned computeSectionStubBufSize(ObjectImage &Obj,
352 const SectionRef &Section);
Lang Hames937ec542014-02-12 21:30:07 +0000353
Danil Malyshev72510f22011-07-13 07:57:58 +0000354public:
Lang Hames868d4b32014-03-20 21:06:46 +0000355 RuntimeDyldImpl(RTDyldMemoryManager *mm)
Lang Hamesf7acddd2014-07-22 22:47:39 +0000356 : MemMgr(mm), Checker(nullptr), ProcessAllSections(false), HasError(false) {
Lang Hamese1c11382014-06-27 20:20:57 +0000357 }
Danil Malyshev72510f22011-07-13 07:57:58 +0000358
359 virtual ~RuntimeDyldImpl();
360
Lang Hames868d4b32014-03-20 21:06:46 +0000361 void setProcessAllSections(bool ProcessAllSections) {
362 this->ProcessAllSections = ProcessAllSections;
363 }
364
Lang Hamesf7acddd2014-07-22 22:47:39 +0000365 void setRuntimeDyldChecker(RuntimeDyldCheckerImpl *Checker) {
366 this->Checker = Checker;
367 }
368
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000369 ObjectImage *loadObject(ObjectImage *InputObject);
Danil Malyshev72510f22011-07-13 07:57:58 +0000370
Lang Hamese1c11382014-06-27 20:20:57 +0000371 uint8_t* getSymbolAddress(StringRef Name) {
Danil Malyshev72510f22011-07-13 07:57:58 +0000372 // FIXME: Just look up as a function for now. Overly simple of course.
373 // Work in progress.
Yaron Kerenc9802882013-10-19 09:04:26 +0000374 SymbolTableMap::const_iterator pos = GlobalSymbolTable.find(Name);
375 if (pos == GlobalSymbolTable.end())
Craig Toppere73658d2014-04-28 04:05:08 +0000376 return nullptr;
Yaron Kerenc9802882013-10-19 09:04:26 +0000377 SymbolLoc Loc = pos->second;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000378 return getSectionAddress(Loc.first) + Loc.second;
Danil Malyshev72510f22011-07-13 07:57:58 +0000379 }
380
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000381 uint64_t getSymbolLoadAddress(StringRef Name) {
382 // FIXME: Just look up as a function for now. Overly simple of course.
383 // Work in progress.
Yaron Kerenc9802882013-10-19 09:04:26 +0000384 SymbolTableMap::const_iterator pos = GlobalSymbolTable.find(Name);
385 if (pos == GlobalSymbolTable.end())
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000386 return 0;
Yaron Kerenc9802882013-10-19 09:04:26 +0000387 SymbolLoc Loc = pos->second;
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000388 return getSectionLoadAddress(Loc.first) + Loc.second;
389 }
390
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000391 void resolveRelocations();
Danil Malyshev72510f22011-07-13 07:57:58 +0000392
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000393 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
Danil Malyshev72510f22011-07-13 07:57:58 +0000394
Jim Grosbach6d613972012-09-13 21:50:06 +0000395 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000396
Danil Malyshev72510f22011-07-13 07:57:58 +0000397 // Is the linker in an error state?
398 bool hasError() { return HasError; }
399
400 // Mark the error condition as handled and continue.
401 void clearError() { HasError = false; }
402
403 // Get the error message.
404 StringRef getErrorString() { return ErrorStr; }
405
Andrew Kayloradc70562012-10-02 21:18:39 +0000406 virtual bool isCompatibleFormat(const ObjectBuffer *Buffer) const = 0;
Lang Hames173c69f2014-01-08 04:09:09 +0000407 virtual bool isCompatibleFile(const ObjectFile *Obj) const = 0;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000408
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000409 virtual void registerEHFrames();
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000410
Andrew Kaylorc442a762013-10-16 00:14:21 +0000411 virtual void deregisterEHFrames();
412
Lang Hames36072da2014-05-12 21:39:59 +0000413 virtual void finalizeLoad(ObjectImage &ObjImg, ObjSectionToIDMap &SectionMap) {}
Danil Malyshev72510f22011-07-13 07:57:58 +0000414};
415
Danil Malyshev72510f22011-07-13 07:57:58 +0000416} // end namespace llvm
417
Danil Malyshev72510f22011-07-13 07:57:58 +0000418#endif