Searched refs:other_src (Results 1 – 2 of 2) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | code_generator_vector_x86.cc | 471 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAdd() 578 DCHECK(cpu_has_avx || other_src == dst); in VisitVecSub() 658 DCHECK(cpu_has_avx || other_src == dst); in VisitVecMul() 697 DCHECK(cpu_has_avx || other_src == dst); in VisitVecDiv() 825 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAnd() 836 cpu_has_avx ? __ vpand(dst, other_src, src) : __ pand(dst, src); in VisitVecAnd() 866 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAndNot() 907 DCHECK(cpu_has_avx || other_src == dst); in VisitVecOr() 918 cpu_has_avx ? __ vpor(dst, other_src, src) : __ por(dst, src); in VisitVecOr() 922 cpu_has_avx ? __ vorps(dst, other_src, src) : __ orps(dst, src); in VisitVecOr() [all …]
|
H A D | code_generator_vector_x86_64.cc | 454 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAdd() 561 DCHECK(cpu_has_avx || other_src == dst); in VisitVecSub() 641 DCHECK(cpu_has_avx || other_src == dst); in VisitVecMul() 680 DCHECK(cpu_has_avx || other_src == dst); in VisitVecDiv() 808 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAnd() 819 cpu_has_avx ? __ vpand(dst, other_src, src) : __ pand(dst, src); in VisitVecAnd() 849 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAndNot() 890 DCHECK(cpu_has_avx || other_src == dst); in VisitVecOr() 901 cpu_has_avx ? __ vpor(dst, other_src, src) : __ por(dst, src); in VisitVecOr() 905 cpu_has_avx ? __ vorps(dst, other_src, src) : __ orps(dst, src); in VisitVecOr() [all …]
|