1 /* Implementation of the CSHIFT intrinsic
2 Copyright (C) 2003-2014 Free Software Foundation, Inc.
3 Contributed by Feng Wang <wf_cs@yahoo.com>
5 This file is part of the GNU Fortran 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 Ligbfortran 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"
32 #if defined (HAVE_GFC_INTEGER_8)
35 cshift1 (gfc_array_char
* const restrict ret
,
36 const gfc_array_char
* const restrict array
,
37 const gfc_array_i8
* const restrict h
,
38 const GFC_INTEGER_8
* const restrict pwhich
)
40 /* r.* indicates the return array. */
41 index_type rstride
[GFC_MAX_DIMENSIONS
];
46 /* s.* indicates the source array. */
47 index_type sstride
[GFC_MAX_DIMENSIONS
];
52 /* h.* indicates the shift array. */
53 index_type hstride
[GFC_MAX_DIMENSIONS
];
55 const GFC_INTEGER_8
*hptr
;
57 index_type count
[GFC_MAX_DIMENSIONS
];
58 index_type extent
[GFC_MAX_DIMENSIONS
];
72 if (which
< 0 || (which
+ 1) > GFC_DESCRIPTOR_RANK (array
))
73 runtime_error ("Argument 'DIM' is out of range in call to 'CSHIFT'");
75 size
= GFC_DESCRIPTOR_SIZE(array
);
77 arraysize
= size0 ((array_t
*)array
);
79 if (ret
->base_addr
== NULL
)
83 ret
->base_addr
= xmalloc (size
* arraysize
);
85 ret
->dtype
= array
->dtype
;
86 for (i
= 0; i
< GFC_DESCRIPTOR_RANK (array
); i
++)
90 ub
= GFC_DESCRIPTOR_EXTENT(array
,i
) - 1;
95 str
= GFC_DESCRIPTOR_EXTENT(ret
,i
-1) *
96 GFC_DESCRIPTOR_STRIDE(ret
,i
-1);
98 GFC_DIMENSION_SET(ret
->dim
[i
], 0, ub
, str
);
101 else if (unlikely (compile_options
.bounds_check
))
103 bounds_equal_extents ((array_t
*) ret
, (array_t
*) array
,
104 "return value", "CSHIFT");
107 if (unlikely (compile_options
.bounds_check
))
109 bounds_reduced_extents ((array_t
*) h
, (array_t
*) array
, which
,
110 "SHIFT argument", "CSHIFT");
120 /* Initialized for avoiding compiler warnings. */
125 for (dim
= 0; dim
< GFC_DESCRIPTOR_RANK (array
); dim
++)
129 roffset
= GFC_DESCRIPTOR_STRIDE_BYTES(ret
,dim
);
132 soffset
= GFC_DESCRIPTOR_STRIDE_BYTES(array
,dim
);
135 len
= GFC_DESCRIPTOR_EXTENT(array
,dim
);
140 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,dim
);
141 rstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(ret
,dim
);
142 sstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(array
,dim
);
144 hstride
[n
] = GFC_DESCRIPTOR_STRIDE(h
,n
);
155 dim
= GFC_DESCRIPTOR_RANK (array
);
156 rstride0
= rstride
[0];
157 sstride0
= sstride
[0];
158 hstride0
= hstride
[0];
159 rptr
= ret
->base_addr
;
160 sptr
= array
->base_addr
;
165 /* Do the shift for this dimension. */
167 sh
= (div (sh
, len
)).rem
;
171 src
= &sptr
[sh
* soffset
];
174 for (n
= 0; n
< len
; n
++)
176 memcpy (dest
, src
, size
);
178 if (n
== len
- sh
- 1)
184 /* Advance to the next section. */
190 while (count
[n
] == extent
[n
])
192 /* When we get to the end of a dimension, reset it and increment
193 the next dimension. */
195 /* We could precalculate these products, but this is a less
196 frequently used path so probably not worth it. */
197 rptr
-= rstride
[n
] * extent
[n
];
198 sptr
-= sstride
[n
] * extent
[n
];
199 hptr
-= hstride
[n
] * extent
[n
];
203 /* Break out of the loop. */
218 void cshift1_8 (gfc_array_char
* const restrict
,
219 const gfc_array_char
* const restrict
,
220 const gfc_array_i8
* const restrict
,
221 const GFC_INTEGER_8
* const restrict
);
222 export_proto(cshift1_8
);
225 cshift1_8 (gfc_array_char
* const restrict ret
,
226 const gfc_array_char
* const restrict array
,
227 const gfc_array_i8
* const restrict h
,
228 const GFC_INTEGER_8
* const restrict pwhich
)
230 cshift1 (ret
, array
, h
, pwhich
);
234 void cshift1_8_char (gfc_array_char
* const restrict ret
,
236 const gfc_array_char
* const restrict array
,
237 const gfc_array_i8
* const restrict h
,
238 const GFC_INTEGER_8
* const restrict pwhich
,
240 export_proto(cshift1_8_char
);
243 cshift1_8_char (gfc_array_char
* const restrict ret
,
244 GFC_INTEGER_4 ret_length
__attribute__((unused
)),
245 const gfc_array_char
* const restrict array
,
246 const gfc_array_i8
* const restrict h
,
247 const GFC_INTEGER_8
* const restrict pwhich
,
248 GFC_INTEGER_4 array_length
__attribute__((unused
)))
250 cshift1 (ret
, array
, h
, pwhich
);
254 void cshift1_8_char4 (gfc_array_char
* const restrict ret
,
256 const gfc_array_char
* const restrict array
,
257 const gfc_array_i8
* const restrict h
,
258 const GFC_INTEGER_8
* const restrict pwhich
,
260 export_proto(cshift1_8_char4
);
263 cshift1_8_char4 (gfc_array_char
* const restrict ret
,
264 GFC_INTEGER_4 ret_length
__attribute__((unused
)),
265 const gfc_array_char
* const restrict array
,
266 const gfc_array_i8
* const restrict h
,
267 const GFC_INTEGER_8
* const restrict pwhich
,
268 GFC_INTEGER_4 array_length
__attribute__((unused
)))
270 cshift1 (ret
, array
, h
, pwhich
);