2012-03-23 16:37:31 +00:00
|
|
|
/* setjmp for s390, ELF version.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 2000-2017 Free Software Foundation, Inc.
|
2000-08-02 15:15:00 +00:00
|
|
|
Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
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
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2000-08-02 15:15:00 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
2012-03-23 16:37:31 +00:00
|
|
|
#define _ASM
|
|
|
|
#define _SETJMP_H
|
2000-08-02 15:15:00 +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
|
2000-08-02 15:15:00 +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:31 +00:00
|
|
|
ENTRY (setjmp)
|
|
|
|
lhi %r3,1 /* second argument of one */
|
2014-07-31 18:04:54 +00:00
|
|
|
j .Linternal_sigsetjmp /* branch relativ to __sigsetjmp */
|
2012-03-23 16:37:31 +00:00
|
|
|
END (setjmp)
|
|
|
|
|
|
|
|
/* Binary compatibility entry point. */
|
|
|
|
ENTRY(_setjmp)
|
|
|
|
lhi %r3,0 /* second argument of zero */
|
2014-07-31 18:04:54 +00:00
|
|
|
j .Linternal_sigsetjmp /* branch relativ to __sigsetjmp */
|
2012-03-23 16:37: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:31 +00:00
|
|
|
libc_hidden_def (_setjmp)
|
2016-11-15 14:51:01 +00:00
|
|
|
#endif
|
2012-03-23 16:37:31 +00:00
|
|
|
|
|
|
|
ENTRY(__setjmp)
|
|
|
|
lhi %r3,0 /* second argument of zero */
|
2014-07-31 18:04:54 +00:00
|
|
|
j .Linternal_sigsetjmp /* branch relativ to __sigsetjmp */
|
2012-03-23 16:37:31 +00:00
|
|
|
END (__setjmp)
|
2000-08-02 15:15:00 +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 (4@%r2), second
|
|
|
|
argument (-4@%r3) and target address (4@%r14). */
|
|
|
|
LIBC_PROBE (setjmp, 3, 4@%r2, -4@%r3, 4@%r14)
|
2005-12-20 07:21:59 +00:00
|
|
|
#ifdef PTR_MANGLE
|
|
|
|
stm %r6,%r13,0(%r2) /* store registers in jmp_buf */
|
|
|
|
lr %r4,%r14
|
2006-01-02 20:57:43 +00:00
|
|
|
lr %r5,%r15
|
|
|
|
PTR_MANGLE (%r4, %r1)
|
|
|
|
PTR_MANGLE2 (%r5, %r1)
|
|
|
|
stm %r4,%r5,32(%r2)
|
2005-12-20 07:21:59 +00:00
|
|
|
#else
|
2000-08-02 15:15:00 +00:00
|
|
|
stm %r6,%r15,0(%r2) /* store registers in jmp_buf */
|
2005-12-20 07:21:59 +00:00
|
|
|
#endif
|
2001-03-16 09:57:45 +00:00
|
|
|
std %f4,40(%r2)
|
|
|
|
std %f6,48(%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. */
|
|
|
|
lhi %r2,0
|
|
|
|
br %r14
|
|
|
|
#elif defined PIC
|
2000-08-02 15:15:00 +00:00
|
|
|
/* We cannot use the PLT, because it requires that %r12 be set, but
|
|
|
|
we can't save and restore our caller's value. Instead, we do an
|
|
|
|
indirect jump through the GOT. */
|
|
|
|
basr %r1,0
|
2014-07-31 18:04:54 +00:00
|
|
|
.L0: al %r1,.L1 - .L0(0,%r1) /* get address of global offset table */
|
|
|
|
/* get address of __sigjmp_save from got */
|
2014-11-12 09:02:41 +00:00
|
|
|
l %r1,__sigjmp_save@GOT(%r1)
|
2000-08-02 15:15:00 +00:00
|
|
|
br %r1
|
2014-07-31 18:04:54 +00:00
|
|
|
.L1: .long _GLOBAL_OFFSET_TABLE_ - .L0
|
2000-08-02 15:15:00 +00:00
|
|
|
#else
|
|
|
|
basr %r1,0
|
2014-07-31 18:04:54 +00:00
|
|
|
.L0: l %r1,.L1-.L0(0,%r1) /* load address of __sigjmp_save */
|
|
|
|
br %r1 /* tail-call __sigjmp_save */
|
|
|
|
.L1: .long __sigjmp_save
|
2000-08-02 15:15:00 +00:00
|
|
|
#endif
|
|
|
|
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 */
|