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.cc644 x86_64::CpuRegister shifter(x86_64::RCX); in shll_fn() local
665 x86_64::CpuRegister shifter(x86_64::RCX); in shlq_fn() local
686 x86_64::CpuRegister shifter(x86_64::RCX); in shrl_fn() local
706 x86_64::CpuRegister shifter(x86_64::RCX); in shrq_fn() local
726 x86_64::CpuRegister shifter(x86_64::RCX); in sarl_fn() local
746 x86_64::CpuRegister shifter(x86_64::RCX); in sarq_fn() local
766 x86_64::CpuRegister shifter(x86_64::RCX); in rorl_fn() local
786 x86_64::CpuRegister shifter(x86_64::RCX); in roll_fn() local
806 x86_64::CpuRegister shifter(x86_64::RCX); in rorq_fn() local
826 x86_64::CpuRegister shifter(x86_64::RCX); in rolq_fn() local
Dassembler_x86_64.cc4530 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { in shll()
4535 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) { in shlq()
4550 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl()
4555 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) { in shrq()
4565 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl()
4575 void X86_64Assembler::sarq(CpuRegister operand, CpuRegister shifter) { in sarq()
4585 void X86_64Assembler::roll(CpuRegister operand, CpuRegister shifter) { in roll()
4595 void X86_64Assembler::rorl(CpuRegister operand, CpuRegister shifter) { in rorl()
4605 void X86_64Assembler::rolq(CpuRegister operand, CpuRegister shifter) { in rolq()
4615 void X86_64Assembler::rorq(CpuRegister operand, CpuRegister shifter) { in rorq()
[all …]
/art/compiler/utils/x86/
Dassembler_x86.cc3301 void X86Assembler::shll(Register operand, Register shifter) { in shll()
3311 void X86Assembler::shll(const Address& address, Register shifter) { in shll()
3321 void X86Assembler::shrl(Register operand, Register shifter) { in shrl()
3331 void X86Assembler::shrl(const Address& address, Register shifter) { in shrl()
3341 void X86Assembler::sarl(Register operand, Register shifter) { in sarl()
3351 void X86Assembler::sarl(const Address& address, Register shifter) { in sarl()
3356 void X86Assembler::shld(Register dst, Register src, Register shifter) { in shld()
3374 void X86Assembler::shrd(Register dst, Register src, Register shifter) { in shrd()
3397 void X86Assembler::roll(Register operand, Register shifter) { in roll()
3407 void X86Assembler::rorl(Register operand, Register shifter) { in rorl()
[all …]
Dassembler_x86_test.cc396 x86::Register shifter(x86::ECX); in rorl_fn() local
416 x86::Register shifter(x86::ECX); in roll_fn() local
/art/compiler/optimizing/
Dcode_generator_x86.cc4513 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { in GenerateShlLong()
4545 void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) { in GenerateShrLong()
4580 void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) { in GenerateUShrLong()