glibc/sysdeps/aarch64/tst-vpcs.c
Paul Eggert 2b778ceb40 Update copyright dates with scripts/update-copyrights
I used these shell commands:

../glibc/scripts/update-copyrights $PWD/../gnulib/build-aux/update-copyright
(cd ../glibc && git commit -am"[this commit message]")

and then ignored the output, which consisted lines saying "FOO: warning:
copyright statement not found" for each of 6694 files FOO.
I then removed trailing white space from benchtests/bench-pthread-locks.c
and iconvdata/tst-iconv-big5-hkscs-to-2ucs4.c, to work around this
diagnostic from Savannah:
remote: *** pre-commit check failed ...
remote: *** error: lines with trailing whitespace found
remote: error: hook declined to update refs/heads/master
2021-01-02 12:17:34 -08:00

79 lines
2.3 KiB
C

/* Test that variant PCS calls don't clobber registers with lazy binding.
Copyright (C) 2020-2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
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
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <stdint.h>
#include <stdio.h>
#include <support/check.h>
struct regs
{
uint64_t x[32];
union {
long double q[32];
uint64_t u[64];
} v;
};
/* Gives the registers in the caller and callee around a variant PCS call.
Most registers are initialized from BEFORE in the caller so they can
have values that likely show clobbers. Register state extensions such
as SVE is not covered here, only the base registers. */
void vpcs_call_regs (struct regs *after, struct regs *before);
static int
do_test (void)
{
struct regs before, after;
int err = 0;
unsigned char *p = (unsigned char *)&before;
for (int i = 0; i < sizeof before; i++)
p[i] = i & 0xff;
vpcs_call_regs (&after, &before);
for (int i = 0; i < 32; i++)
if (before.x[i] != after.x[i])
{
if (i == 16 || i == 17)
/* Variant PCS allows clobbering x16 and x17. */
continue;
err++;
printf ("x%d: before: 0x%016llx after: 0x%016llx\n",
i,
(unsigned long long)before.x[i],
(unsigned long long)after.x[i]);
}
for (int i = 0; i < 64; i++)
if (before.v.u[i] != after.v.u[i])
{
err++;
printf ("v%d: before: 0x%016llx %016llx after: 0x%016llx %016llx\n",
i/2,
(unsigned long long)before.v.u[2*(i/2)+1],
(unsigned long long)before.v.u[2*(i/2)],
(unsigned long long)after.v.u[2*(i/2)+1],
(unsigned long long)after.v.u[2*(i/2)]);
}
if (err)
FAIL_EXIT1 ("The variant PCS call clobbered %d registers.\n", err);
return 0;
}
#include <support/test-driver.c>