2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / sparc / sparc64 / setjmp.S
blobab1690bb42dd95e17c3b318f12ad7c9eeb2f3fb3
1 /* Copyright (C) 1997, 2002 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Richard Henderson (rth@tamu.edu).
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, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 /* __sigsetjmp is implemented in terms of the getcontext trap on
21    Linux/Sparc64.  */
23 #include <sysdep.h>
25 /* Offsets into the jmp_buf structure.  */
27 #define O_mask_was_saved        512
28 #define O_gregs                 32
29 #define O_g1                    (O_gregs + 4*8)
31 /* int _setjmp(jmp_buf) */
33 ENTRY(_setjmp)
34         ba      __sigsetjmp_local
35          set    0, %o1
36 END(_setjmp)
37 libc_hidden_def (_setjmp)
39 /* int setjmp(jmp_buf) */
41 ENTRY(setjmp)
42         ba,pt   %xcc, __sigsetjmp_local
43          set    1, %o1
44 END(setjmp)
46 /* int __sigsetjmp(jmp_buf, savemask)  */
48 ENTRY(__sigsetjmp)
49 __sigsetjmp_local:
51         /* Record whether the user is intending to save the sigmask.  */
52         st      %o1, [%o0 + O_mask_was_saved]
54         /* Load up our return value, as longjmp is going to override
55            the jmp_buf on its way back.  */
56         mov     %g0, %g1
58         /* And call getcontext!  */
59         ta      0x6e
61         retl
62          mov    %g1, %o0
64 END(__sigsetjmp)
66 weak_extern(_setjmp)
67 weak_extern(setjmp)