Searched refs:MRegs (Results 1 – 1 of 1) sorted by relevance
227 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in haveDisjointAllowedRegs() local229 if (NRegs == MRegs) in haveDisjointAllowedRegs()232 if (NRegs < MRegs) in haveDisjointAllowedRegs()233 return D.contains(IKey(NRegs, MRegs)); in haveDisjointAllowedRegs()235 return D.contains(IKey(MRegs, NRegs)); in haveDisjointAllowedRegs()242 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in setDisjointAllowedRegs() local244 assert(NRegs != MRegs && "AllowedRegs can not be disjoint with itself"); in setDisjointAllowedRegs()246 if (NRegs < MRegs) in setDisjointAllowedRegs()247 D.insert(IKey(NRegs, MRegs)); in setDisjointAllowedRegs()249 D.insert(IKey(MRegs, NRegs)); in setDisjointAllowedRegs()[all …]