diff options
author | Peter Maydell | 2017-10-06 17:46:47 +0200 |
---|---|---|
committer | Peter Maydell | 2017-10-06 17:46:47 +0200 |
commit | de2db7ec894f11931932ca78cd14a8d2b1389d5b (patch) | |
tree | 8f1e5195fb4bab772520ca7c71ef88281b283fa7 /hw/intc/armv7m_nvic.c | |
parent | target/arm: Don't switch to target stack early in v7M exception return (diff) | |
download | qemu-de2db7ec894f11931932ca78cd14a8d2b1389d5b.tar.gz qemu-de2db7ec894f11931932ca78cd14a8d2b1389d5b.tar.xz qemu-de2db7ec894f11931932ca78cd14a8d2b1389d5b.zip |
target/arm: Prepare for CONTROL.SPSEL being nonzero in Handler mode
In the v7M architecture, there is an invariant that if the CPU is
in Handler mode then the CONTROL.SPSEL bit cannot be nonzero.
This in turn means that the current stack pointer is always
indicated by CONTROL.SPSEL, even though Handler mode always uses
the Main stack pointer.
In v8M, this invariant is removed, and CONTROL.SPSEL may now
be nonzero in Handler mode (though Handler mode still always
uses the Main stack pointer). In preparation for this change,
change how we handle this bit: rename switch_v7m_sp() to
the now more accurate write_v7m_control_spsel(), and make it
check both the handler mode state and the SPSEL bit.
Note that this implicitly changes the point at which we switch
active SP on exception exit from before we pop the exception
frame to after it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 1506092407-26985-4-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/intc/armv7m_nvic.c')
-rw-r--r-- | hw/intc/armv7m_nvic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/intc/armv7m_nvic.c b/hw/intc/armv7m_nvic.c index bc7b66d9cc..a1041c205e 100644 --- a/hw/intc/armv7m_nvic.c +++ b/hw/intc/armv7m_nvic.c @@ -616,7 +616,7 @@ bool armv7m_nvic_acknowledge_irq(void *opaque) vec->active = 1; vec->pending = 0; - env->v7m.exception = s->vectpending; + write_v7m_exception(env, s->vectpending); nvic_irq_update(s); |