Blame sysdeps/s390/fpu/math-use-builtins.h

Packit Service ac5e6c
/* Using math gcc builtins instead of generic implementation.  s390/s390x version.
Packit Service ac5e6c
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service ac5e6c
   This file is part of the GNU C Library.
Packit Service ac5e6c
Packit Service ac5e6c
   The GNU C Library is free software; you can redistribute it and/or
Packit Service ac5e6c
   modify it under the terms of the GNU Lesser General Public
Packit Service ac5e6c
   License as published by the Free Software Foundation; either
Packit Service ac5e6c
   version 2.1 of the License, or (at your option) any later version.
Packit Service ac5e6c
Packit Service ac5e6c
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service ac5e6c
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service ac5e6c
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service ac5e6c
   Lesser General Public License for more details.
Packit Service ac5e6c
Packit Service ac5e6c
   You should have received a copy of the GNU Lesser General Public
Packit Service ac5e6c
   License along with the GNU C Library; if not, see
Packit Service ac5e6c
   <https://www.gnu.org/licenses/>.  */
Packit Service ac5e6c
Packit Service ac5e6c
#ifndef MATH_USE_BUILTINS_S390_H
Packit Service ac5e6c
#define MATH_USE_BUILTINS_S390_H	1
Packit Service ac5e6c
Packit Service ac5e6c
#ifdef HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
Packit Service ac5e6c
Packit Service ac5e6c
# include <features.h> /* For __GNUC_PREREQ.  */
Packit Service ac5e6c
Packit Service ac5e6c
/* GCC emits the z196 zarch "load fp integer" instructions for these
Packit Service ac5e6c
   builtins if build with at least --march=z196 -mzarch.  Otherwise a
Packit Service ac5e6c
   function call to libc is emitted.  */
Packit Service ac5e6c
# define USE_NEARBYINT_BUILTIN 1
Packit Service ac5e6c
# define USE_NEARBYINTF_BUILTIN 1
Packit Service ac5e6c
# define USE_NEARBYINTL_BUILTIN 1
Packit Service ac5e6c
Packit Service 4880ca
# define USE_RINT_BUILTIN 1
Packit Service 4880ca
# define USE_RINTF_BUILTIN 1
Packit Service 4880ca
# define USE_RINTL_BUILTIN 1
Packit Service 4880ca
Packit Service 51ad8b
# define USE_FLOOR_BUILTIN 1
Packit Service 51ad8b
# define USE_FLOORF_BUILTIN 1
Packit Service 51ad8b
# define USE_FLOORL_BUILTIN 1
Packit Service 51ad8b
Packit Service 2eb427
# define USE_CEIL_BUILTIN 1
Packit Service 2eb427
# define USE_CEILF_BUILTIN 1
Packit Service 2eb427
# define USE_CEILL_BUILTIN 1
Packit Service 2eb427
Packit Service 625191
# define USE_TRUNC_BUILTIN 1
Packit Service 625191
# define USE_TRUNCF_BUILTIN 1
Packit Service 625191
# define USE_TRUNCL_BUILTIN 1
Packit Service 625191
Packit Service 564da4
# define USE_ROUND_BUILTIN 1
Packit Service 564da4
# define USE_ROUNDF_BUILTIN 1
Packit Service 564da4
# define USE_ROUNDL_BUILTIN 1
Packit Service 564da4
Packit Service ac5e6c
# if __GNUC_PREREQ (8, 0)
Packit Service ac5e6c
#  define USE_NEARBYINTF128_BUILTIN 1
Packit Service 4880ca
#  define USE_RINTF128_BUILTIN 1
Packit Service 51ad8b
#  define USE_FLOORF128_BUILTIN 1
Packit Service 2eb427
#  define USE_CEILF128_BUILTIN 1
Packit Service 625191
#  define USE_TRUNCF128_BUILTIN 1
Packit Service 564da4
#  define USE_ROUNDF128_BUILTIN 1
Packit Service ac5e6c
# else
Packit Service ac5e6c
#  define USE_NEARBYINTF128_BUILTIN 0
Packit Service 4880ca
#  define USE_RINTF128_BUILTIN 0
Packit Service 51ad8b
#  define USE_FLOORF128_BUILTIN 0
Packit Service 2eb427
#  define USE_CEILF128_BUILTIN 0
Packit Service 625191
#  define USE_TRUNCF128_BUILTIN 0
Packit Service 564da4
#  define USE_ROUNDF128_BUILTIN 0
Packit Service ac5e6c
# endif
Packit Service ac5e6c
Packit Service ac5e6c
#else
Packit Service ac5e6c
Packit Service ac5e6c
/* Disable the builtins if we do not have the z196 zarch instructions.  */
Packit Service ac5e6c
# define USE_NEARBYINT_BUILTIN 0
Packit Service ac5e6c
# define USE_NEARBYINTF_BUILTIN 0
Packit Service ac5e6c
# define USE_NEARBYINTL_BUILTIN 0
Packit Service ac5e6c
# define USE_NEARBYINTF128_BUILTIN 0
Packit Service ac5e6c
Packit Service 4880ca
# define USE_RINT_BUILTIN 0
Packit Service 4880ca
# define USE_RINTF_BUILTIN 0
Packit Service 4880ca
# define USE_RINTL_BUILTIN 0
Packit Service 4880ca
# define USE_RINTF128_BUILTIN 0
Packit Service 4880ca
Packit Service 51ad8b
# define USE_FLOOR_BUILTIN 0
Packit Service 51ad8b
# define USE_FLOORF_BUILTIN 0
Packit Service 51ad8b
# define USE_FLOORL_BUILTIN 0
Packit Service 51ad8b
# define USE_FLOORF128_BUILTIN 0
Packit Service 51ad8b
Packit Service 2eb427
# define USE_CEIL_BUILTIN 0
Packit Service 2eb427
# define USE_CEILF_BUILTIN 0
Packit Service 2eb427
# define USE_CEILL_BUILTIN 0
Packit Service 2eb427
# define USE_CEILF128_BUILTIN 0
Packit Service 2eb427
Packit Service 625191
# define USE_TRUNC_BUILTIN 0
Packit Service 625191
# define USE_TRUNCF_BUILTIN 0
Packit Service 625191
# define USE_TRUNCL_BUILTIN 0
Packit Service 625191
# define USE_TRUNCF128_BUILTIN 0
Packit Service 625191
Packit Service 564da4
# define USE_ROUND_BUILTIN 0
Packit Service 564da4
# define USE_ROUNDF_BUILTIN 0
Packit Service 564da4
# define USE_ROUNDL_BUILTIN 0
Packit Service 564da4
# define USE_ROUNDF128_BUILTIN 0
Packit Service 564da4
Packit Service ac5e6c
#endif /* ! HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT  */
Packit Service ac5e6c
Packit Service 8cba35
#define USE_COPYSIGNL_BUILTIN 1
Packit Service 8cba35
#if __GNUC_PREREQ (7, 0)
Packit Service 8cba35
# define USE_COPYSIGNF128_BUILTIN 1
Packit Service 8cba35
#else
Packit Service 8cba35
# define USE_COPYSIGNF128_BUILTIN 0
Packit Service 8cba35
#endif
Packit Service 8cba35
Packit Service ac5e6c
#endif /* math-use-builtins.h */