Update sigcode to use both the current ABI and FreeBSD's version of the

ARM EABI syscall calling convention.

The current ABI encodes the syscall number in the instruction. This causes
issues with the thumb mode as it only has 8 bits to encode this value and
we have too many system calls and by using a register will simplify the
code to get the syscall number in the kernel.

With the ARM EABI we reuse the Linux calling convention by storing the
value in r7. Because of this we use both methods to encode the syscall
number in this function.
This commit is contained in:
Andrew Turner 2013-01-14 09:11:18 +00:00
parent ed53231d73
commit eb23ab3120
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=245414

View File

@ -484,12 +484,29 @@ ENTRY_NP(abort)
ENTRY_NP(sigcode)
mov r0, sp
/*
* Call the sigreturn system call.
*
* We have to load r7 manually rather than using
* "ldr r7, =SYS_sigreturn" to ensure the value of szsigcode is
* correct. Using the alternative places esigcode at the address
* of the data rather than the address one past the data.
*/
ldr r7, [pc, #12] /* Load SYS_sigreturn */
swi SYS_sigreturn
/* Well if that failed we better exit quick ! */
ldr r7, [pc, #8] /* Load SYS_exit */
swi SYS_exit
b . - 8
/* Branch back to retry SYS_sigreturn */
b . - 16
.word SYS_sigreturn
.word SYS_exit
.align 0
.global _C_LABEL(esigcode)