diff options
author | Nikunj A Dadhania | 2017-01-13 10:23:40 +0100 |
---|---|---|
committer | David Gibson | 2017-02-01 23:30:06 +0100 |
commit | 78241762c483c9bb7a4834a6d1e6db512bb6a744 (patch) | |
tree | 64b1313aa7feb14fbbfc593ab5b71967fb78b314 /target/ppc/translate/vsx-ops.inc.c | |
parent | target-ppc: Add xvtstdc[sp,dp] instructions (diff) | |
download | qemu-78241762c483c9bb7a4834a6d1e6db512bb6a744.tar.gz qemu-78241762c483c9bb7a4834a6d1e6db512bb6a744.tar.xz qemu-78241762c483c9bb7a4834a6d1e6db512bb6a744.zip |
target-ppc: Add xststdc[sp, dp, qp] instructions
xststdcsp: VSX Scalar Test Data Class Single-Precision
xststdcdp: VSX Scalar Test Data Class Double-Precision
xststdcqp: VSX Scalar Test Data Class Quad-Precision
Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/translate/vsx-ops.inc.c')
-rw-r--r-- | target/ppc/translate/vsx-ops.inc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/ppc/translate/vsx-ops.inc.c b/target/ppc/translate/vsx-ops.inc.c index 6dd5d72a4a..7dc9f6f477 100644 --- a/target/ppc/translate/vsx-ops.inc.c +++ b/target/ppc/translate/vsx-ops.inc.c @@ -126,6 +126,10 @@ GEN_HANDLER_E(xsiexpdp, 0x3C, 0x16, 0x1C, 0, PPC_NONE, PPC2_ISA300), GEN_VSX_XFORM_300(xsiexpqp, 0x4, 0x1B, 0x00000001), #endif +GEN_XX2FORM(xststdcdp, 0x14, 0x16, PPC2_ISA300), +GEN_XX2FORM(xststdcsp, 0x14, 0x12, PPC2_ISA300), +GEN_VSX_XFORM_300(xststdcqp, 0x04, 0x16, 0x00000001), + GEN_XX3FORM(xviexpsp, 0x00, 0x1B, PPC2_ISA300), GEN_XX3FORM(xviexpdp, 0x00, 0x1F, PPC2_ISA300), GEN_XX2FORM_EO(xvxexpdp, 0x16, 0x1D, 0x00, PPC2_ISA300), |