Add Changelog ...
[glibc.git] / sysdeps / mips / mips64 / bsd-_setjmp.S
blob4debc4f895655343dbf4e127ea756042a9a5208f
1 /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'.  MIPS64 version.
2    Copyright (C) 1996, 1997, 2000, 2002, 2003, 2004
3         Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library.  If not, see
18    <http://www.gnu.org/licenses/>.  */
20 /* This just does a tail-call to `__sigsetjmp (ARG, 0)'.
21    We cannot do it in C because it must be a tail-call, so frame-unwinding
22    in setjmp doesn't clobber the state restored by longjmp.  */
24 #include <sgidefs.h>
25 #include <sysdep.h>
26 #include <sys/asm.h>
28 #ifdef __PIC__
29         .option pic2
30 #endif
31 ENTRY (_setjmp)
32 #ifdef __PIC__
33         SETUP_GP
34 #endif
35         SETUP_GP64 (v0, C_SYMBOL_NAME (_setjmp))
36         PTR_LA t9, C_SYMBOL_NAME (__sigsetjmp)
37 #if _MIPS_SIM == _ABIO32
38         nop
39 #endif  
40         RESTORE_GP64
41         move    a1, zero                /* Pass a second argument of zero.  */
42 #ifdef __PIC__
43         jr      t9
44 #else
45         j       C_SYMBOL_NAME (__sigsetjmp)
46 #endif
47         .end    _setjmp
48 libc_hidden_def (_setjmp)