Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h217 class DynamicLibrarySearchGenerator : public DefinitionGenerator {
227 DynamicLibrarySearchGenerator(sys::DynamicLibrary Dylib, char GlobalPrefix,
233 static Expected<std::unique_ptr<DynamicLibrarySearchGenerator>>
239 static Expected<std::unique_ptr<DynamicLibrarySearchGenerator>>
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp223 DynamicLibrarySearchGenerator::DynamicLibrarySearchGenerator( in DynamicLibrarySearchGenerator() function in llvm::orc::DynamicLibrarySearchGenerator
228 Expected<std::unique_ptr<DynamicLibrarySearchGenerator>>
229 DynamicLibrarySearchGenerator::Load(const char *FileName, char GlobalPrefix, in Load()
235 return std::make_unique<DynamicLibrarySearchGenerator>( in Load()
239 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()
/openbsd-src/gnu/llvm/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp71 DynamicLibrarySearchGenerator::GetForCurrentProcess( in Create()
108 std::unique_ptr<DynamicLibrarySearchGenerator> ProcessSymbolsGenerator) in SpeculativeJIT()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/include/
H A DKaleidoscopeJIT.h55 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithGDBRegistrationListener/
H A DLLJITWithGDBRegistrationListener.cpp89 ExitOnErr(orc::DynamicLibrarySearchGenerator::GetForCurrentProcess( in main()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A DKaleidoscopeJIT.h55 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/openbsd-src/gnu/llvm/clang/lib/Interpreter/
H A DIncrementalExecutor.cpp49 if (auto PSGOrErr = DynamicLibrarySearchGenerator::GetForCurrentProcess(Pref)) in IncrementalExecutor()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A DKaleidoscopeJIT.h62 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A DKaleidoscopeJIT.h76 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/openbsd-src/gnu/llvm/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())));
/openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/
H A DLLJITWithObjectLinkingLayerPlugin.cpp225 ExitOnErr(DynamicLibrarySearchGenerator::GetForCurrentProcess( in main()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h161 cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
/openbsd-src/gnu/llvm/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(
/openbsd-src/gnu/llvm/llvm/tools/lli/
H A Dlli.cpp980 ExitOnErr(orc::DynamicLibrarySearchGenerator::GetForCurrentProcess( in runOrcJIT()