1 `/* Implementation of the EOSHIFT intrinsic
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 (libgfor).
7 Libgfor is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 Ligbfor is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with libgfor; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
26 #include "libgfortran.h"'
28 define(htype_kind, regexp(file, `_\([0-9]+\)\.', `\1'))dnl
29 define(htype_code,`i'rtype_name)dnl
30 define(htype,get_arraytype(i,htype_kind))dnl
31 define(htype_name, get_typename(i,htype_kind))dnl
33 static const char zeros[16] =
34 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
37 `__eoshift3_'htype_kind (gfc_array_char * ret, gfc_array_char * array,
38 htype * h, const gfc_array_char * bound, htype_name * pwhich)
40 /* r.* indicates the return array. */
41 index_type rstride[GFC_MAX_DIMENSIONS - 1];
46 /* s.* indicates the source array. */
47 index_type sstride[GFC_MAX_DIMENSIONS - 1];
52 ` /* h.* indicates the shift array. */'
53 index_type hstride[GFC_MAX_DIMENSIONS - 1];
55 const htype_name *hptr;
56 /* b.* indicates the bound array. */
57 index_type bstride[GFC_MAX_DIMENSIONS - 1];
61 index_type count[GFC_MAX_DIMENSIONS - 1];
62 index_type extent[GFC_MAX_DIMENSIONS - 1];
76 size = GFC_DESCRIPTOR_SIZE (ret);
80 size = GFC_DESCRIPTOR_SIZE (array);
82 for (dim = 0; dim < GFC_DESCRIPTOR_RANK (array); dim++)
86 roffset = ret->dim[dim].stride * size;
89 soffset = array->dim[dim].stride * size;
92 len = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
97 extent[n] = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
98 rstride[n] = ret->dim[dim].stride * size;
99 sstride[n] = array->dim[dim].stride * size;
101 hstride[n] = h->dim[n].stride;
103 bstride[n] = bound->dim[n].stride;
115 if (bound && bstride[0] == 0)
118 dim = GFC_DESCRIPTOR_RANK (array);
119 rstride0 = rstride[0];
120 sstride0 = sstride[0];
121 hstride0 = hstride[0];
122 bstride0 = bstride[0];
133 ` /* Do the shift for this dimension. */'
135 delta = (sh >= 0) ? sh: -sh;
138 src = &sptr[delta * soffset];
144 dest = &rptr[delta * roffset];
146 for (n = 0; n < len - delta; n++)
148 memcpy (dest, src, size);
158 memcpy (dest, bptr, size);
162 /* Advance to the next section. */
169 while (count[n] == extent[n])
171 /* When we get to the end of a dimension, reset it and increment
172 the next dimension. */
174 /* We could precalculate these products, but this is a less
175 frequently used path so proabably not worth it. */
176 rptr -= rstride[n] * extent[n];
177 sptr -= sstride[n] * extent[n];
178 hptr -= hstride[n] * extent[n];
179 bptr -= bstride[n] * extent[n];
183 /* Break out of the loop. */