Update concepts branch to revision 131834
[official-gcc.git] / libgfortran / m4 / reshape.m4
bloba10ad7155840d4deb4f3014ccf54919e78891aa0
1 `/* Implementation of the RESHAPE
2    Copyright 2002, 2006, 2007 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 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.  */
31 #include "libgfortran.h"
32 #include <stdlib.h>
33 #include <assert.h>'
35 include(iparm.m4)dnl
37 `#if defined (HAVE_'rtype_name`)
39 typedef GFC_ARRAY_DESCRIPTOR(1, 'index_type`) 'shape_type`;'
41 dnl For integer routines, only the kind (ie size) is used to name the
42 dnl function.  The same function will be used for integer and logical
43 dnl arrays of the same kind.
45 `extern void reshape_'rtype_ccode` ('rtype` * const restrict, 
46         'rtype` * const restrict, 
47         'shape_type` * const restrict,
48         'rtype` * const restrict, 
49         'shape_type` * const restrict);
50 export_proto(reshape_'rtype_ccode`);
52 void
53 reshape_'rtype_ccode` ('rtype` * const restrict ret, 
54         'rtype` * const restrict source, 
55         'shape_type` * const restrict shape,
56         'rtype` * const restrict pad, 
57         'shape_type` * const restrict order)
59   /* r.* indicates the return array.  */
60   index_type rcount[GFC_MAX_DIMENSIONS];
61   index_type rextent[GFC_MAX_DIMENSIONS];
62   index_type rstride[GFC_MAX_DIMENSIONS];
63   index_type rstride0;
64   index_type rdim;
65   index_type rsize;
66   index_type rs;
67   index_type rex;
68   'rtype_name` *rptr;
69   /* s.* indicates the source array.  */
70   index_type scount[GFC_MAX_DIMENSIONS];
71   index_type sextent[GFC_MAX_DIMENSIONS];
72   index_type sstride[GFC_MAX_DIMENSIONS];
73   index_type sstride0;
74   index_type sdim;
75   index_type ssize;
76   const 'rtype_name` *sptr;
77   /* p.* indicates the pad array.  */
78   index_type pcount[GFC_MAX_DIMENSIONS];
79   index_type pextent[GFC_MAX_DIMENSIONS];
80   index_type pstride[GFC_MAX_DIMENSIONS];
81   index_type pdim;
82   index_type psize;
83   const 'rtype_name` *pptr;
85   const 'rtype_name` *src;
86   int n;
87   int dim;
88   int sempty, pempty, shape_empty;
89   index_type shape_data[GFC_MAX_DIMENSIONS];
91   rdim = shape->dim[0].ubound - shape->dim[0].lbound + 1;
92   if (rdim != GFC_DESCRIPTOR_RANK(ret))
93     runtime_error("rank of return array incorrect in RESHAPE intrinsic");
95   shape_empty = 0;
97   for (n = 0; n < rdim; n++)
98     {
99       shape_data[n] = shape->data[n * shape->dim[0].stride];
100       if (shape_data[n] <= 0)
101       {
102         shape_data[n] = 0;
103         shape_empty = 1;
104       }
105     }
107   if (ret->data == NULL)
108     {
109       rs = 1;
110       for (n = 0; n < rdim; n++)
111         {
112           ret->dim[n].lbound = 0;
113           rex = shape_data[n];
114           ret->dim[n].ubound =  rex - 1;
115           ret->dim[n].stride = rs;
116           rs *= rex;
117         }
118       ret->offset = 0;
119       ret->data = internal_malloc_size ( rs * sizeof ('rtype_name`));
120       ret->dtype = (source->dtype & ~GFC_DTYPE_RANK_MASK) | rdim;
121     }
123   if (shape_empty)
124     return;
126   rsize = 1;
127   for (n = 0; n < rdim; n++)
128     {
129       if (order)
130         dim = order->data[n * order->dim[0].stride] - 1;
131       else
132         dim = n;
134       rcount[n] = 0;
135       rstride[n] = ret->dim[dim].stride;
136       rextent[n] = ret->dim[dim].ubound + 1 - ret->dim[dim].lbound;
137       if (rextent[n] < 0)
138         rextent[n] = 0;
140       if (rextent[n] != shape_data[dim])
141         runtime_error ("shape and target do not conform");
143       if (rsize == rstride[n])
144         rsize *= rextent[n];
145       else
146         rsize = 0;
147       if (rextent[n] <= 0)
148         return;
149     }
151   sdim = GFC_DESCRIPTOR_RANK (source);
152   ssize = 1;
153   sempty = 0;
154   for (n = 0; n < sdim; n++)
155     {
156       scount[n] = 0;
157       sstride[n] = source->dim[n].stride;
158       sextent[n] = source->dim[n].ubound + 1 - source->dim[n].lbound;
159       if (sextent[n] <= 0)
160         {
161           sempty = 1;
162           sextent[n] = 0;
163         }
165       if (ssize == sstride[n])
166         ssize *= sextent[n];
167       else
168         ssize = 0;
169     }
171   if (pad)
172     {
173       pdim = GFC_DESCRIPTOR_RANK (pad);
174       psize = 1;
175       pempty = 0;
176       for (n = 0; n < pdim; n++)
177         {
178           pcount[n] = 0;
179           pstride[n] = pad->dim[n].stride;
180           pextent[n] = pad->dim[n].ubound + 1 - pad->dim[n].lbound;
181           if (pextent[n] <= 0)
182             {
183               pempty = 1;
184               pextent[n] = 0;
185             }
187           if (psize == pstride[n])
188             psize *= pextent[n];
189           else
190             psize = 0;
191         }
192       pptr = pad->data;
193     }
194   else
195     {
196       pdim = 0;
197       psize = 1;
198       pempty = 1;
199       pptr = NULL;
200     }
202   if (rsize != 0 && ssize != 0 && psize != 0)
203     {
204       rsize *= sizeof ('rtype_name`);
205       ssize *= sizeof ('rtype_name`);
206       psize *= sizeof ('rtype_name`);
207       reshape_packed ((char *)ret->data, rsize, (char *)source->data,
208                       ssize, pad ? (char *)pad->data : NULL, psize);
209       return;
210     }
211   rptr = ret->data;
212   src = sptr = source->data;
213   rstride0 = rstride[0];
214   sstride0 = sstride[0];
216   if (sempty && pempty)
217     abort ();
219   if (sempty)
220     {
221       /* Switch immediately to the pad array.  */
222       src = pptr;
223       sptr = NULL;
224       sdim = pdim;
225       for (dim = 0; dim < pdim; dim++)
226         {
227           scount[dim] = pcount[dim];
228           sextent[dim] = pextent[dim];
229           sstride[dim] = pstride[dim];
230           sstride0 = sstride[0] * sizeof ('rtype_name`);
231         }
232     }
234   while (rptr)
235     {
236       /* Select between the source and pad arrays.  */
237       *rptr = *src;
238       /* Advance to the next element.  */
239       rptr += rstride0;
240       src += sstride0;
241       rcount[0]++;
242       scount[0]++;
244       /* Advance to the next destination element.  */
245       n = 0;
246       while (rcount[n] == rextent[n])
247         {
248           /* When we get to the end of a dimension, reset it and increment
249              the next dimension.  */
250           rcount[n] = 0;
251           /* We could precalculate these products, but this is a less
252              frequently used path so probably not worth it.  */
253           rptr -= rstride[n] * rextent[n];
254           n++;
255           if (n == rdim)
256             {
257               /* Break out of the loop.  */
258               rptr = NULL;
259               break;
260             }
261           else
262             {
263               rcount[n]++;
264               rptr += rstride[n];
265             }
266         }
267       /* Advance to the next source element.  */
268       n = 0;
269       while (scount[n] == sextent[n])
270         {
271           /* When we get to the end of a dimension, reset it and increment
272              the next dimension.  */
273           scount[n] = 0;
274           /* We could precalculate these products, but this is a less
275              frequently used path so probably not worth it.  */
276           src -= sstride[n] * sextent[n];
277           n++;
278           if (n == sdim)
279             {
280               if (sptr && pad)
281                 {
282                   /* Switch to the pad array.  */
283                   sptr = NULL;
284                   sdim = pdim;
285                   for (dim = 0; dim < pdim; dim++)
286                     {
287                       scount[dim] = pcount[dim];
288                       sextent[dim] = pextent[dim];
289                       sstride[dim] = pstride[dim];
290                       sstride0 = sstride[0];
291                     }
292                 }
293               /* We now start again from the beginning of the pad array.  */
294               src = pptr;
295               break;
296             }
297           else
298             {
299               scount[n]++;
300               src += sstride[n];
301             }
302         }
303     }
306 #endif'