diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-05-24 18:03:03 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-05-25 16:01:44 +0100 |
commit | d782d3ca9fc2f572607fe03b6e55514716981157 (patch) | |
tree | 4195e43693e4915fd12252dd144b1c6113e63442 /target/arm/vec_internal.h | |
parent | 45a32e80b913c25fbdff661e9fcd5ea2f164a1f9 (diff) | |
download | qemu-d782d3ca9fc2f572607fe03b6e55514716981157.zip qemu-d782d3ca9fc2f572607fe03b6e55514716981157.tar.gz qemu-d782d3ca9fc2f572607fe03b6e55514716981157.tar.bz2 |
target/arm: Implement SVE2 complex integer multiply-add
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210525010358.152808-38-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/vec_internal.h')
-rw-r--r-- | target/arm/vec_internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/arm/vec_internal.h b/target/arm/vec_internal.h index 5b78e79..ff694d8 100644 --- a/target/arm/vec_internal.h +++ b/target/arm/vec_internal.h @@ -168,4 +168,9 @@ static inline int64_t do_suqrshl_d(int64_t src, int64_t shift, return do_uqrshl_d(src, shift, round, sat); } +int8_t do_sqrdmlah_b(int8_t, int8_t, int8_t, bool, bool); +int16_t do_sqrdmlah_h(int16_t, int16_t, int16_t, bool, bool, uint32_t *); +int32_t do_sqrdmlah_s(int32_t, int32_t, int32_t, bool, bool, uint32_t *); +int64_t do_sqrdmlah_d(int64_t, int64_t, int64_t, bool, bool); + #endif /* TARGET_ARM_VEC_INTERNALS_H */ |