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.
|
1992-04-30 03:11:04 +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.
|
1992-04-30 03:11:04 +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.
|
1992-04-30 03:11:04 +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/>. */
|
1992-04-30 03:11:04 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
2013-02-27 23:45:07 +00:00
|
|
|
.set nomips16
|
|
|
|
|
1994-12-04 18:07:13 +00:00
|
|
|
/* The function __sigsetjmp_aux saves all the registers, but it can't
|
1992-04-30 03:11:04 +00:00
|
|
|
reliably access the stack or frame pointers, so we pass them in as
|
|
|
|
extra arguments. */
|
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:07:13 +00:00
|
|
|
ENTRY (__sigsetjmp)
|
2000-04-13 19:46:02 +00:00
|
|
|
#ifdef __PIC__
|
1997-07-12 23:28:11 +00:00
|
|
|
.set noreorder
|
|
|
|
.cpload t9
|
|
|
|
.set reorder
|
1997-06-21 02:00:23 +00:00
|
|
|
#endif
|
1997-07-12 23:28:11 +00:00
|
|
|
move a2, sp
|
|
|
|
#ifdef fp
|
|
|
|
move a3, fp
|
|
|
|
#else
|
|
|
|
move a3, $fp
|
|
|
|
#endif
|
2000-04-13 19:46:02 +00:00
|
|
|
#ifdef __PIC__
|
1997-07-12 23:28:11 +00:00
|
|
|
la t9, __sigsetjmp_aux
|
|
|
|
jr t9
|
|
|
|
#else
|
|
|
|
j __sigsetjmp_aux
|
|
|
|
#endif
|
2013-02-08 02:03:10 +00:00
|
|
|
END (__sigsetjmp)
|