Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / libgfortran / generated / bessel_r8.c
blob899237b1e4d7a410f57d6d81d9214c44448c06b5
1 /* Implementation of the BESSEL_JN and BESSEL_YN transformational
2 function using a recurrence algorithm.
3 Copyright 2010 Free Software Foundation, Inc.
4 Contributed by Tobias Burnus <burnus@net-b.de>
6 This file is part of the GNU Fortran runtime library (libgfortran).
8 Libgfortran is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public
10 License as published by the Free Software Foundation; either
11 version 3 of the License, or (at your option) any later version.
13 Libgfortran is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 #include "libgfortran.h"
28 #include <stdlib.h>
29 #include <assert.h>
33 #define MATHFUNC(funcname) funcname
34 #define BUILTINMATHFUNC(funcname) MATHFUNC(funcname)
36 #if defined (HAVE_GFC_REAL_8)
40 #if defined (HAVE_JN)
41 extern void bessel_jn_r8 (gfc_array_r8 * const restrict ret, int n1,
42 int n2, GFC_REAL_8 x);
43 export_proto(bessel_jn_r8);
45 void
46 bessel_jn_r8 (gfc_array_r8 * const restrict ret, int n1, int n2, GFC_REAL_8 x)
48 int i;
49 index_type stride;
51 GFC_REAL_8 last1, last2, x2rev;
53 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
55 if (ret->data == NULL)
57 size_t size = n2 < n1 ? 0 : n2-n1+1;
58 GFC_DIMENSION_SET(ret->dim[0], 0, size-1, 1);
59 ret->data = internal_malloc_size (sizeof (GFC_REAL_8) * size);
60 ret->offset = 0;
63 if (unlikely (n2 < n1))
64 return;
66 if (unlikely (compile_options.bounds_check)
67 && GFC_DESCRIPTOR_EXTENT(ret,0) != (n2-n1+1))
68 runtime_error("Incorrect extent in return value of BESSEL_JN "
69 "(%ld vs. %ld)", (long int) n2-n1,
70 (long int) GFC_DESCRIPTOR_EXTENT(ret,0));
72 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
74 if (unlikely (x == 0))
76 ret->data[0] = 1;
77 for (i = 1; i <= n2-n1; i++)
78 ret->data[i*stride] = 0;
79 return;
82 ret->data = ret->data;
83 last1 = MATHFUNC(jn) (n2, x);
84 ret->data[(n2-n1)*stride] = last1;
86 if (n1 == n2)
87 return;
89 last2 = MATHFUNC(jn) (n2 - 1, x);
90 ret->data[(n2-n1-1)*stride] = last2;
92 if (n1 + 1 == n2)
93 return;
95 x2rev = GFC_REAL_8_LITERAL(2.)/x;
97 for (i = n2-n1-2; i >= 0; i--)
99 ret->data[i*stride] = x2rev * (i+1+n1) * last2 - last1;
100 last1 = last2;
101 last2 = ret->data[i*stride];
105 #endif
107 #if defined (HAVE_YN)
108 extern void bessel_yn_r8 (gfc_array_r8 * const restrict ret,
109 int n1, int n2, GFC_REAL_8 x);
110 export_proto(bessel_yn_r8);
112 void
113 bessel_yn_r8 (gfc_array_r8 * const restrict ret, int n1, int n2,
114 GFC_REAL_8 x)
116 int i;
117 index_type stride;
119 GFC_REAL_8 last1, last2, x2rev;
121 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
123 if (ret->data == NULL)
125 size_t size = n2 < n1 ? 0 : n2-n1+1;
126 GFC_DIMENSION_SET(ret->dim[0], 0, size-1, 1);
127 ret->data = internal_malloc_size (sizeof (GFC_REAL_8) * size);
128 ret->offset = 0;
131 if (unlikely (n2 < n1))
132 return;
134 if (unlikely (compile_options.bounds_check)
135 && GFC_DESCRIPTOR_EXTENT(ret,0) != (n2-n1+1))
136 runtime_error("Incorrect extent in return value of BESSEL_JN "
137 "(%ld vs. %ld)", (long int) n2-n1,
138 (long int) GFC_DESCRIPTOR_EXTENT(ret,0));
140 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
142 if (unlikely (x == 0))
144 for (i = 0; i <= n2-n1; i++)
145 #if defined(GFC_REAL_8_INFINITY)
146 ret->data[i*stride] = -GFC_REAL_8_INFINITY;
147 #else
148 ret->data[i*stride] = -GFC_REAL_8_HUGE;
149 #endif
150 return;
153 ret->data = ret->data;
154 last1 = MATHFUNC(yn) (n1, x);
155 ret->data[0] = last1;
157 if (n1 == n2)
158 return;
160 last2 = MATHFUNC(yn) (n1 + 1, x);
161 ret->data[1*stride] = last2;
163 if (n1 + 1 == n2)
164 return;
166 x2rev = GFC_REAL_8_LITERAL(2.)/x;
168 for (i = 2; i <= n1+n2; i++)
170 #if defined(GFC_REAL_8_INFINITY)
171 if (unlikely (last2 == -GFC_REAL_8_INFINITY))
173 ret->data[i*stride] = -GFC_REAL_8_INFINITY;
175 else
176 #endif
178 ret->data[i*stride] = x2rev * (i-1+n1) * last2 - last1;
179 last1 = last2;
180 last2 = ret->data[i*stride];
184 #endif
186 #endif