unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 0/9] LoongArch: Use builtins with GCC >= 13
@ 2022-11-18 11:29 Xiaolin Tang
  2022-11-18 11:29 ` [PATCH 1/9] LoongArch: Use __builtin_rint{,f} " Xiaolin Tang
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Xiaolin Tang @ 2022-11-18 11:29 UTC (permalink / raw)
  To: adhemerval.zanella, libc-alpha, caiyinyu, xry111
  Cc: xuchenghua, chenglulu, Xiaolin Tang

Patch 0001-0007:
GCC 13, LoongArch support builtins for {,l,ll}rint, logb,
use these built-ins instead of generic function implementation.

Patch 0008:
GCC 13, LoongArch support ___builtin_scalbn{,f} with -fno-math-errno,
but only "libm" can use -fno-math-errno in GLIBC, and scalbn is in libc
instead of libm because __printf_fp calls it. So inline assembler of
the scalbn functions is a better choice for LoongArch.

Patch 0009: Add LoongArch support for scalb[f].

Discuss with Xi Ruoyao<xry111@xry111.site>
Link:
https://sourceware.org/pipermail/libc-alpha/2022-November/143425.html

Xi Ruoyao (1):
  LoongArch: Use __builtin_rint{,f} with GCC >= 13

Xiaolin Tang (8):
  Use GCC builtins for lrint functions if desired.
  LoongArch: Use __builtin_lrint{,f} with GCC >= 13
  Use GCC builtins for llrint functions if desired.
  LoongArch: Use __builtin_llrint{,f} with GCC >= 13
  Use GCC builtins for logb functions if desired.
  LoongArch: Use __builtin_logb{,f} with GCC >= 13
  LoongArch: Add support for scalbn[f]
  LoongArch: Add support for scalb[f]

 sysdeps/generic/math-use-builtins-llrint.h    |  4 ++
 sysdeps/generic/math-use-builtins-logb.h      |  4 ++
 sysdeps/generic/math-use-builtins-lrint.h     |  4 ++
 sysdeps/generic/math-use-builtins.h           |  3 +
 sysdeps/ieee754/dbl-64/s_llrint.c             | 18 ++++--
 sysdeps/ieee754/dbl-64/s_logb.c               |  5 ++
 sysdeps/ieee754/dbl-64/s_lrint.c              | 18 ++++--
 sysdeps/ieee754/float128/float128_private.h   |  6 ++
 sysdeps/ieee754/flt-32/s_llrintf.c            | 18 ++++--
 sysdeps/ieee754/flt-32/s_logbf.c              |  5 ++
 sysdeps/ieee754/flt-32/s_lrintf.c             | 18 ++++--
 sysdeps/ieee754/ldbl-128/s_llrintl.c          | 17 ++++--
 sysdeps/ieee754/ldbl-128/s_logbl.c            |  6 ++
 sysdeps/ieee754/ldbl-128/s_lrintl.c           | 17 ++++--
 sysdeps/loongarch/fpu/e_scalb.c               | 60 +++++++++++++++++++
 sysdeps/loongarch/fpu/e_scalbf.c              | 60 +++++++++++++++++++
 .../loongarch/fpu/math-use-builtins-llrint.h  | 10 ++++
 .../loongarch/fpu/math-use-builtins-logb.h    | 10 ++++
 .../loongarch/fpu/math-use-builtins-lrint.h   | 10 ++++
 .../loongarch/fpu/math-use-builtins-rint.h    |  9 +++
 sysdeps/loongarch/fpu/s_scalbn.c              | 29 +++++++++
 sysdeps/loongarch/fpu/s_scalbnf.c             | 29 +++++++++
 22 files changed, 326 insertions(+), 34 deletions(-)
 create mode 100644 sysdeps/generic/math-use-builtins-llrint.h
 create mode 100644 sysdeps/generic/math-use-builtins-logb.h
 create mode 100644 sysdeps/generic/math-use-builtins-lrint.h
 create mode 100644 sysdeps/loongarch/fpu/e_scalb.c
 create mode 100644 sysdeps/loongarch/fpu/e_scalbf.c
 create mode 100644 sysdeps/loongarch/fpu/math-use-builtins-llrint.h
 create mode 100644 sysdeps/loongarch/fpu/math-use-builtins-logb.h
 create mode 100644 sysdeps/loongarch/fpu/math-use-builtins-lrint.h
 create mode 100644 sysdeps/loongarch/fpu/math-use-builtins-rint.h
 create mode 100644 sysdeps/loongarch/fpu/s_scalbn.c
 create mode 100644 sysdeps/loongarch/fpu/s_scalbnf.c

-- 
2.20.1


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2022-11-23  3:18 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-18 11:29 [PATCH 0/9] LoongArch: Use builtins with GCC >= 13 Xiaolin Tang
2022-11-18 11:29 ` [PATCH 1/9] LoongArch: Use __builtin_rint{,f} " Xiaolin Tang
2022-11-18 11:29 ` [PATCH 2/9] Use GCC builtins for lrint functions if desired Xiaolin Tang
2022-11-18 11:29 ` [PATCH 3/9] LoongArch: Use __builtin_lrint{,f} with GCC >= 13 Xiaolin Tang
2022-11-18 11:29 ` [PATCH 4/9] Use GCC builtins for llrint functions if desired Xiaolin Tang
2022-11-18 11:29 ` [PATCH 5/9] LoongArch: Use __builtin_llrint{,f} with GCC >= 13 Xiaolin Tang
2022-11-18 11:29 ` [PATCH 6/9] Use GCC builtins for logb functions if desired Xiaolin Tang
2022-11-18 11:29 ` [PATCH 7/9] LoongArch: Use __builtin_logb{,f} with GCC >= 13 Xiaolin Tang
2022-11-22 16:20 ` [PATCH 0/9] LoongArch: Use builtins " Xi Ruoyao via Libc-alpha
2022-11-23  2:14   ` tangxiaolin
2022-11-23  2:55   ` tangxiaolin
2022-11-23  3:18     ` Xi Ruoyao via Libc-alpha

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).