From: Tom Musta <tommusta@gmail.com>
To: qemu-ppc@nongnu.org
Cc: Tom Musta <tommusta@gmail.com>, qemu-devel@nongnu.org
Subject: [Qemu-devel] [v2 12/13] Add xxspltw
Date: Fri, 11 Oct 2013 08:07:29 -0500 [thread overview]
Message-ID: <5257F811.5070502@gmail.com> (raw)
In-Reply-To: <5257F4DD.7000204@gmail.com>
This patch adds the VSX Splat Word (xxsplatw) instruction.
This is the first instruction to use the UIM immediate field
and consequently a decoder is also added.
V2: reworked implementation per Richard Henderson's comments.
Signed-off-by: Tom Musta <tommusta@gmail.com>
---
target-ppc/translate.c | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/target-ppc/translate.c b/target-ppc/translate.c
index fd34b93..a56b303 100644
--- a/target-ppc/translate.c
+++ b/target-ppc/translate.c
@@ -503,6 +503,7 @@ EXTRACT_HELPER_SPLIT(xA, 2, 1, 16, 5);
EXTRACT_HELPER_SPLIT(xB, 1, 1, 11, 5);
EXTRACT_HELPER_SPLIT(xC, 3, 1, 6, 5);
EXTRACT_HELPER(DM, 8, 2);
+EXTRACT_HELPER(UIM, 16, 2);
/*****************************************************************************/
/* PowerPC instructions table */
@@ -7366,6 +7367,35 @@ static void gen_xxsel(DisasContext * ctx)
tcg_temp_free(c);
}
+static void gen_xxspltw(DisasContext *ctx)
+{
+ TCGv_i64 b, b2;
+ TCGv_i64 vsr = (UIM(ctx->opcode) & 2) ?
+ cpu_vsrl(xB(ctx->opcode)) :
+ cpu_vsrh(xB(ctx->opcode));
+
+ if (unlikely(!ctx->vsx_enabled)) {
+ gen_exception(ctx, POWERPC_EXCP_VSXU);
+ return;
+ }
+
+ b = tcg_temp_new();
+ b2 = tcg_temp_new();
+
+ if (UIM(ctx->opcode) & 1) {
+ tcg_gen_ext32u_i64(b, vsr);
+ } else {
+ tcg_gen_shri_i64(b, vsr, 32);
+ }
+
+ tcg_gen_shli_i64(b2, b, 32);
+ tcg_gen_or_i64(cpu_vsrh(xT(ctx->opcode)), b, b2);
+ tcg_gen_mov_i64(cpu_vsrl(xT(ctx->opcode)), cpu_vsrh(xT(ctx->opcode)));
+
+ tcg_temp_free(b);
+ tcg_temp_free(b2);
+}
+
/*** SPE extension ***/
/* Register moves */
@@ -9881,6 +9911,7 @@ VSX_LOGICAL(xxlxor, 0x8, 0x13, PPC2_VSX),
VSX_LOGICAL(xxlnor, 0x8, 0x14, PPC2_VSX),
GEN_XX3FORM(xxmrghw, 0x08, 0x02, PPC2_VSX),
GEN_XX3FORM(xxmrglw, 0x08, 0x06, PPC2_VSX),
+GEN_XX2FORM(xxspltw, 0x08, 0x0A, PPC2_VSX),
#define GEN_XXSEL_ROW(opc3) \
GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x18, opc3, 0, PPC_NONE, PPC2_VSX), \
--
1.7.1
next prev parent reply other threads:[~2013-10-11 13:08 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-11 12:53 [Qemu-devel] [v2 00/13] Stage 2 VSX Support Tom Musta
2013-10-11 12:55 ` [Qemu-devel] [v2 01/13] Abandon GEN_VSX_* macros Tom Musta
2013-10-22 6:23 ` Paolo Bonzini
2013-10-11 12:57 ` [Qemu-devel] [v2 02/13] Add lxsdx Tom Musta
2013-10-22 6:24 ` Paolo Bonzini
2013-10-31 22:58 ` [Qemu-devel] [Qemu-ppc] " Alexander Graf
2013-11-01 12:31 ` Tom Musta
2013-10-11 12:58 ` [Qemu-devel] [v2 03/13] Add lxvdsx Tom Musta
2013-10-22 6:24 ` Paolo Bonzini
2013-10-11 12:59 ` [Qemu-devel] [v2 04/13] Add lxvw4x Tom Musta
2013-10-22 6:28 ` Paolo Bonzini
2013-10-11 13:00 ` [Qemu-devel] [v2 05/13] Add stxsdx Tom Musta
2013-10-22 6:29 ` Paolo Bonzini
2013-10-11 13:01 ` [Qemu-devel] [v2 06/13] Add stxvw4x Tom Musta
2013-10-22 6:29 ` Paolo Bonzini
2013-10-11 13:02 ` [Qemu-devel] [v2 07/13] Add VSX Scalar Move Instructions Tom Musta
2013-10-22 6:31 ` Paolo Bonzini
2013-10-22 12:57 ` Tom Musta
2013-10-22 15:15 ` [Qemu-devel] [V3 " Tom Musta
2013-10-11 13:03 ` [Qemu-devel] [v2 08/13] Add VSX Vector " Tom Musta
2013-10-22 6:34 ` Paolo Bonzini
2013-10-22 15:16 ` [Qemu-devel] [V3 " Tom Musta
2013-10-11 13:04 ` [Qemu-devel] [v2 09/13] Add Power7 VSX Logical Instructions Tom Musta
2013-10-22 6:34 ` Paolo Bonzini
2013-10-11 13:05 ` [Qemu-devel] [v2 10/13] Add xxmrgh/xxmrgl Tom Musta
2013-10-22 6:35 ` Paolo Bonzini
2013-10-11 13:06 ` [Qemu-devel] [v2 11/13] Add xxsel Tom Musta
2013-10-11 13:07 ` Tom Musta [this message]
2013-10-11 13:08 ` [Qemu-devel] [v2 13/13] Add xxsldwi Tom Musta
2013-10-11 15:53 ` [Qemu-devel] [v2 00/13] Stage 2 VSX Support Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5257F811.5070502@gmail.com \
--to=tommusta@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.