Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp83 ConcurrentIRCompiler::ConcurrentIRCompiler(JITTargetMachineBuilder JTMB, in ConcurrentIRCompiler() function in llvm::orc::ConcurrentIRCompiler
89 ConcurrentIRCompiler::operator()(Module &M) { in operator ()()
H A DLLJIT.cpp825 return std::make_unique<ConcurrentIRCompiler>(std::move(JTMB)); in createCompileFunction()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileUtils.h82 class ConcurrentIRCompiler : public IRCompileLayer::IRCompiler {
84 ConcurrentIRCompiler(JITTargetMachineBuilder JTMB,
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/include/
H A DKaleidoscopeJIT.h52 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A DKaleidoscopeJIT.h52 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A DKaleidoscopeJIT.h58 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A DKaleidoscopeJIT.h69 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/openbsd-src/gnu/llvm/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp112 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))), in SpeculativeJIT()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h156 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
/openbsd-src/gnu/llvm/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))),
/openbsd-src/gnu/llvm/llvm/tools/lli/
H A Dlli.cpp896 return std::make_unique<orc::ConcurrentIRCompiler>(std::move(JTMB), in runOrcJIT()
/openbsd-src/gnu/llvm/llvm/docs/
H A DORCv2.rst52 ConcurrentIRCompiler) that make it easy to add LLVM IR to a JIT'd process.