Branch data Line data Source code
1 : : /* Array translation routines
2 : : Copyright (C) 2002-2025 Free Software Foundation, Inc.
3 : : Contributed by Paul Brook <paul@nowt.org>
4 : : and Steven Bosscher <s.bosscher@student.tudelft.nl>
5 : :
6 : : This file is part of GCC.
7 : :
8 : : GCC is free software; you can redistribute it and/or modify it under
9 : : the terms of the GNU General Public License as published by the Free
10 : : Software Foundation; either version 3, or (at your option) any later
11 : : version.
12 : :
13 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 : : for more details.
17 : :
18 : : You should have received a copy of the GNU General Public License
19 : : along with GCC; see the file COPYING3. If not see
20 : : <http://www.gnu.org/licenses/>. */
21 : :
22 : : /* trans-array.cc-- Various array related code, including scalarization,
23 : : allocation, initialization and other support routines. */
24 : :
25 : : /* How the scalarizer works.
26 : : In gfortran, array expressions use the same core routines as scalar
27 : : expressions.
28 : : First, a Scalarization State (SS) chain is built. This is done by walking
29 : : the expression tree, and building a linear list of the terms in the
30 : : expression. As the tree is walked, scalar subexpressions are translated.
31 : :
32 : : The scalarization parameters are stored in a gfc_loopinfo structure.
33 : : First the start and stride of each term is calculated by
34 : : gfc_conv_ss_startstride. During this process the expressions for the array
35 : : descriptors and data pointers are also translated.
36 : :
37 : : If the expression is an assignment, we must then resolve any dependencies.
38 : : In Fortran all the rhs values of an assignment must be evaluated before
39 : : any assignments take place. This can require a temporary array to store the
40 : : values. We also require a temporary when we are passing array expressions
41 : : or vector subscripts as procedure parameters.
42 : :
43 : : Array sections are passed without copying to a temporary. These use the
44 : : scalarizer to determine the shape of the section. The flag
45 : : loop->array_parameter tells the scalarizer that the actual values and loop
46 : : variables will not be required.
47 : :
48 : : The function gfc_conv_loop_setup generates the scalarization setup code.
49 : : It determines the range of the scalarizing loop variables. If a temporary
50 : : is required, this is created and initialized. Code for scalar expressions
51 : : taken outside the loop is also generated at this time. Next the offset and
52 : : scaling required to translate from loop variables to array indices for each
53 : : term is calculated.
54 : :
55 : : A call to gfc_start_scalarized_body marks the start of the scalarized
56 : : expression. This creates a scope and declares the loop variables. Before
57 : : calling this gfc_make_ss_chain_used must be used to indicate which terms
58 : : will be used inside this loop.
59 : :
60 : : The scalar gfc_conv_* functions are then used to build the main body of the
61 : : scalarization loop. Scalarization loop variables and precalculated scalar
62 : : values are automatically substituted. Note that gfc_advance_se_ss_chain
63 : : must be used, rather than changing the se->ss directly.
64 : :
65 : : For assignment expressions requiring a temporary two sub loops are
66 : : generated. The first stores the result of the expression in the temporary,
67 : : the second copies it to the result. A call to
68 : : gfc_trans_scalarized_loop_boundary marks the end of the main loop code and
69 : : the start of the copying loop. The temporary may be less than full rank.
70 : :
71 : : Finally gfc_trans_scalarizing_loops is called to generate the implicit do
72 : : loops. The loops are added to the pre chain of the loopinfo. The post
73 : : chain may still contain cleanup code.
74 : :
75 : : After the loop code has been added into its parent scope gfc_cleanup_loop
76 : : is called to free all the SS allocated by the scalarizer. */
77 : :
78 : : #include "config.h"
79 : : #include "system.h"
80 : : #include "coretypes.h"
81 : : #include "options.h"
82 : : #include "tree.h"
83 : : #include "gfortran.h"
84 : : #include "gimple-expr.h"
85 : : #include "tree-iterator.h"
86 : : #include "stringpool.h" /* Required by "attribs.h". */
87 : : #include "attribs.h" /* For lookup_attribute. */
88 : : #include "trans.h"
89 : : #include "fold-const.h"
90 : : #include "constructor.h"
91 : : #include "trans-types.h"
92 : : #include "trans-array.h"
93 : : #include "trans-const.h"
94 : : #include "dependency.h"
95 : :
96 : : static bool gfc_get_array_constructor_size (mpz_t *, gfc_constructor_base);
97 : :
98 : : /* The contents of this structure aren't actually used, just the address. */
99 : : static gfc_ss gfc_ss_terminator_var;
100 : : gfc_ss * const gfc_ss_terminator = &gfc_ss_terminator_var;
101 : :
102 : :
103 : : static tree
104 : 55578 : gfc_array_dataptr_type (tree desc)
105 : : {
106 : 55578 : return (GFC_TYPE_ARRAY_DATAPTR_TYPE (TREE_TYPE (desc)));
107 : : }
108 : :
109 : : /* Build expressions to access members of the CFI descriptor. */
110 : : #define CFI_FIELD_BASE_ADDR 0
111 : : #define CFI_FIELD_ELEM_LEN 1
112 : : #define CFI_FIELD_VERSION 2
113 : : #define CFI_FIELD_RANK 3
114 : : #define CFI_FIELD_ATTRIBUTE 4
115 : : #define CFI_FIELD_TYPE 5
116 : : #define CFI_FIELD_DIM 6
117 : :
118 : : #define CFI_DIM_FIELD_LOWER_BOUND 0
119 : : #define CFI_DIM_FIELD_EXTENT 1
120 : : #define CFI_DIM_FIELD_SM 2
121 : :
122 : : static tree
123 : 84935 : gfc_get_cfi_descriptor_field (tree desc, unsigned field_idx)
124 : : {
125 : 84935 : tree type = TREE_TYPE (desc);
126 : 84935 : gcc_assert (TREE_CODE (type) == RECORD_TYPE
127 : : && TYPE_FIELDS (type)
128 : : && (strcmp ("base_addr",
129 : : IDENTIFIER_POINTER (DECL_NAME (TYPE_FIELDS (type))))
130 : : == 0));
131 : 84935 : tree field = gfc_advance_chain (TYPE_FIELDS (type), field_idx);
132 : 84935 : gcc_assert (field != NULL_TREE);
133 : :
134 : 84935 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
135 : 84935 : desc, field, NULL_TREE);
136 : : }
137 : :
138 : : tree
139 : 14198 : gfc_get_cfi_desc_base_addr (tree desc)
140 : : {
141 : 14198 : return gfc_get_cfi_descriptor_field (desc, CFI_FIELD_BASE_ADDR);
142 : : }
143 : :
144 : : tree
145 : 10680 : gfc_get_cfi_desc_elem_len (tree desc)
146 : : {
147 : 10680 : return gfc_get_cfi_descriptor_field (desc, CFI_FIELD_ELEM_LEN);
148 : : }
149 : :
150 : : tree
151 : 7190 : gfc_get_cfi_desc_version (tree desc)
152 : : {
153 : 7190 : return gfc_get_cfi_descriptor_field (desc, CFI_FIELD_VERSION);
154 : : }
155 : :
156 : : tree
157 : 7815 : gfc_get_cfi_desc_rank (tree desc)
158 : : {
159 : 7815 : return gfc_get_cfi_descriptor_field (desc, CFI_FIELD_RANK);
160 : : }
161 : :
162 : : tree
163 : 7282 : gfc_get_cfi_desc_type (tree desc)
164 : : {
165 : 7282 : return gfc_get_cfi_descriptor_field (desc, CFI_FIELD_TYPE);
166 : : }
167 : :
168 : : tree
169 : 7190 : gfc_get_cfi_desc_attribute (tree desc)
170 : : {
171 : 7190 : return gfc_get_cfi_descriptor_field (desc, CFI_FIELD_ATTRIBUTE);
172 : : }
173 : :
174 : : static tree
175 : 30580 : gfc_get_cfi_dim_item (tree desc, tree idx, unsigned field_idx)
176 : : {
177 : 30580 : tree tmp = gfc_get_cfi_descriptor_field (desc, CFI_FIELD_DIM);
178 : 30580 : tmp = gfc_build_array_ref (tmp, idx, NULL_TREE, true);
179 : 30580 : tree field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), field_idx);
180 : 30580 : gcc_assert (field != NULL_TREE);
181 : 30580 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
182 : 30580 : tmp, field, NULL_TREE);
183 : : }
184 : :
185 : : tree
186 : 6786 : gfc_get_cfi_dim_lbound (tree desc, tree idx)
187 : : {
188 : 6786 : return gfc_get_cfi_dim_item (desc, idx, CFI_DIM_FIELD_LOWER_BOUND);
189 : : }
190 : :
191 : : tree
192 : 11926 : gfc_get_cfi_dim_extent (tree desc, tree idx)
193 : : {
194 : 11926 : return gfc_get_cfi_dim_item (desc, idx, CFI_DIM_FIELD_EXTENT);
195 : : }
196 : :
197 : : tree
198 : 11868 : gfc_get_cfi_dim_sm (tree desc, tree idx)
199 : : {
200 : 11868 : return gfc_get_cfi_dim_item (desc, idx, CFI_DIM_FIELD_SM);
201 : : }
202 : :
203 : : #undef CFI_FIELD_BASE_ADDR
204 : : #undef CFI_FIELD_ELEM_LEN
205 : : #undef CFI_FIELD_VERSION
206 : : #undef CFI_FIELD_RANK
207 : : #undef CFI_FIELD_ATTRIBUTE
208 : : #undef CFI_FIELD_TYPE
209 : : #undef CFI_FIELD_DIM
210 : :
211 : : #undef CFI_DIM_FIELD_LOWER_BOUND
212 : : #undef CFI_DIM_FIELD_EXTENT
213 : : #undef CFI_DIM_FIELD_SM
214 : :
215 : : /* Build expressions to access the members of an array descriptor.
216 : : It's surprisingly easy to mess up here, so never access
217 : : an array descriptor by "brute force", always use these
218 : : functions. This also avoids problems if we change the format
219 : : of an array descriptor.
220 : :
221 : : To understand these magic numbers, look at the comments
222 : : before gfc_build_array_type() in trans-types.cc.
223 : :
224 : : The code within these defines should be the only code which knows the format
225 : : of an array descriptor.
226 : :
227 : : Any code just needing to read obtain the bounds of an array should use
228 : : gfc_conv_array_* rather than the following functions as these will return
229 : : know constant values, and work with arrays which do not have descriptors.
230 : :
231 : : Don't forget to #undef these! */
232 : :
233 : : #define DATA_FIELD 0
234 : : #define OFFSET_FIELD 1
235 : : #define DTYPE_FIELD 2
236 : : #define SPAN_FIELD 3
237 : : #define DIMENSION_FIELD 4
238 : : #define CAF_TOKEN_FIELD 5
239 : :
240 : : #define STRIDE_SUBFIELD 0
241 : : #define LBOUND_SUBFIELD 1
242 : : #define UBOUND_SUBFIELD 2
243 : :
244 : : static tree
245 : 1866030 : gfc_get_descriptor_field (tree desc, unsigned field_idx)
246 : : {
247 : 1866030 : tree type = TREE_TYPE (desc);
248 : 1866030 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
249 : :
250 : 1866030 : tree field = gfc_advance_chain (TYPE_FIELDS (type), field_idx);
251 : 1866030 : gcc_assert (field != NULL_TREE);
252 : :
253 : 1866030 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
254 : 1866030 : desc, field, NULL_TREE);
255 : : }
256 : :
257 : : /* This provides READ-ONLY access to the data field. The field itself
258 : : doesn't have the proper type. */
259 : :
260 : : tree
261 : 255756 : gfc_conv_descriptor_data_get (tree desc)
262 : : {
263 : 255756 : tree type = TREE_TYPE (desc);
264 : 255756 : if (TREE_CODE (type) == REFERENCE_TYPE)
265 : 0 : gcc_unreachable ();
266 : :
267 : 255756 : tree field = gfc_get_descriptor_field (desc, DATA_FIELD);
268 : 255756 : return fold_convert (GFC_TYPE_ARRAY_DATAPTR_TYPE (type), field);
269 : : }
270 : :
271 : : /* This provides WRITE access to the data field.
272 : :
273 : : TUPLES_P is true if we are generating tuples.
274 : :
275 : : This function gets called through the following macros:
276 : : gfc_conv_descriptor_data_set
277 : : gfc_conv_descriptor_data_set. */
278 : :
279 : : void
280 : 140812 : gfc_conv_descriptor_data_set (stmtblock_t *block, tree desc, tree value)
281 : : {
282 : 140812 : tree field = gfc_get_descriptor_field (desc, DATA_FIELD);
283 : 140812 : gfc_add_modify (block, field, fold_convert (TREE_TYPE (field), value));
284 : 140812 : }
285 : :
286 : :
287 : : /* This provides address access to the data field. This should only be
288 : : used by array allocation, passing this on to the runtime. */
289 : :
290 : : tree
291 : 1059 : gfc_conv_descriptor_data_addr (tree desc)
292 : : {
293 : 1059 : tree field = gfc_get_descriptor_field (desc, DATA_FIELD);
294 : 1059 : return gfc_build_addr_expr (NULL_TREE, field);
295 : : }
296 : :
297 : : static tree
298 : 189376 : gfc_conv_descriptor_offset (tree desc)
299 : : {
300 : 189376 : tree field = gfc_get_descriptor_field (desc, OFFSET_FIELD);
301 : 189376 : gcc_assert (TREE_TYPE (field) == gfc_array_index_type);
302 : 189376 : return field;
303 : : }
304 : :
305 : : tree
306 : 69004 : gfc_conv_descriptor_offset_get (tree desc)
307 : : {
308 : 69004 : return gfc_conv_descriptor_offset (desc);
309 : : }
310 : :
311 : : void
312 : 112364 : gfc_conv_descriptor_offset_set (stmtblock_t *block, tree desc,
313 : : tree value)
314 : : {
315 : 112364 : tree t = gfc_conv_descriptor_offset (desc);
316 : 112364 : gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
317 : 112364 : }
318 : :
319 : :
320 : : tree
321 : 162599 : gfc_conv_descriptor_dtype (tree desc)
322 : : {
323 : 162599 : tree field = gfc_get_descriptor_field (desc, DTYPE_FIELD);
324 : 162599 : gcc_assert (TREE_TYPE (field) == get_dtype_type_node ());
325 : 162599 : return field;
326 : : }
327 : :
328 : : static tree
329 : 148193 : gfc_conv_descriptor_span (tree desc)
330 : : {
331 : 148193 : tree field = gfc_get_descriptor_field (desc, SPAN_FIELD);
332 : 148193 : gcc_assert (TREE_TYPE (field) == gfc_array_index_type);
333 : 148193 : return field;
334 : : }
335 : :
336 : : tree
337 : 31167 : gfc_conv_descriptor_span_get (tree desc)
338 : : {
339 : 31167 : return gfc_conv_descriptor_span (desc);
340 : : }
341 : :
342 : : void
343 : 117026 : gfc_conv_descriptor_span_set (stmtblock_t *block, tree desc,
344 : : tree value)
345 : : {
346 : 117026 : tree t = gfc_conv_descriptor_span (desc);
347 : 117026 : gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
348 : 117026 : }
349 : :
350 : :
351 : : tree
352 : 18501 : gfc_conv_descriptor_rank (tree desc)
353 : : {
354 : 18501 : tree tmp;
355 : 18501 : tree dtype;
356 : :
357 : 18501 : dtype = gfc_conv_descriptor_dtype (desc);
358 : 18501 : tmp = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (dtype)), GFC_DTYPE_RANK);
359 : 18501 : gcc_assert (tmp != NULL_TREE
360 : : && TREE_TYPE (tmp) == signed_char_type_node);
361 : 18501 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (tmp),
362 : 18501 : dtype, tmp, NULL_TREE);
363 : : }
364 : :
365 : :
366 : : tree
367 : 118 : gfc_conv_descriptor_version (tree desc)
368 : : {
369 : 118 : tree tmp;
370 : 118 : tree dtype;
371 : :
372 : 118 : dtype = gfc_conv_descriptor_dtype (desc);
373 : 118 : tmp = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (dtype)), GFC_DTYPE_VERSION);
374 : 118 : gcc_assert (tmp != NULL_TREE
375 : : && TREE_TYPE (tmp) == integer_type_node);
376 : 118 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (tmp),
377 : 118 : dtype, tmp, NULL_TREE);
378 : : }
379 : :
380 : :
381 : : /* Return the element length from the descriptor dtype field. */
382 : :
383 : : tree
384 : 8262 : gfc_conv_descriptor_elem_len (tree desc)
385 : : {
386 : 8262 : tree tmp;
387 : 8262 : tree dtype;
388 : :
389 : 8262 : dtype = gfc_conv_descriptor_dtype (desc);
390 : 8262 : tmp = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (dtype)),
391 : : GFC_DTYPE_ELEM_LEN);
392 : 8262 : gcc_assert (tmp != NULL_TREE
393 : : && TREE_TYPE (tmp) == size_type_node);
394 : 8262 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (tmp),
395 : 8262 : dtype, tmp, NULL_TREE);
396 : : }
397 : :
398 : :
399 : : tree
400 : 0 : gfc_conv_descriptor_attribute (tree desc)
401 : : {
402 : 0 : tree tmp;
403 : 0 : tree dtype;
404 : :
405 : 0 : dtype = gfc_conv_descriptor_dtype (desc);
406 : 0 : tmp = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (dtype)),
407 : : GFC_DTYPE_ATTRIBUTE);
408 : 0 : gcc_assert (tmp!= NULL_TREE
409 : : && TREE_TYPE (tmp) == short_integer_type_node);
410 : 0 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (tmp),
411 : 0 : dtype, tmp, NULL_TREE);
412 : : }
413 : :
414 : : tree
415 : 73 : gfc_conv_descriptor_type (tree desc)
416 : : {
417 : 73 : tree tmp;
418 : 73 : tree dtype;
419 : :
420 : 73 : dtype = gfc_conv_descriptor_dtype (desc);
421 : 73 : tmp = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (dtype)), GFC_DTYPE_TYPE);
422 : 73 : gcc_assert (tmp!= NULL_TREE
423 : : && TREE_TYPE (tmp) == signed_char_type_node);
424 : 73 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (tmp),
425 : 73 : dtype, tmp, NULL_TREE);
426 : : }
427 : :
428 : : tree
429 : 966563 : gfc_get_descriptor_dimension (tree desc)
430 : : {
431 : 966563 : tree field = gfc_get_descriptor_field (desc, DIMENSION_FIELD);
432 : 966563 : gcc_assert (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
433 : : && TREE_CODE (TREE_TYPE (TREE_TYPE (field))) == RECORD_TYPE);
434 : 966563 : return field;
435 : : }
436 : :
437 : :
438 : : static tree
439 : 962599 : gfc_conv_descriptor_dimension (tree desc, tree dim)
440 : : {
441 : 962599 : tree tmp;
442 : :
443 : 962599 : tmp = gfc_get_descriptor_dimension (desc);
444 : :
445 : 962599 : return gfc_build_array_ref (tmp, dim, NULL_TREE, true);
446 : : }
447 : :
448 : :
449 : : tree
450 : 1672 : gfc_conv_descriptor_token (tree desc)
451 : : {
452 : 1672 : gcc_assert (flag_coarray == GFC_FCOARRAY_LIB);
453 : 1672 : tree field = gfc_get_descriptor_field (desc, CAF_TOKEN_FIELD);
454 : : /* Should be a restricted pointer - except in the finalization wrapper. */
455 : 1672 : gcc_assert (TREE_TYPE (field) == prvoid_type_node
456 : : || TREE_TYPE (field) == pvoid_type_node);
457 : 1672 : return field;
458 : : }
459 : :
460 : : static tree
461 : 962599 : gfc_conv_descriptor_subfield (tree desc, tree dim, unsigned field_idx)
462 : : {
463 : 962599 : tree tmp = gfc_conv_descriptor_dimension (desc, dim);
464 : 962599 : tree field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (tmp)), field_idx);
465 : 962599 : gcc_assert (field != NULL_TREE);
466 : :
467 : 962599 : return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
468 : 962599 : tmp, field, NULL_TREE);
469 : : }
470 : :
471 : : static tree
472 : 255208 : gfc_conv_descriptor_stride (tree desc, tree dim)
473 : : {
474 : 255208 : tree field = gfc_conv_descriptor_subfield (desc, dim, STRIDE_SUBFIELD);
475 : 255208 : gcc_assert (TREE_TYPE (field) == gfc_array_index_type);
476 : 255208 : return field;
477 : : }
478 : :
479 : : tree
480 : 153426 : gfc_conv_descriptor_stride_get (tree desc, tree dim)
481 : : {
482 : 153426 : tree type = TREE_TYPE (desc);
483 : 153426 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
484 : 153426 : if (integer_zerop (dim)
485 : 153426 : && (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ALLOCATABLE
486 : 39492 : ||GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE_CONT
487 : 38424 : ||GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_RANK_CONT
488 : 38274 : ||GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_POINTER_CONT))
489 : 62337 : return gfc_index_one_node;
490 : :
491 : 91089 : return gfc_conv_descriptor_stride (desc, dim);
492 : : }
493 : :
494 : : void
495 : 164119 : gfc_conv_descriptor_stride_set (stmtblock_t *block, tree desc,
496 : : tree dim, tree value)
497 : : {
498 : 164119 : tree t = gfc_conv_descriptor_stride (desc, dim);
499 : 164119 : gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
500 : 164119 : }
501 : :
502 : : static tree
503 : 371689 : gfc_conv_descriptor_lbound (tree desc, tree dim)
504 : : {
505 : 371689 : tree field = gfc_conv_descriptor_subfield (desc, dim, LBOUND_SUBFIELD);
506 : 371689 : gcc_assert (TREE_TYPE (field) == gfc_array_index_type);
507 : 371689 : return field;
508 : : }
509 : :
510 : : tree
511 : 203948 : gfc_conv_descriptor_lbound_get (tree desc, tree dim)
512 : : {
513 : 203948 : return gfc_conv_descriptor_lbound (desc, dim);
514 : : }
515 : :
516 : : void
517 : 167741 : gfc_conv_descriptor_lbound_set (stmtblock_t *block, tree desc,
518 : : tree dim, tree value)
519 : : {
520 : 167741 : tree t = gfc_conv_descriptor_lbound (desc, dim);
521 : 167741 : gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
522 : 167741 : }
523 : :
524 : : static tree
525 : 335702 : gfc_conv_descriptor_ubound (tree desc, tree dim)
526 : : {
527 : 335702 : tree field = gfc_conv_descriptor_subfield (desc, dim, UBOUND_SUBFIELD);
528 : 335702 : gcc_assert (TREE_TYPE (field) == gfc_array_index_type);
529 : 335702 : return field;
530 : : }
531 : :
532 : : tree
533 : 167055 : gfc_conv_descriptor_ubound_get (tree desc, tree dim)
534 : : {
535 : 167055 : return gfc_conv_descriptor_ubound (desc, dim);
536 : : }
537 : :
538 : : void
539 : 168647 : gfc_conv_descriptor_ubound_set (stmtblock_t *block, tree desc,
540 : : tree dim, tree value)
541 : : {
542 : 168647 : tree t = gfc_conv_descriptor_ubound (desc, dim);
543 : 168647 : gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
544 : 168647 : }
545 : :
546 : : /* Build a null array descriptor constructor. */
547 : :
548 : : tree
549 : 876 : gfc_build_null_descriptor (tree type)
550 : : {
551 : 876 : tree field;
552 : 876 : tree tmp;
553 : :
554 : 876 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
555 : 876 : gcc_assert (DATA_FIELD == 0);
556 : 876 : field = TYPE_FIELDS (type);
557 : :
558 : : /* Set a NULL data pointer. */
559 : 876 : tmp = build_constructor_single (type, field, null_pointer_node);
560 : 876 : TREE_CONSTANT (tmp) = 1;
561 : : /* All other fields are ignored. */
562 : :
563 : 876 : return tmp;
564 : : }
565 : :
566 : :
567 : : /* Modify a descriptor such that the lbound of a given dimension is the value
568 : : specified. This also updates ubound and offset accordingly. */
569 : :
570 : : void
571 : 857 : gfc_conv_shift_descriptor_lbound (stmtblock_t* block, tree desc,
572 : : int dim, tree new_lbound)
573 : : {
574 : 857 : tree offs, ubound, lbound, stride;
575 : 857 : tree diff, offs_diff;
576 : :
577 : 857 : new_lbound = fold_convert (gfc_array_index_type, new_lbound);
578 : :
579 : 857 : offs = gfc_conv_descriptor_offset_get (desc);
580 : 857 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[dim]);
581 : 857 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[dim]);
582 : 857 : stride = gfc_conv_descriptor_stride_get (desc, gfc_rank_cst[dim]);
583 : :
584 : : /* Get difference (new - old) by which to shift stuff. */
585 : 857 : diff = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
586 : : new_lbound, lbound);
587 : :
588 : : /* Shift ubound and offset accordingly. This has to be done before
589 : : updating the lbound, as they depend on the lbound expression! */
590 : 857 : ubound = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
591 : : ubound, diff);
592 : 857 : gfc_conv_descriptor_ubound_set (block, desc, gfc_rank_cst[dim], ubound);
593 : 857 : offs_diff = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
594 : : diff, stride);
595 : 857 : offs = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
596 : : offs, offs_diff);
597 : 857 : gfc_conv_descriptor_offset_set (block, desc, offs);
598 : :
599 : : /* Finally set lbound to value we want. */
600 : 857 : gfc_conv_descriptor_lbound_set (block, desc, gfc_rank_cst[dim], new_lbound);
601 : 857 : }
602 : :
603 : :
604 : : /* Obtain offsets for trans-types.cc(gfc_get_array_descr_info). */
605 : :
606 : : void
607 : 259009 : gfc_get_descriptor_offsets_for_info (const_tree desc_type, tree *data_off,
608 : : tree *dtype_off, tree *span_off,
609 : : tree *dim_off, tree *dim_size,
610 : : tree *stride_suboff, tree *lower_suboff,
611 : : tree *upper_suboff)
612 : : {
613 : 259009 : tree field;
614 : 259009 : tree type;
615 : :
616 : 259009 : type = TYPE_MAIN_VARIANT (desc_type);
617 : 259009 : field = gfc_advance_chain (TYPE_FIELDS (type), DATA_FIELD);
618 : 259009 : *data_off = byte_position (field);
619 : 259009 : field = gfc_advance_chain (TYPE_FIELDS (type), DTYPE_FIELD);
620 : 259009 : *dtype_off = byte_position (field);
621 : 259009 : field = gfc_advance_chain (TYPE_FIELDS (type), SPAN_FIELD);
622 : 259009 : *span_off = byte_position (field);
623 : 259009 : field = gfc_advance_chain (TYPE_FIELDS (type), DIMENSION_FIELD);
624 : 259009 : *dim_off = byte_position (field);
625 : 259009 : type = TREE_TYPE (TREE_TYPE (field));
626 : 259009 : *dim_size = TYPE_SIZE_UNIT (type);
627 : 259009 : field = gfc_advance_chain (TYPE_FIELDS (type), STRIDE_SUBFIELD);
628 : 259009 : *stride_suboff = byte_position (field);
629 : 259009 : field = gfc_advance_chain (TYPE_FIELDS (type), LBOUND_SUBFIELD);
630 : 259009 : *lower_suboff = byte_position (field);
631 : 259009 : field = gfc_advance_chain (TYPE_FIELDS (type), UBOUND_SUBFIELD);
632 : 259009 : *upper_suboff = byte_position (field);
633 : 259009 : }
634 : :
635 : :
636 : : /* Cleanup those #defines. */
637 : :
638 : : #undef DATA_FIELD
639 : : #undef OFFSET_FIELD
640 : : #undef DTYPE_FIELD
641 : : #undef SPAN_FIELD
642 : : #undef DIMENSION_FIELD
643 : : #undef CAF_TOKEN_FIELD
644 : : #undef STRIDE_SUBFIELD
645 : : #undef LBOUND_SUBFIELD
646 : : #undef UBOUND_SUBFIELD
647 : :
648 : :
649 : : /* Mark a SS chain as used. Flags specifies in which loops the SS is used.
650 : : flags & 1 = Main loop body.
651 : : flags & 2 = temp copy loop. */
652 : :
653 : : void
654 : 158347 : gfc_mark_ss_chain_used (gfc_ss * ss, unsigned flags)
655 : : {
656 : 370151 : for (; ss != gfc_ss_terminator; ss = ss->next)
657 : 211804 : ss->info->useflags = flags;
658 : 158347 : }
659 : :
660 : :
661 : : /* Free a gfc_ss chain. */
662 : :
663 : : void
664 : 167006 : gfc_free_ss_chain (gfc_ss * ss)
665 : : {
666 : 167006 : gfc_ss *next;
667 : :
668 : 342241 : while (ss != gfc_ss_terminator)
669 : : {
670 : 175235 : gcc_assert (ss != NULL);
671 : 175235 : next = ss->next;
672 : 175235 : gfc_free_ss (ss);
673 : 175235 : ss = next;
674 : : }
675 : 167006 : }
676 : :
677 : :
678 : : static void
679 : 452323 : free_ss_info (gfc_ss_info *ss_info)
680 : : {
681 : 452323 : int n;
682 : :
683 : 452323 : ss_info->refcount--;
684 : 452323 : if (ss_info->refcount > 0)
685 : : return;
686 : :
687 : 448823 : gcc_assert (ss_info->refcount == 0);
688 : :
689 : 448823 : switch (ss_info->type)
690 : : {
691 : : case GFC_SS_SECTION:
692 : 4981456 : for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
693 : 4670115 : if (ss_info->data.array.subscript[n])
694 : 6928 : gfc_free_ss_chain (ss_info->data.array.subscript[n]);
695 : : break;
696 : :
697 : : default:
698 : : break;
699 : : }
700 : :
701 : 448823 : free (ss_info);
702 : : }
703 : :
704 : :
705 : : /* Free a SS. */
706 : :
707 : : void
708 : 452323 : gfc_free_ss (gfc_ss * ss)
709 : : {
710 : 452323 : free_ss_info (ss->info);
711 : 452323 : free (ss);
712 : 452323 : }
713 : :
714 : :
715 : : /* Creates and initializes an array type gfc_ss struct. */
716 : :
717 : : gfc_ss *
718 : 382457 : gfc_get_array_ss (gfc_ss *next, gfc_expr *expr, int dimen, gfc_ss_type type)
719 : : {
720 : 382457 : gfc_ss *ss;
721 : 382457 : gfc_ss_info *ss_info;
722 : 382457 : int i;
723 : :
724 : 382457 : ss_info = gfc_get_ss_info ();
725 : 382457 : ss_info->refcount++;
726 : 382457 : ss_info->type = type;
727 : 382457 : ss_info->expr = expr;
728 : :
729 : 382457 : ss = gfc_get_ss ();
730 : 382457 : ss->info = ss_info;
731 : 382457 : ss->next = next;
732 : 382457 : ss->dimen = dimen;
733 : 810162 : for (i = 0; i < ss->dimen; i++)
734 : 427705 : ss->dim[i] = i;
735 : :
736 : 382457 : return ss;
737 : : }
738 : :
739 : :
740 : : /* Creates and initializes a temporary type gfc_ss struct. */
741 : :
742 : : gfc_ss *
743 : 10905 : gfc_get_temp_ss (tree type, tree string_length, int dimen)
744 : : {
745 : 10905 : gfc_ss *ss;
746 : 10905 : gfc_ss_info *ss_info;
747 : 10905 : int i;
748 : :
749 : 10905 : ss_info = gfc_get_ss_info ();
750 : 10905 : ss_info->refcount++;
751 : 10905 : ss_info->type = GFC_SS_TEMP;
752 : 10905 : ss_info->string_length = string_length;
753 : 10905 : ss_info->data.temp.type = type;
754 : :
755 : 10905 : ss = gfc_get_ss ();
756 : 10905 : ss->info = ss_info;
757 : 10905 : ss->next = gfc_ss_terminator;
758 : 10905 : ss->dimen = dimen;
759 : 24428 : for (i = 0; i < ss->dimen; i++)
760 : 13523 : ss->dim[i] = i;
761 : :
762 : 10905 : return ss;
763 : : }
764 : :
765 : :
766 : : /* Creates and initializes a scalar type gfc_ss struct. */
767 : :
768 : : gfc_ss *
769 : 59428 : gfc_get_scalar_ss (gfc_ss *next, gfc_expr *expr)
770 : : {
771 : 59428 : gfc_ss *ss;
772 : 59428 : gfc_ss_info *ss_info;
773 : :
774 : 59428 : ss_info = gfc_get_ss_info ();
775 : 59428 : ss_info->refcount++;
776 : 59428 : ss_info->type = GFC_SS_SCALAR;
777 : 59428 : ss_info->expr = expr;
778 : :
779 : 59428 : ss = gfc_get_ss ();
780 : 59428 : ss->info = ss_info;
781 : 59428 : ss->next = next;
782 : :
783 : 59428 : return ss;
784 : : }
785 : :
786 : :
787 : : /* Free all the SS associated with a loop. */
788 : :
789 : : void
790 : 168159 : gfc_cleanup_loop (gfc_loopinfo * loop)
791 : : {
792 : 168159 : gfc_loopinfo *loop_next, **ploop;
793 : 168159 : gfc_ss *ss;
794 : 168159 : gfc_ss *next;
795 : :
796 : 168159 : ss = loop->ss;
797 : 444760 : while (ss != gfc_ss_terminator)
798 : : {
799 : 276601 : gcc_assert (ss != NULL);
800 : 276601 : next = ss->loop_chain;
801 : 276601 : gfc_free_ss (ss);
802 : 276601 : ss = next;
803 : : }
804 : :
805 : : /* Remove reference to self in the parent loop. */
806 : 168159 : if (loop->parent)
807 : 2425 : for (ploop = &loop->parent->nested; *ploop; ploop = &(*ploop)->next)
808 : 2425 : if (*ploop == loop)
809 : : {
810 : 2425 : *ploop = loop->next;
811 : 2425 : break;
812 : : }
813 : :
814 : : /* Free non-freed nested loops. */
815 : 170584 : for (loop = loop->nested; loop; loop = loop_next)
816 : : {
817 : 2425 : loop_next = loop->next;
818 : 2425 : gfc_cleanup_loop (loop);
819 : 2425 : free (loop);
820 : : }
821 : 168159 : }
822 : :
823 : :
824 : : static void
825 : 229360 : set_ss_loop (gfc_ss *ss, gfc_loopinfo *loop)
826 : : {
827 : 229360 : int n;
828 : :
829 : 514351 : for (; ss != gfc_ss_terminator; ss = ss->next)
830 : : {
831 : 284991 : ss->loop = loop;
832 : :
833 : 284991 : if (ss->info->type == GFC_SS_SCALAR
834 : : || ss->info->type == GFC_SS_REFERENCE
835 : 242972 : || ss->info->type == GFC_SS_TEMP)
836 : 52924 : continue;
837 : :
838 : 3713072 : for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
839 : 3481005 : if (ss->info->data.array.subscript[n] != NULL)
840 : 6778 : set_ss_loop (ss->info->data.array.subscript[n], loop);
841 : : }
842 : 229360 : }
843 : :
844 : :
845 : : /* Associate a SS chain with a loop. */
846 : :
847 : : void
848 : 222582 : gfc_add_ss_to_loop (gfc_loopinfo * loop, gfc_ss * head)
849 : : {
850 : 222582 : gfc_ss *ss;
851 : 222582 : gfc_loopinfo *nested_loop;
852 : :
853 : 222582 : if (head == gfc_ss_terminator)
854 : : return;
855 : :
856 : 222582 : set_ss_loop (head, loop);
857 : :
858 : 222582 : ss = head;
859 : 723377 : for (; ss && ss != gfc_ss_terminator; ss = ss->next)
860 : : {
861 : 278213 : if (ss->nested_ss)
862 : : {
863 : 3493 : nested_loop = ss->nested_ss->loop;
864 : :
865 : : /* More than one ss can belong to the same loop. Hence, we add the
866 : : loop to the chain only if it is different from the previously
867 : : added one, to avoid duplicate nested loops. */
868 : 3493 : if (nested_loop != loop->nested)
869 : : {
870 : 2425 : gcc_assert (nested_loop->parent == NULL);
871 : 2425 : nested_loop->parent = loop;
872 : :
873 : 2425 : gcc_assert (nested_loop->next == NULL);
874 : 2425 : nested_loop->next = loop->nested;
875 : 2425 : loop->nested = nested_loop;
876 : : }
877 : : else
878 : 1068 : gcc_assert (nested_loop->parent == loop);
879 : : }
880 : :
881 : 278213 : if (ss->next == gfc_ss_terminator)
882 : 222582 : ss->loop_chain = loop->ss;
883 : : else
884 : 55631 : ss->loop_chain = ss->next;
885 : : }
886 : 222582 : gcc_assert (ss == gfc_ss_terminator);
887 : 222582 : loop->ss = head;
888 : : }
889 : :
890 : :
891 : : /* Returns true if the expression is an array pointer. */
892 : :
893 : : static bool
894 : 337235 : is_pointer_array (tree expr)
895 : : {
896 : 337235 : if (expr == NULL_TREE
897 : 337235 : || !GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (expr))
898 : 425012 : || GFC_CLASS_TYPE_P (TREE_TYPE (expr)))
899 : : return false;
900 : :
901 : 87777 : if (VAR_P (expr)
902 : 87777 : && GFC_DECL_PTR_ARRAY_P (expr))
903 : : return true;
904 : :
905 : 82180 : if (TREE_CODE (expr) == PARM_DECL
906 : 82180 : && GFC_DECL_PTR_ARRAY_P (expr))
907 : : return true;
908 : :
909 : 82180 : if (INDIRECT_REF_P (expr)
910 : 82180 : && GFC_DECL_PTR_ARRAY_P (TREE_OPERAND (expr, 0)))
911 : : return true;
912 : :
913 : : /* The field declaration is marked as an pointer array. */
914 : 80082 : if (TREE_CODE (expr) == COMPONENT_REF
915 : 10659 : && GFC_DECL_PTR_ARRAY_P (TREE_OPERAND (expr, 1))
916 : 82437 : && !GFC_CLASS_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 1))))
917 : 2355 : return true;
918 : :
919 : : return false;
920 : : }
921 : :
922 : :
923 : : /* If the symbol or expression reference a CFI descriptor, return the
924 : : pointer to the converted gfc descriptor. If an array reference is
925 : : present as the last argument, check that it is the one applied to
926 : : the CFI descriptor in the expression. Note that the CFI object is
927 : : always the symbol in the expression! */
928 : :
929 : : static bool
930 : 339142 : get_CFI_desc (gfc_symbol *sym, gfc_expr *expr,
931 : : tree *desc, gfc_array_ref *ar)
932 : : {
933 : 339142 : tree tmp;
934 : :
935 : 339142 : if (!is_CFI_desc (sym, expr))
936 : : return false;
937 : :
938 : 4727 : if (expr && ar)
939 : : {
940 : 4061 : if (!(expr->ref && expr->ref->type == REF_ARRAY)
941 : 4043 : || (&expr->ref->u.ar != ar))
942 : : return false;
943 : : }
944 : :
945 : 4697 : if (sym == NULL)
946 : 1108 : tmp = expr->symtree->n.sym->backend_decl;
947 : : else
948 : 3589 : tmp = sym->backend_decl;
949 : :
950 : 4697 : if (tmp && DECL_LANG_SPECIFIC (tmp) && GFC_DECL_SAVED_DESCRIPTOR (tmp))
951 : 0 : tmp = GFC_DECL_SAVED_DESCRIPTOR (tmp);
952 : :
953 : 4697 : *desc = tmp;
954 : 4697 : return true;
955 : : }
956 : :
957 : :
958 : : /* A helper function for gfc_get_array_span that returns the array element size
959 : : of a class entity. */
960 : : static tree
961 : 1052 : class_array_element_size (tree decl, bool unlimited)
962 : : {
963 : : /* Class dummys usually require extraction from the saved descriptor,
964 : : which gfc_class_vptr_get does for us if necessary. This, of course,
965 : : will be a component of the class object. */
966 : 1052 : tree vptr = gfc_class_vptr_get (decl);
967 : : /* If this is an unlimited polymorphic entity with a character payload,
968 : : the element size will be corrected for the string length. */
969 : 1052 : if (unlimited)
970 : 950 : return gfc_resize_class_size_with_len (NULL,
971 : 475 : TREE_OPERAND (vptr, 0),
972 : 475 : gfc_vptr_size_get (vptr));
973 : : else
974 : 577 : return gfc_vptr_size_get (vptr);
975 : : }
976 : :
977 : :
978 : : /* Return the span of an array. */
979 : :
980 : : tree
981 : 54666 : gfc_get_array_span (tree desc, gfc_expr *expr)
982 : : {
983 : 54666 : tree tmp;
984 : 54666 : gfc_symbol *sym = (expr && expr->expr_type == EXPR_VARIABLE) ?
985 : 48115 : expr->symtree->n.sym : NULL;
986 : :
987 : 54666 : if (is_pointer_array (desc)
988 : 54666 : || (get_CFI_desc (NULL, expr, &desc, NULL)
989 : 1332 : && (POINTER_TYPE_P (TREE_TYPE (desc))
990 : 666 : ? GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (desc)))
991 : 0 : : GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))))
992 : : {
993 : 497 : if (POINTER_TYPE_P (TREE_TYPE (desc)))
994 : 0 : desc = build_fold_indirect_ref_loc (input_location, desc);
995 : :
996 : : /* This will have the span field set. */
997 : 497 : tmp = gfc_conv_descriptor_span_get (desc);
998 : : }
999 : 54169 : else if (expr->ts.type == BT_ASSUMED)
1000 : : {
1001 : 127 : if (DECL_LANG_SPECIFIC (desc) && GFC_DECL_SAVED_DESCRIPTOR (desc))
1002 : 127 : desc = GFC_DECL_SAVED_DESCRIPTOR (desc);
1003 : 127 : if (POINTER_TYPE_P (TREE_TYPE (desc)))
1004 : 127 : desc = build_fold_indirect_ref_loc (input_location, desc);
1005 : 127 : tmp = gfc_conv_descriptor_span_get (desc);
1006 : : }
1007 : 54042 : else if (TREE_CODE (desc) == COMPONENT_REF
1008 : 574 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc))
1009 : 54152 : && GFC_CLASS_TYPE_P (TREE_TYPE (TREE_OPERAND (desc, 0))))
1010 : : /* The descriptor is the _data field of a class object. */
1011 : 49 : tmp = class_array_element_size (TREE_OPERAND (desc, 0),
1012 : 49 : UNLIMITED_POLY (expr));
1013 : 53993 : else if (sym && sym->ts.type == BT_CLASS
1014 : 1050 : && expr->ref->type == REF_COMPONENT
1015 : 1050 : && expr->ref->next->type == REF_ARRAY
1016 : 1050 : && expr->ref->next->next == NULL
1017 : 1026 : && CLASS_DATA (sym)->attr.dimension)
1018 : : /* Having escaped the above, this can only be a class array dummy. */
1019 : 1003 : tmp = class_array_element_size (sym->backend_decl,
1020 : 1003 : UNLIMITED_POLY (sym));
1021 : : else
1022 : : {
1023 : : /* If none of the fancy stuff works, the span is the element
1024 : : size of the array. Attempt to deal with unbounded character
1025 : : types if possible. Otherwise, return NULL_TREE. */
1026 : 52990 : tmp = gfc_get_element_type (TREE_TYPE (desc));
1027 : 52990 : if (tmp && TREE_CODE (tmp) == ARRAY_TYPE && TYPE_STRING_FLAG (tmp))
1028 : : {
1029 : 10482 : gcc_assert (expr->ts.type == BT_CHARACTER);
1030 : :
1031 : 10482 : tmp = gfc_get_character_len_in_bytes (tmp);
1032 : :
1033 : 10482 : if (tmp == NULL_TREE || integer_zerop (tmp))
1034 : : {
1035 : 80 : tree bs;
1036 : :
1037 : 80 : tmp = gfc_get_expr_charlen (expr);
1038 : 80 : tmp = fold_convert (gfc_array_index_type, tmp);
1039 : 80 : bs = build_int_cst (gfc_array_index_type, expr->ts.kind);
1040 : 80 : tmp = fold_build2_loc (input_location, MULT_EXPR,
1041 : : gfc_array_index_type, tmp, bs);
1042 : : }
1043 : :
1044 : 10482 : tmp = (tmp && !integer_zerop (tmp))
1045 : 20884 : ? (fold_convert (gfc_array_index_type, tmp)) : (NULL_TREE);
1046 : : }
1047 : : else
1048 : 42508 : tmp = fold_convert (gfc_array_index_type,
1049 : : size_in_bytes (tmp));
1050 : : }
1051 : 54666 : return tmp;
1052 : : }
1053 : :
1054 : :
1055 : : /* Generate an initializer for a static pointer or allocatable array. */
1056 : :
1057 : : void
1058 : 209 : gfc_trans_static_array_pointer (gfc_symbol * sym)
1059 : : {
1060 : 209 : tree type;
1061 : :
1062 : 209 : gcc_assert (TREE_STATIC (sym->backend_decl));
1063 : : /* Just zero the data member. */
1064 : 209 : type = TREE_TYPE (sym->backend_decl);
1065 : 209 : DECL_INITIAL (sym->backend_decl) = gfc_build_null_descriptor (type);
1066 : 209 : }
1067 : :
1068 : :
1069 : : /* If the bounds of SE's loop have not yet been set, see if they can be
1070 : : determined from array spec AS, which is the array spec of a called
1071 : : function. MAPPING maps the callee's dummy arguments to the values
1072 : : that the caller is passing. Add any initialization and finalization
1073 : : code to SE. */
1074 : :
1075 : : void
1076 : 7547 : gfc_set_loop_bounds_from_array_spec (gfc_interface_mapping * mapping,
1077 : : gfc_se * se, gfc_array_spec * as)
1078 : : {
1079 : 7547 : int n, dim, total_dim;
1080 : 7547 : gfc_se tmpse;
1081 : 7547 : gfc_ss *ss;
1082 : 7547 : tree lower;
1083 : 7547 : tree upper;
1084 : 7547 : tree tmp;
1085 : :
1086 : 7547 : total_dim = 0;
1087 : :
1088 : 7547 : if (!as || as->type != AS_EXPLICIT)
1089 : 6449 : return;
1090 : :
1091 : 2221 : for (ss = se->ss; ss; ss = ss->parent)
1092 : : {
1093 : 1123 : total_dim += ss->loop->dimen;
1094 : 2601 : for (n = 0; n < ss->loop->dimen; n++)
1095 : : {
1096 : : /* The bound is known, nothing to do. */
1097 : 1478 : if (ss->loop->to[n] != NULL_TREE)
1098 : 491 : continue;
1099 : :
1100 : 987 : dim = ss->dim[n];
1101 : 987 : gcc_assert (dim < as->rank);
1102 : 987 : gcc_assert (ss->loop->dimen <= as->rank);
1103 : :
1104 : : /* Evaluate the lower bound. */
1105 : 987 : gfc_init_se (&tmpse, NULL);
1106 : 987 : gfc_apply_interface_mapping (mapping, &tmpse, as->lower[dim]);
1107 : 987 : gfc_add_block_to_block (&se->pre, &tmpse.pre);
1108 : 987 : gfc_add_block_to_block (&se->post, &tmpse.post);
1109 : 987 : lower = fold_convert (gfc_array_index_type, tmpse.expr);
1110 : :
1111 : : /* ...and the upper bound. */
1112 : 987 : gfc_init_se (&tmpse, NULL);
1113 : 987 : gfc_apply_interface_mapping (mapping, &tmpse, as->upper[dim]);
1114 : 987 : gfc_add_block_to_block (&se->pre, &tmpse.pre);
1115 : 987 : gfc_add_block_to_block (&se->post, &tmpse.post);
1116 : 987 : upper = fold_convert (gfc_array_index_type, tmpse.expr);
1117 : :
1118 : : /* Set the upper bound of the loop to UPPER - LOWER. */
1119 : 987 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
1120 : : gfc_array_index_type, upper, lower);
1121 : 987 : tmp = gfc_evaluate_now (tmp, &se->pre);
1122 : 987 : ss->loop->to[n] = tmp;
1123 : : }
1124 : : }
1125 : :
1126 : 1098 : gcc_assert (total_dim == as->rank);
1127 : : }
1128 : :
1129 : :
1130 : : /* Generate code to allocate an array temporary, or create a variable to
1131 : : hold the data. If size is NULL, zero the descriptor so that the
1132 : : callee will allocate the array. If DEALLOC is true, also generate code to
1133 : : free the array afterwards.
1134 : :
1135 : : If INITIAL is not NULL, it is packed using internal_pack and the result used
1136 : : as data instead of allocating a fresh, unitialized area of memory.
1137 : :
1138 : : Initialization code is added to PRE and finalization code to POST.
1139 : : DYNAMIC is true if the caller may want to extend the array later
1140 : : using realloc. This prevents us from putting the array on the stack. */
1141 : :
1142 : : static void
1143 : 26407 : gfc_trans_allocate_array_storage (stmtblock_t * pre, stmtblock_t * post,
1144 : : gfc_array_info * info, tree size, tree nelem,
1145 : : tree initial, bool dynamic, bool dealloc)
1146 : : {
1147 : 26407 : tree tmp;
1148 : 26407 : tree desc;
1149 : 26407 : bool onstack;
1150 : :
1151 : 26407 : desc = info->descriptor;
1152 : 26407 : info->offset = gfc_index_zero_node;
1153 : 26407 : if (size == NULL_TREE || (dynamic && integer_zerop (size)))
1154 : : {
1155 : : /* A callee allocated array. */
1156 : 2670 : gfc_conv_descriptor_data_set (pre, desc, null_pointer_node);
1157 : 2670 : onstack = false;
1158 : : }
1159 : : else
1160 : : {
1161 : : /* Allocate the temporary. */
1162 : 47474 : onstack = !dynamic && initial == NULL_TREE
1163 : 23737 : && (flag_stack_arrays
1164 : 23410 : || gfc_can_put_var_on_stack (size));
1165 : :
1166 : 23737 : if (onstack)
1167 : : {
1168 : : /* Make a temporary variable to hold the data. */
1169 : 19089 : tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (nelem),
1170 : : nelem, gfc_index_one_node);
1171 : 19089 : tmp = gfc_evaluate_now (tmp, pre);
1172 : 19089 : tmp = build_range_type (gfc_array_index_type, gfc_index_zero_node,
1173 : : tmp);
1174 : 19089 : tmp = build_array_type (gfc_get_element_type (TREE_TYPE (desc)),
1175 : : tmp);
1176 : 19089 : tmp = gfc_create_var (tmp, "A");
1177 : : /* If we're here only because of -fstack-arrays we have to
1178 : : emit a DECL_EXPR to make the gimplifier emit alloca calls. */
1179 : 19089 : if (!gfc_can_put_var_on_stack (size))
1180 : 17 : gfc_add_expr_to_block (pre,
1181 : : fold_build1_loc (input_location,
1182 : 17 : DECL_EXPR, TREE_TYPE (tmp),
1183 : : tmp));
1184 : 19089 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
1185 : 19089 : gfc_conv_descriptor_data_set (pre, desc, tmp);
1186 : : }
1187 : : else
1188 : : {
1189 : : /* Allocate memory to hold the data or call internal_pack. */
1190 : 4648 : if (initial == NULL_TREE)
1191 : : {
1192 : 4547 : tmp = gfc_call_malloc (pre, NULL, size);
1193 : 4547 : tmp = gfc_evaluate_now (tmp, pre);
1194 : : }
1195 : : else
1196 : : {
1197 : 101 : tree packed;
1198 : 101 : tree source_data;
1199 : 101 : tree was_packed;
1200 : 101 : stmtblock_t do_copying;
1201 : :
1202 : 101 : tmp = TREE_TYPE (initial); /* Pointer to descriptor. */
1203 : 101 : gcc_assert (TREE_CODE (tmp) == POINTER_TYPE);
1204 : 101 : tmp = TREE_TYPE (tmp); /* The descriptor itself. */
1205 : 101 : tmp = gfc_get_element_type (tmp);
1206 : 101 : packed = gfc_create_var (build_pointer_type (tmp), "data");
1207 : :
1208 : 101 : tmp = build_call_expr_loc (input_location,
1209 : : gfor_fndecl_in_pack, 1, initial);
1210 : 101 : tmp = fold_convert (TREE_TYPE (packed), tmp);
1211 : 101 : gfc_add_modify (pre, packed, tmp);
1212 : :
1213 : 101 : tmp = build_fold_indirect_ref_loc (input_location,
1214 : : initial);
1215 : 101 : source_data = gfc_conv_descriptor_data_get (tmp);
1216 : :
1217 : : /* internal_pack may return source->data without any allocation
1218 : : or copying if it is already packed. If that's the case, we
1219 : : need to allocate and copy manually. */
1220 : :
1221 : 101 : gfc_start_block (&do_copying);
1222 : 101 : tmp = gfc_call_malloc (&do_copying, NULL, size);
1223 : 101 : tmp = fold_convert (TREE_TYPE (packed), tmp);
1224 : 101 : gfc_add_modify (&do_copying, packed, tmp);
1225 : 101 : tmp = gfc_build_memcpy_call (packed, source_data, size);
1226 : 101 : gfc_add_expr_to_block (&do_copying, tmp);
1227 : :
1228 : 101 : was_packed = fold_build2_loc (input_location, EQ_EXPR,
1229 : : logical_type_node, packed,
1230 : : source_data);
1231 : 101 : tmp = gfc_finish_block (&do_copying);
1232 : 101 : tmp = build3_v (COND_EXPR, was_packed, tmp,
1233 : : build_empty_stmt (input_location));
1234 : 101 : gfc_add_expr_to_block (pre, tmp);
1235 : :
1236 : 101 : tmp = fold_convert (pvoid_type_node, packed);
1237 : : }
1238 : :
1239 : 4648 : gfc_conv_descriptor_data_set (pre, desc, tmp);
1240 : : }
1241 : : }
1242 : 26407 : info->data = gfc_conv_descriptor_data_get (desc);
1243 : :
1244 : : /* The offset is zero because we create temporaries with a zero
1245 : : lower bound. */
1246 : 26407 : gfc_conv_descriptor_offset_set (pre, desc, gfc_index_zero_node);
1247 : :
1248 : 26407 : if (dealloc && !onstack)
1249 : : {
1250 : : /* Free the temporary. */
1251 : 7086 : tmp = gfc_conv_descriptor_data_get (desc);
1252 : 7086 : tmp = gfc_call_free (tmp);
1253 : 7086 : gfc_add_expr_to_block (post, tmp);
1254 : : }
1255 : 26407 : }
1256 : :
1257 : :
1258 : : /* Get the scalarizer array dimension corresponding to actual array dimension
1259 : : given by ARRAY_DIM.
1260 : :
1261 : : For example, if SS represents the array ref a(1,:,:,1), it is a
1262 : : bidimensional scalarizer array, and the result would be 0 for ARRAY_DIM=1,
1263 : : and 1 for ARRAY_DIM=2.
1264 : : If SS represents transpose(a(:,1,1,:)), it is again a bidimensional
1265 : : scalarizer array, and the result would be 1 for ARRAY_DIM=0 and 0 for
1266 : : ARRAY_DIM=3.
1267 : : If SS represents sum(a(:,:,:,1), dim=1), it is a 2+1-dimensional scalarizer
1268 : : array. If called on the inner ss, the result would be respectively 0,1,2 for
1269 : : ARRAY_DIM=0,1,2. If called on the outer ss, the result would be 0,1
1270 : : for ARRAY_DIM=1,2. */
1271 : :
1272 : : static int
1273 : 238952 : get_scalarizer_dim_for_array_dim (gfc_ss *ss, int array_dim)
1274 : : {
1275 : 238952 : int array_ref_dim;
1276 : 238952 : int n;
1277 : :
1278 : 238952 : array_ref_dim = 0;
1279 : :
1280 : 481340 : for (; ss; ss = ss->parent)
1281 : 622509 : for (n = 0; n < ss->dimen; n++)
1282 : 380121 : if (ss->dim[n] < array_dim)
1283 : 68040 : array_ref_dim++;
1284 : :
1285 : 238952 : return array_ref_dim;
1286 : : }
1287 : :
1288 : :
1289 : : static gfc_ss *
1290 : 200903 : innermost_ss (gfc_ss *ss)
1291 : : {
1292 : 369497 : while (ss->nested_ss != NULL)
1293 : : ss = ss->nested_ss;
1294 : :
1295 : 364294 : return ss;
1296 : : }
1297 : :
1298 : :
1299 : :
1300 : : /* Get the array reference dimension corresponding to the given loop dimension.
1301 : : It is different from the true array dimension given by the dim array in
1302 : : the case of a partial array reference (i.e. a(:,:,1,:) for example)
1303 : : It is different from the loop dimension in the case of a transposed array.
1304 : : */
1305 : :
1306 : : static int
1307 : 200903 : get_array_ref_dim_for_loop_dim (gfc_ss *ss, int loop_dim)
1308 : : {
1309 : 200903 : return get_scalarizer_dim_for_array_dim (innermost_ss (ss),
1310 : 200903 : ss->dim[loop_dim]);
1311 : : }
1312 : :
1313 : :
1314 : : /* Use the information in the ss to obtain the required information about
1315 : : the type and size of an array temporary, when the lhs in an assignment
1316 : : is a class expression. */
1317 : :
1318 : : static tree
1319 : 303 : get_class_info_from_ss (stmtblock_t * pre, gfc_ss *ss, tree *eltype,
1320 : : gfc_ss **fcnss)
1321 : : {
1322 : 303 : gfc_ss *loop_ss = ss->loop->ss;
1323 : 303 : gfc_ss *lhs_ss;
1324 : 303 : gfc_ss *rhs_ss;
1325 : 303 : gfc_ss *fcn_ss = NULL;
1326 : 303 : tree tmp;
1327 : 303 : tree tmp2;
1328 : 303 : tree vptr;
1329 : 303 : tree class_expr = NULL_TREE;
1330 : 303 : tree lhs_class_expr = NULL_TREE;
1331 : 303 : bool unlimited_rhs = false;
1332 : 303 : bool unlimited_lhs = false;
1333 : 303 : bool rhs_function = false;
1334 : 303 : bool unlimited_arg1 = false;
1335 : 303 : gfc_symbol *vtab;
1336 : 303 : tree cntnr = NULL_TREE;
1337 : :
1338 : : /* The second element in the loop chain contains the source for the
1339 : : class temporary created in gfc_trans_create_temp_array. */
1340 : 303 : rhs_ss = loop_ss->loop_chain;
1341 : :
1342 : 303 : if (rhs_ss != gfc_ss_terminator
1343 : 279 : && rhs_ss->info
1344 : 279 : && rhs_ss->info->expr
1345 : 279 : && rhs_ss->info->expr->ts.type == BT_CLASS
1346 : 170 : && rhs_ss->info->data.array.descriptor)
1347 : : {
1348 : 158 : if (rhs_ss->info->expr->expr_type != EXPR_VARIABLE)
1349 : 56 : class_expr
1350 : 56 : = gfc_get_class_from_expr (rhs_ss->info->data.array.descriptor);
1351 : : else
1352 : 102 : class_expr = gfc_get_class_from_gfc_expr (rhs_ss->info->expr);
1353 : 158 : unlimited_rhs = UNLIMITED_POLY (rhs_ss->info->expr);
1354 : 158 : if (rhs_ss->info->expr->expr_type == EXPR_FUNCTION)
1355 : : rhs_function = true;
1356 : : }
1357 : :
1358 : : /* Usually, ss points to the function. When the function call is an actual
1359 : : argument, it is instead rhs_ss because the ss chain is shifted by one. */
1360 : 303 : *fcnss = fcn_ss = rhs_function ? rhs_ss : ss;
1361 : :
1362 : : /* If this is a transformational function with a class result, the info
1363 : : class_container field points to the class container of arg1. */
1364 : 303 : if (class_expr != NULL_TREE
1365 : 139 : && fcn_ss->info && fcn_ss->info->expr
1366 : 91 : && fcn_ss->info->expr->expr_type == EXPR_FUNCTION
1367 : 91 : && fcn_ss->info->expr->value.function.isym
1368 : 60 : && fcn_ss->info->expr->value.function.isym->transformational)
1369 : : {
1370 : 60 : cntnr = ss->info->class_container;
1371 : 60 : unlimited_arg1
1372 : 60 : = UNLIMITED_POLY (fcn_ss->info->expr->value.function.actual->expr);
1373 : : }
1374 : :
1375 : : /* For an assignment the lhs is the next element in the loop chain.
1376 : : If we have a class rhs, this had better be a class variable
1377 : : expression! Otherwise, the class container from arg1 can be used
1378 : : to set the vptr and len fields of the result class container. */
1379 : 303 : lhs_ss = rhs_ss->loop_chain;
1380 : 303 : if (lhs_ss && lhs_ss != gfc_ss_terminator
1381 : 213 : && lhs_ss->info && lhs_ss->info->expr
1382 : 213 : && lhs_ss->info->expr->expr_type ==EXPR_VARIABLE
1383 : 213 : && lhs_ss->info->expr->ts.type == BT_CLASS)
1384 : : {
1385 : 213 : tmp = lhs_ss->info->data.array.descriptor;
1386 : 213 : unlimited_lhs = UNLIMITED_POLY (rhs_ss->info->expr);
1387 : : }
1388 : 90 : else if (cntnr != NULL_TREE)
1389 : : {
1390 : 54 : tmp = gfc_class_vptr_get (class_expr);
1391 : 54 : gfc_add_modify (pre, tmp, fold_convert (TREE_TYPE (tmp),
1392 : : gfc_class_vptr_get (cntnr)));
1393 : 54 : if (unlimited_rhs)
1394 : : {
1395 : 6 : tmp = gfc_class_len_get (class_expr);
1396 : 6 : if (unlimited_arg1)
1397 : 6 : gfc_add_modify (pre, tmp, gfc_class_len_get (cntnr));
1398 : : }
1399 : : tmp = NULL_TREE;
1400 : : }
1401 : : else
1402 : : tmp = NULL_TREE;
1403 : :
1404 : : /* Get the lhs class expression. */
1405 : 213 : if (tmp != NULL_TREE && lhs_ss->loop_chain == gfc_ss_terminator)
1406 : 201 : lhs_class_expr = gfc_get_class_from_expr (tmp);
1407 : : else
1408 : 102 : return class_expr;
1409 : :
1410 : 201 : gcc_assert (GFC_CLASS_TYPE_P (TREE_TYPE (lhs_class_expr)));
1411 : :
1412 : : /* Set the lhs vptr and, if necessary, the _len field. */
1413 : 201 : if (class_expr)
1414 : : {
1415 : : /* Both lhs and rhs are class expressions. */
1416 : 79 : tmp = gfc_class_vptr_get (lhs_class_expr);
1417 : 158 : gfc_add_modify (pre, tmp,
1418 : 79 : fold_convert (TREE_TYPE (tmp),
1419 : : gfc_class_vptr_get (class_expr)));
1420 : 79 : if (unlimited_lhs)
1421 : : {
1422 : 31 : gcc_assert (unlimited_rhs);
1423 : 31 : tmp = gfc_class_len_get (lhs_class_expr);
1424 : 31 : tmp2 = gfc_class_len_get (class_expr);
1425 : 31 : gfc_add_modify (pre, tmp, tmp2);
1426 : : }
1427 : :
1428 : 79 : if (rhs_function)
1429 : : {
1430 : 37 : tmp = gfc_class_data_get (class_expr);
1431 : 37 : gfc_conv_descriptor_offset_set (pre, tmp, gfc_index_zero_node);
1432 : : }
1433 : : }
1434 : 122 : else if (rhs_ss->info->data.array.descriptor)
1435 : : {
1436 : : /* lhs is class and rhs is intrinsic or derived type. */
1437 : 116 : *eltype = TREE_TYPE (rhs_ss->info->data.array.descriptor);
1438 : 116 : *eltype = gfc_get_element_type (*eltype);
1439 : 116 : vtab = gfc_find_vtab (&rhs_ss->info->expr->ts);
1440 : 116 : vptr = vtab->backend_decl;
1441 : 116 : if (vptr == NULL_TREE)
1442 : 18 : vptr = gfc_get_symbol_decl (vtab);
1443 : 116 : vptr = gfc_build_addr_expr (NULL_TREE, vptr);
1444 : 116 : tmp = gfc_class_vptr_get (lhs_class_expr);
1445 : 116 : gfc_add_modify (pre, tmp,
1446 : 116 : fold_convert (TREE_TYPE (tmp), vptr));
1447 : :
1448 : 116 : if (unlimited_lhs)
1449 : : {
1450 : 0 : tmp = gfc_class_len_get (lhs_class_expr);
1451 : 0 : if (rhs_ss->info
1452 : 0 : && rhs_ss->info->expr
1453 : 0 : && rhs_ss->info->expr->ts.type == BT_CHARACTER)
1454 : 0 : tmp2 = build_int_cst (TREE_TYPE (tmp),
1455 : 0 : rhs_ss->info->expr->ts.kind);
1456 : : else
1457 : 0 : tmp2 = build_int_cst (TREE_TYPE (tmp), 0);
1458 : 0 : gfc_add_modify (pre, tmp, tmp2);
1459 : : }
1460 : : }
1461 : :
1462 : : return class_expr;
1463 : : }
1464 : :
1465 : :
1466 : :
1467 : : /* Generate code to create and initialize the descriptor for a temporary
1468 : : array. This is used for both temporaries needed by the scalarizer, and
1469 : : functions returning arrays. Adjusts the loop variables to be
1470 : : zero-based, and calculates the loop bounds for callee allocated arrays.
1471 : : Allocate the array unless it's callee allocated (we have a callee
1472 : : allocated array if 'callee_alloc' is true, or if loop->to[n] is
1473 : : NULL_TREE for any n). Also fills in the descriptor, data and offset
1474 : : fields of info if known. Returns the size of the array, or NULL for a
1475 : : callee allocated array.
1476 : :
1477 : : 'eltype' == NULL signals that the temporary should be a class object.
1478 : : The 'initial' expression is used to obtain the size of the dynamic
1479 : : type; otherwise the allocation and initialization proceeds as for any
1480 : : other expression
1481 : :
1482 : : PRE, POST, INITIAL, DYNAMIC and DEALLOC are as for
1483 : : gfc_trans_allocate_array_storage. */
1484 : :
1485 : : tree
1486 : 26407 : gfc_trans_create_temp_array (stmtblock_t * pre, stmtblock_t * post, gfc_ss * ss,
1487 : : tree eltype, tree initial, bool dynamic,
1488 : : bool dealloc, bool callee_alloc, locus * where)
1489 : : {
1490 : 26407 : gfc_loopinfo *loop;
1491 : 26407 : gfc_ss *s;
1492 : 26407 : gfc_array_info *info;
1493 : 26407 : tree from[GFC_MAX_DIMENSIONS], to[GFC_MAX_DIMENSIONS];
1494 : 26407 : tree type;
1495 : 26407 : tree desc;
1496 : 26407 : tree tmp;
1497 : 26407 : tree size;
1498 : 26407 : tree nelem;
1499 : 26407 : tree cond;
1500 : 26407 : tree or_expr;
1501 : 26407 : tree elemsize;
1502 : 26407 : tree class_expr = NULL_TREE;
1503 : 26407 : gfc_ss *fcn_ss = NULL;
1504 : 26407 : int n, dim, tmp_dim;
1505 : 26407 : int total_dim = 0;
1506 : :
1507 : : /* This signals a class array for which we need the size of the
1508 : : dynamic type. Generate an eltype and then the class expression. */
1509 : 26407 : if (eltype == NULL_TREE && initial)
1510 : : {
1511 : 6 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (initial)));
1512 : 6 : class_expr = build_fold_indirect_ref_loc (input_location, initial);
1513 : : /* Obtain the structure (class) expression. */
1514 : 6 : class_expr = gfc_get_class_from_expr (class_expr);
1515 : 6 : gcc_assert (class_expr);
1516 : : }
1517 : :
1518 : : /* Otherwise, some expressions, such as class functions, arising from
1519 : : dependency checking in assignments come here with class element type.
1520 : : The descriptor can be obtained from the ss->info and then converted
1521 : : to the class object. */
1522 : 26401 : if (class_expr == NULL_TREE && GFC_CLASS_TYPE_P (eltype))
1523 : 303 : class_expr = get_class_info_from_ss (pre, ss, &eltype, &fcn_ss);
1524 : :
1525 : : /* If the dynamic type is not available, use the declared type. */
1526 : 26407 : if (eltype && GFC_CLASS_TYPE_P (eltype))
1527 : 187 : eltype = gfc_get_element_type (TREE_TYPE (TYPE_FIELDS (eltype)));
1528 : :
1529 : 26407 : if (class_expr == NULL_TREE)
1530 : 26262 : elemsize = fold_convert (gfc_array_index_type,
1531 : : TYPE_SIZE_UNIT (eltype));
1532 : : else
1533 : : {
1534 : : /* Unlimited polymorphic entities are initialised with NULL vptr. They
1535 : : can be tested for by checking if the len field is present. If so
1536 : : test the vptr before using the vtable size. */
1537 : 145 : tmp = gfc_class_vptr_get (class_expr);
1538 : 145 : tmp = fold_build2_loc (input_location, NE_EXPR,
1539 : : logical_type_node,
1540 : 145 : tmp, build_int_cst (TREE_TYPE (tmp), 0));
1541 : 145 : elemsize = fold_build3_loc (input_location, COND_EXPR,
1542 : : gfc_array_index_type,
1543 : : tmp,
1544 : : gfc_class_vtab_size_get (class_expr),
1545 : : gfc_index_zero_node);
1546 : 145 : elemsize = gfc_evaluate_now (elemsize, pre);
1547 : 145 : elemsize = gfc_resize_class_size_with_len (pre, class_expr, elemsize);
1548 : : /* Casting the data as a character of the dynamic length ensures that
1549 : : assignment of elements works when needed. */
1550 : 145 : eltype = gfc_get_character_type_len (1, elemsize);
1551 : : }
1552 : :
1553 : 26407 : memset (from, 0, sizeof (from));
1554 : 26407 : memset (to, 0, sizeof (to));
1555 : :
1556 : 26407 : info = &ss->info->data.array;
1557 : :
1558 : 26407 : gcc_assert (ss->dimen > 0);
1559 : 26407 : gcc_assert (ss->loop->dimen == ss->dimen);
1560 : :
1561 : 26407 : if (warn_array_temporaries && where)
1562 : 204 : gfc_warning (OPT_Warray_temporaries,
1563 : : "Creating array temporary at %L", where);
1564 : :
1565 : : /* Set the lower bound to zero. */
1566 : 52849 : for (s = ss; s; s = s->parent)
1567 : : {
1568 : 26442 : loop = s->loop;
1569 : :
1570 : 26442 : total_dim += loop->dimen;
1571 : 61280 : for (n = 0; n < loop->dimen; n++)
1572 : : {
1573 : 34838 : dim = s->dim[n];
1574 : :
1575 : : /* Callee allocated arrays may not have a known bound yet. */
1576 : 34838 : if (loop->to[n])
1577 : 31632 : loop->to[n] = gfc_evaluate_now (
1578 : : fold_build2_loc (input_location, MINUS_EXPR,
1579 : : gfc_array_index_type,
1580 : : loop->to[n], loop->from[n]),
1581 : : pre);
1582 : 34838 : loop->from[n] = gfc_index_zero_node;
1583 : :
1584 : : /* We have just changed the loop bounds, we must clear the
1585 : : corresponding specloop, so that delta calculation is not skipped
1586 : : later in gfc_set_delta. */
1587 : 34838 : loop->specloop[n] = NULL;
1588 : :
1589 : : /* We are constructing the temporary's descriptor based on the loop
1590 : : dimensions. As the dimensions may be accessed in arbitrary order
1591 : : (think of transpose) the size taken from the n'th loop may not map
1592 : : to the n'th dimension of the array. We need to reconstruct loop
1593 : : infos in the right order before using it to set the descriptor
1594 : : bounds. */
1595 : 34838 : tmp_dim = get_scalarizer_dim_for_array_dim (ss, dim);
1596 : 34838 : from[tmp_dim] = loop->from[n];
1597 : 34838 : to[tmp_dim] = loop->to[n];
1598 : :
1599 : 34838 : info->delta[dim] = gfc_index_zero_node;
1600 : 34838 : info->start[dim] = gfc_index_zero_node;
1601 : 34838 : info->end[dim] = gfc_index_zero_node;
1602 : 34838 : info->stride[dim] = gfc_index_one_node;
1603 : : }
1604 : : }
1605 : :
1606 : : /* Initialize the descriptor. */
1607 : 26407 : type =
1608 : 26407 : gfc_get_array_type_bounds (eltype, total_dim, 0, from, to, 1,
1609 : : GFC_ARRAY_UNKNOWN, true);
1610 : 26407 : desc = gfc_create_var (type, "atmp");
1611 : 26407 : GFC_DECL_PACKED_ARRAY (desc) = 1;
1612 : :
1613 : : /* Emit a DECL_EXPR for the variable sized array type in
1614 : : GFC_TYPE_ARRAY_DATAPTR_TYPE so the gimplification of its type
1615 : : sizes works correctly. */
1616 : 26407 : tree arraytype = TREE_TYPE (GFC_TYPE_ARRAY_DATAPTR_TYPE (type));
1617 : 26407 : if (! TYPE_NAME (arraytype))
1618 : 26407 : TYPE_NAME (arraytype) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
1619 : : NULL_TREE, arraytype);
1620 : 26407 : gfc_add_expr_to_block (pre, build1 (DECL_EXPR,
1621 : 26407 : arraytype, TYPE_NAME (arraytype)));
1622 : :
1623 : 26407 : if (fcn_ss && fcn_ss->info && fcn_ss->info->class_container)
1624 : : {
1625 : 90 : suppress_warning (desc);
1626 : 90 : TREE_USED (desc) = 0;
1627 : : }
1628 : :
1629 : 26407 : if (class_expr != NULL_TREE
1630 : 26262 : || (fcn_ss && fcn_ss->info && fcn_ss->info->class_container))
1631 : : {
1632 : 175 : tree class_data;
1633 : 175 : tree dtype;
1634 : 175 : gfc_expr *expr1 = fcn_ss ? fcn_ss->info->expr : NULL;
1635 : 169 : bool rank_changer;
1636 : :
1637 : : /* Pick out these transformational functions because they change the rank
1638 : : or shape of the first argument. This requires that the class type be
1639 : : changed, the dtype updated and the correct rank used. */
1640 : 121 : rank_changer = expr1 && expr1->expr_type == EXPR_FUNCTION
1641 : 121 : && expr1->value.function.isym
1642 : 259 : && (expr1->value.function.isym->id == GFC_ISYM_RESHAPE
1643 : : || expr1->value.function.isym->id == GFC_ISYM_SPREAD
1644 : : || expr1->value.function.isym->id == GFC_ISYM_PACK
1645 : : || expr1->value.function.isym->id == GFC_ISYM_UNPACK);
1646 : :
1647 : : /* Create a class temporary for the result using the lhs class object. */
1648 : 175 : if (class_expr != NULL_TREE && !rank_changer)
1649 : : {
1650 : 97 : tmp = gfc_create_var (TREE_TYPE (class_expr), "ctmp");
1651 : 97 : gfc_add_modify (pre, tmp, class_expr);
1652 : : }
1653 : : else
1654 : : {
1655 : 78 : tree vptr;
1656 : 78 : class_expr = fcn_ss->info->class_container;
1657 : 78 : gcc_assert (expr1);
1658 : :
1659 : : /* Build a new class container using the arg1 class object. The class
1660 : : typespec must be rebuilt because the rank might have changed. */
1661 : 78 : gfc_typespec ts = CLASS_DATA (expr1)->ts;
1662 : 78 : symbol_attribute attr = CLASS_DATA (expr1)->attr;
1663 : 78 : gfc_change_class (&ts, &attr, NULL, expr1->rank, 0);
1664 : 78 : tmp = gfc_create_var (gfc_typenode_for_spec (&ts), "ctmp");
1665 : 78 : fcn_ss->info->class_container = tmp;
1666 : :
1667 : : /* Set the vptr and obtain the element size. */
1668 : 78 : vptr = gfc_class_vptr_get (tmp);
1669 : 156 : gfc_add_modify (pre, vptr,
1670 : 78 : fold_convert (TREE_TYPE (vptr),
1671 : : gfc_class_vptr_get (class_expr)));
1672 : 78 : elemsize = gfc_class_vtab_size_get (class_expr);
1673 : :
1674 : : /* Set the _len field, if necessary. */
1675 : 78 : if (UNLIMITED_POLY (expr1))
1676 : : {
1677 : 18 : gfc_add_modify (pre, gfc_class_len_get (tmp),
1678 : : gfc_class_len_get (class_expr));
1679 : 18 : elemsize = gfc_resize_class_size_with_len (pre, class_expr,
1680 : : elemsize);
1681 : : }
1682 : :
1683 : 78 : elemsize = gfc_evaluate_now (elemsize, pre);
1684 : : }
1685 : :
1686 : 175 : class_data = gfc_class_data_get (tmp);
1687 : :
1688 : 175 : if (rank_changer)
1689 : : {
1690 : : /* Take the dtype from the class expression. */
1691 : 72 : dtype = gfc_conv_descriptor_dtype (gfc_class_data_get (class_expr));
1692 : 72 : tmp = gfc_conv_descriptor_dtype (desc);
1693 : 72 : gfc_add_modify (pre, tmp, dtype);
1694 : :
1695 : : /* These transformational functions change the rank. */
1696 : 72 : tmp = gfc_conv_descriptor_rank (desc);
1697 : 72 : gfc_add_modify (pre, tmp,
1698 : 72 : build_int_cst (TREE_TYPE (tmp), ss->loop->dimen));
1699 : 72 : fcn_ss->info->class_container = NULL_TREE;
1700 : : }
1701 : :
1702 : : /* Assign the new descriptor to the _data field. This allows the
1703 : : vptr _copy to be used for scalarized assignment since the class
1704 : : temporary can be found from the descriptor. */
1705 : 175 : tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
1706 : 175 : TREE_TYPE (desc), desc);
1707 : 175 : gfc_add_modify (pre, class_data, tmp);
1708 : :
1709 : : /* Point desc to the class _data field. */
1710 : 175 : desc = class_data;
1711 : 175 : }
1712 : : else
1713 : : {
1714 : : /* Fill in the array dtype. */
1715 : 26232 : tmp = gfc_conv_descriptor_dtype (desc);
1716 : 26232 : gfc_add_modify (pre, tmp, gfc_get_dtype (TREE_TYPE (desc)));
1717 : : }
1718 : :
1719 : 26407 : info->descriptor = desc;
1720 : 26407 : size = gfc_index_one_node;
1721 : :
1722 : : /*
1723 : : Fill in the bounds and stride. This is a packed array, so:
1724 : :
1725 : : size = 1;
1726 : : for (n = 0; n < rank; n++)
1727 : : {
1728 : : stride[n] = size
1729 : : delta = ubound[n] + 1 - lbound[n];
1730 : : size = size * delta;
1731 : : }
1732 : : size = size * sizeof(element);
1733 : : */
1734 : :
1735 : 26407 : or_expr = NULL_TREE;
1736 : :
1737 : : /* If there is at least one null loop->to[n], it is a callee allocated
1738 : : array. */
1739 : 58039 : for (n = 0; n < total_dim; n++)
1740 : 33518 : if (to[n] == NULL_TREE)
1741 : : {
1742 : : size = NULL_TREE;
1743 : : break;
1744 : : }
1745 : :
1746 : 26407 : if (size == NULL_TREE)
1747 : 3782 : for (s = ss; s; s = s->parent)
1748 : 5107 : for (n = 0; n < s->loop->dimen; n++)
1749 : : {
1750 : 3211 : dim = get_scalarizer_dim_for_array_dim (ss, s->dim[n]);
1751 : :
1752 : : /* For a callee allocated array express the loop bounds in terms
1753 : : of the descriptor fields. */
1754 : 3211 : tmp = fold_build2_loc (input_location,
1755 : : MINUS_EXPR, gfc_array_index_type,
1756 : : gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[dim]),
1757 : : gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[dim]));
1758 : 3211 : s->loop->to[n] = tmp;
1759 : : }
1760 : : else
1761 : : {
1762 : 56148 : for (n = 0; n < total_dim; n++)
1763 : : {
1764 : : /* Store the stride and bound components in the descriptor. */
1765 : 31627 : gfc_conv_descriptor_stride_set (pre, desc, gfc_rank_cst[n], size);
1766 : :
1767 : 31627 : gfc_conv_descriptor_lbound_set (pre, desc, gfc_rank_cst[n],
1768 : : gfc_index_zero_node);
1769 : :
1770 : 31627 : gfc_conv_descriptor_ubound_set (pre, desc, gfc_rank_cst[n], to[n]);
1771 : :
1772 : 31627 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
1773 : : gfc_array_index_type,
1774 : : to[n], gfc_index_one_node);
1775 : :
1776 : : /* Check whether the size for this dimension is negative. */
1777 : 31627 : cond = fold_build2_loc (input_location, LE_EXPR, logical_type_node,
1778 : : tmp, gfc_index_zero_node);
1779 : 31627 : cond = gfc_evaluate_now (cond, pre);
1780 : :
1781 : 31627 : if (n == 0)
1782 : : or_expr = cond;
1783 : : else
1784 : 7106 : or_expr = fold_build2_loc (input_location, TRUTH_OR_EXPR,
1785 : : logical_type_node, or_expr, cond);
1786 : :
1787 : 31627 : size = fold_build2_loc (input_location, MULT_EXPR,
1788 : : gfc_array_index_type, size, tmp);
1789 : 31627 : size = gfc_evaluate_now (size, pre);
1790 : : }
1791 : : }
1792 : :
1793 : : /* Get the size of the array. */
1794 : 26407 : if (size && !callee_alloc)
1795 : : {
1796 : : /* If or_expr is true, then the extent in at least one
1797 : : dimension is zero and the size is set to zero. */
1798 : 24316 : size = fold_build3_loc (input_location, COND_EXPR, gfc_array_index_type,
1799 : : or_expr, gfc_index_zero_node, size);
1800 : :
1801 : 24316 : nelem = size;
1802 : 24316 : size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
1803 : : size, elemsize);
1804 : : }
1805 : : else
1806 : : {
1807 : : nelem = size;
1808 : : size = NULL_TREE;
1809 : : }
1810 : :
1811 : : /* Set the span. */
1812 : 26407 : tmp = fold_convert (gfc_array_index_type, elemsize);
1813 : 26407 : gfc_conv_descriptor_span_set (pre, desc, tmp);
1814 : :
1815 : 26407 : gfc_trans_allocate_array_storage (pre, post, info, size, nelem, initial,
1816 : : dynamic, dealloc);
1817 : :
1818 : 52849 : while (ss->parent)
1819 : : ss = ss->parent;
1820 : :
1821 : 26407 : if (ss->dimen > ss->loop->temp_dim)
1822 : 22411 : ss->loop->temp_dim = ss->dimen;
1823 : :
1824 : 26407 : return size;
1825 : : }
1826 : :
1827 : :
1828 : : /* Return the number of iterations in a loop that starts at START,
1829 : : ends at END, and has step STEP. */
1830 : :
1831 : : static tree
1832 : 996 : gfc_get_iteration_count (tree start, tree end, tree step)
1833 : : {
1834 : 996 : tree tmp;
1835 : 996 : tree type;
1836 : :
1837 : 996 : type = TREE_TYPE (step);
1838 : 996 : tmp = fold_build2_loc (input_location, MINUS_EXPR, type, end, start);
1839 : 996 : tmp = fold_build2_loc (input_location, FLOOR_DIV_EXPR, type, tmp, step);
1840 : 996 : tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp,
1841 : 996 : build_int_cst (type, 1));
1842 : 996 : tmp = fold_build2_loc (input_location, MAX_EXPR, type, tmp,
1843 : 996 : build_int_cst (type, 0));
1844 : 996 : return fold_convert (gfc_array_index_type, tmp);
1845 : : }
1846 : :
1847 : :
1848 : : /* Extend the data in array DESC by EXTRA elements. */
1849 : :
1850 : : static void
1851 : 984 : gfc_grow_array (stmtblock_t * pblock, tree desc, tree extra)
1852 : : {
1853 : 984 : tree arg0, arg1;
1854 : 984 : tree tmp;
1855 : 984 : tree size;
1856 : 984 : tree ubound;
1857 : :
1858 : 984 : if (integer_zerop (extra))
1859 : : return;
1860 : :
1861 : 954 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[0]);
1862 : :
1863 : : /* Add EXTRA to the upper bound. */
1864 : 954 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1865 : : ubound, extra);
1866 : 954 : gfc_conv_descriptor_ubound_set (pblock, desc, gfc_rank_cst[0], tmp);
1867 : :
1868 : : /* Get the value of the current data pointer. */
1869 : 954 : arg0 = gfc_conv_descriptor_data_get (desc);
1870 : :
1871 : : /* Calculate the new array size. */
1872 : 954 : size = TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (desc)));
1873 : 954 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1874 : : ubound, gfc_index_one_node);
1875 : 954 : arg1 = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
1876 : : fold_convert (size_type_node, tmp),
1877 : : fold_convert (size_type_node, size));
1878 : :
1879 : : /* Call the realloc() function. */
1880 : 954 : tmp = gfc_call_realloc (pblock, arg0, arg1);
1881 : 954 : gfc_conv_descriptor_data_set (pblock, desc, tmp);
1882 : : }
1883 : :
1884 : :
1885 : : /* Return true if the bounds of iterator I can only be determined
1886 : : at run time. */
1887 : :
1888 : : static inline bool
1889 : 2081 : gfc_iterator_has_dynamic_bounds (gfc_iterator * i)
1890 : : {
1891 : 2081 : return (i->start->expr_type != EXPR_CONSTANT
1892 : 1648 : || i->end->expr_type != EXPR_CONSTANT
1893 : 2249 : || i->step->expr_type != EXPR_CONSTANT);
1894 : : }
1895 : :
1896 : :
1897 : : /* Split the size of constructor element EXPR into the sum of two terms,
1898 : : one of which can be determined at compile time and one of which must
1899 : : be calculated at run time. Set *SIZE to the former and return true
1900 : : if the latter might be nonzero. */
1901 : :
1902 : : static bool
1903 : 3082 : gfc_get_array_constructor_element_size (mpz_t * size, gfc_expr * expr)
1904 : : {
1905 : 3082 : if (expr->expr_type == EXPR_ARRAY)
1906 : 623 : return gfc_get_array_constructor_size (size, expr->value.constructor);
1907 : 2459 : else if (expr->rank > 0)
1908 : : {
1909 : : /* Calculate everything at run time. */
1910 : 981 : mpz_set_ui (*size, 0);
1911 : 981 : return true;
1912 : : }
1913 : : else
1914 : : {
1915 : : /* A single element. */
1916 : 1478 : mpz_set_ui (*size, 1);
1917 : 1478 : return false;
1918 : : }
1919 : : }
1920 : :
1921 : :
1922 : : /* Like gfc_get_array_constructor_element_size, but applied to the whole
1923 : : of array constructor C. */
1924 : :
1925 : : static bool
1926 : 2683 : gfc_get_array_constructor_size (mpz_t * size, gfc_constructor_base base)
1927 : : {
1928 : 2683 : gfc_constructor *c;
1929 : 2683 : gfc_iterator *i;
1930 : 2683 : mpz_t val;
1931 : 2683 : mpz_t len;
1932 : 2683 : bool dynamic;
1933 : :
1934 : 2683 : mpz_set_ui (*size, 0);
1935 : 2683 : mpz_init (len);
1936 : 2683 : mpz_init (val);
1937 : :
1938 : 2683 : dynamic = false;
1939 : 6692 : for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
1940 : : {
1941 : 4009 : i = c->iterator;
1942 : 4009 : if (i && gfc_iterator_has_dynamic_bounds (i))
1943 : : dynamic = true;
1944 : : else
1945 : : {
1946 : 2589 : dynamic |= gfc_get_array_constructor_element_size (&len, c->expr);
1947 : 2589 : if (i)
1948 : : {
1949 : : /* Multiply the static part of the element size by the
1950 : : number of iterations. */
1951 : 124 : mpz_sub (val, i->end->value.integer, i->start->value.integer);
1952 : 124 : mpz_fdiv_q (val, val, i->step->value.integer);
1953 : 124 : mpz_add_ui (val, val, 1);
1954 : 124 : if (mpz_sgn (val) > 0)
1955 : 88 : mpz_mul (len, len, val);
1956 : : else
1957 : 36 : mpz_set_ui (len, 0);
1958 : : }
1959 : 2589 : mpz_add (*size, *size, len);
1960 : : }
1961 : : }
1962 : 2683 : mpz_clear (len);
1963 : 2683 : mpz_clear (val);
1964 : 2683 : return dynamic;
1965 : : }
1966 : :
1967 : :
1968 : : /* Make sure offset is a variable. */
1969 : :
1970 : : static void
1971 : 4702 : gfc_put_offset_into_var (stmtblock_t * pblock, tree * poffset,
1972 : : tree * offsetvar)
1973 : : {
1974 : : /* We should have already created the offset variable. We cannot
1975 : : create it here because we may be in an inner scope. */
1976 : 4702 : gcc_assert (*offsetvar != NULL_TREE);
1977 : 4702 : gfc_add_modify (pblock, *offsetvar, *poffset);
1978 : 4702 : *poffset = *offsetvar;
1979 : 4702 : TREE_USED (*offsetvar) = 1;
1980 : 4702 : }
1981 : :
1982 : :
1983 : : /* Variables needed for bounds-checking. */
1984 : : static bool first_len;
1985 : : static tree first_len_val;
1986 : : static bool typespec_chararray_ctor;
1987 : :
1988 : : static void
1989 : 12173 : gfc_trans_array_ctor_element (stmtblock_t * pblock, tree desc,
1990 : : tree offset, gfc_se * se, gfc_expr * expr)
1991 : : {
1992 : 12173 : tree tmp;
1993 : :
1994 : 12173 : gfc_conv_expr (se, expr);
1995 : :
1996 : : /* Store the value. */
1997 : 12173 : tmp = build_fold_indirect_ref_loc (input_location,
1998 : : gfc_conv_descriptor_data_get (desc));
1999 : 12173 : tmp = gfc_build_array_ref (tmp, offset, NULL);
2000 : :
2001 : 12173 : if (expr->expr_type == EXPR_FUNCTION && expr->ts.type == BT_DERIVED
2002 : 35 : && expr->ts.u.derived->attr.alloc_comp)
2003 : : {
2004 : 5 : if (!VAR_P (se->expr))
2005 : 5 : se->expr = gfc_evaluate_now (se->expr, &se->pre);
2006 : 5 : gfc_add_expr_to_block (&se->finalblock,
2007 : : gfc_deallocate_alloc_comp_no_caf (
2008 : : expr->ts.u.derived, se->expr, expr->rank, true));
2009 : : }
2010 : :
2011 : 12173 : if (expr->ts.type == BT_CHARACTER)
2012 : : {
2013 : 1981 : int i = gfc_validate_kind (BT_CHARACTER, expr->ts.kind, false);
2014 : 1981 : tree esize;
2015 : :
2016 : 1981 : esize = size_in_bytes (gfc_get_element_type (TREE_TYPE (desc)));
2017 : 1981 : esize = fold_convert (gfc_charlen_type_node, esize);
2018 : 3962 : esize = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
2019 : 1981 : TREE_TYPE (esize), esize,
2020 : 1981 : build_int_cst (TREE_TYPE (esize),
2021 : 1981 : gfc_character_kinds[i].bit_size / 8));
2022 : :
2023 : 1981 : gfc_conv_string_parameter (se);
2024 : 1981 : if (POINTER_TYPE_P (TREE_TYPE (tmp)))
2025 : : {
2026 : : /* The temporary is an array of pointers. */
2027 : 6 : se->expr = fold_convert (TREE_TYPE (tmp), se->expr);
2028 : 6 : gfc_add_modify (&se->pre, tmp, se->expr);
2029 : : }
2030 : : else
2031 : : {
2032 : : /* The temporary is an array of string values. */
2033 : 1975 : tmp = gfc_build_addr_expr (gfc_get_pchar_type (expr->ts.kind), tmp);
2034 : : /* We know the temporary and the value will be the same length,
2035 : : so can use memcpy. */
2036 : 1975 : gfc_trans_string_copy (&se->pre, esize, tmp, expr->ts.kind,
2037 : : se->string_length, se->expr, expr->ts.kind);
2038 : : }
2039 : 1981 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS) && !typespec_chararray_ctor)
2040 : : {
2041 : 295 : if (first_len)
2042 : : {
2043 : 115 : gfc_add_modify (&se->pre, first_len_val,
2044 : 115 : fold_convert (TREE_TYPE (first_len_val),
2045 : : se->string_length));
2046 : 115 : first_len = false;
2047 : : }
2048 : : else
2049 : : {
2050 : : /* Verify that all constructor elements are of the same
2051 : : length. */
2052 : 180 : tree rhs = fold_convert (TREE_TYPE (first_len_val),
2053 : : se->string_length);
2054 : 180 : tree cond = fold_build2_loc (input_location, NE_EXPR,
2055 : : logical_type_node, first_len_val,
2056 : : rhs);
2057 : 180 : gfc_trans_runtime_check
2058 : 180 : (true, false, cond, &se->pre, &expr->where,
2059 : : "Different CHARACTER lengths (%ld/%ld) in array constructor",
2060 : : fold_convert (long_integer_type_node, first_len_val),
2061 : : fold_convert (long_integer_type_node, se->string_length));
2062 : : }
2063 : : }
2064 : : }
2065 : 10192 : else if (GFC_CLASS_TYPE_P (TREE_TYPE (se->expr))
2066 : 10192 : && !GFC_CLASS_TYPE_P (gfc_get_element_type (TREE_TYPE (desc))))
2067 : : {
2068 : : /* Assignment of a CLASS array constructor to a derived type array. */
2069 : 24 : if (expr->expr_type == EXPR_FUNCTION)
2070 : 18 : se->expr = gfc_evaluate_now (se->expr, pblock);
2071 : 24 : se->expr = gfc_class_data_get (se->expr);
2072 : 24 : se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
2073 : 24 : se->expr = fold_convert (TREE_TYPE (tmp), se->expr);
2074 : 24 : gfc_add_modify (&se->pre, tmp, se->expr);
2075 : : }
2076 : : else
2077 : : {
2078 : : /* TODO: Should the frontend already have done this conversion? */
2079 : 10168 : se->expr = fold_convert (TREE_TYPE (tmp), se->expr);
2080 : 10168 : gfc_add_modify (&se->pre, tmp, se->expr);
2081 : : }
2082 : :
2083 : 12173 : gfc_add_block_to_block (pblock, &se->pre);
2084 : 12173 : gfc_add_block_to_block (pblock, &se->post);
2085 : 12173 : }
2086 : :
2087 : :
2088 : : /* Add the contents of an array to the constructor. DYNAMIC is as for
2089 : : gfc_trans_array_constructor_value. */
2090 : :
2091 : : static void
2092 : 1928 : gfc_trans_array_constructor_subarray (stmtblock_t * pblock,
2093 : : tree type ATTRIBUTE_UNUSED,
2094 : : tree desc, gfc_expr * expr,
2095 : : tree * poffset, tree * offsetvar,
2096 : : bool dynamic)
2097 : : {
2098 : 1928 : gfc_se se;
2099 : 1928 : gfc_ss *ss;
2100 : 1928 : gfc_loopinfo loop;
2101 : 1928 : stmtblock_t body;
2102 : 1928 : tree tmp;
2103 : 1928 : tree size;
2104 : 1928 : int n;
2105 : :
2106 : : /* We need this to be a variable so we can increment it. */
2107 : 1928 : gfc_put_offset_into_var (pblock, poffset, offsetvar);
2108 : :
2109 : 1928 : gfc_init_se (&se, NULL);
2110 : :
2111 : : /* Walk the array expression. */
2112 : 1928 : ss = gfc_walk_expr (expr);
2113 : 1928 : gcc_assert (ss != gfc_ss_terminator);
2114 : :
2115 : : /* Initialize the scalarizer. */
2116 : 1928 : gfc_init_loopinfo (&loop);
2117 : 1928 : gfc_add_ss_to_loop (&loop, ss);
2118 : :
2119 : : /* Initialize the loop. */
2120 : 1928 : gfc_conv_ss_startstride (&loop);
2121 : 1928 : gfc_conv_loop_setup (&loop, &expr->where);
2122 : :
2123 : : /* Make sure the constructed array has room for the new data. */
2124 : 1928 : if (dynamic)
2125 : : {
2126 : : /* Set SIZE to the total number of elements in the subarray. */
2127 : 491 : size = gfc_index_one_node;
2128 : 994 : for (n = 0; n < loop.dimen; n++)
2129 : : {
2130 : 503 : tmp = gfc_get_iteration_count (loop.from[n], loop.to[n],
2131 : : gfc_index_one_node);
2132 : 503 : size = fold_build2_loc (input_location, MULT_EXPR,
2133 : : gfc_array_index_type, size, tmp);
2134 : : }
2135 : :
2136 : : /* Grow the constructed array by SIZE elements. */
2137 : 491 : gfc_grow_array (&loop.pre, desc, size);
2138 : : }
2139 : :
2140 : : /* Make the loop body. */
2141 : 1928 : gfc_mark_ss_chain_used (ss, 1);
2142 : 1928 : gfc_start_scalarized_body (&loop, &body);
2143 : 1928 : gfc_copy_loopinfo_to_se (&se, &loop);
2144 : 1928 : se.ss = ss;
2145 : :
2146 : 1928 : gfc_trans_array_ctor_element (&body, desc, *poffset, &se, expr);
2147 : 1928 : gcc_assert (se.ss == gfc_ss_terminator);
2148 : :
2149 : : /* Increment the offset. */
2150 : 1928 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
2151 : : *poffset, gfc_index_one_node);
2152 : 1928 : gfc_add_modify (&body, *poffset, tmp);
2153 : :
2154 : : /* Finish the loop. */
2155 : 1928 : gfc_trans_scalarizing_loops (&loop, &body);
2156 : 1928 : gfc_add_block_to_block (&loop.pre, &loop.post);
2157 : 1928 : tmp = gfc_finish_block (&loop.pre);
2158 : 1928 : gfc_add_expr_to_block (pblock, tmp);
2159 : :
2160 : 1928 : gfc_cleanup_loop (&loop);
2161 : 1928 : }
2162 : :
2163 : :
2164 : : /* Assign the values to the elements of an array constructor. DYNAMIC
2165 : : is true if descriptor DESC only contains enough data for the static
2166 : : size calculated by gfc_get_array_constructor_size. When true, memory
2167 : : for the dynamic parts must be allocated using realloc. */
2168 : :
2169 : : static void
2170 : 8249 : gfc_trans_array_constructor_value (stmtblock_t * pblock,
2171 : : stmtblock_t * finalblock,
2172 : : tree type, tree desc,
2173 : : gfc_constructor_base base, tree * poffset,
2174 : : tree * offsetvar, bool dynamic)
2175 : : {
2176 : 8249 : tree tmp;
2177 : 8249 : tree start = NULL_TREE;
2178 : 8249 : tree end = NULL_TREE;
2179 : 8249 : tree step = NULL_TREE;
2180 : 8249 : stmtblock_t body;
2181 : 8249 : gfc_se se;
2182 : 8249 : mpz_t size;
2183 : 8249 : gfc_constructor *c;
2184 : 8249 : gfc_typespec ts;
2185 : 8249 : int ctr = 0;
2186 : :
2187 : 8249 : tree shadow_loopvar = NULL_TREE;
2188 : 8249 : gfc_saved_var saved_loopvar;
2189 : :
2190 : 8249 : ts.type = BT_UNKNOWN;
2191 : 8249 : mpz_init (size);
2192 : 21819 : for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
2193 : : {
2194 : 13570 : ctr++;
2195 : : /* If this is an iterator or an array, the offset must be a variable. */
2196 : 13570 : if ((c->iterator || c->expr->rank > 0) && INTEGER_CST_P (*poffset))
2197 : 2774 : gfc_put_offset_into_var (pblock, poffset, offsetvar);
2198 : :
2199 : : /* Shadowing the iterator avoids changing its value and saves us from
2200 : : keeping track of it. Further, it makes sure that there's always a
2201 : : backend-decl for the symbol, even if there wasn't one before,
2202 : : e.g. in the case of an iterator that appears in a specification
2203 : : expression in an interface mapping. */
2204 : 13570 : if (c->iterator)
2205 : : {
2206 : 1282 : gfc_symbol *sym;
2207 : 1282 : tree type;
2208 : :
2209 : : /* Evaluate loop bounds before substituting the loop variable
2210 : : in case they depend on it. Such a case is invalid, but it is
2211 : : not more expensive to do the right thing here.
2212 : : See PR 44354. */
2213 : 1282 : gfc_init_se (&se, NULL);
2214 : 1282 : gfc_conv_expr_val (&se, c->iterator->start);
2215 : 1282 : gfc_add_block_to_block (pblock, &se.pre);
2216 : 1282 : start = gfc_evaluate_now (se.expr, pblock);
2217 : :
2218 : 1282 : gfc_init_se (&se, NULL);
2219 : 1282 : gfc_conv_expr_val (&se, c->iterator->end);
2220 : 1282 : gfc_add_block_to_block (pblock, &se.pre);
2221 : 1282 : end = gfc_evaluate_now (se.expr, pblock);
2222 : :
2223 : 1282 : gfc_init_se (&se, NULL);
2224 : 1282 : gfc_conv_expr_val (&se, c->iterator->step);
2225 : 1282 : gfc_add_block_to_block (pblock, &se.pre);
2226 : 1282 : step = gfc_evaluate_now (se.expr, pblock);
2227 : :
2228 : 1282 : sym = c->iterator->var->symtree->n.sym;
2229 : 1282 : type = gfc_typenode_for_spec (&sym->ts);
2230 : :
2231 : 1282 : shadow_loopvar = gfc_create_var (type, "shadow_loopvar");
2232 : 1282 : gfc_shadow_sym (sym, shadow_loopvar, &saved_loopvar);
2233 : : }
2234 : :
2235 : 13570 : gfc_start_block (&body);
2236 : :
2237 : 13570 : if (c->expr->expr_type == EXPR_ARRAY)
2238 : : {
2239 : : /* Array constructors can be nested. */
2240 : 1292 : gfc_trans_array_constructor_value (&body, finalblock, type,
2241 : : desc, c->expr->value.constructor,
2242 : : poffset, offsetvar, dynamic);
2243 : : }
2244 : 12278 : else if (c->expr->rank > 0)
2245 : : {
2246 : 1928 : gfc_trans_array_constructor_subarray (&body, type, desc, c->expr,
2247 : : poffset, offsetvar, dynamic);
2248 : : }
2249 : : else
2250 : : {
2251 : : /* This code really upsets the gimplifier so don't bother for now. */
2252 : : gfc_constructor *p;
2253 : : HOST_WIDE_INT n;
2254 : : HOST_WIDE_INT size;
2255 : :
2256 : : p = c;
2257 : : n = 0;
2258 : 12137 : while (p && !(p->iterator || p->expr->expr_type != EXPR_CONSTANT))
2259 : : {
2260 : 1787 : p = gfc_constructor_next (p);
2261 : 1787 : n++;
2262 : : }
2263 : : /* Constructor with few constant elements, or element size not
2264 : : known at compile time (e.g. deferred-length character). */
2265 : 10350 : if (n < 4 || !INTEGER_CST_P (TYPE_SIZE_UNIT (type)))
2266 : : {
2267 : : /* Scalar values. */
2268 : 10245 : gfc_init_se (&se, NULL);
2269 : 10245 : gfc_trans_array_ctor_element (&body, desc, *poffset,
2270 : : &se, c->expr);
2271 : :
2272 : 10245 : *poffset = fold_build2_loc (input_location, PLUS_EXPR,
2273 : : gfc_array_index_type,
2274 : : *poffset, gfc_index_one_node);
2275 : 10245 : if (finalblock)
2276 : 899 : gfc_add_block_to_block (finalblock, &se.finalblock);
2277 : : }
2278 : : else
2279 : : {
2280 : : /* Collect multiple scalar constants into a constructor. */
2281 : 105 : vec<constructor_elt, va_gc> *v = NULL;
2282 : 105 : tree init;
2283 : 105 : tree bound;
2284 : 105 : tree tmptype;
2285 : 105 : HOST_WIDE_INT idx = 0;
2286 : :
2287 : 105 : p = c;
2288 : : /* Count the number of consecutive scalar constants. */
2289 : 837 : while (p && !(p->iterator
2290 : 745 : || p->expr->expr_type != EXPR_CONSTANT))
2291 : : {
2292 : 732 : gfc_init_se (&se, NULL);
2293 : 732 : gfc_conv_constant (&se, p->expr);
2294 : :
2295 : 732 : if (c->expr->ts.type != BT_CHARACTER)
2296 : 660 : se.expr = fold_convert (type, se.expr);
2297 : : /* For constant character array constructors we build
2298 : : an array of pointers. */
2299 : 72 : else if (POINTER_TYPE_P (type))
2300 : 0 : se.expr = gfc_build_addr_expr
2301 : 0 : (gfc_get_pchar_type (p->expr->ts.kind),
2302 : : se.expr);
2303 : :
2304 : 732 : CONSTRUCTOR_APPEND_ELT (v,
2305 : : build_int_cst (gfc_array_index_type,
2306 : : idx++),
2307 : : se.expr);
2308 : 732 : c = p;
2309 : 732 : p = gfc_constructor_next (p);
2310 : : }
2311 : :
2312 : 105 : bound = size_int (n - 1);
2313 : : /* Create an array type to hold them. */
2314 : 105 : tmptype = build_range_type (gfc_array_index_type,
2315 : : gfc_index_zero_node, bound);
2316 : 105 : tmptype = build_array_type (type, tmptype);
2317 : :
2318 : 105 : init = build_constructor (tmptype, v);
2319 : 105 : TREE_CONSTANT (init) = 1;
2320 : 105 : TREE_STATIC (init) = 1;
2321 : : /* Create a static variable to hold the data. */
2322 : 105 : tmp = gfc_create_var (tmptype, "data");
2323 : 105 : TREE_STATIC (tmp) = 1;
2324 : 105 : TREE_CONSTANT (tmp) = 1;
2325 : 105 : TREE_READONLY (tmp) = 1;
2326 : 105 : DECL_INITIAL (tmp) = init;
2327 : 105 : init = tmp;
2328 : :
2329 : : /* Use BUILTIN_MEMCPY to assign the values. */
2330 : 105 : tmp = gfc_conv_descriptor_data_get (desc);
2331 : 105 : tmp = build_fold_indirect_ref_loc (input_location,
2332 : : tmp);
2333 : 105 : tmp = gfc_build_array_ref (tmp, *poffset, NULL);
2334 : 105 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
2335 : 105 : init = gfc_build_addr_expr (NULL_TREE, init);
2336 : :
2337 : 105 : size = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (type));
2338 : 105 : bound = build_int_cst (size_type_node, n * size);
2339 : 105 : tmp = build_call_expr_loc (input_location,
2340 : : builtin_decl_explicit (BUILT_IN_MEMCPY),
2341 : : 3, tmp, init, bound);
2342 : 105 : gfc_add_expr_to_block (&body, tmp);
2343 : :
2344 : 105 : *poffset = fold_build2_loc (input_location, PLUS_EXPR,
2345 : : gfc_array_index_type, *poffset,
2346 : 105 : build_int_cst (gfc_array_index_type, n));
2347 : : }
2348 : 10350 : if (!INTEGER_CST_P (*poffset))
2349 : : {
2350 : 1591 : gfc_add_modify (&body, *offsetvar, *poffset);
2351 : 1591 : *poffset = *offsetvar;
2352 : : }
2353 : :
2354 : 10350 : if (!c->iterator)
2355 : 10350 : ts = c->expr->ts;
2356 : : }
2357 : :
2358 : : /* The frontend should already have done any expansions
2359 : : at compile-time. */
2360 : 13570 : if (!c->iterator)
2361 : : {
2362 : : /* Pass the code as is. */
2363 : 12288 : tmp = gfc_finish_block (&body);
2364 : 12288 : gfc_add_expr_to_block (pblock, tmp);
2365 : : }
2366 : : else
2367 : : {
2368 : : /* Build the implied do-loop. */
2369 : 1282 : stmtblock_t implied_do_block;
2370 : 1282 : tree cond;
2371 : 1282 : tree exit_label;
2372 : 1282 : tree loopbody;
2373 : 1282 : tree tmp2;
2374 : :
2375 : 1282 : loopbody = gfc_finish_block (&body);
2376 : :
2377 : : /* Create a new block that holds the implied-do loop. A temporary
2378 : : loop-variable is used. */
2379 : 1282 : gfc_start_block(&implied_do_block);
2380 : :
2381 : : /* Initialize the loop. */
2382 : 1282 : gfc_add_modify (&implied_do_block, shadow_loopvar, start);
2383 : :
2384 : : /* If this array expands dynamically, and the number of iterations
2385 : : is not constant, we won't have allocated space for the static
2386 : : part of C->EXPR's size. Do that now. */
2387 : 1282 : if (dynamic && gfc_iterator_has_dynamic_bounds (c->iterator))
2388 : : {
2389 : : /* Get the number of iterations. */
2390 : 493 : tmp = gfc_get_iteration_count (shadow_loopvar, end, step);
2391 : :
2392 : : /* Get the static part of C->EXPR's size. */
2393 : 493 : gfc_get_array_constructor_element_size (&size, c->expr);
2394 : 493 : tmp2 = gfc_conv_mpz_to_tree (size, gfc_index_integer_kind);
2395 : :
2396 : : /* Grow the array by TMP * TMP2 elements. */
2397 : 493 : tmp = fold_build2_loc (input_location, MULT_EXPR,
2398 : : gfc_array_index_type, tmp, tmp2);
2399 : 493 : gfc_grow_array (&implied_do_block, desc, tmp);
2400 : : }
2401 : :
2402 : : /* Generate the loop body. */
2403 : 1282 : exit_label = gfc_build_label_decl (NULL_TREE);
2404 : 1282 : gfc_start_block (&body);
2405 : :
2406 : : /* Generate the exit condition. Depending on the sign of
2407 : : the step variable we have to generate the correct
2408 : : comparison. */
2409 : 1282 : tmp = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
2410 : 1282 : step, build_int_cst (TREE_TYPE (step), 0));
2411 : 1282 : cond = fold_build3_loc (input_location, COND_EXPR,
2412 : : logical_type_node, tmp,
2413 : : fold_build2_loc (input_location, GT_EXPR,
2414 : : logical_type_node, shadow_loopvar, end),
2415 : : fold_build2_loc (input_location, LT_EXPR,
2416 : : logical_type_node, shadow_loopvar, end));
2417 : 1282 : tmp = build1_v (GOTO_EXPR, exit_label);
2418 : 1282 : TREE_USED (exit_label) = 1;
2419 : 1282 : tmp = build3_v (COND_EXPR, cond, tmp,
2420 : : build_empty_stmt (input_location));
2421 : 1282 : gfc_add_expr_to_block (&body, tmp);
2422 : :
2423 : : /* The main loop body. */
2424 : 1282 : gfc_add_expr_to_block (&body, loopbody);
2425 : :
2426 : : /* Increase loop variable by step. */
2427 : 1282 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
2428 : 1282 : TREE_TYPE (shadow_loopvar), shadow_loopvar,
2429 : : step);
2430 : 1282 : gfc_add_modify (&body, shadow_loopvar, tmp);
2431 : :
2432 : : /* Finish the loop. */
2433 : 1282 : tmp = gfc_finish_block (&body);
2434 : 1282 : tmp = build1_v (LOOP_EXPR, tmp);
2435 : 1282 : gfc_add_expr_to_block (&implied_do_block, tmp);
2436 : :
2437 : : /* Add the exit label. */
2438 : 1282 : tmp = build1_v (LABEL_EXPR, exit_label);
2439 : 1282 : gfc_add_expr_to_block (&implied_do_block, tmp);
2440 : :
2441 : : /* Finish the implied-do loop. */
2442 : 1282 : tmp = gfc_finish_block(&implied_do_block);
2443 : 1282 : gfc_add_expr_to_block(pblock, tmp);
2444 : :
2445 : 1282 : gfc_restore_sym (c->iterator->var->symtree->n.sym, &saved_loopvar);
2446 : : }
2447 : : }
2448 : :
2449 : : /* F2008 4.5.6.3 para 5: If an executable construct references a structure
2450 : : constructor or array constructor, the entity created by the constructor is
2451 : : finalized after execution of the innermost executable construct containing
2452 : : the reference. This, in fact, was later deleted by the Combined Techical
2453 : : Corrigenda 1 TO 4 for fortran 2008 (f08/0011).
2454 : :
2455 : : Transmit finalization of this constructor through 'finalblock'. */
2456 : 8249 : if ((gfc_option.allow_std & (GFC_STD_F2008 | GFC_STD_F2003))
2457 : 8249 : && !(gfc_option.allow_std & GFC_STD_GNU)
2458 : 70 : && finalblock != NULL
2459 : 24 : && gfc_may_be_finalized (ts)
2460 : 18 : && ctr > 0 && desc != NULL_TREE
2461 : 8267 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
2462 : : {
2463 : 18 : symbol_attribute attr;
2464 : 18 : gfc_se fse;
2465 : 18 : locus loc;
2466 : 18 : gfc_locus_from_location (&loc, input_location);
2467 : 18 : gfc_warning (0, "The structure constructor at %L has been"
2468 : : " finalized. This feature was removed by f08/0011."
2469 : : " Use -std=f2018 or -std=gnu to eliminate the"
2470 : : " finalization.", &loc);
2471 : 18 : attr.pointer = attr.allocatable = 0;
2472 : 18 : gfc_init_se (&fse, NULL);
2473 : 18 : fse.expr = desc;
2474 : 18 : gfc_finalize_tree_expr (&fse, ts.u.derived, attr, 1);
2475 : 18 : gfc_add_block_to_block (finalblock, &fse.pre);
2476 : 18 : gfc_add_block_to_block (finalblock, &fse.finalblock);
2477 : 18 : gfc_add_block_to_block (finalblock, &fse.post);
2478 : : }
2479 : :
2480 : 8249 : mpz_clear (size);
2481 : 8249 : }
2482 : :
2483 : :
2484 : : /* The array constructor code can create a string length with an operand
2485 : : in the form of a temporary variable. This variable will retain its
2486 : : context (current_function_decl). If we store this length tree in a
2487 : : gfc_charlen structure which is shared by a variable in another
2488 : : context, the resulting gfc_charlen structure with a variable in a
2489 : : different context, we could trip the assertion in expand_expr_real_1
2490 : : when it sees that a variable has been created in one context and
2491 : : referenced in another.
2492 : :
2493 : : If this might be the case, we create a new gfc_charlen structure and
2494 : : link it into the current namespace. */
2495 : :
2496 : : static void
2497 : 8035 : store_backend_decl (gfc_charlen **clp, tree len, bool force_new_cl)
2498 : : {
2499 : 8035 : if (force_new_cl)
2500 : : {
2501 : 8008 : gfc_charlen *new_cl = gfc_new_charlen (gfc_current_ns, *clp);
2502 : 8008 : *clp = new_cl;
2503 : : }
2504 : 8035 : (*clp)->backend_decl = len;
2505 : 8035 : }
2506 : :
2507 : : /* A catch-all to obtain the string length for anything that is not
2508 : : a substring of non-constant length, a constant, array or variable. */
2509 : :
2510 : : static void
2511 : 305 : get_array_ctor_all_strlen (stmtblock_t *block, gfc_expr *e, tree *len)
2512 : : {
2513 : 305 : gfc_se se;
2514 : :
2515 : : /* Don't bother if we already know the length is a constant. */
2516 : 305 : if (*len && INTEGER_CST_P (*len))
2517 : 40 : return;
2518 : :
2519 : 265 : if (!e->ref && e->ts.u.cl && e->ts.u.cl->length
2520 : 29 : && e->ts.u.cl->length->expr_type == EXPR_CONSTANT)
2521 : : {
2522 : : /* This is easy. */
2523 : 1 : gfc_conv_const_charlen (e->ts.u.cl);
2524 : 1 : *len = e->ts.u.cl->backend_decl;
2525 : : }
2526 : : else
2527 : : {
2528 : : /* Otherwise, be brutal even if inefficient. */
2529 : 264 : gfc_init_se (&se, NULL);
2530 : :
2531 : : /* No function call, in case of side effects. */
2532 : 264 : se.no_function_call = 1;
2533 : 264 : if (e->rank == 0)
2534 : 122 : gfc_conv_expr (&se, e);
2535 : : else
2536 : 142 : gfc_conv_expr_descriptor (&se, e);
2537 : :
2538 : : /* Fix the value. */
2539 : 264 : *len = gfc_evaluate_now (se.string_length, &se.pre);
2540 : :
2541 : 264 : gfc_add_block_to_block (block, &se.pre);
2542 : 264 : gfc_add_block_to_block (block, &se.post);
2543 : :
2544 : 264 : store_backend_decl (&e->ts.u.cl, *len, true);
2545 : : }
2546 : : }
2547 : :
2548 : :
2549 : : /* Figure out the string length of a variable reference expression.
2550 : : Used by get_array_ctor_strlen. */
2551 : :
2552 : : static void
2553 : 900 : get_array_ctor_var_strlen (stmtblock_t *block, gfc_expr * expr, tree * len)
2554 : : {
2555 : 900 : gfc_ref *ref;
2556 : 900 : gfc_typespec *ts;
2557 : 900 : mpz_t char_len;
2558 : 900 : gfc_se se;
2559 : :
2560 : : /* Don't bother if we already know the length is a constant. */
2561 : 900 : if (*len && INTEGER_CST_P (*len))
2562 : 527 : return;
2563 : :
2564 : 453 : ts = &expr->symtree->n.sym->ts;
2565 : 727 : for (ref = expr->ref; ref; ref = ref->next)
2566 : : {
2567 : 354 : switch (ref->type)
2568 : : {
2569 : 231 : case REF_ARRAY:
2570 : : /* Array references don't change the string length. */
2571 : 231 : if (ts->deferred)
2572 : 135 : get_array_ctor_all_strlen (block, expr, len);
2573 : : break;
2574 : :
2575 : 43 : case REF_COMPONENT:
2576 : : /* Use the length of the component. */
2577 : 43 : ts = &ref->u.c.component->ts;
2578 : 43 : break;
2579 : :
2580 : 80 : case REF_SUBSTRING:
2581 : 80 : if (ref->u.ss.end == NULL
2582 : 68 : || ref->u.ss.start->expr_type != EXPR_CONSTANT
2583 : 61 : || ref->u.ss.end->expr_type != EXPR_CONSTANT)
2584 : : {
2585 : : /* Note that this might evaluate expr. */
2586 : 52 : get_array_ctor_all_strlen (block, expr, len);
2587 : 52 : return;
2588 : : }
2589 : 28 : mpz_init_set_ui (char_len, 1);
2590 : 28 : mpz_add (char_len, char_len, ref->u.ss.end->value.integer);
2591 : 28 : mpz_sub (char_len, char_len, ref->u.ss.start->value.integer);
2592 : 28 : *len = gfc_conv_mpz_to_tree_type (char_len, gfc_charlen_type_node);
2593 : 28 : mpz_clear (char_len);
2594 : 28 : return;
2595 : :
2596 : : case REF_INQUIRY:
2597 : : break;
2598 : :
2599 : 0 : default:
2600 : 0 : gcc_unreachable ();
2601 : : }
2602 : : }
2603 : :
2604 : : /* A last ditch attempt that is sometimes needed for deferred characters. */
2605 : 373 : if (!ts->u.cl->backend_decl)
2606 : : {
2607 : 19 : gfc_init_se (&se, NULL);
2608 : 19 : if (expr->rank)
2609 : 12 : gfc_conv_expr_descriptor (&se, expr);
2610 : : else
2611 : 7 : gfc_conv_expr (&se, expr);
2612 : 19 : gcc_assert (se.string_length != NULL_TREE);
2613 : 19 : gfc_add_block_to_block (block, &se.pre);
2614 : 19 : ts->u.cl->backend_decl = se.string_length;
2615 : : }
2616 : :
2617 : 373 : *len = ts->u.cl->backend_decl;
2618 : : }
2619 : :
2620 : :
2621 : : /* Figure out the string length of a character array constructor.
2622 : : If len is NULL, don't calculate the length; this happens for recursive calls
2623 : : when a sub-array-constructor is an element but not at the first position,
2624 : : so when we're not interested in the length.
2625 : : Returns TRUE if all elements are character constants. */
2626 : :
2627 : : bool
2628 : 8444 : get_array_ctor_strlen (stmtblock_t *block, gfc_constructor_base base, tree * len)
2629 : : {
2630 : 8444 : gfc_constructor *c;
2631 : 8444 : bool is_const;
2632 : :
2633 : 8444 : is_const = true;
2634 : :
2635 : 8444 : if (gfc_constructor_first (base) == NULL)
2636 : : {
2637 : 303 : if (len)
2638 : 303 : *len = build_int_cstu (gfc_charlen_type_node, 0);
2639 : 303 : return is_const;
2640 : : }
2641 : :
2642 : : /* Loop over all constructor elements to find out is_const, but in len we
2643 : : want to store the length of the first, not the last, element. We can
2644 : : of course exit the loop as soon as is_const is found to be false. */
2645 : 8141 : for (c = gfc_constructor_first (base);
2646 : 45079 : c && is_const; c = gfc_constructor_next (c))
2647 : : {
2648 : 36938 : switch (c->expr->expr_type)
2649 : : {
2650 : 35829 : case EXPR_CONSTANT:
2651 : 35829 : if (len && !(*len && INTEGER_CST_P (*len)))
2652 : 394 : *len = build_int_cstu (gfc_charlen_type_node,
2653 : 394 : c->expr->value.character.length);
2654 : : break;
2655 : :
2656 : 31 : case EXPR_ARRAY:
2657 : 31 : if (!get_array_ctor_strlen (block, c->expr->value.constructor, len))
2658 : 1097 : is_const = false;
2659 : : break;
2660 : :
2661 : 960 : case EXPR_VARIABLE:
2662 : 960 : is_const = false;
2663 : 960 : if (len)
2664 : 900 : get_array_ctor_var_strlen (block, c->expr, len);
2665 : : break;
2666 : :
2667 : 118 : default:
2668 : 118 : is_const = false;
2669 : 118 : if (len)
2670 : 118 : get_array_ctor_all_strlen (block, c->expr, len);
2671 : : break;
2672 : : }
2673 : :
2674 : : /* After the first iteration, we don't want the length modified. */
2675 : 36938 : len = NULL;
2676 : : }
2677 : :
2678 : : return is_const;
2679 : : }
2680 : :
2681 : : /* Check whether the array constructor C consists entirely of constant
2682 : : elements, and if so returns the number of those elements, otherwise
2683 : : return zero. Note, an empty or NULL array constructor returns zero. */
2684 : :
2685 : : unsigned HOST_WIDE_INT
2686 : 55711 : gfc_constant_array_constructor_p (gfc_constructor_base base)
2687 : : {
2688 : 55711 : unsigned HOST_WIDE_INT nelem = 0;
2689 : :
2690 : 55711 : gfc_constructor *c = gfc_constructor_first (base);
2691 : 450454 : while (c)
2692 : : {
2693 : 346959 : if (c->iterator
2694 : 345592 : || c->expr->rank > 0
2695 : 343191 : || c->expr->expr_type != EXPR_CONSTANT)
2696 : : return 0;
2697 : 339032 : c = gfc_constructor_next (c);
2698 : 339032 : nelem++;
2699 : : }
2700 : : return nelem;
2701 : : }
2702 : :
2703 : :
2704 : : /* Given EXPR, the constant array constructor specified by an EXPR_ARRAY,
2705 : : and the tree type of it's elements, TYPE, return a static constant
2706 : : variable that is compile-time initialized. */
2707 : :
2708 : : tree
2709 : 38149 : gfc_build_constant_array_constructor (gfc_expr * expr, tree type)
2710 : : {
2711 : 38149 : tree tmptype, init, tmp;
2712 : 38149 : HOST_WIDE_INT nelem;
2713 : 38149 : gfc_constructor *c;
2714 : 38149 : gfc_array_spec as;
2715 : 38149 : gfc_se se;
2716 : 38149 : int i;
2717 : 38149 : vec<constructor_elt, va_gc> *v = NULL;
2718 : :
2719 : : /* First traverse the constructor list, converting the constants
2720 : : to tree to build an initializer. */
2721 : 38149 : nelem = 0;
2722 : 38149 : c = gfc_constructor_first (expr->value.constructor);
2723 : 351018 : while (c)
2724 : : {
2725 : 274720 : gfc_init_se (&se, NULL);
2726 : 274720 : gfc_conv_constant (&se, c->expr);
2727 : 274720 : if (c->expr->ts.type != BT_CHARACTER)
2728 : 239761 : se.expr = fold_convert (type, se.expr);
2729 : 34959 : else if (POINTER_TYPE_P (type))
2730 : 34959 : se.expr = gfc_build_addr_expr (gfc_get_pchar_type (c->expr->ts.kind),
2731 : : se.expr);
2732 : 274720 : CONSTRUCTOR_APPEND_ELT (v, build_int_cst (gfc_array_index_type, nelem),
2733 : : se.expr);
2734 : 274720 : c = gfc_constructor_next (c);
2735 : 274720 : nelem++;
2736 : : }
2737 : :
2738 : : /* Next determine the tree type for the array. We use the gfortran
2739 : : front-end's gfc_get_nodesc_array_type in order to create a suitable
2740 : : GFC_ARRAY_TYPE_P that may be used by the scalarizer. */
2741 : :
2742 : 38149 : memset (&as, 0, sizeof (gfc_array_spec));
2743 : :
2744 : 38149 : as.rank = expr->rank;
2745 : 38149 : as.type = AS_EXPLICIT;
2746 : 38149 : if (!expr->shape)
2747 : : {
2748 : 3 : as.lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 0);
2749 : 3 : as.upper[0] = gfc_get_int_expr (gfc_default_integer_kind,
2750 : : NULL, nelem - 1);
2751 : : }
2752 : : else
2753 : 81706 : for (i = 0; i < expr->rank; i++)
2754 : : {
2755 : 43560 : int tmp = (int) mpz_get_si (expr->shape[i]);
2756 : 43560 : as.lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 0);
2757 : 43560 : as.upper[i] = gfc_get_int_expr (gfc_default_integer_kind,
2758 : 43560 : NULL, tmp - 1);
2759 : : }
2760 : :
2761 : 38149 : tmptype = gfc_get_nodesc_array_type (type, &as, PACKED_STATIC, true);
2762 : :
2763 : : /* as is not needed anymore. */
2764 : 119861 : for (i = 0; i < as.rank + as.corank; i++)
2765 : : {
2766 : 43563 : gfc_free_expr (as.lower[i]);
2767 : 43563 : gfc_free_expr (as.upper[i]);
2768 : : }
2769 : :
2770 : 38149 : init = build_constructor (tmptype, v);
2771 : :
2772 : 38149 : TREE_CONSTANT (init) = 1;
2773 : 38149 : TREE_STATIC (init) = 1;
2774 : :
2775 : 38149 : tmp = build_decl (input_location, VAR_DECL, create_tmp_var_name ("A"),
2776 : : tmptype);
2777 : 38149 : DECL_ARTIFICIAL (tmp) = 1;
2778 : 38149 : DECL_IGNORED_P (tmp) = 1;
2779 : 38149 : TREE_STATIC (tmp) = 1;
2780 : 38149 : TREE_CONSTANT (tmp) = 1;
2781 : 38149 : TREE_READONLY (tmp) = 1;
2782 : 38149 : DECL_INITIAL (tmp) = init;
2783 : 38149 : pushdecl (tmp);
2784 : :
2785 : 38149 : return tmp;
2786 : : }
2787 : :
2788 : :
2789 : : /* Translate a constant EXPR_ARRAY array constructor for the scalarizer.
2790 : : This mostly initializes the scalarizer state info structure with the
2791 : : appropriate values to directly use the array created by the function
2792 : : gfc_build_constant_array_constructor. */
2793 : :
2794 : : static void
2795 : 33100 : trans_constant_array_constructor (gfc_ss * ss, tree type)
2796 : : {
2797 : 33100 : gfc_array_info *info;
2798 : 33100 : tree tmp;
2799 : 33100 : int i;
2800 : :
2801 : 33100 : tmp = gfc_build_constant_array_constructor (ss->info->expr, type);
2802 : :
2803 : 33100 : info = &ss->info->data.array;
2804 : :
2805 : 33100 : info->descriptor = tmp;
2806 : 33100 : info->data = gfc_build_addr_expr (NULL_TREE, tmp);
2807 : 33100 : info->offset = gfc_index_zero_node;
2808 : :
2809 : 69366 : for (i = 0; i < ss->dimen; i++)
2810 : : {
2811 : 36266 : info->delta[i] = gfc_index_zero_node;
2812 : 36266 : info->start[i] = gfc_index_zero_node;
2813 : 36266 : info->end[i] = gfc_index_zero_node;
2814 : 36266 : info->stride[i] = gfc_index_one_node;
2815 : : }
2816 : 33100 : }
2817 : :
2818 : :
2819 : : static int
2820 : 33106 : get_rank (gfc_loopinfo *loop)
2821 : : {
2822 : 33106 : int rank;
2823 : :
2824 : 33106 : rank = 0;
2825 : 143824 : for (; loop; loop = loop->parent)
2826 : 71918 : rank += loop->dimen;
2827 : :
2828 : 38800 : return rank;
2829 : : }
2830 : :
2831 : :
2832 : : /* Helper routine of gfc_trans_array_constructor to determine if the
2833 : : bounds of the loop specified by LOOP are constant and simple enough
2834 : : to use with trans_constant_array_constructor. Returns the
2835 : : iteration count of the loop if suitable, and NULL_TREE otherwise. */
2836 : :
2837 : : static tree
2838 : 33106 : constant_array_constructor_loop_size (gfc_loopinfo * l)
2839 : : {
2840 : 33106 : gfc_loopinfo *loop;
2841 : 33106 : tree size = gfc_index_one_node;
2842 : 33106 : tree tmp;
2843 : 33106 : int i, total_dim;
2844 : :
2845 : 33106 : total_dim = get_rank (l);
2846 : :
2847 : 66212 : for (loop = l; loop; loop = loop->parent)
2848 : : {
2849 : 69390 : for (i = 0; i < loop->dimen; i++)
2850 : : {
2851 : : /* If the bounds aren't constant, return NULL_TREE. */
2852 : 36284 : if (!INTEGER_CST_P (loop->from[i]) || !INTEGER_CST_P (loop->to[i]))
2853 : : return NULL_TREE;
2854 : 36278 : if (!integer_zerop (loop->from[i]))
2855 : : {
2856 : : /* Only allow nonzero "from" in one-dimensional arrays. */
2857 : 0 : if (total_dim != 1)
2858 : : return NULL_TREE;
2859 : 0 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
2860 : : gfc_array_index_type,
2861 : : loop->to[i], loop->from[i]);
2862 : : }
2863 : : else
2864 : 36278 : tmp = loop->to[i];
2865 : 36278 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
2866 : : gfc_array_index_type, tmp, gfc_index_one_node);
2867 : 36278 : size = fold_build2_loc (input_location, MULT_EXPR,
2868 : : gfc_array_index_type, size, tmp);
2869 : : }
2870 : : }
2871 : :
2872 : : return size;
2873 : : }
2874 : :
2875 : :
2876 : : static tree *
2877 : 40057 : get_loop_upper_bound_for_array (gfc_ss *array, int array_dim)
2878 : : {
2879 : 40057 : gfc_ss *ss;
2880 : 40057 : int n;
2881 : :
2882 : 40057 : gcc_assert (array->nested_ss == NULL);
2883 : :
2884 : 40057 : for (ss = array; ss; ss = ss->parent)
2885 : 40057 : for (n = 0; n < ss->loop->dimen; n++)
2886 : 40057 : if (array_dim == get_array_ref_dim_for_loop_dim (ss, n))
2887 : 40057 : return &(ss->loop->to[n]);
2888 : :
2889 : 0 : gcc_unreachable ();
2890 : : }
2891 : :
2892 : :
2893 : : static gfc_loopinfo *
2894 : 649573 : outermost_loop (gfc_loopinfo * loop)
2895 : : {
2896 : 838008 : while (loop->parent != NULL)
2897 : : loop = loop->parent;
2898 : :
2899 : 649573 : return loop;
2900 : : }
2901 : :
2902 : :
2903 : : /* Array constructors are handled by constructing a temporary, then using that
2904 : : within the scalarization loop. This is not optimal, but seems by far the
2905 : : simplest method. */
2906 : :
2907 : : static void
2908 : 40057 : trans_array_constructor (gfc_ss * ss, locus * where)
2909 : : {
2910 : 40057 : gfc_constructor_base c;
2911 : 40057 : tree offset;
2912 : 40057 : tree offsetvar;
2913 : 40057 : tree desc;
2914 : 40057 : tree type;
2915 : 40057 : tree tmp;
2916 : 40057 : tree *loop_ubound0;
2917 : 40057 : bool dynamic;
2918 : 40057 : bool old_first_len, old_typespec_chararray_ctor;
2919 : 40057 : tree old_first_len_val;
2920 : 40057 : gfc_loopinfo *loop, *outer_loop;
2921 : 40057 : gfc_ss_info *ss_info;
2922 : 40057 : gfc_expr *expr;
2923 : 40057 : gfc_ss *s;
2924 : 40057 : tree neg_len;
2925 : 40057 : char *msg;
2926 : 40057 : stmtblock_t finalblock;
2927 : 40057 : bool finalize_required;
2928 : :
2929 : : /* Save the old values for nested checking. */
2930 : 40057 : old_first_len = first_len;
2931 : 40057 : old_first_len_val = first_len_val;
2932 : 40057 : old_typespec_chararray_ctor = typespec_chararray_ctor;
2933 : :
2934 : 40057 : loop = ss->loop;
2935 : 40057 : outer_loop = outermost_loop (loop);
2936 : 40057 : ss_info = ss->info;
2937 : 40057 : expr = ss_info->expr;
2938 : :
2939 : : /* Do bounds-checking here and in gfc_trans_array_ctor_element only if no
2940 : : typespec was given for the array constructor. */
2941 : 80114 : typespec_chararray_ctor = (expr->ts.type == BT_CHARACTER
2942 : 7771 : && expr->ts.u.cl
2943 : 47828 : && expr->ts.u.cl->length_from_typespec);
2944 : :
2945 : 40057 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2946 : 2488 : && expr->ts.type == BT_CHARACTER && !typespec_chararray_ctor)
2947 : : {
2948 : 1450 : first_len_val = gfc_create_var (gfc_charlen_type_node, "len");
2949 : 1450 : first_len = true;
2950 : : }
2951 : :
2952 : 40057 : gcc_assert (ss->dimen == ss->loop->dimen);
2953 : :
2954 : 40057 : c = expr->value.constructor;
2955 : 40057 : if (expr->ts.type == BT_CHARACTER)
2956 : : {
2957 : 7771 : bool const_string;
2958 : 7771 : bool force_new_cl = false;
2959 : :
2960 : : /* get_array_ctor_strlen walks the elements of the constructor, if a
2961 : : typespec was given, we already know the string length and want the one
2962 : : specified there. */
2963 : 7771 : if (typespec_chararray_ctor && expr->ts.u.cl->length
2964 : 342 : && expr->ts.u.cl->length->expr_type != EXPR_CONSTANT)
2965 : : {
2966 : 27 : gfc_se length_se;
2967 : :
2968 : 27 : const_string = false;
2969 : 27 : gfc_init_se (&length_se, NULL);
2970 : 27 : gfc_conv_expr_type (&length_se, expr->ts.u.cl->length,
2971 : : gfc_charlen_type_node);
2972 : 27 : ss_info->string_length = length_se.expr;
2973 : :
2974 : : /* Check if the character length is negative. If it is, then
2975 : : set LEN = 0. */
2976 : 27 : neg_len = fold_build2_loc (input_location, LT_EXPR,
2977 : : logical_type_node, ss_info->string_length,
2978 : 27 : build_zero_cst (TREE_TYPE
2979 : : (ss_info->string_length)));
2980 : : /* Print a warning if bounds checking is enabled. */
2981 : 27 : if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2982 : : {
2983 : 18 : msg = xasprintf ("Negative character length treated as LEN = 0");
2984 : 18 : gfc_trans_runtime_check (false, true, neg_len, &length_se.pre,
2985 : : where, msg);
2986 : 18 : free (msg);
2987 : : }
2988 : :
2989 : 27 : ss_info->string_length
2990 : 27 : = fold_build3_loc (input_location, COND_EXPR,
2991 : : gfc_charlen_type_node, neg_len,
2992 : : build_zero_cst
2993 : 27 : (TREE_TYPE (ss_info->string_length)),
2994 : : ss_info->string_length);
2995 : 27 : ss_info->string_length = gfc_evaluate_now (ss_info->string_length,
2996 : : &length_se.pre);
2997 : 27 : gfc_add_block_to_block (&outer_loop->pre, &length_se.pre);
2998 : 27 : gfc_add_block_to_block (&outer_loop->post, &length_se.post);
2999 : 27 : }
3000 : : else
3001 : : {
3002 : 7744 : const_string = get_array_ctor_strlen (&outer_loop->pre, c,
3003 : : &ss_info->string_length);
3004 : 7744 : force_new_cl = true;
3005 : :
3006 : : /* Initialize "len" with string length for bounds checking. */
3007 : 7744 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
3008 : 1468 : && !typespec_chararray_ctor
3009 : 1450 : && ss_info->string_length)
3010 : : {
3011 : 1450 : gfc_se length_se;
3012 : :
3013 : 1450 : gfc_init_se (&length_se, NULL);
3014 : 1450 : gfc_add_modify (&length_se.pre, first_len_val,
3015 : 1450 : fold_convert (TREE_TYPE (first_len_val),
3016 : : ss_info->string_length));
3017 : 1450 : ss_info->string_length = gfc_evaluate_now (ss_info->string_length,
3018 : : &length_se.pre);
3019 : 1450 : gfc_add_block_to_block (&outer_loop->pre, &length_se.pre);
3020 : 1450 : gfc_add_block_to_block (&outer_loop->post, &length_se.post);
3021 : : }
3022 : : }
3023 : :
3024 : : /* Complex character array constructors should have been taken care of
3025 : : and not end up here. */
3026 : 7771 : gcc_assert (ss_info->string_length);
3027 : :
3028 : 7771 : store_backend_decl (&expr->ts.u.cl, ss_info->string_length, force_new_cl);
3029 : :
3030 : 7771 : type = gfc_get_character_type_len (expr->ts.kind, ss_info->string_length);
3031 : 7771 : if (const_string)
3032 : 6859 : type = build_pointer_type (type);
3033 : : }
3034 : : else
3035 : 32311 : type = gfc_typenode_for_spec (expr->ts.type == BT_CLASS
3036 : 25 : ? &CLASS_DATA (expr)->ts : &expr->ts);
3037 : :
3038 : : /* See if the constructor determines the loop bounds. */
3039 : 40057 : dynamic = false;
3040 : :
3041 : 40057 : loop_ubound0 = get_loop_upper_bound_for_array (ss, 0);
3042 : :
3043 : 78857 : if (expr->shape && get_rank (loop) > 1 && *loop_ubound0 == NULL_TREE)
3044 : : {
3045 : : /* We have a multidimensional parameter. */
3046 : 0 : for (s = ss; s; s = s->parent)
3047 : : {
3048 : : int n;
3049 : 0 : for (n = 0; n < s->loop->dimen; n++)
3050 : : {
3051 : 0 : s->loop->from[n] = gfc_index_zero_node;
3052 : 0 : s->loop->to[n] = gfc_conv_mpz_to_tree (expr->shape[s->dim[n]],
3053 : : gfc_index_integer_kind);
3054 : 0 : s->loop->to[n] = fold_build2_loc (input_location, MINUS_EXPR,
3055 : : gfc_array_index_type,
3056 : 0 : s->loop->to[n],
3057 : : gfc_index_one_node);
3058 : : }
3059 : : }
3060 : : }
3061 : :
3062 : 40057 : if (*loop_ubound0 == NULL_TREE)
3063 : : {
3064 : 803 : mpz_t size;
3065 : :
3066 : : /* We should have a 1-dimensional, zero-based loop. */
3067 : 803 : gcc_assert (loop->parent == NULL && loop->nested == NULL);
3068 : 803 : gcc_assert (loop->dimen == 1);
3069 : 803 : gcc_assert (integer_zerop (loop->from[0]));
3070 : :
3071 : : /* Split the constructor size into a static part and a dynamic part.
3072 : : Allocate the static size up-front and record whether the dynamic
3073 : : size might be nonzero. */
3074 : 803 : mpz_init (size);
3075 : 803 : dynamic = gfc_get_array_constructor_size (&size, c);
3076 : 803 : mpz_sub_ui (size, size, 1);
3077 : 803 : loop->to[0] = gfc_conv_mpz_to_tree (size, gfc_index_integer_kind);
3078 : 803 : mpz_clear (size);
3079 : : }
3080 : :
3081 : : /* Special case constant array constructors. */
3082 : 803 : if (!dynamic)
3083 : : {
3084 : 39271 : unsigned HOST_WIDE_INT nelem = gfc_constant_array_constructor_p (c);
3085 : 39271 : if (nelem > 0)
3086 : : {
3087 : 33106 : tree size = constant_array_constructor_loop_size (loop);
3088 : 33106 : if (size && compare_tree_int (size, nelem) == 0)
3089 : : {
3090 : 33100 : trans_constant_array_constructor (ss, type);
3091 : 33100 : goto finish;
3092 : : }
3093 : : }
3094 : : }
3095 : :
3096 : 6957 : gfc_trans_create_temp_array (&outer_loop->pre, &outer_loop->post, ss, type,
3097 : : NULL_TREE, dynamic, true, false, where);
3098 : :
3099 : 6957 : desc = ss_info->data.array.descriptor;
3100 : 6957 : offset = gfc_index_zero_node;
3101 : 6957 : offsetvar = gfc_create_var_np (gfc_array_index_type, "offset");
3102 : 6957 : suppress_warning (offsetvar);
3103 : 6957 : TREE_USED (offsetvar) = 0;
3104 : :
3105 : 6957 : gfc_init_block (&finalblock);
3106 : 6957 : finalize_required = expr->must_finalize;
3107 : 6957 : if (expr->ts.type == BT_DERIVED && expr->ts.u.derived->attr.alloc_comp)
3108 : : finalize_required = true;
3109 : 6987 : gfc_trans_array_constructor_value (&outer_loop->pre,
3110 : : finalize_required ? &finalblock : NULL,
3111 : : type, desc, c, &offset, &offsetvar,
3112 : : dynamic);
3113 : :
3114 : : /* If the array grows dynamically, the upper bound of the loop variable
3115 : : is determined by the array's final upper bound. */
3116 : 6957 : if (dynamic)
3117 : : {
3118 : 786 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
3119 : : gfc_array_index_type,
3120 : : offsetvar, gfc_index_one_node);
3121 : 786 : tmp = gfc_evaluate_now (tmp, &outer_loop->pre);
3122 : 786 : gfc_conv_descriptor_ubound_set (&loop->pre, desc, gfc_rank_cst[0], tmp);
3123 : 786 : if (*loop_ubound0 && VAR_P (*loop_ubound0))
3124 : 0 : gfc_add_modify (&outer_loop->pre, *loop_ubound0, tmp);
3125 : : else
3126 : 786 : *loop_ubound0 = tmp;
3127 : : }
3128 : :
3129 : 6957 : if (TREE_USED (offsetvar))
3130 : 2774 : pushdecl (offsetvar);
3131 : : else
3132 : 4183 : gcc_assert (INTEGER_CST_P (offset));
3133 : :
3134 : : #if 0
3135 : : /* Disable bound checking for now because it's probably broken. */
3136 : : if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
3137 : : {
3138 : : gcc_unreachable ();
3139 : : }
3140 : : #endif
3141 : :
3142 : 4183 : finish:
3143 : : /* Restore old values of globals. */
3144 : 40057 : first_len = old_first_len;
3145 : 40057 : first_len_val = old_first_len_val;
3146 : 40057 : typespec_chararray_ctor = old_typespec_chararray_ctor;
3147 : :
3148 : : /* F2008 4.5.6.3 para 5: If an executable construct references a structure
3149 : : constructor or array constructor, the entity created by the constructor is
3150 : : finalized after execution of the innermost executable construct containing
3151 : : the reference. */
3152 : 40057 : if ((expr->ts.type == BT_DERIVED || expr->ts.type == BT_CLASS)
3153 : 1431 : && finalblock.head != NULL_TREE)
3154 : 23 : gfc_add_block_to_block (&loop->post, &finalblock);
3155 : :
3156 : 40057 : }
3157 : :
3158 : :
3159 : : /* INFO describes a GFC_SS_SECTION in loop LOOP, and this function is
3160 : : called after evaluating all of INFO's vector dimensions. Go through
3161 : : each such vector dimension and see if we can now fill in any missing
3162 : : loop bounds. */
3163 : :
3164 : : static void
3165 : 167478 : set_vector_loop_bounds (gfc_ss * ss)
3166 : : {
3167 : 167478 : gfc_loopinfo *loop, *outer_loop;
3168 : 167478 : gfc_array_info *info;
3169 : 167478 : gfc_se se;
3170 : 167478 : tree tmp;
3171 : 167478 : tree desc;
3172 : 167478 : tree zero;
3173 : 167478 : int n;
3174 : 167478 : int dim;
3175 : :
3176 : 167478 : outer_loop = outermost_loop (ss->loop);
3177 : :
3178 : 167478 : info = &ss->info->data.array;
3179 : :
3180 : 338345 : for (; ss; ss = ss->parent)
3181 : : {
3182 : 170867 : loop = ss->loop;
3183 : :
3184 : 407633 : for (n = 0; n < loop->dimen; n++)
3185 : : {
3186 : 236766 : dim = ss->dim[n];
3187 : 236766 : if (info->ref->u.ar.dimen_type[dim] != DIMEN_VECTOR
3188 : 764 : || loop->to[n] != NULL)
3189 : 236607 : continue;
3190 : :
3191 : : /* Loop variable N indexes vector dimension DIM, and we don't
3192 : : yet know the upper bound of loop variable N. Set it to the
3193 : : difference between the vector's upper and lower bounds. */
3194 : 159 : gcc_assert (loop->from[n] == gfc_index_zero_node);
3195 : 159 : gcc_assert (info->subscript[dim]
3196 : : && info->subscript[dim]->info->type == GFC_SS_VECTOR);
3197 : :
3198 : 159 : gfc_init_se (&se, NULL);
3199 : 159 : desc = info->subscript[dim]->info->data.array.descriptor;
3200 : 159 : zero = gfc_rank_cst[0];
3201 : 159 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
3202 : : gfc_array_index_type,
3203 : : gfc_conv_descriptor_ubound_get (desc, zero),
3204 : : gfc_conv_descriptor_lbound_get (desc, zero));
3205 : 159 : tmp = gfc_evaluate_now (tmp, &outer_loop->pre);
3206 : 159 : loop->to[n] = tmp;
3207 : : }
3208 : : }
3209 : 167478 : }
3210 : :
3211 : :
3212 : : /* Tells whether a scalar argument to an elemental procedure is saved out
3213 : : of a scalarization loop as a value or as a reference. */
3214 : :
3215 : : bool
3216 : 38116 : gfc_scalar_elemental_arg_saved_as_reference (gfc_ss_info * ss_info)
3217 : : {
3218 : 38116 : if (ss_info->type != GFC_SS_REFERENCE)
3219 : : return false;
3220 : :
3221 : 7598 : if (ss_info->data.scalar.needs_temporary)
3222 : : return false;
3223 : :
3224 : : /* If the actual argument can be absent (in other words, it can
3225 : : be a NULL reference), don't try to evaluate it; pass instead
3226 : : the reference directly. */
3227 : 7234 : if (ss_info->can_be_null_ref)
3228 : : return true;
3229 : :
3230 : : /* If the expression is of polymorphic type, it's actual size is not known,
3231 : : so we avoid copying it anywhere. */
3232 : 6558 : if (ss_info->data.scalar.dummy_arg
3233 : 1232 : && gfc_dummy_arg_get_typespec (*ss_info->data.scalar.dummy_arg).type
3234 : : == BT_CLASS
3235 : 6608 : && ss_info->expr->ts.type == BT_CLASS)
3236 : : return true;
3237 : :
3238 : : /* If the expression is a data reference of aggregate type,
3239 : : and the data reference is not used on the left hand side,
3240 : : avoid a copy by saving a reference to the content. */
3241 : 6534 : if (!ss_info->data.scalar.needs_temporary
3242 : 6534 : && (ss_info->expr->ts.type == BT_DERIVED
3243 : 5598 : || ss_info->expr->ts.type == BT_CLASS)
3244 : 7518 : && gfc_expr_is_variable (ss_info->expr))
3245 : : return true;
3246 : :
3247 : : /* Otherwise the expression is evaluated to a temporary variable before the
3248 : : scalarization loop. */
3249 : : return false;
3250 : : }
3251 : :
3252 : :
3253 : : /* Add the pre and post chains for all the scalar expressions in a SS chain
3254 : : to loop. This is called after the loop parameters have been calculated,
3255 : : but before the actual scalarizing loops. */
3256 : :
3257 : : static void
3258 : 175042 : gfc_add_loop_ss_code (gfc_loopinfo * loop, gfc_ss * ss, bool subscript,
3259 : : locus * where)
3260 : : {
3261 : 175042 : gfc_loopinfo *nested_loop, *outer_loop;
3262 : 175042 : gfc_se se;
3263 : 175042 : gfc_ss_info *ss_info;
3264 : 175042 : gfc_array_info *info;
3265 : 175042 : gfc_expr *expr;
3266 : 175042 : int n;
3267 : :
3268 : : /* Don't evaluate the arguments for realloc_lhs_loop_for_fcn_call; otherwise,
3269 : : arguments could get evaluated multiple times. */
3270 : 175042 : if (ss->is_alloc_lhs)
3271 : 152 : return;
3272 : :
3273 : 459519 : outer_loop = outermost_loop (loop);
3274 : :
3275 : : /* TODO: This can generate bad code if there are ordering dependencies,
3276 : : e.g., a callee allocated function and an unknown size constructor. */
3277 : : gcc_assert (ss != NULL);
3278 : :
3279 : 459519 : for (; ss != gfc_ss_terminator; ss = ss->loop_chain)
3280 : : {
3281 : 284629 : gcc_assert (ss);
3282 : :
3283 : : /* Cross loop arrays are handled from within the most nested loop. */
3284 : 284629 : if (ss->nested_ss != NULL)
3285 : 3493 : continue;
3286 : :
3287 : 281136 : ss_info = ss->info;
3288 : 281136 : expr = ss_info->expr;
3289 : 281136 : info = &ss_info->data.array;
3290 : :
3291 : 281136 : switch (ss_info->type)
3292 : : {
3293 : 38157 : case GFC_SS_SCALAR:
3294 : : /* Scalar expression. Evaluate this now. This includes elemental
3295 : : dimension indices, but not array section bounds. */
3296 : 38157 : gfc_init_se (&se, NULL);
3297 : 38157 : gfc_conv_expr (&se, expr);
3298 : 38157 : gfc_add_block_to_block (&outer_loop->pre, &se.pre);
3299 : :
3300 : 38157 : if (expr->ts.type != BT_CHARACTER
3301 : 38157 : && !gfc_is_alloc_class_scalar_function (expr))
3302 : : {
3303 : : /* Move the evaluation of scalar expressions outside the
3304 : : scalarization loop, except for WHERE assignments. */
3305 : 34530 : if (subscript)
3306 : 5976 : se.expr = convert(gfc_array_index_type, se.expr);
3307 : 34530 : if (!ss_info->where)
3308 : 34116 : se.expr = gfc_evaluate_now (se.expr, &outer_loop->pre);
3309 : 34530 : gfc_add_block_to_block (&outer_loop->pre, &se.post);
3310 : : }
3311 : : else
3312 : 3627 : gfc_add_block_to_block (&outer_loop->post, &se.post);
3313 : :
3314 : 38157 : ss_info->data.scalar.value = se.expr;
3315 : 38157 : ss_info->string_length = se.string_length;
3316 : 38157 : break;
3317 : :
3318 : 3799 : case GFC_SS_REFERENCE:
3319 : : /* Scalar argument to elemental procedure. */
3320 : 3799 : gfc_init_se (&se, NULL);
3321 : 3799 : if (gfc_scalar_elemental_arg_saved_as_reference (ss_info))
3322 : 818 : gfc_conv_expr_reference (&se, expr);
3323 : : else
3324 : : {
3325 : : /* Evaluate the argument outside the loop and pass
3326 : : a reference to the value. */
3327 : 2981 : gfc_conv_expr (&se, expr);
3328 : : }
3329 : :
3330 : : /* Ensure that a pointer to the string is stored. */
3331 : 3799 : if (expr->ts.type == BT_CHARACTER)
3332 : 174 : gfc_conv_string_parameter (&se);
3333 : :
3334 : 3799 : gfc_add_block_to_block (&outer_loop->pre, &se.pre);
3335 : 3799 : gfc_add_block_to_block (&outer_loop->post, &se.post);
3336 : 3799 : if (gfc_is_class_scalar_expr (expr))
3337 : : /* This is necessary because the dynamic type will always be
3338 : : large than the declared type. In consequence, assigning
3339 : : the value to a temporary could segfault.
3340 : : OOP-TODO: see if this is generally correct or is the value
3341 : : has to be written to an allocated temporary, whose address
3342 : : is passed via ss_info. */
3343 : 48 : ss_info->data.scalar.value = se.expr;
3344 : : else
3345 : 3751 : ss_info->data.scalar.value = gfc_evaluate_now (se.expr,
3346 : : &outer_loop->pre);
3347 : :
3348 : 3799 : ss_info->string_length = se.string_length;
3349 : 3799 : break;
3350 : :
3351 : : case GFC_SS_SECTION:
3352 : : /* Add the expressions for scalar and vector subscripts. */
3353 : 2679648 : for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
3354 : 2512170 : if (info->subscript[n])
3355 : 6740 : gfc_add_loop_ss_code (loop, info->subscript[n], true, where);
3356 : :
3357 : 167478 : set_vector_loop_bounds (ss);
3358 : 167478 : break;
3359 : :
3360 : 764 : case GFC_SS_VECTOR:
3361 : : /* Get the vector's descriptor and store it in SS. */
3362 : 764 : gfc_init_se (&se, NULL);
3363 : 764 : gfc_conv_expr_descriptor (&se, expr);
3364 : 764 : gfc_add_block_to_block (&outer_loop->pre, &se.pre);
3365 : 764 : gfc_add_block_to_block (&outer_loop->post, &se.post);
3366 : 764 : info->descriptor = se.expr;
3367 : 764 : break;
3368 : :
3369 : 10633 : case GFC_SS_INTRINSIC:
3370 : 10633 : gfc_add_intrinsic_ss_code (loop, ss);
3371 : 10633 : break;
3372 : :
3373 : 8379 : case GFC_SS_FUNCTION:
3374 : : /* Array function return value. We call the function and save its
3375 : : result in a temporary for use inside the loop. */
3376 : 8379 : gfc_init_se (&se, NULL);
3377 : 8379 : se.loop = loop;
3378 : 8379 : se.ss = ss;
3379 : 8379 : if (gfc_is_class_array_function (expr))
3380 : 177 : expr->must_finalize = 1;
3381 : 8379 : gfc_conv_expr (&se, expr);
3382 : 8379 : gfc_add_block_to_block (&outer_loop->pre, &se.pre);
3383 : 8379 : gfc_add_block_to_block (&outer_loop->post, &se.post);
3384 : 8379 : gfc_add_block_to_block (&outer_loop->post, &se.finalblock);
3385 : 8379 : ss_info->string_length = se.string_length;
3386 : 8379 : break;
3387 : :
3388 : 40057 : case GFC_SS_CONSTRUCTOR:
3389 : 40057 : if (expr->ts.type == BT_CHARACTER
3390 : 7771 : && ss_info->string_length == NULL
3391 : 7771 : && expr->ts.u.cl
3392 : 7771 : && expr->ts.u.cl->length
3393 : 7429 : && expr->ts.u.cl->length->expr_type == EXPR_CONSTANT)
3394 : : {
3395 : 7378 : gfc_init_se (&se, NULL);
3396 : 7378 : gfc_conv_expr_type (&se, expr->ts.u.cl->length,
3397 : : gfc_charlen_type_node);
3398 : 7378 : ss_info->string_length = se.expr;
3399 : 7378 : gfc_add_block_to_block (&outer_loop->pre, &se.pre);
3400 : 7378 : gfc_add_block_to_block (&outer_loop->post, &se.post);
3401 : : }
3402 : 40057 : trans_array_constructor (ss, where);
3403 : 40057 : break;
3404 : :
3405 : : case GFC_SS_TEMP:
3406 : : case GFC_SS_COMPONENT:
3407 : : /* Do nothing. These are handled elsewhere. */
3408 : : break;
3409 : :
3410 : 0 : default:
3411 : 0 : gcc_unreachable ();
3412 : : }
3413 : : }
3414 : :
3415 : 174890 : if (!subscript)
3416 : 170575 : for (nested_loop = loop->nested; nested_loop;
3417 : 2425 : nested_loop = nested_loop->next)
3418 : 2425 : gfc_add_loop_ss_code (nested_loop, nested_loop->ss, subscript, where);
3419 : : }
3420 : :
3421 : :
3422 : : /* Translate expressions for the descriptor and data pointer of a SS. */
3423 : : /*GCC ARRAYS*/
3424 : :
3425 : : static void
3426 : 300805 : gfc_conv_ss_descriptor (stmtblock_t * block, gfc_ss * ss, int base)
3427 : : {
3428 : 300805 : gfc_se se;
3429 : 300805 : gfc_ss_info *ss_info;
3430 : 300805 : gfc_array_info *info;
3431 : 300805 : tree tmp;
3432 : :
3433 : 300805 : ss_info = ss->info;
3434 : 300805 : info = &ss_info->data.array;
3435 : :
3436 : : /* Get the descriptor for the array to be scalarized. */
3437 : 300805 : gcc_assert (ss_info->expr->expr_type == EXPR_VARIABLE);
3438 : 300805 : gfc_init_se (&se, NULL);
3439 : 300805 : se.descriptor_only = 1;
3440 : 300805 : gfc_conv_expr_lhs (&se, ss_info->expr);
3441 : 300805 : gfc_add_block_to_block (block, &se.pre);
3442 : 300805 : info->descriptor = se.expr;
3443 : 300805 : ss_info->string_length = se.string_length;
3444 : 300805 : ss_info->class_container = se.class_container;
3445 : :
3446 : 300805 : if (base)
3447 : : {
3448 : 111811 : if (ss_info->expr->ts.type == BT_CHARACTER && !ss_info->expr->ts.deferred
3449 : 21903 : && ss_info->expr->ts.u.cl->length == NULL)
3450 : : {
3451 : : /* Emit a DECL_EXPR for the variable sized array type in
3452 : : GFC_TYPE_ARRAY_DATAPTR_TYPE so the gimplification of its type
3453 : : sizes works correctly. */
3454 : 1079 : tree arraytype = TREE_TYPE (
3455 : : GFC_TYPE_ARRAY_DATAPTR_TYPE (TREE_TYPE (info->descriptor)));
3456 : 1079 : if (! TYPE_NAME (arraytype))
3457 : 891 : TYPE_NAME (arraytype) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
3458 : : NULL_TREE, arraytype);
3459 : 1079 : gfc_add_expr_to_block (block, build1 (DECL_EXPR, arraytype,
3460 : 1079 : TYPE_NAME (arraytype)));
3461 : : }
3462 : : /* Also the data pointer. */
3463 : 111811 : tmp = gfc_conv_array_data (se.expr);
3464 : : /* If this is a variable or address or a class array, use it directly.
3465 : : Otherwise we must evaluate it now to avoid breaking dependency
3466 : : analysis by pulling the expressions for elemental array indices
3467 : : inside the loop. */
3468 : 111811 : if (!(DECL_P (tmp)
3469 : 101770 : || (TREE_CODE (tmp) == ADDR_EXPR
3470 : 64189 : && DECL_P (TREE_OPERAND (tmp, 0)))
3471 : 40223 : || (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se.expr))
3472 : 37237 : && TREE_CODE (se.expr) == COMPONENT_REF
3473 : 7316 : && GFC_CLASS_TYPE_P (TREE_TYPE (TREE_OPERAND (se.expr, 0))))))
3474 : 37423 : tmp = gfc_evaluate_now (tmp, block);
3475 : 111811 : info->data = tmp;
3476 : :
3477 : 111811 : tmp = gfc_conv_array_offset (se.expr);
3478 : 111811 : info->offset = gfc_evaluate_now (tmp, block);
3479 : :
3480 : : /* Make absolutely sure that the saved_offset is indeed saved
3481 : : so that the variable is still accessible after the loops
3482 : : are translated. */
3483 : 111811 : info->saved_offset = info->offset;
3484 : : }
3485 : 300805 : }
3486 : :
3487 : :
3488 : : /* Initialize a gfc_loopinfo structure. */
3489 : :
3490 : : void
3491 : 172928 : gfc_init_loopinfo (gfc_loopinfo * loop)
3492 : : {
3493 : 172928 : int n;
3494 : :
3495 : 172928 : memset (loop, 0, sizeof (gfc_loopinfo));
3496 : 172928 : gfc_init_block (&loop->pre);
3497 : 172928 : gfc_init_block (&loop->post);
3498 : :
3499 : : /* Initially scalarize in order and default to no loop reversal. */
3500 : 2939776 : for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
3501 : : {
3502 : 2593920 : loop->order[n] = n;
3503 : 2593920 : loop->reverse[n] = GFC_INHIBIT_REVERSE;
3504 : : }
3505 : :
3506 : 172928 : loop->ss = gfc_ss_terminator;
3507 : 172928 : }
3508 : :
3509 : :
3510 : : /* Copies the loop variable info to a gfc_se structure. Does not copy the SS
3511 : : chain. */
3512 : :
3513 : : void
3514 : 171629 : gfc_copy_loopinfo_to_se (gfc_se * se, gfc_loopinfo * loop)
3515 : : {
3516 : 171629 : se->loop = loop;
3517 : 171629 : }
3518 : :
3519 : :
3520 : : /* Return an expression for the data pointer of an array. */
3521 : :
3522 : : tree
3523 : 302754 : gfc_conv_array_data (tree descriptor)
3524 : : {
3525 : 302754 : tree type;
3526 : :
3527 : 302754 : type = TREE_TYPE (descriptor);
3528 : 302754 : if (GFC_ARRAY_TYPE_P (type))
3529 : : {
3530 : 214849 : if (TREE_CODE (type) == POINTER_TYPE)
3531 : : return descriptor;
3532 : : else
3533 : : {
3534 : : /* Descriptorless arrays. */
3535 : 163270 : return gfc_build_addr_expr (NULL_TREE, descriptor);
3536 : : }
3537 : : }
3538 : : else
3539 : 87905 : return gfc_conv_descriptor_data_get (descriptor);
3540 : : }
3541 : :
3542 : :
3543 : : /* Return an expression for the base offset of an array. */
3544 : :
3545 : : tree
3546 : 225048 : gfc_conv_array_offset (tree descriptor)
3547 : : {
3548 : 225048 : tree type;
3549 : :
3550 : 225048 : type = TREE_TYPE (descriptor);
3551 : 225048 : if (GFC_ARRAY_TYPE_P (type))
3552 : 162443 : return GFC_TYPE_ARRAY_OFFSET (type);
3553 : : else
3554 : 62605 : return gfc_conv_descriptor_offset_get (descriptor);
3555 : : }
3556 : :
3557 : :
3558 : : /* Get an expression for the array stride. */
3559 : :
3560 : : tree
3561 : 455461 : gfc_conv_array_stride (tree descriptor, int dim)
3562 : : {
3563 : 455461 : tree tmp;
3564 : 455461 : tree type;
3565 : :
3566 : 455461 : type = TREE_TYPE (descriptor);
3567 : :
3568 : : /* For descriptorless arrays use the array size. */
3569 : 455461 : tmp = GFC_TYPE_ARRAY_STRIDE (type, dim);
3570 : 455461 : if (tmp != NULL_TREE)
3571 : : return tmp;
3572 : :
3573 : 102814 : tmp = gfc_conv_descriptor_stride_get (descriptor, gfc_rank_cst[dim]);
3574 : 102814 : return tmp;
3575 : : }
3576 : :
3577 : :
3578 : : /* Like gfc_conv_array_stride, but for the lower bound. */
3579 : :
3580 : : tree
3581 : 297360 : gfc_conv_array_lbound (tree descriptor, int dim)
3582 : : {
3583 : 297360 : tree tmp;
3584 : 297360 : tree type;
3585 : :
3586 : 297360 : type = TREE_TYPE (descriptor);
3587 : :
3588 : 297360 : tmp = GFC_TYPE_ARRAY_LBOUND (type, dim);
3589 : 297360 : if (tmp != NULL_TREE)
3590 : : return tmp;
3591 : :
3592 : 18043 : tmp = gfc_conv_descriptor_lbound_get (descriptor, gfc_rank_cst[dim]);
3593 : 18043 : return tmp;
3594 : : }
3595 : :
3596 : :
3597 : : /* Like gfc_conv_array_stride, but for the upper bound. */
3598 : :
3599 : : tree
3600 : 190953 : gfc_conv_array_ubound (tree descriptor, int dim)
3601 : : {
3602 : 190953 : tree tmp;
3603 : 190953 : tree type;
3604 : :
3605 : 190953 : type = TREE_TYPE (descriptor);
3606 : :
3607 : 190953 : tmp = GFC_TYPE_ARRAY_UBOUND (type, dim);
3608 : 190953 : if (tmp != NULL_TREE)
3609 : : return tmp;
3610 : :
3611 : : /* This should only ever happen when passing an assumed shape array
3612 : : as an actual parameter. The value will never be used. */
3613 : 7296 : if (GFC_ARRAY_TYPE_P (TREE_TYPE (descriptor)))
3614 : 553 : return gfc_index_zero_node;
3615 : :
3616 : 6743 : tmp = gfc_conv_descriptor_ubound_get (descriptor, gfc_rank_cst[dim]);
3617 : 6743 : return tmp;
3618 : : }
3619 : :
3620 : :
3621 : : /* Generate abridged name of a part-ref for use in bounds-check message.
3622 : : Cases:
3623 : : (1) for an ordinary array variable x return "x"
3624 : : (2) for z a DT scalar and array component x (at level 1) return "z%%x"
3625 : : (3) for z a DT scalar and array component x (at level > 1) or
3626 : : for z a DT array and array x (at any number of levels): "z...%%x"
3627 : : */
3628 : :
3629 : : static char *
3630 : 35908 : abridged_ref_name (gfc_expr * expr, gfc_array_ref * ar)
3631 : : {
3632 : 35908 : gfc_ref *ref;
3633 : 35908 : gfc_symbol *sym;
3634 : 35908 : char *ref_name = NULL;
3635 : 35908 : const char *comp_name = NULL;
3636 : 35908 : int len_sym, last_len = 0, level = 0;
3637 : 35908 : bool sym_is_array;
3638 : :
3639 : 35908 : gcc_assert (expr->expr_type == EXPR_VARIABLE && expr->ref != NULL);
3640 : :
3641 : 35908 : sym = expr->symtree->n.sym;
3642 : 71816 : sym_is_array = (sym->ts.type != BT_CLASS
3643 : 35908 : ? sym->as != NULL
3644 : 159 : : IS_CLASS_ARRAY (sym));
3645 : 35908 : len_sym = strlen (sym->name);
3646 : :
3647 : : /* Scan ref chain to get name of the array component (when ar != NULL) or
3648 : : array section, determine depth and remember its component name. */
3649 : 50713 : for (ref = expr->ref; ref; ref = ref->next)
3650 : : {
3651 : 36847 : if (ref->type == REF_COMPONENT
3652 : 630 : && strcmp (ref->u.c.component->name, "_data") != 0)
3653 : : {
3654 : 500 : level++;
3655 : 500 : comp_name = ref->u.c.component->name;
3656 : 500 : continue;
3657 : : }
3658 : :
3659 : 36347 : if (ref->type != REF_ARRAY)
3660 : 142 : continue;
3661 : :
3662 : 36205 : if (ar)
3663 : : {
3664 : 15482 : if (&ref->u.ar == ar)
3665 : : break;
3666 : : }
3667 : 20723 : else if (ref->u.ar.type == AR_SECTION)
3668 : : break;
3669 : : }
3670 : :
3671 : 35908 : if (level > 0)
3672 : 474 : last_len = strlen (comp_name);
3673 : :
3674 : : /* Provide a buffer sufficiently large to hold "x...%%z". */
3675 : 35908 : ref_name = XNEWVEC (char, len_sym + last_len + 6);
3676 : 35908 : strcpy (ref_name, sym->name);
3677 : :
3678 : 35908 : if (level == 1 && !sym_is_array)
3679 : : {
3680 : 190 : strcat (ref_name, "%%");
3681 : 190 : strcat (ref_name, comp_name);
3682 : : }
3683 : 35718 : else if (level > 0)
3684 : : {
3685 : 284 : strcat (ref_name, "...%%");
3686 : 284 : strcat (ref_name, comp_name);
3687 : : }
3688 : :
3689 : 35908 : return ref_name;
3690 : : }
3691 : :
3692 : :
3693 : : /* Generate code to perform an array index bound check. */
3694 : :
3695 : : static tree
3696 : 5092 : trans_array_bound_check (gfc_se * se, gfc_ss *ss, tree index, int n,
3697 : : locus * where, bool check_upper,
3698 : : const char *compname = NULL)
3699 : : {
3700 : 5092 : tree fault;
3701 : 5092 : tree tmp_lo, tmp_up;
3702 : 5092 : tree descriptor;
3703 : 5092 : char *msg;
3704 : 5092 : char *ref_name = NULL;
3705 : 5092 : const char * name = NULL;
3706 : 5092 : gfc_expr *expr;
3707 : :
3708 : 5092 : if (!(gfc_option.rtcheck & GFC_RTCHECK_BOUNDS))
3709 : : return index;
3710 : :
3711 : 234 : descriptor = ss->info->data.array.descriptor;
3712 : :
3713 : 234 : index = gfc_evaluate_now (index, &se->pre);
3714 : :
3715 : : /* We find a name for the error message. */
3716 : 234 : name = ss->info->expr->symtree->n.sym->name;
3717 : 234 : gcc_assert (name != NULL);
3718 : :
3719 : : /* When we have a component ref, get name of the array section.
3720 : : Note that there can only be one part ref. */
3721 : 234 : expr = ss->info->expr;
3722 : 234 : if (expr->ref && !compname)
3723 : 160 : name = ref_name = abridged_ref_name (expr, NULL);
3724 : :
3725 : 234 : if (VAR_P (descriptor))
3726 : 156 : name = IDENTIFIER_POINTER (DECL_NAME (descriptor));
3727 : :
3728 : : /* Use given (array component) name. */
3729 : 234 : if (compname)
3730 : 74 : name = compname;
3731 : :
3732 : : /* If upper bound is present, include both bounds in the error message. */
3733 : 234 : if (check_upper)
3734 : : {
3735 : 207 : tmp_lo = gfc_conv_array_lbound (descriptor, n);
3736 : 207 : tmp_up = gfc_conv_array_ubound (descriptor, n);
3737 : :
3738 : 207 : if (name)
3739 : 207 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' "
3740 : : "outside of expected range (%%ld:%%ld)", n+1, name);
3741 : : else
3742 : 0 : msg = xasprintf ("Index '%%ld' of dimension %d "
3743 : : "outside of expected range (%%ld:%%ld)", n+1);
3744 : :
3745 : 207 : fault = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3746 : : index, tmp_lo);
3747 : 207 : gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
3748 : : fold_convert (long_integer_type_node, index),
3749 : : fold_convert (long_integer_type_node, tmp_lo),
3750 : : fold_convert (long_integer_type_node, tmp_up));
3751 : 207 : fault = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
3752 : : index, tmp_up);
3753 : 207 : gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
3754 : : fold_convert (long_integer_type_node, index),
3755 : : fold_convert (long_integer_type_node, tmp_lo),
3756 : : fold_convert (long_integer_type_node, tmp_up));
3757 : 207 : free (msg);
3758 : : }
3759 : : else
3760 : : {
3761 : 27 : tmp_lo = gfc_conv_array_lbound (descriptor, n);
3762 : :
3763 : 27 : if (name)
3764 : 27 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' "
3765 : : "below lower bound of %%ld", n+1, name);
3766 : : else
3767 : 0 : msg = xasprintf ("Index '%%ld' of dimension %d "
3768 : : "below lower bound of %%ld", n+1);
3769 : :
3770 : 27 : fault = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
3771 : : index, tmp_lo);
3772 : 27 : gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
3773 : : fold_convert (long_integer_type_node, index),
3774 : : fold_convert (long_integer_type_node, tmp_lo));
3775 : 27 : free (msg);
3776 : : }
3777 : :
3778 : 234 : free (ref_name);
3779 : 234 : return index;
3780 : : }
3781 : :
3782 : :
3783 : : /* Generate code for bounds checking for elemental dimensions. */
3784 : :
3785 : : static void
3786 : 6649 : array_bound_check_elemental (gfc_se * se, gfc_ss * ss, gfc_expr * expr)
3787 : : {
3788 : 6649 : gfc_array_ref *ar;
3789 : 6649 : gfc_ref *ref;
3790 : 6649 : char *var_name = NULL;
3791 : 6649 : int dim;
3792 : :
3793 : 6649 : if (expr->expr_type == EXPR_VARIABLE)
3794 : : {
3795 : 12463 : for (ref = expr->ref; ref; ref = ref->next)
3796 : : {
3797 : 6255 : if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
3798 : : {
3799 : 3934 : ar = &ref->u.ar;
3800 : 3934 : var_name = abridged_ref_name (expr, ar);
3801 : 8102 : for (dim = 0; dim < ar->dimen; dim++)
3802 : : {
3803 : 4168 : if (ar->dimen_type[dim] == DIMEN_ELEMENT)
3804 : : {
3805 : 74 : gfc_se indexse;
3806 : 74 : gfc_init_se (&indexse, NULL);
3807 : 74 : gfc_conv_expr_type (&indexse, ar->start[dim],
3808 : : gfc_array_index_type);
3809 : 74 : trans_array_bound_check (se, ss, indexse.expr, dim,
3810 : : &ar->where,
3811 : 74 : ar->as->type != AS_ASSUMED_SIZE
3812 : 74 : || dim < ar->dimen - 1,
3813 : : var_name);
3814 : : }
3815 : : }
3816 : 3934 : free (var_name);
3817 : : }
3818 : : }
3819 : : }
3820 : 6649 : }
3821 : :
3822 : :
3823 : : /* Return the offset for an index. Performs bound checking for elemental
3824 : : dimensions. Single element references are processed separately.
3825 : : DIM is the array dimension, I is the loop dimension. */
3826 : :
3827 : : static tree
3828 : 229049 : conv_array_index_offset (gfc_se * se, gfc_ss * ss, int dim, int i,
3829 : : gfc_array_ref * ar, tree stride)
3830 : : {
3831 : 229049 : gfc_array_info *info;
3832 : 229049 : tree index;
3833 : 229049 : tree desc;
3834 : 229049 : tree data;
3835 : :
3836 : 229049 : info = &ss->info->data.array;
3837 : :
3838 : : /* Get the index into the array for this dimension. */
3839 : 229049 : if (ar)
3840 : : {
3841 : 161626 : gcc_assert (ar->type != AR_ELEMENT);
3842 : 161626 : switch (ar->dimen_type[dim])
3843 : : {
3844 : 0 : case DIMEN_THIS_IMAGE:
3845 : 0 : gcc_unreachable ();
3846 : 4257 : break;
3847 : 4257 : case DIMEN_ELEMENT:
3848 : : /* Elemental dimension. */
3849 : 4257 : gcc_assert (info->subscript[dim]
3850 : : && info->subscript[dim]->info->type == GFC_SS_SCALAR);
3851 : : /* We've already translated this value outside the loop. */
3852 : 4257 : index = info->subscript[dim]->info->data.scalar.value;
3853 : :
3854 : 8514 : index = trans_array_bound_check (se, ss, index, dim, &ar->where,
3855 : 4257 : ar->as->type != AS_ASSUMED_SIZE
3856 : 4257 : || dim < ar->dimen - 1);
3857 : 4257 : break;
3858 : :
3859 : 761 : case DIMEN_VECTOR:
3860 : 761 : gcc_assert (info && se->loop);
3861 : 761 : gcc_assert (info->subscript[dim]
3862 : : && info->subscript[dim]->info->type == GFC_SS_VECTOR);
3863 : 761 : desc = info->subscript[dim]->info->data.array.descriptor;
3864 : :
3865 : : /* Get a zero-based index into the vector. */
3866 : 761 : index = fold_build2_loc (input_location, MINUS_EXPR,
3867 : : gfc_array_index_type,
3868 : : se->loop->loopvar[i], se->loop->from[i]);
3869 : :
3870 : : /* Multiply the index by the stride. */
3871 : 761 : index = fold_build2_loc (input_location, MULT_EXPR,
3872 : : gfc_array_index_type,
3873 : : index, gfc_conv_array_stride (desc, 0));
3874 : :
3875 : : /* Read the vector to get an index into info->descriptor. */
3876 : 761 : data = build_fold_indirect_ref_loc (input_location,
3877 : : gfc_conv_array_data (desc));
3878 : 761 : index = gfc_build_array_ref (data, index, NULL);
3879 : 761 : index = gfc_evaluate_now (index, &se->pre);
3880 : 761 : index = fold_convert (gfc_array_index_type, index);
3881 : :
3882 : : /* Do any bounds checking on the final info->descriptor index. */
3883 : 1522 : index = trans_array_bound_check (se, ss, index, dim, &ar->where,
3884 : 761 : ar->as->type != AS_ASSUMED_SIZE
3885 : 761 : || dim < ar->dimen - 1);
3886 : 761 : break;
3887 : :
3888 : 156608 : case DIMEN_RANGE:
3889 : : /* Scalarized dimension. */
3890 : 156608 : gcc_assert (info && se->loop);
3891 : :
3892 : : /* Multiply the loop variable by the stride and delta. */
3893 : 156608 : index = se->loop->loopvar[i];
3894 : 156608 : if (!integer_onep (info->stride[dim]))
3895 : 6170 : index = fold_build2_loc (input_location, MULT_EXPR,
3896 : : gfc_array_index_type, index,
3897 : : info->stride[dim]);
3898 : 156608 : if (!integer_zerop (info->delta[dim]))
3899 : 62117 : index = fold_build2_loc (input_location, PLUS_EXPR,
3900 : : gfc_array_index_type, index,
3901 : : info->delta[dim]);
3902 : : break;
3903 : :
3904 : 0 : default:
3905 : 0 : gcc_unreachable ();
3906 : : }
3907 : : }
3908 : : else
3909 : : {
3910 : : /* Temporary array or derived type component. */
3911 : 67423 : gcc_assert (se->loop);
3912 : 67423 : index = se->loop->loopvar[se->loop->order[i]];
3913 : :
3914 : : /* Pointer functions can have stride[0] different from unity.
3915 : : Use the stride returned by the function call and stored in
3916 : : the descriptor for the temporary. */
3917 : 67423 : if (se->ss && se->ss->info->type == GFC_SS_FUNCTION
3918 : 6970 : && se->ss->info->expr
3919 : 6970 : && se->ss->info->expr->symtree
3920 : 6970 : && se->ss->info->expr->symtree->n.sym->result
3921 : 6565 : && se->ss->info->expr->symtree->n.sym->result->attr.pointer)
3922 : 144 : stride = gfc_conv_descriptor_stride_get (info->descriptor,
3923 : : gfc_rank_cst[dim]);
3924 : :
3925 : 67423 : if (info->delta[dim] && !integer_zerop (info->delta[dim]))
3926 : 708 : index = fold_build2_loc (input_location, PLUS_EXPR,
3927 : : gfc_array_index_type, index, info->delta[dim]);
3928 : : }
3929 : :
3930 : : /* Multiply by the stride. */
3931 : 229049 : if (stride != NULL && !integer_onep (stride))
3932 : 68960 : index = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
3933 : : index, stride);
3934 : :
3935 : 229049 : return index;
3936 : : }
3937 : :
3938 : :
3939 : : /* Build a scalarized array reference using the vptr 'size'. */
3940 : :
3941 : : static bool
3942 : 176236 : build_class_array_ref (gfc_se *se, tree base, tree index)
3943 : : {
3944 : 176236 : tree size;
3945 : 176236 : tree decl = NULL_TREE;
3946 : 176236 : tree tmp;
3947 : 176236 : gfc_expr *expr = se->ss->info->expr;
3948 : 176236 : gfc_expr *class_expr;
3949 : 176236 : gfc_typespec *ts;
3950 : 176236 : gfc_symbol *sym;
3951 : :
3952 : 176236 : tmp = !VAR_P (base) ? gfc_get_class_from_expr (base) : NULL_TREE;
3953 : :
3954 : 82834 : if (tmp != NULL_TREE)
3955 : : decl = tmp;
3956 : : else
3957 : : {
3958 : : /* The base expression does not contain a class component, either
3959 : : because it is a temporary array or array descriptor. Class
3960 : : array functions are correctly resolved above. */
3961 : 173080 : if (!expr
3962 : 173080 : || (expr->ts.type != BT_CLASS
3963 : 160049 : && !gfc_is_class_array_ref (expr, NULL)))
3964 : 172699 : return false;
3965 : :
3966 : : /* Obtain the expression for the class entity or component that is
3967 : : followed by an array reference, which is not an element, so that
3968 : : the span of the array can be obtained. */
3969 : 381 : class_expr = gfc_find_and_cut_at_last_class_ref (expr, false, &ts);
3970 : :
3971 : 381 : if (!ts)
3972 : : return false;
3973 : :
3974 : 356 : sym = (!class_expr && expr) ? expr->symtree->n.sym : NULL;
3975 : 0 : if (sym && sym->attr.function
3976 : 0 : && sym == sym->result
3977 : 0 : && sym->backend_decl == current_function_decl)
3978 : : /* The temporary is the data field of the class data component
3979 : : of the current function. */
3980 : 0 : decl = gfc_get_fake_result_decl (sym, 0);
3981 : 356 : else if (sym)
3982 : : {
3983 : 0 : if (decl == NULL_TREE)
3984 : 0 : decl = expr->symtree->n.sym->backend_decl;
3985 : : /* For class arrays the tree containing the class is stored in
3986 : : GFC_DECL_SAVED_DESCRIPTOR of the sym's backend_decl.
3987 : : For all others it's sym's backend_decl directly. */
3988 : 0 : if (DECL_LANG_SPECIFIC (decl) && GFC_DECL_SAVED_DESCRIPTOR (decl))
3989 : 0 : decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
3990 : : }
3991 : : else
3992 : 356 : decl = gfc_get_class_from_gfc_expr (class_expr);
3993 : :
3994 : 356 : if (POINTER_TYPE_P (TREE_TYPE (decl)))
3995 : 0 : decl = build_fold_indirect_ref_loc (input_location, decl);
3996 : :
3997 : 356 : if (!GFC_CLASS_TYPE_P (TREE_TYPE (decl)))
3998 : : return false;
3999 : : }
4000 : :
4001 : 3512 : se->class_vptr = gfc_evaluate_now (gfc_class_vptr_get (decl), &se->pre);
4002 : :
4003 : 3512 : size = gfc_class_vtab_size_get (decl);
4004 : : /* For unlimited polymorphic entities then _len component needs to be
4005 : : multiplied with the size. */
4006 : 3512 : size = gfc_resize_class_size_with_len (&se->pre, decl, size);
4007 : 3512 : size = fold_convert (TREE_TYPE (index), size);
4008 : :
4009 : : /* Return the element in the se expression. */
4010 : 3512 : se->expr = gfc_build_spanned_array_ref (base, index, size);
4011 : 3512 : return true;
4012 : : }
4013 : :
4014 : :
4015 : : /* Indicates that the tree EXPR is a reference to an array that can’t
4016 : : have any negative stride. */
4017 : :
4018 : : static bool
4019 : 284389 : non_negative_strides_array_p (tree expr)
4020 : : {
4021 : 296923 : if (expr == NULL_TREE)
4022 : : return false;
4023 : :
4024 : 296923 : tree type = TREE_TYPE (expr);
4025 : 296923 : if (POINTER_TYPE_P (type))
4026 : 64334 : type = TREE_TYPE (type);
4027 : :
4028 : 296923 : if (TYPE_LANG_SPECIFIC (type))
4029 : : {
4030 : 296923 : gfc_array_kind array_kind = GFC_TYPE_ARRAY_AKIND (type);
4031 : :
4032 : 296923 : if (array_kind == GFC_ARRAY_ALLOCATABLE
4033 : 296923 : || array_kind == GFC_ARRAY_ASSUMED_SHAPE_CONT)
4034 : : return true;
4035 : : }
4036 : :
4037 : : /* An array with descriptor can have negative strides.
4038 : : We try to be conservative and return false by default here
4039 : : if we don’t recognize a contiguous array instead of
4040 : : returning false if we can identify a non-contiguous one. */
4041 : 245695 : if (!GFC_ARRAY_TYPE_P (type))
4042 : : return false;
4043 : :
4044 : : /* If the array was originally a dummy with a descriptor, strides can be
4045 : : negative. */
4046 : 215207 : if (DECL_P (expr)
4047 : 207035 : && DECL_LANG_SPECIFIC (expr)
4048 : 45265 : && GFC_DECL_SAVED_DESCRIPTOR (expr)
4049 : 227760 : && GFC_DECL_SAVED_DESCRIPTOR (expr) != expr)
4050 : 12534 : return non_negative_strides_array_p (GFC_DECL_SAVED_DESCRIPTOR (expr));
4051 : :
4052 : : return true;
4053 : : }
4054 : :
4055 : :
4056 : : /* Build a scalarized reference to an array. */
4057 : :
4058 : : static void
4059 : 176236 : gfc_conv_scalarized_array_ref (gfc_se * se, gfc_array_ref * ar,
4060 : : bool tmp_array = false)
4061 : : {
4062 : 176236 : gfc_array_info *info;
4063 : 176236 : tree decl = NULL_TREE;
4064 : 176236 : tree index;
4065 : 176236 : tree base;
4066 : 176236 : gfc_ss *ss;
4067 : 176236 : gfc_expr *expr;
4068 : 176236 : int n;
4069 : :
4070 : 176236 : ss = se->ss;
4071 : 176236 : expr = ss->info->expr;
4072 : 176236 : info = &ss->info->data.array;
4073 : 176236 : if (ar)
4074 : 119692 : n = se->loop->order[0];
4075 : : else
4076 : : n = 0;
4077 : :
4078 : 176236 : index = conv_array_index_offset (se, ss, ss->dim[n], n, ar, info->stride0);
4079 : : /* Add the offset for this dimension to the stored offset for all other
4080 : : dimensions. */
4081 : 176236 : if (info->offset && !integer_zerop (info->offset))
4082 : 128059 : index = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
4083 : : index, info->offset);
4084 : :
4085 : 176236 : base = build_fold_indirect_ref_loc (input_location, info->data);
4086 : :
4087 : : /* Use the vptr 'size' field to access the element of a class array. */
4088 : 176236 : if (build_class_array_ref (se, base, index))
4089 : 3512 : return;
4090 : :
4091 : 172724 : if (get_CFI_desc (NULL, expr, &decl, ar))
4092 : 442 : decl = build_fold_indirect_ref_loc (input_location, decl);
4093 : :
4094 : : /* A pointer array component can be detected from its field decl. Fix
4095 : : the descriptor, mark the resulting variable decl and pass it to
4096 : : gfc_build_array_ref. */
4097 : 172724 : if (is_pointer_array (info->descriptor)
4098 : 172724 : || (expr && expr->ts.deferred && info->descriptor
4099 : 2408 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (info->descriptor))))
4100 : : {
4101 : 8144 : if (TREE_CODE (info->descriptor) == COMPONENT_REF)
4102 : 1317 : decl = info->descriptor;
4103 : 6827 : else if (INDIRECT_REF_P (info->descriptor))
4104 : 1397 : decl = TREE_OPERAND (info->descriptor, 0);
4105 : :
4106 : 8144 : if (decl == NULL_TREE)
4107 : 5430 : decl = info->descriptor;
4108 : : }
4109 : :
4110 : 172724 : bool non_negative_stride = tmp_array
4111 : 172724 : || non_negative_strides_array_p (info->descriptor);
4112 : 172724 : se->expr = gfc_build_array_ref (base, index, decl,
4113 : : non_negative_stride);
4114 : : }
4115 : :
4116 : :
4117 : : /* Translate access of temporary array. */
4118 : :
4119 : : void
4120 : 56544 : gfc_conv_tmp_array_ref (gfc_se * se)
4121 : : {
4122 : 56544 : se->string_length = se->ss->info->string_length;
4123 : 56544 : gfc_conv_scalarized_array_ref (se, NULL, true);
4124 : 56544 : gfc_advance_se_ss_chain (se);
4125 : 56544 : }
4126 : :
4127 : : /* Add T to the offset pair *OFFSET, *CST_OFFSET. */
4128 : :
4129 : : static void
4130 : 251038 : add_to_offset (tree *cst_offset, tree *offset, tree t)
4131 : : {
4132 : 251038 : if (TREE_CODE (t) == INTEGER_CST)
4133 : 126115 : *cst_offset = int_const_binop (PLUS_EXPR, *cst_offset, t);
4134 : : else
4135 : : {
4136 : 124923 : if (!integer_zerop (*offset))
4137 : 45694 : *offset = fold_build2_loc (input_location, PLUS_EXPR,
4138 : : gfc_array_index_type, *offset, t);
4139 : : else
4140 : 79229 : *offset = t;
4141 : : }
4142 : 251038 : }
4143 : :
4144 : :
4145 : : static tree
4146 : 167827 : build_array_ref (tree desc, tree offset, tree decl, tree vptr)
4147 : : {
4148 : 167827 : tree tmp;
4149 : 167827 : tree type;
4150 : 167827 : tree cdesc;
4151 : :
4152 : : /* For class arrays the class declaration is stored in the saved
4153 : : descriptor. */
4154 : 167827 : if (INDIRECT_REF_P (desc)
4155 : 6955 : && DECL_LANG_SPECIFIC (TREE_OPERAND (desc, 0))
4156 : 170069 : && GFC_DECL_SAVED_DESCRIPTOR (TREE_OPERAND (desc, 0)))
4157 : 828 : cdesc = gfc_class_data_get (GFC_DECL_SAVED_DESCRIPTOR (
4158 : : TREE_OPERAND (desc, 0)));
4159 : : else
4160 : : cdesc = desc;
4161 : :
4162 : : /* Class container types do not always have the GFC_CLASS_TYPE_P
4163 : : but the canonical type does. */
4164 : 167827 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (cdesc))
4165 : 167827 : && TREE_CODE (cdesc) == COMPONENT_REF)
4166 : : {
4167 : 8290 : type = TREE_TYPE (TREE_OPERAND (cdesc, 0));
4168 : 8290 : if (TYPE_CANONICAL (type)
4169 : 8290 : && GFC_CLASS_TYPE_P (TYPE_CANONICAL (type)))
4170 : 3097 : vptr = gfc_class_vptr_get (TREE_OPERAND (cdesc, 0));
4171 : : }
4172 : :
4173 : 167827 : tmp = gfc_conv_array_data (desc);
4174 : 167827 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
4175 : 167827 : tmp = gfc_build_array_ref (tmp, offset, decl,
4176 : 167827 : non_negative_strides_array_p (desc),
4177 : : vptr);
4178 : 167827 : return tmp;
4179 : : }
4180 : :
4181 : :
4182 : : /* Build an array reference. se->expr already holds the array descriptor.
4183 : : This should be either a variable, indirect variable reference or component
4184 : : reference. For arrays which do not have a descriptor, se->expr will be
4185 : : the data pointer.
4186 : : a(i, j, k) = base[offset + i * stride[0] + j * stride[1] + k * stride[2]]*/
4187 : :
4188 : : void
4189 : 236031 : gfc_conv_array_ref (gfc_se * se, gfc_array_ref * ar, gfc_expr *expr,
4190 : : locus * where)
4191 : : {
4192 : 236031 : int n;
4193 : 236031 : tree offset, cst_offset;
4194 : 236031 : tree tmp;
4195 : 236031 : tree stride;
4196 : 236031 : tree decl = NULL_TREE;
4197 : 236031 : gfc_se indexse;
4198 : 236031 : gfc_se tmpse;
4199 : 236031 : gfc_symbol * sym = expr->symtree->n.sym;
4200 : 236031 : char *var_name = NULL;
4201 : :
4202 : 236031 : if (ar->dimen == 0)
4203 : : {
4204 : 4090 : gcc_assert (ar->codimen || sym->attr.select_rank_temporary
4205 : : || (ar->as && ar->as->corank));
4206 : :
4207 : 4090 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se->expr)))
4208 : 828 : se->expr = build_fold_indirect_ref (gfc_conv_array_data (se->expr));
4209 : : else
4210 : : {
4211 : 3262 : if (GFC_ARRAY_TYPE_P (TREE_TYPE (se->expr))
4212 : 3262 : && TREE_CODE (TREE_TYPE (se->expr)) == POINTER_TYPE)
4213 : 2342 : se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
4214 : :
4215 : : /* Use the actual tree type and not the wrapped coarray. */
4216 : 3262 : if (!se->want_pointer)
4217 : 2459 : se->expr = fold_convert (TYPE_MAIN_VARIANT (TREE_TYPE (se->expr)),
4218 : : se->expr);
4219 : : }
4220 : :
4221 : 123782 : return;
4222 : : }
4223 : :
4224 : : /* Handle scalarized references separately. */
4225 : 231941 : if (ar->type != AR_ELEMENT)
4226 : : {
4227 : 119692 : gfc_conv_scalarized_array_ref (se, ar);
4228 : 119692 : gfc_advance_se_ss_chain (se);
4229 : 119692 : return;
4230 : : }
4231 : :
4232 : 112249 : if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
4233 : 11421 : var_name = abridged_ref_name (expr, ar);
4234 : :
4235 : 112249 : decl = se->expr;
4236 : 112249 : if (UNLIMITED_POLY(sym)
4237 : 98 : && IS_CLASS_ARRAY (sym)
4238 : 97 : && sym->attr.dummy
4239 : 54 : && ar->as->type != AS_DEFERRED)
4240 : 42 : decl = sym->backend_decl;
4241 : :
4242 : 112249 : cst_offset = offset = gfc_index_zero_node;
4243 : 112249 : add_to_offset (&cst_offset, &offset, gfc_conv_array_offset (decl));
4244 : :
4245 : : /* Calculate the offsets from all the dimensions. Make sure to associate
4246 : : the final offset so that we form a chain of loop invariant summands. */
4247 : 251038 : for (n = ar->dimen - 1; n >= 0; n--)
4248 : : {
4249 : : /* Calculate the index for this dimension. */
4250 : 138789 : gfc_init_se (&indexse, se);
4251 : 138789 : gfc_conv_expr_type (&indexse, ar->start[n], gfc_array_index_type);
4252 : 138789 : gfc_add_block_to_block (&se->pre, &indexse.pre);
4253 : :
4254 : 138789 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS) && ! expr->no_bounds_check)
4255 : : {
4256 : : /* Check array bounds. */
4257 : 14923 : tree cond;
4258 : 14923 : char *msg;
4259 : :
4260 : : /* Evaluate the indexse.expr only once. */
4261 : 14923 : indexse.expr = save_expr (indexse.expr);
4262 : :
4263 : : /* Lower bound. */
4264 : 14923 : tmp = gfc_conv_array_lbound (decl, n);
4265 : 14923 : if (sym->attr.temporary)
4266 : : {
4267 : 18 : gfc_init_se (&tmpse, se);
4268 : 18 : gfc_conv_expr_type (&tmpse, ar->as->lower[n],
4269 : : gfc_array_index_type);
4270 : 18 : gfc_add_block_to_block (&se->pre, &tmpse.pre);
4271 : 18 : tmp = tmpse.expr;
4272 : : }
4273 : :
4274 : 14923 : cond = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
4275 : : indexse.expr, tmp);
4276 : 14923 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' "
4277 : : "below lower bound of %%ld", n+1, var_name);
4278 : 14923 : gfc_trans_runtime_check (true, false, cond, &se->pre, where, msg,
4279 : : fold_convert (long_integer_type_node,
4280 : : indexse.expr),
4281 : : fold_convert (long_integer_type_node, tmp));
4282 : 14923 : free (msg);
4283 : :
4284 : : /* Upper bound, but not for the last dimension of assumed-size
4285 : : arrays. */
4286 : 14923 : if (n < ar->dimen - 1 || ar->as->type != AS_ASSUMED_SIZE)
4287 : : {
4288 : 13190 : tmp = gfc_conv_array_ubound (decl, n);
4289 : 13190 : if (sym->attr.temporary)
4290 : : {
4291 : 18 : gfc_init_se (&tmpse, se);
4292 : 18 : gfc_conv_expr_type (&tmpse, ar->as->upper[n],
4293 : : gfc_array_index_type);
4294 : 18 : gfc_add_block_to_block (&se->pre, &tmpse.pre);
4295 : 18 : tmp = tmpse.expr;
4296 : : }
4297 : :
4298 : 13190 : cond = fold_build2_loc (input_location, GT_EXPR,
4299 : : logical_type_node, indexse.expr, tmp);
4300 : 13190 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' "
4301 : : "above upper bound of %%ld", n+1, var_name);
4302 : 13190 : gfc_trans_runtime_check (true, false, cond, &se->pre, where, msg,
4303 : : fold_convert (long_integer_type_node,
4304 : : indexse.expr),
4305 : : fold_convert (long_integer_type_node, tmp));
4306 : 13190 : free (msg);
4307 : : }
4308 : : }
4309 : :
4310 : : /* Multiply the index by the stride. */
4311 : 138789 : stride = gfc_conv_array_stride (decl, n);
4312 : 138789 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
4313 : : indexse.expr, stride);
4314 : :
4315 : : /* And add it to the total. */
4316 : 138789 : add_to_offset (&cst_offset, &offset, tmp);
4317 : : }
4318 : :
4319 : 112249 : if (!integer_zerop (cst_offset))
4320 : 60015 : offset = fold_build2_loc (input_location, PLUS_EXPR,
4321 : : gfc_array_index_type, offset, cst_offset);
4322 : :
4323 : : /* A pointer array component can be detected from its field decl. Fix
4324 : : the descriptor, mark the resulting variable decl and pass it to
4325 : : build_array_ref. */
4326 : 112249 : decl = NULL_TREE;
4327 : 112249 : if (get_CFI_desc (sym, expr, &decl, ar))
4328 : 3589 : decl = build_fold_indirect_ref_loc (input_location, decl);
4329 : 111502 : if (!expr->ts.deferred && !sym->attr.codimension
4330 : 221968 : && is_pointer_array (se->expr))
4331 : : {
4332 : 3811 : if (TREE_CODE (se->expr) == COMPONENT_REF)
4333 : 1144 : decl = se->expr;
4334 : 2667 : else if (INDIRECT_REF_P (se->expr))
4335 : 713 : decl = TREE_OPERAND (se->expr, 0);
4336 : : else
4337 : 1954 : decl = se->expr;
4338 : : }
4339 : 108438 : else if (expr->ts.deferred
4340 : 107691 : || (sym->ts.type == BT_CHARACTER
4341 : 14391 : && sym->attr.select_type_temporary))
4342 : : {
4343 : 2451 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se->expr)))
4344 : : {
4345 : 2415 : decl = se->expr;
4346 : 2415 : if (INDIRECT_REF_P (decl))
4347 : 20 : decl = TREE_OPERAND (decl, 0);
4348 : : }
4349 : : else
4350 : 36 : decl = sym->backend_decl;
4351 : : }
4352 : 105987 : else if (sym->ts.type == BT_CLASS)
4353 : : {
4354 : 2078 : if (UNLIMITED_POLY (sym))
4355 : : {
4356 : 98 : gfc_expr *class_expr = gfc_find_and_cut_at_last_class_ref (expr);
4357 : 98 : gfc_init_se (&tmpse, NULL);
4358 : 98 : gfc_conv_expr (&tmpse, class_expr);
4359 : 98 : if (!se->class_vptr)
4360 : 98 : se->class_vptr = gfc_class_vptr_get (tmpse.expr);
4361 : 98 : gfc_free_expr (class_expr);
4362 : 98 : decl = tmpse.expr;
4363 : 98 : }
4364 : : else
4365 : 1980 : decl = NULL_TREE;
4366 : : }
4367 : :
4368 : 112249 : free (var_name);
4369 : 112249 : se->expr = build_array_ref (se->expr, offset, decl, se->class_vptr);
4370 : : }
4371 : :
4372 : :
4373 : : /* Add the offset corresponding to array's ARRAY_DIM dimension and loop's
4374 : : LOOP_DIM dimension (if any) to array's offset. */
4375 : :
4376 : : static void
4377 : 52813 : add_array_offset (stmtblock_t *pblock, gfc_loopinfo *loop, gfc_ss *ss,
4378 : : gfc_array_ref *ar, int array_dim, int loop_dim)
4379 : : {
4380 : 52813 : gfc_se se;
4381 : 52813 : gfc_array_info *info;
4382 : 52813 : tree stride, index;
4383 : :
4384 : 52813 : info = &ss->info->data.array;
4385 : :
4386 : 52813 : gfc_init_se (&se, NULL);
4387 : 52813 : se.loop = loop;
4388 : 52813 : se.expr = info->descriptor;
4389 : 52813 : stride = gfc_conv_array_stride (info->descriptor, array_dim);
4390 : 52813 : index = conv_array_index_offset (&se, ss, array_dim, loop_dim, ar, stride);
4391 : 52813 : gfc_add_block_to_block (pblock, &se.pre);
4392 : :
4393 : 52813 : info->offset = fold_build2_loc (input_location, PLUS_EXPR,
4394 : : gfc_array_index_type,
4395 : : info->offset, index);
4396 : 52813 : info->offset = gfc_evaluate_now (info->offset, pblock);
4397 : 52813 : }
4398 : :
4399 : :
4400 : : /* Generate the code to be executed immediately before entering a
4401 : : scalarization loop. */
4402 : :
4403 : : static void
4404 : 131476 : gfc_trans_preloop_setup (gfc_loopinfo * loop, int dim, int flag,
4405 : : stmtblock_t * pblock)
4406 : : {
4407 : 131476 : tree stride;
4408 : 131476 : gfc_ss_info *ss_info;
4409 : 131476 : gfc_array_info *info;
4410 : 131476 : gfc_ss_type ss_type;
4411 : 131476 : gfc_ss *ss, *pss;
4412 : 131476 : gfc_loopinfo *ploop;
4413 : 131476 : gfc_array_ref *ar;
4414 : :
4415 : : /* This code will be executed before entering the scalarization loop
4416 : : for this dimension. */
4417 : 400310 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
4418 : : {
4419 : 268834 : ss_info = ss->info;
4420 : :
4421 : 268834 : if ((ss_info->useflags & flag) == 0)
4422 : 1456 : continue;
4423 : :
4424 : 267378 : ss_type = ss_info->type;
4425 : 322809 : if (ss_type != GFC_SS_SECTION
4426 : : && ss_type != GFC_SS_FUNCTION
4427 : 267378 : && ss_type != GFC_SS_CONSTRUCTOR
4428 : 267378 : && ss_type != GFC_SS_COMPONENT)
4429 : 55431 : continue;
4430 : :
4431 : 211947 : info = &ss_info->data.array;
4432 : :
4433 : 211947 : gcc_assert (dim < ss->dimen);
4434 : 211947 : gcc_assert (ss->dimen == loop->dimen);
4435 : :
4436 : 211947 : if (info->ref)
4437 : 148407 : ar = &info->ref->u.ar;
4438 : : else
4439 : : ar = NULL;
4440 : :
4441 : 211947 : if (dim == loop->dimen - 1 && loop->parent != NULL)
4442 : : {
4443 : : /* If we are in the outermost dimension of this loop, the previous
4444 : : dimension shall be in the parent loop. */
4445 : 3440 : gcc_assert (ss->parent != NULL);
4446 : :
4447 : 3440 : pss = ss->parent;
4448 : 3440 : ploop = loop->parent;
4449 : :
4450 : : /* ss and ss->parent are about the same array. */
4451 : 3440 : gcc_assert (ss_info == pss->info);
4452 : : }
4453 : : else
4454 : : {
4455 : : ploop = loop;
4456 : : pss = ss;
4457 : : }
4458 : :
4459 : 211947 : if (dim == loop->dimen - 1 && loop->parent == NULL)
4460 : : {
4461 : 163391 : gcc_assert (0 == ploop->order[0]);
4462 : :
4463 : 326782 : stride = gfc_conv_array_stride (info->descriptor,
4464 : 163391 : innermost_ss (ss)->dim[0]);
4465 : :
4466 : : /* Calculate the stride of the innermost loop. Hopefully this will
4467 : : allow the backend optimizers to do their stuff more effectively.
4468 : : */
4469 : 163391 : info->stride0 = gfc_evaluate_now (stride, pblock);
4470 : :
4471 : : /* For the outermost loop calculate the offset due to any
4472 : : elemental dimensions. It will have been initialized with the
4473 : : base offset of the array. */
4474 : 163391 : if (info->ref)
4475 : : {
4476 : 261225 : for (int i = 0; i < ar->dimen; i++)
4477 : : {
4478 : 150495 : if (ar->dimen_type[i] != DIMEN_ELEMENT)
4479 : 146238 : continue;
4480 : :
4481 : 4257 : add_array_offset (pblock, loop, ss, ar, i, /* unused */ -1);
4482 : : }
4483 : : }
4484 : : }
4485 : : else
4486 : : {
4487 : 48556 : int i;
4488 : :
4489 : 48556 : if (dim == loop->dimen - 1)
4490 : : i = 0;
4491 : : else
4492 : 45116 : i = dim + 1;
4493 : :
4494 : : /* For the time being, there is no loop reordering. */
4495 : 48556 : gcc_assert (i == ploop->order[i]);
4496 : 48556 : i = ploop->order[i];
4497 : :
4498 : : /* Add the offset for the previous loop dimension. */
4499 : 48556 : add_array_offset (pblock, ploop, ss, ar, pss->dim[i], i);
4500 : : }
4501 : :
4502 : : /* Remember this offset for the second loop. */
4503 : 211947 : if (dim == loop->temp_dim - 1 && loop->parent == NULL)
4504 : 49778 : info->saved_offset = info->offset;
4505 : : }
4506 : 131476 : }
4507 : :
4508 : :
4509 : : /* Start a scalarized expression. Creates a scope and declares loop
4510 : : variables. */
4511 : :
4512 : : void
4513 : 104852 : gfc_start_scalarized_body (gfc_loopinfo * loop, stmtblock_t * pbody)
4514 : : {
4515 : 104852 : int dim;
4516 : 104852 : int n;
4517 : 104852 : int flags;
4518 : :
4519 : 104852 : gcc_assert (!loop->array_parameter);
4520 : :
4521 : 234953 : for (dim = loop->dimen - 1; dim >= 0; dim--)
4522 : : {
4523 : 130101 : n = loop->order[dim];
4524 : :
4525 : 130101 : gfc_start_block (&loop->code[n]);
4526 : :
4527 : : /* Create the loop variable. */
4528 : 130101 : loop->loopvar[n] = gfc_create_var (gfc_array_index_type, "S");
4529 : :
4530 : 130101 : if (dim < loop->temp_dim)
4531 : : flags = 3;
4532 : : else
4533 : 90136 : flags = 1;
4534 : : /* Calculate values that will be constant within this loop. */
4535 : 130101 : gfc_trans_preloop_setup (loop, dim, flags, &loop->code[n]);
4536 : : }
4537 : 104852 : gfc_start_block (pbody);
4538 : 104852 : }
4539 : :
4540 : :
4541 : : /* Generates the actual loop code for a scalarization loop. */
4542 : :
4543 : : static void
4544 : 142116 : gfc_trans_scalarized_loop_end (gfc_loopinfo * loop, int n,
4545 : : stmtblock_t * pbody)
4546 : : {
4547 : 142116 : stmtblock_t block;
4548 : 142116 : tree cond;
4549 : 142116 : tree tmp;
4550 : 142116 : tree loopbody;
4551 : 142116 : tree exit_label;
4552 : 142116 : tree stmt;
4553 : 142116 : tree init;
4554 : 142116 : tree incr;
4555 : :
4556 : 142116 : if ((ompws_flags & (OMPWS_WORKSHARE_FLAG | OMPWS_SCALARIZER_WS
4557 : : | OMPWS_SCALARIZER_BODY))
4558 : : == (OMPWS_WORKSHARE_FLAG | OMPWS_SCALARIZER_WS)
4559 : 108 : && n == loop->dimen - 1)
4560 : : {
4561 : : /* We create an OMP_FOR construct for the outermost scalarized loop. */
4562 : 80 : init = make_tree_vec (1);
4563 : 80 : cond = make_tree_vec (1);
4564 : 80 : incr = make_tree_vec (1);
4565 : :
4566 : : /* Cycle statement is implemented with a goto. Exit statement must not
4567 : : be present for this loop. */
4568 : 80 : exit_label = gfc_build_label_decl (NULL_TREE);
4569 : 80 : TREE_USED (exit_label) = 1;
4570 : :
4571 : : /* Label for cycle statements (if needed). */
4572 : 80 : tmp = build1_v (LABEL_EXPR, exit_label);
4573 : 80 : gfc_add_expr_to_block (pbody, tmp);
4574 : :
4575 : 80 : stmt = make_node (OMP_FOR);
4576 : :
4577 : 80 : TREE_TYPE (stmt) = void_type_node;
4578 : 80 : OMP_FOR_BODY (stmt) = loopbody = gfc_finish_block (pbody);
4579 : :
4580 : 80 : OMP_FOR_CLAUSES (stmt) = build_omp_clause (input_location,
4581 : : OMP_CLAUSE_SCHEDULE);
4582 : 80 : OMP_CLAUSE_SCHEDULE_KIND (OMP_FOR_CLAUSES (stmt))
4583 : 80 : = OMP_CLAUSE_SCHEDULE_STATIC;
4584 : 80 : if (ompws_flags & OMPWS_NOWAIT)
4585 : 33 : OMP_CLAUSE_CHAIN (OMP_FOR_CLAUSES (stmt))
4586 : 66 : = build_omp_clause (input_location, OMP_CLAUSE_NOWAIT);
4587 : :
4588 : : /* Initialize the loopvar. */
4589 : 80 : TREE_VEC_ELT (init, 0) = build2_v (MODIFY_EXPR, loop->loopvar[n],
4590 : : loop->from[n]);
4591 : 80 : OMP_FOR_INIT (stmt) = init;
4592 : : /* The exit condition. */
4593 : 80 : TREE_VEC_ELT (cond, 0) = build2_loc (input_location, LE_EXPR,
4594 : : logical_type_node,
4595 : : loop->loopvar[n], loop->to[n]);
4596 : 80 : SET_EXPR_LOCATION (TREE_VEC_ELT (cond, 0), input_location);
4597 : 80 : OMP_FOR_COND (stmt) = cond;
4598 : : /* Increment the loopvar. */
4599 : 80 : tmp = build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
4600 : : loop->loopvar[n], gfc_index_one_node);
4601 : 80 : TREE_VEC_ELT (incr, 0) = fold_build2_loc (input_location, MODIFY_EXPR,
4602 : : void_type_node, loop->loopvar[n], tmp);
4603 : 80 : OMP_FOR_INCR (stmt) = incr;
4604 : :
4605 : 80 : ompws_flags &= ~OMPWS_CURR_SINGLEUNIT;
4606 : 80 : gfc_add_expr_to_block (&loop->code[n], stmt);
4607 : : }
4608 : : else
4609 : : {
4610 : 284072 : bool reverse_loop = (loop->reverse[n] == GFC_REVERSE_SET)
4611 : 142036 : && (loop->temp_ss == NULL);
4612 : :
4613 : 142036 : loopbody = gfc_finish_block (pbody);
4614 : :
4615 : 142036 : if (reverse_loop)
4616 : 202 : std::swap (loop->from[n], loop->to[n]);
4617 : :
4618 : : /* Initialize the loopvar. */
4619 : 142036 : if (loop->loopvar[n] != loop->from[n])
4620 : 141240 : gfc_add_modify (&loop->code[n], loop->loopvar[n], loop->from[n]);
4621 : :
4622 : 142036 : exit_label = gfc_build_label_decl (NULL_TREE);
4623 : :
4624 : : /* Generate the loop body. */
4625 : 142036 : gfc_init_block (&block);
4626 : :
4627 : : /* The exit condition. */
4628 : 283870 : cond = fold_build2_loc (input_location, reverse_loop ? LT_EXPR : GT_EXPR,
4629 : : logical_type_node, loop->loopvar[n], loop->to[n]);
4630 : 142036 : tmp = build1_v (GOTO_EXPR, exit_label);
4631 : 142036 : TREE_USED (exit_label) = 1;
4632 : 142036 : tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
4633 : 142036 : gfc_add_expr_to_block (&block, tmp);
4634 : :
4635 : : /* The main body. */
4636 : 142036 : gfc_add_expr_to_block (&block, loopbody);
4637 : :
4638 : : /* Increment the loopvar. */
4639 : 283870 : tmp = fold_build2_loc (input_location,
4640 : : reverse_loop ? MINUS_EXPR : PLUS_EXPR,
4641 : : gfc_array_index_type, loop->loopvar[n],
4642 : : gfc_index_one_node);
4643 : :
4644 : 142036 : gfc_add_modify (&block, loop->loopvar[n], tmp);
4645 : :
4646 : : /* Build the loop. */
4647 : 142036 : tmp = gfc_finish_block (&block);
4648 : 142036 : tmp = build1_v (LOOP_EXPR, tmp);
4649 : 142036 : gfc_add_expr_to_block (&loop->code[n], tmp);
4650 : :
4651 : : /* Add the exit label. */
4652 : 142036 : tmp = build1_v (LABEL_EXPR, exit_label);
4653 : 142036 : gfc_add_expr_to_block (&loop->code[n], tmp);
4654 : : }
4655 : :
4656 : 142116 : }
4657 : :
4658 : :
4659 : : /* Finishes and generates the loops for a scalarized expression. */
4660 : :
4661 : : void
4662 : 108888 : gfc_trans_scalarizing_loops (gfc_loopinfo * loop, stmtblock_t * body)
4663 : : {
4664 : 108888 : int dim;
4665 : 108888 : int n;
4666 : 108888 : gfc_ss *ss;
4667 : 108888 : stmtblock_t *pblock;
4668 : 108888 : tree tmp;
4669 : :
4670 : 108888 : pblock = body;
4671 : : /* Generate the loops. */
4672 : 243011 : for (dim = 0; dim < loop->dimen; dim++)
4673 : : {
4674 : 134123 : n = loop->order[dim];
4675 : 134123 : gfc_trans_scalarized_loop_end (loop, n, pblock);
4676 : 134123 : loop->loopvar[n] = NULL_TREE;
4677 : 134123 : pblock = &loop->code[n];
4678 : : }
4679 : :
4680 : 108888 : tmp = gfc_finish_block (pblock);
4681 : 108888 : gfc_add_expr_to_block (&loop->pre, tmp);
4682 : :
4683 : : /* Clear all the used flags. */
4684 : 321592 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
4685 : 212704 : if (ss->parent == NULL)
4686 : 209201 : ss->info->useflags = 0;
4687 : 108888 : }
4688 : :
4689 : :
4690 : : /* Finish the main body of a scalarized expression, and start the secondary
4691 : : copying body. */
4692 : :
4693 : : void
4694 : 6618 : gfc_trans_scalarized_loop_boundary (gfc_loopinfo * loop, stmtblock_t * body)
4695 : : {
4696 : 6618 : int dim;
4697 : 6618 : int n;
4698 : 6618 : stmtblock_t *pblock;
4699 : 6618 : gfc_ss *ss;
4700 : :
4701 : 6618 : pblock = body;
4702 : : /* We finish as many loops as are used by the temporary. */
4703 : 7993 : for (dim = 0; dim < loop->temp_dim - 1; dim++)
4704 : : {
4705 : 1375 : n = loop->order[dim];
4706 : 1375 : gfc_trans_scalarized_loop_end (loop, n, pblock);
4707 : 1375 : loop->loopvar[n] = NULL_TREE;
4708 : 1375 : pblock = &loop->code[n];
4709 : : }
4710 : :
4711 : : /* We don't want to finish the outermost loop entirely. */
4712 : 6618 : n = loop->order[loop->temp_dim - 1];
4713 : 6618 : gfc_trans_scalarized_loop_end (loop, n, pblock);
4714 : :
4715 : : /* Restore the initial offsets. */
4716 : 19259 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
4717 : : {
4718 : 12641 : gfc_ss_type ss_type;
4719 : 12641 : gfc_ss_info *ss_info;
4720 : :
4721 : 12641 : ss_info = ss->info;
4722 : :
4723 : 12641 : if ((ss_info->useflags & 2) == 0)
4724 : 3554 : continue;
4725 : :
4726 : 9087 : ss_type = ss_info->type;
4727 : 9241 : if (ss_type != GFC_SS_SECTION
4728 : : && ss_type != GFC_SS_FUNCTION
4729 : 9087 : && ss_type != GFC_SS_CONSTRUCTOR
4730 : 9087 : && ss_type != GFC_SS_COMPONENT)
4731 : 154 : continue;
4732 : :
4733 : 8933 : ss_info->data.array.offset = ss_info->data.array.saved_offset;
4734 : : }
4735 : :
4736 : : /* Restart all the inner loops we just finished. */
4737 : 7993 : for (dim = loop->temp_dim - 2; dim >= 0; dim--)
4738 : : {
4739 : 1375 : n = loop->order[dim];
4740 : :
4741 : 1375 : gfc_start_block (&loop->code[n]);
4742 : :
4743 : 1375 : loop->loopvar[n] = gfc_create_var (gfc_array_index_type, "Q");
4744 : :
4745 : 1375 : gfc_trans_preloop_setup (loop, dim, 2, &loop->code[n]);
4746 : : }
4747 : :
4748 : : /* Start a block for the secondary copying code. */
4749 : 6618 : gfc_start_block (body);
4750 : 6618 : }
4751 : :
4752 : :
4753 : : /* Precalculate (either lower or upper) bound of an array section.
4754 : : BLOCK: Block in which the (pre)calculation code will go.
4755 : : BOUNDS[DIM]: Where the bound value will be stored once evaluated.
4756 : : VALUES[DIM]: Specified bound (NULL <=> unspecified).
4757 : : DESC: Array descriptor from which the bound will be picked if unspecified
4758 : : (either lower or upper bound according to LBOUND). */
4759 : :
4760 : : static void
4761 : 474062 : evaluate_bound (stmtblock_t *block, tree *bounds, gfc_expr ** values,
4762 : : tree desc, int dim, bool lbound, bool deferred)
4763 : : {
4764 : 474062 : gfc_se se;
4765 : 474062 : gfc_expr * input_val = values[dim];
4766 : 474062 : tree *output = &bounds[dim];
4767 : :
4768 : :
4769 : 474062 : if (input_val)
4770 : : {
4771 : : /* Specified section bound. */
4772 : 45661 : gfc_init_se (&se, NULL);
4773 : 45661 : gfc_conv_expr_type (&se, input_val, gfc_array_index_type);
4774 : 45661 : gfc_add_block_to_block (block, &se.pre);
4775 : 45661 : *output = se.expr;
4776 : : }
4777 : 428401 : else if (deferred && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
4778 : : {
4779 : : /* The gfc_conv_array_lbound () routine returns a constant zero for
4780 : : deferred length arrays, which in the scalarizer wreaks havoc, when
4781 : : copying to a (newly allocated) one-based array.
4782 : : Keep returning the actual result in sync for both bounds. */
4783 : 176511 : *output = lbound ? gfc_conv_descriptor_lbound_get (desc,
4784 : : gfc_rank_cst[dim]):
4785 : 58900 : gfc_conv_descriptor_ubound_get (desc,
4786 : : gfc_rank_cst[dim]);
4787 : : }
4788 : : else
4789 : : {
4790 : : /* No specific bound specified so use the bound of the array. */
4791 : 462734 : *output = lbound ? gfc_conv_array_lbound (desc, dim) :
4792 : 151944 : gfc_conv_array_ubound (desc, dim);
4793 : : }
4794 : 474062 : *output = gfc_evaluate_now (*output, block);
4795 : 474062 : }
4796 : :
4797 : :
4798 : : /* Calculate the lower bound of an array section. */
4799 : :
4800 : : static void
4801 : 237545 : gfc_conv_section_startstride (stmtblock_t * block, gfc_ss * ss, int dim)
4802 : : {
4803 : 237545 : gfc_expr *stride = NULL;
4804 : 237545 : tree desc;
4805 : 237545 : gfc_se se;
4806 : 237545 : gfc_array_info *info;
4807 : 237545 : gfc_array_ref *ar;
4808 : :
4809 : 237545 : gcc_assert (ss->info->type == GFC_SS_SECTION);
4810 : :
4811 : 237545 : info = &ss->info->data.array;
4812 : 237545 : ar = &info->ref->u.ar;
4813 : :
4814 : 237545 : if (ar->dimen_type[dim] == DIMEN_VECTOR)
4815 : : {
4816 : : /* We use a zero-based index to access the vector. */
4817 : 764 : info->start[dim] = gfc_index_zero_node;
4818 : 764 : info->end[dim] = NULL;
4819 : 764 : info->stride[dim] = gfc_index_one_node;
4820 : 764 : return;
4821 : : }
4822 : :
4823 : 236781 : gcc_assert (ar->dimen_type[dim] == DIMEN_RANGE
4824 : : || ar->dimen_type[dim] == DIMEN_THIS_IMAGE);
4825 : 236781 : desc = info->descriptor;
4826 : 236781 : stride = ar->stride[dim];
4827 : :
4828 : :
4829 : : /* Calculate the start of the range. For vector subscripts this will
4830 : : be the range of the vector. */
4831 : 236781 : evaluate_bound (block, info->start, ar->start, desc, dim, true,
4832 : 236781 : ar->as->type == AS_DEFERRED);
4833 : :
4834 : : /* Similarly calculate the end. Although this is not used in the
4835 : : scalarizer, it is needed when checking bounds and where the end
4836 : : is an expression with side-effects. */
4837 : 236781 : evaluate_bound (block, info->end, ar->end, desc, dim, false,
4838 : 236781 : ar->as->type == AS_DEFERRED);
4839 : :
4840 : :
4841 : : /* Calculate the stride. */
4842 : 236781 : if (stride == NULL)
4843 : 225060 : info->stride[dim] = gfc_index_one_node;
4844 : : else
4845 : : {
4846 : 11721 : gfc_init_se (&se, NULL);
4847 : 11721 : gfc_conv_expr_type (&se, stride, gfc_array_index_type);
4848 : 11721 : gfc_add_block_to_block (block, &se.pre);
4849 : 11721 : info->stride[dim] = gfc_evaluate_now (se.expr, block);
4850 : : }
4851 : : }
4852 : :
4853 : :
4854 : : /* Generate in INNER the bounds checking code along the dimension DIM for
4855 : : the array associated with SS_INFO. */
4856 : :
4857 : : static void
4858 : 23743 : add_check_section_in_array_bounds (stmtblock_t *inner, gfc_ss_info *ss_info,
4859 : : int dim)
4860 : : {
4861 : 23743 : gfc_expr *expr = ss_info->expr;
4862 : 23743 : locus *expr_loc = &expr->where;
4863 : 23743 : const char *expr_name = expr->symtree->name;
4864 : :
4865 : 23743 : gfc_array_info *info = &ss_info->data.array;
4866 : :
4867 : 23743 : bool check_upper;
4868 : 23743 : if (dim == info->ref->u.ar.dimen - 1
4869 : 20220 : && info->ref->u.ar.as->type == AS_ASSUMED_SIZE)
4870 : : check_upper = false;
4871 : : else
4872 : 23447 : check_upper = true;
4873 : :
4874 : : /* Zero stride is not allowed. */
4875 : 23743 : tree tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
4876 : : info->stride[dim], gfc_index_zero_node);
4877 : 23743 : char * msg = xasprintf ("Zero stride is not allowed, for dimension %d "
4878 : : "of array '%s'", dim + 1, expr_name);
4879 : 23743 : gfc_trans_runtime_check (true, false, tmp, inner, expr_loc, msg);
4880 : 23743 : free (msg);
4881 : :
4882 : 23743 : tree desc = info->descriptor;
4883 : :
4884 : : /* This is the run-time equivalent of resolve.cc's
4885 : : check_dimension. The logical is more readable there
4886 : : than it is here, with all the trees. */
4887 : 23743 : tree lbound = gfc_conv_array_lbound (desc, dim);
4888 : 23743 : tree end = info->end[dim];
4889 : 23743 : tree ubound = check_upper ? gfc_conv_array_ubound (desc, dim) : NULL_TREE;
4890 : :
4891 : : /* non_zerosized is true when the selected range is not
4892 : : empty. */
4893 : 23743 : tree stride_pos = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
4894 : : info->stride[dim], gfc_index_zero_node);
4895 : 23743 : tmp = fold_build2_loc (input_location, LE_EXPR, logical_type_node,
4896 : : info->start[dim], end);
4897 : 23743 : stride_pos = fold_build2_loc (input_location, TRUTH_AND_EXPR,
4898 : : logical_type_node, stride_pos, tmp);
4899 : :
4900 : 23743 : tree stride_neg = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
4901 : : info->stride[dim], gfc_index_zero_node);
4902 : 23743 : tmp = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
4903 : : info->start[dim], end);
4904 : 23743 : stride_neg = fold_build2_loc (input_location, TRUTH_AND_EXPR,
4905 : : logical_type_node, stride_neg, tmp);
4906 : 23743 : tree non_zerosized = fold_build2_loc (input_location, TRUTH_OR_EXPR,
4907 : : logical_type_node, stride_pos,
4908 : : stride_neg);
4909 : :
4910 : : /* Check the start of the range against the lower and upper
4911 : : bounds of the array, if the range is not empty.
4912 : : If upper bound is present, include both bounds in the
4913 : : error message. */
4914 : 23743 : if (check_upper)
4915 : : {
4916 : 23447 : tmp = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
4917 : : info->start[dim], lbound);
4918 : 23447 : tmp = fold_build2_loc (input_location, TRUTH_AND_EXPR, logical_type_node,
4919 : : non_zerosized, tmp);
4920 : 23447 : tree tmp2 = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
4921 : : info->start[dim], ubound);
4922 : 23447 : tmp2 = fold_build2_loc (input_location, TRUTH_AND_EXPR, logical_type_node,
4923 : : non_zerosized, tmp2);
4924 : 23447 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' outside of "
4925 : : "expected range (%%ld:%%ld)", dim + 1, expr_name);
4926 : 23447 : gfc_trans_runtime_check (true, false, tmp, inner, expr_loc, msg,
4927 : : fold_convert (long_integer_type_node, info->start[dim]),
4928 : : fold_convert (long_integer_type_node, lbound),
4929 : : fold_convert (long_integer_type_node, ubound));
4930 : 23447 : gfc_trans_runtime_check (true, false, tmp2, inner, expr_loc, msg,
4931 : : fold_convert (long_integer_type_node, info->start[dim]),
4932 : : fold_convert (long_integer_type_node, lbound),
4933 : : fold_convert (long_integer_type_node, ubound));
4934 : 23447 : free (msg);
4935 : : }
4936 : : else
4937 : : {
4938 : 296 : tmp = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
4939 : : info->start[dim], lbound);
4940 : 296 : tmp = fold_build2_loc (input_location, TRUTH_AND_EXPR, logical_type_node,
4941 : : non_zerosized, tmp);
4942 : 296 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' below "
4943 : : "lower bound of %%ld", dim + 1, expr_name);
4944 : 296 : gfc_trans_runtime_check (true, false, tmp, inner, expr_loc, msg,
4945 : : fold_convert (long_integer_type_node, info->start[dim]),
4946 : : fold_convert (long_integer_type_node, lbound));
4947 : 296 : free (msg);
4948 : : }
4949 : :
4950 : : /* Compute the last element of the range, which is not
4951 : : necessarily "end" (think 0:5:3, which doesn't contain 5)
4952 : : and check it against both lower and upper bounds. */
4953 : :
4954 : 23743 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
4955 : : end, info->start[dim]);
4956 : 23743 : tmp = fold_build2_loc (input_location, TRUNC_MOD_EXPR, gfc_array_index_type,
4957 : : tmp, info->stride[dim]);
4958 : 23743 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
4959 : : end, tmp);
4960 : 23743 : tree tmp2 = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
4961 : : tmp, lbound);
4962 : 23743 : tmp2 = fold_build2_loc (input_location, TRUTH_AND_EXPR, logical_type_node,
4963 : : non_zerosized, tmp2);
4964 : 23743 : if (check_upper)
4965 : : {
4966 : 23447 : tree tmp3 = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
4967 : : tmp, ubound);
4968 : 23447 : tmp3 = fold_build2_loc (input_location, TRUTH_AND_EXPR, logical_type_node,
4969 : : non_zerosized, tmp3);
4970 : 23447 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' outside of "
4971 : : "expected range (%%ld:%%ld)", dim + 1, expr_name);
4972 : 23447 : gfc_trans_runtime_check (true, false, tmp2, inner, expr_loc, msg,
4973 : : fold_convert (long_integer_type_node, tmp),
4974 : : fold_convert (long_integer_type_node, ubound),
4975 : : fold_convert (long_integer_type_node, lbound));
4976 : 23447 : gfc_trans_runtime_check (true, false, tmp3, inner, expr_loc, msg,
4977 : : fold_convert (long_integer_type_node, tmp),
4978 : : fold_convert (long_integer_type_node, ubound),
4979 : : fold_convert (long_integer_type_node, lbound));
4980 : 23447 : free (msg);
4981 : : }
4982 : : else
4983 : : {
4984 : 296 : msg = xasprintf ("Index '%%ld' of dimension %d of array '%s' below "
4985 : : "lower bound of %%ld", dim + 1, expr_name);
4986 : 296 : gfc_trans_runtime_check (true, false, tmp2, inner, expr_loc, msg,
4987 : : fold_convert (long_integer_type_node, tmp),
4988 : : fold_convert (long_integer_type_node, lbound));
4989 : 296 : free (msg);
4990 : : }
4991 : 23743 : }
4992 : :
4993 : :
4994 : : /* Tells whether we need to generate bounds checking code for the array
4995 : : associated with SS. */
4996 : :
4997 : : bool
4998 : 24740 : bounds_check_needed (gfc_ss *ss)
4999 : : {
5000 : : /* Catch allocatable lhs in f2003. */
5001 : 24740 : if (flag_realloc_lhs && ss->no_bounds_check)
5002 : : return false;
5003 : :
5004 : 24399 : gfc_ss_info *ss_info = ss->info;
5005 : 24399 : if (ss_info->type == GFC_SS_SECTION)
5006 : : return true;
5007 : :
5008 : 4006 : if (!(ss_info->type == GFC_SS_INTRINSIC
5009 : 227 : && ss_info->expr
5010 : 227 : && ss_info->expr->expr_type == EXPR_FUNCTION))
5011 : : return false;
5012 : :
5013 : 227 : gfc_intrinsic_sym *isym = ss_info->expr->value.function.isym;
5014 : 227 : if (!(isym
5015 : 227 : && (isym->id == GFC_ISYM_MAXLOC
5016 : 203 : || isym->id == GFC_ISYM_MINLOC)))
5017 : : return false;
5018 : :
5019 : 34 : return gfc_inline_intrinsic_function_p (ss_info->expr);
5020 : : }
5021 : :
5022 : :
5023 : : /* Calculates the range start and stride for a SS chain. Also gets the
5024 : : descriptor and data pointer. The range of vector subscripts is the size
5025 : : of the vector. Array bounds are also checked. */
5026 : :
5027 : : void
5028 : 168302 : gfc_conv_ss_startstride (gfc_loopinfo * loop)
5029 : : {
5030 : 168302 : int n;
5031 : 168302 : tree tmp;
5032 : 168302 : gfc_ss *ss;
5033 : :
5034 : 168302 : gfc_loopinfo * const outer_loop = outermost_loop (loop);
5035 : :
5036 : 168302 : loop->dimen = 0;
5037 : : /* Determine the rank of the loop. */
5038 : 186184 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
5039 : : {
5040 : 186184 : switch (ss->info->type)
5041 : : {
5042 : 157921 : case GFC_SS_SECTION:
5043 : 157921 : case GFC_SS_CONSTRUCTOR:
5044 : 157921 : case GFC_SS_FUNCTION:
5045 : 157921 : case GFC_SS_COMPONENT:
5046 : 157921 : loop->dimen = ss->dimen;
5047 : 157921 : goto done;
5048 : :
5049 : : /* As usual, lbound and ubound are exceptions!. */
5050 : 10381 : case GFC_SS_INTRINSIC:
5051 : 10381 : switch (ss->info->expr->value.function.isym->id)
5052 : : {
5053 : 10381 : case GFC_ISYM_LBOUND:
5054 : 10381 : case GFC_ISYM_UBOUND:
5055 : 10381 : case GFC_ISYM_LCOBOUND:
5056 : 10381 : case GFC_ISYM_UCOBOUND:
5057 : 10381 : case GFC_ISYM_MAXLOC:
5058 : 10381 : case GFC_ISYM_MINLOC:
5059 : 10381 : case GFC_ISYM_SHAPE:
5060 : 10381 : case GFC_ISYM_THIS_IMAGE:
5061 : 10381 : loop->dimen = ss->dimen;
5062 : 10381 : goto done;
5063 : :
5064 : : default:
5065 : : break;
5066 : : }
5067 : :
5068 : 17882 : default:
5069 : 17882 : break;
5070 : : }
5071 : : }
5072 : :
5073 : : /* We should have determined the rank of the expression by now. If
5074 : : not, that's bad news. */
5075 : 0 : gcc_unreachable ();
5076 : :
5077 : : done:
5078 : : /* Loop over all the SS in the chain. */
5079 : 435590 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
5080 : : {
5081 : 267288 : gfc_ss_info *ss_info;
5082 : 267288 : gfc_array_info *info;
5083 : 267288 : gfc_expr *expr;
5084 : :
5085 : 267288 : ss_info = ss->info;
5086 : 267288 : expr = ss_info->expr;
5087 : 267288 : info = &ss_info->data.array;
5088 : :
5089 : 267288 : if (expr && expr->shape && !info->shape)
5090 : 157303 : info->shape = expr->shape;
5091 : :
5092 : 267288 : switch (ss_info->type)
5093 : : {
5094 : 171019 : case GFC_SS_SECTION:
5095 : : /* Get the descriptor for the array. If it is a cross loops array,
5096 : : we got the descriptor already in the outermost loop. */
5097 : 171019 : if (ss->parent == NULL)
5098 : 167630 : gfc_conv_ss_descriptor (&outer_loop->pre, ss,
5099 : 167630 : !loop->array_parameter);
5100 : :
5101 : 408036 : for (n = 0; n < ss->dimen; n++)
5102 : 237017 : gfc_conv_section_startstride (&outer_loop->pre, ss, ss->dim[n]);
5103 : : break;
5104 : :
5105 : 10633 : case GFC_SS_INTRINSIC:
5106 : 10633 : switch (expr->value.function.isym->id)
5107 : : {
5108 : 2705 : case GFC_ISYM_MINLOC:
5109 : 2705 : case GFC_ISYM_MAXLOC:
5110 : 2705 : {
5111 : 2705 : gfc_se se;
5112 : 2705 : gfc_init_se (&se, nullptr);
5113 : 2705 : se.loop = loop;
5114 : 2705 : se.ss = ss;
5115 : 2705 : gfc_conv_intrinsic_function (&se, expr);
5116 : 2705 : gfc_add_block_to_block (&outer_loop->pre, &se.pre);
5117 : 2705 : gfc_add_block_to_block (&outer_loop->post, &se.post);
5118 : :
5119 : 2705 : info->descriptor = se.expr;
5120 : :
5121 : 2705 : info->data = gfc_conv_array_data (info->descriptor);
5122 : 2705 : info->data = gfc_evaluate_now (info->data, &outer_loop->pre);
5123 : :
5124 : 2705 : gfc_expr *array = expr->value.function.actual->expr;
5125 : 2705 : tree rank = build_int_cst (gfc_array_index_type, array->rank);
5126 : :
5127 : 2705 : tree tmp = fold_build2_loc (input_location, MINUS_EXPR,
5128 : : gfc_array_index_type, rank,
5129 : : gfc_index_one_node);
5130 : :
5131 : 2705 : info->end[0] = gfc_evaluate_now (tmp, &outer_loop->pre);
5132 : 2705 : info->start[0] = gfc_index_zero_node;
5133 : 2705 : info->stride[0] = gfc_index_one_node;
5134 : 2705 : info->offset = gfc_index_zero_node;
5135 : 2705 : continue;
5136 : 2705 : }
5137 : :
5138 : : /* Fall through to supply start and stride. */
5139 : 2990 : case GFC_ISYM_LBOUND:
5140 : 2990 : case GFC_ISYM_UBOUND:
5141 : : /* This is the variant without DIM=... */
5142 : 2990 : gcc_assert (expr->value.function.actual->next->expr == NULL);
5143 : : /* Fall through. */
5144 : :
5145 : 7715 : case GFC_ISYM_SHAPE:
5146 : 7715 : {
5147 : 7715 : gfc_expr *arg;
5148 : :
5149 : 7715 : arg = expr->value.function.actual->expr;
5150 : 7715 : if (arg->rank == -1)
5151 : : {
5152 : 1157 : gfc_se se;
5153 : 1157 : tree rank, tmp;
5154 : :
5155 : : /* The rank (hence the return value's shape) is unknown,
5156 : : we have to retrieve it. */
5157 : 1157 : gfc_init_se (&se, NULL);
5158 : 1157 : se.descriptor_only = 1;
5159 : 1157 : gfc_conv_expr (&se, arg);
5160 : : /* This is a bare variable, so there is no preliminary
5161 : : or cleanup code unless -std=f202y and bounds checking
5162 : : is on. */
5163 : 1157 : if (!((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
5164 : 0 : && (gfc_option.allow_std & GFC_STD_F202Y)))
5165 : 1157 : gcc_assert (se.pre.head == NULL_TREE
5166 : : && se.post.head == NULL_TREE);
5167 : 1157 : rank = gfc_conv_descriptor_rank (se.expr);
5168 : 1157 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
5169 : : gfc_array_index_type,
5170 : : fold_convert (gfc_array_index_type,
5171 : : rank),
5172 : : gfc_index_one_node);
5173 : 1157 : info->end[0] = gfc_evaluate_now (tmp, &outer_loop->pre);
5174 : 1157 : info->start[0] = gfc_index_zero_node;
5175 : 1157 : info->stride[0] = gfc_index_one_node;
5176 : 1157 : continue;
5177 : 1157 : }
5178 : : /* Otherwise fall through GFC_SS_FUNCTION. */
5179 : : gcc_fallthrough ();
5180 : : }
5181 : : case GFC_ISYM_LCOBOUND:
5182 : : case GFC_ISYM_UCOBOUND:
5183 : : case GFC_ISYM_THIS_IMAGE:
5184 : : break;
5185 : :
5186 : 0 : default:
5187 : 0 : continue;
5188 : 0 : }
5189 : :
5190 : : /* FALLTHRU */
5191 : : case GFC_SS_CONSTRUCTOR:
5192 : : case GFC_SS_FUNCTION:
5193 : 119784 : for (n = 0; n < ss->dimen; n++)
5194 : : {
5195 : 64384 : int dim = ss->dim[n];
5196 : :
5197 : 64384 : info->start[dim] = gfc_index_zero_node;
5198 : 64384 : info->end[dim] = gfc_index_zero_node;
5199 : 64384 : info->stride[dim] = gfc_index_one_node;
5200 : : }
5201 : : break;
5202 : :
5203 : : default:
5204 : : break;
5205 : : }
5206 : : }
5207 : :
5208 : : /* The rest is just runtime bounds checking. */
5209 : 168302 : if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
5210 : : {
5211 : 16777 : stmtblock_t block;
5212 : 16777 : tree size[GFC_MAX_DIMENSIONS];
5213 : 16777 : tree tmp3;
5214 : 16777 : gfc_array_info *info;
5215 : 16777 : char *msg;
5216 : 16777 : int dim;
5217 : :
5218 : 16777 : gfc_start_block (&block);
5219 : :
5220 : 53747 : for (n = 0; n < loop->dimen; n++)
5221 : 20193 : size[n] = NULL_TREE;
5222 : :
5223 : : /* If there is a constructor involved, derive size[] from its shape. */
5224 : 38753 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
5225 : : {
5226 : 24419 : gfc_ss_info *ss_info;
5227 : :
5228 : 24419 : ss_info = ss->info;
5229 : 24419 : info = &ss_info->data.array;
5230 : :
5231 : 24419 : if (ss_info->type == GFC_SS_CONSTRUCTOR && info->shape)
5232 : : {
5233 : 5150 : for (n = 0; n < loop->dimen; n++)
5234 : : {
5235 : 2707 : if (size[n] == NULL)
5236 : : {
5237 : 2707 : gcc_assert (info->shape[n]);
5238 : 2707 : size[n] = gfc_conv_mpz_to_tree (info->shape[n],
5239 : : gfc_index_integer_kind);
5240 : : }
5241 : : }
5242 : : break;
5243 : : }
5244 : : }
5245 : :
5246 : 41517 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
5247 : : {
5248 : 24740 : stmtblock_t inner;
5249 : 24740 : gfc_ss_info *ss_info;
5250 : 24740 : gfc_expr *expr;
5251 : 24740 : locus *expr_loc;
5252 : 24740 : const char *expr_name;
5253 : 24740 : char *ref_name = NULL;
5254 : :
5255 : 24740 : if (!bounds_check_needed (ss))
5256 : 4313 : continue;
5257 : :
5258 : 20427 : ss_info = ss->info;
5259 : 20427 : expr = ss_info->expr;
5260 : 20427 : expr_loc = &expr->where;
5261 : 20427 : if (expr->ref)
5262 : 20393 : expr_name = ref_name = abridged_ref_name (expr, NULL);
5263 : : else
5264 : 34 : expr_name = expr->symtree->name;
5265 : :
5266 : 20427 : gfc_start_block (&inner);
5267 : :
5268 : : /* TODO: range checking for mapped dimensions. */
5269 : 20427 : info = &ss_info->data.array;
5270 : :
5271 : : /* This code only checks ranges. Elemental and vector
5272 : : dimensions are checked later. */
5273 : 64645 : for (n = 0; n < loop->dimen; n++)
5274 : : {
5275 : 23791 : dim = ss->dim[n];
5276 : 23791 : if (ss_info->type == GFC_SS_SECTION)
5277 : : {
5278 : 23757 : if (info->ref->u.ar.dimen_type[dim] != DIMEN_RANGE)
5279 : 14 : continue;
5280 : :
5281 : 23743 : add_check_section_in_array_bounds (&inner, ss_info, dim);
5282 : : }
5283 : :
5284 : : /* Check the section sizes match. */
5285 : 23777 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
5286 : : gfc_array_index_type, info->end[dim],
5287 : : info->start[dim]);
5288 : 23777 : tmp = fold_build2_loc (input_location, FLOOR_DIV_EXPR,
5289 : : gfc_array_index_type, tmp,
5290 : : info->stride[dim]);
5291 : 23777 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
5292 : : gfc_array_index_type,
5293 : : gfc_index_one_node, tmp);
5294 : 23777 : tmp = fold_build2_loc (input_location, MAX_EXPR,
5295 : : gfc_array_index_type, tmp,
5296 : 23777 : build_int_cst (gfc_array_index_type, 0));
5297 : : /* We remember the size of the first section, and check all the
5298 : : others against this. */
5299 : 23777 : if (size[n])
5300 : : {
5301 : 7162 : tmp3 = fold_build2_loc (input_location, NE_EXPR,
5302 : : logical_type_node, tmp, size[n]);
5303 : 7162 : if (ss_info->type == GFC_SS_INTRINSIC)
5304 : 0 : msg = xasprintf ("Extent mismatch for dimension %d of the "
5305 : : "result of intrinsic '%s' (%%ld/%%ld)",
5306 : : dim + 1, expr_name);
5307 : : else
5308 : 7162 : msg = xasprintf ("Array bound mismatch for dimension %d "
5309 : : "of array '%s' (%%ld/%%ld)",
5310 : : dim + 1, expr_name);
5311 : :
5312 : 7162 : gfc_trans_runtime_check (true, false, tmp3, &inner,
5313 : : expr_loc, msg,
5314 : : fold_convert (long_integer_type_node, tmp),
5315 : : fold_convert (long_integer_type_node, size[n]));
5316 : :
5317 : 7162 : free (msg);
5318 : : }
5319 : : else
5320 : 16615 : size[n] = gfc_evaluate_now (tmp, &inner);
5321 : : }
5322 : :
5323 : 20427 : tmp = gfc_finish_block (&inner);
5324 : :
5325 : : /* For optional arguments, only check bounds if the argument is
5326 : : present. */
5327 : 20427 : if ((expr->symtree->n.sym->attr.optional
5328 : 20427 : || expr->symtree->n.sym->attr.not_always_present)
5329 : 308 : && expr->symtree->n.sym->attr.dummy)
5330 : 307 : tmp = build3_v (COND_EXPR,
5331 : : gfc_conv_expr_present (expr->symtree->n.sym),
5332 : : tmp, build_empty_stmt (input_location));
5333 : :
5334 : 20427 : gfc_add_expr_to_block (&block, tmp);
5335 : :
5336 : 20427 : free (ref_name);
5337 : : }
5338 : :
5339 : 16777 : tmp = gfc_finish_block (&block);
5340 : 16777 : gfc_add_expr_to_block (&outer_loop->pre, tmp);
5341 : : }
5342 : :
5343 : 170727 : for (loop = loop->nested; loop; loop = loop->next)
5344 : 2425 : gfc_conv_ss_startstride (loop);
5345 : 168302 : }
5346 : :
5347 : : /* Return true if both symbols could refer to the same data object. Does
5348 : : not take account of aliasing due to equivalence statements. */
5349 : :
5350 : : static bool
5351 : 12639 : symbols_could_alias (gfc_symbol *lsym, gfc_symbol *rsym, bool lsym_pointer,
5352 : : bool lsym_target, bool rsym_pointer, bool rsym_target)
5353 : : {
5354 : : /* Aliasing isn't possible if the symbols have different base types,
5355 : : except for complex types where an inquiry reference (%RE, %IM) could
5356 : : alias with a real type with the same kind parameter. */
5357 : 12639 : if (!gfc_compare_types (&lsym->ts, &rsym->ts)
5358 : 12639 : && !(((lsym->ts.type == BT_COMPLEX && rsym->ts.type == BT_REAL)
5359 : 4172 : || (lsym->ts.type == BT_REAL && rsym->ts.type == BT_COMPLEX))
5360 : 76 : && lsym->ts.kind == rsym->ts.kind))
5361 : : return false;
5362 : :
5363 : : /* Pointers can point to other pointers and target objects. */
5364 : :
5365 : 8480 : if ((lsym_pointer && (rsym_pointer || rsym_target))
5366 : 8271 : || (rsym_pointer && (lsym_pointer || lsym_target)))
5367 : : return true;
5368 : :
5369 : : /* Special case: Argument association, cf. F90 12.4.1.6, F2003 12.4.1.7
5370 : : and F2008 12.5.2.13 items 3b and 4b. The pointer case (a) is already
5371 : : checked above. */
5372 : 8358 : if (lsym_target && rsym_target
5373 : 14 : && ((lsym->attr.dummy && !lsym->attr.contiguous
5374 : 0 : && (!lsym->attr.dimension || lsym->as->type == AS_ASSUMED_SHAPE))
5375 : 14 : || (rsym->attr.dummy && !rsym->attr.contiguous
5376 : 6 : && (!rsym->attr.dimension
5377 : 6 : || rsym->as->type == AS_ASSUMED_SHAPE))))
5378 : 6 : return true;
5379 : :
5380 : : return false;
5381 : : }
5382 : :
5383 : :
5384 : : /* Return true if the two SS could be aliased, i.e. both point to the same data
5385 : : object. */
5386 : : /* TODO: resolve aliases based on frontend expressions. */
5387 : :
5388 : : static int
5389 : 10924 : gfc_could_be_alias (gfc_ss * lss, gfc_ss * rss)
5390 : : {
5391 : 10924 : gfc_ref *lref;
5392 : 10924 : gfc_ref *rref;
5393 : 10924 : gfc_expr *lexpr, *rexpr;
5394 : 10924 : gfc_symbol *lsym;
5395 : 10924 : gfc_symbol *rsym;
5396 : 10924 : bool lsym_pointer, lsym_target, rsym_pointer, rsym_target;
5397 : :
5398 : 10924 : lexpr = lss->info->expr;
5399 : 10924 : rexpr = rss->info->expr;
5400 : :
5401 : 10924 : lsym = lexpr->symtree->n.sym;
5402 : 10924 : rsym = rexpr->symtree->n.sym;
5403 : :
5404 : 10924 : lsym_pointer = lsym->attr.pointer;
5405 : 10924 : lsym_target = lsym->attr.target;
5406 : 10924 : rsym_pointer = rsym->attr.pointer;
5407 : 10924 : rsym_target = rsym->attr.target;
5408 : :
5409 : 10924 : if (symbols_could_alias (lsym, rsym, lsym_pointer, lsym_target,
5410 : : rsym_pointer, rsym_target))
5411 : : return 1;
5412 : :
5413 : 10834 : if (rsym->ts.type != BT_DERIVED && rsym->ts.type != BT_CLASS
5414 : 9703 : && lsym->ts.type != BT_DERIVED && lsym->ts.type != BT_CLASS)
5415 : : return 0;
5416 : :
5417 : : /* For derived types we must check all the component types. We can ignore
5418 : : array references as these will have the same base type as the previous
5419 : : component ref. */
5420 : 1975 : for (lref = lexpr->ref; lref != lss->info->data.array.ref; lref = lref->next)
5421 : : {
5422 : 614 : if (lref->type != REF_COMPONENT)
5423 : 59 : continue;
5424 : :
5425 : 555 : lsym_pointer = lsym_pointer || lref->u.c.sym->attr.pointer;
5426 : 555 : lsym_target = lsym_target || lref->u.c.sym->attr.target;
5427 : :
5428 : 555 : if (symbols_could_alias (lref->u.c.sym, rsym, lsym_pointer, lsym_target,
5429 : : rsym_pointer, rsym_target))
5430 : : return 1;
5431 : :
5432 : 555 : if ((lsym_pointer && (rsym_pointer || rsym_target))
5433 : 540 : || (rsym_pointer && (lsym_pointer || lsym_target)))
5434 : : {
5435 : 6 : if (gfc_compare_types (&lref->u.c.component->ts,
5436 : : &rsym->ts))
5437 : : return 1;
5438 : : }
5439 : :
5440 : 948 : for (rref = rexpr->ref; rref != rss->info->data.array.ref;
5441 : 399 : rref = rref->next)
5442 : : {
5443 : 400 : if (rref->type != REF_COMPONENT)
5444 : 36 : continue;
5445 : :
5446 : 364 : rsym_pointer = rsym_pointer || rref->u.c.sym->attr.pointer;
5447 : 364 : rsym_target = lsym_target || rref->u.c.sym->attr.target;
5448 : :
5449 : 364 : if (symbols_could_alias (lref->u.c.sym, rref->u.c.sym,
5450 : : lsym_pointer, lsym_target,
5451 : : rsym_pointer, rsym_target))
5452 : : return 1;
5453 : :
5454 : 363 : if ((lsym_pointer && (rsym_pointer || rsym_target))
5455 : 359 : || (rsym_pointer && (lsym_pointer || lsym_target)))
5456 : : {
5457 : 0 : if (gfc_compare_types (&lref->u.c.component->ts,
5458 : 0 : &rref->u.c.sym->ts))
5459 : : return 1;
5460 : 0 : if (gfc_compare_types (&lref->u.c.sym->ts,
5461 : 0 : &rref->u.c.component->ts))
5462 : : return 1;
5463 : 0 : if (gfc_compare_types (&lref->u.c.component->ts,
5464 : 0 : &rref->u.c.component->ts))
5465 : : return 1;
5466 : : }
5467 : : }
5468 : : }
5469 : :
5470 : 1361 : lsym_pointer = lsym->attr.pointer;
5471 : 1361 : lsym_target = lsym->attr.target;
5472 : :
5473 : 2151 : for (rref = rexpr->ref; rref != rss->info->data.array.ref; rref = rref->next)
5474 : : {
5475 : 943 : if (rref->type != REF_COMPONENT)
5476 : : break;
5477 : :
5478 : 796 : rsym_pointer = rsym_pointer || rref->u.c.sym->attr.pointer;
5479 : 796 : rsym_target = lsym_target || rref->u.c.sym->attr.target;
5480 : :
5481 : 796 : if (symbols_could_alias (rref->u.c.sym, lsym,
5482 : : lsym_pointer, lsym_target,
5483 : : rsym_pointer, rsym_target))
5484 : : return 1;
5485 : :
5486 : 796 : if ((lsym_pointer && (rsym_pointer || rsym_target))
5487 : 778 : || (rsym_pointer && (lsym_pointer || lsym_target)))
5488 : : {
5489 : 6 : if (gfc_compare_types (&lsym->ts, &rref->u.c.component->ts))
5490 : : return 1;
5491 : : }
5492 : : }
5493 : :
5494 : : return 0;
5495 : : }
5496 : :
5497 : :
5498 : : /* Resolve array data dependencies. Creates a temporary if required. */
5499 : : /* TODO: Calc dependencies with gfc_expr rather than gfc_ss, and move to
5500 : : dependency.cc. */
5501 : :
5502 : : void
5503 : 35180 : gfc_conv_resolve_dependencies (gfc_loopinfo * loop, gfc_ss * dest,
5504 : : gfc_ss * rss)
5505 : : {
5506 : 35180 : gfc_ss *ss;
5507 : 35180 : gfc_ref *lref;
5508 : 35180 : gfc_ref *rref;
5509 : 35180 : gfc_ss_info *ss_info;
5510 : 35180 : gfc_expr *dest_expr;
5511 : 35180 : gfc_expr *ss_expr;
5512 : 35180 : int nDepend = 0;
5513 : 35180 : int i, j;
5514 : :
5515 : 35180 : loop->temp_ss = NULL;
5516 : 35180 : dest_expr = dest->info->expr;
5517 : :
5518 : 75860 : for (ss = rss; ss != gfc_ss_terminator; ss = ss->next)
5519 : : {
5520 : 41711 : ss_info = ss->info;
5521 : 41711 : ss_expr = ss_info->expr;
5522 : :
5523 : 41711 : if (ss_info->array_outer_dependency)
5524 : : {
5525 : : nDepend = 1;
5526 : : break;
5527 : : }
5528 : :
5529 : 41601 : if (ss_info->type != GFC_SS_SECTION)
5530 : : {
5531 : 28321 : if (flag_realloc_lhs
5532 : 27477 : && dest_expr != ss_expr
5533 : 27477 : && gfc_is_reallocatable_lhs (dest_expr)
5534 : 34411 : && ss_expr->rank)
5535 : 2691 : nDepend = gfc_check_dependency (dest_expr, ss_expr, true);
5536 : :
5537 : : /* Check for cases like c(:)(1:2) = c(2)(2:3) */
5538 : 28321 : if (!nDepend && dest_expr->rank > 0
5539 : 27942 : && dest_expr->ts.type == BT_CHARACTER
5540 : 4150 : && ss_expr->expr_type == EXPR_VARIABLE)
5541 : :
5542 : 169 : nDepend = gfc_check_dependency (dest_expr, ss_expr, false);
5543 : :
5544 : 28321 : if (ss_info->type == GFC_SS_REFERENCE
5545 : 28321 : && gfc_check_dependency (dest_expr, ss_expr, false))
5546 : 182 : ss_info->data.scalar.needs_temporary = 1;
5547 : :
5548 : 28321 : if (nDepend)
5549 : : break;
5550 : : else
5551 : 27930 : continue;
5552 : : }
5553 : :
5554 : 13280 : if (dest_expr->symtree->n.sym != ss_expr->symtree->n.sym)
5555 : : {
5556 : 10924 : if (gfc_could_be_alias (dest, ss)
5557 : 10924 : || gfc_are_equivalenced_arrays (dest_expr, ss_expr))
5558 : : {
5559 : : nDepend = 1;
5560 : : break;
5561 : : }
5562 : : }
5563 : : else
5564 : : {
5565 : 2356 : lref = dest_expr->ref;
5566 : 2356 : rref = ss_expr->ref;
5567 : :
5568 : 2356 : nDepend = gfc_dep_resolver (lref, rref, &loop->reverse[0]);
5569 : :
5570 : 2356 : if (nDepend == 1)
5571 : : break;
5572 : :
5573 : 4591 : for (i = 0; i < dest->dimen; i++)
5574 : 6238 : for (j = 0; j < ss->dimen; j++)
5575 : 3717 : if (i != j
5576 : 1133 : && dest->dim[i] == ss->dim[j])
5577 : : {
5578 : : /* If we don't access array elements in the same order,
5579 : : there is a dependency. */
5580 : 63 : nDepend = 1;
5581 : 63 : goto temporary;
5582 : : }
5583 : : #if 0
5584 : : /* TODO : loop shifting. */
5585 : : if (nDepend == 1)
5586 : : {
5587 : : /* Mark the dimensions for LOOP SHIFTING */
5588 : : for (n = 0; n < loop->dimen; n++)
5589 : : {
5590 : : int dim = dest->data.info.dim[n];
5591 : :
5592 : : if (lref->u.ar.dimen_type[dim] == DIMEN_VECTOR)
5593 : : depends[n] = 2;
5594 : : else if (! gfc_is_same_range (&lref->u.ar,
5595 : : &rref->u.ar, dim, 0))
5596 : : depends[n] = 1;
5597 : : }
5598 : :
5599 : : /* Put all the dimensions with dependencies in the
5600 : : innermost loops. */
5601 : : dim = 0;
5602 : : for (n = 0; n < loop->dimen; n++)
5603 : : {
5604 : : gcc_assert (loop->order[n] == n);
5605 : : if (depends[n])
5606 : : loop->order[dim++] = n;
5607 : : }
5608 : : for (n = 0; n < loop->dimen; n++)
5609 : : {
5610 : : if (! depends[n])
5611 : : loop->order[dim++] = n;
5612 : : }
5613 : :
5614 : : gcc_assert (dim == loop->dimen);
5615 : : break;
5616 : : }
5617 : : #endif
5618 : : }
5619 : : }
5620 : :
5621 : 677 : temporary:
5622 : :
5623 : 35180 : if (nDepend == 1)
5624 : : {
5625 : 1031 : tree base_type = gfc_typenode_for_spec (&dest_expr->ts);
5626 : 1031 : if (GFC_ARRAY_TYPE_P (base_type)
5627 : 1031 : || GFC_DESCRIPTOR_TYPE_P (base_type))
5628 : 0 : base_type = gfc_get_element_type (base_type);
5629 : 1031 : loop->temp_ss = gfc_get_temp_ss (base_type, dest->info->string_length,
5630 : : loop->dimen);
5631 : 1031 : gfc_add_ss_to_loop (loop, loop->temp_ss);
5632 : : }
5633 : : else
5634 : 34149 : loop->temp_ss = NULL;
5635 : 35180 : }
5636 : :
5637 : :
5638 : : /* Browse through each array's information from the scalarizer and set the loop
5639 : : bounds according to the "best" one (per dimension), i.e. the one which
5640 : : provides the most information (constant bounds, shape, etc.). */
5641 : :
5642 : : static void
5643 : 168302 : set_loop_bounds (gfc_loopinfo *loop)
5644 : : {
5645 : 168302 : int n, dim, spec_dim;
5646 : 168302 : gfc_array_info *info;
5647 : 168302 : gfc_array_info *specinfo;
5648 : 168302 : gfc_ss *ss;
5649 : 168302 : tree tmp;
5650 : 168302 : gfc_ss **loopspec;
5651 : 168302 : bool dynamic[GFC_MAX_DIMENSIONS];
5652 : 168302 : mpz_t *cshape;
5653 : 168302 : mpz_t i;
5654 : 168302 : bool nonoptional_arr;
5655 : :
5656 : 168302 : gfc_loopinfo * const outer_loop = outermost_loop (loop);
5657 : :
5658 : 168302 : loopspec = loop->specloop;
5659 : :
5660 : 168302 : mpz_init (i);
5661 : 396637 : for (n = 0; n < loop->dimen; n++)
5662 : : {
5663 : 228335 : loopspec[n] = NULL;
5664 : 228335 : dynamic[n] = false;
5665 : :
5666 : : /* If there are both optional and nonoptional array arguments, scalarize
5667 : : over the nonoptional; otherwise, it does not matter as then all
5668 : : (optional) arrays have to be present per F2008, 125.2.12p3(6). */
5669 : :
5670 : 228335 : nonoptional_arr = false;
5671 : :
5672 : 265518 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
5673 : 265498 : if (ss->info->type != GFC_SS_SCALAR && ss->info->type != GFC_SS_TEMP
5674 : 233024 : && ss->info->type != GFC_SS_REFERENCE && !ss->info->can_be_null_ref)
5675 : : {
5676 : : nonoptional_arr = true;
5677 : : break;
5678 : : }
5679 : :
5680 : : /* We use one SS term, and use that to determine the bounds of the
5681 : : loop for this dimension. We try to pick the simplest term. */
5682 : 594492 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
5683 : : {
5684 : 366157 : gfc_ss_type ss_type;
5685 : :
5686 : 366157 : ss_type = ss->info->type;
5687 : 426300 : if (ss_type == GFC_SS_SCALAR
5688 : 366157 : || ss_type == GFC_SS_TEMP
5689 : 312702 : || ss_type == GFC_SS_REFERENCE
5690 : 306289 : || (ss->info->can_be_null_ref && nonoptional_arr))
5691 : 60143 : continue;
5692 : :
5693 : 306014 : info = &ss->info->data.array;
5694 : 306014 : dim = ss->dim[n];
5695 : :
5696 : 306014 : if (loopspec[n] != NULL)
5697 : : {
5698 : 77679 : specinfo = &loopspec[n]->info->data.array;
5699 : 77679 : spec_dim = loopspec[n]->dim[n];
5700 : : }
5701 : : else
5702 : : {
5703 : : /* Silence uninitialized warnings. */
5704 : : specinfo = NULL;
5705 : : spec_dim = 0;
5706 : : }
5707 : :
5708 : 306014 : if (info->shape)
5709 : : {
5710 : : /* The frontend has worked out the size for us. */
5711 : 205233 : if (!loopspec[n]
5712 : 55387 : || !specinfo->shape
5713 : 249301 : || !integer_zerop (specinfo->start[spec_dim]))
5714 : : /* Prefer zero-based descriptors if possible. */
5715 : 188529 : loopspec[n] = ss;
5716 : 205233 : continue;
5717 : : }
5718 : :
5719 : 100781 : if (ss_type == GFC_SS_CONSTRUCTOR)
5720 : : {
5721 : 1257 : gfc_constructor_base base;
5722 : : /* An unknown size constructor will always be rank one.
5723 : : Higher rank constructors will either have known shape,
5724 : : or still be wrapped in a call to reshape. */
5725 : 1257 : gcc_assert (loop->dimen == 1);
5726 : :
5727 : : /* Always prefer to use the constructor bounds if the size
5728 : : can be determined at compile time. Prefer not to otherwise,
5729 : : since the general case involves realloc, and it's better to
5730 : : avoid that overhead if possible. */
5731 : 1257 : base = ss->info->expr->value.constructor;
5732 : 1257 : dynamic[n] = gfc_get_array_constructor_size (&i, base);
5733 : 1257 : if (!dynamic[n] || !loopspec[n])
5734 : 1072 : loopspec[n] = ss;
5735 : 1257 : continue;
5736 : 1257 : }
5737 : :
5738 : : /* Avoid using an allocatable lhs in an assignment, since
5739 : : there might be a reallocation coming. */
5740 : 99524 : if (loopspec[n] && ss->is_alloc_lhs)
5741 : 6187 : continue;
5742 : :
5743 : 93337 : if (!loopspec[n])
5744 : 77417 : loopspec[n] = ss;
5745 : : /* Criteria for choosing a loop specifier (most important first):
5746 : : doesn't need realloc
5747 : : stride of one
5748 : : known stride
5749 : : known lower bound
5750 : : known upper bound
5751 : : */
5752 : 15920 : else if (loopspec[n]->info->type == GFC_SS_CONSTRUCTOR && dynamic[n])
5753 : 170 : loopspec[n] = ss;
5754 : 15750 : else if (integer_onep (info->stride[dim])
5755 : 15750 : && !integer_onep (specinfo->stride[spec_dim]))
5756 : 120 : loopspec[n] = ss;
5757 : 15630 : else if (INTEGER_CST_P (info->stride[dim])
5758 : 15454 : && !INTEGER_CST_P (specinfo->stride[spec_dim]))
5759 : 0 : loopspec[n] = ss;
5760 : 15630 : else if (INTEGER_CST_P (info->start[dim])
5761 : 4175 : && !INTEGER_CST_P (specinfo->start[spec_dim])
5762 : 706 : && integer_onep (info->stride[dim])
5763 : 353 : == integer_onep (specinfo->stride[spec_dim])
5764 : 15630 : && INTEGER_CST_P (info->stride[dim])
5765 : 326 : == INTEGER_CST_P (specinfo->stride[spec_dim]))
5766 : 326 : loopspec[n] = ss;
5767 : : /* We don't work out the upper bound.
5768 : : else if (INTEGER_CST_P (info->finish[n])
5769 : : && ! INTEGER_CST_P (specinfo->finish[n]))
5770 : : loopspec[n] = ss; */
5771 : : }
5772 : :
5773 : : /* We should have found the scalarization loop specifier. If not,
5774 : : that's bad news. */
5775 : 228335 : gcc_assert (loopspec[n]);
5776 : :
5777 : 228335 : info = &loopspec[n]->info->data.array;
5778 : 228335 : dim = loopspec[n]->dim[n];
5779 : :
5780 : : /* Set the extents of this range. */
5781 : 228335 : cshape = info->shape;
5782 : 228335 : if (cshape && INTEGER_CST_P (info->start[dim])
5783 : 160846 : && INTEGER_CST_P (info->stride[dim]))
5784 : : {
5785 : 160846 : loop->from[n] = info->start[dim];
5786 : 160846 : mpz_set (i, cshape[get_array_ref_dim_for_loop_dim (loopspec[n], n)]);
5787 : 160846 : mpz_sub_ui (i, i, 1);
5788 : : /* To = from + (size - 1) * stride. */
5789 : 160846 : tmp = gfc_conv_mpz_to_tree (i, gfc_index_integer_kind);
5790 : 160846 : if (!integer_onep (info->stride[dim]))
5791 : 8215 : tmp = fold_build2_loc (input_location, MULT_EXPR,
5792 : : gfc_array_index_type, tmp,
5793 : : info->stride[dim]);
5794 : 160846 : loop->to[n] = fold_build2_loc (input_location, PLUS_EXPR,
5795 : : gfc_array_index_type,
5796 : : loop->from[n], tmp);
5797 : : }
5798 : : else
5799 : : {
5800 : 67489 : loop->from[n] = info->start[dim];
5801 : 67489 : switch (loopspec[n]->info->type)
5802 : : {
5803 : 803 : case GFC_SS_CONSTRUCTOR:
5804 : : /* The upper bound is calculated when we expand the
5805 : : constructor. */
5806 : 803 : gcc_assert (loop->to[n] == NULL_TREE);
5807 : : break;
5808 : :
5809 : 61354 : case GFC_SS_SECTION:
5810 : : /* Use the end expression if it exists and is not constant,
5811 : : so that it is only evaluated once. */
5812 : 61354 : loop->to[n] = info->end[dim];
5813 : 61354 : break;
5814 : :
5815 : 4571 : case GFC_SS_FUNCTION:
5816 : : /* The loop bound will be set when we generate the call. */
5817 : 4571 : gcc_assert (loop->to[n] == NULL_TREE);
5818 : : break;
5819 : :
5820 : 755 : case GFC_SS_INTRINSIC:
5821 : 755 : {
5822 : 755 : gfc_expr *expr = loopspec[n]->info->expr;
5823 : :
5824 : : /* The {l,u}bound of an assumed rank. */
5825 : 755 : if (expr->value.function.isym->id == GFC_ISYM_SHAPE)
5826 : 243 : gcc_assert (expr->value.function.actual->expr->rank == -1);
5827 : : else
5828 : 512 : gcc_assert ((expr->value.function.isym->id == GFC_ISYM_LBOUND
5829 : : || expr->value.function.isym->id == GFC_ISYM_UBOUND)
5830 : : && expr->value.function.actual->next->expr == NULL
5831 : : && expr->value.function.actual->expr->rank == -1);
5832 : :
5833 : 755 : loop->to[n] = info->end[dim];
5834 : 755 : break;
5835 : : }
5836 : :
5837 : 6 : case GFC_SS_COMPONENT:
5838 : 6 : {
5839 : 6 : if (info->end[dim] != NULL_TREE)
5840 : : {
5841 : 6 : loop->to[n] = info->end[dim];
5842 : 6 : break;
5843 : : }
5844 : : else
5845 : 0 : gcc_unreachable ();
5846 : : }
5847 : :
5848 : 0 : default:
5849 : 0 : gcc_unreachable ();
5850 : : }
5851 : : }
5852 : :
5853 : : /* Transform everything so we have a simple incrementing variable. */
5854 : 228335 : if (integer_onep (info->stride[dim]))
5855 : 218470 : info->delta[dim] = gfc_index_zero_node;
5856 : : else
5857 : : {
5858 : : /* Set the delta for this section. */
5859 : 9865 : info->delta[dim] = gfc_evaluate_now (loop->from[n], &outer_loop->pre);
5860 : : /* Number of iterations is (end - start + step) / step.
5861 : : with start = 0, this simplifies to
5862 : : last = end / step;
5863 : : for (i = 0; i<=last; i++){...}; */
5864 : 9865 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
5865 : : gfc_array_index_type, loop->to[n],
5866 : : loop->from[n]);
5867 : 9865 : tmp = fold_build2_loc (input_location, FLOOR_DIV_EXPR,
5868 : : gfc_array_index_type, tmp, info->stride[dim]);
5869 : 9865 : tmp = fold_build2_loc (input_location, MAX_EXPR, gfc_array_index_type,
5870 : 9865 : tmp, build_int_cst (gfc_array_index_type, -1));
5871 : 9865 : loop->to[n] = gfc_evaluate_now (tmp, &outer_loop->pre);
5872 : : /* Make the loop variable start at 0. */
5873 : 9865 : loop->from[n] = gfc_index_zero_node;
5874 : : }
5875 : : }
5876 : 168302 : mpz_clear (i);
5877 : :
5878 : 170727 : for (loop = loop->nested; loop; loop = loop->next)
5879 : 2425 : set_loop_bounds (loop);
5880 : 168302 : }
5881 : :
5882 : :
5883 : : /* Initialize the scalarization loop. Creates the loop variables. Determines
5884 : : the range of the loop variables. Creates a temporary if required.
5885 : : Also generates code for scalar expressions which have been
5886 : : moved outside the loop. */
5887 : :
5888 : : void
5889 : 165877 : gfc_conv_loop_setup (gfc_loopinfo * loop, locus * where)
5890 : : {
5891 : 165877 : gfc_ss *tmp_ss;
5892 : 165877 : tree tmp;
5893 : :
5894 : 165877 : set_loop_bounds (loop);
5895 : :
5896 : : /* Add all the scalar code that can be taken out of the loops.
5897 : : This may include calculating the loop bounds, so do it before
5898 : : allocating the temporary. */
5899 : 165877 : gfc_add_loop_ss_code (loop, loop->ss, false, where);
5900 : :
5901 : 165877 : tmp_ss = loop->temp_ss;
5902 : : /* If we want a temporary then create it. */
5903 : 165877 : if (tmp_ss != NULL)
5904 : : {
5905 : 10905 : gfc_ss_info *tmp_ss_info;
5906 : :
5907 : 10905 : tmp_ss_info = tmp_ss->info;
5908 : 10905 : gcc_assert (tmp_ss_info->type == GFC_SS_TEMP);
5909 : 10905 : gcc_assert (loop->parent == NULL);
5910 : :
5911 : : /* Make absolutely sure that this is a complete type. */
5912 : 10905 : if (tmp_ss_info->string_length)
5913 : 2577 : tmp_ss_info->data.temp.type
5914 : 2577 : = gfc_get_character_type_len_for_eltype
5915 : 2577 : (TREE_TYPE (tmp_ss_info->data.temp.type),
5916 : : tmp_ss_info->string_length);
5917 : :
5918 : 10905 : tmp = tmp_ss_info->data.temp.type;
5919 : 10905 : memset (&tmp_ss_info->data.array, 0, sizeof (gfc_array_info));
5920 : 10905 : tmp_ss_info->type = GFC_SS_SECTION;
5921 : :
5922 : 10905 : gcc_assert (tmp_ss->dimen != 0);
5923 : :
5924 : 10905 : gfc_trans_create_temp_array (&loop->pre, &loop->post, tmp_ss, tmp,
5925 : : NULL_TREE, false, true, false, where);
5926 : : }
5927 : :
5928 : : /* For array parameters we don't have loop variables, so don't calculate the
5929 : : translations. */
5930 : 165877 : if (!loop->array_parameter)
5931 : 102578 : gfc_set_delta (loop);
5932 : 165877 : }
5933 : :
5934 : :
5935 : : /* Calculates how to transform from loop variables to array indices for each
5936 : : array: once loop bounds are chosen, sets the difference (DELTA field) between
5937 : : loop bounds and array reference bounds, for each array info. */
5938 : :
5939 : : void
5940 : 105434 : gfc_set_delta (gfc_loopinfo *loop)
5941 : : {
5942 : 105434 : gfc_ss *ss, **loopspec;
5943 : 105434 : gfc_array_info *info;
5944 : 105434 : tree tmp;
5945 : 105434 : int n, dim;
5946 : :
5947 : 105434 : gfc_loopinfo * const outer_loop = outermost_loop (loop);
5948 : :
5949 : 105434 : loopspec = loop->specloop;
5950 : :
5951 : : /* Calculate the translation from loop variables to array indices. */
5952 : 319566 : for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
5953 : : {
5954 : 214132 : gfc_ss_type ss_type;
5955 : :
5956 : 214132 : ss_type = ss->info->type;
5957 : 214132 : if (ss_type != GFC_SS_SECTION
5958 : 214132 : && ss_type != GFC_SS_COMPONENT
5959 : 86353 : && ss_type != GFC_SS_CONSTRUCTOR)
5960 : 52841 : continue;
5961 : :
5962 : : info = &ss->info->data.array;
5963 : :
5964 : 362612 : for (n = 0; n < ss->dimen; n++)
5965 : : {
5966 : : /* If we are specifying the range the delta is already set. */
5967 : 201321 : if (loopspec[n] != ss)
5968 : : {
5969 : 107317 : dim = ss->dim[n];
5970 : :
5971 : : /* Calculate the offset relative to the loop variable.
5972 : : First multiply by the stride. */
5973 : 107317 : tmp = loop->from[n];
5974 : 107317 : if (!integer_onep (info->stride[dim]))
5975 : 2787 : tmp = fold_build2_loc (input_location, MULT_EXPR,
5976 : : gfc_array_index_type,
5977 : : tmp, info->stride[dim]);
5978 : :
5979 : : /* Then subtract this from our starting value. */
5980 : 107317 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
5981 : : gfc_array_index_type,
5982 : : info->start[dim], tmp);
5983 : :
5984 : 107317 : info->delta[dim] = gfc_evaluate_now (tmp, &outer_loop->pre);
5985 : : }
5986 : : }
5987 : : }
5988 : :
5989 : 107947 : for (loop = loop->nested; loop; loop = loop->next)
5990 : 2513 : gfc_set_delta (loop);
5991 : 105434 : }
5992 : :
5993 : :
5994 : : /* Calculate the size of a given array dimension from the bounds. This
5995 : : is simply (ubound - lbound + 1) if this expression is positive
5996 : : or 0 if it is negative (pick either one if it is zero). Optionally
5997 : : (if or_expr is present) OR the (expression != 0) condition to it. */
5998 : :
5999 : : tree
6000 : 21948 : gfc_conv_array_extent_dim (tree lbound, tree ubound, tree* or_expr)
6001 : : {
6002 : 21948 : tree res;
6003 : 21948 : tree cond;
6004 : :
6005 : : /* Calculate (ubound - lbound + 1). */
6006 : 21948 : res = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
6007 : : ubound, lbound);
6008 : 21948 : res = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type, res,
6009 : : gfc_index_one_node);
6010 : :
6011 : : /* Check whether the size for this dimension is negative. */
6012 : 21948 : cond = fold_build2_loc (input_location, LE_EXPR, logical_type_node, res,
6013 : : gfc_index_zero_node);
6014 : 21948 : res = fold_build3_loc (input_location, COND_EXPR, gfc_array_index_type, cond,
6015 : : gfc_index_zero_node, res);
6016 : :
6017 : : /* Build OR expression. */
6018 : 21948 : if (or_expr)
6019 : 17135 : *or_expr = fold_build2_loc (input_location, TRUTH_OR_EXPR,
6020 : : logical_type_node, *or_expr, cond);
6021 : :
6022 : 21948 : return res;
6023 : : }
6024 : :
6025 : :
6026 : : /* For an array descriptor, get the total number of elements. This is just
6027 : : the product of the extents along from_dim to to_dim. */
6028 : :
6029 : : static tree
6030 : 1785 : gfc_conv_descriptor_size_1 (tree desc, int from_dim, int to_dim)
6031 : : {
6032 : 1785 : tree res;
6033 : 1785 : int dim;
6034 : :
6035 : 1785 : res = gfc_index_one_node;
6036 : :
6037 : 4370 : for (dim = from_dim; dim < to_dim; ++dim)
6038 : : {
6039 : 2585 : tree lbound;
6040 : 2585 : tree ubound;
6041 : 2585 : tree extent;
6042 : :
6043 : 2585 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[dim]);
6044 : 2585 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[dim]);
6045 : :
6046 : 2585 : extent = gfc_conv_array_extent_dim (lbound, ubound, NULL);
6047 : 2585 : res = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
6048 : : res, extent);
6049 : : }
6050 : :
6051 : 1785 : return res;
6052 : : }
6053 : :
6054 : :
6055 : : /* Full size of an array. */
6056 : :
6057 : : tree
6058 : 1755 : gfc_conv_descriptor_size (tree desc, int rank)
6059 : : {
6060 : 1755 : return gfc_conv_descriptor_size_1 (desc, 0, rank);
6061 : : }
6062 : :
6063 : :
6064 : : /* Size of a coarray for all dimensions but the last. */
6065 : :
6066 : : tree
6067 : 30 : gfc_conv_descriptor_cosize (tree desc, int rank, int corank)
6068 : : {
6069 : 30 : return gfc_conv_descriptor_size_1 (desc, rank, rank + corank - 1);
6070 : : }
6071 : :
6072 : :
6073 : : /* Fills in an array descriptor, and returns the size of the array.
6074 : : The size will be a simple_val, ie a variable or a constant. Also
6075 : : calculates the offset of the base. The pointer argument overflow,
6076 : : which should be of integer type, will increase in value if overflow
6077 : : occurs during the size calculation. Returns the size of the array.
6078 : : {
6079 : : stride = 1;
6080 : : offset = 0;
6081 : : for (n = 0; n < rank; n++)
6082 : : {
6083 : : a.lbound[n] = specified_lower_bound;
6084 : : offset = offset + a.lbond[n] * stride;
6085 : : size = 1 - lbound;
6086 : : a.ubound[n] = specified_upper_bound;
6087 : : a.stride[n] = stride;
6088 : : size = size >= 0 ? ubound + size : 0; //size = ubound + 1 - lbound
6089 : : overflow += size == 0 ? 0: (MAX/size < stride ? 1: 0);
6090 : : stride = stride * size;
6091 : : }
6092 : : for (n = rank; n < rank+corank; n++)
6093 : : (Set lcobound/ucobound as above.)
6094 : : element_size = sizeof (array element);
6095 : : if (!rank)
6096 : : return element_size
6097 : : stride = (size_t) stride;
6098 : : overflow += element_size == 0 ? 0: (MAX/element_size < stride ? 1: 0);
6099 : : stride = stride * element_size;
6100 : : return (stride);
6101 : : } */
6102 : : /*GCC ARRAYS*/
6103 : :
6104 : : static tree
6105 : 11525 : gfc_array_init_size (tree descriptor, int rank, int corank, tree * poffset,
6106 : : gfc_expr ** lower, gfc_expr ** upper, stmtblock_t * pblock,
6107 : : stmtblock_t * descriptor_block, tree * overflow,
6108 : : tree expr3_elem_size, tree *nelems, gfc_expr *expr3,
6109 : : tree expr3_desc, bool e3_has_nodescriptor, gfc_expr *expr,
6110 : : tree *element_size, bool explicit_ts)
6111 : : {
6112 : 11525 : tree type;
6113 : 11525 : tree tmp;
6114 : 11525 : tree size;
6115 : 11525 : tree offset;
6116 : 11525 : tree stride;
6117 : 11525 : tree or_expr;
6118 : 11525 : tree thencase;
6119 : 11525 : tree elsecase;
6120 : 11525 : tree cond;
6121 : 11525 : tree var;
6122 : 11525 : stmtblock_t thenblock;
6123 : 11525 : stmtblock_t elseblock;
6124 : 11525 : gfc_expr *ubound;
6125 : 11525 : gfc_se se;
6126 : 11525 : int n;
6127 : :
6128 : 11525 : type = TREE_TYPE (descriptor);
6129 : :
6130 : 11525 : stride = gfc_index_one_node;
6131 : 11525 : offset = gfc_index_zero_node;
6132 : :
6133 : : /* Set the dtype before the alloc, because registration of coarrays needs
6134 : : it initialized. */
6135 : 11525 : if (expr->ts.type == BT_CHARACTER
6136 : 994 : && expr->ts.deferred
6137 : 482 : && VAR_P (expr->ts.u.cl->backend_decl))
6138 : : {
6139 : 305 : type = gfc_typenode_for_spec (&expr->ts);
6140 : 305 : tmp = gfc_conv_descriptor_dtype (descriptor);
6141 : 305 : gfc_add_modify (pblock, tmp, gfc_get_dtype_rank_type (rank, type));
6142 : : }
6143 : 11220 : else if (expr->ts.type == BT_CHARACTER
6144 : 689 : && expr->ts.deferred
6145 : 177 : && TREE_CODE (descriptor) == COMPONENT_REF)
6146 : : {
6147 : : /* Deferred character components have their string length tucked away
6148 : : in a hidden field of the derived type. Obtain that and use it to
6149 : : set the dtype. The charlen backend decl is zero because the field
6150 : : type is zero length. */
6151 : 159 : gfc_ref *ref;
6152 : 159 : tmp = NULL_TREE;
6153 : 159 : for (ref = expr->ref; ref; ref = ref->next)
6154 : 159 : if (ref->type == REF_COMPONENT
6155 : 159 : && gfc_deferred_strlen (ref->u.c.component, &tmp))
6156 : : break;
6157 : 159 : gcc_assert (tmp != NULL_TREE);
6158 : 159 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (tmp),
6159 : 159 : TREE_OPERAND (descriptor, 0), tmp, NULL_TREE);
6160 : 159 : tmp = fold_convert (gfc_charlen_type_node, tmp);
6161 : 159 : type = gfc_get_character_type_len (expr->ts.kind, tmp);
6162 : 159 : tmp = gfc_conv_descriptor_dtype (descriptor);
6163 : 159 : gfc_add_modify (pblock, tmp, gfc_get_dtype_rank_type (rank, type));
6164 : 159 : }
6165 : 11061 : else if (expr3_desc && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (expr3_desc)))
6166 : : {
6167 : 884 : tmp = gfc_conv_descriptor_dtype (descriptor);
6168 : 884 : gfc_add_modify (pblock, tmp, gfc_conv_descriptor_dtype (expr3_desc));
6169 : : }
6170 : 10177 : else if (expr->ts.type == BT_CLASS && !explicit_ts
6171 : 1235 : && expr3 && expr3->ts.type != BT_CLASS
6172 : 343 : && expr3_elem_size != NULL_TREE && expr3_desc == NULL_TREE)
6173 : : {
6174 : 343 : tmp = gfc_conv_descriptor_elem_len (descriptor);
6175 : 343 : gfc_add_modify (pblock, tmp,
6176 : 343 : fold_convert (TREE_TYPE (tmp), expr3_elem_size));
6177 : : }
6178 : : else
6179 : : {
6180 : 9834 : tmp = gfc_conv_descriptor_dtype (descriptor);
6181 : 9834 : gfc_add_modify (pblock, tmp, gfc_get_dtype (type));
6182 : : }
6183 : :
6184 : 11525 : or_expr = logical_false_node;
6185 : :
6186 : 28660 : for (n = 0; n < rank; n++)
6187 : : {
6188 : 17135 : tree conv_lbound;
6189 : 17135 : tree conv_ubound;
6190 : :
6191 : : /* We have 3 possibilities for determining the size of the array:
6192 : : lower == NULL => lbound = 1, ubound = upper[n]
6193 : : upper[n] = NULL => lbound = 1, ubound = lower[n]
6194 : : upper[n] != NULL => lbound = lower[n], ubound = upper[n] */
6195 : 17135 : ubound = upper[n];
6196 : :
6197 : : /* Set lower bound. */
6198 : 17135 : gfc_init_se (&se, NULL);
6199 : 17135 : if (expr3_desc != NULL_TREE)
6200 : : {
6201 : 1347 : if (e3_has_nodescriptor)
6202 : : /* The lbound of nondescriptor arrays like array constructors,
6203 : : nonallocatable/nonpointer function results/variables,
6204 : : start at zero, but when allocating it, the standard expects
6205 : : the array to start at one. */
6206 : 858 : se.expr = gfc_index_one_node;
6207 : : else
6208 : 489 : se.expr = gfc_conv_descriptor_lbound_get (expr3_desc,
6209 : : gfc_rank_cst[n]);
6210 : : }
6211 : 15788 : else if (lower == NULL)
6212 : 12784 : se.expr = gfc_index_one_node;
6213 : : else
6214 : : {
6215 : 3004 : gcc_assert (lower[n]);
6216 : 3004 : if (ubound)
6217 : : {
6218 : 2359 : gfc_conv_expr_type (&se, lower[n], gfc_array_index_type);
6219 : 2359 : gfc_add_block_to_block (pblock, &se.pre);
6220 : : }
6221 : : else
6222 : : {
6223 : 645 : se.expr = gfc_index_one_node;
6224 : 645 : ubound = lower[n];
6225 : : }
6226 : : }
6227 : 17135 : gfc_conv_descriptor_lbound_set (descriptor_block, descriptor,
6228 : : gfc_rank_cst[n], se.expr);
6229 : 17135 : conv_lbound = se.expr;
6230 : :
6231 : : /* Work out the offset for this component. */
6232 : 17135 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
6233 : : se.expr, stride);
6234 : 17135 : offset = fold_build2_loc (input_location, MINUS_EXPR,
6235 : : gfc_array_index_type, offset, tmp);
6236 : :
6237 : : /* Set upper bound. */
6238 : 17135 : gfc_init_se (&se, NULL);
6239 : 17135 : if (expr3_desc != NULL_TREE)
6240 : : {
6241 : 1347 : if (e3_has_nodescriptor)
6242 : : {
6243 : : /* The lbound of nondescriptor arrays like array constructors,
6244 : : nonallocatable/nonpointer function results/variables,
6245 : : start at zero, but when allocating it, the standard expects
6246 : : the array to start at one. Therefore fix the upper bound to be
6247 : : (desc.ubound - desc.lbound) + 1. */
6248 : 858 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
6249 : : gfc_array_index_type,
6250 : : gfc_conv_descriptor_ubound_get (
6251 : : expr3_desc, gfc_rank_cst[n]),
6252 : : gfc_conv_descriptor_lbound_get (
6253 : : expr3_desc, gfc_rank_cst[n]));
6254 : 858 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
6255 : : gfc_array_index_type, tmp,
6256 : : gfc_index_one_node);
6257 : 858 : se.expr = gfc_evaluate_now (tmp, pblock);
6258 : : }
6259 : : else
6260 : 489 : se.expr = gfc_conv_descriptor_ubound_get (expr3_desc,
6261 : : gfc_rank_cst[n]);
6262 : : }
6263 : : else
6264 : : {
6265 : 15788 : gcc_assert (ubound);
6266 : 15788 : gfc_conv_expr_type (&se, ubound, gfc_array_index_type);
6267 : 15788 : gfc_add_block_to_block (pblock, &se.pre);
6268 : 15788 : if (ubound->expr_type == EXPR_FUNCTION)
6269 : 754 : se.expr = gfc_evaluate_now (se.expr, pblock);
6270 : : }
6271 : 17135 : gfc_conv_descriptor_ubound_set (descriptor_block, descriptor,
6272 : : gfc_rank_cst[n], se.expr);
6273 : 17135 : conv_ubound = se.expr;
6274 : :
6275 : : /* Store the stride. */
6276 : 17135 : gfc_conv_descriptor_stride_set (descriptor_block, descriptor,
6277 : : gfc_rank_cst[n], stride);
6278 : :
6279 : : /* Calculate size and check whether extent is negative. */
6280 : 17135 : size = gfc_conv_array_extent_dim (conv_lbound, conv_ubound, &or_expr);
6281 : 17135 : size = gfc_evaluate_now (size, pblock);
6282 : :
6283 : : /* Check whether multiplying the stride by the number of
6284 : : elements in this dimension would overflow. We must also check
6285 : : whether the current dimension has zero size in order to avoid
6286 : : division by zero.
6287 : : */
6288 : 17135 : tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
6289 : : gfc_array_index_type,
6290 : 17135 : fold_convert (gfc_array_index_type,
6291 : : TYPE_MAX_VALUE (gfc_array_index_type)),
6292 : : size);
6293 : 17135 : cond = gfc_unlikely (fold_build2_loc (input_location, LT_EXPR,
6294 : : logical_type_node, tmp, stride),
6295 : : PRED_FORTRAN_OVERFLOW);
6296 : 17135 : tmp = fold_build3_loc (input_location, COND_EXPR, integer_type_node, cond,
6297 : : integer_one_node, integer_zero_node);
6298 : 17135 : cond = gfc_unlikely (fold_build2_loc (input_location, EQ_EXPR,
6299 : : logical_type_node, size,
6300 : : gfc_index_zero_node),
6301 : : PRED_FORTRAN_SIZE_ZERO);
6302 : 17135 : tmp = fold_build3_loc (input_location, COND_EXPR, integer_type_node, cond,
6303 : : integer_zero_node, tmp);
6304 : 17135 : tmp = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
6305 : : *overflow, tmp);
6306 : 17135 : *overflow = gfc_evaluate_now (tmp, pblock);
6307 : :
6308 : : /* Multiply the stride by the number of elements in this dimension. */
6309 : 17135 : stride = fold_build2_loc (input_location, MULT_EXPR,
6310 : : gfc_array_index_type, stride, size);
6311 : 17135 : stride = gfc_evaluate_now (stride, pblock);
6312 : : }
6313 : :
6314 : 12024 : for (n = rank; n < rank + corank; n++)
6315 : : {
6316 : 499 : ubound = upper[n];
6317 : :
6318 : : /* Set lower bound. */
6319 : 499 : gfc_init_se (&se, NULL);
6320 : 499 : if (lower == NULL || lower[n] == NULL)
6321 : : {
6322 : 279 : gcc_assert (n == rank + corank - 1);
6323 : 279 : se.expr = gfc_index_one_node;
6324 : : }
6325 : : else
6326 : : {
6327 : 220 : if (ubound || n == rank + corank - 1)
6328 : : {
6329 : 142 : gfc_conv_expr_type (&se, lower[n], gfc_array_index_type);
6330 : 142 : gfc_add_block_to_block (pblock, &se.pre);
6331 : : }
6332 : : else
6333 : : {
6334 : 78 : se.expr = gfc_index_one_node;
6335 : 78 : ubound = lower[n];
6336 : : }
6337 : : }
6338 : 499 : gfc_conv_descriptor_lbound_set (descriptor_block, descriptor,
6339 : : gfc_rank_cst[n], se.expr);
6340 : :
6341 : 499 : if (n < rank + corank - 1)
6342 : : {
6343 : 147 : gfc_init_se (&se, NULL);
6344 : 147 : gcc_assert (ubound);
6345 : 147 : gfc_conv_expr_type (&se, ubound, gfc_array_index_type);
6346 : 147 : gfc_add_block_to_block (pblock, &se.pre);
6347 : 147 : gfc_conv_descriptor_ubound_set (descriptor_block, descriptor,
6348 : : gfc_rank_cst[n], se.expr);
6349 : : }
6350 : : }
6351 : :
6352 : : /* The stride is the number of elements in the array, so multiply by the
6353 : : size of an element to get the total size. Obviously, if there is a
6354 : : SOURCE expression (expr3) we must use its element size. */
6355 : 11525 : if (expr3_elem_size != NULL_TREE)
6356 : 2835 : tmp = expr3_elem_size;
6357 : 8690 : else if (expr3 != NULL)
6358 : : {
6359 : 0 : if (expr3->ts.type == BT_CLASS)
6360 : : {
6361 : 0 : gfc_se se_sz;
6362 : 0 : gfc_expr *sz = gfc_copy_expr (expr3);
6363 : 0 : gfc_add_vptr_component (sz);
6364 : 0 : gfc_add_size_component (sz);
6365 : 0 : gfc_init_se (&se_sz, NULL);
6366 : 0 : gfc_conv_expr (&se_sz, sz);
6367 : 0 : gfc_free_expr (sz);
6368 : 0 : tmp = se_sz.expr;
6369 : : }
6370 : : else
6371 : : {
6372 : 0 : tmp = gfc_typenode_for_spec (&expr3->ts);
6373 : 0 : tmp = TYPE_SIZE_UNIT (tmp);
6374 : : }
6375 : : }
6376 : : else
6377 : 8690 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (type));
6378 : :
6379 : : /* Convert to size_t. */
6380 : 11525 : *element_size = fold_convert (size_type_node, tmp);
6381 : :
6382 : 11525 : if (rank == 0)
6383 : : return *element_size;
6384 : :
6385 : 11372 : *nelems = gfc_evaluate_now (stride, pblock);
6386 : 11372 : stride = fold_convert (size_type_node, stride);
6387 : :
6388 : : /* First check for overflow. Since an array of type character can
6389 : : have zero element_size, we must check for that before
6390 : : dividing. */
6391 : 11372 : tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
6392 : : size_type_node,
6393 : 11372 : TYPE_MAX_VALUE (size_type_node), *element_size);
6394 : 11372 : cond = gfc_unlikely (fold_build2_loc (input_location, LT_EXPR,
6395 : : logical_type_node, tmp, stride),
6396 : : PRED_FORTRAN_OVERFLOW);
6397 : 11372 : tmp = fold_build3_loc (input_location, COND_EXPR, integer_type_node, cond,
6398 : : integer_one_node, integer_zero_node);
6399 : 11372 : cond = gfc_unlikely (fold_build2_loc (input_location, EQ_EXPR,
6400 : : logical_type_node, *element_size,
6401 : 11372 : build_int_cst (size_type_node, 0)),
6402 : : PRED_FORTRAN_SIZE_ZERO);
6403 : 11372 : tmp = fold_build3_loc (input_location, COND_EXPR, integer_type_node, cond,
6404 : : integer_zero_node, tmp);
6405 : 11372 : tmp = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
6406 : : *overflow, tmp);
6407 : 11372 : *overflow = gfc_evaluate_now (tmp, pblock);
6408 : :
6409 : 11372 : size = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
6410 : : stride, *element_size);
6411 : :
6412 : 11372 : if (poffset != NULL)
6413 : : {
6414 : 11372 : offset = gfc_evaluate_now (offset, pblock);
6415 : 11372 : *poffset = offset;
6416 : : }
6417 : :
6418 : 11372 : if (integer_zerop (or_expr))
6419 : : return size;
6420 : 3505 : if (integer_onep (or_expr))
6421 : 593 : return build_int_cst (size_type_node, 0);
6422 : :
6423 : 2912 : var = gfc_create_var (TREE_TYPE (size), "size");
6424 : 2912 : gfc_start_block (&thenblock);
6425 : 2912 : gfc_add_modify (&thenblock, var, build_int_cst (size_type_node, 0));
6426 : 2912 : thencase = gfc_finish_block (&thenblock);
6427 : :
6428 : 2912 : gfc_start_block (&elseblock);
6429 : 2912 : gfc_add_modify (&elseblock, var, size);
6430 : 2912 : elsecase = gfc_finish_block (&elseblock);
6431 : :
6432 : 2912 : tmp = gfc_evaluate_now (or_expr, pblock);
6433 : 2912 : tmp = build3_v (COND_EXPR, tmp, thencase, elsecase);
6434 : 2912 : gfc_add_expr_to_block (pblock, tmp);
6435 : :
6436 : 2912 : return var;
6437 : : }
6438 : :
6439 : :
6440 : : /* Retrieve the last ref from the chain. This routine is specific to
6441 : : gfc_array_allocate ()'s needs. */
6442 : :
6443 : : bool
6444 : 17559 : retrieve_last_ref (gfc_ref **ref_in, gfc_ref **prev_ref_in)
6445 : : {
6446 : 17559 : gfc_ref *ref, *prev_ref;
6447 : :
6448 : 17559 : ref = *ref_in;
6449 : : /* Prevent warnings for uninitialized variables. */
6450 : 17559 : prev_ref = *prev_ref_in;
6451 : 23805 : while (ref && ref->next != NULL)
6452 : : {
6453 : 6246 : gcc_assert (ref->type != REF_ARRAY || ref->u.ar.type == AR_ELEMENT
6454 : : || (ref->u.ar.dimen == 0 && ref->u.ar.codimen > 0));
6455 : : prev_ref = ref;
6456 : : ref = ref->next;
6457 : : }
6458 : :
6459 : 17559 : if (ref == NULL || ref->type != REF_ARRAY)
6460 : : return false;
6461 : :
6462 : 12662 : *ref_in = ref;
6463 : 12662 : *prev_ref_in = prev_ref;
6464 : 12662 : return true;
6465 : : }
6466 : :
6467 : : /* Initializes the descriptor and generates a call to _gfor_allocate. Does
6468 : : the work for an ALLOCATE statement. */
6469 : : /*GCC ARRAYS*/
6470 : :
6471 : : bool
6472 : 16422 : gfc_array_allocate (gfc_se * se, gfc_expr * expr, tree status, tree errmsg,
6473 : : tree errlen, tree label_finish, tree expr3_elem_size,
6474 : : tree *nelems, gfc_expr *expr3, tree e3_arr_desc,
6475 : : bool e3_has_nodescriptor, gfc_omp_namelist *omp_alloc,
6476 : : bool explicit_ts)
6477 : : {
6478 : 16422 : tree tmp;
6479 : 16422 : tree pointer;
6480 : 16422 : tree offset = NULL_TREE;
6481 : 16422 : tree token = NULL_TREE;
6482 : 16422 : tree size;
6483 : 16422 : tree msg;
6484 : 16422 : tree error = NULL_TREE;
6485 : 16422 : tree overflow; /* Boolean storing whether size calculation overflows. */
6486 : 16422 : tree var_overflow = NULL_TREE;
6487 : 16422 : tree cond;
6488 : 16422 : tree set_descriptor;
6489 : 16422 : tree not_prev_allocated = NULL_TREE;
6490 : 16422 : tree element_size = NULL_TREE;
6491 : 16422 : stmtblock_t set_descriptor_block;
6492 : 16422 : stmtblock_t elseblock;
6493 : 16422 : gfc_expr **lower;
6494 : 16422 : gfc_expr **upper;
6495 : 16422 : gfc_ref *ref, *prev_ref = NULL, *coref;
6496 : 16422 : bool allocatable, coarray, dimension, alloc_w_e3_arr_spec = false,
6497 : : non_ulimate_coarray_ptr_comp;
6498 : 16422 : tree omp_cond = NULL_TREE, omp_alt_alloc = NULL_TREE;
6499 : :
6500 : 16422 : ref = expr->ref;
6501 : :
6502 : : /* Find the last reference in the chain. */
6503 : 16422 : if (!retrieve_last_ref (&ref, &prev_ref))
6504 : : return false;
6505 : :
6506 : : /* Take the allocatable and coarray properties solely from the expr-ref's
6507 : : attributes and not from source=-expression. */
6508 : 11525 : if (!prev_ref)
6509 : : {
6510 : 8132 : allocatable = expr->symtree->n.sym->attr.allocatable;
6511 : 8132 : dimension = expr->symtree->n.sym->attr.dimension;
6512 : 8132 : non_ulimate_coarray_ptr_comp = false;
6513 : : }
6514 : : else
6515 : : {
6516 : 3393 : allocatable = prev_ref->u.c.component->attr.allocatable;
6517 : : /* Pointer components in coarrayed derived types must be treated
6518 : : specially in that they are registered without a check if the are
6519 : : already associated. This does not hold for ultimate coarray
6520 : : pointers. */
6521 : 3393 : non_ulimate_coarray_ptr_comp = (prev_ref->u.c.component->attr.pointer
6522 : 3393 : && !prev_ref->u.c.component->attr.codimension);
6523 : 3393 : dimension = prev_ref->u.c.component->attr.dimension;
6524 : : }
6525 : :
6526 : : /* For allocatable/pointer arrays in derived types, one of the refs has to be
6527 : : a coarray. In this case it does not matter whether we are on this_image
6528 : : or not. */
6529 : 11525 : coarray = false;
6530 : 27214 : for (coref = expr->ref; coref; coref = coref->next)
6531 : 16203 : if (coref->type == REF_ARRAY && coref->u.ar.codimen > 0)
6532 : : {
6533 : : coarray = true;
6534 : : break;
6535 : : }
6536 : :
6537 : 11525 : if (!dimension)
6538 : 153 : gcc_assert (coarray);
6539 : :
6540 : 11525 : if (ref->u.ar.type == AR_FULL && expr3 != NULL)
6541 : : {
6542 : 1137 : gfc_ref *old_ref = ref;
6543 : : /* F08:C633: Array shape from expr3. */
6544 : 1137 : ref = expr3->ref;
6545 : :
6546 : : /* Find the last reference in the chain. */
6547 : 1137 : if (!retrieve_last_ref (&ref, &prev_ref))
6548 : : {
6549 : 0 : if (expr3->expr_type == EXPR_FUNCTION
6550 : 0 : && gfc_expr_attr (expr3).dimension)
6551 : 0 : ref = old_ref;
6552 : : else
6553 : 0 : return false;
6554 : : }
6555 : : alloc_w_e3_arr_spec = true;
6556 : : }
6557 : :
6558 : : /* Figure out the size of the array. */
6559 : 11525 : switch (ref->u.ar.type)
6560 : : {
6561 : 8791 : case AR_ELEMENT:
6562 : 8791 : if (!coarray)
6563 : : {
6564 : 8323 : lower = NULL;
6565 : 8323 : upper = ref->u.ar.start;
6566 : 8323 : break;
6567 : : }
6568 : : /* Fall through. */
6569 : :
6570 : 2095 : case AR_SECTION:
6571 : 2095 : lower = ref->u.ar.start;
6572 : 2095 : upper = ref->u.ar.end;
6573 : 2095 : break;
6574 : :
6575 : 1107 : case AR_FULL:
6576 : 1107 : gcc_assert (ref->u.ar.as->type == AS_EXPLICIT
6577 : : || alloc_w_e3_arr_spec);
6578 : :
6579 : 1107 : lower = ref->u.ar.as->lower;
6580 : 1107 : upper = ref->u.ar.as->upper;
6581 : 1107 : break;
6582 : :
6583 : 0 : default:
6584 : 0 : gcc_unreachable ();
6585 : 11525 : break;
6586 : : }
6587 : :
6588 : 11525 : overflow = integer_zero_node;
6589 : :
6590 : 11525 : if (expr->ts.type == BT_CHARACTER
6591 : 994 : && TREE_CODE (se->string_length) == COMPONENT_REF
6592 : 159 : && expr->ts.u.cl->backend_decl != se->string_length
6593 : 159 : && VAR_P (expr->ts.u.cl->backend_decl))
6594 : 0 : gfc_add_modify (&se->pre, expr->ts.u.cl->backend_decl,
6595 : 0 : fold_convert (TREE_TYPE (expr->ts.u.cl->backend_decl),
6596 : : se->string_length));
6597 : :
6598 : 11525 : gfc_init_block (&set_descriptor_block);
6599 : : /* Take the corank only from the actual ref and not from the coref. The
6600 : : later will mislead the generation of the array dimensions for allocatable/
6601 : : pointer components in derived types. */
6602 : 22427 : size = gfc_array_init_size (se->expr, alloc_w_e3_arr_spec ? expr->rank
6603 : 10388 : : ref->u.ar.as->rank,
6604 : 514 : coarray ? ref->u.ar.as->corank : 0,
6605 : : &offset, lower, upper,
6606 : : &se->pre, &set_descriptor_block, &overflow,
6607 : : expr3_elem_size, nelems, expr3, e3_arr_desc,
6608 : : e3_has_nodescriptor, expr, &element_size,
6609 : : explicit_ts);
6610 : :
6611 : 11525 : if (dimension)
6612 : : {
6613 : 11372 : var_overflow = gfc_create_var (integer_type_node, "overflow");
6614 : 11372 : gfc_add_modify (&se->pre, var_overflow, overflow);
6615 : :
6616 : 11372 : if (status == NULL_TREE)
6617 : : {
6618 : : /* Generate the block of code handling overflow. */
6619 : 11156 : msg = gfc_build_addr_expr (pchar_type_node,
6620 : : gfc_build_localized_cstring_const
6621 : : ("Integer overflow when calculating the amount of "
6622 : : "memory to allocate"));
6623 : 11156 : error = build_call_expr_loc (input_location,
6624 : : gfor_fndecl_runtime_error, 1, msg);
6625 : : }
6626 : : else
6627 : : {
6628 : 216 : tree status_type = TREE_TYPE (status);
6629 : 216 : stmtblock_t set_status_block;
6630 : :
6631 : 216 : gfc_start_block (&set_status_block);
6632 : 216 : gfc_add_modify (&set_status_block, status,
6633 : 216 : build_int_cst (status_type, LIBERROR_ALLOCATION));
6634 : 216 : error = gfc_finish_block (&set_status_block);
6635 : : }
6636 : : }
6637 : :
6638 : : /* Allocate memory to store the data. */
6639 : 11525 : if (POINTER_TYPE_P (TREE_TYPE (se->expr)))
6640 : 0 : se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
6641 : :
6642 : 11525 : if (coarray && flag_coarray == GFC_FCOARRAY_LIB)
6643 : : {
6644 : 286 : pointer = non_ulimate_coarray_ptr_comp ? se->expr
6645 : 217 : : gfc_conv_descriptor_data_get (se->expr);
6646 : 286 : token = gfc_conv_descriptor_token (se->expr);
6647 : 286 : token = gfc_build_addr_expr (NULL_TREE, token);
6648 : : }
6649 : : else
6650 : : {
6651 : 11239 : pointer = gfc_conv_descriptor_data_get (se->expr);
6652 : 11239 : if (omp_alloc)
6653 : 30 : omp_cond = boolean_true_node;
6654 : : }
6655 : 11525 : STRIP_NOPS (pointer);
6656 : :
6657 : 11525 : if (allocatable)
6658 : : {
6659 : 9507 : not_prev_allocated = gfc_create_var (logical_type_node,
6660 : : "not_prev_allocated");
6661 : 9507 : tmp = fold_build2_loc (input_location, EQ_EXPR,
6662 : : logical_type_node, pointer,
6663 : 9507 : build_int_cst (TREE_TYPE (pointer), 0));
6664 : :
6665 : 9507 : gfc_add_modify (&se->pre, not_prev_allocated, tmp);
6666 : : }
6667 : :
6668 : 11525 : gfc_start_block (&elseblock);
6669 : :
6670 : 11525 : tree succ_add_expr = NULL_TREE;
6671 : 11525 : if (omp_cond)
6672 : : {
6673 : 30 : tree align, alloc, sz;
6674 : 30 : gfc_se se2;
6675 : 30 : if (omp_alloc->u2.allocator)
6676 : : {
6677 : 7 : gfc_init_se (&se2, NULL);
6678 : 7 : gfc_conv_expr (&se2, omp_alloc->u2.allocator);
6679 : 7 : gfc_add_block_to_block (&elseblock, &se2.pre);
6680 : 7 : alloc = gfc_evaluate_now (se2.expr, &elseblock);
6681 : 7 : gfc_add_block_to_block (&elseblock, &se2.post);
6682 : : }
6683 : : else
6684 : 23 : alloc = build_zero_cst (ptr_type_node);
6685 : 30 : tmp = TREE_TYPE (TREE_TYPE (pointer));
6686 : 30 : if (tmp == void_type_node)
6687 : 30 : tmp = gfc_typenode_for_spec (&expr->ts, 0);
6688 : 30 : if (omp_alloc->u.align)
6689 : : {
6690 : 15 : gfc_init_se (&se2, NULL);
6691 : 15 : gfc_conv_expr (&se2, omp_alloc->u.align);
6692 : 15 : gcc_assert (CONSTANT_CLASS_P (se2.expr)
6693 : : && se2.pre.head == NULL
6694 : : && se2.post.head == NULL);
6695 : 15 : align = build_int_cst (size_type_node,
6696 : 15 : MAX (tree_to_uhwi (se2.expr),
6697 : : TYPE_ALIGN_UNIT (tmp)));
6698 : : }
6699 : : else
6700 : 15 : align = build_int_cst (size_type_node, TYPE_ALIGN_UNIT (tmp));
6701 : 30 : sz = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
6702 : : fold_convert (size_type_node, size),
6703 : 30 : build_int_cst (size_type_node, 1));
6704 : 30 : omp_alt_alloc = builtin_decl_explicit (BUILT_IN_GOMP_ALLOC);
6705 : 30 : DECL_ATTRIBUTES (omp_alt_alloc)
6706 : 30 : = tree_cons (get_identifier ("omp allocator"),
6707 : : build_tree_list (NULL_TREE, alloc),
6708 : 30 : DECL_ATTRIBUTES (omp_alt_alloc));
6709 : 30 : omp_alt_alloc = build_call_expr (omp_alt_alloc, 3, align, sz, alloc);
6710 : 30 : succ_add_expr = fold_build2_loc (input_location, MODIFY_EXPR,
6711 : : void_type_node,
6712 : : gfc_conv_descriptor_version (se->expr),
6713 : 30 : build_int_cst (integer_type_node, 1));
6714 : : }
6715 : :
6716 : : /* The allocatable variant takes the old pointer as first argument. */
6717 : 11525 : if (allocatable)
6718 : 9949 : gfc_allocate_allocatable (&elseblock, pointer, size, token,
6719 : : status, errmsg, errlen, label_finish, expr,
6720 : 442 : coref != NULL ? coref->u.ar.as->corank : 0,
6721 : : omp_cond, omp_alt_alloc, succ_add_expr);
6722 : 2018 : else if (non_ulimate_coarray_ptr_comp && token)
6723 : : /* The token is set only for GFC_FCOARRAY_LIB mode. */
6724 : 69 : gfc_allocate_using_caf_lib (&elseblock, pointer, size, token, status,
6725 : : errmsg, errlen,
6726 : : GFC_CAF_COARRAY_ALLOC_ALLOCATE_ONLY);
6727 : : else
6728 : 1949 : gfc_allocate_using_malloc (&elseblock, pointer, size, status,
6729 : : omp_cond, omp_alt_alloc, succ_add_expr);
6730 : :
6731 : 11525 : if (dimension)
6732 : : {
6733 : 11372 : cond = gfc_unlikely (fold_build2_loc (input_location, NE_EXPR,
6734 : : logical_type_node, var_overflow, integer_zero_node),
6735 : : PRED_FORTRAN_OVERFLOW);
6736 : 11372 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
6737 : : error, gfc_finish_block (&elseblock));
6738 : : }
6739 : : else
6740 : 153 : tmp = gfc_finish_block (&elseblock);
6741 : :
6742 : 11525 : gfc_add_expr_to_block (&se->pre, tmp);
6743 : :
6744 : : /* Update the array descriptor with the offset and the span. */
6745 : 11525 : if (dimension)
6746 : : {
6747 : 11372 : gfc_conv_descriptor_offset_set (&set_descriptor_block, se->expr, offset);
6748 : 11372 : tmp = fold_convert (gfc_array_index_type, element_size);
6749 : 11372 : gfc_conv_descriptor_span_set (&set_descriptor_block, se->expr, tmp);
6750 : : }
6751 : :
6752 : 11525 : set_descriptor = gfc_finish_block (&set_descriptor_block);
6753 : 11525 : if (status != NULL_TREE)
6754 : : {
6755 : 230 : cond = fold_build2_loc (input_location, EQ_EXPR,
6756 : : logical_type_node, status,
6757 : 230 : build_int_cst (TREE_TYPE (status), 0));
6758 : :
6759 : 230 : if (not_prev_allocated != NULL_TREE)
6760 : 209 : cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
6761 : : logical_type_node, cond, not_prev_allocated);
6762 : :
6763 : 230 : gfc_add_expr_to_block (&se->pre,
6764 : : fold_build3_loc (input_location, COND_EXPR, void_type_node,
6765 : : cond,
6766 : : set_descriptor,
6767 : : build_empty_stmt (input_location)));
6768 : : }
6769 : : else
6770 : 11295 : gfc_add_expr_to_block (&se->pre, set_descriptor);
6771 : :
6772 : 11525 : expr->symtree->n.sym->allocated_in_scope = 1;
6773 : :
6774 : 11525 : return true;
6775 : : }
6776 : :
6777 : :
6778 : : /* Create an array constructor from an initialization expression.
6779 : : We assume the frontend already did any expansions and conversions. */
6780 : :
6781 : : tree
6782 : 7524 : gfc_conv_array_initializer (tree type, gfc_expr * expr)
6783 : : {
6784 : 7524 : gfc_constructor *c;
6785 : 7524 : tree tmp;
6786 : 7524 : gfc_se se;
6787 : 7524 : tree index, range;
6788 : 7524 : vec<constructor_elt, va_gc> *v = NULL;
6789 : :
6790 : 7524 : if (expr->expr_type == EXPR_VARIABLE
6791 : 0 : && expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6792 : 0 : && expr->symtree->n.sym->value)
6793 : 7524 : expr = expr->symtree->n.sym->value;
6794 : :
6795 : 7524 : switch (expr->expr_type)
6796 : : {
6797 : 1072 : case EXPR_CONSTANT:
6798 : 1072 : case EXPR_STRUCTURE:
6799 : : /* A single scalar or derived type value. Create an array with all
6800 : : elements equal to that value. */
6801 : 1072 : gfc_init_se (&se, NULL);
6802 : :
6803 : 1072 : if (expr->expr_type == EXPR_CONSTANT)
6804 : 377 : gfc_conv_constant (&se, expr);
6805 : : else
6806 : 695 : gfc_conv_structure (&se, expr, 1);
6807 : :
6808 : 2144 : if (tree_int_cst_lt (TYPE_MAX_VALUE (TYPE_DOMAIN (type)),
6809 : 1072 : TYPE_MIN_VALUE (TYPE_DOMAIN (type))))
6810 : : break;
6811 : 2120 : else if (tree_int_cst_equal (TYPE_MIN_VALUE (TYPE_DOMAIN (type)),
6812 : 1060 : TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
6813 : 144 : range = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
6814 : : else
6815 : 1832 : range = build2 (RANGE_EXPR, gfc_array_index_type,
6816 : 916 : TYPE_MIN_VALUE (TYPE_DOMAIN (type)),
6817 : 916 : TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
6818 : 1060 : CONSTRUCTOR_APPEND_ELT (v, range, se.expr);
6819 : 1060 : break;
6820 : :
6821 : 6452 : case EXPR_ARRAY:
6822 : : /* Create a vector of all the elements. */
6823 : 6452 : for (c = gfc_constructor_first (expr->value.constructor);
6824 : 163888 : c && c->expr; c = gfc_constructor_next (c))
6825 : : {
6826 : 157436 : if (c->iterator)
6827 : : {
6828 : : /* Problems occur when we get something like
6829 : : integer :: a(lots) = (/(i, i=1, lots)/) */
6830 : 0 : gfc_fatal_error ("The number of elements in the array "
6831 : : "constructor at %L requires an increase of "
6832 : : "the allowed %d upper limit. See "
6833 : : "%<-fmax-array-constructor%> option",
6834 : : &expr->where, flag_max_array_constructor);
6835 : : return NULL_TREE;
6836 : : }
6837 : 157436 : if (mpz_cmp_si (c->offset, 0) != 0)
6838 : 151241 : index = gfc_conv_mpz_to_tree (c->offset, gfc_index_integer_kind);
6839 : : else
6840 : : index = NULL_TREE;
6841 : :
6842 : 157436 : if (mpz_cmp_si (c->repeat, 1) > 0)
6843 : : {
6844 : 152 : tree tmp1, tmp2;
6845 : 152 : mpz_t maxval;
6846 : :
6847 : 152 : mpz_init (maxval);
6848 : 152 : mpz_add (maxval, c->offset, c->repeat);
6849 : 152 : mpz_sub_ui (maxval, maxval, 1);
6850 : 152 : tmp2 = gfc_conv_mpz_to_tree (maxval, gfc_index_integer_kind);
6851 : 152 : if (mpz_cmp_si (c->offset, 0) != 0)
6852 : : {
6853 : 27 : mpz_add_ui (maxval, c->offset, 1);
6854 : 27 : tmp1 = gfc_conv_mpz_to_tree (maxval, gfc_index_integer_kind);
6855 : : }
6856 : : else
6857 : 125 : tmp1 = gfc_conv_mpz_to_tree (c->offset, gfc_index_integer_kind);
6858 : :
6859 : 152 : range = fold_build2 (RANGE_EXPR, gfc_array_index_type, tmp1, tmp2);
6860 : 152 : mpz_clear (maxval);
6861 : : }
6862 : : else
6863 : : range = NULL;
6864 : :
6865 : 157436 : gfc_init_se (&se, NULL);
6866 : 157436 : switch (c->expr->expr_type)
6867 : : {
6868 : 156210 : case EXPR_CONSTANT:
6869 : 156210 : gfc_conv_constant (&se, c->expr);
6870 : :
6871 : : /* See gfortran.dg/charlen_15.f90 for instance. */
6872 : 156210 : if (TREE_CODE (se.expr) == STRING_CST
6873 : 5135 : && TREE_CODE (type) == ARRAY_TYPE)
6874 : : {
6875 : : tree atype = type;
6876 : 10270 : while (TREE_CODE (TREE_TYPE (atype)) == ARRAY_TYPE)
6877 : 5135 : atype = TREE_TYPE (atype);
6878 : 5135 : gcc_checking_assert (TREE_CODE (TREE_TYPE (atype))
6879 : : == INTEGER_TYPE);
6880 : 5135 : gcc_checking_assert (TREE_TYPE (TREE_TYPE (se.expr))
6881 : : == TREE_TYPE (atype));
6882 : 5135 : if (tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (se.expr)))
6883 : 5135 : > tree_to_uhwi (TYPE_SIZE_UNIT (atype)))
6884 : : {
6885 : 0 : unsigned HOST_WIDE_INT size
6886 : 0 : = tree_to_uhwi (TYPE_SIZE_UNIT (atype));
6887 : 0 : const char *p = TREE_STRING_POINTER (se.expr);
6888 : :
6889 : 0 : se.expr = build_string (size, p);
6890 : : }
6891 : 5135 : TREE_TYPE (se.expr) = atype;
6892 : : }
6893 : : break;
6894 : :
6895 : 1226 : case EXPR_STRUCTURE:
6896 : 1226 : gfc_conv_structure (&se, c->expr, 1);
6897 : 1226 : break;
6898 : :
6899 : 0 : default:
6900 : : /* Catch those occasional beasts that do not simplify
6901 : : for one reason or another, assuming that if they are
6902 : : standard defying the frontend will catch them. */
6903 : 0 : gfc_conv_expr (&se, c->expr);
6904 : 0 : break;
6905 : : }
6906 : :
6907 : 157436 : if (range == NULL_TREE)
6908 : 157284 : CONSTRUCTOR_APPEND_ELT (v, index, se.expr);
6909 : : else
6910 : : {
6911 : 152 : if (index != NULL_TREE)
6912 : 27 : CONSTRUCTOR_APPEND_ELT (v, index, se.expr);
6913 : 157588 : CONSTRUCTOR_APPEND_ELT (v, range, se.expr);
6914 : : }
6915 : : }
6916 : : break;
6917 : :
6918 : 0 : case EXPR_NULL:
6919 : 0 : return gfc_build_null_descriptor (type);
6920 : :
6921 : 0 : default:
6922 : 0 : gcc_unreachable ();
6923 : : }
6924 : :
6925 : : /* Create a constructor from the list of elements. */
6926 : 7524 : tmp = build_constructor (type, v);
6927 : 7524 : TREE_CONSTANT (tmp) = 1;
6928 : 7524 : return tmp;
6929 : : }
6930 : :
6931 : :
6932 : : /* Generate code to evaluate non-constant coarray cobounds. */
6933 : :
6934 : : void
6935 : 19117 : gfc_trans_array_cobounds (tree type, stmtblock_t * pblock,
6936 : : const gfc_symbol *sym)
6937 : : {
6938 : 19117 : int dim;
6939 : 19117 : tree ubound;
6940 : 19117 : tree lbound;
6941 : 19117 : gfc_se se;
6942 : 19117 : gfc_array_spec *as;
6943 : :
6944 : 19117 : as = IS_CLASS_COARRAY_OR_ARRAY (sym) ? CLASS_DATA (sym)->as : sym->as;
6945 : :
6946 : 19773 : for (dim = as->rank; dim < as->rank + as->corank; dim++)
6947 : : {
6948 : : /* Evaluate non-constant array bound expressions.
6949 : : F2008 4.5.6.3 para 6: If a specification expression in a scoping unit
6950 : : references a function, the result is finalized before execution of the
6951 : : executable constructs in the scoping unit.
6952 : : Adding the finalblocks enables this. */
6953 : 656 : lbound = GFC_TYPE_ARRAY_LBOUND (type, dim);
6954 : 656 : if (as->lower[dim] && !INTEGER_CST_P (lbound))
6955 : : {
6956 : 96 : gfc_init_se (&se, NULL);
6957 : 96 : gfc_conv_expr_type (&se, as->lower[dim], gfc_array_index_type);
6958 : 96 : gfc_add_block_to_block (pblock, &se.pre);
6959 : 96 : gfc_add_block_to_block (pblock, &se.finalblock);
6960 : 96 : gfc_add_modify (pblock, lbound, se.expr);
6961 : : }
6962 : 656 : ubound = GFC_TYPE_ARRAY_UBOUND (type, dim);
6963 : 656 : if (as->upper[dim] && !INTEGER_CST_P (ubound))
6964 : : {
6965 : 50 : gfc_init_se (&se, NULL);
6966 : 50 : gfc_conv_expr_type (&se, as->upper[dim], gfc_array_index_type);
6967 : 50 : gfc_add_block_to_block (pblock, &se.pre);
6968 : 50 : gfc_add_block_to_block (pblock, &se.finalblock);
6969 : 50 : gfc_add_modify (pblock, ubound, se.expr);
6970 : : }
6971 : : }
6972 : 19117 : }
6973 : :
6974 : :
6975 : : /* Generate code to evaluate non-constant array bounds. Sets *poffset and
6976 : : returns the size (in elements) of the array. */
6977 : :
6978 : : tree
6979 : 12275 : gfc_trans_array_bounds (tree type, gfc_symbol * sym, tree * poffset,
6980 : : stmtblock_t * pblock)
6981 : : {
6982 : 12275 : gfc_array_spec *as;
6983 : 12275 : tree size;
6984 : 12275 : tree stride;
6985 : 12275 : tree offset;
6986 : 12275 : tree ubound;
6987 : 12275 : tree lbound;
6988 : 12275 : tree tmp;
6989 : 12275 : gfc_se se;
6990 : :
6991 : 12275 : int dim;
6992 : :
6993 : 12275 : as = IS_CLASS_COARRAY_OR_ARRAY (sym) ? CLASS_DATA (sym)->as : sym->as;
6994 : :
6995 : 12275 : size = gfc_index_one_node;
6996 : 12275 : offset = gfc_index_zero_node;
6997 : 12275 : stride = GFC_TYPE_ARRAY_STRIDE (type, 0);
6998 : 12275 : if (stride && VAR_P (stride))
6999 : 111 : gfc_add_modify (pblock, stride, gfc_index_one_node);
7000 : 27871 : for (dim = 0; dim < as->rank; dim++)
7001 : : {
7002 : : /* Evaluate non-constant array bound expressions.
7003 : : F2008 4.5.6.3 para 6: If a specification expression in a scoping unit
7004 : : references a function, the result is finalized before execution of the
7005 : : executable constructs in the scoping unit.
7006 : : Adding the finalblocks enables this. */
7007 : 15596 : lbound = GFC_TYPE_ARRAY_LBOUND (type, dim);
7008 : 15596 : if (as->lower[dim] && !INTEGER_CST_P (lbound))
7009 : : {
7010 : 484 : gfc_init_se (&se, NULL);
7011 : 484 : gfc_conv_expr_type (&se, as->lower[dim], gfc_array_index_type);
7012 : 484 : gfc_add_block_to_block (pblock, &se.pre);
7013 : 484 : gfc_add_block_to_block (pblock, &se.finalblock);
7014 : 484 : gfc_add_modify (pblock, lbound, se.expr);
7015 : : }
7016 : 15596 : ubound = GFC_TYPE_ARRAY_UBOUND (type, dim);
7017 : 15596 : if (as->upper[dim] && !INTEGER_CST_P (ubound))
7018 : : {
7019 : 9322 : gfc_init_se (&se, NULL);
7020 : 9322 : gfc_conv_expr_type (&se, as->upper[dim], gfc_array_index_type);
7021 : 9322 : gfc_add_block_to_block (pblock, &se.pre);
7022 : 9322 : gfc_add_block_to_block (pblock, &se.finalblock);
7023 : 9322 : gfc_add_modify (pblock, ubound, se.expr);
7024 : : }
7025 : : /* The offset of this dimension. offset = offset - lbound * stride. */
7026 : 15596 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
7027 : : lbound, size);
7028 : 15596 : offset = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
7029 : : offset, tmp);
7030 : :
7031 : : /* The size of this dimension, and the stride of the next. */
7032 : 15596 : if (dim + 1 < as->rank)
7033 : 3395 : stride = GFC_TYPE_ARRAY_STRIDE (type, dim + 1);
7034 : : else
7035 : 12201 : stride = GFC_TYPE_ARRAY_SIZE (type);
7036 : :
7037 : 15596 : if (ubound != NULL_TREE && !(stride && INTEGER_CST_P (stride)))
7038 : : {
7039 : : /* Calculate stride = size * (ubound + 1 - lbound). */
7040 : 9507 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
7041 : : gfc_array_index_type,
7042 : : gfc_index_one_node, lbound);
7043 : 9507 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
7044 : : gfc_array_index_type, ubound, tmp);
7045 : 9507 : tmp = fold_build2_loc (input_location, MULT_EXPR,
7046 : : gfc_array_index_type, size, tmp);
7047 : 9507 : if (stride)
7048 : 9507 : gfc_add_modify (pblock, stride, tmp);
7049 : : else
7050 : 0 : stride = gfc_evaluate_now (tmp, pblock);
7051 : :
7052 : : /* Make sure that negative size arrays are translated
7053 : : to being zero size. */
7054 : 9507 : tmp = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
7055 : : stride, gfc_index_zero_node);
7056 : 9507 : tmp = fold_build3_loc (input_location, COND_EXPR,
7057 : : gfc_array_index_type, tmp,
7058 : : stride, gfc_index_zero_node);
7059 : 9507 : gfc_add_modify (pblock, stride, tmp);
7060 : : }
7061 : :
7062 : : size = stride;
7063 : : }
7064 : :
7065 : 12275 : gfc_trans_array_cobounds (type, pblock, sym);
7066 : 12275 : gfc_trans_vla_type_sizes (sym, pblock);
7067 : :
7068 : 12275 : *poffset = offset;
7069 : 12275 : return size;
7070 : : }
7071 : :
7072 : :
7073 : : /* Generate code to initialize/allocate an array variable. */
7074 : :
7075 : : void
7076 : 29769 : gfc_trans_auto_array_allocation (tree decl, gfc_symbol * sym,
7077 : : gfc_wrapped_block * block)
7078 : : {
7079 : 29769 : stmtblock_t init;
7080 : 29769 : tree type;
7081 : 29769 : tree tmp = NULL_TREE;
7082 : 29769 : tree size;
7083 : 29769 : tree offset;
7084 : 29769 : tree space;
7085 : 29769 : tree inittree;
7086 : 29769 : bool onstack;
7087 : 29769 : bool back;
7088 : :
7089 : 29769 : gcc_assert (!(sym->attr.pointer || sym->attr.allocatable));
7090 : :
7091 : : /* Do nothing for USEd variables. */
7092 : 29769 : if (sym->attr.use_assoc)
7093 : 24894 : return;
7094 : :
7095 : 29729 : type = TREE_TYPE (decl);
7096 : 29729 : gcc_assert (GFC_ARRAY_TYPE_P (type));
7097 : 29729 : onstack = TREE_CODE (type) != POINTER_TYPE;
7098 : :
7099 : : /* In the case of non-dummy symbols with dependencies on an old-fashioned
7100 : : function result (ie. proc_name = proc_name->result), gfc_add_init_cleanup
7101 : : must be called with the last, optional argument false so that the alloc-
7102 : : ation occurs after the processing of the result. */
7103 : 29729 : back = sym->fn_result_dep;
7104 : :
7105 : 29729 : gfc_init_block (&init);
7106 : :
7107 : : /* Evaluate character string length. */
7108 : 29729 : if (sym->ts.type == BT_CHARACTER
7109 : 2960 : && onstack && !INTEGER_CST_P (sym->ts.u.cl->backend_decl))
7110 : : {
7111 : 43 : gfc_conv_string_length (sym->ts.u.cl, NULL, &init);
7112 : :
7113 : 43 : gfc_trans_vla_type_sizes (sym, &init);
7114 : :
7115 : : /* Emit a DECL_EXPR for this variable, which will cause the
7116 : : gimplifier to allocate storage, and all that good stuff. */
7117 : 43 : tmp = fold_build1_loc (input_location, DECL_EXPR, TREE_TYPE (decl), decl);
7118 : 43 : gfc_add_expr_to_block (&init, tmp);
7119 : 43 : if (sym->attr.omp_allocate)
7120 : : {
7121 : : /* Save location of size calculation to ensure GOMP_alloc is placed
7122 : : after it. */
7123 : 0 : tree omp_alloc = lookup_attribute ("omp allocate",
7124 : 0 : DECL_ATTRIBUTES (decl));
7125 : 0 : TREE_CHAIN (TREE_CHAIN (TREE_VALUE (omp_alloc)))
7126 : 0 : = build_tree_list (NULL_TREE, tsi_stmt (tsi_last (init.head)));
7127 : : }
7128 : : }
7129 : :
7130 : 29527 : if (onstack)
7131 : : {
7132 : 24714 : gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE,
7133 : : back);
7134 : 24714 : return;
7135 : : }
7136 : :
7137 : 5015 : type = TREE_TYPE (type);
7138 : :
7139 : 5015 : gcc_assert (!sym->attr.use_assoc);
7140 : 5015 : gcc_assert (!sym->module);
7141 : :
7142 : 5015 : if (sym->ts.type == BT_CHARACTER
7143 : 202 : && !INTEGER_CST_P (sym->ts.u.cl->backend_decl))
7144 : 94 : gfc_conv_string_length (sym->ts.u.cl, NULL, &init);
7145 : :
7146 : 5015 : size = gfc_trans_array_bounds (type, sym, &offset, &init);
7147 : :
7148 : : /* Don't actually allocate space for Cray Pointees. */
7149 : 5015 : if (sym->attr.cray_pointee)
7150 : : {
7151 : 140 : if (VAR_P (GFC_TYPE_ARRAY_OFFSET (type)))
7152 : 49 : gfc_add_modify (&init, GFC_TYPE_ARRAY_OFFSET (type), offset);
7153 : :
7154 : 140 : gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
7155 : 140 : return;
7156 : : }
7157 : 4875 : if (sym->attr.omp_allocate)
7158 : : {
7159 : : /* The size is the number of elements in the array, so multiply by the
7160 : : size of an element to get the total size. */
7161 : 7 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (type));
7162 : 7 : size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
7163 : : size, fold_convert (gfc_array_index_type, tmp));
7164 : 7 : size = gfc_evaluate_now (size, &init);
7165 : :
7166 : 7 : tree omp_alloc = lookup_attribute ("omp allocate",
7167 : 7 : DECL_ATTRIBUTES (decl));
7168 : 7 : TREE_CHAIN (TREE_CHAIN (TREE_VALUE (omp_alloc)))
7169 : 7 : = build_tree_list (size, NULL_TREE);
7170 : 7 : space = NULL_TREE;
7171 : : }
7172 : 4868 : else if (flag_stack_arrays)
7173 : : {
7174 : 11 : gcc_assert (TREE_CODE (TREE_TYPE (decl)) == POINTER_TYPE);
7175 : 11 : space = build_decl (gfc_get_location (&sym->declared_at),
7176 : : VAR_DECL, create_tmp_var_name ("A"),
7177 : 11 : TREE_TYPE (TREE_TYPE (decl)));
7178 : 11 : gfc_trans_vla_type_sizes (sym, &init);
7179 : : }
7180 : : else
7181 : : {
7182 : : /* The size is the number of elements in the array, so multiply by the
7183 : : size of an element to get the total size. */
7184 : 4857 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (type));
7185 : 4857 : size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
7186 : : size, fold_convert (gfc_array_index_type, tmp));
7187 : :
7188 : : /* Allocate memory to hold the data. */
7189 : 4857 : tmp = gfc_call_malloc (&init, TREE_TYPE (decl), size);
7190 : 4857 : gfc_add_modify (&init, decl, tmp);
7191 : :
7192 : : /* Free the temporary. */
7193 : 4857 : tmp = gfc_call_free (decl);
7194 : 4857 : space = NULL_TREE;
7195 : : }
7196 : :
7197 : : /* Set offset of the array. */
7198 : 4875 : if (VAR_P (GFC_TYPE_ARRAY_OFFSET (type)))
7199 : 398 : gfc_add_modify (&init, GFC_TYPE_ARRAY_OFFSET (type), offset);
7200 : :
7201 : : /* Automatic arrays should not have initializers. */
7202 : 4875 : gcc_assert (!sym->value);
7203 : :
7204 : 4875 : inittree = gfc_finish_block (&init);
7205 : :
7206 : 4875 : if (space)
7207 : : {
7208 : 11 : tree addr;
7209 : 11 : pushdecl (space);
7210 : :
7211 : : /* Don't create new scope, emit the DECL_EXPR in exactly the scope
7212 : : where also space is located. */
7213 : 11 : gfc_init_block (&init);
7214 : 11 : tmp = fold_build1_loc (input_location, DECL_EXPR,
7215 : 11 : TREE_TYPE (space), space);
7216 : 11 : gfc_add_expr_to_block (&init, tmp);
7217 : 11 : addr = fold_build1_loc (gfc_get_location (&sym->declared_at),
7218 : 11 : ADDR_EXPR, TREE_TYPE (decl), space);
7219 : 11 : gfc_add_modify (&init, decl, addr);
7220 : 11 : gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE,
7221 : : back);
7222 : 11 : tmp = NULL_TREE;
7223 : : }
7224 : 4875 : gfc_add_init_cleanup (block, inittree, tmp, back);
7225 : : }
7226 : :
7227 : :
7228 : : /* Generate entry and exit code for g77 calling convention arrays. */
7229 : :
7230 : : void
7231 : 7006 : gfc_trans_g77_array (gfc_symbol * sym, gfc_wrapped_block * block)
7232 : : {
7233 : 7006 : tree parm;
7234 : 7006 : tree type;
7235 : 7006 : tree offset;
7236 : 7006 : tree tmp;
7237 : 7006 : tree stmt;
7238 : 7006 : stmtblock_t init;
7239 : :
7240 : 7006 : location_t loc = input_location;
7241 : 7006 : input_location = gfc_get_location (&sym->declared_at);
7242 : :
7243 : : /* Descriptor type. */
7244 : 7006 : parm = sym->backend_decl;
7245 : 7006 : type = TREE_TYPE (parm);
7246 : 7006 : gcc_assert (GFC_ARRAY_TYPE_P (type));
7247 : :
7248 : 7006 : gfc_start_block (&init);
7249 : :
7250 : 7006 : if (sym->ts.type == BT_CHARACTER
7251 : 634 : && VAR_P (sym->ts.u.cl->backend_decl))
7252 : 79 : gfc_conv_string_length (sym->ts.u.cl, NULL, &init);
7253 : :
7254 : : /* Evaluate the bounds of the array. */
7255 : 7006 : gfc_trans_array_bounds (type, sym, &offset, &init);
7256 : :
7257 : : /* Set the offset. */
7258 : 7006 : if (VAR_P (GFC_TYPE_ARRAY_OFFSET (type)))
7259 : 1190 : gfc_add_modify (&init, GFC_TYPE_ARRAY_OFFSET (type), offset);
7260 : :
7261 : : /* Set the pointer itself if we aren't using the parameter directly. */
7262 : 7006 : if (TREE_CODE (parm) != PARM_DECL)
7263 : : {
7264 : 510 : tmp = GFC_DECL_SAVED_DESCRIPTOR (parm);
7265 : 510 : if (sym->ts.type == BT_CLASS)
7266 : : {
7267 : 222 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
7268 : 222 : tmp = gfc_class_data_get (tmp);
7269 : 222 : tmp = gfc_conv_descriptor_data_get (tmp);
7270 : : }
7271 : 510 : tmp = convert (TREE_TYPE (parm), tmp);
7272 : 510 : gfc_add_modify (&init, parm, tmp);
7273 : : }
7274 : 7006 : stmt = gfc_finish_block (&init);
7275 : :
7276 : 7006 : input_location = loc;
7277 : :
7278 : : /* Add the initialization code to the start of the function. */
7279 : :
7280 : 7006 : if ((sym->ts.type == BT_CLASS && CLASS_DATA (sym)->attr.optional)
7281 : : || sym->attr.optional
7282 : 7006 : || sym->attr.not_always_present)
7283 : : {
7284 : 550 : tree nullify;
7285 : 550 : if (TREE_CODE (parm) != PARM_DECL)
7286 : 103 : nullify = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node,
7287 : : parm, null_pointer_node);
7288 : : else
7289 : 447 : nullify = build_empty_stmt (input_location);
7290 : 550 : tmp = gfc_conv_expr_present (sym, true);
7291 : 550 : stmt = build3_v (COND_EXPR, tmp, stmt, nullify);
7292 : : }
7293 : :
7294 : 7006 : gfc_add_init_cleanup (block, stmt, NULL_TREE);
7295 : 7006 : }
7296 : :
7297 : :
7298 : : /* Modify the descriptor of an array parameter so that it has the
7299 : : correct lower bound. Also move the upper bound accordingly.
7300 : : If the array is not packed, it will be copied into a temporary.
7301 : : For each dimension we set the new lower and upper bounds. Then we copy the
7302 : : stride and calculate the offset for this dimension. We also work out
7303 : : what the stride of a packed array would be, and see it the two match.
7304 : : If the array need repacking, we set the stride to the values we just
7305 : : calculated, recalculate the offset and copy the array data.
7306 : : Code is also added to copy the data back at the end of the function.
7307 : : */
7308 : :
7309 : : void
7310 : 12278 : gfc_trans_dummy_array_bias (gfc_symbol * sym, tree tmpdesc,
7311 : : gfc_wrapped_block * block)
7312 : : {
7313 : 12278 : tree size;
7314 : 12278 : tree type;
7315 : 12278 : tree offset;
7316 : 12278 : stmtblock_t init;
7317 : 12278 : tree stmtInit, stmtCleanup;
7318 : 12278 : tree lbound;
7319 : 12278 : tree ubound;
7320 : 12278 : tree dubound;
7321 : 12278 : tree dlbound;
7322 : 12278 : tree dumdesc;
7323 : 12278 : tree tmp;
7324 : 12278 : tree stride, stride2;
7325 : 12278 : tree stmt_packed;
7326 : 12278 : tree stmt_unpacked;
7327 : 12278 : tree partial;
7328 : 12278 : gfc_se se;
7329 : 12278 : int n;
7330 : 12278 : int checkparm;
7331 : 12278 : int no_repack;
7332 : 12278 : bool optional_arg;
7333 : 12278 : gfc_array_spec *as;
7334 : 12278 : bool is_classarray = IS_CLASS_COARRAY_OR_ARRAY (sym);
7335 : :
7336 : : /* Do nothing for pointer and allocatable arrays. */
7337 : 12278 : if ((sym->ts.type != BT_CLASS && sym->attr.pointer)
7338 : 12181 : || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->attr.class_pointer)
7339 : 12181 : || sym->attr.allocatable
7340 : 12044 : || (is_classarray && CLASS_DATA (sym)->attr.allocatable))
7341 : 5734 : return;
7342 : :
7343 : 695 : if ((!is_classarray
7344 : 695 : || (is_classarray && CLASS_DATA (sym)->as->type == AS_EXPLICIT))
7345 : 11512 : && sym->attr.dummy && !sym->attr.elemental && gfc_is_nodesc_array (sym))
7346 : : {
7347 : 5500 : gfc_trans_g77_array (sym, block);
7348 : 5500 : return;
7349 : : }
7350 : :
7351 : 6544 : location_t loc = input_location;
7352 : 6544 : input_location = gfc_get_location (&sym->declared_at);
7353 : :
7354 : : /* Descriptor type. */
7355 : 6544 : type = TREE_TYPE (tmpdesc);
7356 : 6544 : gcc_assert (GFC_ARRAY_TYPE_P (type));
7357 : 6544 : dumdesc = GFC_DECL_SAVED_DESCRIPTOR (tmpdesc);
7358 : 6544 : if (is_classarray)
7359 : : /* For a class array the dummy array descriptor is in the _class
7360 : : component. */
7361 : 551 : dumdesc = gfc_class_data_get (dumdesc);
7362 : : else
7363 : 5993 : dumdesc = build_fold_indirect_ref_loc (input_location, dumdesc);
7364 : 6544 : as = IS_CLASS_ARRAY (sym) ? CLASS_DATA (sym)->as : sym->as;
7365 : 6544 : gfc_start_block (&init);
7366 : :
7367 : 6544 : if (sym->ts.type == BT_CHARACTER
7368 : 763 : && VAR_P (sym->ts.u.cl->backend_decl))
7369 : 87 : gfc_conv_string_length (sym->ts.u.cl, NULL, &init);
7370 : :
7371 : : /* TODO: Fix the exclusion of class arrays from extent checking. */
7372 : 1034 : checkparm = (as->type == AS_EXPLICIT && !is_classarray
7373 : 7559 : && (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS));
7374 : :
7375 : 6544 : no_repack = !(GFC_DECL_PACKED_ARRAY (tmpdesc)
7376 : 6543 : || GFC_DECL_PARTIAL_PACKED_ARRAY (tmpdesc));
7377 : :
7378 : 6544 : if (GFC_DECL_PARTIAL_PACKED_ARRAY (tmpdesc))
7379 : : {
7380 : : /* For non-constant shape arrays we only check if the first dimension
7381 : : is contiguous. Repacking higher dimensions wouldn't gain us
7382 : : anything as we still don't know the array stride. */
7383 : 1 : partial = gfc_create_var (logical_type_node, "partial");
7384 : 1 : TREE_USED (partial) = 1;
7385 : 1 : tmp = gfc_conv_descriptor_stride_get (dumdesc, gfc_rank_cst[0]);
7386 : 1 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node, tmp,
7387 : : gfc_index_one_node);
7388 : 1 : gfc_add_modify (&init, partial, tmp);
7389 : : }
7390 : : else
7391 : : partial = NULL_TREE;
7392 : :
7393 : : /* The naming of stmt_unpacked and stmt_packed may be counter-intuitive
7394 : : here, however I think it does the right thing. */
7395 : 6544 : if (no_repack)
7396 : : {
7397 : : /* Set the first stride. */
7398 : 6542 : stride = gfc_conv_descriptor_stride_get (dumdesc, gfc_rank_cst[0]);
7399 : 6542 : stride = gfc_evaluate_now (stride, &init);
7400 : :
7401 : 6542 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
7402 : : stride, gfc_index_zero_node);
7403 : 6542 : tmp = fold_build3_loc (input_location, COND_EXPR, gfc_array_index_type,
7404 : : tmp, gfc_index_one_node, stride);
7405 : 6542 : stride = GFC_TYPE_ARRAY_STRIDE (type, 0);
7406 : 6542 : gfc_add_modify (&init, stride, tmp);
7407 : :
7408 : : /* Allow the user to disable array repacking. */
7409 : 6542 : stmt_unpacked = NULL_TREE;
7410 : : }
7411 : : else
7412 : : {
7413 : 2 : gcc_assert (integer_onep (GFC_TYPE_ARRAY_STRIDE (type, 0)));
7414 : : /* A library call to repack the array if necessary. */
7415 : 2 : tmp = GFC_DECL_SAVED_DESCRIPTOR (tmpdesc);
7416 : 2 : stmt_unpacked = build_call_expr_loc (input_location,
7417 : : gfor_fndecl_in_pack, 1, tmp);
7418 : :
7419 : 2 : stride = gfc_index_one_node;
7420 : :
7421 : 2 : if (warn_array_temporaries)
7422 : : {
7423 : 1 : locus where;
7424 : 1 : gfc_locus_from_location (&where, loc);
7425 : 1 : gfc_warning (OPT_Warray_temporaries,
7426 : : "Creating array temporary at %L", &where);
7427 : : }
7428 : : }
7429 : :
7430 : : /* This is for the case where the array data is used directly without
7431 : : calling the repack function. */
7432 : 6544 : if (no_repack || partial != NULL_TREE)
7433 : 6543 : stmt_packed = gfc_conv_descriptor_data_get (dumdesc);
7434 : : else
7435 : : stmt_packed = NULL_TREE;
7436 : :
7437 : : /* Assign the data pointer. */
7438 : 6544 : if (stmt_packed != NULL_TREE && stmt_unpacked != NULL_TREE)
7439 : : {
7440 : : /* Don't repack unknown shape arrays when the first stride is 1. */
7441 : 1 : tmp = fold_build3_loc (input_location, COND_EXPR, TREE_TYPE (stmt_packed),
7442 : : partial, stmt_packed, stmt_unpacked);
7443 : : }
7444 : : else
7445 : 6543 : tmp = stmt_packed != NULL_TREE ? stmt_packed : stmt_unpacked;
7446 : 6544 : gfc_add_modify (&init, tmpdesc, fold_convert (type, tmp));
7447 : :
7448 : 6544 : offset = gfc_index_zero_node;
7449 : 6544 : size = gfc_index_one_node;
7450 : :
7451 : : /* Evaluate the bounds of the array. */
7452 : 15352 : for (n = 0; n < as->rank; n++)
7453 : : {
7454 : 8808 : if (checkparm || !as->upper[n])
7455 : : {
7456 : : /* Get the bounds of the actual parameter. */
7457 : 7539 : dubound = gfc_conv_descriptor_ubound_get (dumdesc, gfc_rank_cst[n]);
7458 : 7539 : dlbound = gfc_conv_descriptor_lbound_get (dumdesc, gfc_rank_cst[n]);
7459 : : }
7460 : : else
7461 : : {
7462 : : dubound = NULL_TREE;
7463 : : dlbound = NULL_TREE;
7464 : : }
7465 : :
7466 : 8808 : lbound = GFC_TYPE_ARRAY_LBOUND (type, n);
7467 : 8808 : if (!INTEGER_CST_P (lbound))
7468 : : {
7469 : 45 : gfc_init_se (&se, NULL);
7470 : 45 : gfc_conv_expr_type (&se, as->lower[n],
7471 : : gfc_array_index_type);
7472 : 45 : gfc_add_block_to_block (&init, &se.pre);
7473 : 45 : gfc_add_modify (&init, lbound, se.expr);
7474 : : }
7475 : :
7476 : 8808 : ubound = GFC_TYPE_ARRAY_UBOUND (type, n);
7477 : : /* Set the desired upper bound. */
7478 : 8808 : if (as->upper[n])
7479 : : {
7480 : : /* We know what we want the upper bound to be. */
7481 : 1327 : if (!INTEGER_CST_P (ubound))
7482 : : {
7483 : 629 : gfc_init_se (&se, NULL);
7484 : 629 : gfc_conv_expr_type (&se, as->upper[n],
7485 : : gfc_array_index_type);
7486 : 629 : gfc_add_block_to_block (&init, &se.pre);
7487 : 629 : gfc_add_modify (&init, ubound, se.expr);
7488 : : }
7489 : :
7490 : : /* Check the sizes match. */
7491 : 1327 : if (checkparm)
7492 : : {
7493 : : /* Check (ubound(a) - lbound(a) == ubound(b) - lbound(b)). */
7494 : 58 : char * msg;
7495 : 58 : tree temp;
7496 : 58 : locus where;
7497 : :
7498 : 58 : gfc_locus_from_location (&where, loc);
7499 : 58 : temp = fold_build2_loc (input_location, MINUS_EXPR,
7500 : : gfc_array_index_type, ubound, lbound);
7501 : 58 : temp = fold_build2_loc (input_location, PLUS_EXPR,
7502 : : gfc_array_index_type,
7503 : : gfc_index_one_node, temp);
7504 : 58 : stride2 = fold_build2_loc (input_location, MINUS_EXPR,
7505 : : gfc_array_index_type, dubound,
7506 : : dlbound);
7507 : 58 : stride2 = fold_build2_loc (input_location, PLUS_EXPR,
7508 : : gfc_array_index_type,
7509 : : gfc_index_one_node, stride2);
7510 : 58 : tmp = fold_build2_loc (input_location, NE_EXPR,
7511 : : gfc_array_index_type, temp, stride2);
7512 : 58 : msg = xasprintf ("Dimension %d of array '%s' has extent "
7513 : : "%%ld instead of %%ld", n+1, sym->name);
7514 : :
7515 : 58 : gfc_trans_runtime_check (true, false, tmp, &init, &where, msg,
7516 : : fold_convert (long_integer_type_node, temp),
7517 : : fold_convert (long_integer_type_node, stride2));
7518 : :
7519 : 58 : free (msg);
7520 : : }
7521 : : }
7522 : : else
7523 : : {
7524 : : /* For assumed shape arrays move the upper bound by the same amount
7525 : : as the lower bound. */
7526 : 7481 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
7527 : : gfc_array_index_type, dubound, dlbound);
7528 : 7481 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
7529 : : gfc_array_index_type, tmp, lbound);
7530 : 7481 : gfc_add_modify (&init, ubound, tmp);
7531 : : }
7532 : : /* The offset of this dimension. offset = offset - lbound * stride. */
7533 : 8808 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
7534 : : lbound, stride);
7535 : 8808 : offset = fold_build2_loc (input_location, MINUS_EXPR,
7536 : : gfc_array_index_type, offset, tmp);
7537 : :
7538 : : /* The size of this dimension, and the stride of the next. */
7539 : 8808 : if (n + 1 < as->rank)
7540 : : {
7541 : 2264 : stride = GFC_TYPE_ARRAY_STRIDE (type, n + 1);
7542 : :
7543 : 2264 : if (no_repack || partial != NULL_TREE)
7544 : 2263 : stmt_unpacked =
7545 : 2263 : gfc_conv_descriptor_stride_get (dumdesc, gfc_rank_cst[n+1]);
7546 : :
7547 : : /* Figure out the stride if not a known constant. */
7548 : 2264 : if (!INTEGER_CST_P (stride))
7549 : : {
7550 : 2263 : if (no_repack)
7551 : : stmt_packed = NULL_TREE;
7552 : : else
7553 : : {
7554 : : /* Calculate stride = size * (ubound + 1 - lbound). */
7555 : 0 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
7556 : : gfc_array_index_type,
7557 : : gfc_index_one_node, lbound);
7558 : 0 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
7559 : : gfc_array_index_type, ubound, tmp);
7560 : 0 : size = fold_build2_loc (input_location, MULT_EXPR,
7561 : : gfc_array_index_type, size, tmp);
7562 : 0 : stmt_packed = size;
7563 : : }
7564 : :
7565 : : /* Assign the stride. */
7566 : 2263 : if (stmt_packed != NULL_TREE && stmt_unpacked != NULL_TREE)
7567 : 0 : tmp = fold_build3_loc (input_location, COND_EXPR,
7568 : : gfc_array_index_type, partial,
7569 : : stmt_unpacked, stmt_packed);
7570 : : else
7571 : 2263 : tmp = (stmt_packed != NULL_TREE) ? stmt_packed : stmt_unpacked;
7572 : 2263 : gfc_add_modify (&init, stride, tmp);
7573 : : }
7574 : : }
7575 : : else
7576 : : {
7577 : 6544 : stride = GFC_TYPE_ARRAY_SIZE (type);
7578 : :
7579 : 6544 : if (stride && !INTEGER_CST_P (stride))
7580 : : {
7581 : : /* Calculate size = stride * (ubound + 1 - lbound). */
7582 : 6543 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
7583 : : gfc_array_index_type,
7584 : : gfc_index_one_node, lbound);
7585 : 6543 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
7586 : : gfc_array_index_type,
7587 : : ubound, tmp);
7588 : 19629 : tmp = fold_build2_loc (input_location, MULT_EXPR,
7589 : : gfc_array_index_type,
7590 : 6543 : GFC_TYPE_ARRAY_STRIDE (type, n), tmp);
7591 : 6543 : gfc_add_modify (&init, stride, tmp);
7592 : : }
7593 : : }
7594 : : }
7595 : :
7596 : 6544 : gfc_trans_array_cobounds (type, &init, sym);
7597 : :
7598 : : /* Set the offset. */
7599 : 6544 : if (VAR_P (GFC_TYPE_ARRAY_OFFSET (type)))
7600 : 6542 : gfc_add_modify (&init, GFC_TYPE_ARRAY_OFFSET (type), offset);
7601 : :
7602 : 6544 : gfc_trans_vla_type_sizes (sym, &init);
7603 : :
7604 : 6544 : stmtInit = gfc_finish_block (&init);
7605 : :
7606 : : /* Only do the entry/initialization code if the arg is present. */
7607 : 6544 : dumdesc = GFC_DECL_SAVED_DESCRIPTOR (tmpdesc);
7608 : 6544 : optional_arg = (sym->attr.optional
7609 : 6544 : || (sym->ns->proc_name->attr.entry_master
7610 : 79 : && sym->attr.dummy));
7611 : : if (optional_arg)
7612 : : {
7613 : 727 : tree zero_init = fold_convert (TREE_TYPE (tmpdesc), null_pointer_node);
7614 : 727 : zero_init = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node,
7615 : : tmpdesc, zero_init);
7616 : 727 : tmp = gfc_conv_expr_present (sym, true);
7617 : 727 : stmtInit = build3_v (COND_EXPR, tmp, stmtInit, zero_init);
7618 : : }
7619 : :
7620 : : /* Cleanup code. */
7621 : 6544 : if (no_repack)
7622 : : stmtCleanup = NULL_TREE;
7623 : : else
7624 : : {
7625 : 2 : stmtblock_t cleanup;
7626 : 2 : gfc_start_block (&cleanup);
7627 : :
7628 : 2 : if (sym->attr.intent != INTENT_IN)
7629 : : {
7630 : : /* Copy the data back. */
7631 : 2 : tmp = build_call_expr_loc (input_location,
7632 : : gfor_fndecl_in_unpack, 2, dumdesc, tmpdesc);
7633 : 2 : gfc_add_expr_to_block (&cleanup, tmp);
7634 : : }
7635 : :
7636 : : /* Free the temporary. */
7637 : 2 : tmp = gfc_call_free (tmpdesc);
7638 : 2 : gfc_add_expr_to_block (&cleanup, tmp);
7639 : :
7640 : 2 : stmtCleanup = gfc_finish_block (&cleanup);
7641 : :
7642 : : /* Only do the cleanup if the array was repacked. */
7643 : 2 : if (is_classarray)
7644 : : /* For a class array the dummy array descriptor is in the _class
7645 : : component. */
7646 : 1 : tmp = gfc_class_data_get (dumdesc);
7647 : : else
7648 : 1 : tmp = build_fold_indirect_ref_loc (input_location, dumdesc);
7649 : 2 : tmp = gfc_conv_descriptor_data_get (tmp);
7650 : 2 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
7651 : : tmp, tmpdesc);
7652 : 2 : stmtCleanup = build3_v (COND_EXPR, tmp, stmtCleanup,
7653 : : build_empty_stmt (input_location));
7654 : :
7655 : 2 : if (optional_arg)
7656 : : {
7657 : 0 : tmp = gfc_conv_expr_present (sym);
7658 : 0 : stmtCleanup = build3_v (COND_EXPR, tmp, stmtCleanup,
7659 : : build_empty_stmt (input_location));
7660 : : }
7661 : : }
7662 : :
7663 : : /* We don't need to free any memory allocated by internal_pack as it will
7664 : : be freed at the end of the function by pop_context. */
7665 : 6544 : gfc_add_init_cleanup (block, stmtInit, stmtCleanup);
7666 : :
7667 : 6544 : input_location = loc;
7668 : : }
7669 : :
7670 : :
7671 : : /* Calculate the overall offset, including subreferences. */
7672 : : void
7673 : 56417 : gfc_get_dataptr_offset (stmtblock_t *block, tree parm, tree desc, tree offset,
7674 : : bool subref, gfc_expr *expr)
7675 : : {
7676 : 56417 : tree tmp;
7677 : 56417 : tree field;
7678 : 56417 : tree stride;
7679 : 56417 : tree index;
7680 : 56417 : gfc_ref *ref;
7681 : 56417 : gfc_se start;
7682 : 56417 : int n;
7683 : :
7684 : : /* If offset is NULL and this is not a subreferenced array, there is
7685 : : nothing to do. */
7686 : 56417 : if (offset == NULL_TREE)
7687 : : {
7688 : 954 : if (subref)
7689 : 115 : offset = gfc_index_zero_node;
7690 : : else
7691 : 839 : return;
7692 : : }
7693 : :
7694 : 55578 : tmp = build_array_ref (desc, offset, NULL, NULL);
7695 : :
7696 : : /* Offset the data pointer for pointer assignments from arrays with
7697 : : subreferences; e.g. my_integer => my_type(:)%integer_component. */
7698 : 55578 : if (subref)
7699 : : {
7700 : : /* Go past the array reference. */
7701 : 769 : for (ref = expr->ref; ref; ref = ref->next)
7702 : 769 : if (ref->type == REF_ARRAY &&
7703 : 683 : ref->u.ar.type != AR_ELEMENT)
7704 : : {
7705 : 659 : ref = ref->next;
7706 : 659 : break;
7707 : : }
7708 : :
7709 : : /* Calculate the offset for each subsequent subreference. */
7710 : 1290 : for (; ref; ref = ref->next)
7711 : : {
7712 : 631 : switch (ref->type)
7713 : : {
7714 : 264 : case REF_COMPONENT:
7715 : 264 : field = ref->u.c.component->backend_decl;
7716 : 264 : gcc_assert (field && TREE_CODE (field) == FIELD_DECL);
7717 : 528 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
7718 : 264 : TREE_TYPE (field),
7719 : : tmp, field, NULL_TREE);
7720 : 264 : break;
7721 : :
7722 : 319 : case REF_SUBSTRING:
7723 : 319 : gcc_assert (TREE_CODE (TREE_TYPE (tmp)) == ARRAY_TYPE);
7724 : 319 : gfc_init_se (&start, NULL);
7725 : 319 : gfc_conv_expr_type (&start, ref->u.ss.start, gfc_charlen_type_node);
7726 : 319 : gfc_add_block_to_block (block, &start.pre);
7727 : 319 : tmp = gfc_build_array_ref (tmp, start.expr, NULL);
7728 : 319 : break;
7729 : :
7730 : 24 : case REF_ARRAY:
7731 : 24 : gcc_assert (TREE_CODE (TREE_TYPE (tmp)) == ARRAY_TYPE
7732 : : && ref->u.ar.type == AR_ELEMENT);
7733 : :
7734 : : /* TODO - Add bounds checking. */
7735 : 24 : stride = gfc_index_one_node;
7736 : 24 : index = gfc_index_zero_node;
7737 : 55 : for (n = 0; n < ref->u.ar.dimen; n++)
7738 : : {
7739 : 31 : tree itmp;
7740 : 31 : tree jtmp;
7741 : :
7742 : : /* Update the index. */
7743 : 31 : gfc_init_se (&start, NULL);
7744 : 31 : gfc_conv_expr_type (&start, ref->u.ar.start[n], gfc_array_index_type);
7745 : 31 : itmp = gfc_evaluate_now (start.expr, block);
7746 : 31 : gfc_init_se (&start, NULL);
7747 : 31 : gfc_conv_expr_type (&start, ref->u.ar.as->lower[n], gfc_array_index_type);
7748 : 31 : jtmp = gfc_evaluate_now (start.expr, block);
7749 : 31 : itmp = fold_build2_loc (input_location, MINUS_EXPR,
7750 : : gfc_array_index_type, itmp, jtmp);
7751 : 31 : itmp = fold_build2_loc (input_location, MULT_EXPR,
7752 : : gfc_array_index_type, itmp, stride);
7753 : 31 : index = fold_build2_loc (input_location, PLUS_EXPR,
7754 : : gfc_array_index_type, itmp, index);
7755 : 31 : index = gfc_evaluate_now (index, block);
7756 : :
7757 : : /* Update the stride. */
7758 : 31 : gfc_init_se (&start, NULL);
7759 : 31 : gfc_conv_expr_type (&start, ref->u.ar.as->upper[n], gfc_array_index_type);
7760 : 31 : itmp = fold_build2_loc (input_location, MINUS_EXPR,
7761 : : gfc_array_index_type, start.expr,
7762 : : jtmp);
7763 : 31 : itmp = fold_build2_loc (input_location, PLUS_EXPR,
7764 : : gfc_array_index_type,
7765 : : gfc_index_one_node, itmp);
7766 : 31 : stride = fold_build2_loc (input_location, MULT_EXPR,
7767 : : gfc_array_index_type, stride, itmp);
7768 : 31 : stride = gfc_evaluate_now (stride, block);
7769 : : }
7770 : :
7771 : : /* Apply the index to obtain the array element. */
7772 : 24 : tmp = gfc_build_array_ref (tmp, index, NULL);
7773 : 24 : break;
7774 : :
7775 : 24 : case REF_INQUIRY:
7776 : 24 : switch (ref->u.i)
7777 : : {
7778 : 18 : case INQUIRY_RE:
7779 : 36 : tmp = fold_build1_loc (input_location, REALPART_EXPR,
7780 : 18 : TREE_TYPE (TREE_TYPE (tmp)), tmp);
7781 : 18 : break;
7782 : :
7783 : 6 : case INQUIRY_IM:
7784 : 12 : tmp = fold_build1_loc (input_location, IMAGPART_EXPR,
7785 : 6 : TREE_TYPE (TREE_TYPE (tmp)), tmp);
7786 : 6 : break;
7787 : :
7788 : : default:
7789 : : break;
7790 : : }
7791 : : break;
7792 : :
7793 : 0 : default:
7794 : 0 : gcc_unreachable ();
7795 : 631 : break;
7796 : : }
7797 : : }
7798 : : }
7799 : :
7800 : : /* Set the target data pointer. */
7801 : 55578 : offset = gfc_build_addr_expr (gfc_array_dataptr_type (desc), tmp);
7802 : :
7803 : : /* Check for optional dummy argument being present. Arguments of BIND(C)
7804 : : procedures are excepted here since they are handled differently. */
7805 : 55578 : if (expr->expr_type == EXPR_VARIABLE
7806 : 49014 : && expr->symtree->n.sym->attr.dummy
7807 : 49014 : && expr->symtree->n.sym->attr.optional
7808 : 56593 : && !is_CFI_desc (NULL, expr))
7809 : 1670 : offset = build3_loc (input_location, COND_EXPR, TREE_TYPE (offset),
7810 : 835 : gfc_conv_expr_present (expr->symtree->n.sym), offset,
7811 : 835 : fold_convert (TREE_TYPE (offset), gfc_index_zero_node));
7812 : :
7813 : 55578 : gfc_conv_descriptor_data_set (block, parm, offset);
7814 : : }
7815 : :
7816 : :
7817 : : /* gfc_conv_expr_descriptor needs the string length an expression
7818 : : so that the size of the temporary can be obtained. This is done
7819 : : by adding up the string lengths of all the elements in the
7820 : : expression. Function with non-constant expressions have their
7821 : : string lengths mapped onto the actual arguments using the
7822 : : interface mapping machinery in trans-expr.cc. */
7823 : : static void
7824 : 1488 : get_array_charlen (gfc_expr *expr, gfc_se *se)
7825 : : {
7826 : 1488 : gfc_interface_mapping mapping;
7827 : 1488 : gfc_formal_arglist *formal;
7828 : 1488 : gfc_actual_arglist *arg;
7829 : 1488 : gfc_se tse;
7830 : 1488 : gfc_expr *e;
7831 : :
7832 : 1488 : if (expr->ts.u.cl->length
7833 : 1488 : && gfc_is_constant_expr (expr->ts.u.cl->length))
7834 : : {
7835 : 1144 : if (!expr->ts.u.cl->backend_decl)
7836 : 437 : gfc_conv_string_length (expr->ts.u.cl, expr, &se->pre);
7837 : 1276 : return;
7838 : : }
7839 : :
7840 : 344 : switch (expr->expr_type)
7841 : : {
7842 : 130 : case EXPR_ARRAY:
7843 : :
7844 : : /* This is somewhat brutal. The expression for the first
7845 : : element of the array is evaluated and assigned to a
7846 : : new string length for the original expression. */
7847 : 130 : e = gfc_constructor_first (expr->value.constructor)->expr;
7848 : :
7849 : 130 : gfc_init_se (&tse, NULL);
7850 : :
7851 : : /* Avoid evaluating trailing array references since all we need is
7852 : : the string length. */
7853 : 130 : if (e->rank)
7854 : 38 : tse.descriptor_only = 1;
7855 : 130 : if (e->rank && e->expr_type != EXPR_VARIABLE)
7856 : 1 : gfc_conv_expr_descriptor (&tse, e);
7857 : : else
7858 : 129 : gfc_conv_expr (&tse, e);
7859 : :
7860 : 130 : gfc_add_block_to_block (&se->pre, &tse.pre);
7861 : 130 : gfc_add_block_to_block (&se->post, &tse.post);
7862 : :
7863 : 130 : if (!expr->ts.u.cl->backend_decl || !VAR_P (expr->ts.u.cl->backend_decl))
7864 : : {
7865 : 87 : expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
7866 : 87 : expr->ts.u.cl->backend_decl =
7867 : 87 : gfc_create_var (gfc_charlen_type_node, "sln");
7868 : : }
7869 : :
7870 : 130 : gfc_add_modify (&se->pre, expr->ts.u.cl->backend_decl,
7871 : : tse.string_length);
7872 : :
7873 : : /* Make sure that deferred length components point to the hidden
7874 : : string_length component. */
7875 : 130 : if (TREE_CODE (tse.expr) == COMPONENT_REF
7876 : 25 : && TREE_CODE (tse.string_length) == COMPONENT_REF
7877 : 149 : && TREE_OPERAND (tse.expr, 0) == TREE_OPERAND (tse.string_length, 0))
7878 : 19 : e->ts.u.cl->backend_decl = expr->ts.u.cl->backend_decl;
7879 : :
7880 : : return;
7881 : :
7882 : 90 : case EXPR_OP:
7883 : 90 : get_array_charlen (expr->value.op.op1, se);
7884 : :
7885 : : /* For parentheses the expression ts.u.cl should be identical. */
7886 : 90 : if (expr->value.op.op == INTRINSIC_PARENTHESES)
7887 : : {
7888 : 2 : if (expr->value.op.op1->ts.u.cl != expr->ts.u.cl)
7889 : 2 : expr->ts.u.cl->backend_decl
7890 : 2 : = expr->value.op.op1->ts.u.cl->backend_decl;
7891 : 2 : return;
7892 : : }
7893 : :
7894 : 176 : expr->ts.u.cl->backend_decl =
7895 : 88 : gfc_create_var (gfc_charlen_type_node, "sln");
7896 : :
7897 : 88 : if (expr->value.op.op2)
7898 : : {
7899 : 88 : get_array_charlen (expr->value.op.op2, se);
7900 : :
7901 : 88 : gcc_assert (expr->value.op.op == INTRINSIC_CONCAT);
7902 : :
7903 : : /* Add the string lengths and assign them to the expression
7904 : : string length backend declaration. */
7905 : 88 : gfc_add_modify (&se->pre, expr->ts.u.cl->backend_decl,
7906 : : fold_build2_loc (input_location, PLUS_EXPR,
7907 : : gfc_charlen_type_node,
7908 : 88 : expr->value.op.op1->ts.u.cl->backend_decl,
7909 : 88 : expr->value.op.op2->ts.u.cl->backend_decl));
7910 : : }
7911 : : else
7912 : 0 : gfc_add_modify (&se->pre, expr->ts.u.cl->backend_decl,
7913 : 0 : expr->value.op.op1->ts.u.cl->backend_decl);
7914 : : break;
7915 : :
7916 : 43 : case EXPR_FUNCTION:
7917 : 43 : if (expr->value.function.esym == NULL
7918 : 37 : || expr->ts.u.cl->length->expr_type == EXPR_CONSTANT)
7919 : : {
7920 : 6 : gfc_conv_string_length (expr->ts.u.cl, expr, &se->pre);
7921 : 6 : break;
7922 : : }
7923 : :
7924 : : /* Map expressions involving the dummy arguments onto the actual
7925 : : argument expressions. */
7926 : 37 : gfc_init_interface_mapping (&mapping);
7927 : 37 : formal = gfc_sym_get_dummy_args (expr->symtree->n.sym);
7928 : 37 : arg = expr->value.function.actual;
7929 : :
7930 : : /* Set se = NULL in the calls to the interface mapping, to suppress any
7931 : : backend stuff. */
7932 : 113 : for (; arg != NULL; arg = arg->next, formal = formal ? formal->next : NULL)
7933 : : {
7934 : 38 : if (!arg->expr)
7935 : 0 : continue;
7936 : 38 : if (formal->sym)
7937 : 38 : gfc_add_interface_mapping (&mapping, formal->sym, NULL, arg->expr);
7938 : : }
7939 : :
7940 : 37 : gfc_init_se (&tse, NULL);
7941 : :
7942 : : /* Build the expression for the character length and convert it. */
7943 : 37 : gfc_apply_interface_mapping (&mapping, &tse, expr->ts.u.cl->length);
7944 : :
7945 : 37 : gfc_add_block_to_block (&se->pre, &tse.pre);
7946 : 37 : gfc_add_block_to_block (&se->post, &tse.post);
7947 : 37 : tse.expr = fold_convert (gfc_charlen_type_node, tse.expr);
7948 : 74 : tse.expr = fold_build2_loc (input_location, MAX_EXPR,
7949 : 37 : TREE_TYPE (tse.expr), tse.expr,
7950 : 37 : build_zero_cst (TREE_TYPE (tse.expr)));
7951 : 37 : expr->ts.u.cl->backend_decl = tse.expr;
7952 : 37 : gfc_free_interface_mapping (&mapping);
7953 : 37 : break;
7954 : :
7955 : 81 : default:
7956 : 81 : gfc_conv_string_length (expr->ts.u.cl, expr, &se->pre);
7957 : 81 : break;
7958 : : }
7959 : : }
7960 : :
7961 : :
7962 : : /* Helper function to check dimensions. */
7963 : : static bool
7964 : 144 : transposed_dims (gfc_ss *ss)
7965 : : {
7966 : 144 : int n;
7967 : :
7968 : 165474 : for (n = 0; n < ss->dimen; n++)
7969 : 85819 : if (ss->dim[n] != n)
7970 : : return true;
7971 : : return false;
7972 : : }
7973 : :
7974 : :
7975 : : /* Convert the last ref of a scalar coarray from an AR_ELEMENT to an
7976 : : AR_FULL, suitable for the scalarizer. */
7977 : :
7978 : : static gfc_ss *
7979 : 1141 : walk_coarray (gfc_expr *e)
7980 : : {
7981 : 1141 : gfc_ss *ss;
7982 : :
7983 : 1141 : ss = gfc_walk_expr (e);
7984 : :
7985 : : /* Fix scalar coarray. */
7986 : 1141 : if (ss == gfc_ss_terminator)
7987 : : {
7988 : 224 : gfc_ref *ref;
7989 : :
7990 : 224 : ref = e->ref;
7991 : 339 : while (ref)
7992 : : {
7993 : 339 : if (ref->type == REF_ARRAY
7994 : 224 : && ref->u.ar.codimen > 0)
7995 : : break;
7996 : :
7997 : 115 : ref = ref->next;
7998 : : }
7999 : :
8000 : 224 : gcc_assert (ref != NULL);
8001 : 224 : if (ref->u.ar.type == AR_ELEMENT)
8002 : 210 : ref->u.ar.type = AR_SECTION;
8003 : 224 : ss = gfc_reverse_ss (gfc_walk_array_ref (ss, e, ref, false));
8004 : : }
8005 : :
8006 : 1141 : return ss;
8007 : : }
8008 : :
8009 : : gfc_array_spec *
8010 : 1768 : get_coarray_as (const gfc_expr *e)
8011 : : {
8012 : 1768 : gfc_array_spec *as;
8013 : 1768 : gfc_symbol *sym = e->symtree->n.sym;
8014 : 1768 : gfc_component *comp;
8015 : :
8016 : 1768 : if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->attr.codimension)
8017 : 549 : as = CLASS_DATA (sym)->as;
8018 : 1219 : else if (sym->attr.codimension)
8019 : 1173 : as = sym->as;
8020 : : else
8021 : : as = nullptr;
8022 : :
8023 : 4161 : for (gfc_ref *ref = e->ref; ref; ref = ref->next)
8024 : : {
8025 : 2393 : switch (ref->type)
8026 : : {
8027 : 625 : case REF_COMPONENT:
8028 : 625 : comp = ref->u.c.component;
8029 : 625 : if (comp->ts.type == BT_CLASS && CLASS_DATA (comp)->attr.codimension)
8030 : 18 : as = CLASS_DATA (comp)->as;
8031 : 607 : else if (comp->ts.type != BT_CLASS && comp->attr.codimension)
8032 : 595 : as = comp->as;
8033 : : break;
8034 : :
8035 : : case REF_ARRAY:
8036 : : case REF_SUBSTRING:
8037 : : case REF_INQUIRY:
8038 : : break;
8039 : : }
8040 : : }
8041 : :
8042 : 1768 : return as;
8043 : : }
8044 : :
8045 : : bool
8046 : 133023 : is_explicit_coarray (gfc_expr *expr)
8047 : : {
8048 : 133023 : if (!gfc_is_coarray (expr))
8049 : : return false;
8050 : :
8051 : 1768 : gfc_array_spec *cas = get_coarray_as (expr);
8052 : 1768 : return cas && cas->cotype == AS_EXPLICIT;
8053 : : }
8054 : :
8055 : : /* Convert an array for passing as an actual argument. Expressions and
8056 : : vector subscripts are evaluated and stored in a temporary, which is then
8057 : : passed. For whole arrays the descriptor is passed. For array sections
8058 : : a modified copy of the descriptor is passed, but using the original data.
8059 : :
8060 : : This function is also used for array pointer assignments, and there
8061 : : are three cases:
8062 : :
8063 : : - se->want_pointer && !se->direct_byref
8064 : : EXPR is an actual argument. On exit, se->expr contains a
8065 : : pointer to the array descriptor.
8066 : :
8067 : : - !se->want_pointer && !se->direct_byref
8068 : : EXPR is an actual argument to an intrinsic function or the
8069 : : left-hand side of a pointer assignment. On exit, se->expr
8070 : : contains the descriptor for EXPR.
8071 : :
8072 : : - !se->want_pointer && se->direct_byref
8073 : : EXPR is the right-hand side of a pointer assignment and
8074 : : se->expr is the descriptor for the previously-evaluated
8075 : : left-hand side. The function creates an assignment from
8076 : : EXPR to se->expr.
8077 : :
8078 : :
8079 : : The se->force_tmp flag disables the non-copying descriptor optimization
8080 : : that is used for transpose. It may be used in cases where there is an
8081 : : alias between the transpose argument and another argument in the same
8082 : : function call. */
8083 : :
8084 : : void
8085 : 148721 : gfc_conv_expr_descriptor (gfc_se *se, gfc_expr *expr)
8086 : : {
8087 : 148721 : gfc_ss *ss;
8088 : 148721 : gfc_ss_type ss_type;
8089 : 148721 : gfc_ss_info *ss_info;
8090 : 148721 : gfc_loopinfo loop;
8091 : 148721 : gfc_array_info *info;
8092 : 148721 : int need_tmp;
8093 : 148721 : int n;
8094 : 148721 : tree tmp;
8095 : 148721 : tree desc;
8096 : 148721 : stmtblock_t block;
8097 : 148721 : tree start;
8098 : 148721 : int full;
8099 : 148721 : bool subref_array_target = false;
8100 : 148721 : bool deferred_array_component = false;
8101 : 148721 : bool substr = false;
8102 : 148721 : gfc_expr *arg, *ss_expr;
8103 : :
8104 : 148721 : if (se->want_coarray || expr->rank == 0)
8105 : 1141 : ss = walk_coarray (expr);
8106 : : else
8107 : 147580 : ss = gfc_walk_expr (expr);
8108 : :
8109 : 148721 : gcc_assert (ss != NULL);
8110 : 148721 : gcc_assert (ss != gfc_ss_terminator);
8111 : :
8112 : 148721 : ss_info = ss->info;
8113 : 148721 : ss_type = ss_info->type;
8114 : 148721 : ss_expr = ss_info->expr;
8115 : :
8116 : : /* Special case: TRANSPOSE which needs no temporary. */
8117 : 153918 : while (expr->expr_type == EXPR_FUNCTION && expr->value.function.isym
8118 : 153653 : && (arg = gfc_get_noncopying_intrinsic_argument (expr)) != NULL)
8119 : : {
8120 : : /* This is a call to transpose which has already been handled by the
8121 : : scalarizer, so that we just need to get its argument's descriptor. */
8122 : 427 : gcc_assert (expr->value.function.isym->id == GFC_ISYM_TRANSPOSE);
8123 : 427 : expr = expr->value.function.actual->expr;
8124 : : }
8125 : :
8126 : 148721 : if (!se->direct_byref)
8127 : 286426 : se->unlimited_polymorphic = UNLIMITED_POLY (expr);
8128 : :
8129 : : /* Special case things we know we can pass easily. */
8130 : 148721 : switch (expr->expr_type)
8131 : : {
8132 : 133175 : case EXPR_VARIABLE:
8133 : : /* If we have a linear array section, we can pass it directly.
8134 : : Otherwise we need to copy it into a temporary. */
8135 : :
8136 : 133175 : gcc_assert (ss_type == GFC_SS_SECTION);
8137 : 133175 : gcc_assert (ss_expr == expr);
8138 : 133175 : info = &ss_info->data.array;
8139 : :
8140 : : /* Get the descriptor for the array. */
8141 : 133175 : gfc_conv_ss_descriptor (&se->pre, ss, 0);
8142 : 133175 : desc = info->descriptor;
8143 : :
8144 : : /* The charlen backend decl for deferred character components cannot
8145 : : be used because it is fixed at zero. Instead, the hidden string
8146 : : length component is used. */
8147 : 133175 : if (expr->ts.type == BT_CHARACTER
8148 : 19365 : && expr->ts.deferred
8149 : 2709 : && TREE_CODE (desc) == COMPONENT_REF)
8150 : 133175 : deferred_array_component = true;
8151 : :
8152 : 133175 : substr = info->ref && info->ref->next
8153 : 133846 : && info->ref->next->type == REF_SUBSTRING;
8154 : :
8155 : 133175 : subref_array_target = (is_subref_array (expr)
8156 : 133175 : && (se->direct_byref
8157 : 2235 : || expr->ts.type == BT_CHARACTER));
8158 : 133175 : need_tmp = (gfc_ref_needs_temporary_p (expr->ref)
8159 : 133175 : && !subref_array_target);
8160 : :
8161 : 133175 : if (se->force_tmp)
8162 : : need_tmp = 1;
8163 : 133113 : else if (se->force_no_tmp)
8164 : : need_tmp = 0;
8165 : :
8166 : 127477 : if (need_tmp)
8167 : : full = 0;
8168 : 133023 : else if (is_explicit_coarray (expr))
8169 : : full = 0;
8170 : 132414 : else if (GFC_ARRAY_TYPE_P (TREE_TYPE (desc)))
8171 : : {
8172 : : /* Create a new descriptor if the array doesn't have one. */
8173 : : full = 0;
8174 : : }
8175 : 85701 : else if (info->ref->u.ar.type == AR_FULL || se->descriptor_only)
8176 : : full = 1;
8177 : 7847 : else if (se->direct_byref)
8178 : : full = 0;
8179 : 7515 : else if (info->ref->u.ar.dimen == 0 && !info->ref->next)
8180 : : full = 1;
8181 : 7409 : else if (info->ref->u.ar.type == AR_SECTION && se->want_pointer)
8182 : : full = 0;
8183 : : else
8184 : 3548 : full = gfc_full_array_ref_p (info->ref, NULL);
8185 : :
8186 : 159708 : if (full && !transposed_dims (ss))
8187 : : {
8188 : 78143 : if (se->direct_byref && !se->byref_noassign)
8189 : : {
8190 : : /* Copy the descriptor for pointer assignments. */
8191 : 942 : gfc_add_modify (&se->pre, se->expr, desc);
8192 : :
8193 : : /* Add any offsets from subreferences. */
8194 : 942 : gfc_get_dataptr_offset (&se->pre, se->expr, desc, NULL_TREE,
8195 : : subref_array_target, expr);
8196 : :
8197 : : /* ....and set the span field. */
8198 : 942 : if (ss_info->expr->ts.type == BT_CHARACTER)
8199 : 141 : tmp = gfc_conv_descriptor_span_get (desc);
8200 : : else
8201 : 801 : tmp = gfc_get_array_span (desc, expr);
8202 : 942 : gfc_conv_descriptor_span_set (&se->pre, se->expr, tmp);
8203 : : }
8204 : 77201 : else if (se->want_pointer)
8205 : : {
8206 : : /* We pass full arrays directly. This means that pointers and
8207 : : allocatable arrays should also work. */
8208 : 12897 : se->expr = gfc_build_addr_expr (NULL_TREE, desc);
8209 : : }
8210 : : else
8211 : : {
8212 : 64304 : se->expr = desc;
8213 : : }
8214 : :
8215 : 78143 : if (expr->ts.type == BT_CHARACTER && !deferred_array_component)
8216 : 8243 : se->string_length = gfc_get_expr_charlen (expr);
8217 : : /* The ss_info string length is returned set to the value of the
8218 : : hidden string length component. */
8219 : 69658 : else if (deferred_array_component)
8220 : 242 : se->string_length = ss_info->string_length;
8221 : :
8222 : 78143 : se->class_container = ss_info->class_container;
8223 : :
8224 : 78143 : gfc_free_ss_chain (ss);
8225 : 156412 : return;
8226 : : }
8227 : : break;
8228 : :
8229 : 4770 : case EXPR_FUNCTION:
8230 : : /* A transformational function return value will be a temporary
8231 : : array descriptor. We still need to go through the scalarizer
8232 : : to create the descriptor. Elemental functions are handled as
8233 : : arbitrary expressions, i.e. copy to a temporary. */
8234 : :
8235 : 4770 : if (se->direct_byref)
8236 : : {
8237 : 126 : gcc_assert (ss_type == GFC_SS_FUNCTION && ss_expr == expr);
8238 : :
8239 : : /* For pointer assignments pass the descriptor directly. */
8240 : 126 : if (se->ss == NULL)
8241 : 126 : se->ss = ss;
8242 : : else
8243 : 0 : gcc_assert (se->ss == ss);
8244 : :
8245 : 126 : if (!is_pointer_array (se->expr))
8246 : : {
8247 : 120 : tmp = gfc_get_element_type (TREE_TYPE (se->expr));
8248 : 120 : tmp = fold_convert (gfc_array_index_type,
8249 : : size_in_bytes (tmp));
8250 : 120 : gfc_conv_descriptor_span_set (&se->pre, se->expr, tmp);
8251 : : }
8252 : :
8253 : 126 : se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
8254 : 126 : gfc_conv_expr (se, expr);
8255 : :
8256 : 126 : gfc_free_ss_chain (ss);
8257 : 126 : return;
8258 : : }
8259 : :
8260 : 4644 : if (ss_expr != expr || ss_type != GFC_SS_FUNCTION)
8261 : : {
8262 : 3257 : if (ss_expr != expr)
8263 : : /* Elemental function. */
8264 : 2532 : gcc_assert ((expr->value.function.esym != NULL
8265 : : && expr->value.function.esym->attr.elemental)
8266 : : || (expr->value.function.isym != NULL
8267 : : && expr->value.function.isym->elemental)
8268 : : || (gfc_expr_attr (expr).proc_pointer
8269 : : && gfc_expr_attr (expr).elemental)
8270 : : || gfc_inline_intrinsic_function_p (expr));
8271 : :
8272 : 3257 : need_tmp = 1;
8273 : 3257 : if (expr->ts.type == BT_CHARACTER
8274 : 35 : && expr->ts.u.cl->length
8275 : 29 : && expr->ts.u.cl->length->expr_type != EXPR_CONSTANT)
8276 : 13 : get_array_charlen (expr, se);
8277 : :
8278 : : info = NULL;
8279 : : }
8280 : : else
8281 : : {
8282 : : /* Transformational function. */
8283 : 1387 : info = &ss_info->data.array;
8284 : 1387 : need_tmp = 0;
8285 : : }
8286 : : break;
8287 : :
8288 : 10082 : case EXPR_ARRAY:
8289 : : /* Constant array constructors don't need a temporary. */
8290 : 10082 : if (ss_type == GFC_SS_CONSTRUCTOR
8291 : 10082 : && expr->ts.type != BT_CHARACTER
8292 : 18995 : && gfc_constant_array_constructor_p (expr->value.constructor))
8293 : : {
8294 : 6551 : need_tmp = 0;
8295 : 6551 : info = &ss_info->data.array;
8296 : : }
8297 : : else
8298 : : {
8299 : : need_tmp = 1;
8300 : : info = NULL;
8301 : : }
8302 : : break;
8303 : :
8304 : : default:
8305 : : /* Something complicated. Copy it into a temporary. */
8306 : : need_tmp = 1;
8307 : : info = NULL;
8308 : : break;
8309 : : }
8310 : :
8311 : : /* If we are creating a temporary, we don't need to bother about aliases
8312 : : anymore. */
8313 : 62970 : if (need_tmp)
8314 : 7634 : se->force_tmp = 0;
8315 : :
8316 : 70452 : gfc_init_loopinfo (&loop);
8317 : :
8318 : : /* Associate the SS with the loop. */
8319 : 70452 : gfc_add_ss_to_loop (&loop, ss);
8320 : :
8321 : : /* Tell the scalarizer not to bother creating loop variables, etc. */
8322 : 70452 : if (!need_tmp)
8323 : 62818 : loop.array_parameter = 1;
8324 : : else
8325 : : /* The right-hand side of a pointer assignment mustn't use a temporary. */
8326 : 7634 : gcc_assert (!se->direct_byref);
8327 : :
8328 : : /* Do we need bounds checking or not? */
8329 : 70452 : ss->no_bounds_check = expr->no_bounds_check;
8330 : :
8331 : : /* Setup the scalarizing loops and bounds. */
8332 : 70452 : gfc_conv_ss_startstride (&loop);
8333 : :
8334 : : /* Add bounds-checking for elemental dimensions. */
8335 : 70452 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS) && !expr->no_bounds_check)
8336 : 6649 : array_bound_check_elemental (se, ss, expr);
8337 : :
8338 : 70452 : if (need_tmp)
8339 : : {
8340 : 7634 : if (expr->ts.type == BT_CHARACTER
8341 : 1373 : && (!expr->ts.u.cl->backend_decl || expr->expr_type == EXPR_ARRAY))
8342 : 1297 : get_array_charlen (expr, se);
8343 : :
8344 : : /* Tell the scalarizer to make a temporary. */
8345 : 7634 : loop.temp_ss = gfc_get_temp_ss (gfc_typenode_for_spec (&expr->ts),
8346 : 7634 : ((expr->ts.type == BT_CHARACTER)
8347 : 1373 : ? expr->ts.u.cl->backend_decl
8348 : : : NULL),
8349 : : loop.dimen);
8350 : :
8351 : 7634 : se->string_length = loop.temp_ss->info->string_length;
8352 : 7634 : gcc_assert (loop.temp_ss->dimen == loop.dimen);
8353 : 7634 : gfc_add_ss_to_loop (&loop, loop.temp_ss);
8354 : : }
8355 : :
8356 : 70452 : gfc_conv_loop_setup (&loop, & expr->where);
8357 : :
8358 : 70452 : if (need_tmp)
8359 : : {
8360 : : /* Copy into a temporary and pass that. We don't need to copy the data
8361 : : back because expressions and vector subscripts must be INTENT_IN. */
8362 : : /* TODO: Optimize passing function return values. */
8363 : 7634 : gfc_se lse;
8364 : 7634 : gfc_se rse;
8365 : 7634 : bool deep_copy;
8366 : :
8367 : : /* Start the copying loops. */
8368 : 7634 : gfc_mark_ss_chain_used (loop.temp_ss, 1);
8369 : 7634 : gfc_mark_ss_chain_used (ss, 1);
8370 : 7634 : gfc_start_scalarized_body (&loop, &block);
8371 : :
8372 : : /* Copy each data element. */
8373 : 7634 : gfc_init_se (&lse, NULL);
8374 : 7634 : gfc_copy_loopinfo_to_se (&lse, &loop);
8375 : 7634 : gfc_init_se (&rse, NULL);
8376 : 7634 : gfc_copy_loopinfo_to_se (&rse, &loop);
8377 : :
8378 : 7634 : lse.ss = loop.temp_ss;
8379 : 7634 : rse.ss = ss;
8380 : :
8381 : 7634 : gfc_conv_tmp_array_ref (&lse);
8382 : 7634 : if (expr->ts.type == BT_CHARACTER)
8383 : : {
8384 : 1373 : gfc_conv_expr (&rse, expr);
8385 : 1373 : if (POINTER_TYPE_P (TREE_TYPE (rse.expr)))
8386 : 1076 : rse.expr = build_fold_indirect_ref_loc (input_location,
8387 : : rse.expr);
8388 : : }
8389 : : else
8390 : 6261 : gfc_conv_expr_val (&rse, expr);
8391 : :
8392 : 7634 : gfc_add_block_to_block (&block, &rse.pre);
8393 : 7634 : gfc_add_block_to_block (&block, &lse.pre);
8394 : :
8395 : 7634 : lse.string_length = rse.string_length;
8396 : :
8397 : 15268 : deep_copy = !se->data_not_needed
8398 : 7634 : && (expr->expr_type == EXPR_VARIABLE
8399 : 7229 : || expr->expr_type == EXPR_ARRAY);
8400 : 7634 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts,
8401 : : deep_copy, false);
8402 : 7634 : gfc_add_expr_to_block (&block, tmp);
8403 : :
8404 : : /* Finish the copying loops. */
8405 : 7634 : gfc_trans_scalarizing_loops (&loop, &block);
8406 : :
8407 : 7634 : desc = loop.temp_ss->info->data.array.descriptor;
8408 : : }
8409 : 64205 : else if (expr->expr_type == EXPR_FUNCTION && !transposed_dims (ss))
8410 : : {
8411 : 1374 : desc = info->descriptor;
8412 : 1374 : se->string_length = ss_info->string_length;
8413 : : }
8414 : : else
8415 : : {
8416 : : /* We pass sections without copying to a temporary. Make a new
8417 : : descriptor and point it at the section we want. The loop variable
8418 : : limits will be the limits of the section.
8419 : : A function may decide to repack the array to speed up access, but
8420 : : we're not bothered about that here. */
8421 : 61444 : int dim, ndim, codim;
8422 : 61444 : tree parm;
8423 : 61444 : tree parmtype;
8424 : 61444 : tree dtype;
8425 : 61444 : tree stride;
8426 : 61444 : tree from;
8427 : 61444 : tree to;
8428 : 61444 : tree base;
8429 : 61444 : tree offset;
8430 : :
8431 : 61444 : ndim = info->ref ? info->ref->u.ar.dimen : ss->dimen;
8432 : :
8433 : 61444 : if (se->want_coarray)
8434 : : {
8435 : 500 : gfc_array_ref *ar = &info->ref->u.ar;
8436 : :
8437 : 500 : codim = expr->corank;
8438 : 1028 : for (n = 0; n < codim - 1; n++)
8439 : : {
8440 : : /* Make sure we are not lost somehow. */
8441 : 528 : gcc_assert (ar->dimen_type[n + ndim] == DIMEN_THIS_IMAGE);
8442 : :
8443 : : /* Make sure the call to gfc_conv_section_startstride won't
8444 : : generate unnecessary code to calculate stride. */
8445 : 528 : gcc_assert (ar->stride[n + ndim] == NULL);
8446 : :
8447 : 528 : gfc_conv_section_startstride (&loop.pre, ss, n + ndim);
8448 : 528 : loop.from[n + loop.dimen] = info->start[n + ndim];
8449 : 528 : loop.to[n + loop.dimen] = info->end[n + ndim];
8450 : : }
8451 : :
8452 : 500 : gcc_assert (n == codim - 1);
8453 : 500 : evaluate_bound (&loop.pre, info->start, ar->start,
8454 : : info->descriptor, n + ndim, true,
8455 : 500 : ar->as->type == AS_DEFERRED);
8456 : 500 : loop.from[n + loop.dimen] = info->start[n + ndim];
8457 : : }
8458 : : else
8459 : : codim = 0;
8460 : :
8461 : : /* Set the string_length for a character array. */
8462 : 61444 : if (expr->ts.type == BT_CHARACTER)
8463 : : {
8464 : 10867 : if (deferred_array_component && !substr)
8465 : 37 : se->string_length = ss_info->string_length;
8466 : : else
8467 : 10830 : se->string_length = gfc_get_expr_charlen (expr);
8468 : :
8469 : 10867 : if (VAR_P (se->string_length)
8470 : 946 : && expr->ts.u.cl->backend_decl == se->string_length)
8471 : 940 : tmp = ss_info->string_length;
8472 : : else
8473 : : tmp = se->string_length;
8474 : :
8475 : 10867 : if (expr->ts.deferred && expr->ts.u.cl->backend_decl
8476 : 172 : && VAR_P (expr->ts.u.cl->backend_decl))
8477 : 112 : gfc_add_modify (&se->pre, expr->ts.u.cl->backend_decl, tmp);
8478 : : else
8479 : 10755 : expr->ts.u.cl->backend_decl = tmp;
8480 : : }
8481 : :
8482 : : /* If we have an array section, are assigning or passing an array
8483 : : section argument make sure that the lower bound is 1. References
8484 : : to the full array should otherwise keep the original bounds. */
8485 : 61444 : if (!info->ref || info->ref->u.ar.type != AR_FULL)
8486 : 76160 : for (dim = 0; dim < loop.dimen; dim++)
8487 : 45942 : if (!integer_onep (loop.from[dim]))
8488 : : {
8489 : 26374 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
8490 : : gfc_array_index_type, gfc_index_one_node,
8491 : : loop.from[dim]);
8492 : 26374 : loop.to[dim] = fold_build2_loc (input_location, PLUS_EXPR,
8493 : : gfc_array_index_type,
8494 : : loop.to[dim], tmp);
8495 : 26374 : loop.from[dim] = gfc_index_one_node;
8496 : : }
8497 : :
8498 : 61444 : desc = info->descriptor;
8499 : 61444 : if (se->direct_byref && !se->byref_noassign)
8500 : : {
8501 : : /* For pointer assignments we fill in the destination. */
8502 : 2344 : parm = se->expr;
8503 : 2344 : parmtype = TREE_TYPE (parm);
8504 : : }
8505 : : else
8506 : : {
8507 : : /* Otherwise make a new one. */
8508 : 59100 : if (expr->ts.type == BT_CHARACTER)
8509 : 10239 : parmtype = gfc_typenode_for_spec (&expr->ts);
8510 : : else
8511 : 48861 : parmtype = gfc_get_element_type (TREE_TYPE (desc));
8512 : :
8513 : 59100 : parmtype = gfc_get_array_type_bounds (parmtype, loop.dimen, codim,
8514 : : loop.from, loop.to, 0,
8515 : : GFC_ARRAY_UNKNOWN, false);
8516 : 59100 : parm = gfc_create_var (parmtype, "parm");
8517 : :
8518 : : /* When expression is a class object, then add the class' handle to
8519 : : the parm_decl. */
8520 : 59100 : if (expr->ts.type == BT_CLASS && expr->expr_type == EXPR_VARIABLE)
8521 : : {
8522 : 1113 : gfc_expr *class_expr = gfc_find_and_cut_at_last_class_ref (expr);
8523 : 1113 : gfc_se classse;
8524 : :
8525 : : /* class_expr can be NULL, when no _class ref is in expr.
8526 : : We must not fix this here with a gfc_fix_class_ref (). */
8527 : 1113 : if (class_expr)
8528 : : {
8529 : 1103 : gfc_init_se (&classse, NULL);
8530 : 1103 : gfc_conv_expr (&classse, class_expr);
8531 : 1103 : gfc_free_expr (class_expr);
8532 : :
8533 : 1103 : gcc_assert (classse.pre.head == NULL_TREE
8534 : : && classse.post.head == NULL_TREE);
8535 : 1103 : gfc_allocate_lang_decl (parm);
8536 : 1103 : GFC_DECL_SAVED_DESCRIPTOR (parm) = classse.expr;
8537 : : }
8538 : : }
8539 : : }
8540 : :
8541 : 61444 : if (expr->ts.type == BT_CHARACTER
8542 : 61444 : && VAR_P (TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (parm)))))
8543 : : {
8544 : 0 : tree elem_len = TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (parm)));
8545 : 0 : gfc_add_modify (&loop.pre, elem_len,
8546 : 0 : fold_convert (TREE_TYPE (elem_len),
8547 : : gfc_get_array_span (desc, expr)));
8548 : : }
8549 : :
8550 : : /* Set the span field. */
8551 : 61444 : tmp = NULL_TREE;
8552 : 61444 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
8553 : 7585 : tmp = gfc_conv_descriptor_span_get (desc);
8554 : : else
8555 : 53859 : tmp = gfc_get_array_span (desc, expr);
8556 : 61444 : if (tmp)
8557 : 61364 : gfc_conv_descriptor_span_set (&loop.pre, parm, tmp);
8558 : :
8559 : : /* The following can be somewhat confusing. We have two
8560 : : descriptors, a new one and the original array.
8561 : : {parm, parmtype, dim} refer to the new one.
8562 : : {desc, type, n, loop} refer to the original, which maybe
8563 : : a descriptorless array.
8564 : : The bounds of the scalarization are the bounds of the section.
8565 : : We don't have to worry about numeric overflows when calculating
8566 : : the offsets because all elements are within the array data. */
8567 : :
8568 : : /* Set the dtype. */
8569 : 61444 : tmp = gfc_conv_descriptor_dtype (parm);
8570 : 61444 : if (se->unlimited_polymorphic)
8571 : 565 : dtype = gfc_get_dtype (TREE_TYPE (desc), &loop.dimen);
8572 : 60879 : else if (expr->ts.type == BT_ASSUMED)
8573 : : {
8574 : 127 : tree tmp2 = desc;
8575 : 127 : if (DECL_LANG_SPECIFIC (tmp2) && GFC_DECL_SAVED_DESCRIPTOR (tmp2))
8576 : 127 : tmp2 = GFC_DECL_SAVED_DESCRIPTOR (tmp2);
8577 : 127 : if (POINTER_TYPE_P (TREE_TYPE (tmp2)))
8578 : 127 : tmp2 = build_fold_indirect_ref_loc (input_location, tmp2);
8579 : 127 : dtype = gfc_conv_descriptor_dtype (tmp2);
8580 : : }
8581 : : else
8582 : 60752 : dtype = gfc_get_dtype (parmtype);
8583 : 61444 : gfc_add_modify (&loop.pre, tmp, dtype);
8584 : :
8585 : : /* The 1st element in the section. */
8586 : 61444 : base = gfc_index_zero_node;
8587 : 61444 : if (expr->ts.type == BT_CHARACTER && expr->rank == 0 && codim)
8588 : 6 : base = gfc_index_one_node;
8589 : :
8590 : : /* The offset from the 1st element in the section. */
8591 : : offset = gfc_index_zero_node;
8592 : :
8593 : 157873 : for (n = 0; n < ndim; n++)
8594 : : {
8595 : 96429 : stride = gfc_conv_array_stride (desc, n);
8596 : :
8597 : : /* Work out the 1st element in the section. */
8598 : 96429 : if (info->ref
8599 : 89690 : && info->ref->u.ar.dimen_type[n] == DIMEN_ELEMENT)
8600 : : {
8601 : 1154 : gcc_assert (info->subscript[n]
8602 : : && info->subscript[n]->info->type == GFC_SS_SCALAR);
8603 : 1154 : start = info->subscript[n]->info->data.scalar.value;
8604 : : }
8605 : : else
8606 : : {
8607 : : /* Evaluate and remember the start of the section. */
8608 : 95275 : start = info->start[n];
8609 : 95275 : stride = gfc_evaluate_now (stride, &loop.pre);
8610 : : }
8611 : :
8612 : 96429 : tmp = gfc_conv_array_lbound (desc, n);
8613 : 96429 : tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (tmp),
8614 : : start, tmp);
8615 : 96429 : tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (tmp),
8616 : : tmp, stride);
8617 : 96429 : base = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (tmp),
8618 : : base, tmp);
8619 : :
8620 : 96429 : if (info->ref
8621 : 89690 : && info->ref->u.ar.dimen_type[n] == DIMEN_ELEMENT)
8622 : : {
8623 : : /* For elemental dimensions, we only need the 1st
8624 : : element in the section. */
8625 : 1154 : continue;
8626 : : }
8627 : :
8628 : : /* Vector subscripts need copying and are handled elsewhere. */
8629 : 95275 : if (info->ref)
8630 : 88536 : gcc_assert (info->ref->u.ar.dimen_type[n] == DIMEN_RANGE);
8631 : :
8632 : : /* look for the corresponding scalarizer dimension: dim. */
8633 : 142990 : for (dim = 0; dim < ndim; dim++)
8634 : 142990 : if (ss->dim[dim] == n)
8635 : : break;
8636 : :
8637 : : /* loop exited early: the DIM being looked for has been found. */
8638 : 95275 : gcc_assert (dim < ndim);
8639 : :
8640 : : /* Set the new lower bound. */
8641 : 95275 : from = loop.from[dim];
8642 : 95275 : to = loop.to[dim];
8643 : :
8644 : 95275 : gfc_conv_descriptor_lbound_set (&loop.pre, parm,
8645 : : gfc_rank_cst[dim], from);
8646 : :
8647 : : /* Set the new upper bound. */
8648 : 95275 : gfc_conv_descriptor_ubound_set (&loop.pre, parm,
8649 : : gfc_rank_cst[dim], to);
8650 : :
8651 : : /* Multiply the stride by the section stride to get the
8652 : : total stride. */
8653 : 95275 : stride = fold_build2_loc (input_location, MULT_EXPR,
8654 : : gfc_array_index_type,
8655 : : stride, info->stride[n]);
8656 : :
8657 : 95275 : tmp = fold_build2_loc (input_location, MULT_EXPR,
8658 : 95275 : TREE_TYPE (offset), stride, from);
8659 : 95275 : offset = fold_build2_loc (input_location, MINUS_EXPR,
8660 : 95275 : TREE_TYPE (offset), offset, tmp);
8661 : :
8662 : : /* Store the new stride. */
8663 : 95275 : gfc_conv_descriptor_stride_set (&loop.pre, parm,
8664 : : gfc_rank_cst[dim], stride);
8665 : : }
8666 : :
8667 : 62472 : for (n = loop.dimen; n < loop.dimen + codim; n++)
8668 : : {
8669 : 1028 : from = loop.from[n];
8670 : 1028 : to = loop.to[n];
8671 : 1028 : gfc_conv_descriptor_lbound_set (&loop.pre, parm,
8672 : : gfc_rank_cst[n], from);
8673 : 1028 : if (n < loop.dimen + codim - 1)
8674 : 528 : gfc_conv_descriptor_ubound_set (&loop.pre, parm,
8675 : : gfc_rank_cst[n], to);
8676 : : }
8677 : :
8678 : 61444 : if (se->data_not_needed)
8679 : 5981 : gfc_conv_descriptor_data_set (&loop.pre, parm,
8680 : : gfc_index_zero_node);
8681 : : else
8682 : : /* Point the data pointer at the 1st element in the section. */
8683 : 55463 : gfc_get_dataptr_offset (&loop.pre, parm, desc, base,
8684 : : subref_array_target, expr);
8685 : :
8686 : 61444 : gfc_conv_descriptor_offset_set (&loop.pre, parm, offset);
8687 : :
8688 : 61444 : if (flag_coarray == GFC_FCOARRAY_LIB && expr->corank)
8689 : : {
8690 : 189 : tmp = INDIRECT_REF_P (desc) ? TREE_OPERAND (desc, 0) : desc;
8691 : 189 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)))
8692 : : {
8693 : 11 : tmp = gfc_conv_descriptor_token (tmp);
8694 : : }
8695 : 178 : else if (DECL_P (tmp) && DECL_LANG_SPECIFIC (tmp)
8696 : 220 : && GFC_DECL_TOKEN (tmp) != NULL_TREE)
8697 : 34 : tmp = GFC_DECL_TOKEN (tmp);
8698 : : else
8699 : : {
8700 : 144 : tmp = GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (tmp));
8701 : : }
8702 : :
8703 : 189 : gfc_add_modify (&loop.pre, gfc_conv_descriptor_token (parm), tmp);
8704 : : }
8705 : : desc = parm;
8706 : : }
8707 : :
8708 : : /* For class arrays add the class tree into the saved descriptor to
8709 : : enable getting of _vptr and the like. */
8710 : 70452 : if (expr->expr_type == EXPR_VARIABLE && VAR_P (desc)
8711 : 54390 : && IS_CLASS_ARRAY (expr->symtree->n.sym))
8712 : : {
8713 : 1090 : gfc_allocate_lang_decl (desc);
8714 : 1090 : GFC_DECL_SAVED_DESCRIPTOR (desc) =
8715 : 1090 : DECL_LANG_SPECIFIC (expr->symtree->n.sym->backend_decl) ?
8716 : 1004 : GFC_DECL_SAVED_DESCRIPTOR (expr->symtree->n.sym->backend_decl)
8717 : : : expr->symtree->n.sym->backend_decl;
8718 : : }
8719 : 69362 : else if (expr->expr_type == EXPR_ARRAY && VAR_P (desc)
8720 : 10082 : && IS_CLASS_ARRAY (expr))
8721 : : {
8722 : 12 : tree vtype;
8723 : 12 : gfc_allocate_lang_decl (desc);
8724 : 12 : tmp = gfc_create_var (expr->ts.u.derived->backend_decl, "class");
8725 : 12 : GFC_DECL_SAVED_DESCRIPTOR (desc) = tmp;
8726 : 12 : vtype = gfc_class_vptr_get (tmp);
8727 : 12 : gfc_add_modify (&se->pre, vtype,
8728 : 12 : gfc_build_addr_expr (TREE_TYPE (vtype),
8729 : 12 : gfc_find_vtab (&expr->ts)->backend_decl));
8730 : : }
8731 : 70452 : if (!se->direct_byref || se->byref_noassign)
8732 : : {
8733 : : /* Get a pointer to the new descriptor. */
8734 : 68108 : if (se->want_pointer)
8735 : 38356 : se->expr = gfc_build_addr_expr (NULL_TREE, desc);
8736 : : else
8737 : 29752 : se->expr = desc;
8738 : : }
8739 : :
8740 : 70452 : gfc_add_block_to_block (&se->pre, &loop.pre);
8741 : 70452 : gfc_add_block_to_block (&se->post, &loop.post);
8742 : :
8743 : : /* Cleanup the scalarizer. */
8744 : 70452 : gfc_cleanup_loop (&loop);
8745 : : }
8746 : :
8747 : :
8748 : : /* Calculate the array size (number of elements); if dim != NULL_TREE,
8749 : : return size for that dim (dim=0..rank-1; only for GFC_DESCRIPTOR_TYPE_P). */
8750 : : tree
8751 : 14844 : gfc_tree_array_size (stmtblock_t *block, tree desc, gfc_expr *expr, tree dim)
8752 : : {
8753 : 14844 : if (GFC_ARRAY_TYPE_P (TREE_TYPE (desc)))
8754 : : {
8755 : 34 : gcc_assert (dim == NULL_TREE);
8756 : 34 : return GFC_TYPE_ARRAY_SIZE (TREE_TYPE (desc));
8757 : : }
8758 : 14810 : tree size, tmp, rank = NULL_TREE, cond = NULL_TREE;
8759 : 14810 : symbol_attribute attr = gfc_expr_attr (expr);
8760 : 14810 : gfc_array_spec *as = gfc_get_full_arrayspec_from_expr (expr);
8761 : 14810 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)));
8762 : 14810 : if ((!attr.pointer && !attr.allocatable && as && as->type == AS_ASSUMED_RANK)
8763 : 12052 : || !dim)
8764 : : {
8765 : 8284 : if (expr->rank < 0)
8766 : 2892 : rank = fold_convert (signed_char_type_node,
8767 : : gfc_conv_descriptor_rank (desc));
8768 : : else
8769 : 5392 : rank = build_int_cst (signed_char_type_node, expr->rank);
8770 : : }
8771 : :
8772 : 8284 : if (dim || expr->rank == 1)
8773 : : {
8774 : 10848 : if (!dim)
8775 : 4322 : dim = gfc_index_zero_node;
8776 : 13147 : tree ubound = gfc_conv_descriptor_ubound_get (desc, dim);
8777 : 13147 : tree lbound = gfc_conv_descriptor_lbound_get (desc, dim);
8778 : :
8779 : 13147 : size = fold_build2_loc (input_location, MINUS_EXPR,
8780 : : gfc_array_index_type, ubound, lbound);
8781 : 13147 : size = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
8782 : : size, gfc_index_one_node);
8783 : : /* if (!allocatable && !pointer && assumed rank)
8784 : : size = (idx == rank && ubound[rank-1] == -1 ? -1 : size;
8785 : : else
8786 : : size = max (0, size); */
8787 : 13147 : size = fold_build2_loc (input_location, MAX_EXPR, gfc_array_index_type,
8788 : : size, gfc_index_zero_node);
8789 : 13147 : if (!attr.pointer && !attr.allocatable
8790 : 7626 : && as && as->type == AS_ASSUMED_RANK)
8791 : : {
8792 : 2299 : tmp = fold_build2_loc (input_location, MINUS_EXPR, signed_char_type_node,
8793 : 2299 : rank, build_int_cst (signed_char_type_node, 1));
8794 : 2299 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
8795 : : fold_convert (signed_char_type_node, dim),
8796 : : tmp);
8797 : 2299 : tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
8798 : : gfc_conv_descriptor_ubound_get (desc, dim),
8799 : 2299 : build_int_cst (gfc_array_index_type, -1));
8800 : 2299 : cond = fold_build2_loc (input_location, TRUTH_AND_EXPR, boolean_type_node,
8801 : : cond, tmp);
8802 : 2299 : tmp = build_int_cst (gfc_array_index_type, -1);
8803 : 2299 : size = build3_loc (input_location, COND_EXPR, gfc_array_index_type,
8804 : : cond, tmp, size);
8805 : : }
8806 : 13147 : return size;
8807 : : }
8808 : :
8809 : : /* size = 1. */
8810 : 1663 : size = gfc_create_var (gfc_array_index_type, "size");
8811 : 1663 : gfc_add_modify (block, size, build_int_cst (TREE_TYPE (size), 1));
8812 : 1663 : tree extent = gfc_create_var (gfc_array_index_type, "extent");
8813 : :
8814 : 1663 : stmtblock_t cond_block, loop_body;
8815 : 1663 : gfc_init_block (&cond_block);
8816 : 1663 : gfc_init_block (&loop_body);
8817 : :
8818 : : /* Loop: for (i = 0; i < rank; ++i). */
8819 : 1663 : tree idx = gfc_create_var (signed_char_type_node, "idx");
8820 : : /* Loop body. */
8821 : : /* #if (assumed-rank + !allocatable && !pointer)
8822 : : if (idx == rank - 1 && dim[idx].ubound == -1)
8823 : : extent = -1;
8824 : : else
8825 : : #endif
8826 : : extent = gfc->dim[i].ubound - gfc->dim[i].lbound + 1
8827 : : if (extent < 0)
8828 : : extent = 0
8829 : : size *= extent. */
8830 : 1663 : cond = NULL_TREE;
8831 : 1663 : if (!attr.pointer && !attr.allocatable && as && as->type == AS_ASSUMED_RANK)
8832 : : {
8833 : 459 : tmp = fold_build2_loc (input_location, MINUS_EXPR, signed_char_type_node,
8834 : 459 : rank, build_int_cst (signed_char_type_node, 1));
8835 : 459 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
8836 : : idx, tmp);
8837 : 459 : tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
8838 : : gfc_conv_descriptor_ubound_get (desc, idx),
8839 : 459 : build_int_cst (gfc_array_index_type, -1));
8840 : 459 : cond = fold_build2_loc (input_location, TRUTH_AND_EXPR, boolean_type_node,
8841 : : cond, tmp);
8842 : : }
8843 : 1663 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
8844 : : gfc_conv_descriptor_ubound_get (desc, idx),
8845 : : gfc_conv_descriptor_lbound_get (desc, idx));
8846 : 1663 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
8847 : : tmp, gfc_index_one_node);
8848 : 1663 : gfc_add_modify (&cond_block, extent, tmp);
8849 : 1663 : tmp = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
8850 : : extent, gfc_index_zero_node);
8851 : 1663 : tmp = build3_v (COND_EXPR, tmp,
8852 : : fold_build2_loc (input_location, MODIFY_EXPR,
8853 : : gfc_array_index_type,
8854 : : extent, gfc_index_zero_node),
8855 : : build_empty_stmt (input_location));
8856 : 1663 : gfc_add_expr_to_block (&cond_block, tmp);
8857 : 1663 : tmp = gfc_finish_block (&cond_block);
8858 : 1663 : if (cond)
8859 : 459 : tmp = build3_v (COND_EXPR, cond,
8860 : : fold_build2_loc (input_location, MODIFY_EXPR,
8861 : : gfc_array_index_type, extent,
8862 : : build_int_cst (gfc_array_index_type, -1)),
8863 : : tmp);
8864 : 1663 : gfc_add_expr_to_block (&loop_body, tmp);
8865 : : /* size *= extent. */
8866 : 1663 : gfc_add_modify (&loop_body, size,
8867 : : fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
8868 : : size, extent));
8869 : : /* Generate loop. */
8870 : 3326 : gfc_simple_for_loop (block, idx, build_int_cst (TREE_TYPE (idx), 0), rank, LT_EXPR,
8871 : 1663 : build_int_cst (TREE_TYPE (idx), 1),
8872 : : gfc_finish_block (&loop_body));
8873 : 1663 : return size;
8874 : : }
8875 : :
8876 : : /* Helper function for gfc_conv_array_parameter if array size needs to be
8877 : : computed. */
8878 : :
8879 : : static void
8880 : 102 : array_parameter_size (stmtblock_t *block, tree desc, gfc_expr *expr, tree *size)
8881 : : {
8882 : 102 : tree elem;
8883 : 102 : *size = gfc_tree_array_size (block, desc, expr, NULL);
8884 : 102 : elem = TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (desc)));
8885 : 102 : *size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
8886 : : *size, fold_convert (gfc_array_index_type, elem));
8887 : 102 : }
8888 : :
8889 : : /* Helper function - return true if the argument is a pointer. */
8890 : :
8891 : : static bool
8892 : 739 : is_pointer (gfc_expr *e)
8893 : : {
8894 : 739 : gfc_symbol *sym;
8895 : :
8896 : 739 : if (e->expr_type != EXPR_VARIABLE || e->symtree == NULL)
8897 : : return false;
8898 : :
8899 : 739 : sym = e->symtree->n.sym;
8900 : 739 : if (sym == NULL)
8901 : : return false;
8902 : :
8903 : 739 : return sym->attr.pointer || sym->attr.proc_pointer;
8904 : : }
8905 : :
8906 : : /* Convert an array for passing as an actual parameter. */
8907 : :
8908 : : void
8909 : 62906 : gfc_conv_array_parameter (gfc_se *se, gfc_expr *expr, bool g77,
8910 : : const gfc_symbol *fsym, const char *proc_name,
8911 : : tree *size, tree *lbshift, tree *packed)
8912 : : {
8913 : 62906 : tree ptr;
8914 : 62906 : tree desc;
8915 : 62906 : tree tmp = NULL_TREE;
8916 : 62906 : tree stmt;
8917 : 62906 : tree parent = DECL_CONTEXT (current_function_decl);
8918 : 62906 : tree ctree;
8919 : 62906 : tree pack_attr = NULL_TREE; /* Set when packing class arrays. */
8920 : 62906 : bool full_array_var;
8921 : 62906 : bool this_array_result;
8922 : 62906 : bool contiguous;
8923 : 62906 : bool no_pack;
8924 : 62906 : bool array_constructor;
8925 : 62906 : bool good_allocatable;
8926 : 62906 : bool ultimate_ptr_comp;
8927 : 62906 : bool ultimate_alloc_comp;
8928 : 62906 : gfc_symbol *sym;
8929 : 62906 : stmtblock_t block;
8930 : 62906 : gfc_ref *ref;
8931 : :
8932 : 62906 : ultimate_ptr_comp = false;
8933 : 62906 : ultimate_alloc_comp = false;
8934 : :
8935 : 63564 : for (ref = expr->ref; ref; ref = ref->next)
8936 : : {
8937 : 51932 : if (ref->next == NULL)
8938 : : break;
8939 : :
8940 : 658 : if (ref->type == REF_COMPONENT)
8941 : : {
8942 : 586 : ultimate_ptr_comp = ref->u.c.component->attr.pointer;
8943 : 586 : ultimate_alloc_comp = ref->u.c.component->attr.allocatable;
8944 : : }
8945 : : }
8946 : :
8947 : 62906 : full_array_var = false;
8948 : 62906 : contiguous = false;
8949 : :
8950 : 62906 : if (expr->expr_type == EXPR_VARIABLE && ref && !ultimate_ptr_comp)
8951 : 51197 : full_array_var = gfc_full_array_ref_p (ref, &contiguous);
8952 : :
8953 : 51197 : sym = full_array_var ? expr->symtree->n.sym : NULL;
8954 : :
8955 : : /* The symbol should have an array specification. */
8956 : 60161 : gcc_assert (!sym || sym->as || ref->u.ar.as);
8957 : :
8958 : 62906 : if (expr->expr_type == EXPR_ARRAY && expr->ts.type == BT_CHARACTER)
8959 : : {
8960 : 667 : get_array_ctor_strlen (&se->pre, expr->value.constructor, &tmp);
8961 : 667 : expr->ts.u.cl->backend_decl = tmp;
8962 : 667 : se->string_length = tmp;
8963 : : }
8964 : :
8965 : : /* Is this the result of the enclosing procedure? */
8966 : 62906 : this_array_result = (full_array_var && sym->attr.flavor == FL_PROCEDURE);
8967 : 58 : if (this_array_result
8968 : 58 : && (sym->backend_decl != current_function_decl)
8969 : 0 : && (sym->backend_decl != parent))
8970 : 62906 : this_array_result = false;
8971 : :
8972 : : /* Passing an optional dummy argument as actual to an optional dummy? */
8973 : 62906 : bool pass_optional;
8974 : 62906 : pass_optional = fsym && fsym->attr.optional && sym && sym->attr.optional;
8975 : :
8976 : : /* Passing address of the array if it is not pointer or assumed-shape. */
8977 : 62906 : if (full_array_var && g77 && !this_array_result
8978 : 15067 : && sym->ts.type != BT_DERIVED && sym->ts.type != BT_CLASS)
8979 : : {
8980 : 12128 : tmp = gfc_get_symbol_decl (sym);
8981 : :
8982 : 12128 : if (sym->ts.type == BT_CHARACTER)
8983 : 2741 : se->string_length = sym->ts.u.cl->backend_decl;
8984 : :
8985 : 12128 : if (!sym->attr.pointer
8986 : 11623 : && sym->as
8987 : 11623 : && sym->as->type != AS_ASSUMED_SHAPE
8988 : 11364 : && sym->as->type != AS_DEFERRED
8989 : 9933 : && sym->as->type != AS_ASSUMED_RANK
8990 : 9865 : && !sym->attr.allocatable)
8991 : : {
8992 : : /* Some variables are declared directly, others are declared as
8993 : : pointers and allocated on the heap. */
8994 : 9413 : if (sym->attr.dummy || POINTER_TYPE_P (TREE_TYPE (tmp)))
8995 : 2464 : se->expr = tmp;
8996 : : else
8997 : 6949 : se->expr = gfc_build_addr_expr (NULL_TREE, tmp);
8998 : 9413 : if (size)
8999 : 34 : array_parameter_size (&se->pre, tmp, expr, size);
9000 : 15928 : return;
9001 : : }
9002 : :
9003 : 2715 : if (sym->attr.allocatable)
9004 : : {
9005 : 1763 : if (sym->attr.dummy || sym->attr.result)
9006 : : {
9007 : 1136 : gfc_conv_expr_descriptor (se, expr);
9008 : 1136 : tmp = se->expr;
9009 : : }
9010 : 1763 : if (size)
9011 : 6 : array_parameter_size (&se->pre, tmp, expr, size);
9012 : 1763 : se->expr = gfc_conv_array_data (tmp);
9013 : 1763 : if (pass_optional)
9014 : : {
9015 : 18 : tree cond = gfc_conv_expr_present (sym);
9016 : 36 : se->expr = build3_loc (input_location, COND_EXPR,
9017 : 18 : TREE_TYPE (se->expr), cond, se->expr,
9018 : 18 : fold_convert (TREE_TYPE (se->expr),
9019 : : null_pointer_node));
9020 : : }
9021 : 1763 : return;
9022 : : }
9023 : : }
9024 : :
9025 : : /* A convenient reduction in scope. */
9026 : 51730 : contiguous = g77 && !this_array_result && contiguous;
9027 : :
9028 : : /* There is no need to pack and unpack the array, if it is contiguous
9029 : : and not a deferred- or assumed-shape array, or if it is simply
9030 : : contiguous. */
9031 : 51730 : no_pack = false;
9032 : : // clang-format off
9033 : 51730 : if (sym)
9034 : : {
9035 : 37351 : symbol_attribute *attr = &(IS_CLASS_ARRAY (sym)
9036 : : ? CLASS_DATA (sym)->attr : sym->attr);
9037 : 229 : gfc_array_spec *as = IS_CLASS_ARRAY (sym)
9038 : 37580 : ? CLASS_DATA (sym)->as : sym->as;
9039 : 37351 : no_pack = (as
9040 : 37100 : && !attr->pointer
9041 : 33887 : && as->type != AS_DEFERRED
9042 : 24542 : && as->type != AS_ASSUMED_RANK
9043 : 59381 : && as->type != AS_ASSUMED_SHAPE);
9044 : : }
9045 : 51730 : if (ref && ref->u.ar.as)
9046 : 40096 : no_pack = no_pack
9047 : 40096 : || (ref->u.ar.as->type != AS_DEFERRED
9048 : : && ref->u.ar.as->type != AS_ASSUMED_RANK
9049 : : && ref->u.ar.as->type != AS_ASSUMED_SHAPE);
9050 : 103460 : no_pack = contiguous
9051 : 51730 : && (no_pack || gfc_is_simply_contiguous (expr, false, true));
9052 : : // clang-format on
9053 : :
9054 : : /* If we have an EXPR_OP or a function returning an explicit-shaped
9055 : : or allocatable array, an array temporary will be generated which
9056 : : does not need to be packed / unpacked if passed to an
9057 : : explicit-shape dummy array. */
9058 : :
9059 : 51730 : if (g77)
9060 : : {
9061 : 5813 : if (expr->expr_type == EXPR_OP)
9062 : : no_pack = 1;
9063 : 5736 : else if (expr->expr_type == EXPR_FUNCTION && expr->value.function.esym)
9064 : : {
9065 : 41 : gfc_symbol *result = expr->value.function.esym->result;
9066 : 41 : if (result->attr.dimension
9067 : 41 : && (result->as->type == AS_EXPLICIT
9068 : : || result->attr.allocatable
9069 : 14 : || result->attr.contiguous))
9070 : 112 : no_pack = 1;
9071 : : }
9072 : : }
9073 : :
9074 : : /* Array constructors are always contiguous and do not need packing. */
9075 : 51730 : array_constructor = g77 && !this_array_result && expr->expr_type == EXPR_ARRAY;
9076 : :
9077 : : /* Same is true of contiguous sections from allocatable variables. */
9078 : 103460 : good_allocatable = contiguous
9079 : 4038 : && expr->symtree
9080 : 55768 : && expr->symtree->n.sym->attr.allocatable;
9081 : :
9082 : : /* Or ultimate allocatable components. */
9083 : 51730 : ultimate_alloc_comp = contiguous && ultimate_alloc_comp;
9084 : :
9085 : 51730 : if (no_pack || array_constructor || good_allocatable || ultimate_alloc_comp)
9086 : : {
9087 : 4360 : gfc_conv_expr_descriptor (se, expr);
9088 : : /* Deallocate the allocatable components of structures that are
9089 : : not variable. */
9090 : 4360 : if ((expr->ts.type == BT_DERIVED || expr->ts.type == BT_CLASS)
9091 : 2860 : && expr->ts.u.derived->attr.alloc_comp
9092 : 1605 : && expr->expr_type != EXPR_VARIABLE)
9093 : : {
9094 : 2 : tmp = gfc_deallocate_alloc_comp (expr->ts.u.derived, se->expr, expr->rank);
9095 : :
9096 : : /* The components shall be deallocated before their containing entity. */
9097 : 2 : gfc_prepend_expr_to_block (&se->post, tmp);
9098 : : }
9099 : 4360 : if (expr->ts.type == BT_CHARACTER && expr->expr_type != EXPR_FUNCTION)
9100 : 279 : se->string_length = expr->ts.u.cl->backend_decl;
9101 : 4360 : if (size)
9102 : 32 : array_parameter_size (&se->pre, se->expr, expr, size);
9103 : 4360 : se->expr = gfc_conv_array_data (se->expr);
9104 : 4360 : return;
9105 : : }
9106 : :
9107 : 47370 : if (fsym && fsym->ts.type == BT_CLASS)
9108 : : {
9109 : 1205 : gcc_assert (se->expr);
9110 : : ctree = se->expr;
9111 : : }
9112 : : else
9113 : : ctree = NULL_TREE;
9114 : :
9115 : 47370 : if (this_array_result)
9116 : : {
9117 : : /* Result of the enclosing function. */
9118 : 58 : gfc_conv_expr_descriptor (se, expr);
9119 : 58 : if (size)
9120 : 0 : array_parameter_size (&se->pre, se->expr, expr, size);
9121 : 58 : se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
9122 : :
9123 : 18 : if (g77 && TREE_TYPE (TREE_TYPE (se->expr)) != NULL_TREE
9124 : 76 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (se->expr))))
9125 : 18 : se->expr = gfc_conv_array_data (build_fold_indirect_ref_loc (input_location,
9126 : : se->expr));
9127 : :
9128 : 58 : return;
9129 : : }
9130 : : else
9131 : : {
9132 : : /* Every other type of array. */
9133 : 47312 : se->want_pointer = (ctree) ? 0 : 1;
9134 : 47312 : se->want_coarray = expr->corank;
9135 : 47312 : gfc_conv_expr_descriptor (se, expr);
9136 : :
9137 : 47312 : if (size)
9138 : 30 : array_parameter_size (&se->pre,
9139 : : build_fold_indirect_ref_loc (input_location,
9140 : : se->expr),
9141 : : expr, size);
9142 : 47312 : if (ctree)
9143 : : {
9144 : 1205 : stmtblock_t block;
9145 : :
9146 : 1205 : gfc_init_block (&block);
9147 : 1205 : if (lbshift && *lbshift)
9148 : : {
9149 : : /* Apply a shift of the lbound when supplied. */
9150 : 86 : for (int dim = 0; dim < expr->rank; ++dim)
9151 : 43 : gfc_conv_shift_descriptor_lbound (&block, se->expr, dim,
9152 : : *lbshift);
9153 : : }
9154 : 1205 : tmp = gfc_class_data_get (ctree);
9155 : 1205 : if (expr->rank > 1 && CLASS_DATA (fsym)->as->rank != expr->rank
9156 : 84 : && CLASS_DATA (fsym)->as->type == AS_EXPLICIT && !no_pack)
9157 : : {
9158 : 36 : tree arr = gfc_create_var (TREE_TYPE (tmp), "parm");
9159 : 36 : gfc_conv_descriptor_data_set (&block, arr,
9160 : : gfc_conv_descriptor_data_get (
9161 : : se->expr));
9162 : 36 : gfc_conv_descriptor_lbound_set (&block, arr, gfc_index_zero_node,
9163 : : gfc_index_zero_node);
9164 : 36 : gfc_conv_descriptor_ubound_set (
9165 : : &block, arr, gfc_index_zero_node,
9166 : : gfc_conv_descriptor_size (se->expr, expr->rank));
9167 : 36 : gfc_conv_descriptor_stride_set (
9168 : : &block, arr, gfc_index_zero_node,
9169 : : gfc_conv_descriptor_stride_get (se->expr, gfc_index_zero_node));
9170 : 36 : gfc_add_modify (&block, gfc_conv_descriptor_dtype (arr),
9171 : : gfc_conv_descriptor_dtype (se->expr));
9172 : 36 : gfc_add_modify (&block, gfc_conv_descriptor_rank (arr),
9173 : 36 : build_int_cst (signed_char_type_node, 1));
9174 : 36 : gfc_conv_descriptor_span_set (&block, arr,
9175 : : gfc_conv_descriptor_span_get (arr));
9176 : 36 : gfc_conv_descriptor_offset_set (&block, arr, gfc_index_zero_node);
9177 : 36 : se->expr = arr;
9178 : : }
9179 : 1205 : gfc_class_array_data_assign (&block, tmp, se->expr, true);
9180 : :
9181 : : /* Handle optional. */
9182 : 1205 : if (fsym && fsym->attr.optional && sym && sym->attr.optional)
9183 : 348 : tmp = build3_v (COND_EXPR, gfc_conv_expr_present (sym),
9184 : : gfc_finish_block (&block),
9185 : : build_empty_stmt (input_location));
9186 : : else
9187 : 857 : tmp = gfc_finish_block (&block);
9188 : :
9189 : 1205 : gfc_add_expr_to_block (&se->pre, tmp);
9190 : : }
9191 : : }
9192 : :
9193 : : /* Deallocate the allocatable components of structures that are
9194 : : not variable, for descriptorless arguments.
9195 : : Arguments with a descriptor are handled in gfc_conv_procedure_call. */
9196 : 47312 : if (g77 && (expr->ts.type == BT_DERIVED || expr->ts.type == BT_CLASS)
9197 : 66 : && expr->ts.u.derived->attr.alloc_comp
9198 : 12 : && expr->expr_type != EXPR_VARIABLE)
9199 : : {
9200 : 0 : tmp = build_fold_indirect_ref_loc (input_location, se->expr);
9201 : 0 : tmp = gfc_deallocate_alloc_comp (expr->ts.u.derived, tmp, expr->rank);
9202 : :
9203 : : /* The components shall be deallocated before their containing entity. */
9204 : 0 : gfc_prepend_expr_to_block (&se->post, tmp);
9205 : : }
9206 : :
9207 : 45877 : if (g77 || (fsym && fsym->attr.contiguous
9208 : 1527 : && !gfc_is_simply_contiguous (expr, false, true)))
9209 : : {
9210 : 1579 : tree origptr = NULL_TREE, packedptr = NULL_TREE;
9211 : :
9212 : 1579 : desc = se->expr;
9213 : :
9214 : : /* For contiguous arrays, save the original value of the descriptor. */
9215 : 1579 : if (!g77 && !ctree)
9216 : : {
9217 : 48 : origptr = gfc_create_var (pvoid_type_node, "origptr");
9218 : 48 : tmp = build_fold_indirect_ref_loc (input_location, desc);
9219 : 48 : tmp = gfc_conv_array_data (tmp);
9220 : 96 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
9221 : 48 : TREE_TYPE (origptr), origptr,
9222 : 48 : fold_convert (TREE_TYPE (origptr), tmp));
9223 : 48 : gfc_add_expr_to_block (&se->pre, tmp);
9224 : : }
9225 : :
9226 : : /* Repack the array. */
9227 : 1579 : if (warn_array_temporaries)
9228 : : {
9229 : 28 : if (fsym)
9230 : 18 : gfc_warning (OPT_Warray_temporaries,
9231 : : "Creating array temporary at %L for argument %qs",
9232 : 18 : &expr->where, fsym->name);
9233 : : else
9234 : 10 : gfc_warning (OPT_Warray_temporaries,
9235 : : "Creating array temporary at %L", &expr->where);
9236 : : }
9237 : :
9238 : : /* When optimizing, we can use gfc_conv_subref_array_arg for
9239 : : making the packing and unpacking operation visible to the
9240 : : optimizers. */
9241 : :
9242 : 1435 : if (g77 && flag_inline_arg_packing && expr->expr_type == EXPR_VARIABLE
9243 : 739 : && !is_pointer (expr) && ! gfc_has_dimen_vector_ref (expr)
9244 : 355 : && !(expr->symtree->n.sym->as
9245 : 341 : && expr->symtree->n.sym->as->type == AS_ASSUMED_RANK)
9246 : 1934 : && (fsym == NULL || fsym->ts.type != BT_ASSUMED))
9247 : : {
9248 : 334 : gfc_conv_subref_array_arg (se, expr, g77,
9249 : 170 : fsym ? fsym->attr.intent : INTENT_INOUT,
9250 : : false, fsym, proc_name, sym, true);
9251 : 334 : return;
9252 : : }
9253 : :
9254 : 1245 : if (ctree)
9255 : : {
9256 : 96 : packedptr
9257 : 96 : = gfc_build_addr_expr (NULL_TREE, gfc_create_var (TREE_TYPE (ctree),
9258 : : "packed"));
9259 : 96 : if (fsym)
9260 : : {
9261 : 96 : int pack_mask = 0;
9262 : :
9263 : : /* Set bit 0 to the mask, when this is an unlimited_poly
9264 : : class. */
9265 : 96 : if (CLASS_DATA (fsym)->ts.u.derived->attr.unlimited_polymorphic)
9266 : 36 : pack_mask = 1 << 0;
9267 : 96 : pack_attr = build_int_cst (integer_type_node, pack_mask);
9268 : : }
9269 : : else
9270 : 0 : pack_attr = integer_zero_node;
9271 : :
9272 : 96 : gfc_add_expr_to_block (
9273 : : &se->pre,
9274 : : build_call_expr_loc (input_location, gfor_fndecl_in_pack_class, 4,
9275 : : packedptr,
9276 : : gfc_build_addr_expr (NULL_TREE, ctree),
9277 : 96 : size_in_bytes (TREE_TYPE (ctree)), pack_attr));
9278 : 96 : ptr = gfc_conv_array_data (gfc_class_data_get (packedptr));
9279 : 96 : se->expr = packedptr;
9280 : 96 : if (packed)
9281 : 96 : *packed = packedptr;
9282 : : }
9283 : : else
9284 : : {
9285 : 1149 : ptr = build_call_expr_loc (input_location, gfor_fndecl_in_pack, 1,
9286 : : desc);
9287 : :
9288 : 1149 : if (fsym && fsym->attr.optional && sym && sym->attr.optional)
9289 : : {
9290 : 11 : tmp = gfc_conv_expr_present (sym);
9291 : 22 : ptr = build3_loc (input_location, COND_EXPR, TREE_TYPE (se->expr),
9292 : 11 : tmp, fold_convert (TREE_TYPE (se->expr), ptr),
9293 : 11 : fold_convert (TREE_TYPE (se->expr),
9294 : : null_pointer_node));
9295 : : }
9296 : :
9297 : 1149 : ptr = gfc_evaluate_now (ptr, &se->pre);
9298 : : }
9299 : :
9300 : : /* Use the packed data for the actual argument, except for contiguous arrays,
9301 : : where the descriptor's data component is set. */
9302 : 1245 : if (g77)
9303 : 1101 : se->expr = ptr;
9304 : : else
9305 : : {
9306 : 144 : tmp = build_fold_indirect_ref_loc (input_location, desc);
9307 : :
9308 : 144 : gfc_ss * ss = gfc_walk_expr (expr);
9309 : 288 : if (!transposed_dims (ss))
9310 : : {
9311 : 138 : if (!ctree)
9312 : 48 : gfc_conv_descriptor_data_set (&se->pre, tmp, ptr);
9313 : : }
9314 : 6 : else if (!ctree)
9315 : : {
9316 : 0 : tree old_field, new_field;
9317 : :
9318 : : /* The original descriptor has transposed dims so we can't reuse
9319 : : it directly; we have to create a new one. */
9320 : 0 : tree old_desc = tmp;
9321 : 0 : tree new_desc = gfc_create_var (TREE_TYPE (old_desc), "arg_desc");
9322 : :
9323 : 0 : old_field = gfc_conv_descriptor_dtype (old_desc);
9324 : 0 : new_field = gfc_conv_descriptor_dtype (new_desc);
9325 : 0 : gfc_add_modify (&se->pre, new_field, old_field);
9326 : :
9327 : 0 : old_field = gfc_conv_descriptor_offset (old_desc);
9328 : 0 : new_field = gfc_conv_descriptor_offset (new_desc);
9329 : 0 : gfc_add_modify (&se->pre, new_field, old_field);
9330 : :
9331 : 0 : for (int i = 0; i < expr->rank; i++)
9332 : : {
9333 : 0 : old_field = gfc_conv_descriptor_dimension (old_desc,
9334 : 0 : gfc_rank_cst[get_array_ref_dim_for_loop_dim (ss, i)]);
9335 : 0 : new_field = gfc_conv_descriptor_dimension (new_desc,
9336 : : gfc_rank_cst[i]);
9337 : 0 : gfc_add_modify (&se->pre, new_field, old_field);
9338 : : }
9339 : :
9340 : 0 : if (flag_coarray == GFC_FCOARRAY_LIB
9341 : 0 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (old_desc))
9342 : 0 : && GFC_TYPE_ARRAY_AKIND (TREE_TYPE (old_desc))
9343 : : == GFC_ARRAY_ALLOCATABLE)
9344 : : {
9345 : 0 : old_field = gfc_conv_descriptor_token (old_desc);
9346 : 0 : new_field = gfc_conv_descriptor_token (new_desc);
9347 : 0 : gfc_add_modify (&se->pre, new_field, old_field);
9348 : : }
9349 : :
9350 : 0 : gfc_conv_descriptor_data_set (&se->pre, new_desc, ptr);
9351 : 0 : se->expr = gfc_build_addr_expr (NULL_TREE, new_desc);
9352 : : }
9353 : 144 : gfc_free_ss (ss);
9354 : : }
9355 : :
9356 : 1245 : if (gfc_option.rtcheck & GFC_RTCHECK_ARRAY_TEMPS)
9357 : : {
9358 : 8 : char * msg;
9359 : :
9360 : 8 : if (fsym && proc_name)
9361 : 8 : msg = xasprintf ("An array temporary was created for argument "
9362 : 8 : "'%s' of procedure '%s'", fsym->name, proc_name);
9363 : : else
9364 : 0 : msg = xasprintf ("An array temporary was created");
9365 : :
9366 : 8 : tmp = build_fold_indirect_ref_loc (input_location,
9367 : : desc);
9368 : 8 : tmp = gfc_conv_array_data (tmp);
9369 : 8 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
9370 : 8 : fold_convert (TREE_TYPE (tmp), ptr), tmp);
9371 : :
9372 : 8 : if (pass_optional)
9373 : 6 : tmp = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
9374 : : logical_type_node,
9375 : : gfc_conv_expr_present (sym), tmp);
9376 : :
9377 : 8 : gfc_trans_runtime_check (false, true, tmp, &se->pre,
9378 : : &expr->where, msg);
9379 : 8 : free (msg);
9380 : : }
9381 : :
9382 : 1245 : gfc_start_block (&block);
9383 : :
9384 : : /* Copy the data back. */
9385 : 1245 : if (fsym == NULL || fsym->attr.intent != INTENT_IN)
9386 : : {
9387 : 1124 : if (ctree)
9388 : : {
9389 : 66 : tmp = gfc_build_addr_expr (NULL_TREE, ctree);
9390 : 66 : tmp = build_call_expr_loc (input_location,
9391 : : gfor_fndecl_in_unpack_class, 4, tmp,
9392 : : packedptr,
9393 : 66 : size_in_bytes (TREE_TYPE (ctree)),
9394 : : pack_attr);
9395 : : }
9396 : : else
9397 : 1058 : tmp = build_call_expr_loc (input_location, gfor_fndecl_in_unpack, 2,
9398 : : desc, ptr);
9399 : 1124 : gfc_add_expr_to_block (&block, tmp);
9400 : : }
9401 : 121 : else if (ctree && fsym->attr.intent == INTENT_IN)
9402 : : {
9403 : : /* Need to free the memory for class arrays, that got packed. */
9404 : 30 : gfc_add_expr_to_block (&block, gfc_call_free (ptr));
9405 : : }
9406 : :
9407 : : /* Free the temporary. */
9408 : 1154 : if (!ctree)
9409 : 1149 : gfc_add_expr_to_block (&block, gfc_call_free (ptr));
9410 : :
9411 : 1245 : stmt = gfc_finish_block (&block);
9412 : :
9413 : 1245 : gfc_init_block (&block);
9414 : : /* Only if it was repacked. This code needs to be executed before the
9415 : : loop cleanup code. */
9416 : 1245 : tmp = (ctree) ? desc : build_fold_indirect_ref_loc (input_location, desc);
9417 : 1245 : tmp = gfc_conv_array_data (tmp);
9418 : 1245 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
9419 : 1245 : fold_convert (TREE_TYPE (tmp), ptr), tmp);
9420 : :
9421 : 1245 : if (pass_optional)
9422 : 11 : tmp = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
9423 : : logical_type_node,
9424 : : gfc_conv_expr_present (sym), tmp);
9425 : :
9426 : 1245 : tmp = build3_v (COND_EXPR, tmp, stmt, build_empty_stmt (input_location));
9427 : :
9428 : 1245 : gfc_add_expr_to_block (&block, tmp);
9429 : 1245 : gfc_add_block_to_block (&block, &se->post);
9430 : :
9431 : 1245 : gfc_init_block (&se->post);
9432 : :
9433 : : /* Reset the descriptor pointer. */
9434 : 1245 : if (!g77 && !ctree)
9435 : : {
9436 : 48 : tmp = build_fold_indirect_ref_loc (input_location, desc);
9437 : 48 : gfc_conv_descriptor_data_set (&se->post, tmp, origptr);
9438 : : }
9439 : :
9440 : 1245 : gfc_add_block_to_block (&se->post, &block);
9441 : : }
9442 : : }
9443 : :
9444 : :
9445 : : /* This helper function calculates the size in words of a full array. */
9446 : :
9447 : : tree
9448 : 15183 : gfc_full_array_size (stmtblock_t *block, tree decl, int rank)
9449 : : {
9450 : 15183 : tree idx;
9451 : 15183 : tree nelems;
9452 : 15183 : tree tmp;
9453 : 15183 : idx = gfc_rank_cst[rank - 1];
9454 : 15183 : nelems = gfc_conv_descriptor_ubound_get (decl, idx);
9455 : 15183 : tmp = gfc_conv_descriptor_lbound_get (decl, idx);
9456 : 15183 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
9457 : : nelems, tmp);
9458 : 15183 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
9459 : : tmp, gfc_index_one_node);
9460 : 15183 : tmp = gfc_evaluate_now (tmp, block);
9461 : :
9462 : 15183 : nelems = gfc_conv_descriptor_stride_get (decl, idx);
9463 : 15183 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
9464 : : nelems, tmp);
9465 : 15183 : return gfc_evaluate_now (tmp, block);
9466 : : }
9467 : :
9468 : :
9469 : : /* Allocate dest to the same size as src, and copy src -> dest.
9470 : : If no_malloc is set, only the copy is done. */
9471 : :
9472 : : static tree
9473 : 6458 : duplicate_allocatable (tree dest, tree src, tree type, int rank,
9474 : : bool no_malloc, bool no_memcpy, tree str_sz,
9475 : : tree add_when_allocated)
9476 : : {
9477 : 6458 : tree tmp;
9478 : 6458 : tree eltype;
9479 : 6458 : tree size;
9480 : 6458 : tree nelems;
9481 : 6458 : tree null_cond;
9482 : 6458 : tree null_data;
9483 : 6458 : stmtblock_t block;
9484 : :
9485 : : /* If the source is null, set the destination to null. Then,
9486 : : allocate memory to the destination. */
9487 : 6458 : gfc_init_block (&block);
9488 : :
9489 : 6458 : if (!GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (dest)))
9490 : : {
9491 : 1849 : gfc_add_modify (&block, dest, fold_convert (type, null_pointer_node));
9492 : 1849 : null_data = gfc_finish_block (&block);
9493 : :
9494 : 1849 : gfc_init_block (&block);
9495 : 1849 : eltype = TREE_TYPE (type);
9496 : 1849 : if (str_sz != NULL_TREE)
9497 : : size = str_sz;
9498 : : else
9499 : 1564 : size = TYPE_SIZE_UNIT (eltype);
9500 : :
9501 : 1849 : if (!no_malloc)
9502 : : {
9503 : 1849 : tmp = gfc_call_malloc (&block, type, size);
9504 : 1849 : gfc_add_modify (&block, dest, fold_convert (type, tmp));
9505 : : }
9506 : :
9507 : 1849 : if (!no_memcpy)
9508 : : {
9509 : 1424 : tmp = builtin_decl_explicit (BUILT_IN_MEMCPY);
9510 : 1424 : tmp = build_call_expr_loc (input_location, tmp, 3, dest, src,
9511 : : fold_convert (size_type_node, size));
9512 : 1424 : gfc_add_expr_to_block (&block, tmp);
9513 : : }
9514 : : }
9515 : : else
9516 : : {
9517 : 4609 : gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
9518 : 4609 : null_data = gfc_finish_block (&block);
9519 : :
9520 : 4609 : gfc_init_block (&block);
9521 : 4609 : if (rank)
9522 : 4598 : nelems = gfc_full_array_size (&block, src, rank);
9523 : : else
9524 : 11 : nelems = gfc_index_one_node;
9525 : :
9526 : : /* If type is not the array type, then it is the element type. */
9527 : 4609 : if (GFC_ARRAY_TYPE_P (type) || GFC_DESCRIPTOR_TYPE_P (type))
9528 : 4579 : eltype = gfc_get_element_type (type);
9529 : : else
9530 : : eltype = type;
9531 : :
9532 : 4609 : if (str_sz != NULL_TREE)
9533 : 43 : tmp = fold_convert (gfc_array_index_type, str_sz);
9534 : : else
9535 : 4566 : tmp = fold_convert (gfc_array_index_type,
9536 : : TYPE_SIZE_UNIT (eltype));
9537 : :
9538 : 4609 : tmp = gfc_evaluate_now (tmp, &block);
9539 : 4609 : size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
9540 : : nelems, tmp);
9541 : 4609 : if (!no_malloc)
9542 : : {
9543 : 4576 : tmp = TREE_TYPE (gfc_conv_descriptor_data_get (src));
9544 : 4576 : tmp = gfc_call_malloc (&block, tmp, size);
9545 : 4576 : gfc_conv_descriptor_data_set (&block, dest, tmp);
9546 : : }
9547 : :
9548 : : /* We know the temporary and the value will be the same length,
9549 : : so can use memcpy. */
9550 : 4609 : if (!no_memcpy)
9551 : : {
9552 : 4179 : tmp = builtin_decl_explicit (BUILT_IN_MEMCPY);
9553 : 4179 : tmp = build_call_expr_loc (input_location, tmp, 3,
9554 : : gfc_conv_descriptor_data_get (dest),
9555 : : gfc_conv_descriptor_data_get (src),
9556 : : fold_convert (size_type_node, size));
9557 : 4179 : gfc_add_expr_to_block (&block, tmp);
9558 : : }
9559 : : }
9560 : :
9561 : 6458 : gfc_add_expr_to_block (&block, add_when_allocated);
9562 : 6458 : tmp = gfc_finish_block (&block);
9563 : :
9564 : : /* Null the destination if the source is null; otherwise do
9565 : : the allocate and copy. */
9566 : 6458 : if (!GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (src)))
9567 : : null_cond = src;
9568 : : else
9569 : 4609 : null_cond = gfc_conv_descriptor_data_get (src);
9570 : :
9571 : 6458 : null_cond = convert (pvoid_type_node, null_cond);
9572 : 6458 : null_cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
9573 : : null_cond, null_pointer_node);
9574 : 6458 : return build3_v (COND_EXPR, null_cond, tmp, null_data);
9575 : : }
9576 : :
9577 : :
9578 : : /* Allocate dest to the same size as src, and copy data src -> dest. */
9579 : :
9580 : : tree
9581 : 5211 : gfc_duplicate_allocatable (tree dest, tree src, tree type, int rank,
9582 : : tree add_when_allocated)
9583 : : {
9584 : 5211 : return duplicate_allocatable (dest, src, type, rank, false, false,
9585 : 5211 : NULL_TREE, add_when_allocated);
9586 : : }
9587 : :
9588 : :
9589 : : /* Copy data src -> dest. */
9590 : :
9591 : : tree
9592 : 33 : gfc_copy_allocatable_data (tree dest, tree src, tree type, int rank)
9593 : : {
9594 : 33 : return duplicate_allocatable (dest, src, type, rank, true, false,
9595 : 33 : NULL_TREE, NULL_TREE);
9596 : : }
9597 : :
9598 : : /* Allocate dest to the same size as src, but don't copy anything. */
9599 : :
9600 : : tree
9601 : 855 : gfc_duplicate_allocatable_nocopy (tree dest, tree src, tree type, int rank)
9602 : : {
9603 : 855 : return duplicate_allocatable (dest, src, type, rank, false, true,
9604 : 855 : NULL_TREE, NULL_TREE);
9605 : : }
9606 : :
9607 : : static tree
9608 : 55 : duplicate_allocatable_coarray (tree dest, tree dest_tok, tree src, tree type,
9609 : : int rank, tree add_when_allocated)
9610 : : {
9611 : 55 : tree tmp;
9612 : 55 : tree size;
9613 : 55 : tree nelems;
9614 : 55 : tree null_cond;
9615 : 55 : tree null_data;
9616 : 55 : stmtblock_t block, globalblock;
9617 : :
9618 : : /* If the source is null, set the destination to null. Then,
9619 : : allocate memory to the destination. */
9620 : 55 : gfc_init_block (&block);
9621 : 55 : gfc_init_block (&globalblock);
9622 : :
9623 : 55 : if (!GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (dest)))
9624 : : {
9625 : 15 : gfc_se se;
9626 : 15 : symbol_attribute attr;
9627 : 15 : tree dummy_desc;
9628 : :
9629 : 15 : gfc_init_se (&se, NULL);
9630 : 15 : gfc_clear_attr (&attr);
9631 : 15 : attr.allocatable = 1;
9632 : 15 : dummy_desc = gfc_conv_scalar_to_descriptor (&se, dest, attr);
9633 : 15 : gfc_add_block_to_block (&globalblock, &se.pre);
9634 : 15 : size = TYPE_SIZE_UNIT (TREE_TYPE (type));
9635 : :
9636 : 15 : gfc_add_modify (&block, dest, fold_convert (type, null_pointer_node));
9637 : 15 : gfc_allocate_using_caf_lib (&block, dummy_desc, size,
9638 : : gfc_build_addr_expr (NULL_TREE, dest_tok),
9639 : : NULL_TREE, NULL_TREE, NULL_TREE,
9640 : : GFC_CAF_COARRAY_ALLOC_REGISTER_ONLY);
9641 : 15 : gfc_add_modify (&block, dest, gfc_conv_descriptor_data_get (dummy_desc));
9642 : 15 : null_data = gfc_finish_block (&block);
9643 : :
9644 : 15 : gfc_init_block (&block);
9645 : :
9646 : 15 : gfc_allocate_using_caf_lib (&block, dummy_desc,
9647 : : fold_convert (size_type_node, size),
9648 : : gfc_build_addr_expr (NULL_TREE, dest_tok),
9649 : : NULL_TREE, NULL_TREE, NULL_TREE,
9650 : : GFC_CAF_COARRAY_ALLOC);
9651 : 15 : gfc_add_modify (&block, dest, gfc_conv_descriptor_data_get (dummy_desc));
9652 : :
9653 : 15 : tmp = builtin_decl_explicit (BUILT_IN_MEMCPY);
9654 : 15 : tmp = build_call_expr_loc (input_location, tmp, 3, dest, src,
9655 : : fold_convert (size_type_node, size));
9656 : 15 : gfc_add_expr_to_block (&block, tmp);
9657 : : }
9658 : : else
9659 : : {
9660 : : /* Set the rank or unitialized memory access may be reported. */
9661 : 40 : tmp = gfc_conv_descriptor_rank (dest);
9662 : 40 : gfc_add_modify (&globalblock, tmp, build_int_cst (TREE_TYPE (tmp), rank));
9663 : :
9664 : 40 : if (rank)
9665 : 40 : nelems = gfc_full_array_size (&globalblock, src, rank);
9666 : : else
9667 : 0 : nelems = integer_one_node;
9668 : :
9669 : 40 : tmp = fold_convert (size_type_node,
9670 : : TYPE_SIZE_UNIT (gfc_get_element_type (type)));
9671 : 40 : size = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
9672 : : fold_convert (size_type_node, nelems), tmp);
9673 : :
9674 : 40 : gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
9675 : 40 : gfc_allocate_using_caf_lib (&block, dest, fold_convert (size_type_node,
9676 : : size),
9677 : : gfc_build_addr_expr (NULL_TREE, dest_tok),
9678 : : NULL_TREE, NULL_TREE, NULL_TREE,
9679 : : GFC_CAF_COARRAY_ALLOC_REGISTER_ONLY);
9680 : 40 : null_data = gfc_finish_block (&block);
9681 : :
9682 : 40 : gfc_init_block (&block);
9683 : 40 : gfc_allocate_using_caf_lib (&block, dest,
9684 : : fold_convert (size_type_node, size),
9685 : : gfc_build_addr_expr (NULL_TREE, dest_tok),
9686 : : NULL_TREE, NULL_TREE, NULL_TREE,
9687 : : GFC_CAF_COARRAY_ALLOC);
9688 : :
9689 : 40 : tmp = builtin_decl_explicit (BUILT_IN_MEMCPY);
9690 : 40 : tmp = build_call_expr_loc (input_location, tmp, 3,
9691 : : gfc_conv_descriptor_data_get (dest),
9692 : : gfc_conv_descriptor_data_get (src),
9693 : : fold_convert (size_type_node, size));
9694 : 40 : gfc_add_expr_to_block (&block, tmp);
9695 : : }
9696 : 55 : gfc_add_expr_to_block (&block, add_when_allocated);
9697 : 55 : tmp = gfc_finish_block (&block);
9698 : :
9699 : : /* Null the destination if the source is null; otherwise do
9700 : : the register and copy. */
9701 : 55 : if (!GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (src)))
9702 : : null_cond = src;
9703 : : else
9704 : 40 : null_cond = gfc_conv_descriptor_data_get (src);
9705 : :
9706 : 55 : null_cond = convert (pvoid_type_node, null_cond);
9707 : 55 : null_cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
9708 : : null_cond, null_pointer_node);
9709 : 55 : gfc_add_expr_to_block (&globalblock, build3_v (COND_EXPR, null_cond, tmp,
9710 : : null_data));
9711 : 55 : return gfc_finish_block (&globalblock);
9712 : : }
9713 : :
9714 : :
9715 : : /* Helper function to abstract whether coarray processing is enabled. */
9716 : :
9717 : : static bool
9718 : 73 : caf_enabled (int caf_mode)
9719 : : {
9720 : 73 : return (caf_mode & GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY)
9721 : 73 : == GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY;
9722 : : }
9723 : :
9724 : :
9725 : : /* Helper function to abstract whether coarray processing is enabled
9726 : : and we are in a derived type coarray. */
9727 : :
9728 : : static bool
9729 : 7659 : caf_in_coarray (int caf_mode)
9730 : : {
9731 : 7659 : static const int pat = GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY
9732 : : | GFC_STRUCTURE_CAF_MODE_IN_COARRAY;
9733 : 7659 : return (caf_mode & pat) == pat;
9734 : : }
9735 : :
9736 : :
9737 : : /* Helper function to abstract whether coarray is to deallocate only. */
9738 : :
9739 : : bool
9740 : 302 : gfc_caf_is_dealloc_only (int caf_mode)
9741 : : {
9742 : 302 : return (caf_mode & GFC_STRUCTURE_CAF_MODE_DEALLOC_ONLY)
9743 : 302 : == GFC_STRUCTURE_CAF_MODE_DEALLOC_ONLY;
9744 : : }
9745 : :
9746 : :
9747 : : /* Recursively traverse an object of derived type, generating code to
9748 : : deallocate, nullify or copy allocatable components. This is the work horse
9749 : : function for the functions named in this enum. */
9750 : :
9751 : : enum {DEALLOCATE_ALLOC_COMP = 1, NULLIFY_ALLOC_COMP,
9752 : : COPY_ALLOC_COMP, COPY_ONLY_ALLOC_COMP, REASSIGN_CAF_COMP,
9753 : : ALLOCATE_PDT_COMP, DEALLOCATE_PDT_COMP, CHECK_PDT_DUMMY,
9754 : : BCAST_ALLOC_COMP};
9755 : :
9756 : : static gfc_actual_arglist *pdt_param_list;
9757 : :
9758 : : static tree
9759 : 15151 : structure_alloc_comps (gfc_symbol * der_type, tree decl, tree dest,
9760 : : int rank, int purpose, int caf_mode,
9761 : : gfc_co_subroutines_args *args,
9762 : : bool no_finalization = false)
9763 : : {
9764 : 15151 : gfc_component *c;
9765 : 15151 : gfc_loopinfo loop;
9766 : 15151 : stmtblock_t fnblock;
9767 : 15151 : stmtblock_t loopbody;
9768 : 15151 : stmtblock_t tmpblock;
9769 : 15151 : tree decl_type;
9770 : 15151 : tree tmp;
9771 : 15151 : tree comp;
9772 : 15151 : tree dcmp;
9773 : 15151 : tree nelems;
9774 : 15151 : tree index;
9775 : 15151 : tree var;
9776 : 15151 : tree cdecl;
9777 : 15151 : tree ctype;
9778 : 15151 : tree vref, dref;
9779 : 15151 : tree null_cond = NULL_TREE;
9780 : 15151 : tree add_when_allocated;
9781 : 15151 : tree dealloc_fndecl;
9782 : 15151 : tree caf_token;
9783 : 15151 : gfc_symbol *vtab;
9784 : 15151 : int caf_dereg_mode;
9785 : 15151 : symbol_attribute *attr;
9786 : 15151 : bool deallocate_called;
9787 : 15151 : static hash_set<gfc_symbol *> seen_derived_types;
9788 : :
9789 : 15151 : gfc_init_block (&fnblock);
9790 : :
9791 : 15151 : decl_type = TREE_TYPE (decl);
9792 : :
9793 : 15151 : if ((POINTER_TYPE_P (decl_type))
9794 : : || (TREE_CODE (decl_type) == REFERENCE_TYPE && rank == 0))
9795 : : {
9796 : 1173 : decl = build_fold_indirect_ref_loc (input_location, decl);
9797 : : /* Deref dest in sync with decl, but only when it is not NULL. */
9798 : 1173 : if (dest)
9799 : 90 : dest = build_fold_indirect_ref_loc (input_location, dest);
9800 : :
9801 : : /* Update the decl_type because it got dereferenced. */
9802 : 1173 : decl_type = TREE_TYPE (decl);
9803 : : }
9804 : :
9805 : : /* If this is an array of derived types with allocatable components
9806 : : build a loop and recursively call this function. */
9807 : 15151 : if (TREE_CODE (decl_type) == ARRAY_TYPE
9808 : 15151 : || (GFC_DESCRIPTOR_TYPE_P (decl_type) && rank != 0))
9809 : : {
9810 : 2487 : tmp = gfc_conv_array_data (decl);
9811 : 2487 : var = build_fold_indirect_ref_loc (input_location, tmp);
9812 : :
9813 : : /* Get the number of elements - 1 and set the counter. */
9814 : 2487 : if (GFC_DESCRIPTOR_TYPE_P (decl_type))
9815 : : {
9816 : : /* Use the descriptor for an allocatable array. Since this
9817 : : is a full array reference, we only need the descriptor
9818 : : information from dimension = rank. */
9819 : 1716 : tmp = gfc_full_array_size (&fnblock, decl, rank);
9820 : 1716 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
9821 : : gfc_array_index_type, tmp,
9822 : : gfc_index_one_node);
9823 : :
9824 : 1716 : null_cond = gfc_conv_descriptor_data_get (decl);
9825 : 1716 : null_cond = fold_build2_loc (input_location, NE_EXPR,
9826 : : logical_type_node, null_cond,
9827 : 1716 : build_int_cst (TREE_TYPE (null_cond), 0));
9828 : : }
9829 : : else
9830 : : {
9831 : : /* Otherwise use the TYPE_DOMAIN information. */
9832 : 771 : tmp = array_type_nelts_minus_one (decl_type);
9833 : 771 : tmp = fold_convert (gfc_array_index_type, tmp);
9834 : : }
9835 : :
9836 : : /* Remember that this is, in fact, the no. of elements - 1. */
9837 : 2487 : nelems = gfc_evaluate_now (tmp, &fnblock);
9838 : 2487 : index = gfc_create_var (gfc_array_index_type, "S");
9839 : :
9840 : : /* Build the body of the loop. */
9841 : 2487 : gfc_init_block (&loopbody);
9842 : :
9843 : 2487 : vref = gfc_build_array_ref (var, index, NULL);
9844 : :
9845 : 2487 : if (purpose == COPY_ALLOC_COMP || purpose == COPY_ONLY_ALLOC_COMP)
9846 : : {
9847 : 474 : tmp = build_fold_indirect_ref_loc (input_location,
9848 : : gfc_conv_array_data (dest));
9849 : 474 : dref = gfc_build_array_ref (tmp, index, NULL);
9850 : 474 : tmp = structure_alloc_comps (der_type, vref, dref, rank,
9851 : : COPY_ALLOC_COMP, caf_mode, args,
9852 : : no_finalization);
9853 : : }
9854 : : else
9855 : 2013 : tmp = structure_alloc_comps (der_type, vref, NULL_TREE, rank, purpose,
9856 : : caf_mode, args, no_finalization);
9857 : :
9858 : 2487 : gfc_add_expr_to_block (&loopbody, tmp);
9859 : :
9860 : : /* Build the loop and return. */
9861 : 2487 : gfc_init_loopinfo (&loop);
9862 : 2487 : loop.dimen = 1;
9863 : 2487 : loop.from[0] = gfc_index_zero_node;
9864 : 2487 : loop.loopvar[0] = index;
9865 : 2487 : loop.to[0] = nelems;
9866 : 2487 : gfc_trans_scalarizing_loops (&loop, &loopbody);
9867 : 2487 : gfc_add_block_to_block (&fnblock, &loop.pre);
9868 : :
9869 : 2487 : tmp = gfc_finish_block (&fnblock);
9870 : : /* When copying allocateable components, the above implements the
9871 : : deep copy. Nevertheless is a deep copy only allowed, when the current
9872 : : component is allocated, for which code will be generated in
9873 : : gfc_duplicate_allocatable (), where the deep copy code is just added
9874 : : into the if's body, by adding tmp (the deep copy code) as last
9875 : : argument to gfc_duplicate_allocatable (). */
9876 : 2487 : if (purpose == COPY_ALLOC_COMP && caf_mode == 0
9877 : 2487 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (dest)))
9878 : 399 : tmp = gfc_duplicate_allocatable (dest, decl, decl_type, rank,
9879 : : tmp);
9880 : 2088 : else if (null_cond != NULL_TREE)
9881 : 1317 : tmp = build3_v (COND_EXPR, null_cond, tmp,
9882 : : build_empty_stmt (input_location));
9883 : :
9884 : 2487 : return tmp;
9885 : : }
9886 : :
9887 : 12664 : if (purpose == DEALLOCATE_ALLOC_COMP && der_type->attr.pdt_type)
9888 : : {
9889 : 35 : tmp = structure_alloc_comps (der_type, decl, NULL_TREE, rank,
9890 : : DEALLOCATE_PDT_COMP, 0, args,
9891 : : no_finalization);
9892 : 35 : gfc_add_expr_to_block (&fnblock, tmp);
9893 : : }
9894 : 12629 : else if (purpose == ALLOCATE_PDT_COMP && der_type->attr.alloc_comp)
9895 : : {
9896 : 14 : tmp = structure_alloc_comps (der_type, decl, NULL_TREE, rank,
9897 : : NULLIFY_ALLOC_COMP, 0, args,
9898 : : no_finalization);
9899 : 14 : gfc_add_expr_to_block (&fnblock, tmp);
9900 : : }
9901 : :
9902 : : /* Still having a descriptor array of rank == 0 here, indicates an
9903 : : allocatable coarrays. Dereference it correctly. */
9904 : 12664 : if (GFC_DESCRIPTOR_TYPE_P (decl_type))
9905 : : {
9906 : 4 : decl = build_fold_indirect_ref (gfc_conv_array_data (decl));
9907 : : }
9908 : : /* Otherwise, act on the components or recursively call self to
9909 : : act on a chain of components. */
9910 : 12664 : seen_derived_types.add (der_type);
9911 : 35214 : for (c = der_type->components; c; c = c->next)
9912 : : {
9913 : 22550 : bool cmp_has_alloc_comps = (c->ts.type == BT_DERIVED
9914 : 22550 : || c->ts.type == BT_CLASS)
9915 : 22550 : && c->ts.u.derived->attr.alloc_comp;
9916 : 22550 : bool same_type
9917 : : = (c->ts.type == BT_DERIVED
9918 : 4637 : && seen_derived_types.contains (c->ts.u.derived))
9919 : 26445 : || (c->ts.type == BT_CLASS
9920 : 2028 : && seen_derived_types.contains (CLASS_DATA (c)->ts.u.derived));
9921 : :
9922 : 45100 : bool is_pdt_type = c->ts.type == BT_DERIVED
9923 : 22550 : && c->ts.u.derived->attr.pdt_type;
9924 : :
9925 : 22550 : cdecl = c->backend_decl;
9926 : 22550 : ctype = TREE_TYPE (cdecl);
9927 : :
9928 : 22550 : switch (purpose)
9929 : : {
9930 : :
9931 : 3 : case BCAST_ALLOC_COMP:
9932 : :
9933 : 3 : tree ubound;
9934 : 3 : tree cdesc;
9935 : 3 : stmtblock_t derived_type_block;
9936 : :
9937 : 3 : gfc_init_block (&tmpblock);
9938 : :
9939 : 3 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
9940 : : decl, cdecl, NULL_TREE);
9941 : :
9942 : : /* Shortcut to get the attributes of the component. */
9943 : 3 : if (c->ts.type == BT_CLASS)
9944 : : {
9945 : 0 : attr = &CLASS_DATA (c)->attr;
9946 : 0 : if (attr->class_pointer)
9947 : 0 : continue;
9948 : : }
9949 : : else
9950 : : {
9951 : 3 : attr = &c->attr;
9952 : 3 : if (attr->pointer)
9953 : 0 : continue;
9954 : : }
9955 : :
9956 : : /* Do not broadcast a caf_token. These are local to the image. */
9957 : 3 : if (attr->caf_token)
9958 : 1 : continue;
9959 : :
9960 : 2 : add_when_allocated = NULL_TREE;
9961 : 2 : if (cmp_has_alloc_comps
9962 : 0 : && !c->attr.pointer && !c->attr.proc_pointer)
9963 : : {
9964 : 0 : if (c->ts.type == BT_CLASS)
9965 : : {
9966 : 0 : rank = CLASS_DATA (c)->as ? CLASS_DATA (c)->as->rank : 0;
9967 : 0 : add_when_allocated
9968 : 0 : = structure_alloc_comps (CLASS_DATA (c)->ts.u.derived,
9969 : : comp, NULL_TREE, rank, purpose,
9970 : : caf_mode, args, no_finalization);
9971 : : }
9972 : : else
9973 : : {
9974 : 0 : rank = c->as ? c->as->rank : 0;
9975 : 0 : add_when_allocated = structure_alloc_comps (c->ts.u.derived,
9976 : : comp, NULL_TREE,
9977 : : rank, purpose,
9978 : : caf_mode, args,
9979 : : no_finalization);
9980 : : }
9981 : : }
9982 : :
9983 : 2 : gfc_init_block (&derived_type_block);
9984 : 2 : if (add_when_allocated)
9985 : 0 : gfc_add_expr_to_block (&derived_type_block, add_when_allocated);
9986 : 2 : tmp = gfc_finish_block (&derived_type_block);
9987 : 2 : gfc_add_expr_to_block (&tmpblock, tmp);
9988 : :
9989 : : /* Convert the component into a rank 1 descriptor type. */
9990 : 2 : if (attr->dimension)
9991 : : {
9992 : 0 : tmp = gfc_get_element_type (TREE_TYPE (comp));
9993 : 0 : if (!GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (comp)))
9994 : 0 : ubound = GFC_TYPE_ARRAY_SIZE (TREE_TYPE (comp));
9995 : : else
9996 : 0 : ubound = gfc_full_array_size (&tmpblock, comp,
9997 : 0 : c->ts.type == BT_CLASS
9998 : 0 : ? CLASS_DATA (c)->as->rank
9999 : 0 : : c->as->rank);
10000 : : }
10001 : : else
10002 : : {
10003 : 2 : tmp = TREE_TYPE (comp);
10004 : 2 : ubound = build_int_cst (gfc_array_index_type, 1);
10005 : : }
10006 : :
10007 : : /* Treat strings like arrays. Or the other way around, do not
10008 : : * generate an additional array layer for scalar components. */
10009 : 2 : if (attr->dimension || c->ts.type == BT_CHARACTER)
10010 : : {
10011 : 0 : cdesc = gfc_get_array_type_bounds (tmp, 1, 0, &gfc_index_one_node,
10012 : : &ubound, 1,
10013 : : GFC_ARRAY_ALLOCATABLE, false);
10014 : :
10015 : 0 : cdesc = gfc_create_var (cdesc, "cdesc");
10016 : 0 : DECL_ARTIFICIAL (cdesc) = 1;
10017 : :
10018 : 0 : gfc_add_modify (&tmpblock, gfc_conv_descriptor_dtype (cdesc),
10019 : : gfc_get_dtype_rank_type (1, tmp));
10020 : 0 : gfc_conv_descriptor_lbound_set (&tmpblock, cdesc,
10021 : : gfc_index_zero_node,
10022 : : gfc_index_one_node);
10023 : 0 : gfc_conv_descriptor_stride_set (&tmpblock, cdesc,
10024 : : gfc_index_zero_node,
10025 : : gfc_index_one_node);
10026 : 0 : gfc_conv_descriptor_ubound_set (&tmpblock, cdesc,
10027 : : gfc_index_zero_node, ubound);
10028 : : }
10029 : : else
10030 : : /* Prevent warning. */
10031 : : cdesc = NULL_TREE;
10032 : :
10033 : 2 : if (attr->dimension)
10034 : : {
10035 : 0 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (comp)))
10036 : 0 : comp = gfc_conv_descriptor_data_get (comp);
10037 : : else
10038 : 0 : comp = gfc_build_addr_expr (NULL_TREE, comp);
10039 : : }
10040 : : else
10041 : : {
10042 : 2 : gfc_se se;
10043 : :
10044 : 2 : gfc_init_se (&se, NULL);
10045 : :
10046 : 2 : comp = gfc_conv_scalar_to_descriptor (&se, comp,
10047 : 2 : c->ts.type == BT_CLASS
10048 : 2 : ? CLASS_DATA (c)->attr
10049 : : : c->attr);
10050 : 2 : if (c->ts.type == BT_CHARACTER)
10051 : 0 : comp = gfc_build_addr_expr (NULL_TREE, comp);
10052 : 2 : gfc_add_block_to_block (&tmpblock, &se.pre);
10053 : : }
10054 : :
10055 : 2 : if (attr->dimension || c->ts.type == BT_CHARACTER)
10056 : 0 : gfc_conv_descriptor_data_set (&tmpblock, cdesc, comp);
10057 : : else
10058 : 2 : cdesc = comp;
10059 : :
10060 : 2 : tree fndecl;
10061 : :
10062 : 2 : fndecl = build_call_expr_loc (input_location,
10063 : : gfor_fndecl_co_broadcast, 5,
10064 : : gfc_build_addr_expr (pvoid_type_node,cdesc),
10065 : : args->image_index,
10066 : : null_pointer_node, null_pointer_node,
10067 : : null_pointer_node);
10068 : :
10069 : 2 : gfc_add_expr_to_block (&tmpblock, fndecl);
10070 : 2 : gfc_add_block_to_block (&fnblock, &tmpblock);
10071 : :
10072 : 18931 : break;
10073 : :
10074 : 9284 : case DEALLOCATE_ALLOC_COMP:
10075 : :
10076 : 9284 : gfc_init_block (&tmpblock);
10077 : :
10078 : 9284 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10079 : : decl, cdecl, NULL_TREE);
10080 : :
10081 : : /* Shortcut to get the attributes of the component. */
10082 : 9284 : if (c->ts.type == BT_CLASS)
10083 : : {
10084 : 919 : attr = &CLASS_DATA (c)->attr;
10085 : 919 : if (attr->class_pointer || c->attr.proc_pointer)
10086 : 6 : continue;
10087 : : }
10088 : : else
10089 : : {
10090 : 8365 : attr = &c->attr;
10091 : 8365 : if (attr->pointer)
10092 : 73 : continue;
10093 : : }
10094 : :
10095 : 9205 : if (!no_finalization && ((c->ts.type == BT_DERIVED && !c->attr.pointer)
10096 : 7072 : || (c->ts.type == BT_CLASS && !CLASS_DATA (c)->attr.class_pointer)))
10097 : : /* Call the finalizer, which will free the memory and nullify the
10098 : : pointer of an array. */
10099 : 2716 : deallocate_called = gfc_add_comp_finalizer_call (&tmpblock, comp, c,
10100 : 2716 : caf_enabled (caf_mode))
10101 : 2716 : && attr->dimension;
10102 : : else
10103 : : deallocate_called = false;
10104 : :
10105 : : /* Add the _class ref for classes. */
10106 : 9205 : if (c->ts.type == BT_CLASS && attr->allocatable)
10107 : 913 : comp = gfc_class_data_get (comp);
10108 : :
10109 : 9205 : add_when_allocated = NULL_TREE;
10110 : 9205 : if (cmp_has_alloc_comps
10111 : 1928 : && !c->attr.pointer && !c->attr.proc_pointer
10112 : : && !same_type
10113 : 1910 : && !deallocate_called)
10114 : : {
10115 : : /* Add checked deallocation of the components. This code is
10116 : : obviously added because the finalizer is not trusted to free
10117 : : all memory. */
10118 : 1246 : if (c->ts.type == BT_CLASS)
10119 : : {
10120 : 241 : rank = CLASS_DATA (c)->as ? CLASS_DATA (c)->as->rank : 0;
10121 : 241 : add_when_allocated
10122 : 241 : = structure_alloc_comps (CLASS_DATA (c)->ts.u.derived,
10123 : : comp, NULL_TREE, rank, purpose,
10124 : : caf_mode, args, no_finalization);
10125 : : }
10126 : : else
10127 : : {
10128 : 1005 : rank = c->as ? c->as->rank : 0;
10129 : 1005 : add_when_allocated = structure_alloc_comps (c->ts.u.derived,
10130 : : comp, NULL_TREE,
10131 : : rank, purpose,
10132 : : caf_mode, args,
10133 : : no_finalization);
10134 : : }
10135 : : }
10136 : :
10137 : 6313 : if (attr->allocatable && !same_type
10138 : 15034 : && (!attr->codimension || caf_enabled (caf_mode)))
10139 : : {
10140 : : /* Handle all types of components besides components of the
10141 : : same_type as the current one, because those would create an
10142 : : endless loop. */
10143 : 11646 : caf_dereg_mode = (caf_in_coarray (caf_mode)
10144 : 51 : && (attr->dimension || c->caf_token))
10145 : 5772 : || attr->codimension
10146 : 5895 : ? (gfc_caf_is_dealloc_only (caf_mode)
10147 : : ? GFC_CAF_COARRAY_DEALLOCATE_ONLY
10148 : : : GFC_CAF_COARRAY_DEREGISTER)
10149 : : : GFC_CAF_COARRAY_NOCOARRAY;
10150 : :
10151 : 5823 : caf_token = NULL_TREE;
10152 : : /* Coarray components are handled directly by
10153 : : deallocate_with_status. */
10154 : 5823 : if (!attr->codimension
10155 : 5802 : && caf_dereg_mode != GFC_CAF_COARRAY_NOCOARRAY)
10156 : : {
10157 : 51 : if (c->caf_token)
10158 : 17 : caf_token
10159 : 17 : = fold_build3_loc (input_location, COMPONENT_REF,
10160 : 17 : TREE_TYPE (gfc_comp_caf_token (c)),
10161 : : decl, gfc_comp_caf_token (c),
10162 : : NULL_TREE);
10163 : 34 : else if (attr->dimension && !attr->proc_pointer)
10164 : 34 : caf_token = gfc_conv_descriptor_token (comp);
10165 : : }
10166 : :
10167 : 5823 : tmp = gfc_deallocate_with_status (comp, NULL_TREE, NULL_TREE,
10168 : : NULL_TREE, NULL_TREE, true,
10169 : : NULL, caf_dereg_mode, NULL_TREE,
10170 : : add_when_allocated, caf_token);
10171 : :
10172 : 5823 : gfc_add_expr_to_block (&tmpblock, tmp);
10173 : : }
10174 : 3382 : else if (attr->allocatable && !attr->codimension
10175 : 484 : && !deallocate_called)
10176 : : {
10177 : : /* Case of recursive allocatable derived types. */
10178 : 484 : tree is_allocated;
10179 : 484 : tree ubound;
10180 : 484 : tree cdesc;
10181 : 484 : stmtblock_t dealloc_block;
10182 : :
10183 : 484 : gfc_init_block (&dealloc_block);
10184 : 484 : if (add_when_allocated)
10185 : 0 : gfc_add_expr_to_block (&dealloc_block, add_when_allocated);
10186 : :
10187 : : /* Convert the component into a rank 1 descriptor type. */
10188 : 484 : if (attr->dimension)
10189 : : {
10190 : 52 : tmp = gfc_get_element_type (TREE_TYPE (comp));
10191 : 52 : ubound = gfc_full_array_size (&dealloc_block, comp,
10192 : 52 : c->ts.type == BT_CLASS
10193 : 0 : ? CLASS_DATA (c)->as->rank
10194 : 52 : : c->as->rank);
10195 : : }
10196 : : else
10197 : : {
10198 : 432 : tmp = TREE_TYPE (comp);
10199 : 432 : ubound = build_int_cst (gfc_array_index_type, 1);
10200 : : }
10201 : :
10202 : 484 : cdesc = gfc_get_array_type_bounds (tmp, 1, 0, &gfc_index_one_node,
10203 : : &ubound, 1,
10204 : : GFC_ARRAY_ALLOCATABLE, false);
10205 : :
10206 : 484 : cdesc = gfc_create_var (cdesc, "cdesc");
10207 : 484 : DECL_ARTIFICIAL (cdesc) = 1;
10208 : :
10209 : 484 : gfc_add_modify (&dealloc_block, gfc_conv_descriptor_dtype (cdesc),
10210 : : gfc_get_dtype_rank_type (1, tmp));
10211 : 484 : gfc_conv_descriptor_lbound_set (&dealloc_block, cdesc,
10212 : : gfc_index_zero_node,
10213 : : gfc_index_one_node);
10214 : 484 : gfc_conv_descriptor_stride_set (&dealloc_block, cdesc,
10215 : : gfc_index_zero_node,
10216 : : gfc_index_one_node);
10217 : 484 : gfc_conv_descriptor_ubound_set (&dealloc_block, cdesc,
10218 : : gfc_index_zero_node, ubound);
10219 : :
10220 : 484 : if (attr->dimension)
10221 : 52 : comp = gfc_conv_descriptor_data_get (comp);
10222 : :
10223 : 484 : gfc_conv_descriptor_data_set (&dealloc_block, cdesc, comp);
10224 : :
10225 : : /* Now call the deallocator. */
10226 : 484 : vtab = gfc_find_vtab (&c->ts);
10227 : 484 : if (vtab->backend_decl == NULL)
10228 : 28 : gfc_get_symbol_decl (vtab);
10229 : 484 : tmp = gfc_build_addr_expr (NULL_TREE, vtab->backend_decl);
10230 : 484 : dealloc_fndecl = gfc_vptr_deallocate_get (tmp);
10231 : 484 : dealloc_fndecl = build_fold_indirect_ref_loc (input_location,
10232 : : dealloc_fndecl);
10233 : 484 : tmp = build_int_cst (TREE_TYPE (comp), 0);
10234 : 484 : is_allocated = fold_build2_loc (input_location, NE_EXPR,
10235 : : logical_type_node, tmp,
10236 : : comp);
10237 : 484 : cdesc = gfc_build_addr_expr (NULL_TREE, cdesc);
10238 : :
10239 : 484 : tmp = build_call_expr_loc (input_location,
10240 : : dealloc_fndecl, 1,
10241 : : cdesc);
10242 : 484 : gfc_add_expr_to_block (&dealloc_block, tmp);
10243 : :
10244 : 484 : tmp = gfc_finish_block (&dealloc_block);
10245 : :
10246 : 484 : tmp = fold_build3_loc (input_location, COND_EXPR,
10247 : : void_type_node, is_allocated, tmp,
10248 : : build_empty_stmt (input_location));
10249 : :
10250 : 484 : gfc_add_expr_to_block (&tmpblock, tmp);
10251 : 484 : }
10252 : 2898 : else if (add_when_allocated)
10253 : 513 : gfc_add_expr_to_block (&tmpblock, add_when_allocated);
10254 : :
10255 : 913 : if (c->ts.type == BT_CLASS && attr->allocatable
10256 : 10118 : && (!attr->codimension || !caf_enabled (caf_mode)))
10257 : : {
10258 : : /* Finally, reset the vptr to the declared type vtable and, if
10259 : : necessary reset the _len field.
10260 : :
10261 : : First recover the reference to the component and obtain
10262 : : the vptr. */
10263 : 898 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10264 : : decl, cdecl, NULL_TREE);
10265 : 898 : tmp = gfc_class_vptr_get (comp);
10266 : :
10267 : 898 : if (UNLIMITED_POLY (c))
10268 : : {
10269 : : /* Both vptr and _len field should be nulled. */
10270 : 174 : gfc_add_modify (&tmpblock, tmp,
10271 : 174 : build_int_cst (TREE_TYPE (tmp), 0));
10272 : 174 : tmp = gfc_class_len_get (comp);
10273 : 174 : gfc_add_modify (&tmpblock, tmp,
10274 : 174 : build_int_cst (TREE_TYPE (tmp), 0));
10275 : : }
10276 : : else
10277 : : {
10278 : : /* Build the vtable address and set the vptr with it. */
10279 : 724 : gfc_reset_vptr (&tmpblock, nullptr, tmp, c->ts.u.derived);
10280 : : }
10281 : : }
10282 : :
10283 : : /* Now add the deallocation of this component. */
10284 : 9205 : gfc_add_block_to_block (&fnblock, &tmpblock);
10285 : 9205 : break;
10286 : :
10287 : 3698 : case NULLIFY_ALLOC_COMP:
10288 : : /* Nullify
10289 : : - allocatable components (regular or in class)
10290 : : - components that have allocatable components
10291 : : - pointer components when in a coarray.
10292 : : Skip everything else especially proc_pointers, which may come
10293 : : coupled with the regular pointer attribute. */
10294 : 4886 : if (c->attr.proc_pointer
10295 : 3698 : || !(c->attr.allocatable || (c->ts.type == BT_CLASS
10296 : 411 : && CLASS_DATA (c)->attr.allocatable)
10297 : 1509 : || (cmp_has_alloc_comps
10298 : 226 : && ((c->ts.type == BT_DERIVED && !c->attr.pointer)
10299 : 18 : || (c->ts.type == BT_CLASS
10300 : 12 : && !CLASS_DATA (c)->attr.class_pointer)))
10301 : 1301 : || (caf_in_coarray (caf_mode) && c->attr.pointer)))
10302 : 1188 : continue;
10303 : :
10304 : : /* Process class components first, because they always have the
10305 : : pointer-attribute set which would be caught wrong else. */
10306 : 2510 : if (c->ts.type == BT_CLASS
10307 : 398 : && (CLASS_DATA (c)->attr.allocatable
10308 : 398 : || CLASS_DATA (c)->attr.class_pointer))
10309 : : {
10310 : 398 : tree class_ref;
10311 : :
10312 : : /* Allocatable CLASS components. */
10313 : 398 : class_ref = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10314 : : decl, cdecl, NULL_TREE);
10315 : :
10316 : 398 : comp = gfc_class_data_get (class_ref);
10317 : 398 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (comp)))
10318 : 215 : gfc_conv_descriptor_data_set (&fnblock, comp,
10319 : : null_pointer_node);
10320 : : else
10321 : : {
10322 : 183 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
10323 : : void_type_node, comp,
10324 : 183 : build_int_cst (TREE_TYPE (comp), 0));
10325 : 183 : gfc_add_expr_to_block (&fnblock, tmp);
10326 : : }
10327 : :
10328 : : /* The dynamic type of a disassociated pointer or unallocated
10329 : : allocatable variable is its declared type. An unlimited
10330 : : polymorphic entity has no declared type. */
10331 : 398 : gfc_reset_vptr (&fnblock, nullptr, class_ref, c->ts.u.derived);
10332 : :
10333 : 398 : cmp_has_alloc_comps = false;
10334 : 398 : }
10335 : : /* Coarrays need the component to be nulled before the api-call
10336 : : is made. */
10337 : 2112 : else if (c->attr.pointer || c->attr.allocatable)
10338 : : {
10339 : 1904 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10340 : : decl, cdecl, NULL_TREE);
10341 : 1904 : if (c->attr.dimension || c->attr.codimension)
10342 : 1384 : gfc_conv_descriptor_data_set (&fnblock, comp,
10343 : : null_pointer_node);
10344 : : else
10345 : 520 : gfc_add_modify (&fnblock, comp,
10346 : 520 : build_int_cst (TREE_TYPE (comp), 0));
10347 : 1904 : if (gfc_deferred_strlen (c, &comp))
10348 : : {
10349 : 244 : comp = fold_build3_loc (input_location, COMPONENT_REF,
10350 : 244 : TREE_TYPE (comp),
10351 : : decl, comp, NULL_TREE);
10352 : 488 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
10353 : 244 : TREE_TYPE (comp), comp,
10354 : 244 : build_int_cst (TREE_TYPE (comp), 0));
10355 : 244 : gfc_add_expr_to_block (&fnblock, tmp);
10356 : : }
10357 : : cmp_has_alloc_comps = false;
10358 : : }
10359 : :
10360 : 2510 : if (flag_coarray == GFC_FCOARRAY_LIB && caf_in_coarray (caf_mode))
10361 : : {
10362 : : /* Register a component of a derived type coarray with the
10363 : : coarray library. Do not register ultimate component
10364 : : coarrays here. They are treated like regular coarrays and
10365 : : are either allocated on all images or on none. */
10366 : 125 : tree token;
10367 : :
10368 : 125 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10369 : : decl, cdecl, NULL_TREE);
10370 : 125 : if (c->attr.dimension)
10371 : : {
10372 : : /* Set the dtype, because caf_register needs it. */
10373 : 99 : gfc_add_modify (&fnblock, gfc_conv_descriptor_dtype (comp),
10374 : 99 : gfc_get_dtype (TREE_TYPE (comp)));
10375 : 99 : tmp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10376 : : decl, cdecl, NULL_TREE);
10377 : 99 : token = gfc_conv_descriptor_token (tmp);
10378 : : }
10379 : : else
10380 : : {
10381 : 26 : gfc_se se;
10382 : :
10383 : 26 : gfc_init_se (&se, NULL);
10384 : 52 : token = fold_build3_loc (input_location, COMPONENT_REF,
10385 : : pvoid_type_node, decl,
10386 : 26 : gfc_comp_caf_token (c), NULL_TREE);
10387 : 26 : comp = gfc_conv_scalar_to_descriptor (&se, comp,
10388 : 26 : c->ts.type == BT_CLASS
10389 : 26 : ? CLASS_DATA (c)->attr
10390 : : : c->attr);
10391 : 26 : gfc_add_block_to_block (&fnblock, &se.pre);
10392 : : }
10393 : :
10394 : 125 : gfc_allocate_using_caf_lib (&fnblock, comp, size_zero_node,
10395 : : gfc_build_addr_expr (NULL_TREE,
10396 : : token),
10397 : : NULL_TREE, NULL_TREE, NULL_TREE,
10398 : : GFC_CAF_COARRAY_ALLOC_REGISTER_ONLY);
10399 : : }
10400 : :
10401 : 2510 : if (cmp_has_alloc_comps)
10402 : : {
10403 : 208 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10404 : : decl, cdecl, NULL_TREE);
10405 : 208 : rank = c->as ? c->as->rank : 0;
10406 : 208 : tmp = structure_alloc_comps (c->ts.u.derived, comp, NULL_TREE,
10407 : : rank, purpose, caf_mode, args,
10408 : : no_finalization);
10409 : 208 : gfc_add_expr_to_block (&fnblock, tmp);
10410 : : }
10411 : : break;
10412 : :
10413 : 29 : case REASSIGN_CAF_COMP:
10414 : 29 : if (caf_enabled (caf_mode)
10415 : 29 : && (c->attr.codimension
10416 : 23 : || (c->ts.type == BT_CLASS
10417 : 2 : && (CLASS_DATA (c)->attr.coarray_comp
10418 : 2 : || caf_in_coarray (caf_mode)))
10419 : 21 : || (c->ts.type == BT_DERIVED
10420 : 7 : && (c->ts.u.derived->attr.coarray_comp
10421 : 6 : || caf_in_coarray (caf_mode))))
10422 : 44 : && !same_type)
10423 : : {
10424 : 13 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10425 : : decl, cdecl, NULL_TREE);
10426 : 13 : dcmp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10427 : : dest, cdecl, NULL_TREE);
10428 : :
10429 : 13 : if (c->attr.codimension)
10430 : : {
10431 : 6 : if (c->ts.type == BT_CLASS)
10432 : : {
10433 : 0 : comp = gfc_class_data_get (comp);
10434 : 0 : dcmp = gfc_class_data_get (dcmp);
10435 : : }
10436 : 6 : gfc_conv_descriptor_data_set (&fnblock, dcmp,
10437 : : gfc_conv_descriptor_data_get (comp));
10438 : : }
10439 : : else
10440 : : {
10441 : 7 : tmp = structure_alloc_comps (c->ts.u.derived, comp, dcmp,
10442 : : rank, purpose, caf_mode
10443 : : | GFC_STRUCTURE_CAF_MODE_IN_COARRAY,
10444 : : args, no_finalization);
10445 : 7 : gfc_add_expr_to_block (&fnblock, tmp);
10446 : : }
10447 : : }
10448 : : break;
10449 : :
10450 : 7393 : case COPY_ALLOC_COMP:
10451 : 7393 : if (c->attr.pointer || c->attr.proc_pointer)
10452 : 144 : continue;
10453 : :
10454 : : /* We need source and destination components. */
10455 : 7249 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype, decl,
10456 : : cdecl, NULL_TREE);
10457 : 7249 : dcmp = fold_build3_loc (input_location, COMPONENT_REF, ctype, dest,
10458 : : cdecl, NULL_TREE);
10459 : 7249 : dcmp = fold_convert (TREE_TYPE (comp), dcmp);
10460 : :
10461 : 7249 : if (c->ts.type == BT_CLASS && CLASS_DATA (c)->attr.allocatable)
10462 : : {
10463 : 680 : tree ftn_tree;
10464 : 680 : tree size;
10465 : 680 : tree dst_data;
10466 : 680 : tree src_data;
10467 : 680 : tree null_data;
10468 : :
10469 : 680 : dst_data = gfc_class_data_get (dcmp);
10470 : 680 : src_data = gfc_class_data_get (comp);
10471 : 680 : size = fold_convert (size_type_node,
10472 : : gfc_class_vtab_size_get (comp));
10473 : :
10474 : 680 : if (CLASS_DATA (c)->attr.dimension)
10475 : : {
10476 : 652 : nelems = gfc_conv_descriptor_size (src_data,
10477 : 326 : CLASS_DATA (c)->as->rank);
10478 : 326 : size = fold_build2_loc (input_location, MULT_EXPR,
10479 : : size_type_node, size,
10480 : : fold_convert (size_type_node,
10481 : : nelems));
10482 : : }
10483 : : else
10484 : 354 : nelems = build_int_cst (size_type_node, 1);
10485 : :
10486 : 680 : if (CLASS_DATA (c)->attr.dimension
10487 : 680 : || CLASS_DATA (c)->attr.codimension)
10488 : : {
10489 : 334 : src_data = gfc_conv_descriptor_data_get (src_data);
10490 : 334 : dst_data = gfc_conv_descriptor_data_get (dst_data);
10491 : : }
10492 : :
10493 : 680 : gfc_init_block (&tmpblock);
10494 : :
10495 : 680 : gfc_add_modify (&tmpblock, gfc_class_vptr_get (dcmp),
10496 : : gfc_class_vptr_get (comp));
10497 : :
10498 : : /* Copy the unlimited '_len' field. If it is greater than zero
10499 : : (ie. a character(_len)), multiply it by size and use this
10500 : : for the malloc call. */
10501 : 680 : if (UNLIMITED_POLY (c))
10502 : : {
10503 : 117 : gfc_add_modify (&tmpblock, gfc_class_len_get (dcmp),
10504 : : gfc_class_len_get (comp));
10505 : 117 : size = gfc_resize_class_size_with_len (&tmpblock, comp, size);
10506 : : }
10507 : :
10508 : : /* Coarray component have to have the same allocation status and
10509 : : shape/type-parameter/effective-type on the LHS and RHS of an
10510 : : intrinsic assignment. Hence, we did not deallocated them - and
10511 : : do not allocate them here. */
10512 : 680 : if (!CLASS_DATA (c)->attr.codimension)
10513 : : {
10514 : 665 : ftn_tree = builtin_decl_explicit (BUILT_IN_MALLOC);
10515 : 665 : tmp = build_call_expr_loc (input_location, ftn_tree, 1, size);
10516 : 665 : gfc_add_modify (&tmpblock, dst_data,
10517 : 665 : fold_convert (TREE_TYPE (dst_data), tmp));
10518 : : }
10519 : :
10520 : 1345 : tmp = gfc_copy_class_to_class (comp, dcmp, nelems,
10521 : 680 : UNLIMITED_POLY (c));
10522 : 680 : gfc_add_expr_to_block (&tmpblock, tmp);
10523 : 680 : tmp = gfc_finish_block (&tmpblock);
10524 : :
10525 : 680 : gfc_init_block (&tmpblock);
10526 : 680 : gfc_add_modify (&tmpblock, dst_data,
10527 : 680 : fold_convert (TREE_TYPE (dst_data),
10528 : : null_pointer_node));
10529 : 680 : null_data = gfc_finish_block (&tmpblock);
10530 : :
10531 : 680 : null_cond = fold_build2_loc (input_location, NE_EXPR,
10532 : : logical_type_node, src_data,
10533 : : null_pointer_node);
10534 : :
10535 : 680 : gfc_add_expr_to_block (&fnblock, build3_v (COND_EXPR, null_cond,
10536 : : tmp, null_data));
10537 : 680 : continue;
10538 : 680 : }
10539 : :
10540 : : /* To implement guarded deep copy, i.e., deep copy only allocatable
10541 : : components that are really allocated, the deep copy code has to
10542 : : be generated first and then added to the if-block in
10543 : : gfc_duplicate_allocatable (). */
10544 : 6569 : if (cmp_has_alloc_comps && !c->attr.proc_pointer && !same_type)
10545 : : {
10546 : 1070 : rank = c->as ? c->as->rank : 0;
10547 : 1070 : tmp = fold_convert (TREE_TYPE (dcmp), comp);
10548 : 1070 : gfc_add_modify (&fnblock, dcmp, tmp);
10549 : 1070 : add_when_allocated = structure_alloc_comps (c->ts.u.derived,
10550 : : comp, dcmp,
10551 : : rank, purpose,
10552 : : caf_mode, args,
10553 : : no_finalization);
10554 : : }
10555 : : else
10556 : : add_when_allocated = NULL_TREE;
10557 : :
10558 : 6569 : if (gfc_deferred_strlen (c, &tmp))
10559 : : {
10560 : 328 : tree len, size;
10561 : 328 : len = tmp;
10562 : 328 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
10563 : 328 : TREE_TYPE (len),
10564 : : decl, len, NULL_TREE);
10565 : 328 : len = fold_build3_loc (input_location, COMPONENT_REF,
10566 : 328 : TREE_TYPE (len),
10567 : : dest, len, NULL_TREE);
10568 : 328 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
10569 : 328 : TREE_TYPE (len), len, tmp);
10570 : 328 : gfc_add_expr_to_block (&fnblock, tmp);
10571 : 328 : size = size_of_string_in_bytes (c->ts.kind, len);
10572 : : /* This component cannot have allocatable components,
10573 : : therefore add_when_allocated of duplicate_allocatable ()
10574 : : is always NULL. */
10575 : 328 : rank = c->as ? c->as->rank : 0;
10576 : 328 : tmp = duplicate_allocatable (dcmp, comp, ctype, rank,
10577 : : false, false, size, NULL_TREE);
10578 : 328 : gfc_add_expr_to_block (&fnblock, tmp);
10579 : : }
10580 : 6241 : else if (c->attr.pdt_array)
10581 : : {
10582 : 31 : tmp = duplicate_allocatable (dcmp, comp, ctype,
10583 : 31 : c->as ? c->as->rank : 0,
10584 : : false, false, NULL_TREE, NULL_TREE);
10585 : 31 : gfc_add_expr_to_block (&fnblock, tmp);
10586 : : }
10587 : 6210 : else if (c->attr.allocatable && !c->attr.proc_pointer
10588 : 6210 : && (!(cmp_has_alloc_comps && c->as) || c->attr.codimension
10589 : 312 : || caf_in_coarray (caf_mode)))
10590 : : {
10591 : 3140 : rank = c->as ? c->as->rank : 0;
10592 : 3140 : if (c->attr.codimension)
10593 : 15 : tmp = gfc_copy_allocatable_data (dcmp, comp, ctype, rank);
10594 : 3125 : else if (flag_coarray == GFC_FCOARRAY_LIB
10595 : 3125 : && caf_in_coarray (caf_mode))
10596 : : {
10597 : 55 : tree dst_tok;
10598 : 55 : if (c->as)
10599 : 40 : dst_tok = gfc_conv_descriptor_token (dcmp);
10600 : : else
10601 : : {
10602 : 15 : dst_tok
10603 : 15 : = fold_build3_loc (input_location, COMPONENT_REF,
10604 : : pvoid_type_node, dest,
10605 : 15 : gfc_comp_caf_token (c), NULL_TREE);
10606 : : }
10607 : 55 : tmp
10608 : 55 : = duplicate_allocatable_coarray (dcmp, dst_tok, comp, ctype,
10609 : : rank, add_when_allocated);
10610 : : }
10611 : : else
10612 : 3070 : tmp = gfc_duplicate_allocatable (dcmp, comp, ctype, rank,
10613 : : add_when_allocated);
10614 : 3140 : gfc_add_expr_to_block (&fnblock, tmp);
10615 : : }
10616 : : else
10617 : 3070 : if (cmp_has_alloc_comps || is_pdt_type)
10618 : 1044 : gfc_add_expr_to_block (&fnblock, add_when_allocated);
10619 : :
10620 : : break;
10621 : :
10622 : 900 : case ALLOCATE_PDT_COMP:
10623 : :
10624 : 900 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10625 : : decl, cdecl, NULL_TREE);
10626 : :
10627 : : /* Set the PDT KIND and LEN fields. */
10628 : 900 : if (c->attr.pdt_kind || c->attr.pdt_len)
10629 : : {
10630 : 439 : gfc_se tse;
10631 : 439 : gfc_expr *c_expr = NULL;
10632 : 439 : gfc_actual_arglist *param = pdt_param_list;
10633 : 439 : gfc_init_se (&tse, NULL);
10634 : 1767 : for (; param; param = param->next)
10635 : 889 : if (param->name && !strcmp (c->name, param->name))
10636 : 415 : c_expr = param->expr;
10637 : :
10638 : 439 : if (!c_expr)
10639 : 24 : c_expr = c->initializer;
10640 : :
10641 : 24 : if (c_expr)
10642 : : {
10643 : 439 : gfc_conv_expr_type (&tse, c_expr, TREE_TYPE (comp));
10644 : 439 : gfc_add_modify (&fnblock, comp, tse.expr);
10645 : : }
10646 : : }
10647 : :
10648 : 900 : if (c->attr.pdt_string)
10649 : : {
10650 : 72 : gfc_se tse;
10651 : 72 : gfc_init_se (&tse, NULL);
10652 : 72 : tree strlen = NULL_TREE;
10653 : 72 : gfc_expr *e = gfc_copy_expr (c->ts.u.cl->length);
10654 : : /* Convert the parameterized string length to its value. The
10655 : : string length is stored in a hidden field in the same way as
10656 : : deferred string lengths. */
10657 : 72 : gfc_insert_parameter_exprs (e, pdt_param_list);
10658 : 72 : if (gfc_deferred_strlen (c, &strlen) && strlen != NULL_TREE)
10659 : : {
10660 : 72 : gfc_conv_expr_type (&tse, e,
10661 : 72 : TREE_TYPE (strlen));
10662 : 72 : strlen = fold_build3_loc (input_location, COMPONENT_REF,
10663 : 72 : TREE_TYPE (strlen),
10664 : : decl, strlen, NULL_TREE);
10665 : 72 : gfc_add_modify (&fnblock, strlen, tse.expr);
10666 : 72 : c->ts.u.cl->backend_decl = strlen;
10667 : : }
10668 : 72 : gfc_free_expr (e);
10669 : :
10670 : : /* Scalar parameterized strings can be allocated now. */
10671 : 72 : if (!c->as)
10672 : : {
10673 : 72 : tmp = fold_convert (gfc_array_index_type, strlen);
10674 : 72 : tmp = size_of_string_in_bytes (c->ts.kind, tmp);
10675 : 72 : tmp = gfc_evaluate_now (tmp, &fnblock);
10676 : 72 : tmp = gfc_call_malloc (&fnblock, TREE_TYPE (comp), tmp);
10677 : 72 : gfc_add_modify (&fnblock, comp, tmp);
10678 : : }
10679 : : }
10680 : :
10681 : : /* Allocate parameterized arrays of parameterized derived types. */
10682 : 900 : if (!(c->attr.pdt_array && c->as && c->as->type == AS_EXPLICIT)
10683 : 735 : && !((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
10684 : 62 : && (c->ts.u.derived && c->ts.u.derived->attr.pdt_type)))
10685 : 673 : continue;
10686 : :
10687 : 227 : if (c->ts.type == BT_CLASS)
10688 : 0 : comp = gfc_class_data_get (comp);
10689 : :
10690 : 227 : if (c->attr.pdt_array)
10691 : : {
10692 : 165 : gfc_se tse;
10693 : 165 : int i;
10694 : 165 : tree size = gfc_index_one_node;
10695 : 165 : tree offset = gfc_index_zero_node;
10696 : 165 : tree lower, upper;
10697 : 165 : gfc_expr *e;
10698 : :
10699 : : /* This chunk takes the expressions for 'lower' and 'upper'
10700 : : in the arrayspec and substitutes in the expressions for
10701 : : the parameters from 'pdt_param_list'. The descriptor
10702 : : fields can then be filled from the values so obtained. */
10703 : 165 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (comp)));
10704 : 408 : for (i = 0; i < c->as->rank; i++)
10705 : : {
10706 : 243 : gfc_init_se (&tse, NULL);
10707 : 243 : e = gfc_copy_expr (c->as->lower[i]);
10708 : 243 : gfc_insert_parameter_exprs (e, pdt_param_list);
10709 : 243 : gfc_conv_expr_type (&tse, e, gfc_array_index_type);
10710 : 243 : gfc_free_expr (e);
10711 : 243 : lower = tse.expr;
10712 : 243 : gfc_conv_descriptor_lbound_set (&fnblock, comp,
10713 : : gfc_rank_cst[i],
10714 : : lower);
10715 : 243 : e = gfc_copy_expr (c->as->upper[i]);
10716 : 243 : gfc_insert_parameter_exprs (e, pdt_param_list);
10717 : 243 : gfc_conv_expr_type (&tse, e, gfc_array_index_type);
10718 : 243 : gfc_free_expr (e);
10719 : 243 : upper = tse.expr;
10720 : 243 : gfc_conv_descriptor_ubound_set (&fnblock, comp,
10721 : : gfc_rank_cst[i],
10722 : : upper);
10723 : 243 : gfc_conv_descriptor_stride_set (&fnblock, comp,
10724 : : gfc_rank_cst[i],
10725 : : size);
10726 : 243 : size = gfc_evaluate_now (size, &fnblock);
10727 : 243 : offset = fold_build2_loc (input_location,
10728 : : MINUS_EXPR,
10729 : : gfc_array_index_type,
10730 : : offset, size);
10731 : 243 : offset = gfc_evaluate_now (offset, &fnblock);
10732 : 243 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
10733 : : gfc_array_index_type,
10734 : : upper, lower);
10735 : 243 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
10736 : : gfc_array_index_type,
10737 : : tmp, gfc_index_one_node);
10738 : 243 : size = fold_build2_loc (input_location, MULT_EXPR,
10739 : : gfc_array_index_type, size, tmp);
10740 : : }
10741 : 165 : gfc_conv_descriptor_offset_set (&fnblock, comp, offset);
10742 : 165 : if (c->ts.type == BT_CLASS)
10743 : : {
10744 : 0 : tmp = gfc_get_vptr_from_expr (comp);
10745 : 0 : if (POINTER_TYPE_P (TREE_TYPE (tmp)))
10746 : 0 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
10747 : 0 : tmp = gfc_vptr_size_get (tmp);
10748 : : }
10749 : : else
10750 : 165 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (ctype));
10751 : 165 : tmp = fold_convert (gfc_array_index_type, tmp);
10752 : 165 : size = fold_build2_loc (input_location, MULT_EXPR,
10753 : : gfc_array_index_type, size, tmp);
10754 : 165 : size = gfc_evaluate_now (size, &fnblock);
10755 : 165 : tmp = gfc_call_malloc (&fnblock, NULL, size);
10756 : 165 : gfc_conv_descriptor_data_set (&fnblock, comp, tmp);
10757 : 165 : tmp = gfc_conv_descriptor_dtype (comp);
10758 : 165 : gfc_add_modify (&fnblock, tmp, gfc_get_dtype (ctype));
10759 : :
10760 : 165 : if (c->initializer && c->initializer->rank)
10761 : : {
10762 : 48 : gfc_init_se (&tse, NULL);
10763 : 48 : e = gfc_copy_expr (c->initializer);
10764 : 48 : gfc_insert_parameter_exprs (e, pdt_param_list);
10765 : 48 : gfc_conv_expr_descriptor (&tse, e);
10766 : 48 : gfc_add_block_to_block (&fnblock, &tse.pre);
10767 : 48 : gfc_free_expr (e);
10768 : 48 : tmp = builtin_decl_explicit (BUILT_IN_MEMCPY);
10769 : 48 : tmp = build_call_expr_loc (input_location, tmp, 3,
10770 : : gfc_conv_descriptor_data_get (comp),
10771 : : gfc_conv_descriptor_data_get (tse.expr),
10772 : : fold_convert (size_type_node, size));
10773 : 48 : gfc_add_expr_to_block (&fnblock, tmp);
10774 : 48 : gfc_add_block_to_block (&fnblock, &tse.post);
10775 : : }
10776 : : }
10777 : :
10778 : : /* Recurse in to PDT components. */
10779 : 227 : if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
10780 : 74 : && c->ts.u.derived && c->ts.u.derived->attr.pdt_type
10781 : 74 : && !(c->attr.pointer || c->attr.allocatable))
10782 : : {
10783 : 48 : bool is_deferred = false;
10784 : 48 : gfc_actual_arglist *tail = c->param_list;
10785 : :
10786 : 126 : for (; tail; tail = tail->next)
10787 : 78 : if (!tail->expr)
10788 : 24 : is_deferred = true;
10789 : :
10790 : 48 : tail = is_deferred ? pdt_param_list : c->param_list;
10791 : 48 : tmp = gfc_allocate_pdt_comp (c->ts.u.derived, comp,
10792 : 48 : c->as ? c->as->rank : 0,
10793 : : tail);
10794 : 48 : gfc_add_expr_to_block (&fnblock, tmp);
10795 : : }
10796 : :
10797 : : break;
10798 : :
10799 : 979 : case DEALLOCATE_PDT_COMP:
10800 : : /* Deallocate array or parameterized string length components
10801 : : of parameterized derived types. */
10802 : 979 : if (!(c->attr.pdt_array && c->as && c->as->type == AS_EXPLICIT)
10803 : 797 : && !c->attr.pdt_string
10804 : 731 : && !((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
10805 : 91 : && (c->ts.u.derived && c->ts.u.derived->attr.pdt_type)))
10806 : 640 : continue;
10807 : :
10808 : 339 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10809 : : decl, cdecl, NULL_TREE);
10810 : 339 : if (c->ts.type == BT_CLASS)
10811 : 0 : comp = gfc_class_data_get (comp);
10812 : :
10813 : : /* Recurse in to PDT components. */
10814 : 339 : if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
10815 : 97 : && c->ts.u.derived && c->ts.u.derived->attr.pdt_type
10816 : 97 : && (!c->attr.pointer && !c->attr.allocatable))
10817 : : {
10818 : 42 : tmp = gfc_deallocate_pdt_comp (c->ts.u.derived, comp,
10819 : 42 : c->as ? c->as->rank : 0);
10820 : 42 : gfc_add_expr_to_block (&fnblock, tmp);
10821 : : }
10822 : :
10823 : 339 : if (c->attr.pdt_array || c->attr.pdt_string)
10824 : : {
10825 : 248 : tmp = comp;
10826 : 248 : if (c->attr.pdt_array)
10827 : 182 : tmp = gfc_conv_descriptor_data_get (comp);
10828 : 248 : null_cond = fold_build2_loc (input_location, NE_EXPR,
10829 : : logical_type_node, tmp,
10830 : 248 : build_int_cst (TREE_TYPE (tmp), 0));
10831 : 248 : if (flag_openmp_allocators)
10832 : : {
10833 : 0 : tree cd, t;
10834 : 0 : if (c->attr.pdt_array)
10835 : 0 : cd = fold_build2_loc (input_location, EQ_EXPR,
10836 : : boolean_type_node,
10837 : : gfc_conv_descriptor_version (comp),
10838 : 0 : build_int_cst (integer_type_node, 1));
10839 : : else
10840 : 0 : cd = gfc_omp_call_is_alloc (tmp);
10841 : 0 : t = builtin_decl_explicit (BUILT_IN_GOMP_FREE);
10842 : 0 : t = build_call_expr_loc (input_location, t, 1, tmp);
10843 : :
10844 : 0 : stmtblock_t tblock;
10845 : 0 : gfc_init_block (&tblock);
10846 : 0 : gfc_add_expr_to_block (&tblock, t);
10847 : 0 : if (c->attr.pdt_array)
10848 : 0 : gfc_add_modify (&tblock, gfc_conv_descriptor_version (comp),
10849 : : integer_zero_node);
10850 : 0 : tmp = build3_loc (input_location, COND_EXPR, void_type_node,
10851 : : cd, gfc_finish_block (&tblock),
10852 : : gfc_call_free (tmp));
10853 : : }
10854 : : else
10855 : 248 : tmp = gfc_call_free (tmp);
10856 : 248 : tmp = build3_v (COND_EXPR, null_cond, tmp,
10857 : : build_empty_stmt (input_location));
10858 : 248 : gfc_add_expr_to_block (&fnblock, tmp);
10859 : :
10860 : 248 : if (c->attr.pdt_array)
10861 : 182 : gfc_conv_descriptor_data_set (&fnblock, comp, null_pointer_node);
10862 : : else
10863 : : {
10864 : 66 : tmp = fold_convert (TREE_TYPE (comp), null_pointer_node);
10865 : 66 : gfc_add_modify (&fnblock, comp, tmp);
10866 : : }
10867 : : }
10868 : :
10869 : : break;
10870 : :
10871 : 264 : case CHECK_PDT_DUMMY:
10872 : :
10873 : 264 : comp = fold_build3_loc (input_location, COMPONENT_REF, ctype,
10874 : : decl, cdecl, NULL_TREE);
10875 : 264 : if (c->ts.type == BT_CLASS)
10876 : 0 : comp = gfc_class_data_get (comp);
10877 : :
10878 : : /* Recurse in to PDT components. */
10879 : 264 : if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
10880 : 0 : && c->ts.u.derived && c->ts.u.derived->attr.pdt_type)
10881 : : {
10882 : 0 : tmp = gfc_check_pdt_dummy (c->ts.u.derived, comp,
10883 : 0 : c->as ? c->as->rank : 0,
10884 : : pdt_param_list);
10885 : 0 : gfc_add_expr_to_block (&fnblock, tmp);
10886 : : }
10887 : :
10888 : 264 : if (!c->attr.pdt_len)
10889 : 216 : continue;
10890 : : else
10891 : : {
10892 : 48 : gfc_se tse;
10893 : 48 : gfc_expr *c_expr = NULL;
10894 : 48 : gfc_actual_arglist *param = pdt_param_list;
10895 : :
10896 : 48 : gfc_init_se (&tse, NULL);
10897 : 186 : for (; param; param = param->next)
10898 : 90 : if (!strcmp (c->name, param->name)
10899 : 48 : && param->spec_type == SPEC_EXPLICIT)
10900 : 30 : c_expr = param->expr;
10901 : :
10902 : 48 : if (c_expr)
10903 : : {
10904 : 30 : tree error, cond, cname;
10905 : 30 : gfc_conv_expr_type (&tse, c_expr, TREE_TYPE (comp));
10906 : 30 : cond = fold_build2_loc (input_location, NE_EXPR,
10907 : : logical_type_node,
10908 : : comp, tse.expr);
10909 : 30 : cname = gfc_build_cstring_const (c->name);
10910 : 30 : cname = gfc_build_addr_expr (pchar_type_node, cname);
10911 : 30 : error = gfc_trans_runtime_error (true, NULL,
10912 : : "The value of the PDT LEN "
10913 : : "parameter '%s' does not "
10914 : : "agree with that in the "
10915 : : "dummy declaration",
10916 : : cname);
10917 : 30 : tmp = fold_build3_loc (input_location, COND_EXPR,
10918 : : void_type_node, cond, error,
10919 : : build_empty_stmt (input_location));
10920 : 30 : gfc_add_expr_to_block (&fnblock, tmp);
10921 : : }
10922 : : }
10923 : 48 : break;
10924 : :
10925 : 0 : default:
10926 : 0 : gcc_unreachable ();
10927 : 3621 : break;
10928 : : }
10929 : : }
10930 : 12664 : seen_derived_types.remove (der_type);
10931 : :
10932 : 12664 : return gfc_finish_block (&fnblock);
10933 : : }
10934 : :
10935 : : /* Recursively traverse an object of derived type, generating code to
10936 : : nullify allocatable components. */
10937 : :
10938 : : tree
10939 : 2145 : gfc_nullify_alloc_comp (gfc_symbol * der_type, tree decl, int rank,
10940 : : int caf_mode)
10941 : : {
10942 : 2145 : return structure_alloc_comps (der_type, decl, NULL_TREE, rank,
10943 : : NULLIFY_ALLOC_COMP,
10944 : : GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY | caf_mode,
10945 : 2145 : NULL);
10946 : : }
10947 : :
10948 : :
10949 : : /* Recursively traverse an object of derived type, generating code to
10950 : : deallocate allocatable components. */
10951 : :
10952 : : tree
10953 : 2353 : gfc_deallocate_alloc_comp (gfc_symbol * der_type, tree decl, int rank,
10954 : : int caf_mode)
10955 : : {
10956 : 2353 : return structure_alloc_comps (der_type, decl, NULL_TREE, rank,
10957 : : DEALLOCATE_ALLOC_COMP,
10958 : : GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY | caf_mode,
10959 : 2353 : NULL);
10960 : : }
10961 : :
10962 : : tree
10963 : 1 : gfc_bcast_alloc_comp (gfc_symbol *derived, gfc_expr *expr, int rank,
10964 : : tree image_index, tree stat, tree errmsg,
10965 : : tree errmsg_len)
10966 : : {
10967 : 1 : tree tmp, array;
10968 : 1 : gfc_se argse;
10969 : 1 : stmtblock_t block, post_block;
10970 : 1 : gfc_co_subroutines_args args;
10971 : :
10972 : 1 : args.image_index = image_index;
10973 : 1 : args.stat = stat;
10974 : 1 : args.errmsg = errmsg;
10975 : 1 : args.errmsg_len = errmsg_len;
10976 : :
10977 : 1 : if (rank == 0)
10978 : : {
10979 : 1 : gfc_start_block (&block);
10980 : 1 : gfc_init_block (&post_block);
10981 : 1 : gfc_init_se (&argse, NULL);
10982 : 1 : gfc_conv_expr (&argse, expr);
10983 : 1 : gfc_add_block_to_block (&block, &argse.pre);
10984 : 1 : gfc_add_block_to_block (&post_block, &argse.post);
10985 : 1 : array = argse.expr;
10986 : : }
10987 : : else
10988 : : {
10989 : 0 : gfc_init_se (&argse, NULL);
10990 : 0 : argse.want_pointer = 1;
10991 : 0 : gfc_conv_expr_descriptor (&argse, expr);
10992 : 0 : array = argse.expr;
10993 : : }
10994 : :
10995 : 1 : tmp = structure_alloc_comps (derived, array, NULL_TREE, rank,
10996 : : BCAST_ALLOC_COMP,
10997 : : GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY,
10998 : : &args);
10999 : 1 : return tmp;
11000 : : }
11001 : :
11002 : : /* Recursively traverse an object of derived type, generating code to
11003 : : deallocate allocatable components. But do not deallocate coarrays.
11004 : : To be used for intrinsic assignment, which may not change the allocation
11005 : : status of coarrays. */
11006 : :
11007 : : tree
11008 : 1679 : gfc_deallocate_alloc_comp_no_caf (gfc_symbol * der_type, tree decl, int rank,
11009 : : bool no_finalization)
11010 : : {
11011 : 1679 : return structure_alloc_comps (der_type, decl, NULL_TREE, rank,
11012 : : DEALLOCATE_ALLOC_COMP, 0, NULL,
11013 : 1679 : no_finalization);
11014 : : }
11015 : :
11016 : :
11017 : : tree
11018 : 4 : gfc_reassign_alloc_comp_caf (gfc_symbol *der_type, tree decl, tree dest)
11019 : : {
11020 : 4 : return structure_alloc_comps (der_type, decl, dest, 0, REASSIGN_CAF_COMP,
11021 : : GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY,
11022 : 4 : NULL);
11023 : : }
11024 : :
11025 : :
11026 : : /* Recursively traverse an object of derived type, generating code to
11027 : : copy it and its allocatable components. */
11028 : :
11029 : : tree
11030 : 3270 : gfc_copy_alloc_comp (gfc_symbol * der_type, tree decl, tree dest, int rank,
11031 : : int caf_mode)
11032 : : {
11033 : 3270 : return structure_alloc_comps (der_type, decl, dest, rank, COPY_ALLOC_COMP,
11034 : 3270 : caf_mode, NULL);
11035 : : }
11036 : :
11037 : :
11038 : : /* Recursively traverse an object of derived type, generating code to
11039 : : copy it and its allocatable components, while suppressing any
11040 : : finalization that might occur. This is used in the finalization of
11041 : : function results. */
11042 : :
11043 : : tree
11044 : 37 : gfc_copy_alloc_comp_no_fini (gfc_symbol * der_type, tree decl, tree dest,
11045 : : int rank, int caf_mode)
11046 : : {
11047 : 37 : return structure_alloc_comps (der_type, decl, dest, rank, COPY_ALLOC_COMP,
11048 : 37 : caf_mode, NULL, true);
11049 : : }
11050 : :
11051 : :
11052 : : /* Recursively traverse an object of derived type, generating code to
11053 : : copy only its allocatable components. */
11054 : :
11055 : : tree
11056 : 0 : gfc_copy_only_alloc_comp (gfc_symbol * der_type, tree decl, tree dest, int rank)
11057 : : {
11058 : 0 : return structure_alloc_comps (der_type, decl, dest, rank,
11059 : 0 : COPY_ONLY_ALLOC_COMP, 0, NULL);
11060 : : }
11061 : :
11062 : :
11063 : : /* Recursively traverse an object of parameterized derived type, generating
11064 : : code to allocate parameterized components. */
11065 : :
11066 : : tree
11067 : 280 : gfc_allocate_pdt_comp (gfc_symbol * der_type, tree decl, int rank,
11068 : : gfc_actual_arglist *param_list)
11069 : : {
11070 : 280 : tree res;
11071 : 280 : gfc_actual_arglist *old_param_list = pdt_param_list;
11072 : 280 : pdt_param_list = param_list;
11073 : 280 : res = structure_alloc_comps (der_type, decl, NULL_TREE, rank,
11074 : : ALLOCATE_PDT_COMP, 0, NULL);
11075 : 280 : pdt_param_list = old_param_list;
11076 : 280 : return res;
11077 : : }
11078 : :
11079 : : /* Recursively traverse an object of parameterized derived type, generating
11080 : : code to deallocate parameterized components. */
11081 : :
11082 : : tree
11083 : 267 : gfc_deallocate_pdt_comp (gfc_symbol * der_type, tree decl, int rank)
11084 : : {
11085 : 267 : return structure_alloc_comps (der_type, decl, NULL_TREE, rank,
11086 : 267 : DEALLOCATE_PDT_COMP, 0, NULL);
11087 : : }
11088 : :
11089 : :
11090 : : /* Recursively traverse a dummy of parameterized derived type to check the
11091 : : values of LEN parameters. */
11092 : :
11093 : : tree
11094 : 48 : gfc_check_pdt_dummy (gfc_symbol * der_type, tree decl, int rank,
11095 : : gfc_actual_arglist *param_list)
11096 : : {
11097 : 48 : tree res;
11098 : 48 : gfc_actual_arglist *old_param_list = pdt_param_list;
11099 : 48 : pdt_param_list = param_list;
11100 : 48 : res = structure_alloc_comps (der_type, decl, NULL_TREE, rank,
11101 : : CHECK_PDT_DUMMY, 0, NULL);
11102 : 48 : pdt_param_list = old_param_list;
11103 : 48 : return res;
11104 : : }
11105 : :
11106 : :
11107 : : /* Returns the value of LBOUND for an expression. This could be broken out
11108 : : from gfc_conv_intrinsic_bound but this seemed to be simpler. This is
11109 : : called by gfc_alloc_allocatable_for_assignment. */
11110 : : static tree
11111 : 906 : get_std_lbound (gfc_expr *expr, tree desc, int dim, bool assumed_size)
11112 : : {
11113 : 906 : tree lbound;
11114 : 906 : tree ubound;
11115 : 906 : tree stride;
11116 : 906 : tree cond, cond1, cond3, cond4;
11117 : 906 : tree tmp;
11118 : 906 : gfc_ref *ref;
11119 : :
11120 : 906 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
11121 : : {
11122 : 441 : tmp = gfc_rank_cst[dim];
11123 : 441 : lbound = gfc_conv_descriptor_lbound_get (desc, tmp);
11124 : 441 : ubound = gfc_conv_descriptor_ubound_get (desc, tmp);
11125 : 441 : stride = gfc_conv_descriptor_stride_get (desc, tmp);
11126 : 441 : cond1 = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
11127 : : ubound, lbound);
11128 : 441 : cond3 = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
11129 : : stride, gfc_index_zero_node);
11130 : 441 : cond3 = fold_build2_loc (input_location, TRUTH_AND_EXPR,
11131 : : logical_type_node, cond3, cond1);
11132 : 441 : cond4 = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
11133 : : stride, gfc_index_zero_node);
11134 : 441 : if (assumed_size)
11135 : 0 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
11136 : 0 : tmp, build_int_cst (gfc_array_index_type,
11137 : 0 : expr->rank - 1));
11138 : : else
11139 : 441 : cond = logical_false_node;
11140 : :
11141 : 441 : cond1 = fold_build2_loc (input_location, TRUTH_OR_EXPR,
11142 : : logical_type_node, cond3, cond4);
11143 : 441 : cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
11144 : : logical_type_node, cond, cond1);
11145 : :
11146 : 441 : return fold_build3_loc (input_location, COND_EXPR,
11147 : : gfc_array_index_type, cond,
11148 : 441 : lbound, gfc_index_one_node);
11149 : : }
11150 : :
11151 : 465 : if (expr->expr_type == EXPR_FUNCTION)
11152 : : {
11153 : : /* A conversion function, so use the argument. */
11154 : 7 : gcc_assert (expr->value.function.isym
11155 : : && expr->value.function.isym->conversion);
11156 : 7 : expr = expr->value.function.actual->expr;
11157 : : }
11158 : :
11159 : 465 : if (expr->expr_type == EXPR_VARIABLE)
11160 : : {
11161 : 465 : tmp = TREE_TYPE (expr->symtree->n.sym->backend_decl);
11162 : 1242 : for (ref = expr->ref; ref; ref = ref->next)
11163 : : {
11164 : 777 : if (ref->type == REF_COMPONENT
11165 : 263 : && ref->u.c.component->as
11166 : 214 : && ref->next
11167 : 214 : && ref->next->u.ar.type == AR_FULL)
11168 : 172 : tmp = TREE_TYPE (ref->u.c.component->backend_decl);
11169 : : }
11170 : 465 : return GFC_TYPE_ARRAY_LBOUND(tmp, dim);
11171 : : }
11172 : :
11173 : 0 : return gfc_index_one_node;
11174 : : }
11175 : :
11176 : :
11177 : : /* Returns true if an expression represents an lhs that can be reallocated
11178 : : on assignment. */
11179 : :
11180 : : bool
11181 : 438773 : gfc_is_reallocatable_lhs (gfc_expr *expr)
11182 : : {
11183 : 438773 : gfc_ref * ref;
11184 : 438773 : gfc_symbol *sym;
11185 : :
11186 : 438773 : if (!expr->ref)
11187 : : return false;
11188 : :
11189 : 191398 : sym = expr->symtree->n.sym;
11190 : :
11191 : 191398 : if (sym->attr.associate_var && !expr->ref)
11192 : : return false;
11193 : :
11194 : : /* An allocatable class variable with no reference. */
11195 : 191398 : if (sym->ts.type == BT_CLASS
11196 : 7547 : && (!sym->attr.associate_var || sym->attr.select_rank_temporary)
11197 : 7379 : && CLASS_DATA (sym)->attr.allocatable
11198 : : && expr->ref
11199 : 4765 : && ((expr->ref->type == REF_ARRAY && expr->ref->u.ar.type == AR_FULL
11200 : 0 : && expr->ref->next == NULL)
11201 : 4765 : || (expr->ref->type == REF_COMPONENT
11202 : 4765 : && strcmp (expr->ref->u.c.component->name, "_data") == 0
11203 : 4011 : && (expr->ref->next == NULL
11204 : 3244 : || (expr->ref->next->type == REF_ARRAY
11205 : 3244 : && expr->ref->next->u.ar.type == AR_FULL
11206 : 2670 : && expr->ref->next->next == NULL)))))
11207 : : return true;
11208 : :
11209 : : /* An allocatable variable. */
11210 : 188156 : if (sym->attr.allocatable
11211 : 41481 : && (!sym->attr.associate_var || sym->attr.select_rank_temporary)
11212 : : && expr->ref
11213 : 41481 : && expr->ref->type == REF_ARRAY
11214 : 40304 : && expr->ref->u.ar.type == AR_FULL)
11215 : : return true;
11216 : :
11217 : : /* All that can be left are allocatable components. */
11218 : 163219 : if ((sym->ts.type != BT_DERIVED
11219 : 133620 : && sym->ts.type != BT_CLASS)
11220 : 33904 : || !sym->ts.u.derived->attr.alloc_comp)
11221 : : return false;
11222 : :
11223 : : /* Find a component ref followed by an array reference. */
11224 : 19404 : for (ref = expr->ref; ref; ref = ref->next)
11225 : 14800 : if (ref->next
11226 : 10196 : && ref->type == REF_COMPONENT
11227 : 7540 : && ref->next->type == REF_ARRAY
11228 : 5624 : && !ref->next->next)
11229 : : break;
11230 : :
11231 : 9094 : if (!ref)
11232 : : return false;
11233 : :
11234 : : /* Return true if valid reallocatable lhs. */
11235 : 4490 : if (ref->u.c.component->attr.allocatable
11236 : 4377 : && ref->next->u.ar.type == AR_FULL)
11237 : 3051 : return true;
11238 : :
11239 : : return false;
11240 : : }
11241 : :
11242 : :
11243 : : static tree
11244 : 56 : concat_str_length (gfc_expr* expr)
11245 : : {
11246 : 56 : tree type;
11247 : 56 : tree len1;
11248 : 56 : tree len2;
11249 : 56 : gfc_se se;
11250 : :
11251 : 56 : type = gfc_typenode_for_spec (&expr->value.op.op1->ts);
11252 : 56 : len1 = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
11253 : 56 : if (len1 == NULL_TREE)
11254 : : {
11255 : 56 : if (expr->value.op.op1->expr_type == EXPR_OP)
11256 : 31 : len1 = concat_str_length (expr->value.op.op1);
11257 : 25 : else if (expr->value.op.op1->expr_type == EXPR_CONSTANT)
11258 : 25 : len1 = build_int_cst (gfc_charlen_type_node,
11259 : 25 : expr->value.op.op1->value.character.length);
11260 : 0 : else if (expr->value.op.op1->ts.u.cl->length)
11261 : : {
11262 : 0 : gfc_init_se (&se, NULL);
11263 : 0 : gfc_conv_expr (&se, expr->value.op.op1->ts.u.cl->length);
11264 : 0 : len1 = se.expr;
11265 : : }
11266 : : else
11267 : : {
11268 : : /* Last resort! */
11269 : 0 : gfc_init_se (&se, NULL);
11270 : 0 : se.want_pointer = 1;
11271 : 0 : se.descriptor_only = 1;
11272 : 0 : gfc_conv_expr (&se, expr->value.op.op1);
11273 : 0 : len1 = se.string_length;
11274 : : }
11275 : : }
11276 : :
11277 : 56 : type = gfc_typenode_for_spec (&expr->value.op.op2->ts);
11278 : 56 : len2 = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
11279 : 56 : if (len2 == NULL_TREE)
11280 : : {
11281 : 31 : if (expr->value.op.op2->expr_type == EXPR_OP)
11282 : 0 : len2 = concat_str_length (expr->value.op.op2);
11283 : 31 : else if (expr->value.op.op2->expr_type == EXPR_CONSTANT)
11284 : 25 : len2 = build_int_cst (gfc_charlen_type_node,
11285 : 25 : expr->value.op.op2->value.character.length);
11286 : 6 : else if (expr->value.op.op2->ts.u.cl->length)
11287 : : {
11288 : 6 : gfc_init_se (&se, NULL);
11289 : 6 : gfc_conv_expr (&se, expr->value.op.op2->ts.u.cl->length);
11290 : 6 : len2 = se.expr;
11291 : : }
11292 : : else
11293 : : {
11294 : : /* Last resort! */
11295 : 0 : gfc_init_se (&se, NULL);
11296 : 0 : se.want_pointer = 1;
11297 : 0 : se.descriptor_only = 1;
11298 : 0 : gfc_conv_expr (&se, expr->value.op.op2);
11299 : 0 : len2 = se.string_length;
11300 : : }
11301 : : }
11302 : :
11303 : 56 : gcc_assert(len1 && len2);
11304 : 56 : len1 = fold_convert (gfc_charlen_type_node, len1);
11305 : 56 : len2 = fold_convert (gfc_charlen_type_node, len2);
11306 : :
11307 : 56 : return fold_build2_loc (input_location, PLUS_EXPR,
11308 : 56 : gfc_charlen_type_node, len1, len2);
11309 : : }
11310 : :
11311 : :
11312 : : /* Allocate the lhs of an assignment to an allocatable array, otherwise
11313 : : reallocate it. */
11314 : :
11315 : : tree
11316 : 5618 : gfc_alloc_allocatable_for_assignment (gfc_loopinfo *loop,
11317 : : gfc_expr *expr1,
11318 : : gfc_expr *expr2)
11319 : : {
11320 : 5618 : stmtblock_t realloc_block;
11321 : 5618 : stmtblock_t alloc_block;
11322 : 5618 : stmtblock_t fblock;
11323 : 5618 : stmtblock_t loop_pre_block;
11324 : 5618 : gfc_ref *ref;
11325 : 5618 : gfc_ss *rss;
11326 : 5618 : gfc_ss *lss;
11327 : 5618 : gfc_array_info *linfo;
11328 : 5618 : tree realloc_expr;
11329 : 5618 : tree alloc_expr;
11330 : 5618 : tree size1;
11331 : 5618 : tree size2;
11332 : 5618 : tree elemsize1;
11333 : 5618 : tree elemsize2;
11334 : 5618 : tree array1;
11335 : 5618 : tree cond_null;
11336 : 5618 : tree cond;
11337 : 5618 : tree tmp;
11338 : 5618 : tree tmp2;
11339 : 5618 : tree lbound;
11340 : 5618 : tree ubound;
11341 : 5618 : tree desc;
11342 : 5618 : tree old_desc;
11343 : 5618 : tree desc2;
11344 : 5618 : tree offset;
11345 : 5618 : tree jump_label1;
11346 : 5618 : tree jump_label2;
11347 : 5618 : tree lbd;
11348 : 5618 : tree class_expr2 = NULL_TREE;
11349 : 5618 : int n;
11350 : 5618 : int dim;
11351 : 5618 : gfc_array_spec * as;
11352 : 5618 : bool coarray = (flag_coarray == GFC_FCOARRAY_LIB
11353 : 5618 : && gfc_caf_attr (expr1, true).codimension);
11354 : 5618 : tree token;
11355 : 5618 : gfc_se caf_se;
11356 : :
11357 : : /* x = f(...) with x allocatable. In this case, expr1 is the rhs.
11358 : : Find the lhs expression in the loop chain and set expr1 and
11359 : : expr2 accordingly. */
11360 : 5618 : if (expr1->expr_type == EXPR_FUNCTION && expr2 == NULL)
11361 : : {
11362 : 152 : expr2 = expr1;
11363 : : /* Find the ss for the lhs. */
11364 : 152 : lss = loop->ss;
11365 : 304 : for (; lss && lss != gfc_ss_terminator; lss = lss->loop_chain)
11366 : 304 : if (lss->info->expr && lss->info->expr->expr_type == EXPR_VARIABLE)
11367 : : break;
11368 : 152 : if (lss == gfc_ss_terminator)
11369 : : return NULL_TREE;
11370 : 152 : expr1 = lss->info->expr;
11371 : : }
11372 : :
11373 : : /* Bail out if this is not a valid allocate on assignment. */
11374 : 5618 : if (!gfc_is_reallocatable_lhs (expr1)
11375 : 5618 : || (expr2 && !expr2->rank))
11376 : : return NULL_TREE;
11377 : :
11378 : : /* Find the ss for the lhs. */
11379 : 5618 : lss = loop->ss;
11380 : 14315 : for (; lss && lss != gfc_ss_terminator; lss = lss->loop_chain)
11381 : 14315 : if (lss->info->expr == expr1)
11382 : : break;
11383 : :
11384 : 5618 : if (lss == gfc_ss_terminator)
11385 : : return NULL_TREE;
11386 : :
11387 : 5618 : linfo = &lss->info->data.array;
11388 : :
11389 : : /* Find an ss for the rhs. For operator expressions, we see the
11390 : : ss's for the operands. Any one of these will do. */
11391 : 5618 : rss = loop->ss;
11392 : 6064 : for (; rss && rss != gfc_ss_terminator; rss = rss->loop_chain)
11393 : 6064 : if (rss->info->expr != expr1 && rss != loop->temp_ss)
11394 : : break;
11395 : :
11396 : 5618 : if (expr2 && rss == gfc_ss_terminator)
11397 : : return NULL_TREE;
11398 : :
11399 : : /* Ensure that the string length from the current scope is used. */
11400 : 5618 : if (expr2->ts.type == BT_CHARACTER
11401 : 859 : && expr2->expr_type == EXPR_FUNCTION
11402 : 124 : && !expr2->value.function.isym)
11403 : 21 : expr2->ts.u.cl->backend_decl = rss->info->string_length;
11404 : :
11405 : 5618 : gfc_start_block (&fblock);
11406 : :
11407 : : /* Since the lhs is allocatable, this must be a descriptor type.
11408 : : Get the data and array size. */
11409 : 5618 : desc = linfo->descriptor;
11410 : 5618 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)));
11411 : 5618 : array1 = gfc_conv_descriptor_data_get (desc);
11412 : :
11413 : 5618 : if (expr2)
11414 : 5618 : desc2 = rss->info->data.array.descriptor;
11415 : : else
11416 : : desc2 = NULL_TREE;
11417 : :
11418 : : /* Get the old lhs element size for deferred character and class expr1. */
11419 : 5618 : if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
11420 : : {
11421 : 587 : if (expr1->ts.u.cl->backend_decl
11422 : 587 : && VAR_P (expr1->ts.u.cl->backend_decl))
11423 : : elemsize1 = expr1->ts.u.cl->backend_decl;
11424 : : else
11425 : 79 : elemsize1 = lss->info->string_length;
11426 : 587 : tree unit_size = TYPE_SIZE_UNIT (gfc_get_char_type (expr1->ts.kind));
11427 : 1174 : elemsize1 = fold_build2_loc (input_location, MULT_EXPR,
11428 : 587 : TREE_TYPE (elemsize1), elemsize1,
11429 : 587 : fold_convert (TREE_TYPE (elemsize1), unit_size));
11430 : :
11431 : 587 : }
11432 : 5031 : else if (expr1->ts.type == BT_CLASS)
11433 : : {
11434 : : /* Unfortunately, the lhs vptr is set too early in many cases.
11435 : : Play it safe by using the descriptor element length. */
11436 : 531 : tmp = gfc_conv_descriptor_elem_len (desc);
11437 : 531 : elemsize1 = fold_convert (gfc_array_index_type, tmp);
11438 : : }
11439 : : else
11440 : : elemsize1 = NULL_TREE;
11441 : 1118 : if (elemsize1 != NULL_TREE)
11442 : 1118 : elemsize1 = gfc_evaluate_now (elemsize1, &fblock);
11443 : :
11444 : : /* Get the new lhs size in bytes. */
11445 : 5618 : if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
11446 : : {
11447 : 587 : if (expr2->ts.deferred)
11448 : : {
11449 : 183 : if (expr2->ts.u.cl->backend_decl
11450 : 183 : && VAR_P (expr2->ts.u.cl->backend_decl))
11451 : : tmp = expr2->ts.u.cl->backend_decl;
11452 : : else
11453 : 0 : tmp = rss->info->string_length;
11454 : : }
11455 : : else
11456 : : {
11457 : 404 : tmp = expr2->ts.u.cl->backend_decl;
11458 : 404 : if (!tmp && expr2->expr_type == EXPR_OP
11459 : 25 : && expr2->value.op.op == INTRINSIC_CONCAT)
11460 : : {
11461 : 25 : tmp = concat_str_length (expr2);
11462 : 25 : expr2->ts.u.cl->backend_decl = gfc_evaluate_now (tmp, &fblock);
11463 : : }
11464 : 16 : else if (!tmp && expr2->ts.u.cl->length)
11465 : : {
11466 : 16 : gfc_se tmpse;
11467 : 16 : gfc_init_se (&tmpse, NULL);
11468 : 16 : gfc_conv_expr_type (&tmpse, expr2->ts.u.cl->length,
11469 : : gfc_charlen_type_node);
11470 : 16 : tmp = tmpse.expr;
11471 : 16 : expr2->ts.u.cl->backend_decl = gfc_evaluate_now (tmp, &fblock);
11472 : : }
11473 : 404 : tmp = fold_convert (TREE_TYPE (expr1->ts.u.cl->backend_decl), tmp);
11474 : : }
11475 : :
11476 : 587 : if (expr1->ts.u.cl->backend_decl
11477 : 587 : && VAR_P (expr1->ts.u.cl->backend_decl))
11478 : 508 : gfc_add_modify (&fblock, expr1->ts.u.cl->backend_decl, tmp);
11479 : : else
11480 : 79 : gfc_add_modify (&fblock, lss->info->string_length, tmp);
11481 : :
11482 : 587 : if (expr1->ts.kind > 1)
11483 : 28 : tmp = fold_build2_loc (input_location, MULT_EXPR,
11484 : 14 : TREE_TYPE (tmp),
11485 : 14 : tmp, build_int_cst (TREE_TYPE (tmp),
11486 : 14 : expr1->ts.kind));
11487 : : }
11488 : 5031 : else if (expr1->ts.type == BT_CHARACTER && expr1->ts.u.cl->backend_decl)
11489 : : {
11490 : 223 : tmp = TYPE_SIZE_UNIT (TREE_TYPE (gfc_typenode_for_spec (&expr1->ts)));
11491 : 223 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
11492 : : fold_convert (gfc_array_index_type, tmp),
11493 : 223 : expr1->ts.u.cl->backend_decl);
11494 : : }
11495 : 4808 : else if (UNLIMITED_POLY (expr1) && expr2->ts.type != BT_CLASS)
11496 : 92 : tmp = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&expr2->ts));
11497 : 4716 : else if (expr1->ts.type == BT_CLASS && expr2->ts.type == BT_CLASS)
11498 : : {
11499 : 268 : tmp = expr2->rank ? gfc_get_class_from_expr (desc2) : NULL_TREE;
11500 : 268 : if (tmp == NULL_TREE && expr2->expr_type == EXPR_VARIABLE)
11501 : 24 : tmp = class_expr2 = gfc_get_class_from_gfc_expr (expr2);
11502 : :
11503 : 31 : if (tmp != NULL_TREE)
11504 : 261 : tmp = gfc_class_vtab_size_get (tmp);
11505 : : else
11506 : 7 : tmp = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&CLASS_DATA (expr2)->ts));
11507 : : }
11508 : : else
11509 : 4448 : tmp = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&expr2->ts));
11510 : 5618 : elemsize2 = fold_convert (gfc_array_index_type, tmp);
11511 : 5618 : elemsize2 = gfc_evaluate_now (elemsize2, &fblock);
11512 : :
11513 : : /* 7.4.1.3 "If variable is an allocated allocatable variable, it is
11514 : : deallocated if expr is an array of different shape or any of the
11515 : : corresponding length type parameter values of variable and expr
11516 : : differ." This assures F95 compatibility. */
11517 : 5618 : jump_label1 = gfc_build_label_decl (NULL_TREE);
11518 : 5618 : jump_label2 = gfc_build_label_decl (NULL_TREE);
11519 : :
11520 : : /* Allocate if data is NULL. */
11521 : 5618 : cond_null = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
11522 : 5618 : array1, build_int_cst (TREE_TYPE (array1), 0));
11523 : 5618 : cond_null= gfc_evaluate_now (cond_null, &fblock);
11524 : :
11525 : : /* If the data is null, set the descriptor bounds and offset. This suppresses
11526 : : the maybe used uninitialized warning and forces the use of malloc because
11527 : : the size is zero in all dimensions. Note that this block is only executed
11528 : : if the lhs is unallocated and is only applied once in any namespace.
11529 : : Component references are not subject to the warnings. */
11530 : 10320 : for (ref = expr1->ref; ref; ref = ref->next)
11531 : 5783 : if (ref->type == REF_COMPONENT)
11532 : : break;
11533 : :
11534 : 5618 : if (!expr1->symtree->n.sym->allocated_in_scope && !ref)
11535 : : {
11536 : 2390 : gfc_start_block (&loop_pre_block);
11537 : 8204 : for (n = 0; n < expr1->rank; n++)
11538 : : {
11539 : 3424 : gfc_conv_descriptor_lbound_set (&loop_pre_block, desc,
11540 : : gfc_rank_cst[n],
11541 : : gfc_index_one_node);
11542 : 3424 : gfc_conv_descriptor_ubound_set (&loop_pre_block, desc,
11543 : : gfc_rank_cst[n],
11544 : : gfc_index_zero_node);
11545 : 3424 : gfc_conv_descriptor_stride_set (&loop_pre_block, desc,
11546 : : gfc_rank_cst[n],
11547 : : gfc_index_zero_node);
11548 : : }
11549 : :
11550 : 2390 : tmp = gfc_conv_descriptor_offset (desc);
11551 : 2390 : gfc_add_modify (&loop_pre_block, tmp, gfc_index_zero_node);
11552 : :
11553 : 2390 : tmp = fold_build2_loc (input_location, EQ_EXPR,
11554 : : logical_type_node, array1,
11555 : 2390 : build_int_cst (TREE_TYPE (array1), 0));
11556 : 2390 : tmp = build3_v (COND_EXPR, tmp,
11557 : : gfc_finish_block (&loop_pre_block),
11558 : : build_empty_stmt (input_location));
11559 : 2390 : gfc_prepend_expr_to_block (&loop->pre, tmp);
11560 : :
11561 : 2390 : expr1->symtree->n.sym->allocated_in_scope = 1;
11562 : : }
11563 : :
11564 : 5618 : tmp = build3_v (COND_EXPR, cond_null,
11565 : : build1_v (GOTO_EXPR, jump_label1),
11566 : : build_empty_stmt (input_location));
11567 : 5618 : gfc_add_expr_to_block (&fblock, tmp);
11568 : :
11569 : : /* Get arrayspec if expr is a full array. */
11570 : 5618 : if (expr2 && expr2->expr_type == EXPR_FUNCTION
11571 : 2684 : && expr2->value.function.isym
11572 : 2247 : && expr2->value.function.isym->conversion)
11573 : : {
11574 : : /* For conversion functions, take the arg. */
11575 : 243 : gfc_expr *arg = expr2->value.function.actual->expr;
11576 : 243 : as = gfc_get_full_arrayspec_from_expr (arg);
11577 : 243 : }
11578 : : else if (expr2)
11579 : 5375 : as = gfc_get_full_arrayspec_from_expr (expr2);
11580 : : else
11581 : : as = NULL;
11582 : :
11583 : : /* If the lhs shape is not the same as the rhs jump to setting the
11584 : : bounds and doing the reallocation....... */
11585 : 14245 : for (n = 0; n < expr1->rank; n++)
11586 : : {
11587 : : /* Check the shape. */
11588 : 8627 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[n]);
11589 : 8627 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[n]);
11590 : 8627 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
11591 : : gfc_array_index_type,
11592 : : loop->to[n], loop->from[n]);
11593 : 8627 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
11594 : : gfc_array_index_type,
11595 : : tmp, lbound);
11596 : 8627 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
11597 : : gfc_array_index_type,
11598 : : tmp, ubound);
11599 : 8627 : cond = fold_build2_loc (input_location, NE_EXPR,
11600 : : logical_type_node,
11601 : : tmp, gfc_index_zero_node);
11602 : 8627 : tmp = build3_v (COND_EXPR, cond,
11603 : : build1_v (GOTO_EXPR, jump_label1),
11604 : : build_empty_stmt (input_location));
11605 : 8627 : gfc_add_expr_to_block (&fblock, tmp);
11606 : : }
11607 : :
11608 : : /* ...else if the element lengths are not the same also go to
11609 : : setting the bounds and doing the reallocation.... */
11610 : 5618 : if (elemsize1 != NULL_TREE)
11611 : : {
11612 : 1118 : cond = fold_build2_loc (input_location, NE_EXPR,
11613 : : logical_type_node,
11614 : : elemsize1, elemsize2);
11615 : 1118 : tmp = build3_v (COND_EXPR, cond,
11616 : : build1_v (GOTO_EXPR, jump_label1),
11617 : : build_empty_stmt (input_location));
11618 : 1118 : gfc_add_expr_to_block (&fblock, tmp);
11619 : : }
11620 : :
11621 : : /* ....else jump past the (re)alloc code. */
11622 : 5618 : tmp = build1_v (GOTO_EXPR, jump_label2);
11623 : 5618 : gfc_add_expr_to_block (&fblock, tmp);
11624 : :
11625 : : /* Add the label to start automatic (re)allocation. */
11626 : 5618 : tmp = build1_v (LABEL_EXPR, jump_label1);
11627 : 5618 : gfc_add_expr_to_block (&fblock, tmp);
11628 : :
11629 : : /* Get the rhs size and fix it. */
11630 : 5618 : size2 = gfc_index_one_node;
11631 : 14245 : for (n = 0; n < expr2->rank; n++)
11632 : : {
11633 : 8627 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
11634 : : gfc_array_index_type,
11635 : : loop->to[n], loop->from[n]);
11636 : 8627 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
11637 : : gfc_array_index_type,
11638 : : tmp, gfc_index_one_node);
11639 : 8627 : size2 = fold_build2_loc (input_location, MULT_EXPR,
11640 : : gfc_array_index_type,
11641 : : tmp, size2);
11642 : : }
11643 : 5618 : size2 = gfc_evaluate_now (size2, &fblock);
11644 : :
11645 : : /* Deallocation of allocatable components will have to occur on
11646 : : reallocation. Fix the old descriptor now. */
11647 : 5618 : if ((expr1->ts.type == BT_DERIVED)
11648 : 248 : && expr1->ts.u.derived->attr.alloc_comp)
11649 : 87 : old_desc = gfc_evaluate_now (desc, &fblock);
11650 : : else
11651 : : old_desc = NULL_TREE;
11652 : :
11653 : : /* Now modify the lhs descriptor and the associated scalarizer
11654 : : variables. F2003 7.4.1.3: "If variable is or becomes an
11655 : : unallocated allocatable variable, then it is allocated with each
11656 : : deferred type parameter equal to the corresponding type parameters
11657 : : of expr , with the shape of expr , and with each lower bound equal
11658 : : to the corresponding element of LBOUND(expr)."
11659 : : Reuse size1 to keep a dimension-by-dimension track of the
11660 : : stride of the new array. */
11661 : 5618 : size1 = gfc_index_one_node;
11662 : 5618 : offset = gfc_index_zero_node;
11663 : :
11664 : 14245 : for (n = 0; n < expr2->rank; n++)
11665 : : {
11666 : 8627 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
11667 : : gfc_array_index_type,
11668 : : loop->to[n], loop->from[n]);
11669 : 8627 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
11670 : : gfc_array_index_type,
11671 : : tmp, gfc_index_one_node);
11672 : :
11673 : 8627 : lbound = gfc_index_one_node;
11674 : 8627 : ubound = tmp;
11675 : :
11676 : 8627 : if (as)
11677 : : {
11678 : 1812 : lbd = get_std_lbound (expr2, desc2, n,
11679 : 906 : as->type == AS_ASSUMED_SIZE);
11680 : 906 : ubound = fold_build2_loc (input_location,
11681 : : MINUS_EXPR,
11682 : : gfc_array_index_type,
11683 : : ubound, lbound);
11684 : 906 : ubound = fold_build2_loc (input_location,
11685 : : PLUS_EXPR,
11686 : : gfc_array_index_type,
11687 : : ubound, lbd);
11688 : 906 : lbound = lbd;
11689 : : }
11690 : :
11691 : 8627 : gfc_conv_descriptor_lbound_set (&fblock, desc,
11692 : : gfc_rank_cst[n],
11693 : : lbound);
11694 : 8627 : gfc_conv_descriptor_ubound_set (&fblock, desc,
11695 : : gfc_rank_cst[n],
11696 : : ubound);
11697 : 8627 : gfc_conv_descriptor_stride_set (&fblock, desc,
11698 : : gfc_rank_cst[n],
11699 : : size1);
11700 : 8627 : lbound = gfc_conv_descriptor_lbound_get (desc,
11701 : : gfc_rank_cst[n]);
11702 : 8627 : tmp2 = fold_build2_loc (input_location, MULT_EXPR,
11703 : : gfc_array_index_type,
11704 : : lbound, size1);
11705 : 8627 : offset = fold_build2_loc (input_location, MINUS_EXPR,
11706 : : gfc_array_index_type,
11707 : : offset, tmp2);
11708 : 8627 : size1 = fold_build2_loc (input_location, MULT_EXPR,
11709 : : gfc_array_index_type,
11710 : : tmp, size1);
11711 : : }
11712 : :
11713 : : /* Set the lhs descriptor and scalarizer offsets. For rank > 1,
11714 : : the array offset is saved and the info.offset is used for a
11715 : : running offset. Use the saved_offset instead. */
11716 : 5618 : tmp = gfc_conv_descriptor_offset (desc);
11717 : 5618 : gfc_add_modify (&fblock, tmp, offset);
11718 : 5618 : if (linfo->saved_offset
11719 : 5618 : && VAR_P (linfo->saved_offset))
11720 : 5618 : gfc_add_modify (&fblock, linfo->saved_offset, tmp);
11721 : :
11722 : : /* Now set the deltas for the lhs. */
11723 : 14245 : for (n = 0; n < expr1->rank; n++)
11724 : : {
11725 : 8627 : tmp = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[n]);
11726 : 8627 : dim = lss->dim[n];
11727 : 8627 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
11728 : : gfc_array_index_type, tmp,
11729 : : loop->from[dim]);
11730 : 8627 : if (linfo->delta[dim] && VAR_P (linfo->delta[dim]))
11731 : 8289 : gfc_add_modify (&fblock, linfo->delta[dim], tmp);
11732 : : }
11733 : :
11734 : : /* Take into account _len of unlimited polymorphic entities, so that span
11735 : : for array descriptors and allocation sizes are computed correctly. */
11736 : 5618 : if (UNLIMITED_POLY (expr2))
11737 : : {
11738 : 92 : tree len = gfc_class_len_get (TREE_OPERAND (desc2, 0));
11739 : 92 : len = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
11740 : : fold_convert (size_type_node, len),
11741 : : size_one_node);
11742 : 92 : elemsize2 = fold_build2_loc (input_location, MULT_EXPR,
11743 : : gfc_array_index_type, elemsize2,
11744 : : fold_convert (gfc_array_index_type, len));
11745 : : }
11746 : :
11747 : 5618 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
11748 : 5618 : gfc_conv_descriptor_span_set (&fblock, desc, elemsize2);
11749 : :
11750 : 5618 : size2 = fold_build2_loc (input_location, MULT_EXPR,
11751 : : gfc_array_index_type,
11752 : : elemsize2, size2);
11753 : 5618 : size2 = fold_convert (size_type_node, size2);
11754 : 5618 : size2 = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
11755 : : size2, size_one_node);
11756 : 5618 : size2 = gfc_evaluate_now (size2, &fblock);
11757 : :
11758 : : /* For deferred character length, the 'size' field of the dtype might
11759 : : have changed so set the dtype. */
11760 : 5618 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc))
11761 : 5618 : && expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
11762 : : {
11763 : 587 : tree type;
11764 : 587 : tmp = gfc_conv_descriptor_dtype (desc);
11765 : 587 : if (expr2->ts.u.cl->backend_decl)
11766 : 587 : type = gfc_typenode_for_spec (&expr2->ts);
11767 : : else
11768 : 0 : type = gfc_typenode_for_spec (&expr1->ts);
11769 : :
11770 : 587 : gfc_add_modify (&fblock, tmp,
11771 : : gfc_get_dtype_rank_type (expr1->rank,type));
11772 : : }
11773 : 5031 : else if (expr1->ts.type == BT_CLASS)
11774 : : {
11775 : 531 : tree type;
11776 : 531 : tmp = gfc_conv_descriptor_dtype (desc);
11777 : :
11778 : 531 : if (expr2->ts.type != BT_CLASS)
11779 : 263 : type = gfc_typenode_for_spec (&expr2->ts);
11780 : : else
11781 : 268 : type = gfc_get_character_type_len (1, elemsize2);
11782 : :
11783 : 531 : gfc_add_modify (&fblock, tmp,
11784 : : gfc_get_dtype_rank_type (expr2->rank,type));
11785 : : /* Set the _len field as well... */
11786 : 531 : if (UNLIMITED_POLY (expr1))
11787 : : {
11788 : 184 : tmp = gfc_class_len_get (TREE_OPERAND (desc, 0));
11789 : 184 : if (expr2->ts.type == BT_CHARACTER)
11790 : 49 : gfc_add_modify (&fblock, tmp,
11791 : 49 : fold_convert (TREE_TYPE (tmp),
11792 : : TYPE_SIZE_UNIT (type)));
11793 : 135 : else if (UNLIMITED_POLY (expr2))
11794 : 92 : gfc_add_modify (&fblock, tmp,
11795 : 92 : gfc_class_len_get (TREE_OPERAND (desc2, 0)));
11796 : : else
11797 : 43 : gfc_add_modify (&fblock, tmp,
11798 : 43 : build_int_cst (TREE_TYPE (tmp), 0));
11799 : : }
11800 : : /* ...and the vptr. */
11801 : 531 : tmp = gfc_class_vptr_get (TREE_OPERAND (desc, 0));
11802 : 531 : if (expr2->ts.type == BT_CLASS && !VAR_P (desc2)
11803 : 261 : && TREE_CODE (desc2) == COMPONENT_REF)
11804 : : {
11805 : 237 : tmp2 = gfc_get_class_from_expr (desc2);
11806 : 237 : tmp2 = gfc_class_vptr_get (tmp2);
11807 : : }
11808 : 294 : else if (expr2->ts.type == BT_CLASS && class_expr2 != NULL_TREE)
11809 : 24 : tmp2 = gfc_class_vptr_get (class_expr2);
11810 : : else
11811 : : {
11812 : 270 : tmp2 = gfc_get_symbol_decl (gfc_find_vtab (&expr2->ts));
11813 : 270 : tmp2 = gfc_build_addr_expr (TREE_TYPE (tmp), tmp2);
11814 : : }
11815 : :
11816 : 531 : gfc_add_modify (&fblock, tmp, fold_convert (TREE_TYPE (tmp), tmp2));
11817 : : }
11818 : 4500 : else if (coarray && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
11819 : : {
11820 : 0 : gfc_add_modify (&fblock, gfc_conv_descriptor_dtype (desc),
11821 : 0 : gfc_get_dtype (TREE_TYPE (desc)));
11822 : : }
11823 : :
11824 : : /* Realloc expression. Note that the scalarizer uses desc.data
11825 : : in the array reference - (*desc.data)[<element>]. */
11826 : 5618 : gfc_init_block (&realloc_block);
11827 : 5618 : gfc_init_se (&caf_se, NULL);
11828 : :
11829 : 5618 : if (coarray)
11830 : : {
11831 : 0 : token = gfc_get_ultimate_alloc_ptr_comps_caf_token (&caf_se, expr1);
11832 : 0 : if (token == NULL_TREE)
11833 : : {
11834 : 0 : tmp = gfc_get_tree_for_caf_expr (expr1);
11835 : 0 : if (POINTER_TYPE_P (TREE_TYPE (tmp)))
11836 : 0 : tmp = build_fold_indirect_ref (tmp);
11837 : 0 : gfc_get_caf_token_offset (&caf_se, &token, NULL, tmp, NULL_TREE,
11838 : : expr1);
11839 : 0 : token = gfc_build_addr_expr (NULL_TREE, token);
11840 : : }
11841 : :
11842 : 0 : gfc_add_block_to_block (&realloc_block, &caf_se.pre);
11843 : : }
11844 : 5618 : if ((expr1->ts.type == BT_DERIVED)
11845 : 248 : && expr1->ts.u.derived->attr.alloc_comp)
11846 : : {
11847 : 87 : tmp = gfc_deallocate_alloc_comp_no_caf (expr1->ts.u.derived, old_desc,
11848 : : expr1->rank, true);
11849 : 87 : gfc_add_expr_to_block (&realloc_block, tmp);
11850 : : }
11851 : :
11852 : 5618 : if (!coarray)
11853 : : {
11854 : 5618 : tmp = build_call_expr_loc (input_location,
11855 : : builtin_decl_explicit (BUILT_IN_REALLOC), 2,
11856 : : fold_convert (pvoid_type_node, array1),
11857 : : size2);
11858 : 5618 : if (flag_openmp_allocators)
11859 : : {
11860 : 2 : tree cond, omp_tmp;
11861 : 2 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
11862 : : gfc_conv_descriptor_version (desc),
11863 : 2 : build_int_cst (integer_type_node, 1));
11864 : 2 : omp_tmp = builtin_decl_explicit (BUILT_IN_GOMP_REALLOC);
11865 : 2 : omp_tmp = build_call_expr_loc (input_location, omp_tmp, 4,
11866 : : fold_convert (pvoid_type_node, array1), size2,
11867 : : build_zero_cst (ptr_type_node),
11868 : : build_zero_cst (ptr_type_node));
11869 : 2 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp), cond,
11870 : : omp_tmp, tmp);
11871 : : }
11872 : :
11873 : 5618 : gfc_conv_descriptor_data_set (&realloc_block, desc, tmp);
11874 : : }
11875 : : else
11876 : : {
11877 : 0 : tmp = build_call_expr_loc (input_location,
11878 : : gfor_fndecl_caf_deregister, 5, token,
11879 : 0 : build_int_cst (integer_type_node,
11880 : 0 : GFC_CAF_COARRAY_DEALLOCATE_ONLY),
11881 : : null_pointer_node, null_pointer_node,
11882 : : integer_zero_node);
11883 : 0 : gfc_add_expr_to_block (&realloc_block, tmp);
11884 : 0 : tmp = build_call_expr_loc (input_location,
11885 : : gfor_fndecl_caf_register,
11886 : : 7, size2,
11887 : 0 : build_int_cst (integer_type_node,
11888 : 0 : GFC_CAF_COARRAY_ALLOC_ALLOCATE_ONLY),
11889 : : token, gfc_build_addr_expr (NULL_TREE, desc),
11890 : : null_pointer_node, null_pointer_node,
11891 : : integer_zero_node);
11892 : 0 : gfc_add_expr_to_block (&realloc_block, tmp);
11893 : : }
11894 : :
11895 : 5618 : if ((expr1->ts.type == BT_DERIVED)
11896 : 248 : && expr1->ts.u.derived->attr.alloc_comp)
11897 : : {
11898 : 87 : tmp = gfc_nullify_alloc_comp (expr1->ts.u.derived, desc,
11899 : : expr1->rank);
11900 : 87 : gfc_add_expr_to_block (&realloc_block, tmp);
11901 : : }
11902 : :
11903 : 5618 : gfc_add_block_to_block (&realloc_block, &caf_se.post);
11904 : 5618 : realloc_expr = gfc_finish_block (&realloc_block);
11905 : :
11906 : : /* Malloc expression. */
11907 : 5618 : gfc_init_block (&alloc_block);
11908 : 5618 : if (!coarray)
11909 : : {
11910 : 5618 : tmp = build_call_expr_loc (input_location,
11911 : : builtin_decl_explicit (BUILT_IN_MALLOC),
11912 : : 1, size2);
11913 : 5618 : gfc_conv_descriptor_data_set (&alloc_block,
11914 : : desc, tmp);
11915 : : }
11916 : : else
11917 : : {
11918 : 0 : tmp = build_call_expr_loc (input_location,
11919 : : gfor_fndecl_caf_register,
11920 : : 7, size2,
11921 : 0 : build_int_cst (integer_type_node,
11922 : 0 : GFC_CAF_COARRAY_ALLOC),
11923 : : token, gfc_build_addr_expr (NULL_TREE, desc),
11924 : : null_pointer_node, null_pointer_node,
11925 : : integer_zero_node);
11926 : 0 : gfc_add_expr_to_block (&alloc_block, tmp);
11927 : : }
11928 : :
11929 : :
11930 : : /* We already set the dtype in the case of deferred character
11931 : : length arrays and class lvalues. */
11932 : 5618 : if (!(GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc))
11933 : 5618 : && ((expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
11934 : 5031 : || coarray))
11935 : 10649 : && expr1->ts.type != BT_CLASS)
11936 : : {
11937 : 4500 : tmp = gfc_conv_descriptor_dtype (desc);
11938 : 4500 : gfc_add_modify (&alloc_block, tmp, gfc_get_dtype (TREE_TYPE (desc)));
11939 : : }
11940 : :
11941 : 5618 : if ((expr1->ts.type == BT_DERIVED)
11942 : 248 : && expr1->ts.u.derived->attr.alloc_comp)
11943 : : {
11944 : 87 : tmp = gfc_nullify_alloc_comp (expr1->ts.u.derived, desc,
11945 : : expr1->rank);
11946 : 87 : gfc_add_expr_to_block (&alloc_block, tmp);
11947 : : }
11948 : 5618 : alloc_expr = gfc_finish_block (&alloc_block);
11949 : :
11950 : : /* Malloc if not allocated; realloc otherwise. */
11951 : 5618 : tmp = build3_v (COND_EXPR, cond_null, alloc_expr, realloc_expr);
11952 : 5618 : gfc_add_expr_to_block (&fblock, tmp);
11953 : :
11954 : : /* Make sure that the scalarizer data pointer is updated. */
11955 : 5618 : if (linfo->data && VAR_P (linfo->data))
11956 : : {
11957 : 5087 : tmp = gfc_conv_descriptor_data_get (desc);
11958 : 5087 : gfc_add_modify (&fblock, linfo->data, tmp);
11959 : : }
11960 : :
11961 : : /* Add the label for same shape lhs and rhs. */
11962 : 5618 : tmp = build1_v (LABEL_EXPR, jump_label2);
11963 : 5618 : gfc_add_expr_to_block (&fblock, tmp);
11964 : :
11965 : 5618 : return gfc_finish_block (&fblock);
11966 : : }
11967 : :
11968 : :
11969 : : /* Initialize class descriptor's TKR information. */
11970 : :
11971 : : void
11972 : 2738 : gfc_trans_class_array (gfc_symbol * sym, gfc_wrapped_block * block)
11973 : : {
11974 : 2738 : tree type, etype;
11975 : 2738 : tree tmp;
11976 : 2738 : tree descriptor;
11977 : 2738 : stmtblock_t init;
11978 : 2738 : int rank;
11979 : :
11980 : : /* Make sure the frontend gets these right. */
11981 : 2738 : gcc_assert (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
11982 : : && (CLASS_DATA (sym)->attr.class_pointer
11983 : : || CLASS_DATA (sym)->attr.allocatable));
11984 : :
11985 : 2738 : gcc_assert (VAR_P (sym->backend_decl)
11986 : : || TREE_CODE (sym->backend_decl) == PARM_DECL);
11987 : :
11988 : 2738 : if (sym->attr.dummy)
11989 : 1357 : return;
11990 : :
11991 : 2738 : descriptor = gfc_class_data_get (sym->backend_decl);
11992 : 2738 : type = TREE_TYPE (descriptor);
11993 : :
11994 : 2738 : if (type == NULL || !GFC_DESCRIPTOR_TYPE_P (type))
11995 : : return;
11996 : :
11997 : 1381 : location_t loc = input_location;
11998 : 1381 : input_location = gfc_get_location (&sym->declared_at);
11999 : 1381 : gfc_init_block (&init);
12000 : :
12001 : 1381 : rank = CLASS_DATA (sym)->as ? (CLASS_DATA (sym)->as->rank) : (0);
12002 : 1381 : gcc_assert (rank>=0);
12003 : 1381 : tmp = gfc_conv_descriptor_dtype (descriptor);
12004 : 1381 : etype = gfc_get_element_type (type);
12005 : 1381 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, TREE_TYPE (tmp), tmp,
12006 : : gfc_get_dtype_rank_type (rank, etype));
12007 : 1381 : gfc_add_expr_to_block (&init, tmp);
12008 : :
12009 : 1381 : gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
12010 : 1381 : input_location = loc;
12011 : : }
12012 : :
12013 : :
12014 : : /* NULLIFY an allocatable/pointer array on function entry, free it on exit.
12015 : : Do likewise, recursively if necessary, with the allocatable components of
12016 : : derived types. This function is also called for assumed-rank arrays, which
12017 : : are always dummy arguments. */
12018 : :
12019 : : void
12020 : 16305 : gfc_trans_deferred_array (gfc_symbol * sym, gfc_wrapped_block * block)
12021 : : {
12022 : 16305 : tree type;
12023 : 16305 : tree tmp;
12024 : 16305 : tree descriptor;
12025 : 16305 : stmtblock_t init;
12026 : 16305 : stmtblock_t cleanup;
12027 : 16305 : int rank;
12028 : 16305 : bool sym_has_alloc_comp, has_finalizer;
12029 : :
12030 : 32610 : sym_has_alloc_comp = (sym->ts.type == BT_DERIVED
12031 : 10453 : || sym->ts.type == BT_CLASS)
12032 : 16305 : && sym->ts.u.derived->attr.alloc_comp;
12033 : 16305 : has_finalizer = gfc_may_be_finalized (sym->ts);
12034 : :
12035 : : /* Make sure the frontend gets these right. */
12036 : 16305 : gcc_assert (sym->attr.pointer || sym->attr.allocatable || sym_has_alloc_comp
12037 : : || has_finalizer
12038 : : || (sym->as->type == AS_ASSUMED_RANK && sym->attr.dummy));
12039 : :
12040 : 16305 : location_t loc = input_location;
12041 : 16305 : input_location = gfc_get_location (&sym->declared_at);
12042 : 16305 : gfc_init_block (&init);
12043 : :
12044 : 16305 : gcc_assert (VAR_P (sym->backend_decl)
12045 : : || TREE_CODE (sym->backend_decl) == PARM_DECL);
12046 : :
12047 : 16305 : if (sym->ts.type == BT_CHARACTER
12048 : 1213 : && !INTEGER_CST_P (sym->ts.u.cl->backend_decl))
12049 : : {
12050 : 710 : if (sym->ts.deferred && !sym->ts.u.cl->length && !sym->attr.dummy)
12051 : 528 : gfc_add_modify (&init, sym->ts.u.cl->backend_decl,
12052 : 528 : build_zero_cst (TREE_TYPE (sym->ts.u.cl->backend_decl)));
12053 : 710 : gfc_conv_string_length (sym->ts.u.cl, NULL, &init);
12054 : 710 : gfc_trans_vla_type_sizes (sym, &init);
12055 : :
12056 : : /* Presence check of optional deferred-length character dummy. */
12057 : 710 : if (sym->ts.deferred && sym->attr.dummy && sym->attr.optional)
12058 : : {
12059 : 43 : tmp = gfc_finish_block (&init);
12060 : 43 : tmp = build3_v (COND_EXPR, gfc_conv_expr_present (sym),
12061 : : tmp, build_empty_stmt (input_location));
12062 : 43 : gfc_add_expr_to_block (&init, tmp);
12063 : : }
12064 : : }
12065 : :
12066 : : /* Dummy, use associated and result variables don't need anything special. */
12067 : 16305 : if (sym->attr.dummy || sym->attr.use_assoc || sym->attr.result)
12068 : : {
12069 : 622 : gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
12070 : 622 : input_location = loc;
12071 : 831 : return;
12072 : : }
12073 : :
12074 : 15683 : descriptor = sym->backend_decl;
12075 : :
12076 : : /* Although static, derived types with default initializers and
12077 : : allocatable components must not be nulled wholesale; instead they
12078 : : are treated component by component. */
12079 : 15683 : if (TREE_STATIC (descriptor) && !sym_has_alloc_comp && !has_finalizer)
12080 : : {
12081 : : /* SAVEd variables are not freed on exit. */
12082 : 209 : gfc_trans_static_array_pointer (sym);
12083 : :
12084 : 209 : gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
12085 : 209 : input_location = loc;
12086 : 209 : return;
12087 : : }
12088 : :
12089 : : /* Get the descriptor type. */
12090 : 15474 : type = TREE_TYPE (sym->backend_decl);
12091 : :
12092 : 15474 : if ((sym_has_alloc_comp || (has_finalizer && sym->ts.type != BT_CLASS))
12093 : 4545 : && !(sym->attr.pointer || sym->attr.allocatable))
12094 : : {
12095 : 2482 : if (!sym->attr.save
12096 : 2135 : && !(TREE_STATIC (sym->backend_decl) && sym->attr.is_main_program))
12097 : : {
12098 : 2135 : if (sym->value == NULL
12099 : 2135 : || !gfc_has_default_initializer (sym->ts.u.derived))
12100 : : {
12101 : 1827 : rank = sym->as ? sym->as->rank : 0;
12102 : 1827 : tmp = gfc_nullify_alloc_comp (sym->ts.u.derived,
12103 : : descriptor, rank);
12104 : 1827 : gfc_add_expr_to_block (&init, tmp);
12105 : : }
12106 : : else
12107 : 308 : gfc_init_default_dt (sym, &init, false);
12108 : : }
12109 : : }
12110 : 12992 : else if (!GFC_DESCRIPTOR_TYPE_P (type))
12111 : : {
12112 : : /* If the backend_decl is not a descriptor, we must have a pointer
12113 : : to one. */
12114 : 1619 : descriptor = build_fold_indirect_ref_loc (input_location,
12115 : : sym->backend_decl);
12116 : 1619 : type = TREE_TYPE (descriptor);
12117 : : }
12118 : :
12119 : : /* NULLIFY the data pointer, for non-saved allocatables. */
12120 : 15474 : if (GFC_DESCRIPTOR_TYPE_P (type) && !sym->attr.save && sym->attr.allocatable)
12121 : : {
12122 : 8168 : gfc_conv_descriptor_data_set (&init, descriptor, null_pointer_node);
12123 : 8168 : if (flag_coarray == GFC_FCOARRAY_LIB && sym->attr.codimension)
12124 : : {
12125 : : /* Declare the variable static so its array descriptor stays present
12126 : : after leaving the scope. It may still be accessed through another
12127 : : image. This may happen, for example, with the caf_mpi
12128 : : implementation. */
12129 : 86 : TREE_STATIC (descriptor) = 1;
12130 : 86 : tmp = gfc_conv_descriptor_token (descriptor);
12131 : 86 : gfc_add_modify (&init, tmp, fold_convert (TREE_TYPE (tmp),
12132 : : null_pointer_node));
12133 : : }
12134 : : }
12135 : :
12136 : : /* Set initial TKR for pointers and allocatables */
12137 : 15474 : if (GFC_DESCRIPTOR_TYPE_P (type)
12138 : 15474 : && (sym->attr.pointer || sym->attr.allocatable))
12139 : : {
12140 : 11373 : tree etype;
12141 : :
12142 : 11373 : gcc_assert (sym->as && sym->as->rank>=0);
12143 : 11373 : tmp = gfc_conv_descriptor_dtype (descriptor);
12144 : 11373 : etype = gfc_get_element_type (type);
12145 : 11373 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
12146 : 11373 : TREE_TYPE (tmp), tmp,
12147 : 11373 : gfc_get_dtype_rank_type (sym->as->rank, etype));
12148 : 11373 : gfc_add_expr_to_block (&init, tmp);
12149 : : }
12150 : 15474 : input_location = loc;
12151 : 15474 : gfc_init_block (&cleanup);
12152 : :
12153 : : /* Allocatable arrays need to be freed when they go out of scope.
12154 : : The allocatable components of pointers must not be touched. */
12155 : 15474 : if (!sym->attr.allocatable && has_finalizer && sym->ts.type != BT_CLASS
12156 : 472 : && !sym->attr.pointer && !sym->attr.artificial && !sym->attr.save
12157 : 222 : && !sym->ns->proc_name->attr.is_main_program)
12158 : : {
12159 : 186 : gfc_expr *e;
12160 : 186 : sym->attr.referenced = 1;
12161 : 186 : e = gfc_lval_expr_from_sym (sym);
12162 : 186 : gfc_add_finalizer_call (&cleanup, e);
12163 : 186 : gfc_free_expr (e);
12164 : 186 : }
12165 : 15288 : else if ((!sym->attr.allocatable || !has_finalizer)
12166 : 15177 : && sym_has_alloc_comp && !(sym->attr.function || sym->attr.result)
12167 : 4103 : && !sym->attr.pointer && !sym->attr.save
12168 : 2112 : && !(sym->attr.artificial && sym->name[0] == '_')
12169 : 2057 : && !sym->ns->proc_name->attr.is_main_program)
12170 : : {
12171 : 557 : int rank;
12172 : 557 : rank = sym->as ? sym->as->rank : 0;
12173 : 557 : tmp = gfc_deallocate_alloc_comp (sym->ts.u.derived, descriptor, rank,
12174 : 557 : (sym->attr.codimension
12175 : 2 : && flag_coarray == GFC_FCOARRAY_LIB)
12176 : : ? GFC_STRUCTURE_CAF_MODE_IN_COARRAY
12177 : : : 0);
12178 : 557 : gfc_add_expr_to_block (&cleanup, tmp);
12179 : : }
12180 : :
12181 : 15474 : if (sym->attr.allocatable && (sym->attr.dimension || sym->attr.codimension)
12182 : 8174 : && !sym->attr.save && !sym->attr.result
12183 : 8168 : && !sym->ns->proc_name->attr.is_main_program)
12184 : : {
12185 : 4453 : gfc_expr *e;
12186 : 4453 : e = has_finalizer ? gfc_lval_expr_from_sym (sym) : NULL;
12187 : 8906 : tmp = gfc_deallocate_with_status (sym->backend_decl, NULL_TREE, NULL_TREE,
12188 : : NULL_TREE, NULL_TREE, true, e,
12189 : 4453 : sym->attr.codimension
12190 : : ? GFC_CAF_COARRAY_DEREGISTER
12191 : : : GFC_CAF_COARRAY_NOCOARRAY,
12192 : : NULL_TREE, gfc_finish_block (&cleanup));
12193 : 4453 : if (e)
12194 : 32 : gfc_free_expr (e);
12195 : 4453 : gfc_init_block (&cleanup);
12196 : 4453 : gfc_add_expr_to_block (&cleanup, tmp);
12197 : : }
12198 : :
12199 : 15474 : gfc_add_init_cleanup (block, gfc_finish_block (&init),
12200 : : gfc_finish_block (&cleanup));
12201 : : }
12202 : :
12203 : : /************ Expression Walking Functions ******************/
12204 : :
12205 : : /* Walk a variable reference.
12206 : :
12207 : : Possible extension - multiple component subscripts.
12208 : : x(:,:) = foo%a(:)%b(:)
12209 : : Transforms to
12210 : : forall (i=..., j=...)
12211 : : x(i,j) = foo%a(j)%b(i)
12212 : : end forall
12213 : : This adds a fair amount of complexity because you need to deal with more
12214 : : than one ref. Maybe handle in a similar manner to vector subscripts.
12215 : : Maybe not worth the effort. */
12216 : :
12217 : :
12218 : : static gfc_ss *
12219 : 550687 : gfc_walk_variable_expr (gfc_ss * ss, gfc_expr * expr)
12220 : : {
12221 : 550687 : gfc_ref *ref;
12222 : :
12223 : 550687 : gfc_fix_class_refs (expr);
12224 : :
12225 : 649601 : for (ref = expr->ref; ref; ref = ref->next)
12226 : 402411 : if (ref->type == REF_ARRAY && ref->u.ar.type != AR_ELEMENT)
12227 : : break;
12228 : :
12229 : 550687 : return gfc_walk_array_ref (ss, expr, ref);
12230 : : }
12231 : :
12232 : : gfc_ss *
12233 : 550911 : gfc_walk_array_ref (gfc_ss *ss, gfc_expr *expr, gfc_ref *ref, bool array_only)
12234 : : {
12235 : 550911 : gfc_array_ref *ar;
12236 : 550911 : gfc_ss *newss;
12237 : 550911 : int n;
12238 : :
12239 : 861732 : for (; ref; ref = ref->next)
12240 : : {
12241 : 310821 : if (ref->type == REF_SUBSTRING)
12242 : : {
12243 : 1300 : ss = gfc_get_scalar_ss (ss, ref->u.ss.start);
12244 : 1300 : if (ref->u.ss.end)
12245 : 1274 : ss = gfc_get_scalar_ss (ss, ref->u.ss.end);
12246 : : }
12247 : :
12248 : : /* We're only interested in array sections from now on. */
12249 : 310821 : if (ref->type != REF_ARRAY
12250 : 303961 : || (array_only && ref->u.ar.as && ref->u.ar.as->rank == 0))
12251 : 6956 : continue;
12252 : :
12253 : 303865 : ar = &ref->u.ar;
12254 : :
12255 : 303865 : switch (ar->type)
12256 : : {
12257 : 170 : case AR_ELEMENT:
12258 : 387 : for (n = ar->dimen - 1; n >= 0; n--)
12259 : 217 : ss = gfc_get_scalar_ss (ss, ar->start[n]);
12260 : : break;
12261 : :
12262 : 251379 : case AR_FULL:
12263 : : /* Assumed shape arrays from interface mapping need this fix. */
12264 : 251379 : if (!ar->as && expr->symtree->n.sym->as)
12265 : : {
12266 : 6 : ar->as = gfc_get_array_spec();
12267 : 6 : *ar->as = *expr->symtree->n.sym->as;
12268 : : }
12269 : 251379 : newss = gfc_get_array_ss (ss, expr, ar->as->rank, GFC_SS_SECTION);
12270 : 251379 : newss->info->data.array.ref = ref;
12271 : :
12272 : : /* Make sure array is the same as array(:,:), this way
12273 : : we don't need to special case all the time. */
12274 : 251379 : ar->dimen = ar->as->rank;
12275 : 583478 : for (n = 0; n < ar->dimen; n++)
12276 : : {
12277 : 332099 : ar->dimen_type[n] = DIMEN_RANGE;
12278 : :
12279 : 332099 : gcc_assert (ar->start[n] == NULL);
12280 : 332099 : gcc_assert (ar->end[n] == NULL);
12281 : 332099 : gcc_assert (ar->stride[n] == NULL);
12282 : : }
12283 : : ss = newss;
12284 : : break;
12285 : :
12286 : 52316 : case AR_SECTION:
12287 : 52316 : newss = gfc_get_array_ss (ss, expr, 0, GFC_SS_SECTION);
12288 : 52316 : newss->info->data.array.ref = ref;
12289 : :
12290 : : /* We add SS chains for all the subscripts in the section. */
12291 : 134109 : for (n = 0; n < ar->dimen; n++)
12292 : : {
12293 : 81793 : gfc_ss *indexss;
12294 : :
12295 : 81793 : switch (ar->dimen_type[n])
12296 : : {
12297 : 6210 : case DIMEN_ELEMENT:
12298 : : /* Add SS for elemental (scalar) subscripts. */
12299 : 6210 : gcc_assert (ar->start[n]);
12300 : 6210 : indexss = gfc_get_scalar_ss (gfc_ss_terminator, ar->start[n]);
12301 : 6210 : indexss->loop_chain = gfc_ss_terminator;
12302 : 6210 : newss->info->data.array.subscript[n] = indexss;
12303 : 6210 : break;
12304 : :
12305 : 74765 : case DIMEN_RANGE:
12306 : : /* We don't add anything for sections, just remember this
12307 : : dimension for later. */
12308 : 74765 : newss->dim[newss->dimen] = n;
12309 : 74765 : newss->dimen++;
12310 : 74765 : break;
12311 : :
12312 : 818 : case DIMEN_VECTOR:
12313 : : /* Create a GFC_SS_VECTOR index in which we can store
12314 : : the vector's descriptor. */
12315 : 818 : indexss = gfc_get_array_ss (gfc_ss_terminator, ar->start[n],
12316 : : 1, GFC_SS_VECTOR);
12317 : 818 : indexss->loop_chain = gfc_ss_terminator;
12318 : 818 : newss->info->data.array.subscript[n] = indexss;
12319 : 818 : newss->dim[newss->dimen] = n;
12320 : 818 : newss->dimen++;
12321 : 818 : break;
12322 : :
12323 : 0 : default:
12324 : : /* We should know what sort of section it is by now. */
12325 : 0 : gcc_unreachable ();
12326 : : }
12327 : : }
12328 : : /* We should have at least one non-elemental dimension,
12329 : : unless we are creating a descriptor for a (scalar) coarray. */
12330 : 52316 : gcc_assert (newss->dimen > 0
12331 : : || newss->info->data.array.ref->u.ar.as->corank > 0);
12332 : : ss = newss;
12333 : : break;
12334 : :
12335 : 0 : default:
12336 : : /* We should know what sort of section it is by now. */
12337 : 0 : gcc_unreachable ();
12338 : : }
12339 : :
12340 : : }
12341 : 550911 : return ss;
12342 : : }
12343 : :
12344 : :
12345 : : /* Walk an expression operator. If only one operand of a binary expression is
12346 : : scalar, we must also add the scalar term to the SS chain. */
12347 : :
12348 : : static gfc_ss *
12349 : 51297 : gfc_walk_op_expr (gfc_ss * ss, gfc_expr * expr)
12350 : : {
12351 : 51297 : gfc_ss *head;
12352 : 51297 : gfc_ss *head2;
12353 : :
12354 : 51297 : head = gfc_walk_subexpr (ss, expr->value.op.op1);
12355 : 51297 : if (expr->value.op.op2 == NULL)
12356 : : head2 = head;
12357 : : else
12358 : 49317 : head2 = gfc_walk_subexpr (head, expr->value.op.op2);
12359 : :
12360 : : /* All operands are scalar. Pass back and let the caller deal with it. */
12361 : 51297 : if (head2 == ss)
12362 : : return head2;
12363 : :
12364 : : /* All operands require scalarization. */
12365 : 46803 : if (head != ss && (expr->value.op.op2 == NULL || head2 != head))
12366 : : return head2;
12367 : :
12368 : : /* One of the operands needs scalarization, the other is scalar.
12369 : : Create a gfc_ss for the scalar expression. */
12370 : 16176 : if (head == ss)
12371 : : {
12372 : : /* First operand is scalar. We build the chain in reverse order, so
12373 : : add the scalar SS after the second operand. */
12374 : : head = head2;
12375 : 2076 : while (head && head->next != ss)
12376 : : head = head->next;
12377 : : /* Check we haven't somehow broken the chain. */
12378 : 1833 : gcc_assert (head);
12379 : 1833 : head->next = gfc_get_scalar_ss (ss, expr->value.op.op1);
12380 : : }
12381 : : else /* head2 == head */
12382 : : {
12383 : 14343 : gcc_assert (head2 == head);
12384 : : /* Second operand is scalar. */
12385 : 14343 : head2 = gfc_get_scalar_ss (head2, expr->value.op.op2);
12386 : : }
12387 : :
12388 : : return head2;
12389 : : }
12390 : :
12391 : :
12392 : : /* Reverse a SS chain. */
12393 : :
12394 : : gfc_ss *
12395 : 719631 : gfc_reverse_ss (gfc_ss * ss)
12396 : : {
12397 : 719631 : gfc_ss *next;
12398 : 719631 : gfc_ss *head;
12399 : :
12400 : 719631 : gcc_assert (ss != NULL);
12401 : :
12402 : : head = gfc_ss_terminator;
12403 : 1122693 : while (ss != gfc_ss_terminator)
12404 : : {
12405 : 403062 : next = ss->next;
12406 : : /* Check we didn't somehow break the chain. */
12407 : 403062 : gcc_assert (next != NULL);
12408 : 403062 : ss->next = head;
12409 : 403062 : head = ss;
12410 : 403062 : ss = next;
12411 : : }
12412 : :
12413 : 719631 : return (head);
12414 : : }
12415 : :
12416 : :
12417 : : /* Given an expression referring to a procedure, return the symbol of its
12418 : : interface. We can't get the procedure symbol directly as we have to handle
12419 : : the case of (deferred) type-bound procedures. */
12420 : :
12421 : : gfc_symbol *
12422 : 152 : gfc_get_proc_ifc_for_expr (gfc_expr *procedure_ref)
12423 : : {
12424 : 152 : gfc_symbol *sym;
12425 : 152 : gfc_ref *ref;
12426 : :
12427 : 152 : if (procedure_ref == NULL)
12428 : : return NULL;
12429 : :
12430 : : /* Normal procedure case. */
12431 : 152 : if (procedure_ref->expr_type == EXPR_FUNCTION
12432 : 152 : && procedure_ref->value.function.esym)
12433 : : sym = procedure_ref->value.function.esym;
12434 : : else
12435 : 24 : sym = procedure_ref->symtree->n.sym;
12436 : :
12437 : : /* Typebound procedure case. */
12438 : 200 : for (ref = procedure_ref->ref; ref; ref = ref->next)
12439 : : {
12440 : 48 : if (ref->type == REF_COMPONENT
12441 : 48 : && ref->u.c.component->attr.proc_pointer)
12442 : 24 : sym = ref->u.c.component->ts.interface;
12443 : : else
12444 : : sym = NULL;
12445 : : }
12446 : :
12447 : : return sym;
12448 : : }
12449 : :
12450 : :
12451 : : /* Given an expression referring to an intrinsic function call,
12452 : : return the intrinsic symbol. */
12453 : :
12454 : : gfc_intrinsic_sym *
12455 : 7030 : gfc_get_intrinsic_for_expr (gfc_expr *call)
12456 : : {
12457 : 7030 : if (call == NULL)
12458 : : return NULL;
12459 : :
12460 : : /* Normal procedure case. */
12461 : 2188 : if (call->expr_type == EXPR_FUNCTION)
12462 : 2082 : return call->value.function.isym;
12463 : : else
12464 : : return NULL;
12465 : : }
12466 : :
12467 : :
12468 : : /* Indicates whether an argument to an intrinsic function should be used in
12469 : : scalarization. It is usually the case, except for some intrinsics
12470 : : requiring the value to be constant, and using the value at compile time only.
12471 : : As the value is not used at runtime in those cases, we don’t produce code
12472 : : for it, and it should not be visible to the scalarizer.
12473 : : FUNCTION is the intrinsic function being called, ACTUAL_ARG is the actual
12474 : : argument being examined in that call, and ARG_NUM the index number
12475 : : of ACTUAL_ARG in the list of arguments.
12476 : : The intrinsic procedure’s dummy argument associated with ACTUAL_ARG is
12477 : : identified using the name in ACTUAL_ARG if it is present (that is: if it’s
12478 : : a keyword argument), otherwise using ARG_NUM. */
12479 : :
12480 : : static bool
12481 : 35329 : arg_evaluated_for_scalarization (gfc_intrinsic_sym *function,
12482 : : gfc_dummy_arg *dummy_arg)
12483 : : {
12484 : 35329 : if (function != NULL && dummy_arg != NULL)
12485 : : {
12486 : 11898 : switch (function->id)
12487 : : {
12488 : 241 : case GFC_ISYM_INDEX:
12489 : 241 : case GFC_ISYM_LEN_TRIM:
12490 : 241 : case GFC_ISYM_MASKL:
12491 : 241 : case GFC_ISYM_MASKR:
12492 : 241 : case GFC_ISYM_SCAN:
12493 : 241 : case GFC_ISYM_VERIFY:
12494 : 241 : if (strcmp ("kind", gfc_dummy_arg_get_name (*dummy_arg)) == 0)
12495 : : return false;
12496 : : /* Fallthrough. */
12497 : :
12498 : : default:
12499 : : break;
12500 : : }
12501 : : }
12502 : :
12503 : : return true;
12504 : : }
12505 : :
12506 : :
12507 : : /* Walk the arguments of an elemental function.
12508 : : PROC_EXPR is used to check whether an argument is permitted to be absent. If
12509 : : it is NULL, we don't do the check and the argument is assumed to be present.
12510 : : */
12511 : :
12512 : : gfc_ss *
12513 : 24873 : gfc_walk_elemental_function_args (gfc_ss * ss, gfc_actual_arglist *arg,
12514 : : gfc_intrinsic_sym *intrinsic_sym,
12515 : : gfc_ss_type type)
12516 : : {
12517 : 24873 : int scalar;
12518 : 24873 : gfc_ss *head;
12519 : 24873 : gfc_ss *tail;
12520 : 24873 : gfc_ss *newss;
12521 : :
12522 : 24873 : head = gfc_ss_terminator;
12523 : 24873 : tail = NULL;
12524 : :
12525 : 24873 : scalar = 1;
12526 : 61489 : for (; arg; arg = arg->next)
12527 : : {
12528 : 36616 : gfc_dummy_arg * const dummy_arg = arg->associated_dummy;
12529 : 37936 : if (!arg->expr
12530 : 35479 : || arg->expr->expr_type == EXPR_NULL
12531 : 71945 : || !arg_evaluated_for_scalarization (intrinsic_sym, dummy_arg))
12532 : 1320 : continue;
12533 : :
12534 : 35296 : newss = gfc_walk_subexpr (head, arg->expr);
12535 : 35296 : if (newss == head)
12536 : : {
12537 : : /* Scalar argument. */
12538 : 17648 : gcc_assert (type == GFC_SS_SCALAR || type == GFC_SS_REFERENCE);
12539 : 17648 : newss = gfc_get_scalar_ss (head, arg->expr);
12540 : 17648 : newss->info->type = type;
12541 : 17648 : if (dummy_arg)
12542 : 14711 : newss->info->data.scalar.dummy_arg = dummy_arg;
12543 : : }
12544 : : else
12545 : : scalar = 0;
12546 : :
12547 : 32359 : if (dummy_arg != NULL
12548 : 24590 : && gfc_dummy_arg_is_optional (*dummy_arg)
12549 : 2022 : && arg->expr->expr_type == EXPR_VARIABLE
12550 : 33725 : && (gfc_expr_attr (arg->expr).optional
12551 : 983 : || gfc_expr_attr (arg->expr).allocatable
12552 : 35101 : || gfc_expr_attr (arg->expr).pointer))
12553 : 907 : newss->info->can_be_null_ref = true;
12554 : :
12555 : 35296 : head = newss;
12556 : 35296 : if (!tail)
12557 : : {
12558 : : tail = head;
12559 : 30707 : while (tail->next != gfc_ss_terminator)
12560 : : tail = tail->next;
12561 : : }
12562 : : }
12563 : :
12564 : 24873 : if (scalar)
12565 : : {
12566 : : /* If all the arguments are scalar we don't need the argument SS. */
12567 : 9731 : gfc_free_ss_chain (head);
12568 : : /* Pass it back. */
12569 : 9731 : return ss;
12570 : : }
12571 : :
12572 : : /* Add it onto the existing chain. */
12573 : 15142 : tail->next = ss;
12574 : 15142 : return head;
12575 : : }
12576 : :
12577 : :
12578 : : /* Walk a function call. Scalar functions are passed back, and taken out of
12579 : : scalarization loops. For elemental functions we walk their arguments.
12580 : : The result of functions returning arrays is stored in a temporary outside
12581 : : the loop, so that the function is only called once. Hence we do not need
12582 : : to walk their arguments. */
12583 : :
12584 : : static gfc_ss *
12585 : 59085 : gfc_walk_function_expr (gfc_ss * ss, gfc_expr * expr)
12586 : : {
12587 : 59085 : gfc_intrinsic_sym *isym;
12588 : 59085 : gfc_symbol *sym;
12589 : 59085 : gfc_component *comp = NULL;
12590 : :
12591 : 59085 : isym = expr->value.function.isym;
12592 : :
12593 : : /* Handle intrinsic functions separately. */
12594 : 59085 : if (isym)
12595 : 51590 : return gfc_walk_intrinsic_function (ss, expr, isym);
12596 : :
12597 : 7495 : sym = expr->value.function.esym;
12598 : 7495 : if (!sym)
12599 : 540 : sym = expr->symtree->n.sym;
12600 : :
12601 : 7495 : if (gfc_is_class_array_function (expr))
12602 : 228 : return gfc_get_array_ss (ss, expr,
12603 : 228 : CLASS_DATA (expr->value.function.esym->result)->as->rank,
12604 : 228 : GFC_SS_FUNCTION);
12605 : :
12606 : : /* A function that returns arrays. */
12607 : 7267 : comp = gfc_get_proc_ptr_comp (expr);
12608 : 6875 : if ((!comp && gfc_return_by_reference (sym) && sym->result->attr.dimension)
12609 : 7267 : || (comp && comp->attr.dimension))
12610 : 2650 : return gfc_get_array_ss (ss, expr, expr->rank, GFC_SS_FUNCTION);
12611 : :
12612 : : /* Walk the parameters of an elemental function. For now we always pass
12613 : : by reference. */
12614 : 4617 : if (sym->attr.elemental || (comp && comp->attr.elemental))
12615 : : {
12616 : 2046 : gfc_ss *old_ss = ss;
12617 : :
12618 : 2046 : ss = gfc_walk_elemental_function_args (old_ss,
12619 : : expr->value.function.actual,
12620 : : gfc_get_intrinsic_for_expr (expr),
12621 : : GFC_SS_REFERENCE);
12622 : 2046 : if (ss != old_ss
12623 : 1010 : && (comp
12624 : 949 : || sym->attr.proc_pointer
12625 : : || sym->attr.if_source != IFSRC_DECL
12626 : 949 : || sym->attr.array_outer_dependency))
12627 : 224 : ss->info->array_outer_dependency = 1;
12628 : : }
12629 : :
12630 : : /* Scalar functions are OK as these are evaluated outside the scalarization
12631 : : loop. Pass back and let the caller deal with it. */
12632 : : return ss;
12633 : : }
12634 : :
12635 : :
12636 : : /* An array temporary is constructed for array constructors. */
12637 : :
12638 : : static gfc_ss *
12639 : 47848 : gfc_walk_array_constructor (gfc_ss * ss, gfc_expr * expr)
12640 : : {
12641 : 0 : return gfc_get_array_ss (ss, expr, expr->rank, GFC_SS_CONSTRUCTOR);
12642 : : }
12643 : :
12644 : :
12645 : : /* Walk an expression. Add walked expressions to the head of the SS chain.
12646 : : A wholly scalar expression will not be added. */
12647 : :
12648 : : gfc_ss *
12649 : 858667 : gfc_walk_subexpr (gfc_ss * ss, gfc_expr * expr)
12650 : : {
12651 : 858667 : gfc_ss *head;
12652 : :
12653 : 858667 : switch (expr->expr_type)
12654 : : {
12655 : 550687 : case EXPR_VARIABLE:
12656 : 550687 : head = gfc_walk_variable_expr (ss, expr);
12657 : 550687 : return head;
12658 : :
12659 : 51297 : case EXPR_OP:
12660 : 51297 : head = gfc_walk_op_expr (ss, expr);
12661 : 51297 : return head;
12662 : :
12663 : 59085 : case EXPR_FUNCTION:
12664 : 59085 : head = gfc_walk_function_expr (ss, expr);
12665 : 59085 : return head;
12666 : :
12667 : : case EXPR_CONSTANT:
12668 : : case EXPR_NULL:
12669 : : case EXPR_STRUCTURE:
12670 : : /* Pass back and let the caller deal with it. */
12671 : : break;
12672 : :
12673 : 47848 : case EXPR_ARRAY:
12674 : 47848 : head = gfc_walk_array_constructor (ss, expr);
12675 : 47848 : return head;
12676 : :
12677 : : case EXPR_SUBSTRING:
12678 : : /* Pass back and let the caller deal with it. */
12679 : : break;
12680 : :
12681 : 0 : default:
12682 : 0 : gfc_internal_error ("bad expression type during walk (%d)",
12683 : : expr->expr_type);
12684 : : }
12685 : : return ss;
12686 : : }
12687 : :
12688 : :
12689 : : /* Entry point for expression walking.
12690 : : A return value equal to the passed chain means this is
12691 : : a scalar expression. It is up to the caller to take whatever action is
12692 : : necessary to translate these. */
12693 : :
12694 : : gfc_ss *
12695 : 717359 : gfc_walk_expr (gfc_expr * expr)
12696 : : {
12697 : 717359 : gfc_ss *res;
12698 : :
12699 : 717359 : res = gfc_walk_subexpr (gfc_ss_terminator, expr);
12700 : 717359 : return gfc_reverse_ss (res);
12701 : : }
|