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
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"'
38 static const char zeros[16] =
39 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
41 extern void eoshift3_`'atype_kind (gfc_array_char *, gfc_array_char *,
42 atype *, const gfc_array_char *,
44 export_proto(eoshift3_`'atype_kind);
47 eoshift3_`'atype_kind (gfc_array_char *ret, gfc_array_char *array,
48 atype *h, const gfc_array_char *bound,
51 /* r.* indicates the return array. */
52 index_type rstride[GFC_MAX_DIMENSIONS];
57 /* s.* indicates the source array. */
58 index_type sstride[GFC_MAX_DIMENSIONS];
63 ` /* h.* indicates the shift array. */'
64 index_type hstride[GFC_MAX_DIMENSIONS];
66 const atype_name *hptr;
67 /* b.* indicates the bound array. */
68 index_type bstride[GFC_MAX_DIMENSIONS];
72 index_type count[GFC_MAX_DIMENSIONS];
73 index_type extent[GFC_MAX_DIMENSIONS];
82 /* The compiler cannot figure out that these are set, initialize
83 them to avoid warnings. */
93 size = GFC_DESCRIPTOR_SIZE (ret);
97 size = GFC_DESCRIPTOR_SIZE (array);
99 for (dim = 0; dim < GFC_DESCRIPTOR_RANK (array); dim++)
103 roffset = ret->dim[dim].stride * size;
106 soffset = array->dim[dim].stride * size;
109 len = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
114 extent[n] = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
115 rstride[n] = ret->dim[dim].stride * size;
116 sstride[n] = array->dim[dim].stride * size;
118 hstride[n] = h->dim[n].stride;
120 bstride[n] = bound->dim[n].stride;
132 if (bound && bstride[0] == 0)
135 dim = GFC_DESCRIPTOR_RANK (array);
136 rstride0 = rstride[0];
137 sstride0 = sstride[0];
138 hstride0 = hstride[0];
139 bstride0 = bstride[0];
150 ` /* Do the shift for this dimension. */'
152 delta = (sh >= 0) ? sh: -sh;
155 src = &sptr[delta * soffset];
161 dest = &rptr[delta * roffset];
163 for (n = 0; n < len - delta; n++)
165 memcpy (dest, src, size);
175 memcpy (dest, bptr, size);
179 /* Advance to the next section. */
186 while (count[n] == extent[n])
188 /* When we get to the end of a dimension, reset it and increment
189 the next dimension. */
191 /* We could precalculate these products, but this is a less
192 frequently used path so proabably not worth it. */
193 rptr -= rstride[n] * extent[n];
194 sptr -= sstride[n] * extent[n];
195 hptr -= hstride[n] * extent[n];
196 bptr -= bstride[n] * extent[n];
200 /* Break out of the loop. */