Searched refs:NRegs (Results 1 – 1 of 1) sorted by relevance
227 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in haveDisjointAllowedRegs() local230 if (NRegs == MRegs) in haveDisjointAllowedRegs()233 if (NRegs < MRegs) in haveDisjointAllowedRegs()234 return D.count(IKey(NRegs, MRegs)) > 0; in haveDisjointAllowedRegs()236 return D.count(IKey(MRegs, NRegs)) > 0; in haveDisjointAllowedRegs()242 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in setDisjointAllowedRegs() local245 assert(NRegs != MRegs && "AllowedRegs can not be disjoint with itself"); in setDisjointAllowedRegs()247 if (NRegs < MRegs) in setDisjointAllowedRegs()248 D.insert(IKey(NRegs, MRegs)); in setDisjointAllowedRegs()250 D.insert(IKey(MRegs, NRegs)); in setDisjointAllowedRegs()[all …]