]> git.ipfire.org Git - thirdparty/glibc.git/commit
aarch64: use PTR_ARG and SIZE_ARG instead of DELOUSE
authorSzabolcs Nagy <szabolcs.nagy@arm.com>
Thu, 17 Dec 2020 10:03:05 +0000 (10:03 +0000)
committerWilco Dijkstra <wilco.dijkstra@arm.com>
Tue, 9 Apr 2024 18:10:06 +0000 (19:10 +0100)
commit0dc9ac6d5cc1c68461cbaff1e0c55e79ebadad92
tree26160aa10abaa88f13838912d0b524047f343922
parentbd1ded3d05c81927beb117cd6bcc668a7640cdc9
aarch64: use PTR_ARG and SIZE_ARG instead of DELOUSE

DELOUSE was added to asm code to make them compatible with non-LP64
ABIs, but it is an unfortunate name and the code was not compatible
with ABIs where pointer and size_t are different. Glibc currently
only supports the LP64 ABI so these macros are not really needed or
tested, but for now the name is changed to be more meaningful instead
of removing them completely.

Some DELOUSE macros were dropped: clone, strlen and strnlen used it
unnecessarily.

The out of tree ILP32 patches are currently not maintained and will
likely need a rework to rebase them on top of the time64 changes.

(cherry picked from commit 45b1e17e9150dbd9ac2d578579063fbfa8e1b327)
28 files changed:
sysdeps/aarch64/__longjmp.S
sysdeps/aarch64/dl-tlsdesc.S
sysdeps/aarch64/memchr.S
sysdeps/aarch64/memcmp.S
sysdeps/aarch64/memcpy.S
sysdeps/aarch64/memrchr.S
sysdeps/aarch64/memset.S
sysdeps/aarch64/multiarch/memchr_nosimd.S
sysdeps/aarch64/multiarch/memcpy_advsimd.S
sysdeps/aarch64/multiarch/memcpy_falkor.S
sysdeps/aarch64/multiarch/memcpy_thunderx.S
sysdeps/aarch64/multiarch/memcpy_thunderx2.S
sysdeps/aarch64/multiarch/memset_base64.S
sysdeps/aarch64/multiarch/memset_kunpeng.S
sysdeps/aarch64/multiarch/strlen_asimd.S
sysdeps/aarch64/setjmp.S
sysdeps/aarch64/strchr.S
sysdeps/aarch64/strchrnul.S
sysdeps/aarch64/strcmp.S
sysdeps/aarch64/strcpy.S
sysdeps/aarch64/strlen.S
sysdeps/aarch64/strnlen.S
sysdeps/aarch64/strrchr.S
sysdeps/aarch64/sysdep.h
sysdeps/unix/sysv/linux/aarch64/clone.S
sysdeps/unix/sysv/linux/aarch64/getcontext.S
sysdeps/unix/sysv/linux/aarch64/setcontext.S
sysdeps/unix/sysv/linux/aarch64/swapcontext.S