Home
last modified time | relevance | path

Searched refs:shifter (Results 1 – 4 of 4) sorted by relevance

/art/compiler/utils/x86/
Dassembler_x86.h400 void shll(Register operand, Register shifter);
402 void shrl(Register operand, Register shifter);
404 void sarl(Register operand, Register shifter);
590 void EmitGenericShift(int rm, Register operand, Register shifter);
Dassembler_x86.cc1053 void X86Assembler::shll(Register operand, Register shifter) { in shll() argument
1054 EmitGenericShift(4, operand, shifter); in shll()
1063 void X86Assembler::shrl(Register operand, Register shifter) { in shrl() argument
1064 EmitGenericShift(5, operand, shifter); in shrl()
1073 void X86Assembler::sarl(Register operand, Register shifter) { in sarl() argument
1074 EmitGenericShift(7, operand, shifter); in sarl()
1403 Register shifter) { in EmitGenericShift() argument
1405 CHECK_EQ(shifter, ECX); in EmitGenericShift()
/art/compiler/utils/x86_64/
Dassembler_x86_64.h440 void shll(CpuRegister operand, CpuRegister shifter);
442 void shrl(CpuRegister operand, CpuRegister shifter);
444 void sarl(CpuRegister operand, CpuRegister shifter);
634 void EmitGenericShift(int rm, CpuRegister operand, CpuRegister shifter);
Dassembler_x86_64.cc1248 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { in shll() argument
1249 EmitGenericShift(4, operand, shifter); in shll()
1263 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl() argument
1264 EmitGenericShift(5, operand, shifter); in shrl()
1273 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl() argument
1274 EmitGenericShift(7, operand, shifter); in sarl()
1607 CpuRegister shifter) { in EmitGenericShift() argument
1609 CHECK_EQ(shifter.AsRegister(), RCX); in EmitGenericShift()