lang-specs.h: Ensure -mrtp switch is passed when using either rtp-smp or ravenscar...
[official-gcc.git] / libgfortran / generated / bessel_r16.c
blob28c35c1043848dc05fedc75d6527dc0b117caa3c
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 #if defined(GFC_REAL_16_IS_FLOAT128)
34 #define MATHFUNC(funcname) funcname ## q
35 #else
36 #define MATHFUNC(funcname) funcname ## l
37 #endif
39 #if defined (HAVE_GFC_REAL_16)
43 #if (defined(GFC_REAL_16_IS_FLOAT128) || defined(HAVE_JNL))
44 extern void bessel_jn_r16 (gfc_array_r16 * const restrict ret, int n1,
45 int n2, GFC_REAL_16 x);
46 export_proto(bessel_jn_r16);
48 void
49 bessel_jn_r16 (gfc_array_r16 * const restrict ret, int n1, int n2, GFC_REAL_16 x)
51 int i;
52 index_type stride;
54 GFC_REAL_16 last1, last2, x2rev;
56 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
58 if (ret->data == NULL)
60 size_t size = n2 < n1 ? 0 : n2-n1+1;
61 GFC_DIMENSION_SET(ret->dim[0], 0, size-1, 1);
62 ret->data = internal_malloc_size (sizeof (GFC_REAL_16) * size);
63 ret->offset = 0;
66 if (unlikely (n2 < n1))
67 return;
69 if (unlikely (compile_options.bounds_check)
70 && GFC_DESCRIPTOR_EXTENT(ret,0) != (n2-n1+1))
71 runtime_error("Incorrect extent in return value of BESSEL_JN "
72 "(%ld vs. %ld)", (long int) n2-n1,
73 (long int) GFC_DESCRIPTOR_EXTENT(ret,0));
75 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
77 if (unlikely (x == 0))
79 ret->data[0] = 1;
80 for (i = 1; i <= n2-n1; i++)
81 ret->data[i*stride] = 0;
82 return;
85 ret->data = ret->data;
86 last1 = MATHFUNC(jn) (n2, x);
87 ret->data[(n2-n1)*stride] = last1;
89 if (n1 == n2)
90 return;
92 last2 = MATHFUNC(jn) (n2 - 1, x);
93 ret->data[(n2-n1-1)*stride] = last2;
95 if (n1 + 1 == n2)
96 return;
98 x2rev = GFC_REAL_16_LITERAL(2.)/x;
100 for (i = n2-n1-2; i >= 0; i--)
102 ret->data[i*stride] = x2rev * (i+1+n1) * last2 - last1;
103 last1 = last2;
104 last2 = ret->data[i*stride];
108 #endif
110 #if (defined(GFC_REAL_16_IS_FLOAT128) || defined(HAVE_YNL))
111 extern void bessel_yn_r16 (gfc_array_r16 * const restrict ret,
112 int n1, int n2, GFC_REAL_16 x);
113 export_proto(bessel_yn_r16);
115 void
116 bessel_yn_r16 (gfc_array_r16 * const restrict ret, int n1, int n2,
117 GFC_REAL_16 x)
119 int i;
120 index_type stride;
122 GFC_REAL_16 last1, last2, x2rev;
124 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
126 if (ret->data == NULL)
128 size_t size = n2 < n1 ? 0 : n2-n1+1;
129 GFC_DIMENSION_SET(ret->dim[0], 0, size-1, 1);
130 ret->data = internal_malloc_size (sizeof (GFC_REAL_16) * size);
131 ret->offset = 0;
134 if (unlikely (n2 < n1))
135 return;
137 if (unlikely (compile_options.bounds_check)
138 && GFC_DESCRIPTOR_EXTENT(ret,0) != (n2-n1+1))
139 runtime_error("Incorrect extent in return value of BESSEL_JN "
140 "(%ld vs. %ld)", (long int) n2-n1,
141 (long int) GFC_DESCRIPTOR_EXTENT(ret,0));
143 stride = GFC_DESCRIPTOR_STRIDE(ret,0);
145 if (unlikely (x == 0))
147 for (i = 0; i <= n2-n1; i++)
148 #if defined(GFC_REAL_16_INFINITY)
149 ret->data[i*stride] = -GFC_REAL_16_INFINITY;
150 #else
151 ret->data[i*stride] = -GFC_REAL_16_HUGE;
152 #endif
153 return;
156 ret->data = ret->data;
157 last1 = MATHFUNC(yn) (n1, x);
158 ret->data[0] = last1;
160 if (n1 == n2)
161 return;
163 last2 = MATHFUNC(yn) (n1 + 1, x);
164 ret->data[1*stride] = last2;
166 if (n1 + 1 == n2)
167 return;
169 x2rev = GFC_REAL_16_LITERAL(2.)/x;
171 for (i = 2; i <= n1+n2; i++)
173 #if defined(GFC_REAL_16_INFINITY)
174 if (unlikely (last2 == -GFC_REAL_16_INFINITY))
176 ret->data[i*stride] = -GFC_REAL_16_INFINITY;
178 else
179 #endif
181 ret->data[i*stride] = x2rev * (i-1+n1) * last2 - last1;
182 last1 = last2;
183 last2 = ret->data[i*stride];
187 #endif
189 #endif