Home
last modified time | relevance | path

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

/art/test/551-checker-shifter-operand/
Dinfo.txt1 Test the merging of instructions into the shifter operand on arm64.
/art/test/550-checker-multiply-accumulate/
Dinfo.txt1 Test the merging of instructions into the shifter operand on arm64.
/art/compiler/utils/x86/
Dassembler_x86.h351 void rorl(Register operand, Register shifter);
353 void roll(Register operand, Register shifter);
675 void shll(Register operand, Register shifter);
677 void shll(const Address& address, Register shifter);
679 void shrl(Register operand, Register shifter);
681 void shrl(const Address& address, Register shifter);
683 void sarl(Register operand, Register shifter);
685 void sarl(const Address& address, Register shifter);
686 void shld(Register dst, Register src, Register shifter);
688 void shrd(Register dst, Register src, Register shifter);
[all …]
Dassembler_x86_test.cc379 x86::Register shifter(x86::ECX); in rorl_fn() local
381 assembler->rorl(*reg, shifter); in rorl_fn()
399 x86::Register shifter(x86::ECX); in roll_fn() local
401 assembler->roll(*reg, shifter); in roll_fn()
/art/compiler/utils/x86_64/
Dassembler_x86_64.h734 void shll(CpuRegister operand, CpuRegister shifter);
736 void shrl(CpuRegister operand, CpuRegister shifter);
738 void sarl(CpuRegister operand, CpuRegister shifter);
741 void shlq(CpuRegister operand, CpuRegister shifter);
743 void shrq(CpuRegister operand, CpuRegister shifter);
745 void sarq(CpuRegister operand, CpuRegister shifter);
801 void rorl(CpuRegister operand, CpuRegister shifter);
803 void roll(CpuRegister operand, CpuRegister shifter);
806 void rorq(CpuRegister operand, CpuRegister shifter);
808 void rolq(CpuRegister operand, CpuRegister shifter);
[all …]
Dassembler_x86_64.cc2833 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 …]
/art/compiler/optimizing/
Dcode_generator_x86.h222 void GenerateShlLong(const Location& loc, Register shifter);
223 void GenerateShrLong(const Location& loc, Register shifter);
224 void GenerateUShrLong(const Location& loc, Register shifter);
/art/test/530-checker-loops3/src/
DMain.java206 public static void shifter(int[] x) { in shifter() method in Main