Go to file
Jiamei Xie 96f1804a0d
x86: fix wmemset ifunc stray '!' (bug 33542)
The ifunc selector for wmemset had a stray '!' in the
X86_ISA_CPU_FEATURES_ARCH_P(...) check:

  if (X86_ISA_CPU_FEATURE_USABLE_P (cpu_features, AVX2)
      && X86_ISA_CPU_FEATURES_ARCH_P (cpu_features,
                                      AVX_Fast_Unaligned_Load, !))

This effectively negated the predicate and caused the AVX2/AVX512
paths to be skipped, making the dispatcher fall back to the SSE2
implementation even on CPUs where AVX2/AVX512 are available. The
regression leads to noticeable throughput loss for wmemset.

Remove the stray '!' so the AVX_Fast_Unaligned_Load capability is
tested as intended and the correct AVX2/EVEX variants are selected.

Impact:
- On AVX2/AVX512-capable x86_64, wmemset no longer incorrectly
  falls back to SSE2; perf now shows __wmemset_evex/avx2 variants.

Testing:
- benchtests/bench-wmemset shows improved bandwidth across sizes.
- perf confirm the selected symbol is no longer SSE2.

Signed-off-by: xiejiamei <xiejiamei@hygon.com>
Signed-off-by: Li jing <lijing@hygon.cn>
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
(cherry picked from commit 4d86b6cdd8)
2025-11-04 12:23:06 +00:00
ChangeLog.old Create ChangeLog.old/ChangeLog.27 2023-07-30 21:45:27 +02:00
argp tests: fix warn unused result on asprintf calls 2023-06-06 08:23:53 -04:00
assert assert: Add test for CVE-2025-0395 2025-02-13 13:02:23 -05:00
benchtests benchtests: fix warn unused result 2023-06-22 00:21:19 -04:00
bits login: structs utmp, utmpx, lastlog _TIME_BITS independence (bug 30701) 2024-04-19 18:38:24 +02:00
catgets Move {read,write}_all functions to a dedicated header 2023-06-06 08:23:53 -04:00
conform
crypt Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
csu Add crt1-2.0.o for glibc 2.0 compatibility tests 2024-10-01 10:33:51 +08:00
ctype
debug debug: Fix tst-longjmp_chk3 build failure on Hurd 2025-08-19 09:01:21 -07:00
dirent tests: replace read by xread 2023-06-19 09:14:56 -04:00
dlfcn Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
elf i386: Update ___tls_get_addr to preserve vector registers 2025-08-20 11:09:07 -07:00
gmon Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
gnulib
grp Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
gshadow
hesiod Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
htl Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
hurd Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
iconv iconv: restore verbosity with unrecognized encoding names (bug 30694) 2023-09-15 23:55:01 +02:00
iconvdata iconv: ISO-2022-CN-EXT: fix out-of-bound writes when writing escape sequence (CVE-2024-2961) 2024-04-17 14:05:00 -03:00
include elf: Do not add a copy of _dl_find_object to libc.so 2025-08-14 09:07:44 +02:00
inet nscd: Do not rebuild getaddrinfo (bug 30709) 2023-08-11 10:55:10 +02:00
intl
io io: Fix record locking contants for powerpc64 with __USE_FILE_OFFSET64 2023-09-07 22:45:43 +02:00
libio Add crt1-2.0.o for glibc 2.0 compatibility tests 2024-10-01 10:33:51 +08:00
locale
localedata support: Add FAIL test failure helper 2024-08-28 16:43:33 -04:00
login login: structs utmp, utmpx, lastlog _TIME_BITS independence (bug 30701) 2024-04-19 18:38:24 +02:00
mach Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
malloc malloc: cleanup casts in tst-calloc 2025-07-11 13:57:07 -04:00
manual i386: Fail if configured with --enable-cet 2025-08-19 15:39:23 -07:00
math Add crt1-2.0.o for glibc 2.0 compatibility tests 2024-10-01 10:33:51 +08:00
mathvec
misc Add mremap tests 2024-08-01 14:42:07 +02:00
nis
nptl nptl: Use all of g1_start and g_signals 2025-07-11 13:56:09 -04:00
nptl_db Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
nscd nscd: Use time_t for return type of addgetnetgrentX 2024-05-02 19:02:08 +02:00
nss Fix leak in getaddrinfo introduced by the fix for CVE-2023-4806 [BZ #30843] 2023-09-26 10:14:37 -04:00
po translations: update cs, nl, vi 2023-07-27 00:21:13 +02:00
posix posix: Fix double-free after allocation failure in regcomp (bug 33185) 2025-07-24 09:50:02 +02:00
pwd
resolv resolv: Fix tst-resolv-short-response for older GCC (bug 32042) 2024-08-01 21:09:49 +02:00
resource
rt Exclude routines from fortification 2023-07-05 16:59:48 +02:00
scripts scripts: Fix fortify checks if compiler does not support _FORTIFY_SOURCE=3 2023-07-20 17:58:26 -03:00
setjmp Exclude routines from fortification 2023-07-05 16:59:48 +02:00
shadow
signal
socket Fix name space violation in fortify wrappers (bug 32052) 2024-08-06 08:23:15 +02:00
soft-fp
stdio-common ungetc: Fix backup buffer leak on program exit [BZ #27821] 2024-08-28 16:45:25 -04:00
stdlib Fix error reporting (false negatives) in SGID tests 2025-06-20 11:12:24 +02:00
string x86: Fix bug in strchrnul-evex512 [BZ #32078] 2024-08-15 14:41:17 -07:00
sunrpc sunrpc: Fix netname build with older gcc 2023-07-26 09:45:22 -03:00
support malloc: add indirection for malloc(-like) functions in tests [BZ #32366] 2025-07-11 13:57:07 -04:00
sysdeps x86: fix wmemset ifunc stray '!' (bug 33542) 2025-11-04 12:23:06 +00:00
sysvipc Fix all the remaining misspellings -- BZ 25337 2023-06-02 01:39:48 +00:00
termios
time Add checks for wday, yday and new date formats 2023-06-30 11:25:39 +02:00
timezone Call "CST" a time zone abbreviation, not a name 2023-06-22 13:49:09 -07:00
wcsmbs Fix name space violation in fortify wrappers (bug 32052) 2024-08-06 08:23:15 +02:00
wctype
.clang-format
.gitattributes
.gitignore
CONTRIBUTED-BY
COPYING
COPYING.LIB
INSTALL i386: Fail if configured with --enable-cet 2025-08-19 15:39:23 -07:00
LICENSES
MAINTAINERS
Makeconfig Add crt1-2.0.o for glibc 2.0 compatibility tests 2024-10-01 10:33:51 +08:00
Makefile scripts: Fix fortify checks if compiler does not support _FORTIFY_SOURCE=3 2023-07-20 17:58:26 -03:00
Makefile.help
Makefile.in
Makerules Remove installed header rule on $(..)include/%.h 2025-08-19 13:16:40 -07:00
NEWS x86: Use separate variable for TLSDESC XSAVE/XSAVEC state size (bug 32810) 2025-08-20 06:14:48 -07:00
README
Rules Add crt1-2.0.o for glibc 2.0 compatibility tests 2024-10-01 10:33:51 +08:00
SECURITY.md
SHARED-FILES
abi-tags
aclocal.m4 configure: Use autoconf 2.71 2023-07-17 10:08:10 -04:00
config.h.in LoongArch: config: Added HAVE_LOONGARCH_VEC_ASM. 2023-07-11 10:56:01 +08:00
config.make.in Allow glibc to be built with _FORTIFY_SOURCE 2023-07-05 16:59:34 +02:00
configure i386: Update ___tls_get_addr to preserve vector registers 2025-08-20 11:09:07 -07:00
configure.ac i386: Update ___tls_get_addr to preserve vector registers 2025-08-20 11:09:07 -07:00
extra-lib.mk
gen-locales.mk
libc-abis
libof-iterator.mk
o-iterator.mk
shlib-versions
test-skeleton.c malloc: add indirection for malloc(-like) functions in tests [BZ #32366] 2025-07-11 13:57:07 -04:00
version.h Increase version numbers 2023-07-30 21:35:28 +02:00

README

This directory contains the sources of the GNU C Library.
See the file "version.h" for what release version you have.

The GNU C Library is the standard system C library for all GNU systems,
and is an important part of what makes up a GNU system.  It provides the
system API for all programs written in C and C-compatible languages such
as C++ and Objective C; the runtime facilities of other programming
languages use the C library to access the underlying operating system.

In GNU/Linux systems, the C library works with the Linux kernel to
implement the operating system behavior seen by user applications.
In GNU/Hurd systems, it works with a microkernel and Hurd servers.

The GNU C Library implements much of the POSIX.1 functionality in the
GNU/Hurd system, using configurations i[4567]86-*-gnu and x86_64-gnu.

When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 3.2 or later.

Also note that the shared version of the libgcc_s library must be
installed for the pthread library to work correctly.

The GNU C Library supports these configurations for using Linux kernels:

	aarch64*-*-linux-gnu
	alpha*-*-linux-gnu
	arc*-*-linux-gnu
	arm-*-linux-gnueabi
	csky-*-linux-gnuabiv2
	hppa-*-linux-gnu
	i[4567]86-*-linux-gnu
	x86_64-*-linux-gnu	Can build either x86_64 or x32
	ia64-*-linux-gnu
	loongarch64-*-linux-gnu Hardware floating point, LE only.
	m68k-*-linux-gnu
	microblaze*-*-linux-gnu
	mips-*-linux-gnu
	mips64-*-linux-gnu
	or1k-*-linux-gnu
	powerpc-*-linux-gnu	Hardware or software floating point, BE only.
	powerpc64*-*-linux-gnu	Big-endian and little-endian.
	s390-*-linux-gnu
	s390x-*-linux-gnu
	riscv32-*-linux-gnu
	riscv64-*-linux-gnu
	sh[34]-*-linux-gnu
	sparc*-*-linux-gnu
	sparc64*-*-linux-gnu

If you are interested in doing a port, please contact the glibc
maintainers; see https://www.gnu.org/software/libc/ for more
information.

See the file INSTALL to find out how to configure, build, and install
the GNU C Library.  You might also consider reading the WWW pages for
the C library at https://www.gnu.org/software/libc/.

The GNU C Library is (almost) completely documented by the Texinfo manual
found in the `manual/' subdirectory.  The manual is still being updated
and contains some known errors and omissions; we regret that we do not
have the resources to work on the manual as much as we would like.  For
corrections to the manual, please file a bug in the `manual' component,
following the bug-reporting instructions below.  Please be sure to check
the manual in the current development sources to see if your problem has
already been corrected.

Please see https://www.gnu.org/software/libc/bugs.html for bug reporting
information.  We are now using the Bugzilla system to track all bug reports.
This web page gives detailed information on how to report bugs properly.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions, and LICENSES for notices about a few contributions that require
these additional notices to be distributed.  License copyright years may be
listed using range notation, e.g., 1996-2015, indicating that every year in
the range, inclusive, is a copyrightable year that would otherwise be listed
individually.