Searched refs:andpd (Results 1 – 10 of 10) sorted by relevance
/art/compiler/utils/x86/ |
D | assembler_x86.h | 576 void andpd(XmmRegister dst, XmmRegister src); 577 void andpd(XmmRegister dst, const Address& src);
|
D | assembler_x86_test.cc | 955 DriverStr(RepeatFF(&x86::X86Assembler::andpd, "andpd %{reg2}, %{reg1}"), "andpd"); in TEST_F()
|
D | assembler_x86.cc | 1938 void X86Assembler::andpd(XmmRegister dst, XmmRegister src) { in andpd() function in art::x86::X86Assembler 1947 void X86Assembler::andpd(XmmRegister dst, const Address& src) { in andpd() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 591 void andpd(XmmRegister dst, const Address& src); 592 void andpd(XmmRegister dst, XmmRegister src);
|
D | assembler_x86_64.cc | 2734 void X86_64Assembler::andpd(XmmRegister dst, const Address& src) { in andpd() function in art::x86_64::X86_64Assembler 2743 void X86_64Assembler::andpd(XmmRegister dst, XmmRegister src) { in andpd() function in art::x86_64::X86_64Assembler
|
D | assembler_x86_64_test.cc | 1664 DriverStr(RepeatFF(&x86_64::X86_64Assembler::andpd, "andpd %{reg2}, %{reg1}"), "andpd"); in TEST_F()
|
/art/compiler/optimizing/ |
D | code_generator_vector_x86.cc | 355 __ andpd(dst, src); in VisitVecAbs() local 844 cpu_has_avx ? __ vandpd(dst, other_src, src) : __ andpd(dst, src); in VisitVecAnd()
|
D | code_generator_vector_x86_64.cc | 338 __ andpd(dst, src); in VisitVecAbs() local 827 cpu_has_avx ? __ vandpd(dst, other_src, src) : __ andpd(dst, src); in VisitVecAnd()
|
D | code_generator_x86_64.cc | 4370 __ andpd(out, op2); in GenerateMinMaxFP() local 4486 __ andpd(out, mask); in VisitAbs() local
|
D | code_generator_x86.cc | 4355 __ andpd(out, op2); in GenerateMinMaxFP() local 4500 __ andpd(out, temp); in VisitAbs() local
|