Move the alignment fault enable/disable code into macroes to avoid

needless duplication.

Additionally, merge AST handling into the same code.

exception.S and the generic irq_dispatch.S routines have been updated
to use the macroes.

XXX: I have patches for the non-generic IRQ dispatch routines, but they
need testing by someone with hardware.
This commit is contained in:
scw 2003-10-30 08:57:24 +00:00
parent 4101558b6e
commit 7a55b436b2
3 changed files with 178 additions and 322 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: exception.S,v 1.11 2003/10/26 11:34:29 scw Exp $ */
/* $NetBSD: exception.S,v 1.12 2003/10/30 08:57:24 scw Exp $ */
/*
* Copyright (c) 1994-1997 Mark Brinicombe.
@ -46,9 +46,6 @@
*/
#include "opt_ipkdb.h"
#include "opt_compat_netbsd.h"
#include "opt_execfmt.h"
#include "opt_multiprocessor.h"
#include <machine/asm.h>
#include <machine/cpu.h>
#include <machine/frame.h>
@ -57,46 +54,7 @@
.text
.align 0
.Lastpending:
.word _C_LABEL(astpending)
#if defined(COMPAT_15) && defined(EXEC_AOUT)
.Lcpufuncs:
.word _C_LABEL(cpufuncs)
#ifndef MULTIPROCESSOR
.Lcurpcb:
.word _C_LABEL(curpcb)
.Lcpu_info_store:
.word _C_LABEL(cpu_info_store)
#define GET_CURPCB \
ldr r1, .Lcurpcb ;\
ldr r1, [r1]
#define GET_CPUINFO \
ldr r0, .Lcpu_info_store
#else
.Lcpu_info:
.word _C_LABEL(cpu_info)
#define GET_CURPCB \
ldr r4, .Lcpu_info ;\
bl _C_LABEL(cpu_number) ;\
ldr r0, [r4, r0, lsl #2] ;\
ldr r1, [r0, #CI_CURPCB]
#define GET_CPUINFO /* nothing to do */
#endif
#define ENABLE_ALIGNMENT_FAULTS \
GET_CURPCB ;\
cmp r1, #0x00 /* curpcb NULL? ;\
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */ ;\
tstne r1, #PCB_NOALIGNFLT ;\
beq 1f /* Alignment faults already enabled */ ;\
GET_CPUINFO ;\
ldr r2, .Lcpufuncs ;\
ldr r1, [r0, #CI_CTRL] /* Fetch control register */ ;\
mov r0, #-1 ;\
mov lr, pc ;\
ldr pc, [r2, #CF_CONTROL] /* Enable alignment faults */ ;\
1:
#endif /* COMPAT_15 && EXEC_AOUT */
AST_ALIGNMENT_FAULT_LOCALS
/*
* General exception exit handler
@ -106,72 +64,15 @@
* Interrupts are disabled at suitable points to avoid ASTs
* being posted between testing and exit to user mode.
*
* This function uses PULLFRAMEFROMSVCANDEXIT thus should
* This function uses PULLFRAMEFROMSVCANDEXIT and
* DO_AST_AND_RESTORE_ALIGNMENT_FAULTS thus should
* only be called if the exception handler used PUSHFRAMEINSVC
* followed by ENABLE_ALIGNMENT_FAULTS.
*/
exception_exit:
mrs r4, cpsr /* Get CPSR */
ldr r0, [sp] /* Get the SPSR from stack */
and r0, r0, #(PSR_MODE) /* Test for USR32 mode before the AST */
teq r0, #(PSR_USR32_MODE)
bne .Ldo_exit /* Not USR mode so no AST delivery */
ldr r5, .Lastpending /* Get address of astpending */
#if defined(COMPAT_15) && defined(EXEC_AOUT) && !defined(MULTIPROCESSOR)
ldr r6, .Lcurpcb
ldr r7, .Lcpu_info_store
#endif
Lexception_exit_loop:
orr r0, r4, #(I32_bit) /* Block IRQs */
msr cpsr_all, r0
ldr r1, [r5] /* Do we have an AST pending */
teq r1, #0x00000000
bne .Ldo_ast
#if defined(COMPAT_15) && defined(EXEC_AOUT)
/* Disable alignment faults for the process, if necessary. */
#ifdef MULTIPROCESSOR
ldr r7, .Lcpu_info
bl _C_LABEL(cpu_number)
ldr r7, [r7, r0, lsl #2]
ldr r1, [r7, #CI_CURPCB]
#else
ldr r1, [r6]
#endif
cmp r1, #0x00 /* curpcb NULL? */
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */
tstne r1, #PCB_NOALIGNFLT
beq 1f /* Keep alignment faults enabled */
ldr r1, [r7, #CI_CTRL] /* Fetch control register */
ldr r2, .Lcpufuncs
mov r0, #-1
bic r1, r1, #CPU_CONTROL_AFLT_ENABLE /* Disable alignment faults */
mov lr, pc
ldr pc, [r2, #CF_CONTROL] /* Set the new control register value */
1:
#endif
PULLFRAMEFROMSVCANDEXIT /* No AST so exit */
.Ldo_ast:
mov r1, #0x00000000 /* Clear ast pending */
str r1, [r5]
msr cpsr_all, r4 /* Restore interrupts */
mov r0, sp /* arg 0 = trap frame */
bl _C_LABEL(ast) /* call the AST handler */
b Lexception_exit_loop /* Try and exit again */
.Ldo_exit:
orr r0, r4, #(I32_bit) /* Disable interrupts */
msr cpsr_all, r0
PULLFRAMEFROMSVCANDEXIT /* Restore the trap frame and exit */
DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
PULLFRAMEFROMSVCANDEXIT
/*
* reset_entry:
@ -194,65 +95,15 @@ Lreset_panicmsg:
*/
ASENTRY_NP(swi_entry)
PUSHFRAME
#if defined(COMPAT_15) && defined(EXEC_AOUT)
ENABLE_ALIGNMENT_FAULTS
#endif
mov r0, sp /* Pass the frame to any function */
bl _C_LABEL(swi_handler) /* It's a SWI ! */
ldr r5, .Lastpending /* Get address of astpending */
mrs r4, cpsr /* Get CPSR */
#if defined(COMPAT_15) && defined(EXEC_AOUT) && !defined(MULTIPROCESSOR)
ldr r6, .Lcurpcb
ldr r7, .Lcpu_info_store
#endif
.Lswi_exit_loop:
orr r0, r4, #(I32_bit) /* Disable IRQs */
msr cpsr_all, r0
ldr r1, [r5] /* Do we have an AST pending */
teq r1, #0x00000000
bne .Ldo_swi_ast
#if defined(COMPAT_15) && defined(EXEC_AOUT)
/* Disable alignment faults for the process, if necessary. */
#ifdef MULTIPROCESSOR
ldr r7, .Lcpu_info
bl _C_LABEL(cpu_number)
ldr r7, [r7, r0, lsl #2]
ldr r1, [r7, #CI_CURPCB]
#else
ldr r1, [r6]
#endif
cmp r1, #0x00 /* curpcb NULL? */
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */
tstne r1, #PCB_NOALIGNFLT
beq 1f /* Keep alignment faults enabled */
ldr r1, [r7, #CI_CTRL] /* Fetch control register */
ldr r2, .Lcpufuncs
mov r0, #-1
bic r1, r1, #CPU_CONTROL_AFLT_ENABLE /* Disable alignment faults */
mov lr, pc
ldr pc, [r2, #CF_CONTROL] /* Set the new control register value */
1:
#endif
DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
PULLFRAME
movs pc, lr /* Exit */
.Ldo_swi_ast:
mov r1, #0x00000000 /* Clear ast pending */
str r1, [r5]
msr cpsr_all, r4 /* Restore interrupts */
mov r0, sp /* arg 0 = trap frame */
bl _C_LABEL(ast) /* call the AST handler */
b .Lswi_exit_loop /* Try and exit again */
/*
* prefetch_abort_entry:
*
@ -262,17 +113,13 @@ ASENTRY_NP(prefetch_abort_entry)
sub lr, lr, #0x00000004 /* Adjust the lr */
PUSHFRAMEINSVC
#if defined(COMPAT_15) && defined(EXEC_AOUT)
ENABLE_ALIGNMENT_FAULTS
#endif
mov r0, sp /* pass the stack pointer as r0 */
adr lr, exception_exit
ldr r1, Lprefetch_abort_handler_address
adr lr, exception_exit
mov r0, sp /* pass the stack pointer as r0 */
ldr pc, [r1]
Lprefetch_abort_handler_address:
.word _C_LABEL(prefetch_abort_handler_address)
@ -301,19 +148,11 @@ ASENTRY_NP(data_abort_entry)
PUSHFRAMEINSVC /* Push trap frame and switch */
/* to SVC32 mode */
#if defined(COMPAT_15) && defined(EXEC_AOUT)
and r0, r0, #(PSR_MODE) /* Test for USR32 mode (r0 = spsr_all)*/
teq r0, #(PSR_USR32_MODE)
bne 99f /* Not USR mode so skip AFLT check */
ENABLE_ALIGNMENT_FAULTS
99:
#endif
mov r0, sp /* pass the stack pointer as r0 */
adr lr, exception_exit
ldr r1, Ldata_abort_handler_address
adr lr, exception_exit
mov r0, sp /* pass the stack pointer as r0 */
ldr pc, [r1]
Ldata_abort_handler_address:
@ -417,38 +256,11 @@ ASENTRY_NP(undefined_entry)
* Now to IPKDB.
*/
.Lgoipkdb:
#if defined(COMPAT_15) && defined(EXEC_AOUT)
ENABLE_ALIGNMENT_FAULTS
#endif
mov r0, sp
bl _C_LABEL(ipkdb_trap_glue)
ldr r1, .Lipkdb_trap_return
str r0,[r1]
#if defined(COMPAT_15) && defined(EXEC_AOUT)
#ifdef MULTIPROCESSOR
ldr r7, .Lcpu_info
bl _C_LABEL(cpu_number)
ldr r7, [r7, r0, lsl #2]
ldr r1, [r7, #CI_CURPCB]
#else
ldr r6, .Lcurpcb
ldr r7, .Lcpu_info_store
ldr r1, [r6]
#endif
cmp r1, #0x00 /* curpcb NULL? */
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */
tstne r1, #PCB_NOALIGNFLT
beq 1f /* Keep alignment faults enabled */
ldr r1, [r7, #CI_CTRL] /* Fetch control register */
ldr r2, .Lcpufuncs
mov r0, #-1
bic r1, r1, #CPU_CONTROL_AFLT_ENABLE /* Disable alignment faults */
mov lr, pc
ldr pc, [r2, #CF_CONTROL] /* Set the new control register value */
1:
#endif
/*
* Have to load all registers from the stack.
*
@ -530,17 +342,11 @@ Lundefined_handler_indirection:
ENTRY_NP(undefinedinstruction_bounce)
PUSHFRAMEINSVC
#if defined(COMPAT_15) && defined(EXEC_AOUT)
and r0, r0, #(PSR_MODE) /* Test for USR32 mode (r0 = spsr_all)*/
teq r0, #(PSR_USR32_MODE)
bne 99f /* Not USR mode so skip AFLT check */
ENABLE_ALIGNMENT_FAULTS
99:
#endif
mov r0, sp
bl _C_LABEL(undefinedinstruction)
b exception_exit
mov r0, sp
adr lr, exception_exit
b _C_LABEL(undefinedinstruction)
.data
.align 0

View File

@ -1,4 +1,4 @@
/* $NetBSD: irq_dispatch.S,v 1.4 2003/10/26 11:34:29 scw Exp $ */
/* $NetBSD: irq_dispatch.S,v 1.5 2003/10/30 08:57:24 scw Exp $ */
/*
* Copyright (c) 2002 Fujitsu Component Limited
@ -73,10 +73,6 @@
#include <machine/cpu.h>
#include <machine/frame.h>
#include "opt_compat_netbsd.h"
#include "opt_execfmt.h"
#include "opt_multiprocessor.h"
#include "opt_arm_intr_impl.h"
#ifdef ARM_INTR_IMPL
#include ARM_INTR_IMPL
@ -88,44 +84,6 @@
#error ARM_IRQ_HANDLER not defined
#endif
#if defined(COMPAT_15) && defined(EXEC_AOUT)
.Lcpufuncs:
.word _C_LABEL(cpufuncs)
#ifndef MULTIPROCESSOR
.Lcurpcb:
.word _C_LABEL(curpcb)
.Lcpu_info_store:
.word _C_LABEL(cpu_info_store)
#define GET_CURPCB \
ldr r1, .Lcurpcb ;\
ldr r1, [r1]
#define GET_CPUINFO \
ldr r0, .Lcpu_info_store
#else
.Lcpu_info:
.word _C_LABEL(cpu_info)
#define GET_CURPCB \
ldr r4, .Lcpu_info ;\
bl _C_LABEL(cpu_number) ;\
ldr r0, [r4, r0, lsl #2] ;\
ldr r1, [r0, #CI_CURPCB]
#define GET_CPUINFO /* nothing to do */
#endif
#define ENABLE_ALIGNMENT_FAULTS \
GET_CURPCB ;\
cmp r1, #0x00 /* curpcb NULL? */ ;\
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */ ;\
tstne r1, #PCB_NOALIGNFLT ;\
beq 1f /* Alignment faults already enabled */ ;\
GET_CPUINFO ;\
ldr r2, .Lcpufuncs ;\
ldr r1, [r0, #CI_CTRL] /* Fetch control register */ ;\
mov r0, #-1 ;\
mov lr, pc ;\
ldr pc, [r2, #CF_CONTROL] /* Enable alignment faults */ ;\
1:
#endif /* COMPAT_15 && EXEC_AOUT */
/*
* irq_entry:
* Main entry point for the IRQ vector. This is a generic version
@ -133,23 +91,16 @@
*/
.text
.align 0
.Lastpending:
.word _C_LABEL(astpending)
.Lcurrent_intr_depth:
.word _C_LABEL(current_intr_depth)
AST_ALIGNMENT_FAULT_LOCALS
ASENTRY_NP(irq_entry)
sub lr, lr, #0x00000004 /* Adjust the lr */
PUSHFRAMEINSVC /* Push an interrupt frame */
#if defined(COMPAT_15) && defined(EXEC_AOUT)
and r0, r0, #(PSR_MODE) /* Test for USR32 mode (r0 = spsr_all)*/
teq r0, #(PSR_USR32_MODE)
bne 99f /* Not USR mode so skip AFLT check */
ENABLE_ALIGNMENT_FAULTS
99:
#endif
/*
* Increment the interrupt nesting depth and call the interrupt
@ -174,66 +125,10 @@ ASENTRY_NP(irq_entry)
*/
str r6, [r5]
/*
* If we're returning to user mode, check for pending ASTs.
*/
ldr r0, [sp] /* Get the SPSR from stack */
and r0, r0, #(PSR_MODE) /* Test for USR32 mode before the IRQ */
teq r0, #(PSR_USR32_MODE)
bne .Lirq_do_exit /* Nope, get out now */
ldr r5, .Lastpending
#if defined(COMPAT_15) && defined(EXEC_AOUT) && !defined(MULTIPROCESSOR)
ldr r6, .Lcurpcb
ldr r7, .Lcpu_info_store
#endif
.Lirq_ast_loop:
ldr r1, [r5] /* Do we have an AST pending? */
teq r1, #0x00000000
bne .Lirq_do_ast /* Yup. Go deal with it */
#if defined(COMPAT_15) && defined(EXEC_AOUT)
/* Disable alignment faults for the process, if necessary. */
#ifdef MULTIPROCESSOR
ldr r7, .Lcpu_info
bl _C_LABEL(cpu_number)
ldr r7, [r7, r0, lsl #2]
ldr r1, [r7, #CI_CURPCB]
#else
ldr r1, [r6]
#endif
cmp r1, #0x00 /* curpcb NULL? */
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */
tstne r1, #PCB_NOALIGNFLT
beq 1f /* Keep alignment faults enabled */
ldr r1, [r7, #CI_CTRL] /* Fetch control register */
ldr r2, .Lcpufuncs
mov r0, #-1
bic r1, r1, #CPU_CONTROL_AFLT_ENABLE /* Disable alignment faults */
mov lr, pc
ldr pc, [r2, #CF_CONTROL] /* Set the new control register value */
1:
#endif
.Lirq_do_exit:
DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
PULLFRAMEFROMSVCANDEXIT
movs pc, lr /* Exit */
.Lirq_do_ast:
mov r1, #0x00000000
str r1, [r5] /* Clear astpending */
mrs r4, cpsr /* save CPSR */
bic r0, r4, #(I32_bit) /* Enable IRQs */
msr cpsr_c, r0
mov r0, sp
bl _C_LABEL(ast) /* ast(frame) */
msr cpsr_c, r4 /* Disable IRQs */
b .Lirq_ast_loop /* Check for more ASTs */
.bss
.align 0

View File

@ -1,4 +1,4 @@
/* $NetBSD: frame.h,v 1.6 2003/10/23 08:59:10 scw Exp $ */
/* $NetBSD: frame.h,v 1.7 2003/10/30 08:57:24 scw Exp $ */
/*
* Copyright (c) 1994-1997 Mark Brinicombe.
@ -106,6 +106,161 @@ void validate_trapframe __P((trapframe_t *, int));
#else /* _LOCORE */
#include "opt_compat_netbsd.h"
#include "opt_execfmt.h"
#include "opt_multiprocessor.h"
/*
* AST_ALIGNMENT_FAULT_LOCALS and ENABLE_ALIGNMENT_FAULTS
* These are used in order to support dynamic enabling/disabling of
* alignment faults when executing old a.out ARM binaries.
*/
#if defined(COMPAT_15) && defined(EXEC_AOUT)
#ifndef MULTIPROCESSOR
/*
* Local variables needed by the AST/Alignment Fault macroes
*/
#define AST_ALIGNMENT_FAULT_LOCALS \
.Laflt_astpending: ;\
.word _C_LABEL(astpending) ;\
.Laflt_cpufuncs: ;\
.word _C_LABEL(cpufuncs) ;\
.Laflt_curpcb: ;\
.word _C_LABEL(curpcb) ;\
.Laflt_cpu_info_store: ;\
.word _C_LABEL(cpu_info_store)
#define GET_CURPCB_ENTER \
ldr r1, .Laflt_curpcb ;\
ldr r1, [r1]
#define GET_CPUINFO_ENTER \
ldr r0, .Laflt_cpu_info_store
#define GET_CURPCB_EXIT \
ldr r1, .Laflt_curpcb ;\
ldr r2, .Laflt_cpu_info_store ;\
ldr r1, [r1]
#else /* !MULTIPROCESSOR */
#define AST_ALIGNMENT_FAULT_LOCALS \
.Laflt_astpending: ;\
.word _C_LABEL(astpending) ;\
.Laflt_cpufuncs: ;\
.word _C_LABEL(cpufuncs) ;\
.Laflt_cpu_info: ;\
.word _C_LABEL(cpu_info)
#define GET_CURPCB_ENTER \
ldr r4, .Laflt_cpu_info ;\
bl _C_LABEL(cpu_number) ;\
ldr r0, [r4, r0, lsl #2] ;\
ldr r1, [r0, #CI_CURPCB]
#define GET_CPUINFO_ENTER /* nothing to do */
#define GET_CURPCB_EXIT \
ldr r7, .Laflt_cpu_info ;\
bl _C_LABEL(cpu_number) ;\
ldr r2, [r7, r0, lsl #2] ;\
ldr r1, [r2, #CI_CURPCB]
#endif /* MULTIPROCESSOR */
/*
* This macro must be invoked following PUSHFRAMEINSVC or PUSHFRAME at
* the top of interrupt/exception handlers.
*
* When invoked, r0 *must* contain the value of SPSR on the current
* trap/interrupt frame. This is always the case if ENABLE_ALIGNMENT_FAULTS
* is invoked immediately after PUSHFRAMEINSVC or PUSHFRAME.
*/
#define ENABLE_ALIGNMENT_FAULTS \
and r0, r0, #(PSR_MODE) /* Test for USR32 mode */ ;\
teq r0, #(PSR_USR32_MODE) ;\
bne 1f /* Not USR mode skip AFLT */ ;\
GET_CURPCB_ENTER /* r1 = curpcb */ ;\
cmp r1, #0x00 /* curpcb NULL? */ ;\
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */ ;\
tstne r1, #PCB_NOALIGNFLT ;\
beq 1f /* AFLTs already enabled */ ;\
GET_CPUINFO_ENTER /* r0 = cpuinfo */ ;\
ldr r2, .Laflt_cpufuncs ;\
ldr r1, [r0, #CI_CTRL] /* Fetch control register */ ;\
mov r0, #-1 ;\
mov lr, pc ;\
ldr pc, [r2, #CF_CONTROL] /* Enable alignment faults */ ;\
1:
/*
* This macro must be invoked just before PULLFRAMEFROMSVCANDEXIT or
* PULLFRAME at the end of interrupt/exception handlers.
*/
#define DO_AST_AND_RESTORE_ALIGNMENT_FAULTS \
mrs r4, cpsr /* save CPSR */ ;\
ldr r0, [sp] /* Get the SPSR from stack */ ;\
orr r4, r4, #(I32_bit) /* Disable IRQs */ ;\
msr cpsr_c, r4 ;\
and r0, r0, #(PSR_MODE) /* Returning to USR mode? */ ;\
teq r0, #(PSR_USR32_MODE) ;\
ldreq r5, .Laflt_astpending ;\
bne 3f /* Nope, get out now */ ;\
1: ldr r1, [r5] /* Pending AST? */ ;\
teq r1, #0x00000000 ;\
bne 2f /* Yup. Go deal with it */ ;\
GET_CURPCB_EXIT /* r1 = curpcb, r2 = cpuinfo */ ;\
cmp r1, #0x00 /* curpcb NULL? */ ;\
ldrne r1, [r1, #PCB_FLAGS] /* Fetch curpcb->pcb_flags */ ;\
tstne r1, #PCB_NOALIGNFLT ;\
beq 3f /* Keep AFLTs enabled */ ;\
ldr r1, [r2, #CI_CTRL] /* Fetch control register */ ;\
ldr r2, .Laflt_cpufuncs ;\
mov r0, #-1 ;\
bic r1, r1, #CPU_CONTROL_AFLT_ENABLE /* Disable AFLTs */ ;\
adr lr, 3f ;\
ldr pc, [r2, #CF_CONTROL] /* Set new CTRL reg value */ ;\
2: mov r1, #0x00000000 ;\
str r1, [r5] /* Clear astpending */ ;\
bic r0, r4, #(I32_bit) /* Enable IRQs */ ;\
msr cpsr_c, r0 ;\
mov r0, sp ;\
bl _C_LABEL(ast) /* ast(frame) */ ;\
msr cpsr_c, r4 /* Disable IRQs */ ;\
b 1b /* Check for more ASTs */ ;\
3:
#else /* !(COMPAT_15 && EXEC_AOUT) */
#define AST_ALIGNMENT_FAULT_LOCALS ;\
.Laflt_astpending: ;\
.word _C_LABEL(astpending)
#define ENABLE_ALIGNMENT_FAULTS /* nothing */
#define DO_AST_AND_RESTORE_ALIGNMENT_FAULTS \
mrs r4, cpsr /* save CPSR */ ;\
ldr r0, [sp] /* Get the SPSR from stack */ ;\
orr r4, r4, #(I32_bit) /* Disable IRQs */ ;\
msr cpsr_c, r4 ;\
and r0, r0, #(PSR_MODE) /* Returning to USR mode? */ ;\
teq r0, #(PSR_USR32_MODE) ;\
ldreq r5, .Laflt_astpending ;\
bne 2f /* Nope, get out now */ ;\
1: ldr r1, [r5] /* Pending AST? */ ;\
teq r1, #0x00000000 ;\
beq 2f /* Nope. Just bail */ ;\
mov r1, #0x00000000 ;\
str r1, [r5] /* Clear astpending */ ;\
bic r0, r4, #(I32_bit) /* Enable IRQs */ ;\
msr cpsr_c, r0 ;\
mov r0, sp ;\
bl _C_LABEL(ast) /* ast(frame) */ ;\
msr cpsr_c, r4 /* Disable IRQs */ ;\
b 1b /* Check for more ASTs */ ;\
2:
#endif /* COMPAT_15 && EXEC_AOUT */
/*
* ASM macros for pushing and pulling trapframes from the stack
*
@ -129,7 +284,7 @@ void validate_trapframe __P((trapframe_t *, int));
stmia r0, {r13-r14}^; /* Push the user mode registers */ \
mov r0, r0; /* NOP for previous instruction */ \
mrs r0, spsr_all; /* Put the SPSR on the stack */ \
str r0, [sp, #-4]!;
str r0, [sp, #-4]!
/*
* PULLFRAME - macro to pull a trap frame from the stack in the current mode
@ -142,7 +297,7 @@ void validate_trapframe __P((trapframe_t *, int));
ldmia sp, {r0-r14}^; /* Restore registers (usr mode) */ \
mov r0, r0; /* NOP for previous instruction */ \
add sp, sp, #(4*17); /* Adjust the stack pointer */ \
ldr lr, [sp], #0x0004; /* Pull the return address */
ldr lr, [sp], #0x0004 /* Pull the return address */
/*
* PUSHFRAMEINSVC - macro to push a trap frame on the stack in SVC32 mode