13#ifndef LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFAARCH64_H 
   14#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFAARCH64_H 
   22#define DEBUG_TYPE "dyld" 
   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);
 
 
   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, Inserted] = Stubs.try_emplace(OriginalRelValueRef);
 
  127                        << TargetName.
data() << 
"\n");
 
  129      StubOffset = Section.getStubOffset();
 
  130      Stub->second = StubOffset;
 
  136      StubOffset = Stub->second;
 
  150    return std::make_tuple(
Offset, RelType, Addend);
 
 
  165    if (!TargetNameOrErr)
 
  169    auto SectionOrErr = Symbol->getSection();
 
  172    auto Section = *SectionOrErr;
 
  186    unsigned TargetSectionID = -1;
 
  190      TargetSectionID = SectionID;
 
  194    } 
else if (!IsExtern) {
 
  196              Obj, *Section, Section->isText(), ObjSectionToID))
 
  197        TargetSectionID = *TargetSectionIDOrErr;
 
  199        return TargetSectionIDOrErr.takeError();
 
  213      Addend = (orig & 0x03FFFFFF) << 2;
 
  217            SectionID, TargetName, 
Offset, RelType, Addend, Stubs);
 
  222      Addend = (orig & 0x00FFFFE0) >> 3;
 
  227      Addend = (orig & 0x000FFFE0) >> 3;
 
  233      Addend = ((orig >> 29) & 0x3) | ((orig >> 3) & 0x1FFFFC);
 
  239      Addend = ((orig >> 10) & 0xFFF);
 
  255                      << 
" RelType: " << RelTypeName << 
" TargetName: " 
  256                      << TargetName << 
" Addend " << Addend << 
"\n");
 
 
  274    uint64_t FinalAddress = Section.getLoadAddressWithOffset(RE.
Offset);
 
  335                            (PCRelVal & 0x0FFFFFFC) >> 2);
 
  344                            (PCRelVal & 0x001FFFFC) << 3);
 
  353                            (PCRelVal & 0x0000FFFC) << 3);
 
  364             "relocation overflow");
 
  371             "Relocation overflow");
 
  373             "Relocation underflow");
 
 
 
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file defines the SmallString class.
void write32le(void *P, uint32_t V)
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()
RuntimeDyldCOFF(RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver, unsigned PointerSize, uint32_t PointerReloc)
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
uint64_t getOffset() const
symbol_iterator getSymbol() const
void getTypeName(SmallVectorImpl< char > &Result) const
Get a string that represents the type of this relocation.
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
content_iterator< RelocationRef > relocation_iterator
uint64_t read64le(const void *P)
uint16_t read16le(const void *P)
void write64le(void *P, uint64_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.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
@ INTERNAL_REL_ARM64_LONG_BRANCH26
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
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.