Home
last modified time | relevance | path

Searched refs:LogicalDylibs (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DCompileOnDemandLayer.h300 while (!LogicalDylibs.empty()) in ~LegacyCompileOnDemandLayer()
301 consumeError(removeModule(LogicalDylibs.begin()->first)); in ~LegacyCompileOnDemandLayer()
307 assert(!LogicalDylibs.count(K) && "VModuleKey K already in use"); in addModule()
308 auto I = LogicalDylibs.insert( in addModule()
309 LogicalDylibs.end(), in addModule()
318 return addLogicalModule(LogicalDylibs[K], std::move(M)); in addExtraModule()
326 auto I = LogicalDylibs.find(K); in removeModule()
327 assert(I != LogicalDylibs.end() && "VModuleKey K not valid here"); in removeModule()
329 LogicalDylibs.erase(I); in removeModule()
338 for (auto &KV : LogicalDylibs) { in findSymbol()
[all …]
/external/llvm/include/llvm/ExecutionEngine/Orc/
DCompileOnDemandLayer.h188 LogicalDylibs.push_back(CODLogicalDylib(BaseLayer)); in addModuleSet()
189 auto &LDResources = LogicalDylibs.back().getDylibResources(); in addModuleSet()
207 addLogicalModule(LogicalDylibs.back(), std::move(M)); in addModuleSet()
209 return std::prev(LogicalDylibs.end()); in addModuleSet()
217 LogicalDylibs.erase(H); in removeModuleSet()
225 for (auto LDI = LogicalDylibs.begin(), LDE = LogicalDylibs.end(); in findSymbol()
508 LogicalDylibList LogicalDylibs; variable