Searched refs:NRegs (Results 1 – 1 of 1) sorted by relevance
190 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in haveDisjointAllowedRegs() local193 if (NRegs == MRegs) in haveDisjointAllowedRegs()196 if (NRegs < MRegs) in haveDisjointAllowedRegs()197 return D.count(IKey(NRegs, MRegs)) > 0; in haveDisjointAllowedRegs()199 return D.count(IKey(MRegs, NRegs)) > 0; in haveDisjointAllowedRegs()205 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in setDisjointAllowedRegs() local208 assert(NRegs != MRegs && "AllowedRegs can not be disjoint with itself"); in setDisjointAllowedRegs()210 if (NRegs < MRegs) in setDisjointAllowedRegs()211 D.insert(IKey(NRegs, MRegs)); in setDisjointAllowedRegs()213 D.insert(IKey(MRegs, NRegs)); in setDisjointAllowedRegs()[all …]