public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Hongtao Liu <crazylht@gmail.com>
To: GCC Patches <gcc-patches@gcc.gnu.org>
Cc: "H. J. Lu" <hjl.tools@gmail.com>, Uros Bizjak <ubizjak@gmail.com>,
	 Jakub Jelinek <jakub@redhat.com>,
	liuhongt <hongtao.liu@intel.com>
Subject: Re: [PATCH 2/2] AVX512FP16: Add HFmode support in libgcc.
Date: Thu, 1 Jul 2021 13:55:32 +0800	[thread overview]
Message-ID: <CAMZc-byrbuJc1T+Zm-mTnrZ4CrZPrEhgniEU5tD+KxiZ7t7pcg@mail.gmail.com> (raw)
In-Reply-To: <20210701054808.39000-3-hongtao.liu@intel.com>

On Thu, Jul 1, 2021 at 1:48 PM liuhongt <hongtao.liu@intel.com> wrote:
>
> 1. Add extendhftf2, extendhfxf2, truncxfhf2, trunctfhf2, fixhfti,
> fixunshfti, floattihf and floatuntihf.
> 2. Always add _divhc3.c and _mulhc3.c.  If assembler doesn't support
> AVX512FP16, they are empty.
>
> 2019-01-01  H.J. Lu <hongjiu.lu@intel.com>
> gcc/ChangeLog:
>
>         * optabs-query.c (get_best_extraction_insn): Adjust smallest_int_mode
>         for HFmode.
>
> libgcc/ChangeLog:
>
>         * Makefile.in: Adjust to support avx512fp16.
>         * config.host: Adjust tmake_file to omit host_address value.
>         * config/i386/32/sfp-machine.h (_FP_NANFRAC_H): Add for _Float16.
>         * config/i386/64/sfp-machine.h (_FP_NANFRAC_H): Likewise.
>         * config/i386/sfp-machine.h (_FP_NANSIGN_H): Define.
>         * config/i386/t-softfp: Add divhc3, mulhc3, extendhftf2, extendhfxf2,
>         truncxfhf2 and trunctfhf2.
>         * configure: Regenerate.
>         * configure.ac: Add check for AVX512FP16.
>         * config/i386/64/t-softfp: New file to add fixhfti, fixunshfti,
>         floattihf and floatuntihf,
>         * config/i386/_divhc3.c: New file to add divhc3.
>         * config/i386/_mulhc3.c: New file to add mulhc3.
>         * soft-fp/extendhfxf2.c: New file to add extendhfxf2.
>         * soft-fp/truncxfhf2.c: New file to add truncxfhf2.
> ---
>  gcc/optabs-query.c                  |  9 ++++-
>  libgcc/Makefile.in                  |  4 ++-
>  libgcc/config.host                  |  6 +---
>  libgcc/config/i386/32/sfp-machine.h |  1 +
>  libgcc/config/i386/64/sfp-machine.h |  1 +
>  libgcc/config/i386/64/t-softfp      |  9 +++++
>  libgcc/config/i386/_divhc3.c        |  4 +++
>  libgcc/config/i386/_mulhc3.c        |  4 +++
>  libgcc/config/i386/sfp-machine.h    |  1 +
>  libgcc/config/i386/t-softfp         | 20 +++++++++++
>  libgcc/configure                    | 33 ++++++++++++++++++
>  libgcc/configure.ac                 | 13 +++++++
>  libgcc/soft-fp/extendhfxf2.c        | 53 +++++++++++++++++++++++++++++
>  libgcc/soft-fp/truncxfhf2.c         | 52 ++++++++++++++++++++++++++++
>  14 files changed, 203 insertions(+), 7 deletions(-)
>  create mode 100644 libgcc/config/i386/64/t-softfp
>  create mode 100644 libgcc/config/i386/_divhc3.c
>  create mode 100644 libgcc/config/i386/_mulhc3.c
>  create mode 100644 libgcc/soft-fp/extendhfxf2.c
>  create mode 100644 libgcc/soft-fp/truncxfhf2.c
>
> diff --git a/gcc/optabs-query.c b/gcc/optabs-query.c
> index 3248ce2c06e..a59cb5607d1 100644
> --- a/gcc/optabs-query.c
> +++ b/gcc/optabs-query.c
> @@ -205,7 +205,14 @@ get_best_extraction_insn (extraction_insn *insn,
>                           machine_mode field_mode)
>  {
>    opt_scalar_int_mode mode_iter;
> -  FOR_EACH_MODE_FROM (mode_iter, smallest_int_mode_for_size (struct_bits))
> +  scalar_int_mode smallest_int_mode;
> +  /* FIXME: validate_subreg only allows (subreg:WORD_MODE (reg:HF) 0). */
> +  if (FLOAT_MODE_P (field_mode)
> +      && known_eq (GET_MODE_SIZE (field_mode), 2))
> +    smallest_int_mode = word_mode;
> +  else
> +    smallest_int_mode = smallest_int_mode_for_size (struct_bits);
> +  FOR_EACH_MODE_FROM (mode_iter, smallest_int_mode)
>      {
>        scalar_int_mode mode = mode_iter.require ();
>        if (get_extraction_insn (insn, pattern, type, mode))
> diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in
> index 2c8be561eb5..4452b821a5e 100644
> --- a/libgcc/Makefile.in
> +++ b/libgcc/Makefile.in
> @@ -51,6 +51,8 @@ md_unwind_header = @md_unwind_header@
>  sfp_machine_header = @sfp_machine_header@
>  thread_header = @thread_header@
>
> +have_as_avx512fp16 = @have_as_avx512fp16@
> +
>  host_noncanonical = @host_noncanonical@
>  real_host_noncanonical = @real_host_noncanonical@
>  target_noncanonical = @target_noncanonical@
> @@ -314,7 +316,7 @@ MULTIOSSUBDIR := $(shell if test $(MULTIOSDIR) != .; then echo /$(MULTIOSDIR); f
>  inst_libdir = $(libsubdir)$(MULTISUBDIR)
>  inst_slibdir = $(slibdir)$(MULTIOSSUBDIR)
>
> -gcc_compile_bare = $(CC) $(INTERNAL_CFLAGS)
> +gcc_compile_bare = $(CC) $(INTERNAL_CFLAGS) $(CFLAGS-$(<F))
>  compile_deps = -MT $@ -MD -MP -MF $(basename $@).dep
>  gcc_compile = $(gcc_compile_bare) -o $@ $(compile_deps)
>  gcc_s_compile = $(gcc_compile) -DSHARED
> diff --git a/libgcc/config.host b/libgcc/config.host
> index 50f00062232..3f16b547810 100644
> --- a/libgcc/config.host
> +++ b/libgcc/config.host
> @@ -1539,11 +1539,7 @@ i[34567]86-*-elfiamcu | i[34567]86-*-rtems*)
>         # These use soft-fp for SFmode and DFmode, not just TFmode.
>         ;;
>  i[34567]86-*-* | x86_64-*-*)
> -       tmake_file="${tmake_file} t-softfp-tf"
> -       if test "${host_address}" = 32; then
> -               tmake_file="${tmake_file} i386/${host_address}/t-softfp"
> -       fi
> -       tmake_file="${tmake_file} i386/t-softfp t-softfp"
> +       tmake_file="${tmake_file} t-softfp-tf i386/${host_address}/t-softfp i386/t-softfp t-softfp"
>         ;;
>  esac
>
> diff --git a/libgcc/config/i386/32/sfp-machine.h b/libgcc/config/i386/32/sfp-machine.h
> index 1fa282d7afe..e24cbc8d180 100644
> --- a/libgcc/config/i386/32/sfp-machine.h
> +++ b/libgcc/config/i386/32/sfp-machine.h
> @@ -86,6 +86,7 @@
>  #define _FP_DIV_MEAT_D(R,X,Y)   _FP_DIV_MEAT_2_udiv(D,R,X,Y)
>  #define _FP_DIV_MEAT_Q(R,X,Y)   _FP_DIV_MEAT_4_udiv(Q,R,X,Y)
>
> +#define _FP_NANFRAC_H          _FP_QNANBIT_H
>  #define _FP_NANFRAC_S          _FP_QNANBIT_S
>  #define _FP_NANFRAC_D          _FP_QNANBIT_D, 0
>  /* Even if XFmode is 12byte,  we have to pad it to
> diff --git a/libgcc/config/i386/64/sfp-machine.h b/libgcc/config/i386/64/sfp-machine.h
> index 1ff94c23ea4..e1c616699bb 100644
> --- a/libgcc/config/i386/64/sfp-machine.h
> +++ b/libgcc/config/i386/64/sfp-machine.h
> @@ -13,6 +13,7 @@ typedef unsigned int UTItype __attribute__ ((mode (TI)));
>
>  #define _FP_DIV_MEAT_Q(R,X,Y)   _FP_DIV_MEAT_2_udiv(Q,R,X,Y)
>
> +#define _FP_NANFRAC_H          _FP_QNANBIT_H
>  #define _FP_NANFRAC_S          _FP_QNANBIT_S
>  #define _FP_NANFRAC_D          _FP_QNANBIT_D
>  #define _FP_NANFRAC_E          _FP_QNANBIT_E, 0
> diff --git a/libgcc/config/i386/64/t-softfp b/libgcc/config/i386/64/t-softfp
> new file mode 100644
> index 00000000000..44db2e5aebe
> --- /dev/null
> +++ b/libgcc/config/i386/64/t-softfp
> @@ -0,0 +1,9 @@
> +ifeq ($(have_as_avx512fp16),yes)
> +# Add the following HFmode functions to static libgcc2.
> +hf-extras := fixhfti.c fixunshfti.c floattihf.c floatuntihf.c
> +
> +CFLAGS-fixhfti.c += -mavx512fp16
> +CFLAGS-fixunshfti.c += -mavx512fp16
> +CFLAGS-floattihf.c += -mavx512fp16
> +CFLAGS-floatuntihf.c += -mavx512fp16
> +endif
> diff --git a/libgcc/config/i386/_divhc3.c b/libgcc/config/i386/_divhc3.c
> new file mode 100644
> index 00000000000..b2e5b0cfc7d
> --- /dev/null
> +++ b/libgcc/config/i386/_divhc3.c
> @@ -0,0 +1,4 @@
> +#ifdef __AVX512FP16__
> +#define L_divhc3
> +#include "libgcc2.c"
> +#endif
> diff --git a/libgcc/config/i386/_mulhc3.c b/libgcc/config/i386/_mulhc3.c
> new file mode 100644
> index 00000000000..90af0ead882
> --- /dev/null
> +++ b/libgcc/config/i386/_mulhc3.c
> @@ -0,0 +1,4 @@
> +#ifdef __AVX512FP16__
> +#define L_mulhc3
> +#include "libgcc2.c"
> +#endif
> diff --git a/libgcc/config/i386/sfp-machine.h b/libgcc/config/i386/sfp-machine.h
> index 8319f0550bc..f15d29d3755 100644
> --- a/libgcc/config/i386/sfp-machine.h
> +++ b/libgcc/config/i386/sfp-machine.h
> @@ -17,6 +17,7 @@ typedef int __gcc_CMPtype __attribute__ ((mode (__libgcc_cmp_return__)));
>  #define _FP_KEEPNANFRACP       1
>  #define _FP_QNANNEGATEDP 0
>
> +#define _FP_NANSIGN_H          1
>  #define _FP_NANSIGN_S          1
>  #define _FP_NANSIGN_D          1
>  #define _FP_NANSIGN_E          1
> diff --git a/libgcc/config/i386/t-softfp b/libgcc/config/i386/t-softfp
> index 685d9cf8502..d9cfa36ca90 100644
> --- a/libgcc/config/i386/t-softfp
> +++ b/libgcc/config/i386/t-softfp
> @@ -1 +1,21 @@
>  LIB2ADD += $(srcdir)/config/i386/sfp-exceptions.c
> +
> +# Replace _divhc3 and _mulhc3.
> +libgcc2-hf-functions = _divhc3 _mulhc3
> +LIB2FUNCS_EXCLUDE += $(libgcc2-hf-functions)
> +libgcc2-hf-extras = $(addsuffix .c, $(libgcc2-hf-functions))
> +LIB2ADD_ST += $(addprefix $(srcdir)/config/i386/, $(libgcc2-hf-extras))
> +
> +ifeq ($(have_as_avx512fp16),yes)
> +# Add the following HFmode functions to static libgcc2.
> +hf-extras += extendhfxf2.c extendhftf2.c truncxfhf2.c trunctfhf2.c
> +LIB2ADD_ST += $(addprefix $(srcdir)/soft-fp/, $(hf-extras))
> +
> +CFLAGS-extendhfxf2.c += -mavx512fp16
> +CFLAGS-extendhftf2.c += -mavx512fp16
> +CFLAGS-truncxfhf2.c += -mavx512fp16
> +CFLAGS-trunctfhf2.c += -mavx512fp16
> +
> +CFLAGS-_divhc3.c += -mavx512fp16
> +CFLAGS-_mulhc3.c += -mavx512fp16
> +endif
> diff --git a/libgcc/configure b/libgcc/configure
> index 4919a56f518..503019f020c 100755
> --- a/libgcc/configure
> +++ b/libgcc/configure
> @@ -605,6 +605,7 @@ solaris_ld_v2_maps
>  real_host_noncanonical
>  accel_dir_suffix
>  use_tm_clone_registry
> +have_as_avx512fp16
>  force_explicit_eh_registry
>  CET_FLAGS
>  fixed_point
> @@ -5302,6 +5303,38 @@ $as_echo "$libgcc_cv_powerpc_3_1_float128_hw" >&6; }
>    CFLAGS="$saved_CFLAGS"
>  esac
>
> +case "${target}" in
> +i[34567]86-*-* | x86_64-*-*)
> +  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the assembler supports AVX512FP16" >&5
> +$as_echo_n "checking if the assembler supports AVX512FP16... " >&6; }
> +if ${libgcc_cv_as_avx512fp16+:} false; then :
> +  $as_echo_n "(cached) " >&6
> +else
> +  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
> +/* end confdefs.h.  */
> +
> +int
> +main ()
> +{
> +asm("vmovsh %xmm0, %xmm0, %xmm1");
> +  ;
> +  return 0;
> +}
> +_ACEOF
> +if ac_fn_c_try_compile "$LINENO"; then :
> +  libgcc_cv_as_avx512fp16=yes
> +else
> +  libgcc_cv_as_avx512fp16=no
> +fi
> +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
> +fi
> +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libgcc_cv_as_avx512fp16" >&5
> +$as_echo "$libgcc_cv_as_avx512fp16" >&6; }
> +  ;;
> +esac
> +have_as_avx512fp16=$libgcc_cv_as_avx512fp16
> +
> +
>  # Collect host-machine-specific information.
>  . ${srcdir}/config.host
>
> diff --git a/libgcc/configure.ac b/libgcc/configure.ac
> index 13a80b2551b..a45374891df 100644
> --- a/libgcc/configure.ac
> +++ b/libgcc/configure.ac
> @@ -485,6 +485,19 @@ powerpc*-*-linux*)
>    CFLAGS="$saved_CFLAGS"
>  esac
>
> +case "${target}" in
> +dnl Check if as supports AVX512FP16 instructions.
> +i[[34567]]86-*-* | x86_64-*-*)
> +  AC_CACHE_CHECK([if the assembler supports AVX512FP16],
> +                [libgcc_cv_as_avx512fp16],
> +                [AC_TRY_COMPILE([], [asm("vmovsh %xmm0, %xmm0, %xmm1");],
> +                [libgcc_cv_as_avx512fp16=yes],
> +                [libgcc_cv_as_avx512fp16=no])])
> +  ;;
> +esac
> +have_as_avx512fp16=$libgcc_cv_as_avx512fp16
> +AC_SUBST(have_as_avx512fp16)
> +
>  # Collect host-machine-specific information.
>  . ${srcdir}/config.host
>
> diff --git a/libgcc/soft-fp/extendhfxf2.c b/libgcc/soft-fp/extendhfxf2.c
> new file mode 100644
> index 00000000000..2a11e109dc5
> --- /dev/null
> +++ b/libgcc/soft-fp/extendhfxf2.c
> @@ -0,0 +1,53 @@
> +/* Software floating-point emulation.
> +   Return an IEEE half converted to IEEE extended.
> +   Copyright (C) 2019 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.
> +
> +   In addition to the permissions in the GNU Lesser General Public
> +   License, the Free Software Foundation gives you unlimited
> +   permission to link the compiled version of this file into
> +   combinations with other programs, and to distribute those
> +   combinations without any restriction coming from the use of this
> +   file.  (The Lesser General Public License restrictions do apply in
> +   other respects; for example, they cover modification of the file,
> +   and distribution when not linked into a combine executable.)
> +
> +   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
> +   <http://www.gnu.org/licenses/>.  */
> +
> +#define FP_NO_EXACT_UNDERFLOW
> +#include "soft-fp.h"
> +#include "half.h"
> +#include "extended.h"
> +
> +XFtype
> +__extendhfxf2 (HFtype a)
> +{
> +  FP_DECL_EX;
> +  FP_DECL_H (A);
> +  FP_DECL_E (R);
> +  XFtype r;
> +
> +  FP_INIT_EXCEPTIONS;
> +  FP_UNPACK_RAW_H (A, a);
> +#if _FP_W_TYPE_SIZE < 64
> +  FP_EXTEND (E, H, 4, 1, R, A);
> +#else
> +  FP_EXTEND (E, H, 2, 1, R, A);
> +#endif
> +  FP_PACK_RAW_E (r, R);
> +  FP_HANDLE_EXCEPTIONS;
> +
> +  return r;
> +}
> diff --git a/libgcc/soft-fp/truncxfhf2.c b/libgcc/soft-fp/truncxfhf2.c
> new file mode 100644
> index 00000000000..8d80a1f5129
> --- /dev/null
> +++ b/libgcc/soft-fp/truncxfhf2.c
> @@ -0,0 +1,52 @@
> +/* Software floating-point emulation.
> +   Truncate IEEE extended into IEEE half.
> +   Copyright (C) 2019 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.
> +
> +   In addition to the permissions in the GNU Lesser General Public
> +   License, the Free Software Foundation gives you unlimited
> +   permission to link the compiled version of this file into
> +   combinations with other programs, and to distribute those
> +   combinations without any restriction coming from the use of this
> +   file.  (The Lesser General Public License restrictions do apply in
> +   other respects; for example, they cover modification of the file,
> +   and distribution when not linked into a combine executable.)
> +
> +   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
> +   <http://www.gnu.org/licenses/>.  */
> +
> +#include "soft-fp.h"
> +#include "half.h"
> +#include "extended.h"
> +
> +HFtype
> +__truncxfhf2 (XFtype a)
> +{
> +  FP_DECL_EX;
> +  FP_DECL_E (A);
> +  FP_DECL_H (R);
> +  HFtype r;
> +
> +  FP_INIT_ROUNDMODE;
> +  FP_UNPACK_SEMIRAW_E (A, a);
> +#if _FP_W_TYPE_SIZE < 64
> +  FP_TRUNC (H, E, 1, 4, R, A);
> +#else
> +  FP_TRUNC (H, E, 1, 2, R, A);
> +#endif
> +  FP_PACK_SEMIRAW_H (r, R);
> +  FP_HANDLE_EXCEPTIONS;
> +
> +  return r;
> +}
> --
> 2.18.1
>


-- 
BR,
Hongtao

  parent reply	other threads:[~2021-07-01  5:50 UTC|newest]

Thread overview: 138+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20210701054808.39000-1-hongtao.liu@intel.com>
2021-07-01  5:55 ` [PATCH 0/2] Initial support for AVX512FP16 Hongtao Liu
2021-07-01 20:46   ` Joseph Myers
2021-07-06  8:53     ` Hongtao Liu
     [not found] ` <20210701054808.39000-3-hongtao.liu@intel.com>
2021-07-01  5:55   ` Hongtao Liu [this message]
     [not found] ` <20210701054808.39000-2-hongtao.liu@intel.com>
2021-07-01  5:55   ` [PATCH 1/2] AVX512FP16: Initial support for _Float16 type and AVX512FP16 feature Hongtao Liu
2021-07-01 11:10 ` [PATCH 0/2] Initial support for AVX512FP16 Uros Bizjak
2021-07-01 12:39   ` H.J. Lu
2021-07-01 12:58     ` Richard Biener
2021-07-01 13:03       ` Jakub Jelinek
2021-07-06  8:51         ` Hongtao Liu
2021-07-06 10:14           ` Richard Biener
2021-07-06 12:11             ` H.J. Lu
2021-07-06 18:20               ` Joseph Myers
2021-07-06 18:18             ` Joseph Myers
2021-07-06 18:11           ` Joseph Myers
2021-07-07  1:24             ` Hongtao Liu
2021-07-14  7:50               ` Hongtao Liu
2021-07-14 15:32                 ` [llvm-dev] " Craig Topper
2021-07-15  2:07                   ` Wang, Pengfei
2021-07-15  6:34                     ` Hongtao Liu
2021-07-15  6:57                       ` Wang, Pengfei
2021-07-15  7:49                         ` Hongtao Liu
2021-07-21  7:43       ` [PATCH V2 00/10] " liuhongt
2021-07-21  7:43         ` [PATCH 01/10] Update hf soft-fp from glibc liuhongt
2021-07-21  7:43         ` [PATCH 02/10] [i386] Enable _Float16 type for TARGET_SSE2 and above liuhongt
2021-07-21 10:35           ` Uros Bizjak
2021-07-22  5:21             ` Hongtao Liu
2021-07-22 11:56           ` Richard Biener
2021-07-28 21:56           ` Joseph Myers
2021-07-29  4:53             ` Hongtao Liu
2021-07-29  5:34               ` Hongtao Liu
2021-07-29 21:30               ` Joseph Myers
2021-08-02  5:23                 ` Hongtao Liu
2021-08-02  6:31                   ` [PATCH V3 0/6] Initial support for AVX512FP16 liuhongt
2021-08-02  6:31                     ` [PATCH 1/6] Update hf soft-fp from glibc liuhongt
2021-08-02  6:31                     ` [PATCH 2/6] [i386] Enable _Float16 type for TARGET_SSE2 and above liuhongt
2021-08-04  2:45                       ` Hongtao Liu
2021-08-04 11:28                         ` Richard Biener
2021-08-05  7:31                           ` Hongtao Liu
2021-08-05  7:39                             ` Hongtao Liu
2021-08-05  9:24                             ` Richard Biener
2021-08-05  9:49                               ` Hongtao Liu
2021-08-05 10:14                                 ` Richard Biener
2021-08-06  3:32                                   ` [PATCH] Make sure we're playing with integral modes before call extract_integral_bit_field liuhongt
2021-08-06  3:44                                     ` Andrew Pinski
2021-08-06  4:59                                       ` Hongtao Liu
2021-08-06  5:52                                         ` Hongtao Liu
2021-08-06  6:59                                         ` Richard Biener
2021-08-06  6:57                                     ` Richard Biener
2021-08-06  9:05                                       ` Richard Sandiford
2021-08-06 11:27                                         ` Richard Biener
2021-08-09  8:34                                           ` Hongtao Liu
2021-08-17  1:52                                             ` Hongtao Liu
2021-08-24  9:40                                               ` Hongtao Liu
2021-08-24  9:44                                                 ` Hongtao Liu
2021-08-24 11:38                                                   ` Richard Biener
2021-08-26  1:17                                                     ` Hongtao Liu
2021-08-25 23:16                                                   ` Jeff Law
2021-08-26  2:05                                                     ` Hongtao Liu
2021-08-26  7:11                                                     ` Richard Biener
2021-08-26  9:06                                                       ` Richard Sandiford
2021-08-26 10:14                                                         ` Richard Biener
2021-08-26 10:50                                                           ` Richard Sandiford
2021-08-26 11:09                                                             ` Richard Biener
2021-08-27  4:56                                                               ` Hongtao Liu
2021-08-30 19:09                                                                 ` Joseph Myers
2021-08-30 21:15                                                                   ` Jeff Law
2021-08-31  6:10                                                                 ` Richard Biener
2021-08-31  6:30                                                                   ` Hongtao Liu
2021-08-31  6:48                                                                     ` Hongtao Liu
2021-08-31 11:16                                                                       ` Richard Biener
2021-08-31 11:17                                                                       ` [PATCH 0/2] Get rid of all float-int special cases in validate_subreg liuhongt
2021-08-31 11:17                                                                         ` [PATCH 1/2] Revert "Make sure we're playing with integral modes before call extract_integral_bit_field." liuhongt
2021-08-31 11:17                                                                         ` [PATCH 2/2] Get rid of all float-int special cases in validate_subreg liuhongt
2021-08-31 11:57                                                                           ` Richard Biener
2021-09-02 17:55                                                                           ` Segher Boessenkool
2021-09-03 15:05                                                                             ` Andreas Schwab
2021-09-07 23:19                                                                               ` Segher Boessenkool
2021-09-08  0:55                                                                                 ` Hongtao Liu
2021-09-03 12:42                       ` [PATCH 2/6] [i386] Enable _Float16 type for TARGET_SSE2 and above Jakub Jelinek
2021-09-06  2:05                         ` Hongtao Liu
2021-09-06 12:13                           ` Jakub Jelinek
2021-09-07  1:52                             ` Hongtao Liu
2021-09-07  7:17                               ` Jakub Jelinek
2021-09-07 10:08                                 ` Hongtao Liu
2021-09-07 10:10                                   ` Jakub Jelinek
2021-08-02  6:31                     ` [PATCH 3/6] [i386] libgcc: Enable hfmode soft-sf/df/xf/tf extensions and truncations liuhongt
2021-08-02  6:31                     ` [PATCH 4/6] Support -fexcess-precision=16 which will enable FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16 when backend supports _Float16 liuhongt
2021-08-02 19:34                       ` Joseph Myers
2021-08-03  2:44                         ` Hongtao Liu
2021-08-06  6:06                           ` Hongtao Liu
2021-08-17  1:53                             ` Hongtao Liu
2021-08-24  9:39                               ` Hongtao Liu
2021-09-02  6:06                                 ` Hongtao Liu
2021-08-02  6:39                     ` [PATCH 6/6] AVX512FP16: Support vector init/broadcast/set/extract for FP16 liuhongt
2021-08-02  6:44                     ` [PATCH 5/6] AVX512FP16: Initial support for AVX512FP16 feature and scalar _Float16 instructions liuhongt
2021-08-04  2:40                       ` Hongtao Liu
2021-08-04  9:55                       ` Uros Bizjak
2021-09-02  6:06                     ` [PATCH V3 0/6] Initial support for AVX512FP16 Hongtao Liu
2021-09-02 11:30                       ` Iain Sandoe
2021-09-02 15:18                         ` Hongtao Liu
2021-09-02 16:44                           ` Iain Sandoe
2021-09-02 20:03                             ` Joseph Myers
2021-09-03  7:51                               ` Iain Sandoe
2021-09-03 15:33                                 ` Iain Sandoe
2021-09-21 20:11                                   ` Joseph Myers
2021-09-21 20:25                                     ` Iain Sandoe
2021-09-22  7:08                                     ` Iain Sandoe
2021-09-22 19:50                                       ` Joseph Myers
2021-09-02 15:30                       ` H.J. Lu
2021-09-02 15:50                         ` Hongtao Liu
2021-09-02 19:45                       ` Joseph Myers
2021-07-21  7:43         ` [PATCH 03/10] [i386] libgcc: Enable hfmode soft-sf/df/xf/tf extensions and truncations liuhongt
2021-07-21 10:51           ` Uros Bizjak
2021-07-22 12:14           ` Richard Biener
2021-07-27  5:32             ` Hongtao Liu
2021-07-29 20:57               ` Joseph Myers
2021-08-02  5:10                 ` Hongtao Liu
2021-07-21  7:43         ` [PATCH 04/10] AVX512FP16: Initial support for AVX512FP16 feature and scalar _Float16 instructions liuhongt
2021-07-22  8:49           ` Uros Bizjak
2021-07-27  7:31             ` Hongtao Liu
2021-07-21  7:43         ` [PATCH 05/10] AVX512FP16: Support vector init/broadcast/set/extract for FP16 liuhongt
2021-07-22  5:24           ` Hongtao Liu
2021-07-21  7:43         ` [PATCH 06/10] AVX512FP16: Add testcase for vector init and broadcast intrinsics liuhongt
2021-07-21  7:43         ` [PATCH 07/10] AVX512FP16: Add tests for vector passing in variable arguments liuhongt
2021-07-21  7:43         ` [PATCH 08/10] AVX512FP16: Add ABI tests for xmm liuhongt
2021-07-21  7:43         ` [PATCH 09/10] AVX512FP16: Add ABI test for ymm liuhongt
2021-07-21  7:43         ` [PATCH 10/10] AVX512FP16: Add abi test for zmm liuhongt
2021-09-08  2:54         ` [PATCH V2 00/10] Initial support for AVX512FP16 Hongtao Liu
2021-09-08  3:02           ` Hongtao Liu
2021-07-01 12:58     ` [PATCH 0/2] " Uros Bizjak
2021-07-01 21:40     ` Joseph Myers
2021-07-02  6:30   ` Hongtao Liu
2021-07-02  8:03     ` Uros Bizjak
2021-07-02  8:19       ` Richard Biener
2021-07-03 14:44         ` Hongtao Liu
2021-07-05  1:25       ` Hongtao Liu
2021-07-05 11:02         ` Richard Biener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMZc-byrbuJc1T+Zm-mTnrZ4CrZPrEhgniEU5tD+KxiZ7t7pcg@mail.gmail.com \
    --to=crazylht@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=hjl.tools@gmail.com \
    --cc=hongtao.liu@intel.com \
    --cc=jakub@redhat.com \
    --cc=ubizjak@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).