1 /* 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"
37 #if defined (HAVE_GFC_INTEGER_8)
40 eoshift1 (gfc_array_char
* const restrict ret
,
41 const gfc_array_char
* const restrict array
,
42 const gfc_array_i8
* const restrict h
,
43 const char * const restrict pbound
,
44 const GFC_INTEGER_8
* const restrict pwhich
,
45 index_type size
, const char * filler
, index_type filler_len
)
47 /* r.* indicates the return array. */
48 index_type rstride
[GFC_MAX_DIMENSIONS
];
53 /* s.* indicates the source array. */
54 index_type sstride
[GFC_MAX_DIMENSIONS
];
59 /* h.* indicates the shift array. */
60 index_type hstride
[GFC_MAX_DIMENSIONS
];
62 const GFC_INTEGER_8
*hptr
;
64 index_type count
[GFC_MAX_DIMENSIONS
];
65 index_type extent
[GFC_MAX_DIMENSIONS
];
73 /* The compiler cannot figure out that these are set, initialize
74 them to avoid warnings. */
87 if (ret
->data
== NULL
)
91 ret
->data
= internal_malloc_size (size
* size0 ((array_t
*)array
));
93 ret
->dtype
= array
->dtype
;
94 for (i
= 0; i
< GFC_DESCRIPTOR_RANK (array
); i
++)
96 ret
->dim
[i
].lbound
= 0;
97 ret
->dim
[i
].ubound
= array
->dim
[i
].ubound
- array
->dim
[i
].lbound
;
100 ret
->dim
[i
].stride
= 1;
102 ret
->dim
[i
].stride
= (ret
->dim
[i
-1].ubound
+ 1) * ret
->dim
[i
-1].stride
;
107 for (dim
= 0; dim
< GFC_DESCRIPTOR_RANK (array
); dim
++)
111 roffset
= ret
->dim
[dim
].stride
* size
;
114 soffset
= array
->dim
[dim
].stride
* size
;
117 len
= array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
122 extent
[n
] = array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
123 rstride
[n
] = ret
->dim
[dim
].stride
* size
;
124 sstride
[n
] = array
->dim
[dim
].stride
* size
;
126 hstride
[n
] = h
->dim
[n
].stride
;
137 dim
= GFC_DESCRIPTOR_RANK (array
);
138 rstride0
= rstride
[0];
139 sstride0
= sstride
[0];
140 hstride0
= hstride
[0];
147 /* Do the shift for this dimension. */
149 if (( sh
>= 0 ? sh
: -sh
) > len
)
155 delta
= (sh
>= 0) ? sh
: -sh
;
159 src
= &sptr
[delta
* soffset
];
165 dest
= &rptr
[delta
* roffset
];
167 for (n
= 0; n
< len
- delta
; n
++)
169 memcpy (dest
, src
, size
);
180 memcpy (dest
, pbound
, size
);
189 memset (dest
, filler
[0], size
);
191 for (i
= 0; i
< size
; i
+= filler_len
)
192 memcpy (&dest
[i
], filler
, filler_len
);
197 /* Advance to the next section. */
203 while (count
[n
] == extent
[n
])
205 /* When we get to the end of a dimension, reset it and increment
206 the next dimension. */
208 /* We could precalculate these products, but this is a less
209 frequently used path so probably not worth it. */
210 rptr
-= rstride
[n
] * extent
[n
];
211 sptr
-= sstride
[n
] * extent
[n
];
212 hptr
-= hstride
[n
] * extent
[n
];
216 /* Break out of the loop. */
231 void eoshift1_8 (gfc_array_char
* const restrict
,
232 const gfc_array_char
* const restrict
,
233 const gfc_array_i8
* const restrict
, const char * const restrict
,
234 const GFC_INTEGER_8
* const restrict
);
235 export_proto(eoshift1_8
);
238 eoshift1_8 (gfc_array_char
* const restrict ret
,
239 const gfc_array_char
* const restrict array
,
240 const gfc_array_i8
* const restrict h
,
241 const char * const restrict pbound
,
242 const GFC_INTEGER_8
* const restrict pwhich
)
244 eoshift1 (ret
, array
, h
, pbound
, pwhich
, GFC_DESCRIPTOR_SIZE (array
),
249 void eoshift1_8_char (gfc_array_char
* const restrict
,
251 const gfc_array_char
* const restrict
,
252 const gfc_array_i8
* const restrict
,
253 const char * const restrict
,
254 const GFC_INTEGER_8
* const restrict
,
255 GFC_INTEGER_4
, GFC_INTEGER_4
);
256 export_proto(eoshift1_8_char
);
259 eoshift1_8_char (gfc_array_char
* const restrict ret
,
260 GFC_INTEGER_4 ret_length
__attribute__((unused
)),
261 const gfc_array_char
* const restrict array
,
262 const gfc_array_i8
* const restrict h
,
263 const char * const restrict pbound
,
264 const GFC_INTEGER_8
* const restrict pwhich
,
265 GFC_INTEGER_4 array_length
,
266 GFC_INTEGER_4 bound_length
__attribute__((unused
)))
268 eoshift1 (ret
, array
, h
, pbound
, pwhich
, array_length
, " ", 1);
272 void eoshift1_8_char4 (gfc_array_char
* const restrict
,
274 const gfc_array_char
* const restrict
,
275 const gfc_array_i8
* const restrict
,
276 const char * const restrict
,
277 const GFC_INTEGER_8
* const restrict
,
278 GFC_INTEGER_4
, GFC_INTEGER_4
);
279 export_proto(eoshift1_8_char4
);
282 eoshift1_8_char4 (gfc_array_char
* const restrict ret
,
283 GFC_INTEGER_4 ret_length
__attribute__((unused
)),
284 const gfc_array_char
* const restrict array
,
285 const gfc_array_i8
* const restrict h
,
286 const char * const restrict pbound
,
287 const GFC_INTEGER_8
* const restrict pwhich
,
288 GFC_INTEGER_4 array_length
,
289 GFC_INTEGER_4 bound_length
__attribute__((unused
)))
291 static const gfc_char4_t space
= (unsigned char) ' ';
292 eoshift1 (ret
, array
, h
, pbound
, pwhich
, array_length
* sizeof (gfc_char4_t
),
293 (const char *) &space
, sizeof (gfc_char4_t
));