//===- LambdaResolverMM - Redirect symbol lookup via a functor --*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Defines a RuntimeDyld::SymbolResolver subclass that uses a user-supplied // functor for symbol resolution. // //===----------------------------------------------------------------------===// #ifndef LLVM_EXECUTIONENGINE_ORC_LAMBDARESOLVER_H #define LLVM_EXECUTIONENGINE_ORC_LAMBDARESOLVER_H #include "llvm/ADT/STLExtras.h" #include "llvm/ExecutionEngine/JITSymbol.h" #include namespace llvm { namespace orc { template class LambdaResolver : public LegacyJITSymbolResolver { public: LLVM_ATTRIBUTE_DEPRECATED( LambdaResolver(DylibLookupFtorT DylibLookupFtor, ExternalLookupFtorT ExternalLookupFtor), "ORCv1 utilities (including resolvers) are deprecated and will be " "removed " "in the next release. Please use ORCv2 (see docs/ORCv2.rst)"); LambdaResolver(ORCv1DeprecationAcknowledgement, DylibLookupFtorT DylibLookupFtor, ExternalLookupFtorT ExternalLookupFtor) : DylibLookupFtor(DylibLookupFtor), ExternalLookupFtor(ExternalLookupFtor) {} JITSymbol findSymbolInLogicalDylib(const std::string &Name) final { return DylibLookupFtor(Name); } JITSymbol findSymbol(const std::string &Name) final { return ExternalLookupFtor(Name); } private: DylibLookupFtorT DylibLookupFtor; ExternalLookupFtorT ExternalLookupFtor; }; template LambdaResolver::LambdaResolver( DylibLookupFtorT DylibLookupFtor, ExternalLookupFtorT ExternalLookupFtor) : DylibLookupFtor(DylibLookupFtor), ExternalLookupFtor(ExternalLookupFtor) { } template std::shared_ptr> createLambdaResolver(DylibLookupFtorT DylibLookupFtor, ExternalLookupFtorT ExternalLookupFtor) { using LR = LambdaResolver; return make_unique(std::move(DylibLookupFtor), std::move(ExternalLookupFtor)); } template std::shared_ptr> createLambdaResolver(ORCv1DeprecationAcknowledgement, DylibLookupFtorT DylibLookupFtor, ExternalLookupFtorT ExternalLookupFtor) { using LR = LambdaResolver; return make_unique(AcknowledgeORCv1Deprecation, std::move(DylibLookupFtor), std::move(ExternalLookupFtor)); } } // end namespace orc } // end namespace llvm #endif // LLVM_EXECUTIONENGINE_ORC_LAMBDARESOLVER_H