Lines Matching refs:shifter
3025 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) {
3026 EmitGenericShift(false, 4, operand, shifter);
3030 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) {
3031 EmitGenericShift(true, 4, operand, shifter);
3045 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) {
3046 EmitGenericShift(false, 5, operand, shifter);
3050 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) {
3051 EmitGenericShift(true, 5, operand, shifter);
3060 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) {
3061 EmitGenericShift(false, 7, operand, shifter);
3070 void X86_64Assembler::sarq(CpuRegister operand, CpuRegister shifter) {
3071 EmitGenericShift(true, 7, operand, shifter);
3080 void X86_64Assembler::roll(CpuRegister operand, CpuRegister shifter) {
3081 EmitGenericShift(false, 0, operand, shifter);
3090 void X86_64Assembler::rorl(CpuRegister operand, CpuRegister shifter) {
3091 EmitGenericShift(false, 1, operand, shifter);
3100 void X86_64Assembler::rolq(CpuRegister operand, CpuRegister shifter) {
3101 EmitGenericShift(true, 0, operand, shifter);
3110 void X86_64Assembler::rorq(CpuRegister operand, CpuRegister shifter) {
3111 EmitGenericShift(true, 1, operand, shifter);
3739 CpuRegister shifter) {
3741 CHECK_EQ(shifter.AsRegister(), RCX);