diff options
author | Filip Navara <filip.navara@gmail.com> | 2009-10-15 12:45:57 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2009-10-17 23:52:17 +0200 |
commit | 194576157afb34f7ce69cde800bf9715c730b39f (patch) | |
tree | 4895ff50051331e8c357c9b8814f048e03733d7d /target-arm/helpers.h | |
parent | a6445c52aa2484b6348d127582a20812cec3581d (diff) |
target-arm: convert NEON VZIP/VUZP/VTRN helper functions to pure TCG
The neon_trn_u8, neon_trn_u16, neon_unzip_u8, neon_zip_u8 and neon_zip_u16
helpers used fixed registers to return values. This patch replaces that with
TCG code, so T0/T1 is no longer directly used by the helper functions.
Bugs in the gen_neon_unzip register load code were also fixed.
Signed-off-by: Filip Navara <filip.navara@gmail.com>
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, 0 insertions, 6 deletions
diff --git a/target-arm/helpers.h b/target-arm/helpers.h index 01175e157a..f298efff42 100644 --- a/target-arm/helpers.h +++ b/target-arm/helpers.h @@ -338,12 +338,6 @@ DEF_HELPER_2(neon_qneg_s8, i32, env, i32) DEF_HELPER_2(neon_qneg_s16, i32, env, i32) DEF_HELPER_2(neon_qneg_s32, i32, env, i32) -DEF_HELPER_0(neon_trn_u8, void) -DEF_HELPER_0(neon_trn_u16, void) -DEF_HELPER_0(neon_unzip_u8, void) -DEF_HELPER_0(neon_zip_u8, void) -DEF_HELPER_0(neon_zip_u16, void) - DEF_HELPER_2(neon_min_f32, i32, i32, i32) DEF_HELPER_2(neon_max_f32, i32, i32, i32) DEF_HELPER_2(neon_abd_f32, i32, i32, i32) |