diff options
author | Tom Musta <tommusta@gmail.com> | 2014-01-02 16:21:22 -0600 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-03-05 03:06:28 +0100 |
commit | 5e591d8812df5efa38518b6bf933d02c61fa1c10 (patch) | |
tree | 93626632c8592d4bda1a7cf4c8342fbaa72f9774 /target-ppc/helper.h | |
parent | ee6e02c0aca020a1934a14c36cff258545dc29b5 (diff) | |
download | qemu-5e591d8812df5efa38518b6bf933d02c61fa1c10.tar.gz qemu-5e591d8812df5efa38518b6bf933d02c61fa1c10.tar.bz2 qemu-5e591d8812df5efa38518b6bf933d02c61fa1c10.zip |
target-ppc: Add VSX ISA2.06 xmul Instructions
This patch adds the VSX floating point multiply instructions defined
by V2.06 of the PowerPC ISA: xsmuldp, xvmuldp, xvmulsp.
Signed-off-by: Tom Musta <tommusta@gmail.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc/helper.h')
-rw-r--r-- | target-ppc/helper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-ppc/helper.h b/target-ppc/helper.h index 966200d2cc..ecb900f368 100644 --- a/target-ppc/helper.h +++ b/target-ppc/helper.h @@ -253,12 +253,15 @@ DEF_HELPER_4(vctsxs, void, env, avr, avr, i32) DEF_HELPER_2(xsadddp, void, env, i32) DEF_HELPER_2(xssubdp, void, env, i32) +DEF_HELPER_2(xsmuldp, void, env, i32) DEF_HELPER_2(xvadddp, void, env, i32) DEF_HELPER_2(xvsubdp, void, env, i32) +DEF_HELPER_2(xvmuldp, void, env, i32) DEF_HELPER_2(xvaddsp, void, env, i32) DEF_HELPER_2(xvsubsp, void, env, i32) +DEF_HELPER_2(xvmulsp, void, env, i32) DEF_HELPER_2(efscfsi, i32, env, i32) DEF_HELPER_2(efscfui, i32, env, i32) |