Lines Matching defs:ShAmtC
2608 ConstantSDNode *ShAmtC = isConstOrConstSplat(ShAmt);
2609 if (!ShAmtC || ShAmtC->getAPIntValue() != (VT.getScalarSizeInBits() - 1))
4072 ConstantSDNode *ShAmtC = isConstOrConstSplat(ShAmt);
4073 if (ShAmtC && ShAmtC->getAPIntValue() == (BitWidth - 1)) {
11345 SDValue ShAmtC = DAG.getConstant(X.getScalarValueSizeInBits() - 1, DL, VT);
11346 SDValue Sra = DAG.getNode(ISD::SRA, DL, VT, X, ShAmtC);
11351 SDValue ShAmtC = DAG.getConstant(X.getScalarValueSizeInBits() - 1, DL, VT);
11352 SDValue Sra = DAG.getNode(ISD::SRA, DL, VT, X, ShAmtC);
11472 SDValue ShAmtC =
11474 return DAG.getNode(ISD::SHL, DL, VT, Cond, ShAmtC);
12259 SDValue ShAmtC = DAG.getConstant(Pow2C.exactLogBase2(), DL, VT);
12260 return DAG.getNode(ISD::SHL, DL, VT, ZextCond, ShAmtC);
14114 if (auto *ShAmtC = dyn_cast<ConstantSDNode>(ShAmt)) {
14121 if (ShAmtC->getAPIntValue().ugt(KnownZeroBits)) {
14127 ShAmtC->getAPIntValue().getZExtValue());
22482 if (auto *ShAmtC = dyn_cast<ConstantSDNode>(User->getOperand(1));
22483 User->getOperand(0).getNode() == E.Producer && ShAmtC) {
22486 unsigned ShAmt = ShAmtC->getZExtValue();