Searched defs:shifter (Results 1 - 2 of 2) sorted by relevance

/art/compiler/utils/x86/
H A Dassembler_x86.cc1053 void X86Assembler::shll(Register operand, Register shifter) { argument
1054 EmitGenericShift(4, operand, shifter);
1063 void X86Assembler::shrl(Register operand, Register shifter) { argument
1064 EmitGenericShift(5, operand, shifter);
1073 void X86Assembler::sarl(Register operand, Register shifter) { argument
1074 EmitGenericShift(7, operand, shifter);
1403 Register shifter) {
1405 CHECK_EQ(shifter, ECX);
1401 EmitGenericShift(int reg_or_opcode, Register operand, Register shifter) argument
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1248 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { argument
1249 EmitGenericShift(4, operand, shifter);
1263 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { argument
1264 EmitGenericShift(5, operand, shifter);
1273 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { argument
1274 EmitGenericShift(7, operand, shifter);
1607 CpuRegister shifter) {
1609 CHECK_EQ(shifter.AsRegister(), RCX);
1605 EmitGenericShift(int reg_or_opcode, CpuRegister operand, CpuRegister shifter) argument

Completed in 34 milliseconds