1 `/* Implementation of the RESHAPE
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., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA. */
34 #include "libgfortran.h"'
37 `#if defined (HAVE_'rtype_name`)'
39 typedef GFC_ARRAY_DESCRIPTOR(1, index_type) shape_type;
41 /* The shape parameter is ignored. We can currently deduce the shape from the
43 dnl Only the kind (ie size) is used to name the function.
45 extern void reshape_`'rtype_ccode (rtype *, rtype *, shape_type *,
46 rtype *, shape_type *);
47 export_proto(reshape_`'rtype_ccode);
50 reshape_`'rtype_ccode (rtype * ret, rtype * source, shape_type * shape,
51 rtype * pad, shape_type * order)
53 /* r.* indicates the return array. */
54 index_type rcount[GFC_MAX_DIMENSIONS];
55 index_type rextent[GFC_MAX_DIMENSIONS];
56 index_type rstride[GFC_MAX_DIMENSIONS];
63 /* s.* indicates the source array. */
64 index_type scount[GFC_MAX_DIMENSIONS];
65 index_type sextent[GFC_MAX_DIMENSIONS];
66 index_type sstride[GFC_MAX_DIMENSIONS];
70 const rtype_name *sptr;
71 /* p.* indicates the pad array. */
72 index_type pcount[GFC_MAX_DIMENSIONS];
73 index_type pextent[GFC_MAX_DIMENSIONS];
74 index_type pstride[GFC_MAX_DIMENSIONS];
77 const rtype_name *pptr;
79 const rtype_name *src;
83 if (source->dim[0].stride == 0)
84 source->dim[0].stride = 1;
85 if (shape->dim[0].stride == 0)
86 shape->dim[0].stride = 1;
87 if (pad && pad->dim[0].stride == 0)
88 pad->dim[0].stride = 1;
89 if (order && order->dim[0].stride == 0)
90 order->dim[0].stride = 1;
92 if (ret->data == NULL)
94 rdim = shape->dim[0].ubound - shape->dim[0].lbound + 1;
96 for (n=0; n < rdim; n++)
98 ret->dim[n].lbound = 0;
99 rex = shape->data[n * shape->dim[0].stride];
100 ret->dim[n].ubound = rex - 1;
101 ret->dim[n].stride = rs;
105 ret->data = internal_malloc_size ( rs * sizeof (rtype_name));
106 ret->dtype = (source->dtype & ~GFC_DTYPE_RANK_MASK) | rdim;
110 rdim = GFC_DESCRIPTOR_RANK (ret);
111 if (ret->dim[0].stride == 0)
112 ret->dim[0].stride = 1;
116 for (n = 0; n < rdim; n++)
119 dim = order->data[n * order->dim[0].stride] - 1;
124 rstride[n] = ret->dim[dim].stride;
125 rextent[n] = ret->dim[dim].ubound + 1 - ret->dim[dim].lbound;
127 if (rextent[n] != shape->data[dim * shape->dim[0].stride])
128 runtime_error ("shape and target do not conform");
130 if (rsize == rstride[n])
138 sdim = GFC_DESCRIPTOR_RANK (source);
140 for (n = 0; n < sdim; n++)
143 sstride[n] = source->dim[n].stride;
144 sextent[n] = source->dim[n].ubound + 1 - source->dim[n].lbound;
148 if (ssize == sstride[n])
156 pdim = GFC_DESCRIPTOR_RANK (pad);
158 for (n = 0; n < pdim; n++)
161 pstride[n] = pad->dim[n].stride;
162 pextent[n] = pad->dim[n].ubound + 1 - pad->dim[n].lbound;
165 if (psize == pstride[n])
179 if (rsize != 0 && ssize != 0 && psize != 0)
181 rsize *= sizeof (rtype_name);
182 ssize *= sizeof (rtype_name);
183 psize *= sizeof (rtype_name);
184 reshape_packed ((char *)ret->data, rsize, (char *)source->data,
185 ssize, pad ? (char *)pad->data : NULL, psize);
189 src = sptr = source->data;
190 rstride0 = rstride[0];
191 sstride0 = sstride[0];
195 /* Select between the source and pad arrays. */
197 /* Advance to the next element. */
202 /* Advance to the next destination element. */
204 while (rcount[n] == rextent[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 rptr -= rstride[n] * rextent[n];
215 /* Break out of the loop. */
225 /* Advance to the next source element. */
227 while (scount[n] == sextent[n])
229 /* When we get to the end of a dimension, reset it and increment
230 the next dimension. */
232 /* We could precalculate these products, but this is a less
233 frequently used path so proabably not worth it. */
234 src -= sstride[n] * sextent[n];
240 /* Switch to the pad array. */
243 for (dim = 0; dim < pdim; dim++)
245 scount[dim] = pcount[dim];
246 sextent[dim] = pextent[dim];
247 sstride[dim] = pstride[dim];
248 sstride0 = sstride[0];
251 /* We now start again from the beginning of the pad array. */