about summary refs log tree commit diff
path: root/sysdeps/s390
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2022-10-06 12:35:35 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2022-10-10 10:32:28 -0300
commit5355f9ca7b10183ce06e8a18003ba30f43774858 (patch)
treef32e7d1293eb1eaa33267bfe0faed90b67eb990f /sysdeps/s390
parentc15318bfc5499d835c434a4d98b688aa2d928412 (diff)
downloadglibc-5355f9ca7b10183ce06e8a18003ba30f43774858.tar.gz
glibc-5355f9ca7b10183ce06e8a18003ba30f43774858.tar.xz
glibc-5355f9ca7b10183ce06e8a18003ba30f43774858.zip
elf: Remove -fno-tree-loop-distribute-patterns usage on dl-support
Besides the option being gcc specific, this approach is still fragile
and not future proof since we do not know if this will be the only
optimization option gcc will add that transforms loops to memset
(or any libcall).

This patch adds a new header, dl-symbol-redir-ifunc.h, that can b
used to redirect the compiler generated libcalls to port the generic
memset implementation if required.

Checked on x86_64-linux-gnu and aarch64-linux-gnu.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/s390')
-rw-r--r--sysdeps/s390/multiarch/dl-symbol-redir-ifunc.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/sysdeps/s390/multiarch/dl-symbol-redir-ifunc.h b/sysdeps/s390/multiarch/dl-symbol-redir-ifunc.h
new file mode 100644
index 0000000000..14cdd46808
--- /dev/null
+++ b/sysdeps/s390/multiarch/dl-symbol-redir-ifunc.h
@@ -0,0 +1,29 @@
+/* Symbol rediretion for loader/static initialization code.
+   Copyright (C) 2022 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/>.  */
+
+#ifndef _DL_IFUNC_GENERIC_H
+#define _DL_IFUNC_GENERIC_H
+
+#include <ifunc-memset.h>
+
+#define IFUNC_SYMBOL_STR1(s)	#s
+#define IFUNC_SYMBOL_STR(s)	IFUNC_SYMBOL_STR1(s)
+
+asm ("memset = " IFUNC_SYMBOL_STR(MEMSET_DEFAULT));
+
+#endif