qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] cpu-exec: Don't mask out external interrupts wh


From: Martin Galvan
Subject: Re: [Qemu-devel] [PATCH] cpu-exec: Don't mask out external interrupts when single-stepping an invalid instruction.
Date: Mon, 15 Sep 2014 13:02:56 -0300

I did a bit more research on how Cortex-M handles nested interrupts.
In particular, I noticed if we were to have an invalid instruction
inside the exception handler itself, trying to single-step it would
again cause Qemu not to return control back to gdb. Reading up a bit I
found out that when the CPU is handling an exception, all other
exceptions with the same or lower priority will be blocked.

Qemu seems to implement this by setting the exception as pending, yet
not changing cpu->interrupt_request so that we modify the PC in the
second call to do_interrupt. That seems fine to me, but since the
translation block is the same as before (and if that one contained an
exception_with_syndrome ending in a call to cpu_loop_exit) we'll be
stuck in the loop and we'll never return control to Gdb.

Therefore I have two questions:
1) Is this a bug?
2) If it is, what should the behaviour be? I think we should return
control back to gdb, but we shouldn't try to translate that
instruction again. How could we handle this in a clean way?

On Fri, Sep 12, 2014 at 12:50 PM, Martin Galvan
<address@hidden> wrote:
> On Fri, Sep 12, 2014 at 12:37 PM, Richard Henderson <address@hidden> wrote:
>> Alpha do_interrupt doesn't mess with cpu->interrupt_request at all, and 
>> doesn't
>> generate two calls to do_interrupt.  The one call finds the vector for the
>> given interrupt, modifies the PC, and swaps to the shadow register bank.
>>
>
> Indeed it does. The problem is, even if I changed the code inside
> ARM's do_interrupt to set the correct PC in the first call (so the IRQ
> masking wasn't an issue anymore) I'd still be stuck in the loop
> without returning control back to gdb.
>
>> (Which reminds me, we really, Really, need to get those ifdefs in cpu_exec
>> factored out into a nice single cpu callback.  Every time I read this code, I
>> feel I've missed something.)
>
> I totally agree with you there.
>
>>> How do you set cpu->exception_index in to EXCP_DEBUG after calling
>>> do_interrupt with EXCP_OPCDEC?
>>
>> I still don't know, but I know that _I_ don't do it.  I tried stepping 
>> through
>> qemu itself here, but I managed to crash the guest gdb in the process; dunno
>> what happened there.
>>
>
> In that case I'll see if I can step through Qemu myself and find out
> how Alpha returns control to gdb. Perhaps we can do the same on ARM.
>
> Thanks a lot!
>
> --
>
> Martín Galván
>
> Software Engineer
>
> Taller Technologies Argentina
>
>
> San Lorenzo 47, 3rd Floor, Office 5
>
> Córdoba, Argentina
>
> Phone: 54 351 4217888 / +54 351 4218211



-- 


Martín Galván

Software Engineer

Taller Technologies Argentina


San Lorenzo 47, 3rd Floor, Office 5

Córdoba, Argentina

Phone: 54 351 4217888 / +54 351 4218211



reply via email to

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