From: Richard Henderson <richard.henderson@linaro.org>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>, qemu-devel@nongnu.org
Cc: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>,
Aurelien Jarno <aurelien@aurel32.net>, Jia Liu <proljc@gmail.com>
Subject: Re: [PATCH] target/mips: Fix DBALIGN DSP-R2 opcode 'byte position' field size
Date: Sun, 30 May 2021 08:33:12 -0700 [thread overview]
Message-ID: <a52d983b-ce0b-c5f3-3e1a-d175a23f1175@linaro.org> (raw)
In-Reply-To: <20210529130520.1039274-1-f4bug@amsat.org>
On 5/29/21 6:05 AM, Philippe Mathieu-Daudé wrote:
> Per the "MIPS® DSP Module for MIPS64 Architecture" manual (rev 3.02),
> Figure 5.12 "SPECIAL3 Encoding of APPEND/DAPPEND Instruction Sub-class"
> the byte position field ('bp') is 2 bits, not 3.
Rev 2.34 has 3 bits, not 2.
The mips32 version of balign, that uses 2 bits... Are you sure you looked at
the right instruction? Because 3 bits makes most sense for this instruction
with a 64-bit register size.
r~
>
> Cc: Jia Liu <proljc@gmail.com>
> Fixes: 26690560240 ("target-mips: Add ASE DSP compare-pick instructions")
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> target/mips/tcg/translate.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/target/mips/tcg/translate.c b/target/mips/tcg/translate.c
> index c03a8ae1fed..e68647ce14c 100644
> --- a/target/mips/tcg/translate.c
> +++ b/target/mips/tcg/translate.c
> @@ -23016,8 +23016,8 @@ static void gen_mipsdsp_append(CPUMIPSState *env, DisasContext *ctx,
> }
> break;
> case OPC_DBALIGN:
> - sa &= 7;
> - if (sa != 0 && sa != 2 && sa != 4) {
> + sa &= 3;
> + if (sa != 0 && sa != 2) {
> tcg_gen_shli_tl(cpu_gpr[rt], cpu_gpr[rt], 8 * sa);
> tcg_gen_shri_tl(t0, t0, 8 * (8 - sa));
> tcg_gen_or_tl(cpu_gpr[rt], cpu_gpr[rt], t0);
>
next prev parent reply other threads:[~2021-05-30 15:33 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-29 13:05 [PATCH] target/mips: Fix DBALIGN DSP-R2 opcode 'byte position' field size Philippe Mathieu-Daudé
2021-05-30 6:45 ` Philippe Mathieu-Daudé
2021-05-30 15:33 ` Richard Henderson [this message]
2021-05-31 8:50 ` Philippe Mathieu-Daudé
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=a52d983b-ce0b-c5f3-3e1a-d175a23f1175@linaro.org \
--to=richard.henderson@linaro.org \
--cc=aleksandar.rikalo@syrmia.com \
--cc=aurelien@aurel32.net \
--cc=f4bug@amsat.org \
--cc=proljc@gmail.com \
--cc=qemu-devel@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).