2020-01-01 00:14:33 +00:00
|
|
|
/* Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
2008-11-17 02:49:45 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ryan S. Arnold <rsa@us.ibm.com>
|
|
|
|
Sean Curry <spcurry@us.ibm.com>
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
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/>. */
|
2008-11-17 02:49:45 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ucontext.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <link.h>
|
|
|
|
#include <elf.h>
|
|
|
|
#include <fpu_control.h>
|
Miscellaneous low-risk changes preparing for _ISOMAC testsuite.
These are a grab bag of changes where the testsuite was using internal
symbols of some variety, but this was straightforward to fix, and the
fixed code should work with or without the change to compile the
testsuite under _ISOMAC.
Four of these are just more #include adjustments, but I want to highlight
sysdeps/powerpc/fpu/tst-setcontext-fpscr.c, which appears to have been
written before the advent of sys/auxv.h. I think a big chunk of this file
could be replaced by a simple call to getauxval, but I'll let someone who
actually has a powerpc machine to test on do that.
dlfcn/tst-dladdr.c was including ldsodefs.h just so it could use
DL_LOOKUP_ADDRESS to print an additional diagnostic; as requested by Carlos,
I have removed this.
math/test-misc.c was using #ifndef NO_LONG_DOUBLE, which is an internal
configuration macro, to decide whether to do certain tests involving
'long double'. I changed the test to #if LDBL_MANT_DIG > DBL_MANT_DIG
instead, which uses only public float.h macros and is equivalent on
all supported platforms. (Note that NO_LONG_DOUBLE doesn't mean 'the
compiler doesn't support long double', it means 'long double is the
same as double'.)
tst-writev.c has a configuration macro 'ARTIFICIAL_LIMIT' that the
Makefiles are expected to define, and sysdeps/unix/sysv/linux/Makefile
was using the internal __getpagesize in the definition; changed to
sysconf(_SC_PAGESIZE) which is the POSIX equivalent.
ia64-linux doesn't supply 'clone', only '__clone2', which is not
defined in the public headers(!) All the other clone tests have local
extern declarations of __clone2, but tst-clone.c doesn't; it was
getting away with this because include/sched.h does declare __clone2.
* nss/tst-cancel-getpwuid_r.c: Include nss.h.
* string/strcasestr.c: No need to include config.h.
* sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: Include
sys/auxv.h. Don't include sysdep.h.
* sysdeps/powerpc/tst-set_ppr.c: Don't include dl-procinfo.h.
* dlfcn/tst-dladdr.c: Don't include ldsodefs.h. Don't use
DL_LOOKUP_ADDRESS.
* math/test-misc.c: Instead of testing NO_LONG_DOUBLE, test whether
LDBL_MANT_DIG is greater than DBL_MANT_DIG.
* sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Use
sysconf (_SC_PAGESIZE) instead of __getpagesize in definition
of ARTIFICIAL_LIMIT.
* sysdeps/unix/sysv/linux/tst-clone.c [__ia64__]: Add extern
declaration of __clone2.
2016-11-21 01:46:30 +00:00
|
|
|
#include <sys/auxv.h>
|
2018-02-06 21:32:53 +00:00
|
|
|
#include <support/support.h>
|
2008-11-17 02:49:45 +00:00
|
|
|
|
|
|
|
static ucontext_t ctx[3];
|
|
|
|
|
|
|
|
|
|
|
|
volatile int global;
|
|
|
|
|
|
|
|
|
|
|
|
static int back_in_main;
|
|
|
|
|
|
|
|
|
|
|
|
volatile static ElfW(auxv_t) *auxv = NULL;
|
|
|
|
|
|
|
|
ElfW(Addr) query_auxv(int type)
|
|
|
|
{
|
|
|
|
FILE *auxv_f;
|
|
|
|
ElfW(auxv_t) auxv_struct;
|
|
|
|
ElfW(auxv_t) *auxv_temp;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
/* if the /proc/self/auxv file has not been manually copied into the heap
|
|
|
|
yet, then do it */
|
|
|
|
|
|
|
|
if(auxv == NULL)
|
|
|
|
{
|
|
|
|
auxv_f = fopen("/proc/self/auxv", "r");
|
|
|
|
|
|
|
|
if(auxv_f == 0)
|
|
|
|
{
|
|
|
|
perror("Error opening file for reading");
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-06 21:32:53 +00:00
|
|
|
auxv = xmalloc (getpagesize ());
|
2008-11-17 02:49:45 +00:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2019-02-27 13:55:45 +00:00
|
|
|
fread (&auxv_struct, sizeof (ElfW(auxv_t)), 1, auxv_f);
|
2008-11-17 02:49:45 +00:00
|
|
|
auxv[i] = auxv_struct;
|
|
|
|
i++;
|
|
|
|
} while(auxv_struct.a_type != AT_NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
auxv_temp = (ElfW(auxv_t) *)auxv;
|
|
|
|
i = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if(auxv_temp[i].a_type == type)
|
|
|
|
{
|
|
|
|
return auxv_temp[i].a_un.a_val;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
} while (auxv_temp[i].a_type != AT_NULL);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-17 09:01:05 +00:00
|
|
|
typedef unsigned int di_fpscr_t __attribute__ ((__mode__ (__DI__)));
|
2008-11-17 02:49:45 +00:00
|
|
|
typedef unsigned int si_fpscr_t __attribute__ ((__mode__ (__SI__)));
|
|
|
|
|
|
|
|
#define _FPSCR_RESERVED 0xfffffff8ffffff04ULL
|
|
|
|
|
|
|
|
#define _FPSCR_TEST0_DRN 0x0000000400000000ULL
|
|
|
|
#define _FPSCR_TEST0_RN 0x0000000000000003ULL
|
|
|
|
|
|
|
|
#define _FPSCR_TEST1_DRN 0x0000000300000000ULL
|
|
|
|
#define _FPSCR_TEST1_RN 0x0000000000000002ULL
|
|
|
|
|
|
|
|
/* Macros for accessing the hardware control word on Power6[x]. */
|
2013-08-17 09:01:05 +00:00
|
|
|
#define _GET_DI_FPSCR(__fpscr) \
|
|
|
|
({union { double d; di_fpscr_t fpscr; } u; \
|
2019-03-30 00:16:34 +00:00
|
|
|
u.d = __builtin_mffs (); \
|
2013-08-17 09:01:05 +00:00
|
|
|
(__fpscr) = u.fpscr; \
|
|
|
|
u.fpscr; \
|
|
|
|
})
|
|
|
|
|
|
|
|
/* We make sure to zero fp after we use it in order to prevent stale data
|
2009-01-30 20:30:46 +00:00
|
|
|
in an fp register from making a test-case pass erroneously. */
|
2013-08-17 09:01:05 +00:00
|
|
|
# define _SET_DI_FPSCR(__fpscr) \
|
|
|
|
{ union { double d; di_fpscr_t fpscr; } u; \
|
|
|
|
register double fr; \
|
|
|
|
u.fpscr = __fpscr; \
|
|
|
|
fr = u.d; \
|
|
|
|
/* Set the entire 64-bit FPSCR. */ \
|
|
|
|
__asm__ (".machine push; " \
|
|
|
|
".machine \"power6\"; " \
|
|
|
|
"mtfsf 255,%0,1,0; " \
|
|
|
|
".machine pop" : : "f" (fr)); \
|
|
|
|
fr = 0.0; \
|
|
|
|
}
|
|
|
|
|
|
|
|
# define _GET_SI_FPSCR(__fpscr) \
|
|
|
|
({union { double d; di_fpscr_t fpscr; } u; \
|
2019-03-30 00:16:34 +00:00
|
|
|
u.d = __builtin_mffs (); \
|
2013-08-17 09:01:05 +00:00
|
|
|
(__fpscr) = (si_fpscr_t) u.fpscr; \
|
|
|
|
(si_fpscr_t) u.fpscr; \
|
|
|
|
})
|
|
|
|
|
|
|
|
/* We make sure to zero fp after we use it in order to prevent stale data
|
2009-01-30 20:30:46 +00:00
|
|
|
in an fp register from making a test-case pass erroneously. */
|
2013-08-17 09:01:05 +00:00
|
|
|
# define _SET_SI_FPSCR(__fpscr) \
|
|
|
|
{ union { double d; di_fpscr_t fpscr; } u; \
|
|
|
|
register double fr; \
|
|
|
|
/* More-or-less arbitrary; this is a QNaN. */ \
|
|
|
|
u.fpscr = 0xfff80000ULL << 32; \
|
|
|
|
u.fpscr |= __fpscr & 0xffffffffULL; \
|
|
|
|
fr = u.d; \
|
2019-03-30 00:16:34 +00:00
|
|
|
__builtin_mtfsf (255, fr); \
|
2013-08-17 09:01:05 +00:00
|
|
|
fr = 0.0; \
|
|
|
|
}
|
2008-11-17 02:49:45 +00:00
|
|
|
|
|
|
|
void prime_special_regs(int which)
|
|
|
|
{
|
|
|
|
ElfW(Addr) a_val;
|
|
|
|
|
|
|
|
di_fpscr_t di_fpscr __attribute__ ((__aligned__(8)));
|
|
|
|
|
|
|
|
a_val = query_auxv(AT_HWCAP);
|
|
|
|
if(a_val == -1)
|
|
|
|
{
|
|
|
|
puts ("querying the auxv for the hwcap failed");
|
|
|
|
_exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Indicates a 64-bit FPSCR. */
|
|
|
|
if (a_val & PPC_FEATURE_HAS_DFP)
|
|
|
|
{
|
|
|
|
_GET_DI_FPSCR(di_fpscr);
|
|
|
|
|
|
|
|
/* Overwrite the existing DRN and RN if there is one. */
|
|
|
|
if (which == 0)
|
|
|
|
di_fpscr = ((di_fpscr & _FPSCR_RESERVED) | (_FPSCR_TEST0_DRN | _FPSCR_TEST0_RN));
|
|
|
|
else
|
|
|
|
di_fpscr = ((di_fpscr & _FPSCR_RESERVED) | (_FPSCR_TEST1_DRN | _FPSCR_TEST1_RN));
|
|
|
|
puts ("Priming 64-bit FPSCR with:");
|
|
|
|
printf("0x%.16llx\n",(unsigned long long int)di_fpscr);
|
|
|
|
|
|
|
|
_SET_DI_FPSCR(di_fpscr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
puts ("32-bit FPSCR found and will be tested.");
|
|
|
|
_GET_SI_FPSCR(di_fpscr);
|
|
|
|
|
|
|
|
/* Overwrite the existing RN if there is one. */
|
|
|
|
if (which == 0)
|
|
|
|
di_fpscr = ((di_fpscr & _FPSCR_RESERVED) | (_FPSCR_TEST0_RN));
|
|
|
|
else
|
|
|
|
di_fpscr = ((di_fpscr & _FPSCR_RESERVED) | (_FPSCR_TEST1_RN));
|
|
|
|
puts ("Priming 32-bit FPSCR with:");
|
|
|
|
printf("0x%.8lx\n",(unsigned long int) di_fpscr);
|
|
|
|
|
|
|
|
_SET_SI_FPSCR(di_fpscr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_special_regs(void)
|
|
|
|
{
|
|
|
|
ElfW(Addr) a_val;
|
|
|
|
|
|
|
|
di_fpscr_t di_fpscr __attribute__ ((__aligned__(8)));
|
|
|
|
|
|
|
|
union {
|
|
|
|
double d;
|
|
|
|
unsigned long long int lli;
|
|
|
|
unsigned int li[2];
|
|
|
|
} dlli;
|
|
|
|
|
|
|
|
a_val = query_auxv(AT_HWCAP);
|
|
|
|
if(a_val == -1)
|
|
|
|
{
|
|
|
|
puts ("querying the auxv for the hwcap failed");
|
|
|
|
_exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if __WORDSIZE == 32
|
|
|
|
dlli.d = ctx[0].uc_mcontext.uc_regs->fpregs.fpscr;
|
|
|
|
#else
|
|
|
|
dlli.d = ctx[0].uc_mcontext.fp_regs[32];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
puts("The FPSCR value saved in the ucontext_t is:");
|
|
|
|
|
|
|
|
/* Indicates a 64-bit FPSCR. */
|
|
|
|
if (a_val & PPC_FEATURE_HAS_DFP)
|
|
|
|
{
|
|
|
|
printf("0x%.16llx\n",dlli.lli);
|
|
|
|
di_fpscr = 0x0;
|
|
|
|
puts ("Clearing the 64-bit FPSCR to:");
|
|
|
|
printf("0x%.16llx\n",(unsigned long long int) di_fpscr);
|
|
|
|
|
|
|
|
_SET_DI_FPSCR(di_fpscr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("0x%.8x\n",(unsigned int) dlli.li[1]);
|
|
|
|
di_fpscr = 0x0;
|
|
|
|
puts ("Clearing the 32-bit FPSCR to:");
|
|
|
|
printf("0x%.8lx\n",(unsigned long int) di_fpscr);
|
|
|
|
|
|
|
|
_SET_SI_FPSCR(di_fpscr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_special_regs(int which)
|
|
|
|
{
|
|
|
|
ElfW(Addr) a_val;
|
|
|
|
unsigned long long int test;
|
|
|
|
|
|
|
|
di_fpscr_t di_fpscr __attribute__ ((__aligned__(8)));
|
|
|
|
|
|
|
|
a_val = query_auxv(AT_HWCAP);
|
|
|
|
if(a_val == -1)
|
|
|
|
{
|
|
|
|
puts ("querying the auxv for the hwcap failed");
|
|
|
|
_exit (2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Indicates a 64-bit FPSCR. */
|
|
|
|
if (a_val & PPC_FEATURE_HAS_DFP)
|
|
|
|
{
|
|
|
|
_GET_DI_FPSCR(di_fpscr);
|
|
|
|
|
|
|
|
if (which == 0)
|
|
|
|
puts ("After setcontext the 64-bit FPSCR contains:");
|
|
|
|
else
|
|
|
|
puts ("After swapcontext the 64-bit FPSCR contains:");
|
|
|
|
|
|
|
|
printf("0x%.16llx\n",(unsigned long long int) di_fpscr);
|
|
|
|
test = (_FPSCR_TEST0_DRN | _FPSCR_TEST0_RN);
|
|
|
|
if((di_fpscr & (test)) != (test))
|
|
|
|
{
|
|
|
|
printf ("%s: DRN and RN bits set before getcontext were not preserved across [set|swap]context call: %m",__FUNCTION__);
|
|
|
|
_exit (3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_GET_SI_FPSCR(di_fpscr);
|
|
|
|
if (which == 0)
|
|
|
|
puts ("After setcontext the 32-bit FPSCR contains:");
|
|
|
|
else
|
|
|
|
puts ("After swapcontext the 32-bit FPSCR contains:");
|
|
|
|
|
|
|
|
printf("0x%.8lx\n",(unsigned long int) di_fpscr);
|
|
|
|
test = _FPSCR_TEST0_RN;
|
|
|
|
if((di_fpscr & test) != test)
|
|
|
|
{
|
|
|
|
printf ("%s: RN bit set before getcontext was not preserved across [set|swap]context call: %m",__FUNCTION__);
|
|
|
|
_exit (4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_called (void)
|
|
|
|
{
|
|
|
|
if (back_in_main == 0)
|
|
|
|
{
|
|
|
|
puts ("program did not reach main again");
|
|
|
|
_exit (5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
atexit (check_called);
|
|
|
|
|
|
|
|
puts ("priming the FPSCR with a marker");
|
|
|
|
prime_special_regs (0);
|
|
|
|
|
|
|
|
puts ("making contexts");
|
|
|
|
if (getcontext (&ctx[0]) != 0)
|
|
|
|
{
|
|
|
|
if (errno == ENOSYS)
|
|
|
|
{
|
|
|
|
back_in_main = 1;
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf ("%s: getcontext: %m\n", __FUNCTION__);
|
|
|
|
exit (6);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Play some tricks with this context. */
|
|
|
|
if (++global == 1)
|
|
|
|
{
|
|
|
|
clear_special_regs ( );
|
|
|
|
if (setcontext (&ctx[0]) != 0)
|
|
|
|
{
|
|
|
|
printf ("%s: setcontext: %m\n", __FUNCTION__);
|
|
|
|
exit (7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (global != 2)
|
|
|
|
{
|
|
|
|
printf ("%s: 'global' not incremented twice\n", __FUNCTION__);
|
|
|
|
exit (8);
|
|
|
|
}
|
|
|
|
|
|
|
|
test_special_regs (0);
|
|
|
|
|
|
|
|
global = 0;
|
|
|
|
if (getcontext (&ctx[0]) != 0)
|
|
|
|
{
|
|
|
|
printf ("%s: getcontext: %m\n", __FUNCTION__);
|
|
|
|
exit (9);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (++global == 1)
|
|
|
|
{
|
|
|
|
puts ("priming the FPSCR with a marker");
|
|
|
|
prime_special_regs (1);
|
|
|
|
|
|
|
|
puts ("swapping contexts");
|
|
|
|
if (swapcontext (&ctx[1], &ctx[0]) != 0)
|
|
|
|
{
|
|
|
|
printf ("%s: swapcontext: %m\n", __FUNCTION__);
|
|
|
|
exit (9);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (global != 2)
|
|
|
|
{
|
|
|
|
printf ("%s: 'global' not incremented twice\n", __FUNCTION__);
|
|
|
|
exit (10);
|
|
|
|
}
|
|
|
|
|
|
|
|
test_special_regs (1);
|
|
|
|
|
|
|
|
puts ("back at main program");
|
|
|
|
back_in_main = 1;
|
|
|
|
|
|
|
|
puts ("test succeeded");
|
|
|
|
return 0;
|
|
|
|
}
|