[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 16/38] target/ppc: implement vclrrb
From: |
matheus . ferst |
Subject: |
[PATCH v2 16/38] target/ppc: implement vclrrb |
Date: |
Tue, 25 Jan 2022 09:19:21 -0300 |
From: Matheus Ferst <matheus.ferst@eldorado.org.br>
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
---
target/ppc/insn32.decode | 1 +
target/ppc/translate/vmx-impl.c.inc | 43 +++++++++++++++++++++++------
2 files changed, 35 insertions(+), 9 deletions(-)
diff --git a/target/ppc/insn32.decode b/target/ppc/insn32.decode
index 483651cf9c..bf2f3b1e0b 100644
--- a/target/ppc/insn32.decode
+++ b/target/ppc/insn32.decode
@@ -502,6 +502,7 @@ VSTRIHL 000100 ..... 00010 ..... . 0000001101
@VX_tb_rc
VSTRIHR 000100 ..... 00011 ..... . 0000001101 @VX_tb_rc
VCLRLB 000100 ..... ..... ..... 00110001101 @VX
+VCLRRB 000100 ..... ..... ..... 00111001101 @VX
# VSX Load/Store Instructions
diff --git a/target/ppc/translate/vmx-impl.c.inc
b/target/ppc/translate/vmx-impl.c.inc
index 3fb4935bff..9ae0ab94ac 100644
--- a/target/ppc/translate/vmx-impl.c.inc
+++ b/target/ppc/translate/vmx-impl.c.inc
@@ -1956,7 +1956,7 @@ TRANS(VSTRIBR, do_vstri, gen_helper_VSTRIBR)
TRANS(VSTRIHL, do_vstri, gen_helper_VSTRIHL)
TRANS(VSTRIHR, do_vstri, gen_helper_VSTRIHR)
-static bool trans_VCLRLB(DisasContext *ctx, arg_VX *a)
+static bool do_vclrb(DisasContext *ctx, arg_VX *a, bool right)
{
TCGv_i64 hi, lo, rb;
TCGLabel *l, *end;
@@ -1976,29 +1976,51 @@ static bool trans_VCLRLB(DisasContext *ctx, arg_VX *a)
/* RB == 0: all zeros */
tcg_gen_brcondi_i64(TCG_COND_EQ, rb, 0, end);
- get_avr64(lo, a->vra, false);
+ if (right) {
+ get_avr64(hi, a->vra, true);
+ } else {
+ get_avr64(lo, a->vra, false);
+ }
/* RB <= 8 */
tcg_gen_brcondi_i64(TCG_COND_LEU, rb, 8, l);
- get_avr64(hi, a->vra, true);
+ if (right) {
+ get_avr64(lo, a->vra, false);
+ } else {
+ get_avr64(hi, a->vra, true);
+ }
/* RB >= 16: just copy VRA to VRB */
tcg_gen_brcondi_i64(TCG_COND_GEU, rb, 16, end);
- /* 8 < RB < 16: copy lo and partially clear hi */
+ /* 8 < RB < 16: */
tcg_gen_subfi_i64(rb, 16, rb);
tcg_gen_shli_i64(rb, rb, 3);
- tcg_gen_shl_i64(hi, hi, rb);
- tcg_gen_shr_i64(hi, hi, rb);
+ if (right) {
+ /* copy hi and partially clear lo */
+ tcg_gen_shr_i64(lo, lo, rb);
+ tcg_gen_shl_i64(lo, lo, rb);
+ } else {
+ /* copy lo and partially clear hi */
+ tcg_gen_shl_i64(hi, hi, rb);
+ tcg_gen_shr_i64(hi, hi, rb);
+ }
tcg_gen_br(end);
- /* 0 < RB <= 8: zeroes hi and partially clears lo */
+ /* 0 < RB <= 8: */
gen_set_label(l);
tcg_gen_subfi_i64(rb, 8, rb);
tcg_gen_shli_i64(rb, rb, 3);
- tcg_gen_shl_i64(lo, lo, rb);
- tcg_gen_shr_i64(lo, lo, rb);
+ if (right) {
+ /* zeroes lo and partially clears hi */
+ tcg_gen_shr_i64(hi, hi, rb);
+ tcg_gen_shl_i64(hi, hi, rb);
+ } else {
+ /* zeroes hi and partially clears lo */
+ tcg_gen_shl_i64(lo, lo, rb);
+ tcg_gen_shr_i64(lo, lo, rb);
+ }
/* Update VRT */
gen_set_label(end);
@@ -2012,6 +2034,9 @@ static bool trans_VCLRLB(DisasContext *ctx, arg_VX *a)
return true;
}
+TRANS(VCLRLB, do_vclrb, false)
+TRANS(VCLRRB, do_vclrb, true)
+
#define GEN_VAFORM_PAIRED(name0, name1, opc2) \
static void glue(gen_, name0##_##name1)(DisasContext *ctx) \
{ \
--
2.25.1
- [PATCH v2 07/38] target/ppc: Move vexts[bhw]2[wd] to decodetree, (continued)
- [PATCH v2 07/38] target/ppc: Move vexts[bhw]2[wd] to decodetree, matheus . ferst, 2022/01/25
- [PATCH v2 06/38] target/ppc: Implement vmsumudm instruction, matheus . ferst, 2022/01/25
- [PATCH v2 09/38] target/ppc: Move Vector Compare Equal/Not Equal/Greater Than to decodetree, matheus . ferst, 2022/01/25
- [PATCH v2 11/38] target/ppc: Implement Vector Compare Equal Quadword, matheus . ferst, 2022/01/25
- [PATCH v2 12/38] target/ppc: Implement Vector Compare Greater Than Quadword, matheus . ferst, 2022/01/25
- [PATCH v2 13/38] target/ppc: Implement Vector Compare Quadword, matheus . ferst, 2022/01/25
- [PATCH v2 14/38] target/ppc: implement vstri[bh][lr], matheus . ferst, 2022/01/25
- [PATCH v2 15/38] target/ppc: implement vclrlb, matheus . ferst, 2022/01/25
- [PATCH v2 17/38] target/ppc: implement vcntmb[bhwd], matheus . ferst, 2022/01/25
- [PATCH v2 18/38] target/ppc: implement vgnb, matheus . ferst, 2022/01/25
- [PATCH v2 16/38] target/ppc: implement vclrrb,
matheus . ferst <=
- [PATCH v2 19/38] target/ppc: Move vsel and vperm/vpermr to decodetree, matheus . ferst, 2022/01/25
- [PATCH v2 23/38] target/ppc: Implement xxpermx instruction, matheus . ferst, 2022/01/25
- [PATCH v2 20/38] target/ppc: Move xxsel to decodetree, matheus . ferst, 2022/01/25
- [PATCH v2 21/38] target/ppc: move xxperm/xxpermr to decodetree, matheus . ferst, 2022/01/25
- [PATCH v2 22/38] target/ppc: Move xxpermdi to decodetree, matheus . ferst, 2022/01/25
- [PATCH v2 25/38] target/ppc: Implement xxeval, matheus . ferst, 2022/01/25
- [PATCH v2 24/38] tcg/tcg-op-gvec.c: Introduce tcg_gen_gvec_4i, matheus . ferst, 2022/01/25
- [PATCH v2 26/38] target/ppc: Implement xxgenpcv[bhwd]m instruction, matheus . ferst, 2022/01/25
- [PATCH v2 27/38] target/ppc: move xs[n]madd[am][ds]p/xs[n]msub[am][ds]p to decodetree, matheus . ferst, 2022/01/25
- [PATCH v2 28/38] target/ppc: implement xs[n]maddqp[o]/xs[n]msubqp[o], matheus . ferst, 2022/01/25