07c60b8e33
The following patch adds the compiler and library side of -mabi=ieeelongdouble I/O support. 2022-01-04 Jakub Jelinek <jakub@redhat.com> gcc/fortran/ * trans-io.c (transfer_namelist_element): Use gfc_type_abi_kind, formatting fixes. (transfer_expr): Use gfc_type_abi_kind, use *REAL128* APIs even for abi_kind == 17. libgfortran/ * libgfortran.h (__acoshieee128, __acosieee128, __asinhieee128, __asinieee128, __atan2ieee128, __atanhieee128, __atanieee128, __coshieee128, __cosieee128, __erfieee128, __expieee128, __fabsieee128, __jnieee128, __log10ieee128, __logieee128, __powieee128, __sinhieee128, __sinieee128, __sqrtieee128, __tanhieee128, __tanieee128, __ynieee128): Formatting fixes. (__strtoieee128, __snprintfieee128): Declare. * io/io.h (default_width_for_float, default_precision_for_float): Handle kind == 17. * io/size_from_kind.c (size_from_real_kind, size_from_complex_kind): Likewise. * io/read.c (set_integer, si_max, convert_real, convert_infnan, read_f): Likewise. * io/write.c (extract_uint, size_from_kind, set_fnode_default): Likewise. * io/write_float.def (DTOA2Q, FDTOA2Q): Define for HAVE_GFC_REAL_17. (determine_en_precision, get_float_string): Handle kind == 17. * io/transfer128.c: Use also for HAVE_GFC_REAL_17, but don't drag in libquadmath if POWER_IEEE128. * Makefile.am (comma, PREPROCESS): New variables. (gfortran.ver): New goal. (version_arg, version_dep): Use gfortran.ver instead of $(srcdir)/gfortran.map. (gfortran.map-sun): Depend on and use gfortran.ver instead of $(srcdir)/gfortran.map. (BUILT_SOURCES): Add $(version_dep). * Makefile.in: Regenerated. * gfortran.map (GFORTRAN_8): Don't export _gfortran_transfer_complex128, _gfortran_transfer_complex128_write, _gfortran_transfer_real128 and _gfortran_transfer_real128_write if HAVE_GFC_REAL_17 is defined. (GFORTRAN_12): Export those here instead.
100 lines
3.1 KiB
C
100 lines
3.1 KiB
C
/* Copyright (C) 2010-2022 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU Fortran runtime library (libgfortran).
|
|
|
|
Libgfortran is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
any later version.
|
|
|
|
Libgfortran 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 General Public License for more details.
|
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
/* Note: This file needs to be a separate translation unit (.o file)
|
|
to make sure that for static linkage, the libquad dependence only
|
|
occurs if needed. */
|
|
|
|
#include "io.h"
|
|
|
|
|
|
#if defined(GFC_REAL_16_IS_FLOAT128) || defined(HAVE_GFC_REAL_17)
|
|
|
|
/* The prototypes for the called procedures in transfer.c. */
|
|
|
|
extern void transfer_real (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_real);
|
|
|
|
extern void transfer_real_write (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_real_write);
|
|
|
|
extern void transfer_complex (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_complex);
|
|
|
|
extern void transfer_complex_write (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_complex_write);
|
|
|
|
|
|
/* The prototypes for the procedures in this file. */
|
|
|
|
extern void transfer_real128 (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_real128);
|
|
|
|
extern void transfer_real128_write (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_real128_write);
|
|
|
|
extern void transfer_complex128 (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_complex128);
|
|
|
|
extern void transfer_complex128_write (st_parameter_dt *, void *, int);
|
|
export_proto(transfer_complex128_write);
|
|
|
|
|
|
/* Make sure that libquadmath is pulled in. The functions strtoflt128
|
|
and quadmath_snprintf are weakly referrenced in convert_real and
|
|
write_float; the pointer assignment with USED attribute make sure
|
|
that there is a non-weakref dependence if the quadmath functions
|
|
are used. That avoids segfault when libquadmath is statically linked. */
|
|
# if !defined(HAVE_GFC_REAL_17) || !defined(POWER_IEEE128)
|
|
static void __attribute__((used)) *tmp1 = strtoflt128;
|
|
static void __attribute__((used)) *tmp2 = quadmath_snprintf;
|
|
# endif
|
|
|
|
void
|
|
transfer_real128 (st_parameter_dt *dtp, void *p, int kind)
|
|
{
|
|
transfer_real (dtp, p, kind);
|
|
}
|
|
|
|
|
|
void
|
|
transfer_real128_write (st_parameter_dt *dtp, void *p, int kind)
|
|
{
|
|
transfer_real (dtp, p, kind);
|
|
}
|
|
|
|
|
|
void
|
|
transfer_complex128 (st_parameter_dt *dtp, void *p, int kind)
|
|
{
|
|
transfer_complex (dtp, p, kind);
|
|
}
|
|
|
|
|
|
void
|
|
transfer_complex128_write (st_parameter_dt *dtp, void *p, int kind)
|
|
{
|
|
transfer_complex_write (dtp, p, kind);
|
|
}
|
|
#endif
|