1 /* Generic implementation of the EOSHIFT intrinsic
2 Copyright 2002 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., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. */
35 #include "libgfortran.h"
37 static const char zeros
[16] =
38 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
40 /* TODO: make this work for large shifts when
41 sizeof(int) < sizeof (index_type). */
44 eoshift0 (gfc_array_char
* ret
, const gfc_array_char
* array
,
45 int shift
, const char * pbound
, int which
)
47 /* r.* indicates the return array. */
48 index_type rstride
[GFC_MAX_DIMENSIONS
- 1];
53 /* s.* indicates the source array. */
54 index_type sstride
[GFC_MAX_DIMENSIONS
- 1];
60 index_type count
[GFC_MAX_DIMENSIONS
- 1];
61 index_type extent
[GFC_MAX_DIMENSIONS
- 1];
70 size
= GFC_DESCRIPTOR_SIZE (ret
);
72 if (ret
->data
== NULL
)
76 ret
->data
= internal_malloc_size (size
* size0 ((array_t
*)array
));
78 ret
->dtype
= array
->dtype
;
79 for (i
= 0; i
< GFC_DESCRIPTOR_RANK (array
); i
++)
81 ret
->dim
[i
].lbound
= 0;
82 ret
->dim
[i
].ubound
= array
->dim
[i
].ubound
- array
->dim
[i
].lbound
;
85 ret
->dim
[i
].stride
= 1;
87 ret
->dim
[i
].stride
= (ret
->dim
[i
-1].ubound
+ 1) * ret
->dim
[i
-1].stride
;
95 size
= GFC_DESCRIPTOR_SIZE (array
);
97 for (dim
= 0; dim
< GFC_DESCRIPTOR_RANK (array
); dim
++)
101 roffset
= ret
->dim
[dim
].stride
* size
;
104 soffset
= array
->dim
[dim
].stride
* size
;
107 len
= array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
112 extent
[n
] = array
->dim
[dim
].ubound
+ 1 - array
->dim
[dim
].lbound
;
113 rstride
[n
] = ret
->dim
[dim
].stride
* size
;
114 sstride
[n
] = array
->dim
[dim
].stride
* size
;
123 dim
= GFC_DESCRIPTOR_RANK (array
);
124 rstride0
= rstride
[0];
125 sstride0
= sstride
[0];
135 /* Do the shift for this dimension. */
138 src
= &sptr
[shift
* soffset
];
144 dest
= &rptr
[-shift
* roffset
];
146 for (n
= 0; n
< len
; n
++)
148 memcpy (dest
, src
, size
);
164 memcpy (dest
, pbound
, size
);
168 /* Advance to the next section. */
173 while (count
[n
] == extent
[n
])
175 /* When we get to the end of a dimension, reset it and increment
176 the next dimension. */
178 /* We could precalculate these products, but this is a less
179 frequently used path so proabably not worth it. */
180 rptr
-= rstride
[n
] * extent
[n
];
181 sptr
-= sstride
[n
] * extent
[n
];
185 /* Break out of the loop. */
200 extern void eoshift0_1 (gfc_array_char
*, const gfc_array_char
*,
201 const GFC_INTEGER_1
*, const char *,
202 const GFC_INTEGER_1
*);
203 export_proto(eoshift0_1
);
206 eoshift0_1 (gfc_array_char
*ret
, const gfc_array_char
*array
,
207 const GFC_INTEGER_1
*pshift
, const char *pbound
,
208 const GFC_INTEGER_1
*pdim
)
210 eoshift0 (ret
, array
, *pshift
, pbound
, pdim
? *pdim
: 1);
214 extern void eoshift0_2 (gfc_array_char
*, const gfc_array_char
*,
215 const GFC_INTEGER_2
*, const char *,
216 const GFC_INTEGER_2
*);
217 export_proto(eoshift0_2
);
220 eoshift0_2 (gfc_array_char
*ret
, const gfc_array_char
*array
,
221 const GFC_INTEGER_2
*pshift
, const char *pbound
,
222 const GFC_INTEGER_2
*pdim
)
224 eoshift0 (ret
, array
, *pshift
, pbound
, pdim
? *pdim
: 1);
228 extern void eoshift0_4 (gfc_array_char
*, const gfc_array_char
*,
229 const GFC_INTEGER_4
*, const char *,
230 const GFC_INTEGER_4
*);
231 export_proto(eoshift0_4
);
234 eoshift0_4 (gfc_array_char
*ret
, const gfc_array_char
*array
,
235 const GFC_INTEGER_4
*pshift
, const char *pbound
,
236 const GFC_INTEGER_4
*pdim
)
238 eoshift0 (ret
, array
, *pshift
, pbound
, pdim
? *pdim
: 1);
242 extern void eoshift0_8 (gfc_array_char
*, const gfc_array_char
*,
243 const GFC_INTEGER_8
*, const char *,
244 const GFC_INTEGER_8
*);
245 export_proto(eoshift0_8
);
248 eoshift0_8 (gfc_array_char
*ret
, const gfc_array_char
*array
,
249 const GFC_INTEGER_8
*pshift
, const char *pbound
,
250 const GFC_INTEGER_8
*pdim
)
252 eoshift0 (ret
, array
, *pshift
, pbound
, pdim
? *pdim
: 1);