1 `/* Implementation of the CSHIFT intrinsic.
2 Copyright (C) 2017-2023 Free Software Foundation, Inc.
3 Contributed by Thomas Koenig <tkoenig@gcc.gnu.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 3 of the License, or (at your option) any later version.
12 Libgfortran 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 General Public License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
30 `#if defined (HAVE_'atype_name`) && defined (HAVE_'rtype_name`)
33 cshift1'rtype_qual`_'atype_code` ('atype` * const restrict ret,
34 const 'atype` * const restrict array,
35 const 'rtype` * const restrict h,
36 const 'rtype_name` * const restrict pwhich)
38 /* r.* indicates the return array. */
39 index_type rstride[GFC_MAX_DIMENSIONS];
44 /* s.* indicates the source array. */
45 index_type sstride[GFC_MAX_DIMENSIONS];
48 const 'atype_name` *sptr;
49 const 'atype_name` *src;
50 /* h.* indicates the shift array. */
51 index_type hstride[GFC_MAX_DIMENSIONS];
53 const 'rtype_name` *hptr;
55 index_type count[GFC_MAX_DIMENSIONS];
56 index_type extent[GFC_MAX_DIMENSIONS];
57 index_type rs_ex[GFC_MAX_DIMENSIONS];
58 index_type ss_ex[GFC_MAX_DIMENSIONS];
59 index_type hs_ex[GFC_MAX_DIMENSIONS];
67 /* Bounds checking etc is already done by the caller. */
78 /* Initialized for avoiding compiler warnings. */
83 for (dim = 0; dim < GFC_DESCRIPTOR_RANK (array); dim++)
87 roffset = GFC_DESCRIPTOR_STRIDE(ret,dim);
90 soffset = GFC_DESCRIPTOR_STRIDE(array,dim);
93 len = GFC_DESCRIPTOR_EXTENT(array,dim);
98 extent[n] = GFC_DESCRIPTOR_EXTENT(array,dim);
99 rstride[n] = GFC_DESCRIPTOR_STRIDE(ret,dim);
100 sstride[n] = GFC_DESCRIPTOR_STRIDE(array,dim);
101 hstride[n] = GFC_DESCRIPTOR_STRIDE(h,n);
102 rs_ex[n] = rstride[n] * extent[n];
103 ss_ex[n] = sstride[n] * extent[n];
104 hs_ex[n] = hstride[n] * extent[n];
115 dim = GFC_DESCRIPTOR_RANK (array);
116 rstride0 = rstride[0];
117 sstride0 = sstride[0];
118 hstride0 = hstride[0];
119 rptr = ret->base_addr;
120 sptr = array->base_addr;
125 /* Do the shift for this dimension. */
127 /* Normal case should be -len < sh < len; try to
128 avoid the expensive remainder operation if possible. */
131 if (unlikely(sh >= len || sh < 0))
137 src = &sptr[sh * soffset];
139 if (soffset == 1 && roffset == 1)
141 size_t len1 = sh * sizeof ('atype_name`);
142 size_t len2 = (len - sh) * sizeof ('atype_name`);
143 memcpy (rptr, sptr + sh, len2);
144 memcpy (rptr + (len - sh), sptr, len1);
148 for (n = 0; n < len - sh; n++)
154 for (src = sptr, n = 0; n < sh; n++)
162 /* Advance to the next section. */
168 while (count[n] == extent[n])
170 /* When we get to the end of a dimension, reset it and increment
171 the next dimension. */
179 /* Break out of the loop. */