diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2011-02-14 10:22:48 +0000 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-02-20 17:31:52 +0100 |
commit | 02acedf93da420713a0c4bbeaf32ce9d734a4332 (patch) | |
tree | b045a4ffeddc463da65ec24647a3e4ac06d53e11 /target-arm/helpers.h | |
parent | f06053e3c3933f75df9694aa3970d589f88b3543 (diff) |
target-arm: Move Neon VUZP 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
fix the handling of the quadword version of the 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 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target-arm/helpers.h b/target-arm/helpers.h index 18b488b89a..80251b55b1 100644 --- a/target-arm/helpers.h +++ b/target-arm/helpers.h @@ -461,4 +461,10 @@ DEF_HELPER_3(iwmmxt_muladdswl, i64, i64, i32, i32) DEF_HELPER_2(set_teecr, void, env, i32) +DEF_HELPER_3(neon_unzip8, void, env, i32, i32) +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) + #include "def-helper.h" |