1 /* Generic implementation of the PACK intrinsic
2 Copyright (C) 2002, 2004 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 Ligbfortran 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 /* PACK is specified as follows:
39 13.14.80 PACK (ARRAY, MASK, [VECTOR])
41 Description: Pack an array into an array of rank one under the
44 Class: Transformational fucntion.
47 ARRAY may be of any type. It shall not be scalar.
48 MASK shall be of type LOGICAL. It shall be conformable with ARRAY.
49 VECTOR (optional) shall be of the same type and type parameters
50 as ARRAY. VECTOR shall have at least as many elements as
51 there are true elements in MASK. If MASK is a scalar
52 with the value true, VECTOR shall have at least as many
53 elements as there are in ARRAY.
55 Result Characteristics: The result is an array of rank one with the
56 same type and type parameters as ARRAY. If VECTOR is present, the
57 result size is that of VECTOR; otherwise, the result size is the
58 number /t/ of true elements in MASK unless MASK is scalar with the
59 value true, in which case the result size is the size of ARRAY.
61 Result Value: Element /i/ of the result is the element of ARRAY
62 that corresponds to the /i/th true element of MASK, taking elements
63 in array element order, for /i/ = 1, 2, ..., /t/. If VECTOR is
64 present and has size /n/ > /t/, element /i/ of the result has the
65 value VECTOR(/i/), for /i/ = /t/ + 1, ..., /n/.
67 Examples: The nonzero elements of an array M with the value
69 | 9 0 0 | may be "gathered" by the function PACK. The result of
71 PACK (M, MASK = M.NE.0) is [9,7] and the result of PACK (M, M.NE.0,
72 VECTOR = (/ 2,4,6,8,10,12 /)) is [9,7,6,8,10,12].
74 There are two variants of the PACK intrinsic: one, where MASK is
75 array valued, and the other one where MASK is scalar. */
77 extern void pack (gfc_array_char
*, const gfc_array_char
*,
78 const gfc_array_l4
*, const gfc_array_char
*);
82 pack (gfc_array_char
*ret
, const gfc_array_char
*array
,
83 const gfc_array_l4
*mask
, const gfc_array_char
*vector
)
85 /* r.* indicates the return array. */
88 /* s.* indicates the source array. */
89 index_type sstride
[GFC_MAX_DIMENSIONS
];
92 /* m.* indicates the mask array. */
93 index_type mstride
[GFC_MAX_DIMENSIONS
];
95 const GFC_LOGICAL_4
*mptr
;
97 index_type count
[GFC_MAX_DIMENSIONS
];
98 index_type extent
[GFC_MAX_DIMENSIONS
];
104 size
= GFC_DESCRIPTOR_SIZE (array
);
105 dim
= GFC_DESCRIPTOR_RANK (array
);
106 for (n
= 0; n
< dim
; n
++)
109 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
110 sstride
[n
] = array
->dim
[n
].stride
* size
;
111 mstride
[n
] = mask
->dim
[n
].stride
;
121 /* Use the same loop for both logical types. */
122 if (GFC_DESCRIPTOR_SIZE (mask
) != 4)
124 if (GFC_DESCRIPTOR_SIZE (mask
) != 8)
125 runtime_error ("Funny sized logical array");
126 for (n
= 0; n
< dim
; n
++)
129 mptr
= GFOR_POINTER_L8_TO_L4 (mptr
);
132 if (ret
->data
== NULL
)
134 /* Allocate the memory for the result. */
139 /* The return array will have as many
140 elements as there are in VECTOR. */
141 total
= vector
->dim
[0].ubound
+ 1 - vector
->dim
[0].lbound
;
145 /* We have to count the true elements in MASK. */
147 /* TODO: We could speed up pack easily in the case of only
148 few .TRUE. entries in MASK, by keeping track of where we
149 would be in the source array during the initial traversal
150 of MASK, and caching the pointers to those elements. Then,
151 supposed the number of elements is small enough, we would
152 only have to traverse the list, and copy those elements
153 into the result array. In the case of datatypes which fit
154 in one of the integer types we could also cache the
155 value instead of a pointer to it.
156 This approach might be bad from the point of view of
157 cache behavior in the case where our cache is not big
158 enough to hold all elements that have to be copied. */
160 const GFC_LOGICAL_4
*m
= mptr
;
166 /* Test this element. */
170 /* Advance to the next element. */
174 while (count
[n
] == extent
[n
])
176 /* When we get to the end of a dimension, reset it
177 and increment the next dimension. */
179 /* We could precalculate this product, but this is a
180 less frequently used path so proabably not worth
182 m
-= mstride
[n
] * extent
[n
];
186 /* Break out of the loop. */
199 /* Setup the array descriptor. */
200 ret
->dim
[0].lbound
= 0;
201 ret
->dim
[0].ubound
= total
- 1;
202 ret
->dim
[0].stride
= 1;
204 ret
->data
= internal_malloc_size (size
* total
);
208 /* In this case, nothing remains to be done. */
212 rstride0
= ret
->dim
[0].stride
* size
;
215 sstride0
= sstride
[0];
216 mstride0
= mstride
[0];
221 /* Test this element. */
225 memcpy (rptr
, sptr
, size
);
228 /* Advance to the next element. */
233 while (count
[n
] == extent
[n
])
235 /* When we get to the end of a dimension, reset it and increment
236 the next dimension. */
238 /* We could precalculate these products, but this is a less
239 frequently used path so proabably not worth it. */
240 sptr
-= sstride
[n
] * extent
[n
];
241 mptr
-= mstride
[n
] * extent
[n
];
245 /* Break out of the loop. */
258 /* Add any remaining elements from VECTOR. */
261 n
= vector
->dim
[0].ubound
+ 1 - vector
->dim
[0].lbound
;
262 nelem
= ((rptr
- ret
->data
) / rstride0
);
265 sstride0
= vector
->dim
[0].stride
* size
;
269 sptr
= vector
->data
+ sstride0
* nelem
;
273 memcpy (rptr
, sptr
, size
);
281 extern void pack_s (gfc_array_char
*ret
, const gfc_array_char
*array
,
282 const GFC_LOGICAL_4
*, const gfc_array_char
*);
283 export_proto(pack_s
);
286 pack_s (gfc_array_char
*ret
, const gfc_array_char
*array
,
287 const GFC_LOGICAL_4
*mask
, const gfc_array_char
*vector
)
289 /* r.* indicates the return array. */
292 /* s.* indicates the source array. */
293 index_type sstride
[GFC_MAX_DIMENSIONS
];
297 index_type count
[GFC_MAX_DIMENSIONS
];
298 index_type extent
[GFC_MAX_DIMENSIONS
];
304 size
= GFC_DESCRIPTOR_SIZE (array
);
305 dim
= GFC_DESCRIPTOR_RANK (array
);
306 for (n
= 0; n
< dim
; n
++)
309 extent
[n
] = array
->dim
[n
].ubound
+ 1 - array
->dim
[n
].lbound
;
310 sstride
[n
] = array
->dim
[n
].stride
* size
;
315 sstride0
= sstride
[0];
318 if (ret
->data
== NULL
)
320 /* Allocate the memory for the result. */
325 /* The return array will have as many elements as there are
327 total
= vector
->dim
[0].ubound
+ 1 - vector
->dim
[0].lbound
;
333 /* The result array will have as many elements as the input
336 for (n
= 1; n
< dim
; n
++)
341 /* The result array will be empty. */
342 ret
->dim
[0].lbound
= 0;
343 ret
->dim
[0].ubound
= -1;
344 ret
->dim
[0].stride
= 1;
345 ret
->data
= internal_malloc_size (0);
352 /* Setup the array descriptor. */
353 ret
->dim
[0].lbound
= 0;
354 ret
->dim
[0].ubound
= total
- 1;
355 ret
->dim
[0].stride
= 1;
357 ret
->data
= internal_malloc_size (size
* total
);
361 rstride0
= ret
->dim
[0].stride
* size
;
366 /* The remaining possibilities are now:
367 If MASK is .TRUE., we have to copy the source array into the
368 result array. We then have to fill it up with elements from VECTOR.
369 If MASK is .FALSE., we have to copy VECTOR into the result
370 array. If VECTOR were not present we would have already returned. */
376 /* Add this element. */
377 memcpy (rptr
, sptr
, size
);
380 /* Advance to the next element. */
384 while (count
[n
] == extent
[n
])
386 /* When we get to the end of a dimension, reset it and
387 increment the next dimension. */
389 /* We could precalculate these products, but this is a
390 less frequently used path so proabably not worth it. */
391 sptr
-= sstride
[n
] * extent
[n
];
395 /* Break out of the loop. */
408 /* Add any remaining elements from VECTOR. */
411 n
= vector
->dim
[0].ubound
+ 1 - vector
->dim
[0].lbound
;
412 nelem
= ((rptr
- ret
->data
) / rstride0
);
415 sstride0
= vector
->dim
[0].stride
* size
;
419 sptr
= vector
->data
+ sstride0
* nelem
;
423 memcpy (rptr
, sptr
, size
);