Home
last modified time | relevance | path

Searched refs:shifter (Results 1 – 10 of 10) 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.h346 void rorl(Register operand, Register shifter);
348 void roll(Register operand, Register shifter);
550 void shll(Register operand, Register shifter);
552 void shll(const Address& address, Register shifter);
554 void shrl(Register operand, Register shifter);
556 void shrl(const Address& address, Register shifter);
558 void sarl(Register operand, Register shifter);
560 void sarl(const Address& address, Register shifter);
561 void shld(Register dst, Register src, Register shifter);
563 void shrd(Register dst, Register src, Register shifter);
[all …]
Dassembler_x86.cc1390 void X86Assembler::shll(Register operand, Register shifter) { in shll() argument
1391 EmitGenericShift(4, Operand(operand), shifter); in shll()
1400 void X86Assembler::shll(const Address& address, Register shifter) { in shll() argument
1401 EmitGenericShift(4, address, shifter); in shll()
1410 void X86Assembler::shrl(Register operand, Register shifter) { in shrl() argument
1411 EmitGenericShift(5, Operand(operand), shifter); in shrl()
1420 void X86Assembler::shrl(const Address& address, Register shifter) { in shrl() argument
1421 EmitGenericShift(5, address, shifter); in shrl()
1430 void X86Assembler::sarl(Register operand, Register shifter) { in sarl() argument
1431 EmitGenericShift(7, Operand(operand), shifter); in sarl()
[all …]
Dassembler_x86_test.cc285 x86::Register shifter(x86::ECX); in rorl_fn() local
287 assembler->rorl(*reg, shifter); in rorl_fn()
308 x86::Register shifter(x86::ECX); in roll_fn() local
310 assembler->roll(*reg, shifter); in roll_fn()
/art/compiler/utils/x86_64/
Dassembler_x86_64.h592 void shll(CpuRegister operand, CpuRegister shifter);
594 void shrl(CpuRegister operand, CpuRegister shifter);
596 void sarl(CpuRegister operand, CpuRegister shifter);
599 void shlq(CpuRegister operand, CpuRegister shifter);
601 void shrq(CpuRegister operand, CpuRegister shifter);
603 void sarq(CpuRegister operand, CpuRegister shifter);
659 void rorl(CpuRegister operand, CpuRegister shifter);
661 void roll(CpuRegister operand, CpuRegister shifter);
664 void rorq(CpuRegister operand, CpuRegister shifter);
666 void rolq(CpuRegister operand, CpuRegister shifter);
[all …]
Dassembler_x86_64_test.cc368 x86_64::CpuRegister shifter(x86_64::RCX); in shll_fn() local
370 assembler->shll(*reg, shifter); in shll_fn()
391 x86_64::CpuRegister shifter(x86_64::RCX); in shlq_fn() local
393 assembler->shlq(*reg, shifter); in shlq_fn()
414 x86_64::CpuRegister shifter(x86_64::RCX); in shrl_fn() local
416 assembler->shrl(*reg, shifter); in shrl_fn()
437 x86_64::CpuRegister shifter(x86_64::RCX); in shrq_fn() local
439 assembler->shrq(*reg, shifter); in shrq_fn()
460 x86_64::CpuRegister shifter(x86_64::RCX); in sarl_fn() local
462 assembler->sarl(*reg, shifter); in sarl_fn()
[all …]
Dassembler_x86_64.cc1835 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { in shll() argument
1836 EmitGenericShift(false, 4, operand, shifter); in shll()
1840 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) { in shlq() argument
1841 EmitGenericShift(true, 4, operand, shifter); in shlq()
1855 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl() argument
1856 EmitGenericShift(false, 5, operand, shifter); in shrl()
1860 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) { in shrq() argument
1861 EmitGenericShift(true, 5, operand, shifter); in shrq()
1870 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl() argument
1871 EmitGenericShift(false, 7, operand, shifter); in sarl()
[all …]
/art/compiler/optimizing/
Dcode_generator_x86.h219 void GenerateShlLong(const Location& loc, Register shifter);
220 void GenerateShrLong(const Location& loc, Register shifter);
221 void GenerateUShrLong(const Location& loc, Register shifter);
Dcode_generator_x86.cc3791 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { in GenerateShlLong() argument
3793 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong()
3794 __ shll(loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong()
3795 __ testl(shifter, Immediate(32)); in GenerateShlLong()
3823 void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) { in GenerateShrLong() argument
3825 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); in GenerateShrLong()
3826 __ sarl(loc.AsRegisterPairHigh<Register>(), shifter); in GenerateShrLong()
3827 __ testl(shifter, Immediate(32)); in GenerateShrLong()
3858 void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) { in GenerateUShrLong() argument
3860 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); in GenerateUShrLong()
[all …]