Lines Matching defs:shift
181 // These shift names are defined in a way to match the native disassembler
188 // Print the register shift operands for the instruction. Generally used for
191 ShiftOp shift = instr->ShiftField();
198 if ((instr->RegShiftValue() == 0) && (shift == LSL) && (shift_amount == 0)) {
204 if ((shift == ROR) && (shift_amount == 0)) {
207 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
234 // Print the optional shift and immediate used by saturating instructions.
236 int shift = instr->Bits(11, 7);
237 if (shift > 0) {