Home
last modified time | relevance | path

Searched refs:andps (Results 1 – 10 of 10) sorted by relevance

/art/compiler/utils/x86/
Dassembler_x86.h554 void andps(XmmRegister dst, XmmRegister src);
555 void andps(XmmRegister dst, const Address& src);
Dassembler_x86_test.cc873 DriverStr(RepeatFF(&x86::X86Assembler::andps, "andps %{reg2}, %{reg1}"), "andps"); in TEST_F()
Dassembler_x86.cc1956 void X86Assembler::andps(XmmRegister dst, XmmRegister src) { in andps() function in art::x86::X86Assembler
1964 void X86Assembler::andps(XmmRegister dst, const Address& src) { in andps() function in art::x86::X86Assembler
/art/compiler/optimizing/
Dcode_generator_vector_x86_64.cc332 __ andps(dst, src); in VisitVecAbs() local
823 cpu_has_avx ? __ vandps(dst, other_src, src) : __ andps(dst, src); in VisitVecAnd()
Dcode_generator_vector_x86.cc349 __ andps(dst, src); in VisitVecAbs() local
840 cpu_has_avx ? __ vandps(dst, other_src, src) : __ andps(dst, src); in VisitVecAnd()
Dcode_generator_x86_64.cc4285 __ andps(out, op2); in GenerateMinMaxFP() local
4392 __ andps(out, mask); in VisitAbs() local
Dcode_generator_x86.cc4171 __ andps(out, op2); in GenerateMinMaxFP() local
4306 __ andps(out, temp); in VisitAbs() local
/art/compiler/utils/x86_64/
Dassembler_x86_64.h593 void andps(XmmRegister dst, XmmRegister src); // no addr variant (for now)
Dassembler_x86_64_test.cc1655 DriverStr(RepeatFF(&x86_64::X86_64Assembler::andps, "andps %{reg2}, %{reg1}"), "andps"); in TEST_F()
Dassembler_x86_64.cc2752 void X86_64Assembler::andps(XmmRegister dst, XmmRegister src) { in andps() function in art::x86_64::X86_64Assembler