1 /* Implementation of the MINLOC intrinsic
2 Copyright 2002, 2007 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 2 of the License, or (at your option) any later version.
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
21 Libgfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING. If not,
28 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA. */
31 #include "libgfortran.h"
37 #if defined (HAVE_GFC_REAL_10) && defined (HAVE_GFC_INTEGER_4)
40 extern void minloc1_4_r10 (gfc_array_i4
* const restrict
,
41 gfc_array_r10
* const restrict
, const index_type
* const restrict
);
42 export_proto(minloc1_4_r10
);
45 minloc1_4_r10 (gfc_array_i4
* const restrict retarray
,
46 gfc_array_r10
* const restrict array
,
47 const index_type
* const restrict pdim
)
49 index_type count
[GFC_MAX_DIMENSIONS
];
50 index_type extent
[GFC_MAX_DIMENSIONS
];
51 index_type sstride
[GFC_MAX_DIMENSIONS
];
52 index_type dstride
[GFC_MAX_DIMENSIONS
];
53 const GFC_REAL_10
* restrict base
;
54 GFC_INTEGER_4
* restrict dest
;
61 /* Make dim zero based to avoid confusion. */
63 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
65 len
= array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
66 delta
= array
->dim
[dim
].stride
;
68 for (n
= 0; n
< dim
; n
++)
70 sstride
[n
] = array
->dim
[n
].stride
;
71 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
76 for (n
= dim
; n
< rank
; n
++)
78 sstride
[n
] = array
->dim
[n
+ 1].stride
;
80 array
->dim
[n
+ 1].ubound
+ 1 - array
->dim
[n
+ 1].lbound
;
86 if (retarray
->data
== NULL
)
90 for (n
= 0; n
< rank
; n
++)
92 retarray
->dim
[n
].lbound
= 0;
93 retarray
->dim
[n
].ubound
= extent
[n
]-1;
95 retarray
->dim
[n
].stride
= 1;
97 retarray
->dim
[n
].stride
= retarray
->dim
[n
-1].stride
* extent
[n
-1];
100 retarray
->offset
= 0;
101 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
103 alloc_size
= sizeof (GFC_INTEGER_4
) * retarray
->dim
[rank
-1].stride
108 /* Make sure we have a zero-sized array. */
109 retarray
->dim
[0].lbound
= 0;
110 retarray
->dim
[0].ubound
= -1;
114 retarray
->data
= internal_malloc_size (alloc_size
);
118 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
119 runtime_error ("rank of return array incorrect");
122 for (n
= 0; n
< rank
; n
++)
125 dstride
[n
] = retarray
->dim
[n
].stride
;
131 dest
= retarray
->data
;
135 const GFC_REAL_10
* restrict src
;
136 GFC_INTEGER_4 result
;
141 minval
= GFC_REAL_10_HUGE
;
147 for (n
= 0; n
< len
; n
++, src
+= delta
)
150 if (*src
< minval
|| !result
)
153 result
= (GFC_INTEGER_4
)n
+ 1;
159 /* Advance to the next element. */
164 while (count
[n
] == extent
[n
])
166 /* When we get to the end of a dimension, reset it and increment
167 the next dimension. */
169 /* We could precalculate these products, but this is a less
170 frequently used path so probably not worth it. */
171 base
-= sstride
[n
] * extent
[n
];
172 dest
-= dstride
[n
] * extent
[n
];
176 /* Break out of the look. */
191 extern void mminloc1_4_r10 (gfc_array_i4
* const restrict
,
192 gfc_array_r10
* const restrict
, const index_type
* const restrict
,
193 gfc_array_l1
* const restrict
);
194 export_proto(mminloc1_4_r10
);
197 mminloc1_4_r10 (gfc_array_i4
* const restrict retarray
,
198 gfc_array_r10
* const restrict array
,
199 const index_type
* const restrict pdim
,
200 gfc_array_l1
* const restrict mask
)
202 index_type count
[GFC_MAX_DIMENSIONS
];
203 index_type extent
[GFC_MAX_DIMENSIONS
];
204 index_type sstride
[GFC_MAX_DIMENSIONS
];
205 index_type dstride
[GFC_MAX_DIMENSIONS
];
206 index_type mstride
[GFC_MAX_DIMENSIONS
];
207 GFC_INTEGER_4
* restrict dest
;
208 const GFC_REAL_10
* restrict base
;
209 const GFC_LOGICAL_1
* restrict mbase
;
219 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
221 len
= array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
227 mask_kind
= GFC_DESCRIPTOR_SIZE (mask
);
229 if (mask_kind
== 1 || mask_kind
== 2 || mask_kind
== 4 || mask_kind
== 8
230 #ifdef HAVE_GFC_LOGICAL_16
234 mbase
= GFOR_POINTER_TO_L1 (mbase
, mask_kind
);
236 runtime_error ("Funny sized logical array");
238 delta
= array
->dim
[dim
].stride
;
239 mdelta
= mask
->dim
[dim
].stride
* mask_kind
;
241 for (n
= 0; n
< dim
; n
++)
243 sstride
[n
] = array
->dim
[n
].stride
;
244 mstride
[n
] = mask
->dim
[n
].stride
* mask_kind
;
245 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
251 for (n
= dim
; n
< rank
; n
++)
253 sstride
[n
] = array
->dim
[n
+ 1].stride
;
254 mstride
[n
] = mask
->dim
[n
+ 1].stride
* mask_kind
;
256 array
->dim
[n
+ 1].ubound
+ 1 - array
->dim
[n
+ 1].lbound
;
262 if (retarray
->data
== NULL
)
266 for (n
= 0; n
< rank
; n
++)
268 retarray
->dim
[n
].lbound
= 0;
269 retarray
->dim
[n
].ubound
= extent
[n
]-1;
271 retarray
->dim
[n
].stride
= 1;
273 retarray
->dim
[n
].stride
= retarray
->dim
[n
-1].stride
* extent
[n
-1];
276 alloc_size
= sizeof (GFC_INTEGER_4
) * retarray
->dim
[rank
-1].stride
279 retarray
->offset
= 0;
280 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
284 /* Make sure we have a zero-sized array. */
285 retarray
->dim
[0].lbound
= 0;
286 retarray
->dim
[0].ubound
= -1;
290 retarray
->data
= internal_malloc_size (alloc_size
);
295 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
296 runtime_error ("rank of return array incorrect");
299 for (n
= 0; n
< rank
; n
++)
302 dstride
[n
] = retarray
->dim
[n
].stride
;
307 dest
= retarray
->data
;
312 const GFC_REAL_10
* restrict src
;
313 const GFC_LOGICAL_1
* restrict msrc
;
314 GFC_INTEGER_4 result
;
320 minval
= GFC_REAL_10_HUGE
;
326 for (n
= 0; n
< len
; n
++, src
+= delta
, msrc
+= mdelta
)
329 if (*msrc
&& (*src
< minval
|| !result
))
332 result
= (GFC_INTEGER_4
)n
+ 1;
338 /* Advance to the next element. */
344 while (count
[n
] == extent
[n
])
346 /* When we get to the end of a dimension, reset it and increment
347 the next dimension. */
349 /* We could precalculate these products, but this is a less
350 frequently used path so probably not worth it. */
351 base
-= sstride
[n
] * extent
[n
];
352 mbase
-= mstride
[n
] * extent
[n
];
353 dest
-= dstride
[n
] * extent
[n
];
357 /* Break out of the look. */
373 extern void sminloc1_4_r10 (gfc_array_i4
* const restrict
,
374 gfc_array_r10
* const restrict
, const index_type
* const restrict
,
376 export_proto(sminloc1_4_r10
);
379 sminloc1_4_r10 (gfc_array_i4
* const restrict retarray
,
380 gfc_array_r10
* const restrict array
,
381 const index_type
* const restrict pdim
,
382 GFC_LOGICAL_4
* mask
)
391 minloc1_4_r10 (retarray
, array
, pdim
);
394 rank
= GFC_DESCRIPTOR_RANK (array
);
396 runtime_error ("Rank of array needs to be > 0");
398 if (retarray
->data
== NULL
)
400 retarray
->dim
[0].lbound
= 0;
401 retarray
->dim
[0].ubound
= rank
-1;
402 retarray
->dim
[0].stride
= 1;
403 retarray
->dtype
= (retarray
->dtype
& ~GFC_DTYPE_RANK_MASK
) | 1;
404 retarray
->offset
= 0;
405 retarray
->data
= internal_malloc_size (sizeof (GFC_INTEGER_4
) * rank
);
409 if (GFC_DESCRIPTOR_RANK (retarray
) != 1)
410 runtime_error ("rank of return array does not equal 1");
412 if (retarray
->dim
[0].ubound
+ 1 - retarray
->dim
[0].lbound
!= rank
)
413 runtime_error ("dimension of return array incorrect");
416 dstride
= retarray
->dim
[0].stride
;
417 dest
= retarray
->data
;
419 for (n
= 0; n
< rank
; n
++)
420 dest
[n
* dstride
] = 0 ;