diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2011-02-14 10:22:49 +0000 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-02-20 17:31:53 +0100 |
commit | d68a6f3a6deb2f5eee198b6fa46877a20227d86e (patch) | |
tree | bca340022b009f1d7c6c6397921483ab93ccd253 /target-arm/helpers.h | |
parent | 02acedf93da420713a0c4bbeaf32ce9d734a4332 (diff) |
target-arm: Move Neon VZIP to helper functions
Move the implementation of the Neon VUZP unzip instruction from inline
code to helper functions. (At 50+ TCG ops it was well over the
recommended limit for coding inline.) The helper implementations also
give the correct answers where the inline implementation did not.
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 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-arm/helpers.h b/target-arm/helpers.h index 80251b55b1..bd6977c2fe 100644 --- a/target-arm/helpers.h +++ b/target-arm/helpers.h @@ -466,5 +466,10 @@ DEF_HELPER_3(neon_unzip16, void, env, i32, i32) DEF_HELPER_3(neon_qunzip8, void, env, i32, i32) DEF_HELPER_3(neon_qunzip16, void, env, i32, i32) DEF_HELPER_3(neon_qunzip32, void, env, i32, i32) +DEF_HELPER_3(neon_zip8, void, env, i32, i32) +DEF_HELPER_3(neon_zip16, void, env, i32, i32) +DEF_HELPER_3(neon_qzip8, void, env, i32, i32) +DEF_HELPER_3(neon_qzip16, void, env, i32, i32) +DEF_HELPER_3(neon_qzip32, void, env, i32, i32) #include "def-helper.h" |