Searched refs:CompileOnDemandLayer (Results 1 – 12 of 12) sorted by relevance
83 CompileOnDemandLayer &Parent) in PartitioningIRMaterializationUnit()102 CompileOnDemandLayer &Parent;105 Optional<CompileOnDemandLayer::GlobalValueSet>110 Optional<CompileOnDemandLayer::GlobalValueSet>115 CompileOnDemandLayer::CompileOnDemandLayer( in CompileOnDemandLayer() function in llvm::orc::CompileOnDemandLayer126 void CompileOnDemandLayer::setImplMap(ImplSymbolMap *Imp) { in setImplMap()129 void CompileOnDemandLayer::emit( in emit()184 CompileOnDemandLayer::PerDylibResources &185 CompileOnDemandLayer::getPerDylibResources(JITDylib &TargetD) { in getPerDylibResources()214 void CompileOnDemandLayer::cleanUpModule(Module &M) { in cleanUpModule()[all …]
6 CompileOnDemandLayer.cpp
946 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 new129 Now we can construct our CompileOnDemandLayer. Following the pattern from132 when a not-yet-compiled function is called, the CompileOnDemandLayer will call[all …]
17 reexports API. Together these will be used to replace the CompileOnDemandLayer
56 class CompileOnDemandLayer : public IRLayer {79 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;
16 "CompileOnDemandLayer.cpp",
51 CompileOnDemandLayer CODLayer;
150 CompileOnDemandLayer CODLayer;
1013 J->setPartitionFunction(orc::CompileOnDemandLayer::compileWholeModule); in runOrcJIT()
98 The LLLazyJIT extends LLJIT and adds a CompileOnDemandLayer to enable lazy