Searched refs:LMH (Results 1 – 2 of 2) sorted by relevance
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | LogicalDylib.h | 71 void addToLogicalModule(LogicalModuleHandle LMH, in addToLogicalModule() argument 73 LMH->BaseLayerHandles.push_back(BaseLayerHandle); in addToLogicalModule() 76 LogicalModuleResources& getLogicalModuleResources(LogicalModuleHandle LMH) { in getLogicalModuleResources() argument 77 return LMH->Resources; in getLogicalModuleResources() 80 BaseLayerHandleIterator moduleHandlesBegin(LogicalModuleHandle LMH) { in moduleHandlesBegin() argument 81 return LMH->BaseLayerHandles.begin(); in moduleHandlesBegin() 84 BaseLayerHandleIterator moduleHandlesEnd(LogicalModuleHandle LMH) { in moduleHandlesEnd() argument 85 return LMH->BaseLayerHandles.end(); in moduleHandlesEnd() 88 JITSymbol findSymbolInLogicalModule(LogicalModuleHandle LMH, in findSymbolInLogicalModule() argument 92 if (auto StubSym = LMH->Resources.findSymbol(Name, ExportedSymbolsOnly)) in findSymbolInLogicalModule() [all …]
|
D | CompileOnDemandLayer.h | 215 auto LMH = LD.createLogicalModule(); in addLogicalModule() local 216 auto &LMResources = LD.getLogicalModuleResources(LMH); in addLogicalModule() 248 CCInfo.setCompileAction([this, &LD, LMH, &F]() { in addLogicalModule() 249 return this->extractAndCompile(LD, LMH, F); in addLogicalModule() 319 [&LD, LMH](const std::string &Name) { in addLogicalModule() 320 auto &LMResources = LD.getLogicalModuleResources(LMH); in addLogicalModule() 335 LD.addToLogicalModule(LMH, GVsH); in addLogicalModule() 348 LogicalModuleHandle LMH, in extractAndCompile() argument 350 auto &LMResources = LD.getLogicalModuleResources(LMH); in extractAndCompile() 361 auto PartH = emitPartition(LD, LMH, Part); in extractAndCompile() [all …]
|