/art/runtime/interpreter/mterp/x86ng/ |
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 | 807 void imull(Register dst, Register src); 808 void imull(Register reg, const Immediate& imm); 809 void imull(Register dst, Register src, const Immediate& imm); 810 void imull(Register reg, const Address& address); 812 void imull(Register reg); 813 void imull(const Address& address);
|
D | assembler_x86.cc | 3283 void X86Assembler::imull(Register dst, Register src) { in imull() function in art::x86::X86Assembler 3291 void X86Assembler::imull(Register dst, Register src, const Immediate& imm) { in imull() function in art::x86::X86Assembler 3309 void X86Assembler::imull(Register reg, const Immediate& imm) { in imull() function in art::x86::X86Assembler 3310 imull(reg, reg, imm); in imull() 3314 void X86Assembler::imull(Register reg, const Address& address) { in imull() function in art::x86::X86Assembler 3322 void X86Assembler::imull(Register reg) { in imull() function in art::x86::X86Assembler 3329 void X86Assembler::imull(const Address& address) { in imull() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 878 void imull(CpuRegister dst, CpuRegister src); 879 void imull(CpuRegister reg, const Immediate& imm); 880 void imull(CpuRegister dst, CpuRegister src, const Immediate& imm); 881 void imull(CpuRegister reg, const Address& address); 889 void imull(CpuRegister reg); 890 void imull(const Address& address);
|
D | assembler_x86_64.cc | 4562 void X86_64Assembler::imull(CpuRegister dst, CpuRegister src) { in imull() function in art::x86_64::X86_64Assembler 4570 void X86_64Assembler::imull(CpuRegister dst, CpuRegister src, const Immediate& imm) { in imull() function in art::x86_64::X86_64Assembler 4592 void X86_64Assembler::imull(CpuRegister reg, const Immediate& imm) { in imull() function in art::x86_64::X86_64Assembler 4593 imull(reg, reg, imm); in imull() 4597 void X86_64Assembler::imull(CpuRegister reg, const Address& address) { in imull() function in art::x86_64::X86_64Assembler 4649 void X86_64Assembler::imull(CpuRegister reg) { in imull() function in art::x86_64::X86_64Assembler 4665 void X86_64Assembler::imull(const Address& address) { in imull() function in art::x86_64::X86_64Assembler
|
D | assembler_x86_64_test.cc | 609 DriverStr(Repeatrr(&x86_64::X86_64Assembler::imull, "imul %{reg2}, %{reg1}"), "imull"); in TEST_F() 613 DriverStr(RepeatrI(&x86_64::X86_64Assembler::imull, /*imm_bytes*/ 4U, in TEST_F()
|
/art/runtime/interpreter/mterp/x86_64ng/ |
D | arithmetic.S | 474 imull (rFP,rINSTq,4), %eax
|
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 3680 __ imull(out.AsRegister<Register>(), first.AsRegister<Register>(), imm); in VisitMul() local 3683 __ imull(first.AsRegister<Register>(), second.AsRegister<Register>()); in VisitMul() local 3687 __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); in VisitMul() local 3716 __ imull(eax, in1_lo); in VisitMul() local 3718 __ imull(in1_hi, low); in VisitMul() local 3735 __ imull(eax, in1_lo); in VisitMul() local 3737 __ imull(in1_hi, in2_lo); in VisitMul() local 3755 __ imull(eax, in1_lo); in VisitMul() local 3757 __ imull(in1_hi, in2_lo); in VisitMul() local 4019 __ imull(num); in GenerateDivRemWithAnyConstant() local [all …]
|
D | code_generator_x86_64.cc | 3821 __ imull(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(), imm); in VisitMul() local 3824 __ imull(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); in VisitMul() local 3828 __ imull(first.AsRegister<CpuRegister>(), in VisitMul() local 4135 __ imull(numerator); in GenerateDivRemWithAnyConstant() local 4153 __ imull(edx, Immediate(imm)); in GenerateDivRemWithAnyConstant() local
|