Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libgfortran / intrinsics / reshape_generic.c
blob80a31afc6e19bb1ba2e3abd02277ea93d5e2fd4b
1 /* Generic implementation of the RESHAPE 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
19 executable.)
21 Ligbfortran 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. */
31 #include "config.h"
32 #include <stdlib.h>
33 #include <string.h>
34 #include <assert.h>
35 #include "libgfortran.h"
37 typedef GFC_ARRAY_DESCRIPTOR(1, index_type) shape_type;
38 typedef GFC_ARRAY_DESCRIPTOR(GFC_MAX_DIMENSIONS, char) parray;
40 extern void reshape (parray *, parray *, shape_type *, parray *, shape_type *);
41 export_proto(reshape);
43 /* The shape parameter is ignored. We can currently deduce the shape from the
44 return array. */
46 void
47 reshape (parray *ret, parray *source, shape_type *shape,
48 parray *pad, shape_type *order)
50 /* r.* indicates the return array. */
51 index_type rcount[GFC_MAX_DIMENSIONS - 1];
52 index_type rextent[GFC_MAX_DIMENSIONS - 1];
53 index_type rstride[GFC_MAX_DIMENSIONS - 1];
54 index_type rstride0;
55 index_type rdim;
56 index_type rsize;
57 char *rptr;
58 /* s.* indicates the source array. */
59 index_type scount[GFC_MAX_DIMENSIONS - 1];
60 index_type sextent[GFC_MAX_DIMENSIONS - 1];
61 index_type sstride[GFC_MAX_DIMENSIONS - 1];
62 index_type sstride0;
63 index_type sdim;
64 index_type ssize;
65 const char *sptr;
66 /* p.* indicates the pad array. */
67 index_type pcount[GFC_MAX_DIMENSIONS - 1];
68 index_type pextent[GFC_MAX_DIMENSIONS - 1];
69 index_type pstride[GFC_MAX_DIMENSIONS - 1];
70 index_type pdim;
71 index_type psize;
72 const char *pptr;
74 const char *src;
75 int n;
76 int dim;
77 int size;
79 size = GFC_DESCRIPTOR_SIZE (ret);
80 if (ret->dim[0].stride == 0)
81 ret->dim[0].stride = 1;
82 if (source->dim[0].stride == 0)
83 source->dim[0].stride = 1;
84 if (shape->dim[0].stride == 0)
85 shape->dim[0].stride = 1;
86 if (pad && pad->dim[0].stride == 0)
87 pad->dim[0].stride = 1;
88 if (order && order->dim[0].stride == 0)
89 order->dim[0].stride = 1;
91 rdim = GFC_DESCRIPTOR_RANK (ret);
92 rsize = 1;
93 for (n = 0; n < rdim; n++)
95 if (order)
96 dim = order->data[n * order->dim[0].stride] - 1;
97 else
98 dim = n;
100 rcount[n] = 0;
101 rstride[n] = ret->dim[dim].stride;
102 rextent[n] = ret->dim[dim].ubound + 1 - ret->dim[dim].lbound;
104 if (rextent[n] != shape->data[dim * shape->dim[0].stride])
105 runtime_error ("shape and target do not conform");
107 if (rsize == rstride[n])
108 rsize *= rextent[n];
109 else
110 rsize = 0;
111 if (rextent[dim] <= 0)
112 return;
115 sdim = GFC_DESCRIPTOR_RANK (source);
116 ssize = 1;
117 for (n = 0; n < sdim; n++)
119 scount[n] = 0;
120 sstride[n] = source->dim[n].stride;
121 sextent[n] = source->dim[n].ubound + 1 - source->dim[n].lbound;
122 if (sextent[n] <= 0)
123 abort ();
125 if (rsize == sstride[n])
126 ssize *= sextent[n];
127 else
128 ssize = 0;
131 if (pad)
133 if (pad->dim[0].stride == 0)
134 pad->dim[0].stride = 1;
135 pdim = GFC_DESCRIPTOR_RANK (pad);
136 psize = 1;
137 for (n = 0; n < pdim; n++)
139 pcount[n] = 0;
140 pstride[n] = pad->dim[n].stride;
141 pextent[n] = pad->dim[n].ubound + 1 - pad->dim[n].lbound;
142 if (pextent[n] <= 0)
143 abort ();
144 if (psize == pstride[n])
145 psize *= pextent[n];
146 else
147 rsize = 0;
149 pptr = pad->data;
151 else
153 pdim = 0;
154 psize = 1;
155 pptr = NULL;
158 if (rsize != 0 && ssize != 0 && psize != 0)
160 rsize *= size;
161 ssize *= size;
162 psize *= size;
163 reshape_packed (ret->data, rsize, source->data, ssize,
164 pad ? pad->data : NULL, psize);
165 return;
167 rptr = ret->data;
168 src = sptr = source->data;
169 rstride0 = rstride[0] * size;
170 sstride0 = sstride[0] * size;
172 while (rptr)
174 /* Select between the source and pad arrays. */
175 memcpy(rptr, src, size);
176 /* Advance to the next element. */
177 rptr += rstride0;
178 src += sstride0;
179 rcount[0]++;
180 scount[0]++;
181 /* Advance to the next destination element. */
182 n = 0;
183 while (rcount[n] == rextent[n])
185 /* When we get to the end of a dimension, reset it and increment
186 the next dimension. */
187 rcount[n] = 0;
188 /* We could precalculate these products, but this is a less
189 frequently used path so proabably not worth it. */
190 rptr -= rstride[n] * rextent[n] * size;
191 n++;
192 if (n == rdim)
194 /* Break out of the loop. */
195 rptr = NULL;
196 break;
198 else
200 rcount[n]++;
201 rptr += rstride[n] * size;
204 /* Advance to the next source element. */
205 n = 0;
206 while (scount[n] == sextent[n])
208 /* When we get to the end of a dimension, reset it and increment
209 the next dimension. */
210 scount[n] = 0;
211 /* We could precalculate these products, but this is a less
212 frequently used path so proabably not worth it. */
213 src -= sstride[n] * sextent[n] * size;
214 n++;
215 if (n == sdim)
217 if (sptr && pad)
219 /* Switch to the pad array. */
220 sptr = NULL;
221 sdim = pdim;
222 for (dim = 0; dim < pdim; dim++)
224 scount[dim] = pcount[dim];
225 sextent[dim] = pextent[dim];
226 sstride[dim] = pstride[dim];
227 sstride0 = sstride[0] * size;
230 /* We now start again from the beginning of the pad array. */
231 src = pptr;
232 break;
234 else
236 scount[n]++;
237 sptr += sstride[n] * size;