/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 | 808 void imull(Register dst, Register src); 809 void imull(Register reg, const Immediate& imm); 810 void imull(Register dst, Register src, const Immediate& imm); 811 void imull(Register reg, const Address& address); 813 void imull(Register reg); 814 void imull(const Address& address);
|
D | assembler_x86.cc | 3291 void X86Assembler::imull(Register dst, Register src) { in imull() function in art::x86::X86Assembler 3299 void X86Assembler::imull(Register dst, Register src, const Immediate& imm) { in imull() function in art::x86::X86Assembler 3317 void X86Assembler::imull(Register reg, const Immediate& imm) { in imull() function in art::x86::X86Assembler 3318 imull(reg, reg, imm); in imull() 3322 void X86Assembler::imull(Register reg, const Address& address) { in imull() function in art::x86::X86Assembler 3330 void X86Assembler::imull(Register reg) { in imull() function in art::x86::X86Assembler 3337 void X86Assembler::imull(const Address& address) { in imull() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 879 void imull(CpuRegister dst, CpuRegister src); 880 void imull(CpuRegister reg, const Immediate& imm); 881 void imull(CpuRegister dst, CpuRegister src, const Immediate& imm); 882 void imull(CpuRegister reg, const Address& address); 890 void imull(CpuRegister reg); 891 void imull(const Address& address);
|
D | assembler_x86_64.cc | 4618 void X86_64Assembler::imull(CpuRegister dst, CpuRegister src) { in imull() function in art::x86_64::X86_64Assembler 4626 void X86_64Assembler::imull(CpuRegister dst, CpuRegister src, const Immediate& imm) { in imull() function in art::x86_64::X86_64Assembler 4648 void X86_64Assembler::imull(CpuRegister reg, const Immediate& imm) { in imull() function in art::x86_64::X86_64Assembler 4649 imull(reg, reg, imm); in imull() 4653 void X86_64Assembler::imull(CpuRegister reg, const Address& address) { in imull() function in art::x86_64::X86_64Assembler 4705 void X86_64Assembler::imull(CpuRegister reg) { in imull() function in art::x86_64::X86_64Assembler 4721 void X86_64Assembler::imull(const Address& address) { in imull() function in art::x86_64::X86_64Assembler
|
D | assembler_x86_64_test.cc | 622 DriverStr(Repeatrr(&x86_64::X86_64Assembler::imull, "imul %{reg2}, %{reg1}"), "imull"); in TEST_F() 626 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 | 3883 __ imull(out.AsRegister<Register>(), first.AsRegister<Register>(), imm); in VisitMul() local 3886 __ imull(first.AsRegister<Register>(), second.AsRegister<Register>()); in VisitMul() local 3890 __ imull(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex())); in VisitMul() local 3919 __ imull(eax, in1_lo); in VisitMul() local 3921 __ imull(in1_hi, low); in VisitMul() local 3938 __ imull(eax, in1_lo); in VisitMul() local 3940 __ imull(in1_hi, in2_lo); in VisitMul() local 3958 __ imull(eax, in1_lo); in VisitMul() local 3960 __ imull(in1_hi, in2_lo); in VisitMul() local 4222 __ imull(num); in GenerateDivRemWithAnyConstant() local [all …]
|
D | code_generator_x86_64.cc | 4074 __ imull(out.AsRegister<CpuRegister>(), first.AsRegister<CpuRegister>(), imm); in VisitMul() local 4077 __ imull(first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); in VisitMul() local 4081 __ imull(first.AsRegister<CpuRegister>(), in VisitMul() local 4388 __ imull(numerator); in GenerateDivRemWithAnyConstant() local 4406 __ imull(edx, Immediate(imm)); in GenerateDivRemWithAnyConstant() local
|