Home | History | Annotate | Download | only in arm

Lines Matching defs:shift

201 // These shift names are defined in a way to match the native disassembler
208 // Print the register shift operands for the instruction. Generally used for
211 ShiftOp shift = instr->ShiftField();
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)) {
255 // Print the optional shift and immediate used by saturating instructions.
257 int shift = instr->Bits(11, 7);
258 if (shift > 0) {