Home
last modified time | relevance | path

Searched defs:shifter (Results 1 – 6 of 6) sorted by relevance

/art/test/530-checker-loops3/src/
DMain.java206 public static void shifter(int[] x) { in shifter() method in Main
/art/compiler/utils/x86_64/
Dassembler_x86_64_test.cc645 x86_64::CpuRegister shifter(x86_64::RCX); in shll_fn() local
666 x86_64::CpuRegister shifter(x86_64::RCX); in shlq_fn() local
687 x86_64::CpuRegister shifter(x86_64::RCX); in shrl_fn() local
707 x86_64::CpuRegister shifter(x86_64::RCX); in shrq_fn() local
727 x86_64::CpuRegister shifter(x86_64::RCX); in sarl_fn() local
747 x86_64::CpuRegister shifter(x86_64::RCX); in sarq_fn() local
767 x86_64::CpuRegister shifter(x86_64::RCX); in rorl_fn() local
787 x86_64::CpuRegister shifter(x86_64::RCX); in roll_fn() local
807 x86_64::CpuRegister shifter(x86_64::RCX); in rorq_fn() local
827 x86_64::CpuRegister shifter(x86_64::RCX); in rolq_fn() local
Dassembler_x86_64.cc4699 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { in shll()
4704 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) { in shlq()
4719 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl()
4724 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) { in shrq()
4734 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl()
4744 void X86_64Assembler::sarq(CpuRegister operand, CpuRegister shifter) { in sarq()
4754 void X86_64Assembler::roll(CpuRegister operand, CpuRegister shifter) { in roll()
4764 void X86_64Assembler::rorl(CpuRegister operand, CpuRegister shifter) { in rorl()
4774 void X86_64Assembler::rolq(CpuRegister operand, CpuRegister shifter) { in rolq()
4784 void X86_64Assembler::rorq(CpuRegister operand, CpuRegister shifter) { in rorq()
[all …]
/art/compiler/utils/x86/
Dassembler_x86.cc3408 void X86Assembler::shll(Register operand, Register shifter) { in shll()
3418 void X86Assembler::shll(const Address& address, Register shifter) { in shll()
3428 void X86Assembler::shrl(Register operand, Register shifter) { in shrl()
3438 void X86Assembler::shrl(const Address& address, Register shifter) { in shrl()
3448 void X86Assembler::sarl(Register operand, Register shifter) { in sarl()
3458 void X86Assembler::sarl(const Address& address, Register shifter) { in sarl()
3463 void X86Assembler::shld(Register dst, Register src, Register shifter) { in shld()
3481 void X86Assembler::shrd(Register dst, Register src, Register shifter) { in shrd()
3504 void X86Assembler::roll(Register operand, Register shifter) { in roll()
3514 void X86Assembler::rorl(Register operand, Register shifter) { in rorl()
[all …]
Dassembler_x86_test.cc514 x86::Register shifter(x86::ECX); in rorl_fn() local
534 x86::Register shifter(x86::ECX); in roll_fn() local
/art/compiler/optimizing/
Dcode_generator_x86.cc4858 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { in GenerateShlLong()
4890 void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) { in GenerateShrLong()
4925 void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) { in GenerateUShrLong()