Lines Matching defs:shift
1327 if (shift_info->shift() == NO_SHIFT) {
1333 shift_info->shift(),
2736 int32_t shift = WhichPowerOf2Abs(divisor);
2737 if (shift == 0) {
2739 } else if (shift == 1) {
2743 __ Add(result, dividend, Operand(result, LSR, 32 - shift));
2745 if (shift > 0) __ Mov(result, Operand(result, ASR, shift));
3923 // can simply do an arithmetic right shift.
3924 int32_t shift = WhichPowerOf2Abs(divisor);
3926 __ Mov(result, Operand(dividend, ASR, shift));
3946 __ Mov(result, Operand(dividend, ASR, shift));
3950 __ Asr(result, result, shift);