LLVM 19.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"
22#include "llvm/Support/Debug.h"
24#include "llvm/Support/Format.h"
25#include "llvm/Support/Mutex.h"
29#include <deque>
30#include <map>
31#include <system_error>
32#include <unordered_map>
33
34using namespace llvm;
35using namespace llvm::object;
36
37namespace llvm {
38
39#define UNIMPLEMENTED_RELOC(RelType) \
40 case RelType: \
41 return make_error<RuntimeDyldError>("Unimplemented relocation: " #RelType)
42
43/// SectionEntry - represents a section emitted into memory by the dynamic
44/// linker.
46 /// Name - section name.
47 std::string Name;
48
49 /// Address - address in the linker's memory where the section resides.
50 uint8_t *Address;
51
52 /// Size - section size. Doesn't include the stubs.
53 size_t Size;
54
55 /// LoadAddress - the address of the section in the target process's memory.
56 /// Used for situations in which JIT-ed code is being executed in the address
57 /// space of a separate process. If the code executes in the same address
58 /// space where it was JIT-ed, this just equals Address.
59 uint64_t LoadAddress;
60
61 /// StubOffset - used for architectures with stub functions for far
62 /// relocations (like ARM).
63 uintptr_t StubOffset;
64
65 /// The total amount of space allocated for this section. This includes the
66 /// section size and the maximum amount of space that the stubs can occupy.
67 size_t AllocationSize;
68
69 /// ObjAddress - address of the section in the in-memory object file. Used
70 /// for calculating relocations in some object formats (like MachO).
71 uintptr_t ObjAddress;
72
73public:
74 SectionEntry(StringRef name, uint8_t *address, size_t size,
75 size_t allocationSize, uintptr_t objAddress)
76 : Name(std::string(name)), Address(address), Size(size),
77 LoadAddress(reinterpret_cast<uintptr_t>(address)), StubOffset(size),
78 AllocationSize(allocationSize), ObjAddress(objAddress) {
79 // AllocationSize is used only in asserts, prevent an "unused private field"
80 // warning:
81 (void)AllocationSize;
82 }
83
84 StringRef getName() const { return Name; }
85
86 uint8_t *getAddress() const { return Address; }
87
88 /// Return the address of this section with an offset.
89 uint8_t *getAddressWithOffset(unsigned OffsetBytes) const {
90 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
91 return Address + OffsetBytes;
92 }
93
94 size_t getSize() const { return Size; }
95
96 uint64_t getLoadAddress() const { return LoadAddress; }
97 void setLoadAddress(uint64_t LA) { LoadAddress = LA; }
98
99 /// Return the load address of this section with an offset.
100 uint64_t getLoadAddressWithOffset(unsigned OffsetBytes) const {
101 assert(OffsetBytes <= AllocationSize && "Offset out of bounds!");
102 return LoadAddress + OffsetBytes;
103 }
104
105 uintptr_t getStubOffset() const { return StubOffset; }
106
107 void advanceStubOffset(unsigned StubSize) {
108 StubOffset += StubSize;
109 assert(StubOffset <= AllocationSize && "Not enough space allocated!");
110 }
111
112 uintptr_t getObjAddress() const { return ObjAddress; }
113};
114
115/// RelocationEntry - used to represent relocations internally in the dynamic
116/// linker.
118public:
119 /// Offset - offset into the section.
121
122 /// Addend - the relocation addend encoded in the instruction itself. Also
123 /// used to make a relocation section relative instead of symbol relative.
124 int64_t Addend;
125
126 /// SectionID - the section this relocation points to.
127 unsigned SectionID;
128
129 /// RelType - relocation type.
131
132 struct SectionPair {
135 };
136
137 /// SymOffset - Section offset of the relocation entry's symbol (used for GOT
138 /// lookup).
139 union {
142 };
143
144 /// The size of this relocation (MachO specific).
145 unsigned Size;
146
147 /// True if this is a PCRel relocation (MachO specific).
148 bool IsPCRel : 1;
149
150 // ARM (MachO and COFF) specific.
152
153 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
154 : Offset(offset), Addend(addend), SectionID(id), RelType(type),
156
157 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
158 uint64_t symoffset)
159 : Offset(offset), Addend(addend), SectionID(id), RelType(type),
160 SymOffset(symoffset), Size(0), IsPCRel(false),
162
163 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
164 bool IsPCRel, unsigned Size)
165 : Offset(offset), Addend(addend), SectionID(id), RelType(type),
167
168 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
169 unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB,
170 uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
171 : Offset(offset), Addend(SectionAOffset - SectionBOffset + addend),
172 SectionID(id), RelType(type), Size(Size), IsPCRel(IsPCRel),
174 Sections.SectionA = SectionA;
175 Sections.SectionB = SectionB;
176 }
177
178 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
179 unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB,
180 uint64_t SectionBOffset, bool IsPCRel, unsigned Size,
182 : Offset(offset), Addend(SectionAOffset - SectionBOffset + addend),
183 SectionID(id), RelType(type), Size(Size), IsPCRel(IsPCRel),
185 Sections.SectionA = SectionA;
186 Sections.SectionB = SectionB;
187 }
188};
189
191public:
192 unsigned SectionID = 0;
194 int64_t Addend = 0;
195 const char *SymbolName = nullptr;
196 bool IsStubThumb = false;
197
198 inline bool operator==(const RelocationValueRef &Other) const {
199 return SectionID == Other.SectionID && Offset == Other.Offset &&
200 Addend == Other.Addend && SymbolName == Other.SymbolName &&
201 IsStubThumb == Other.IsStubThumb;
202 }
203 inline bool operator<(const RelocationValueRef &Other) const {
204 if (SectionID != Other.SectionID)
205 return SectionID < Other.SectionID;
206 if (Offset != Other.Offset)
207 return Offset < Other.Offset;
208 if (Addend != Other.Addend)
209 return Addend < Other.Addend;
210 if (IsStubThumb != Other.IsStubThumb)
211 return IsStubThumb < Other.IsStubThumb;
212 return SymbolName < Other.SymbolName;
213 }
214};
215
216/// Symbol info for RuntimeDyld.
218public:
219 SymbolTableEntry() = default;
220
221 SymbolTableEntry(unsigned SectionID, uint64_t Offset, JITSymbolFlags Flags)
222 : Offset(Offset), SectionID(SectionID), Flags(Flags) {}
223
224 unsigned getSectionID() const { return SectionID; }
225 uint64_t getOffset() const { return Offset; }
226 void setOffset(uint64_t NewOffset) { Offset = NewOffset; }
227
228 JITSymbolFlags getFlags() const { return Flags; }
229
230private:
231 uint64_t Offset = 0;
232 unsigned SectionID = 0;
234};
235
237
240protected:
241 static const unsigned AbsoluteSymbolSection = ~0U;
242
243 // The MemoryManager to load objects into.
245
246 // The symbol resolver to use for external symbols.
248
249 // A list of all sections emitted by the dynamic linker. These sections are
250 // referenced in the code by means of their index in this list - SectionID.
251 // Because references may be kept while the list grows, use a container that
252 // guarantees reference stability.
253 typedef std::deque<SectionEntry> SectionList;
255
256 typedef unsigned SID; // Type for SectionIDs
257#define RTDYLD_INVALID_SECTION_ID ((RuntimeDyldImpl::SID)(-1))
258
259 // Keep a map of sections from object file to the SectionID which
260 // references it.
261 typedef std::map<SectionRef, unsigned> ObjSectionToIDMap;
262
263 // A global symbol table for symbols from all loaded modules.
265
266 // Keep a map of common symbols to their info pairs
267 typedef std::vector<SymbolRef> CommonSymbolList;
268
269 // For each symbol, keep a list of relocations based on it. Anytime
270 // its address is reassigned (the JIT re-compiled the function, e.g.),
271 // the relocations get re-resolved.
272 // The symbol (or section) the relocation is sourced from is the Key
273 // in the relocation list where it's stored.
275 // Relocations to sections already loaded. Indexed by SectionID which is the
276 // source of the address. The target where the address will be written is
277 // SectionID/Offset in the relocation itself.
278 std::unordered_map<unsigned, RelocationList> Relocations;
279
280 // Relocations to external symbols that are not yet resolved. Symbols are
281 // external when they aren't found in the global symbol table of all loaded
282 // modules. This map is indexed by symbol name.
284
285
286 typedef std::map<RelocationValueRef, uintptr_t> StubMap;
287
293
294 // True if all sections should be passed to the memory manager, false if only
295 // sections containing relocations should be. Defaults to 'false'.
297
298 // This mutex prevents simultaneously loading objects from two different
299 // threads. This keeps us from having to protect individual data structures
300 // and guarantees that section allocation requests to the memory manager
301 // won't be interleaved between modules. It is also used in mapSectionAddress
302 // and resolveRelocations to protect write access to internal data structures.
303 //
304 // loadObject may be called on the same thread during the handling of
305 // processRelocations, and that's OK. The handling of the relocation lists
306 // is written in such a way as to work correctly if new elements are added to
307 // the end of the list while the list is being processed.
309
313
314 virtual unsigned getMaxStubSize() const = 0;
315 virtual Align getStubAlignment() = 0;
316
318 std::string ErrorStr;
319
320 void writeInt16BE(uint8_t *Addr, uint16_t Value) {
321 llvm::support::endian::write<uint16_t>(Addr, Value,
325 }
326
327 void writeInt32BE(uint8_t *Addr, uint32_t Value) {
328 llvm::support::endian::write<uint32_t>(Addr, Value,
332 }
333
334 void writeInt64BE(uint8_t *Addr, uint64_t Value) {
335 llvm::support::endian::write<uint64_t>(Addr, Value,
339 }
340
341 virtual void setMipsABI(const ObjectFile &Obj) {
342 IsMipsO32ABI = false;
343 IsMipsN32ABI = false;
344 IsMipsN64ABI = false;
345 }
346
347 /// Endian-aware read Read the least significant Size bytes from Src.
348 uint64_t readBytesUnaligned(uint8_t *Src, unsigned Size) const;
349
350 /// Endian-aware write. Write the least significant Size bytes from Value to
351 /// Dst.
352 void writeBytesUnaligned(uint64_t Value, uint8_t *Dst, unsigned Size) const;
353
354 /// Generate JITSymbolFlags from a libObject symbol.
356
357 /// Modify the given target address based on the given symbol flags.
358 /// This can be used by subclasses to tweak addresses based on symbol flags,
359 /// For example: the MachO/ARM target uses it to set the low bit if the target
360 /// is a thumb symbol.
362 JITSymbolFlags Flags) const {
363 return Addr;
364 }
365
366 /// Given the common symbols discovered in the object file, emit a
367 /// new section for them and update the symbol mappings in the object and
368 /// symbol table.
370 CommonSymbolList &CommonSymbols, uint64_t CommonSize,
371 uint32_t CommonAlign);
372
373 /// Emits section data from the object file to the MemoryManager.
374 /// \param IsCode if it's true then allocateCodeSection() will be
375 /// used for emits, else allocateDataSection() will be used.
376 /// \return SectionID.
378 const SectionRef &Section,
379 bool IsCode);
380
381 /// Find Section in LocalSections. If the secton is not found - emit
382 /// it and store in LocalSections.
383 /// \param IsCode if it's true then allocateCodeSection() will be
384 /// used for emmits, else allocateDataSection() will be used.
385 /// \return SectionID.
387 const SectionRef &Section, bool IsCode,
388 ObjSectionToIDMap &LocalSections);
389
390 // Add a relocation entry that uses the given section.
391 void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID);
392
393 // Add a relocation entry that uses the given symbol. This symbol may
394 // be found in the global symbol table, or it may be external.
395 void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName);
396
397 /// Emits long jump instruction to Addr.
398 /// \return Pointer to the memory area for emitting target address.
399 uint8_t *createStubFunction(uint8_t *Addr, unsigned AbiVariant = 0);
400
401 /// Resolves relocations from Relocs list with address from Value.
403
404 /// A object file specific relocation resolver
405 /// \param RE The relocation to be resolved
406 /// \param Value Target symbol address to apply the relocation action
407 virtual void resolveRelocation(const RelocationEntry &RE, uint64_t Value) = 0;
408
409 /// Parses one or more object file relocations (some object files use
410 /// relocation pairs) and stores it to Relocations or SymbolRelocations
411 /// (this depends on the object file type).
412 /// \return Iterator to the next relocation that needs to be parsed.
415 const ObjectFile &Obj, ObjSectionToIDMap &ObjSectionToID,
416 StubMap &Stubs) = 0;
417
419 const StringMap<JITEvaluatedSymbol> ExternalSymbolMap);
420
421 /// Resolve relocations to external symbols.
423
424 // Compute an upper bound of the memory that is required to load all
425 // sections
426 Error computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize,
427 Align &CodeAlign, uint64_t &RODataSize,
428 Align &RODataAlign, uint64_t &RWDataSize,
429 Align &RWDataAlign);
430
431 // Compute GOT size
432 unsigned computeGOTSize(const ObjectFile &Obj);
433
434 // Compute the stub buffer size required for a section
435 unsigned computeSectionStubBufSize(const ObjectFile &Obj,
436 const SectionRef &Section);
437
438 // Implementation of the generic part of the loadObject algorithm.
440
441 // Return size of Global Offset Table (GOT) entry
442 virtual size_t getGOTEntrySize() { return 0; }
443
444 // Hook for the subclasses to do further processing when a symbol is added to
445 // the global symbol table. This function may modify the symbol table entry.
446 virtual void processNewSymbol(const SymbolRef &ObjSymbol, SymbolTableEntry& Entry) {}
447
448 // Return true if the relocation R may require allocating a GOT entry.
449 virtual bool relocationNeedsGot(const RelocationRef &R) const {
450 return false;
451 }
452
453 // Return true if the relocation R may require allocating a stub.
454 virtual bool relocationNeedsStub(const RelocationRef &R) const {
455 return true; // Conservative answer
456 }
457
458public:
463 }
464
466
468 this->ProcessAllSections = ProcessAllSections;
469 }
470
471 virtual std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
473
474 uint64_t getSectionLoadAddress(unsigned SectionID) const {
475 if (SectionID == AbsoluteSymbolSection)
476 return 0;
477 else
478 return Sections[SectionID].getLoadAddress();
479 }
480
481 uint8_t *getSectionAddress(unsigned SectionID) const {
482 if (SectionID == AbsoluteSymbolSection)
483 return nullptr;
484 else
485 return Sections[SectionID].getAddress();
486 }
487
488 StringRef getSectionContent(unsigned SectionID) const {
489 if (SectionID == AbsoluteSymbolSection)
490 return {};
491 else
492 return StringRef(
493 reinterpret_cast<char *>(Sections[SectionID].getAddress()),
494 Sections[SectionID].getStubOffset() + getMaxStubSize());
495 }
496
498 // FIXME: Just look up as a function for now. Overly simple of course.
499 // Work in progress.
501 if (pos == GlobalSymbolTable.end())
502 return nullptr;
503 const auto &SymInfo = pos->second;
504 // Absolute symbols do not have a local address.
505 if (SymInfo.getSectionID() == AbsoluteSymbolSection)
506 return nullptr;
507 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset();
508 }
509
511 auto GSTItr = GlobalSymbolTable.find(Name);
512 if (GSTItr == GlobalSymbolTable.end())
513 return ~0U;
514 return GSTItr->second.getSectionID();
515 }
516
518 // FIXME: Just look up as a function for now. Overly simple of course.
519 // Work in progress.
521 if (pos == GlobalSymbolTable.end())
522 return nullptr;
523 const auto &SymEntry = pos->second;
524 uint64_t SectionAddr = 0;
525 if (SymEntry.getSectionID() != AbsoluteSymbolSection)
526 SectionAddr = getSectionLoadAddress(SymEntry.getSectionID());
527 uint64_t TargetAddr = SectionAddr + SymEntry.getOffset();
528
529 // FIXME: Have getSymbol should return the actual address and the client
530 // modify it based on the flags. This will require clients to be
531 // aware of the target architecture, which we should build
532 // infrastructure for.
533 TargetAddr = modifyAddressBasedOnFlags(TargetAddr, SymEntry.getFlags());
534 return JITEvaluatedSymbol(TargetAddr, SymEntry.getFlags());
535 }
536
537 std::map<StringRef, JITEvaluatedSymbol> getSymbolTable() const {
538 std::map<StringRef, JITEvaluatedSymbol> Result;
539
540 for (const auto &KV : GlobalSymbolTable) {
541 auto SectionID = KV.second.getSectionID();
542 uint64_t SectionAddr = getSectionLoadAddress(SectionID);
543 Result[KV.first()] =
544 JITEvaluatedSymbol(SectionAddr + KV.second.getOffset(), KV.second.getFlags());
545 }
546
547 return Result;
548 }
549
550 void resolveRelocations();
551
553
554 static void finalizeAsync(
555 std::unique_ptr<RuntimeDyldImpl> This,
557 std::unique_ptr<RuntimeDyld::LoadedObjectInfo>,
558 Error)>
559 OnEmitted,
561 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> Info);
562
563 void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
564
565 void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
566
567 // Is the linker in an error state?
568 bool hasError() { return HasError; }
569
570 // Mark the error condition as handled and continue.
571 void clearError() { HasError = false; }
572
573 // Get the error message.
575
576 virtual bool isCompatibleFile(const ObjectFile &Obj) const = 0;
577
579 this->NotifyStubEmitted = std::move(NotifyStubEmitted);
580 }
581
582 virtual void registerEHFrames();
583
584 void deregisterEHFrames();
585
586 virtual Error finalizeLoad(const ObjectFile &ObjImg,
587 ObjSectionToIDMap &SectionMap) {
588 return Error::success();
589 }
590};
591
592} // end namespace llvm
593
594#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:49
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:334
Tagged union holding either a T or a Error.
Definition: Error.h:474
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:2213
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.
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.
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:1209
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition: StringMap.h:127
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:50
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:1680
@ 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