Lines Matching refs:C1Val
4906 const APInt &C1Val = C1->getAPIntValue(); in foldLogicOfSetCCs() local
4907 if ((C0Val - C1Val).isPowerOf2()) { in foldLogicOfSetCCs()
4910 SDValue OffsetC = DAG.getConstant(-C1Val, DL, OpVT); in foldLogicOfSetCCs()
4912 SDValue MaskC = DAG.getConstant(~(C0Val - C1Val), DL, OpVT); in foldLogicOfSetCCs()
7801 const APInt &C1Val = C1Node->getAPIntValue(); in combineShiftOfShiftedLogic() local
7817 if (ShiftAmtVal->getBitWidth() != C1Val.getBitWidth()) in combineShiftOfShiftedLogic()
7821 if ((*ShiftAmtVal + C1Val).uge(V.getScalarValueSizeInBits())) in combineShiftOfShiftedLogic()
7841 SDValue ShiftSumC = DAG.getConstant(*C0Val + C1Val, DL, ShiftAmtVT); in combineShiftOfShiftedLogic()
9139 const APInt &C1Val = C1->getAPIntValue(); in foldSelectOfConstants() local
9141 if (C1Val - 1 == C2Val) { in foldSelectOfConstants()
9147 if (C1Val + 1 == C2Val) { in foldSelectOfConstants()
9155 if (C1Val.isPowerOf2() && C2Val.isNullValue()) { in foldSelectOfConstants()
9158 SDValue ShAmtC = DAG.getConstant(C1Val.exactLogBase2(), DL, VT); in foldSelectOfConstants()