1 /* Generic implementation of the EOSHIFT intrinsic
2 Copyright (C) 2002-2014 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
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 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
->base_addr
== 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
);
89 /* xmallocarray allocates a single byte for zero size. */
90 ret
->base_addr
= xmallocarray (arraysize
, size
);
92 else if (unlikely (compile_options
.bounds_check
))
94 bounds_equal_extents ((array_t
*) ret
, (array_t
*) array
,
95 "return value", "EOSHIFT");
108 for (dim
= 0; dim
< GFC_DESCRIPTOR_RANK (array
); dim
++)
112 roffset
= GFC_DESCRIPTOR_STRIDE_BYTES(ret
,dim
);
115 soffset
= GFC_DESCRIPTOR_STRIDE_BYTES(array
,dim
);
118 len
= GFC_DESCRIPTOR_EXTENT(array
,dim
);
123 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,dim
);
124 rstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(ret
,dim
);
125 sstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(array
,dim
);
134 dim
= GFC_DESCRIPTOR_RANK (array
);
135 rstride0
= rstride
[0];
136 sstride0
= sstride
[0];
137 rptr
= ret
->base_addr
;
138 sptr
= array
->base_addr
;
140 if ((shift
>= 0 ? shift
: -shift
) > len
)
155 /* Do the shift for this dimension. */
158 src
= &sptr
[shift
* soffset
];
164 dest
= &rptr
[-shift
* roffset
];
166 for (n
= 0; n
< len
; n
++)
168 memcpy (dest
, src
, size
);
185 memcpy (dest
, pbound
, size
);
194 memset (dest
, filler
[0], size
);
196 for (i
= 0; i
< size
; i
+= filler_len
)
197 memcpy (&dest
[i
], filler
, filler_len
);
202 /* Advance to the next section. */
207 while (count
[n
] == extent
[n
])
209 /* When we get to the end of a dimension, reset it and increment
210 the next dimension. */
212 /* We could precalculate these products, but this is a less
213 frequently used path so probably not worth it. */
214 rptr
-= rstride
[n
] * extent
[n
];
215 sptr
-= sstride
[n
] * extent
[n
];
219 /* Break out of the loop. */
234 #define DEFINE_EOSHIFT(N) \
235 extern void eoshift0_##N (gfc_array_char *, const gfc_array_char *, \
236 const GFC_INTEGER_##N *, const char *, \
237 const GFC_INTEGER_##N *); \
238 export_proto(eoshift0_##N); \
241 eoshift0_##N (gfc_array_char *ret, const gfc_array_char *array, \
242 const GFC_INTEGER_##N *pshift, const char *pbound, \
243 const GFC_INTEGER_##N *pdim) \
245 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
246 GFC_DESCRIPTOR_SIZE (array), "\0", 1); \
249 extern void eoshift0_##N##_char (gfc_array_char *, GFC_INTEGER_4, \
250 const gfc_array_char *, \
251 const GFC_INTEGER_##N *, const char *, \
252 const GFC_INTEGER_##N *, GFC_INTEGER_4, \
254 export_proto(eoshift0_##N##_char); \
257 eoshift0_##N##_char (gfc_array_char *ret, \
258 GFC_INTEGER_4 ret_length __attribute__((unused)), \
259 const gfc_array_char *array, \
260 const GFC_INTEGER_##N *pshift, \
261 const char *pbound, \
262 const GFC_INTEGER_##N *pdim, \
263 GFC_INTEGER_4 array_length, \
264 GFC_INTEGER_4 bound_length __attribute__((unused))) \
266 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
267 array_length, " ", 1); \
270 extern void eoshift0_##N##_char4 (gfc_array_char *, GFC_INTEGER_4, \
271 const gfc_array_char *, \
272 const GFC_INTEGER_##N *, const char *, \
273 const GFC_INTEGER_##N *, GFC_INTEGER_4, \
275 export_proto(eoshift0_##N##_char4); \
278 eoshift0_##N##_char4 (gfc_array_char *ret, \
279 GFC_INTEGER_4 ret_length __attribute__((unused)), \
280 const gfc_array_char *array, \
281 const GFC_INTEGER_##N *pshift, \
282 const char *pbound, \
283 const GFC_INTEGER_##N *pdim, \
284 GFC_INTEGER_4 array_length, \
285 GFC_INTEGER_4 bound_length __attribute__((unused))) \
287 static const gfc_char4_t space = (unsigned char) ' '; \
288 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
289 array_length * sizeof (gfc_char4_t), (const char *) &space, \
290 sizeof (gfc_char4_t)); \
297 #ifdef HAVE_GFC_INTEGER_16