|
| From: | Richard Henderson |
| Subject: | Re: [PATCH v9 03/14] target/riscv: slli.uw is only a valid encoding if shamt first in 64 bits |
| Date: | Fri, 3 Sep 2021 20:45:01 +0200 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 |
On 9/3/21 7:00 PM, Philipp Tomsich wrote:
@@ -652,5 +652,15 @@ static bool trans_slli_uw(DisasContext *ctx, arg_slli_uw
*a)
{
REQUIRE_64BIT(ctx);
REQUIRE_ZBA(ctx);
+
+ /*
+ * The shamt field is only 6 bits for RV64 (with the 7th bit
+ * remaining reserved for RV128). If the reserved bit is set
+ * on RV64, the encoding is illegal.
+ */
+ if (a->shamt >= TARGET_LONG_BITS) {
+ return false;
+ }
+
return gen_shift_imm_fn(ctx, a, EXT_NONE, gen_slli_uw);
As previously stated, drop this patch. It is done correctly inside gen_shift_imm_fn. r~
| [Prev in Thread] | Current Thread | [Next in Thread] |