Lines Matching refs:shift_value
2180 int shift_value) { in SmiShiftArithmeticRightConstant() argument
2181 DCHECK(is_uint5(shift_value)); in SmiShiftArithmeticRightConstant()
2182 if (shift_value > 0) { in SmiShiftArithmeticRightConstant()
2184 sarp(dst, Immediate(shift_value + kSmiShift)); in SmiShiftArithmeticRightConstant()
2195 int shift_value, in SmiShiftLeftConstant() argument
2202 if (shift_value > 0) { in SmiShiftLeftConstant()
2204 shlq(dst, Immediate(shift_value & 0x1f)); in SmiShiftLeftConstant()
2212 shll(dst, Immediate(shift_value)); in SmiShiftLeftConstant()
2221 Register dst, Register src, int shift_value, in SmiShiftLogicalRightConstant() argument
2227 if (shift_value == 0) { in SmiShiftLogicalRightConstant()
2233 shrp(dst, Immediate(shift_value + kSmiShift)); in SmiShiftLogicalRightConstant()
2238 shrp(dst, Immediate(shift_value)); in SmiShiftLogicalRightConstant()