14#ifndef LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFAARCH64_H
15#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFAARCH64_H
17#include "../RuntimeDyldCOFF.h"
22#define DEBUG_TYPE "dyld"
39 orig &= ~(0xFFF << 10);
40 write32le(
T, orig | ((imm & (0xFFF >> rangeLimit)) << 10));
48 if ((orig & 0x04800000) == 0x04800000)
50 if ((imm & ((1 <<
size) - 1)) != 0)
51 assert(0 &&
"misaligned ldr/str offset");
56 uint64_t Imm = (s >> shift) - (p >> shift);
58 uint32_t ImmHi = (Imm & 0x1FFFFC) << 3;
59 uint64_t Mask = (0x3 << 29) | (0x1FFFFC << 3);
76 ImageBase = std::numeric_limits<uint64_t>::max();
83 if (Section.getLoadAddress() != 0)
84 ImageBase = std::min(ImageBase, Section.getLoadAddress());
99 std::tuple<uint64_t, uint64_t, uint64_t>
103 uintptr_t StubOffset;
107 OriginalRelValueRef.
SectionID = SectionID;
109 OriginalRelValueRef.
Addend = Addend;
112 auto Stub = Stubs.find(OriginalRelValueRef);
113 if (Stub == Stubs.end()) {
115 << TargetName.
data() <<
"\n");
117 StubOffset = Section.getStubOffset();
118 Stubs[OriginalRelValueRef] = StubOffset;
124 StubOffset = Stub->second;
138 return std::make_tuple(
Offset, RelType, Addend);
147 auto Symbol = RelI->getSymbol();
152 if (!TargetNameOrErr)
156 auto SectionOrErr = Symbol->getSection();
158 return SectionOrErr.takeError();
159 auto Section = *SectionOrErr;
171 uint8_t *Displacement = (uint8_t *)ObjTarget;
173 unsigned TargetSectionID = -1;
177 TargetSectionID = SectionID;
181 }
else if (!IsExtern) {
183 Obj, *Section, Section->isText(), ObjSectionToID))
184 TargetSectionID = *TargetSectionIDOrErr;
186 return TargetSectionIDOrErr.takeError();
200 Addend = (orig & 0x03FFFFFF) << 2;
204 SectionID, TargetName,
Offset, RelType, Addend, Stubs);
209 Addend = (orig & 0x00FFFFE0) >> 3;
214 Addend = (orig & 0x000FFFE0) >> 3;
220 Addend = ((orig >> 29) & 0x3) | ((orig >> 3) & 0x1FFFFC);
226 Addend = ((orig >> 10) & 0xFFF);
239 RelI->getTypeName(RelTypeName);
242 <<
" RelType: " << RelTypeName <<
" TargetName: "
243 << TargetName <<
" Addend " << Addend <<
"\n");
258 uint8_t *
Target = Section.getAddressWithOffset(RE.
Offset);
259 uint64_t FinalAddress = Section.getLoadAddressWithOffset(RE.
Offset);
318 assert(isInt<28>(PCRelVal) &&
"Branch target is out of range.");
320 (PCRelVal & 0x0FFFFFFC) >> 2);
327 assert(isInt<21>(PCRelVal) &&
"Branch target is out of range.");
329 (PCRelVal & 0x001FFFFC) << 3);
336 assert(isInt<16>(PCRelVal) &&
"Branch target is out of range.");
338 (PCRelVal & 0x0000FFFC) << 3);
349 "relocation overflow");
356 "Relocation overflow");
358 "Relocation underflow");
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
Symbol resolution interface.
RelocationEntry - used to represent relocations internally in the dynamic linker.
uint32_t RelType
RelType - relocation type.
uint64_t Offset
Offset - offset into the section.
int64_t Addend
Addend - the relocation addend encoded in the instruction itself.
unsigned SectionID
SectionID - the section this relocation points to.
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
Align getStubAlignment() override
void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override
A object file specific relocation resolver.
unsigned getMaxStubSize() const override
RuntimeDyldCOFFAArch64(RuntimeDyld::MemoryManager &MM, JITSymbolResolver &Resolver)
void registerEHFrames() override
std::tuple< uint64_t, uint64_t, uint64_t > generateRelocationStub(unsigned SectionID, StringRef TargetName, uint64_t Offset, uint64_t RelType, uint64_t Addend, StubMap &Stubs)
Expected< object::relocation_iterator > processRelocationRef(unsigned SectionID, object::relocation_iterator RelI, const object::ObjectFile &Obj, ObjSectionToIDMap &ObjSectionToID, StubMap &Stubs) override
Parses one or more object file relocations (some object files use relocation pairs) and stores it to ...
uint64_t getSymbolOffset(const SymbolRef &Sym)
static constexpr StringRef getImportSymbolPrefix()
uint64_t getDLLImportOffset(unsigned SectionID, StubMap &Stubs, StringRef Name, bool SetSectionIDMinus1=false)
std::map< SectionRef, unsigned > ObjSectionToIDMap
std::map< RelocationValueRef, uintptr_t > StubMap
void addRelocationForSymbol(const RelocationEntry &RE, StringRef SymbolName)
void addRelocationForSection(const RelocationEntry &RE, unsigned SectionID)
Expected< unsigned > findOrEmitSection(const ObjectFile &Obj, const SectionRef &Section, bool IsCode, ObjSectionToIDMap &LocalSections)
Find Section in LocalSections.
uint8_t * createStubFunction(uint8_t *Addr, unsigned AbiVariant=0)
Emits long jump instruction to Addr.
SectionEntry - represents a section emitted into memory by the dynamic linker.
uintptr_t getObjAddress() const
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
bool startswith(StringRef Prefix) const
const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
Target - Wrapper for Target specific information.
LLVM Value Representation.
This class is the base class for all object file types.
virtual section_iterator section_end() const =0
virtual basic_symbol_iterator symbol_end() const =0
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ IMAGE_REL_ARM64_BRANCH19
@ IMAGE_REL_ARM64_SECTION
@ IMAGE_REL_ARM64_ABSOLUTE
@ IMAGE_REL_ARM64_PAGEOFFSET_12A
@ IMAGE_REL_ARM64_BRANCH14
@ IMAGE_REL_ARM64_BRANCH26
@ IMAGE_REL_ARM64_PAGEOFFSET_12L
@ IMAGE_REL_ARM64_ADDR32NB
@ IMAGE_REL_ARM64_PAGEBASE_REL21
uint64_t read64le(const void *P)
uint16_t read16le(const void *P)
void write64le(void *P, uint64_t V)
void write32le(void *P, uint32_t V)
void write16le(void *P, uint16_t V)
uint32_t read32le(const void *P)
This is an optimization pass for GlobalISel generic memory operations.
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.
@ INTERNAL_REL_ARM64_LONG_BRANCH26
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
static void write32AArch64Ldr(uint8_t *T, uint64_t imm)
static void or32le(void *P, int32_t V)
static void add16(uint8_t *p, int16_t v)
static void write32AArch64Imm(uint8_t *T, uint64_t imm, uint32_t rangeLimit)
static void write32AArch64Addr(void *T, uint64_t s, uint64_t p, int shift)
This struct is a compact representation of a valid (non-zero power of two) alignment.