Searched refs:InProgressLookupState (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | Core.cpp | 530 class InProgressLookupState { class 535 InProgressLookupState(LookupKind K, JITDylibSearchOrder SearchOrder, in InProgressLookupState() function in llvm::orc::InProgressLookupState 541 virtual ~InProgressLookupState() = default; 542 virtual void complete(std::unique_ptr<InProgressLookupState> IPLS) = 0; 563 class InProgressLookupFlagsState : public InProgressLookupState { 568 : InProgressLookupState(K, std::move(SearchOrder), std::move(LookupSet), in InProgressLookupFlagsState() 572 void complete(std::unique_ptr<InProgressLookupState> IPLS) override { in complete() 583 class InProgressFullLookupState : public InProgressLookupState { 590 : InProgressLookupState(K, std::move(SearchOrder), std::move(LookupSet), in InProgressFullLookupState() 595 void complete(std::unique_ptr<InProgressLookupState> IPLS) override { in complete() [all …]
|
H A D | OrcV2CBindings.cpp | 26 class InProgressLookupState; 30 static InProgressLookupState *extractLookupState(LookupState &LS) { in extractLookupState() 34 static void resetLookupState(LookupState &LS, InProgressLookupState *IPLS) { in resetLookupState() 60 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(InProgressLookupState, LLVMOrcLookupStateRef)
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | Core.h | 46 class InProgressLookupState; variable 936 LookupState(std::unique_ptr<InProgressLookupState> IPLS); 939 void reset(InProgressLookupState *IPLS); 941 std::unique_ptr<InProgressLookupState> IPLS; 1784 void OL_resumeLookupAfterGeneration(InProgressLookupState &IPLS); 1789 void OL_applyQueryPhase1(std::unique_ptr<InProgressLookupState> IPLS, 1796 void OL_completeLookup(std::unique_ptr<InProgressLookupState> IPLS, 1803 std::unique_ptr<InProgressLookupState> IPLS,
|