Searched refs:CompileOnDemandLayer (Results 1 – 13 of 13) sorted by relevance
77 CompileOnDemandLayer &Parent) in PartitioningIRMaterializationUnit()83 CompileOnDemandLayer &Parent) in PartitioningIRMaterializationUnit()103 CompileOnDemandLayer &Parent;106 Optional<CompileOnDemandLayer::GlobalValueSet>107 CompileOnDemandLayer::compileRequested(GlobalValueSet Requested) { in compileRequested()111 Optional<CompileOnDemandLayer::GlobalValueSet>112 CompileOnDemandLayer::compileWholeModule(GlobalValueSet Requested) { in compileWholeModule()116 CompileOnDemandLayer::CompileOnDemandLayer( in CompileOnDemandLayer() function in llvm::orc::CompileOnDemandLayer123 void CompileOnDemandLayer::setPartitionFunction(PartitionFunction Partition) { in setPartitionFunction()127 void CompileOnDemandLayer::setImplMap(ImplSymbolMap *Imp) { in setImplMap()[all …]
2 CompileOnDemandLayer.cpp
1247 CODLayer = std::make_unique<CompileOnDemandLayer>( in LLLazyJIT()
38 *CompileOnDemandLayer*.40 The CompileOnDemandLayer class conforms to the layer interface described in44 first time it is called. To do this, the CompileOnDemandLayer creates two small63 chapter of this tutorial, but for now we'll trust the CompileOnDemandLayer to65 CompileOnDemandLayer to the top of our stack and we'll get the benefits of72 #include "llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h"90 CompileOnDemandLayer<decltype(OptimizeLayer)> CODLayer;95 First we need to include the CompileOnDemandLayer.h header, then add two new96 members: a std::unique_ptr<JITCompileCallbackManager> and a CompileOnDemandLayer,97 to our class. The CompileCallbackManager member is used by the CompileOnDemandLayer[all …]
17 reexports API. Together these will be used to replace the CompileOnDemandLayer
62 class CompileOnDemandLayer : public IRLayer {85 CompileOnDemandLayer(ExecutionSession &ES, IRLayer &BaseLayer,
227 setPartitionFunction(CompileOnDemandLayer::PartitionFunction Partition) { in setPartitionFunction()232 CompileOnDemandLayer &getCompileOnDemandLayer() { return *CODLayer; } in getCompileOnDemandLayer()248 std::unique_ptr<CompileOnDemandLayer> CODLayer;
9 SRCS+= CompileOnDemandLayer.cpp \
16 "CompileOnDemandLayer.cpp",
52 CompileOnDemandLayer CODLayer;
146 CompileOnDemandLayer CODLayer;
963 J->setPartitionFunction(orc::CompileOnDemandLayer::compileWholeModule); in runOrcJIT()
98 The LLLazyJIT extends LLJIT and adds a CompileOnDemandLayer to enable lazy