]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/generated/maxloc0_8_i4.c
Daily bump.
[thirdparty/gcc.git] / libgfortran / generated / maxloc0_8_i4.c
CommitLineData
6de9cd9a 1/* Implementation of the MAXLOC intrinsic
85ec4feb 2 Copyright (C) 2002-2018 Free Software Foundation, Inc.
6de9cd9a
DN
3 Contributed by Paul Brook <paul@nowt.org>
4
57dea9f6 5This file is part of the GNU Fortran 95 runtime library (libgfortran).
6de9cd9a
DN
6
7Libgfortran is free software; you can redistribute it and/or
57dea9f6 8modify it under the terms of the GNU General Public
6de9cd9a 9License as published by the Free Software Foundation; either
748086b7 10version 3 of the License, or (at your option) any later version.
6de9cd9a
DN
11
12Libgfortran is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 15GNU General Public License for more details.
6de9cd9a 16
748086b7
JJ
17Under Section 7 of GPL version 3, you are granted additional
18permissions described in the GCC Runtime Library Exception, version
193.1, as published by the Free Software Foundation.
20
21You should have received a copy of the GNU General Public License and
22a copy of the GCC Runtime Library Exception along with this program;
23see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24<http://www.gnu.org/licenses/>. */
6de9cd9a 25
36ae8a61 26#include "libgfortran.h"
64b1806b 27#include <assert.h>
6de9cd9a
DN
28
29
644cb69f
FXC
30#if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_8)
31
7d7b8bfe 32
64acfd99 33extern void maxloc0_8_i4 (gfc_array_i8 * const restrict retarray,
64b1806b 34 gfc_array_i4 * const restrict array, GFC_LOGICAL_4);
7f68c75f 35export_proto(maxloc0_8_i4);
7d7b8bfe 36
6de9cd9a 37void
64acfd99 38maxloc0_8_i4 (gfc_array_i8 * const restrict retarray,
64b1806b 39 gfc_array_i4 * const restrict array, GFC_LOGICAL_4 back)
6de9cd9a
DN
40{
41 index_type count[GFC_MAX_DIMENSIONS];
42 index_type extent[GFC_MAX_DIMENSIONS];
43 index_type sstride[GFC_MAX_DIMENSIONS];
44 index_type dstride;
64acfd99 45 const GFC_INTEGER_4 *base;
5863aacf 46 GFC_INTEGER_8 * restrict dest;
6de9cd9a
DN
47 index_type rank;
48 index_type n;
49
64b1806b 50 assert(back == 0);
6de9cd9a 51 rank = GFC_DESCRIPTOR_RANK (array);
50dd63a9
TK
52 if (rank <= 0)
53 runtime_error ("Rank of array needs to be > 0");
54
21d1335b 55 if (retarray->base_addr == NULL)
50dd63a9 56 {
dfb55fdc 57 GFC_DIMENSION_SET(retarray->dim[0], 0, rank-1, 1);
fa3c4d47 58 GFC_DTYPE_COPY_SETRANK(retarray,retarray,1);
efd4dc1a 59 retarray->offset = 0;
92e6f3a4 60 retarray->base_addr = xmallocarray (rank, sizeof (GFC_INTEGER_8));
50dd63a9
TK
61 }
62 else
63 {
9731c4a3 64 if (unlikely (compile_options.bounds_check))
80927a56
JJ
65 bounds_iforeach_return ((array_t *) retarray, (array_t *) array,
66 "MAXLOC");
50dd63a9 67 }
e33e218b 68
dfb55fdc 69 dstride = GFC_DESCRIPTOR_STRIDE(retarray,0);
21d1335b 70 dest = retarray->base_addr;
6de9cd9a
DN
71 for (n = 0; n < rank; n++)
72 {
dfb55fdc
TK
73 sstride[n] = GFC_DESCRIPTOR_STRIDE(array,n);
74 extent[n] = GFC_DESCRIPTOR_EXTENT(array,n);
6de9cd9a
DN
75 count[n] = 0;
76 if (extent[n] <= 0)
77 {
78 /* Set the return value. */
79 for (n = 0; n < rank; n++)
80 dest[n * dstride] = 0;
81 return;
82 }
83 }
84
21d1335b 85 base = array->base_addr;
6de9cd9a
DN
86
87 /* Initialize the return value. */
88 for (n = 0; n < rank; n++)
80927a56 89 dest[n * dstride] = 1;
6de9cd9a
DN
90 {
91
80927a56
JJ
92 GFC_INTEGER_4 maxval;
93#if defined(GFC_INTEGER_4_QUIET_NAN)
94 int fast = 0;
95#endif
6de9cd9a 96
80927a56
JJ
97#if defined(GFC_INTEGER_4_INFINITY)
98 maxval = -GFC_INTEGER_4_INFINITY;
99#else
100 maxval = (-GFC_INTEGER_4_HUGE-1);
101#endif
6de9cd9a
DN
102 while (base)
103 {
80927a56
JJ
104 do
105 {
106 /* Implementation start. */
6de9cd9a 107
80927a56
JJ
108#if defined(GFC_INTEGER_4_QUIET_NAN)
109 }
110 while (0);
111 if (unlikely (!fast))
112 {
113 do
114 {
115 if (*base >= maxval)
116 {
117 fast = 1;
118 maxval = *base;
119 for (n = 0; n < rank; n++)
120 dest[n * dstride] = count[n] + 1;
121 break;
122 }
123 base += sstride[0];
124 }
125 while (++count[0] != extent[0]);
126 if (likely (fast))
127 continue;
128 }
129 else do
130 {
131#endif
132 if (*base > maxval)
133 {
134 maxval = *base;
135 for (n = 0; n < rank; n++)
136 dest[n * dstride] = count[n] + 1;
137 }
138 /* Implementation end. */
139 /* Advance to the next element. */
140 base += sstride[0];
141 }
142 while (++count[0] != extent[0]);
6de9cd9a 143 n = 0;
80927a56
JJ
144 do
145 {
146 /* When we get to the end of a dimension, reset it and increment
147 the next dimension. */
148 count[n] = 0;
149 /* We could precalculate these products, but this is a less
150 frequently used path so probably not worth it. */
151 base -= sstride[n] * extent[n];
152 n++;
80dd631f 153 if (n >= rank)
80927a56
JJ
154 {
155 /* Break out of the loop. */
156 base = NULL;
157 break;
158 }
159 else
160 {
161 count[n]++;
162 base += sstride[n];
163 }
164 }
165 while (count[n] == extent[n]);
6de9cd9a
DN
166 }
167 }
168}
169
7d7b8bfe 170
64acfd99 171extern void mmaxloc0_8_i4 (gfc_array_i8 * const restrict,
64b1806b
TK
172 gfc_array_i4 * const restrict, gfc_array_l1 * const restrict,
173 GFC_LOGICAL_4);
7f68c75f 174export_proto(mmaxloc0_8_i4);
7d7b8bfe 175
6de9cd9a 176void
64acfd99
JB
177mmaxloc0_8_i4 (gfc_array_i8 * const restrict retarray,
178 gfc_array_i4 * const restrict array,
64b1806b 179 gfc_array_l1 * const restrict mask, GFC_LOGICAL_4 back)
6de9cd9a
DN
180{
181 index_type count[GFC_MAX_DIMENSIONS];
182 index_type extent[GFC_MAX_DIMENSIONS];
183 index_type sstride[GFC_MAX_DIMENSIONS];
184 index_type mstride[GFC_MAX_DIMENSIONS];
185 index_type dstride;
186 GFC_INTEGER_8 *dest;
64acfd99 187 const GFC_INTEGER_4 *base;
28dc6b33 188 GFC_LOGICAL_1 *mbase;
6de9cd9a
DN
189 int rank;
190 index_type n;
28dc6b33 191 int mask_kind;
6de9cd9a 192
64b1806b 193 assert(back == 0);
6de9cd9a 194 rank = GFC_DESCRIPTOR_RANK (array);
50dd63a9
TK
195 if (rank <= 0)
196 runtime_error ("Rank of array needs to be > 0");
197
21d1335b 198 if (retarray->base_addr == NULL)
50dd63a9 199 {
dfb55fdc 200 GFC_DIMENSION_SET(retarray->dim[0], 0, rank - 1, 1);
fa3c4d47 201 GFC_DTYPE_COPY_SETRANK(retarray,retarray,1);
efd4dc1a 202 retarray->offset = 0;
92e6f3a4 203 retarray->base_addr = xmallocarray (rank, sizeof (GFC_INTEGER_8));
50dd63a9
TK
204 }
205 else
206 {
9731c4a3 207 if (unlikely (compile_options.bounds_check))
fd6590f8 208 {
16bff921
TK
209
210 bounds_iforeach_return ((array_t *) retarray, (array_t *) array,
211 "MAXLOC");
212 bounds_equal_extents ((array_t *) mask, (array_t *) array,
213 "MASK argument", "MAXLOC");
fd6590f8 214 }
50dd63a9 215 }
6de9cd9a 216
28dc6b33
TK
217 mask_kind = GFC_DESCRIPTOR_SIZE (mask);
218
21d1335b 219 mbase = mask->base_addr;
28dc6b33
TK
220
221 if (mask_kind == 1 || mask_kind == 2 || mask_kind == 4 || mask_kind == 8
222#ifdef HAVE_GFC_LOGICAL_16
223 || mask_kind == 16
224#endif
225 )
226 mbase = GFOR_POINTER_TO_L1 (mbase, mask_kind);
227 else
228 runtime_error ("Funny sized logical array");
229
dfb55fdc 230 dstride = GFC_DESCRIPTOR_STRIDE(retarray,0);
21d1335b 231 dest = retarray->base_addr;
6de9cd9a
DN
232 for (n = 0; n < rank; n++)
233 {
dfb55fdc
TK
234 sstride[n] = GFC_DESCRIPTOR_STRIDE(array,n);
235 mstride[n] = GFC_DESCRIPTOR_STRIDE_BYTES(mask,n);
236 extent[n] = GFC_DESCRIPTOR_EXTENT(array,n);
6de9cd9a
DN
237 count[n] = 0;
238 if (extent[n] <= 0)
239 {
240 /* Set the return value. */
241 for (n = 0; n < rank; n++)
242 dest[n * dstride] = 0;
243 return;
244 }
245 }
246
21d1335b 247 base = array->base_addr;
6de9cd9a
DN
248
249 /* Initialize the return value. */
250 for (n = 0; n < rank; n++)
a4b9e93e 251 dest[n * dstride] = 0;
6de9cd9a
DN
252 {
253
254 GFC_INTEGER_4 maxval;
80927a56 255 int fast = 0;
6de9cd9a 256
80927a56
JJ
257#if defined(GFC_INTEGER_4_INFINITY)
258 maxval = -GFC_INTEGER_4_INFINITY;
259#else
260 maxval = (-GFC_INTEGER_4_HUGE-1);
261#endif
6de9cd9a
DN
262 while (base)
263 {
80927a56
JJ
264 do
265 {
266 /* Implementation start. */
6de9cd9a 267
80927a56
JJ
268 }
269 while (0);
270 if (unlikely (!fast))
271 {
272 do
273 {
274 if (*mbase)
275 {
276#if defined(GFC_INTEGER_4_QUIET_NAN)
277 if (unlikely (dest[0] == 0))
278 for (n = 0; n < rank; n++)
279 dest[n * dstride] = count[n] + 1;
280 if (*base >= maxval)
281#endif
282 {
283 fast = 1;
284 maxval = *base;
285 for (n = 0; n < rank; n++)
286 dest[n * dstride] = count[n] + 1;
287 break;
288 }
289 }
290 base += sstride[0];
291 mbase += mstride[0];
292 }
293 while (++count[0] != extent[0]);
294 if (likely (fast))
295 continue;
296 }
297 else do
298 {
299 if (*mbase && *base > maxval)
300 {
301 maxval = *base;
302 for (n = 0; n < rank; n++)
303 dest[n * dstride] = count[n] + 1;
304 }
305 /* Implementation end. */
306 /* Advance to the next element. */
307 base += sstride[0];
308 mbase += mstride[0];
309 }
310 while (++count[0] != extent[0]);
6de9cd9a 311 n = 0;
80927a56
JJ
312 do
313 {
314 /* When we get to the end of a dimension, reset it and increment
315 the next dimension. */
316 count[n] = 0;
317 /* We could precalculate these products, but this is a less
318 frequently used path so probably not worth it. */
319 base -= sstride[n] * extent[n];
320 mbase -= mstride[n] * extent[n];
321 n++;
80dd631f 322 if (n >= rank)
80927a56
JJ
323 {
324 /* Break out of the loop. */
325 base = NULL;
326 break;
327 }
328 else
329 {
330 count[n]++;
331 base += sstride[n];
332 mbase += mstride[n];
333 }
334 }
335 while (count[n] == extent[n]);
6de9cd9a
DN
336 }
337 }
338}
644cb69f 339
97a62038
TK
340
341extern void smaxloc0_8_i4 (gfc_array_i8 * const restrict,
64b1806b 342 gfc_array_i4 * const restrict, GFC_LOGICAL_4 *, GFC_LOGICAL_4);
97a62038
TK
343export_proto(smaxloc0_8_i4);
344
345void
346smaxloc0_8_i4 (gfc_array_i8 * const restrict retarray,
347 gfc_array_i4 * const restrict array,
64b1806b 348 GFC_LOGICAL_4 * mask, GFC_LOGICAL_4 back)
97a62038
TK
349{
350 index_type rank;
351 index_type dstride;
352 index_type n;
353 GFC_INTEGER_8 *dest;
354
355 if (*mask)
356 {
64b1806b 357 maxloc0_8_i4 (retarray, array, back);
97a62038
TK
358 return;
359 }
360
361 rank = GFC_DESCRIPTOR_RANK (array);
362
363 if (rank <= 0)
364 runtime_error ("Rank of array needs to be > 0");
365
21d1335b 366 if (retarray->base_addr == NULL)
97a62038 367 {
dfb55fdc 368 GFC_DIMENSION_SET(retarray->dim[0], 0, rank-1, 1);
fa3c4d47 369 GFC_DTYPE_COPY_SETRANK(retarray,retarray,1);
97a62038 370 retarray->offset = 0;
92e6f3a4 371 retarray->base_addr = xmallocarray (rank, sizeof (GFC_INTEGER_8));
97a62038 372 }
16bff921 373 else if (unlikely (compile_options.bounds_check))
97a62038 374 {
16bff921
TK
375 bounds_iforeach_return ((array_t *) retarray, (array_t *) array,
376 "MAXLOC");
97a62038
TK
377 }
378
dfb55fdc 379 dstride = GFC_DESCRIPTOR_STRIDE(retarray,0);
21d1335b 380 dest = retarray->base_addr;
97a62038
TK
381 for (n = 0; n<rank; n++)
382 dest[n * dstride] = 0 ;
383}
644cb69f 384#endif