Lines Matching refs:DepKV
1715 for (const auto &DepKV : LocalDeps) { in verifyRemoved() local
1716 assert(DepKV.first != D && "Inst occurs in data structures"); in verifyRemoved()
1717 assert(DepKV.second.getInst() != D && "Inst occurs in data structures"); in verifyRemoved()
1720 for (const auto &DepKV : NonLocalPointerDeps) { in verifyRemoved() local
1721 assert(DepKV.first.getPointer() != D && "Inst occurs in NLPD map key"); in verifyRemoved()
1722 for (const auto &Entry : DepKV.second.NonLocalDeps) in verifyRemoved()
1726 for (const auto &DepKV : NonLocalDepsMap) { in verifyRemoved() local
1727 assert(DepKV.first != D && "Inst occurs in data structures"); in verifyRemoved()
1728 const PerInstNLInfo &INLD = DepKV.second; in verifyRemoved()
1734 for (const auto &DepKV : ReverseLocalDeps) { in verifyRemoved() local
1735 assert(DepKV.first != D && "Inst occurs in data structures"); in verifyRemoved()
1736 for (Instruction *Inst : DepKV.second) in verifyRemoved()
1740 for (const auto &DepKV : ReverseNonLocalDeps) { in verifyRemoved() local
1741 assert(DepKV.first != D && "Inst occurs in data structures"); in verifyRemoved()
1742 for (Instruction *Inst : DepKV.second) in verifyRemoved()
1746 for (const auto &DepKV : ReverseNonLocalPtrDeps) { in verifyRemoved() local
1747 assert(DepKV.first != D && "Inst occurs in rev NLPD map"); in verifyRemoved()
1749 for (ValueIsLoadPair P : DepKV.second) in verifyRemoved()