13#ifndef LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFAARCH64_H
14#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFAARCH64_H
16#include "../RuntimeDyldCOFF.h"
22#define DEBUG_TYPE "dyld"
32static void add16(uint8_t *p, int16_t v) {
34 write16le(p, read16le(p) + v);
40 write32le(
P, read32le(
P) | V);
47 orig &= ~(0xFFF << 10);
48 write32le(
T, orig | ((imm & (0xFFF >> rangeLimit)) << 10));
58 if ((orig & 0x04800000) == 0x04800000)
60 if ((imm & ((1 <<
size) - 1)) != 0)
61 assert(0 &&
"misaligned ldr/str offset");
68 uint64_t Imm = (s >> shift) - (p >> shift);
70 uint32_t ImmHi = (Imm & 0x1FFFFC) << 3;
71 uint64_t Mask = (0x3 << 29) | (0x1FFFFC << 3);
72 write32le(
T, (read32le(
T) & ~Mask) | ImmLo | ImmHi);
88 ImageBase = std::numeric_limits<uint64_t>::max();
95 if (Section.getLoadAddress() != 0)
96 ImageBase = std::min(ImageBase, Section.getLoadAddress());
111 std::tuple<uint64_t, uint64_t, uint64_t>
115 uintptr_t StubOffset;
119 OriginalRelValueRef.
SectionID = SectionID;
121 OriginalRelValueRef.
Addend = Addend;
124 auto Stub = Stubs.find(OriginalRelValueRef);
125 if (Stub == Stubs.end()) {
127 << TargetName.
data() <<
"\n");
129 StubOffset = Section.getStubOffset();
130 Stubs[OriginalRelValueRef] = StubOffset;
136 StubOffset = Stub->second;
150 return std::make_tuple(
Offset, RelType, Addend);
160 auto Symbol = RelI->getSymbol();
165 if (!TargetNameOrErr)
169 auto SectionOrErr = Symbol->getSection();
171 return SectionOrErr.takeError();
172 auto Section = *SectionOrErr;
184 uint8_t *Displacement = (uint8_t *)ObjTarget;
186 unsigned TargetSectionID = -1;
190 TargetSectionID = SectionID;
194 }
else if (!IsExtern) {
196 Obj, *Section, Section->isText(), ObjSectionToID))
197 TargetSectionID = *TargetSectionIDOrErr;
199 return TargetSectionIDOrErr.takeError();
209 Addend = read32le(Displacement);
212 uint32_t orig = read32le(Displacement);
213 Addend = (orig & 0x03FFFFFF) << 2;
217 SectionID, TargetName,
Offset, RelType, Addend, Stubs);
221 uint32_t orig = read32le(Displacement);
222 Addend = (orig & 0x00FFFFE0) >> 3;
226 uint32_t orig = read32le(Displacement);
227 Addend = (orig & 0x000FFFE0) >> 3;
232 uint32_t orig = read32le(Displacement);
233 Addend = ((orig >> 29) & 0x3) | ((orig >> 3) & 0x1FFFFC);
238 uint32_t orig = read32le(Displacement);
239 Addend = ((orig >> 10) & 0xFFF);
243 Addend = read64le(Displacement);
252 RelI->getTypeName(RelTypeName);
255 <<
" RelType: " << RelTypeName <<
" TargetName: "
256 << TargetName <<
" Addend " << Addend <<
"\n");
273 uint8_t *
Target = Section.getAddressWithOffset(RE.
Offset);
274 uint64_t FinalAddress = Section.getLoadAddressWithOffset(RE.
Offset);
333 assert(isInt<28>(PCRelVal) &&
"Branch target is out of range.");
335 (PCRelVal & 0x0FFFFFFC) >> 2);
342 assert(isInt<21>(PCRelVal) &&
"Branch target is out of range.");
344 (PCRelVal & 0x001FFFFC) << 3);
351 assert(isInt<16>(PCRelVal) &&
"Branch target is out of range.");
353 (PCRelVal & 0x0000FFFC) << 3);
364 "relocation overflow");
371 "Relocation overflow");
373 "Relocation underflow");
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallString class.
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 starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
constexpr 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
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.