LLVM 20.0.0git
RuntimeDyldImpl.h
Go to the documentation of this file.
1//===-- RuntimeDyldImpl.h - Run-time dynamic linker for MC-JIT --*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Interface for the implementations of runtime dynamic linker facilities.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_RUNTIMEDYLDIMPL_H
14#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_RUNTIMEDYLDIMPL_H
15
17#include "llvm/ADT/StringMap.h"
23#include "llvm/Support/Debug.h"
25#include "llvm/Support/Format.h"
26#include "llvm/Support/Mutex.h"
30#include <deque>
31#include <map>
32#include <system_error>
33#include <unordered_map>
34
35using namespace llvm;
36using namespace llvm::object;
37
38namespace llvm {
39
40#define UNIMPLEMENTED_RELOC(RelType) \
41 case RelType: \
42 return make_error<RuntimeDyldError>("Unimplemented relocation: " #RelType)
43
44/// SectionEntry - represents a section emitted into memory by the dynamic
45/// linker.
47 /// Name - section name.
48 std::string Name;
49
50 /// Address - address in the linker's memory where the section resides.
51 uint8_t *Address;
52
53 /// Size - section size. Doesn't include the stubs.
54 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 /// The total amount of space allocated for this section. This includes the
67 /// section size and the maximum amount of space that the stubs can occupy.
68 size_t AllocationSize;
69
70 /// ObjAddress - address of the section in the in-memory object file. Used
71 /// for calculating relocations in some object formats (like MachO).
72 uintptr_t ObjAddress;
73
74public:
75 SectionEntry(StringRef name, uint8_t *address, size_t size,
76 size_t allocationSize, uintptr_t objAddress)
77 : Name(std::string(name)), Address(address), Size(size),
78 LoadAddress(reinterpret_cast<uintptr_t>(address)), StubOffset(size),
79 AllocationSize(allocationSize), ObjAddress(objAddress) {
80 // AllocationSize is used only in asserts, prevent an "unused private field"
81 // warning:
82 (void)AllocationSize;
83 }
84
85 StringRef getName() const { return Name; }
86
87 uint8_t *getAddress() const { return Address; }
88
89 /// Return the address of this section with an offset.
90 uint8_t *getAddressWithOffset(unsigned OffsetBytes) const {
91 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
92 return Address + OffsetBytes;
93 }
94
95 size_t getSize() const { return Size; }
96
97 uint64_t getLoadAddress() const { return LoadAddress; }
98 void setLoadAddress(uint64_t LA) { LoadAddress = LA; }
99
100 /// Return the load address of this section with an offset.
101 uint64_t getLoadAddressWithOffset(unsigned OffsetBytes) const {
102 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
103 return LoadAddress + OffsetBytes;
104 }
105
106 uintptr_t getStubOffset() const { return StubOffset; }
107
108 void advanceStubOffset(unsigned StubSize) {
109 StubOffset += StubSize;
110 assert(StubOffset <= AllocationSize && "Not enough space allocated!");
111 }
112
113 uintptr_t getObjAddress() const { return ObjAddress; }
114};
115
116/// RelocationEntry - used to represent relocations internally in the dynamic
117/// linker.
119public:
120 /// Offset - offset into the section.
122
123 /// Addend - the relocation addend encoded in the instruction itself. Also
124 /// used to make a relocation section relative instead of symbol relative.
125 int64_t Addend;
126
127 /// SectionID - the section this relocation points to.
128 unsigned SectionID;
129
130 /// RelType - relocation type.
132
133 struct SectionPair {
136 };
137
138 /// SymOffset - Section offset of the relocation entry's symbol (used for GOT
139 /// lookup).
140 union {
143 };
144
145 /// The size of this relocation (MachO specific).
146 unsigned Size;
147
148 /// True if this is a PCRel relocation (MachO specific).
149 bool IsPCRel : 1;
150
151 // ARM (MachO and COFF) specific.
153
154 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
155 : Offset(offset), Addend(addend), SectionID(id), RelType(type),
157
158 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
159 uint64_t symoffset)
160 : Offset(offset), Addend(addend), SectionID(id), RelType(type),
161 SymOffset(symoffset), Size(0), IsPCRel(false),
163
164 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
165 bool IsPCRel, unsigned Size)
166 : Offset(offset), Addend(addend), SectionID(id), RelType(type),
168
169 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
170 unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB,
171 uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
172 : Offset(offset), Addend(SectionAOffset - SectionBOffset + addend),
173 SectionID(id), RelType(type), Size(Size), IsPCRel(IsPCRel),
175 Sections.SectionA = SectionA;
176 Sections.SectionB = SectionB;
177 }
178
179 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
180 unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB,
181 uint64_t SectionBOffset, bool IsPCRel, unsigned Size,
183 : Offset(offset), Addend(SectionAOffset - SectionBOffset + addend),
184 SectionID(id), RelType(type), Size(Size), IsPCRel(IsPCRel),
186 Sections.SectionA = SectionA;
187 Sections.SectionB = SectionB;
188 }
189};
190
192public:
193 unsigned SectionID = 0;
195 int64_t Addend = 0;
196 const char *SymbolName = nullptr;
197 bool IsStubThumb = false;
198
199 inline bool operator==(const RelocationValueRef &Other) const {
200 return SectionID == Other.SectionID && Offset == Other.Offset &&
201 Addend == Other.Addend && SymbolName == Other.SymbolName &&
202 IsStubThumb == Other.IsStubThumb;
203 }
204 inline bool operator<(const RelocationValueRef &Other) const {
205 if (SectionID != Other.SectionID)
206 return SectionID < Other.SectionID;
207 if (Offset != Other.Offset)
208 return Offset < Other.Offset;
209 if (Addend != Other.Addend)
210 return Addend < Other.Addend;
211 if (IsStubThumb != Other.IsStubThumb)
212 return IsStubThumb < Other.IsStubThumb;
213 return SymbolName < Other.SymbolName;
214 }
215};
216
217/// Symbol info for RuntimeDyld.
219public:
220 SymbolTableEntry() = default;
221
222 SymbolTableEntry(unsigned SectionID, uint64_t Offset, JITSymbolFlags Flags)
223 : Offset(Offset), SectionID(SectionID), Flags(Flags) {}
224
225 unsigned getSectionID() const { return SectionID; }
226 uint64_t getOffset() const { return Offset; }
227 void setOffset(uint64_t NewOffset) { Offset = NewOffset; }
228
229 JITSymbolFlags getFlags() const { return Flags; }
230
231private:
232 uint64_t Offset = 0;
233 unsigned SectionID = 0;
235};
236
238
241protected:
242 static const unsigned AbsoluteSymbolSection = ~0U;
243
244 // The MemoryManager to load objects into.
246
247 // The symbol resolver to use for external symbols.
249
250 // A list of all sections emitted by the dynamic linker. These sections are
251 // referenced in the code by means of their index in this list - SectionID.
252 // Because references may be kept while the list grows, use a container that
253 // guarantees reference stability.
254 typedef std::deque<SectionEntry> SectionList;
256
257 typedef unsigned SID; // Type for SectionIDs
258#define RTDYLD_INVALID_SECTION_ID ((RuntimeDyldImpl::SID)(-1))
259
260 // Keep a map of sections from object file to the SectionID which
261 // references it.
262 typedef std::map<SectionRef, unsigned> ObjSectionToIDMap;
263
264 // A global symbol table for symbols from all loaded modules.
266
267 // Keep a map of common symbols to their info pairs
268 typedef std::vector<SymbolRef> CommonSymbolList;
269
270 // For each symbol, keep a list of relocations based on it. Anytime
271 // its address is reassigned (the JIT re-compiled the function, e.g.),
272 // the relocations get re-resolved.
273 // The symbol (or section) the relocation is sourced from is the Key
274 // in the relocation list where it's stored.
276 // Relocations to sections already loaded. Indexed by SectionID which is the
277 // source of the address. The target where the address will be written is
278 // SectionID/Offset in the relocation itself.
279 std::unordered_map<unsigned, RelocationList> Relocations;
280
281 // Relocations to external symbols that are not yet resolved. Symbols are
282 // external when they aren't found in the global symbol table of all loaded
283 // modules. This map is indexed by symbol name.
285
286
287 typedef std::map<RelocationValueRef, uintptr_t> StubMap;
288
294
295 // True if all sections should be passed to the memory manager, false if only
296 // sections containing relocations should be. Defaults to 'false'.
298
299 // This mutex prevents simultaneously loading objects from two different
300 // threads. This keeps us from having to protect individual data structures
301 // and guarantees that section allocation requests to the memory manager
302 // won't be interleaved between modules. It is also used in mapSectionAddress
303 // and resolveRelocations to protect write access to internal data structures.
304 //
305 // loadObject may be called on the same thread during the handling of
306 // processRelocations, and that's OK. The handling of the relocation lists
307 // is written in such a way as to work correctly if new elements are added to
308 // the end of the list while the list is being processed.
310
314
315 virtual unsigned getMaxStubSize() const = 0;
316 virtual Align getStubAlignment() = 0;
317
319 std::string ErrorStr;
320
322 llvm::support::endian::write<uint16_t>(Addr, Value,
326 }
327
329 llvm::support::endian::write<uint32_t>(Addr, Value,
333 }
334
336 llvm::support::endian::write<uint64_t>(Addr, Value,
340 }
341
342 virtual void setMipsABI(const ObjectFile &Obj) {
343 IsMipsO32ABI = false;
344 IsMipsN32ABI = false;
345 IsMipsN64ABI = false;
346 }
347
348 /// Endian-aware read Read the least significant Size bytes from Src.
349 uint64_t readBytesUnaligned(uint8_t *Src, unsigned Size) const;
350
351 /// Endian-aware write. Write the least significant Size bytes from Value to
352 /// Dst.
353 void writeBytesUnaligned(uint64_t Value, uint8_t *Dst, unsigned Size) const;
354
355 /// Generate JITSymbolFlags from a libObject symbol.
357
358 /// Modify the given target address based on the given symbol flags.
359 /// This can be used by subclasses to tweak addresses based on symbol flags,
360 /// For example: the MachO/ARM target uses it to set the low bit if the target
361 /// is a thumb symbol.
363 JITSymbolFlags Flags) const {
364 return Addr;
365 }
366
367 /// Given the common symbols discovered in the object file, emit a
368 /// new section for them and update the symbol mappings in the object and
369 /// symbol table.
371 CommonSymbolList &CommonSymbols, uint64_t CommonSize,
372 uint32_t CommonAlign);
373
374 /// Emits section data from the object file to the MemoryManager.
375 /// \param IsCode if it's true then allocateCodeSection() will be
376 /// used for emits, else allocateDataSection() will be used.
377 /// \return SectionID.
379 const SectionRef &Section,
380 bool IsCode);
381
382 /// Find Section in LocalSections. If the secton is not found - emit
383 /// it and store in LocalSections.
384 /// \param IsCode if it's true then allocateCodeSection() will be
385 /// used for emmits, else allocateDataSection() will be used.
386 /// \return SectionID.
388 const SectionRef &Section, bool IsCode,
389 ObjSectionToIDMap &LocalSections);
390
391 // Add a relocation entry that uses the given section.
392 void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID);
393
394 // Add a relocation entry that uses the given symbol. This symbol may
395 // be found in the global symbol table, or it may be external.
396 void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName);
397
398 /// Emits long jump instruction to Addr.
399 /// \return Pointer to the memory area for emitting target address.
400 uint8_t *createStubFunction(uint8_t *Addr, unsigned AbiVariant = 0);
401
402 /// Resolves relocations from Relocs list with address from Value.
404
405 /// A object file specific relocation resolver
406 /// \param RE The relocation to be resolved
407 /// \param Value Target symbol address to apply the relocation action
408 virtual void resolveRelocation(const RelocationEntry &RE, uint64_t Value) = 0;
409
410 /// Parses one or more object file relocations (some object files use
411 /// relocation pairs) and stores it to Relocations or SymbolRelocations
412 /// (this depends on the object file type).
413 /// \return Iterator to the next relocation that needs to be parsed.
416 const ObjectFile &Obj, ObjSectionToIDMap &ObjSectionToID,
417 StubMap &Stubs) = 0;
418
420 const StringMap<JITEvaluatedSymbol> ExternalSymbolMap);
421
422 /// Resolve relocations to external symbols.
424
425 // Compute an upper bound of the memory that is required to load all
426 // sections
427 Error computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize,
428 Align &CodeAlign, uint64_t &RODataSize,
429 Align &RODataAlign, uint64_t &RWDataSize,
430 Align &RWDataAlign);
431
432 // Compute GOT size
433 unsigned computeGOTSize(const ObjectFile &Obj);
434
435 // Compute the stub buffer size required for a section
436 unsigned computeSectionStubBufSize(const ObjectFile &Obj,
437 const SectionRef &Section);
438
439 // Implementation of the generic part of the loadObject algorithm.
441
442 // Return size of Global Offset Table (GOT) entry
443 virtual size_t getGOTEntrySize() { return 0; }
444
445 // Hook for the subclasses to do further processing when a symbol is added to
446 // the global symbol table. This function may modify the symbol table entry.
447 virtual void processNewSymbol(const SymbolRef &ObjSymbol, SymbolTableEntry& Entry) {}
448
449 // Return true if the relocation R may require allocating a GOT entry.
450 virtual bool relocationNeedsGot(const RelocationRef &R) const {
451 return false;
452 }
453
454 // Return true if the relocation R may require allocating a stub.
455 virtual bool relocationNeedsStub(const RelocationRef &R) const {
456 return true; // Conservative answer
457 }
458
459 // Return true if the relocation R may require allocating a DLL import stub.
460 virtual bool relocationNeedsDLLImportStub(const RelocationRef &R) const {
461 return false;
462 }
463
464 // Add the size of a DLL import stub to the buffer size
465 virtual unsigned sizeAfterAddingDLLImportStub(unsigned Size) const {
466 return Size;
467 }
468
469public:
474 }
475
477
479 this->ProcessAllSections = ProcessAllSections;
480 }
481
482 virtual std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
484
485 uint64_t getSectionLoadAddress(unsigned SectionID) const {
486 if (SectionID == AbsoluteSymbolSection)
487 return 0;
488 else
489 return Sections[SectionID].getLoadAddress();
490 }
491
492 uint8_t *getSectionAddress(unsigned SectionID) const {
493 if (SectionID == AbsoluteSymbolSection)
494 return nullptr;
495 else
496 return Sections[SectionID].getAddress();
497 }
498
499 StringRef getSectionContent(unsigned SectionID) const {
500 if (SectionID == AbsoluteSymbolSection)
501 return {};
502 else
503 return StringRef(
504 reinterpret_cast<char *>(Sections[SectionID].getAddress()),
505 Sections[SectionID].getStubOffset() + getMaxStubSize());
506 }
507
509 // FIXME: Just look up as a function for now. Overly simple of course.
510 // Work in progress.
512 if (pos == GlobalSymbolTable.end())
513 return nullptr;
514 const auto &SymInfo = pos->second;
515 // Absolute symbols do not have a local address.
516 if (SymInfo.getSectionID() == AbsoluteSymbolSection)
517 return nullptr;
518 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset();
519 }
520
522 auto GSTItr = GlobalSymbolTable.find(Name);
523 if (GSTItr == GlobalSymbolTable.end())
524 return ~0U;
525 return GSTItr->second.getSectionID();
526 }
527
529 // FIXME: Just look up as a function for now. Overly simple of course.
530 // Work in progress.
532 if (pos == GlobalSymbolTable.end())
533 return nullptr;
534 const auto &SymEntry = pos->second;
535 uint64_t SectionAddr = 0;
536 if (SymEntry.getSectionID() != AbsoluteSymbolSection)
537 SectionAddr = getSectionLoadAddress(SymEntry.getSectionID());
538 uint64_t TargetAddr = SectionAddr + SymEntry.getOffset();
539
540 // FIXME: Have getSymbol should return the actual address and the client
541 // modify it based on the flags. This will require clients to be
542 // aware of the target architecture, which we should build
543 // infrastructure for.
544 TargetAddr = modifyAddressBasedOnFlags(TargetAddr, SymEntry.getFlags());
545 return JITEvaluatedSymbol(TargetAddr, SymEntry.getFlags());
546 }
547
548 std::map<StringRef, JITEvaluatedSymbol> getSymbolTable() const {
549 std::map<StringRef, JITEvaluatedSymbol> Result;
550
551 for (const auto &KV : GlobalSymbolTable) {
552 auto SectionID = KV.second.getSectionID();
553 uint64_t SectionAddr = getSectionLoadAddress(SectionID);
554 Result[KV.first()] =
555 JITEvaluatedSymbol(SectionAddr + KV.second.getOffset(), KV.second.getFlags());
556 }
557
558 return Result;
559 }
560
561 void resolveRelocations();
562
564
565 static void finalizeAsync(
566 std::unique_ptr<RuntimeDyldImpl> This,
568 std::unique_ptr<RuntimeDyld::LoadedObjectInfo>,
569 Error)>
570 OnEmitted,
572 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> Info);
573
574 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
575
576 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
577
578 // Is the linker in an error state?
579 bool hasError() { return HasError; }
580
581 // Mark the error condition as handled and continue.
582 void clearError() { HasError = false; }
583
584 // Get the error message.
586
587 virtual bool isCompatibleFile(const ObjectFile &Obj) const = 0;
588
590 this->NotifyStubEmitted = std::move(NotifyStubEmitted);
591 }
592
593 virtual void registerEHFrames();
594
595 void deregisterEHFrames();
596
597 virtual Error finalizeLoad(const ObjectFile &ObjImg,
598 ObjSectionToIDMap &SectionMap) {
599 return Error::success();
600 }
601};
602
603} // end namespace llvm
604
605#endif
This file defines the StringMap class.
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
uint64_t Addr
std::string Name
uint64_t Size
Symbol * Sym
Definition: ELF_riscv.cpp:479
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static const char * name
Definition: SMEABIPass.cpp:46
const Value * getAddress(const DbgVariableIntrinsic *DVI)
Definition: SROA.cpp:5023
This file defines the SmallVector class.
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
static ErrorSuccess success()
Create a success value.
Definition: Error.h:337
Tagged union holding either a T or a Error.
Definition: Error.h:481
Represents a symbol that has been evaluated to an address already.
Definition: JITSymbol.h:229
Flags for symbols in the JIT.
Definition: JITSymbol.h:74
Symbol resolution interface.
Definition: JITSymbol.h:371
RelocationEntry - used to represent relocations internally in the dynamic linker.
RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
unsigned Size
The size of this relocation (MachO specific).
RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, bool IsPCRel, unsigned Size)
uint32_t RelType
RelType - relocation type.
uint64_t Offset
Offset - offset into the section.
RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, uint64_t symoffset)
RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB, uint64_t SectionBOffset, bool IsPCRel, unsigned Size, bool IsTargetThumbFunc)
bool IsPCRel
True if this is a PCRel relocation (MachO specific).
int64_t Addend
Addend - the relocation addend encoded in the instruction itself.
unsigned SectionID
SectionID - the section this relocation points to.
RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB, uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
bool operator<(const RelocationValueRef &Other) const
bool operator==(const RelocationValueRef &Other) const
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
Definition: Record.h:2203
virtual bool relocationNeedsGot(const RelocationRef &R) const
void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress)
virtual void processNewSymbol(const SymbolRef &ObjSymbol, SymbolTableEntry &Entry)
RuntimeDyld::NotifyStubEmittedFunction NotifyStubEmittedFunction
StringMap< RelocationList > ExternalSymbolRelocations
void reassignSectionAddress(unsigned SectionID, uint64_t Addr)
NotifyStubEmittedFunction NotifyStubEmitted
virtual uint64_t modifyAddressBasedOnFlags(uint64_t Addr, JITSymbolFlags Flags) const
Modify the given target address based on the given symbol flags.
virtual Expected< relocation_iterator > processRelocationRef(unsigned SectionID, relocation_iterator RelI, const ObjectFile &Obj, ObjSectionToIDMap &ObjSectionToID, StubMap &Stubs)=0
Parses one or more object file relocations (some object files use relocation pairs) and stores it to ...
std::map< SectionRef, unsigned > ObjSectionToIDMap
virtual void resolveRelocation(const RelocationEntry &RE, uint64_t Value)=0
A object file specific relocation resolver.
virtual Align getStubAlignment()=0
virtual bool isCompatibleFile(const ObjectFile &Obj) const =0
void writeInt32BE(uint8_t *Addr, uint32_t Value)
virtual Error finalizeLoad(const ObjectFile &ObjImg, ObjSectionToIDMap &SectionMap)
RuntimeDyldImpl(RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
void applyExternalSymbolRelocations(const StringMap< JITEvaluatedSymbol > ExternalSymbolMap)
void resolveRelocationList(const RelocationList &Relocs, uint64_t Value)
Resolves relocations from Relocs list with address from Value.
void writeInt64BE(uint8_t *Addr, uint64_t Value)
SmallVector< RelocationEntry, 64 > RelocationList
std::map< RelocationValueRef, uintptr_t > StubMap
JITEvaluatedSymbol getSymbol(StringRef Name) const
std::map< StringRef, JITEvaluatedSymbol > getSymbolTable() const
void writeInt16BE(uint8_t *Addr, uint16_t Value)
static const unsigned AbsoluteSymbolSection
void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName)
StringRef getSectionContent(unsigned SectionID) const
virtual void registerEHFrames()
Definition: RuntimeDyld.cpp:74
JITSymbolResolver & Resolver
virtual ~RuntimeDyldImpl()
static void finalizeAsync(std::unique_ptr< RuntimeDyldImpl > This, unique_function< void(object::OwningBinary< object::ObjectFile >, std::unique_ptr< RuntimeDyld::LoadedObjectInfo >, Error)> OnEmitted, object::OwningBinary< object::ObjectFile > O, std::unique_ptr< RuntimeDyld::LoadedObjectInfo > Info)
Error emitCommonSymbols(const ObjectFile &Obj, CommonSymbolList &CommonSymbols, uint64_t CommonSize, uint32_t CommonAlign)
Given the common symbols discovered in the object file, emit a new section for them and update the sy...
virtual std::unique_ptr< RuntimeDyld::LoadedObjectInfo > loadObject(const object::ObjectFile &Obj)=0
Expected< unsigned > emitSection(const ObjectFile &Obj, const SectionRef &Section, bool IsCode)
Emits section data from the object file to the MemoryManager.
virtual unsigned sizeAfterAddingDLLImportStub(unsigned Size) const
std::unordered_map< unsigned, RelocationList > Relocations
std::vector< SymbolRef > CommonSymbolList
RuntimeDyld::MemoryManager & MemMgr
void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID)
Expected< unsigned > findOrEmitSection(const ObjectFile &Obj, const SectionRef &Section, bool IsCode, ObjSectionToIDMap &LocalSections)
Find Section in LocalSections.
virtual bool relocationNeedsStub(const RelocationRef &R) const
Triple::ArchType Arch
unsigned getSymbolSectionID(StringRef Name) const
void setProcessAllSections(bool ProcessAllSections)
unsigned computeGOTSize(const ObjectFile &Obj)
uint8_t * getSymbolLocalAddress(StringRef Name) const
virtual void setMipsABI(const ObjectFile &Obj)
void writeBytesUnaligned(uint64_t Value, uint8_t *Dst, unsigned Size) const
Endian-aware write.
std::deque< SectionEntry > SectionList
virtual size_t getGOTEntrySize()
uint8_t * createStubFunction(uint8_t *Addr, unsigned AbiVariant=0)
Emits long jump instruction to Addr.
uint64_t readBytesUnaligned(uint8_t *Src, unsigned Size) const
Endian-aware read Read the least significant Size bytes from Src.
virtual bool relocationNeedsDLLImportStub(const RelocationRef &R) const
uint64_t getSectionLoadAddress(unsigned SectionID) const
virtual unsigned getMaxStubSize() const =0
uint8_t * getSectionAddress(unsigned SectionID) const
void setNotifyStubEmitted(NotifyStubEmittedFunction NotifyStubEmitted)
Error computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize, Align &CodeAlign, uint64_t &RODataSize, Align &RODataAlign, uint64_t &RWDataSize, Align &RWDataAlign)
unsigned computeSectionStubBufSize(const ObjectFile &Obj, const SectionRef &Section)
RTDyldSymbolTable GlobalSymbolTable
virtual Expected< JITSymbolFlags > getJITSymbolFlags(const SymbolRef &Sym)
Generate JITSymbolFlags from a libObject symbol.
Expected< ObjSectionToIDMap > loadObjectImpl(const object::ObjectFile &Obj)
Error resolveExternalSymbols()
Resolve relocations to external symbols.
Information about the loaded object.
Definition: RuntimeDyld.h:69
std::function< void(StringRef FileName, StringRef SectionName, StringRef SymbolName, unsigned SectionID, uint32_t StubOffset)> NotifyStubEmittedFunction
Definition: RuntimeDyld.h:66
SectionEntry - represents a section emitted into memory by the dynamic linker.
uint8_t * getAddressWithOffset(unsigned OffsetBytes) const
Return the address of this section with an offset.
SectionEntry(StringRef name, uint8_t *address, size_t size, size_t allocationSize, uintptr_t objAddress)
void advanceStubOffset(unsigned StubSize)
void setLoadAddress(uint64_t LA)
uintptr_t getStubOffset() const
uint64_t getLoadAddressWithOffset(unsigned OffsetBytes) const
Return the load address of this section with an offset.
uintptr_t getObjAddress() const
StringRef getName() const
uint8_t * getAddress() const
size_t getSize() const
uint64_t getLoadAddress() const
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1196
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition: StringMap.h:128
iterator end()
Definition: StringMap.h:220
iterator find(StringRef Key)
Definition: StringMap.h:233
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
Symbol info for RuntimeDyld.
uint64_t getOffset() const
SymbolTableEntry(unsigned SectionID, uint64_t Offset, JITSymbolFlags Flags)
unsigned getSectionID() const
JITSymbolFlags getFlags() const
void setOffset(uint64_t NewOffset)
LLVM Value Representation.
Definition: Value.h:74
This class is the base class for all object file types.
Definition: ObjectFile.h:229
This is a value type class that represents a single relocation in the list of relocations in the obje...
Definition: ObjectFile.h:52
This is a value type class that represents a single section in the list of sections in the object fil...
Definition: ObjectFile.h:81
This is a value type class that represents a single symbol in the list of symbols in the object file.
Definition: ObjectFile.h:168
unique_function is a type-erasing functor similar to std::function.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
Definition: STLExtras.h:1697
@ Other
Any other memory.
StringMap< SymbolTableEntry > RTDyldSymbolTable
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
SymInfo contains information about symbol: it's address and section index which is -1LL for absolute ...
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39