Searched refs:Quot (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPromoteAlloca.cpp | 424 APInt Quot; in GEPToVectorIndex() local 426 APInt::udivrem(ConstOffset, VecElemSize, Quot, Rem); in GEPToVectorIndex() 430 return ConstantInt::get(GEP->getContext(), Quot); in GEPToVectorIndex()
|
H A D | SIISelLowering.cpp | 10580 SDValue Quot = DAG.getNode(ISD::FMUL, SL, MVT::f32, CvtSrc0, RcpSrc1); in LowerFDIV16() local 10583 SDValue BestQuot = DAG.getNode(ISD::FP_ROUND, SL, MVT::f16, Quot, FPRoundFlag); in LowerFDIV16()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 2970 APInt Quot; in visitGetElementPtrInst() local 2972 APInt::udivrem(*C, TyAllocSize, Quot, Rem); in visitGetElementPtrInst() 2974 NewC = Quot; in visitGetElementPtrInst() 2976 APInt Quot; in visitGetElementPtrInst() local 2978 APInt::sdivrem(*C, TyAllocSize, Quot, Rem); in visitGetElementPtrInst() 2980 if (!Quot.isAllOnes() && Rem == 0) in visitGetElementPtrInst() 2981 NewC = Quot; in visitGetElementPtrInst()
|
H A D | InstCombineMulDivRem.cpp | 379 APInt Quot, Rem; in visitMul() local 380 APInt::sdivrem(C, *C1, Quot, Rem); in visitMul() 381 return Rem.isZero() && !Quot.isAllOnes(); in visitMul()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 10832 SDValue Quot; in expandFixedPointDiv() local 10843 Quot = DAG.getNode(ISD::SDIVREM, dl, in expandFixedPointDiv() 10846 Rem = Quot.getValue(1); in expandFixedPointDiv() 10847 Quot = Quot.getValue(0); in expandFixedPointDiv() 10849 Quot = DAG.getNode(ISD::SDIV, dl, VT, in expandFixedPointDiv() 10859 SDValue Sub1 = DAG.getNode(ISD::SUB, dl, VT, Quot, in expandFixedPointDiv() 10861 Quot = DAG.getSelect(dl, VT, in expandFixedPointDiv() 10863 Sub1, Quot); in expandFixedPointDiv() 10865 Quot = DAG.getNode(ISD::UDIV, dl, VT, in expandFixedPointDiv() 10868 return Quot; in expandFixedPointDiv()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.cpp | 3801 auto Quot = in lower() local 3805 auto Prod = MIRBuilder.buildMul(Ty, Quot, MI.getOperand(2)); in lower()
|