mirror of https://github.com/xqemu/xqemu.git
target-arm: Break out exception masking to a separate func
Reviewed-by: Greg Bellows <greg.bellows@linaro.org> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Message-id: 1411718914-6608-5-git-send-email-edgar.iglesias@gmail.com [PMM: updated to account for recent cpu-exec refactoring] Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
9e729b57ac
commit
043b7f8d12
|
@ -187,12 +187,10 @@ static void arm_cpu_reset(CPUState *s)
|
||||||
bool arm_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
bool arm_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
||||||
{
|
{
|
||||||
CPUClass *cc = CPU_GET_CLASS(cs);
|
CPUClass *cc = CPU_GET_CLASS(cs);
|
||||||
ARMCPU *cpu = ARM_CPU(cs);
|
|
||||||
CPUARMState *env = &cpu->env;
|
|
||||||
bool ret = false;
|
bool ret = false;
|
||||||
|
|
||||||
if (interrupt_request & CPU_INTERRUPT_FIQ
|
if (interrupt_request & CPU_INTERRUPT_FIQ
|
||||||
&& !(env->daif & PSTATE_F)) {
|
&& arm_excp_unmasked(cs, EXCP_FIQ)) {
|
||||||
cs->exception_index = EXCP_FIQ;
|
cs->exception_index = EXCP_FIQ;
|
||||||
cc->do_interrupt(cs);
|
cc->do_interrupt(cs);
|
||||||
ret = true;
|
ret = true;
|
||||||
|
@ -207,8 +205,7 @@ bool arm_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
||||||
We avoid this by disabling interrupts when
|
We avoid this by disabling interrupts when
|
||||||
pc contains a magic address. */
|
pc contains a magic address. */
|
||||||
if (interrupt_request & CPU_INTERRUPT_HARD
|
if (interrupt_request & CPU_INTERRUPT_HARD
|
||||||
&& !(env->daif & PSTATE_I)
|
&& arm_excp_unmasked(cs, EXCP_IRQ)) {
|
||||||
&& (!IS_M(env) || env->regs[15] < 0xfffffff0)) {
|
|
||||||
cs->exception_index = EXCP_IRQ;
|
cs->exception_index = EXCP_IRQ;
|
||||||
cc->do_interrupt(cs);
|
cc->do_interrupt(cs);
|
||||||
ret = true;
|
ret = true;
|
||||||
|
|
|
@ -1172,6 +1172,21 @@ bool write_cpustate_to_list(ARMCPU *cpu);
|
||||||
# define TARGET_VIRT_ADDR_SPACE_BITS 32
|
# define TARGET_VIRT_ADDR_SPACE_BITS 32
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static inline bool arm_excp_unmasked(CPUState *cs, unsigned int excp_idx)
|
||||||
|
{
|
||||||
|
CPUARMState *env = cs->env_ptr;
|
||||||
|
|
||||||
|
switch (excp_idx) {
|
||||||
|
case EXCP_FIQ:
|
||||||
|
return !(env->daif & PSTATE_F);
|
||||||
|
case EXCP_IRQ:
|
||||||
|
return !(env->daif & PSTATE_I)
|
||||||
|
&& (!IS_M(env) || env->regs[15] < 0xfffffff0);
|
||||||
|
default:
|
||||||
|
g_assert_not_reached();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static inline CPUARMState *cpu_init(const char *cpu_model)
|
static inline CPUARMState *cpu_init(const char *cpu_model)
|
||||||
{
|
{
|
||||||
ARMCPU *cpu = cpu_arm_init(cpu_model);
|
ARMCPU *cpu = cpu_arm_init(cpu_model);
|
||||||
|
|
Loading…
Reference in New Issue