Lines Matching refs:ShiftAmt
1511 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm(); in emitMiscArithInstruction() local
1513 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!"); in emitMiscArithInstruction()
1514 if (ShiftAmt == 32) in emitMiscArithInstruction()
1515 ShiftAmt = 0; in emitMiscArithInstruction()
1517 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!"); in emitMiscArithInstruction()
1518 Binary |= ShiftAmt << ARMII::ShiftShift; in emitMiscArithInstruction()
1554 unsigned ShiftAmt = MI.getOperand(3).getImm(); in emitSaturateInstruction() local
1555 if (ShiftAmt == 32 && Opc == ARM_AM::asr) in emitSaturateInstruction()
1556 ShiftAmt = 0; in emitSaturateInstruction()
1557 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!"); in emitSaturateInstruction()
1558 Binary |= ShiftAmt << ARMII::ShiftShift; in emitSaturateInstruction()