Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DTPCIndirectionUtils.h133 IndirectStubInfo(JITTargetAddress StubAddress, in IndirectStubInfo()
135 : StubAddress(StubAddress), PointerAddress(PointerAddress) {} in IndirectStubInfo()
136 JITTargetAddress StubAddress = 0; member
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1658 uintptr_t StubAddress; in processRelocationRef() local
1660 StubAddress = uintptr_t(Section.getAddressWithOffset(i->second)); in processRelocationRef()
1668 StubAddress = in processRelocationRef()
1671 unsigned StubOffset = StubAddress - BaseAddress; in processRelocationRef()
1674 createStubFunction((uint8_t *)StubAddress); in processRelocationRef()
1685 resolveRelocation(Section, Offset, StubAddress + 8, ELF::R_390_PC32DBL, in processRelocationRef()
1688 resolveRelocation(Section, Offset, StubAddress, RelType, Addend); in processRelocationRef()
1712 uintptr_t StubAddress; in processRelocationRef() local
1714 StubAddress = uintptr_t(Section.getAddress()) + i->second; in processRelocationRef()
1722 StubAddress = in processRelocationRef()
[all …]
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1627 uintptr_t StubAddress; in processRelocationRef() local
1629 StubAddress = uintptr_t(Section.getAddressWithOffset(i->second)); in processRelocationRef()
1637 StubAddress = in processRelocationRef()
1640 unsigned StubOffset = StubAddress - BaseAddress; in processRelocationRef()
1643 createStubFunction((uint8_t *)StubAddress); in processRelocationRef()
1654 resolveRelocation(Section, Offset, StubAddress + 8, ELF::R_390_PC32DBL, in processRelocationRef()
1657 resolveRelocation(Section, Offset, StubAddress, RelType, Addend); in processRelocationRef()
1681 uintptr_t StubAddress; in processRelocationRef() local
1683 StubAddress = uintptr_t(Section.getAddress()) + i->second; in processRelocationRef()
1691 StubAddress = in processRelocationRef()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1620 uintptr_t StubAddress; in processRelocationRef() local
1622 StubAddress = uintptr_t(Section.getAddressWithOffset(i->second)); in processRelocationRef()
1630 StubAddress = in processRelocationRef()
1633 unsigned StubOffset = StubAddress - BaseAddress; in processRelocationRef()
1636 createStubFunction((uint8_t *)StubAddress); in processRelocationRef()
1647 resolveRelocation(Section, Offset, StubAddress + 8, ELF::R_390_PC32DBL, in processRelocationRef()
1650 resolveRelocation(Section, Offset, StubAddress, RelType, Addend); in processRelocationRef()
1674 uintptr_t StubAddress; in processRelocationRef() local
1676 StubAddress = uintptr_t(Section.getAddress()) + i->second; in processRelocationRef()
1684 StubAddress = in processRelocationRef()
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOAArch64.h398 uintptr_t StubAddress = in processGOTRelocation() local
401 unsigned StubOffset = StubAddress - BaseAddress; in processGOTRelocation()
403 assert(((StubAddress % getStubAlignment()) == 0) && in processGOTRelocation()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOAArch64.h457 uintptr_t StubAddress = in processGOTRelocation() local
460 unsigned StubOffset = StubAddress - BaseAddress; in processGOTRelocation()
462 assert(((StubAddress % getStubAlignment()) == 0) && in processGOTRelocation()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOAArch64.h457 uintptr_t StubAddress = in processGOTRelocation() local
460 unsigned StubOffset = StubAddress - BaseAddress; in processGOTRelocation()
462 assert(((StubAddress % getStubAlignment()) == 0) && in processGOTRelocation()
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DTPCIndirectionUtils.cpp189 return {I->second.first.StubAddress, I->second.second}; in findStub()