2012-03-23 16:37:32 +00:00
|
|
|
/* setjmp for 64 bit S/390, ELF version.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
2000-08-02 15:15:00 +00:00
|
|
|
Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
|
2001-03-16 09:57:45 +00:00
|
|
|
This file is part of the GNU C Library.
|
2000-08-02 15:15:00 +00:00
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +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.
|
2000-08-02 15:15:00 +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:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-08-02 15:15:00 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +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/>. */
|
2000-08-02 15:15:00 +00:00
|
|
|
|
2001-03-16 09:57:45 +00:00
|
|
|
#include <sysdep.h>
|
2012-03-23 16:37:32 +00:00
|
|
|
#define _ASM
|
|
|
|
#define _SETJMP_H
|
2001-03-16 09:57:45 +00:00
|
|
|
#include <bits/setjmp.h>
|
2014-07-31 18:04:54 +00:00
|
|
|
#include <shlib-compat.h>
|
2014-11-13 09:44:42 +00:00
|
|
|
#include <stap-probe.h>
|
2014-07-31 18:04:54 +00:00
|
|
|
|
2016-11-15 14:51:01 +00:00
|
|
|
#if !IS_IN (rtld) && defined SHARED \
|
|
|
|
&& SHLIB_COMPAT (libc, GLIBC_2_19, GLIBC_2_20)
|
|
|
|
# define NEED_COMPAT_SYMBOLS 1
|
|
|
|
/* We need a unique name in case of symbol versioning. */
|
|
|
|
# define setjmp __v1setjmp
|
|
|
|
# define _setjmp __v1_setjmp
|
|
|
|
# define __sigsetjmp __v1__sigsetjmp
|
|
|
|
#else
|
|
|
|
# define NEED_COMPAT_SYMBOLS 0
|
|
|
|
#endif
|
2001-03-16 09:57:45 +00:00
|
|
|
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
/* We include the BSD entry points here as well. */
|
2012-03-23 16:37:32 +00:00
|
|
|
ENTRY (setjmp)
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
lghi %r3,1 /* Second argument of one. */
|
|
|
|
j .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp. */
|
2012-03-23 16:37:32 +00:00
|
|
|
END (setjmp)
|
|
|
|
|
|
|
|
/* Binary compatibility entry point. */
|
|
|
|
ENTRY(_setjmp)
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
slgr %r3,%r3 /* Second argument of zero. */
|
|
|
|
j .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp. */
|
2014-01-07 08:36:31 +00:00
|
|
|
END (_setjmp)
|
2016-11-15 14:51:01 +00:00
|
|
|
#if NEED_COMPAT_SYMBOLS
|
|
|
|
strong_alias (_setjmp, __GI__setjmp)
|
|
|
|
#else
|
2012-03-23 16:37:32 +00:00
|
|
|
libc_hidden_def (_setjmp)
|
2016-11-15 14:51:01 +00:00
|
|
|
#endif
|
2012-03-23 16:37:32 +00:00
|
|
|
|
|
|
|
ENTRY(__setjmp)
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
slgr %r3,%r3 /* Second argument of zero. */
|
|
|
|
j .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp. */
|
2014-01-07 08:36:31 +00:00
|
|
|
END (__setjmp)
|
2001-03-16 09:57:45 +00:00
|
|
|
|
|
|
|
ENTRY(__sigsetjmp)
|
2014-07-31 18:04:54 +00:00
|
|
|
.Linternal_sigsetjmp:
|
2014-11-13 09:44:42 +00:00
|
|
|
/* setjmp probe expects sig/setjmp first argument (8@%r2), second
|
|
|
|
argument (-8@%r3) and target address (8@%r14). */
|
|
|
|
LIBC_PROBE (setjmp, 3, 8@%r2, -4@%r3, 8@%r14)
|
2005-12-20 07:21:59 +00:00
|
|
|
#ifdef PTR_MANGLE
|
|
|
|
stmg %r6,%r13,0(%r2) /* Store registers in jmp_buf. */
|
|
|
|
lgr %r4,%r14
|
2006-01-02 20:57:43 +00:00
|
|
|
lgr %r5,%r15
|
|
|
|
PTR_MANGLE (%r4, %r1)
|
|
|
|
PTR_MANGLE2 (%r5, %r1)
|
|
|
|
stmg %r4,%r5,64(%r2)
|
2005-12-20 07:21:59 +00:00
|
|
|
#else
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
stmg %r6,%r15,0(%r2) /* Store registers in jmp_buf. */
|
2005-12-20 07:21:59 +00:00
|
|
|
#endif
|
2013-01-23 09:00:24 +00:00
|
|
|
std %f8,80(%r2)
|
|
|
|
std %f9,88(%r2)
|
|
|
|
std %f10,96(%r2)
|
|
|
|
std %f11,104(%r2)
|
|
|
|
std %f12,112(%r2)
|
|
|
|
std %f13,120(%r2)
|
|
|
|
std %f14,128(%r2)
|
|
|
|
std %f15,136(%r2)
|
2014-11-20 15:39:43 +00:00
|
|
|
#if IS_IN (rtld)
|
2005-12-20 07:21:59 +00:00
|
|
|
/* In ld.so we never save the signal mask. */
|
|
|
|
lghi %r2,0
|
|
|
|
br %r14
|
|
|
|
#elif defined PIC
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
jg __sigjmp_save@PLT /* Branch to PLT of __sigsetjmp. */
|
2001-03-16 09:57:45 +00:00
|
|
|
#else
|
2012-03-23 16:37:32 +00:00
|
|
|
jg __sigjmp_save
|
2000-08-02 15:15:00 +00:00
|
|
|
#endif
|
2001-03-16 09:57:45 +00:00
|
|
|
END (__sigsetjmp)
|
2016-11-15 14:51:01 +00:00
|
|
|
#if NEED_COMPAT_SYMBOLS
|
|
|
|
strong_alias (__sigsetjmp, __GI___sigsetjmp)
|
|
|
|
#else
|
|
|
|
libc_hidden_def (__sigsetjmp)
|
|
|
|
#endif
|
2014-07-31 18:04:54 +00:00
|
|
|
|
2016-11-15 14:51:01 +00:00
|
|
|
#if NEED_COMPAT_SYMBOLS
|
2014-07-31 18:04:54 +00:00
|
|
|
/* In glibc release 2.19 new versions of setjmp-functions were introduced,
|
|
|
|
but were reverted before 2.20. Thus both versions are the same function. */
|
|
|
|
|
2016-11-15 14:51:01 +00:00
|
|
|
# undef setjmp
|
|
|
|
# undef _setjmp
|
|
|
|
# undef __sigsetjmp
|
2014-07-31 18:04:54 +00:00
|
|
|
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
strong_alias (__v1setjmp, __v2setjmp);
|
2014-07-31 18:04:54 +00:00
|
|
|
versioned_symbol (libc, __v1setjmp, setjmp, GLIBC_2_0);
|
|
|
|
compat_symbol (libc, __v2setjmp, setjmp, GLIBC_2_19);
|
|
|
|
|
S390: Clean setjmp, longjmp, getcontext symbols.
For each function setjmp, longjmp, getcontext, there exist a symbol
<func> and a default/versioned symbol <func>@@GLIBC_2.x in the build
obj-files.
This is wrong because it should only exist an unversioned or a
default-versioned symbol with the same name in an obj-file.
Glibc can't be build with recent binutils. See the already fixed linker
bug https://sourceware.org/bugzilla/show_bug.cgi?id=19073.
Nevertheless, this patch cleans this up.
Furthermore the BSD entry points setjmp, _setjmp were marked as weak,
but should be strong as on other architectures.
(see https://sourceware.org/ml/libc-alpha/2014-07/msg00568.html for an
older discussion with Andreas Schwab)
Some whitespace issues are corrected in sysdeps/s390/s390-64/setjmp.S,
too. But there is no change in the assembler code.
ChangeLog:
* sysdeps/s390/longjmp.c (longjmp, _longjmp, siglongjmp):
Don't create weak aliases,
because versioned symbols are created later.
* sysdeps/s390/s390-32/setjmp.S
(setjmp, _setjmp): Remove weak and rename to an unique name
in SHARED case due to existing versioned symbols.
* sysdeps/s390/s390-64/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S
(getcontext): Create weak alias only in non SHARED case.
* sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
2015-11-09 15:14:49 +00:00
|
|
|
strong_alias (__v1_setjmp, __v2_setjmp);
|
2014-07-31 18:04:54 +00:00
|
|
|
versioned_symbol (libc, __v1_setjmp, _setjmp, GLIBC_2_0);
|
|
|
|
compat_symbol (libc, __v2_setjmp, _setjmp, GLIBC_2_19);
|
|
|
|
|
|
|
|
strong_alias (__v1__sigsetjmp, __v2__sigsetjmp);
|
|
|
|
versioned_symbol (libc, __v1__sigsetjmp, __sigsetjmp, GLIBC_2_0);
|
|
|
|
compat_symbol (libc, __v2__sigsetjmp, __sigsetjmp, GLIBC_2_19);
|
2016-11-15 14:51:01 +00:00
|
|
|
#endif /* NEED_COMPAT_SYMBOLS */
|