Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/x64/
Dmacro-assembler-x64.h661 int shift_value,
666 int shift_value,
671 int shift_value);
Dmacro-assembler-x64.cc2181 int shift_value) { in SmiShiftArithmeticRightConstant() argument
2182 ASSERT(is_uint5(shift_value)); in SmiShiftArithmeticRightConstant()
2183 if (shift_value > 0) { in SmiShiftArithmeticRightConstant()
2185 sarp(dst, Immediate(shift_value + kSmiShift)); in SmiShiftArithmeticRightConstant()
2196 int shift_value, in SmiShiftLeftConstant() argument
2203 if (shift_value > 0) { in SmiShiftLeftConstant()
2205 shlq(dst, Immediate(shift_value & 0x1f)); in SmiShiftLeftConstant()
2213 shll(dst, Immediate(shift_value)); in SmiShiftLeftConstant()
2222 Register dst, Register src, int shift_value, in SmiShiftLogicalRightConstant() argument
2228 if (shift_value == 0) { in SmiShiftLogicalRightConstant()
[all …]