Lines Matching refs:RotAmt
11094 auto RotateAndPermute = [&](SDValue Lo, SDValue Hi, int RotAmt, int Ofs) { in lowerShuffleAsByteRotateAndPermute() argument
11099 DAG.getTargetConstant(Scale * RotAmt, DL, MVT::i8))); in lowerShuffleAsByteRotateAndPermute()
11107 PermMask[Lane + Elt] = Lane + ((M + Ofs - RotAmt) % NumEltsPerLane); in lowerShuffleAsByteRotateAndPermute()
11109 PermMask[Lane + Elt] = Lane + ((M - Ofs - RotAmt) % NumEltsPerLane); in lowerShuffleAsByteRotateAndPermute()
30178 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits); in LowerRotate() local
30180 DAG.getTargetConstant(RotAmt, DL, MVT::i8)); in LowerRotate()
30210 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits); in LowerRotate() local
30211 SDValue Mask = getGFNICtrlMask(Opcode, DAG, DL, VT, RotAmt); in LowerRotate()
30229 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits); in LowerRotate() local
30231 DAG.getTargetConstant(RotAmt, DL, MVT::i8)); in LowerRotate()
30242 uint64_t RotAmt = CstSplatValue.urem(EltSizeInBits); in LowerRotate() local
30243 uint64_t ShlAmt = IsROTL ? RotAmt : (EltSizeInBits - RotAmt); in LowerRotate()
30244 uint64_t SrlAmt = IsROTL ? (EltSizeInBits - RotAmt) : RotAmt; in LowerRotate()