1 /* Generic 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
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., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. */
35 #include "libgfortran.h"
37 static const char zeros[16] =
38 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
40 /* TODO: make this work for large shifts when
41 sizeof(int) < sizeof (index_type). */
44 eoshift0 (gfc_array_char * ret, const gfc_array_char * array,
45 int shift, const char * pbound, int which)
47 /* r.* indicates the return array. */
48 index_type rstride[GFC_MAX_DIMENSIONS];
53 /* s.* indicates the source array. */
54 index_type sstride[GFC_MAX_DIMENSIONS];
60 index_type count[GFC_MAX_DIMENSIONS];
61 index_type extent[GFC_MAX_DIMENSIONS];
67 /* The compiler cannot figure out that these are set, initialize
68 them to avoid warnings. */
76 size = GFC_DESCRIPTOR_SIZE (ret);
78 if (ret->data == NULL)
82 ret->data = internal_malloc_size (size * size0 ((array_t *)array));
84 ret->dtype = array->dtype;
85 for (i = 0; i < GFC_DESCRIPTOR_RANK (array); i++)
87 ret->dim[i].lbound = 0;
88 ret->dim[i].ubound = array->dim[i].ubound - array->dim[i].lbound;
91 ret->dim[i].stride = 1;
93 ret->dim[i].stride = (ret->dim[i-1].ubound + 1) * ret->dim[i-1].stride;
101 size = GFC_DESCRIPTOR_SIZE (array);
103 for (dim = 0; dim < GFC_DESCRIPTOR_RANK (array); dim++)
107 roffset = ret->dim[dim].stride * size;
110 soffset = array->dim[dim].stride * size;
113 len = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
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;
129 dim = GFC_DESCRIPTOR_RANK (array);
130 rstride0 = rstride[0];
131 sstride0 = sstride[0];
141 /* Do the shift for this dimension. */
144 src = &sptr[shift * soffset];
150 dest = &rptr[-shift * roffset];
152 for (n = 0; n < len; n++)
154 memcpy (dest, src, size);
170 memcpy (dest, pbound, size);
174 /* Advance to the next section. */
179 while (count[n] == extent[n])
181 /* When we get to the end of a dimension, reset it and increment
182 the next dimension. */
184 /* We could precalculate these products, but this is a less
185 frequently used path so proabably not worth it. */
186 rptr -= rstride[n] * extent[n];
187 sptr -= sstride[n] * extent[n];
191 /* Break out of the loop. */
206 extern void eoshift0_1 (gfc_array_char *, const gfc_array_char *,
207 const GFC_INTEGER_1 *, const char *,
208 const GFC_INTEGER_1 *);
209 export_proto(eoshift0_1);
212 eoshift0_1 (gfc_array_char *ret, const gfc_array_char *array,
213 const GFC_INTEGER_1 *pshift, const char *pbound,
214 const GFC_INTEGER_1 *pdim)
216 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1);
220 extern void eoshift0_2 (gfc_array_char *, const gfc_array_char *,
221 const GFC_INTEGER_2 *, const char *,
222 const GFC_INTEGER_2 *);
223 export_proto(eoshift0_2);
226 eoshift0_2 (gfc_array_char *ret, const gfc_array_char *array,
227 const GFC_INTEGER_2 *pshift, const char *pbound,
228 const GFC_INTEGER_2 *pdim)
230 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1);
234 extern void eoshift0_4 (gfc_array_char *, const gfc_array_char *,
235 const GFC_INTEGER_4 *, const char *,
236 const GFC_INTEGER_4 *);
237 export_proto(eoshift0_4);
240 eoshift0_4 (gfc_array_char *ret, const gfc_array_char *array,
241 const GFC_INTEGER_4 *pshift, const char *pbound,
242 const GFC_INTEGER_4 *pdim)
244 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1);
248 extern void eoshift0_8 (gfc_array_char *, const gfc_array_char *,
249 const GFC_INTEGER_8 *, const char *,
250 const GFC_INTEGER_8 *);
251 export_proto(eoshift0_8);
254 eoshift0_8 (gfc_array_char *ret, const gfc_array_char *array,
255 const GFC_INTEGER_8 *pshift, const char *pbound,
256 const GFC_INTEGER_8 *pdim)
258 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1);