]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/generated/minval_r16.c
Combined get_mem and internal_malloc_size.
[thirdparty/gcc.git] / libgfortran / generated / minval_r16.c
CommitLineData
644cb69f 1/* Implementation of the MINVAL intrinsic
0cd0559e 2 Copyright 2002, 2007, 2009, 2010 Free Software Foundation, Inc.
644cb69f
FXC
3 Contributed by Paul Brook <paul@nowt.org>
4
0cd0559e 5This file is part of the GNU Fortran runtime library (libgfortran).
644cb69f
FXC
6
7Libgfortran is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public
9License as published by the Free Software Foundation; either
748086b7 10version 3 of the License, or (at your option) any later version.
644cb69f
FXC
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
15GNU General Public License for more details.
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/>. */
644cb69f 25
36ae8a61 26#include "libgfortran.h"
644cb69f
FXC
27#include <stdlib.h>
28#include <assert.h>
644cb69f
FXC
29
30
31#if defined (HAVE_GFC_REAL_16) && defined (HAVE_GFC_REAL_16)
32
33
64acfd99
JB
34extern void minval_r16 (gfc_array_r16 * const restrict,
35 gfc_array_r16 * const restrict, const index_type * const restrict);
644cb69f
FXC
36export_proto(minval_r16);
37
38void
64acfd99
JB
39minval_r16 (gfc_array_r16 * const restrict retarray,
40 gfc_array_r16 * const restrict array,
41 const index_type * const restrict pdim)
644cb69f
FXC
42{
43 index_type count[GFC_MAX_DIMENSIONS];
44 index_type extent[GFC_MAX_DIMENSIONS];
45 index_type sstride[GFC_MAX_DIMENSIONS];
46 index_type dstride[GFC_MAX_DIMENSIONS];
64acfd99
JB
47 const GFC_REAL_16 * restrict base;
48 GFC_REAL_16 * restrict dest;
644cb69f
FXC
49 index_type rank;
50 index_type n;
51 index_type len;
52 index_type delta;
53 index_type dim;
da96f5ab 54 int continue_loop;
644cb69f
FXC
55
56 /* Make dim zero based to avoid confusion. */
57 dim = (*pdim) - 1;
58 rank = GFC_DESCRIPTOR_RANK (array) - 1;
59
dfb55fdc 60 len = GFC_DESCRIPTOR_EXTENT(array,dim);
da96f5ab
TK
61 if (len < 0)
62 len = 0;
dfb55fdc 63 delta = GFC_DESCRIPTOR_STRIDE(array,dim);
644cb69f
FXC
64
65 for (n = 0; n < dim; n++)
66 {
dfb55fdc
TK
67 sstride[n] = GFC_DESCRIPTOR_STRIDE(array,n);
68 extent[n] = GFC_DESCRIPTOR_EXTENT(array,n);
80ee04b9
TK
69
70 if (extent[n] < 0)
71 extent[n] = 0;
644cb69f
FXC
72 }
73 for (n = dim; n < rank; n++)
74 {
dfb55fdc
TK
75 sstride[n] = GFC_DESCRIPTOR_STRIDE(array, n + 1);
76 extent[n] = GFC_DESCRIPTOR_EXTENT(array, n + 1);
80ee04b9
TK
77
78 if (extent[n] < 0)
79 extent[n] = 0;
644cb69f
FXC
80 }
81
21d1335b 82 if (retarray->base_addr == NULL)
644cb69f 83 {
dfb55fdc 84 size_t alloc_size, str;
80ee04b9 85
644cb69f 86 for (n = 0; n < rank; n++)
80927a56
JJ
87 {
88 if (n == 0)
dfb55fdc 89 str = 1;
80927a56
JJ
90 else
91 str = GFC_DESCRIPTOR_STRIDE(retarray,n-1) * extent[n-1];
dfb55fdc
TK
92
93 GFC_DIMENSION_SET(retarray->dim[n], 0, extent[n] - 1, str);
94
80927a56 95 }
644cb69f 96
644cb69f
FXC
97 retarray->offset = 0;
98 retarray->dtype = (array->dtype & ~GFC_DTYPE_RANK_MASK) | rank;
80ee04b9 99
dfb55fdc 100 alloc_size = sizeof (GFC_REAL_16) * GFC_DESCRIPTOR_STRIDE(retarray,rank-1)
80ee04b9
TK
101 * extent[rank-1];
102
1a0fd3d3 103 retarray->base_addr = xmalloc (alloc_size);
80ee04b9
TK
104 if (alloc_size == 0)
105 {
106 /* Make sure we have a zero-sized array. */
dfb55fdc 107 GFC_DIMENSION_SET(retarray->dim[0], 0, -1, 1);
80ee04b9 108 return;
dfb55fdc 109
80ee04b9 110 }
644cb69f
FXC
111 }
112 else
113 {
644cb69f 114 if (rank != GFC_DESCRIPTOR_RANK (retarray))
fd6590f8 115 runtime_error ("rank of return array incorrect in"
ccacefc7
TK
116 " MINVAL intrinsic: is %ld, should be %ld",
117 (long int) (GFC_DESCRIPTOR_RANK (retarray)),
118 (long int) rank);
fd6590f8 119
9731c4a3 120 if (unlikely (compile_options.bounds_check))
16bff921
TK
121 bounds_ifunction_return ((array_t *) retarray, extent,
122 "return value", "MINVAL");
644cb69f
FXC
123 }
124
125 for (n = 0; n < rank; n++)
126 {
127 count[n] = 0;
dfb55fdc 128 dstride[n] = GFC_DESCRIPTOR_STRIDE(retarray,n);
644cb69f 129 if (extent[n] <= 0)
facc1285 130 return;
644cb69f
FXC
131 }
132
21d1335b
TB
133 base = array->base_addr;
134 dest = retarray->base_addr;
644cb69f 135
da96f5ab
TK
136 continue_loop = 1;
137 while (continue_loop)
644cb69f 138 {
64acfd99 139 const GFC_REAL_16 * restrict src;
644cb69f
FXC
140 GFC_REAL_16 result;
141 src = base;
142 {
143
80927a56
JJ
144#if defined (GFC_REAL_16_INFINITY)
145 result = GFC_REAL_16_INFINITY;
146#else
147 result = GFC_REAL_16_HUGE;
148#endif
149 if (len <= 0)
644cb69f
FXC
150 *dest = GFC_REAL_16_HUGE;
151 else
152 {
153 for (n = 0; n < len; n++, src += delta)
154 {
155
80927a56
JJ
156#if defined (GFC_REAL_16_QUIET_NAN)
157 if (*src <= result)
158 break;
159 }
160 if (unlikely (n >= len))
161 result = GFC_REAL_16_QUIET_NAN;
162 else for (; n < len; n++, src += delta)
163 {
164#endif
165 if (*src < result)
166 result = *src;
167 }
0cd0559e 168
644cb69f
FXC
169 *dest = result;
170 }
171 }
172 /* Advance to the next element. */
173 count[0]++;
174 base += sstride[0];
175 dest += dstride[0];
176 n = 0;
177 while (count[n] == extent[n])
80927a56
JJ
178 {
179 /* When we get to the end of a dimension, reset it and increment
180 the next dimension. */
181 count[n] = 0;
182 /* We could precalculate these products, but this is a less
183 frequently used path so probably not worth it. */
184 base -= sstride[n] * extent[n];
185 dest -= dstride[n] * extent[n];
186 n++;
187 if (n == rank)
188 {
189 /* Break out of the look. */
da96f5ab
TK
190 continue_loop = 0;
191 break;
80927a56
JJ
192 }
193 else
194 {
195 count[n]++;
196 base += sstride[n];
197 dest += dstride[n];
198 }
199 }
644cb69f
FXC
200 }
201}
202
203
64acfd99
JB
204extern void mminval_r16 (gfc_array_r16 * const restrict,
205 gfc_array_r16 * const restrict, const index_type * const restrict,
28dc6b33 206 gfc_array_l1 * const restrict);
644cb69f
FXC
207export_proto(mminval_r16);
208
209void
64acfd99
JB
210mminval_r16 (gfc_array_r16 * const restrict retarray,
211 gfc_array_r16 * const restrict array,
212 const index_type * const restrict pdim,
28dc6b33 213 gfc_array_l1 * const restrict mask)
644cb69f
FXC
214{
215 index_type count[GFC_MAX_DIMENSIONS];
216 index_type extent[GFC_MAX_DIMENSIONS];
217 index_type sstride[GFC_MAX_DIMENSIONS];
218 index_type dstride[GFC_MAX_DIMENSIONS];
219 index_type mstride[GFC_MAX_DIMENSIONS];
64acfd99
JB
220 GFC_REAL_16 * restrict dest;
221 const GFC_REAL_16 * restrict base;
28dc6b33 222 const GFC_LOGICAL_1 * restrict mbase;
644cb69f
FXC
223 int rank;
224 int dim;
225 index_type n;
226 index_type len;
227 index_type delta;
228 index_type mdelta;
28dc6b33 229 int mask_kind;
644cb69f
FXC
230
231 dim = (*pdim) - 1;
232 rank = GFC_DESCRIPTOR_RANK (array) - 1;
233
dfb55fdc 234 len = GFC_DESCRIPTOR_EXTENT(array,dim);
644cb69f
FXC
235 if (len <= 0)
236 return;
28dc6b33 237
21d1335b 238 mbase = mask->base_addr;
28dc6b33
TK
239
240 mask_kind = GFC_DESCRIPTOR_SIZE (mask);
241
242 if (mask_kind == 1 || mask_kind == 2 || mask_kind == 4 || mask_kind == 8
243#ifdef HAVE_GFC_LOGICAL_16
244 || mask_kind == 16
245#endif
246 )
247 mbase = GFOR_POINTER_TO_L1 (mbase, mask_kind);
248 else
249 runtime_error ("Funny sized logical array");
250
dfb55fdc
TK
251 delta = GFC_DESCRIPTOR_STRIDE(array,dim);
252 mdelta = GFC_DESCRIPTOR_STRIDE_BYTES(mask,dim);
644cb69f
FXC
253
254 for (n = 0; n < dim; n++)
255 {
dfb55fdc
TK
256 sstride[n] = GFC_DESCRIPTOR_STRIDE(array,n);
257 mstride[n] = GFC_DESCRIPTOR_STRIDE_BYTES(mask,n);
258 extent[n] = GFC_DESCRIPTOR_EXTENT(array,n);
80ee04b9
TK
259
260 if (extent[n] < 0)
261 extent[n] = 0;
262
644cb69f
FXC
263 }
264 for (n = dim; n < rank; n++)
265 {
dfb55fdc
TK
266 sstride[n] = GFC_DESCRIPTOR_STRIDE(array,n + 1);
267 mstride[n] = GFC_DESCRIPTOR_STRIDE_BYTES(mask, n + 1);
268 extent[n] = GFC_DESCRIPTOR_EXTENT(array, n + 1);
80ee04b9
TK
269
270 if (extent[n] < 0)
271 extent[n] = 0;
644cb69f
FXC
272 }
273
21d1335b 274 if (retarray->base_addr == NULL)
644cb69f 275 {
dfb55fdc 276 size_t alloc_size, str;
80ee04b9 277
644cb69f 278 for (n = 0; n < rank; n++)
80927a56
JJ
279 {
280 if (n == 0)
281 str = 1;
282 else
283 str= GFC_DESCRIPTOR_STRIDE(retarray,n-1) * extent[n-1];
dfb55fdc
TK
284
285 GFC_DIMENSION_SET(retarray->dim[n], 0, extent[n] - 1, str);
286
80927a56 287 }
644cb69f 288
dfb55fdc 289 alloc_size = sizeof (GFC_REAL_16) * GFC_DESCRIPTOR_STRIDE(retarray,rank-1)
80ee04b9
TK
290 * extent[rank-1];
291
644cb69f
FXC
292 retarray->offset = 0;
293 retarray->dtype = (array->dtype & ~GFC_DTYPE_RANK_MASK) | rank;
80ee04b9
TK
294
295 if (alloc_size == 0)
296 {
297 /* Make sure we have a zero-sized array. */
dfb55fdc 298 GFC_DIMENSION_SET(retarray->dim[0], 0, -1, 1);
80ee04b9
TK
299 return;
300 }
301 else
1a0fd3d3 302 retarray->base_addr = xmalloc (alloc_size);
80ee04b9 303
644cb69f
FXC
304 }
305 else
306 {
644cb69f 307 if (rank != GFC_DESCRIPTOR_RANK (retarray))
fd6590f8
TK
308 runtime_error ("rank of return array incorrect in MINVAL intrinsic");
309
9731c4a3 310 if (unlikely (compile_options.bounds_check))
fd6590f8 311 {
16bff921
TK
312 bounds_ifunction_return ((array_t *) retarray, extent,
313 "return value", "MINVAL");
314 bounds_equal_extents ((array_t *) mask, (array_t *) array,
315 "MASK argument", "MINVAL");
fd6590f8 316 }
644cb69f
FXC
317 }
318
319 for (n = 0; n < rank; n++)
320 {
321 count[n] = 0;
dfb55fdc 322 dstride[n] = GFC_DESCRIPTOR_STRIDE(retarray,n);
644cb69f 323 if (extent[n] <= 0)
80927a56 324 return;
644cb69f
FXC
325 }
326
21d1335b
TB
327 dest = retarray->base_addr;
328 base = array->base_addr;
644cb69f
FXC
329
330 while (base)
331 {
64acfd99 332 const GFC_REAL_16 * restrict src;
28dc6b33 333 const GFC_LOGICAL_1 * restrict msrc;
644cb69f
FXC
334 GFC_REAL_16 result;
335 src = base;
336 msrc = mbase;
337 {
338
80927a56
JJ
339#if defined (GFC_REAL_16_INFINITY)
340 result = GFC_REAL_16_INFINITY;
341#else
342 result = GFC_REAL_16_HUGE;
343#endif
344#if defined (GFC_REAL_16_QUIET_NAN)
345 int non_empty_p = 0;
346#endif
347 if (len <= 0)
644cb69f
FXC
348 *dest = GFC_REAL_16_HUGE;
349 else
350 {
351 for (n = 0; n < len; n++, src += delta, msrc += mdelta)
352 {
353
80927a56
JJ
354#if defined (GFC_REAL_16_INFINITY) || defined (GFC_REAL_16_QUIET_NAN)
355 if (*msrc)
356 {
357#if defined (GFC_REAL_16_QUIET_NAN)
358 non_empty_p = 1;
359 if (*src <= result)
360#endif
361 break;
362 }
363 }
364 if (unlikely (n >= len))
365 {
366#if defined (GFC_REAL_16_QUIET_NAN)
367 result = non_empty_p ? GFC_REAL_16_QUIET_NAN : GFC_REAL_16_HUGE;
368#else
369 result = GFC_REAL_16_HUGE;
370#endif
371 }
372 else for (; n < len; n++, src += delta, msrc += mdelta)
373 {
374#endif
375 if (*msrc && *src < result)
376 result = *src;
377 }
644cb69f
FXC
378 *dest = result;
379 }
380 }
381 /* Advance to the next element. */
382 count[0]++;
383 base += sstride[0];
384 mbase += mstride[0];
385 dest += dstride[0];
386 n = 0;
387 while (count[n] == extent[n])
80927a56
JJ
388 {
389 /* When we get to the end of a dimension, reset it and increment
390 the next dimension. */
391 count[n] = 0;
392 /* We could precalculate these products, but this is a less
393 frequently used path so probably not worth it. */
394 base -= sstride[n] * extent[n];
395 mbase -= mstride[n] * extent[n];
396 dest -= dstride[n] * extent[n];
397 n++;
398 if (n == rank)
399 {
400 /* Break out of the look. */
401 base = NULL;
402 break;
403 }
404 else
405 {
406 count[n]++;
407 base += sstride[n];
408 mbase += mstride[n];
409 dest += dstride[n];
410 }
411 }
644cb69f
FXC
412 }
413}
414
97a62038
TK
415
416extern void sminval_r16 (gfc_array_r16 * const restrict,
417 gfc_array_r16 * const restrict, const index_type * const restrict,
418 GFC_LOGICAL_4 *);
419export_proto(sminval_r16);
420
421void
422sminval_r16 (gfc_array_r16 * const restrict retarray,
423 gfc_array_r16 * const restrict array,
424 const index_type * const restrict pdim,
425 GFC_LOGICAL_4 * mask)
426{
802367d7
TK
427 index_type count[GFC_MAX_DIMENSIONS];
428 index_type extent[GFC_MAX_DIMENSIONS];
802367d7
TK
429 index_type dstride[GFC_MAX_DIMENSIONS];
430 GFC_REAL_16 * restrict dest;
97a62038
TK
431 index_type rank;
432 index_type n;
802367d7
TK
433 index_type dim;
434
97a62038
TK
435
436 if (*mask)
437 {
438 minval_r16 (retarray, array, pdim);
439 return;
440 }
802367d7
TK
441 /* Make dim zero based to avoid confusion. */
442 dim = (*pdim) - 1;
443 rank = GFC_DESCRIPTOR_RANK (array) - 1;
444
445 for (n = 0; n < dim; n++)
446 {
dfb55fdc 447 extent[n] = GFC_DESCRIPTOR_EXTENT(array,n);
802367d7
TK
448
449 if (extent[n] <= 0)
450 extent[n] = 0;
451 }
452
453 for (n = dim; n < rank; n++)
454 {
802367d7 455 extent[n] =
80927a56 456 GFC_DESCRIPTOR_EXTENT(array,n + 1);
802367d7
TK
457
458 if (extent[n] <= 0)
80927a56 459 extent[n] = 0;
802367d7 460 }
97a62038 461
21d1335b 462 if (retarray->base_addr == NULL)
97a62038 463 {
dfb55fdc 464 size_t alloc_size, str;
802367d7
TK
465
466 for (n = 0; n < rank; n++)
80927a56
JJ
467 {
468 if (n == 0)
469 str = 1;
470 else
471 str = GFC_DESCRIPTOR_STRIDE(retarray,n-1) * extent[n-1];
dfb55fdc
TK
472
473 GFC_DIMENSION_SET(retarray->dim[n], 0, extent[n] - 1, str);
474
80927a56 475 }
802367d7 476
97a62038 477 retarray->offset = 0;
802367d7
TK
478 retarray->dtype = (array->dtype & ~GFC_DTYPE_RANK_MASK) | rank;
479
dfb55fdc 480 alloc_size = sizeof (GFC_REAL_16) * GFC_DESCRIPTOR_STRIDE(retarray,rank-1)
802367d7
TK
481 * extent[rank-1];
482
483 if (alloc_size == 0)
484 {
485 /* Make sure we have a zero-sized array. */
dfb55fdc 486 GFC_DIMENSION_SET(retarray->dim[0], 0, -1, 1);
802367d7
TK
487 return;
488 }
489 else
1a0fd3d3 490 retarray->base_addr = xmalloc (alloc_size);
97a62038
TK
491 }
492 else
493 {
802367d7
TK
494 if (rank != GFC_DESCRIPTOR_RANK (retarray))
495 runtime_error ("rank of return array incorrect in"
496 " MINVAL intrinsic: is %ld, should be %ld",
497 (long int) (GFC_DESCRIPTOR_RANK (retarray)),
498 (long int) rank);
499
9731c4a3 500 if (unlikely (compile_options.bounds_check))
fd6590f8 501 {
802367d7
TK
502 for (n=0; n < rank; n++)
503 {
504 index_type ret_extent;
97a62038 505
dfb55fdc 506 ret_extent = GFC_DESCRIPTOR_EXTENT(retarray,n);
802367d7
TK
507 if (extent[n] != ret_extent)
508 runtime_error ("Incorrect extent in return value of"
509 " MINVAL intrinsic in dimension %ld:"
510 " is %ld, should be %ld", (long int) n + 1,
511 (long int) ret_extent, (long int) extent[n]);
512 }
fd6590f8
TK
513 }
514 }
97a62038 515
802367d7
TK
516 for (n = 0; n < rank; n++)
517 {
518 count[n] = 0;
dfb55fdc 519 dstride[n] = GFC_DESCRIPTOR_STRIDE(retarray,n);
802367d7
TK
520 }
521
21d1335b 522 dest = retarray->base_addr;
802367d7
TK
523
524 while(1)
525 {
526 *dest = GFC_REAL_16_HUGE;
527 count[0]++;
528 dest += dstride[0];
529 n = 0;
530 while (count[n] == extent[n])
80927a56 531 {
802367d7 532 /* When we get to the end of a dimension, reset it and increment
80927a56
JJ
533 the next dimension. */
534 count[n] = 0;
535 /* We could precalculate these products, but this is a less
536 frequently used path so probably not worth it. */
537 dest -= dstride[n] * extent[n];
538 n++;
539 if (n == rank)
802367d7 540 return;
80927a56
JJ
541 else
542 {
543 count[n]++;
544 dest += dstride[n];
545 }
802367d7
TK
546 }
547 }
97a62038
TK
548}
549
644cb69f 550#endif