Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ExecutionEngine/Orc/
DIRCompileLayer.h32 template <typename BaseLayerT> class IRCompileLayer {
46 IRCompileLayer(BaseLayerT &BaseLayer, CompileFtor Compile) in IRCompileLayer() function
/external/llvm/docs/tutorial/
DBuildingAJIT1.rst117 #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 …]
DBuildingAJIT2.rst19 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/examples/Kaleidoscope/BuildingAJIT/Chapter1/
DKaleidoscopeJIT.h44 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
/external/llvm/examples/Kaleidoscope/include/
DKaleidoscopeJIT.h45 typedef IRCompileLayer<ObjLayerT> CompileLayerT;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
DKaleidoscopeJIT.h45 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
DKaleidoscopeJIT.h47 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
/external/llvm/tools/lli/
DOrcLazyJIT.h34 typedef orc::IRCompileLayer<ObjLayerT> CompileLayerT;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
DKaleidoscopeJIT.h72 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
DKaleidoscopeJIT.h78 IRCompileLayer<decltype(ObjectLayer)> CompileLayer;
/external/llvm/lib/ExecutionEngine/Orc/
DOrcCBindingsStack.h34 typedef orc::IRCompileLayer<ObjLayerT> CompileLayerT; in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
DOrcMCJITReplacement.h343 typedef IRCompileLayer<ObjectLayerT> CompileLayerT;
/external/llvm/unittests/ExecutionEngine/Orc/
DObjectTransformLayerTest.cpp320 IRCompileLayer<decltype(TransformLayer)> CompileLayer(TransformLayer, in TEST()