1 /* Implementation of the MAXVAL intrinsic
2 Copyright 2002, 2007, 2009 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 3 of the License, or (at your option) any later version.
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
31 #if defined (HAVE_GFC_REAL_8) && defined (HAVE_GFC_REAL_8)
34 extern void maxval_r8 (gfc_array_r8
* const restrict
,
35 gfc_array_r8
* const restrict
, const index_type
* const restrict
);
36 export_proto(maxval_r8
);
39 maxval_r8 (gfc_array_r8
* const restrict retarray
,
40 gfc_array_r8
* const restrict array
,
41 const index_type
* const restrict pdim
)
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
];
47 const GFC_REAL_8
* restrict base
;
48 GFC_REAL_8
* restrict dest
;
56 /* Make dim zero based to avoid confusion. */
58 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
60 len
= GFC_DESCRIPTOR_EXTENT(array
,dim
);
63 delta
= GFC_DESCRIPTOR_STRIDE(array
,dim
);
65 for (n
= 0; n
< dim
; n
++)
67 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
);
68 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,n
);
73 for (n
= dim
; n
< rank
; n
++)
75 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
, n
+ 1);
76 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
, n
+ 1);
82 if (retarray
->data
== NULL
)
84 size_t alloc_size
, str
;
86 for (n
= 0; n
< rank
; n
++)
91 str
= GFC_DESCRIPTOR_STRIDE(retarray
,n
-1) * extent
[n
-1];
93 GFC_DIMENSION_SET(retarray
->dim
[n
], 0, extent
[n
] - 1, str
);
98 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
100 alloc_size
= sizeof (GFC_REAL_8
) * GFC_DESCRIPTOR_STRIDE(retarray
,rank
-1)
105 /* Make sure we have a zero-sized array. */
106 GFC_DIMENSION_SET(retarray
->dim
[0], 0, -1, 1);
111 retarray
->data
= internal_malloc_size (alloc_size
);
115 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
116 runtime_error ("rank of return array incorrect in"
117 " MAXVAL intrinsic: is %ld, should be %ld",
118 (long int) (GFC_DESCRIPTOR_RANK (retarray
)),
121 if (unlikely (compile_options
.bounds_check
))
122 bounds_ifunction_return ((array_t
*) retarray
, extent
,
123 "return value", "MAXVAL");
126 for (n
= 0; n
< rank
; n
++)
129 dstride
[n
] = GFC_DESCRIPTOR_STRIDE(retarray
,n
);
135 dest
= retarray
->data
;
138 while (continue_loop
)
140 const GFC_REAL_8
* restrict src
;
145 #if defined (GFC_REAL_8_INFINITY)
146 result
= -GFC_REAL_8_INFINITY
;
148 result
= -GFC_REAL_8_HUGE
;
151 *dest
= -GFC_REAL_8_HUGE
;
154 for (n
= 0; n
< len
; n
++, src
+= delta
)
157 #if defined (GFC_REAL_8_QUIET_NAN)
161 if (unlikely (n
>= len
))
162 result
= GFC_REAL_8_QUIET_NAN
;
163 else for (; n
< len
; n
++, src
+= delta
)
172 /* Advance to the next element. */
177 while (count
[n
] == extent
[n
])
179 /* When we get to the end of a dimension, reset it and increment
180 the next dimension. */
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
];
189 /* Break out of the look. */
204 extern void mmaxval_r8 (gfc_array_r8
* const restrict
,
205 gfc_array_r8
* const restrict
, const index_type
* const restrict
,
206 gfc_array_l1
* const restrict
);
207 export_proto(mmaxval_r8
);
210 mmaxval_r8 (gfc_array_r8
* const restrict retarray
,
211 gfc_array_r8
* const restrict array
,
212 const index_type
* const restrict pdim
,
213 gfc_array_l1
* const restrict mask
)
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
];
220 GFC_REAL_8
* restrict dest
;
221 const GFC_REAL_8
* restrict base
;
222 const GFC_LOGICAL_1
* restrict mbase
;
232 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
234 len
= GFC_DESCRIPTOR_EXTENT(array
,dim
);
240 mask_kind
= GFC_DESCRIPTOR_SIZE (mask
);
242 if (mask_kind
== 1 || mask_kind
== 2 || mask_kind
== 4 || mask_kind
== 8
243 #ifdef HAVE_GFC_LOGICAL_16
247 mbase
= GFOR_POINTER_TO_L1 (mbase
, mask_kind
);
249 runtime_error ("Funny sized logical array");
251 delta
= GFC_DESCRIPTOR_STRIDE(array
,dim
);
252 mdelta
= GFC_DESCRIPTOR_STRIDE_BYTES(mask
,dim
);
254 for (n
= 0; n
< dim
; n
++)
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
);
264 for (n
= dim
; n
< rank
; n
++)
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);
274 if (retarray
->data
== NULL
)
276 size_t alloc_size
, str
;
278 for (n
= 0; n
< rank
; n
++)
283 str
= GFC_DESCRIPTOR_STRIDE(retarray
,n
-1) * extent
[n
-1];
285 GFC_DIMENSION_SET(retarray
->dim
[n
], 0, extent
[n
] - 1, str
);
289 alloc_size
= sizeof (GFC_REAL_8
) * GFC_DESCRIPTOR_STRIDE(retarray
,rank
-1)
292 retarray
->offset
= 0;
293 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
297 /* Make sure we have a zero-sized array. */
298 GFC_DIMENSION_SET(retarray
->dim
[0], 0, -1, 1);
302 retarray
->data
= internal_malloc_size (alloc_size
);
307 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
308 runtime_error ("rank of return array incorrect in MAXVAL intrinsic");
310 if (unlikely (compile_options
.bounds_check
))
312 bounds_ifunction_return ((array_t
*) retarray
, extent
,
313 "return value", "MAXVAL");
314 bounds_equal_extents ((array_t
*) mask
, (array_t
*) array
,
315 "MASK argument", "MAXVAL");
319 for (n
= 0; n
< rank
; n
++)
322 dstride
[n
] = GFC_DESCRIPTOR_STRIDE(retarray
,n
);
327 dest
= retarray
->data
;
332 const GFC_REAL_8
* restrict src
;
333 const GFC_LOGICAL_1
* restrict msrc
;
339 #if defined (GFC_REAL_8_INFINITY)
340 result
= -GFC_REAL_8_INFINITY
;
342 result
= -GFC_REAL_8_HUGE
;
344 #if defined (GFC_REAL_8_QUIET_NAN)
348 *dest
= -GFC_REAL_8_HUGE
;
351 for (n
= 0; n
< len
; n
++, src
+= delta
, msrc
+= mdelta
)
354 #if defined (GFC_REAL_8_INFINITY) || defined (GFC_REAL_8_QUIET_NAN)
357 #if defined (GFC_REAL_8_QUIET_NAN)
364 if (unlikely (n
>= len
))
366 #if defined (GFC_REAL_8_QUIET_NAN)
367 result
= non_empty_p
? GFC_REAL_8_QUIET_NAN
: -GFC_REAL_8_HUGE
;
369 result
= -GFC_REAL_8_HUGE
;
372 else for (; n
< len
; n
++, src
+= delta
, msrc
+= mdelta
)
375 if (*msrc
&& *src
> result
)
381 /* Advance to the next element. */
387 while (count
[n
] == extent
[n
])
389 /* When we get to the end of a dimension, reset it and increment
390 the next dimension. */
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
];
400 /* Break out of the look. */
416 extern void smaxval_r8 (gfc_array_r8
* const restrict
,
417 gfc_array_r8
* const restrict
, const index_type
* const restrict
,
419 export_proto(smaxval_r8
);
422 smaxval_r8 (gfc_array_r8
* const restrict retarray
,
423 gfc_array_r8
* const restrict array
,
424 const index_type
* const restrict pdim
,
425 GFC_LOGICAL_4
* mask
)
427 index_type count
[GFC_MAX_DIMENSIONS
];
428 index_type extent
[GFC_MAX_DIMENSIONS
];
429 index_type sstride
[GFC_MAX_DIMENSIONS
];
430 index_type dstride
[GFC_MAX_DIMENSIONS
];
431 GFC_REAL_8
* restrict dest
;
439 maxval_r8 (retarray
, array
, pdim
);
442 /* Make dim zero based to avoid confusion. */
444 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
446 for (n
= 0; n
< dim
; n
++)
448 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
);
449 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,n
);
455 for (n
= dim
; n
< rank
; n
++)
457 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
+ 1);
459 GFC_DESCRIPTOR_EXTENT(array
,n
+ 1);
465 if (retarray
->data
== NULL
)
467 size_t alloc_size
, str
;
469 for (n
= 0; n
< rank
; n
++)
474 str
= GFC_DESCRIPTOR_STRIDE(retarray
,n
-1) * extent
[n
-1];
476 GFC_DIMENSION_SET(retarray
->dim
[n
], 0, extent
[n
] - 1, str
);
480 retarray
->offset
= 0;
481 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
483 alloc_size
= sizeof (GFC_REAL_8
) * GFC_DESCRIPTOR_STRIDE(retarray
,rank
-1)
488 /* Make sure we have a zero-sized array. */
489 GFC_DIMENSION_SET(retarray
->dim
[0], 0, -1, 1);
493 retarray
->data
= internal_malloc_size (alloc_size
);
497 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
498 runtime_error ("rank of return array incorrect in"
499 " MAXVAL intrinsic: is %ld, should be %ld",
500 (long int) (GFC_DESCRIPTOR_RANK (retarray
)),
503 if (unlikely (compile_options
.bounds_check
))
505 for (n
=0; n
< rank
; n
++)
507 index_type ret_extent
;
509 ret_extent
= GFC_DESCRIPTOR_EXTENT(retarray
,n
);
510 if (extent
[n
] != ret_extent
)
511 runtime_error ("Incorrect extent in return value of"
512 " MAXVAL intrinsic in dimension %ld:"
513 " is %ld, should be %ld", (long int) n
+ 1,
514 (long int) ret_extent
, (long int) extent
[n
]);
519 for (n
= 0; n
< rank
; n
++)
522 dstride
[n
] = GFC_DESCRIPTOR_STRIDE(retarray
,n
);
525 dest
= retarray
->data
;
529 *dest
= -GFC_REAL_8_HUGE
;
533 while (count
[n
] == extent
[n
])
535 /* When we get to the end of a dimension, reset it and increment
536 the next dimension. */
538 /* We could precalculate these products, but this is a less
539 frequently used path so probably not worth it. */
540 dest
-= dstride
[n
] * extent
[n
];