Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DTPCIndirectionUtils.h133 IndirectStubInfo(JITTargetAddress StubAddress, in IndirectStubInfo()
135 : StubAddress(StubAddress), PointerAddress(PointerAddress) {} in IndirectStubInfo()
136 JITTargetAddress StubAddress = 0; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1688 uintptr_t StubAddress; in processRelocationRef() local
1690 StubAddress = uintptr_t(Section.getAddressWithOffset(i->second)); in processRelocationRef()
1698 StubAddress = in processRelocationRef()
1701 unsigned StubOffset = StubAddress - BaseAddress; in processRelocationRef()
1704 createStubFunction((uint8_t *)StubAddress); in processRelocationRef()
1715 resolveRelocation(Section, Offset, StubAddress + 8, ELF::R_390_PC32DBL, in processRelocationRef()
1718 resolveRelocation(Section, Offset, StubAddress, RelType, Addend); in processRelocationRef()
1742 uintptr_t StubAddress; in processRelocationRef() local
1744 StubAddress = uintptr_t(Section->getAddress()) + i->second; in processRelocationRef()
1752 StubAddress = in processRelocationRef()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DTPCIndirectionUtils.cpp189 return {I->second.first.StubAddress, I->second.second}; in findStub()