/art/runtime/interpreter/mterp/x86/ |
D | arithmetic.S | 520 imull VREG_ADDRESS(%ecx), %eax # trashes rIBASE/edx 532 imull VREG_ADDRESS(%ecx), %eax # trashes rIBASE/edx 546 imull rIBASE, %eax # trashes rIBASE/edx 557 imull rIBASE, %eax # trashes rIBASE/edx 583 imull (rFP), %ecx # ecx <- (Bmsw*Clsw) 585 imull (%esi), %eax # eax <- (Cmsw*Blsw) 620 imull (rFP), %ecx # ecx <- (Amsw*Blsw) 622 imull (%esi), %eax # eax <- (Bmsw*Alsw)
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 727 void imull(Register dst, Register src); 728 void imull(Register reg, const Immediate& imm); 729 void imull(Register dst, Register src, const Immediate& imm); 730 void imull(Register reg, const Address& address); 732 void imull(Register reg); 733 void imull(const Address& address);
|
D | assembler_x86.cc | 3169 void X86Assembler::imull(Register dst, Register src) { in imull() function in art::x86::X86Assembler 3177 void X86Assembler::imull(Register dst, Register src, const Immediate& imm) { in imull() function in art::x86::X86Assembler 3195 void X86Assembler::imull(Register reg, const Immediate& imm) { in imull() function in art::x86::X86Assembler 3196 imull(reg, reg, imm); in imull() 3200 void X86Assembler::imull(Register reg, const Address& address) { in imull() function in art::x86::X86Assembler 3208 void X86Assembler::imull(Register reg) { in imull() function in art::x86::X86Assembler 3215 void X86Assembler::imull(const Address& address) { in imull() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 786 void imull(CpuRegister dst, CpuRegister src); 787 void imull(CpuRegister reg, const Immediate& imm); 788 void imull(CpuRegister dst, CpuRegister src, const Immediate& imm); 789 void imull(CpuRegister reg, const Address& address); 797 void imull(CpuRegister reg); 798 void imull(const Address& address);
|
D | assembler_x86_64.cc | 4377 void X86_64Assembler::imull(CpuRegister dst, CpuRegister src) { in imull() function in art::x86_64::X86_64Assembler 4385 void X86_64Assembler::imull(CpuRegister dst, CpuRegister src, const Immediate& imm) { in imull() function in art::x86_64::X86_64Assembler 4407 void X86_64Assembler::imull(CpuRegister reg, const Immediate& imm) { in imull() function in art::x86_64::X86_64Assembler 4408 imull(reg, reg, imm); in imull() 4412 void X86_64Assembler::imull(CpuRegister reg, const Address& address) { in imull() function in art::x86_64::X86_64Assembler 4464 void X86_64Assembler::imull(CpuRegister reg) { in imull() function in art::x86_64::X86_64Assembler 4480 void X86_64Assembler::imull(const Address& address) { in imull() function in art::x86_64::X86_64Assembler
|
D | assembler_x86_64_test.cc | 614 DriverStr(Repeatrr(&x86_64::X86_64Assembler::imull, "imul %{reg2}, %{reg1}"), "imull"); in TEST_F() 618 DriverStr(RepeatrI(&x86_64::X86_64Assembler::imull, /*imm_bytes*/ 4U, in TEST_F()
|
/art/runtime/interpreter/mterp/x86_64/ |
D | arithmetic.S | 474 imull (rFP,rINSTq,4), %eax
|
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 3365 __ imull(out.AsRegister<Register>(), first.AsRegister<Register>(), imm); in VisitMul() local 3368 __ imull(first.AsRegister<Register>(), second.AsRegister<Register>()); in VisitMul() local 3372 __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); in VisitMul() local 3401 __ imull(eax, in1_lo); in VisitMul() local 3403 __ imull(in1_hi, low); in VisitMul() local 3420 __ imull(eax, in1_lo); in VisitMul() local 3422 __ imull(in1_hi, in2_lo); in VisitMul() local 3440 __ imull(eax, in1_lo); in VisitMul() local 3442 __ imull(in1_hi, in2_lo); in VisitMul() local 3704 __ imull(num); in GenerateDivRemWithAnyConstant() local [all …]
|
D | code_generator_x86_64.cc | 3466 __ imull(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(), imm); in VisitMul() local 3469 __ imull(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); in VisitMul() local 3473 __ imull(first.AsRegister<CpuRegister>(), in VisitMul() local 3780 __ imull(numerator); in GenerateDivRemWithAnyConstant() local 3798 __ imull(edx, Immediate(imm)); in GenerateDivRemWithAnyConstant() local
|