Home
last modified time | relevance | path

Searched refs:ConcurrentIRCompiler (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp81 ConcurrentIRCompiler::ConcurrentIRCompiler(JITTargetMachineBuilder JTMB, in ConcurrentIRCompiler() function in llvm::orc::ConcurrentIRCompiler
87 ConcurrentIRCompiler::operator()(Module &M) { in operator ()()
H A DLLJIT.cpp1072 return std::make_unique<ConcurrentIRCompiler>(std::move(JTMB)); in createCompileFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileUtils.h83 class ConcurrentIRCompiler : public IRCompileLayer::IRCompiler {
85 ConcurrentIRCompiler(JITTargetMachineBuilder JTMB,
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A DKaleidoscopeJIT.h55 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/include/
H A DKaleidoscopeJIT.h55 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A DKaleidoscopeJIT.h61 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A DKaleidoscopeJIT.h71 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/netbsd-src/external/apache2/llvm/dist/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp108 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))), in SpeculativeJIT()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h158 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/
H A DBuildingAJIT1.rst142 CompileLayer(ES, ObjectLayer, ConcurrentIRCompiler(std::move(JTMB))),
171 files. We use the off-the-shelf ConcurrentIRCompiler utility as our compiler,
173 The ConcurrentIRCompiler utility will use the JITTargetMachineBuilder to build
H A DBuildingAJIT2.rst75 CompileLayer(ES, ObjectLayer, ConcurrentIRCompiler(std::move(JTMB))),
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lli/
H A Dlli.cpp901 return std::make_unique<orc::ConcurrentIRCompiler>(std::move(JTMB), in runOrcJIT()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DORCv2.rst52 ConcurrentIRCompiler) that make it easy to add LLVM IR to a JIT'd process.