Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.h136 IndirectStubInfo(ExecutorAddr StubAddress, ExecutorAddr PointerAddress) in IndirectStubInfo()
137 : StubAddress(StubAddress), PointerAddress(PointerAddress) {} in IndirectStubInfo()
138 ExecutorAddr StubAddress; member
/freebsd/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(isAligned(getStubAlignment(), StubAddress) && in processGOTRelocation()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp2116 uintptr_t StubAddress; in processRelocationRef() local
2118 StubAddress = uintptr_t(Section.getAddressWithOffset(i->second)); in processRelocationRef()
2125 StubAddress = in processRelocationRef()
2127 unsigned StubOffset = StubAddress - BaseAddress; in processRelocationRef()
2130 createStubFunction((uint8_t *)StubAddress); in processRelocationRef()
2141 resolveRelocation(Section, Offset, StubAddress + 8, ELF::R_390_PC32DBL, in processRelocationRef()
2144 resolveRelocation(Section, Offset, StubAddress, RelType, Addend); in processRelocationRef()
2168 uintptr_t StubAddress; in processRelocationRef() local
2170 StubAddress = uintptr_t(Section->getAddress()) + It->second; in processRelocationRef()
2177 StubAddress = alignTo(BaseAddress + Section->getStubOffset(), in processRelocationRef()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.cpp187 return {I->second.first.StubAddress, I->second.second}; in findStub()