Home | History | Annotate | Download | only in arm

Lines Matching refs:shift_count

1183     uint8_t shift_count = static_cast<uint8_t>(value & 0x1F);
1186 if (shift_count != 0) {
1187 __ mov(result, Operand(result, ASR, shift_count));
1191 if (shift_count == 0 && instr->can_deopt()) {
1195 __ mov(result, Operand(result, LSR, shift_count));
1199 if (shift_count != 0) {
1200 __ mov(result, Operand(result, LSL, shift_count));