HelenOS sources
#
#
#
# - Redistributions of source code must retain the above copyright
# - Redistributions in binary form must reproduce the above copyright
# - The name of the author may not be used to endorse or promote products
#
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
#
#include <abi/asmtool.h>
.text
#
#
# |_________________|
# | |
# | SPSR |
# | |
# |_________________|
# | Stack Pointer |
# | of |
# | Previous Mode |
# |_________________|
# | Return address |
# | of |
# | Previous Mode |
# |_________________|
# | R0 - R12 |
# | of |
# | Previous Mode |
# |_________________|
# | Return address |
# | from |
# |Exception Handler|
# |_________________|
# | |
#
#
.macro SAVE_REGS_TO_STACK
stmfd r13!, {r0-r3}
mov r3, sp
add sp, sp, #16
mrs r1, cpsr
bic r1, r1, #0x1f
mrs r2, spsr
and r0, r2, #0x1f
cmp r0, #0x10
bne 1f
mov r0, lr
orr r1, r1, #0x13
msr cpsr_c, r1
ldr r13, =supervisor_sp
ldr r13, [r13]
msr spsr, r2
mov lr, r0
stmfd r13!, {lr}
stmfd r13!, {r4-r12}
ldmfd r3!, {r4-r7}
stmfd r13!, {r4-r7}
mov r4, r13
stmfd r4, {r13, lr}^
nop
sub r13, r13, #8
stmfd r13!, {r2}
mov fp, #0
b 2f
1:
orr r1, r1, r0
mov r0, lr
msr cpsr_c, r1
mov r1, sp
stmfd r13!, {r0}
stmfd r13!, {r4-r12}
ldmfd r3!, {r4-r7}
stmfd r13!, {r4-r7}
stmfd r13!, {lr}
stmfd r13!, {r1}
mov lr, r0
msr spsr, r2
stmfd r13!, {r2}
2:
sub sp, sp, #4
.endm
.macro LOAD_REGS_FROM_STACK
add sp, sp, #4
ldmfd r13!, {r0}
msr spsr, r0
and r0, r0, #0x1f
cmp r0, #0x10
bne 1f
mov r0, r13
ldmfd r0, {r13, lr}^
nop
add r13, r13, #8
b 2f
1:
ldmfd r13!, {r1, lr}
2:
ldmfd r13!, {r0-r12, pc}^
.endm
SYMBOL(reset_exception_entry)
SAVE_REGS_TO_STACK
mov r0, #0
mov r1, r13
bl ras_check
LOAD_REGS_FROM_STACK
SYMBOL(irq_exception_entry)
sub lr, lr, #4
SAVE_REGS_TO_STACK
mov r0, #5
mov r1, r13
bl ras_check
LOAD_REGS_FROM_STACK
SYMBOL(fiq_exception_entry)
sub lr, lr, #4
SAVE_REGS_TO_STACK
mov r0, #6
mov r1, r13
bl ras_check
LOAD_REGS_FROM_STACK
SYMBOL(undef_instr_exception_entry)
SAVE_REGS_TO_STACK
mov r0, #1
mov r1, r13
bl ras_check
LOAD_REGS_FROM_STACK
SYMBOL(prefetch_abort_exception_entry)
sub lr, lr, #4
SAVE_REGS_TO_STACK
mov r0, #3
mov r1, r13
bl ras_check
LOAD_REGS_FROM_STACK
SYMBOL(data_abort_exception_entry)
sub lr, lr, #8
SAVE_REGS_TO_STACK
mov r0, #4
mov r1, r13
bl ras_check
LOAD_REGS_FROM_STACK
SYMBOL(swi_exception_entry)
ldr r13, =exc_stack
SAVE_REGS_TO_STACK
mov r0, #2
mov r1, r13
bl ras_check
LOAD_REGS_FROM_STACK
HelenOS homepage, sources at GitHub