Lines Matching refs:MId
189 PBQPRAGraph::NodeId MId, in haveDisjointAllowedRegs() argument
192 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in haveDisjointAllowedRegs()
204 PBQPRAGraph::NodeId MId, in setDisjointAllowedRegs() argument
207 const auto *MRegs = &G.getNodeMetadata(MId).getAllowedRegs(); in setDisjointAllowedRegs()
331 PBQP::GraphBase::NodeId MId = getNodeId(A); in apply() local
335 if (haveDisjointAllowedRegs(G, NId, MId, D)) in apply()
339 IEdgeKey EK(std::min(NId, MId), std::max(NId, MId)); in apply()
344 if (!createInterferenceEdge(G, NId, MId, C)) in apply()
345 setDisjointAllowedRegs(G, NId, MId, D); in apply()
363 PBQPRAGraph::NodeId NId, PBQPRAGraph::NodeId MId, in createInterferenceEdge() argument
369 const auto &MRegs = G.getNodeMetadata(MId).getAllowedRegs(); in createInterferenceEdge()
375 G.addEdgeBypassingCostAllocator(NId, MId, I->second); in createInterferenceEdge()
395 PBQPRAGraph::EdgeId EId = G.addEdge(NId, MId, std::move(M)); in createInterferenceEdge()