Lines Matching refs:shifter
1799 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { in shll() argument
1800 EmitGenericShift(false, 4, operand, shifter); in shll()
1804 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) { in shlq() argument
1805 EmitGenericShift(true, 4, operand, shifter); in shlq()
1819 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl() argument
1820 EmitGenericShift(false, 5, operand, shifter); in shrl()
1824 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) { in shrq() argument
1825 EmitGenericShift(true, 5, operand, shifter); in shrq()
1834 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl() argument
1835 EmitGenericShift(false, 7, operand, shifter); in sarl()
1844 void X86_64Assembler::sarq(CpuRegister operand, CpuRegister shifter) { in sarq() argument
1845 EmitGenericShift(true, 7, operand, shifter); in sarq()
2202 CpuRegister shifter) { in EmitGenericShift() argument
2204 CHECK_EQ(shifter.AsRegister(), RCX); in EmitGenericShift()