Home
last modified time | relevance | path

Searched refs:IRCompileLayer (Results 1 – 22 of 22) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DIRCompileLayer.cpp14 IRCompileLayer::IRCompiler::~IRCompiler() {} in ~IRCompiler()
16 IRCompileLayer::IRCompileLayer(ExecutionSession &ES, ObjectLayer &BaseLayer, in IRCompileLayer() function in llvm::orc::IRCompileLayer
23 void IRCompileLayer::setNotifyCompiled(NotifyCompiledFunction NotifyCompiled) { in setNotifyCompiled()
28 void IRCompileLayer::emit(std::unique_ptr<MaterializationResponsibility> R, in emit()
H A DCMakeLists.txt9 IRCompileLayer.cpp
H A DLLJIT.cpp1061 Expected<std::unique_ptr<IRCompileLayer::IRCompiler>>
1118 CompileLayer = std::make_unique<IRCompileLayer>( in LLJIT()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DIRCompileLayer.h30 class IRCompileLayer : public IRLayer {
51 IRCompileLayer(ExecutionSession &ES, ObjectLayer &BaseLayer,
H A DCompileUtils.h37 class SimpleCompiler : public IRCompileLayer::IRCompiler {
83 class ConcurrentIRCompiler : public IRCompileLayer::IRCompiler {
H A DLLJIT.h178 IRCompileLayer &getIRCompileLayer() { return *CompileLayer; } in getIRCompileLayer()
192 static Expected<std::unique_ptr<IRCompileLayer::IRCompiler>>
213 std::unique_ptr<IRCompileLayer> CompileLayer;
258 std::function<Expected<std::unique_ptr<IRCompileLayer::IRCompiler>>(
H A DSpeculation.h178 IRSpeculationLayer(ExecutionSession &ES, IRCompileLayer &BaseLayer, in IRSpeculationLayer()
201 IRCompileLayer &NextLayer;
/netbsd-src/external/apache2/llvm/lib/libLLVMOrc/
H A DMakefile16 IRCompileLayer.cpp \
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Orc/
H A DBUILD.gn22 "IRCompileLayer.cpp",
/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectCache/
H A DLLJITWithObjectCache.cpp58 -> Expected<std::unique_ptr<IRCompileLayer::IRCompiler>> { in runJITWithCache()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/
H A DBuildingAJIT1.rst117 #include "llvm/ExecutionEngine/Orc/IRCompileLayer.h"
132 IRCompileLayer CompileLayer;
153 not use it directly); An IRCompileLayer, ``CompileLayer``, that can be used to
309 | IRCompileLayer.h | Provides the IRCompileLayer class. |
H A DBuildingAJIT2.rst25 little code by composing two off-the-shelf *ORC layers*: IRCompileLayer and
63 IRCompileLayer CompileLayer;
235 our IRCompileLayer to compile the transformed IR, and our IRCompileLayer in turn
H A DBuildingAJIT3.rst29 IRCompileLayer and RTDyldObjectLinkingLayer respectively. This scheme, where all the
82 IRCompileLayer<decltype(ObjectLayer), SimpleCompiler> CompileLayer;
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A DKaleidoscopeJIT.h42 IRCompileLayer CompileLayer;
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/include/
H A DKaleidoscopeJIT.h42 IRCompileLayer CompileLayer;
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A DKaleidoscopeJIT.h47 IRCompileLayer CompileLayer;
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A DKaleidoscopeJIT.h50 IRCompileLayer CompileLayer;
/netbsd-src/external/apache2/llvm/dist/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp141 IRCompileLayer CompileLayer;
/netbsd-src/external/apache2/llvm/dist/clang/examples/clang-interpreter/
H A Dmain.cpp59 IRCompileLayer CompileLayer{ES, ObjectLayer,
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h137 IRCompileLayer CompileLayer;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lli/
H A Dlli.cpp899 -> Expected<std::unique_ptr<orc::IRCompileLayer::IRCompiler>> { in runOrcJIT()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DORCv2.rst51 ORC provides off the shelf components (IRCompileLayer, SimpleCompiler,
91 The LLJIT class uses an IRCompileLayer and RTDyldObjectLinkingLayer to support