qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [RFC PATCH v7 08/21] replay: interrupts and exceptions


From: Pavel Dovgaluk
Subject: Re: [Qemu-devel] [RFC PATCH v7 08/21] replay: interrupts and exceptions
Date: Wed, 14 Jan 2015 12:07:27 +0300

> From: Paolo Bonzini [mailto:address@hidden
> On 12/01/2015 13:40, Pavel Dovgaluk wrote:
> >>>
> >> > Perhaps check the replay_interrupt() outside, in an && with "if
> >> > (unlikely(interrupt_request))"?
> > You mean that I should wrap whole condition into "unlikely"?
> >
> 
> No, I wanted to have a single check of "replay_interrupt()" and/or
> "replay_has_interrupt()".
> 
> BTW, I think this is incorrect:
> 
> > +                    if ((replay_mode != REPLAY_MODE_PLAY
> > +                            || replay_has_interrupt())
> > +                        && cc->cpu_exec_interrupt(cpu, interrupt_request)) 
> > {
> > +                        replay_interrupt();
> 
> because cc->cpu_exec_interrupt() can exit with cpu_loop_exit(cpu).

Haven't found any. Do you have an example?

> 
> I guess it could be something like this:
> 
>     if (replay_mode == REPLAY_MODE_PLAY && !replay_has_interrupt()) {
>         /* do nothing */
>     } else if (interrupt_request & CPU_INTERRUPT_HALT) {
>         replay_interrupt();
>         ...
>         cpu_loop_exit(cpu);
>     } else if (interrupt_request & CPU_INTERRUPT_INIT) {
>         replay_interrupt();
>         ...
>         cpu_loop_exit(cpu);
>     } else {
>         replay_interrupt();
>         if (cc->cpu_exec_interrupt(cpu, interrupt_request)) {
>             next_tb = 0;
>         }
>     }

Is it normal that processing of the reset request does not execute 
cpu_loop_exit(cpu)?

> >>> > >  #else
> >>> > > -                    if (interrupt_request & CPU_INTERRUPT_RESET) {
> >>> > > +                    if ((interrupt_request & CPU_INTERRUPT_RESET)
> >>> > > +                        && replay_interrupt()) {
> >>> > >                          cpu_reset(cpu);
> >>> > >                      }
> >>> > >  #endif


Pavel Dovgalyuk




reply via email to

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