Home
last modified time | relevance | path

Searched refs:MRegs (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocPBQP.cpp227 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in haveDisjointAllowedRegs() local
229 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() local
244 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 …]