aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/mathbuiltins.def
blob: bdc90581652a0a6bb8a9cddb691839acf7983d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* Copyright (C) 2004-2025 Free Software Foundation, Inc.

This file is part of GCC.

GCC 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.

GCC 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.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */

/* DEFINE_MATH_BUILTIN (CODE, NAME, ARGTYPE)
   NAME	  The name of the builtin
   SNAME  The name of the builtin as a string
   ARGTYPE The type of the arguments.  See f95-lang.cc

   Use DEFINE_MATH_BUILTIN_C if the complex versions of the builtin are
   also available.  */
DEFINE_MATH_BUILTIN_C (ACOS,    "acos",    0)
DEFINE_MATH_BUILTIN_C (ACOSH,   "acosh",   0)
DEFINE_MATH_BUILTIN   (ACOSPI,  "acospi",  0)
DEFINE_MATH_BUILTIN_C (ASIN,    "asin",    0)
DEFINE_MATH_BUILTIN_C (ASINH,   "asinh",   0)
DEFINE_MATH_BUILTIN   (ASINPI,  "asinpi",  0)
DEFINE_MATH_BUILTIN_C (ATAN,    "atan",    0)
DEFINE_MATH_BUILTIN   (ATAN2,   "atan2",   1)
DEFINE_MATH_BUILTIN   (ATAN2PI, "atan2pi", 1)
DEFINE_MATH_BUILTIN_C (ATANH,   "atanh",   0)
DEFINE_MATH_BUILTIN   (ATANPI,  "atanpi",  0)
DEFINE_MATH_BUILTIN_C (COS,     "cos",     0)
DEFINE_MATH_BUILTIN_C (COSH,    "cosh",    0)
DEFINE_MATH_BUILTIN   (COSPI,   "cospi",   0)
DEFINE_MATH_BUILTIN   (ERF,     "erf",     0)
DEFINE_MATH_BUILTIN   (ERFC,    "erfc",    0)
DEFINE_MATH_BUILTIN_C (EXP,     "exp",     0)
DEFINE_MATH_BUILTIN   (HYPOT,   "hypot",   1)
DEFINE_MATH_BUILTIN   (J0,      "j0",      0)
DEFINE_MATH_BUILTIN   (J1,      "j1",      0)
DEFINE_MATH_BUILTIN   (JN,      "jn",      5)
DEFINE_MATH_BUILTIN   (LGAMMA,  "lgamma",  0)
DEFINE_MATH_BUILTIN_C (LOG,     "log",     0)
DEFINE_MATH_BUILTIN_C (LOG10,   "log10",   0)
DEFINE_MATH_BUILTIN_C (SIN,     "sin",     0)
DEFINE_MATH_BUILTIN_C (SINH,    "sinh",    0)
DEFINE_MATH_BUILTIN   (SINPI,   "sinpi",   0)
DEFINE_MATH_BUILTIN_C (SQRT,    "sqrt",    0)
DEFINE_MATH_BUILTIN_C (TAN,     "tan",     0)
DEFINE_MATH_BUILTIN_C (TANH,    "tanh",    0)
DEFINE_MATH_BUILTIN   (TANPI,   "tanpi",   0)
DEFINE_MATH_BUILTIN   (TGAMMA,  "tgamma",  0)
DEFINE_MATH_BUILTIN   (Y0,      "y0",      0)
DEFINE_MATH_BUILTIN   (Y1,      "y1",      0)
DEFINE_MATH_BUILTIN   (YN,      "yn",      5)

/* OTHER_BUILTIN (CODE, NAME, PROTOTYPE_TYPE, CONST)
   For floating-point builtins that do not directly correspond to a
   Fortran intrinsic. This is used to map the different variants (float,
   double and long double) and to build the quad-precision decls.  */
OTHER_BUILTIN (CABS,      "cabs",      cabs,    true)
OTHER_BUILTIN (COPYSIGN,  "copysign",  2,       true)
OTHER_BUILTIN (CPOW,      "cpow",      cpow,    true)
OTHER_BUILTIN (FABS,      "fabs",      1,       true)
OTHER_BUILTIN (FMA,       "fma",       3,       true)
OTHER_BUILTIN (FMAX,      "fmax",      2,       true)
OTHER_BUILTIN (FMIN,      "fmin",      2,       true)
OTHER_BUILTIN (FMOD,      "fmod",      2,       true)
OTHER_BUILTIN (FREXP,     "frexp",     frexp,   false)
OTHER_BUILTIN (LOGB,      "logb",      1,       true)
OTHER_BUILTIN (LLROUND,   "llround",   llround, true)
OTHER_BUILTIN (LROUND,    "lround",    lround,  true)
OTHER_BUILTIN (IROUND,    "iround",    iround,  true)
OTHER_BUILTIN (NEXTAFTER, "nextafter", 2,       true)
OTHER_BUILTIN (POW,       "pow",       2,       true)
OTHER_BUILTIN (REMAINDER, "remainder", 2,       true)
OTHER_BUILTIN (RINT,      "rint",      1,       true)
OTHER_BUILTIN (ROUND,     "round",     1,       true)
OTHER_BUILTIN (SCALBN,    "scalbn",    scalbn,  true)
OTHER_BUILTIN (TRUNC,     "trunc",     1,       true)