1 /* Implementation of the RESHAPE
2 Copyright 2002, 2006, 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 #if defined (HAVE_GFC_REAL_16)
38 typedef GFC_ARRAY_DESCRIPTOR(1, index_type
) shape_type
;
41 extern void reshape_r16 (gfc_array_r16
* const restrict
,
42 gfc_array_r16
* const restrict
,
43 shape_type
* const restrict
,
44 gfc_array_r16
* const restrict
,
45 shape_type
* const restrict
);
46 export_proto(reshape_r16
);
49 reshape_r16 (gfc_array_r16
* const restrict ret
,
50 gfc_array_r16
* const restrict source
,
51 shape_type
* const restrict shape
,
52 gfc_array_r16
* const restrict pad
,
53 shape_type
* const restrict order
)
55 /* r.* indicates the return array. */
56 index_type rcount
[GFC_MAX_DIMENSIONS
];
57 index_type rextent
[GFC_MAX_DIMENSIONS
];
58 index_type rstride
[GFC_MAX_DIMENSIONS
];
65 /* s.* indicates the source array. */
66 index_type scount
[GFC_MAX_DIMENSIONS
];
67 index_type sextent
[GFC_MAX_DIMENSIONS
];
68 index_type sstride
[GFC_MAX_DIMENSIONS
];
72 const GFC_REAL_16
*sptr
;
73 /* p.* indicates the pad array. */
74 index_type pcount
[GFC_MAX_DIMENSIONS
];
75 index_type pextent
[GFC_MAX_DIMENSIONS
];
76 index_type pstride
[GFC_MAX_DIMENSIONS
];
79 const GFC_REAL_16
*pptr
;
81 const GFC_REAL_16
*src
;
84 int sempty
, pempty
, shape_empty
;
85 index_type shape_data
[GFC_MAX_DIMENSIONS
];
87 rdim
= shape
->dim
[0].ubound
- shape
->dim
[0].lbound
+ 1;
88 if (rdim
!= GFC_DESCRIPTOR_RANK(ret
))
89 runtime_error("rank of return array incorrect in RESHAPE intrinsic");
93 for (n
= 0; n
< rdim
; n
++)
95 shape_data
[n
] = shape
->data
[n
* shape
->dim
[0].stride
];
96 if (shape_data
[n
] <= 0)
103 if (ret
->data
== NULL
)
106 for (n
= 0; n
< rdim
; n
++)
108 ret
->dim
[n
].lbound
= 0;
110 ret
->dim
[n
].ubound
= rex
- 1;
111 ret
->dim
[n
].stride
= rs
;
115 ret
->data
= internal_malloc_size ( rs
* sizeof (GFC_REAL_16
));
116 ret
->dtype
= (source
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rdim
;
124 pdim
= GFC_DESCRIPTOR_RANK (pad
);
127 for (n
= 0; n
< pdim
; n
++)
130 pstride
[n
] = pad
->dim
[n
].stride
;
131 pextent
[n
] = pad
->dim
[n
].ubound
+ 1 - pad
->dim
[n
].lbound
;
138 if (psize
== pstride
[n
])
153 if (unlikely (compile_options
.bounds_check
))
155 index_type ret_extent
, source_extent
;
158 for (n
= 0; n
< rdim
; n
++)
161 ret_extent
= ret
->dim
[n
].ubound
+ 1 - ret
->dim
[n
].lbound
;
162 if (ret_extent
!= shape_data
[n
])
163 runtime_error("Incorrect extent in return value of RESHAPE"
164 " intrinsic in dimension %ld: is %ld,"
165 " should be %ld", (long int) n
+1,
166 (long int) ret_extent
, (long int) shape_data
[n
]);
170 sdim
= GFC_DESCRIPTOR_RANK (source
);
171 for (n
= 0; n
< sdim
; n
++)
174 se
= source
->dim
[n
].ubound
+ 1 - source
->dim
[0].lbound
;
175 source_extent
*= se
> 0 ? se
: 0;
178 if (rs
> source_extent
&& (!pad
|| pempty
))
179 runtime_error("Incorrect size in SOURCE argument to RESHAPE"
180 " intrinsic: is %ld, should be %ld",
181 (long int) source_extent
, (long int) rs
);
185 int seen
[GFC_MAX_DIMENSIONS
];
188 for (n
= 0; n
< rdim
; n
++)
191 for (n
= 0; n
< rdim
; n
++)
193 v
= order
->data
[n
* order
->dim
[0].stride
] - 1;
195 if (v
< 0 || v
>= rdim
)
196 runtime_error("Value %ld out of range in ORDER argument"
197 " to RESHAPE intrinsic", (long int) v
+ 1);
200 runtime_error("Duplicate value %ld in ORDER argument to"
201 " RESHAPE intrinsic", (long int) v
+ 1);
209 for (n
= 0; n
< rdim
; n
++)
212 dim
= order
->data
[n
* order
->dim
[0].stride
] - 1;
217 rstride
[n
] = ret
->dim
[dim
].stride
;
218 rextent
[n
] = ret
->dim
[dim
].ubound
+ 1 - ret
->dim
[dim
].lbound
;
222 if (rextent
[n
] != shape_data
[dim
])
223 runtime_error ("shape and target do not conform");
225 if (rsize
== rstride
[n
])
233 sdim
= GFC_DESCRIPTOR_RANK (source
);
236 for (n
= 0; n
< sdim
; n
++)
239 sstride
[n
] = source
->dim
[n
].stride
;
240 sextent
[n
] = source
->dim
[n
].ubound
+ 1 - source
->dim
[n
].lbound
;
247 if (ssize
== sstride
[n
])
253 if (rsize
!= 0 && ssize
!= 0 && psize
!= 0)
255 rsize
*= sizeof (GFC_REAL_16
);
256 ssize
*= sizeof (GFC_REAL_16
);
257 psize
*= sizeof (GFC_REAL_16
);
258 reshape_packed ((char *)ret
->data
, rsize
, (char *)source
->data
,
259 ssize
, pad
? (char *)pad
->data
: NULL
, psize
);
263 src
= sptr
= source
->data
;
264 rstride0
= rstride
[0];
265 sstride0
= sstride
[0];
267 if (sempty
&& pempty
)
272 /* Pretend we are using the pad array the first time around, too. */
276 for (dim
= 0; dim
< pdim
; dim
++)
278 scount
[dim
] = pcount
[dim
];
279 sextent
[dim
] = pextent
[dim
];
280 sstride
[dim
] = pstride
[dim
];
281 sstride0
= pstride
[0];
287 /* Select between the source and pad arrays. */
289 /* Advance to the next element. */
295 /* Advance to the next destination element. */
297 while (rcount
[n
] == rextent
[n
])
299 /* When we get to the end of a dimension, reset it and increment
300 the next dimension. */
302 /* We could precalculate these products, but this is a less
303 frequently used path so probably not worth it. */
304 rptr
-= rstride
[n
] * rextent
[n
];
308 /* Break out of the loop. */
318 /* Advance to the next source element. */
320 while (scount
[n
] == sextent
[n
])
322 /* When we get to the end of a dimension, reset it and increment
323 the next dimension. */
325 /* We could precalculate these products, but this is a less
326 frequently used path so probably not worth it. */
327 src
-= sstride
[n
] * sextent
[n
];
333 /* Switch to the pad array. */
336 for (dim
= 0; dim
< pdim
; dim
++)
338 scount
[dim
] = pcount
[dim
];
339 sextent
[dim
] = pextent
[dim
];
340 sstride
[dim
] = pstride
[dim
];
341 sstride0
= sstride
[0];
344 /* We now start again from the beginning of the pad array. */