1 /* Generic helper function for repacking arrays.
2 Copyright 2003, 2004, 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 extern void internal_unpack (gfc_array_char
*, const void *);
37 export_proto(internal_unpack
);
40 internal_unpack (gfc_array_char
* d
, const void * s
)
42 index_type count
[GFC_MAX_DIMENSIONS
];
43 index_type extent
[GFC_MAX_DIMENSIONS
];
44 index_type stride
[GFC_MAX_DIMENSIONS
];
55 /* This check may be redundant, but do it anyway. */
59 type_size
= GFC_DTYPE_TYPE_SIZE (d
);
62 case GFC_DTYPE_INTEGER_1
:
63 case GFC_DTYPE_LOGICAL_1
:
64 case GFC_DTYPE_DERIVED_1
:
65 internal_unpack_1 ((gfc_array_i1
*) d
, (const GFC_INTEGER_1
*) s
);
68 case GFC_DTYPE_INTEGER_2
:
69 case GFC_DTYPE_LOGICAL_2
:
70 internal_unpack_2 ((gfc_array_i2
*) d
, (const GFC_INTEGER_2
*) s
);
73 case GFC_DTYPE_INTEGER_4
:
74 case GFC_DTYPE_LOGICAL_4
:
75 internal_unpack_4 ((gfc_array_i4
*) d
, (const GFC_INTEGER_4
*) s
);
78 case GFC_DTYPE_INTEGER_8
:
79 case GFC_DTYPE_LOGICAL_8
:
80 internal_unpack_8 ((gfc_array_i8
*) d
, (const GFC_INTEGER_8
*) s
);
83 #if defined (HAVE_GFC_INTEGER_16)
84 case GFC_DTYPE_INTEGER_16
:
85 case GFC_DTYPE_LOGICAL_16
:
86 internal_unpack_16 ((gfc_array_i16
*) d
, (const GFC_INTEGER_16
*) s
);
89 case GFC_DTYPE_REAL_4
:
90 internal_unpack_r4 ((gfc_array_r4
*) d
, (const GFC_REAL_4
*) s
);
93 case GFC_DTYPE_REAL_8
:
94 internal_unpack_r8 ((gfc_array_r8
*) d
, (const GFC_REAL_8
*) s
);
97 #if defined(HAVE_GFC_REAL_10)
98 case GFC_DTYPE_REAL_10
:
99 internal_unpack_r10 ((gfc_array_r10
*) d
, (const GFC_REAL_10
*) s
);
103 #if defined(HAVE_GFC_REAL_16)
104 case GFC_DTYPE_REAL_16
:
105 internal_unpack_r16 ((gfc_array_r16
*) d
, (const GFC_REAL_16
*) s
);
108 case GFC_DTYPE_COMPLEX_4
:
109 internal_unpack_c4 ((gfc_array_c4
*)d
, (const GFC_COMPLEX_4
*)s
);
112 case GFC_DTYPE_COMPLEX_8
:
113 internal_unpack_c8 ((gfc_array_c8
*)d
, (const GFC_COMPLEX_8
*)s
);
116 #if defined(HAVE_GFC_COMPLEX_10)
117 case GFC_DTYPE_COMPLEX_10
:
118 internal_unpack_c10 ((gfc_array_c10
*) d
, (const GFC_COMPLEX_10
*) s
);
122 #if defined(HAVE_GFC_COMPLEX_16)
123 case GFC_DTYPE_COMPLEX_16
:
124 internal_unpack_c16 ((gfc_array_c16
*) d
, (const GFC_COMPLEX_16
*) s
);
127 case GFC_DTYPE_DERIVED_2
:
128 if (GFC_UNALIGNED_2(d
->data
) || GFC_UNALIGNED_2(s
))
132 internal_unpack_2 ((gfc_array_i2
*) d
, (const GFC_INTEGER_2
*) s
);
135 case GFC_DTYPE_DERIVED_4
:
136 if (GFC_UNALIGNED_4(d
->data
) || GFC_UNALIGNED_4(s
))
140 internal_unpack_4 ((gfc_array_i4
*) d
, (const GFC_INTEGER_4
*) s
);
144 case GFC_DTYPE_DERIVED_8
:
145 if (GFC_UNALIGNED_8(d
->data
) || GFC_UNALIGNED_8(s
))
149 internal_unpack_8 ((gfc_array_i8
*) d
, (const GFC_INTEGER_8
*) s
);
153 #ifdef HAVE_GFC_INTEGER_16
154 case GFC_DTYPE_DERIVED_16
:
155 if (GFC_UNALIGNED_16(d
->data
) || GFC_UNALIGNED_16(s
))
159 internal_unpack_16 ((gfc_array_i16
*) d
, (const GFC_INTEGER_16
*) s
);
168 size
= GFC_DESCRIPTOR_SIZE (d
);
170 if (d
->dim
[0].stride
== 0)
171 d
->dim
[0].stride
= 1;
173 dim
= GFC_DESCRIPTOR_RANK (d
);
175 for (n
= 0; n
< dim
; n
++)
178 stride
[n
] = d
->dim
[n
].stride
;
179 extent
[n
] = d
->dim
[n
].ubound
+ 1 - d
->dim
[n
].lbound
;
183 if (dsize
== stride
[n
])
193 memcpy (dest
, src
, dsize
* size
);
197 stride0
= stride
[0] * size
;
202 memcpy (dest
, src
, size
);
203 /* Advance to the next element. */
207 /* Advance to the next source element. */
209 while (count
[n
] == extent
[n
])
211 /* When we get to the end of a dimension, reset it and increment
212 the next dimension. */
214 /* We could precalculate these products, but this is a less
215 frequently used path so probably not worth it. */
216 dest
-= stride
[n
] * extent
[n
] * size
;
226 dest
+= stride
[n
] * size
;