linux: Add FSCONFIG_CMD_CREATE_EXCL from Linux 6.6 to sys/mount.h
[glibc.git] / sysdeps / arc / setjmp.S
blob9ecdb9daae96b9467c24f014f92db98121ce2725
1 /* setjmp for ARC.
2    Copyright (C) 2020-2023 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library.  If not, see
17    <https://www.gnu.org/licenses/>.  */
20 #include <sysdep.h>
22 /* Upon entry r0 = jump buffer into which regs will be saved.  */
23 ENTRY (setjmp)
24         b.d     __sigsetjmp
25         mov     r1, 1           /* save signals.  */
26 END (setjmp)
28 /* Upon entry r0 = jump buffer into which regs will be saved.  */
29 ENTRY (_setjmp)
30         b.d     __sigsetjmp
31         mov     r1, 0           /* don't save signals.  */
32 END (_setjmp)
33 libc_hidden_def (_setjmp)
35 /* Upon entry
36    r0 = jump buffer into which regs will be saved
37    r1 = do we need to save signals.  */
38 ENTRY (__sigsetjmp)
40         /* Make a note of where longjmp will return to.
41            that will be right next to this setjmp call-site in BLINK
42            since "C" caller of this routine will do a branch-n-link.  */
44         STR (blink, r0,  0)
45         STR (sp,    r0,  1)
46         STR (fp,    r0,  2)
47         STR (gp,    r0,  3)
49         STR (r13,   r0,  4)
50         STR (r14,   r0,  5)
51         STR (r15,   r0,  6)
52         STR (r16,   r0,  7)
53         STR (r17,   r0,  8)
54         STR (r18,   r0,  9)
55         STR (r19,   r0, 10)
56         STR (r20,   r0, 11)
57         STR (r21,   r0, 12)
58         STR (r22,   r0, 13)
59         STR (r23,   r0, 14)
60         STR (r24,   r0, 15)
62         b    __sigjmp_save
64 END (__sigsetjmp)
66 libc_hidden_def (__sigsetjmp)