Home | History | Annotate | Download | only in arm64

Lines Matching refs:shift_op

2189   Shift shift_op;
2191 case HValue::kShl: shift_op = LSL; break;
2192 case HValue::kShr: shift_op = LSR; break;
2193 case HValue::kSar: shift_op = ASR; break;
2194 default: UNREACHABLE(); shift_op = NO_SHIFT;
2198 res = new(zone()) LBitI(left, right, shift_op, shift_amount);
2200 res = new(zone()) LAddI(left, right, shift_op, shift_amount);
2203 res = new(zone()) LSubI(left, right, shift_op, shift_amount);