glibc/sysdeps/x86_64
H.J. Lu 1ea16a207c i386: Update ___tls_get_addr to preserve vector registers
Compiler generates the following instruction sequence for dynamic TLS
access:

	leal	tls_var@tlsgd(,%ebx,1), %eax
	call	___tls_get_addr@PLT

CALL instruction is transparent to compiler which assumes all registers,
except for EFLAGS, AX, CX, and DX, are unchanged after CALL.  But
___tls_get_addr is a normal function which doesn't preserve any vector
registers.

1. Rename the generic __tls_get_addr function to ___tls_get_addr_internal.
2. Change ___tls_get_addr to a wrapper function with implementations for
FNSAVE, FXSAVE, XSAVE and XSAVEC to save and restore all vector registers.
3. dl-tlsdesc-dynamic.h has:

_dl_tlsdesc_dynamic:
	/* Like all TLS resolvers, preserve call-clobbered registers.
	   We need two scratch regs anyway.  */
	subl	$32, %esp
	cfi_adjust_cfa_offset (32)

It is wrong to use

	movl	%ebx, -28(%esp)
	movl	%esp, %ebx
	cfi_def_cfa_register(%ebx)
	...
	mov	%ebx, %esp
	cfi_def_cfa_register(%esp)
	movl	-28(%esp), %ebx

to preserve EBX on stack.  Fix it with:

	movl	%ebx, 28(%esp)
	movl	%esp, %ebx
	cfi_def_cfa_register(%ebx)
	...
	mov	%ebx, %esp
	cfi_def_cfa_register(%esp)
	movl	28(%esp), %ebx

4. Update _dl_tlsdesc_dynamic to call ___tls_get_addr_internal directly.
5. Add have-test-mtls-traditional to compile tst-tls23-mod.c with
traditional TLS variant to verify the fix.
6. Define DL_RUNTIME_RESOLVE_REALIGN_STACK in sysdeps/x86/sysdep.h.

This fixes BZ #32996.

Co-Authored-By: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
(cherry picked from commit 848f0e46f0)
2025-08-20 11:09:07 -07:00
..
64 ld.so: Always use MAP_COPY to map the first segment [BZ #30452] 2023-06-30 10:42:42 -07:00
fpu Apply the Makefile sorting fix 2025-08-20 06:11:54 -07:00
htl htl: Add tcb-offsets.sym for x86_64 2023-04-03 01:15:30 +02:00
multiarch Apply the Makefile sorting fix 2025-08-20 06:11:54 -07:00
nptl x86/cet: Sync with Linux kernel 6.6 shadow stack interface 2025-08-19 15:39:23 -07:00
sys hurd: Add sys/ucontext.h and sigcontext.h for x86_64 2023-04-10 20:11:43 +02:00
x32 x86-64: Remove sysdeps/x86_64/x32/dl-machine.h 2025-08-19 18:11:21 -07:00
Implies
Makefile i386: Update ___tls_get_addr to preserve vector registers 2025-08-20 11:09:07 -07:00
Versions x86-64: Add GLIBC_ABI_DT_X86_64_PLT [BZ #33212] 2025-08-15 22:42:29 +01:00
____longjmp_chk.S
__longjmp.S x86-64/cet: Check the restore token in longjmp 2025-08-19 15:39:23 -07:00
_mcount.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
abort-instr.h
add_n.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
addmul_1.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
bsd-_setjmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
bsd-setjmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
check-cet.awk x86-64/cet: Move check-cet.awk to x86_64 2025-08-19 15:39:23 -07:00
configure x86-64: Update _dl_tlsdesc_dynamic to preserve AMX registers 2025-08-19 18:22:00 -07:00
configure.ac x86-64: Update _dl_tlsdesc_dynamic to preserve AMX registers 2025-08-19 18:22:00 -07:00
crti.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
crtn.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
dl-cache.h x86: Make dl-cache.h and readelflib.c not Linux-specific 2023-06-26 10:04:31 -03:00
dl-cet.c x86-64/cet: Move dl-cet.[ch] to x86_64 directories 2025-08-19 15:39:23 -07:00
dl-hwcaps-subdirs.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
dl-irel.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
dl-machine.h x86: Update _dl_tlsdesc_dynamic to preserve caller-saved registers 2025-08-19 18:22:00 -07:00
dl-procinfo.c x86: Update _dl_tlsdesc_dynamic to preserve caller-saved registers 2025-08-19 18:22:00 -07:00
dl-procruntime.c i386: Remove CET support bits 2025-08-19 15:39:23 -07:00
dl-runtime.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
dl-tls.c elf: Support recursive use of dynamic TLS in interposed malloc 2025-01-10 16:49:38 -08:00
dl-tls.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
dl-tlsdesc-dynamic.h x86: Use separate variable for TLSDESC XSAVE/XSAVEC state size (bug 32810) 2025-08-20 06:14:48 -07:00
dl-tlsdesc.S i386: Update ___tls_get_addr to preserve vector registers 2025-08-20 11:09:07 -07:00
dl-tlsdesc.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
dl-trampoline-state.h x86: Update _dl_tlsdesc_dynamic to preserve caller-saved registers 2025-08-19 18:22:00 -07:00
dl-trampoline.S i386: Update ___tls_get_addr to preserve vector registers 2025-08-20 11:09:07 -07:00
dl-trampoline.h x86: Update _dl_tlsdesc_dynamic to preserve caller-saved registers 2025-08-19 18:22:00 -07:00
feature-control.h i386: Remove CET support bits 2025-08-19 15:39:23 -07:00
ffs.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
ffsll.c x86_64: Optimize ffsll function code size. 2024-01-31 18:31:28 -08:00
ifuncmain8.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
ifuncmod8.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
isa-default-impl.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
isa.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
jmpbuf-offsets.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
jmpbuf-unwind.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
l10nflist.c
ldsodefs.h i386: Remove CET support bits 2025-08-19 15:39:23 -07:00
link-defines.sym
locale-defines.sym
localplt.data
lshift.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
machine-gmon.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
memchr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
memcmp-isa-default-impl.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
memcmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
memcmpeq.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
memcpy.S x86_64: Fix build with --disable-multiarch (BZ 30721) 2023-08-17 23:37:28 +02:00
memcpy_chk.S string: Ensure *_chk routines have their hidden builtin definition available 2023-07-05 16:59:48 +02:00
memmove.S x86_64: Fix build with --disable-multiarch (BZ 30721) 2023-08-17 23:37:28 +02:00
memmove_chk.S string: Ensure *_chk routines have their hidden builtin definition available 2023-07-05 16:59:48 +02:00
mempcpy.S
mempcpy_chk.S string: Ensure *_chk routines have their hidden builtin definition available 2023-07-05 16:59:48 +02:00
memrchr.S string: Add libc_hidden_proto for memrchr 2023-02-08 17:13:58 -03:00
memset.S x86_64: Fix build with --disable-multiarch (BZ 30721) 2023-08-17 23:37:28 +02:00
memset_chk.S string: Ensure *_chk routines have their hidden builtin definition available 2023-07-05 16:59:48 +02:00
mp_clz_tab.c
mul_1.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
preconfigure configure: Use autoconf 2.71 2023-07-17 10:08:10 -04:00
preconfigure.ac
rawmemchr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
rshift.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
rtld-offsets.sym
setjmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
stackguard-macros.h
stackinfo.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
start.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
stpcpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
stpncpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strcasecmp.S
strcasecmp_l-nonascii.c
strcasecmp_l.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strcat.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strchr-isa-default-impl.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strchr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strchrnul.S string: Add libc_hidden_proto for strchrnul 2023-02-08 17:13:56 -03:00
strcmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strcpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strcspn-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strcspn.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strlen.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strncase.S
strncase_l-nonascii.c
strncase_l.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strncat.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strncmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strncpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strnlen.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strpbrk-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strpbrk.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strrchr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strspn-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
strspn.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
sub_n.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
submul_1.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
sysdep.h i386: Remove CET support 2025-08-19 06:29:04 -07:00
tls_get_addr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tlsdesc.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tlsdesc.sym
tst-audit.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-audit3.c
tst-audit4-aux.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-audit4.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-audit5.c
tst-audit6.c
tst-audit7.c
tst-audit10-aux.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-audit10.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-auditmod3a.c
tst-auditmod3b.c
tst-auditmod4a.c
tst-auditmod4b.c
tst-auditmod5a.c
tst-auditmod5b.c
tst-auditmod6a.c
tst-auditmod6b.c
tst-auditmod6c.c
tst-auditmod7a.c
tst-auditmod7b.c
tst-auditmod10a.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-auditmod10b.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-avx-aux.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-avx.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-avx512-aux.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-avx512.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-avx512mod.c
tst-avxmod.c
tst-cet-legacy-1.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-1a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-2.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-2a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-3.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-4.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-4a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-4b.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-4c.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-5.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-5a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-5b.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-6.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-6a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-6b.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-7.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-8.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-9-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-9.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-10-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-10.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-10a-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-10a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-1.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-2.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-4.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-5.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-5a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-5b.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-5c.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-6.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-6a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-6b.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-6c.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-cet-legacy-mod-6d.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-glibc-hwcaps.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-gnu2-tls2mod1.S x86-64: Allocate state buffer space for RDI, RSI and RBX 2025-08-19 18:22:00 -07:00
tst-platform-1.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-platformmod-1.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-platformmod-2.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-quad1.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-quad1pie.c
tst-quad2.c
tst-quad2pie.c
tst-quadmod1.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-quadmod1pie.S
tst-quadmod2.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-quadmod2pie.S
tst-rsi-strlen.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-rsi-wcslen.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-shstk-legacy-1-extra.S x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1a-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1a.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1b-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1b.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1c-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1c.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1d-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1d.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1e-static.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1e-static.sh x86/cet: fix shadow stack test scripts 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1e.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1e.sh x86/cet: fix shadow stack test scripts 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1f.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1g.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-1g.sh x86/cet: fix shadow stack test scripts 2025-08-19 15:39:23 -07:00
tst-shstk-legacy-mod-1.c x86: Move CET infrastructure to x86_64 2025-08-19 15:39:23 -07:00
tst-split-dynreloc.c
tst-split-dynreloc.lds
tst-sse.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
tst-ssemod.c
varshift.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcpcpy-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcpcpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcpncpy-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcpncpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcscat-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcscat.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcschr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcscmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcscpy-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcscpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcslen.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsncat-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsncat.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsncmp-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsncmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsncpy-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsncpy.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsnlen-generic.c Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsnlen.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wcsrchr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wmemchr.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wmemcmp.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wmemset.S
wmemset_chk.S Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00
wordcopy.c
x86-lp_size.h Update copyright dates with scripts/update-copyrights 2023-01-06 21:14:39 +00:00