* tree-ssa-structalias.h (alias_info): Remove num_references.
[official-gcc.git] / libgfortran / runtime / in_pack_generic.c
blob1536db17d283b19a2a65843c5f2caf4018afd3f1
1 /* Generic helper function for repacking arrays.
2 Copyright 2003, 2004, 2005 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
19 executable.)
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 "config.h"
32 #include <stdlib.h>
33 #include <assert.h>
34 #include <string.h>
35 #include "libgfortran.h"
37 extern void *internal_pack (gfc_array_char *);
38 export_proto(internal_pack);
40 void *
41 internal_pack (gfc_array_char * source)
43 index_type count[GFC_MAX_DIMENSIONS];
44 index_type extent[GFC_MAX_DIMENSIONS];
45 index_type stride[GFC_MAX_DIMENSIONS];
46 index_type stride0;
47 index_type dim;
48 index_type ssize;
49 const char *src;
50 char *dest;
51 void *destptr;
52 int n;
53 int packed;
54 index_type size;
55 int type;
57 if (source->dim[0].stride == 0)
59 source->dim[0].stride = 1;
60 return source->data;
63 type = GFC_DESCRIPTOR_TYPE (source);
64 size = GFC_DESCRIPTOR_SIZE (source);
65 switch (type)
67 case GFC_DTYPE_INTEGER:
68 case GFC_DTYPE_LOGICAL:
69 case GFC_DTYPE_REAL:
70 switch (size)
72 case 4:
73 return internal_pack_4 ((gfc_array_i4 *)source);
75 case 8:
76 return internal_pack_8 ((gfc_array_i8 *)source);
78 break;
80 case GFC_DTYPE_COMPLEX:
81 switch (size)
83 case 8:
84 return internal_pack_c4 ((gfc_array_c4 *)source);
86 case 16:
87 return internal_pack_c8 ((gfc_array_c8 *)source);
89 break;
91 default:
92 break;
95 dim = GFC_DESCRIPTOR_RANK (source);
96 ssize = 1;
97 packed = 1;
98 for (n = 0; n < dim; n++)
100 count[n] = 0;
101 stride[n] = source->dim[n].stride;
102 extent[n] = source->dim[n].ubound + 1 - source->dim[n].lbound;
103 if (extent[n] <= 0)
105 /* Do nothing. */
106 packed = 1;
107 break;
110 if (ssize != stride[n])
111 packed = 0;
113 ssize *= extent[n];
116 if (packed)
117 return source->data;
119 /* Allocate storage for the destination. */
120 destptr = internal_malloc_size (ssize * size);
121 dest = (char *)destptr;
122 src = source->data;
123 stride0 = stride[0] * size;
125 while (src)
127 /* Copy the data. */
128 memcpy(dest, src, size);
129 /* Advance to the next element. */
130 dest += size;
131 src += stride0;
132 count[0]++;
133 /* Advance to the next source element. */
134 n = 0;
135 while (count[n] == extent[n])
137 /* When we get to the end of a dimension, reset it and increment
138 the next dimension. */
139 count[n] = 0;
140 /* We could precalculate these products, but this is a less
141 frequently used path so proabably not worth it. */
142 src -= stride[n] * extent[n] * size;
143 n++;
144 if (n == dim)
146 src = NULL;
147 break;
149 else
151 count[n]++;
152 src += stride[n] * size;
156 return destptr;