1 /* Generic implementation of the EOSHIFT intrinsic
2 Copyright 2002, 2005, 2007 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 2 of the License, or (at your option) any later version.
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
21 Libgfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING. If not,
28 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA. */
31 #include "libgfortran.h"
36 /* TODO: make this work for large shifts when
37 sizeof(int) < sizeof (index_type). */
40 eoshift0 (gfc_array_char
* ret
, const gfc_array_char
* array
,
41 int shift
, const char * pbound
, int which
, index_type size
,
44 /* r.* indicates the return array. */
45 index_type rstride
[GFC_MAX_DIMENSIONS
];
50 /* s.* indicates the source array. */
51 index_type sstride
[GFC_MAX_DIMENSIONS
];
57 index_type count
[GFC_MAX_DIMENSIONS
];
58 index_type extent
[GFC_MAX_DIMENSIONS
];
63 /* The compiler cannot figure out that these are set, initialize
64 them to avoid warnings. */
69 if (ret
->data
== NULL
)
73 ret
->data
= internal_malloc_size (size
* size0 ((array_t
*)array
));
75 ret
->dtype
= array
->dtype
;
76 for (i
= 0; i
< GFC_DESCRIPTOR_RANK (array
); i
++)
78 ret
->dim
[i
].lbound
= 0;
79 ret
->dim
[i
].ubound
= array
->dim
[i
].ubound
- array
->dim
[i
].lbound
;
82 ret
->dim
[i
].stride
= 1;
84 ret
->dim
[i
].stride
= (ret
->dim
[i
-1].ubound
+ 1) * ret
->dim
[i
-1].stride
;
95 for (dim
= 0; dim
< GFC_DESCRIPTOR_RANK (array
); dim
++)
99 roffset
= ret
->dim
[dim
].stride
* size
;
102 soffset
= array
->dim
[dim
].stride
* size
;
105 len
= array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
110 extent
[n
] = array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
111 rstride
[n
] = ret
->dim
[dim
].stride
* size
;
112 sstride
[n
] = array
->dim
[dim
].stride
* size
;
121 dim
= GFC_DESCRIPTOR_RANK (array
);
122 rstride0
= rstride
[0];
123 sstride0
= sstride
[0];
127 if ((shift
>= 0 ? shift
: -shift
) > len
)
142 /* Do the shift for this dimension. */
145 src
= &sptr
[shift
* soffset
];
151 dest
= &rptr
[-shift
* roffset
];
153 for (n
= 0; n
< len
; n
++)
155 memcpy (dest
, src
, size
);
172 memcpy (dest
, pbound
, size
);
178 memset (dest
, filler
, size
);
182 /* Advance to the next section. */
187 while (count
[n
] == extent
[n
])
189 /* When we get to the end of a dimension, reset it and increment
190 the next dimension. */
192 /* We could precalculate these products, but this is a less
193 frequently used path so probably not worth it. */
194 rptr
-= rstride
[n
] * extent
[n
];
195 sptr
-= sstride
[n
] * extent
[n
];
199 /* Break out of the loop. */
214 #define DEFINE_EOSHIFT(N) \
215 extern void eoshift0_##N (gfc_array_char *, const gfc_array_char *, \
216 const GFC_INTEGER_##N *, const char *, \
217 const GFC_INTEGER_##N *); \
218 export_proto(eoshift0_##N); \
221 eoshift0_##N (gfc_array_char *ret, const gfc_array_char *array, \
222 const GFC_INTEGER_##N *pshift, const char *pbound, \
223 const GFC_INTEGER_##N *pdim) \
225 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
226 GFC_DESCRIPTOR_SIZE (array), 0); \
229 extern void eoshift0_##N##_char (gfc_array_char *, GFC_INTEGER_4, \
230 const gfc_array_char *, \
231 const GFC_INTEGER_##N *, const char *, \
232 const GFC_INTEGER_##N *, GFC_INTEGER_4, \
234 export_proto(eoshift0_##N##_char); \
237 eoshift0_##N##_char (gfc_array_char *ret, \
238 GFC_INTEGER_4 ret_length __attribute__((unused)), \
239 const gfc_array_char *array, \
240 const GFC_INTEGER_##N *pshift, \
241 const char *pbound, \
242 const GFC_INTEGER_##N *pdim, \
243 GFC_INTEGER_4 array_length, \
244 GFC_INTEGER_4 bound_length __attribute__((unused))) \
246 eoshift0 (ret, array, *pshift, pbound, pdim ? *pdim : 1, \
247 array_length, ' '); \