mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
30cd318c17
Note: This is an incompatible ABI change.
109 lines
2.8 KiB
ArmAsm
109 lines
2.8 KiB
ArmAsm
/*******************************************************************************
|
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2013, 2014.
|
|
|
|
This file is part of the Sortix C Library.
|
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
x64/setjmp.S
|
|
Implement the assembly part of setjmp.
|
|
|
|
*******************************************************************************/
|
|
|
|
#define SIG_SETMASK 2
|
|
|
|
/*
|
|
* sigjmp_buf[0] = %rbx
|
|
* sigjmp_buf[1] = %rsp
|
|
* sigjmp_buf[2] = %rbp
|
|
* sigjmp_buf[3] = %r12
|
|
* sigjmp_buf[4] = %r13
|
|
* sigjmp_buf[5] = %r14
|
|
* sigjmp_buf[6] = %r15
|
|
* sigjmp_buf[7] = <return-address>
|
|
* sigjmp_buf[8] = <non-zero if sigmask saved>
|
|
* sigjmp_buf[9...] = <saved sigmask if sigjmp_buf[8] != 0>
|
|
*/
|
|
|
|
.global setjmp
|
|
.type setjmp, @function
|
|
setjmp:
|
|
movl $1, %esi # setjmp saves the signal mask on Sortix
|
|
jmp 1f
|
|
.size setjmp, . - setjmp
|
|
|
|
.global sigsetjmp
|
|
.type sigsetjmp, @function
|
|
sigsetjmp:
|
|
mov %esi, %esi # clear upper 32-bit bits
|
|
testl %esi, %esi
|
|
jz 2f
|
|
1: push %rdi
|
|
push %rsi
|
|
lea (9 * 8)(%rdi), %rdx # oldset
|
|
xor %esi, %esi # set
|
|
xor %edi, %edi # how (ignored because set is NULL)
|
|
call sigprocmask # assumes sigprocmask is per-thread on Sortix
|
|
pop %rsi
|
|
pop %rdi
|
|
2: mov 0(%rsp), %rax
|
|
mov %rbx, (0 * 8)(%rdi)
|
|
mov %rsp, (1 * 8)(%rdi)
|
|
mov %rbp, (2 * 8)(%rdi)
|
|
mov %r12, (3 * 8)(%rdi)
|
|
mov %r13, (4 * 8)(%rdi)
|
|
mov %r14, (5 * 8)(%rdi)
|
|
mov %r15, (6 * 8)(%rdi)
|
|
mov %rax, (7 * 8)(%rdi)
|
|
mov %rsi, (8 * 8)(%rdi)
|
|
xorl %eax, %eax
|
|
ret
|
|
.size sigsetjmp, . - sigsetjmp
|
|
|
|
.global longjmp
|
|
.type longjmp, @function
|
|
longjmp:
|
|
jmp siglongjmp
|
|
.size longjmp, . - longjmp
|
|
|
|
.global siglongjmp
|
|
.type siglongjmp, @function
|
|
siglongjmp:
|
|
testl %esi, %esi
|
|
jnz 1f
|
|
movl $1, %esi
|
|
1: movq (8 * 8)(%rdi), %rdx
|
|
testq %rdx, %rdx
|
|
jz 2f
|
|
pushq %rdi
|
|
pushq %rsi
|
|
leaq (9 * 8)(%rdi), %rsi # set
|
|
movl $SIG_SETMASK, %edi # how
|
|
xorl %edx, %edx # oldset
|
|
call sigprocmask
|
|
popq %rsi
|
|
popq %rdi
|
|
2: movq (0 * 8)(%rdi), %rbx
|
|
movq (1 * 8)(%rdi), %rsp
|
|
movq (2 * 8)(%rdi), %rbp
|
|
movq (3 * 8)(%rdi), %r12
|
|
movq (4 * 8)(%rdi), %r13
|
|
movq (5 * 8)(%rdi), %r14
|
|
movq (6 * 8)(%rdi), %r15
|
|
movq (7 * 8)(%rdi), %rax
|
|
movq %rax, 0(%rsp)
|
|
movl %esi, %eax
|
|
ret
|
|
.size siglongjmp, . - siglongjmp
|