Home
last modified time | relevance | path

Searched refs:shift_value (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/x64/
Dmacro-assembler-x64.cc2098 int shift_value) { in SmiShiftArithmeticRightConstant() argument
2099 DCHECK(is_uint5(shift_value)); in SmiShiftArithmeticRightConstant()
2100 if (shift_value > 0) { in SmiShiftArithmeticRightConstant()
2102 sarp(dst, Immediate(shift_value + kSmiShift)); in SmiShiftArithmeticRightConstant()
2113 int shift_value, in SmiShiftLeftConstant() argument
2120 if (shift_value > 0) { in SmiShiftLeftConstant()
2122 shlq(dst, Immediate(shift_value & 0x1f)); in SmiShiftLeftConstant()
2130 shll(dst, Immediate(shift_value)); in SmiShiftLeftConstant()
2139 Register dst, Register src, int shift_value, in SmiShiftLogicalRightConstant() argument
2145 if (shift_value == 0) { in SmiShiftLogicalRightConstant()
[all …]
Dmacro-assembler-x64.h668 int shift_value,
673 int shift_value,
678 int shift_value);
/external/v8/src/
Dutils.h328 int shift_value = shift(item);
329 int set_bits = (static_cast<int>(value) << shift_value);
330 return (previous & ~(kMask << shift_value)) | set_bits;