1 /* Implementation of the MAXLOC intrinsic
2 Copyright (C) 2002-2018 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"
30 #if defined (HAVE_GFC_INTEGER_2) && defined (HAVE_GFC_INTEGER_8)
33 extern void maxloc0_8_i2 (gfc_array_i8
* const restrict retarray
,
34 gfc_array_i2
* const restrict array
, GFC_LOGICAL_4
);
35 export_proto(maxloc0_8_i2
);
38 maxloc0_8_i2 (gfc_array_i8
* const restrict retarray
,
39 gfc_array_i2
* const restrict array
, GFC_LOGICAL_4 back
)
41 index_type count
[GFC_MAX_DIMENSIONS
];
42 index_type extent
[GFC_MAX_DIMENSIONS
];
43 index_type sstride
[GFC_MAX_DIMENSIONS
];
45 const GFC_INTEGER_2
*base
;
46 GFC_INTEGER_8
* restrict dest
;
50 rank
= GFC_DESCRIPTOR_RANK (array
);
52 runtime_error ("Rank of array needs to be > 0");
54 if (retarray
->base_addr
== NULL
)
56 GFC_DIMENSION_SET(retarray
->dim
[0], 0, rank
-1, 1);
57 retarray
->dtype
.rank
= 1;
59 retarray
->base_addr
= xmallocarray (rank
, sizeof (GFC_INTEGER_8
));
63 if (unlikely (compile_options
.bounds_check
))
64 bounds_iforeach_return ((array_t
*) retarray
, (array_t
*) array
,
68 dstride
= GFC_DESCRIPTOR_STRIDE(retarray
,0);
69 dest
= retarray
->base_addr
;
70 for (n
= 0; n
< rank
; n
++)
72 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
);
73 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,n
);
77 /* Set the return value. */
78 for (n
= 0; n
< rank
; n
++)
79 dest
[n
* dstride
] = 0;
84 base
= array
->base_addr
;
86 /* Initialize the return value. */
87 for (n
= 0; n
< rank
; n
++)
88 dest
[n
* dstride
] = 1;
92 #if defined(GFC_INTEGER_2_QUIET_NAN)
96 #if defined(GFC_INTEGER_2_INFINITY)
97 maxval
= -GFC_INTEGER_2_INFINITY
;
99 maxval
= (-GFC_INTEGER_2_HUGE
-1);
103 /* Implementation start. */
105 #if defined(GFC_INTEGER_2_QUIET_NAN)
106 if (unlikely (!fast
))
114 for (n
= 0; n
< rank
; n
++)
115 dest
[n
* dstride
] = count
[n
] + 1;
120 while (++count
[0] != extent
[0]);
129 if (unlikely (*base
>= maxval
))
132 for (n
= 0; n
< rank
; n
++)
133 dest
[n
* dstride
] = count
[n
] + 1;
137 while (++count
[0] != extent
[0]);
141 if (unlikely (*base
> maxval
))
144 for (n
= 0; n
< rank
; n
++)
145 dest
[n
* dstride
] = count
[n
] + 1;
147 /* Implementation end. */
148 /* Advance to the next element. */
151 while (++count
[0] != extent
[0]);
155 /* When we get to the end of a dimension, reset it and increment
156 the next dimension. */
158 /* We could precalculate these products, but this is a less
159 frequently used path so probably not worth it. */
160 base
-= sstride
[n
] * extent
[n
];
164 /* Break out of the loop. */
174 while (count
[n
] == extent
[n
]);
179 extern void mmaxloc0_8_i2 (gfc_array_i8
* const restrict
,
180 gfc_array_i2
* const restrict
, gfc_array_l1
* const restrict
,
182 export_proto(mmaxloc0_8_i2
);
185 mmaxloc0_8_i2 (gfc_array_i8
* const restrict retarray
,
186 gfc_array_i2
* const restrict array
,
187 gfc_array_l1
* const restrict mask
, GFC_LOGICAL_4 back
)
189 index_type count
[GFC_MAX_DIMENSIONS
];
190 index_type extent
[GFC_MAX_DIMENSIONS
];
191 index_type sstride
[GFC_MAX_DIMENSIONS
];
192 index_type mstride
[GFC_MAX_DIMENSIONS
];
195 const GFC_INTEGER_2
*base
;
196 GFC_LOGICAL_1
*mbase
;
201 rank
= GFC_DESCRIPTOR_RANK (array
);
203 runtime_error ("Rank of array needs to be > 0");
205 if (retarray
->base_addr
== NULL
)
207 GFC_DIMENSION_SET(retarray
->dim
[0], 0, rank
- 1, 1);
208 retarray
->dtype
.rank
= 1;
209 retarray
->offset
= 0;
210 retarray
->base_addr
= xmallocarray (rank
, sizeof (GFC_INTEGER_8
));
214 if (unlikely (compile_options
.bounds_check
))
217 bounds_iforeach_return ((array_t
*) retarray
, (array_t
*) array
,
219 bounds_equal_extents ((array_t
*) mask
, (array_t
*) array
,
220 "MASK argument", "MAXLOC");
224 mask_kind
= GFC_DESCRIPTOR_SIZE (mask
);
226 mbase
= mask
->base_addr
;
228 if (mask_kind
== 1 || mask_kind
== 2 || mask_kind
== 4 || mask_kind
== 8
229 #ifdef HAVE_GFC_LOGICAL_16
233 mbase
= GFOR_POINTER_TO_L1 (mbase
, mask_kind
);
235 runtime_error ("Funny sized logical array");
237 dstride
= GFC_DESCRIPTOR_STRIDE(retarray
,0);
238 dest
= retarray
->base_addr
;
239 for (n
= 0; n
< rank
; n
++)
241 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
);
242 mstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(mask
,n
);
243 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,n
);
247 /* Set the return value. */
248 for (n
= 0; n
< rank
; n
++)
249 dest
[n
* dstride
] = 0;
254 base
= array
->base_addr
;
256 /* Initialize the return value. */
257 for (n
= 0; n
< rank
; n
++)
258 dest
[n
* dstride
] = 0;
261 GFC_INTEGER_2 maxval
;
264 #if defined(GFC_INTEGER_2_INFINITY)
265 maxval
= -GFC_INTEGER_2_INFINITY
;
267 maxval
= (-GFC_INTEGER_2_HUGE
-1);
271 /* Implementation start. */
273 if (unlikely (!fast
))
279 #if defined(GFC_INTEGER_2_QUIET_NAN)
280 if (unlikely (dest
[0] == 0))
281 for (n
= 0; n
< rank
; n
++)
282 dest
[n
* dstride
] = count
[n
] + 1;
288 for (n
= 0; n
< rank
; n
++)
289 dest
[n
* dstride
] = count
[n
] + 1;
296 while (++count
[0] != extent
[0]);
304 if (*mbase
&& *base
>= maxval
)
307 for (n
= 0; n
< rank
; n
++)
308 dest
[n
* dstride
] = count
[n
] + 1;
312 while (++count
[0] != extent
[0]);
316 if (*mbase
&& unlikely (*base
> maxval
))
319 for (n
= 0; n
< rank
; n
++)
320 dest
[n
* dstride
] = count
[n
] + 1;
322 /* Implementation end. */
323 /* Advance to the next element. */
327 while (++count
[0] != extent
[0]);
331 /* When we get to the end of a dimension, reset it and increment
332 the next dimension. */
334 /* We could precalculate these products, but this is a less
335 frequently used path so probably not worth it. */
336 base
-= sstride
[n
] * extent
[n
];
337 mbase
-= mstride
[n
] * extent
[n
];
341 /* Break out of the loop. */
352 while (count
[n
] == extent
[n
]);
358 extern void smaxloc0_8_i2 (gfc_array_i8
* const restrict
,
359 gfc_array_i2
* const restrict
, GFC_LOGICAL_4
*, GFC_LOGICAL_4
);
360 export_proto(smaxloc0_8_i2
);
363 smaxloc0_8_i2 (gfc_array_i8
* const restrict retarray
,
364 gfc_array_i2
* const restrict array
,
365 GFC_LOGICAL_4
* mask
, GFC_LOGICAL_4 back
)
374 maxloc0_8_i2 (retarray
, array
, back
);
378 rank
= GFC_DESCRIPTOR_RANK (array
);
381 runtime_error ("Rank of array needs to be > 0");
383 if (retarray
->base_addr
== NULL
)
385 GFC_DIMENSION_SET(retarray
->dim
[0], 0, rank
-1, 1);
386 retarray
->dtype
.rank
= 1;
387 retarray
->offset
= 0;
388 retarray
->base_addr
= xmallocarray (rank
, sizeof (GFC_INTEGER_8
));
390 else if (unlikely (compile_options
.bounds_check
))
392 bounds_iforeach_return ((array_t
*) retarray
, (array_t
*) array
,
396 dstride
= GFC_DESCRIPTOR_STRIDE(retarray
,0);
397 dest
= retarray
->base_addr
;
398 for (n
= 0; n
<rank
; n
++)
399 dest
[n
* dstride
] = 0 ;