All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: "Richard Henderson" <rth@twiddle.net>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	peter.maydell@linaro.org, cota@braap.org
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v1 3/3] tcg-runtime: short-circuit lookup_tb_ptr on IRQs
Date: Wed, 14 Jun 2017 19:08:24 +0200	[thread overview]
Message-ID: <be99bef9-eeb2-6816-e0ca-979780a48a06@redhat.com> (raw)
In-Reply-To: <f32b9b12-73b4-e803-6425-271b48858a8b@twiddle.net>

On 14/06/2017 18:51, Richard Henderson wrote:
> On 06/14/2017 09:08 AM, Paolo Bonzini wrote:
>> I think this is a band-aid, and would rather fix the front-ends as in
>> Emilio's patch.  For Alpha my guess would be:
>>
>> diff --git a/target/alpha/translate.c b/target/alpha/translate.c
>> index 7c45ae360c..6e2ee3f958 100644
>> --- a/target/alpha/translate.c
>> +++ b/target/alpha/translate.c
>> @@ -1198,7 +1198,9 @@ static ExitStatus gen_call_pal(DisasContext
>> *ctx, int palcode)
>>               tcg_gen_andi_i64(tmp, ctx->ir[IR_A0], PS_INT_MASK);
>>                tcg_gen_st8_i64(tmp, cpu_env, offsetof(CPUAlphaState,
>> ps));
>>               tcg_temp_free(tmp);
>> -            break;
>> +
>> +            /* Reevaluate interrupts */
>> +            return EXIT_PC_STALE;
>>             case 0x36:
>>               /* RDPS */
> 
> Thanks!
> 
> You're right that adjusting SWPIPL along these lines does fix the
> problem for Alpha.  Given that Alpha would typically hang in arch_idle,
> I'd been focusing primarily on WTINT.

And MIPS:

diff --git a/target/mips/translate.c b/target/mips/translate.c
index 559f8fed89..244f3cb9ab 100644
--- a/target/mips/translate.c
+++ b/target/mips/translate.c
@@ -13403,8 +13403,9 @@ static void gen_pool32axf (CPUMIPSState *env, DisasContext *ctx, int rt, int rs)
                 save_cpu_state(ctx, 1);
                 gen_helper_ei(t0, cpu_env);
                 gen_store_gpr(t0, rs);
-                /* Stop translation as we may have switched the execution mode */
-                ctx->bstate = BS_STOP;
+                /* BS_STOP isn't good enough here, reevaluate cpu_mips_hw_interrupts_enabled. */
+                gen_save_pc(ctx->pc + 4);
+                ctx->bstate = BS_EXCP;
                 tcg_temp_free(t0);
             }
             break;

The others seem okay.

Paolo

  reply	other threads:[~2017-06-14 17:08 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-14 14:02 [Qemu-devel] [PATCH v1 0/3] Fixes for TCG hangs Alex Bennée
2017-06-14 14:02 ` [Qemu-devel] [PATCH v1 1/3] vl: Fix broken thread=xxx option of the --accel parameter Alex Bennée
2017-06-14 14:02 ` [Qemu-devel] [PATCH v1 2/3] tcg-runtime: light re-factor of lookup_tb_ptr Alex Bennée
2017-06-14 15:44   ` Richard Henderson
2017-06-14 16:07     ` Alex Bennée
2017-06-14 17:10   ` Pranith Kumar
2017-06-14 14:02 ` [Qemu-devel] [PATCH v1 3/3] tcg-runtime: short-circuit lookup_tb_ptr on IRQs Alex Bennée
2017-06-14 15:45   ` Richard Henderson
2017-06-14 16:08     ` Paolo Bonzini
2017-06-14 16:51       ` Richard Henderson
2017-06-14 17:08         ` Paolo Bonzini [this message]
2017-06-14 18:26           ` Richard Henderson
2017-06-14 19:07             ` Alex Bennée
2017-06-14 19:43               ` Richard Henderson
2017-06-16 20:01                 ` Emilio G. Cota
2017-06-14 17:49       ` Alex Bennée
2017-06-14 17:53         ` Richard Henderson
2017-06-14 19:11         ` Peter Maydell
2017-06-14 19:19           ` Richard Henderson
2017-06-14 14:25 ` [Qemu-devel] [PATCH v1 0/3] Fixes for TCG hangs Philippe Mathieu-Daudé
2017-06-14 14:30 ` no-reply

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=be99bef9-eeb2-6816-e0ca-979780a48a06@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=alex.bennee@linaro.org \
    --cc=cota@braap.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.