mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
Since -1 isn't a power of two, compiler may reject it, hide memalign from Clang 19 which issues an error: tst-memalign.c:86:31: error: requested alignment is not a power of 2 [-Werror,-Wnon-power-of-two-alignment] 86 | p = memalign (-1, pagesize); | ^~ tst-memalign.c:86:31: error: requested alignment must be 4294967296 bytes or smaller; maximum alignment assumed [-Werror,-Wbuiltin-assume-aligned-alignment] 86 | p = memalign (-1, pagesize); | ^~ Update tst-malloc-aux.h to hide all malloc functions and include it in all malloc tests to prevent compiler from optimizing out any malloc functions. Tested with Clang 19.1.5 and GCC 15 20241206 for BZ #32366. Signed-off-by: H.J. Lu <hjl.tools@gmail.com> Reviewed-by: Sam James <sam@gentoo.org>
56 lines
2 KiB
C
56 lines
2 KiB
C
/* Wrappers for malloc-like functions to allow testing the implementation
|
|
without optimization.
|
|
Copyright (C) 2024 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; see the file COPYING.LIB. If
|
|
not, see <https://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef TST_MALLOC_AUX_H
|
|
#define TST_MALLOC_AUX_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <malloc.h>
|
|
|
|
static __typeof (aligned_alloc) * volatile aligned_alloc_indirect
|
|
= aligned_alloc;
|
|
static __typeof (calloc) * volatile calloc_indirect = calloc;
|
|
static __typeof (malloc) * volatile malloc_indirect = malloc;
|
|
static __typeof (memalign) * volatile memalign_indirect = memalign;
|
|
static __typeof (posix_memalign) * volatile posix_memalign_indirect
|
|
= posix_memalign;
|
|
static __typeof (pvalloc) * volatile pvalloc_indirect = pvalloc;
|
|
static __typeof (realloc) * volatile realloc_indirect = realloc;
|
|
static __typeof (valloc) * volatile valloc_indirect = valloc;
|
|
|
|
#undef aligned_alloc
|
|
#undef calloc
|
|
#undef malloc
|
|
#undef memalign
|
|
#undef posix_memalign
|
|
#undef pvalloc
|
|
#undef realloc
|
|
#undef valloc
|
|
|
|
#define aligned_alloc aligned_alloc_indirect
|
|
#define calloc calloc_indirect
|
|
#define malloc malloc_indirect
|
|
#define memalign memalign_indirect
|
|
#define posix_memalign posix_memalign_indirect
|
|
#define pvalloc pvalloc_indirect
|
|
#define realloc realloc_indirect
|
|
#define valloc valloc_indirect
|
|
|
|
#endif /* TST_MALLOC_AUX_H */
|