about summary refs log tree commit diff
path: root/sysdeps/x86_64/fpu/multiarch/s_ceilf.c
diff options
context:
space:
mode:
authorSunil K Pandey <skpgkp2@gmail.com>2024-02-13 12:23:14 -0800
committerSunil K Pandey <skpgkp2@gmail.com>2024-02-25 13:20:51 -0800
commit9f78a7c1d0963282608da836b840f0d5ae1c478e (patch)
treebb6e79f075d7fbc5b2b6e39d4551f8a8b0dda332 /sysdeps/x86_64/fpu/multiarch/s_ceilf.c
parentf31d677fd69fb68c8b7a3c4cdaa6e9a1bd46d6a4 (diff)
downloadglibc-9f78a7c1d0963282608da836b840f0d5ae1c478e.tar.gz
glibc-9f78a7c1d0963282608da836b840f0d5ae1c478e.tar.xz
glibc-9f78a7c1d0963282608da836b840f0d5ae1c478e.zip
x86_64: Exclude SSE, AVX and FMA4 variants in libm multiarch
When glibc is built with ISA level 3 or higher by default, the resulting
glibc binaries won't run on SSE or FMA4 processors.  Exclude SSE, AVX and
FMA4 variants in libm multiarch when ISA level 3 or higher is enabled by
default.

When glibc is built with ISA level 2 enabled by default, only keep SSE4.1
variant.

Fixes BZ 31335.

NB: elf/tst-valgrind-smoke test fails with ISA level 4, because valgrind
doesn't support AVX512 instructions:

https://bugs.kde.org/show_bug.cgi?id=383010

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'sysdeps/x86_64/fpu/multiarch/s_ceilf.c')
-rw-r--r--sysdeps/x86_64/fpu/multiarch/s_ceilf.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/sysdeps/x86_64/fpu/multiarch/s_ceilf.c b/sysdeps/x86_64/fpu/multiarch/s_ceilf.c
index 97a0ca7d19..bb53108f73 100644
--- a/sysdeps/x86_64/fpu/multiarch/s_ceilf.c
+++ b/sysdeps/x86_64/fpu/multiarch/s_ceilf.c
@@ -16,17 +16,20 @@
    License along with the GNU C Library; if not, see
    <https://www.gnu.org/licenses/>.  */
 
-#define NO_MATH_REDIRECT
-#include <libm-alias-float.h>
+#include <sysdeps/x86/isa-level.h>
+#if MINIMUM_X86_ISA_LEVEL < SSE4_1_X86_ISA_LEVEL
+# define NO_MATH_REDIRECT
+# include <libm-alias-float.h>
 
-#define ceilf __redirect_ceilf
-#define __ceilf __redirect___ceilf
-#include <math.h>
-#undef ceilf
-#undef __ceilf
+# define ceilf __redirect_ceilf
+# define __ceilf __redirect___ceilf
+# include <math.h>
+# undef ceilf
+# undef __ceilf
 
-#define SYMBOL_NAME ceilf
-#include "ifunc-sse4_1.h"
+# define SYMBOL_NAME ceilf
+# include "ifunc-sse4_1.h"
 
 libc_ifunc_redirected (__redirect_ceilf, __ceilf, IFUNC_SELECTOR ());
 libm_alias_float (__ceil, ceil)
+#endif