qemu-devel
[Top][All Lists]
Advanced

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

Re: [RFC PATCH 2/4] arm/tcg: add decodetree entry for DSB nXS variant


From: Richard Henderson
Subject: Re: [RFC PATCH 2/4] arm/tcg: add decodetree entry for DSB nXS variant
Date: Mon, 14 Oct 2024 09:30:07 -0700
User-agent: Mozilla Thunderbird

On 10/14/24 03:48, Manos Pitsidianakis wrote:
+static bool trans_DSB_nXS(DisasContext *ctx, arg_DSB_nXS *a)
+{
+    tcg_gen_mb(TCG_BAR_SC | TCG_MO_ALL);
+    return true;
+}
This is missing the feature test:

    if (!dc_isar_feature(aa64_xs, ctx)) {
        return false;
    }


r~



reply via email to

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