Home
last modified time | relevance | path

Searched refs:StubAddress (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.h133 IndirectStubInfo(JITTargetAddress StubAddress, in IndirectStubInfo()
135 : StubAddress(StubAddress), PointerAddress(PointerAddress) {} in IndirectStubInfo()
136 JITTargetAddress StubAddress = 0; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1691 uintptr_t StubAddress; in processRelocationRef() local
1693 StubAddress = uintptr_t(Section.getAddressWithOffset(i->second)); in processRelocationRef()
1701 StubAddress = in processRelocationRef()
1704 unsigned StubOffset = StubAddress - BaseAddress; in processRelocationRef()
1707 createStubFunction((uint8_t *)StubAddress); in processRelocationRef()
1721 resolveRelocation(Section, Offset, StubAddress, RelType, Addend); in processRelocationRef()
1745 uintptr_t StubAddress; in processRelocationRef() local
1747 StubAddress = uintptr_t(Section->getAddress()) + i->second; in processRelocationRef()
1755 StubAddress = in processRelocationRef()
1758 unsigned StubOffset = StubAddress - BaseAddress; in processRelocationRef()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOAArch64.h457 uintptr_t StubAddress = in processGOTRelocation() local
460 unsigned StubOffset = StubAddress - BaseAddress; in processGOTRelocation()
462 assert(((StubAddress % getStubAlignment()) == 0) && in processGOTRelocation()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.cpp189 return {I->second.first.StubAddress, I->second.second}; in findStub()