qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 41/71] target/arm: Add infrastructure for disas_sme


From: Richard Henderson
Subject: Re: [PATCH v2 41/71] target/arm: Add infrastructure for disas_sme
Date: Thu, 9 Jun 2022 15:58:55 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1

On 6/9/22 08:35, Peter Maydell wrote:
+        if (!disas_sme(s, insn)) {
+            unallocated_encoding(s);
+        }
+        break;

I still think we should check bit 31 here.

We don't do anything similar over in a32, where we've done the full conversion:

        if (disas_a32_uncond(s, insn) ||

            disas_vfp_uncond(s, insn) ||

            disas_neon_dp(s, insn) ||

            disas_neon_ls(s, insn) ||

            disas_neon_shared(s, insn)) {

            return;

        }


and there's nothing else within major opcode 0 to conflict.

But if you insist, ok.


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]