/art/test/550-checker-multiply-accumulate/ |
D | info.txt | 1 Test the merging of instructions into the shifter operand on arm64.
|
/art/test/551-checker-shifter-operand/ |
D | info.txt | 1 Test the merging of instructions into the shifter operand on arm64.
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 355 void rorl(Register operand, Register shifter); 357 void roll(Register operand, Register shifter); 689 void shll(Register operand, Register shifter); 691 void shll(const Address& address, Register shifter); 693 void shrl(Register operand, Register shifter); 695 void shrl(const Address& address, Register shifter); 697 void sarl(Register operand, Register shifter); 699 void sarl(const Address& address, Register shifter); 700 void shld(Register dst, Register src, Register shifter); 702 void shrd(Register dst, Register src, Register shifter); [all …]
|
D | assembler_x86.cc | 2533 void X86Assembler::shll(Register operand, Register shifter) { in shll() argument 2534 EmitGenericShift(4, Operand(operand), shifter); in shll() 2543 void X86Assembler::shll(const Address& address, Register shifter) { in shll() argument 2544 EmitGenericShift(4, address, shifter); in shll() 2553 void X86Assembler::shrl(Register operand, Register shifter) { in shrl() argument 2554 EmitGenericShift(5, Operand(operand), shifter); in shrl() 2563 void X86Assembler::shrl(const Address& address, Register shifter) { in shrl() argument 2564 EmitGenericShift(5, address, shifter); in shrl() 2573 void X86Assembler::sarl(Register operand, Register shifter) { in sarl() argument 2574 EmitGenericShift(7, Operand(operand), shifter); in sarl() [all …]
|
D | assembler_x86_test.cc | 392 x86::Register shifter(x86::ECX); in rorl_fn() local 394 assembler->rorl(*reg, shifter); in rorl_fn() 412 x86::Register shifter(x86::ECX); in roll_fn() local 414 assembler->roll(*reg, shifter); in roll_fn()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64_test.cc | 637 x86_64::CpuRegister shifter(x86_64::RCX); in shll_fn() local 639 assembler->shll(*reg, shifter); in shll_fn() 658 x86_64::CpuRegister shifter(x86_64::RCX); in shlq_fn() local 660 assembler->shlq(*reg, shifter); in shlq_fn() 679 x86_64::CpuRegister shifter(x86_64::RCX); in shrl_fn() local 681 assembler->shrl(*reg, shifter); in shrl_fn() 699 x86_64::CpuRegister shifter(x86_64::RCX); in shrq_fn() local 701 assembler->shrq(*reg, shifter); in shrq_fn() 719 x86_64::CpuRegister shifter(x86_64::RCX); in sarl_fn() local 721 assembler->sarl(*reg, shifter); in sarl_fn() [all …]
|
D | assembler_x86_64.h | 744 void shll(CpuRegister operand, CpuRegister shifter); 746 void shrl(CpuRegister operand, CpuRegister shifter); 748 void sarl(CpuRegister operand, CpuRegister shifter); 751 void shlq(CpuRegister operand, CpuRegister shifter); 753 void shrq(CpuRegister operand, CpuRegister shifter); 755 void sarq(CpuRegister operand, CpuRegister shifter); 815 void rorl(CpuRegister operand, CpuRegister shifter); 817 void roll(CpuRegister operand, CpuRegister shifter); 820 void rorq(CpuRegister operand, CpuRegister shifter); 822 void rolq(CpuRegister operand, CpuRegister shifter); [all …]
|
D | assembler_x86_64.cc | 3025 void X86_64Assembler::shll(CpuRegister operand, CpuRegister shifter) { in shll() argument 3026 EmitGenericShift(false, 4, operand, shifter); in shll() 3030 void X86_64Assembler::shlq(CpuRegister operand, CpuRegister shifter) { in shlq() argument 3031 EmitGenericShift(true, 4, operand, shifter); in shlq() 3045 void X86_64Assembler::shrl(CpuRegister operand, CpuRegister shifter) { in shrl() argument 3046 EmitGenericShift(false, 5, operand, shifter); in shrl() 3050 void X86_64Assembler::shrq(CpuRegister operand, CpuRegister shifter) { in shrq() argument 3051 EmitGenericShift(true, 5, operand, shifter); in shrq() 3060 void X86_64Assembler::sarl(CpuRegister operand, CpuRegister shifter) { in sarl() argument 3061 EmitGenericShift(false, 7, operand, shifter); in sarl() [all …]
|
/art/compiler/optimizing/ |
D | code_generator_x86.h | 226 void GenerateShlLong(const Location& loc, Register shifter); 227 void GenerateShrLong(const Location& loc, Register shifter); 228 void GenerateUShrLong(const Location& loc, Register shifter);
|
D | code_generator_x86.cc | 4342 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { in GenerateShlLong() argument 4344 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong() 4345 __ shll(loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong() 4346 __ testl(shifter, Immediate(32)); in GenerateShlLong() 4374 void InstructionCodeGeneratorX86::GenerateShrLong(const Location& loc, Register shifter) { in GenerateShrLong() argument 4376 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); in GenerateShrLong() 4377 __ sarl(loc.AsRegisterPairHigh<Register>(), shifter); in GenerateShrLong() 4378 __ testl(shifter, Immediate(32)); in GenerateShrLong() 4409 void InstructionCodeGeneratorX86::GenerateUShrLong(const Location& loc, Register shifter) { in GenerateUShrLong() argument 4411 __ shrd(loc.AsRegisterPairLow<Register>(), loc.AsRegisterPairHigh<Register>(), shifter); in GenerateUShrLong() [all …]
|
/art/test/530-checker-loops3/src/ |
D | Main.java | 206 public static void shifter(int[] x) { in shifter() method in Main
|