gcc/libgfortran/generated
Jakub Jelinek 133d0d422e fortran, libgfortran: Avoid using libquadmath for glibc 2.26+
As mentioned by Joseph in PR105101, glibc 2.26 or later has on x86
(both -m32/-m64), powerpc64le, ia64 and mips support for
*f128 math/complex APIs plus strtof128 and strfromf128, and these APIs allow
us to avoid libquadmath for Fortran purposes on these architectures,
replace *q math/complex APIs, strtof128 instead of strtoflt128 and,
while strfromf128 unfortunately isn't a perfect replacement to
quadmath_snprintf, it can be made to work.

The advantage of this is that when configured against such glibcs
(2.26 is now almost 5 years old), we can avoid linking against an extra shared
library and the math support in glibc is maintained better than libquadmath.

We need both a compiler change (so that for glibc 2.26+ it uses *f128 APIs
instead of *q) and library change.

The above mentioned problem with strfromf128 is that the strfrom* functions
are severely restricted versions of snprintf.  In libgfortran, we handle
!isfinite differently and just use snprintf/quadmath_snprintf for
%+-#.*{L,Q}{f,e} printing.
strfrom* doesn't allow +, -, # modifiers and it only supports .34 or
similar precision, not .* .  The L/Q etc. letters are omitted.
The + is there to force + sign at the start if it is positive.
Workaround in the patch is to add the + at the start manually for
!signbit (val).
The - (left alignment instead of right) I don't understand why we need it,
when minimum field width isn't specified (for strfrom* can't be specified),
no padding is ever added anywhere I believe.
The # is to force adding . - workaround is to search for first . or e or '\0'
character, if it is '\0', just append ., if it is e, insert . before e and
memmove the rest (which is just a few bytes, e, +/- and at most a few digits)
one byte later.
The .* case is handled by creating the format string for strfrom* by
snprintf into a temporary buffer.

As requested, this patch also switches from using __float128 type in
libgfortran to _Float128 which is equivalent on all arches that support
__float128.

The change is done in a backwards compatible change, when GCC is configured
against glibc 2.26 or newer, libgfortran.so.5 itself doesn't link against
-lquadmath nor uses any libquadmath APIs, libgfortran.a doesn't use any
libquadmath APIs either.  User programs and libraries when being linked
by gfortran driver are linked against -lgfortran and -lquadmath, but
the latter only in the --as-needed linker mode, which means it needs
to be around during linking and will be linked in if there are any
calls to math/complex functions with real(kind=16) or complex(kind=16)
in compilation units compiled by older versions of gcc, but if either
user code doesn't call those math/complex functions for the largest
supported kind, or the code is recompiled by gcc with this change in,
libquadmath won't be linked in.

2022-06-28  Jakub Jelinek  <jakub@redhat.com>

gcc/fortran/
	* gfortran.h (gfc_real_info): Add use_iec_60559 bitfield.
	* trans-types.h (gfc_real16_use_iec_60559): Declare.
	* trans-types.cc (gfc_real16_use_iec_60559): Define.
	(gfc_init_kinds): When building powerpc64le-linux libgfortran
	on glibc 2.26 to 2.31, set gfc_real16_use_iec_60559 and
	use_iec_60559.
	(gfc_build_real_type): Set gfc_real16_use_iec_60559 and use_iec_60559
	on glibc 2.26 or later.
	* trans-intrinsic.cc (gfc_build_intrinsic_lib_fndecls): Adjust
	comment.  Handle gfc_real16_use_iec_60559.
	(gfc_get_intrinsic_lib_fndecl): Handle use_iec_60559.
libgfortran/
	* configure.ac: Check for strtof128 and strfromf128.
	Check for math and complex *f128 functions.  Set
	have_iec_60559_libc_support to yes if *f128 support is around, for
	--enable-libquadmath-support default to "default" rather than yes if
	have_iec_60559_libc_support is yes.
	* acinclude.m4 (LIBGFOR_CHECK_FLOAT128): Test
	_Float128/_Complex _Float128 rather than __float128 and
	_Complex float __attribute__((mode(TC))).  If libquadmath support
	is defaulted and have_iec_60559_libc_support is yes, define and subst
	USE_IEC_60559.  Remove unused LIBGFOR_BUILD_QUAD conditional.
	* Makefile.am (kinds.h): Pass @USE_IEC_60559@ as an extra
	mk-kinds-h.sh argument.
	* mk-kinds-h.sh: Accept 4th use_iec_60559 argument.  Use
	_Float128/_Complex _Float128 types instead of __float128 and
	_Complex float __attribute__((mode(TC))), and if use_iec_60559 is yes,
	use f128 suffix instead of q and define GFC_REAL_16_USE_IEC_60559.
	* kinds-override.h: Use _Float128/_Complex _Float128 types instead of
	__float128 and _Complex float __attribute__((mode(TC))), if
	USE_IEC_60559 is defined, use f128 suffixes instead of q and
	define GFC_REAL_17_USE_IEC_60559.
	* libgfortran.h: Don't include quadmath_weak.h if USE_IEC_60559 is
	defined.
	(GFC_REAL_16_INFINITY, GFC_REAL_16_QUIET_NAN): Define
	for GFC_REAL_16_USE_IEC_60559 differently.
	* caf/single.c (convert_type): Use _Float128/_Complex _Float128
	instead of __float128 and _Complex float __attribute__((mode(TC))).
	For HAVE_GFC_REAL_10 when HAVE_GFC_REAL_16 isn't defined use
	_Complex long double instead of long double.
	* ieee/issignaling_fallback.h (ieee854_float128_shape_type): Use
	_Float128 instead of __float128.
	(__issignalingf128): Change argument type to _Float128.
	(issignaling): Use _Float128 instead of __float128 in _Generic.
	* intrinsics/cshift0.c (cshift0): Use _Float128 instead of __float128
	in a comment.  Fix a comment typo, logn double -> long double.
	* intrinsics/erfc_scaled.c (_THRESH, _M_2_SQRTPI, _INF, _ERFC, _EXP):
	Use different definitions if GFC_REAL_16_USE_IEC_60559.
	(_THRESH, _M_2_SQRTPI): Use GFC_REAL_17_LITERAL macro.
	(_ERFC, _EXP): Use different definitions if GFC_REAL_17_USE_IEC_60559.
	* intrinsics/spread_generic.c (spread, spread_scalar): Use _Float128
	instead of __float128 in a comment.  Fix a comment typo,
	logn double -> long double.
	* intrinsics/trigd.c (ENABLE_SIND, ENABLE_COSD, ENABLE_TAND): Handle
	GFC_REAL_16_USE_IEC_60559.
	* intrinsics/pack_generic.c (pack): Use _Float128 instead of
	__float128 in a comment.  Fix a comment typo, logn double ->
	long double.
	* intrinsics/unpack_generic.c (unpack1, unpack0): Likewise.
	* runtime/in_pack_generic.c (internal_pack): Likewise.
	* runtime/in_unpack_generic.c (internal_unpack): Likewise.
	* io/read.c (convert_real, convert_infnan): Handle
	GFC_REAL_16_USE_IEC_60559 and GFC_REAL_17_USE_IEC_60559.
	* io/transfer128.c (tmp1, tmp2): Don't define if libquadmath
	isn't needed.
	* io/write_float.def (gfor_strfromf128): New function.
	(DTOA2Q, FDTOA2Q): Define differently if
	GFC_REAL_16_USE_IEC_60559 or GFC_REAL_17_USE_IEC_60559.
	* m4/mtype.m4: Use different suffix if GFC_REAL_16_USE_IEC_60559
	or GFC_REAL_17_USE_IEC_60559.
	* config.h.in: Regenerated.
	* configure: Regenerated.
	* Makefile.in: Regenerated.
	* generated/bessel_r16.c: Regenerated.
	* generated/bessel_r17.c: Regenerated.
	* generated/norm2_r16.c: Regenerated.
	* generated/norm2_r17.c: Regenerated.
2022-06-28 13:14:45 +02:00
..
_abs_c4.F90
_abs_c8.F90
_abs_c10.F90
_abs_c16.F90
_abs_c17.F90
_abs_i4.F90
_abs_i8.F90
_abs_i16.F90
_abs_r4.F90
_abs_r8.F90
_abs_r10.F90
_abs_r16.F90
_abs_r17.F90
_acos_r4.F90
_acos_r8.F90
_acos_r10.F90
_acos_r16.F90
_acos_r17.F90
_acosh_r4.F90
_acosh_r8.F90
_acosh_r10.F90
_acosh_r16.F90
_acosh_r17.F90
_aimag_c4.F90
_aimag_c8.F90
_aimag_c10.F90
_aimag_c16.F90
_aimag_c17.F90
_aint_r4.F90
_aint_r8.F90
_aint_r10.F90
_aint_r16.F90
_aint_r17.F90
_anint_r4.F90
_anint_r8.F90
_anint_r10.F90
_anint_r16.F90
_anint_r17.F90
_asin_r4.F90
_asin_r8.F90
_asin_r10.F90
_asin_r16.F90
_asin_r17.F90
_asinh_r4.F90
_asinh_r8.F90
_asinh_r10.F90
_asinh_r16.F90
_asinh_r17.F90
_atan2_r4.F90
_atan2_r8.F90
_atan2_r10.F90
_atan2_r16.F90
_atan2_r17.F90
_atan_r4.F90
_atan_r8.F90
_atan_r10.F90
_atan_r16.F90
_atan_r17.F90
_atanh_r4.F90
_atanh_r8.F90
_atanh_r10.F90
_atanh_r16.F90
_atanh_r17.F90
_conjg_c4.F90
_conjg_c8.F90
_conjg_c10.F90
_conjg_c16.F90
_conjg_c17.F90
_cos_c4.F90
_cos_c8.F90
_cos_c10.F90
_cos_c16.F90
_cos_c17.F90
_cos_r4.F90
_cos_r8.F90
_cos_r10.F90
_cos_r16.F90
_cos_r17.F90
_cosh_r4.F90
_cosh_r8.F90
_cosh_r10.F90
_cosh_r16.F90
_cosh_r17.F90
_dim_i4.F90
_dim_i8.F90
_dim_i16.F90
_dim_r4.F90
_dim_r8.F90
_dim_r10.F90
_dim_r16.F90
_dim_r17.F90
_exp_c4.F90
_exp_c8.F90
_exp_c10.F90
_exp_c16.F90
_exp_c17.F90
_exp_r4.F90
_exp_r8.F90
_exp_r10.F90
_exp_r16.F90
_exp_r17.F90
_log10_r4.F90
_log10_r8.F90
_log10_r10.F90
_log10_r16.F90
_log10_r17.F90
_log_c4.F90
_log_c8.F90
_log_c10.F90
_log_c16.F90
_log_c17.F90
_log_r4.F90
_log_r8.F90
_log_r10.F90
_log_r16.F90
_log_r17.F90
_mod_i4.F90
_mod_i8.F90
_mod_i16.F90
_mod_r4.F90
_mod_r8.F90
_mod_r10.F90
_mod_r16.F90
_mod_r17.F90
_sign_i4.F90
_sign_i8.F90
_sign_i16.F90
_sign_r4.F90
_sign_r8.F90
_sign_r10.F90
_sign_r16.F90
_sign_r17.F90
_sin_c4.F90
_sin_c8.F90
_sin_c10.F90
_sin_c16.F90
_sin_c17.F90
_sin_r4.F90
_sin_r8.F90
_sin_r10.F90
_sin_r16.F90
_sin_r17.F90
_sinh_r4.F90
_sinh_r8.F90
_sinh_r10.F90
_sinh_r16.F90
_sinh_r17.F90
_sqrt_c4.F90
_sqrt_c8.F90
_sqrt_c10.F90
_sqrt_c16.F90
_sqrt_c17.F90
_sqrt_r4.F90
_sqrt_r8.F90
_sqrt_r10.F90
_sqrt_r16.F90
_sqrt_r17.F90
_tan_r4.F90
_tan_r8.F90
_tan_r10.F90
_tan_r16.F90
_tan_r17.F90
_tanh_r4.F90
_tanh_r8.F90
_tanh_r10.F90
_tanh_r16.F90
_tanh_r17.F90
all_l1.c
all_l2.c
all_l4.c
all_l8.c
all_l16.c
any_l1.c
any_l2.c
any_l4.c
any_l8.c
any_l16.c
bessel_r4.c
bessel_r8.c
bessel_r10.c
bessel_r16.c
bessel_r17.c
count_1_l.c
count_2_l.c
count_4_l.c
count_8_l.c
count_16_l.c
cshift0_c4.c
cshift0_c8.c
cshift0_c10.c
cshift0_c16.c
cshift0_c17.c
cshift0_i1.c
cshift0_i2.c
cshift0_i4.c
cshift0_i8.c
cshift0_i16.c
cshift0_r4.c
cshift0_r8.c
cshift0_r10.c
cshift0_r16.c
cshift0_r17.c
cshift1_4_c4.c
cshift1_4_c8.c
cshift1_4_c10.c
cshift1_4_c16.c
cshift1_4_c17.c
cshift1_4_i1.c
cshift1_4_i2.c
cshift1_4_i4.c
cshift1_4_i8.c
cshift1_4_i16.c
cshift1_4_r4.c
cshift1_4_r8.c
cshift1_4_r10.c
cshift1_4_r16.c
cshift1_4_r17.c
cshift1_4.c
cshift1_8_c4.c
cshift1_8_c8.c
cshift1_8_c10.c
cshift1_8_c16.c
cshift1_8_c17.c
cshift1_8_i1.c
cshift1_8_i2.c
cshift1_8_i4.c
cshift1_8_i8.c
cshift1_8_i16.c
cshift1_8_r4.c
cshift1_8_r8.c
cshift1_8_r10.c
cshift1_8_r16.c
cshift1_8_r17.c
cshift1_8.c
cshift1_16_c4.c
cshift1_16_c8.c
cshift1_16_c10.c
cshift1_16_c16.c
cshift1_16_c17.c
cshift1_16_i1.c
cshift1_16_i2.c
cshift1_16_i4.c
cshift1_16_i8.c
cshift1_16_i16.c
cshift1_16_r4.c
cshift1_16_r8.c
cshift1_16_r10.c
cshift1_16_r16.c
cshift1_16_r17.c
cshift1_16.c
eoshift1_4.c
eoshift1_8.c
eoshift1_16.c
eoshift3_4.c
eoshift3_8.c
eoshift3_16.c
findloc0_c4.c
findloc0_c8.c
findloc0_c10.c
findloc0_c16.c
findloc0_c17.c
findloc0_i1.c
findloc0_i2.c
findloc0_i4.c
findloc0_i8.c
findloc0_i16.c
findloc0_r4.c
findloc0_r8.c
findloc0_r10.c
findloc0_r16.c
findloc0_r17.c
findloc0_s1.c
findloc0_s4.c
findloc1_c4.c
findloc1_c8.c
findloc1_c10.c
findloc1_c16.c
findloc1_c17.c
findloc1_i1.c
findloc1_i2.c
findloc1_i4.c
findloc1_i8.c
findloc1_i16.c
findloc1_r4.c
findloc1_r8.c
findloc1_r10.c
findloc1_r16.c
findloc1_r17.c
findloc1_s1.c
findloc1_s4.c
findloc2_s1.c
findloc2_s4.c
iall_i1.c
iall_i2.c
iall_i4.c
iall_i8.c
iall_i16.c
iany_i1.c
iany_i2.c
iany_i4.c
iany_i8.c
iany_i16.c
in_pack_c4.c
in_pack_c8.c
in_pack_c10.c
in_pack_c16.c
in_pack_c17.c
in_pack_i1.c
in_pack_i2.c
in_pack_i4.c
in_pack_i8.c
in_pack_i16.c
in_pack_r4.c
in_pack_r8.c
in_pack_r10.c
in_pack_r16.c
in_pack_r17.c
in_unpack_c4.c
in_unpack_c8.c
in_unpack_c10.c
in_unpack_c16.c
in_unpack_c17.c
in_unpack_i1.c
in_unpack_i2.c
in_unpack_i4.c
in_unpack_i8.c
in_unpack_i16.c
in_unpack_r4.c
in_unpack_r8.c
in_unpack_r10.c
in_unpack_r16.c
in_unpack_r17.c
iparity_i1.c
iparity_i2.c
iparity_i4.c
iparity_i8.c
iparity_i16.c
matmul_c4.c
matmul_c8.c
matmul_c10.c
matmul_c16.c
matmul_c17.c
matmul_i1.c
matmul_i2.c
matmul_i4.c
matmul_i8.c
matmul_i16.c
matmul_l4.c
matmul_l8.c
matmul_l16.c
matmul_r4.c
matmul_r8.c
matmul_r10.c
matmul_r16.c
matmul_r17.c
matmulavx128_c4.c
matmulavx128_c8.c
matmulavx128_c10.c
matmulavx128_c16.c
matmulavx128_c17.c
matmulavx128_i1.c
matmulavx128_i2.c
matmulavx128_i4.c
matmulavx128_i8.c
matmulavx128_i16.c
matmulavx128_r4.c
matmulavx128_r8.c
matmulavx128_r10.c
matmulavx128_r16.c
matmulavx128_r17.c
maxloc0_4_i1.c
maxloc0_4_i2.c
maxloc0_4_i4.c
maxloc0_4_i8.c
maxloc0_4_i16.c
maxloc0_4_r4.c
maxloc0_4_r8.c
maxloc0_4_r10.c
maxloc0_4_r16.c
maxloc0_4_r17.c
maxloc0_4_s1.c
maxloc0_4_s4.c
maxloc0_8_i1.c
maxloc0_8_i2.c
maxloc0_8_i4.c
maxloc0_8_i8.c
maxloc0_8_i16.c
maxloc0_8_r4.c
maxloc0_8_r8.c
maxloc0_8_r10.c
maxloc0_8_r16.c
maxloc0_8_r17.c
maxloc0_8_s1.c
maxloc0_8_s4.c
maxloc0_16_i1.c
maxloc0_16_i2.c
maxloc0_16_i4.c
maxloc0_16_i8.c
maxloc0_16_i16.c
maxloc0_16_r4.c
maxloc0_16_r8.c
maxloc0_16_r10.c
maxloc0_16_r16.c
maxloc0_16_r17.c
maxloc0_16_s1.c
maxloc0_16_s4.c
maxloc1_4_i1.c
maxloc1_4_i2.c
maxloc1_4_i4.c
maxloc1_4_i8.c
maxloc1_4_i16.c
maxloc1_4_r4.c
maxloc1_4_r8.c
maxloc1_4_r10.c
maxloc1_4_r16.c
maxloc1_4_r17.c
maxloc1_4_s1.c
maxloc1_4_s4.c
maxloc1_8_i1.c
maxloc1_8_i2.c
maxloc1_8_i4.c
maxloc1_8_i8.c
maxloc1_8_i16.c
maxloc1_8_r4.c
maxloc1_8_r8.c
maxloc1_8_r10.c
maxloc1_8_r16.c
maxloc1_8_r17.c
maxloc1_8_s1.c
maxloc1_8_s4.c
maxloc1_16_i1.c
maxloc1_16_i2.c
maxloc1_16_i4.c
maxloc1_16_i8.c
maxloc1_16_i16.c
maxloc1_16_r4.c
maxloc1_16_r8.c
maxloc1_16_r10.c
maxloc1_16_r16.c
maxloc1_16_r17.c
maxloc1_16_s1.c
maxloc1_16_s4.c
maxloc2_4_s1.c
maxloc2_4_s4.c
maxloc2_8_s1.c
maxloc2_8_s4.c
maxloc2_16_s1.c
maxloc2_16_s4.c
maxval0_s1.c
maxval0_s4.c
maxval1_s1.c
maxval1_s4.c
maxval_i1.c
maxval_i2.c
maxval_i4.c
maxval_i8.c
maxval_i16.c
maxval_r4.c
maxval_r8.c
maxval_r10.c
maxval_r16.c
maxval_r17.c
minloc0_4_i1.c
minloc0_4_i2.c
minloc0_4_i4.c
minloc0_4_i8.c
minloc0_4_i16.c
minloc0_4_r4.c
minloc0_4_r8.c
minloc0_4_r10.c
minloc0_4_r16.c
minloc0_4_r17.c
minloc0_4_s1.c
minloc0_4_s4.c
minloc0_8_i1.c
minloc0_8_i2.c
minloc0_8_i4.c
minloc0_8_i8.c
minloc0_8_i16.c
minloc0_8_r4.c
minloc0_8_r8.c
minloc0_8_r10.c
minloc0_8_r16.c
minloc0_8_r17.c
minloc0_8_s1.c
minloc0_8_s4.c
minloc0_16_i1.c
minloc0_16_i2.c
minloc0_16_i4.c
minloc0_16_i8.c
minloc0_16_i16.c
minloc0_16_r4.c
minloc0_16_r8.c
minloc0_16_r10.c
minloc0_16_r16.c
minloc0_16_r17.c
minloc0_16_s1.c
minloc0_16_s4.c
minloc1_4_i1.c
minloc1_4_i2.c
minloc1_4_i4.c
minloc1_4_i8.c
minloc1_4_i16.c
minloc1_4_r4.c
minloc1_4_r8.c
minloc1_4_r10.c
minloc1_4_r16.c
minloc1_4_r17.c
minloc1_4_s1.c
minloc1_4_s4.c
minloc1_8_i1.c
minloc1_8_i2.c
minloc1_8_i4.c
minloc1_8_i8.c
minloc1_8_i16.c
minloc1_8_r4.c
minloc1_8_r8.c
minloc1_8_r10.c
minloc1_8_r16.c
minloc1_8_r17.c
minloc1_8_s1.c
minloc1_8_s4.c
minloc1_16_i1.c
minloc1_16_i2.c
minloc1_16_i4.c
minloc1_16_i8.c
minloc1_16_i16.c
minloc1_16_r4.c
minloc1_16_r8.c
minloc1_16_r10.c
minloc1_16_r16.c
minloc1_16_r17.c
minloc1_16_s1.c
minloc1_16_s4.c
minloc2_4_s1.c
minloc2_4_s4.c
minloc2_8_s1.c
minloc2_8_s4.c
minloc2_16_s1.c
minloc2_16_s4.c
minval0_s1.c
minval0_s4.c
minval1_s1.c
minval1_s4.c
minval_i1.c
minval_i2.c
minval_i4.c
minval_i8.c
minval_i16.c
minval_r4.c
minval_r8.c
minval_r10.c
minval_r16.c
minval_r17.c
misc_specifics.F90
norm2_r4.c
norm2_r8.c
norm2_r10.c
norm2_r16.c
norm2_r17.c
pack_c4.c
pack_c8.c
pack_c10.c
pack_c16.c
pack_c17.c
pack_i1.c
pack_i2.c
pack_i4.c
pack_i8.c
pack_i16.c
pack_r4.c
pack_r8.c
pack_r10.c
pack_r16.c
pack_r17.c
parity_l1.c
parity_l2.c
parity_l4.c
parity_l8.c
parity_l16.c
pow_c4_i4.c
pow_c4_i8.c
pow_c4_i16.c
pow_c8_i4.c
pow_c8_i8.c
pow_c8_i16.c
pow_c10_i4.c
pow_c10_i8.c
pow_c10_i16.c
pow_c16_i4.c
pow_c16_i8.c
pow_c16_i16.c
pow_c17_i4.c
pow_c17_i8.c
pow_c17_i16.c
pow_i4_i4.c
pow_i4_i8.c
pow_i4_i16.c
pow_i8_i4.c
pow_i8_i8.c
pow_i8_i16.c
pow_i16_i4.c
pow_i16_i8.c
pow_i16_i16.c
pow_r4_i8.c
pow_r4_i16.c
pow_r8_i8.c
pow_r8_i16.c
pow_r10_i8.c
pow_r10_i16.c
pow_r16_i4.c
pow_r16_i8.c
pow_r16_i16.c
pow_r17_i4.c
pow_r17_i8.c
pow_r17_i16.c
product_c4.c
product_c8.c
product_c10.c
product_c16.c
product_c17.c
product_i1.c
product_i2.c
product_i4.c
product_i8.c
product_i16.c
product_r4.c
product_r8.c
product_r10.c
product_r16.c
product_r17.c
reshape_c4.c
reshape_c8.c
reshape_c10.c
reshape_c16.c
reshape_c17.c
reshape_i4.c
reshape_i8.c
reshape_i16.c
reshape_r4.c
reshape_r8.c
reshape_r10.c
reshape_r16.c
reshape_r17.c
shape_i1.c
shape_i2.c
shape_i4.c
shape_i8.c
shape_i16.c
spread_c4.c
spread_c8.c
spread_c10.c
spread_c16.c
spread_c17.c
spread_i1.c
spread_i2.c
spread_i4.c
spread_i8.c
spread_i16.c
spread_r4.c
spread_r8.c
spread_r10.c
spread_r16.c
spread_r17.c
sum_c4.c
sum_c8.c
sum_c10.c
sum_c16.c
sum_c17.c
sum_i1.c
sum_i2.c
sum_i4.c
sum_i8.c
sum_i16.c
sum_r4.c
sum_r8.c
sum_r10.c
sum_r16.c
sum_r17.c
unpack_c4.c
unpack_c8.c
unpack_c10.c
unpack_c16.c
unpack_c17.c
unpack_i1.c
unpack_i2.c
unpack_i4.c
unpack_i8.c
unpack_i16.c
unpack_r4.c
unpack_r8.c
unpack_r10.c
unpack_r16.c
unpack_r17.c