1 /* Implementation of the RESHAPE intrinsic
2 Copyright (C) 2002-2017 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"
29 #if defined (HAVE_GFC_INTEGER_16)
31 typedef GFC_ARRAY_DESCRIPTOR(1, index_type
) shape_type
;
34 extern void reshape_16 (gfc_array_i16
* const restrict
,
35 gfc_array_i16
* const restrict
,
36 shape_type
* const restrict
,
37 gfc_array_i16
* const restrict
,
38 shape_type
* const restrict
);
39 export_proto(reshape_16
);
42 reshape_16 (gfc_array_i16
* const restrict ret
,
43 gfc_array_i16
* const restrict source
,
44 shape_type
* const restrict shape
,
45 gfc_array_i16
* const restrict pad
,
46 shape_type
* const restrict order
)
48 /* r.* indicates the return array. */
49 index_type rcount
[GFC_MAX_DIMENSIONS
];
50 index_type rextent
[GFC_MAX_DIMENSIONS
];
51 index_type rstride
[GFC_MAX_DIMENSIONS
];
58 /* s.* indicates the source array. */
59 index_type scount
[GFC_MAX_DIMENSIONS
];
60 index_type sextent
[GFC_MAX_DIMENSIONS
];
61 index_type sstride
[GFC_MAX_DIMENSIONS
];
65 const GFC_INTEGER_16
*sptr
;
66 /* p.* indicates the pad array. */
67 index_type pcount
[GFC_MAX_DIMENSIONS
];
68 index_type pextent
[GFC_MAX_DIMENSIONS
];
69 index_type pstride
[GFC_MAX_DIMENSIONS
];
72 const GFC_INTEGER_16
*pptr
;
74 const GFC_INTEGER_16
*src
;
77 int sempty
, pempty
, shape_empty
;
78 index_type shape_data
[GFC_MAX_DIMENSIONS
];
80 rdim
= GFC_DESCRIPTOR_EXTENT(shape
,0);
81 /* rdim is always > 0; this lets the compiler optimize more and
82 avoids a potential warning. */
85 if (rdim
!= GFC_DESCRIPTOR_RANK(ret
))
86 runtime_error("rank of return array incorrect in RESHAPE intrinsic");
90 for (n
= 0; n
< rdim
; n
++)
92 shape_data
[n
] = shape
->base_addr
[n
* GFC_DESCRIPTOR_STRIDE(shape
,0)];
93 if (shape_data
[n
] <= 0)
100 if (ret
->base_addr
== NULL
)
102 index_type alloc_size
;
105 for (n
= 0; n
< rdim
; n
++)
109 GFC_DIMENSION_SET(ret
->dim
[n
], 0, rex
- 1, rs
);
115 if (unlikely (rs
< 1))
120 ret
->base_addr
= xmallocarray (alloc_size
, sizeof (GFC_INTEGER_16
));
121 ret
->dtype
= (source
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rdim
;
129 pdim
= GFC_DESCRIPTOR_RANK (pad
);
132 for (n
= 0; n
< pdim
; n
++)
135 pstride
[n
] = GFC_DESCRIPTOR_STRIDE(pad
,n
);
136 pextent
[n
] = GFC_DESCRIPTOR_EXTENT(pad
,n
);
143 if (psize
== pstride
[n
])
148 pptr
= pad
->base_addr
;
158 if (unlikely (compile_options
.bounds_check
))
160 index_type ret_extent
, source_extent
;
163 for (n
= 0; n
< rdim
; n
++)
166 ret_extent
= GFC_DESCRIPTOR_EXTENT(ret
,n
);
167 if (ret_extent
!= shape_data
[n
])
168 runtime_error("Incorrect extent in return value of RESHAPE"
169 " intrinsic in dimension %ld: is %ld,"
170 " should be %ld", (long int) n
+1,
171 (long int) ret_extent
, (long int) shape_data
[n
]);
175 sdim
= GFC_DESCRIPTOR_RANK (source
);
176 for (n
= 0; n
< sdim
; n
++)
179 se
= GFC_DESCRIPTOR_EXTENT(source
,n
);
180 source_extent
*= se
> 0 ? se
: 0;
183 if (rs
> source_extent
&& (!pad
|| pempty
))
184 runtime_error("Incorrect size in SOURCE argument to RESHAPE"
185 " intrinsic: is %ld, should be %ld",
186 (long int) source_extent
, (long int) rs
);
190 int seen
[GFC_MAX_DIMENSIONS
];
193 for (n
= 0; n
< rdim
; n
++)
196 for (n
= 0; n
< rdim
; n
++)
198 v
= order
->base_addr
[n
* GFC_DESCRIPTOR_STRIDE(order
,0)] - 1;
200 if (v
< 0 || v
>= rdim
)
201 runtime_error("Value %ld out of range in ORDER argument"
202 " to RESHAPE intrinsic", (long int) v
+ 1);
205 runtime_error("Duplicate value %ld in ORDER argument to"
206 " RESHAPE intrinsic", (long int) v
+ 1);
214 for (n
= 0; n
< rdim
; n
++)
217 dim
= order
->base_addr
[n
* GFC_DESCRIPTOR_STRIDE(order
,0)] - 1;
222 rstride
[n
] = GFC_DESCRIPTOR_STRIDE(ret
,dim
);
223 rextent
[n
] = GFC_DESCRIPTOR_EXTENT(ret
,dim
);
227 if (rextent
[n
] != shape_data
[dim
])
228 runtime_error ("shape and target do not conform");
230 if (rsize
== rstride
[n
])
238 sdim
= GFC_DESCRIPTOR_RANK (source
);
240 /* sdim is always > 0; this lets the compiler optimize more and
246 for (n
= 0; n
< sdim
; n
++)
249 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(source
,n
);
250 sextent
[n
] = GFC_DESCRIPTOR_EXTENT(source
,n
);
257 if (ssize
== sstride
[n
])
263 if (rsize
!= 0 && ssize
!= 0 && psize
!= 0)
265 rsize
*= sizeof (GFC_INTEGER_16
);
266 ssize
*= sizeof (GFC_INTEGER_16
);
267 psize
*= sizeof (GFC_INTEGER_16
);
268 reshape_packed ((char *)ret
->base_addr
, rsize
, (char *)source
->base_addr
,
269 ssize
, pad
? (char *)pad
->base_addr
: NULL
, psize
);
272 rptr
= ret
->base_addr
;
273 src
= sptr
= source
->base_addr
;
274 rstride0
= rstride
[0];
275 sstride0
= sstride
[0];
277 if (sempty
&& pempty
)
282 /* Pretend we are using the pad array the first time around, too. */
286 for (dim
= 0; dim
< pdim
; dim
++)
288 scount
[dim
] = pcount
[dim
];
289 sextent
[dim
] = pextent
[dim
];
290 sstride
[dim
] = pstride
[dim
];
291 sstride0
= pstride
[0];
297 /* Select between the source and pad arrays. */
299 /* Advance to the next element. */
305 /* Advance to the next destination element. */
307 while (rcount
[n
] == rextent
[n
])
309 /* When we get to the end of a dimension, reset it and increment
310 the next dimension. */
312 /* We could precalculate these products, but this is a less
313 frequently used path so probably not worth it. */
314 rptr
-= rstride
[n
] * rextent
[n
];
318 /* Break out of the loop. */
328 /* Advance to the next source element. */
330 while (scount
[n
] == sextent
[n
])
332 /* When we get to the end of a dimension, reset it and increment
333 the next dimension. */
335 /* We could precalculate these products, but this is a less
336 frequently used path so probably not worth it. */
337 src
-= sstride
[n
] * sextent
[n
];
343 /* Switch to the pad array. */
346 for (dim
= 0; dim
< pdim
; dim
++)
348 scount
[dim
] = pcount
[dim
];
349 sextent
[dim
] = pextent
[dim
];
350 sstride
[dim
] = pstride
[dim
];
351 sstride0
= sstride
[0];
354 /* We now start again from the beginning of the pad array. */