Commit Graph

42322 Commits

Author SHA1 Message Date
Adhemerval Zanella f130621887 elf: Only defines _dl_tls_allocate_active for SHARED 2025-03-25 09:14:59 -03:00
Adhemerval Zanella df1aef032e Fix -Wno-ignored-attributes configure check 2025-03-25 09:14:59 -03:00
Adhemerval Zanella aeb757b00d aarch64: Use NO_MATH_REDIRECT on pow_advsimd.c
So fma can be optimized by clang instead of issuing __fma.
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 4b3e7d2634 x86: Fix bsearch for compiler that do not define __USE_EXTERN_INLINES
The bsearch is called early during process initialization on Intel
platform, before TCB has been set up; and if compiler does not
enable __extern_inline it might call the symbol which might use an
invalid thread-pointer.

Expand the bsearch implementation from stdlib-bsearch.h with a
different name.

Checked on x86_64-linux-gnu with Intel chip.
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 839e3cf005 x86_64: Provide __sfp_handle_exceptions if compiler does not 2025-03-25 09:14:59 -03:00
Adhemerval Zanella b6bec7ff5e Build glibc with -ftrapping-math
GCC enables it by default, clang in the other hand sets -fno-trapping-math.
This is required to fix some math and stdlib tests that explicit raises
floating point exceptions (i.e. stdlib/tst-strtod-round on aarch64).
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 507246ba24 x86_64: Fix mark-plt configure test 2025-03-25 09:14:59 -03:00
Adhemerval Zanella f6ef23e67c Enable --enable-fortify-source with clang 2025-03-25 09:14:59 -03:00
Adhemerval Zanella 2ec127e780 bench-malloc-thread: Add libm for powf
The bench-malloc-thread.c:63 does use powf and compiler might not
optimzie it away.
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 32a9ca6d9f benchtests: Remove clang warnings
clangs warns of the implicit cast of RAND_MAX to float:

  error: implicit conversion from 'int' to 'float' changes value from
  2147483647 to 2147483648 [-Werror,-Wimplicit-const-int-float-conversion]

So make it explicit.
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 87bb99f5fe benchtests: Use __f128 on ilogbf128-inputs constants 2025-03-25 09:14:59 -03:00
Adhemerval Zanella 9a882a2bec benchtests: Add attribute_optimize
Similar to tst-printf-bz18872.sh, add the attribute_optimize to avoid
build failures with compilers that do not support "GCC optimize" pragma.
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 71ac64b83c math: Fix potential underflow on ldbl-128 erfl
The multiplication is only required if the branch is taken, and the
compiler might not optimize it away.

Checked on aarch64-linux-gnu with gcc and clang.
2025-03-25 09:14:59 -03:00
Adhemerval Zanella f20c4d5d23 elf: Fix tests that require interposable symbols
clang defaults to -fsemantic-interposition, which in turn trigger some
optimizations (like inline) that makes some tests that rely on ELF
symbol interposition to fail.  For this case, explicit set the symbol as
weak to avoid it.
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 7b61bedea9 math: Remove _Static_assert that uses EXCEPTION_SET_FORCES_TRAP
And make them a runtime check with assert since
EXCEPTION_SET_FORCES_TRAP might not be an integral constant expression
(i.e on i386).
2025-03-25 09:14:59 -03:00
Adhemerval Zanella 195eaa59ae Fix loongarch stpcpy on loader 2025-03-25 09:14:59 -03:00
Adhemerval Zanella 73f106d247 i686: Do not build ifunc tests if compiler does not generate supported relocations
clang with --target i668 might not produce supported relocations
that ld.bfd can use for -static-pie without -fPIC, which are used
on some tests.  Disable them for now.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 0bdc79d55e linux: Avoid indirection on operand of type 'void *' for gettimeofday
ISO C does not allow and it fixes a clang issue with
-Werror,-Wvoid-ptr-dereference.

Checked on x86_64-linux-gnu.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 8b9a14c0f3 Fix libc_cv_protected_data check if compiler defaults to PIE 2025-03-25 09:14:58 -03:00
Adhemerval Zanella eb2579162e elf: Disable unload4 test on clang
It triggers and infintie loop.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 710b12317f stdio: Fix tst-vfprintf-user-type on clang
clang always evaluate the pointer alias compasion as false.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 837953d306 math: Do not use __builtin_isinf on clang
It does not handle pseudo normal numbers.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 843cdf9b9c math: Do not use __builtin_isnan on clang
It does not handle pseudo normal numbers.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella bc52945de6 math: Do not use __builtin_fpclassify on clang
It does not handle pseudo normal numbers.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella e219048906 math: Fix isgreater* and isless* for clang
clang does not check for unordered numbers with builtins for
_Float128 type.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 3d5941f48c math: Handle fabsf128 intra PLT for !__USE_EXTERN_INLINES
If compiler does not support __USE_EXTERN_INLINES we need to route
fabsf128 call to an internal symbol.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 6bdf96bffa intl: Use strcpy on _nl_make_l10nflist
It avoid compiler to turn is on strcpy, which might generate a strcpy
PLT call since there is no explicit redirection.
2025-03-25 09:14:58 -03:00
Adhemerval Zanella 3562236cf7 malloc: Suppress clang warning on tst-aligned-alloc 2025-03-25 09:14:58 -03:00
Adhemerval Zanella 447390650b malloc: Disable malloc builtins on tests
To avoid compiler optimize away memory allocation calls, which might
interfere when both valid and invalid calls checks.
2025-03-25 09:14:46 -03:00
Adhemerval Zanella 9e33efddd9 conform: Replace _Static_assert with macro
clang does not allow non integral constant expression in
_Static_assert.  Replace with a macro that uses name bit-field
where an invalid constant expression sets its size to 0, resulting
in a error.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella c0a81da6cc Undef attribute_relro on internal tests that include tls.h
So it does not clash with global definition.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella c54b5d13c4 malloc: Suppress clang warning on tst-memalign 2025-03-24 16:36:28 -03:00
Adhemerval Zanella f7b9ffc416 support: Suppress clang warning on tst-timespec
clang warns that converting from TIME_T_MAX to double (upper_bound)
loses precision (from 9223372036854775807 to 9223372036854775808):

  tst-timespec.c:290:19: error: implicit conversion from 'time_t' (aka
  'long') to 'double' changes value from 9223372036854775807 to
  9223372036854775808 [-Werror,-Wimplicit-const-int-float-conversion]
     .upper_bound = TIME_T_MAX, .lower_bound = 1, .result = 1,
                    ^~~~~~~~~~
  tst-timespec.c:48:20: note: expanded from macro 'TIME_T_MAX'
  #define TIME_T_MAX TYPE_MAXIMUM (time_t)
                     ^~~~~~~~~~~~~~~~~~~~~
  ../include/intprops.h:57:4: note: expanded from macro 'TYPE_MAXIMUM'
    ((t) (! TYPE_SIGNED (t)
  \
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

It does not matter for the test.

Checked on x86_64-linux-gnu.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 1d6a3f3ca0 misc: Disable some atomic tests on clang
clang warns on some atomic macros, disable for now:

  tst-atomic.c:463:7: error: unsupported inline asm: input with type
  'int64_t' (aka 'long') matching output with type 'typeof (*&mem)' (aka
  'int')
    if (catomic_exchange_and_add (&mem, 11) != 2
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../sysdeps/x86/atomic-machine.h:213:3: note: expanded from macro
  'catomic_exchange_and_add'
    __arch_exchange_and_add_body (__arch_exchange_and_add_cprefix,
  __arch_c,    \
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../sysdeps/x86/atomic-machine.h:199:12: note: expanded from macro
  '__arch_exchange_and_add_body'
                           : "0" ((int64_t) cast_to_integer (__addval)),
  \
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  tst-atomic.c:487:7: error: unsupported inline asm: input with type
  'int64_t' (aka 'long') matching output with type 'typeof (*(&mem))' (aka
  'int')
    if (catomic_increment_val (&mem) != 3)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../include/atomic.h:313:38: note: expanded from macro
  'catomic_increment_val'
  # define catomic_increment_val(mem) (catomic_exchange_and_add ((mem), 1)
  + 1)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../sysdeps/x86/atomic-machine.h:213:3: note: expanded from macro
  'catomic_exchange_and_add'
    __arch_exchange_and_add_body (__arch_exchange_and_add_cprefix,
  __arch_c,    \
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../sysdeps/x86/atomic-machine.h:199:12: note: expanded from macro
  '__arch_exchange_and_add_body'
                           : "0" ((int64_t) cast_to_integer (__addval)),
  \
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  tst-atomic.c:501:7: error: unsupported inline asm: input with type
  'int64_t' (aka 'long') matching output with type 'typeof (*(&mem))' (aka
  'int')
    if (catomic_decrement_val (&mem) != 15)
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../include/atomic.h:340:38: note: expanded from macro
  'catomic_decrement_val'
  # define catomic_decrement_val(mem) (catomic_exchange_and_add ((mem),
  -1) - 1)
                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../sysdeps/x86/atomic-machine.h:213:3: note: expanded from macro
  'catomic_exchange_and_add'
    __arch_exchange_and_add_body (__arch_exchange_and_add_cprefix,
  __arch_c,    \
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ../sysdeps/x86/atomic-machine.h:199:12: note: expanded from macro
  '__arch_exchange_and_add_body'
                           : "0" ((int64_t) cast_to_integer (__addval)),
  \
                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 4b11532495 string: Suppress clang -Wsuspicious-bzero on tester 2025-03-24 16:36:28 -03:00
Adhemerval Zanella 37adc483d7 stdio: Disable bug23-3 on clang 2025-03-24 16:36:28 -03:00
Adhemerval Zanella 6b52949998 stdlib: Avoid internal definitions for tst-strtod5i
Compiler might emit a __copysign.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 5f7d791da6 x86_64: Disable libmvec tests if compiler does not support attribute '__simd__'
clang ignore the attribute, which is required by libmvec tests.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella b09927f67d math: Only build tests for _Complex __int128 iff compiler supports it
clang fails building test-tgmath3-atan2.c:

  error: '_Complex __int128' is invalid
  _Complex __int128 var__Complex___int128 __attribute__ ((unused));

since it does not support _Complex with __int128.  So disable
the test in such case.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 05c18e2d0b x86: Fix test-double-vlen include-next
clang issues:

  ../sysdeps/x86_64/fpu/test-double-vlen4.h:20:2: error: #include_next in
  file found relative to primary source file or found by absolute path;
  will search from start of include path
  [-Werror,-Winclude-next-absolute-path]

Instead of suppress the warning, it is simpler to just include the
absolute path instead.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 675a2462ef math: Fix clang warnings on bug-tgmath1.c
The type generic fabs expansion issues the floating point absolute with
the wrong argument type (for instance cabs with floating point or fabs
with a complex type) and clang warns that implicit conversion might
incur in unexpected behavior.
2025-03-24 16:36:28 -03:00
Fangrui Song a6428cf098 configure: remove overly restrictive check for clang 2025-03-24 16:36:28 -03:00
Adhemerval Zanella 85ab293344 riscv: Suppress clang confstr -Wignored-attributes feupdateenv
clang warns that the alias will be always resolve to
__GI___feupdateenv even if weak definition of __GI_feupdateenv
is overridden, which is really the intention.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 6242d11345 riscv: Do not use cfi_label when building with clang
The .cfi_label is a gas extension not supported by clang.  From a
ziglang discussion [1], it seems that it is not really required.

[1] https://github.com/ziglang/zig/issues/3340
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 247526a5a3 string: Suppress clang confstr -Wignored-attributes on strlen
clang warns that the alias will be always resolve to __strlen
even if weak definition of __GI_strlen is overridden, which is
really the intention.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 0fd37443f1 arm: Fix clang multi-arch build with ld.bfd
clang binds autogenerated memcpy/memset/memchr calls to the hidden
internal symbols, different than gcc that binds without hidden
attribute.  And this triggers an linker issue with bfd:

  ld: BFD (GNU Binutils for Ubuntu) 2.38 assertion fail
  ../../bfd/elf32-arm.c:4286

Similar to other architectures, bind internal memcpy and memcpy
symbols to the generic interface instead.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 7cb1206fbe arm: Use vmov.i32 instead of vmov on neon memchr
clang fails with:

  error: invalid instruction
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 83fa6708c5 i386: sfp-machine.h: Do no use asm input cast for clang
clang by default rejects the input casts with:

  error: invalid use of a cast in a inline asm context requiring an
  lvalue: remove the cast or build with -fheinous-gnu-extensions

And even with -fheinous-gnu-extensions clang still throws an warning
and also states that this option might be removed in the future.
For gcc the cast are still useful [1] as type-checking.

[1] https://gcc.gnu.org/pipermail/gcc-patches/2021-October/581722.html
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 0d5dc6d05a i386: Move ___tls_get_addr hidden proto before its first usage
clang can not apply asm redirections to functions after these
functions are used for the first time.
2025-03-24 16:36:28 -03:00
Adhemerval Zanella 1d211faaf7 i386: Disable math_opt_barrier and math_force_eval for clang
It triggers an ICE with clang while building round_and_return.
2025-03-24 16:36:28 -03:00