Home
last modified time | relevance | path

Searched refs:HeaderAddr (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/orc/
H A Dcoff_platform.cpp118 Error registerAtExit(ExecutorAddr HeaderAddr, void (*AtExit)(void));
121 ExecutorAddr HeaderAddr,
125 ExecutorAddr HeaderAddr,
131 Error registerBlockRange(ExecutorAddr HeaderAddr, ExecutorAddrRange Range);
132 Error deregisterBlockRange(ExecutorAddr HeaderAddr, ExecutorAddrRange Range);
134 Error registerSEHFrames(ExecutorAddr HeaderAddr,
136 Error deregisterSEHFrames(ExecutorAddr HeaderAddr,
457 ExecutorAddr HeaderAddr, in registerObjectSections() argument
461 auto I = JDStates.find(HeaderAddr.toPtr<void *>()); in registerObjectSections()
464 ErrStream << "Unrecognized header " << HeaderAddr.getValue(); in registerObjectSections()
[all …]
H A Dmacho_platform.cpp317 ExecutorAddr HeaderAddr,
321 ExecutorAddr HeaderAddr,
325 ExecutorAddr HeaderAddr, std::optional<UnwindSectionInfo> UnwindSections,
328 ExecutorAddr HeaderAddr, std::optional<UnwindSectionInfo> UnwindSections,
573 ExecutorAddr HeaderAddr, in registerObjectSymbolTable() argument
578 auto *JDS = getJITDylibStateByHeader(HeaderAddr.toPtr<void *>()); in registerObjectSymbolTable()
583 << HeaderAddr.toPtr<void *>(); in registerObjectSymbolTable()
594 ExecutorAddr HeaderAddr, in deregisterObjectSymbolTable() argument
599 auto *JDS = getJITDylibStateByHeader(HeaderAddr.toPtr<void *>()); in deregisterObjectSymbolTable()
604 << HeaderAddr.toPtr<void *>(); in deregisterObjectSymbolTable()
[all …]
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCOFFPlatform.cpp719 JDBState.HeaderAddr)) in bootstrapCOFFRuntime()
725 orc_rt_coff_register_object_sections, JDBState.HeaderAddr, in bootstrapCOFFRuntime()
813 auto HeaderAddr = (*I)->getAddress(); in associateJITDylibHeaderSymbol() local
814 CP.JITDylibToHeaderAddr[&JD] = HeaderAddr; in associateJITDylibHeaderSymbol()
815 CP.HeaderAddrToJITDylib[HeaderAddr] = &JD; in associateJITDylibHeaderSymbol()
820 CP.orc_rt_coff_register_jitdylib, JD.getName(), HeaderAddr)), in associateJITDylibHeaderSymbol()
822 CP.orc_rt_coff_deregister_jitdylib, HeaderAddr))}); in associateJITDylibHeaderSymbol()
827 CP.orc_rt_coff_deregister_jitdylib, HeaderAddr))}); in associateJITDylibHeaderSymbol()
831 BState.HeaderAddr = HeaderAddr; in associateJITDylibHeaderSymbol()
841 auto HeaderAddr = CP.JITDylibToHeaderAddr[&JD]; in registerObjectPlatformSections() local
[all …]
H A DMachOPlatform.cpp959 auto HeaderAddr = (*I)->getAddress(); in associateJITDylibHeaderSymbol() local
960 MP.JITDylibToHeaderAddr[&JD] = HeaderAddr; in associateJITDylibHeaderSymbol()
961 MP.HeaderAddrToJITDylib[HeaderAddr] = &JD; in associateJITDylibHeaderSymbol()
967 MP.RegisterJITDylib.Addr, JD.getName(), HeaderAddr)), in associateJITDylibHeaderSymbol()
969 MP.DeregisterJITDylib.Addr, HeaderAddr))}); in associateJITDylibHeaderSymbol()
1406 ExecutorAddr HeaderAddr; in registerObjectPlatformSections() local
1413 HeaderAddr = I->second; in registerObjectPlatformSections()
1418 MP.RegisterObjectPlatformSections.Addr, HeaderAddr, UnwindInfo, in registerObjectPlatformSections()
1422 MP.DeregisterObjectPlatformSections.Addr, HeaderAddr, in registerObjectPlatformSections()
1691 ExecutorAddr HeaderAddr; in addSymbolTableRegistration() local
[all …]
/src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCOFFPlatform.h140 ExecutorAddr HeaderAddr; member