diff options
author | Richard Henderson | 2019-02-15 11:00:58 +0100 |
---|---|---|
committer | David Gibson | 2019-02-18 01:00:44 +0100 |
commit | 73e14c6a9cdefb94c01ea488f04e7fba7ac0dc5b (patch) | |
tree | 3a6a92f88fb2d9f30b8ed6d71d25493c84fd71ba /target/ppc/int_helper.c | |
parent | target/ppc: convert vadd*s and vsub*s to vector operations (diff) | |
download | qemu-73e14c6a9cdefb94c01ea488f04e7fba7ac0dc5b.tar.gz qemu-73e14c6a9cdefb94c01ea488f04e7fba7ac0dc5b.tar.xz qemu-73e14c6a9cdefb94c01ea488f04e7fba7ac0dc5b.zip |
target/ppc: convert vmin* and vmax* to vector operations
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190215100058.20015-18-mark.cave-ayland@ilande.co.uk>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/int_helper.c')
-rw-r--r-- | target/ppc/int_helper.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target/ppc/int_helper.c b/target/ppc/int_helper.c index 4aeb375edd..162add561e 100644 --- a/target/ppc/int_helper.c +++ b/target/ppc/int_helper.c @@ -921,33 +921,6 @@ void helper_vmhraddshs(CPUPPCState *env, ppc_avr_t *r, ppc_avr_t *a, } } -#define VMINMAX_DO(name, compare, element) \ - void helper_v##name(ppc_avr_t *r, ppc_avr_t *a, ppc_avr_t *b) \ - { \ - int i; \ - \ - for (i = 0; i < ARRAY_SIZE(r->element); i++) { \ - if (a->element[i] compare b->element[i]) { \ - r->element[i] = b->element[i]; \ - } else { \ - r->element[i] = a->element[i]; \ - } \ - } \ - } -#define VMINMAX(suffix, element) \ - VMINMAX_DO(min##suffix, >, element) \ - VMINMAX_DO(max##suffix, <, element) -VMINMAX(sb, s8) -VMINMAX(sh, s16) -VMINMAX(sw, s32) -VMINMAX(sd, s64) -VMINMAX(ub, u8) -VMINMAX(uh, u16) -VMINMAX(uw, u32) -VMINMAX(ud, u64) -#undef VMINMAX_DO -#undef VMINMAX - void helper_vmladduhm(ppc_avr_t *r, ppc_avr_t *a, ppc_avr_t *b, ppc_avr_t *c) { int i; |