2024-01-01 18:12:26 +00:00
|
|
|
/* Copyright (C) 1992-2024 Free Software Foundation, Inc.
|
1996-11-20 03:45:46 +00:00
|
|
|
This file is part of the GNU C Library.
|
1992-11-25 03:28:54 +00:00
|
|
|
|
1996-11-20 03:45:46 +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-11-25 03:28:54 +00:00
|
|
|
|
1996-11-20 03:45:46 +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-11-25 03:28:54 +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
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1992-11-25 03:28:54 +00:00
|
|
|
|
1997-09-11 03:14:40 +00:00
|
|
|
#define __ASSEMBLY__
|
|
|
|
|
1992-11-25 03:28:54 +00:00
|
|
|
#include <sysdep.h>
|
2022-10-18 15:00:07 +00:00
|
|
|
#include <pointer_guard.h>
|
2006-01-12 09:27:47 +00:00
|
|
|
#include <jmpbuf-offsets.h>
|
1997-09-11 03:14:40 +00:00
|
|
|
|
2006-01-11 22:15:28 +00:00
|
|
|
.ent __sigsetjmp
|
|
|
|
.global __sigsetjmp
|
1997-09-11 03:14:40 +00:00
|
|
|
__sigsetjmp:
|
2006-01-11 22:15:28 +00:00
|
|
|
ldgp gp, 0(pv)
|
1992-11-25 03:28:54 +00:00
|
|
|
|
1997-09-11 03:14:40 +00:00
|
|
|
$sigsetjmp_local:
|
2006-01-11 22:15:28 +00:00
|
|
|
#ifndef PIC
|
2006-01-13 21:41:29 +00:00
|
|
|
#define FRAME 16
|
2006-01-11 22:15:28 +00:00
|
|
|
subq sp, FRAME, sp
|
|
|
|
.frame sp, FRAME, ra, 0
|
|
|
|
stq ra, 0(sp)
|
|
|
|
.mask 0x04000000, -FRAME
|
|
|
|
#else
|
|
|
|
#define FRAME 0
|
|
|
|
.frame sp, FRAME, ra, 0
|
|
|
|
#endif
|
1996-11-06 04:24:11 +00:00
|
|
|
#ifdef PROF
|
1996-11-20 03:45:46 +00:00
|
|
|
.set noat
|
1996-11-06 04:24:11 +00:00
|
|
|
lda AT, _mcount
|
|
|
|
jsr AT, (AT), _mcount
|
1996-11-20 03:45:46 +00:00
|
|
|
.set at
|
1996-11-06 04:24:11 +00:00
|
|
|
#endif
|
Wed May 22 00:40:50 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/alpha/_mcount.S, sysdeps/alpha/bb_init_func.S,
sysdeps/alpha/bsd-setjmp.S, sysdeps/alpha/ffs.S,
sysdeps/alpha/htonl.S, sysdeps/alpha/htons.S, sysdeps/alpha/memchr.S,
sysdeps/alpha/setjmp.S, sysdeps/alpha/strlen.S,
sysdeps/alpha/udiv_qrnnd.S, sysdeps/unix/sysv/linux/alpha/brk.S,
sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
sysdeps/unix/sysv/linux/alpha/pipe.S,
sysdeps/unix/sysv/linux/sigsuspend.S,
sysdeps/unix/sysv/linux/alpha/syscall.S,
sysdeps/unix/sysv/linux/alpha/sysdep.S: Remove include of regdef.h.
sysdep.h includes it now. Replace ENTRY by LEAF with appropriate
framesize declaration. Replace "lda pv,sym/jsr pv" by "jsr sym".
Wed Mar 27 10:26:21 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/alpha/setjmp.S: Must establish global pointer before
address of __sigsetjmp_aux can be loaded.
1996-05-23 05:33:05 +00:00
|
|
|
.prologue 1
|
|
|
|
|
1997-09-11 03:14:40 +00:00
|
|
|
stq s0, JB_S0*8(a0)
|
|
|
|
stq s1, JB_S1*8(a0)
|
|
|
|
stq s2, JB_S2*8(a0)
|
|
|
|
stq s3, JB_S3*8(a0)
|
|
|
|
stq s4, JB_S4*8(a0)
|
|
|
|
stq s5, JB_S5*8(a0)
|
2006-01-11 22:15:28 +00:00
|
|
|
#ifdef PTR_MANGLE
|
|
|
|
PTR_MANGLE(t1, ra, t0)
|
|
|
|
stq t1, JB_PC*8(a0)
|
|
|
|
#else
|
1997-09-11 03:14:40 +00:00
|
|
|
stq ra, JB_PC*8(a0)
|
2006-01-11 22:15:28 +00:00
|
|
|
#endif
|
|
|
|
#if defined(PTR_MANGLE) && FRAME == 0
|
|
|
|
PTR_MANGLE2(t1, sp, t0)
|
|
|
|
#else
|
|
|
|
addq sp, FRAME, t1
|
|
|
|
# ifdef PTR_MANGLE
|
|
|
|
PTR_MANGLE2(t1, t1, t0)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
stq t1, JB_SP*8(a0)
|
|
|
|
#ifdef PTR_MANGLE
|
|
|
|
PTR_MANGLE2(t1, fp, t0)
|
|
|
|
stq t1, JB_FP*8(a0)
|
|
|
|
#else
|
1997-09-11 03:14:40 +00:00
|
|
|
stq fp, JB_FP*8(a0)
|
2006-01-11 22:15:28 +00:00
|
|
|
#endif
|
1997-09-11 03:14:40 +00:00
|
|
|
stt $f2, JB_F2*8(a0)
|
|
|
|
stt $f3, JB_F3*8(a0)
|
|
|
|
stt $f4, JB_F4*8(a0)
|
|
|
|
stt $f5, JB_F5*8(a0)
|
|
|
|
stt $f6, JB_F6*8(a0)
|
|
|
|
stt $f7, JB_F7*8(a0)
|
|
|
|
stt $f8, JB_F8*8(a0)
|
|
|
|
stt $f9, JB_F9*8(a0)
|
|
|
|
|
2006-01-11 22:15:28 +00:00
|
|
|
#ifndef PIC
|
1997-09-11 03:14:40 +00:00
|
|
|
/* Call to C to (potentially) save our signal mask. */
|
|
|
|
jsr ra, __sigjmp_save
|
|
|
|
ldq ra, 0(sp)
|
|
|
|
addq sp, 16, sp
|
|
|
|
ret
|
2014-11-20 15:39:43 +00:00
|
|
|
#elif IS_IN (rtld)
|
2006-01-11 22:15:28 +00:00
|
|
|
/* In ld.so we never save the signal mask. */
|
|
|
|
mov 0, v0
|
|
|
|
ret
|
|
|
|
#else
|
|
|
|
/* Tailcall to save the signal mask. */
|
|
|
|
br $31, __sigjmp_save !samegp
|
|
|
|
#endif
|
1997-09-11 03:14:40 +00:00
|
|
|
|
|
|
|
END(__sigsetjmp)
|
2016-12-01 20:49:25 +00:00
|
|
|
hidden_def (__sigsetjmp)
|
1997-09-11 03:14:40 +00:00
|
|
|
|
|
|
|
/* Put these traditional entry points in the same file so that we can
|
|
|
|
elide much of the nonsense in trying to jmp to the real function. */
|
|
|
|
|
2000-11-21 20:55:38 +00:00
|
|
|
ENTRY(_setjmp)
|
1997-09-11 03:14:40 +00:00
|
|
|
ldgp gp, 0(pv)
|
2003-06-24 16:29:21 +00:00
|
|
|
.prologue 1
|
1997-09-11 03:14:40 +00:00
|
|
|
mov 0, a1
|
|
|
|
br $sigsetjmp_local
|
2000-11-21 20:55:38 +00:00
|
|
|
END(_setjmp)
|
2002-12-31 20:37:32 +00:00
|
|
|
libc_hidden_def (_setjmp)
|
1997-09-11 03:14:40 +00:00
|
|
|
|
|
|
|
ENTRY(setjmp)
|
|
|
|
ldgp gp, 0(pv)
|
2003-06-24 16:29:21 +00:00
|
|
|
.prologue 1
|
1997-09-11 03:14:40 +00:00
|
|
|
mov 1, a1
|
|
|
|
br $sigsetjmp_local
|
|
|
|
END(setjmp)
|
Wed May 22 00:40:50 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/alpha/_mcount.S, sysdeps/alpha/bb_init_func.S,
sysdeps/alpha/bsd-setjmp.S, sysdeps/alpha/ffs.S,
sysdeps/alpha/htonl.S, sysdeps/alpha/htons.S, sysdeps/alpha/memchr.S,
sysdeps/alpha/setjmp.S, sysdeps/alpha/strlen.S,
sysdeps/alpha/udiv_qrnnd.S, sysdeps/unix/sysv/linux/alpha/brk.S,
sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S,
sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S,
sysdeps/unix/sysv/linux/alpha/pipe.S,
sysdeps/unix/sysv/linux/sigsuspend.S,
sysdeps/unix/sysv/linux/alpha/syscall.S,
sysdeps/unix/sysv/linux/alpha/sysdep.S: Remove include of regdef.h.
sysdep.h includes it now. Replace ENTRY by LEAF with appropriate
framesize declaration. Replace "lda pv,sym/jsr pv" by "jsr sym".
Wed Mar 27 10:26:21 1996 David Mosberger-Tang <davidm@azstarnet.com>
* sysdeps/alpha/setjmp.S: Must establish global pointer before
address of __sigsetjmp_aux can be loaded.
1996-05-23 05:33:05 +00:00
|
|
|
|
2000-11-21 20:55:38 +00:00
|
|
|
weak_extern(_setjmp)
|
1997-09-11 03:14:40 +00:00
|
|
|
weak_extern(setjmp)
|