1994-12-04 18:14:36 +00:00
|
|
|
/* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. MIPS version.
|
2016-01-04 16:05:18 +00:00
|
|
|
Copyright (C) 1996-2016 Free Software Foundation, Inc.
|
1997-06-21 02:00:23 +00:00
|
|
|
This file is part of the GNU C Library.
|
1994-12-04 18:14:36 +00:00
|
|
|
|
1997-06-21 02:00:23 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1994-12-04 18:14:36 +00:00
|
|
|
|
1997-06-21 02:00:23 +00:00
|
|
|
The GNU 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
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1994-12-04 18:14:36 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1994-12-04 18:14:36 +00:00
|
|
|
|
|
|
|
/* This just does a tail-call to `__sigsetjmp (ARG, 1)'.
|
|
|
|
We cannot do it in C because it must be a tail-call, so frame-unwinding
|
|
|
|
in setjmp doesn't clobber the state restored by longjmp. */
|
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
2013-02-27 23:45:07 +00:00
|
|
|
.set nomips16
|
|
|
|
|
2000-04-13 19:46:02 +00:00
|
|
|
#ifdef __PIC__
|
1997-06-21 02:00:23 +00:00
|
|
|
.option pic2
|
|
|
|
#endif
|
1994-12-04 18:14:36 +00:00
|
|
|
ENTRY (setjmp)
|
1997-07-12 23:28:11 +00:00
|
|
|
.set noreorder
|
2000-04-13 19:46:02 +00:00
|
|
|
#ifdef __PIC__
|
1997-06-21 02:00:23 +00:00
|
|
|
.cpload t9
|
2001-02-22 08:27:50 +00:00
|
|
|
.set reorder
|
1997-07-12 23:28:11 +00:00
|
|
|
la t9, C_SYMBOL_NAME (__sigsetjmp)
|
2001-02-22 08:27:50 +00:00
|
|
|
#endif
|
|
|
|
li a1, 1 /* Pass a second argument of one. */
|
|
|
|
#ifdef __PIC__
|
1997-07-12 23:28:11 +00:00
|
|
|
jr t9
|
|
|
|
#else
|
|
|
|
j C_SYMBOL_NAME (__sigsetjmp)
|
1997-06-21 02:00:23 +00:00
|
|
|
#endif
|
2013-02-08 02:03:10 +00:00
|
|
|
END (setjmp)
|