1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-10-27 12:15:39 +03:00
Files
glibc/stdlib/tst-memalignment.c
Joseph Myers ea18d5a4c2 Implement C23 memalignment
Add the C23 memalignment function (query the alignment of a pointer)
to glibc.

Given how simple this operation is, it would make sense for compilers
to inline calls to this function, but I'm treating that as a compiler
matter (compilers should add it as a built-in function) rather than
adding an inline version to glibc headers (although such an inline
version would be reasonable as well).  I've filed
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122117 for this feature
in GCC.

Tested for x86_64 and x86.
2025-10-17 16:56:59 +00:00

44 lines
1.6 KiB
C

/* Test memalignment.
Copyright (C) 2025 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 <stdlib.h>
#include <array_length.h>
#include <support/check.h>
static int
do_test (void)
{
void *null = NULL;
TEST_COMPARE (memalignment (NULL), 0);
TEST_COMPARE (memalignment (null), 0);
char ca[256];
array_foreach (p, ca)
TEST_VERIFY (memalignment (p) >= 1);
TEST_VERIFY (memalignment (&ca[0]) == 1 || memalignment (&ca[1]) == 1);
TEST_VERIFY (memalignment (&ca[0]) == 2 || memalignment (&ca[1]) == 2
|| memalignment (&ca[2]) == 2 || memalignment (&ca[3]) == 2);
long long int lla[256];
array_foreach (p, lla)
TEST_VERIFY (memalignment (p) >= _Alignof (long long int));
TEST_VERIFY (memalignment (&lla[0]) <= sizeof (long long int)
|| memalignment (&lla[1]) <= sizeof (long long int));
return 0;
}
#include <support/test-driver.c>