Searched refs:other_src (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_vector_x86.cc | 469 XmmRegister other_src = locations->InAt(0).AsFpuRegister<XmmRegister>(); 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() 576 XmmRegister other_src = locations->InAt(0).AsFpuRegister<XmmRegister>(); in VisitVecSub() local 578 DCHECK(cpu_has_avx || other_src == dst); in VisitVecSub() [all …]
|
D | code_generator_vector_x86_64.cc | 452 XmmRegister other_src = locations->InAt(0).AsFpuRegister<XmmRegister>(); 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() 559 XmmRegister other_src = locations->InAt(0).AsFpuRegister<XmmRegister>(); in VisitVecSub() local 561 DCHECK(cpu_has_avx || other_src == dst); in VisitVecSub() [all …]
|