diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2011-02-10 19:07:55 +0000 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-02-20 17:26:15 +0100 |
commit | e5ca24cba969b58eb3fe0e7c239df3abe21831c0 (patch) | |
tree | cbbfbf6bee61639a216efdc058425bb982b3e460 /target-arm/helpers.h | |
parent | 02615337ef295443daa03233e492194e289a807e (diff) |
target-arm: Implement VMULL.P8
Implement VMULL.P8 (the 32x32->64 version of the polynomial multiply
instruction).
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-arm/helpers.h')
-rw-r--r-- | target-arm/helpers.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-arm/helpers.h b/target-arm/helpers.h index 77f1635728..18b488b89a 100644 --- a/target-arm/helpers.h +++ b/target-arm/helpers.h @@ -277,6 +277,7 @@ DEF_HELPER_2(neon_sub_u16, i32, i32, i32) DEF_HELPER_2(neon_mul_u8, i32, i32, i32) DEF_HELPER_2(neon_mul_u16, i32, i32, i32) DEF_HELPER_2(neon_mul_p8, i32, i32, i32) +DEF_HELPER_2(neon_mull_p8, i64, i32, i32) DEF_HELPER_2(neon_tst_u8, i32, i32, i32) DEF_HELPER_2(neon_tst_u16, i32, i32, i32) |