Update.
[glibc.git] / sysdeps / unix / sysv / linux / sparc / sparc64 / setjmp.S
blob65a1d348364c149c0aef8c8b77ab1f42ace06bef
1 /* Copyright (C) 1997 Free Software Foundation, Inc.
2    Contributed by Richard Henderson (rth@tamu.edu).
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
14    You should have received a copy of the GNU Library General Public
15    License along with the GNU C Library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
19 /* __sigsetjmp is implemented in terms of the getcontext trap on
20    Linux/Sparc64.  */
22 #include <sysdep.h>
24 /* Offsets into the jmp_buf structure.  */
26 #define O_mask_was_saved        512
27 #define O_gregs                 32
28 #define O_g1                    (O_gregs + 4*8)
30 /* int _setjmp(jmp_buf) */
32 ENTRY(__setjmp)
33         ba      __sigsetjmp_local
34          set    0, %o1
35 END(__setjmp)
37 /* int setjmp(jmp_buf) */
39 ENTRY(setjmp)
40         set     1, %o1
41 END(setjmp)
43 /* int __sigsetjmp(jmp_buf, savemask)  */
45 ENTRY(__sigsetjmp)
46 __sigsetjmp_local:
48         /* Record whether the user is intending to save the sigmask.  */
49         st      %o1, [%o0 + O_mask_was_saved]
51         /* Load up our return value, as longjmp is going to override
52            the jmp_buf on its way back.  */
53         mov     %g0, %g1
55         /* And call getcontext!  */
56         ta      0x6e
58         retl
59          mov    %g1, %o0
61 END(__sigsetjmp)
63 weak_alias(__setjmp, _setjmp)
64 weak_extern(setjmp)