Msg/IntrClobberedSP
From CPUlator Wiki
< Msg
An interrupt handler should always ensure that the stack pointer and some control registers are the same at the entry and exit of the function. This message tells you that this didn't happen: the stack pointer or control register was different at the interrupt return than when the interrupt handler started executing.
Debugging
See Msg/ClobberedSP, which is a similar warning for functions.
Implementation
The simulator identifies interrupts and return-from-interrupt instructions executed at runtime. It records the values of registers at interrupts, and verifies that they haven't changed when executing the matching interrupt return This warning is generated at the interrupt return instruction.
Disabling this message
This debugging check can be disabled in the Debugging Checks section of the Settings box: Interrupt clobbered ea, ra, sp, or a ctl reg.
ARMv7: Interrupt clobbered sp or spsr, or bad return