diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2018-10-24 07:50:19 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-10-24 07:51:37 +0100 |
commit | 4a7832b095b9ce97a815749a13516f5cfb3c5dd4 (patch) | |
tree | 268ba08da59a52a5907eb5488cc67da7e4055db7 /target/arm/translate.h | |
parent | f3cd8218d1d3e534877ce3f3cb61c6757d10f9df (diff) | |
download | qemu-4a7832b095b9ce97a815749a13516f5cfb3c5dd4.zip qemu-4a7832b095b9ce97a815749a13516f5cfb3c5dd4.tar.gz qemu-4a7832b095b9ce97a815749a13516f5cfb3c5dd4.tar.bz2 |
target/arm: Use gvec for NEON_3R_VML
Move mla_op and mls_op expanders from translate-a64.c.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20181011205206.3552-16-richard.henderson@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/translate.h')
-rw-r--r-- | target/arm/translate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/arm/translate.h b/target/arm/translate.h index 7eb759d..1b4703d 100644 --- a/target/arm/translate.h +++ b/target/arm/translate.h @@ -196,6 +196,8 @@ static inline TCGv_i32 get_ahp_flag(void) extern const GVecGen3 bsl_op; extern const GVecGen3 bit_op; extern const GVecGen3 bif_op; +extern const GVecGen3 mla_op[4]; +extern const GVecGen3 mls_op[4]; extern const GVecGen2i ssra_op[4]; extern const GVecGen2i usra_op[4]; extern const GVecGen2i sri_op[4]; |