Home
last modified time | relevance | path

Searched refs:addModuleSet (Results 1 – 19 of 19) sorted by relevance

/external/llvm/unittests/ExecutionEngine/Orc/
DLazyEmittingLayerTest.cpp17 ModuleSetHandleT addModuleSet( in addModuleSet() function
29 L.addModuleSet(std::list<std::unique_ptr<llvm::Module>>(), nullptr, nullptr); in TEST()
DOrcTestCommon.h118 ModuleSetHandleT addModuleSet(ModuleSetT Ms, MemoryManagerPtrT MemMgr, in addModuleSet() function
DObjectTransformLayerTest.cpp327 CompileLayer.addModuleSet(std::vector<llvm::Module *>(), &Manager, &Resolver); in TEST()
/external/llvm/docs/tutorial/
DBuildingAJIT2.rst49 is added via addModuleSet:
104 return OptimizeLayer.addModuleSet(std::move(Ms),
124 inside our resolver, and the call through to addModuleSet.
177 ModuleSetHandleT addModuleSet(ModuleSetT Ms,
184 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr),
218 with addModuleSet through the transform functor, and (2) conforming to the ORC
234 | addModuleSet | addModuleSet doesn't have to compile (or do any other |
239 | | addModuleSet eagerly applies the transform functor to |
248 | | previously been added via addModuleSet (and not yet |
279 (like IRTransformLayer) can implement addModuleSet by running each module in the
[all …]
DBuildingAJIT1.rst209 return CompileLayer.addModuleSet(std::move(Ms),
269 JIT. We do this by calling the CompileLayer's addModuleSet method [4]_. Since
270 we only have a single Module and addModuleSet expects a collection, we will
273 CompileLayer's handle type, we can return the handle from addModuleSet
/external/llvm/include/llvm/ExecutionEngine/Orc/
DIRTransformLayer.h45 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() function
52 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr), in addModuleSet()
DGlobalMappingLayer.h44 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() function
47 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr), in addModuleSet()
DLazyEmittingLayer.h152 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr), in emitToBaseLayer()
229 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() function
DIRCompileLayer.h59 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() function
DCompileOnDemandLayer.h184 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() function
202 return B.addModuleSet(std::move(Ms), &MemMgrRef, std::move(R)); in addModuleSet()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
DKaleidoscopeJIT.h81 return CompileLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/examples/Kaleidoscope/include/
DKaleidoscopeJIT.h67 auto H = CompileLayer.addModuleSet(singletonSet(std::move(M)), in addModule()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
DKaleidoscopeJIT.h91 return OptimizeLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
DKaleidoscopeJIT.h101 return CODLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/tools/lli/
DOrcLazyJIT.h104 auto H = CODLayer.addModuleSet(std::move(S), in addModule()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
DKaleidoscopeJIT.h127 return OptimizeLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
DKaleidoscopeJIT.h155 return OptimizeLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/lib/ExecutionEngine/Orc/
DOrcCBindingsStack.h189 auto LH = Layer.addModuleSet(std::move(S), std::move(MemMgr), in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
DOrcMCJITReplacement.h171 LazyEmitLayer.addModuleSet(std::move(Ms), &MemMgr, &Resolver); in addModule()