Searched refs:NRegs (Results 1 – 4 of 4) sorted by relevance
228 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in haveDisjointAllowedRegs() local231 if (NRegs == MRegs) in haveDisjointAllowedRegs()234 if (NRegs < MRegs) in haveDisjointAllowedRegs()235 return D.count(IKey(NRegs, MRegs)) > 0; in haveDisjointAllowedRegs()237 return D.count(IKey(MRegs, NRegs)) > 0; in haveDisjointAllowedRegs()243 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in setDisjointAllowedRegs() local246 assert(NRegs != MRegs && "AllowedRegs can not be disjoint with itself"); in setDisjointAllowedRegs()248 if (NRegs < MRegs) in setDisjointAllowedRegs()249 D.insert(IKey(NRegs, MRegs)); in setDisjointAllowedRegs()251 D.insert(IKey(MRegs, NRegs)); in setDisjointAllowedRegs()[all …]
198 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in haveDisjointAllowedRegs() local201 if (NRegs == MRegs) in haveDisjointAllowedRegs()204 if (NRegs < MRegs) in haveDisjointAllowedRegs()205 return D.count(IKey(NRegs, MRegs)) > 0; in haveDisjointAllowedRegs()207 return D.count(IKey(MRegs, NRegs)) > 0; in haveDisjointAllowedRegs()213 const auto *NRegs = &G.getNodeMetadata(NId).getAllowedRegs(); in setDisjointAllowedRegs() local216 assert(NRegs != MRegs && "AllowedRegs can not be disjoint with itself"); in setDisjointAllowedRegs()218 if (NRegs < MRegs) in setDisjointAllowedRegs()219 D.insert(IKey(NRegs, MRegs)); in setDisjointAllowedRegs()221 D.insert(IKey(MRegs, NRegs)); in setDisjointAllowedRegs()[all …]
222 unsigned NRegs) { in init() argument223 NumRegs = NRegs; in init()225 static_cast<LiveIntervalUnion*>(malloc(sizeof(LiveIntervalUnion)*NRegs)); in init()226 for (unsigned r = 0; r != NRegs; ++r) in init()
81 void init(LiveIntervalUnion::Allocator &, unsigned NRegs);