1 /* Implementation of the PRODUCT intrinsic
2 Copyright 2002, 2007, 2009, 2010 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"
31 #if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_4)
34 extern void product_i4 (gfc_array_i4
* const restrict
,
35 gfc_array_i4
* const restrict
, const index_type
* const restrict
);
36 export_proto(product_i4
);
39 product_i4 (gfc_array_i4
* const restrict retarray
,
40 gfc_array_i4
* const restrict array
,
41 const index_type
* const restrict pdim
)
43 index_type count
[GFC_MAX_DIMENSIONS
];
44 index_type extent
[GFC_MAX_DIMENSIONS
];
45 index_type sstride
[GFC_MAX_DIMENSIONS
];
46 index_type dstride
[GFC_MAX_DIMENSIONS
];
47 const GFC_INTEGER_4
* restrict base
;
48 GFC_INTEGER_4
* restrict dest
;
56 /* Make dim zero based to avoid confusion. */
58 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
60 len
= GFC_DESCRIPTOR_EXTENT(array
,dim
);
63 delta
= GFC_DESCRIPTOR_STRIDE(array
,dim
);
65 for (n
= 0; n
< dim
; n
++)
67 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
);
68 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,n
);
73 for (n
= dim
; n
< rank
; n
++)
75 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
, n
+ 1);
76 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
, n
+ 1);
82 if (retarray
->data
== NULL
)
84 size_t alloc_size
, str
;
86 for (n
= 0; n
< rank
; n
++)
91 str
= GFC_DESCRIPTOR_STRIDE(retarray
,n
-1) * extent
[n
-1];
93 GFC_DIMENSION_SET(retarray
->dim
[n
], 0, extent
[n
] - 1, str
);
98 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
100 alloc_size
= sizeof (GFC_INTEGER_4
) * GFC_DESCRIPTOR_STRIDE(retarray
,rank
-1)
105 /* Make sure we have a zero-sized array. */
106 GFC_DIMENSION_SET(retarray
->dim
[0], 0, -1, 1);
111 retarray
->data
= internal_malloc_size (alloc_size
);
115 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
116 runtime_error ("rank of return array incorrect in"
117 " PRODUCT intrinsic: is %ld, should be %ld",
118 (long int) (GFC_DESCRIPTOR_RANK (retarray
)),
121 if (unlikely (compile_options
.bounds_check
))
122 bounds_ifunction_return ((array_t
*) retarray
, extent
,
123 "return value", "PRODUCT");
126 for (n
= 0; n
< rank
; n
++)
129 dstride
[n
] = GFC_DESCRIPTOR_STRIDE(retarray
,n
);
135 dest
= retarray
->data
;
138 while (continue_loop
)
140 const GFC_INTEGER_4
* restrict src
;
141 GFC_INTEGER_4 result
;
150 for (n
= 0; n
< len
; n
++, src
+= delta
)
159 /* Advance to the next element. */
164 while (count
[n
] == extent
[n
])
166 /* When we get to the end of a dimension, reset it and increment
167 the next dimension. */
169 /* We could precalculate these products, but this is a less
170 frequently used path so probably not worth it. */
171 base
-= sstride
[n
] * extent
[n
];
172 dest
-= dstride
[n
] * extent
[n
];
176 /* Break out of the look. */
191 extern void mproduct_i4 (gfc_array_i4
* const restrict
,
192 gfc_array_i4
* const restrict
, const index_type
* const restrict
,
193 gfc_array_l1
* const restrict
);
194 export_proto(mproduct_i4
);
197 mproduct_i4 (gfc_array_i4
* const restrict retarray
,
198 gfc_array_i4
* const restrict array
,
199 const index_type
* const restrict pdim
,
200 gfc_array_l1
* const restrict mask
)
202 index_type count
[GFC_MAX_DIMENSIONS
];
203 index_type extent
[GFC_MAX_DIMENSIONS
];
204 index_type sstride
[GFC_MAX_DIMENSIONS
];
205 index_type dstride
[GFC_MAX_DIMENSIONS
];
206 index_type mstride
[GFC_MAX_DIMENSIONS
];
207 GFC_INTEGER_4
* restrict dest
;
208 const GFC_INTEGER_4
* restrict base
;
209 const GFC_LOGICAL_1
* restrict mbase
;
219 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
221 len
= GFC_DESCRIPTOR_EXTENT(array
,dim
);
227 mask_kind
= GFC_DESCRIPTOR_SIZE (mask
);
229 if (mask_kind
== 1 || mask_kind
== 2 || mask_kind
== 4 || mask_kind
== 8
230 #ifdef HAVE_GFC_LOGICAL_16
234 mbase
= GFOR_POINTER_TO_L1 (mbase
, mask_kind
);
236 runtime_error ("Funny sized logical array");
238 delta
= GFC_DESCRIPTOR_STRIDE(array
,dim
);
239 mdelta
= GFC_DESCRIPTOR_STRIDE_BYTES(mask
,dim
);
241 for (n
= 0; n
< dim
; n
++)
243 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
);
244 mstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(mask
,n
);
245 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,n
);
251 for (n
= dim
; n
< rank
; n
++)
253 sstride
[n
] = GFC_DESCRIPTOR_STRIDE(array
,n
+ 1);
254 mstride
[n
] = GFC_DESCRIPTOR_STRIDE_BYTES(mask
, n
+ 1);
255 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
, n
+ 1);
261 if (retarray
->data
== NULL
)
263 size_t alloc_size
, str
;
265 for (n
= 0; n
< rank
; n
++)
270 str
= GFC_DESCRIPTOR_STRIDE(retarray
,n
-1) * extent
[n
-1];
272 GFC_DIMENSION_SET(retarray
->dim
[n
], 0, extent
[n
] - 1, str
);
276 alloc_size
= sizeof (GFC_INTEGER_4
) * GFC_DESCRIPTOR_STRIDE(retarray
,rank
-1)
279 retarray
->offset
= 0;
280 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
284 /* Make sure we have a zero-sized array. */
285 GFC_DIMENSION_SET(retarray
->dim
[0], 0, -1, 1);
289 retarray
->data
= internal_malloc_size (alloc_size
);
294 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
295 runtime_error ("rank of return array incorrect in PRODUCT intrinsic");
297 if (unlikely (compile_options
.bounds_check
))
299 bounds_ifunction_return ((array_t
*) retarray
, extent
,
300 "return value", "PRODUCT");
301 bounds_equal_extents ((array_t
*) mask
, (array_t
*) array
,
302 "MASK argument", "PRODUCT");
306 for (n
= 0; n
< rank
; n
++)
309 dstride
[n
] = GFC_DESCRIPTOR_STRIDE(retarray
,n
);
314 dest
= retarray
->data
;
319 const GFC_INTEGER_4
* restrict src
;
320 const GFC_LOGICAL_1
* restrict msrc
;
321 GFC_INTEGER_4 result
;
331 for (n
= 0; n
< len
; n
++, src
+= delta
, msrc
+= mdelta
)
340 /* Advance to the next element. */
346 while (count
[n
] == extent
[n
])
348 /* When we get to the end of a dimension, reset it and increment
349 the next dimension. */
351 /* We could precalculate these products, but this is a less
352 frequently used path so probably not worth it. */
353 base
-= sstride
[n
] * extent
[n
];
354 mbase
-= mstride
[n
] * extent
[n
];
355 dest
-= dstride
[n
] * extent
[n
];
359 /* Break out of the look. */
375 extern void sproduct_i4 (gfc_array_i4
* const restrict
,
376 gfc_array_i4
* const restrict
, const index_type
* const restrict
,
378 export_proto(sproduct_i4
);
381 sproduct_i4 (gfc_array_i4
* const restrict retarray
,
382 gfc_array_i4
* const restrict array
,
383 const index_type
* const restrict pdim
,
384 GFC_LOGICAL_4
* mask
)
386 index_type count
[GFC_MAX_DIMENSIONS
];
387 index_type extent
[GFC_MAX_DIMENSIONS
];
388 index_type dstride
[GFC_MAX_DIMENSIONS
];
389 GFC_INTEGER_4
* restrict dest
;
397 product_i4 (retarray
, array
, pdim
);
400 /* Make dim zero based to avoid confusion. */
402 rank
= GFC_DESCRIPTOR_RANK (array
) - 1;
404 for (n
= 0; n
< dim
; n
++)
406 extent
[n
] = GFC_DESCRIPTOR_EXTENT(array
,n
);
412 for (n
= dim
; n
< rank
; n
++)
415 GFC_DESCRIPTOR_EXTENT(array
,n
+ 1);
421 if (retarray
->data
== NULL
)
423 size_t alloc_size
, str
;
425 for (n
= 0; n
< rank
; n
++)
430 str
= GFC_DESCRIPTOR_STRIDE(retarray
,n
-1) * extent
[n
-1];
432 GFC_DIMENSION_SET(retarray
->dim
[n
], 0, extent
[n
] - 1, str
);
436 retarray
->offset
= 0;
437 retarray
->dtype
= (array
->dtype
& ~GFC_DTYPE_RANK_MASK
) | rank
;
439 alloc_size
= sizeof (GFC_INTEGER_4
) * GFC_DESCRIPTOR_STRIDE(retarray
,rank
-1)
444 /* Make sure we have a zero-sized array. */
445 GFC_DIMENSION_SET(retarray
->dim
[0], 0, -1, 1);
449 retarray
->data
= internal_malloc_size (alloc_size
);
453 if (rank
!= GFC_DESCRIPTOR_RANK (retarray
))
454 runtime_error ("rank of return array incorrect in"
455 " PRODUCT intrinsic: is %ld, should be %ld",
456 (long int) (GFC_DESCRIPTOR_RANK (retarray
)),
459 if (unlikely (compile_options
.bounds_check
))
461 for (n
=0; n
< rank
; n
++)
463 index_type ret_extent
;
465 ret_extent
= GFC_DESCRIPTOR_EXTENT(retarray
,n
);
466 if (extent
[n
] != ret_extent
)
467 runtime_error ("Incorrect extent in return value of"
468 " PRODUCT intrinsic in dimension %ld:"
469 " is %ld, should be %ld", (long int) n
+ 1,
470 (long int) ret_extent
, (long int) extent
[n
]);
475 for (n
= 0; n
< rank
; n
++)
478 dstride
[n
] = GFC_DESCRIPTOR_STRIDE(retarray
,n
);
481 dest
= retarray
->data
;
489 while (count
[n
] == extent
[n
])
491 /* When we get to the end of a dimension, reset it and increment
492 the next dimension. */
494 /* We could precalculate these products, but this is a less
495 frequently used path so probably not worth it. */
496 dest
-= dstride
[n
] * extent
[n
];