Home
last modified time | relevance | path

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

/art/test/550-checker-multiply-accumulate/
Dinfo.txt1 Test the merging of instructions into the shifter operand on arm64.
/art/test/551-checker-shifter-operand/
Dinfo.txt1 Test the merging of instructions into the shifter operand on arm64.
/art/compiler/utils/x86/
Dassembler_x86.h360 void rorl(Register operand, Register shifter);
362 void roll(Register operand, Register shifter);
750 void shll(Register operand, Register shifter);
752 void shll(const Address& address, Register shifter);
754 void shrl(Register operand, Register shifter);
756 void shrl(const Address& address, Register shifter);
758 void sarl(Register operand, Register shifter);
760 void sarl(const Address& address, Register shifter);
761 void shld(Register dst, Register src, Register shifter);
763 void shrd(Register dst, Register src, Register shifter);
[all …]
Dassembler_x86.cc3294 void X86Assembler::shll(Register operand, Register shifter) { in shll() argument
3295 EmitGenericShift(4, Operand(operand), shifter); in shll()
3304 void X86Assembler::shll(const Address& address, Register shifter) { in shll() argument
3305 EmitGenericShift(4, address, shifter); in shll()
3314 void X86Assembler::shrl(Register operand, Register shifter) { in shrl() argument
3315 EmitGenericShift(5, Operand(operand), shifter); in shrl()
3324 void X86Assembler::shrl(const Address& address, Register shifter) { in shrl() argument
3325 EmitGenericShift(5, address, shifter); in shrl()
3334 void X86Assembler::sarl(Register operand, Register shifter) { in sarl() argument
3335 EmitGenericShift(7, Operand(operand), shifter); in sarl()
[all …]
Dassembler_x86_test.cc404 x86::Register shifter(x86::ECX); in rorl_fn() local
406 assembler->rorl(*reg, shifter); in rorl_fn()
424 x86::Register shifter(x86::ECX); in roll_fn() local
426 assembler->roll(*reg, shifter); in roll_fn()
/art/compiler/utils/x86_64/
Dassembler_x86_64_test.cc649 x86_64::CpuRegister shifter(x86_64::RCX); in shll_fn() local
651 assembler->shll(*reg, shifter); in shll_fn()
670 x86_64::CpuRegister shifter(x86_64::RCX); in shlq_fn() local
672 assembler->shlq(*reg, shifter); in shlq_fn()
691 x86_64::CpuRegister shifter(x86_64::RCX); in shrl_fn() local
693 assembler->shrl(*reg, shifter); in shrl_fn()
711 x86_64::CpuRegister shifter(x86_64::RCX); in shrq_fn() local
713 assembler->shrq(*reg, shifter); in shrq_fn()
731 x86_64::CpuRegister shifter(x86_64::RCX); in sarl_fn() local
733 assembler->sarl(*reg, shifter); in sarl_fn()
[all …]
Dassembler_x86_64.h804 void shll(CpuRegister operand, CpuRegister shifter);
806 void shrl(CpuRegister operand, CpuRegister shifter);
808 void sarl(CpuRegister operand, CpuRegister shifter);
811 void shlq(CpuRegister operand, CpuRegister shifter);
813 void shrq(CpuRegister operand, CpuRegister shifter);
815 void sarq(CpuRegister operand, CpuRegister shifter);
875 void rorl(CpuRegister operand, CpuRegister shifter);
877 void roll(CpuRegister operand, CpuRegister shifter);
880 void rorq(CpuRegister operand, CpuRegister shifter);
882 void rolq(CpuRegister operand, CpuRegister shifter);
[all …]
Dassembler_x86_64.cc4514 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { in shll() argument
4515 EmitGenericShift(false, 4, operand, shifter); in shll()
4519 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) { in shlq() argument
4520 EmitGenericShift(true, 4, operand, shifter); in shlq()
4534 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl() argument
4535 EmitGenericShift(false, 5, operand, shifter); in shrl()
4539 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) { in shrq() argument
4540 EmitGenericShift(true, 5, operand, shifter); in shrq()
4549 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl() argument
4550 EmitGenericShift(false, 7, operand, shifter); in sarl()
[all …]
/art/compiler/optimizing/
Dcode_generator_x86.h228 void GenerateShlLong(const Location& loc, Register shifter);
229 void GenerateShrLong(const Location& loc, Register shifter);
230 void GenerateUShrLong(const Location& loc, Register shifter);
Dcode_generator_x86.cc4462 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { in GenerateShlLong() argument
4464 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong()
4465 __ shll(loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong()
4466 __ testl(shifter, Immediate(32)); in GenerateShlLong()
4494 void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) { in GenerateShrLong() argument
4496 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); in GenerateShrLong()
4497 __ sarl(loc.AsRegisterPairHigh<Register>(), shifter); in GenerateShrLong()
4498 __ testl(shifter, Immediate(32)); in GenerateShrLong()
4529 void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) { in GenerateUShrLong() argument
4531 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); in GenerateUShrLong()
[all …]
/art/test/530-checker-loops3/src/
DMain.java206 public static void shifter(int[] x) { in shifter() method in Main