Merge tree-ssa-20020619-branch into mainline.
[official-gcc.git] / libgfortran / generated / minval_r4.c
blob2ea19e451d3fcfc45262d5de0fee453992dce542
1 /* Implementation of the MINVAL 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. */
22 #include "config.h"
23 #include <stdlib.h>
24 #include <assert.h>
25 #include <float.h>
26 #include "libgfortran.h"
29 void
30 __minval_r4 (gfc_array_r4 * retarray, gfc_array_r4 *array, index_type *pdim)
32 index_type count[GFC_MAX_DIMENSIONS - 1];
33 index_type extent[GFC_MAX_DIMENSIONS - 1];
34 index_type sstride[GFC_MAX_DIMENSIONS - 1];
35 index_type dstride[GFC_MAX_DIMENSIONS - 1];
36 GFC_REAL_4 *base;
37 GFC_REAL_4 *dest;
38 index_type rank;
39 index_type n;
40 index_type len;
41 index_type delta;
42 index_type dim;
44 /* Make dim zero based to avoid confusion. */
45 dim = (*pdim) - 1;
46 rank = GFC_DESCRIPTOR_RANK (array) - 1;
47 assert (rank == GFC_DESCRIPTOR_RANK (retarray));
48 if (array->dim[0].stride == 0)
49 array->dim[0].stride = 1;
50 if (retarray->dim[0].stride == 0)
51 retarray->dim[0].stride = 1;
53 len = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
54 delta = array->dim[dim].stride;
56 for (n = 0; n < dim; n++)
58 sstride[n] = array->dim[n].stride;
59 extent[n] = array->dim[n].ubound + 1 - array->dim[n].lbound;
61 for (n = dim; n < rank; n++)
63 sstride[n] = array->dim[n + 1].stride;
64 extent[n] =
65 array->dim[n + 1].ubound + 1 - array->dim[n + 1].lbound;
68 for (n = 0; n < rank; n++)
70 count[n] = 0;
71 dstride[n] = retarray->dim[n].stride;
72 if (extent[n] <= 0)
73 len = 0;
76 base = array->data;
77 dest = retarray->data;
79 while (base)
81 GFC_REAL_4 *src;
82 GFC_REAL_4 result;
83 src = base;
86 result = GFC_REAL_4_HUGE;
87 if (len <= 0)
88 *dest = GFC_REAL_4_HUGE;
89 else
91 for (n = 0; n < len; n++, src += delta)
94 if (*src < result)
95 result = *src;
97 *dest = result;
100 /* Advance to the next element. */
101 count[0]++;
102 base += sstride[0];
103 dest += dstride[0];
104 n = 0;
105 while (count[n] == extent[n])
107 /* When we get to the end of a dimension, reset it and increment
108 the next dimension. */
109 count[n] = 0;
110 /* We could precalculate these products, but this is a less
111 frequently used path so proabably not worth it. */
112 base -= sstride[n] * extent[n];
113 dest -= dstride[n] * extent[n];
114 n++;
115 if (n == rank)
117 /* Break out of the look. */
118 base = NULL;
119 break;
121 else
123 count[n]++;
124 base += sstride[n];
125 dest += dstride[n];
131 void
132 __mminval_r4 (gfc_array_r4 * retarray, gfc_array_r4 * array, index_type *pdim, gfc_array_l4 * mask)
134 index_type count[GFC_MAX_DIMENSIONS - 1];
135 index_type extent[GFC_MAX_DIMENSIONS - 1];
136 index_type sstride[GFC_MAX_DIMENSIONS - 1];
137 index_type dstride[GFC_MAX_DIMENSIONS - 1];
138 index_type mstride[GFC_MAX_DIMENSIONS - 1];
139 GFC_REAL_4 *dest;
140 GFC_REAL_4 *base;
141 GFC_LOGICAL_4 *mbase;
142 int rank;
143 int dim;
144 index_type n;
145 index_type len;
146 index_type delta;
147 index_type mdelta;
149 dim = (*pdim) - 1;
150 rank = GFC_DESCRIPTOR_RANK (array) - 1;
151 assert (rank == GFC_DESCRIPTOR_RANK (retarray));
152 if (array->dim[0].stride == 0)
153 array->dim[0].stride = 1;
154 if (retarray->dim[0].stride == 0)
155 retarray->dim[0].stride = 1;
157 len = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
158 if (len <= 0)
159 return;
160 delta = array->dim[dim].stride;
161 mdelta = mask->dim[dim].stride;
163 for (n = 0; n < dim; n++)
165 sstride[n] = array->dim[n].stride;
166 mstride[n] = mask->dim[n].stride;
167 extent[n] = array->dim[n].ubound + 1 - array->dim[n].lbound;
169 for (n = dim; n < rank; n++)
171 sstride[n] = array->dim[n + 1].stride;
172 mstride[n] = mask->dim[n + 1].stride;
173 extent[n] =
174 array->dim[n + 1].ubound + 1 - array->dim[n + 1].lbound;
177 for (n = 0; n < rank; n++)
179 count[n] = 0;
180 dstride[n] = retarray->dim[n].stride;
181 if (extent[n] <= 0)
182 return;
185 dest = retarray->data;
186 base = array->data;
187 mbase = mask->data;
189 if (GFC_DESCRIPTOR_SIZE (mask) != 4)
191 /* This allows the same loop to be used for all logical types. */
192 assert (GFC_DESCRIPTOR_SIZE (mask) == 8);
193 for (n = 0; n < rank; n++)
194 mstride[n] <<= 1;
195 mdelta <<= 1;
196 mbase = (GFOR_POINTER_L8_TO_L4 (mbase));
199 while (base)
201 GFC_REAL_4 *src;
202 GFC_LOGICAL_4 *msrc;
203 GFC_REAL_4 result;
204 src = base;
205 msrc = mbase;
208 result = GFC_REAL_4_HUGE;
209 if (len <= 0)
210 *dest = GFC_REAL_4_HUGE;
211 else
213 for (n = 0; n < len; n++, src += delta, msrc += mdelta)
216 if (*msrc && *src < result)
217 result = *src;
219 *dest = result;
222 /* Advance to the next element. */
223 count[0]++;
224 base += sstride[0];
225 mbase += mstride[0];
226 dest += dstride[0];
227 n = 0;
228 while (count[n] == extent[n])
230 /* When we get to the end of a dimension, reset it and increment
231 the next dimension. */
232 count[n] = 0;
233 /* We could precalculate these products, but this is a less
234 frequently used path so proabably not worth it. */
235 base -= sstride[n] * extent[n];
236 mbase -= mstride[n] * extent[n];
237 dest -= dstride[n] * extent[n];
238 n++;
239 if (n == rank)
241 /* Break out of the look. */
242 base = NULL;
243 break;
245 else
247 count[n]++;
248 base += sstride[n];
249 mbase += mstride[n];
250 dest += dstride[n];