D | assembler_x86_64.cc | 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() [all …]
|