Lines Matching refs:MRegs
191 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in haveDisjointAllowedRegs() local
193 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()
206 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in setDisjointAllowedRegs() local
208 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()
368 const auto &MRegs = G.getNodeMetadata(MId).getAllowedRegs(); in createInterferenceEdge() local
371 IKey K(&NRegs, &MRegs); in createInterferenceEdge()
378 PBQPRAGraph::RawMatrix M(NRegs.size() + 1, MRegs.size() + 1, 0); in createInterferenceEdge()
382 for (unsigned J = 0; J != MRegs.size(); ++J) { in createInterferenceEdge()
383 unsigned PRegM = MRegs[J]; in createInterferenceEdge()