Home | History | Annotate | Download | only in X86

Lines Matching refs:RotateAmt

23851         uint64_t RotateAmt = EltBits[0].urem(EltSizeInBits);
23853 DAG.getConstant(RotateAmt, DL, MVT::i8));
23874 uint64_t RotateAmt = RotateConst->getAPIntValue().getZExtValue();
23875 assert(RotateAmt < EltSizeInBits && "Rotation out of range");
23877 DAG.getConstant(RotateAmt, DL, MVT::i8));
23898 uint64_t RotateAmt = RotateConst->getAPIntValue().getZExtValue();
23899 assert(RotateAmt < EltSizeInBits && "Rotation out of range");
23900 if (RotateAmt == 0)
23903 SDValue AmtR = DAG.getConstant(EltSizeInBits - RotateAmt, DL, VT);