Home
last modified time | relevance | path

Searched refs:cpu_has_avx (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_vector_x86_64.cc61 bool cpu_has_avx = CpuHasAvxFeatureFlag(); in VisitVecReplicateScalar() local
64 cpu_has_avx ? __ vxorps(dst, dst, dst) : __ xorps(dst, dst); in VisitVecReplicateScalar()
449 bool cpu_has_avx = CpuHasAvxFeatureFlag(); in VisitVecAdd() local
454 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAdd()
459 cpu_has_avx ? __ vpaddb(dst, other_src, src) : __ paddb(dst, src); in VisitVecAdd()
464 cpu_has_avx ? __ vpaddw(dst, other_src, src) : __ paddw(dst, src); in VisitVecAdd()
468 cpu_has_avx ? __ vpaddd(dst, other_src, src) : __ paddd(dst, src); in VisitVecAdd()
472 cpu_has_avx ? __ vpaddq(dst, other_src, src) : __ paddq(dst, src); in VisitVecAdd()
476 cpu_has_avx ? __ vaddps(dst, other_src, src) : __ addps(dst, src); in VisitVecAdd()
480 cpu_has_avx ? __ vaddpd(dst, other_src, src) : __ addpd(dst, src); in VisitVecAdd()
[all …]
Dcode_generator_vector_x86.cc66 bool cpu_has_avx = CpuHasAvxFeatureFlag(); in VisitVecReplicateScalar() local
69 cpu_has_avx ? __ vxorps(dst, dst, dst) : __ xorps(dst, dst); in VisitVecReplicateScalar()
466 bool cpu_has_avx = CpuHasAvxFeatureFlag(); in VisitVecAdd() local
471 DCHECK(cpu_has_avx || other_src == dst); in VisitVecAdd()
476 cpu_has_avx ? __ vpaddb(dst, other_src, src) : __ paddb(dst, src); in VisitVecAdd()
481 cpu_has_avx ? __ vpaddw(dst, other_src, src) : __ paddw(dst, src); in VisitVecAdd()
485 cpu_has_avx ? __ vpaddd(dst, other_src, src) : __ paddd(dst, src); in VisitVecAdd()
489 cpu_has_avx ? __ vpaddq(dst, other_src, src) : __ paddq(dst, src); in VisitVecAdd()
493 cpu_has_avx ? __ vaddps(dst, other_src, src) : __ addps(dst, src); in VisitVecAdd()
497 cpu_has_avx ? __ vaddpd(dst, other_src, src) : __ addpd(dst, src); in VisitVecAdd()
[all …]