Lines Matching refs:shifter

2833 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) {  in shll()  argument
2834 EmitGenericShift(false, 4, operand, shifter); in shll()
2838 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) { in shlq() argument
2839 EmitGenericShift(true, 4, operand, shifter); in shlq()
2853 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl() argument
2854 EmitGenericShift(false, 5, operand, shifter); in shrl()
2858 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) { in shrq() argument
2859 EmitGenericShift(true, 5, operand, shifter); in shrq()
2868 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl() argument
2869 EmitGenericShift(false, 7, operand, shifter); in sarl()
2878 void X86_64Assembler::sarq(CpuRegister operand, CpuRegister shifter) { in sarq() argument
2879 EmitGenericShift(true, 7, operand, shifter); in sarq()
2888 void X86_64Assembler::roll(CpuRegister operand, CpuRegister shifter) { in roll() argument
2889 EmitGenericShift(false, 0, operand, shifter); in roll()
2898 void X86_64Assembler::rorl(CpuRegister operand, CpuRegister shifter) { in rorl() argument
2899 EmitGenericShift(false, 1, operand, shifter); in rorl()
2908 void X86_64Assembler::rolq(CpuRegister operand, CpuRegister shifter) { in rolq() argument
2909 EmitGenericShift(true, 0, operand, shifter); in rolq()
2918 void X86_64Assembler::rorq(CpuRegister operand, CpuRegister shifter) { in rorq() argument
2919 EmitGenericShift(true, 1, operand, shifter); in rorq()
3493 CpuRegister shifter) { in EmitGenericShift() argument
3495 CHECK_EQ(shifter.AsRegister(), RCX); in EmitGenericShift()