Lines Matching defs:NPQ
6610 SDValue NPQ = DAG.getNode(ISD::SUB, dl, VT, N0, Q);
6611 Created.push_back(NPQ.getNode());
6613 // For vectors we might have a mix of non-NPQ/NPQ paths, so use
6614 // MULHU to act as a SRL-by-1 for NPQ, else multiply by zero.
6616 NPQ = GetMULHU(NPQ, NPQFactor);
6618 NPQ = DAG.getNode(ISD::SRL, dl, VT, NPQ, DAG.getConstant(1, dl, ShVT));
6620 Created.push_back(NPQ.getNode());
6622 Q = DAG.getNode(ISD::ADD, dl, VT, NPQ, Q);