Home
last modified time | relevance | path

Searched refs:DynamicLibrarySearchGenerator (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h216 class DynamicLibrarySearchGenerator : public DefinitionGenerator {
226 DynamicLibrarySearchGenerator(sys::DynamicLibrary Dylib, char GlobalPrefix,
232 static Expected<std::unique_ptr<DynamicLibrarySearchGenerator>>
238 static Expected<std::unique_ptr<DynamicLibrarySearchGenerator>>
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp222 DynamicLibrarySearchGenerator::DynamicLibrarySearchGenerator( in DynamicLibrarySearchGenerator() function in llvm::orc::DynamicLibrarySearchGenerator
227 Expected<std::unique_ptr<DynamicLibrarySearchGenerator>>
228 DynamicLibrarySearchGenerator::Load(const char *FileName, char GlobalPrefix, in Load()
234 return std::make_unique<DynamicLibrarySearchGenerator>( in Load()
238 Error DynamicLibrarySearchGenerator::tryToGenerate( in tryToGenerate()
H A DOrcV2CBindings.cpp698 DynamicLibrarySearchGenerator::SymbolPredicate Pred; in LLVMOrcCreateDynamicLibrarySearchGeneratorForProcess()
705 DynamicLibrarySearchGenerator::GetForCurrentProcess(GlobalPrefix, Pred); in LLVMOrcCreateDynamicLibrarySearchGeneratorForProcess()
724 DynamicLibrarySearchGenerator::SymbolPredicate Pred; in LLVMOrcCreateDynamicLibrarySearchGeneratorForPath()
731 DynamicLibrarySearchGenerator::Load(FileName, GlobalPrefix, Pred); in LLVMOrcCreateDynamicLibrarySearchGeneratorForPath()
/llvm-project-15.0.7/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp71 DynamicLibrarySearchGenerator::GetForCurrentProcess( in Create()
108 std::unique_ptr<DynamicLibrarySearchGenerator> ProcessSymbolsGenerator) in SpeculativeJIT()
/llvm-project-15.0.7/mlir/lib/ExecutionEngine/
H A DExecutionEngine.cpp49 using llvm::orc::DynamicLibrarySearchGenerator;
287 auto loaded = DynamicLibrarySearchGenerator::Load( in create()
332 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess( in create()
/llvm-project-15.0.7/clang/lib/Interpreter/
H A DIncrementalExecutor.cpp49 if (auto PSGOrErr = DynamicLibrarySearchGenerator::GetForCurrentProcess(Pref)) in IncrementalExecutor()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A DKaleidoscopeJIT.h55 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/LLJITWithGDBRegistrationListener/
H A DLLJITWithGDBRegistrationListener.cpp89 ExitOnErr(orc::DynamicLibrarySearchGenerator::GetForCurrentProcess( in main()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/include/
H A DKaleidoscopeJIT.h55 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A DKaleidoscopeJIT.h62 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A DKaleidoscopeJIT.h76 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/
H A DLLJITWithObjectLinkingLayerPlugin.cpp225 ExitOnErr(DynamicLibrarySearchGenerator::GetForCurrentProcess( in main()
/llvm-project-15.0.7/llvm/docs/tutorial/
H A DBuildingAJIT1.rst146 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(DL.getGlobalPrefix())));
182 ``DynamicLibrarySearchGenerator`` instance using the
183 ``DynamicLibrarySearchGenerator::GetForCurrentProcess`` method.
306 | ExecutionUtils.h | Provides the DynamicLibrarySearchGenerator |
H A DBuildingAJIT2.rst80 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(DL.getGlobalPrefix())));
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h161 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/llvm-project-15.0.7/llvm/docs/
H A DORCv2.rst328 For process and library symbols the DynamicLibrarySearchGenerator utility (See
834 ORC provides the ``DynamicLibrarySearchGenerator`` utility for reflecting symbols
844 DynamicLibrarySearchGenerator::Load("/path/to/lib"
854 The ``DynamicLibrarySearchGenerator`` utility can also be constructed with a
872 JD.addGenerator(cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/llvm-project-15.0.7/llvm/tools/lli/
H A Dlli.cpp1036 ExitOnErr(orc::DynamicLibrarySearchGenerator::GetForCurrentProcess( in runOrcJIT()