]> git.proxmox.com Git - mirror_qemu.git/commit
target/arm: Stop using cpu_F0s for NEON_2RM_VABS_F
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 13 Jun 2019 16:39:08 +0000 (17:39 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 17 Jun 2019 14:14:19 +0000 (15:14 +0100)
commitfd8a68cdcf81d70eebf866a132e9780d4108da9c
tree4ccfe21c2aa68cd35610f74bfb1de8f9a921ad8b
parent9bee50b498410ed6466018b26464d7384c7879e9
target/arm: Stop using cpu_F0s for NEON_2RM_VABS_F

Where Neon instructions are floating point operations, we
mostly use the old VFP utility functions like gen_vfp_abs()
which work on the TCG globals cpu_F0s and cpu_F1s. The
Neon for-each-element loop conditionally loads the inputs
into either a plain old TCG temporary for most operations
or into cpu_F0s for float operations, and similarly stores
back either cpu_F0s or the temporary.

Switch NEON_2RM_VABS_F away from using cpu_F0s, and
update neon_2rm_is_float_op() accordingly.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190613163917.28589-4-peter.maydell@linaro.org
target/arm/translate.c