From: Richard Henderson <richard.henderson@linaro.org>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>, qemu-devel@nongnu.org
Cc: qemu-ppc@nongnu.org, Aurelien Jarno <aurelien@aurel32.net>,
Jiaxun Yang <jiaxun.yang@flygoat.com>,
Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
Subject: Re: [PATCH 7/9] target/mips: Use tcg_gen_sextract_tl
Date: Mon, 23 Oct 2023 17:14:11 -0700 [thread overview]
Message-ID: <d9092d0e-852e-43f7-a087-be0781744e6e@linaro.org> (raw)
In-Reply-To: <20231023160944.10692-8-philmd@linaro.org>
On 10/23/23 09:09, Philippe Mathieu-Daudé wrote:
> Inspired-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> target/mips/tcg/mxu_translate.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/target/mips/tcg/mxu_translate.c b/target/mips/tcg/mxu_translate.c
> index c517258ac5..6eb73256b2 100644
> --- a/target/mips/tcg/mxu_translate.c
> +++ b/target/mips/tcg/mxu_translate.c
> @@ -3840,8 +3840,7 @@ static void gen_mxu_Q16SAT(DisasContext *ctx)
> tcg_gen_movi_tl(t0, 255);
>
> gen_set_label(l_lo);
> - tcg_gen_shli_tl(t1, mxu_gpr[XRb - 1], 16);
> - tcg_gen_sari_tl(t1, t1, 16);
> + tcg_gen_sextract_tl(t1, mxu_gpr[XRb - 1], 0, 16);
The most simple replacement here is tcg_gen_ext16s_tl.
I'll also note that the entire function should be replaced, e.g.
TCGv min = tcg_constant_tl(0);
TCGv max = tcg_constant_tl(0xff);
TCGv tmp[2];
tmp[0] = tcg_temp_new();
tmp[1] = tcg_temp_new();
for (i = 0; i < 4; i++) {
int rs = i & 2 ? XRc : XRb;
TCGv t = tmp[i & 1];
gen_load_mxu_gpr(t, rs);
tcg_gen_sextract_tl(t, t, (i & 1) * 16, 16);
tcg_gen_smax_tl(t, t, min);
tcg_gen_smin_tl(t, t, max);
if (i != 0) {
tcg_gen_shli_tl(t, t, i * 8);
tcg_gen_or_tl(t, t, tmp[(i - 1) & 1];
}
}
gen_store_mxu_gpr(tmp[1], XRa);
And lots of other similar work within this file. :-/
r~
next prev parent reply other threads:[~2023-10-24 0:14 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-23 16:09 [PATCH 0/9] tcg: Use tcg_gen_[s]extract_{i32,i64,tl} Philippe Mathieu-Daudé
2023-10-23 16:09 ` [PATCH 1/9] target/avr: Use tcg_gen_extract_tl Philippe Mathieu-Daudé
2023-10-23 23:32 ` Richard Henderson
2023-10-24 7:21 ` Michael Rolnik
2023-10-23 16:09 ` [PATCH 2/9] target/cris: " Philippe Mathieu-Daudé
2023-10-23 23:36 ` Richard Henderson
2023-10-24 8:44 ` Edgar E. Iglesias
2023-10-23 16:09 ` [PATCH 3/9] target/mips: Use tcg_gen_extract_i32 Philippe Mathieu-Daudé
2023-10-23 23:39 ` Richard Henderson
2023-10-23 16:09 ` [PATCH 4/9] target/ppc: " Philippe Mathieu-Daudé
2023-10-23 23:40 ` Richard Henderson
2023-10-23 16:09 ` [PATCH 5/9] target/sparc: Use tcg_gen_extract_tl Philippe Mathieu-Daudé
2023-10-23 23:41 ` Richard Henderson
2023-10-23 16:09 ` [PATCH 6/9] target/xtensa: Use tcg_gen_extract_i32 Philippe Mathieu-Daudé
2023-10-23 17:56 ` Max Filippov
2023-10-23 16:09 ` [PATCH 7/9] target/mips: Use tcg_gen_sextract_tl Philippe Mathieu-Daudé
2023-10-24 0:14 ` Richard Henderson [this message]
2023-10-24 8:57 ` Philippe Mathieu-Daudé
2023-10-24 16:55 ` Philippe Mathieu-Daudé
2023-10-23 16:09 ` [RFC PATCH 8/9] target/cris: " Philippe Mathieu-Daudé
2023-10-24 0:26 ` Richard Henderson
2023-10-24 8:42 ` Edgar E. Iglesias
2023-10-24 8:53 ` Philippe Mathieu-Daudé
2023-10-24 8:58 ` Philippe Mathieu-Daudé
2023-10-23 16:09 ` [RFC PATCH 9/9] target/ppc: " Philippe Mathieu-Daudé
2023-10-24 1:04 ` Richard Henderson
2023-10-25 7:09 ` Nicholas Piggin
2023-10-25 7:33 ` Philippe Mathieu-Daudé
2023-10-25 20:26 ` Richard Henderson
2023-10-25 7:38 ` 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=d9092d0e-852e-43f7-a087-be0781744e6e@linaro.org \
--to=richard.henderson@linaro.org \
--cc=aleksandar.rikalo@syrmia.com \
--cc=aurelien@aurel32.net \
--cc=jiaxun.yang@flygoat.com \
--cc=philmd@linaro.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).