2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libgfortran / generated / cshift1_8.c
blob9667728f3921b5d959cd1efe01d8c55e65a51c33
1 /* Implementation of the CSHIFT intrinsic
2 Copyright 2003, 2007, 2009 Free Software Foundation, Inc.
3 Contributed by Feng Wang <wf_cs@yahoo.com>
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 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"
27 #include <stdlib.h>
28 #include <assert.h>
29 #include <string.h>
32 #if defined (HAVE_GFC_INTEGER_8)
34 static void
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];
42 index_type rstride0;
43 index_type roffset;
44 char *rptr;
45 char *dest;
46 /* s.* indicates the source array. */
47 index_type sstride[GFC_MAX_DIMENSIONS];
48 index_type sstride0;
49 index_type soffset;
50 const char *sptr;
51 const char *src;
52 /* h.* indicates the shift array. */
53 index_type hstride[GFC_MAX_DIMENSIONS];
54 index_type hstride0;
55 const GFC_INTEGER_8 *hptr;
57 index_type count[GFC_MAX_DIMENSIONS];
58 index_type extent[GFC_MAX_DIMENSIONS];
59 index_type dim;
60 index_type len;
61 index_type n;
62 int which;
63 GFC_INTEGER_8 sh;
64 index_type arraysize;
65 index_type size;
67 if (pwhich)
68 which = *pwhich - 1;
69 else
70 which = 0;
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->data == NULL)
81 int i;
83 ret->data = internal_malloc_size (size * arraysize);
84 ret->offset = 0;
85 ret->dtype = array->dtype;
86 for (i = 0; i < GFC_DESCRIPTOR_RANK (array); i++)
88 index_type ub, str;
90 ub = GFC_DESCRIPTOR_EXTENT(array,i) - 1;
92 if (i == 0)
93 str = 1;
94 else
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);
102 if (arraysize == 0)
103 return;
105 extent[0] = 1;
106 count[0] = 0;
107 n = 0;
109 /* Initialized for avoiding compiler warnings. */
110 roffset = size;
111 soffset = size;
112 len = 0;
114 for (dim = 0; dim < GFC_DESCRIPTOR_RANK (array); dim++)
116 if (dim == which)
118 roffset = GFC_DESCRIPTOR_STRIDE_BYTES(ret,dim);
119 if (roffset == 0)
120 roffset = size;
121 soffset = GFC_DESCRIPTOR_STRIDE_BYTES(array,dim);
122 if (soffset == 0)
123 soffset = size;
124 len = GFC_DESCRIPTOR_EXTENT(array,dim);
126 else
128 count[n] = 0;
129 extent[n] = GFC_DESCRIPTOR_EXTENT(array,dim);
130 rstride[n] = GFC_DESCRIPTOR_STRIDE_BYTES(ret,dim);
131 sstride[n] = GFC_DESCRIPTOR_STRIDE_BYTES(array,dim);
133 hstride[n] = GFC_DESCRIPTOR_STRIDE(h,n);
134 n++;
137 if (sstride[0] == 0)
138 sstride[0] = size;
139 if (rstride[0] == 0)
140 rstride[0] = size;
141 if (hstride[0] == 0)
142 hstride[0] = 1;
144 dim = GFC_DESCRIPTOR_RANK (array);
145 rstride0 = rstride[0];
146 sstride0 = sstride[0];
147 hstride0 = hstride[0];
148 rptr = ret->data;
149 sptr = array->data;
150 hptr = h->data;
152 while (rptr)
154 /* Do the shift for this dimension. */
155 sh = *hptr;
156 sh = (div (sh, len)).rem;
157 if (sh < 0)
158 sh += len;
160 src = &sptr[sh * soffset];
161 dest = rptr;
163 for (n = 0; n < len; n++)
165 memcpy (dest, src, size);
166 dest += roffset;
167 if (n == len - sh - 1)
168 src = sptr;
169 else
170 src += soffset;
173 /* Advance to the next section. */
174 rptr += rstride0;
175 sptr += sstride0;
176 hptr += hstride0;
177 count[0]++;
178 n = 0;
179 while (count[n] == extent[n])
181 /* When we get to the end of a dimension, reset it and increment
182 the next dimension. */
183 count[n] = 0;
184 /* We could precalculate these products, but this is a less
185 frequently used path so probably not worth it. */
186 rptr -= rstride[n] * extent[n];
187 sptr -= sstride[n] * extent[n];
188 hptr -= hstride[n] * extent[n];
189 n++;
190 if (n >= dim - 1)
192 /* Break out of the loop. */
193 rptr = NULL;
194 break;
196 else
198 count[n]++;
199 rptr += rstride[n];
200 sptr += sstride[n];
201 hptr += hstride[n];
207 void cshift1_8 (gfc_array_char * const restrict,
208 const gfc_array_char * const restrict,
209 const gfc_array_i8 * const restrict,
210 const GFC_INTEGER_8 * const restrict);
211 export_proto(cshift1_8);
213 void
214 cshift1_8 (gfc_array_char * const restrict ret,
215 const gfc_array_char * const restrict array,
216 const gfc_array_i8 * const restrict h,
217 const GFC_INTEGER_8 * const restrict pwhich)
219 cshift1 (ret, array, h, pwhich);
223 void cshift1_8_char (gfc_array_char * const restrict ret,
224 GFC_INTEGER_4,
225 const gfc_array_char * const restrict array,
226 const gfc_array_i8 * const restrict h,
227 const GFC_INTEGER_8 * const restrict pwhich,
228 GFC_INTEGER_4);
229 export_proto(cshift1_8_char);
231 void
232 cshift1_8_char (gfc_array_char * const restrict ret,
233 GFC_INTEGER_4 ret_length __attribute__((unused)),
234 const gfc_array_char * const restrict array,
235 const gfc_array_i8 * const restrict h,
236 const GFC_INTEGER_8 * const restrict pwhich,
237 GFC_INTEGER_4 array_length __attribute__((unused)))
239 cshift1 (ret, array, h, pwhich);
243 void cshift1_8_char4 (gfc_array_char * const restrict ret,
244 GFC_INTEGER_4,
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);
249 export_proto(cshift1_8_char4);
251 void
252 cshift1_8_char4 (gfc_array_char * const restrict ret,
253 GFC_INTEGER_4 ret_length __attribute__((unused)),
254 const gfc_array_char * const restrict array,
255 const gfc_array_i8 * const restrict h,
256 const GFC_INTEGER_8 * const restrict pwhich,
257 GFC_INTEGER_4 array_length __attribute__((unused)))
259 cshift1 (ret, array, h, pwhich);
262 #endif