Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp5445 Register NPQ = MIB.buildSub(Ty, LHS, Q).getReg(0); in buildUDivorURemUsingMul() local
5450 NPQ = MIB.buildUMulH(Ty, NPQ, NPQFactor).getReg(0); in buildUDivorURemUsingMul()
5452 NPQ = MIB.buildLShr(Ty, NPQ, MIB.buildConstant(ShiftAmtTy, 1)).getReg(0); in buildUDivorURemUsingMul()
5454 Q = MIB.buildAdd(Ty, NPQ, Q).getReg(0); in buildUDivorURemUsingMul()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp6836 SDValue NPQ = DAG.getNode(ISD::SUB, dl, VT, N0, Q); in BuildUDIV() local
6837 Created.push_back(NPQ.getNode()); in BuildUDIV()
6842 NPQ = GetMULHU(NPQ, NPQFactor); in BuildUDIV()
6844 NPQ = DAG.getNode(ISD::SRL, dl, VT, NPQ, DAG.getConstant(1, dl, ShVT)); in BuildUDIV()
6846 Created.push_back(NPQ.getNode()); in BuildUDIV()
6848 Q = DAG.getNode(ISD::ADD, dl, VT, NPQ, Q); in BuildUDIV()