Lines Matching refs:MId
196 PBQPRAGraph::NodeId MId, in haveDisjointAllowedRegs() argument
199 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in haveDisjointAllowedRegs()
211 PBQPRAGraph::NodeId MId, in setDisjointAllowedRegs() argument
214 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in setDisjointAllowedRegs()
338 PBQP::GraphBase::NodeId MId = getNodeId(A); in apply() local
342 if (haveDisjointAllowedRegs(G, NId, MId, D)) in apply()
346 IEdgeKey EK(std::min(NId, MId), std::max(NId, MId)); in apply()
351 if (!createInterferenceEdge(G, NId, MId, C)) in apply()
352 setDisjointAllowedRegs(G, NId, MId, D); in apply()
370 PBQPRAGraph::NodeId NId, PBQPRAGraph::NodeId MId, in createInterferenceEdge() argument
376 const auto &MRegs = G.getNodeMetadata(MId).getAllowedRegs(); in createInterferenceEdge()
382 G.addEdgeBypassingCostAllocator(NId, MId, I->second); in createInterferenceEdge()
402 PBQPRAGraph::EdgeId EId = G.addEdge(NId, MId, std::move(M)); in createInterferenceEdge()