Home | History | Annotate | Download | only in ARM

Lines Matching refs:ShiftAmt

1524   unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
1526 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1527 if (ShiftAmt == 32)
1528 ShiftAmt = 0;
1530 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1531 Binary |= ShiftAmt << ARMII::ShiftShift;
1567 unsigned ShiftAmt = MI.getOperand(3).getImm();
1568 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
1569 ShiftAmt = 0;
1570 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1571 Binary |= ShiftAmt << ARMII::ShiftShift;