Searched refs:kMaxIntShiftValue (Results 1 – 6 of 6) sorted by relevance
60 static constexpr uint32_t kMaxIntShiftValue = 0x1f; variable2829 int32_t Evaluate(int32_t x, int32_t y) const OVERRIDE { return x << (y & kMaxIntShiftValue); } in Evaluate()2843 int32_t Evaluate(int32_t x, int32_t y) const OVERRIDE { return x >> (y & kMaxIntShiftValue); } in Evaluate()2859 uint32_t uy = static_cast<uint32_t>(y) & kMaxIntShiftValue; in Evaluate()
2494 __ and_(out_reg, second_reg, ShifterOperand(kMaxIntShiftValue)); in HandleShift()2504 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue); in HandleShift()
1274 ? static_cast<uint32_t>(rhs.immediate() & kMaxIntShiftValue) in HandleShift()
1179 ? static_cast<uint32_t>(rhs_imm & kMaxIntShiftValue) in HandleShift()
2783 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue; in HandleShift()
2952 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftValue); in HandleShift()