Searched refs:IRCompileLayer (Results 1 – 14 of 14) sorted by relevance
/external/llvm/docs/tutorial/ |
D | BuildingAJIT1.rst | 117 #include "llvm/ExecutionEngine/Orc/IRCompileLayer.h" 132 IRCompileLayer<decltype(ObjectLayer)> CompileLayer; 141 ObjectLinkingLayer and a IRCompileLayer. We'll be talking more about layers in 150 in our stack: the IRCompileLayer, which will be responsible for taking LLVM IR, 157 module. The IRCompileLayer class already provides a convenient handle type 158 (IRCompileLayer::ModuleSetHandleT), so we just alias our ModuleHandle to this. 173 DL, our DataLayout. Then we initialize our IRCompileLayer. Our IRCompile layer 217 execution" by adding them straight to the IRCompileLayer, which will 222 To add our module to the IRCompileLayer we need to supply two auxiliary objects 290 added to it. To do that we call the findSymbol method on our IRCompileLayer, [all …]
|
D | BuildingAJIT2.rst | 19 little code by composing two off-the-shelf *ORC layers*: IRCompileLayer and 58 IRCompileLayer<decltype(ObjectLayer)> CompileLayer; 235 | | work) up-front. It *can*, like IRCompileLayer, act |
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | IRCompileLayer.h | 32 template <typename BaseLayerT> class IRCompileLayer { 46 IRCompileLayer(BaseLayerT &BaseLayer, CompileFtor Compile) in IRCompileLayer() function
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 44 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | simple_orc_jit.h | 52 using CompileLayerT = llvm::orc::IRCompileLayer<ObjLayerT, CompileFtor>;
|
/external/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 45 typedef IRCompileLayer<ObjLayerT> CompileLayerT;
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 45 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | KaleidoscopeJIT.h | 47 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
|
/external/llvm/tools/lli/ |
D | OrcLazyJIT.h | 34 typedef orc::IRCompileLayer<ObjLayerT> CompileLayerT;
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | KaleidoscopeJIT.h | 72 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | KaleidoscopeJIT.h | 78 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcCBindingsStack.h | 34 typedef orc::IRCompileLayer<ObjLayerT> CompileLayerT; in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
|
D | OrcMCJITReplacement.h | 343 typedef IRCompileLayer<ObjectLayerT> CompileLayerT;
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
D | ObjectTransformLayerTest.cpp | 320 IRCompileLayer<decltype(TransformLayer)> CompileLayer(TransformLayer, in TEST()
|