Home
last modified time | relevance | path

Searched refs:operand (Results 1 – 25 of 29) sorted by relevance

12

/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.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/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/runtime/interpreter/mterp/mips/
Dbinop2addr.S20 # is second operand zero?
DbinopLit16.S21 # cmp a1, 0; is second operand zero?
Dbinop.S24 # is second operand zero?
DbinopLit8.S22 # is second operand zero?
/art/runtime/interpreter/mterp/mips64/
Dbinop2addr.S23 beqz a1, common_errDivideByZero # is second operand zero?
DbinopWide2addr.S23 beqz a1, common_errDivideByZero # is second operand zero?
DbinopLit16.S20 beqz a1, common_errDivideByZero # is second operand zero?
DbinopLit8.S21 beqz a1, common_errDivideByZero # is second operand zero?
Dbinop.S23 beqz a1, common_errDivideByZero # is second operand zero?
DbinopWide.S23 beqz a1, common_errDivideByZero # is second operand zero?
/art/runtime/interpreter/mterp/arm/
DbinopLit16.S20 cmp r1, #0 @ is second operand zero?
Dop_div_int_2addr.S16 cmp r1, #0 @ is second operand zero?
Dop_div_int_lit16.S16 cmp r1, #0 @ is second operand zero?
Dbinop2addr.S22 cmp r1, #0 @ is second operand zero?
Dop_rem_int_2addr.S18 cmp r1, #0 @ is second operand zero?
Dop_rem_int_lit16.S18 cmp r1, #0 @ is second operand zero?
DbinopLit8.S22 @cmp r1, #0 @ is second operand zero?
Dbinop.S25 cmp r1, #0 @ is second operand zero?
Dop_div_int.S18 cmp r1, #0 @ is second operand zero?
Dop_div_int_lit8.S17 @cmp r1, #0 @ is second operand zero?
/art/compiler/utils/x86/
Dassembler_x86.cc1390 void X86Assembler::shll(Register operand, Register shifter) { in shll() argument
1391 EmitGenericShift(4, Operand(operand), shifter); in shll()
1410 void X86Assembler::shrl(Register operand, Register shifter) { in shrl() argument
1411 EmitGenericShift(5, Operand(operand), shifter); in shrl()
1430 void X86Assembler::sarl(Register operand, Register shifter) { in sarl() argument
1431 EmitGenericShift(7, Operand(operand), shifter); in sarl()
1486 void X86Assembler::roll(Register operand, Register shifter) { in roll() argument
1487 EmitGenericShift(0, Operand(operand), shifter); in roll()
1496 void X86Assembler::rorl(Register operand, Register shifter) { in rorl() argument
1497 EmitGenericShift(1, Operand(operand), shifter); in rorl()
[all …]

12