1 /* Implementation of the MINLOC intrinsic
2 Copyright 2002 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., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. */
36 #include "libgfortran.h"
39 extern void minloc1_4_r8 (gfc_array_i4
*, gfc_array_r8
*, index_type
*);
40 export_proto(minloc1_4_r8
);
43 minloc1_4_r8 (gfc_array_i4
*retarray
, gfc_array_r8
*array
, index_type
*pdim
)
45 index_type count
[GFC_MAX_DIMENSIONS
];
46 index_type extent
[GFC_MAX_DIMENSIONS
];
47 index_type sstride
[GFC_MAX_DIMENSIONS
];
48 index_type dstride
[GFC_MAX_DIMENSIONS
];
57 /* Make dim zero based to avoid confusion. */
59 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
61 /* TODO: It should be a front end job to correctly set the strides. */
63 if (array
->dim
[0].stride
== 0)
64 array
->dim
[0].stride
= 1;
66 len
= array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
67 delta
= array
->dim
[dim
].stride
;
69 for (n
= 0; n
< dim
; n
++)
71 sstride
[n
] = array
->dim
[n
].stride
;
72 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
74 for (n
= dim
; n
< rank
; n
++)
76 sstride
[n
] = array
->dim
[n
+ 1].stride
;
78 array
->dim
[n
+ 1].ubound
+ 1 - array
->dim
[n
+ 1].lbound
;
81 if (retarray
->data
== NULL
)
83 for (n
= 0; n
< rank
; n
++)
85 retarray
->dim
[n
].lbound
= 0;
86 retarray
->dim
[n
].ubound
= extent
[n
]-1;
88 retarray
->dim
[n
].stride
= 1;
90 retarray
->dim
[n
].stride
= retarray
->dim
[n
-1].stride
* extent
[n
-1];
94 = internal_malloc_size (sizeof (GFC_INTEGER_4
)
95 * retarray
->dim
[rank
-1].stride
98 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
102 if (retarray
->dim
[0].stride
== 0)
103 retarray
->dim
[0].stride
= 1;
105 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
106 runtime_error ("rank of return array incorrect");
109 for (n
= 0; n
< rank
; n
++)
112 dstride
[n
] = retarray
->dim
[n
].stride
;
118 dest
= retarray
->data
;
123 GFC_INTEGER_4 result
;
128 minval
= GFC_REAL_8_HUGE
;
134 for (n
= 0; n
< len
; n
++, src
+= delta
)
140 result
= (GFC_INTEGER_4
)n
+ 1;
146 /* Advance to the next element. */
151 while (count
[n
] == extent
[n
])
153 /* When we get to the end of a dimension, reset it and increment
154 the next dimension. */
156 /* We could precalculate these products, but this is a less
157 frequently used path so proabably not worth it. */
158 base
-= sstride
[n
] * extent
[n
];
159 dest
-= dstride
[n
] * extent
[n
];
163 /* Break out of the look. */
178 extern void mminloc1_4_r8 (gfc_array_i4
*, gfc_array_r8
*, index_type
*,
180 export_proto(mminloc1_4_r8
);
183 mminloc1_4_r8 (gfc_array_i4
* retarray
, gfc_array_r8
* array
,
184 index_type
*pdim
, gfc_array_l4
* mask
)
186 index_type count
[GFC_MAX_DIMENSIONS
];
187 index_type extent
[GFC_MAX_DIMENSIONS
];
188 index_type sstride
[GFC_MAX_DIMENSIONS
];
189 index_type dstride
[GFC_MAX_DIMENSIONS
];
190 index_type mstride
[GFC_MAX_DIMENSIONS
];
193 GFC_LOGICAL_4
*mbase
;
202 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
204 /* TODO: It should be a front end job to correctly set the strides. */
206 if (array
->dim
[0].stride
== 0)
207 array
->dim
[0].stride
= 1;
209 if (mask
->dim
[0].stride
== 0)
210 mask
->dim
[0].stride
= 1;
212 len
= array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
215 delta
= array
->dim
[dim
].stride
;
216 mdelta
= mask
->dim
[dim
].stride
;
218 for (n
= 0; n
< dim
; n
++)
220 sstride
[n
] = array
->dim
[n
].stride
;
221 mstride
[n
] = mask
->dim
[n
].stride
;
222 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
224 for (n
= dim
; n
< rank
; n
++)
226 sstride
[n
] = array
->dim
[n
+ 1].stride
;
227 mstride
[n
] = mask
->dim
[n
+ 1].stride
;
229 array
->dim
[n
+ 1].ubound
+ 1 - array
->dim
[n
+ 1].lbound
;
232 if (retarray
->data
== NULL
)
234 for (n
= 0; n
< rank
; n
++)
236 retarray
->dim
[n
].lbound
= 0;
237 retarray
->dim
[n
].ubound
= extent
[n
]-1;
239 retarray
->dim
[n
].stride
= 1;
241 retarray
->dim
[n
].stride
= retarray
->dim
[n
-1].stride
* extent
[n
-1];
245 = internal_malloc_size (sizeof (GFC_INTEGER_4
)
246 * retarray
->dim
[rank
-1].stride
248 retarray
->offset
= 0;
249 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
253 if (retarray
->dim
[0].stride
== 0)
254 retarray
->dim
[0].stride
= 1;
256 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
257 runtime_error ("rank of return array incorrect");
260 for (n
= 0; n
< rank
; n
++)
263 dstride
[n
] = retarray
->dim
[n
].stride
;
268 dest
= retarray
->data
;
272 if (GFC_DESCRIPTOR_SIZE (mask
) != 4)
274 /* This allows the same loop to be used for all logical types. */
275 assert (GFC_DESCRIPTOR_SIZE (mask
) == 8);
276 for (n
= 0; n
< rank
; n
++)
279 mbase
= (GFOR_POINTER_L8_TO_L4 (mbase
));
286 GFC_INTEGER_4 result
;
292 minval
= GFC_REAL_8_HUGE
;
298 for (n
= 0; n
< len
; n
++, src
+= delta
, msrc
+= mdelta
)
301 if (*msrc
&& *src
< minval
)
304 result
= (GFC_INTEGER_4
)n
+ 1;
310 /* Advance to the next element. */
316 while (count
[n
] == extent
[n
])
318 /* When we get to the end of a dimension, reset it and increment
319 the next dimension. */
321 /* We could precalculate these products, but this is a less
322 frequently used path so proabably not worth it. */
323 base
-= sstride
[n
] * extent
[n
];
324 mbase
-= mstride
[n
] * extent
[n
];
325 dest
-= dstride
[n
] * extent
[n
];
329 /* Break out of the look. */