Searched refs:SDG (Results 1 – 5 of 5) sorted by relevance
534 SymbolDependenceGroup &SDG = DepGroupForBlock[&Sym->getBlock()]; in registerDependencies() local535 SDG.Symbols.insert(ES.intern(Sym->getName())); in registerDependencies()541 SDG.Dependencies[&TargetJD] = BDeps.Internal; in registerDependencies()545 SDG.Dependencies[DepSrcItr->second].insert(Dep); in registerDependencies()589 for (auto &[B, SDG] : DepGroupForBlock) { in registerDependencies()590 assert(!SDG.Symbols.empty() && "SymbolDependenceGroup covers no symbols"); in registerDependencies()591 if (!SDG.Dependencies.empty()) in registerDependencies()592 SymbolDepGroups.push_back(std::move(SDG)); in registerDependencies()
367 SymbolDependenceGroup SDG; in onObjEmit() local369 SDG.Symbols.insert(Sym); in onObjEmit()370 SDG.Dependencies = std::move(*Deps); in onObjEmit()372 if (auto Err = R.notifyEmitted(SDG)) { in onObjEmit()
545 auto &SDG = SDGs.back(); in LLVMOrcMaterializationResponsibilityNotifyEmitted() local546 SDG.Symbols = toSymbolNameSet(SymbolDepGroups[I].Symbols); in LLVMOrcMaterializationResponsibilityNotifyEmitted()547 SDG.Dependencies = toSymbolDependenceMap( in LLVMOrcMaterializationResponsibilityNotifyEmitted()
3449 for (auto &SDG : DepGroups) { in OL_notifyEmitted()3450 dbgs() << " Symbols: " << SDG.Symbols in OL_notifyEmitted()3451 << ", Dependencies: " << SDG.Dependencies << "\n"; in OL_notifyEmitted()
489 SDG sudanpound