target/arm: Implement fp16 for VCEQ, VCGE, VCGT comparisons
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 28 Aug 2020 18:33:35 +0000 (19:33 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 1 Sep 2020 10:30:58 +0000 (11:30 +0100)
commitad505db233b89b7fd4b5a98b6f0e8ac8d05b11db
tree586b33b98d3e905f05030391d4807ac09269e0fb
parent2b70d8cd09f5450c15788acd24f6f8bc4116c395
target/arm: Implement fp16 for VCEQ, VCGE, VCGT comparisons

Convert the Neon floating-point vector comparison ops VCEQ,
VCGE and VCGT over to using a gvec helper and use this to
implement the fp16 case.

(We put the float16_ceq() etc functions above the DO_2OP()
macro definition because later when we convert the
compare-against-zero instructions we'll want their
definitions to be visible at that point in the source file.)

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20200828183354.27913-27-peter.maydell@linaro.org
target/arm/helper.h
target/arm/translate-neon.c.inc
target/arm/vec_helper.c