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 (libgfor).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 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 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with libgfor; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
27 #include "libgfortran.h"
31 __minloc0_4_r8 (gfc_array_i4
* retarray
, gfc_array_r8
*array
)
33 index_type count
[GFC_MAX_DIMENSIONS
];
34 index_type extent
[GFC_MAX_DIMENSIONS
];
35 index_type sstride
[GFC_MAX_DIMENSIONS
];
42 rank
= GFC_DESCRIPTOR_RANK (array
);
44 assert (GFC_DESCRIPTOR_RANK (retarray
) == 1);
45 assert (retarray
->dim
[0].ubound
+ 1 - retarray
->dim
[0].lbound
== rank
);
46 if (array
->dim
[0].stride
== 0)
47 array
->dim
[0].stride
= 1;
48 if (retarray
->dim
[0].stride
== 0)
49 retarray
->dim
[0].stride
= 1;
51 dstride
= retarray
->dim
[0].stride
;
52 dest
= retarray
->data
;
53 for (n
= 0; n
< rank
; n
++)
55 sstride
[n
] = array
->dim
[n
].stride
;
56 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
60 /* Set the return value. */
61 for (n
= 0; n
< rank
; n
++)
62 dest
[n
* dstride
] = 0;
69 /* Initialize the return value. */
70 for (n
= 0; n
< rank
; n
++)
71 dest
[n
* dstride
] = 1;
76 minval
= GFC_REAL_8_HUGE
;
81 /* Implementation start. */
86 for (n
= 0; n
< rank
; n
++)
87 dest
[n
* dstride
] = count
[n
] + 1;
89 /* Implementation end. */
91 /* Advance to the next element. */
95 while (count
[n
] == extent
[n
])
97 /* When we get to the end of a dimension, reset it and increment
98 the next dimension. */
100 /* We could precalculate these products, but this is a less
101 frequently used path so proabably not worth it. */
102 base
-= sstride
[n
] * extent
[n
];
106 /* Break out of the loop. */
121 __mminloc0_4_r8 (gfc_array_i4
* retarray
, gfc_array_r8
*array
, gfc_array_l4
* mask
)
123 index_type count
[GFC_MAX_DIMENSIONS
];
124 index_type extent
[GFC_MAX_DIMENSIONS
];
125 index_type sstride
[GFC_MAX_DIMENSIONS
];
126 index_type mstride
[GFC_MAX_DIMENSIONS
];
130 GFC_LOGICAL_4
*mbase
;
134 rank
= GFC_DESCRIPTOR_RANK (array
);
136 assert (GFC_DESCRIPTOR_RANK (retarray
) == 1);
137 assert (retarray
->dim
[0].ubound
+ 1 - retarray
->dim
[0].lbound
== rank
);
138 assert (GFC_DESCRIPTOR_RANK (mask
) == rank
);
140 if (array
->dim
[0].stride
== 0)
141 array
->dim
[0].stride
= 1;
142 if (retarray
->dim
[0].stride
== 0)
143 retarray
->dim
[0].stride
= 1;
144 if (retarray
->dim
[0].stride
== 0)
145 retarray
->dim
[0].stride
= 1;
147 dstride
= retarray
->dim
[0].stride
;
148 dest
= retarray
->data
;
149 for (n
= 0; n
< rank
; n
++)
151 sstride
[n
] = array
->dim
[n
].stride
;
152 mstride
[n
] = mask
->dim
[n
].stride
;
153 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
157 /* Set the return value. */
158 for (n
= 0; n
< rank
; n
++)
159 dest
[n
* dstride
] = 0;
167 if (GFC_DESCRIPTOR_SIZE (mask
) != 4)
169 /* This allows the same loop to be used for all logical types. */
170 assert (GFC_DESCRIPTOR_SIZE (mask
) == 8);
171 for (n
= 0; n
< rank
; n
++)
173 mbase
= (GFOR_POINTER_L8_TO_L4 (mbase
));
177 /* Initialize the return value. */
178 for (n
= 0; n
< rank
; n
++)
179 dest
[n
* dstride
] = 1;
184 minval
= GFC_REAL_8_HUGE
;
189 /* Implementation start. */
191 if (*mbase
&& *base
< minval
)
194 for (n
= 0; n
< rank
; n
++)
195 dest
[n
* dstride
] = count
[n
] + 1;
197 /* Implementation end. */
199 /* Advance to the next element. */
204 while (count
[n
] == extent
[n
])
206 /* When we get to the end of a dimension, reset it and increment
207 the next dimension. */
209 /* We could precalculate these products, but this is a less
210 frequently used path so proabably not worth it. */
211 base
-= sstride
[n
] * extent
[n
];
212 mbase
-= mstride
[n
] * extent
[n
];
216 /* Break out of the loop. */