Home | History | Annotate | Download | only in arm

Lines Matching defs:shift_amount

213   int shift_amount = instr->ShiftAmountValue();
218 if ((instr->RegShiftValue() == 0) && (shift == LSL) && (shift_amount == 0)) {
224 if ((shift == ROR) && (shift_amount == 0)) {
227 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
228 shift_amount = 32;
233 shift_amount);