]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/generated/all_l1.c
re PR other/32948 (five warnings and a patch)
[thirdparty/gcc.git] / libgfortran / generated / all_l1.c
CommitLineData
90469382 1/* Implementation of the ALL intrinsic
36ae8a61 2 Copyright 2002, 2007 Free Software Foundation, Inc.
6de9cd9a
DN
3 Contributed by Paul Brook <paul@nowt.org>
4
57dea9f6 5This file is part of the GNU Fortran 95 runtime library (libgfortran).
6de9cd9a
DN
6
7Libgfortran is free software; you can redistribute it and/or
57dea9f6 8modify it under the terms of the GNU General Public
6de9cd9a 9License as published by the Free Software Foundation; either
57dea9f6
TM
10version 2 of the License, or (at your option) any later version.
11
12In addition to the permissions in the GNU General Public License, the
13Free Software Foundation gives you unlimited permission to link the
14compiled version of this file into combinations with other programs,
15and to distribute those combinations without any restriction coming
16from the use of this file. (The General Public License restrictions
17do apply in other respects; for example, they cover modification of
18the file, and distribution when not linked into a combine
19executable.)
6de9cd9a
DN
20
21Libgfortran is distributed in the hope that it will be useful,
22but WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 24GNU General Public License for more details.
6de9cd9a 25
57dea9f6
TM
26You should have received a copy of the GNU General Public
27License along with libgfortran; see the file COPYING. If not,
fe2ae685
KC
28write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29Boston, MA 02110-1301, USA. */
6de9cd9a 30
36ae8a61 31#include "libgfortran.h"
6de9cd9a
DN
32#include <stdlib.h>
33#include <assert.h>
6de9cd9a 34
7d7b8bfe 35
90469382 36#if defined (HAVE_GFC_LOGICAL_1)
644cb69f
FXC
37
38
90469382
TK
39extern void all_l1 (gfc_array_l1 * const restrict,
40 gfc_array_l1 * const restrict, const index_type * const restrict);
41export_proto(all_l1);
7d7b8bfe 42
6de9cd9a 43void
90469382
TK
44all_l1 (gfc_array_l1 * const restrict retarray,
45 gfc_array_l1 * const restrict array,
64acfd99 46 const index_type * const restrict pdim)
6de9cd9a 47{
e33e218b
TK
48 index_type count[GFC_MAX_DIMENSIONS];
49 index_type extent[GFC_MAX_DIMENSIONS];
50 index_type sstride[GFC_MAX_DIMENSIONS];
51 index_type dstride[GFC_MAX_DIMENSIONS];
90469382
TK
52 const GFC_LOGICAL_1 * restrict base;
53 GFC_LOGICAL_1 * restrict dest;
6de9cd9a
DN
54 index_type rank;
55 index_type n;
56 index_type len;
57 index_type delta;
58 index_type dim;
90469382 59 int src_kind;
6de9cd9a
DN
60
61 /* Make dim zero based to avoid confusion. */
62 dim = (*pdim) - 1;
63 rank = GFC_DESCRIPTOR_RANK (array) - 1;
f6c7d65b 64
90469382
TK
65 src_kind = GFC_DESCRIPTOR_SIZE (array);
66
6de9cd9a 67 len = array->dim[dim].ubound + 1 - array->dim[dim].lbound;
90469382 68 delta = array->dim[dim].stride * src_kind;
6de9cd9a
DN
69
70 for (n = 0; n < dim; n++)
71 {
90469382 72 sstride[n] = array->dim[n].stride * src_kind;
6de9cd9a 73 extent[n] = array->dim[n].ubound + 1 - array->dim[n].lbound;
80ee04b9
TK
74
75 if (extent[n] < 0)
76 extent[n] = 0;
6de9cd9a
DN
77 }
78 for (n = dim; n < rank; n++)
79 {
90469382 80 sstride[n] = array->dim[n + 1].stride * src_kind;
6de9cd9a
DN
81 extent[n] =
82 array->dim[n + 1].ubound + 1 - array->dim[n + 1].lbound;
80ee04b9
TK
83
84 if (extent[n] < 0)
85 extent[n] = 0;
6de9cd9a
DN
86 }
87
6c167c45
VL
88 if (retarray->data == NULL)
89 {
80ee04b9
TK
90 size_t alloc_size;
91
6c167c45
VL
92 for (n = 0; n < rank; n++)
93 {
94 retarray->dim[n].lbound = 0;
95 retarray->dim[n].ubound = extent[n]-1;
96 if (n == 0)
97 retarray->dim[n].stride = 1;
98 else
99 retarray->dim[n].stride = retarray->dim[n-1].stride * extent[n-1];
100 }
101
efd4dc1a 102 retarray->offset = 0;
50dd63a9 103 retarray->dtype = (array->dtype & ~GFC_DTYPE_RANK_MASK) | rank;
80ee04b9 104
90469382 105 alloc_size = sizeof (GFC_LOGICAL_1) * retarray->dim[rank-1].stride
80ee04b9
TK
106 * extent[rank-1];
107
108 if (alloc_size == 0)
109 {
110 /* Make sure we have a zero-sized array. */
111 retarray->dim[0].lbound = 0;
112 retarray->dim[0].ubound = -1;
113 return;
114 }
115 else
116 retarray->data = internal_malloc_size (alloc_size);
6c167c45 117 }
50dd63a9
TK
118 else
119 {
50dd63a9 120 if (rank != GFC_DESCRIPTOR_RANK (retarray))
fd6590f8 121 runtime_error ("rank of return array incorrect in"
90469382
TK
122 " ALL intrinsic: is %d, should be %d",
123 GFC_DESCRIPTOR_RANK (retarray), rank);
fd6590f8
TK
124
125 if (compile_options.bounds_check)
126 {
127 for (n=0; n < rank; n++)
128 {
129 index_type ret_extent;
130
131 ret_extent = retarray->dim[n].ubound + 1
132 - retarray->dim[n].lbound;
133 if (extent[n] != ret_extent)
134 runtime_error ("Incorrect extent in return value of"
90469382
TK
135 " ALL intrinsic in dimension %d:"
136 " is %ld, should be %ld", n + 1,
fd6590f8
TK
137 (long int) ret_extent, (long int) extent[n]);
138 }
139 }
50dd63a9
TK
140 }
141
6de9cd9a
DN
142 for (n = 0; n < rank; n++)
143 {
144 count[n] = 0;
145 dstride[n] = retarray->dim[n].stride;
146 if (extent[n] <= 0)
147 len = 0;
148 }
149
150 base = array->data;
90469382
TK
151
152 if (src_kind == 1 || src_kind == 2 || src_kind == 4 || src_kind == 8
153#ifdef HAVE_GFC_LOGICAL_16
154 || src_kind == 16
155#endif
156 )
157 {
158 if (base)
159 base = GFOR_POINTER_TO_L1 (base, src_kind);
160 }
161 else
162 internal_error (NULL, "Funny sized logical array in ALL intrinsic");
163
6de9cd9a
DN
164 dest = retarray->data;
165
166 while (base)
167 {
90469382
TK
168 const GFC_LOGICAL_1 * restrict src;
169 GFC_LOGICAL_1 result;
6de9cd9a
DN
170 src = base;
171 {
172
90469382
TK
173 /* Return true only if all the elements are set. */
174 result = 1;
6de9cd9a 175 if (len <= 0)
90469382 176 *dest = 1;
6de9cd9a
DN
177 else
178 {
179 for (n = 0; n < len; n++, src += delta)
180 {
181
90469382
TK
182 if (! *src)
183 {
184 result = 0;
185 break;
186 }
6de9cd9a
DN
187 }
188 *dest = result;
189 }
190 }
191 /* Advance to the next element. */
192 count[0]++;
193 base += sstride[0];
194 dest += dstride[0];
195 n = 0;
196 while (count[n] == extent[n])
197 {
198 /* When we get to the end of a dimension, reset it and increment
199 the next dimension. */
200 count[n] = 0;
201 /* We could precalculate these products, but this is a less
5d7adf7a 202 frequently used path so probably not worth it. */
6de9cd9a
DN
203 base -= sstride[n] * extent[n];
204 dest -= dstride[n] * extent[n];
205 n++;
206 if (n == rank)
207 {
208 /* Break out of the look. */
209 base = NULL;
210 break;
211 }
212 else
213 {
214 count[n]++;
215 base += sstride[n];
216 dest += dstride[n];
217 }
218 }
219 }
220}
221
644cb69f 222#endif