b88a2e4886
Upstream commit: 31da30f23cddd36db29d5b6a1c7619361b271fb4
- iconv: ISO-2022-CN-EXT: fix out-of-bound writes when writing escape sequence (CVE-2024-2961)
Resolves: RHEL-31801
- x86_64: Exclude SSE, AVX and FMA4 variants in libm multiarch
- Apply the Makefile sorting fix
- powerpc: Fix ld.so address determination for PCREL mode (bug 31640)
- x86-64: Simplify minimum ISA check ifdef conditional with if
- x86-64: Don't use SSE resolvers for ISA level 3 or above
- AArch64: Check kernel version for SVE ifuncs
- aarch64: fix check for SVE support in assembler
- aarch64/fpu: Sync libmvec routines from 2.39 and before with AOR
- i386: Use generic memrchr in libc (bug 31316)
Related: RHEL-35602
Fedora 40 commit: 1bea1361dc
62 lines
1.7 KiB
Diff
62 lines
1.7 KiB
Diff
commit 7b92f46f04c6cbce19d19ae1099628431858996c
|
|
Author: Sunil K Pandey <skpgkp2@gmail.com>
|
|
Date: Thu Feb 29 17:57:02 2024 -0800
|
|
|
|
x86-64: Simplify minimum ISA check ifdef conditional with if
|
|
|
|
Replace minimum ISA check ifdef conditional with if. Since
|
|
MINIMUM_X86_ISA_LEVEL and AVX_X86_ISA_LEVEL are compile time constants,
|
|
compiler will perform constant folding optimization, getting same
|
|
results.
|
|
|
|
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
|
(cherry picked from commit b6e3898194bbae78910bbe9cd086937014961e45)
|
|
|
|
diff --git a/sysdeps/x86/cpu-features.c b/sysdeps/x86/cpu-features.c
|
|
index b8abe733abe54fc4..3d7c2819d7cc6643 100644
|
|
--- a/sysdeps/x86/cpu-features.c
|
|
+++ b/sysdeps/x86/cpu-features.c
|
|
@@ -1199,9 +1199,8 @@ no_cpuid:
|
|
TUNABLE_CALLBACK (set_x86_shstk));
|
|
#endif
|
|
|
|
-#if MINIMUM_X86_ISA_LEVEL < AVX_X86_ISA_LEVEL
|
|
- if (GLRO(dl_x86_cpu_features).xsave_state_size != 0)
|
|
-#endif
|
|
+ if (MINIMUM_X86_ISA_LEVEL >= AVX_X86_ISA_LEVEL
|
|
+ || (GLRO(dl_x86_cpu_features).xsave_state_size != 0))
|
|
{
|
|
if (CPU_FEATURE_USABLE_P (cpu_features, XSAVEC))
|
|
{
|
|
@@ -1222,24 +1221,22 @@ no_cpuid:
|
|
#endif
|
|
}
|
|
}
|
|
-#if MINIMUM_X86_ISA_LEVEL < AVX_X86_ISA_LEVEL
|
|
else
|
|
{
|
|
-# ifdef __x86_64__
|
|
+#ifdef __x86_64__
|
|
GLRO(dl_x86_64_runtime_resolve) = _dl_runtime_resolve_fxsave;
|
|
-# ifdef SHARED
|
|
+# ifdef SHARED
|
|
GLRO(dl_x86_tlsdesc_dynamic) = _dl_tlsdesc_dynamic_fxsave;
|
|
-# endif
|
|
-# else
|
|
-# ifdef SHARED
|
|
+# endif
|
|
+#else
|
|
+# ifdef SHARED
|
|
if (CPU_FEATURE_USABLE_P (cpu_features, FXSR))
|
|
GLRO(dl_x86_tlsdesc_dynamic) = _dl_tlsdesc_dynamic_fxsave;
|
|
else
|
|
GLRO(dl_x86_tlsdesc_dynamic) = _dl_tlsdesc_dynamic_fnsave;
|
|
-# endif
|
|
# endif
|
|
- }
|
|
#endif
|
|
+ }
|
|
|
|
#ifdef SHARED
|
|
# ifdef __x86_64__
|