1 /* Generic implementation of the EOSHIFT intrinsic
2 Copyright 2002, 2005, 2007, 2009 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 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"
31 /* TODO: make this work for large shifts when
32 sizeof(int) < sizeof (index_type). */
35 eoshift0 (gfc_array_char
* ret
, const gfc_array_char
* array
,
36 int shift
, const char * pbound
, int which
, index_type size
,
37 const char *filler
, index_type filler_len
)
39 /* r.* indicates the return array. */
40 index_type rstride
[GFC_MAX_DIMENSIONS
];
45 /* s.* indicates the source array. */
46 index_type sstride
[GFC_MAX_DIMENSIONS
];
52 index_type count
[GFC_MAX_DIMENSIONS
];
53 index_type extent
[GFC_MAX_DIMENSIONS
];
59 /* The compiler cannot figure out that these are set, initialize
60 them to avoid warnings. */
65 arraysize
= size0 ((array_t
*) array
);
67 if (ret
->data
== NULL
)
72 ret
->dtype
= array
->dtype
;
73 for (i
= 0; i
< GFC_DESCRIPTOR_RANK (array
); i
++)
77 ub
= GFC_DESCRIPTOR_EXTENT(array
,i
) - 1;
82 str
= GFC_DESCRIPTOR_EXTENT(ret
,i
-1)
83 * GFC_DESCRIPTOR_STRIDE(ret
,i
-1);
85 GFC_DIMENSION_SET(ret
->dim
[i
], 0, ub
, str
);
90 ret
->data
= internal_malloc_size (size
* arraysize
);
92 ret
->data
= internal_malloc_size (1);
95 else if (unlikely (compile_options
.bounds_check
))
97 bounds_equal_extents ((array_t
*) ret
, (array_t
*) array
,
98 "return value", "EOSHIFT");
111 for (dim
= 0; dim
< GFC_DESCRIPTOR_RANK (array
); dim
++)
115 roffset
= GFC_DESCRIPTOR_STRIDE_BYTES(ret
,dim
);
118 soffset
= GFC_DESCRIPTOR_STRIDE_BYTES(array
,dim
);
121 len
= GFC_DESCRIPTOR_EXTENT(array
,dim
);
126 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,dim
);
127 rstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(ret
,dim
);
128 sstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(array
,dim
);
137 dim
= GFC_DESCRIPTOR_RANK (array
);
138 rstride0
= rstride
[0];
139 sstride0
= sstride
[0];
143 if ((shift
>= 0 ? shift
: -shift
) > len
)
158 /* Do the shift for this dimension. */
161 src
= &sptr
[shift
* soffset
];
167 dest
= &rptr
[-shift
* roffset
];
169 for (n
= 0; n
< len
; n
++)
171 memcpy (dest
, src
, size
);
188 memcpy (dest
, pbound
, size
);
197 memset (dest
, filler
[0], size
);
199 for (i
= 0; i
< size
; i
+= filler_len
)
200 memcpy (&dest
[i
], filler
, filler_len
);
205 /* Advance to the next section. */
210 while (count
[n
] == extent
[n
])
212 /* When we get to the end of a dimension, reset it and increment
213 the next dimension. */
215 /* We could precalculate these products, but this is a less
216 frequently used path so probably not worth it. */
217 rptr
-= rstride
[n
] * extent
[n
];
218 sptr
-= sstride
[n
] * extent
[n
];
222 /* Break out of the loop. */
237 #define DEFINE_EOSHIFT(N) \
238 extern void eoshift0_##N (gfc_array_char *, const gfc_array_char *, \
239 const GFC_INTEGER_##N *, const char *, \
240 const GFC_INTEGER_##N *); \
241 export_proto(eoshift0_##N); \
244 eoshift0_##N (gfc_array_char *ret, const gfc_array_char *array, \
245 const GFC_INTEGER_##N *pshift, const char *pbound, \
246 const GFC_INTEGER_##N *pdim) \
248 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
249 GFC_DESCRIPTOR_SIZE (array), "\0", 1); \
252 extern void eoshift0_##N##_char (gfc_array_char *, GFC_INTEGER_4, \
253 const gfc_array_char *, \
254 const GFC_INTEGER_##N *, const char *, \
255 const GFC_INTEGER_##N *, GFC_INTEGER_4, \
257 export_proto(eoshift0_##N##_char); \
260 eoshift0_##N##_char (gfc_array_char *ret, \
261 GFC_INTEGER_4 ret_length __attribute__((unused)), \
262 const gfc_array_char *array, \
263 const GFC_INTEGER_##N *pshift, \
264 const char *pbound, \
265 const GFC_INTEGER_##N *pdim, \
266 GFC_INTEGER_4 array_length, \
267 GFC_INTEGER_4 bound_length __attribute__((unused))) \
269 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
270 array_length, " ", 1); \
273 extern void eoshift0_##N##_char4 (gfc_array_char *, GFC_INTEGER_4, \
274 const gfc_array_char *, \
275 const GFC_INTEGER_##N *, const char *, \
276 const GFC_INTEGER_##N *, GFC_INTEGER_4, \
278 export_proto(eoshift0_##N##_char4); \
281 eoshift0_##N##_char4 (gfc_array_char *ret, \
282 GFC_INTEGER_4 ret_length __attribute__((unused)), \
283 const gfc_array_char *array, \
284 const GFC_INTEGER_##N *pshift, \
285 const char *pbound, \
286 const GFC_INTEGER_##N *pdim, \
287 GFC_INTEGER_4 array_length, \
288 GFC_INTEGER_4 bound_length __attribute__((unused))) \
290 static const gfc_char4_t space = (unsigned char) ' '; \
291 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
292 array_length * sizeof (gfc_char4_t), (const char *) &space, \
293 sizeof (gfc_char4_t)); \
300 #ifdef HAVE_GFC_INTEGER_16