Home | History | Annotate | Download | only in ARM

Lines Matching refs:ShiftAmt

1516   unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
1518 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1519 if (ShiftAmt == 32)
1520 ShiftAmt = 0;
1522 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1523 Binary |= ShiftAmt << ARMII::ShiftShift;
1559 unsigned ShiftAmt = MI.getOperand(3).getImm();
1560 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
1561 ShiftAmt = 0;
1562 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1563 Binary |= ShiftAmt << ARMII::ShiftShift;