* ipa-type-escape.c (discover_unique_type): Remove dead code at
[official-gcc.git] / libgfortran / m4 / eoshift1.m4
blobb5245ee42ea55f168e41a86e75160c32c248f41c
1 `/* Implementation of the EOSHIFT intrinsic
2    Copyright 2002, 2005 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 "config.h"
32 #include <stdlib.h>
33 #include <assert.h>
34 #include <string.h>
35 #include "libgfortran.h"'
36 include(iparm.m4)dnl
38 static void
39 eoshift1 (gfc_array_char *ret, const gfc_array_char *array, const atype *h,
40           const char *pbound, const atype_name *pwhich, index_type size,
41           char filler)
43   /* r.* indicates the return array.  */
44   index_type rstride[GFC_MAX_DIMENSIONS];
45   index_type rstride0;
46   index_type roffset;
47   char *rptr;
48   char *dest;
49   /* s.* indicates the source array.  */
50   index_type sstride[GFC_MAX_DIMENSIONS];
51   index_type sstride0;
52   index_type soffset;
53   const char *sptr;
54   const char *src;
55 `  /* h.* indicates the shift array.  */'
56   index_type hstride[GFC_MAX_DIMENSIONS];
57   index_type hstride0;
58   const atype_name *hptr;
60   index_type count[GFC_MAX_DIMENSIONS];
61   index_type extent[GFC_MAX_DIMENSIONS];
62   index_type dim;
63   index_type len;
64   index_type n;
65   int which;
66   atype_name sh;
67   atype_name delta;
69   /* The compiler cannot figure out that these are set, initialize
70      them to avoid warnings.  */
71   len = 0;
72   soffset = 0;
73   roffset = 0;
75   if (pwhich)
76     which = *pwhich - 1;
77   else
78     which = 0;
80   extent[0] = 1;
81   count[0] = 0;
83   if (ret->data == NULL)
84     {
85       int i;
87       ret->data = internal_malloc_size (size * size0 ((array_t *)array));
88       ret->offset = 0;
89       ret->dtype = array->dtype;
90       for (i = 0; i < GFC_DESCRIPTOR_RANK (array); i++)
91         {
92           ret->dim[i].lbound = 0;
93           ret->dim[i].ubound = array->dim[i].ubound - array->dim[i].lbound;
95           if (i == 0)
96             ret->dim[i].stride = 1;
97           else
98             ret->dim[i].stride = (ret->dim[i-1].ubound + 1) * ret->dim[i-1].stride;
99         }
100     }
102   n = 0;
103   for (dim = 0; dim < GFC_DESCRIPTOR_RANK (array); dim++)
104     {
105       if (dim == which)
106         {
107           roffset = ret->dim[dim].stride * size;
108           if (roffset == 0)
109             roffset = size;
110           soffset = array->dim[dim].stride * size;
111           if (soffset == 0)
112             soffset = size;
113           len = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
114         }
115       else
116         {
117           count[n] = 0;
118           extent[n] = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
119           rstride[n] = ret->dim[dim].stride * size;
120           sstride[n] = array->dim[dim].stride * size;
122           hstride[n] = h->dim[n].stride;
123           n++;
124         }
125     }
126   if (sstride[0] == 0)
127     sstride[0] = size;
128   if (rstride[0] == 0)
129     rstride[0] = size;
130   if (hstride[0] == 0)
131     hstride[0] = 1;
133   dim = GFC_DESCRIPTOR_RANK (array);
134   rstride0 = rstride[0];
135   sstride0 = sstride[0];
136   hstride0 = hstride[0];
137   rptr = ret->data;
138   sptr = array->data;
139   hptr = h->data;
141   while (rptr)
142     {
143 `      /* Do the shift for this dimension.  */'
144       sh = *hptr;
145       if (( sh >= 0 ? sh : -sh ) > len)
146         {
147           delta = len;
148           sh = len;
149         }
150       else
151         delta = (sh >= 0) ? sh: -sh;
153       if (sh > 0)
154         {
155           src = &sptr[delta * soffset];
156           dest = rptr;
157         }
158       else
159         {
160           src = sptr;
161           dest = &rptr[delta * roffset];
162         }
163       for (n = 0; n < len - delta; n++)
164         {
165           memcpy (dest, src, size);
166           dest += roffset;
167           src += soffset;
168         }
169       if (sh < 0)
170         dest = rptr;
171       n = delta;
173       if (pbound)
174         while (n--)
175           {
176             memcpy (dest, pbound, size);
177             dest += roffset;
178           }
179       else
180         while (n--)
181           {
182             memset (dest, filler, size);
183             dest += roffset;
184           }
186       /* Advance to the next section.  */
187       rptr += rstride0;
188       sptr += sstride0;
189       hptr += hstride0;
190       count[0]++;
191       n = 0;
192       while (count[n] == extent[n])
193         {
194           /* When we get to the end of a dimension, reset it and increment
195              the next dimension.  */
196           count[n] = 0;
197           /* We could precalculate these products, but this is a less
198              frequently used path so proabably not worth it.  */
199           rptr -= rstride[n] * extent[n];
200           sptr -= sstride[n] * extent[n];
201           hptr -= hstride[n] * extent[n];
202           n++;
203           if (n >= dim - 1)
204             {
205               /* Break out of the loop.  */
206               rptr = NULL;
207               break;
208             }
209           else
210             {
211               count[n]++;
212               rptr += rstride[n];
213               sptr += sstride[n];
214               hptr += hstride[n];
215             }
216         }
217     }
220 void eoshift1_`'atype_kind (gfc_array_char *, const gfc_array_char *,
221                             const atype *, const char *, const atype_name *);
222 export_proto(eoshift1_`'atype_kind);
224 void
225 eoshift1_`'atype_kind (gfc_array_char *ret, const gfc_array_char *array,
226                        const atype *h, const char *pbound,
227                        const atype_name *pwhich)
229   eoshift1 (ret, array, h, pbound, pwhich, GFC_DESCRIPTOR_SIZE (array), 0);
232 void eoshift1_`'atype_kind`'_char (gfc_array_char *, GFC_INTEGER_4,
233                                    const gfc_array_char *, const atype *,
234                                    const char *, const atype_name *,
235                                    GFC_INTEGER_4, GFC_INTEGER_4);
236 export_proto(eoshift1_`'atype_kind`'_char);
238 void
239 eoshift1_`'atype_kind`'_char (gfc_array_char *ret,
240                               GFC_INTEGER_4 ret_length __attribute__((unused)),
241                               const gfc_array_char *array, const atype *h,
242                               const char *pbound, const atype_name *pwhich,
243                               GFC_INTEGER_4 array_length,
244                               GFC_INTEGER_4 bound_length
245                                 __attribute__((unused)))
247   eoshift1 (ret, array, h, pbound, pwhich, array_length, ' ');