Home | History | Annotate | Download | only in PowerPC

Lines Matching defs:ShiftAmt

1423   unsigned ShiftAmt = SVOp->getMaskElt(i);
1424 if (ShiftAmt < i) return -1;
1426 ShiftAmt -= i;
1432 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1437 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15))
1443 ShiftAmt = 16 - ShiftAmt;
1445 return ShiftAmt;
1618 unsigned ShiftAmt = SVOp->getMaskElt(i);
1619 if (ShiftAmt < i) return -1;
1620 ShiftAmt -= i;
1624 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i))
1627 return ShiftAmt;
10735 SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT);
10737 SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt);