Branch data Line data Source code
1 : : /* Expression translation
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-expr.cc-- generate GENERIC trees for gfc_expr. */
23 : :
24 : : #define INCLUDE_MEMORY
25 : : #include "config.h"
26 : : #include "system.h"
27 : : #include "coretypes.h"
28 : : #include "options.h"
29 : : #include "tree.h"
30 : : #include "gfortran.h"
31 : : #include "trans.h"
32 : : #include "stringpool.h"
33 : : #include "diagnostic-core.h" /* For fatal_error. */
34 : : #include "fold-const.h"
35 : : #include "langhooks.h"
36 : : #include "arith.h"
37 : : #include "constructor.h"
38 : : #include "trans-const.h"
39 : : #include "trans-types.h"
40 : : #include "trans-array.h"
41 : : /* Only for gfc_trans_assign and gfc_trans_pointer_assign. */
42 : : #include "trans-stmt.h"
43 : : #include "dependency.h"
44 : : #include "gimplify.h"
45 : : #include "tm.h" /* For CHAR_TYPE_SIZE. */
46 : :
47 : :
48 : : /* Calculate the number of characters in a string. */
49 : :
50 : : static tree
51 : 34490 : gfc_get_character_len (tree type)
52 : : {
53 : 34490 : tree len;
54 : :
55 : 34490 : gcc_assert (type && TREE_CODE (type) == ARRAY_TYPE
56 : : && TYPE_STRING_FLAG (type));
57 : :
58 : 34490 : len = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
59 : 34490 : len = (len) ? (len) : (integer_zero_node);
60 : 34490 : return fold_convert (gfc_charlen_type_node, len);
61 : : }
62 : :
63 : :
64 : :
65 : : /* Calculate the number of bytes in a string. */
66 : :
67 : : tree
68 : 34490 : gfc_get_character_len_in_bytes (tree type)
69 : : {
70 : 34490 : tree tmp, len;
71 : :
72 : 34490 : gcc_assert (type && TREE_CODE (type) == ARRAY_TYPE
73 : : && TYPE_STRING_FLAG (type));
74 : :
75 : 34490 : tmp = TYPE_SIZE_UNIT (TREE_TYPE (type));
76 : 34490 : tmp = (tmp && !integer_zerop (tmp))
77 : 68980 : ? (fold_convert (gfc_charlen_type_node, tmp)) : (NULL_TREE);
78 : 34490 : len = gfc_get_character_len (type);
79 : 34490 : if (tmp && len && !integer_zerop (len))
80 : 33736 : len = fold_build2_loc (input_location, MULT_EXPR,
81 : : gfc_charlen_type_node, len, tmp);
82 : 34490 : return len;
83 : : }
84 : :
85 : :
86 : : /* Convert a scalar to an array descriptor. To be used for assumed-rank
87 : : arrays. */
88 : :
89 : : static tree
90 : 6187 : get_scalar_to_descriptor_type (tree scalar, symbol_attribute attr)
91 : : {
92 : 6187 : enum gfc_array_kind akind;
93 : :
94 : 6187 : if (attr.pointer)
95 : : akind = GFC_ARRAY_POINTER_CONT;
96 : 5837 : else if (attr.allocatable)
97 : : akind = GFC_ARRAY_ALLOCATABLE;
98 : : else
99 : 5074 : akind = GFC_ARRAY_ASSUMED_SHAPE_CONT;
100 : :
101 : 6187 : if (POINTER_TYPE_P (TREE_TYPE (scalar)))
102 : 4921 : scalar = TREE_TYPE (scalar);
103 : 6187 : return gfc_get_array_type_bounds (TREE_TYPE (scalar), 0, 0, NULL, NULL, 1,
104 : 6187 : akind, !(attr.pointer || attr.target));
105 : : }
106 : :
107 : : tree
108 : 5510 : gfc_conv_scalar_to_descriptor (gfc_se *se, tree scalar, symbol_attribute attr)
109 : : {
110 : 5510 : tree desc, type, etype;
111 : :
112 : 5510 : type = get_scalar_to_descriptor_type (scalar, attr);
113 : 5510 : etype = TREE_TYPE (scalar);
114 : 5510 : desc = gfc_create_var (type, "desc");
115 : 5510 : DECL_ARTIFICIAL (desc) = 1;
116 : :
117 : 5510 : if (CONSTANT_CLASS_P (scalar))
118 : : {
119 : 175 : tree tmp;
120 : 175 : tmp = gfc_create_var (TREE_TYPE (scalar), "scalar");
121 : 175 : gfc_add_modify (&se->pre, tmp, scalar);
122 : 175 : scalar = tmp;
123 : : }
124 : 5510 : if (!POINTER_TYPE_P (TREE_TYPE (scalar)))
125 : 1266 : scalar = gfc_build_addr_expr (NULL_TREE, scalar);
126 : 4244 : else if (TREE_TYPE (etype) && TREE_CODE (TREE_TYPE (etype)) == ARRAY_TYPE)
127 : 115 : etype = TREE_TYPE (etype);
128 : 5510 : gfc_add_modify (&se->pre, gfc_conv_descriptor_dtype (desc),
129 : : gfc_get_dtype_rank_type (0, etype));
130 : 5510 : gfc_conv_descriptor_data_set (&se->pre, desc, scalar);
131 : 5510 : gfc_conv_descriptor_span_set (&se->pre, desc,
132 : : gfc_conv_descriptor_elem_len (desc));
133 : :
134 : : /* Copy pointer address back - but only if it could have changed and
135 : : if the actual argument is a pointer and not, e.g., NULL(). */
136 : 5510 : if ((attr.pointer || attr.allocatable) && attr.intent != INTENT_IN)
137 : 830 : gfc_add_modify (&se->post, scalar,
138 : 415 : fold_convert (TREE_TYPE (scalar),
139 : : gfc_conv_descriptor_data_get (desc)));
140 : 5510 : return desc;
141 : : }
142 : :
143 : :
144 : : /* Get the coarray token from the ultimate array or component ref.
145 : : Returns a NULL_TREE, when the ref object is not allocatable or pointer. */
146 : :
147 : : tree
148 : 354 : gfc_get_ultimate_alloc_ptr_comps_caf_token (gfc_se *outerse, gfc_expr *expr)
149 : : {
150 : 354 : gfc_symbol *sym = expr->symtree->n.sym;
151 : 708 : bool is_coarray = sym->ts.type == BT_CLASS
152 : 354 : ? CLASS_DATA (sym)->attr.codimension
153 : 319 : : sym->attr.codimension;
154 : 354 : gfc_expr *caf_expr = gfc_copy_expr (expr);
155 : 354 : gfc_ref *ref = caf_expr->ref, *last_caf_ref = NULL;
156 : :
157 : 1183 : while (ref)
158 : : {
159 : 829 : if (ref->type == REF_COMPONENT
160 : 338 : && (ref->u.c.component->attr.allocatable
161 : 338 : || ref->u.c.component->attr.pointer)
162 : 337 : && (is_coarray || ref->u.c.component->attr.codimension))
163 : 829 : last_caf_ref = ref;
164 : 829 : ref = ref->next;
165 : : }
166 : :
167 : 354 : if (last_caf_ref == NULL)
168 : : {
169 : 91 : gfc_free_expr (caf_expr);
170 : 91 : return NULL_TREE;
171 : : }
172 : :
173 : 526 : tree comp = last_caf_ref->u.c.component->caf_token
174 : 263 : ? gfc_comp_caf_token (last_caf_ref->u.c.component)
175 : : : NULL_TREE,
176 : : caf;
177 : 263 : gfc_se se;
178 : 263 : bool comp_ref = !last_caf_ref->u.c.component->attr.dimension;
179 : 263 : if (comp == NULL_TREE && comp_ref)
180 : : {
181 : 34 : gfc_free_expr (caf_expr);
182 : 34 : return NULL_TREE;
183 : : }
184 : 229 : gfc_init_se (&se, outerse);
185 : 229 : gfc_free_ref_list (last_caf_ref->next);
186 : 229 : last_caf_ref->next = NULL;
187 : 229 : caf_expr->rank = comp_ref ? 0 : last_caf_ref->u.c.component->as->rank;
188 : 458 : caf_expr->corank = last_caf_ref->u.c.component->as
189 : 229 : ? last_caf_ref->u.c.component->as->corank
190 : : : expr->corank;
191 : 229 : se.want_pointer = comp_ref;
192 : 229 : gfc_conv_expr (&se, caf_expr);
193 : 229 : gfc_add_block_to_block (&outerse->pre, &se.pre);
194 : :
195 : 229 : if (TREE_CODE (se.expr) == COMPONENT_REF && comp_ref)
196 : 133 : se.expr = TREE_OPERAND (se.expr, 0);
197 : 229 : gfc_free_expr (caf_expr);
198 : :
199 : 229 : if (comp_ref)
200 : 133 : caf = fold_build3_loc (input_location, COMPONENT_REF,
201 : 133 : TREE_TYPE (comp), se.expr, comp, NULL_TREE);
202 : : else
203 : 96 : caf = gfc_conv_descriptor_token (se.expr);
204 : 229 : return gfc_build_addr_expr (NULL_TREE, caf);
205 : : }
206 : :
207 : :
208 : : /* This is the seed for an eventual trans-class.c
209 : :
210 : : The following parameters should not be used directly since they might
211 : : in future implementations. Use the corresponding APIs. */
212 : : #define CLASS_DATA_FIELD 0
213 : : #define CLASS_VPTR_FIELD 1
214 : : #define CLASS_LEN_FIELD 2
215 : : #define VTABLE_HASH_FIELD 0
216 : : #define VTABLE_SIZE_FIELD 1
217 : : #define VTABLE_EXTENDS_FIELD 2
218 : : #define VTABLE_DEF_INIT_FIELD 3
219 : : #define VTABLE_COPY_FIELD 4
220 : : #define VTABLE_FINAL_FIELD 5
221 : : #define VTABLE_DEALLOCATE_FIELD 6
222 : :
223 : :
224 : : tree
225 : 39 : gfc_class_set_static_fields (tree decl, tree vptr, tree data)
226 : : {
227 : 39 : tree tmp;
228 : 39 : tree field;
229 : 39 : vec<constructor_elt, va_gc> *init = NULL;
230 : :
231 : 39 : field = TYPE_FIELDS (TREE_TYPE (decl));
232 : 39 : tmp = gfc_advance_chain (field, CLASS_DATA_FIELD);
233 : 39 : CONSTRUCTOR_APPEND_ELT (init, tmp, data);
234 : :
235 : 39 : tmp = gfc_advance_chain (field, CLASS_VPTR_FIELD);
236 : 39 : CONSTRUCTOR_APPEND_ELT (init, tmp, vptr);
237 : :
238 : 39 : return build_constructor (TREE_TYPE (decl), init);
239 : : }
240 : :
241 : :
242 : : tree
243 : 29664 : gfc_class_data_get (tree decl)
244 : : {
245 : 29664 : tree data;
246 : 29664 : if (POINTER_TYPE_P (TREE_TYPE (decl)))
247 : 5083 : decl = build_fold_indirect_ref_loc (input_location, decl);
248 : 29664 : data = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (decl)),
249 : : CLASS_DATA_FIELD);
250 : 29664 : return fold_build3_loc (input_location, COMPONENT_REF,
251 : 29664 : TREE_TYPE (data), decl, data,
252 : 29664 : NULL_TREE);
253 : : }
254 : :
255 : :
256 : : tree
257 : 42523 : gfc_class_vptr_get (tree decl)
258 : : {
259 : 42523 : tree vptr;
260 : : /* For class arrays decl may be a temporary descriptor handle, the vptr is
261 : : then available through the saved descriptor. */
262 : 26389 : if (VAR_P (decl) && DECL_LANG_SPECIFIC (decl)
263 : 44195 : && GFC_DECL_SAVED_DESCRIPTOR (decl))
264 : 1213 : decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
265 : 42523 : if (POINTER_TYPE_P (TREE_TYPE (decl)))
266 : 2266 : decl = build_fold_indirect_ref_loc (input_location, decl);
267 : 42523 : vptr = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (decl)),
268 : : CLASS_VPTR_FIELD);
269 : 42523 : return fold_build3_loc (input_location, COMPONENT_REF,
270 : 42523 : TREE_TYPE (vptr), decl, vptr,
271 : 42523 : NULL_TREE);
272 : : }
273 : :
274 : :
275 : : tree
276 : 6175 : gfc_class_len_get (tree decl)
277 : : {
278 : 6175 : tree len;
279 : : /* For class arrays decl may be a temporary descriptor handle, the len is
280 : : then available through the saved descriptor. */
281 : 4460 : if (VAR_P (decl) && DECL_LANG_SPECIFIC (decl)
282 : 6424 : && GFC_DECL_SAVED_DESCRIPTOR (decl))
283 : 85 : decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
284 : 6175 : if (POINTER_TYPE_P (TREE_TYPE (decl)))
285 : 656 : decl = build_fold_indirect_ref_loc (input_location, decl);
286 : 6175 : len = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (decl)),
287 : : CLASS_LEN_FIELD);
288 : 6175 : return fold_build3_loc (input_location, COMPONENT_REF,
289 : 6175 : TREE_TYPE (len), decl, len,
290 : 6175 : NULL_TREE);
291 : : }
292 : :
293 : :
294 : : /* Try to get the _len component of a class. When the class is not unlimited
295 : : poly, i.e. no _len field exists, then return a zero node. */
296 : :
297 : : static tree
298 : 4634 : gfc_class_len_or_zero_get (tree decl)
299 : : {
300 : 4634 : tree len;
301 : : /* For class arrays decl may be a temporary descriptor handle, the vptr is
302 : : then available through the saved descriptor. */
303 : 2789 : if (VAR_P (decl) && DECL_LANG_SPECIFIC (decl)
304 : 4676 : && GFC_DECL_SAVED_DESCRIPTOR (decl))
305 : 0 : decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
306 : 4634 : if (POINTER_TYPE_P (TREE_TYPE (decl)))
307 : 0 : decl = build_fold_indirect_ref_loc (input_location, decl);
308 : 4634 : len = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (decl)),
309 : : CLASS_LEN_FIELD);
310 : 6311 : return len != NULL_TREE ? fold_build3_loc (input_location, COMPONENT_REF,
311 : 1677 : TREE_TYPE (len), decl, len,
312 : : NULL_TREE)
313 : 2957 : : build_zero_cst (gfc_charlen_type_node);
314 : : }
315 : :
316 : :
317 : : tree
318 : 4493 : gfc_resize_class_size_with_len (stmtblock_t * block, tree class_expr, tree size)
319 : : {
320 : 4493 : tree tmp;
321 : 4493 : tree tmp2;
322 : 4493 : tree type;
323 : :
324 : 4493 : tmp = gfc_class_len_or_zero_get (class_expr);
325 : :
326 : : /* Include the len value in the element size if present. */
327 : 4493 : if (!integer_zerop (tmp))
328 : : {
329 : 1536 : type = TREE_TYPE (size);
330 : 1536 : if (block)
331 : : {
332 : 871 : size = gfc_evaluate_now (size, block);
333 : 871 : tmp = gfc_evaluate_now (fold_convert (type , tmp), block);
334 : : }
335 : : else
336 : 665 : tmp = fold_convert (type , tmp);
337 : 1536 : tmp2 = fold_build2_loc (input_location, MULT_EXPR,
338 : : type, size, tmp);
339 : 1536 : tmp = fold_build2_loc (input_location, GT_EXPR,
340 : : logical_type_node, tmp,
341 : : build_zero_cst (type));
342 : 1536 : size = fold_build3_loc (input_location, COND_EXPR,
343 : : type, tmp, tmp2, size);
344 : : }
345 : : else
346 : : return size;
347 : :
348 : 1536 : if (block)
349 : 871 : size = gfc_evaluate_now (size, block);
350 : :
351 : : return size;
352 : : }
353 : :
354 : :
355 : : /* Get the specified FIELD from the VPTR. */
356 : :
357 : : static tree
358 : 19296 : vptr_field_get (tree vptr, int fieldno)
359 : : {
360 : 19296 : tree field;
361 : 19296 : vptr = build_fold_indirect_ref_loc (input_location, vptr);
362 : 19296 : field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (vptr)),
363 : : fieldno);
364 : 19296 : field = fold_build3_loc (input_location, COMPONENT_REF,
365 : 19296 : TREE_TYPE (field), vptr, field,
366 : : NULL_TREE);
367 : 19296 : gcc_assert (field);
368 : 19296 : return field;
369 : : }
370 : :
371 : :
372 : : /* Get the field from the class' vptr. */
373 : :
374 : : static tree
375 : 9239 : class_vtab_field_get (tree decl, int fieldno)
376 : : {
377 : 9239 : tree vptr;
378 : 9239 : vptr = gfc_class_vptr_get (decl);
379 : 9239 : return vptr_field_get (vptr, fieldno);
380 : : }
381 : :
382 : :
383 : : /* Define a macro for creating the class_vtab_* and vptr_* accessors in
384 : : unison. */
385 : : #define VTAB_GET_FIELD_GEN(name, field) tree \
386 : : gfc_class_vtab_## name ##_get (tree cl) \
387 : : { \
388 : : return class_vtab_field_get (cl, field); \
389 : : } \
390 : : \
391 : : tree \
392 : : gfc_vptr_## name ##_get (tree vptr) \
393 : : { \
394 : : return vptr_field_get (vptr, field); \
395 : : }
396 : :
397 : 171 : VTAB_GET_FIELD_GEN (hash, VTABLE_HASH_FIELD)
398 : 0 : VTAB_GET_FIELD_GEN (extends, VTABLE_EXTENDS_FIELD)
399 : 0 : VTAB_GET_FIELD_GEN (def_init, VTABLE_DEF_INIT_FIELD)
400 : 4102 : VTAB_GET_FIELD_GEN (copy, VTABLE_COPY_FIELD)
401 : 1716 : VTAB_GET_FIELD_GEN (final, VTABLE_FINAL_FIELD)
402 : 484 : VTAB_GET_FIELD_GEN (deallocate, VTABLE_DEALLOCATE_FIELD)
403 : : #undef VTAB_GET_FIELD_GEN
404 : :
405 : : /* The size field is returned as an array index type. Therefore treat
406 : : it and only it specially. */
407 : :
408 : : tree
409 : 7352 : gfc_class_vtab_size_get (tree cl)
410 : : {
411 : 7352 : tree size;
412 : 7352 : size = class_vtab_field_get (cl, VTABLE_SIZE_FIELD);
413 : : /* Always return size as an array index type. */
414 : 7352 : size = fold_convert (gfc_array_index_type, size);
415 : 7352 : gcc_assert (size);
416 : 7352 : return size;
417 : : }
418 : :
419 : : tree
420 : 5471 : gfc_vptr_size_get (tree vptr)
421 : : {
422 : 5471 : tree size;
423 : 5471 : size = vptr_field_get (vptr, VTABLE_SIZE_FIELD);
424 : : /* Always return size as an array index type. */
425 : 5471 : size = fold_convert (gfc_array_index_type, size);
426 : 5471 : gcc_assert (size);
427 : 5471 : return size;
428 : : }
429 : :
430 : :
431 : : #undef CLASS_DATA_FIELD
432 : : #undef CLASS_VPTR_FIELD
433 : : #undef CLASS_LEN_FIELD
434 : : #undef VTABLE_HASH_FIELD
435 : : #undef VTABLE_SIZE_FIELD
436 : : #undef VTABLE_EXTENDS_FIELD
437 : : #undef VTABLE_DEF_INIT_FIELD
438 : : #undef VTABLE_COPY_FIELD
439 : : #undef VTABLE_FINAL_FIELD
440 : :
441 : :
442 : : /* IF ts is null (default), search for the last _class ref in the chain
443 : : of references of the expression and cut the chain there. Although
444 : : this routine is similiar to class.cc:gfc_add_component_ref (), there
445 : : is a significant difference: gfc_add_component_ref () concentrates
446 : : on an array ref that is the last ref in the chain and is oblivious
447 : : to the kind of refs following.
448 : : ELSE IF ts is non-null the cut is at the class entity or component
449 : : that is followed by an array reference, which is not an element.
450 : : These calls come from trans-array.cc:build_class_array_ref, which
451 : : handles scalarized class array references.*/
452 : :
453 : : gfc_expr *
454 : 8731 : gfc_find_and_cut_at_last_class_ref (gfc_expr *e, bool is_mold,
455 : : gfc_typespec **ts)
456 : : {
457 : 8731 : gfc_expr *base_expr;
458 : 8731 : gfc_ref *ref, *class_ref, *tail = NULL, *array_ref;
459 : :
460 : : /* Find the last class reference. */
461 : 8731 : class_ref = NULL;
462 : 8731 : array_ref = NULL;
463 : :
464 : 8731 : if (ts)
465 : : {
466 : 381 : if (e->symtree
467 : 356 : && e->symtree->n.sym->ts.type == BT_CLASS)
468 : 356 : *ts = &e->symtree->n.sym->ts;
469 : : else
470 : 25 : *ts = NULL;
471 : : }
472 : :
473 : 21775 : for (ref = e->ref; ref; ref = ref->next)
474 : : {
475 : 13410 : if (ts)
476 : : {
477 : 930 : if (ref->type == REF_COMPONENT
478 : 436 : && ref->u.c.component->ts.type == BT_CLASS
479 : 0 : && ref->next && ref->next->type == REF_COMPONENT
480 : 0 : && !strcmp (ref->next->u.c.component->name, "_data")
481 : 0 : && ref->next->next
482 : 0 : && ref->next->next->type == REF_ARRAY
483 : 0 : && ref->next->next->u.ar.type != AR_ELEMENT)
484 : : {
485 : 0 : *ts = &ref->u.c.component->ts;
486 : 0 : class_ref = ref;
487 : 0 : break;
488 : : }
489 : :
490 : 930 : if (ref->next == NULL)
491 : : break;
492 : : }
493 : : else
494 : : {
495 : 12480 : if (ref->type == REF_ARRAY && ref->u.ar.type != AR_ELEMENT)
496 : 12480 : array_ref = ref;
497 : :
498 : 12480 : if (ref->type == REF_COMPONENT
499 : 7590 : && ref->u.c.component->ts.type == BT_CLASS)
500 : : {
501 : : /* Component to the right of a part reference with nonzero
502 : : rank must not have the ALLOCATABLE attribute. If attempts
503 : : are made to reference such a component reference, an error
504 : : results followed by an ICE. */
505 : 1507 : if (array_ref
506 : 10 : && CLASS_DATA (ref->u.c.component)->attr.allocatable)
507 : : return NULL;
508 : : class_ref = ref;
509 : : }
510 : : }
511 : : }
512 : :
513 : 8721 : if (ts && *ts == NULL)
514 : : return NULL;
515 : :
516 : : /* Remove and store all subsequent references after the
517 : : CLASS reference. */
518 : 8696 : if (class_ref)
519 : : {
520 : 1317 : tail = class_ref->next;
521 : 1317 : class_ref->next = NULL;
522 : : }
523 : 7379 : else if (e->symtree && e->symtree->n.sym->ts.type == BT_CLASS)
524 : : {
525 : 7361 : tail = e->ref;
526 : 7361 : e->ref = NULL;
527 : : }
528 : :
529 : 8696 : if (is_mold)
530 : 61 : base_expr = gfc_expr_to_initialize (e);
531 : : else
532 : 8635 : base_expr = gfc_copy_expr (e);
533 : :
534 : : /* Restore the original tail expression. */
535 : 8696 : if (class_ref)
536 : : {
537 : 1317 : gfc_free_ref_list (class_ref->next);
538 : 1317 : class_ref->next = tail;
539 : : }
540 : 7379 : else if (e->symtree && e->symtree->n.sym->ts.type == BT_CLASS)
541 : : {
542 : 7361 : gfc_free_ref_list (e->ref);
543 : 7361 : e->ref = tail;
544 : : }
545 : : return base_expr;
546 : : }
547 : :
548 : : /* Reset the vptr to the declared type, e.g. after deallocation.
549 : : Use the variable in CLASS_CONTAINER if available. Otherwise, recreate
550 : : one with e or class_type. At least one of the two has to be set. The
551 : : generated assignment code is added at the end of BLOCK. */
552 : :
553 : : void
554 : 10288 : gfc_reset_vptr (stmtblock_t *block, gfc_expr *e, tree class_container,
555 : : gfc_symbol *class_type)
556 : : {
557 : 10288 : tree vptr = NULL_TREE;
558 : :
559 : 10288 : if (class_container != NULL_TREE)
560 : 6059 : vptr = gfc_get_vptr_from_expr (class_container);
561 : :
562 : 6059 : if (vptr == NULL_TREE)
563 : : {
564 : 4236 : gfc_se se;
565 : 4236 : gcc_assert (e);
566 : :
567 : : /* Evaluate the expression and obtain the vptr from it. */
568 : 4236 : gfc_init_se (&se, NULL);
569 : 4236 : if (e->rank)
570 : 2094 : gfc_conv_expr_descriptor (&se, e);
571 : : else
572 : 2142 : gfc_conv_expr (&se, e);
573 : 4236 : gfc_add_block_to_block (block, &se.pre);
574 : :
575 : 4236 : vptr = gfc_get_vptr_from_expr (se.expr);
576 : : }
577 : :
578 : : /* If a vptr is not found, we can do nothing more. */
579 : 4236 : if (vptr == NULL_TREE)
580 : : return;
581 : :
582 : 10278 : if (UNLIMITED_POLY (e)
583 : 9334 : || UNLIMITED_POLY (class_type)
584 : : /* When the class_type's source is not a symbol (e.g. a component's ts),
585 : : then look at the _data-components type. */
586 : 1406 : || (class_type != NULL && class_type->ts.type == BT_UNKNOWN
587 : 1406 : && class_type->components && class_type->components->ts.u.derived
588 : 1400 : && class_type->components->ts.u.derived->attr.unlimited_polymorphic))
589 : 1077 : gfc_add_modify (block, vptr, build_int_cst (TREE_TYPE (vptr), 0));
590 : : else
591 : : {
592 : 9201 : gfc_symbol *vtab, *type = nullptr;
593 : 9201 : tree vtable;
594 : :
595 : 9201 : if (e)
596 : 7928 : type = e->ts.u.derived;
597 : 1273 : else if (class_type)
598 : : {
599 : 1273 : if (class_type->ts.type == BT_CLASS)
600 : 0 : type = CLASS_DATA (class_type)->ts.u.derived;
601 : : else
602 : : type = class_type;
603 : : }
604 : 7928 : gcc_assert (type);
605 : : /* Return the vptr to the address of the declared type. */
606 : 9201 : vtab = gfc_find_derived_vtab (type);
607 : 9201 : vtable = vtab->backend_decl;
608 : 9201 : if (vtable == NULL_TREE)
609 : 70 : vtable = gfc_get_symbol_decl (vtab);
610 : 9201 : vtable = gfc_build_addr_expr (NULL, vtable);
611 : 9201 : vtable = fold_convert (TREE_TYPE (vptr), vtable);
612 : 9201 : gfc_add_modify (block, vptr, vtable);
613 : : }
614 : : }
615 : :
616 : : /* Set the vptr of a class in to from the type given in from. If from is NULL,
617 : : then reset the vptr to the default or to. */
618 : :
619 : : void
620 : 216 : gfc_class_set_vptr (stmtblock_t *block, tree to, tree from)
621 : : {
622 : 216 : tree tmp, vptr_ref;
623 : 216 : gfc_symbol *type;
624 : :
625 : 216 : vptr_ref = gfc_get_vptr_from_expr (to);
626 : 252 : if (POINTER_TYPE_P (TREE_TYPE (from))
627 : 216 : && GFC_CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (from))))
628 : : {
629 : 44 : gfc_add_modify (block, vptr_ref,
630 : 22 : fold_convert (TREE_TYPE (vptr_ref),
631 : : gfc_get_vptr_from_expr (from)));
632 : 238 : return;
633 : : }
634 : 194 : tmp = gfc_get_vptr_from_expr (from);
635 : 194 : if (tmp)
636 : : {
637 : 158 : gfc_add_modify (block, vptr_ref,
638 : 158 : fold_convert (TREE_TYPE (vptr_ref), tmp));
639 : 158 : return;
640 : : }
641 : 36 : if (VAR_P (from)
642 : 36 : && strncmp (IDENTIFIER_POINTER (DECL_NAME (from)), "__vtab", 6) == 0)
643 : : {
644 : 36 : gfc_add_modify (block, vptr_ref,
645 : 36 : gfc_build_addr_expr (TREE_TYPE (vptr_ref), from));
646 : 36 : return;
647 : : }
648 : 0 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (from)))
649 : 0 : && GFC_CLASS_TYPE_P (
650 : : TREE_TYPE (TREE_OPERAND (TREE_OPERAND (from, 0), 0))))
651 : : {
652 : 0 : gfc_add_modify (block, vptr_ref,
653 : 0 : fold_convert (TREE_TYPE (vptr_ref),
654 : : gfc_get_vptr_from_expr (TREE_OPERAND (
655 : : TREE_OPERAND (from, 0), 0))));
656 : 0 : return;
657 : : }
658 : :
659 : : /* If nothing of the above matches, set the vtype according to the type. */
660 : 0 : tmp = TREE_TYPE (from);
661 : 0 : if (POINTER_TYPE_P (tmp))
662 : 0 : tmp = TREE_TYPE (tmp);
663 : 0 : gfc_find_symbol (IDENTIFIER_POINTER (TYPE_NAME (tmp)), gfc_current_ns, 1,
664 : : &type);
665 : 0 : tmp = gfc_find_derived_vtab (type)->backend_decl;
666 : 0 : gcc_assert (tmp);
667 : 0 : gfc_add_modify (block, vptr_ref,
668 : 0 : gfc_build_addr_expr (TREE_TYPE (vptr_ref), tmp));
669 : : }
670 : :
671 : : /* Reset the len for unlimited polymorphic objects. */
672 : :
673 : : void
674 : 563 : gfc_reset_len (stmtblock_t *block, gfc_expr *expr)
675 : : {
676 : 563 : gfc_expr *e;
677 : 563 : gfc_se se_len;
678 : 563 : e = gfc_find_and_cut_at_last_class_ref (expr);
679 : 563 : if (e == NULL)
680 : 0 : return;
681 : 563 : gfc_add_len_component (e);
682 : 563 : gfc_init_se (&se_len, NULL);
683 : 563 : gfc_conv_expr (&se_len, e);
684 : 563 : gfc_add_modify (block, se_len.expr,
685 : 563 : fold_convert (TREE_TYPE (se_len.expr), integer_zero_node));
686 : 563 : gfc_free_expr (e);
687 : : }
688 : :
689 : :
690 : : /* Obtain the last class reference in a gfc_expr. Return NULL_TREE if no class
691 : : reference is found. Note that it is up to the caller to avoid using this
692 : : for expressions other than variables. */
693 : :
694 : : tree
695 : 1252 : gfc_get_class_from_gfc_expr (gfc_expr *e)
696 : : {
697 : 1252 : gfc_expr *class_expr;
698 : 1252 : gfc_se cse;
699 : 1252 : class_expr = gfc_find_and_cut_at_last_class_ref (e);
700 : 1252 : if (class_expr == NULL)
701 : : return NULL_TREE;
702 : 1252 : gfc_init_se (&cse, NULL);
703 : 1252 : gfc_conv_expr (&cse, class_expr);
704 : 1252 : gfc_free_expr (class_expr);
705 : 1252 : return cse.expr;
706 : : }
707 : :
708 : :
709 : : /* Obtain the last class reference in an expression.
710 : : Return NULL_TREE if no class reference is found. */
711 : :
712 : : tree
713 : 99053 : gfc_get_class_from_expr (tree expr)
714 : : {
715 : 99053 : tree tmp;
716 : 99053 : tree type;
717 : :
718 : 257379 : for (tmp = expr; tmp; tmp = TREE_OPERAND (tmp, 0))
719 : : {
720 : 257379 : if (CONSTANT_CLASS_P (tmp))
721 : : return NULL_TREE;
722 : :
723 : 257348 : type = TREE_TYPE (tmp);
724 : 299346 : while (type)
725 : : {
726 : 291820 : if (GFC_CLASS_TYPE_P (type))
727 : : return tmp;
728 : 273280 : if (type != TYPE_CANONICAL (type))
729 : 41998 : type = TYPE_CANONICAL (type);
730 : : else
731 : : type = NULL_TREE;
732 : : }
733 : 238808 : if (VAR_P (tmp) || TREE_CODE (tmp) == PARM_DECL)
734 : : break;
735 : : }
736 : :
737 : 80482 : if (POINTER_TYPE_P (TREE_TYPE (tmp)))
738 : 53067 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
739 : :
740 : 80482 : if (GFC_CLASS_TYPE_P (TREE_TYPE (tmp)))
741 : : return tmp;
742 : :
743 : : return NULL_TREE;
744 : : }
745 : :
746 : :
747 : : /* Obtain the vptr of the last class reference in an expression.
748 : : Return NULL_TREE if no class reference is found. */
749 : :
750 : : tree
751 : 10895 : gfc_get_vptr_from_expr (tree expr)
752 : : {
753 : 10895 : tree tmp;
754 : :
755 : 10895 : tmp = gfc_get_class_from_expr (expr);
756 : :
757 : 10895 : if (tmp != NULL_TREE)
758 : 10842 : return gfc_class_vptr_get (tmp);
759 : :
760 : : return NULL_TREE;
761 : : }
762 : :
763 : : void
764 : 1982 : gfc_class_array_data_assign (stmtblock_t *block, tree lhs_desc, tree rhs_desc,
765 : : bool lhs_type)
766 : : {
767 : 1982 : tree tmp, tmp2, type;
768 : :
769 : 1982 : gfc_conv_descriptor_data_set (block, lhs_desc,
770 : : gfc_conv_descriptor_data_get (rhs_desc));
771 : 1982 : gfc_conv_descriptor_offset_set (block, lhs_desc,
772 : : gfc_conv_descriptor_offset_get (rhs_desc));
773 : :
774 : 1982 : gfc_add_modify (block, gfc_conv_descriptor_dtype (lhs_desc),
775 : : gfc_conv_descriptor_dtype (rhs_desc));
776 : :
777 : : /* Assign the dimension as range-ref. */
778 : 1982 : tmp = gfc_get_descriptor_dimension (lhs_desc);
779 : 1982 : tmp2 = gfc_get_descriptor_dimension (rhs_desc);
780 : :
781 : 1982 : type = lhs_type ? TREE_TYPE (tmp) : TREE_TYPE (tmp2);
782 : 1982 : tmp = build4_loc (input_location, ARRAY_RANGE_REF, type, tmp,
783 : : gfc_index_zero_node, NULL_TREE, NULL_TREE);
784 : 1982 : tmp2 = build4_loc (input_location, ARRAY_RANGE_REF, type, tmp2,
785 : : gfc_index_zero_node, NULL_TREE, NULL_TREE);
786 : 1982 : gfc_add_modify (block, tmp, tmp2);
787 : 1982 : }
788 : :
789 : : /* Takes a derived type expression and returns the address of a temporary
790 : : class object of the 'declared' type. If opt_vptr_src is not NULL, this is
791 : : used for the temporary class object.
792 : : optional_alloc_ptr is false when the dummy is neither allocatable
793 : : nor a pointer; that's only relevant for the optional handling.
794 : : The optional argument 'derived_array' is used to preserve the parmse
795 : : expression for deallocation of allocatable components. Assumed rank
796 : : formal arguments made this necessary. */
797 : : void
798 : 4659 : gfc_conv_derived_to_class (gfc_se *parmse, gfc_expr *e, gfc_symbol *fsym,
799 : : tree opt_vptr_src, bool optional,
800 : : bool optional_alloc_ptr, const char *proc_name,
801 : : tree *derived_array)
802 : : {
803 : 4659 : tree cond_optional = NULL_TREE;
804 : 4659 : gfc_ss *ss;
805 : 4659 : tree ctree;
806 : 4659 : tree var;
807 : 4659 : tree tmp;
808 : 4659 : tree packed = NULL_TREE;
809 : :
810 : : /* The derived type needs to be converted to a temporary CLASS object. */
811 : 4659 : tmp = gfc_typenode_for_spec (&fsym->ts);
812 : 4659 : var = gfc_create_var (tmp, "class");
813 : :
814 : : /* Set the vptr. */
815 : 4659 : if (opt_vptr_src)
816 : 116 : gfc_class_set_vptr (&parmse->pre, var, opt_vptr_src);
817 : : else
818 : 4543 : gfc_reset_vptr (&parmse->pre, e, var);
819 : :
820 : : /* Now set the data field. */
821 : 4659 : ctree = gfc_class_data_get (var);
822 : :
823 : 4659 : if (flag_coarray == GFC_FCOARRAY_LIB && CLASS_DATA (fsym)->attr.codimension)
824 : : {
825 : 2 : tree token;
826 : 2 : tmp = gfc_get_tree_for_caf_expr (e);
827 : 2 : if (POINTER_TYPE_P (TREE_TYPE (tmp)))
828 : 1 : tmp = build_fold_indirect_ref (tmp);
829 : 2 : gfc_get_caf_token_offset (parmse, &token, nullptr, tmp, NULL_TREE, e);
830 : 2 : gfc_add_modify (&parmse->pre, gfc_conv_descriptor_token (ctree), token);
831 : : }
832 : :
833 : 4659 : if (optional)
834 : 576 : cond_optional = gfc_conv_expr_present (e->symtree->n.sym);
835 : :
836 : : /* Set the _len as early as possible. */
837 : 4659 : if (fsym->ts.u.derived->components->ts.type == BT_DERIVED
838 : 4659 : && fsym->ts.u.derived->components->ts.u.derived->attr
839 : 4659 : .unlimited_polymorphic)
840 : : {
841 : : /* Take care about initializing the _len component correctly. */
842 : 374 : tree len_tree = gfc_class_len_get (var);
843 : 374 : if (UNLIMITED_POLY (e))
844 : : {
845 : 12 : gfc_expr *len;
846 : 12 : gfc_se se;
847 : :
848 : 12 : len = gfc_find_and_cut_at_last_class_ref (e);
849 : 12 : gfc_add_len_component (len);
850 : 12 : gfc_init_se (&se, NULL);
851 : 12 : gfc_conv_expr (&se, len);
852 : 12 : if (optional)
853 : 0 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (se.expr),
854 : : cond_optional, se.expr,
855 : 0 : fold_convert (TREE_TYPE (se.expr),
856 : : integer_zero_node));
857 : : else
858 : 12 : tmp = se.expr;
859 : 12 : gfc_free_expr (len);
860 : 12 : }
861 : : else
862 : 362 : tmp = integer_zero_node;
863 : 374 : gfc_add_modify (&parmse->pre, len_tree,
864 : 374 : fold_convert (TREE_TYPE (len_tree), tmp));
865 : : }
866 : :
867 : 4659 : if (parmse->expr && POINTER_TYPE_P (TREE_TYPE (parmse->expr)))
868 : : {
869 : : /* If there is a ready made pointer to a derived type, use it
870 : : rather than evaluating the expression again. */
871 : 498 : tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
872 : 498 : gfc_add_modify (&parmse->pre, ctree, tmp);
873 : : }
874 : 4161 : else if (parmse->ss && parmse->ss->info && parmse->ss->info->useflags)
875 : : {
876 : : /* For an array reference in an elemental procedure call we need
877 : : to retain the ss to provide the scalarized array reference. */
878 : 245 : gfc_conv_expr_reference (parmse, e);
879 : 245 : tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
880 : 245 : if (optional)
881 : 0 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
882 : : cond_optional, tmp,
883 : 0 : fold_convert (TREE_TYPE (tmp), null_pointer_node));
884 : 245 : gfc_add_modify (&parmse->pre, ctree, tmp);
885 : : }
886 : : else
887 : : {
888 : 3916 : ss = gfc_walk_expr (e);
889 : 3916 : if (ss == gfc_ss_terminator)
890 : : {
891 : 2711 : parmse->ss = NULL;
892 : 2711 : gfc_conv_expr_reference (parmse, e);
893 : :
894 : : /* Scalar to an assumed-rank array. */
895 : 2711 : if (fsym->ts.u.derived->components->as)
896 : : {
897 : 321 : tree type;
898 : 321 : type = get_scalar_to_descriptor_type (parmse->expr,
899 : : gfc_expr_attr (e));
900 : 321 : gfc_add_modify (&parmse->pre, gfc_conv_descriptor_dtype (ctree),
901 : : gfc_get_dtype (type));
902 : 321 : if (optional)
903 : 192 : parmse->expr = build3_loc (input_location, COND_EXPR,
904 : 96 : TREE_TYPE (parmse->expr),
905 : : cond_optional, parmse->expr,
906 : 96 : fold_convert (TREE_TYPE (parmse->expr),
907 : : null_pointer_node));
908 : 321 : gfc_conv_descriptor_data_set (&parmse->pre, ctree, parmse->expr);
909 : : }
910 : : else
911 : : {
912 : 2390 : tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
913 : 2390 : if (optional)
914 : 132 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
915 : : cond_optional, tmp,
916 : 132 : fold_convert (TREE_TYPE (tmp),
917 : : null_pointer_node));
918 : 2390 : gfc_add_modify (&parmse->pre, ctree, tmp);
919 : : }
920 : : }
921 : : else
922 : : {
923 : 1205 : stmtblock_t block;
924 : 1205 : gfc_init_block (&block);
925 : 1205 : gfc_ref *ref;
926 : 1205 : int dim;
927 : 1205 : tree lbshift = NULL_TREE;
928 : :
929 : : /* Array refs with sections indicate, that a for a formal argument
930 : : expecting contiguous repacking needs to be done. */
931 : 2265 : for (ref = e->ref; ref; ref = ref->next)
932 : 1210 : if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
933 : : break;
934 : 1205 : if (IS_CLASS_ARRAY (fsym)
935 : 1097 : && (CLASS_DATA (fsym)->as->type == AS_EXPLICIT
936 : 839 : || CLASS_DATA (fsym)->as->type == AS_ASSUMED_SIZE)
937 : 354 : && (ref || e->rank != fsym->ts.u.derived->components->as->rank))
938 : 144 : fsym->attr.contiguous = 1;
939 : :
940 : : /* Detect any array references with vector subscripts. */
941 : 2409 : for (ref = e->ref; ref; ref = ref->next)
942 : 1210 : if (ref->type == REF_ARRAY && ref->u.ar.type != AR_ELEMENT
943 : 1168 : && ref->u.ar.type != AR_FULL)
944 : : {
945 : 336 : for (dim = 0; dim < ref->u.ar.dimen; dim++)
946 : 192 : if (ref->u.ar.dimen_type[dim] == DIMEN_VECTOR)
947 : : break;
948 : 150 : if (dim < ref->u.ar.dimen)
949 : : break;
950 : : }
951 : : /* Array references with vector subscripts and non-variable
952 : : expressions need be converted to a one-based descriptor. */
953 : 1205 : if (ref || e->expr_type != EXPR_VARIABLE)
954 : 43 : lbshift = gfc_index_one_node;
955 : :
956 : 1205 : parmse->expr = var;
957 : 1205 : gfc_conv_array_parameter (parmse, e, false, fsym, proc_name, nullptr,
958 : : &lbshift, &packed);
959 : :
960 : 1205 : if (derived_array && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (parmse->expr)))
961 : : {
962 : 1109 : *derived_array
963 : 1109 : = gfc_create_var (TREE_TYPE (parmse->expr), "array");
964 : 1109 : gfc_add_modify (&block, *derived_array, parmse->expr);
965 : : }
966 : :
967 : 1205 : if (optional)
968 : : {
969 : 348 : tmp = gfc_finish_block (&block);
970 : :
971 : 348 : gfc_init_block (&block);
972 : 348 : gfc_conv_descriptor_data_set (&block, ctree, null_pointer_node);
973 : 348 : if (derived_array && *derived_array != NULL_TREE)
974 : 348 : gfc_conv_descriptor_data_set (&block, *derived_array,
975 : : null_pointer_node);
976 : :
977 : 348 : tmp = build3_v (COND_EXPR, cond_optional, tmp,
978 : : gfc_finish_block (&block));
979 : 348 : gfc_add_expr_to_block (&parmse->pre, tmp);
980 : : }
981 : : else
982 : 857 : gfc_add_block_to_block (&parmse->pre, &block);
983 : : }
984 : : }
985 : :
986 : : /* Pass the address of the class object. */
987 : 4659 : if (packed)
988 : 96 : parmse->expr = packed;
989 : : else
990 : 4563 : parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
991 : :
992 : 4659 : if (optional && optional_alloc_ptr)
993 : 84 : parmse->expr
994 : 84 : = build3_loc (input_location, COND_EXPR, TREE_TYPE (parmse->expr),
995 : : cond_optional, parmse->expr,
996 : 84 : fold_convert (TREE_TYPE (parmse->expr), null_pointer_node));
997 : 4659 : }
998 : :
999 : : /* Create a new class container, which is required as scalar coarrays
1000 : : have an array descriptor while normal scalars haven't. Optionally,
1001 : : NULL pointer checks are added if the argument is OPTIONAL. */
1002 : :
1003 : : static void
1004 : 48 : class_scalar_coarray_to_class (gfc_se *parmse, gfc_expr *e,
1005 : : gfc_typespec class_ts, bool optional)
1006 : : {
1007 : 48 : tree var, ctree, tmp;
1008 : 48 : stmtblock_t block;
1009 : 48 : gfc_ref *ref;
1010 : 48 : gfc_ref *class_ref;
1011 : :
1012 : 48 : gfc_init_block (&block);
1013 : :
1014 : 48 : class_ref = NULL;
1015 : 144 : for (ref = e->ref; ref; ref = ref->next)
1016 : : {
1017 : 96 : if (ref->type == REF_COMPONENT
1018 : 48 : && ref->u.c.component->ts.type == BT_CLASS)
1019 : 96 : class_ref = ref;
1020 : : }
1021 : :
1022 : 48 : if (class_ref == NULL
1023 : 48 : && e->symtree && e->symtree->n.sym->ts.type == BT_CLASS)
1024 : 48 : tmp = e->symtree->n.sym->backend_decl;
1025 : : else
1026 : : {
1027 : : /* Remove everything after the last class reference, convert the
1028 : : expression and then recover its tailend once more. */
1029 : 0 : gfc_se tmpse;
1030 : 0 : ref = class_ref->next;
1031 : 0 : class_ref->next = NULL;
1032 : 0 : gfc_init_se (&tmpse, NULL);
1033 : 0 : gfc_conv_expr (&tmpse, e);
1034 : 0 : class_ref->next = ref;
1035 : 0 : tmp = tmpse.expr;
1036 : : }
1037 : :
1038 : 48 : var = gfc_typenode_for_spec (&class_ts);
1039 : 48 : var = gfc_create_var (var, "class");
1040 : :
1041 : 48 : ctree = gfc_class_vptr_get (var);
1042 : 96 : gfc_add_modify (&block, ctree,
1043 : 48 : fold_convert (TREE_TYPE (ctree), gfc_class_vptr_get (tmp)));
1044 : :
1045 : 48 : ctree = gfc_class_data_get (var);
1046 : 48 : tmp = gfc_conv_descriptor_data_get (
1047 : 48 : gfc_class_data_get (GFC_CLASS_TYPE_P (TREE_TYPE (TREE_TYPE (tmp)))
1048 : : ? tmp
1049 : 24 : : GFC_DECL_SAVED_DESCRIPTOR (tmp)));
1050 : 48 : gfc_add_modify (&block, ctree, fold_convert (TREE_TYPE (ctree), tmp));
1051 : :
1052 : : /* Pass the address of the class object. */
1053 : 48 : parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
1054 : :
1055 : 48 : if (optional)
1056 : : {
1057 : 48 : tree cond = gfc_conv_expr_present (e->symtree->n.sym);
1058 : 48 : tree tmp2;
1059 : :
1060 : 48 : tmp = gfc_finish_block (&block);
1061 : :
1062 : 48 : gfc_init_block (&block);
1063 : 48 : tmp2 = gfc_class_data_get (var);
1064 : 48 : gfc_add_modify (&block, tmp2, fold_convert (TREE_TYPE (tmp2),
1065 : : null_pointer_node));
1066 : 48 : tmp2 = gfc_finish_block (&block);
1067 : :
1068 : 48 : tmp = build3_loc (input_location, COND_EXPR, void_type_node,
1069 : : cond, tmp, tmp2);
1070 : 48 : gfc_add_expr_to_block (&parmse->pre, tmp);
1071 : : }
1072 : : else
1073 : 0 : gfc_add_block_to_block (&parmse->pre, &block);
1074 : 48 : }
1075 : :
1076 : :
1077 : : /* Takes an intrinsic type expression and returns the address of a temporary
1078 : : class object of the 'declared' type. */
1079 : : void
1080 : 822 : gfc_conv_intrinsic_to_class (gfc_se *parmse, gfc_expr *e,
1081 : : gfc_typespec class_ts)
1082 : : {
1083 : 822 : gfc_symbol *vtab;
1084 : 822 : gfc_ss *ss;
1085 : 822 : tree ctree;
1086 : 822 : tree var;
1087 : 822 : tree tmp;
1088 : 822 : int dim;
1089 : 822 : bool unlimited_poly;
1090 : :
1091 : 1644 : unlimited_poly = class_ts.type == BT_CLASS
1092 : 822 : && class_ts.u.derived->components->ts.type == BT_DERIVED
1093 : 822 : && class_ts.u.derived->components->ts.u.derived
1094 : 822 : ->attr.unlimited_polymorphic;
1095 : :
1096 : : /* The intrinsic type needs to be converted to a temporary
1097 : : CLASS object. */
1098 : 822 : tmp = gfc_typenode_for_spec (&class_ts);
1099 : 822 : var = gfc_create_var (tmp, "class");
1100 : :
1101 : : /* Force a temporary for component or substring references. */
1102 : 822 : if (unlimited_poly
1103 : 822 : && class_ts.u.derived->components->attr.dimension
1104 : : && !class_ts.u.derived->components->attr.allocatable
1105 : 822 : && !class_ts.u.derived->components->attr.class_pointer
1106 : 1427 : && is_subref_array (e))
1107 : 17 : parmse->force_tmp = 1;
1108 : :
1109 : : /* Set the vptr. */
1110 : 822 : ctree = gfc_class_vptr_get (var);
1111 : :
1112 : 822 : vtab = gfc_find_vtab (&e->ts);
1113 : 822 : gcc_assert (vtab);
1114 : 822 : tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
1115 : 822 : gfc_add_modify (&parmse->pre, ctree,
1116 : 822 : fold_convert (TREE_TYPE (ctree), tmp));
1117 : :
1118 : : /* Now set the data field. */
1119 : 822 : ctree = gfc_class_data_get (var);
1120 : 822 : if (parmse->ss && parmse->ss->info->useflags)
1121 : : {
1122 : : /* For an array reference in an elemental procedure call we need
1123 : : to retain the ss to provide the scalarized array reference. */
1124 : 0 : gfc_conv_expr_reference (parmse, e);
1125 : 0 : tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
1126 : 0 : gfc_add_modify (&parmse->pre, ctree, tmp);
1127 : : }
1128 : : else
1129 : : {
1130 : 822 : ss = gfc_walk_expr (e);
1131 : 822 : if (ss == gfc_ss_terminator)
1132 : : {
1133 : 241 : parmse->ss = NULL;
1134 : 241 : gfc_conv_expr_reference (parmse, e);
1135 : 241 : if (class_ts.u.derived->components->as
1136 : 24 : && class_ts.u.derived->components->as->type == AS_ASSUMED_RANK)
1137 : : {
1138 : 24 : tmp = gfc_conv_scalar_to_descriptor (parmse, parmse->expr,
1139 : : gfc_expr_attr (e));
1140 : 24 : tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
1141 : 24 : TREE_TYPE (ctree), tmp);
1142 : : }
1143 : : else
1144 : 217 : tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
1145 : 241 : gfc_add_modify (&parmse->pre, ctree, tmp);
1146 : : }
1147 : : else
1148 : : {
1149 : 581 : parmse->ss = ss;
1150 : 581 : parmse->use_offset = 1;
1151 : 581 : gfc_conv_expr_descriptor (parmse, e);
1152 : :
1153 : : /* Array references with vector subscripts and non-variable expressions
1154 : : need be converted to a one-based descriptor. */
1155 : 581 : if (e->expr_type != EXPR_VARIABLE)
1156 : : {
1157 : 368 : for (dim = 0; dim < e->rank; ++dim)
1158 : 193 : gfc_conv_shift_descriptor_lbound (&parmse->pre, parmse->expr,
1159 : : dim, gfc_index_one_node);
1160 : : }
1161 : :
1162 : 581 : if (class_ts.u.derived->components->as->rank != e->rank)
1163 : : {
1164 : 49 : tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
1165 : 49 : TREE_TYPE (ctree), parmse->expr);
1166 : 49 : gfc_add_modify (&parmse->pre, ctree, tmp);
1167 : : }
1168 : : else
1169 : 532 : gfc_add_modify (&parmse->pre, ctree, parmse->expr);
1170 : : }
1171 : : }
1172 : :
1173 : 822 : gcc_assert (class_ts.type == BT_CLASS);
1174 : 822 : if (unlimited_poly)
1175 : : {
1176 : 822 : ctree = gfc_class_len_get (var);
1177 : : /* When the actual arg is a char array, then set the _len component of the
1178 : : unlimited polymorphic entity to the length of the string. */
1179 : 822 : if (e->ts.type == BT_CHARACTER)
1180 : : {
1181 : : /* Start with parmse->string_length because this seems to be set to a
1182 : : correct value more often. */
1183 : 175 : if (parmse->string_length)
1184 : : tmp = parmse->string_length;
1185 : : /* When the string_length is not yet set, then try the backend_decl of
1186 : : the cl. */
1187 : 0 : else if (e->ts.u.cl->backend_decl)
1188 : : tmp = e->ts.u.cl->backend_decl;
1189 : : /* If both of the above approaches fail, then try to generate an
1190 : : expression from the input, which is only feasible currently, when the
1191 : : expression can be evaluated to a constant one. */
1192 : : else
1193 : : {
1194 : : /* Try to simplify the expression. */
1195 : 0 : gfc_simplify_expr (e, 0);
1196 : 0 : if (e->expr_type == EXPR_CONSTANT && !e->ts.u.cl->resolved)
1197 : : {
1198 : : /* Amazingly all data is present to compute the length of a
1199 : : constant string, but the expression is not yet there. */
1200 : 0 : e->ts.u.cl->length = gfc_get_constant_expr (BT_INTEGER,
1201 : : gfc_charlen_int_kind,
1202 : : &e->where);
1203 : 0 : mpz_set_ui (e->ts.u.cl->length->value.integer,
1204 : 0 : e->value.character.length);
1205 : 0 : gfc_conv_const_charlen (e->ts.u.cl);
1206 : 0 : e->ts.u.cl->resolved = 1;
1207 : 0 : tmp = e->ts.u.cl->backend_decl;
1208 : : }
1209 : : else
1210 : : {
1211 : 0 : gfc_error ("Cannot compute the length of the char array "
1212 : : "at %L.", &e->where);
1213 : : }
1214 : : }
1215 : : }
1216 : : else
1217 : 647 : tmp = integer_zero_node;
1218 : :
1219 : 822 : gfc_add_modify (&parmse->pre, ctree, fold_convert (TREE_TYPE (ctree), tmp));
1220 : : }
1221 : :
1222 : : /* Pass the address of the class object. */
1223 : 822 : parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
1224 : 822 : }
1225 : :
1226 : :
1227 : : /* Takes a scalarized class array expression and returns the
1228 : : address of a temporary scalar class object of the 'declared'
1229 : : type.
1230 : : OOP-TODO: This could be improved by adding code that branched on
1231 : : the dynamic type being the same as the declared type. In this case
1232 : : the original class expression can be passed directly.
1233 : : optional_alloc_ptr is false when the dummy is neither allocatable
1234 : : nor a pointer; that's relevant for the optional handling.
1235 : : Set copyback to true if class container's _data and _vtab pointers
1236 : : might get modified. */
1237 : :
1238 : : void
1239 : 3431 : gfc_conv_class_to_class (gfc_se *parmse, gfc_expr *e, gfc_typespec class_ts,
1240 : : bool elemental, bool copyback, bool optional,
1241 : : bool optional_alloc_ptr)
1242 : : {
1243 : 3431 : tree ctree;
1244 : 3431 : tree var;
1245 : 3431 : tree tmp;
1246 : 3431 : tree vptr;
1247 : 3431 : tree cond = NULL_TREE;
1248 : 3431 : tree slen = NULL_TREE;
1249 : 3431 : gfc_ref *ref;
1250 : 3431 : gfc_ref *class_ref;
1251 : 3431 : stmtblock_t block;
1252 : 3431 : bool full_array = false;
1253 : :
1254 : : /* Class transformational function results are the data field of a class
1255 : : temporary and so the class expression can be obtained directly. */
1256 : 3431 : if (e->expr_type == EXPR_FUNCTION
1257 : 162 : && e->value.function.isym
1258 : 30 : && e->value.function.isym->transformational
1259 : 30 : && TREE_CODE (parmse->expr) == COMPONENT_REF
1260 : 3455 : && !GFC_CLASS_TYPE_P (TREE_TYPE (parmse->expr)))
1261 : : {
1262 : 24 : parmse->expr = TREE_OPERAND (parmse->expr, 0);
1263 : 24 : if (!VAR_P (parmse->expr))
1264 : 0 : parmse->expr = gfc_evaluate_now (parmse->expr, &parmse->pre);
1265 : 24 : parmse->expr = gfc_build_addr_expr (NULL_TREE, parmse->expr);
1266 : 162 : return;
1267 : : }
1268 : :
1269 : 3407 : gfc_init_block (&block);
1270 : :
1271 : 3407 : class_ref = NULL;
1272 : 6835 : for (ref = e->ref; ref; ref = ref->next)
1273 : : {
1274 : 6465 : if (ref->type == REF_COMPONENT
1275 : 3462 : && ref->u.c.component->ts.type == BT_CLASS)
1276 : 6465 : class_ref = ref;
1277 : :
1278 : 6465 : if (ref->next == NULL)
1279 : : break;
1280 : : }
1281 : :
1282 : 3407 : if ((ref == NULL || class_ref == ref)
1283 : 482 : && !(gfc_is_class_array_function (e) && parmse->class_vptr != NULL_TREE)
1284 : 3877 : && (!class_ts.u.derived->components->as
1285 : 379 : || class_ts.u.derived->components->as->rank != -1))
1286 : : return;
1287 : :
1288 : : /* Test for FULL_ARRAY. */
1289 : 3269 : if (e->rank == 0
1290 : 3269 : && ((gfc_expr_attr (e).codimension && gfc_expr_attr (e).dimension)
1291 : 493 : || (class_ts.u.derived->components->as
1292 : 365 : && class_ts.u.derived->components->as->type == AS_ASSUMED_RANK)))
1293 : 405 : full_array = true;
1294 : : else
1295 : 2864 : gfc_is_class_array_ref (e, &full_array);
1296 : :
1297 : : /* The derived type needs to be converted to a temporary
1298 : : CLASS object. */
1299 : 3269 : tmp = gfc_typenode_for_spec (&class_ts);
1300 : 3269 : var = gfc_create_var (tmp, "class");
1301 : :
1302 : : /* Set the data. */
1303 : 3269 : ctree = gfc_class_data_get (var);
1304 : 3269 : if (class_ts.u.derived->components->as
1305 : 3015 : && e->rank != class_ts.u.derived->components->as->rank)
1306 : : {
1307 : 965 : if (e->rank == 0)
1308 : : {
1309 : 356 : tree type = get_scalar_to_descriptor_type (parmse->expr,
1310 : : gfc_expr_attr (e));
1311 : 356 : gfc_add_modify (&block, gfc_conv_descriptor_dtype (ctree),
1312 : : gfc_get_dtype (type));
1313 : :
1314 : 356 : tmp = gfc_class_data_get (parmse->expr);
1315 : 356 : if (!POINTER_TYPE_P (TREE_TYPE (tmp)))
1316 : 12 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
1317 : :
1318 : 356 : gfc_conv_descriptor_data_set (&block, ctree, tmp);
1319 : : }
1320 : : else
1321 : 609 : gfc_class_array_data_assign (&block, ctree, parmse->expr, false);
1322 : : }
1323 : : else
1324 : : {
1325 : 2304 : if (TREE_TYPE (parmse->expr) != TREE_TYPE (ctree))
1326 : 1333 : parmse->expr = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
1327 : 1333 : TREE_TYPE (ctree), parmse->expr);
1328 : 2304 : gfc_add_modify (&block, ctree, parmse->expr);
1329 : : }
1330 : :
1331 : : /* Return the data component, except in the case of scalarized array
1332 : : references, where nullification of the cannot occur and so there
1333 : : is no need. */
1334 : 3269 : if (!elemental && full_array && copyback)
1335 : : {
1336 : 1128 : if (class_ts.u.derived->components->as
1337 : 1128 : && e->rank != class_ts.u.derived->components->as->rank)
1338 : : {
1339 : 270 : if (e->rank == 0)
1340 : : {
1341 : 102 : tmp = gfc_class_data_get (parmse->expr);
1342 : 204 : gfc_add_modify (&parmse->post, tmp,
1343 : 102 : fold_convert (TREE_TYPE (tmp),
1344 : : gfc_conv_descriptor_data_get (ctree)));
1345 : : }
1346 : : else
1347 : 168 : gfc_class_array_data_assign (&parmse->post, parmse->expr, ctree,
1348 : : true);
1349 : : }
1350 : : else
1351 : 858 : gfc_add_modify (&parmse->post, parmse->expr, ctree);
1352 : : }
1353 : :
1354 : : /* Set the vptr. */
1355 : 3269 : ctree = gfc_class_vptr_get (var);
1356 : :
1357 : : /* The vptr is the second field of the actual argument.
1358 : : First we have to find the corresponding class reference. */
1359 : :
1360 : 3269 : tmp = NULL_TREE;
1361 : 3269 : if (gfc_is_class_array_function (e)
1362 : 3269 : && parmse->class_vptr != NULL_TREE)
1363 : : tmp = parmse->class_vptr;
1364 : 3257 : else if (class_ref == NULL
1365 : 2814 : && e->symtree && e->symtree->n.sym->ts.type == BT_CLASS)
1366 : : {
1367 : 2814 : tmp = e->symtree->n.sym->backend_decl;
1368 : :
1369 : 2814 : if (TREE_CODE (tmp) == FUNCTION_DECL)
1370 : 6 : tmp = gfc_get_fake_result_decl (e->symtree->n.sym, 0);
1371 : :
1372 : 2814 : if (DECL_LANG_SPECIFIC (tmp) && GFC_DECL_SAVED_DESCRIPTOR (tmp))
1373 : 370 : tmp = GFC_DECL_SAVED_DESCRIPTOR (tmp);
1374 : :
1375 : 2814 : slen = build_zero_cst (size_type_node);
1376 : : }
1377 : 443 : else if (parmse->class_container != NULL_TREE)
1378 : : /* Don't redundantly evaluate the expression if the required information
1379 : : is already available. */
1380 : : tmp = parmse->class_container;
1381 : : else
1382 : : {
1383 : : /* Remove everything after the last class reference, convert the
1384 : : expression and then recover its tailend once more. */
1385 : 18 : gfc_se tmpse;
1386 : 18 : ref = class_ref->next;
1387 : 18 : class_ref->next = NULL;
1388 : 18 : gfc_init_se (&tmpse, NULL);
1389 : 18 : gfc_conv_expr (&tmpse, e);
1390 : 18 : class_ref->next = ref;
1391 : 18 : tmp = tmpse.expr;
1392 : 18 : slen = tmpse.string_length;
1393 : : }
1394 : :
1395 : 3269 : gcc_assert (tmp != NULL_TREE);
1396 : :
1397 : : /* Dereference if needs be. */
1398 : 3269 : if (TREE_CODE (TREE_TYPE (tmp)) == REFERENCE_TYPE)
1399 : 318 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
1400 : :
1401 : 3269 : if (!(gfc_is_class_array_function (e) && parmse->class_vptr))
1402 : 3257 : vptr = gfc_class_vptr_get (tmp);
1403 : : else
1404 : : vptr = tmp;
1405 : :
1406 : 3269 : gfc_add_modify (&block, ctree,
1407 : 3269 : fold_convert (TREE_TYPE (ctree), vptr));
1408 : :
1409 : : /* Return the vptr component, except in the case of scalarized array
1410 : : references, where the dynamic type cannot change. */
1411 : 3269 : if (!elemental && full_array && copyback)
1412 : 1128 : gfc_add_modify (&parmse->post, vptr,
1413 : 1128 : fold_convert (TREE_TYPE (vptr), ctree));
1414 : :
1415 : : /* For unlimited polymorphic objects also set the _len component. */
1416 : 3269 : if (class_ts.type == BT_CLASS
1417 : 3269 : && class_ts.u.derived->components
1418 : 3269 : && class_ts.u.derived->components->ts.u
1419 : 3269 : .derived->attr.unlimited_polymorphic)
1420 : : {
1421 : 1013 : ctree = gfc_class_len_get (var);
1422 : 1013 : if (UNLIMITED_POLY (e))
1423 : 817 : tmp = gfc_class_len_get (tmp);
1424 : 196 : else if (e->ts.type == BT_CHARACTER)
1425 : : {
1426 : 0 : gcc_assert (slen != NULL_TREE);
1427 : : tmp = slen;
1428 : : }
1429 : : else
1430 : 196 : tmp = build_zero_cst (size_type_node);
1431 : 1013 : gfc_add_modify (&parmse->pre, ctree,
1432 : 1013 : fold_convert (TREE_TYPE (ctree), tmp));
1433 : :
1434 : : /* Return the len component, except in the case of scalarized array
1435 : : references, where the dynamic type cannot change. */
1436 : 1013 : if (!elemental && full_array && copyback
1437 : 440 : && (UNLIMITED_POLY (e) || VAR_P (tmp)))
1438 : 428 : gfc_add_modify (&parmse->post, tmp,
1439 : 428 : fold_convert (TREE_TYPE (tmp), ctree));
1440 : : }
1441 : :
1442 : 3269 : if (optional)
1443 : : {
1444 : 510 : tree tmp2;
1445 : :
1446 : 510 : cond = gfc_conv_expr_present (e->symtree->n.sym);
1447 : : /* parmse->pre may contain some preparatory instructions for the
1448 : : temporary array descriptor. Those may only be executed when the
1449 : : optional argument is set, therefore add parmse->pre's instructions
1450 : : to block, which is later guarded by an if (optional_arg_given). */
1451 : 510 : gfc_add_block_to_block (&parmse->pre, &block);
1452 : 510 : block.head = parmse->pre.head;
1453 : 510 : parmse->pre.head = NULL_TREE;
1454 : 510 : tmp = gfc_finish_block (&block);
1455 : :
1456 : 510 : if (optional_alloc_ptr)
1457 : 102 : tmp2 = build_empty_stmt (input_location);
1458 : : else
1459 : : {
1460 : 408 : gfc_init_block (&block);
1461 : :
1462 : 408 : tmp2 = gfc_conv_descriptor_data_get (gfc_class_data_get (var));
1463 : 408 : gfc_add_modify (&block, tmp2, fold_convert (TREE_TYPE (tmp2),
1464 : : null_pointer_node));
1465 : 408 : tmp2 = gfc_finish_block (&block);
1466 : : }
1467 : :
1468 : 510 : tmp = build3_loc (input_location, COND_EXPR, void_type_node,
1469 : : cond, tmp, tmp2);
1470 : 510 : gfc_add_expr_to_block (&parmse->pre, tmp);
1471 : :
1472 : 510 : if (!elemental && full_array && copyback)
1473 : : {
1474 : 30 : tmp2 = build_empty_stmt (input_location);
1475 : 30 : tmp = gfc_finish_block (&parmse->post);
1476 : 30 : tmp = build3_loc (input_location, COND_EXPR, void_type_node,
1477 : : cond, tmp, tmp2);
1478 : 30 : gfc_add_expr_to_block (&parmse->post, tmp);
1479 : : }
1480 : : }
1481 : : else
1482 : 2759 : gfc_add_block_to_block (&parmse->pre, &block);
1483 : :
1484 : : /* Pass the address of the class object. */
1485 : 3269 : parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
1486 : :
1487 : 3269 : if (optional && optional_alloc_ptr)
1488 : 204 : parmse->expr = build3_loc (input_location, COND_EXPR,
1489 : 102 : TREE_TYPE (parmse->expr),
1490 : : cond, parmse->expr,
1491 : 102 : fold_convert (TREE_TYPE (parmse->expr),
1492 : : null_pointer_node));
1493 : : }
1494 : :
1495 : :
1496 : : /* Given a class array declaration and an index, returns the address
1497 : : of the referenced element. */
1498 : :
1499 : : static tree
1500 : 668 : gfc_get_class_array_ref (tree index, tree class_decl, tree data_comp,
1501 : : bool unlimited)
1502 : : {
1503 : 668 : tree data, size, tmp, ctmp, offset, ptr;
1504 : :
1505 : 668 : data = data_comp != NULL_TREE ? data_comp :
1506 : 0 : gfc_class_data_get (class_decl);
1507 : 668 : size = gfc_class_vtab_size_get (class_decl);
1508 : :
1509 : 668 : if (unlimited)
1510 : : {
1511 : 164 : tmp = fold_convert (gfc_array_index_type,
1512 : : gfc_class_len_get (class_decl));
1513 : 164 : ctmp = fold_build2_loc (input_location, MULT_EXPR,
1514 : : gfc_array_index_type, size, tmp);
1515 : 164 : tmp = fold_build2_loc (input_location, GT_EXPR,
1516 : : logical_type_node, tmp,
1517 : 164 : build_zero_cst (TREE_TYPE (tmp)));
1518 : 164 : size = fold_build3_loc (input_location, COND_EXPR,
1519 : : gfc_array_index_type, tmp, ctmp, size);
1520 : : }
1521 : :
1522 : 668 : offset = fold_build2_loc (input_location, MULT_EXPR,
1523 : : gfc_array_index_type,
1524 : : index, size);
1525 : :
1526 : 668 : data = gfc_conv_descriptor_data_get (data);
1527 : 668 : ptr = fold_convert (pvoid_type_node, data);
1528 : 668 : ptr = fold_build_pointer_plus_loc (input_location, ptr, offset);
1529 : 668 : return fold_convert (TREE_TYPE (data), ptr);
1530 : : }
1531 : :
1532 : :
1533 : : /* Copies one class expression to another, assuming that if either
1534 : : 'to' or 'from' are arrays they are packed. Should 'from' be
1535 : : NULL_TREE, the initialization expression for 'to' is used, assuming
1536 : : that the _vptr is set. */
1537 : :
1538 : : tree
1539 : 716 : gfc_copy_class_to_class (tree from, tree to, tree nelems, bool unlimited)
1540 : : {
1541 : 716 : tree fcn;
1542 : 716 : tree fcn_type;
1543 : 716 : tree from_data;
1544 : 716 : tree from_len;
1545 : 716 : tree to_data;
1546 : 716 : tree to_len;
1547 : 716 : tree to_ref;
1548 : 716 : tree from_ref;
1549 : 716 : vec<tree, va_gc> *args;
1550 : 716 : tree tmp;
1551 : 716 : tree stdcopy;
1552 : 716 : tree extcopy;
1553 : 716 : tree index;
1554 : 716 : bool is_from_desc = false, is_to_class = false;
1555 : :
1556 : 716 : args = NULL;
1557 : : /* To prevent warnings on uninitialized variables. */
1558 : 716 : from_len = to_len = NULL_TREE;
1559 : :
1560 : 716 : if (from != NULL_TREE)
1561 : 716 : fcn = gfc_class_vtab_copy_get (from);
1562 : : else
1563 : 0 : fcn = gfc_class_vtab_copy_get (to);
1564 : :
1565 : 716 : fcn_type = TREE_TYPE (TREE_TYPE (fcn));
1566 : :
1567 : 716 : if (from != NULL_TREE)
1568 : : {
1569 : 716 : is_from_desc = GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (from));
1570 : 716 : if (is_from_desc)
1571 : : {
1572 : 0 : from_data = from;
1573 : 0 : from = GFC_DECL_SAVED_DESCRIPTOR (from);
1574 : : }
1575 : : else
1576 : : {
1577 : : /* Check that from is a class. When the class is part of a coarray,
1578 : : then from is a common pointer and is to be used as is. */
1579 : 1432 : tmp = POINTER_TYPE_P (TREE_TYPE (from))
1580 : 716 : ? build_fold_indirect_ref (from) : from;
1581 : 1432 : from_data =
1582 : 716 : (GFC_CLASS_TYPE_P (TREE_TYPE (tmp))
1583 : 0 : || (DECL_P (tmp) && GFC_DECL_CLASS (tmp)))
1584 : 716 : ? gfc_class_data_get (from) : from;
1585 : 716 : is_from_desc = GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (from_data));
1586 : : }
1587 : : }
1588 : : else
1589 : 0 : from_data = gfc_class_vtab_def_init_get (to);
1590 : :
1591 : 716 : if (unlimited)
1592 : : {
1593 : 141 : if (from != NULL_TREE && unlimited)
1594 : 141 : from_len = gfc_class_len_or_zero_get (from);
1595 : : else
1596 : 0 : from_len = build_zero_cst (size_type_node);
1597 : : }
1598 : :
1599 : 716 : if (GFC_CLASS_TYPE_P (TREE_TYPE (to)))
1600 : : {
1601 : 716 : is_to_class = true;
1602 : 716 : to_data = gfc_class_data_get (to);
1603 : 716 : if (unlimited)
1604 : 141 : to_len = gfc_class_len_get (to);
1605 : : }
1606 : : else
1607 : : /* When to is a BT_DERIVED and not a BT_CLASS, then to_data == to. */
1608 : 0 : to_data = to;
1609 : :
1610 : 716 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (to_data)))
1611 : : {
1612 : 334 : stmtblock_t loopbody;
1613 : 334 : stmtblock_t body;
1614 : 334 : stmtblock_t ifbody;
1615 : 334 : gfc_loopinfo loop;
1616 : :
1617 : 334 : gfc_init_block (&body);
1618 : 334 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
1619 : : gfc_array_index_type, nelems,
1620 : : gfc_index_one_node);
1621 : 334 : nelems = gfc_evaluate_now (tmp, &body);
1622 : 334 : index = gfc_create_var (gfc_array_index_type, "S");
1623 : :
1624 : 334 : if (is_from_desc)
1625 : : {
1626 : 334 : from_ref = gfc_get_class_array_ref (index, from, from_data,
1627 : : unlimited);
1628 : 334 : vec_safe_push (args, from_ref);
1629 : : }
1630 : : else
1631 : 0 : vec_safe_push (args, from_data);
1632 : :
1633 : 334 : if (is_to_class)
1634 : 334 : to_ref = gfc_get_class_array_ref (index, to, to_data, unlimited);
1635 : : else
1636 : : {
1637 : 0 : tmp = gfc_conv_array_data (to);
1638 : 0 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
1639 : 0 : to_ref = gfc_build_addr_expr (NULL_TREE,
1640 : : gfc_build_array_ref (tmp, index, to));
1641 : : }
1642 : 334 : vec_safe_push (args, to_ref);
1643 : :
1644 : : /* Add bounds check. */
1645 : 334 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS) > 0 && is_from_desc)
1646 : : {
1647 : 7 : const char *name = "<<unknown>>";
1648 : 7 : int dim, rank;
1649 : :
1650 : 7 : if (DECL_P (to))
1651 : 0 : name = IDENTIFIER_POINTER (DECL_NAME (to));
1652 : :
1653 : 7 : rank = GFC_TYPE_ARRAY_RANK (TREE_TYPE (from_data));
1654 : 19 : for (dim = 1; dim <= rank; dim++)
1655 : : {
1656 : 12 : tree from_len, to_len, cond;
1657 : 12 : char *msg;
1658 : :
1659 : 12 : from_len = gfc_conv_descriptor_size (from_data, dim);
1660 : 12 : from_len = fold_convert (long_integer_type_node, from_len);
1661 : 12 : to_len = gfc_conv_descriptor_size (to_data, dim);
1662 : 12 : to_len = fold_convert (long_integer_type_node, to_len);
1663 : 12 : msg = xasprintf ("Array bound mismatch for dimension %d "
1664 : : "of array '%s' (%%ld/%%ld)",
1665 : : dim, name);
1666 : 12 : cond = fold_build2_loc (input_location, NE_EXPR,
1667 : : logical_type_node, from_len, to_len);
1668 : 12 : gfc_trans_runtime_check (true, false, cond, &body,
1669 : : NULL, msg, to_len, from_len);
1670 : 12 : free (msg);
1671 : : }
1672 : : }
1673 : :
1674 : 334 : tmp = build_call_vec (fcn_type, fcn, args);
1675 : :
1676 : : /* Build the body of the loop. */
1677 : 334 : gfc_init_block (&loopbody);
1678 : 334 : gfc_add_expr_to_block (&loopbody, tmp);
1679 : :
1680 : : /* Build the loop and return. */
1681 : 334 : gfc_init_loopinfo (&loop);
1682 : 334 : loop.dimen = 1;
1683 : 334 : loop.from[0] = gfc_index_zero_node;
1684 : 334 : loop.loopvar[0] = index;
1685 : 334 : loop.to[0] = nelems;
1686 : 334 : gfc_trans_scalarizing_loops (&loop, &loopbody);
1687 : 334 : gfc_init_block (&ifbody);
1688 : 334 : gfc_add_block_to_block (&ifbody, &loop.pre);
1689 : 334 : stdcopy = gfc_finish_block (&ifbody);
1690 : : /* In initialization mode from_len is a constant zero. */
1691 : 334 : if (unlimited && !integer_zerop (from_len))
1692 : : {
1693 : 82 : vec_safe_push (args, from_len);
1694 : 82 : vec_safe_push (args, to_len);
1695 : 82 : tmp = build_call_vec (fcn_type, fcn, args);
1696 : : /* Build the body of the loop. */
1697 : 82 : gfc_init_block (&loopbody);
1698 : 82 : gfc_add_expr_to_block (&loopbody, tmp);
1699 : :
1700 : : /* Build the loop and return. */
1701 : 82 : gfc_init_loopinfo (&loop);
1702 : 82 : loop.dimen = 1;
1703 : 82 : loop.from[0] = gfc_index_zero_node;
1704 : 82 : loop.loopvar[0] = index;
1705 : 82 : loop.to[0] = nelems;
1706 : 82 : gfc_trans_scalarizing_loops (&loop, &loopbody);
1707 : 82 : gfc_init_block (&ifbody);
1708 : 82 : gfc_add_block_to_block (&ifbody, &loop.pre);
1709 : 82 : extcopy = gfc_finish_block (&ifbody);
1710 : :
1711 : 82 : tmp = fold_build2_loc (input_location, GT_EXPR,
1712 : : logical_type_node, from_len,
1713 : 82 : build_zero_cst (TREE_TYPE (from_len)));
1714 : 82 : tmp = fold_build3_loc (input_location, COND_EXPR,
1715 : : void_type_node, tmp, extcopy, stdcopy);
1716 : 82 : gfc_add_expr_to_block (&body, tmp);
1717 : 82 : tmp = gfc_finish_block (&body);
1718 : : }
1719 : : else
1720 : : {
1721 : 252 : gfc_add_expr_to_block (&body, stdcopy);
1722 : 252 : tmp = gfc_finish_block (&body);
1723 : : }
1724 : 334 : gfc_cleanup_loop (&loop);
1725 : : }
1726 : : else
1727 : : {
1728 : 382 : gcc_assert (!is_from_desc);
1729 : 382 : vec_safe_push (args, from_data);
1730 : 382 : vec_safe_push (args, to_data);
1731 : 382 : stdcopy = build_call_vec (fcn_type, fcn, args);
1732 : :
1733 : : /* In initialization mode from_len is a constant zero. */
1734 : 382 : if (unlimited && !integer_zerop (from_len))
1735 : : {
1736 : 59 : vec_safe_push (args, from_len);
1737 : 59 : vec_safe_push (args, to_len);
1738 : 59 : extcopy = build_call_vec (fcn_type, unshare_expr (fcn), args);
1739 : 59 : tmp = fold_build2_loc (input_location, GT_EXPR,
1740 : : logical_type_node, from_len,
1741 : 59 : build_zero_cst (TREE_TYPE (from_len)));
1742 : 59 : tmp = fold_build3_loc (input_location, COND_EXPR,
1743 : : void_type_node, tmp, extcopy, stdcopy);
1744 : : }
1745 : : else
1746 : : tmp = stdcopy;
1747 : : }
1748 : :
1749 : : /* Only copy _def_init to to_data, when it is not a NULL-pointer. */
1750 : 716 : if (from == NULL_TREE)
1751 : : {
1752 : 0 : tree cond;
1753 : 0 : cond = fold_build2_loc (input_location, NE_EXPR,
1754 : : logical_type_node,
1755 : : from_data, null_pointer_node);
1756 : 0 : tmp = fold_build3_loc (input_location, COND_EXPR,
1757 : : void_type_node, cond,
1758 : : tmp, build_empty_stmt (input_location));
1759 : : }
1760 : :
1761 : 716 : return tmp;
1762 : : }
1763 : :
1764 : :
1765 : : static tree
1766 : 106 : gfc_trans_class_array_init_assign (gfc_expr *rhs, gfc_expr *lhs, gfc_expr *obj)
1767 : : {
1768 : 106 : gfc_actual_arglist *actual;
1769 : 106 : gfc_expr *ppc;
1770 : 106 : gfc_code *ppc_code;
1771 : 106 : tree res;
1772 : :
1773 : 106 : actual = gfc_get_actual_arglist ();
1774 : 106 : actual->expr = gfc_copy_expr (rhs);
1775 : 106 : actual->next = gfc_get_actual_arglist ();
1776 : 106 : actual->next->expr = gfc_copy_expr (lhs);
1777 : 106 : ppc = gfc_copy_expr (obj);
1778 : 106 : gfc_add_vptr_component (ppc);
1779 : 106 : gfc_add_component_ref (ppc, "_copy");
1780 : 106 : ppc_code = gfc_get_code (EXEC_CALL);
1781 : 106 : ppc_code->resolved_sym = ppc->symtree->n.sym;
1782 : : /* Although '_copy' is set to be elemental in class.cc, it is
1783 : : not staying that way. Find out why, sometime.... */
1784 : 106 : ppc_code->resolved_sym->attr.elemental = 1;
1785 : 106 : ppc_code->ext.actual = actual;
1786 : 106 : ppc_code->expr1 = ppc;
1787 : : /* Since '_copy' is elemental, the scalarizer will take care
1788 : : of arrays in gfc_trans_call. */
1789 : 106 : res = gfc_trans_call (ppc_code, false, NULL, NULL, false);
1790 : 106 : gfc_free_statements (ppc_code);
1791 : :
1792 : 106 : if (UNLIMITED_POLY(obj))
1793 : : {
1794 : : /* Check if rhs is non-NULL. */
1795 : 24 : gfc_se src;
1796 : 24 : gfc_init_se (&src, NULL);
1797 : 24 : gfc_conv_expr (&src, rhs);
1798 : 24 : src.expr = gfc_build_addr_expr (NULL_TREE, src.expr);
1799 : 24 : tree cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
1800 : 24 : src.expr, fold_convert (TREE_TYPE (src.expr),
1801 : : null_pointer_node));
1802 : 24 : res = build3_loc (input_location, COND_EXPR, TREE_TYPE (res), cond, res,
1803 : : build_empty_stmt (input_location));
1804 : : }
1805 : :
1806 : 106 : return res;
1807 : : }
1808 : :
1809 : : /* Special case for initializing a polymorphic dummy with INTENT(OUT).
1810 : : A MEMCPY is needed to copy the full data from the default initializer
1811 : : of the dynamic type. */
1812 : :
1813 : : tree
1814 : 440 : gfc_trans_class_init_assign (gfc_code *code)
1815 : : {
1816 : 440 : stmtblock_t block;
1817 : 440 : tree tmp;
1818 : 440 : bool cmp_flag = true;
1819 : 440 : gfc_se dst,src,memsz;
1820 : 440 : gfc_expr *lhs, *rhs, *sz;
1821 : 440 : gfc_component *cmp;
1822 : 440 : gfc_symbol *sym;
1823 : 440 : gfc_ref *ref;
1824 : :
1825 : 440 : gfc_start_block (&block);
1826 : :
1827 : 440 : lhs = gfc_copy_expr (code->expr1);
1828 : :
1829 : 440 : rhs = gfc_copy_expr (code->expr1);
1830 : 440 : gfc_add_vptr_component (rhs);
1831 : :
1832 : : /* Make sure that the component backend_decls have been built, which
1833 : : will not have happened if the derived types concerned have not
1834 : : been referenced. */
1835 : 440 : gfc_get_derived_type (rhs->ts.u.derived);
1836 : 440 : gfc_add_def_init_component (rhs);
1837 : : /* The _def_init is always scalar. */
1838 : 440 : rhs->rank = 0;
1839 : :
1840 : : /* Check def_init for initializers. If this is an INTENT(OUT) dummy with all
1841 : : default initializer components NULL, use the passed value even though
1842 : : F2018(8.5.10) asserts that it should considered to be undefined. This is
1843 : : needed for consistency with other brands. */
1844 : 440 : sym = code->expr1->expr_type == EXPR_VARIABLE ? code->expr1->symtree->n.sym
1845 : : : NULL;
1846 : 440 : if (code->op != EXEC_ALLOCATE
1847 : 379 : && sym && sym->attr.dummy
1848 : 379 : && sym->attr.intent == INTENT_OUT)
1849 : : {
1850 : 379 : ref = rhs->ref;
1851 : 758 : while (ref && ref->next)
1852 : : ref = ref->next;
1853 : 379 : cmp = ref->u.c.component->ts.u.derived->components;
1854 : 602 : for (; cmp; cmp = cmp->next)
1855 : : {
1856 : 427 : if (cmp->initializer)
1857 : : break;
1858 : 223 : else if (!cmp->next)
1859 : 146 : cmp_flag = false;
1860 : : }
1861 : : }
1862 : :
1863 : 440 : if (code->expr1->ts.type == BT_CLASS
1864 : 417 : && CLASS_DATA (code->expr1)->attr.dimension)
1865 : : {
1866 : 106 : gfc_array_spec *tmparr = gfc_get_array_spec ();
1867 : 106 : *tmparr = *CLASS_DATA (code->expr1)->as;
1868 : : /* Adding the array ref to the class expression results in correct
1869 : : indexing to the dynamic type. */
1870 : 106 : gfc_add_full_array_ref (lhs, tmparr);
1871 : 106 : tmp = gfc_trans_class_array_init_assign (rhs, lhs, code->expr1);
1872 : 106 : }
1873 : 334 : else if (cmp_flag)
1874 : : {
1875 : : /* Scalar initialization needs the _data component. */
1876 : 201 : gfc_add_data_component (lhs);
1877 : 201 : sz = gfc_copy_expr (code->expr1);
1878 : 201 : gfc_add_vptr_component (sz);
1879 : 201 : gfc_add_size_component (sz);
1880 : :
1881 : 201 : gfc_init_se (&dst, NULL);
1882 : 201 : gfc_init_se (&src, NULL);
1883 : 201 : gfc_init_se (&memsz, NULL);
1884 : 201 : gfc_conv_expr (&dst, lhs);
1885 : 201 : gfc_conv_expr (&src, rhs);
1886 : 201 : gfc_conv_expr (&memsz, sz);
1887 : 201 : gfc_add_block_to_block (&block, &src.pre);
1888 : 201 : src.expr = gfc_build_addr_expr (NULL_TREE, src.expr);
1889 : :
1890 : 201 : tmp = gfc_build_memcpy_call (dst.expr, src.expr, memsz.expr);
1891 : :
1892 : 201 : if (UNLIMITED_POLY(code->expr1))
1893 : : {
1894 : : /* Check if _def_init is non-NULL. */
1895 : 7 : tree cond = fold_build2_loc (input_location, NE_EXPR,
1896 : : logical_type_node, src.expr,
1897 : 7 : fold_convert (TREE_TYPE (src.expr),
1898 : : null_pointer_node));
1899 : 7 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp), cond,
1900 : : tmp, build_empty_stmt (input_location));
1901 : : }
1902 : : }
1903 : : else
1904 : 133 : tmp = build_empty_stmt (input_location);
1905 : :
1906 : 440 : if (code->expr1->symtree->n.sym->attr.dummy
1907 : 389 : && (code->expr1->symtree->n.sym->attr.optional
1908 : 383 : || code->expr1->symtree->n.sym->ns->proc_name->attr.entry_master))
1909 : : {
1910 : 6 : tree present = gfc_conv_expr_present (code->expr1->symtree->n.sym);
1911 : 6 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
1912 : : present, tmp,
1913 : : build_empty_stmt (input_location));
1914 : : }
1915 : :
1916 : 440 : gfc_add_expr_to_block (&block, tmp);
1917 : 440 : gfc_free_expr (lhs);
1918 : 440 : gfc_free_expr (rhs);
1919 : :
1920 : 440 : return gfc_finish_block (&block);
1921 : : }
1922 : :
1923 : :
1924 : : /* Class valued elemental function calls or class array elements arriving
1925 : : in gfc_trans_scalar_assign come here. Wherever possible the vptr copy
1926 : : is used to ensure that the rhs dynamic type is assigned to the lhs. */
1927 : :
1928 : : static bool
1929 : 740 : trans_scalar_class_assign (stmtblock_t *block, gfc_se *lse, gfc_se *rse)
1930 : : {
1931 : 740 : tree fcn;
1932 : 740 : tree rse_expr;
1933 : 740 : tree class_data;
1934 : 740 : tree tmp;
1935 : 740 : tree zero;
1936 : 740 : tree cond;
1937 : 740 : tree final_cond;
1938 : 740 : stmtblock_t inner_block;
1939 : 740 : bool is_descriptor;
1940 : 740 : bool not_call_expr = TREE_CODE (rse->expr) != CALL_EXPR;
1941 : 740 : bool not_lhs_array_type;
1942 : :
1943 : : /* Temporaries arising from dependencies in assignment get cast as a
1944 : : character type of the dynamic size of the rhs. Use the vptr copy
1945 : : for this case. */
1946 : 740 : tmp = TREE_TYPE (lse->expr);
1947 : 740 : not_lhs_array_type = !(tmp && TREE_CODE (tmp) == ARRAY_TYPE
1948 : 0 : && TYPE_MAX_VALUE (TYPE_DOMAIN (tmp)) != NULL_TREE);
1949 : :
1950 : : /* Use ordinary assignment if the rhs is not a call expression or
1951 : : the lhs is not a class entity or an array(ie. character) type. */
1952 : 698 : if ((not_call_expr && gfc_get_class_from_expr (lse->expr) == NULL_TREE)
1953 : 1001 : && not_lhs_array_type)
1954 : : return false;
1955 : :
1956 : : /* Ordinary assignment can be used if both sides are class expressions
1957 : : since the dynamic type is preserved by copying the vptr. This
1958 : : should only occur, where temporaries are involved. */
1959 : 479 : if (GFC_CLASS_TYPE_P (TREE_TYPE (lse->expr))
1960 : 479 : && GFC_CLASS_TYPE_P (TREE_TYPE (rse->expr)))
1961 : : return false;
1962 : :
1963 : : /* Fix the class expression and the class data of the rhs. */
1964 : 418 : if (!GFC_CLASS_TYPE_P (TREE_TYPE (rse->expr))
1965 : 418 : || not_call_expr)
1966 : : {
1967 : 418 : tmp = gfc_get_class_from_expr (rse->expr);
1968 : 418 : if (tmp == NULL_TREE)
1969 : : return false;
1970 : 134 : rse_expr = gfc_evaluate_now (tmp, block);
1971 : : }
1972 : : else
1973 : 0 : rse_expr = gfc_evaluate_now (rse->expr, block);
1974 : :
1975 : 134 : class_data = gfc_class_data_get (rse_expr);
1976 : :
1977 : : /* Check that the rhs data is not null. */
1978 : 134 : is_descriptor = GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (class_data));
1979 : 134 : if (is_descriptor)
1980 : 134 : class_data = gfc_conv_descriptor_data_get (class_data);
1981 : 134 : class_data = gfc_evaluate_now (class_data, block);
1982 : :
1983 : 134 : zero = build_int_cst (TREE_TYPE (class_data), 0);
1984 : 134 : cond = fold_build2_loc (input_location, NE_EXPR,
1985 : : logical_type_node,
1986 : : class_data, zero);
1987 : :
1988 : : /* Copy the rhs to the lhs. */
1989 : 134 : fcn = gfc_vptr_copy_get (gfc_class_vptr_get (rse_expr));
1990 : 134 : fcn = build_fold_indirect_ref_loc (input_location, fcn);
1991 : 134 : tmp = gfc_evaluate_now (gfc_build_addr_expr (NULL, rse->expr), block);
1992 : 134 : tmp = is_descriptor ? tmp : class_data;
1993 : 134 : tmp = build_call_expr_loc (input_location, fcn, 2, tmp,
1994 : : gfc_build_addr_expr (NULL, lse->expr));
1995 : 134 : gfc_add_expr_to_block (block, tmp);
1996 : :
1997 : : /* Only elemental function results need to be finalised and freed. */
1998 : 134 : if (not_call_expr)
1999 : : return true;
2000 : :
2001 : : /* Finalize the class data if needed. */
2002 : 0 : gfc_init_block (&inner_block);
2003 : 0 : fcn = gfc_vptr_final_get (gfc_class_vptr_get (rse_expr));
2004 : 0 : zero = build_int_cst (TREE_TYPE (fcn), 0);
2005 : 0 : final_cond = fold_build2_loc (input_location, NE_EXPR,
2006 : : logical_type_node, fcn, zero);
2007 : 0 : fcn = build_fold_indirect_ref_loc (input_location, fcn);
2008 : 0 : tmp = build_call_expr_loc (input_location, fcn, 1, class_data);
2009 : 0 : tmp = build3_v (COND_EXPR, final_cond,
2010 : : tmp, build_empty_stmt (input_location));
2011 : 0 : gfc_add_expr_to_block (&inner_block, tmp);
2012 : :
2013 : : /* Free the class data. */
2014 : 0 : tmp = gfc_call_free (class_data);
2015 : 0 : tmp = build3_v (COND_EXPR, cond, tmp,
2016 : : build_empty_stmt (input_location));
2017 : 0 : gfc_add_expr_to_block (&inner_block, tmp);
2018 : :
2019 : : /* Finish the inner block and subject it to the condition on the
2020 : : class data being non-zero. */
2021 : 0 : tmp = gfc_finish_block (&inner_block);
2022 : 0 : tmp = build3_v (COND_EXPR, cond, tmp,
2023 : : build_empty_stmt (input_location));
2024 : 0 : gfc_add_expr_to_block (block, tmp);
2025 : :
2026 : 0 : return true;
2027 : : }
2028 : :
2029 : : /* End of prototype trans-class.c */
2030 : :
2031 : :
2032 : : static void
2033 : 11044 : realloc_lhs_warning (bt type, bool array, locus *where)
2034 : : {
2035 : 11044 : if (array && type != BT_CLASS && type != BT_DERIVED && warn_realloc_lhs)
2036 : 35 : gfc_warning (OPT_Wrealloc_lhs,
2037 : : "Code for reallocating the allocatable array at %L will "
2038 : : "be added", where);
2039 : 11009 : else if (warn_realloc_lhs_all)
2040 : 4 : gfc_warning (OPT_Wrealloc_lhs_all,
2041 : : "Code for reallocating the allocatable variable at %L "
2042 : : "will be added", where);
2043 : 11044 : }
2044 : :
2045 : :
2046 : : static void gfc_apply_interface_mapping_to_expr (gfc_interface_mapping *,
2047 : : gfc_expr *);
2048 : :
2049 : : /* Copy the scalarization loop variables. */
2050 : :
2051 : : static void
2052 : 966857 : gfc_copy_se_loopvars (gfc_se * dest, gfc_se * src)
2053 : : {
2054 : 966857 : dest->ss = src->ss;
2055 : 966857 : dest->loop = src->loop;
2056 : 966857 : }
2057 : :
2058 : :
2059 : : /* Initialize a simple expression holder.
2060 : :
2061 : : Care must be taken when multiple se are created with the same parent.
2062 : : The child se must be kept in sync. The easiest way is to delay creation
2063 : : of a child se until after the previous se has been translated. */
2064 : :
2065 : : void
2066 : 3867262 : gfc_init_se (gfc_se * se, gfc_se * parent)
2067 : : {
2068 : 3867262 : memset (se, 0, sizeof (gfc_se));
2069 : 3867262 : gfc_init_block (&se->pre);
2070 : 3867262 : gfc_init_block (&se->finalblock);
2071 : 3867262 : gfc_init_block (&se->post);
2072 : :
2073 : 3867262 : se->parent = parent;
2074 : :
2075 : 3867262 : if (parent)
2076 : 966857 : gfc_copy_se_loopvars (se, parent);
2077 : 3867262 : }
2078 : :
2079 : :
2080 : : /* Advances to the next SS in the chain. Use this rather than setting
2081 : : se->ss = se->ss->next because all the parents needs to be kept in sync.
2082 : : See gfc_init_se. */
2083 : :
2084 : : void
2085 : 218860 : gfc_advance_se_ss_chain (gfc_se * se)
2086 : : {
2087 : 218860 : gfc_se *p;
2088 : :
2089 : 218860 : gcc_assert (se != NULL && se->ss != NULL && se->ss != gfc_ss_terminator);
2090 : :
2091 : : p = se;
2092 : : /* Walk down the parent chain. */
2093 : 570197 : while (p != NULL)
2094 : : {
2095 : : /* Simple consistency check. */
2096 : 351337 : gcc_assert (p->parent == NULL || p->parent->ss == p->ss
2097 : : || p->parent->ss->nested_ss == p->ss);
2098 : :
2099 : 351337 : p->ss = p->ss->next;
2100 : :
2101 : 351337 : p = p->parent;
2102 : : }
2103 : 218860 : }
2104 : :
2105 : :
2106 : : /* Ensures the result of the expression as either a temporary variable
2107 : : or a constant so that it can be used repeatedly. */
2108 : :
2109 : : void
2110 : 7898 : gfc_make_safe_expr (gfc_se * se)
2111 : : {
2112 : 7898 : tree var;
2113 : :
2114 : 7898 : if (CONSTANT_CLASS_P (se->expr))
2115 : : return;
2116 : :
2117 : : /* We need a temporary for this result. */
2118 : 204 : var = gfc_create_var (TREE_TYPE (se->expr), NULL);
2119 : 204 : gfc_add_modify (&se->pre, var, se->expr);
2120 : 204 : se->expr = var;
2121 : : }
2122 : :
2123 : :
2124 : : /* Return an expression which determines if a dummy parameter is present.
2125 : : Also used for arguments to procedures with multiple entry points. */
2126 : :
2127 : : tree
2128 : 10978 : gfc_conv_expr_present (gfc_symbol * sym, bool use_saved_desc)
2129 : : {
2130 : 10978 : tree decl, orig_decl, cond;
2131 : :
2132 : 10978 : gcc_assert (sym->attr.dummy);
2133 : 10978 : orig_decl = decl = gfc_get_symbol_decl (sym);
2134 : :
2135 : : /* Intrinsic scalars with VALUE attribute which are passed by value
2136 : : use a hidden argument to denote the present status. */
2137 : 10978 : if (sym->attr.value && !sym->attr.dimension
2138 : 860 : && sym->ts.type != BT_CLASS && !gfc_bt_struct (sym->ts.type))
2139 : : {
2140 : 860 : char name[GFC_MAX_SYMBOL_LEN + 2];
2141 : 860 : tree tree_name;
2142 : :
2143 : 860 : gcc_assert (TREE_CODE (decl) == PARM_DECL);
2144 : 860 : name[0] = '.';
2145 : 860 : strcpy (&name[1], sym->name);
2146 : 860 : tree_name = get_identifier (name);
2147 : :
2148 : : /* Walk function argument list to find hidden arg. */
2149 : 860 : cond = DECL_ARGUMENTS (DECL_CONTEXT (decl));
2150 : 4936 : for ( ; cond != NULL_TREE; cond = TREE_CHAIN (cond))
2151 : 4936 : if (DECL_NAME (cond) == tree_name
2152 : 4936 : && DECL_ARTIFICIAL (cond))
2153 : : break;
2154 : :
2155 : 860 : gcc_assert (cond);
2156 : 860 : return cond;
2157 : : }
2158 : :
2159 : : /* Assumed-shape arrays use a local variable for the array data;
2160 : : the actual PARAM_DECL is in a saved decl. As the local variable
2161 : : is NULL, it can be checked instead, unless use_saved_desc is
2162 : : requested. */
2163 : :
2164 : 10118 : if (use_saved_desc && TREE_CODE (decl) != PARM_DECL)
2165 : : {
2166 : 830 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (decl))
2167 : : || GFC_ARRAY_TYPE_P (TREE_TYPE (decl)));
2168 : 830 : decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
2169 : : }
2170 : :
2171 : 10118 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node, decl,
2172 : 10118 : fold_convert (TREE_TYPE (decl), null_pointer_node));
2173 : :
2174 : : /* Fortran 2008 allows to pass null pointers and non-associated pointers
2175 : : as actual argument to denote absent dummies. For array descriptors,
2176 : : we thus also need to check the array descriptor. For BT_CLASS, it
2177 : : can also occur for scalars and F2003 due to type->class wrapping and
2178 : : class->class wrapping. Note further that BT_CLASS always uses an
2179 : : array descriptor for arrays, also for explicit-shape/assumed-size.
2180 : : For assumed-rank arrays, no local variable is generated, hence,
2181 : : the following also applies with !use_saved_desc. */
2182 : :
2183 : 10118 : if ((use_saved_desc || TREE_CODE (orig_decl) == PARM_DECL)
2184 : 7152 : && !sym->attr.allocatable
2185 : 5990 : && ((sym->ts.type != BT_CLASS && !sym->attr.pointer)
2186 : 2262 : || (sym->ts.type == BT_CLASS
2187 : 1038 : && !CLASS_DATA (sym)->attr.allocatable
2188 : 1038 : && !CLASS_DATA (sym)->attr.class_pointer))
2189 : 3932 : && ((gfc_option.allow_std & GFC_STD_F2008) != 0
2190 : 6 : || sym->ts.type == BT_CLASS))
2191 : : {
2192 : 3926 : tree tmp;
2193 : :
2194 : 3926 : if ((sym->as && (sym->as->type == AS_ASSUMED_SHAPE
2195 : 1481 : || sym->as->type == AS_ASSUMED_RANK
2196 : 1399 : || sym->attr.codimension))
2197 : 3053 : || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as))
2198 : : {
2199 : 1041 : tmp = build_fold_indirect_ref_loc (input_location, decl);
2200 : 1041 : if (sym->ts.type == BT_CLASS)
2201 : 168 : tmp = gfc_class_data_get (tmp);
2202 : 1041 : tmp = gfc_conv_array_data (tmp);
2203 : : }
2204 : 2885 : else if (sym->ts.type == BT_CLASS)
2205 : 36 : tmp = gfc_class_data_get (decl);
2206 : : else
2207 : : tmp = NULL_TREE;
2208 : :
2209 : 1077 : if (tmp != NULL_TREE)
2210 : : {
2211 : 1077 : tmp = fold_build2_loc (input_location, NE_EXPR, logical_type_node, tmp,
2212 : 1077 : fold_convert (TREE_TYPE (tmp), null_pointer_node));
2213 : 1077 : cond = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
2214 : : logical_type_node, cond, tmp);
2215 : : }
2216 : : }
2217 : :
2218 : : return cond;
2219 : : }
2220 : :
2221 : :
2222 : : /* Converts a missing, dummy argument into a null or zero. */
2223 : :
2224 : : void
2225 : 755 : gfc_conv_missing_dummy (gfc_se * se, gfc_expr * arg, gfc_typespec ts, int kind)
2226 : : {
2227 : 755 : tree present;
2228 : 755 : tree tmp;
2229 : :
2230 : 755 : present = gfc_conv_expr_present (arg->symtree->n.sym);
2231 : :
2232 : 755 : if (kind > 0)
2233 : : {
2234 : : /* Create a temporary and convert it to the correct type. */
2235 : 54 : tmp = gfc_get_int_type (kind);
2236 : 54 : tmp = fold_convert (tmp, build_fold_indirect_ref_loc (input_location,
2237 : : se->expr));
2238 : :
2239 : : /* Test for a NULL value. */
2240 : 54 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp), present,
2241 : 54 : tmp, fold_convert (TREE_TYPE (tmp), integer_one_node));
2242 : 54 : tmp = gfc_evaluate_now (tmp, &se->pre);
2243 : 54 : se->expr = gfc_build_addr_expr (NULL_TREE, tmp);
2244 : : }
2245 : : else
2246 : : {
2247 : 701 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (se->expr),
2248 : : present, se->expr,
2249 : 701 : build_zero_cst (TREE_TYPE (se->expr)));
2250 : 701 : tmp = gfc_evaluate_now (tmp, &se->pre);
2251 : 701 : se->expr = tmp;
2252 : : }
2253 : :
2254 : 755 : if (ts.type == BT_CHARACTER)
2255 : : {
2256 : : /* Handle deferred-length dummies that pass the character length by
2257 : : reference so that the value can be returned. */
2258 : 244 : if (ts.deferred && INDIRECT_REF_P (se->string_length))
2259 : : {
2260 : 18 : tmp = gfc_build_addr_expr (NULL_TREE, se->string_length);
2261 : 18 : tmp = fold_build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
2262 : : present, tmp, null_pointer_node);
2263 : 18 : tmp = gfc_evaluate_now (tmp, &se->pre);
2264 : 18 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
2265 : : }
2266 : : else
2267 : : {
2268 : 226 : tmp = build_int_cst (gfc_charlen_type_node, 0);
2269 : 226 : tmp = fold_build3_loc (input_location, COND_EXPR,
2270 : : gfc_charlen_type_node,
2271 : : present, se->string_length, tmp);
2272 : 226 : tmp = gfc_evaluate_now (tmp, &se->pre);
2273 : : }
2274 : 244 : se->string_length = tmp;
2275 : : }
2276 : 755 : return;
2277 : : }
2278 : :
2279 : :
2280 : : /* Get the character length of an expression, looking through gfc_refs
2281 : : if necessary. */
2282 : :
2283 : : tree
2284 : 19340 : gfc_get_expr_charlen (gfc_expr *e)
2285 : : {
2286 : 19340 : gfc_ref *r;
2287 : 19340 : tree length;
2288 : 19340 : tree previous = NULL_TREE;
2289 : 19340 : gfc_se se;
2290 : :
2291 : 19340 : gcc_assert (e->expr_type == EXPR_VARIABLE
2292 : : && e->ts.type == BT_CHARACTER);
2293 : :
2294 : 19340 : length = NULL; /* To silence compiler warning. */
2295 : :
2296 : 19340 : if (is_subref_array (e) && e->ts.u.cl->length)
2297 : : {
2298 : 748 : gfc_se tmpse;
2299 : 748 : gfc_init_se (&tmpse, NULL);
2300 : 748 : gfc_conv_expr_type (&tmpse, e->ts.u.cl->length, gfc_charlen_type_node);
2301 : 748 : e->ts.u.cl->backend_decl = tmpse.expr;
2302 : 748 : return tmpse.expr;
2303 : : }
2304 : :
2305 : : /* First candidate: if the variable is of type CHARACTER, the
2306 : : expression's length could be the length of the character
2307 : : variable. */
2308 : 18592 : if (e->symtree->n.sym->ts.type == BT_CHARACTER)
2309 : 18298 : length = e->symtree->n.sym->ts.u.cl->backend_decl;
2310 : :
2311 : : /* Look through the reference chain for component references. */
2312 : 37335 : for (r = e->ref; r; r = r->next)
2313 : : {
2314 : 18743 : previous = length;
2315 : 18743 : switch (r->type)
2316 : : {
2317 : 294 : case REF_COMPONENT:
2318 : 294 : if (r->u.c.component->ts.type == BT_CHARACTER)
2319 : 294 : length = r->u.c.component->ts.u.cl->backend_decl;
2320 : : break;
2321 : :
2322 : : case REF_ARRAY:
2323 : : /* Do nothing. */
2324 : : break;
2325 : :
2326 : 26 : case REF_SUBSTRING:
2327 : 26 : gfc_init_se (&se, NULL);
2328 : 26 : gfc_conv_expr_type (&se, r->u.ss.start, gfc_charlen_type_node);
2329 : 26 : length = se.expr;
2330 : 26 : if (r->u.ss.end)
2331 : 6 : gfc_conv_expr_type (&se, r->u.ss.end, gfc_charlen_type_node);
2332 : : else
2333 : 20 : se.expr = previous;
2334 : 26 : length = fold_build2_loc (input_location, MINUS_EXPR,
2335 : : gfc_charlen_type_node,
2336 : : se.expr, length);
2337 : 26 : length = fold_build2_loc (input_location, PLUS_EXPR,
2338 : : gfc_charlen_type_node, length,
2339 : : gfc_index_one_node);
2340 : 26 : break;
2341 : :
2342 : 0 : default:
2343 : 0 : gcc_unreachable ();
2344 : 18743 : break;
2345 : : }
2346 : : }
2347 : :
2348 : 18592 : gcc_assert (length != NULL);
2349 : : return length;
2350 : : }
2351 : :
2352 : :
2353 : : /* Return for an expression the backend decl of the coarray. */
2354 : :
2355 : : tree
2356 : 1509 : gfc_get_tree_for_caf_expr (gfc_expr *expr)
2357 : : {
2358 : 1509 : tree caf_decl;
2359 : 1509 : bool found = false;
2360 : 1509 : gfc_ref *ref;
2361 : :
2362 : 1509 : gcc_assert (expr && expr->expr_type == EXPR_VARIABLE);
2363 : :
2364 : : /* Not-implemented diagnostic. */
2365 : 1509 : if (expr->symtree->n.sym->ts.type == BT_CLASS
2366 : 22 : && UNLIMITED_POLY (expr->symtree->n.sym)
2367 : 0 : && CLASS_DATA (expr->symtree->n.sym)->attr.codimension)
2368 : 0 : gfc_error ("Sorry, coindexed access to an unlimited polymorphic object at "
2369 : : "%L is not supported", &expr->where);
2370 : :
2371 : 5164 : for (ref = expr->ref; ref; ref = ref->next)
2372 : 3655 : if (ref->type == REF_COMPONENT)
2373 : : {
2374 : 1366 : if (ref->u.c.component->ts.type == BT_CLASS
2375 : 0 : && UNLIMITED_POLY (ref->u.c.component)
2376 : 0 : && CLASS_DATA (ref->u.c.component)->attr.codimension)
2377 : 0 : gfc_error ("Sorry, coindexed access to an unlimited polymorphic "
2378 : : "component at %L is not supported", &expr->where);
2379 : : }
2380 : :
2381 : : /* Make sure the backend_decl is present before accessing it. */
2382 : 3018 : caf_decl = expr->symtree->n.sym->backend_decl == NULL_TREE
2383 : 1509 : ? gfc_get_symbol_decl (expr->symtree->n.sym)
2384 : : : expr->symtree->n.sym->backend_decl;
2385 : :
2386 : 1509 : if (expr->symtree->n.sym->ts.type == BT_CLASS)
2387 : : {
2388 : 22 : if (DECL_P (caf_decl) && DECL_LANG_SPECIFIC (caf_decl)
2389 : 24 : && GFC_DECL_SAVED_DESCRIPTOR (caf_decl))
2390 : 2 : caf_decl = GFC_DECL_SAVED_DESCRIPTOR (caf_decl);
2391 : :
2392 : 22 : if (expr->ref && expr->ref->type == REF_ARRAY)
2393 : : {
2394 : 15 : caf_decl = gfc_class_data_get (caf_decl);
2395 : 15 : if (CLASS_DATA (expr->symtree->n.sym)->attr.codimension)
2396 : : return caf_decl;
2397 : : }
2398 : 18 : for (ref = expr->ref; ref; ref = ref->next)
2399 : : {
2400 : 15 : if (ref->type == REF_COMPONENT
2401 : 8 : && strcmp (ref->u.c.component->name, "_data") != 0)
2402 : : {
2403 : 1 : caf_decl = gfc_class_data_get (caf_decl);
2404 : 1 : if (CLASS_DATA (expr->symtree->n.sym)->attr.codimension)
2405 : : return caf_decl;
2406 : : break;
2407 : : }
2408 : 14 : else if (ref->type == REF_ARRAY && ref->u.ar.dimen)
2409 : : break;
2410 : : }
2411 : : }
2412 : 1493 : if (expr->symtree->n.sym->attr.codimension)
2413 : : return caf_decl;
2414 : :
2415 : : /* The following code assumes that the coarray is a component reachable via
2416 : : only scalar components/variables; the Fortran standard guarantees this. */
2417 : :
2418 : 30 : for (ref = expr->ref; ref; ref = ref->next)
2419 : 30 : if (ref->type == REF_COMPONENT)
2420 : : {
2421 : 30 : gfc_component *comp = ref->u.c.component;
2422 : :
2423 : 30 : if (POINTER_TYPE_P (TREE_TYPE (caf_decl)))
2424 : 0 : caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
2425 : 30 : caf_decl = fold_build3_loc (input_location, COMPONENT_REF,
2426 : 30 : TREE_TYPE (comp->backend_decl), caf_decl,
2427 : : comp->backend_decl, NULL_TREE);
2428 : 30 : if (comp->ts.type == BT_CLASS)
2429 : : {
2430 : 0 : caf_decl = gfc_class_data_get (caf_decl);
2431 : 0 : if (CLASS_DATA (comp)->attr.codimension)
2432 : : {
2433 : : found = true;
2434 : : break;
2435 : : }
2436 : : }
2437 : 30 : if (comp->attr.codimension)
2438 : : {
2439 : : found = true;
2440 : : break;
2441 : : }
2442 : : }
2443 : 30 : gcc_assert (found && caf_decl);
2444 : : return caf_decl;
2445 : : }
2446 : :
2447 : :
2448 : : /* Obtain the Coarray token - and optionally also the offset. */
2449 : :
2450 : : void
2451 : 1424 : gfc_get_caf_token_offset (gfc_se *se, tree *token, tree *offset, tree caf_decl,
2452 : : tree se_expr, gfc_expr *expr)
2453 : : {
2454 : 1424 : tree tmp;
2455 : :
2456 : 1424 : gcc_assert (flag_coarray == GFC_FCOARRAY_LIB);
2457 : :
2458 : : /* Coarray token. */
2459 : 1424 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (caf_decl)))
2460 : 289 : *token = gfc_conv_descriptor_token (caf_decl);
2461 : 1134 : else if (DECL_P (caf_decl) && DECL_LANG_SPECIFIC (caf_decl)
2462 : 1235 : && GFC_DECL_TOKEN (caf_decl) != NULL_TREE)
2463 : 3 : *token = GFC_DECL_TOKEN (caf_decl);
2464 : : else
2465 : : {
2466 : 1132 : gcc_assert (GFC_ARRAY_TYPE_P (TREE_TYPE (caf_decl))
2467 : : && GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (caf_decl)) != NULL_TREE);
2468 : 1132 : *token = GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (caf_decl));
2469 : : }
2470 : :
2471 : 1424 : if (offset == NULL)
2472 : : return;
2473 : :
2474 : : /* Offset between the coarray base address and the address wanted. */
2475 : 349 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (caf_decl))
2476 : 349 : && (GFC_TYPE_ARRAY_AKIND (TREE_TYPE (caf_decl)) == GFC_ARRAY_ALLOCATABLE
2477 : 14 : || GFC_TYPE_ARRAY_AKIND (TREE_TYPE (caf_decl)) == GFC_ARRAY_POINTER))
2478 : 58 : *offset = build_int_cst (gfc_array_index_type, 0);
2479 : 291 : else if (DECL_P (caf_decl) && DECL_LANG_SPECIFIC (caf_decl)
2480 : 365 : && GFC_DECL_CAF_OFFSET (caf_decl) != NULL_TREE)
2481 : 2 : *offset = GFC_DECL_CAF_OFFSET (caf_decl);
2482 : 289 : else if (GFC_TYPE_ARRAY_CAF_OFFSET (TREE_TYPE (caf_decl)) != NULL_TREE)
2483 : 0 : *offset = GFC_TYPE_ARRAY_CAF_OFFSET (TREE_TYPE (caf_decl));
2484 : : else
2485 : 289 : *offset = build_int_cst (gfc_array_index_type, 0);
2486 : :
2487 : 349 : if (POINTER_TYPE_P (TREE_TYPE (se_expr))
2488 : 349 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (se_expr))))
2489 : : {
2490 : 258 : tmp = build_fold_indirect_ref_loc (input_location, se_expr);
2491 : 258 : tmp = gfc_conv_descriptor_data_get (tmp);
2492 : : }
2493 : 91 : else if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se_expr)))
2494 : 0 : tmp = gfc_conv_descriptor_data_get (se_expr);
2495 : : else
2496 : : {
2497 : 91 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (se_expr)));
2498 : : tmp = se_expr;
2499 : : }
2500 : :
2501 : 349 : *offset = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
2502 : : *offset, fold_convert (gfc_array_index_type, tmp));
2503 : :
2504 : 349 : if (expr->symtree->n.sym->ts.type == BT_DERIVED
2505 : 85 : && expr->symtree->n.sym->attr.codimension
2506 : 85 : && expr->symtree->n.sym->ts.u.derived->attr.alloc_comp)
2507 : : {
2508 : 0 : gfc_expr *base_expr = gfc_copy_expr (expr);
2509 : 0 : gfc_ref *ref = base_expr->ref;
2510 : 0 : gfc_se base_se;
2511 : :
2512 : : // Iterate through the refs until the last one.
2513 : 0 : while (ref->next)
2514 : : ref = ref->next;
2515 : :
2516 : 0 : if (ref->type == REF_ARRAY
2517 : 0 : && ref->u.ar.type != AR_FULL)
2518 : : {
2519 : 0 : const int ranksum = ref->u.ar.dimen + ref->u.ar.codimen;
2520 : 0 : int i;
2521 : 0 : for (i = 0; i < ranksum; ++i)
2522 : : {
2523 : 0 : ref->u.ar.start[i] = NULL;
2524 : 0 : ref->u.ar.end[i] = NULL;
2525 : : }
2526 : 0 : ref->u.ar.type = AR_FULL;
2527 : : }
2528 : 0 : gfc_init_se (&base_se, NULL);
2529 : 0 : if (gfc_caf_attr (base_expr).dimension)
2530 : : {
2531 : 0 : gfc_conv_expr_descriptor (&base_se, base_expr);
2532 : 0 : tmp = gfc_conv_descriptor_data_get (base_se.expr);
2533 : : }
2534 : : else
2535 : : {
2536 : 0 : gfc_conv_expr (&base_se, base_expr);
2537 : 0 : tmp = base_se.expr;
2538 : : }
2539 : :
2540 : 0 : gfc_free_expr (base_expr);
2541 : 0 : gfc_add_block_to_block (&se->pre, &base_se.pre);
2542 : 0 : gfc_add_block_to_block (&se->post, &base_se.post);
2543 : 0 : }
2544 : 349 : else if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (caf_decl)))
2545 : 65 : tmp = gfc_conv_descriptor_data_get (caf_decl);
2546 : 284 : else if (INDIRECT_REF_P (caf_decl))
2547 : 0 : tmp = TREE_OPERAND (caf_decl, 0);
2548 : : else
2549 : : {
2550 : 284 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (caf_decl)));
2551 : : tmp = caf_decl;
2552 : : }
2553 : :
2554 : 349 : *offset = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
2555 : : fold_convert (gfc_array_index_type, *offset),
2556 : : fold_convert (gfc_array_index_type, tmp));
2557 : : }
2558 : :
2559 : :
2560 : : /* Convert the coindex of a coarray into an image index; the result is
2561 : : image_num = (idx(1)-lcobound(1)+1) + (idx(2)-lcobound(2))*extent(1)
2562 : : + (idx(3)-lcobound(3))*extend(1)*extent(2) + ... */
2563 : :
2564 : : tree
2565 : 1237 : gfc_caf_get_image_index (stmtblock_t *block, gfc_expr *e, tree desc)
2566 : : {
2567 : 1237 : gfc_ref *ref;
2568 : 1237 : tree lbound, ubound, extent, tmp, img_idx;
2569 : 1237 : gfc_se se;
2570 : 1237 : int i;
2571 : :
2572 : 1256 : for (ref = e->ref; ref; ref = ref->next)
2573 : 1256 : if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
2574 : : break;
2575 : 1237 : gcc_assert (ref != NULL);
2576 : :
2577 : 1237 : if (ref->u.ar.dimen_type[ref->u.ar.dimen] == DIMEN_THIS_IMAGE)
2578 : : {
2579 : 83 : return build_call_expr_loc (input_location, gfor_fndecl_caf_this_image, 1,
2580 : 83 : integer_zero_node);
2581 : : }
2582 : :
2583 : 1154 : img_idx = build_zero_cst (gfc_array_index_type);
2584 : 1154 : extent = build_one_cst (gfc_array_index_type);
2585 : 1154 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
2586 : 382 : for (i = ref->u.ar.dimen; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
2587 : : {
2588 : 191 : gfc_init_se (&se, NULL);
2589 : 191 : gfc_conv_expr_type (&se, ref->u.ar.start[i], gfc_array_index_type);
2590 : 191 : gfc_add_block_to_block (block, &se.pre);
2591 : 191 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
2592 : 191 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
2593 : 191 : TREE_TYPE (lbound), se.expr, lbound);
2594 : 191 : tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (tmp),
2595 : : extent, tmp);
2596 : 191 : img_idx = fold_build2_loc (input_location, PLUS_EXPR,
2597 : 191 : TREE_TYPE (tmp), img_idx, tmp);
2598 : 191 : if (i < ref->u.ar.dimen + ref->u.ar.codimen - 1)
2599 : : {
2600 : 0 : ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
2601 : 0 : tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
2602 : 0 : extent = fold_build2_loc (input_location, MULT_EXPR,
2603 : 0 : TREE_TYPE (tmp), extent, tmp);
2604 : : }
2605 : : }
2606 : : else
2607 : 1934 : for (i = ref->u.ar.dimen; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
2608 : : {
2609 : 971 : gfc_init_se (&se, NULL);
2610 : 971 : gfc_conv_expr_type (&se, ref->u.ar.start[i], gfc_array_index_type);
2611 : 971 : gfc_add_block_to_block (block, &se.pre);
2612 : 971 : lbound = GFC_TYPE_ARRAY_LBOUND (TREE_TYPE (desc), i);
2613 : 971 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
2614 : 971 : TREE_TYPE (lbound), se.expr, lbound);
2615 : 971 : tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (tmp),
2616 : : extent, tmp);
2617 : 971 : img_idx = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (tmp),
2618 : : img_idx, tmp);
2619 : 971 : if (i < ref->u.ar.dimen + ref->u.ar.codimen - 1)
2620 : : {
2621 : 8 : ubound = GFC_TYPE_ARRAY_UBOUND (TREE_TYPE (desc), i);
2622 : 8 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
2623 : 8 : TREE_TYPE (ubound), ubound, lbound);
2624 : 8 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (tmp),
2625 : 8 : tmp, build_one_cst (TREE_TYPE (tmp)));
2626 : 8 : extent = fold_build2_loc (input_location, MULT_EXPR,
2627 : 8 : TREE_TYPE (tmp), extent, tmp);
2628 : : }
2629 : : }
2630 : 1154 : img_idx = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (img_idx),
2631 : 1154 : img_idx, build_one_cst (TREE_TYPE (img_idx)));
2632 : 1154 : return fold_convert (integer_type_node, img_idx);
2633 : : }
2634 : :
2635 : :
2636 : : /* For each character array constructor subexpression without a ts.u.cl->length,
2637 : : replace it by its first element (if there aren't any elements, the length
2638 : : should already be set to zero). */
2639 : :
2640 : : static void
2641 : 105 : flatten_array_ctors_without_strlen (gfc_expr* e)
2642 : : {
2643 : 105 : gfc_actual_arglist* arg;
2644 : 105 : gfc_constructor* c;
2645 : :
2646 : 105 : if (!e)
2647 : : return;
2648 : :
2649 : 105 : switch (e->expr_type)
2650 : : {
2651 : :
2652 : 0 : case EXPR_OP:
2653 : 0 : flatten_array_ctors_without_strlen (e->value.op.op1);
2654 : 0 : flatten_array_ctors_without_strlen (e->value.op.op2);
2655 : 0 : break;
2656 : :
2657 : 0 : case EXPR_COMPCALL:
2658 : : /* TODO: Implement as with EXPR_FUNCTION when needed. */
2659 : 0 : gcc_unreachable ();
2660 : :
2661 : 12 : case EXPR_FUNCTION:
2662 : 36 : for (arg = e->value.function.actual; arg; arg = arg->next)
2663 : 24 : flatten_array_ctors_without_strlen (arg->expr);
2664 : : break;
2665 : :
2666 : 0 : case EXPR_ARRAY:
2667 : :
2668 : : /* We've found what we're looking for. */
2669 : 0 : if (e->ts.type == BT_CHARACTER && !e->ts.u.cl->length)
2670 : : {
2671 : 0 : gfc_constructor *c;
2672 : 0 : gfc_expr* new_expr;
2673 : :
2674 : 0 : gcc_assert (e->value.constructor);
2675 : :
2676 : 0 : c = gfc_constructor_first (e->value.constructor);
2677 : 0 : new_expr = c->expr;
2678 : 0 : c->expr = NULL;
2679 : :
2680 : 0 : flatten_array_ctors_without_strlen (new_expr);
2681 : 0 : gfc_replace_expr (e, new_expr);
2682 : 0 : break;
2683 : : }
2684 : :
2685 : : /* Otherwise, fall through to handle constructor elements. */
2686 : 0 : gcc_fallthrough ();
2687 : 0 : case EXPR_STRUCTURE:
2688 : 0 : for (c = gfc_constructor_first (e->value.constructor);
2689 : 0 : c; c = gfc_constructor_next (c))
2690 : 0 : flatten_array_ctors_without_strlen (c->expr);
2691 : : break;
2692 : :
2693 : : default:
2694 : : break;
2695 : :
2696 : : }
2697 : : }
2698 : :
2699 : :
2700 : : /* Generate code to initialize a string length variable. Returns the
2701 : : value. For array constructors, cl->length might be NULL and in this case,
2702 : : the first element of the constructor is needed. expr is the original
2703 : : expression so we can access it but can be NULL if this is not needed. */
2704 : :
2705 : : void
2706 : 3617 : gfc_conv_string_length (gfc_charlen * cl, gfc_expr * expr, stmtblock_t * pblock)
2707 : : {
2708 : 3617 : gfc_se se;
2709 : :
2710 : 3617 : gfc_init_se (&se, NULL);
2711 : :
2712 : 3617 : if (!cl->length && cl->backend_decl && VAR_P (cl->backend_decl))
2713 : 1251 : return;
2714 : :
2715 : : /* If cl->length is NULL, use gfc_conv_expr to obtain the string length but
2716 : : "flatten" array constructors by taking their first element; all elements
2717 : : should be the same length or a cl->length should be present. */
2718 : 2436 : if (!cl->length)
2719 : : {
2720 : 151 : gfc_expr* expr_flat;
2721 : 151 : if (!expr)
2722 : : return;
2723 : 81 : expr_flat = gfc_copy_expr (expr);
2724 : 81 : flatten_array_ctors_without_strlen (expr_flat);
2725 : 81 : gfc_resolve_expr (expr_flat);
2726 : 81 : if (expr_flat->rank)
2727 : 12 : gfc_conv_expr_descriptor (&se, expr_flat);
2728 : : else
2729 : 69 : gfc_conv_expr (&se, expr_flat);
2730 : 81 : if (expr_flat->expr_type != EXPR_VARIABLE)
2731 : 75 : gfc_add_block_to_block (pblock, &se.pre);
2732 : 81 : se.expr = convert (gfc_charlen_type_node, se.string_length);
2733 : 81 : gfc_add_block_to_block (pblock, &se.post);
2734 : 81 : gfc_free_expr (expr_flat);
2735 : : }
2736 : : else
2737 : : {
2738 : : /* Convert cl->length. */
2739 : 2285 : gfc_conv_expr_type (&se, cl->length, gfc_charlen_type_node);
2740 : 2285 : se.expr = fold_build2_loc (input_location, MAX_EXPR,
2741 : : gfc_charlen_type_node, se.expr,
2742 : 2285 : build_zero_cst (TREE_TYPE (se.expr)));
2743 : 2285 : gfc_add_block_to_block (pblock, &se.pre);
2744 : : }
2745 : :
2746 : 2366 : if (cl->backend_decl && VAR_P (cl->backend_decl))
2747 : 1536 : gfc_add_modify (pblock, cl->backend_decl, se.expr);
2748 : : else
2749 : 830 : cl->backend_decl = gfc_evaluate_now (se.expr, pblock);
2750 : : }
2751 : :
2752 : :
2753 : : static void
2754 : 6734 : gfc_conv_substring (gfc_se * se, gfc_ref * ref, int kind,
2755 : : const char *name, locus *where)
2756 : : {
2757 : 6734 : tree tmp;
2758 : 6734 : tree type;
2759 : 6734 : tree fault;
2760 : 6734 : gfc_se start;
2761 : 6734 : gfc_se end;
2762 : 6734 : char *msg;
2763 : 6734 : mpz_t length;
2764 : :
2765 : 6734 : type = gfc_get_character_type (kind, ref->u.ss.length);
2766 : 6734 : type = build_pointer_type (type);
2767 : :
2768 : 6734 : gfc_init_se (&start, se);
2769 : 6734 : gfc_conv_expr_type (&start, ref->u.ss.start, gfc_charlen_type_node);
2770 : 6734 : gfc_add_block_to_block (&se->pre, &start.pre);
2771 : :
2772 : 6734 : if (integer_onep (start.expr))
2773 : 2293 : gfc_conv_string_parameter (se);
2774 : : else
2775 : : {
2776 : 4441 : tmp = start.expr;
2777 : 4441 : STRIP_NOPS (tmp);
2778 : : /* Avoid multiple evaluation of substring start. */
2779 : 4441 : if (!CONSTANT_CLASS_P (tmp) && !DECL_P (tmp))
2780 : 1645 : start.expr = gfc_evaluate_now (start.expr, &se->pre);
2781 : :
2782 : : /* Change the start of the string. */
2783 : 4441 : if ((TREE_CODE (TREE_TYPE (se->expr)) == ARRAY_TYPE
2784 : 1097 : || TREE_CODE (TREE_TYPE (se->expr)) == INTEGER_TYPE)
2785 : 4561 : && TYPE_STRING_FLAG (TREE_TYPE (se->expr)))
2786 : : tmp = se->expr;
2787 : : else
2788 : 977 : tmp = build_fold_indirect_ref_loc (input_location,
2789 : : se->expr);
2790 : : /* For BIND(C), a BT_CHARACTER is not an ARRAY_TYPE. */
2791 : 4441 : if (TREE_CODE (TREE_TYPE (tmp)) == ARRAY_TYPE)
2792 : : {
2793 : 4321 : tmp = gfc_build_array_ref (tmp, start.expr, NULL_TREE, true);
2794 : 4321 : se->expr = gfc_build_addr_expr (type, tmp);
2795 : : }
2796 : : }
2797 : :
2798 : : /* Length = end + 1 - start. */
2799 : 6734 : gfc_init_se (&end, se);
2800 : 6734 : if (ref->u.ss.end == NULL)
2801 : 177 : end.expr = se->string_length;
2802 : : else
2803 : : {
2804 : 6557 : gfc_conv_expr_type (&end, ref->u.ss.end, gfc_charlen_type_node);
2805 : 6557 : gfc_add_block_to_block (&se->pre, &end.pre);
2806 : : }
2807 : 6734 : tmp = end.expr;
2808 : 6734 : STRIP_NOPS (tmp);
2809 : 6734 : if (!CONSTANT_CLASS_P (tmp) && !DECL_P (tmp))
2810 : 2298 : end.expr = gfc_evaluate_now (end.expr, &se->pre);
2811 : :
2812 : 6734 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2813 : 428 : && (ref->u.ss.start->symtree
2814 : 167 : && !ref->u.ss.start->symtree->n.sym->attr.implied_index))
2815 : : {
2816 : 160 : tree nonempty = fold_build2_loc (input_location, LE_EXPR,
2817 : : logical_type_node, start.expr,
2818 : : end.expr);
2819 : :
2820 : : /* Check lower bound. */
2821 : 160 : fault = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
2822 : : start.expr,
2823 : 160 : build_one_cst (TREE_TYPE (start.expr)));
2824 : 160 : fault = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
2825 : : logical_type_node, nonempty, fault);
2826 : 160 : if (name)
2827 : 159 : msg = xasprintf ("Substring out of bounds: lower bound (%%ld) of '%s' "
2828 : : "is less than one", name);
2829 : : else
2830 : 1 : msg = xasprintf ("Substring out of bounds: lower bound (%%ld) "
2831 : : "is less than one");
2832 : 160 : gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
2833 : : fold_convert (long_integer_type_node,
2834 : : start.expr));
2835 : 160 : free (msg);
2836 : :
2837 : : /* Check upper bound. */
2838 : 160 : fault = fold_build2_loc (input_location, GT_EXPR, logical_type_node,
2839 : : end.expr, se->string_length);
2840 : 160 : fault = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
2841 : : logical_type_node, nonempty, fault);
2842 : 160 : if (name)
2843 : 159 : msg = xasprintf ("Substring out of bounds: upper bound (%%ld) of '%s' "
2844 : : "exceeds string length (%%ld)", name);
2845 : : else
2846 : 1 : msg = xasprintf ("Substring out of bounds: upper bound (%%ld) "
2847 : : "exceeds string length (%%ld)");
2848 : 160 : gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
2849 : : fold_convert (long_integer_type_node, end.expr),
2850 : : fold_convert (long_integer_type_node,
2851 : : se->string_length));
2852 : 160 : free (msg);
2853 : : }
2854 : :
2855 : : /* Try to calculate the length from the start and end expressions. */
2856 : 6734 : if (ref->u.ss.end
2857 : 6734 : && gfc_dep_difference (ref->u.ss.end, ref->u.ss.start, &length))
2858 : : {
2859 : 5537 : HOST_WIDE_INT i_len;
2860 : :
2861 : 5537 : i_len = gfc_mpz_get_hwi (length) + 1;
2862 : 5537 : if (i_len < 0)
2863 : : i_len = 0;
2864 : :
2865 : 5537 : tmp = build_int_cst (gfc_charlen_type_node, i_len);
2866 : 5537 : mpz_clear (length); /* Was initialized by gfc_dep_difference. */
2867 : : }
2868 : : else
2869 : : {
2870 : 1197 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_charlen_type_node,
2871 : : fold_convert (gfc_charlen_type_node, end.expr),
2872 : : fold_convert (gfc_charlen_type_node, start.expr));
2873 : 1197 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_charlen_type_node,
2874 : 1197 : build_int_cst (gfc_charlen_type_node, 1), tmp);
2875 : 1197 : tmp = fold_build2_loc (input_location, MAX_EXPR, gfc_charlen_type_node,
2876 : 1197 : tmp, build_int_cst (gfc_charlen_type_node, 0));
2877 : : }
2878 : :
2879 : 6734 : se->string_length = tmp;
2880 : 6734 : }
2881 : :
2882 : :
2883 : : /* Convert a derived type component reference. */
2884 : :
2885 : : void
2886 : 155556 : gfc_conv_component_ref (gfc_se * se, gfc_ref * ref)
2887 : : {
2888 : 155556 : gfc_component *c;
2889 : 155556 : tree tmp;
2890 : 155556 : tree decl;
2891 : 155556 : tree field;
2892 : 155556 : tree context;
2893 : :
2894 : 155556 : c = ref->u.c.component;
2895 : :
2896 : 155556 : if (c->backend_decl == NULL_TREE
2897 : 6 : && ref->u.c.sym != NULL)
2898 : 6 : gfc_get_derived_type (ref->u.c.sym);
2899 : :
2900 : 155556 : field = c->backend_decl;
2901 : 155556 : gcc_assert (field && TREE_CODE (field) == FIELD_DECL);
2902 : 155556 : decl = se->expr;
2903 : 155556 : context = DECL_FIELD_CONTEXT (field);
2904 : :
2905 : : /* Components can correspond to fields of different containing
2906 : : types, as components are created without context, whereas
2907 : : a concrete use of a component has the type of decl as context.
2908 : : So, if the type doesn't match, we search the corresponding
2909 : : FIELD_DECL in the parent type. To not waste too much time
2910 : : we cache this result in norestrict_decl.
2911 : : On the other hand, if the context is a UNION or a MAP (a
2912 : : RECORD_TYPE within a UNION_TYPE) always use the given FIELD_DECL. */
2913 : :
2914 : 155556 : if (context != TREE_TYPE (decl)
2915 : 155556 : && !( TREE_CODE (TREE_TYPE (field)) == UNION_TYPE /* Field is union */
2916 : 10455 : || TREE_CODE (context) == UNION_TYPE)) /* Field is map */
2917 : : {
2918 : 10455 : tree f2 = c->norestrict_decl;
2919 : 18145 : if (!f2 || DECL_FIELD_CONTEXT (f2) != TREE_TYPE (decl))
2920 : 5386 : for (f2 = TYPE_FIELDS (TREE_TYPE (decl)); f2; f2 = DECL_CHAIN (f2))
2921 : 5386 : if (TREE_CODE (f2) == FIELD_DECL
2922 : 5386 : && DECL_NAME (f2) == DECL_NAME (field))
2923 : : break;
2924 : 10455 : gcc_assert (f2);
2925 : 10455 : c->norestrict_decl = f2;
2926 : 10455 : field = f2;
2927 : : }
2928 : :
2929 : 155556 : if (ref->u.c.sym && ref->u.c.sym->ts.type == BT_CLASS
2930 : 0 : && strcmp ("_data", c->name) == 0)
2931 : : {
2932 : : /* Found a ref to the _data component. Store the associated ref to
2933 : : the vptr in se->class_vptr. */
2934 : 0 : se->class_vptr = gfc_class_vptr_get (decl);
2935 : : }
2936 : : else
2937 : 155556 : se->class_vptr = NULL_TREE;
2938 : :
2939 : 155556 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
2940 : : decl, field, NULL_TREE);
2941 : :
2942 : 155556 : se->expr = tmp;
2943 : :
2944 : : /* Allocatable deferred char arrays are to be handled by the gfc_deferred_
2945 : : strlen () conditional below. */
2946 : 155556 : if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
2947 : 8228 : && !c->ts.deferred
2948 : 5333 : && !c->attr.pdt_string)
2949 : : {
2950 : 5207 : tmp = c->ts.u.cl->backend_decl;
2951 : : /* Components must always be constant length. */
2952 : 5207 : gcc_assert (tmp && INTEGER_CST_P (tmp));
2953 : 5207 : se->string_length = tmp;
2954 : : }
2955 : :
2956 : 155556 : if (gfc_deferred_strlen (c, &field))
2957 : : {
2958 : 3021 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
2959 : 3021 : TREE_TYPE (field),
2960 : : decl, field, NULL_TREE);
2961 : 3021 : se->string_length = tmp;
2962 : : }
2963 : :
2964 : 155556 : if (((c->attr.pointer || c->attr.allocatable)
2965 : 89933 : && (!c->attr.dimension && !c->attr.codimension)
2966 : 51117 : && c->ts.type != BT_CHARACTER)
2967 : 106401 : || c->attr.proc_pointer)
2968 : 54927 : se->expr = build_fold_indirect_ref_loc (input_location,
2969 : : se->expr);
2970 : 155556 : }
2971 : :
2972 : :
2973 : : /* This function deals with component references to components of the
2974 : : parent type for derived type extensions. */
2975 : : void
2976 : 60450 : conv_parent_component_references (gfc_se * se, gfc_ref * ref)
2977 : : {
2978 : 60450 : gfc_component *c;
2979 : 60450 : gfc_component *cmp;
2980 : 60450 : gfc_symbol *dt;
2981 : 60450 : gfc_ref parent;
2982 : :
2983 : 60450 : dt = ref->u.c.sym;
2984 : 60450 : c = ref->u.c.component;
2985 : :
2986 : : /* Return if the component is in this type, i.e. not in the parent type. */
2987 : 104301 : for (cmp = dt->components; cmp; cmp = cmp->next)
2988 : 94523 : if (c == cmp)
2989 : 50672 : return;
2990 : :
2991 : : /* Build a gfc_ref to recursively call gfc_conv_component_ref. */
2992 : 9778 : parent.type = REF_COMPONENT;
2993 : 9778 : parent.next = NULL;
2994 : 9778 : parent.u.c.sym = dt;
2995 : 9778 : parent.u.c.component = dt->components;
2996 : :
2997 : 9778 : if (dt->backend_decl == NULL)
2998 : 0 : gfc_get_derived_type (dt);
2999 : :
3000 : : /* Build the reference and call self. */
3001 : 9778 : gfc_conv_component_ref (se, &parent);
3002 : 9778 : parent.u.c.sym = dt->components->ts.u.derived;
3003 : 9778 : parent.u.c.component = c;
3004 : 9778 : conv_parent_component_references (se, &parent);
3005 : : }
3006 : :
3007 : :
3008 : : static void
3009 : 509 : conv_inquiry (gfc_se * se, gfc_ref * ref, gfc_expr *expr, gfc_typespec *ts)
3010 : : {
3011 : 509 : tree res = se->expr;
3012 : :
3013 : 509 : switch (ref->u.i)
3014 : : {
3015 : 245 : case INQUIRY_RE:
3016 : 490 : res = fold_build1_loc (input_location, REALPART_EXPR,
3017 : 245 : TREE_TYPE (TREE_TYPE (res)), res);
3018 : 245 : break;
3019 : :
3020 : 219 : case INQUIRY_IM:
3021 : 438 : res = fold_build1_loc (input_location, IMAGPART_EXPR,
3022 : 219 : TREE_TYPE (TREE_TYPE (res)), res);
3023 : 219 : break;
3024 : :
3025 : 7 : case INQUIRY_KIND:
3026 : 7 : res = build_int_cst (gfc_typenode_for_spec (&expr->ts),
3027 : 7 : ts->kind);
3028 : 7 : se->string_length = NULL_TREE;
3029 : 7 : break;
3030 : :
3031 : 38 : case INQUIRY_LEN:
3032 : 38 : res = fold_convert (gfc_typenode_for_spec (&expr->ts),
3033 : : se->string_length);
3034 : 38 : se->string_length = NULL_TREE;
3035 : 38 : break;
3036 : :
3037 : 0 : default:
3038 : 0 : gcc_unreachable ();
3039 : : }
3040 : 509 : se->expr = res;
3041 : 509 : }
3042 : :
3043 : : /* Dereference VAR where needed if it is a pointer, reference, etc.
3044 : : according to Fortran semantics. */
3045 : :
3046 : : tree
3047 : 1124574 : gfc_maybe_dereference_var (gfc_symbol *sym, tree var, bool descriptor_only_p,
3048 : : bool is_classarray)
3049 : : {
3050 : 1124574 : if (!POINTER_TYPE_P (TREE_TYPE (var)))
3051 : : return var;
3052 : 267942 : if (is_CFI_desc (sym, NULL))
3053 : 11890 : return build_fold_indirect_ref_loc (input_location, var);
3054 : :
3055 : : /* Characters are entirely different from other types, they are treated
3056 : : separately. */
3057 : 256052 : if (sym->ts.type == BT_CHARACTER)
3058 : : {
3059 : : /* Dereference character pointer dummy arguments
3060 : : or results. */
3061 : 29758 : if ((sym->attr.pointer || sym->attr.allocatable
3062 : 17040 : || (sym->as && sym->as->type == AS_ASSUMED_RANK))
3063 : 13054 : && (sym->attr.dummy
3064 : : || sym->attr.function
3065 : 13054 : || sym->attr.result))
3066 : 4110 : var = build_fold_indirect_ref_loc (input_location, var);
3067 : : }
3068 : 226294 : else if (!sym->attr.value)
3069 : : {
3070 : : /* Dereference temporaries for class array dummy arguments. */
3071 : 158630 : if (sym->attr.dummy && is_classarray
3072 : 232716 : && GFC_ARRAY_TYPE_P (TREE_TYPE (var)))
3073 : : {
3074 : 4869 : if (!descriptor_only_p)
3075 : 2464 : var = GFC_DECL_SAVED_DESCRIPTOR (var);
3076 : :
3077 : 4869 : var = build_fold_indirect_ref_loc (input_location, var);
3078 : : }
3079 : :
3080 : : /* Dereference non-character scalar dummy arguments. */
3081 : 225563 : if (sym->attr.dummy && !sym->attr.dimension
3082 : 97418 : && !(sym->attr.codimension && sym->attr.allocatable)
3083 : 97357 : && (sym->ts.type != BT_CLASS
3084 : 18175 : || (!CLASS_DATA (sym)->attr.dimension
3085 : 10555 : && !(CLASS_DATA (sym)->attr.codimension
3086 : : && CLASS_DATA (sym)->attr.allocatable))))
3087 : 89599 : var = build_fold_indirect_ref_loc (input_location, var);
3088 : :
3089 : : /* Dereference scalar hidden result. */
3090 : 225563 : if (flag_f2c && sym->ts.type == BT_COMPLEX
3091 : 306 : && (sym->attr.function || sym->attr.result)
3092 : 108 : && !sym->attr.dimension && !sym->attr.pointer
3093 : 60 : && !sym->attr.always_explicit)
3094 : 36 : var = build_fold_indirect_ref_loc (input_location, var);
3095 : :
3096 : : /* Dereference non-character, non-class pointer variables.
3097 : : These must be dummies, results, or scalars. */
3098 : 225563 : if (!is_classarray
3099 : 217985 : && (sym->attr.pointer || sym->attr.allocatable
3100 : 173643 : || gfc_is_associate_pointer (sym)
3101 : 169161 : || (sym->as && sym->as->type == AS_ASSUMED_RANK))
3102 : 225563 : && (sym->attr.dummy
3103 : : || sym->attr.function
3104 : 67111 : || sym->attr.result
3105 : 30028 : || (!sym->attr.dimension
3106 : 30026 : && (!sym->attr.codimension || !sym->attr.allocatable))))
3107 : 67109 : var = build_fold_indirect_ref_loc (input_location, var);
3108 : : /* Now treat the class array pointer variables accordingly. */
3109 : 158454 : else if (sym->ts.type == BT_CLASS
3110 : 18600 : && sym->attr.dummy
3111 : 18175 : && (CLASS_DATA (sym)->attr.dimension
3112 : 18175 : || CLASS_DATA (sym)->attr.codimension)
3113 : 7882 : && ((CLASS_DATA (sym)->as
3114 : 7882 : && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
3115 : : || CLASS_DATA (sym)->attr.allocatable
3116 : 6885 : || CLASS_DATA (sym)->attr.class_pointer))
3117 : 2889 : var = build_fold_indirect_ref_loc (input_location, var);
3118 : : /* And the case where a non-dummy, non-result, non-function,
3119 : : non-allocable and non-pointer classarray is present. This case was
3120 : : previously covered by the first if, but with introducing the
3121 : : condition !is_classarray there, that case has to be covered
3122 : : explicitly. */
3123 : 155565 : else if (sym->ts.type == BT_CLASS
3124 : : && !sym->attr.dummy
3125 : : && !sym->attr.function
3126 : 15711 : && !sym->attr.result
3127 : 425 : && (CLASS_DATA (sym)->attr.dimension
3128 : 425 : || CLASS_DATA (sym)->attr.codimension)
3129 : 425 : && (sym->assoc
3130 : 0 : || !CLASS_DATA (sym)->attr.allocatable)
3131 : 425 : && !CLASS_DATA (sym)->attr.class_pointer)
3132 : 425 : var = build_fold_indirect_ref_loc (input_location, var);
3133 : : }
3134 : :
3135 : : return var;
3136 : : }
3137 : :
3138 : : /* Return the contents of a variable. Also handles reference/pointer
3139 : : variables (all Fortran pointer references are implicit). */
3140 : :
3141 : : static void
3142 : 1262361 : gfc_conv_variable (gfc_se * se, gfc_expr * expr)
3143 : : {
3144 : 1262361 : gfc_ss *ss;
3145 : 1262361 : gfc_ref *ref;
3146 : 1262361 : gfc_symbol *sym;
3147 : 1262361 : tree parent_decl = NULL_TREE;
3148 : 1262361 : int parent_flag;
3149 : 1262361 : bool return_value;
3150 : 1262361 : bool alternate_entry;
3151 : 1262361 : bool entry_master;
3152 : 1262361 : bool is_classarray;
3153 : 1262361 : bool first_time = true;
3154 : :
3155 : 1262361 : sym = expr->symtree->n.sym;
3156 : 1262361 : is_classarray = IS_CLASS_COARRAY_OR_ARRAY (sym);
3157 : 1262361 : ss = se->ss;
3158 : 1262361 : if (ss != NULL)
3159 : : {
3160 : 119941 : gfc_ss_info *ss_info = ss->info;
3161 : :
3162 : : /* Check that something hasn't gone horribly wrong. */
3163 : 119941 : gcc_assert (ss != gfc_ss_terminator);
3164 : 119941 : gcc_assert (ss_info->expr == expr);
3165 : :
3166 : : /* A scalarized term. We already know the descriptor. */
3167 : 119941 : se->expr = ss_info->data.array.descriptor;
3168 : 119941 : se->string_length = ss_info->string_length;
3169 : 119941 : ref = ss_info->data.array.ref;
3170 : 119941 : if (ref)
3171 : 119623 : gcc_assert (ref->type == REF_ARRAY
3172 : : && ref->u.ar.type != AR_ELEMENT);
3173 : : else
3174 : 318 : gfc_conv_tmp_array_ref (se);
3175 : : }
3176 : : else
3177 : : {
3178 : 1142420 : tree se_expr = NULL_TREE;
3179 : :
3180 : 1142420 : se->expr = gfc_get_symbol_decl (sym);
3181 : :
3182 : : /* Deal with references to a parent results or entries by storing
3183 : : the current_function_decl and moving to the parent_decl. */
3184 : 1142420 : return_value = sym->attr.function && sym->result == sym;
3185 : 19008 : alternate_entry = sym->attr.function && sym->attr.entry
3186 : 1143495 : && sym->result == sym;
3187 : 2284840 : entry_master = sym->attr.result
3188 : 11201 : && sym->ns->proc_name->attr.entry_master
3189 : 1142801 : && !gfc_return_by_reference (sym->ns->proc_name);
3190 : 1142420 : if (current_function_decl)
3191 : 1124204 : parent_decl = DECL_CONTEXT (current_function_decl);
3192 : :
3193 : 1142420 : if ((se->expr == parent_decl && return_value)
3194 : 1142309 : || (sym->ns && sym->ns->proc_name
3195 : 1137525 : && parent_decl
3196 : 1119309 : && sym->ns->proc_name->backend_decl == parent_decl
3197 : 37096 : && (alternate_entry || entry_master)))
3198 : : parent_flag = 1;
3199 : : else
3200 : 1142276 : parent_flag = 0;
3201 : :
3202 : : /* Special case for assigning the return value of a function.
3203 : : Self recursive functions must have an explicit return value. */
3204 : 1142420 : if (return_value && (se->expr == current_function_decl || parent_flag))
3205 : 11581 : se_expr = gfc_get_fake_result_decl (sym, parent_flag);
3206 : :
3207 : : /* Similarly for alternate entry points. */
3208 : 1130839 : else if (alternate_entry
3209 : 1042 : && (sym->ns->proc_name->backend_decl == current_function_decl
3210 : 0 : || parent_flag))
3211 : : {
3212 : 1042 : gfc_entry_list *el = NULL;
3213 : :
3214 : 1609 : for (el = sym->ns->entries; el; el = el->next)
3215 : 1609 : if (sym == el->sym)
3216 : : {
3217 : 1042 : se_expr = gfc_get_fake_result_decl (sym, parent_flag);
3218 : 1042 : break;
3219 : : }
3220 : : }
3221 : :
3222 : 1129797 : else if (entry_master
3223 : 295 : && (sym->ns->proc_name->backend_decl == current_function_decl
3224 : 0 : || parent_flag))
3225 : 295 : se_expr = gfc_get_fake_result_decl (sym, parent_flag);
3226 : :
3227 : 12918 : if (se_expr)
3228 : 12918 : se->expr = se_expr;
3229 : :
3230 : : /* Procedure actual arguments. Look out for temporary variables
3231 : : with the same attributes as function values. */
3232 : 1129502 : else if (!sym->attr.temporary
3233 : 1129434 : && sym->attr.flavor == FL_PROCEDURE
3234 : 19505 : && se->expr != current_function_decl)
3235 : : {
3236 : 19466 : if (!sym->attr.dummy && !sym->attr.proc_pointer)
3237 : : {
3238 : 17951 : gcc_assert (TREE_CODE (se->expr) == FUNCTION_DECL);
3239 : 17951 : se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
3240 : : }
3241 : 19466 : return;
3242 : : }
3243 : :
3244 : 1122954 : if (sym->ts.type == BT_CLASS
3245 : 67915 : && sym->attr.class_ok
3246 : 67673 : && sym->ts.u.derived->attr.is_class)
3247 : : {
3248 : 25632 : if (is_classarray && DECL_LANG_SPECIFIC (se->expr)
3249 : 74619 : && GFC_DECL_SAVED_DESCRIPTOR (se->expr))
3250 : 4993 : se->class_container = GFC_DECL_SAVED_DESCRIPTOR (se->expr);
3251 : : else
3252 : 62680 : se->class_container = se->expr;
3253 : : }
3254 : :
3255 : : /* Dereference the expression, where needed. */
3256 : 1122954 : if (se->class_container && CLASS_DATA (sym)->attr.codimension
3257 : 68285 : && !CLASS_DATA (sym)->attr.dimension)
3258 : 772 : se->expr
3259 : 772 : = gfc_maybe_dereference_var (sym, se->class_container,
3260 : 772 : se->descriptor_only, is_classarray);
3261 : : else
3262 : 1122182 : se->expr
3263 : 1122182 : = gfc_maybe_dereference_var (sym, se->expr, se->descriptor_only,
3264 : : is_classarray);
3265 : :
3266 : 1122954 : ref = expr->ref;
3267 : : }
3268 : :
3269 : : /* For character variables, also get the length. */
3270 : 1242895 : if (sym->ts.type == BT_CHARACTER)
3271 : : {
3272 : : /* If the character length of an entry isn't set, get the length from
3273 : : the master function instead. */
3274 : 156242 : if (sym->attr.entry && !sym->ts.u.cl->backend_decl)
3275 : 0 : se->string_length = sym->ns->proc_name->ts.u.cl->backend_decl;
3276 : : else
3277 : 156242 : se->string_length = sym->ts.u.cl->backend_decl;
3278 : 156242 : gcc_assert (se->string_length);
3279 : :
3280 : : /* For coarray strings return the pointer to the data and not the
3281 : : descriptor. */
3282 : 3465 : if (sym->attr.codimension && sym->attr.associate_var
3283 : 6 : && !se->descriptor_only
3284 : 156248 : && TREE_CODE (TREE_TYPE (se->expr)) != ARRAY_TYPE)
3285 : 6 : se->expr = gfc_conv_descriptor_data_get (se->expr);
3286 : : }
3287 : :
3288 : : /* F202Y: Runtime warning that an assumed rank object is associated
3289 : : with an assumed size object. */
3290 : 1242895 : if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
3291 : 88845 : && (gfc_option.allow_std & GFC_STD_F202Y)
3292 : 1243129 : && expr->rank == -1 && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se->expr)))
3293 : : {
3294 : 60 : tree dim, lower, upper, cond;
3295 : 60 : char *msg;
3296 : :
3297 : 60 : dim = fold_convert (signed_char_type_node,
3298 : : gfc_conv_descriptor_rank (se->expr));
3299 : 60 : dim = fold_build2_loc (input_location, MINUS_EXPR, signed_char_type_node,
3300 : 60 : dim, build_int_cst (signed_char_type_node, 1));
3301 : 60 : lower = gfc_conv_descriptor_lbound_get (se->expr, dim);
3302 : 60 : upper = gfc_conv_descriptor_ubound_get (se->expr, dim);
3303 : :
3304 : 60 : msg = xasprintf ("Assumed rank object %s is associated with an "
3305 : : "assumed size object", sym->name);
3306 : 60 : cond = fold_build2_loc (input_location, LT_EXPR,
3307 : : logical_type_node, upper, lower);
3308 : 60 : gfc_trans_runtime_check (false, true, cond, &se->pre,
3309 : : &gfc_current_locus, msg);
3310 : 60 : free (msg);
3311 : : }
3312 : :
3313 : : /* Some expressions leak through that haven't been fixed up. */
3314 : 1242895 : if (IS_INFERRED_TYPE (expr) && expr->ref)
3315 : 378 : gfc_fixup_inferred_type_refs (expr);
3316 : :
3317 : 1242895 : gfc_typespec *ts = &sym->ts;
3318 : 1631783 : while (ref)
3319 : : {
3320 : 711086 : switch (ref->type)
3321 : : {
3322 : 557866 : case REF_ARRAY:
3323 : : /* Return the descriptor if that's what we want and this is an array
3324 : : section reference. */
3325 : 557866 : if (se->descriptor_only && ref->u.ar.type != AR_ELEMENT)
3326 : : return;
3327 : : /* TODO: Pointers to single elements of array sections, eg elemental subs. */
3328 : : /* Return the descriptor for array pointers and allocations. */
3329 : 244545 : if (se->want_pointer
3330 : 21928 : && ref->next == NULL && (se->descriptor_only))
3331 : : return;
3332 : :
3333 : 235668 : gfc_conv_array_ref (se, &ref->u.ar, expr, &expr->where);
3334 : : /* Return a pointer to an element. */
3335 : 235668 : break;
3336 : :
3337 : 146250 : case REF_COMPONENT:
3338 : 146250 : ts = &ref->u.c.component->ts;
3339 : 146250 : if (first_time && IS_CLASS_ARRAY (sym) && sym->attr.dummy
3340 : 5484 : && se->descriptor_only && !CLASS_DATA (sym)->attr.allocatable
3341 : 3856 : && !CLASS_DATA (sym)->attr.class_pointer && CLASS_DATA (sym)->as
3342 : 2872 : && CLASS_DATA (sym)->as->type != AS_ASSUMED_RANK
3343 : 2405 : && strcmp ("_data", ref->u.c.component->name) == 0)
3344 : : /* Skip the first ref of a _data component, because for class
3345 : : arrays that one is already done by introducing a temporary
3346 : : array descriptor. */
3347 : : break;
3348 : :
3349 : 143845 : if (ref->u.c.sym->attr.extension)
3350 : 50581 : conv_parent_component_references (se, ref);
3351 : :
3352 : 143845 : gfc_conv_component_ref (se, ref);
3353 : :
3354 : 143845 : if (ref->u.c.component->ts.type == BT_CLASS
3355 : 10967 : && ref->u.c.component->attr.class_ok
3356 : 10967 : && ref->u.c.component->ts.u.derived->attr.is_class)
3357 : 10967 : se->class_container = se->expr;
3358 : 132878 : else if (!(ref->u.c.sym->attr.flavor == FL_DERIVED
3359 : 130384 : && ref->u.c.sym->attr.is_class))
3360 : 69595 : se->class_container = NULL_TREE;
3361 : :
3362 : 143845 : if (!ref->next && ref->u.c.sym->attr.codimension
3363 : 0 : && se->want_pointer && se->descriptor_only)
3364 : : return;
3365 : :
3366 : : break;
3367 : :
3368 : 6461 : case REF_SUBSTRING:
3369 : 6461 : gfc_conv_substring (se, ref, expr->ts.kind,
3370 : 6461 : expr->symtree->name, &expr->where);
3371 : 6461 : break;
3372 : :
3373 : 509 : case REF_INQUIRY:
3374 : 509 : conv_inquiry (se, ref, expr, ts);
3375 : 509 : break;
3376 : :
3377 : 0 : default:
3378 : 0 : gcc_unreachable ();
3379 : 388888 : break;
3380 : : }
3381 : 388888 : first_time = false;
3382 : 388888 : ref = ref->next;
3383 : : }
3384 : : /* Pointer assignment, allocation or pass by reference. Arrays are handled
3385 : : separately. */
3386 : 920697 : if (se->want_pointer)
3387 : : {
3388 : 124850 : if (expr->ts.type == BT_CHARACTER && !gfc_is_proc_ptr_comp (expr))
3389 : 7459 : gfc_conv_string_parameter (se);
3390 : : else
3391 : 117391 : se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
3392 : : }
3393 : : }
3394 : :
3395 : :
3396 : : /* Unary ops are easy... Or they would be if ! was a valid op. */
3397 : :
3398 : : static void
3399 : 27252 : gfc_conv_unary_op (enum tree_code code, gfc_se * se, gfc_expr * expr)
3400 : : {
3401 : 27252 : gfc_se operand;
3402 : 27252 : tree type;
3403 : :
3404 : 27252 : gcc_assert (expr->ts.type != BT_CHARACTER);
3405 : : /* Initialize the operand. */
3406 : 27252 : gfc_init_se (&operand, se);
3407 : 27252 : gfc_conv_expr_val (&operand, expr->value.op.op1);
3408 : 27252 : gfc_add_block_to_block (&se->pre, &operand.pre);
3409 : :
3410 : 27252 : type = gfc_typenode_for_spec (&expr->ts);
3411 : :
3412 : : /* TRUTH_NOT_EXPR is not a "true" unary operator in GCC.
3413 : : We must convert it to a compare to 0 (e.g. EQ_EXPR (op1, 0)).
3414 : : All other unary operators have an equivalent GIMPLE unary operator. */
3415 : 27252 : if (code == TRUTH_NOT_EXPR)
3416 : 18916 : se->expr = fold_build2_loc (input_location, EQ_EXPR, type, operand.expr,
3417 : 18916 : build_int_cst (type, 0));
3418 : : else
3419 : 8336 : se->expr = fold_build1_loc (input_location, code, type, operand.expr);
3420 : :
3421 : 27252 : }
3422 : :
3423 : : /* Expand power operator to optimal multiplications when a value is raised
3424 : : to a constant integer n. See section 4.6.3, "Evaluation of Powers" of
3425 : : Donald E. Knuth, "Seminumerical Algorithms", Vol. 2, "The Art of Computer
3426 : : Programming", 3rd Edition, 1998. */
3427 : :
3428 : : /* This code is mostly duplicated from expand_powi in the backend.
3429 : : We establish the "optimal power tree" lookup table with the defined size.
3430 : : The items in the table are the exponents used to calculate the index
3431 : : exponents. Any integer n less than the value can get an "addition chain",
3432 : : with the first node being one. */
3433 : : #define POWI_TABLE_SIZE 256
3434 : :
3435 : : /* The table is from builtins.cc. */
3436 : : static const unsigned char powi_table[POWI_TABLE_SIZE] =
3437 : : {
3438 : : 0, 1, 1, 2, 2, 3, 3, 4, /* 0 - 7 */
3439 : : 4, 6, 5, 6, 6, 10, 7, 9, /* 8 - 15 */
3440 : : 8, 16, 9, 16, 10, 12, 11, 13, /* 16 - 23 */
3441 : : 12, 17, 13, 18, 14, 24, 15, 26, /* 24 - 31 */
3442 : : 16, 17, 17, 19, 18, 33, 19, 26, /* 32 - 39 */
3443 : : 20, 25, 21, 40, 22, 27, 23, 44, /* 40 - 47 */
3444 : : 24, 32, 25, 34, 26, 29, 27, 44, /* 48 - 55 */
3445 : : 28, 31, 29, 34, 30, 60, 31, 36, /* 56 - 63 */
3446 : : 32, 64, 33, 34, 34, 46, 35, 37, /* 64 - 71 */
3447 : : 36, 65, 37, 50, 38, 48, 39, 69, /* 72 - 79 */
3448 : : 40, 49, 41, 43, 42, 51, 43, 58, /* 80 - 87 */
3449 : : 44, 64, 45, 47, 46, 59, 47, 76, /* 88 - 95 */
3450 : : 48, 65, 49, 66, 50, 67, 51, 66, /* 96 - 103 */
3451 : : 52, 70, 53, 74, 54, 104, 55, 74, /* 104 - 111 */
3452 : : 56, 64, 57, 69, 58, 78, 59, 68, /* 112 - 119 */
3453 : : 60, 61, 61, 80, 62, 75, 63, 68, /* 120 - 127 */
3454 : : 64, 65, 65, 128, 66, 129, 67, 90, /* 128 - 135 */
3455 : : 68, 73, 69, 131, 70, 94, 71, 88, /* 136 - 143 */
3456 : : 72, 128, 73, 98, 74, 132, 75, 121, /* 144 - 151 */
3457 : : 76, 102, 77, 124, 78, 132, 79, 106, /* 152 - 159 */
3458 : : 80, 97, 81, 160, 82, 99, 83, 134, /* 160 - 167 */
3459 : : 84, 86, 85, 95, 86, 160, 87, 100, /* 168 - 175 */
3460 : : 88, 113, 89, 98, 90, 107, 91, 122, /* 176 - 183 */
3461 : : 92, 111, 93, 102, 94, 126, 95, 150, /* 184 - 191 */
3462 : : 96, 128, 97, 130, 98, 133, 99, 195, /* 192 - 199 */
3463 : : 100, 128, 101, 123, 102, 164, 103, 138, /* 200 - 207 */
3464 : : 104, 145, 105, 146, 106, 109, 107, 149, /* 208 - 215 */
3465 : : 108, 200, 109, 146, 110, 170, 111, 157, /* 216 - 223 */
3466 : : 112, 128, 113, 130, 114, 182, 115, 132, /* 224 - 231 */
3467 : : 116, 200, 117, 132, 118, 158, 119, 206, /* 232 - 239 */
3468 : : 120, 240, 121, 162, 122, 147, 123, 152, /* 240 - 247 */
3469 : : 124, 166, 125, 214, 126, 138, 127, 153, /* 248 - 255 */
3470 : : };
3471 : :
3472 : : /* If n is larger than lookup table's max index, we use the "window
3473 : : method". */
3474 : : #define POWI_WINDOW_SIZE 3
3475 : :
3476 : : /* Recursive function to expand the power operator. The temporary
3477 : : values are put in tmpvar. The function returns tmpvar[1] ** n. */
3478 : : static tree
3479 : 4452 : gfc_conv_powi (gfc_se * se, unsigned HOST_WIDE_INT n, tree * tmpvar)
3480 : : {
3481 : 4452 : tree op0;
3482 : 4452 : tree op1;
3483 : 4452 : tree tmp;
3484 : 4452 : int digit;
3485 : :
3486 : 4452 : if (n < POWI_TABLE_SIZE)
3487 : : {
3488 : 3593 : if (tmpvar[n])
3489 : : return tmpvar[n];
3490 : :
3491 : 1210 : op0 = gfc_conv_powi (se, n - powi_table[n], tmpvar);
3492 : 1210 : op1 = gfc_conv_powi (se, powi_table[n], tmpvar);
3493 : : }
3494 : 859 : else if (n & 1)
3495 : : {
3496 : 223 : digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
3497 : 223 : op0 = gfc_conv_powi (se, n - digit, tmpvar);
3498 : 223 : op1 = gfc_conv_powi (se, digit, tmpvar);
3499 : : }
3500 : : else
3501 : : {
3502 : 636 : op0 = gfc_conv_powi (se, n >> 1, tmpvar);
3503 : 636 : op1 = op0;
3504 : : }
3505 : :
3506 : 2069 : tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (op0), op0, op1);
3507 : 2069 : tmp = gfc_evaluate_now (tmp, &se->pre);
3508 : :
3509 : 2069 : if (n < POWI_TABLE_SIZE)
3510 : 1210 : tmpvar[n] = tmp;
3511 : :
3512 : : return tmp;
3513 : : }
3514 : :
3515 : :
3516 : : /* Expand lhs ** rhs. rhs is a constant integer. If it expands successfully,
3517 : : return 1. Else return 0 and a call to runtime library functions
3518 : : will have to be built. */
3519 : : static int
3520 : 1748 : gfc_conv_cst_int_power (gfc_se * se, tree lhs, tree rhs)
3521 : : {
3522 : 1748 : tree cond;
3523 : 1748 : tree tmp;
3524 : 1748 : tree type;
3525 : 1748 : tree vartmp[POWI_TABLE_SIZE];
3526 : 1748 : HOST_WIDE_INT m;
3527 : 1748 : unsigned HOST_WIDE_INT n;
3528 : 1748 : int sgn;
3529 : 1748 : wi::tree_to_wide_ref wrhs = wi::to_wide (rhs);
3530 : :
3531 : : /* If exponent is too large, we won't expand it anyway, so don't bother
3532 : : with large integer values. */
3533 : 1748 : if (!wi::fits_shwi_p (wrhs))
3534 : : return 0;
3535 : :
3536 : 1748 : m = wrhs.to_shwi ();
3537 : : /* Use the wide_int's routine to reliably get the absolute value on all
3538 : : platforms. Then convert it to a HOST_WIDE_INT like above. */
3539 : 1748 : n = wi::abs (wrhs).to_shwi ();
3540 : :
3541 : 1748 : type = TREE_TYPE (lhs);
3542 : 1748 : sgn = tree_int_cst_sgn (rhs);
3543 : :
3544 : 1748 : if (((FLOAT_TYPE_P (type) && !flag_unsafe_math_optimizations)
3545 : 3496 : || optimize_size) && (m > 2 || m < -1))
3546 : : return 0;
3547 : :
3548 : : /* rhs == 0 */
3549 : 1269 : if (sgn == 0)
3550 : : {
3551 : 167 : se->expr = gfc_build_const (type, integer_one_node);
3552 : 167 : return 1;
3553 : : }
3554 : :
3555 : : /* If rhs < 0 and lhs is an integer, the result is -1, 0 or 1. */
3556 : 1102 : if ((sgn == -1) && (TREE_CODE (type) == INTEGER_TYPE))
3557 : : {
3558 : 152 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
3559 : 152 : lhs, build_int_cst (TREE_TYPE (lhs), -1));
3560 : 152 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
3561 : 152 : lhs, build_int_cst (TREE_TYPE (lhs), 1));
3562 : :
3563 : : /* If rhs is even,
3564 : : result = (lhs == 1 || lhs == -1) ? 1 : 0. */
3565 : 152 : if ((n & 1) == 0)
3566 : : {
3567 : 72 : tmp = fold_build2_loc (input_location, TRUTH_OR_EXPR,
3568 : : logical_type_node, tmp, cond);
3569 : 72 : se->expr = fold_build3_loc (input_location, COND_EXPR, type,
3570 : 72 : tmp, build_int_cst (type, 1),
3571 : 72 : build_int_cst (type, 0));
3572 : 72 : return 1;
3573 : : }
3574 : : /* If rhs is odd,
3575 : : result = (lhs == 1) ? 1 : (lhs == -1) ? -1 : 0. */
3576 : 80 : tmp = fold_build3_loc (input_location, COND_EXPR, type, tmp,
3577 : 80 : build_int_cst (type, -1),
3578 : 80 : build_int_cst (type, 0));
3579 : 80 : se->expr = fold_build3_loc (input_location, COND_EXPR, type,
3580 : 80 : cond, build_int_cst (type, 1), tmp);
3581 : 80 : return 1;
3582 : : }
3583 : :
3584 : 950 : memset (vartmp, 0, sizeof (vartmp));
3585 : 950 : vartmp[1] = lhs;
3586 : 950 : if (sgn == -1)
3587 : : {
3588 : 91 : tmp = gfc_build_const (type, integer_one_node);
3589 : 91 : vartmp[1] = fold_build2_loc (input_location, RDIV_EXPR, type, tmp,
3590 : : vartmp[1]);
3591 : : }
3592 : :
3593 : 950 : se->expr = gfc_conv_powi (se, n, vartmp);
3594 : :
3595 : 950 : return 1;
3596 : : }
3597 : :
3598 : :
3599 : : /* Power op (**). Constant integer exponent has special handling. */
3600 : :
3601 : : static void
3602 : 3227 : gfc_conv_power_op (gfc_se * se, gfc_expr * expr)
3603 : : {
3604 : 3227 : tree gfc_int4_type_node;
3605 : 3227 : int kind;
3606 : 3227 : int ikind;
3607 : 3227 : int res_ikind_1, res_ikind_2;
3608 : 3227 : gfc_se lse;
3609 : 3227 : gfc_se rse;
3610 : 3227 : tree fndecl = NULL;
3611 : :
3612 : 3227 : gfc_init_se (&lse, se);
3613 : 3227 : gfc_conv_expr_val (&lse, expr->value.op.op1);
3614 : 3227 : lse.expr = gfc_evaluate_now (lse.expr, &lse.pre);
3615 : 3227 : gfc_add_block_to_block (&se->pre, &lse.pre);
3616 : :
3617 : 3227 : gfc_init_se (&rse, se);
3618 : 3227 : gfc_conv_expr_val (&rse, expr->value.op.op2);
3619 : 3227 : gfc_add_block_to_block (&se->pre, &rse.pre);
3620 : :
3621 : 3227 : if (expr->value.op.op2->ts.type == BT_INTEGER
3622 : 2361 : && expr->value.op.op2->expr_type == EXPR_CONSTANT)
3623 : 1748 : if (gfc_conv_cst_int_power (se, lse.expr, rse.expr))
3624 : 1518 : return;
3625 : :
3626 : 1958 : if (INTEGER_CST_P (lse.expr)
3627 : 1958 : && TREE_CODE (TREE_TYPE (rse.expr)) == INTEGER_TYPE)
3628 : : {
3629 : 255 : wi::tree_to_wide_ref wlhs = wi::to_wide (lse.expr);
3630 : 255 : HOST_WIDE_INT v;
3631 : 255 : unsigned HOST_WIDE_INT w;
3632 : 255 : int kind, ikind, bit_size;
3633 : :
3634 : 255 : v = wlhs.to_shwi ();
3635 : 255 : w = absu_hwi (v);
3636 : :
3637 : 255 : kind = expr->value.op.op1->ts.kind;
3638 : 255 : ikind = gfc_validate_kind (BT_INTEGER, kind, false);
3639 : 255 : bit_size = gfc_integer_kinds[ikind].bit_size;
3640 : :
3641 : 255 : if (v == 1)
3642 : : {
3643 : : /* 1**something is always 1. */
3644 : 35 : se->expr = build_int_cst (TREE_TYPE (lse.expr), 1);
3645 : 249 : return;
3646 : : }
3647 : 220 : else if (v == -1)
3648 : : {
3649 : : /* (-1)**n is 1 - ((n & 1) << 1) */
3650 : 44 : tree type;
3651 : 44 : tree tmp;
3652 : :
3653 : 44 : type = TREE_TYPE (lse.expr);
3654 : 44 : tmp = fold_build2_loc (input_location, BIT_AND_EXPR, type,
3655 : 44 : rse.expr, build_int_cst (type, 1));
3656 : 44 : tmp = fold_build2_loc (input_location, LSHIFT_EXPR, type,
3657 : 44 : tmp, build_int_cst (type, 1));
3658 : 44 : tmp = fold_build2_loc (input_location, MINUS_EXPR, type,
3659 : 44 : build_int_cst (type, 1), tmp);
3660 : 44 : se->expr = tmp;
3661 : 44 : return;
3662 : : }
3663 : 176 : else if (w > 0 && ((w & (w-1)) == 0) && ((w >> (bit_size-1)) == 0))
3664 : : {
3665 : : /* Here v is +/- 2**e. The further simplification uses
3666 : : 2**n = 1<<n, 4**n = 1<<(n+n), 8**n = 1 <<(3*n), 16**n =
3667 : : 1<<(4*n), etc., but we have to make sure to return zero
3668 : : if the number of bits is too large. */
3669 : 170 : tree lshift;
3670 : 170 : tree type;
3671 : 170 : tree shift;
3672 : 170 : tree ge;
3673 : 170 : tree cond;
3674 : 170 : tree num_bits;
3675 : 170 : tree cond2;
3676 : 170 : tree tmp1;
3677 : :
3678 : 170 : type = TREE_TYPE (lse.expr);
3679 : :
3680 : 170 : if (w == 2)
3681 : 110 : shift = rse.expr;
3682 : 60 : else if (w == 4)
3683 : 12 : shift = fold_build2_loc (input_location, PLUS_EXPR,
3684 : 12 : TREE_TYPE (rse.expr),
3685 : : rse.expr, rse.expr);
3686 : : else
3687 : : {
3688 : : /* use popcount for fast log2(w) */
3689 : 48 : int e = wi::popcount (w-1);
3690 : 96 : shift = fold_build2_loc (input_location, MULT_EXPR,
3691 : 48 : TREE_TYPE (rse.expr),
3692 : 48 : build_int_cst (TREE_TYPE (rse.expr), e),
3693 : : rse.expr);
3694 : : }
3695 : :
3696 : 170 : lshift = fold_build2_loc (input_location, LSHIFT_EXPR, type,
3697 : 170 : build_int_cst (type, 1), shift);
3698 : 170 : ge = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
3699 : 170 : rse.expr, build_int_cst (type, 0));
3700 : 170 : cond = fold_build3_loc (input_location, COND_EXPR, type, ge, lshift,
3701 : 170 : build_int_cst (type, 0));
3702 : 170 : num_bits = build_int_cst (TREE_TYPE (rse.expr), TYPE_PRECISION (type));
3703 : 170 : cond2 = fold_build2_loc (input_location, GE_EXPR, logical_type_node,
3704 : : rse.expr, num_bits);
3705 : 170 : tmp1 = fold_build3_loc (input_location, COND_EXPR, type, cond2,
3706 : 170 : build_int_cst (type, 0), cond);
3707 : 170 : if (v > 0)
3708 : : {
3709 : 128 : se->expr = tmp1;
3710 : : }
3711 : : else
3712 : : {
3713 : : /* for v < 0, calculate v**n = |v|**n * (-1)**n */
3714 : 42 : tree tmp2;
3715 : 42 : tmp2 = fold_build2_loc (input_location, BIT_AND_EXPR, type,
3716 : 42 : rse.expr, build_int_cst (type, 1));
3717 : 42 : tmp2 = fold_build2_loc (input_location, LSHIFT_EXPR, type,
3718 : 42 : tmp2, build_int_cst (type, 1));
3719 : 42 : tmp2 = fold_build2_loc (input_location, MINUS_EXPR, type,
3720 : 42 : build_int_cst (type, 1), tmp2);
3721 : 42 : se->expr = fold_build2_loc (input_location, MULT_EXPR, type,
3722 : : tmp1, tmp2);
3723 : : }
3724 : 170 : return;
3725 : : }
3726 : : }
3727 : :
3728 : 1709 : gfc_int4_type_node = gfc_get_int_type (4);
3729 : :
3730 : : /* In case of integer operands with kinds 1 or 2, we call the integer kind 4
3731 : : library routine. But in the end, we have to convert the result back
3732 : : if this case applies -- with res_ikind_K, we keep track whether operand K
3733 : : falls into this case. */
3734 : 1709 : res_ikind_1 = -1;
3735 : 1709 : res_ikind_2 = -1;
3736 : :
3737 : 1709 : kind = expr->value.op.op1->ts.kind;
3738 : 1709 : switch (expr->value.op.op2->ts.type)
3739 : : {
3740 : 843 : case BT_INTEGER:
3741 : 843 : ikind = expr->value.op.op2->ts.kind;
3742 : 843 : switch (ikind)
3743 : : {
3744 : 144 : case 1:
3745 : 144 : case 2:
3746 : 144 : rse.expr = convert (gfc_int4_type_node, rse.expr);
3747 : 144 : res_ikind_2 = ikind;
3748 : : /* Fall through. */
3749 : :
3750 : : case 4:
3751 : : ikind = 0;
3752 : : break;
3753 : :
3754 : : case 8:
3755 : : ikind = 1;
3756 : : break;
3757 : :
3758 : 6 : case 16:
3759 : 6 : ikind = 2;
3760 : 6 : break;
3761 : :
3762 : 0 : default:
3763 : 0 : gcc_unreachable ();
3764 : : }
3765 : 843 : switch (kind)
3766 : : {
3767 : 0 : case 1:
3768 : 0 : case 2:
3769 : 0 : if (expr->value.op.op1->ts.type == BT_INTEGER)
3770 : : {
3771 : 0 : lse.expr = convert (gfc_int4_type_node, lse.expr);
3772 : 0 : res_ikind_1 = kind;
3773 : : }
3774 : : else
3775 : 0 : gcc_unreachable ();
3776 : : /* Fall through. */
3777 : :
3778 : : case 4:
3779 : : kind = 0;
3780 : : break;
3781 : :
3782 : : case 8:
3783 : : kind = 1;
3784 : : break;
3785 : :
3786 : 6 : case 10:
3787 : 6 : kind = 2;
3788 : 6 : break;
3789 : :
3790 : 18 : case 16:
3791 : 18 : kind = 3;
3792 : 18 : break;
3793 : :
3794 : 0 : default:
3795 : 0 : gcc_unreachable ();
3796 : : }
3797 : :
3798 : 843 : switch (expr->value.op.op1->ts.type)
3799 : : {
3800 : 99 : case BT_INTEGER:
3801 : 99 : if (kind == 3) /* Case 16 was not handled properly above. */
3802 : : kind = 2;
3803 : 99 : fndecl = gfor_fndecl_math_powi[kind][ikind].integer;
3804 : 99 : break;
3805 : :
3806 : 557 : case BT_REAL:
3807 : : /* Use builtins for real ** int4. */
3808 : 557 : if (ikind == 0)
3809 : : {
3810 : 500 : switch (kind)
3811 : : {
3812 : 327 : case 0:
3813 : 327 : fndecl = builtin_decl_explicit (BUILT_IN_POWIF);
3814 : 327 : break;
3815 : :
3816 : 155 : case 1:
3817 : 155 : fndecl = builtin_decl_explicit (BUILT_IN_POWI);
3818 : 155 : break;
3819 : :
3820 : 6 : case 2:
3821 : 6 : fndecl = builtin_decl_explicit (BUILT_IN_POWIL);
3822 : 6 : break;
3823 : :
3824 : 12 : case 3:
3825 : : /* Use the __builtin_powil() only if real(kind=16) is
3826 : : actually the C long double type. */
3827 : 12 : if (!gfc_real16_is_float128)
3828 : 0 : fndecl = builtin_decl_explicit (BUILT_IN_POWIL);
3829 : : break;
3830 : :
3831 : : default:
3832 : : gcc_unreachable ();
3833 : : }
3834 : : }
3835 : :
3836 : : /* If we don't have a good builtin for this, go for the
3837 : : library function. */
3838 : 488 : if (!fndecl)
3839 : 69 : fndecl = gfor_fndecl_math_powi[kind][ikind].real;
3840 : : break;
3841 : :
3842 : 187 : case BT_COMPLEX:
3843 : 187 : fndecl = gfor_fndecl_math_powi[kind][ikind].cmplx;
3844 : 187 : break;
3845 : :
3846 : 0 : default:
3847 : 0 : gcc_unreachable ();
3848 : : }
3849 : : break;
3850 : :
3851 : 137 : case BT_REAL:
3852 : 137 : fndecl = gfc_builtin_decl_for_float_kind (BUILT_IN_POW, kind);
3853 : 137 : break;
3854 : :
3855 : 729 : case BT_COMPLEX:
3856 : 729 : fndecl = gfc_builtin_decl_for_float_kind (BUILT_IN_CPOW, kind);
3857 : 729 : break;
3858 : :
3859 : 0 : default:
3860 : 0 : gcc_unreachable ();
3861 : 1709 : break;
3862 : : }
3863 : :
3864 : 1709 : se->expr = build_call_expr_loc (input_location,
3865 : : fndecl, 2, lse.expr, rse.expr);
3866 : :
3867 : : /* Convert the result back if it is of wrong integer kind. */
3868 : 1709 : if (res_ikind_1 != -1 && res_ikind_2 != -1)
3869 : : {
3870 : : /* We want the maximum of both operand kinds as result. */
3871 : 0 : if (res_ikind_1 < res_ikind_2)
3872 : 0 : res_ikind_1 = res_ikind_2;
3873 : 0 : se->expr = convert (gfc_get_int_type (res_ikind_1), se->expr);
3874 : : }
3875 : : }
3876 : :
3877 : :
3878 : : /* Generate code to allocate a string temporary. */
3879 : :
3880 : : tree
3881 : 4671 : gfc_conv_string_tmp (gfc_se * se, tree type, tree len)
3882 : : {
3883 : 4671 : tree var;
3884 : 4671 : tree tmp;
3885 : :
3886 : 4671 : if (gfc_can_put_var_on_stack (len))
3887 : : {
3888 : : /* Create a temporary variable to hold the result. */
3889 : 4102 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
3890 : 2051 : TREE_TYPE (len), len,
3891 : 2051 : build_int_cst (TREE_TYPE (len), 1));
3892 : 2051 : tmp = build_range_type (gfc_charlen_type_node, size_zero_node, tmp);
3893 : :
3894 : 2051 : if (TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE)
3895 : 2021 : tmp = build_array_type (TREE_TYPE (TREE_TYPE (type)), tmp);
3896 : : else
3897 : 30 : tmp = build_array_type (TREE_TYPE (type), tmp);
3898 : :
3899 : 2051 : var = gfc_create_var (tmp, "str");
3900 : 2051 : var = gfc_build_addr_expr (type, var);
3901 : : }
3902 : : else
3903 : : {
3904 : : /* Allocate a temporary to hold the result. */
3905 : 2620 : var = gfc_create_var (type, "pstr");
3906 : 2620 : gcc_assert (POINTER_TYPE_P (type));
3907 : 2620 : tmp = TREE_TYPE (type);
3908 : 2620 : if (TREE_CODE (tmp) == ARRAY_TYPE)
3909 : 2578 : tmp = TREE_TYPE (tmp);
3910 : 2620 : tmp = TYPE_SIZE_UNIT (tmp);
3911 : 2620 : tmp = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
3912 : : fold_convert (size_type_node, len),
3913 : : fold_convert (size_type_node, tmp));
3914 : 2620 : tmp = gfc_call_malloc (&se->pre, type, tmp);
3915 : 2620 : gfc_add_modify (&se->pre, var, tmp);
3916 : :
3917 : : /* Free the temporary afterwards. */
3918 : 2620 : tmp = gfc_call_free (var);
3919 : 2620 : gfc_add_expr_to_block (&se->post, tmp);
3920 : : }
3921 : :
3922 : 4671 : return var;
3923 : : }
3924 : :
3925 : :
3926 : : /* Handle a string concatenation operation. A temporary will be allocated to
3927 : : hold the result. */
3928 : :
3929 : : static void
3930 : 1245 : gfc_conv_concat_op (gfc_se * se, gfc_expr * expr)
3931 : : {
3932 : 1245 : gfc_se lse, rse;
3933 : 1245 : tree len, type, var, tmp, fndecl;
3934 : :
3935 : 1245 : gcc_assert (expr->value.op.op1->ts.type == BT_CHARACTER
3936 : : && expr->value.op.op2->ts.type == BT_CHARACTER);
3937 : 1245 : gcc_assert (expr->value.op.op1->ts.kind == expr->value.op.op2->ts.kind);
3938 : :
3939 : 1245 : gfc_init_se (&lse, se);
3940 : 1245 : gfc_conv_expr (&lse, expr->value.op.op1);
3941 : 1245 : gfc_conv_string_parameter (&lse);
3942 : 1245 : gfc_init_se (&rse, se);
3943 : 1245 : gfc_conv_expr (&rse, expr->value.op.op2);
3944 : 1245 : gfc_conv_string_parameter (&rse);
3945 : :
3946 : 1245 : gfc_add_block_to_block (&se->pre, &lse.pre);
3947 : 1245 : gfc_add_block_to_block (&se->pre, &rse.pre);
3948 : :
3949 : 1245 : type = gfc_get_character_type (expr->ts.kind, expr->ts.u.cl);
3950 : 1245 : len = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
3951 : 1245 : if (len == NULL_TREE)
3952 : : {
3953 : 1106 : len = fold_build2_loc (input_location, PLUS_EXPR,
3954 : : gfc_charlen_type_node,
3955 : : fold_convert (gfc_charlen_type_node,
3956 : : lse.string_length),
3957 : : fold_convert (gfc_charlen_type_node,
3958 : : rse.string_length));
3959 : : }
3960 : :
3961 : 1245 : type = build_pointer_type (type);
3962 : :
3963 : 1245 : var = gfc_conv_string_tmp (se, type, len);
3964 : :
3965 : : /* Do the actual concatenation. */
3966 : 1245 : if (expr->ts.kind == 1)
3967 : 1157 : fndecl = gfor_fndecl_concat_string;
3968 : 88 : else if (expr->ts.kind == 4)
3969 : 88 : fndecl = gfor_fndecl_concat_string_char4;
3970 : : else
3971 : 0 : gcc_unreachable ();
3972 : :
3973 : 1245 : tmp = build_call_expr_loc (input_location,
3974 : : fndecl, 6, len, var, lse.string_length, lse.expr,
3975 : : rse.string_length, rse.expr);
3976 : 1245 : gfc_add_expr_to_block (&se->pre, tmp);
3977 : :
3978 : : /* Add the cleanup for the operands. */
3979 : 1245 : gfc_add_block_to_block (&se->pre, &rse.post);
3980 : 1245 : gfc_add_block_to_block (&se->pre, &lse.post);
3981 : :
3982 : 1245 : se->expr = var;
3983 : 1245 : se->string_length = len;
3984 : 1245 : }
3985 : :
3986 : : /* Translates an op expression. Common (binary) cases are handled by this
3987 : : function, others are passed on. Recursion is used in either case.
3988 : : We use the fact that (op1.ts == op2.ts) (except for the power
3989 : : operator **).
3990 : : Operators need no special handling for scalarized expressions as long as
3991 : : they call gfc_conv_simple_val to get their operands.
3992 : : Character strings get special handling. */
3993 : :
3994 : : static void
3995 : 362401 : gfc_conv_expr_op (gfc_se * se, gfc_expr * expr)
3996 : : {
3997 : 362401 : enum tree_code code;
3998 : 362401 : gfc_se lse;
3999 : 362401 : gfc_se rse;
4000 : 362401 : tree tmp, type;
4001 : 362401 : int lop;
4002 : 362401 : int checkstring;
4003 : :
4004 : 362401 : checkstring = 0;
4005 : 362401 : lop = 0;
4006 : 362401 : switch (expr->value.op.op)
4007 : : {
4008 : 14795 : case INTRINSIC_PARENTHESES:
4009 : 14795 : if ((expr->ts.type == BT_REAL || expr->ts.type == BT_COMPLEX)
4010 : 3586 : && flag_protect_parens)
4011 : : {
4012 : 3443 : gfc_conv_unary_op (PAREN_EXPR, se, expr);
4013 : 3443 : gcc_assert (FLOAT_TYPE_P (TREE_TYPE (se->expr)));
4014 : 43082 : return;
4015 : : }
4016 : :
4017 : : /* Fallthrough. */
4018 : 11358 : case INTRINSIC_UPLUS:
4019 : 11358 : gfc_conv_expr (se, expr->value.op.op1);
4020 : 11358 : return;
4021 : :
4022 : 4893 : case INTRINSIC_UMINUS:
4023 : 4893 : gfc_conv_unary_op (NEGATE_EXPR, se, expr);
4024 : 4893 : return;
4025 : :
4026 : 18916 : case INTRINSIC_NOT:
4027 : 18916 : gfc_conv_unary_op (TRUTH_NOT_EXPR, se, expr);
4028 : 18916 : return;
4029 : :
4030 : : case INTRINSIC_PLUS:
4031 : : code = PLUS_EXPR;
4032 : : break;
4033 : :
4034 : 26862 : case INTRINSIC_MINUS:
4035 : 26862 : code = MINUS_EXPR;
4036 : 26862 : break;
4037 : :
4038 : 30075 : case INTRINSIC_TIMES:
4039 : 30075 : code = MULT_EXPR;
4040 : 30075 : break;
4041 : :
4042 : 6337 : case INTRINSIC_DIVIDE:
4043 : : /* If expr is a real or complex expr, use an RDIV_EXPR. If op1 is
4044 : : an integer or unsigned, we must round towards zero, so we use a
4045 : : TRUNC_DIV_EXPR. */
4046 : 6337 : if (expr->ts.type == BT_INTEGER || expr->ts.type == BT_UNSIGNED)
4047 : : code = TRUNC_DIV_EXPR;
4048 : : else
4049 : 319319 : code = RDIV_EXPR;
4050 : : break;
4051 : :
4052 : 3227 : case INTRINSIC_POWER:
4053 : 3227 : gfc_conv_power_op (se, expr);
4054 : 3227 : return;
4055 : :
4056 : 1245 : case INTRINSIC_CONCAT:
4057 : 1245 : gfc_conv_concat_op (se, expr);
4058 : 1245 : return;
4059 : :
4060 : 4724 : case INTRINSIC_AND:
4061 : 4724 : code = flag_frontend_optimize ? TRUTH_ANDIF_EXPR : TRUTH_AND_EXPR;
4062 : : lop = 1;
4063 : : break;
4064 : :
4065 : 24424 : case INTRINSIC_OR:
4066 : 24424 : code = flag_frontend_optimize ? TRUTH_ORIF_EXPR : TRUTH_OR_EXPR;
4067 : : lop = 1;
4068 : : break;
4069 : :
4070 : : /* EQV and NEQV only work on logicals, but since we represent them
4071 : : as integers, we can use EQ_EXPR and NE_EXPR for them in GIMPLE. */
4072 : 12167 : case INTRINSIC_EQ:
4073 : 12167 : case INTRINSIC_EQ_OS:
4074 : 12167 : case INTRINSIC_EQV:
4075 : 12167 : code = EQ_EXPR;
4076 : 12167 : checkstring = 1;
4077 : 12167 : lop = 1;
4078 : 12167 : break;
4079 : :
4080 : 149749 : case INTRINSIC_NE:
4081 : 149749 : case INTRINSIC_NE_OS:
4082 : 149749 : case INTRINSIC_NEQV:
4083 : 149749 : code = NE_EXPR;
4084 : 149749 : checkstring = 1;
4085 : 149749 : lop = 1;
4086 : 149749 : break;
4087 : :
4088 : 11642 : case INTRINSIC_GT:
4089 : 11642 : case INTRINSIC_GT_OS:
4090 : 11642 : code = GT_EXPR;
4091 : 11642 : checkstring = 1;
4092 : 11642 : lop = 1;
4093 : 11642 : break;
4094 : :
4095 : 1688 : case INTRINSIC_GE:
4096 : 1688 : case INTRINSIC_GE_OS:
4097 : 1688 : code = GE_EXPR;
4098 : 1688 : checkstring = 1;
4099 : 1688 : lop = 1;
4100 : 1688 : break;
4101 : :
4102 : 4329 : case INTRINSIC_LT:
4103 : 4329 : case INTRINSIC_LT_OS:
4104 : 4329 : code = LT_EXPR;
4105 : 4329 : checkstring = 1;
4106 : 4329 : lop = 1;
4107 : 4329 : break;
4108 : :
4109 : 2603 : case INTRINSIC_LE:
4110 : 2603 : case INTRINSIC_LE_OS:
4111 : 2603 : code = LE_EXPR;
4112 : 2603 : checkstring = 1;
4113 : 2603 : lop = 1;
4114 : 2603 : break;
4115 : :
4116 : 0 : case INTRINSIC_USER:
4117 : 0 : case INTRINSIC_ASSIGN:
4118 : : /* These should be converted into function calls by the frontend. */
4119 : 0 : gcc_unreachable ();
4120 : :
4121 : 0 : default:
4122 : 0 : fatal_error (input_location, "Unknown intrinsic op");
4123 : 319319 : return;
4124 : : }
4125 : :
4126 : : /* The only exception to this is **, which is handled separately anyway. */
4127 : 319319 : gcc_assert (expr->value.op.op1->ts.type == expr->value.op.op2->ts.type);
4128 : :
4129 : 319319 : if (checkstring && expr->value.op.op1->ts.type != BT_CHARACTER)
4130 : 287404 : checkstring = 0;
4131 : :
4132 : : /* lhs */
4133 : 319319 : gfc_init_se (&lse, se);
4134 : 319319 : gfc_conv_expr (&lse, expr->value.op.op1);
4135 : 319319 : gfc_add_block_to_block (&se->pre, &lse.pre);
4136 : :
4137 : : /* rhs */
4138 : 319319 : gfc_init_se (&rse, se);
4139 : 319319 : gfc_conv_expr (&rse, expr->value.op.op2);
4140 : 319319 : gfc_add_block_to_block (&se->pre, &rse.pre);
4141 : :
4142 : 319319 : if (checkstring)
4143 : : {
4144 : 31915 : gfc_conv_string_parameter (&lse);
4145 : 31915 : gfc_conv_string_parameter (&rse);
4146 : :
4147 : 63830 : lse.expr = gfc_build_compare_string (lse.string_length, lse.expr,
4148 : : rse.string_length, rse.expr,
4149 : 31915 : expr->value.op.op1->ts.kind,
4150 : : code);
4151 : 31915 : rse.expr = build_int_cst (TREE_TYPE (lse.expr), 0);
4152 : 31915 : gfc_add_block_to_block (&lse.post, &rse.post);
4153 : : }
4154 : :
4155 : 319319 : type = gfc_typenode_for_spec (&expr->ts);
4156 : :
4157 : 319319 : if (lop)
4158 : : {
4159 : : // Inhibit overeager optimization of Cray pointer comparisons (PR106692).
4160 : 211326 : if (expr->value.op.op1->expr_type == EXPR_VARIABLE
4161 : 118012 : && expr->value.op.op1->ts.type == BT_INTEGER
4162 : 69346 : && expr->value.op.op1->symtree
4163 : 69346 : && expr->value.op.op1->symtree->n.sym->attr.cray_pointer)
4164 : 12 : TREE_THIS_VOLATILE (lse.expr) = 1;
4165 : :
4166 : 211326 : if (expr->value.op.op2->expr_type == EXPR_VARIABLE
4167 : 25503 : && expr->value.op.op2->ts.type == BT_INTEGER
4168 : 12161 : && expr->value.op.op2->symtree
4169 : 12161 : && expr->value.op.op2->symtree->n.sym->attr.cray_pointer)
4170 : 12 : TREE_THIS_VOLATILE (rse.expr) = 1;
4171 : :
4172 : : /* The result of logical ops is always logical_type_node. */
4173 : 211326 : tmp = fold_build2_loc (input_location, code, logical_type_node,
4174 : : lse.expr, rse.expr);
4175 : 211326 : se->expr = convert (type, tmp);
4176 : : }
4177 : : else
4178 : 107993 : se->expr = fold_build2_loc (input_location, code, type, lse.expr, rse.expr);
4179 : :
4180 : : /* Add the post blocks. */
4181 : 319319 : gfc_add_block_to_block (&se->post, &rse.post);
4182 : 319319 : gfc_add_block_to_block (&se->post, &lse.post);
4183 : : }
4184 : :
4185 : : /* If a string's length is one, we convert it to a single character. */
4186 : :
4187 : : tree
4188 : 131088 : gfc_string_to_single_character (tree len, tree str, int kind)
4189 : : {
4190 : :
4191 : 131088 : if (len == NULL
4192 : 131088 : || !tree_fits_uhwi_p (len)
4193 : 240462 : || !POINTER_TYPE_P (TREE_TYPE (str)))
4194 : : return NULL_TREE;
4195 : :
4196 : 109322 : if (TREE_INT_CST_LOW (len) == 1)
4197 : : {
4198 : 21640 : str = fold_convert (gfc_get_pchar_type (kind), str);
4199 : 21640 : return build_fold_indirect_ref_loc (input_location, str);
4200 : : }
4201 : :
4202 : 87682 : if (kind == 1
4203 : 71795 : && TREE_CODE (str) == ADDR_EXPR
4204 : 61774 : && TREE_CODE (TREE_OPERAND (str, 0)) == ARRAY_REF
4205 : 44613 : && TREE_CODE (TREE_OPERAND (TREE_OPERAND (str, 0), 0)) == STRING_CST
4206 : 27203 : && array_ref_low_bound (TREE_OPERAND (str, 0))
4207 : 27203 : == TREE_OPERAND (TREE_OPERAND (str, 0), 1)
4208 : 27203 : && TREE_INT_CST_LOW (len) > 1
4209 : 113143 : && TREE_INT_CST_LOW (len)
4210 : : == (unsigned HOST_WIDE_INT)
4211 : 25461 : TREE_STRING_LENGTH (TREE_OPERAND (TREE_OPERAND (str, 0), 0)))
4212 : : {
4213 : 25461 : tree ret = fold_convert (gfc_get_pchar_type (kind), str);
4214 : 25461 : ret = build_fold_indirect_ref_loc (input_location, ret);
4215 : 25461 : if (TREE_CODE (ret) == INTEGER_CST)
4216 : : {
4217 : 25461 : tree string_cst = TREE_OPERAND (TREE_OPERAND (str, 0), 0);
4218 : 25461 : int i, length = TREE_STRING_LENGTH (string_cst);
4219 : 25461 : const char *ptr = TREE_STRING_POINTER (string_cst);
4220 : :
4221 : 37101 : for (i = 1; i < length; i++)
4222 : 36523 : if (ptr[i] != ' ')
4223 : : return NULL_TREE;
4224 : :
4225 : : return ret;
4226 : : }
4227 : : }
4228 : :
4229 : : return NULL_TREE;
4230 : : }
4231 : :
4232 : :
4233 : : static void
4234 : 171 : conv_scalar_char_value (gfc_symbol *sym, gfc_se *se, gfc_expr **expr)
4235 : : {
4236 : 171 : gcc_assert (expr);
4237 : :
4238 : : /* We used to modify the tree here. Now it is done earlier in
4239 : : the front-end, so we only check it here to avoid regressions. */
4240 : 171 : if (sym->backend_decl)
4241 : : {
4242 : 66 : gcc_assert (TREE_CODE (TREE_TYPE (sym->backend_decl)) == INTEGER_TYPE);
4243 : 66 : gcc_assert (TYPE_UNSIGNED (TREE_TYPE (sym->backend_decl)) == 1);
4244 : 66 : gcc_assert (TYPE_PRECISION (TREE_TYPE (sym->backend_decl)) == CHAR_TYPE_SIZE);
4245 : 66 : gcc_assert (DECL_BY_REFERENCE (sym->backend_decl) == 0);
4246 : : }
4247 : :
4248 : : /* If we have a constant character expression, make it into an
4249 : : integer of type C char. */
4250 : 171 : if ((*expr)->expr_type == EXPR_CONSTANT)
4251 : : {
4252 : 165 : gfc_typespec ts;
4253 : 165 : gfc_clear_ts (&ts);
4254 : :
4255 : 330 : gfc_expr *tmp = gfc_get_int_expr (gfc_default_character_kind, NULL,
4256 : 165 : (*expr)->value.character.string[0]);
4257 : 165 : gfc_replace_expr (*expr, tmp);
4258 : : }
4259 : 6 : else if (se != NULL && (*expr)->expr_type == EXPR_VARIABLE)
4260 : : {
4261 : 6 : if ((*expr)->ref == NULL)
4262 : : {
4263 : 6 : se->expr = gfc_string_to_single_character
4264 : 6 : (integer_one_node,
4265 : 6 : gfc_build_addr_expr (gfc_get_pchar_type ((*expr)->ts.kind),
4266 : : gfc_get_symbol_decl
4267 : 6 : ((*expr)->symtree->n.sym)),
4268 : : (*expr)->ts.kind);
4269 : : }
4270 : : else
4271 : : {
4272 : 0 : gfc_conv_variable (se, *expr);
4273 : 0 : se->expr = gfc_string_to_single_character
4274 : 0 : (integer_one_node,
4275 : : gfc_build_addr_expr (gfc_get_pchar_type ((*expr)->ts.kind),
4276 : : se->expr),
4277 : 0 : (*expr)->ts.kind);
4278 : : }
4279 : : }
4280 : 171 : }
4281 : :
4282 : : /* Helper function for gfc_build_compare_string. Return LEN_TRIM value
4283 : : if STR is a string literal, otherwise return -1. */
4284 : :
4285 : : static int
4286 : 29646 : gfc_optimize_len_trim (tree len, tree str, int kind)
4287 : : {
4288 : 29646 : if (kind == 1
4289 : 24990 : && TREE_CODE (str) == ADDR_EXPR
4290 : 21651 : && TREE_CODE (TREE_OPERAND (str, 0)) == ARRAY_REF
4291 : 14024 : && TREE_CODE (TREE_OPERAND (TREE_OPERAND (str, 0), 0)) == STRING_CST
4292 : 8933 : && array_ref_low_bound (TREE_OPERAND (str, 0))
4293 : 8933 : == TREE_OPERAND (TREE_OPERAND (str, 0), 1)
4294 : 8933 : && tree_fits_uhwi_p (len)
4295 : 8933 : && tree_to_uhwi (len) >= 1
4296 : 29646 : && tree_to_uhwi (len)
4297 : 8889 : == (unsigned HOST_WIDE_INT)
4298 : 8889 : TREE_STRING_LENGTH (TREE_OPERAND (TREE_OPERAND (str, 0), 0)))
4299 : : {
4300 : 8889 : tree folded = fold_convert (gfc_get_pchar_type (kind), str);
4301 : 8889 : folded = build_fold_indirect_ref_loc (input_location, folded);
4302 : 8889 : if (TREE_CODE (folded) == INTEGER_CST)
4303 : : {
4304 : 8889 : tree string_cst = TREE_OPERAND (TREE_OPERAND (str, 0), 0);
4305 : 8889 : int length = TREE_STRING_LENGTH (string_cst);
4306 : 8889 : const char *ptr = TREE_STRING_POINTER (string_cst);
4307 : :
4308 : 12145 : for (; length > 0; length--)
4309 : 12145 : if (ptr[length - 1] != ' ')
4310 : : break;
4311 : :
4312 : : return length;
4313 : : }
4314 : : }
4315 : : return -1;
4316 : : }
4317 : :
4318 : : /* Helper to build a call to memcmp. */
4319 : :
4320 : : static tree
4321 : 11860 : build_memcmp_call (tree s1, tree s2, tree n)
4322 : : {
4323 : 11860 : tree tmp;
4324 : :
4325 : 11860 : if (!POINTER_TYPE_P (TREE_TYPE (s1)))
4326 : 0 : s1 = gfc_build_addr_expr (pvoid_type_node, s1);
4327 : : else
4328 : 11860 : s1 = fold_convert (pvoid_type_node, s1);
4329 : :
4330 : 11860 : if (!POINTER_TYPE_P (TREE_TYPE (s2)))
4331 : 0 : s2 = gfc_build_addr_expr (pvoid_type_node, s2);
4332 : : else
4333 : 11860 : s2 = fold_convert (pvoid_type_node, s2);
4334 : :
4335 : 11860 : n = fold_convert (size_type_node, n);
4336 : :
4337 : 11860 : tmp = build_call_expr_loc (input_location,
4338 : : builtin_decl_explicit (BUILT_IN_MEMCMP),
4339 : : 3, s1, s2, n);
4340 : :
4341 : 11860 : return fold_convert (integer_type_node, tmp);
4342 : : }
4343 : :
4344 : : /* Compare two strings. If they are all single characters, the result is the
4345 : : subtraction of them. Otherwise, we build a library call. */
4346 : :
4347 : : tree
4348 : 32014 : gfc_build_compare_string (tree len1, tree str1, tree len2, tree str2, int kind,
4349 : : enum tree_code code)
4350 : : {
4351 : 32014 : tree sc1;
4352 : 32014 : tree sc2;
4353 : 32014 : tree fndecl;
4354 : :
4355 : 32014 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (str1)));
4356 : 32014 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (str2)));
4357 : :
4358 : 32014 : sc1 = gfc_string_to_single_character (len1, str1, kind);
4359 : 32014 : sc2 = gfc_string_to_single_character (len2, str2, kind);
4360 : :
4361 : 32014 : if (sc1 != NULL_TREE && sc2 != NULL_TREE)
4362 : : {
4363 : : /* Deal with single character specially. */
4364 : 4712 : sc1 = fold_convert (integer_type_node, sc1);
4365 : 4712 : sc2 = fold_convert (integer_type_node, sc2);
4366 : 4712 : return fold_build2_loc (input_location, MINUS_EXPR, integer_type_node,
4367 : 4712 : sc1, sc2);
4368 : : }
4369 : :
4370 : 27302 : if ((code == EQ_EXPR || code == NE_EXPR)
4371 : 26736 : && optimize
4372 : 22460 : && INTEGER_CST_P (len1) && INTEGER_CST_P (len2))
4373 : : {
4374 : : /* If one string is a string literal with LEN_TRIM longer
4375 : : than the length of the second string, the strings
4376 : : compare unequal. */
4377 : 14823 : int len = gfc_optimize_len_trim (len1, str1, kind);
4378 : 14823 : if (len > 0 && compare_tree_int (len2, len) < 0)
4379 : 0 : return integer_one_node;
4380 : 14823 : len = gfc_optimize_len_trim (len2, str2, kind);
4381 : 14823 : if (len > 0 && compare_tree_int (len1, len) < 0)
4382 : 0 : return integer_one_node;
4383 : : }
4384 : :
4385 : : /* We can compare via memcpy if the strings are known to be equal
4386 : : in length and they are
4387 : : - kind=1
4388 : : - kind=4 and the comparison is for (in)equality. */
4389 : :
4390 : 18012 : if (INTEGER_CST_P (len1) && INTEGER_CST_P (len2)
4391 : 17679 : && tree_int_cst_equal (len1, len2)
4392 : 39222 : && (kind == 1 || code == EQ_EXPR || code == NE_EXPR))
4393 : : {
4394 : 11860 : tree tmp;
4395 : 11860 : tree chartype;
4396 : :
4397 : 11860 : chartype = gfc_get_char_type (kind);
4398 : 11860 : tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE(len1),
4399 : 11860 : fold_convert (TREE_TYPE(len1),
4400 : : TYPE_SIZE_UNIT(chartype)),
4401 : : len1);
4402 : 11860 : return build_memcmp_call (str1, str2, tmp);
4403 : : }
4404 : :
4405 : : /* Build a call for the comparison. */
4406 : 15442 : if (kind == 1)
4407 : 12647 : fndecl = gfor_fndecl_compare_string;
4408 : 2795 : else if (kind == 4)
4409 : 2795 : fndecl = gfor_fndecl_compare_string_char4;
4410 : : else
4411 : 0 : gcc_unreachable ();
4412 : :
4413 : 15442 : return build_call_expr_loc (input_location, fndecl, 4,
4414 : 15442 : len1, str1, len2, str2);
4415 : : }
4416 : :
4417 : :
4418 : : /* Return the backend_decl for a procedure pointer component. */
4419 : :
4420 : : static tree
4421 : 1699 : get_proc_ptr_comp (gfc_expr *e)
4422 : : {
4423 : 1699 : gfc_se comp_se;
4424 : 1699 : gfc_expr *e2;
4425 : 1699 : expr_t old_type;
4426 : :
4427 : 1699 : gfc_init_se (&comp_se, NULL);
4428 : 1699 : e2 = gfc_copy_expr (e);
4429 : : /* We have to restore the expr type later so that gfc_free_expr frees
4430 : : the exact same thing that was allocated.
4431 : : TODO: This is ugly. */
4432 : 1699 : old_type = e2->expr_type;
4433 : 1699 : e2->expr_type = EXPR_VARIABLE;
4434 : 1699 : gfc_conv_expr (&comp_se, e2);
4435 : 1699 : e2->expr_type = old_type;
4436 : 1699 : gfc_free_expr (e2);
4437 : 1699 : return build_fold_addr_expr_loc (input_location, comp_se.expr);
4438 : : }
4439 : :
4440 : :
4441 : : /* Convert a typebound function reference from a class object. */
4442 : : static void
4443 : 80 : conv_base_obj_fcn_val (gfc_se * se, tree base_object, gfc_expr * expr)
4444 : : {
4445 : 80 : gfc_ref *ref;
4446 : 80 : tree var;
4447 : :
4448 : 80 : if (!VAR_P (base_object))
4449 : : {
4450 : 0 : var = gfc_create_var (TREE_TYPE (base_object), NULL);
4451 : 0 : gfc_add_modify (&se->pre, var, base_object);
4452 : : }
4453 : 80 : se->expr = gfc_class_vptr_get (base_object);
4454 : 80 : se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
4455 : 80 : ref = expr->ref;
4456 : 308 : while (ref && ref->next)
4457 : : ref = ref->next;
4458 : 80 : gcc_assert (ref && ref->type == REF_COMPONENT);
4459 : 80 : if (ref->u.c.sym->attr.extension)
4460 : 0 : conv_parent_component_references (se, ref);
4461 : 80 : gfc_conv_component_ref (se, ref);
4462 : 80 : se->expr = build_fold_addr_expr_loc (input_location, se->expr);
4463 : 80 : }
4464 : :
4465 : : static tree
4466 : 121675 : get_builtin_fn (gfc_symbol * sym)
4467 : : {
4468 : 121675 : if (!gfc_option.disable_omp_is_initial_device
4469 : 121671 : && flag_openmp && sym->attr.function && sym->ts.type == BT_LOGICAL
4470 : 586 : && !strcmp (sym->name, "omp_is_initial_device"))
4471 : 23 : return builtin_decl_explicit (BUILT_IN_OMP_IS_INITIAL_DEVICE);
4472 : :
4473 : 121652 : if (!gfc_option.disable_acc_on_device
4474 : 121472 : && flag_openacc && sym->attr.function && sym->ts.type == BT_LOGICAL
4475 : 1163 : && !strcmp (sym->name, "acc_on_device_h"))
4476 : 390 : return builtin_decl_explicit (BUILT_IN_ACC_ON_DEVICE);
4477 : :
4478 : : return NULL_TREE;
4479 : : }
4480 : :
4481 : : static tree
4482 : 413 : update_builtin_function (tree fn_call, gfc_symbol *sym)
4483 : : {
4484 : 413 : tree fn = TREE_OPERAND (CALL_EXPR_FN (fn_call), 0);
4485 : :
4486 : 413 : if (DECL_FUNCTION_CODE (fn) == BUILT_IN_OMP_IS_INITIAL_DEVICE)
4487 : : /* In Fortran omp_is_initial_device returns logical(4)
4488 : : but the builtin uses 'int'. */
4489 : 23 : return fold_convert (TREE_TYPE (TREE_TYPE (sym->backend_decl)), fn_call);
4490 : :
4491 : 390 : else if (DECL_FUNCTION_CODE (fn) == BUILT_IN_ACC_ON_DEVICE)
4492 : : {
4493 : : /* Likewise for the return type; additionally, the argument it a
4494 : : call-by-value int, Fortran has a by-reference 'integer(4)'. */
4495 : 390 : tree arg = build_fold_indirect_ref_loc (input_location,
4496 : 390 : CALL_EXPR_ARG (fn_call, 0));
4497 : 390 : CALL_EXPR_ARG (fn_call, 0) = fold_convert (integer_type_node, arg);
4498 : 390 : return fold_convert (TREE_TYPE (TREE_TYPE (sym->backend_decl)), fn_call);
4499 : : }
4500 : : return fn_call;
4501 : : }
4502 : :
4503 : : static void
4504 : 124151 : conv_function_val (gfc_se * se, bool *is_builtin, gfc_symbol * sym,
4505 : : gfc_expr * expr, gfc_actual_arglist *actual_args)
4506 : : {
4507 : 124151 : tree tmp;
4508 : :
4509 : 124151 : if (gfc_is_proc_ptr_comp (expr))
4510 : 1699 : tmp = get_proc_ptr_comp (expr);
4511 : 122452 : else if (sym->attr.dummy)
4512 : : {
4513 : 777 : tmp = gfc_get_symbol_decl (sym);
4514 : 777 : if (sym->attr.proc_pointer)
4515 : 83 : tmp = build_fold_indirect_ref_loc (input_location,
4516 : : tmp);
4517 : 777 : gcc_assert (TREE_CODE (TREE_TYPE (tmp)) == POINTER_TYPE
4518 : : && TREE_CODE (TREE_TYPE (TREE_TYPE (tmp))) == FUNCTION_TYPE);
4519 : : }
4520 : : else
4521 : : {
4522 : 121675 : if (!sym->backend_decl)
4523 : 30956 : sym->backend_decl = gfc_get_extern_function_decl (sym, actual_args);
4524 : :
4525 : 121675 : if ((tmp = get_builtin_fn (sym)) != NULL_TREE)
4526 : 413 : *is_builtin = true;
4527 : : else
4528 : : {
4529 : 121262 : TREE_USED (sym->backend_decl) = 1;
4530 : 121262 : tmp = sym->backend_decl;
4531 : : }
4532 : :
4533 : 121675 : if (sym->attr.cray_pointee)
4534 : : {
4535 : : /* TODO - make the cray pointee a pointer to a procedure,
4536 : : assign the pointer to it and use it for the call. This
4537 : : will do for now! */
4538 : 19 : tmp = convert (build_pointer_type (TREE_TYPE (tmp)),
4539 : : gfc_get_symbol_decl (sym->cp_pointer));
4540 : 19 : tmp = gfc_evaluate_now (tmp, &se->pre);
4541 : : }
4542 : :
4543 : 121675 : if (!POINTER_TYPE_P (TREE_TYPE (tmp)))
4544 : : {
4545 : 121096 : gcc_assert (TREE_CODE (tmp) == FUNCTION_DECL);
4546 : 121096 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
4547 : : }
4548 : : }
4549 : 124151 : se->expr = tmp;
4550 : 124151 : }
4551 : :
4552 : :
4553 : : /* Initialize MAPPING. */
4554 : :
4555 : : void
4556 : 124268 : gfc_init_interface_mapping (gfc_interface_mapping * mapping)
4557 : : {
4558 : 124268 : mapping->syms = NULL;
4559 : 124268 : mapping->charlens = NULL;
4560 : 124268 : }
4561 : :
4562 : :
4563 : : /* Free all memory held by MAPPING (but not MAPPING itself). */
4564 : :
4565 : : void
4566 : 124268 : gfc_free_interface_mapping (gfc_interface_mapping * mapping)
4567 : : {
4568 : 124268 : gfc_interface_sym_mapping *sym;
4569 : 124268 : gfc_interface_sym_mapping *nextsym;
4570 : 124268 : gfc_charlen *cl;
4571 : 124268 : gfc_charlen *nextcl;
4572 : :
4573 : 161291 : for (sym = mapping->syms; sym; sym = nextsym)
4574 : : {
4575 : 37023 : nextsym = sym->next;
4576 : 37023 : sym->new_sym->n.sym->formal = NULL;
4577 : 37023 : gfc_free_symbol (sym->new_sym->n.sym);
4578 : 37023 : gfc_free_expr (sym->expr);
4579 : 37023 : free (sym->new_sym);
4580 : 37023 : free (sym);
4581 : : }
4582 : 128562 : for (cl = mapping->charlens; cl; cl = nextcl)
4583 : : {
4584 : 4294 : nextcl = cl->next;
4585 : 4294 : gfc_free_expr (cl->length);
4586 : 4294 : free (cl);
4587 : : }
4588 : 124268 : }
4589 : :
4590 : :
4591 : : /* Return a copy of gfc_charlen CL. Add the returned structure to
4592 : : MAPPING so that it will be freed by gfc_free_interface_mapping. */
4593 : :
4594 : : static gfc_charlen *
4595 : 4294 : gfc_get_interface_mapping_charlen (gfc_interface_mapping * mapping,
4596 : : gfc_charlen * cl)
4597 : : {
4598 : 4294 : gfc_charlen *new_charlen;
4599 : :
4600 : 4294 : new_charlen = gfc_get_charlen ();
4601 : 4294 : new_charlen->next = mapping->charlens;
4602 : 4294 : new_charlen->length = gfc_copy_expr (cl->length);
4603 : :
4604 : 4294 : mapping->charlens = new_charlen;
4605 : 4294 : return new_charlen;
4606 : : }
4607 : :
4608 : :
4609 : : /* A subroutine of gfc_add_interface_mapping. Return a descriptorless
4610 : : array variable that can be used as the actual argument for dummy
4611 : : argument SYM. Add any initialization code to BLOCK. PACKED is as
4612 : : for gfc_get_nodesc_array_type and DATA points to the first element
4613 : : in the passed array. */
4614 : :
4615 : : static tree
4616 : 7350 : gfc_get_interface_mapping_array (stmtblock_t * block, gfc_symbol * sym,
4617 : : gfc_packed packed, tree data, tree len)
4618 : : {
4619 : 7350 : tree type;
4620 : 7350 : tree var;
4621 : :
4622 : 7350 : if (len != NULL_TREE && (TREE_CONSTANT (len) || VAR_P (len)))
4623 : 58 : type = gfc_get_character_type_len (sym->ts.kind, len);
4624 : : else
4625 : 7292 : type = gfc_typenode_for_spec (&sym->ts);
4626 : 14700 : type = gfc_get_nodesc_array_type (type, sym->as, packed,
4627 : : !sym->attr.target && !sym->attr.pointer
4628 : 7350 : && !sym->attr.proc_pointer);
4629 : :
4630 : 7350 : var = gfc_create_var (type, "ifm");
4631 : 7350 : gfc_add_modify (block, var, fold_convert (type, data));
4632 : :
4633 : 7350 : return var;
4634 : : }
4635 : :
4636 : :
4637 : : /* A subroutine of gfc_add_interface_mapping. Set the stride, upper bounds
4638 : : and offset of descriptorless array type TYPE given that it has the same
4639 : : size as DESC. Add any set-up code to BLOCK. */
4640 : :
4641 : : static void
4642 : 7080 : gfc_set_interface_mapping_bounds (stmtblock_t * block, tree type, tree desc)
4643 : : {
4644 : 7080 : int n;
4645 : 7080 : tree dim;
4646 : 7080 : tree offset;
4647 : 7080 : tree tmp;
4648 : :
4649 : 7080 : offset = gfc_index_zero_node;
4650 : 8175 : for (n = 0; n < GFC_TYPE_ARRAY_RANK (type); n++)
4651 : : {
4652 : 1095 : dim = gfc_rank_cst[n];
4653 : 1095 : GFC_TYPE_ARRAY_STRIDE (type, n) = gfc_conv_array_stride (desc, n);
4654 : 1095 : if (GFC_TYPE_ARRAY_LBOUND (type, n) == NULL_TREE)
4655 : : {
4656 : 1 : GFC_TYPE_ARRAY_LBOUND (type, n)
4657 : 1 : = gfc_conv_descriptor_lbound_get (desc, dim);
4658 : 1 : GFC_TYPE_ARRAY_UBOUND (type, n)
4659 : 2 : = gfc_conv_descriptor_ubound_get (desc, dim);
4660 : : }
4661 : 1094 : else if (GFC_TYPE_ARRAY_UBOUND (type, n) == NULL_TREE)
4662 : : {
4663 : 1094 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
4664 : : gfc_array_index_type,
4665 : : gfc_conv_descriptor_ubound_get (desc, dim),
4666 : : gfc_conv_descriptor_lbound_get (desc, dim));
4667 : 3282 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
4668 : : gfc_array_index_type,
4669 : 1094 : GFC_TYPE_ARRAY_LBOUND (type, n), tmp);
4670 : 1094 : tmp = gfc_evaluate_now (tmp, block);
4671 : 1094 : GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
4672 : : }
4673 : 4380 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
4674 : 1095 : GFC_TYPE_ARRAY_LBOUND (type, n),
4675 : 1095 : GFC_TYPE_ARRAY_STRIDE (type, n));
4676 : 1095 : offset = fold_build2_loc (input_location, MINUS_EXPR,
4677 : : gfc_array_index_type, offset, tmp);
4678 : : }
4679 : 7080 : offset = gfc_evaluate_now (offset, block);
4680 : 7080 : GFC_TYPE_ARRAY_OFFSET (type) = offset;
4681 : 7080 : }
4682 : :
4683 : :
4684 : : /* Extend MAPPING so that it maps dummy argument SYM to the value stored
4685 : : in SE. The caller may still use se->expr and se->string_length after
4686 : : calling this function. */
4687 : :
4688 : : void
4689 : 37023 : gfc_add_interface_mapping (gfc_interface_mapping * mapping,
4690 : : gfc_symbol * sym, gfc_se * se,
4691 : : gfc_expr *expr)
4692 : : {
4693 : 37023 : gfc_interface_sym_mapping *sm;
4694 : 37023 : tree desc;
4695 : 37023 : tree tmp;
4696 : 37023 : tree value;
4697 : 37023 : gfc_symbol *new_sym;
4698 : 37023 : gfc_symtree *root;
4699 : 37023 : gfc_symtree *new_symtree;
4700 : :
4701 : : /* Create a new symbol to represent the actual argument. */
4702 : 37023 : new_sym = gfc_new_symbol (sym->name, NULL);
4703 : 37023 : new_sym->ts = sym->ts;
4704 : 37023 : new_sym->as = gfc_copy_array_spec (sym->as);
4705 : 37023 : new_sym->attr.referenced = 1;
4706 : 37023 : new_sym->attr.dimension = sym->attr.dimension;
4707 : 37023 : new_sym->attr.contiguous = sym->attr.contiguous;
4708 : 37023 : new_sym->attr.codimension = sym->attr.codimension;
4709 : 37023 : new_sym->attr.pointer = sym->attr.pointer;
4710 : 37023 : new_sym->attr.allocatable = sym->attr.allocatable;
4711 : 37023 : new_sym->attr.flavor = sym->attr.flavor;
4712 : 37023 : new_sym->attr.function = sym->attr.function;
4713 : :
4714 : : /* Ensure that the interface is available and that
4715 : : descriptors are passed for array actual arguments. */
4716 : 37023 : if (sym->attr.flavor == FL_PROCEDURE)
4717 : : {
4718 : 36 : new_sym->formal = expr->symtree->n.sym->formal;
4719 : 36 : new_sym->attr.always_explicit
4720 : 36 : = expr->symtree->n.sym->attr.always_explicit;
4721 : : }
4722 : :
4723 : : /* Create a fake symtree for it. */
4724 : 37023 : root = NULL;
4725 : 37023 : new_symtree = gfc_new_symtree (&root, sym->name);
4726 : 37023 : new_symtree->n.sym = new_sym;
4727 : 37023 : gcc_assert (new_symtree == root);
4728 : :
4729 : : /* Create a dummy->actual mapping. */
4730 : 37023 : sm = XCNEW (gfc_interface_sym_mapping);
4731 : 37023 : sm->next = mapping->syms;
4732 : 37023 : sm->old = sym;
4733 : 37023 : sm->new_sym = new_symtree;
4734 : 37023 : sm->expr = gfc_copy_expr (expr);
4735 : 37023 : mapping->syms = sm;
4736 : :
4737 : : /* Stabilize the argument's value. */
4738 : 37023 : if (!sym->attr.function && se)
4739 : 36925 : se->expr = gfc_evaluate_now (se->expr, &se->pre);
4740 : :
4741 : 37023 : if (sym->ts.type == BT_CHARACTER)
4742 : : {
4743 : : /* Create a copy of the dummy argument's length. */
4744 : 2521 : new_sym->ts.u.cl = gfc_get_interface_mapping_charlen (mapping, sym->ts.u.cl);
4745 : 2521 : sm->expr->ts.u.cl = new_sym->ts.u.cl;
4746 : :
4747 : : /* If the length is specified as "*", record the length that
4748 : : the caller is passing. We should use the callee's length
4749 : : in all other cases. */
4750 : 2521 : if (!new_sym->ts.u.cl->length && se)
4751 : : {
4752 : 2293 : se->string_length = gfc_evaluate_now (se->string_length, &se->pre);
4753 : 2293 : new_sym->ts.u.cl->backend_decl = se->string_length;
4754 : : }
4755 : : }
4756 : :
4757 : 37009 : if (!se)
4758 : 62 : return;
4759 : :
4760 : : /* Use the passed value as-is if the argument is a function. */
4761 : 36961 : if (sym->attr.flavor == FL_PROCEDURE)
4762 : 36 : value = se->expr;
4763 : :
4764 : : /* If the argument is a pass-by-value scalar, use the value as is. */
4765 : 36925 : else if (!sym->attr.dimension && sym->attr.value)
4766 : 39 : value = se->expr;
4767 : :
4768 : : /* If the argument is either a string or a pointer to a string,
4769 : : convert it to a boundless character type. */
4770 : 36886 : else if (!sym->attr.dimension && sym->ts.type == BT_CHARACTER)
4771 : : {
4772 : 1192 : se->string_length = gfc_evaluate_now (se->string_length, &se->pre);
4773 : 1192 : tmp = gfc_get_character_type_len (sym->ts.kind, se->string_length);
4774 : 1192 : tmp = build_pointer_type (tmp);
4775 : 1192 : if (sym->attr.pointer)
4776 : 126 : value = build_fold_indirect_ref_loc (input_location,
4777 : : se->expr);
4778 : : else
4779 : 1066 : value = se->expr;
4780 : 1192 : value = fold_convert (tmp, value);
4781 : : }
4782 : :
4783 : : /* If the argument is a scalar, a pointer to an array or an allocatable,
4784 : : dereference it. */
4785 : 35694 : else if (!sym->attr.dimension || sym->attr.pointer || sym->attr.allocatable)
4786 : 27087 : value = build_fold_indirect_ref_loc (input_location,
4787 : : se->expr);
4788 : :
4789 : : /* For character(*), use the actual argument's descriptor. */
4790 : 8607 : else if (sym->ts.type == BT_CHARACTER && !new_sym->ts.u.cl->length)
4791 : 1257 : value = build_fold_indirect_ref_loc (input_location,
4792 : : se->expr);
4793 : :
4794 : : /* If the argument is an array descriptor, use it to determine
4795 : : information about the actual argument's shape. */
4796 : 7350 : else if (POINTER_TYPE_P (TREE_TYPE (se->expr))
4797 : 7350 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (se->expr))))
4798 : : {
4799 : : /* Get the actual argument's descriptor. */
4800 : 7080 : desc = build_fold_indirect_ref_loc (input_location,
4801 : : se->expr);
4802 : :
4803 : : /* Create the replacement variable. */
4804 : 7080 : tmp = gfc_conv_descriptor_data_get (desc);
4805 : 7080 : value = gfc_get_interface_mapping_array (&se->pre, sym,
4806 : : PACKED_NO, tmp,
4807 : : se->string_length);
4808 : :
4809 : : /* Use DESC to work out the upper bounds, strides and offset. */
4810 : 7080 : gfc_set_interface_mapping_bounds (&se->pre, TREE_TYPE (value), desc);
4811 : : }
4812 : : else
4813 : : /* Otherwise we have a packed array. */
4814 : 270 : value = gfc_get_interface_mapping_array (&se->pre, sym,
4815 : : PACKED_FULL, se->expr,
4816 : : se->string_length);
4817 : :
4818 : 36961 : new_sym->backend_decl = value;
4819 : : }
4820 : :
4821 : :
4822 : : /* Called once all dummy argument mappings have been added to MAPPING,
4823 : : but before the mapping is used to evaluate expressions. Pre-evaluate
4824 : : the length of each argument, adding any initialization code to PRE and
4825 : : any finalization code to POST. */
4826 : :
4827 : : static void
4828 : 124231 : gfc_finish_interface_mapping (gfc_interface_mapping * mapping,
4829 : : stmtblock_t * pre, stmtblock_t * post)
4830 : : {
4831 : 124231 : gfc_interface_sym_mapping *sym;
4832 : 124231 : gfc_expr *expr;
4833 : 124231 : gfc_se se;
4834 : :
4835 : 161192 : for (sym = mapping->syms; sym; sym = sym->next)
4836 : 36961 : if (sym->new_sym->n.sym->ts.type == BT_CHARACTER
4837 : 2507 : && !sym->new_sym->n.sym->ts.u.cl->backend_decl)
4838 : : {
4839 : 214 : expr = sym->new_sym->n.sym->ts.u.cl->length;
4840 : 214 : gfc_apply_interface_mapping_to_expr (mapping, expr);
4841 : 214 : gfc_init_se (&se, NULL);
4842 : 214 : gfc_conv_expr (&se, expr);
4843 : 214 : se.expr = fold_convert (gfc_charlen_type_node, se.expr);
4844 : 214 : se.expr = gfc_evaluate_now (se.expr, &se.pre);
4845 : 214 : gfc_add_block_to_block (pre, &se.pre);
4846 : 214 : gfc_add_block_to_block (post, &se.post);
4847 : :
4848 : 214 : sym->new_sym->n.sym->ts.u.cl->backend_decl = se.expr;
4849 : : }
4850 : 124231 : }
4851 : :
4852 : :
4853 : : /* Like gfc_apply_interface_mapping_to_expr, but applied to
4854 : : constructor C. */
4855 : :
4856 : : static void
4857 : 47 : gfc_apply_interface_mapping_to_cons (gfc_interface_mapping * mapping,
4858 : : gfc_constructor_base base)
4859 : : {
4860 : 47 : gfc_constructor *c;
4861 : 428 : for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
4862 : : {
4863 : 381 : gfc_apply_interface_mapping_to_expr (mapping, c->expr);
4864 : 381 : if (c->iterator)
4865 : : {
4866 : 6 : gfc_apply_interface_mapping_to_expr (mapping, c->iterator->start);
4867 : 6 : gfc_apply_interface_mapping_to_expr (mapping, c->iterator->end);
4868 : 6 : gfc_apply_interface_mapping_to_expr (mapping, c->iterator->step);
4869 : : }
4870 : : }
4871 : 47 : }
4872 : :
4873 : :
4874 : : /* Like gfc_apply_interface_mapping_to_expr, but applied to
4875 : : reference REF. */
4876 : :
4877 : : static void
4878 : 13386 : gfc_apply_interface_mapping_to_ref (gfc_interface_mapping * mapping,
4879 : : gfc_ref * ref)
4880 : : {
4881 : 13386 : int n;
4882 : :
4883 : 14830 : for (; ref; ref = ref->next)
4884 : 1444 : switch (ref->type)
4885 : : {
4886 : : case REF_ARRAY:
4887 : 2875 : for (n = 0; n < ref->u.ar.dimen; n++)
4888 : : {
4889 : 1633 : gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.start[n]);
4890 : 1633 : gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.end[n]);
4891 : 1633 : gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.stride[n]);
4892 : : }
4893 : : break;
4894 : :
4895 : : case REF_COMPONENT:
4896 : : case REF_INQUIRY:
4897 : : break;
4898 : :
4899 : 43 : case REF_SUBSTRING:
4900 : 43 : gfc_apply_interface_mapping_to_expr (mapping, ref->u.ss.start);
4901 : 43 : gfc_apply_interface_mapping_to_expr (mapping, ref->u.ss.end);
4902 : 43 : break;
4903 : : }
4904 : 13386 : }
4905 : :
4906 : :
4907 : : /* Convert intrinsic function calls into result expressions. */
4908 : :
4909 : : static bool
4910 : 2173 : gfc_map_intrinsic_function (gfc_expr *expr, gfc_interface_mapping *mapping)
4911 : : {
4912 : 2173 : gfc_symbol *sym;
4913 : 2173 : gfc_expr *new_expr;
4914 : 2173 : gfc_expr *arg1;
4915 : 2173 : gfc_expr *arg2;
4916 : 2173 : int d, dup;
4917 : :
4918 : 2173 : arg1 = expr->value.function.actual->expr;
4919 : 2173 : if (expr->value.function.actual->next)
4920 : 2052 : arg2 = expr->value.function.actual->next->expr;
4921 : : else
4922 : : arg2 = NULL;
4923 : :
4924 : 2173 : sym = arg1->symtree->n.sym;
4925 : :
4926 : 2173 : if (sym->attr.dummy)
4927 : : return false;
4928 : :
4929 : 2106 : new_expr = NULL;
4930 : :
4931 : 2106 : switch (expr->value.function.isym->id)
4932 : : {
4933 : 875 : case GFC_ISYM_LEN:
4934 : : /* TODO figure out why this condition is necessary. */
4935 : 875 : if (sym->attr.function
4936 : 43 : && (arg1->ts.u.cl->length == NULL
4937 : 42 : || (arg1->ts.u.cl->length->expr_type != EXPR_CONSTANT
4938 : 42 : && arg1->ts.u.cl->length->expr_type != EXPR_VARIABLE)))
4939 : : return false;
4940 : :
4941 : 832 : new_expr = gfc_copy_expr (arg1->ts.u.cl->length);
4942 : 832 : break;
4943 : :
4944 : 228 : case GFC_ISYM_LEN_TRIM:
4945 : 228 : new_expr = gfc_copy_expr (arg1);
4946 : 228 : gfc_apply_interface_mapping_to_expr (mapping, new_expr);
4947 : :
4948 : 228 : if (!new_expr)
4949 : : return false;
4950 : :
4951 : 228 : gfc_replace_expr (arg1, new_expr);
4952 : 228 : return true;
4953 : :
4954 : 588 : case GFC_ISYM_SIZE:
4955 : 588 : if (!sym->as || sym->as->rank == 0)
4956 : : return false;
4957 : :
4958 : 530 : if (arg2 && arg2->expr_type == EXPR_CONSTANT)
4959 : : {
4960 : 360 : dup = mpz_get_si (arg2->value.integer);
4961 : 360 : d = dup - 1;
4962 : : }
4963 : : else
4964 : : {
4965 : 530 : dup = sym->as->rank;
4966 : 530 : d = 0;
4967 : : }
4968 : :
4969 : 542 : for (; d < dup; d++)
4970 : : {
4971 : 530 : gfc_expr *tmp;
4972 : :
4973 : 530 : if (!sym->as->upper[d] || !sym->as->lower[d])
4974 : : {
4975 : 518 : gfc_free_expr (new_expr);
4976 : 518 : return false;
4977 : : }
4978 : :
4979 : 12 : tmp = gfc_add (gfc_copy_expr (sym->as->upper[d]),
4980 : : gfc_get_int_expr (gfc_default_integer_kind,
4981 : : NULL, 1));
4982 : 12 : tmp = gfc_subtract (tmp, gfc_copy_expr (sym->as->lower[d]));
4983 : 12 : if (new_expr)
4984 : 0 : new_expr = gfc_multiply (new_expr, tmp);
4985 : : else
4986 : : new_expr = tmp;
4987 : : }
4988 : : break;
4989 : :
4990 : 44 : case GFC_ISYM_LBOUND:
4991 : 44 : case GFC_ISYM_UBOUND:
4992 : : /* TODO These implementations of lbound and ubound do not limit if
4993 : : the size < 0, according to F95's 13.14.53 and 13.14.113. */
4994 : :
4995 : 44 : if (!sym->as || sym->as->rank == 0)
4996 : : return false;
4997 : :
4998 : 44 : if (arg2 && arg2->expr_type == EXPR_CONSTANT)
4999 : 38 : d = mpz_get_si (arg2->value.integer) - 1;
5000 : : else
5001 : : return false;
5002 : :
5003 : 38 : if (expr->value.function.isym->id == GFC_ISYM_LBOUND)
5004 : : {
5005 : 23 : if (sym->as->lower[d])
5006 : 23 : new_expr = gfc_copy_expr (sym->as->lower[d]);
5007 : : }
5008 : : else
5009 : : {
5010 : 15 : if (sym->as->upper[d])
5011 : 9 : new_expr = gfc_copy_expr (sym->as->upper[d]);
5012 : : }
5013 : : break;
5014 : :
5015 : : default:
5016 : : break;
5017 : : }
5018 : :
5019 : 1253 : gfc_apply_interface_mapping_to_expr (mapping, new_expr);
5020 : 1253 : if (!new_expr)
5021 : : return false;
5022 : :
5023 : 113 : gfc_replace_expr (expr, new_expr);
5024 : 113 : return true;
5025 : : }
5026 : :
5027 : :
5028 : : static void
5029 : 24 : gfc_map_fcn_formal_to_actual (gfc_expr *expr, gfc_expr *map_expr,
5030 : : gfc_interface_mapping * mapping)
5031 : : {
5032 : 24 : gfc_formal_arglist *f;
5033 : 24 : gfc_actual_arglist *actual;
5034 : :
5035 : 24 : actual = expr->value.function.actual;
5036 : 24 : f = gfc_sym_get_dummy_args (map_expr->symtree->n.sym);
5037 : :
5038 : 72 : for (; f && actual; f = f->next, actual = actual->next)
5039 : : {
5040 : 24 : if (!actual->expr)
5041 : 0 : continue;
5042 : :
5043 : 24 : gfc_add_interface_mapping (mapping, f->sym, NULL, actual->expr);
5044 : : }
5045 : :
5046 : 24 : if (map_expr->symtree->n.sym->attr.dimension)
5047 : : {
5048 : 6 : int d;
5049 : 6 : gfc_array_spec *as;
5050 : :
5051 : 6 : as = gfc_copy_array_spec (map_expr->symtree->n.sym->as);
5052 : :
5053 : 18 : for (d = 0; d < as->rank; d++)
5054 : : {
5055 : 6 : gfc_apply_interface_mapping_to_expr (mapping, as->lower[d]);
5056 : 6 : gfc_apply_interface_mapping_to_expr (mapping, as->upper[d]);
5057 : : }
5058 : :
5059 : 6 : expr->value.function.esym->as = as;
5060 : : }
5061 : :
5062 : 24 : if (map_expr->symtree->n.sym->ts.type == BT_CHARACTER)
5063 : : {
5064 : 0 : expr->value.function.esym->ts.u.cl->length
5065 : 0 : = gfc_copy_expr (map_expr->symtree->n.sym->ts.u.cl->length);
5066 : :
5067 : 0 : gfc_apply_interface_mapping_to_expr (mapping,
5068 : 0 : expr->value.function.esym->ts.u.cl->length);
5069 : : }
5070 : 24 : }
5071 : :
5072 : :
5073 : : /* EXPR is a copy of an expression that appeared in the interface
5074 : : associated with MAPPING. Walk it recursively looking for references to
5075 : : dummy arguments that MAPPING maps to actual arguments. Replace each such
5076 : : reference with a reference to the associated actual argument. */
5077 : :
5078 : : static void
5079 : 21744 : gfc_apply_interface_mapping_to_expr (gfc_interface_mapping * mapping,
5080 : : gfc_expr * expr)
5081 : : {
5082 : 23291 : gfc_interface_sym_mapping *sym;
5083 : 23291 : gfc_actual_arglist *actual;
5084 : :
5085 : 23291 : if (!expr)
5086 : : return;
5087 : :
5088 : : /* Copying an expression does not copy its length, so do that here. */
5089 : 13386 : if (expr->ts.type == BT_CHARACTER && expr->ts.u.cl)
5090 : : {
5091 : 1773 : expr->ts.u.cl = gfc_get_interface_mapping_charlen (mapping, expr->ts.u.cl);
5092 : 1773 : gfc_apply_interface_mapping_to_expr (mapping, expr->ts.u.cl->length);
5093 : : }
5094 : :
5095 : : /* Apply the mapping to any references. */
5096 : 13386 : gfc_apply_interface_mapping_to_ref (mapping, expr->ref);
5097 : :
5098 : : /* ...and to the expression's symbol, if it has one. */
5099 : : /* TODO Find out why the condition on expr->symtree had to be moved into
5100 : : the loop rather than being outside it, as originally. */
5101 : 33131 : for (sym = mapping->syms; sym; sym = sym->next)
5102 : 19745 : if (expr->symtree && sym->old == expr->symtree->n.sym)
5103 : : {
5104 : 2962 : if (sym->new_sym->n.sym->backend_decl)
5105 : 2918 : expr->symtree = sym->new_sym;
5106 : 44 : else if (sym->expr)
5107 : 44 : gfc_replace_expr (expr, gfc_copy_expr (sym->expr));
5108 : : }
5109 : :
5110 : : /* ...and to subexpressions in expr->value. */
5111 : 13386 : switch (expr->expr_type)
5112 : : {
5113 : : case EXPR_VARIABLE:
5114 : : case EXPR_CONSTANT:
5115 : : case EXPR_NULL:
5116 : : case EXPR_SUBSTRING:
5117 : : break;
5118 : :
5119 : 1547 : case EXPR_OP:
5120 : 1547 : gfc_apply_interface_mapping_to_expr (mapping, expr->value.op.op1);
5121 : 1547 : gfc_apply_interface_mapping_to_expr (mapping, expr->value.op.op2);
5122 : 1547 : break;
5123 : :
5124 : 2916 : case EXPR_FUNCTION:
5125 : 9355 : for (actual = expr->value.function.actual; actual; actual = actual->next)
5126 : 6439 : gfc_apply_interface_mapping_to_expr (mapping, actual->expr);
5127 : :
5128 : 2916 : if (expr->value.function.esym == NULL
5129 : 2603 : && expr->value.function.isym != NULL
5130 : 2591 : && expr->value.function.actual
5131 : 2590 : && expr->value.function.actual->expr
5132 : 2590 : && expr->value.function.actual->expr->symtree
5133 : 5089 : && gfc_map_intrinsic_function (expr, mapping))
5134 : : break;
5135 : :
5136 : 6037 : for (sym = mapping->syms; sym; sym = sym->next)
5137 : 3462 : if (sym->old == expr->value.function.esym)
5138 : : {
5139 : 24 : expr->value.function.esym = sym->new_sym->n.sym;
5140 : 24 : gfc_map_fcn_formal_to_actual (expr, sym->expr, mapping);
5141 : 24 : expr->value.function.esym->result = sym->new_sym->n.sym;
5142 : : }
5143 : : break;
5144 : :
5145 : 47 : case EXPR_ARRAY:
5146 : 47 : case EXPR_STRUCTURE:
5147 : 47 : gfc_apply_interface_mapping_to_cons (mapping, expr->value.constructor);
5148 : 47 : break;
5149 : :
5150 : 0 : case EXPR_COMPCALL:
5151 : 0 : case EXPR_PPC:
5152 : 0 : case EXPR_UNKNOWN:
5153 : 0 : gcc_unreachable ();
5154 : : break;
5155 : : }
5156 : :
5157 : : return;
5158 : : }
5159 : :
5160 : :
5161 : : /* Evaluate interface expression EXPR using MAPPING. Store the result
5162 : : in SE. */
5163 : :
5164 : : void
5165 : 4894 : gfc_apply_interface_mapping (gfc_interface_mapping * mapping,
5166 : : gfc_se * se, gfc_expr * expr)
5167 : : {
5168 : 4894 : expr = gfc_copy_expr (expr);
5169 : 4894 : gfc_apply_interface_mapping_to_expr (mapping, expr);
5170 : 4894 : gfc_conv_expr (se, expr);
5171 : 4894 : se->expr = gfc_evaluate_now (se->expr, &se->pre);
5172 : 4894 : gfc_free_expr (expr);
5173 : 4894 : }
5174 : :
5175 : :
5176 : : /* Returns a reference to a temporary array into which a component of
5177 : : an actual argument derived type array is copied and then returned
5178 : : after the function call. */
5179 : : void
5180 : 2240 : gfc_conv_subref_array_arg (gfc_se *se, gfc_expr * expr, int g77,
5181 : : sym_intent intent, bool formal_ptr,
5182 : : const gfc_symbol *fsym, const char *proc_name,
5183 : : gfc_symbol *sym, bool check_contiguous)
5184 : : {
5185 : 2240 : gfc_se lse;
5186 : 2240 : gfc_se rse;
5187 : 2240 : gfc_ss *lss;
5188 : 2240 : gfc_ss *rss;
5189 : 2240 : gfc_loopinfo loop;
5190 : 2240 : gfc_loopinfo loop2;
5191 : 2240 : gfc_array_info *info;
5192 : 2240 : tree offset;
5193 : 2240 : tree tmp_index;
5194 : 2240 : tree tmp;
5195 : 2240 : tree base_type;
5196 : 2240 : tree size;
5197 : 2240 : stmtblock_t body;
5198 : 2240 : int n;
5199 : 2240 : int dimen;
5200 : 2240 : gfc_se work_se;
5201 : 2240 : gfc_se *parmse;
5202 : 2240 : bool pass_optional;
5203 : :
5204 : 2240 : pass_optional = fsym && fsym->attr.optional && sym && sym->attr.optional;
5205 : :
5206 : 2214 : if (pass_optional || check_contiguous)
5207 : : {
5208 : 1355 : gfc_init_se (&work_se, NULL);
5209 : 1355 : parmse = &work_se;
5210 : : }
5211 : : else
5212 : : parmse = se;
5213 : :
5214 : 2240 : if (gfc_option.rtcheck & GFC_RTCHECK_ARRAY_TEMPS)
5215 : : {
5216 : : /* We will create a temporary array, so let us warn. */
5217 : 868 : char * msg;
5218 : :
5219 : 868 : if (fsym && proc_name)
5220 : 868 : msg = xasprintf ("An array temporary was created for argument "
5221 : 868 : "'%s' of procedure '%s'", fsym->name, proc_name);
5222 : : else
5223 : 0 : msg = xasprintf ("An array temporary was created");
5224 : :
5225 : 868 : tmp = build_int_cst (logical_type_node, 1);
5226 : 868 : gfc_trans_runtime_check (false, true, tmp, &parmse->pre,
5227 : : &expr->where, msg);
5228 : 868 : free (msg);
5229 : : }
5230 : :
5231 : 2240 : gfc_init_se (&lse, NULL);
5232 : 2240 : gfc_init_se (&rse, NULL);
5233 : :
5234 : : /* Walk the argument expression. */
5235 : 2240 : rss = gfc_walk_expr (expr);
5236 : :
5237 : 2240 : gcc_assert (rss != gfc_ss_terminator);
5238 : :
5239 : : /* Initialize the scalarizer. */
5240 : 2240 : gfc_init_loopinfo (&loop);
5241 : 2240 : gfc_add_ss_to_loop (&loop, rss);
5242 : :
5243 : : /* Calculate the bounds of the scalarization. */
5244 : 2240 : gfc_conv_ss_startstride (&loop);
5245 : :
5246 : : /* Build an ss for the temporary. */
5247 : 2240 : if (expr->ts.type == BT_CHARACTER && !expr->ts.u.cl->backend_decl)
5248 : 132 : gfc_conv_string_length (expr->ts.u.cl, expr, &parmse->pre);
5249 : :
5250 : 2240 : base_type = gfc_typenode_for_spec (&expr->ts);
5251 : 2240 : if (GFC_ARRAY_TYPE_P (base_type)
5252 : 2240 : || GFC_DESCRIPTOR_TYPE_P (base_type))
5253 : 0 : base_type = gfc_get_element_type (base_type);
5254 : :
5255 : 2240 : if (expr->ts.type == BT_CLASS)
5256 : 121 : base_type = gfc_typenode_for_spec (&CLASS_DATA (expr)->ts);
5257 : :
5258 : 3346 : loop.temp_ss = gfc_get_temp_ss (base_type, ((expr->ts.type == BT_CHARACTER)
5259 : 1106 : ? expr->ts.u.cl->backend_decl
5260 : : : NULL),
5261 : : loop.dimen);
5262 : :
5263 : 2240 : parmse->string_length = loop.temp_ss->info->string_length;
5264 : :
5265 : : /* Associate the SS with the loop. */
5266 : 2240 : gfc_add_ss_to_loop (&loop, loop.temp_ss);
5267 : :
5268 : : /* Setup the scalarizing loops. */
5269 : 2240 : gfc_conv_loop_setup (&loop, &expr->where);
5270 : :
5271 : : /* Pass the temporary descriptor back to the caller. */
5272 : 2240 : info = &loop.temp_ss->info->data.array;
5273 : 2240 : parmse->expr = info->descriptor;
5274 : :
5275 : : /* Setup the gfc_se structures. */
5276 : 2240 : gfc_copy_loopinfo_to_se (&lse, &loop);
5277 : 2240 : gfc_copy_loopinfo_to_se (&rse, &loop);
5278 : :
5279 : 2240 : rse.ss = rss;
5280 : 2240 : lse.ss = loop.temp_ss;
5281 : 2240 : gfc_mark_ss_chain_used (rss, 1);
5282 : 2240 : gfc_mark_ss_chain_used (loop.temp_ss, 1);
5283 : :
5284 : : /* Start the scalarized loop body. */
5285 : 2240 : gfc_start_scalarized_body (&loop, &body);
5286 : :
5287 : : /* Translate the expression. */
5288 : 2240 : gfc_conv_expr (&rse, expr);
5289 : :
5290 : : /* Reset the offset for the function call since the loop
5291 : : is zero based on the data pointer. Note that the temp
5292 : : comes first in the loop chain since it is added second. */
5293 : 2240 : if (gfc_is_class_array_function (expr))
5294 : : {
5295 : 13 : tmp = loop.ss->loop_chain->info->data.array.descriptor;
5296 : 13 : gfc_conv_descriptor_offset_set (&loop.pre, tmp,
5297 : : gfc_index_zero_node);
5298 : : }
5299 : :
5300 : 2240 : gfc_conv_tmp_array_ref (&lse);
5301 : :
5302 : 2240 : if (intent != INTENT_OUT)
5303 : : {
5304 : 2197 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts, false, false);
5305 : 2197 : gfc_add_expr_to_block (&body, tmp);
5306 : 2197 : gcc_assert (rse.ss == gfc_ss_terminator);
5307 : 2197 : gfc_trans_scalarizing_loops (&loop, &body);
5308 : : }
5309 : : else
5310 : : {
5311 : : /* Make sure that the temporary declaration survives by merging
5312 : : all the loop declarations into the current context. */
5313 : 100 : for (n = 0; n < loop.dimen; n++)
5314 : : {
5315 : 57 : gfc_merge_block_scope (&body);
5316 : 57 : body = loop.code[loop.order[n]];
5317 : : }
5318 : 43 : gfc_merge_block_scope (&body);
5319 : : }
5320 : :
5321 : : /* Add the post block after the second loop, so that any
5322 : : freeing of allocated memory is done at the right time. */
5323 : 2240 : gfc_add_block_to_block (&parmse->pre, &loop.pre);
5324 : :
5325 : : /**********Copy the temporary back again.*********/
5326 : :
5327 : 2240 : gfc_init_se (&lse, NULL);
5328 : 2240 : gfc_init_se (&rse, NULL);
5329 : :
5330 : : /* Walk the argument expression. */
5331 : 2240 : lss = gfc_walk_expr (expr);
5332 : 2240 : rse.ss = loop.temp_ss;
5333 : 2240 : lse.ss = lss;
5334 : :
5335 : : /* Initialize the scalarizer. */
5336 : 2240 : gfc_init_loopinfo (&loop2);
5337 : 2240 : gfc_add_ss_to_loop (&loop2, lss);
5338 : :
5339 : 2240 : dimen = rse.ss->dimen;
5340 : :
5341 : : /* Skip the write-out loop for this case. */
5342 : 2240 : if (gfc_is_class_array_function (expr))
5343 : 13 : goto class_array_fcn;
5344 : :
5345 : : /* Calculate the bounds of the scalarization. */
5346 : 2227 : gfc_conv_ss_startstride (&loop2);
5347 : :
5348 : : /* Setup the scalarizing loops. */
5349 : 2227 : gfc_conv_loop_setup (&loop2, &expr->where);
5350 : :
5351 : 2227 : gfc_copy_loopinfo_to_se (&lse, &loop2);
5352 : 2227 : gfc_copy_loopinfo_to_se (&rse, &loop2);
5353 : :
5354 : 2227 : gfc_mark_ss_chain_used (lss, 1);
5355 : 2227 : gfc_mark_ss_chain_used (loop.temp_ss, 1);
5356 : :
5357 : : /* Declare the variable to hold the temporary offset and start the
5358 : : scalarized loop body. */
5359 : 2227 : offset = gfc_create_var (gfc_array_index_type, NULL);
5360 : 2227 : gfc_start_scalarized_body (&loop2, &body);
5361 : :
5362 : : /* Build the offsets for the temporary from the loop variables. The
5363 : : temporary array has lbounds of zero and strides of one in all
5364 : : dimensions, so this is very simple. The offset is only computed
5365 : : outside the innermost loop, so the overall transfer could be
5366 : : optimized further. */
5367 : 2227 : info = &rse.ss->info->data.array;
5368 : :
5369 : 2227 : tmp_index = gfc_index_zero_node;
5370 : 3555 : for (n = dimen - 1; n > 0; n--)
5371 : : {
5372 : 1328 : tree tmp_str;
5373 : 1328 : tmp = rse.loop->loopvar[n];
5374 : 1328 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
5375 : : tmp, rse.loop->from[n]);
5376 : 1328 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
5377 : : tmp, tmp_index);
5378 : :
5379 : 2656 : tmp_str = fold_build2_loc (input_location, MINUS_EXPR,
5380 : : gfc_array_index_type,
5381 : 1328 : rse.loop->to[n-1], rse.loop->from[n-1]);
5382 : 1328 : tmp_str = fold_build2_loc (input_location, PLUS_EXPR,
5383 : : gfc_array_index_type,
5384 : : tmp_str, gfc_index_one_node);
5385 : :
5386 : 1328 : tmp_index = fold_build2_loc (input_location, MULT_EXPR,
5387 : : gfc_array_index_type, tmp, tmp_str);
5388 : : }
5389 : :
5390 : 4454 : tmp_index = fold_build2_loc (input_location, MINUS_EXPR,
5391 : : gfc_array_index_type,
5392 : 2227 : tmp_index, rse.loop->from[0]);
5393 : 2227 : gfc_add_modify (&rse.loop->code[0], offset, tmp_index);
5394 : :
5395 : 4454 : tmp_index = fold_build2_loc (input_location, PLUS_EXPR,
5396 : : gfc_array_index_type,
5397 : 2227 : rse.loop->loopvar[0], offset);
5398 : :
5399 : : /* Now use the offset for the reference. */
5400 : 2227 : tmp = build_fold_indirect_ref_loc (input_location,
5401 : : info->data);
5402 : 2227 : rse.expr = gfc_build_array_ref (tmp, tmp_index, NULL);
5403 : :
5404 : 2227 : if (expr->ts.type == BT_CHARACTER)
5405 : 1106 : rse.string_length = expr->ts.u.cl->backend_decl;
5406 : :
5407 : 2227 : gfc_conv_expr (&lse, expr);
5408 : :
5409 : 2227 : gcc_assert (lse.ss == gfc_ss_terminator);
5410 : :
5411 : 2227 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts, false, true);
5412 : 2227 : gfc_add_expr_to_block (&body, tmp);
5413 : :
5414 : : /* Generate the copying loops. */
5415 : 2227 : gfc_trans_scalarizing_loops (&loop2, &body);
5416 : :
5417 : : /* Wrap the whole thing up by adding the second loop to the post-block
5418 : : and following it by the post-block of the first loop. In this way,
5419 : : if the temporary needs freeing, it is done after use! */
5420 : 2227 : if (intent != INTENT_IN)
5421 : : {
5422 : 1168 : gfc_add_block_to_block (&parmse->post, &loop2.pre);
5423 : 1168 : gfc_add_block_to_block (&parmse->post, &loop2.post);
5424 : : }
5425 : :
5426 : 1059 : class_array_fcn:
5427 : :
5428 : 2240 : gfc_add_block_to_block (&parmse->post, &loop.post);
5429 : :
5430 : 2240 : gfc_cleanup_loop (&loop);
5431 : 2240 : gfc_cleanup_loop (&loop2);
5432 : :
5433 : : /* Pass the string length to the argument expression. */
5434 : 2240 : if (expr->ts.type == BT_CHARACTER)
5435 : 1106 : parmse->string_length = expr->ts.u.cl->backend_decl;
5436 : :
5437 : : /* Determine the offset for pointer formal arguments and set the
5438 : : lbounds to one. */
5439 : 2240 : if (formal_ptr)
5440 : : {
5441 : 0 : size = gfc_index_one_node;
5442 : 0 : offset = gfc_index_zero_node;
5443 : 0 : for (n = 0; n < dimen; n++)
5444 : : {
5445 : 0 : tmp = gfc_conv_descriptor_ubound_get (parmse->expr,
5446 : : gfc_rank_cst[n]);
5447 : 0 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
5448 : : gfc_array_index_type, tmp,
5449 : : gfc_index_one_node);
5450 : 0 : gfc_conv_descriptor_ubound_set (&parmse->pre,
5451 : : parmse->expr,
5452 : : gfc_rank_cst[n],
5453 : : tmp);
5454 : 0 : gfc_conv_descriptor_lbound_set (&parmse->pre,
5455 : : parmse->expr,
5456 : : gfc_rank_cst[n],
5457 : : gfc_index_one_node);
5458 : 0 : size = gfc_evaluate_now (size, &parmse->pre);
5459 : 0 : offset = fold_build2_loc (input_location, MINUS_EXPR,
5460 : : gfc_array_index_type,
5461 : : offset, size);
5462 : 0 : offset = gfc_evaluate_now (offset, &parmse->pre);
5463 : 0 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
5464 : : gfc_array_index_type,
5465 : 0 : rse.loop->to[n], rse.loop->from[n]);
5466 : 0 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
5467 : : gfc_array_index_type,
5468 : : tmp, gfc_index_one_node);
5469 : 0 : size = fold_build2_loc (input_location, MULT_EXPR,
5470 : : gfc_array_index_type, size, tmp);
5471 : : }
5472 : :
5473 : 0 : gfc_conv_descriptor_offset_set (&parmse->pre, parmse->expr,
5474 : : offset);
5475 : : }
5476 : :
5477 : : /* We want either the address for the data or the address of the descriptor,
5478 : : depending on the mode of passing array arguments. */
5479 : 2240 : if (g77)
5480 : 379 : parmse->expr = gfc_conv_descriptor_data_get (parmse->expr);
5481 : : else
5482 : 1861 : parmse->expr = gfc_build_addr_expr (NULL_TREE, parmse->expr);
5483 : :
5484 : : /* Basically make this into
5485 : :
5486 : : if (present)
5487 : : {
5488 : : if (contiguous)
5489 : : {
5490 : : pointer = a;
5491 : : }
5492 : : else
5493 : : {
5494 : : parmse->pre();
5495 : : pointer = parmse->expr;
5496 : : }
5497 : : }
5498 : : else
5499 : : pointer = NULL;
5500 : :
5501 : : foo (pointer);
5502 : : if (present && !contiguous)
5503 : : se->post();
5504 : :
5505 : : */
5506 : :
5507 : 2240 : if (pass_optional || check_contiguous)
5508 : : {
5509 : 1355 : tree type;
5510 : 1355 : stmtblock_t else_block;
5511 : 1355 : tree pre_stmts, post_stmts;
5512 : 1355 : tree pointer;
5513 : 1355 : tree else_stmt;
5514 : 1355 : tree present_var = NULL_TREE;
5515 : 1355 : tree cont_var = NULL_TREE;
5516 : 1355 : tree post_cond;
5517 : :
5518 : 1355 : type = TREE_TYPE (parmse->expr);
5519 : 1355 : if (POINTER_TYPE_P (type) && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (type)))
5520 : 1021 : type = TREE_TYPE (type);
5521 : 1355 : pointer = gfc_create_var (type, "arg_ptr");
5522 : :
5523 : 1355 : if (check_contiguous)
5524 : : {
5525 : 1355 : gfc_se cont_se, array_se;
5526 : 1355 : stmtblock_t if_block, else_block;
5527 : 1355 : tree if_stmt, else_stmt;
5528 : 1355 : mpz_t size;
5529 : 1355 : bool size_set;
5530 : :
5531 : 1355 : cont_var = gfc_create_var (boolean_type_node, "contiguous");
5532 : :
5533 : : /* If the size is known to be one at compile-time, set
5534 : : cont_var to true unconditionally. This may look
5535 : : inelegant, but we're only doing this during
5536 : : optimization, so the statements will be optimized away,
5537 : : and this saves complexity here. */
5538 : :
5539 : 1355 : size_set = gfc_array_size (expr, &size);
5540 : 1355 : if (size_set && mpz_cmp_ui (size, 1) == 0)
5541 : : {
5542 : 36 : gfc_add_modify (&se->pre, cont_var,
5543 : : build_one_cst (boolean_type_node));
5544 : : }
5545 : : else
5546 : : {
5547 : : /* cont_var = is_contiguous (expr); . */
5548 : 1319 : gfc_init_se (&cont_se, parmse);
5549 : 1319 : gfc_conv_is_contiguous_expr (&cont_se, expr);
5550 : 1319 : gfc_add_block_to_block (&se->pre, &(&cont_se)->pre);
5551 : 1319 : gfc_add_modify (&se->pre, cont_var, cont_se.expr);
5552 : 1319 : gfc_add_block_to_block (&se->pre, &(&cont_se)->post);
5553 : : }
5554 : :
5555 : 1355 : if (size_set)
5556 : 1167 : mpz_clear (size);
5557 : :
5558 : : /* arrayse->expr = descriptor of a. */
5559 : 1355 : gfc_init_se (&array_se, se);
5560 : 1355 : gfc_conv_expr_descriptor (&array_se, expr);
5561 : 1355 : gfc_add_block_to_block (&se->pre, &(&array_se)->pre);
5562 : 1355 : gfc_add_block_to_block (&se->pre, &(&array_se)->post);
5563 : :
5564 : : /* if_stmt = { descriptor ? pointer = a : pointer = &a[0]; } . */
5565 : 1355 : gfc_init_block (&if_block);
5566 : 1355 : if (GFC_DESCRIPTOR_TYPE_P (type))
5567 : 1021 : gfc_add_modify (&if_block, pointer, array_se.expr);
5568 : : else
5569 : : {
5570 : 334 : tmp = gfc_conv_array_data (array_se.expr);
5571 : 334 : tmp = fold_convert (type, tmp);
5572 : 334 : gfc_add_modify (&if_block, pointer, tmp);
5573 : : }
5574 : 1355 : if_stmt = gfc_finish_block (&if_block);
5575 : :
5576 : : /* else_stmt = { parmse->pre(); pointer = parmse->expr; } . */
5577 : 1355 : gfc_init_block (&else_block);
5578 : 1355 : gfc_add_block_to_block (&else_block, &parmse->pre);
5579 : 1355 : tmp = (GFC_DESCRIPTOR_TYPE_P (type)
5580 : 1355 : ? build_fold_indirect_ref_loc (input_location, parmse->expr)
5581 : : : parmse->expr);
5582 : 1355 : gfc_add_modify (&else_block, pointer, tmp);
5583 : 1355 : else_stmt = gfc_finish_block (&else_block);
5584 : :
5585 : : /* And put the above into an if statement. */
5586 : 1355 : pre_stmts = fold_build3_loc (input_location, COND_EXPR, void_type_node,
5587 : : gfc_likely (cont_var,
5588 : : PRED_FORTRAN_CONTIGUOUS),
5589 : : if_stmt, else_stmt);
5590 : : }
5591 : : else
5592 : : {
5593 : : /* pointer = pramse->expr; . */
5594 : 0 : gfc_add_modify (&parmse->pre, pointer, parmse->expr);
5595 : 0 : pre_stmts = gfc_finish_block (&parmse->pre);
5596 : : }
5597 : :
5598 : 1355 : if (pass_optional)
5599 : : {
5600 : 26 : present_var = gfc_create_var (boolean_type_node, "present");
5601 : :
5602 : : /* present_var = present(sym); . */
5603 : 26 : tmp = gfc_conv_expr_present (sym);
5604 : 26 : tmp = fold_convert (boolean_type_node, tmp);
5605 : 26 : gfc_add_modify (&se->pre, present_var, tmp);
5606 : :
5607 : : /* else_stmt = { pointer = NULL; } . */
5608 : 26 : gfc_init_block (&else_block);
5609 : 26 : if (GFC_DESCRIPTOR_TYPE_P (type))
5610 : 0 : gfc_conv_descriptor_data_set (&else_block, pointer,
5611 : : null_pointer_node);
5612 : : else
5613 : 26 : gfc_add_modify (&else_block, pointer, build_int_cst (type, 0));
5614 : 26 : else_stmt = gfc_finish_block (&else_block);
5615 : :
5616 : 26 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
5617 : : gfc_likely (present_var,
5618 : : PRED_FORTRAN_ABSENT_DUMMY),
5619 : : pre_stmts, else_stmt);
5620 : 26 : gfc_add_expr_to_block (&se->pre, tmp);
5621 : : }
5622 : : else
5623 : 1329 : gfc_add_expr_to_block (&se->pre, pre_stmts);
5624 : :
5625 : 1355 : post_stmts = gfc_finish_block (&parmse->post);
5626 : :
5627 : : /* Put together the post stuff, plus the optional
5628 : : deallocation. */
5629 : 1355 : if (check_contiguous)
5630 : : {
5631 : : /* !cont_var. */
5632 : 1355 : tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
5633 : : cont_var,
5634 : : build_zero_cst (boolean_type_node));
5635 : 1355 : tmp = gfc_unlikely (tmp, PRED_FORTRAN_CONTIGUOUS);
5636 : :
5637 : 1355 : if (pass_optional)
5638 : : {
5639 : 26 : tree present_likely = gfc_likely (present_var,
5640 : : PRED_FORTRAN_ABSENT_DUMMY);
5641 : 26 : post_cond = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
5642 : : boolean_type_node, present_likely,
5643 : : tmp);
5644 : : }
5645 : : else
5646 : : post_cond = tmp;
5647 : : }
5648 : : else
5649 : : {
5650 : 0 : gcc_assert (pass_optional);
5651 : : post_cond = present_var;
5652 : : }
5653 : :
5654 : 1355 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, post_cond,
5655 : : post_stmts, build_empty_stmt (input_location));
5656 : 1355 : gfc_add_expr_to_block (&se->post, tmp);
5657 : 1355 : if (GFC_DESCRIPTOR_TYPE_P (type))
5658 : : {
5659 : 1021 : type = TREE_TYPE (parmse->expr);
5660 : 1021 : if (POINTER_TYPE_P (type))
5661 : : {
5662 : 1021 : pointer = gfc_build_addr_expr (type, pointer);
5663 : 1021 : if (pass_optional)
5664 : : {
5665 : 0 : tmp = gfc_likely (present_var, PRED_FORTRAN_ABSENT_DUMMY);
5666 : 0 : pointer = fold_build3_loc (input_location, COND_EXPR, type,
5667 : : tmp, pointer,
5668 : : fold_convert (type,
5669 : : null_pointer_node));
5670 : : }
5671 : : }
5672 : : else
5673 : 0 : gcc_assert (!pass_optional);
5674 : : }
5675 : 1355 : se->expr = pointer;
5676 : : }
5677 : :
5678 : 2240 : return;
5679 : : }
5680 : :
5681 : :
5682 : : /* Generate the code for argument list functions. */
5683 : :
5684 : : static void
5685 : 4660 : conv_arglist_function (gfc_se *se, gfc_expr *expr, const char *name)
5686 : : {
5687 : : /* Pass by value for g77 %VAL(arg), pass the address
5688 : : indirectly for %LOC, else by reference. Thus %REF
5689 : : is a "do-nothing" and %LOC is the same as an F95
5690 : : pointer. */
5691 : 4660 : if (strcmp (name, "%VAL") == 0)
5692 : 4588 : gfc_conv_expr (se, expr);
5693 : 72 : else if (strcmp (name, "%LOC") == 0)
5694 : : {
5695 : 36 : gfc_conv_expr_reference (se, expr);
5696 : 36 : se->expr = gfc_build_addr_expr (NULL, se->expr);
5697 : : }
5698 : 36 : else if (strcmp (name, "%REF") == 0)
5699 : 36 : gfc_conv_expr_reference (se, expr);
5700 : : else
5701 : 0 : gfc_error ("Unknown argument list function at %L", &expr->where);
5702 : 4660 : }
5703 : :
5704 : :
5705 : : /* This function tells whether the middle-end representation of the expression
5706 : : E given as input may point to data otherwise accessible through a variable
5707 : : (sub-)reference.
5708 : : It is assumed that the only expressions that may alias are variables,
5709 : : and array constructors if ARRAY_MAY_ALIAS is true and some of its elements
5710 : : may alias.
5711 : : This function is used to decide whether freeing an expression's allocatable
5712 : : components is safe or should be avoided.
5713 : :
5714 : : If ARRAY_MAY_ALIAS is true, an array constructor may alias if some of
5715 : : its elements are copied from a variable. This ARRAY_MAY_ALIAS trick
5716 : : is necessary because for array constructors, aliasing depends on how
5717 : : the array is used:
5718 : : - If E is an array constructor used as argument to an elemental procedure,
5719 : : the array, which is generated through shallow copy by the scalarizer,
5720 : : is used directly and can alias the expressions it was copied from.
5721 : : - If E is an array constructor used as argument to a non-elemental
5722 : : procedure,the scalarizer is used in gfc_conv_expr_descriptor to generate
5723 : : the array as in the previous case, but then that array is used
5724 : : to initialize a new descriptor through deep copy. There is no alias
5725 : : possible in that case.
5726 : : Thus, the ARRAY_MAY_ALIAS flag is necessary to distinguish the two cases
5727 : : above. */
5728 : :
5729 : : static bool
5730 : 7084 : expr_may_alias_variables (gfc_expr *e, bool array_may_alias)
5731 : : {
5732 : 7084 : gfc_constructor *c;
5733 : :
5734 : 7084 : if (e->expr_type == EXPR_VARIABLE)
5735 : : return true;
5736 : 363 : else if (e->expr_type == EXPR_FUNCTION)
5737 : : {
5738 : 152 : gfc_symbol *proc_ifc = gfc_get_proc_ifc_for_expr (e);
5739 : :
5740 : 152 : if (proc_ifc->result != NULL
5741 : 152 : && ((proc_ifc->result->ts.type == BT_CLASS
5742 : 25 : && proc_ifc->result->ts.u.derived->attr.is_class
5743 : 25 : && CLASS_DATA (proc_ifc->result)->attr.class_pointer)
5744 : 152 : || proc_ifc->result->attr.pointer))
5745 : : return true;
5746 : : else
5747 : : return false;
5748 : : }
5749 : 211 : else if (e->expr_type != EXPR_ARRAY || !array_may_alias)
5750 : : return false;
5751 : :
5752 : 54 : for (c = gfc_constructor_first (e->value.constructor);
5753 : 78 : c; c = gfc_constructor_next (c))
5754 : 54 : if (c->expr
5755 : 54 : && expr_may_alias_variables (c->expr, array_may_alias))
5756 : : return true;
5757 : :
5758 : : return false;
5759 : : }
5760 : :
5761 : :
5762 : : /* A helper function to set the dtype for unallocated or unassociated
5763 : : entities. */
5764 : :
5765 : : static void
5766 : 891 : set_dtype_for_unallocated (gfc_se *parmse, gfc_expr *e)
5767 : : {
5768 : 891 : tree tmp;
5769 : 891 : tree desc;
5770 : 891 : tree cond;
5771 : 891 : tree type;
5772 : 891 : stmtblock_t block;
5773 : :
5774 : : /* TODO Figure out how to handle optional dummies. */
5775 : 891 : if (e && e->expr_type == EXPR_VARIABLE
5776 : 807 : && e->symtree->n.sym->attr.optional)
5777 : 108 : return;
5778 : :
5779 : 819 : desc = parmse->expr;
5780 : 819 : if (desc == NULL_TREE)
5781 : : return;
5782 : :
5783 : 819 : if (POINTER_TYPE_P (TREE_TYPE (desc)))
5784 : 819 : desc = build_fold_indirect_ref_loc (input_location, desc);
5785 : 819 : if (GFC_CLASS_TYPE_P (TREE_TYPE (desc)))
5786 : 192 : desc = gfc_class_data_get (desc);
5787 : 819 : if (!GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
5788 : : return;
5789 : :
5790 : 783 : gfc_init_block (&block);
5791 : 783 : tmp = gfc_conv_descriptor_data_get (desc);
5792 : 783 : cond = fold_build2_loc (input_location, EQ_EXPR,
5793 : : logical_type_node, tmp,
5794 : 783 : build_int_cst (TREE_TYPE (tmp), 0));
5795 : 783 : tmp = gfc_conv_descriptor_dtype (desc);
5796 : 783 : type = gfc_get_element_type (TREE_TYPE (desc));
5797 : 1566 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
5798 : 783 : TREE_TYPE (tmp), tmp,
5799 : : gfc_get_dtype_rank_type (e->rank, type));
5800 : 783 : gfc_add_expr_to_block (&block, tmp);
5801 : 783 : cond = build3_v (COND_EXPR, cond,
5802 : : gfc_finish_block (&block),
5803 : : build_empty_stmt (input_location));
5804 : 783 : gfc_add_expr_to_block (&parmse->pre, cond);
5805 : : }
5806 : :
5807 : :
5808 : :
5809 : : /* Provide an interface between gfortran array descriptors and the F2018:18.4
5810 : : ISO_Fortran_binding array descriptors. */
5811 : :
5812 : : static void
5813 : 6536 : gfc_conv_gfc_desc_to_cfi_desc (gfc_se *parmse, gfc_expr *e, gfc_symbol *fsym)
5814 : : {
5815 : 6536 : stmtblock_t block, block2;
5816 : 6536 : tree cfi, gfc, tmp, tmp2;
5817 : 6536 : tree present = NULL;
5818 : 6536 : tree gfc_strlen = NULL;
5819 : 6536 : tree rank;
5820 : 6536 : gfc_se se;
5821 : :
5822 : 6536 : if (fsym->attr.optional
5823 : 1094 : && e->expr_type == EXPR_VARIABLE
5824 : 1094 : && e->symtree->n.sym->attr.optional)
5825 : 103 : present = gfc_conv_expr_present (e->symtree->n.sym);
5826 : :
5827 : 6536 : gfc_init_block (&block);
5828 : :
5829 : : /* Convert original argument to a tree. */
5830 : 6536 : gfc_init_se (&se, NULL);
5831 : 6536 : if (e->rank == 0)
5832 : : {
5833 : 686 : se.want_pointer = 1;
5834 : 686 : gfc_conv_expr (&se, e);
5835 : 686 : gfc = se.expr;
5836 : : /* gfc_conv_constant ignores se.want_poiner, e.g. for string_cst. */
5837 : 686 : if (!POINTER_TYPE_P (TREE_TYPE (gfc)))
5838 : 20 : gfc = gfc_build_addr_expr (NULL, gfc);
5839 : : }
5840 : : else
5841 : : {
5842 : : /* If the actual argument can be noncontiguous, copy-in/out is required,
5843 : : if the dummy has either the CONTIGUOUS attribute or is an assumed-
5844 : : length assumed-length/assumed-size CHARACTER array. This only
5845 : : applies if the actual argument is a "variable"; if it's some
5846 : : non-lvalue expression, we are going to evaluate it to a
5847 : : temporary below anyway. */
5848 : 5850 : se.force_no_tmp = 1;
5849 : 5850 : if ((fsym->attr.contiguous
5850 : 4769 : || (fsym->ts.type == BT_CHARACTER && !fsym->ts.u.cl->length
5851 : 1375 : && (fsym->as->type == AS_ASSUMED_SIZE
5852 : 937 : || fsym->as->type == AS_EXPLICIT)))
5853 : 2023 : && !gfc_is_simply_contiguous (e, false, true)
5854 : 6877 : && gfc_expr_is_variable (e))
5855 : : {
5856 : 1021 : bool optional = fsym->attr.optional;
5857 : 1021 : fsym->attr.optional = 0;
5858 : 1021 : gfc_conv_subref_array_arg (&se, e, false, fsym->attr.intent,
5859 : 1021 : fsym->attr.pointer, fsym,
5860 : 1021 : fsym->ns->proc_name->name, NULL,
5861 : : /* check_contiguous= */ true);
5862 : 1021 : fsym->attr.optional = optional;
5863 : : }
5864 : : else
5865 : 4829 : gfc_conv_expr_descriptor (&se, e);
5866 : 5850 : gfc = se.expr;
5867 : : /* For dt(:)%var the elem_len*stride != sm, hence, GFC uses
5868 : : elem_len = sizeof(dt) and base_addr = dt(lb) instead.
5869 : : gfc_get_dataptr_offset fixes the base_addr; for elem_len, see below.
5870 : : While sm is fine as it uses span*stride and not elem_len. */
5871 : 5850 : if (POINTER_TYPE_P (TREE_TYPE (gfc)))
5872 : 1021 : gfc = build_fold_indirect_ref_loc (input_location, gfc);
5873 : 4829 : else if (is_subref_array (e) && e->ts.type != BT_CHARACTER)
5874 : 12 : gfc_get_dataptr_offset (&se.pre, gfc, gfc, NULL, true, e);
5875 : : }
5876 : 6536 : if (e->ts.type == BT_CHARACTER)
5877 : : {
5878 : 3409 : if (se.string_length)
5879 : : gfc_strlen = se.string_length;
5880 : 883 : else if (e->ts.u.cl->backend_decl)
5881 : : gfc_strlen = e->ts.u.cl->backend_decl;
5882 : : else
5883 : 0 : gcc_unreachable ();
5884 : : }
5885 : 6536 : gfc_add_block_to_block (&block, &se.pre);
5886 : :
5887 : : /* Create array descriptor and set version, rank, attribute, type. */
5888 : 12767 : cfi = gfc_create_var (gfc_get_cfi_type (e->rank < 0
5889 : : ? GFC_MAX_DIMENSIONS : e->rank,
5890 : : false), "cfi");
5891 : : /* Convert to CFI_cdesc_t, which has dim[] to avoid TBAA issues,*/
5892 : 6536 : if (fsym->attr.dimension && fsym->as->type == AS_ASSUMED_RANK)
5893 : : {
5894 : 2338 : tmp = gfc_get_cfi_type (-1, !fsym->attr.pointer && !fsym->attr.target);
5895 : 2338 : tmp = build_pointer_type (tmp);
5896 : 2338 : parmse->expr = cfi = gfc_build_addr_expr (tmp, cfi);
5897 : 2338 : cfi = build_fold_indirect_ref_loc (input_location, cfi);
5898 : : }
5899 : : else
5900 : 4198 : parmse->expr = gfc_build_addr_expr (NULL, cfi);
5901 : :
5902 : 6536 : tmp = gfc_get_cfi_desc_version (cfi);
5903 : 6536 : gfc_add_modify (&block, tmp,
5904 : 6536 : build_int_cst (TREE_TYPE (tmp), CFI_VERSION));
5905 : 6536 : if (e->rank < 0)
5906 : 305 : rank = fold_convert (signed_char_type_node, gfc_conv_descriptor_rank (gfc));
5907 : : else
5908 : 6231 : rank = build_int_cst (signed_char_type_node, e->rank);
5909 : 6536 : tmp = gfc_get_cfi_desc_rank (cfi);
5910 : 6536 : gfc_add_modify (&block, tmp, rank);
5911 : 6536 : int itype = CFI_type_other;
5912 : 6536 : if (e->ts.f90_type == BT_VOID)
5913 : 96 : itype = (e->ts.u.derived->intmod_sym_id == ISOCBINDING_FUNPTR
5914 : 96 : ? CFI_type_cfunptr : CFI_type_cptr);
5915 : : else
5916 : : {
5917 : 6440 : if (e->expr_type == EXPR_NULL && e->ts.type == BT_UNKNOWN)
5918 : 1 : e->ts = fsym->ts;
5919 : 6440 : switch (e->ts.type)
5920 : : {
5921 : 2296 : case BT_INTEGER:
5922 : 2296 : case BT_LOGICAL:
5923 : 2296 : case BT_REAL:
5924 : 2296 : case BT_COMPLEX:
5925 : 2296 : itype = CFI_type_from_type_kind (e->ts.type, e->ts.kind);
5926 : 2296 : break;
5927 : 3410 : case BT_CHARACTER:
5928 : 3410 : itype = CFI_type_from_type_kind (CFI_type_Character, e->ts.kind);
5929 : 3410 : break;
5930 : : case BT_DERIVED:
5931 : 6536 : itype = CFI_type_struct;
5932 : : break;
5933 : 0 : case BT_VOID:
5934 : 0 : itype = (e->ts.u.derived->intmod_sym_id == ISOCBINDING_FUNPTR
5935 : 0 : ? CFI_type_cfunptr : CFI_type_cptr);
5936 : : break;
5937 : : case BT_ASSUMED:
5938 : : itype = CFI_type_other; // FIXME: Or CFI_type_cptr ?
5939 : : break;
5940 : 1 : case BT_CLASS:
5941 : 1 : if (fsym->ts.type == BT_ASSUMED)
5942 : : {
5943 : : // F2017: 7.3.2.2: "An entity that is declared using the TYPE(*)
5944 : : // type specifier is assumed-type and is an unlimited polymorphic
5945 : : // entity." The actual argument _data component is passed.
5946 : : itype = CFI_type_other; // FIXME: Or CFI_type_cptr ?
5947 : : break;
5948 : : }
5949 : : else
5950 : 0 : gcc_unreachable ();
5951 : :
5952 : 0 : case BT_UNSIGNED:
5953 : 0 : gfc_internal_error ("Unsigned not yet implemented");
5954 : :
5955 : 0 : case BT_PROCEDURE:
5956 : 0 : case BT_HOLLERITH:
5957 : 0 : case BT_UNION:
5958 : 0 : case BT_BOZ:
5959 : 0 : case BT_UNKNOWN:
5960 : : // FIXME: Really unreachable? Or reachable for type(*) ? If so, CFI_type_other?
5961 : 0 : gcc_unreachable ();
5962 : : }
5963 : : }
5964 : :
5965 : 6536 : tmp = gfc_get_cfi_desc_type (cfi);
5966 : 6536 : gfc_add_modify (&block, tmp,
5967 : 6536 : build_int_cst (TREE_TYPE (tmp), itype));
5968 : :
5969 : 6536 : int attr = CFI_attribute_other;
5970 : 6536 : if (fsym->attr.pointer)
5971 : : attr = CFI_attribute_pointer;
5972 : 5774 : else if (fsym->attr.allocatable)
5973 : 433 : attr = CFI_attribute_allocatable;
5974 : 6536 : tmp = gfc_get_cfi_desc_attribute (cfi);
5975 : 6536 : gfc_add_modify (&block, tmp,
5976 : 6536 : build_int_cst (TREE_TYPE (tmp), attr));
5977 : :
5978 : : /* The cfi-base_addr assignment could be skipped for 'pointer, intent(out)'.
5979 : : That is very sensible for undefined pointers, but the C code might assume
5980 : : that the pointer retains the value, in particular, if it was NULL. */
5981 : 6536 : if (e->rank == 0)
5982 : : {
5983 : 686 : tmp = gfc_get_cfi_desc_base_addr (cfi);
5984 : 686 : gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), gfc));
5985 : : }
5986 : : else
5987 : : {
5988 : 5850 : tmp = gfc_get_cfi_desc_base_addr (cfi);
5989 : 5850 : tmp2 = gfc_conv_descriptor_data_get (gfc);
5990 : 5850 : gfc_add_modify (&block, tmp, fold_convert (TREE_TYPE (tmp), tmp2));
5991 : : }
5992 : :
5993 : : /* Set elem_len if known - must be before the next if block.
5994 : : Note that allocatable implies 'len=:'. */
5995 : 6536 : if (e->ts.type != BT_ASSUMED && e->ts.type != BT_CHARACTER )
5996 : : {
5997 : : /* Length is known at compile time; use 'block' for it. */
5998 : 3072 : tmp = size_in_bytes (gfc_typenode_for_spec (&e->ts));
5999 : 3072 : tmp2 = gfc_get_cfi_desc_elem_len (cfi);
6000 : 3072 : gfc_add_modify (&block, tmp2, fold_convert (TREE_TYPE (tmp2), tmp));
6001 : : }
6002 : :
6003 : 6536 : if (fsym->attr.pointer && fsym->attr.intent == INTENT_OUT)
6004 : 91 : goto done;
6005 : :
6006 : : /* When allocatable + intent out, free the cfi descriptor. */
6007 : 6445 : if (fsym->attr.allocatable && fsym->attr.intent == INTENT_OUT)
6008 : : {
6009 : 90 : tmp = gfc_get_cfi_desc_base_addr (cfi);
6010 : 90 : tree call = builtin_decl_explicit (BUILT_IN_FREE);
6011 : 90 : call = build_call_expr_loc (input_location, call, 1, tmp);
6012 : 90 : gfc_add_expr_to_block (&block, fold_convert (void_type_node, call));
6013 : 90 : gfc_add_modify (&block, tmp,
6014 : 90 : fold_convert (TREE_TYPE (tmp), null_pointer_node));
6015 : 90 : goto done;
6016 : : }
6017 : :
6018 : : /* If not unallocated/unassociated. */
6019 : 6355 : gfc_init_block (&block2);
6020 : :
6021 : : /* Set elem_len, which may be only known at run time. */
6022 : 6355 : if (e->ts.type == BT_CHARACTER
6023 : 3410 : && (e->expr_type != EXPR_NULL || gfc_strlen != NULL_TREE))
6024 : : {
6025 : 3408 : gcc_assert (gfc_strlen);
6026 : 3409 : tmp = gfc_strlen;
6027 : 3409 : if (e->ts.kind != 1)
6028 : 1117 : tmp = fold_build2_loc (input_location, MULT_EXPR,
6029 : : gfc_charlen_type_node, tmp,
6030 : 1117 : build_int_cst (gfc_charlen_type_node,
6031 : 1117 : e->ts.kind));
6032 : 3409 : tmp2 = gfc_get_cfi_desc_elem_len (cfi);
6033 : 3409 : gfc_add_modify (&block2, tmp2, fold_convert (TREE_TYPE (tmp2), tmp));
6034 : : }
6035 : 2946 : else if (e->ts.type == BT_ASSUMED)
6036 : : {
6037 : 54 : tmp = gfc_conv_descriptor_elem_len (gfc);
6038 : 54 : tmp2 = gfc_get_cfi_desc_elem_len (cfi);
6039 : 54 : gfc_add_modify (&block2, tmp2, fold_convert (TREE_TYPE (tmp2), tmp));
6040 : : }
6041 : :
6042 : 6355 : if (e->ts.type == BT_ASSUMED)
6043 : : {
6044 : : /* Note: type(*) implies assumed-shape/assumed-rank if fsym requires
6045 : : an CFI descriptor. Use the type in the descriptor as it provide
6046 : : mode information. (Quality of implementation feature.) */
6047 : 54 : tree cond;
6048 : 54 : tree ctype = gfc_get_cfi_desc_type (cfi);
6049 : 54 : tree type = fold_convert (TREE_TYPE (ctype),
6050 : : gfc_conv_descriptor_type (gfc));
6051 : 54 : tree kind = fold_convert (TREE_TYPE (ctype),
6052 : : gfc_conv_descriptor_elem_len (gfc));
6053 : 54 : kind = fold_build2_loc (input_location, LSHIFT_EXPR, TREE_TYPE (type),
6054 : 54 : kind, build_int_cst (TREE_TYPE (type),
6055 : 54 : CFI_type_kind_shift));
6056 : :
6057 : : /* if (BT_VOID) CFI_type_cptr else CFI_type_other */
6058 : : /* Note: BT_VOID is could also be CFI_type_funcptr, but assume c_ptr. */
6059 : 54 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, type,
6060 : 54 : build_int_cst (TREE_TYPE (type), BT_VOID));
6061 : 54 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node, ctype,
6062 : 54 : build_int_cst (TREE_TYPE (type), CFI_type_cptr));
6063 : 54 : tmp2 = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node,
6064 : : ctype,
6065 : 54 : build_int_cst (TREE_TYPE (type), CFI_type_other));
6066 : 54 : tmp2 = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
6067 : : tmp, tmp2);
6068 : : /* if (BT_DERIVED) CFI_type_struct else < tmp2 > */
6069 : 54 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, type,
6070 : 54 : build_int_cst (TREE_TYPE (type), BT_DERIVED));
6071 : 54 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node, ctype,
6072 : 54 : build_int_cst (TREE_TYPE (type), CFI_type_struct));
6073 : 54 : tmp2 = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
6074 : : tmp, tmp2);
6075 : : /* if (BT_CHARACTER) CFI_type_Character + kind=1 else < tmp2 > */
6076 : : /* Note: could also be kind=4, with cfi->elem_len = gfc->elem_len*4. */
6077 : 54 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, type,
6078 : 54 : build_int_cst (TREE_TYPE (type), BT_CHARACTER));
6079 : 54 : tmp = build_int_cst (TREE_TYPE (type),
6080 : 54 : CFI_type_from_type_kind (CFI_type_Character, 1));
6081 : 54 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node,
6082 : : ctype, tmp);
6083 : 54 : tmp2 = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
6084 : : tmp, tmp2);
6085 : : /* if (BT_COMPLEX) CFI_type_Complex + kind/2 else < tmp2 > */
6086 : 54 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, type,
6087 : 54 : build_int_cst (TREE_TYPE (type), BT_COMPLEX));
6088 : 54 : tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR, TREE_TYPE (type),
6089 : 54 : kind, build_int_cst (TREE_TYPE (type), 2));
6090 : 54 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (type), tmp,
6091 : 54 : build_int_cst (TREE_TYPE (type),
6092 : 54 : CFI_type_Complex));
6093 : 54 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node,
6094 : : ctype, tmp);
6095 : 54 : tmp2 = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
6096 : : tmp, tmp2);
6097 : : /* if (BT_INTEGER || BT_LOGICAL || BT_REAL) type + kind else <tmp2> */
6098 : 54 : cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, type,
6099 : 54 : build_int_cst (TREE_TYPE (type), BT_INTEGER));
6100 : 54 : tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, type,
6101 : 54 : build_int_cst (TREE_TYPE (type), BT_LOGICAL));
6102 : 54 : cond = fold_build2_loc (input_location, TRUTH_OR_EXPR, boolean_type_node,
6103 : : cond, tmp);
6104 : 54 : tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node, type,
6105 : 54 : build_int_cst (TREE_TYPE (type), BT_REAL));
6106 : 54 : cond = fold_build2_loc (input_location, TRUTH_OR_EXPR, boolean_type_node,
6107 : : cond, tmp);
6108 : 54 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (type),
6109 : : type, kind);
6110 : 54 : tmp = fold_build2_loc (input_location, MODIFY_EXPR, void_type_node,
6111 : : ctype, tmp);
6112 : 54 : tmp2 = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond,
6113 : : tmp, tmp2);
6114 : 54 : gfc_add_expr_to_block (&block2, tmp2);
6115 : : }
6116 : :
6117 : 6355 : if (e->rank != 0)
6118 : : {
6119 : : /* Loop: for (i = 0; i < rank; ++i). */
6120 : 5735 : tree idx = gfc_create_var (TREE_TYPE (rank), "idx");
6121 : : /* Loop body. */
6122 : 5735 : stmtblock_t loop_body;
6123 : 5735 : gfc_init_block (&loop_body);
6124 : : /* cfi->dim[i].lower_bound = (allocatable/pointer)
6125 : : ? gfc->dim[i].lbound : 0 */
6126 : 5735 : if (fsym->attr.pointer || fsym->attr.allocatable)
6127 : 648 : tmp = gfc_conv_descriptor_lbound_get (gfc, idx);
6128 : : else
6129 : 5087 : tmp = gfc_index_zero_node;
6130 : 5735 : gfc_add_modify (&loop_body, gfc_get_cfi_dim_lbound (cfi, idx), tmp);
6131 : : /* cfi->dim[i].extent = gfc->dim[i].ubound - gfc->dim[i].lbound + 1. */
6132 : 5735 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
6133 : : gfc_conv_descriptor_ubound_get (gfc, idx),
6134 : : gfc_conv_descriptor_lbound_get (gfc, idx));
6135 : 5735 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
6136 : : tmp, gfc_index_one_node);
6137 : 5735 : gfc_add_modify (&loop_body, gfc_get_cfi_dim_extent (cfi, idx), tmp);
6138 : : /* d->dim[n].sm = gfc->dim[i].stride * gfc->span); */
6139 : 5735 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
6140 : : gfc_conv_descriptor_stride_get (gfc, idx),
6141 : : gfc_conv_descriptor_span_get (gfc));
6142 : 5735 : gfc_add_modify (&loop_body, gfc_get_cfi_dim_sm (cfi, idx), tmp);
6143 : :
6144 : : /* Generate loop. */
6145 : 11470 : gfc_simple_for_loop (&block2, idx, build_int_cst (TREE_TYPE (idx), 0),
6146 : 5735 : rank, LT_EXPR, build_int_cst (TREE_TYPE (idx), 1),
6147 : : gfc_finish_block (&loop_body));
6148 : :
6149 : 5735 : if (e->expr_type == EXPR_VARIABLE
6150 : 5573 : && e->ref
6151 : 5573 : && e->ref->u.ar.type == AR_FULL
6152 : 2732 : && e->symtree->n.sym->attr.dummy
6153 : 988 : && e->symtree->n.sym->as
6154 : 988 : && e->symtree->n.sym->as->type == AS_ASSUMED_SIZE)
6155 : : {
6156 : 138 : tmp = gfc_get_cfi_dim_extent (cfi, gfc_rank_cst[e->rank-1]),
6157 : 138 : gfc_add_modify (&block2, tmp, build_int_cst (TREE_TYPE (tmp), -1));
6158 : : }
6159 : : }
6160 : :
6161 : 6355 : if (fsym->attr.allocatable || fsym->attr.pointer)
6162 : : {
6163 : 1014 : tmp = gfc_get_cfi_desc_base_addr (cfi),
6164 : 1014 : tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
6165 : : tmp, null_pointer_node);
6166 : 1014 : tmp = build3_v (COND_EXPR, tmp, gfc_finish_block (&block2),
6167 : : build_empty_stmt (input_location));
6168 : 1014 : gfc_add_expr_to_block (&block, tmp);
6169 : : }
6170 : : else
6171 : 5341 : gfc_add_block_to_block (&block, &block2);
6172 : :
6173 : :
6174 : 6536 : done:
6175 : 6536 : if (present)
6176 : : {
6177 : 103 : parmse->expr = build3_loc (input_location, COND_EXPR,
6178 : 103 : TREE_TYPE (parmse->expr),
6179 : : present, parmse->expr, null_pointer_node);
6180 : 103 : tmp = build3_v (COND_EXPR, present, gfc_finish_block (&block),
6181 : : build_empty_stmt (input_location));
6182 : 103 : gfc_add_expr_to_block (&parmse->pre, tmp);
6183 : : }
6184 : : else
6185 : 6433 : gfc_add_block_to_block (&parmse->pre, &block);
6186 : :
6187 : 6536 : gfc_init_block (&block);
6188 : :
6189 : 6536 : if ((!fsym->attr.allocatable && !fsym->attr.pointer)
6190 : 1195 : || fsym->attr.intent == INTENT_IN)
6191 : 5549 : goto post_call;
6192 : :
6193 : 987 : gfc_init_block (&block2);
6194 : 987 : if (e->rank == 0)
6195 : : {
6196 : 428 : tmp = gfc_get_cfi_desc_base_addr (cfi);
6197 : 428 : gfc_add_modify (&block, gfc, fold_convert (TREE_TYPE (gfc), tmp));
6198 : : }
6199 : : else
6200 : : {
6201 : 559 : tmp = gfc_get_cfi_desc_base_addr (cfi);
6202 : 559 : gfc_conv_descriptor_data_set (&block, gfc, tmp);
6203 : :
6204 : 559 : if (fsym->attr.allocatable)
6205 : : {
6206 : : /* gfc->span = cfi->elem_len. */
6207 : 252 : tmp = fold_convert (gfc_array_index_type,
6208 : : gfc_get_cfi_dim_sm (cfi, gfc_rank_cst[0]));
6209 : : }
6210 : : else
6211 : : {
6212 : : /* gfc->span = ((cfi->dim[0].sm % cfi->elem_len)
6213 : : ? cfi->dim[0].sm : cfi->elem_len). */
6214 : 307 : tmp = gfc_get_cfi_dim_sm (cfi, gfc_rank_cst[0]);
6215 : 307 : tmp2 = fold_convert (gfc_array_index_type,
6216 : : gfc_get_cfi_desc_elem_len (cfi));
6217 : 307 : tmp = fold_build2_loc (input_location, TRUNC_MOD_EXPR,
6218 : : gfc_array_index_type, tmp, tmp2);
6219 : 307 : tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
6220 : : tmp, gfc_index_zero_node);
6221 : 307 : tmp = build3_loc (input_location, COND_EXPR, gfc_array_index_type, tmp,
6222 : : gfc_get_cfi_dim_sm (cfi, gfc_rank_cst[0]), tmp2);
6223 : : }
6224 : 559 : gfc_conv_descriptor_span_set (&block2, gfc, tmp);
6225 : :
6226 : : /* Calculate offset + set lbound, ubound and stride. */
6227 : 559 : gfc_conv_descriptor_offset_set (&block2, gfc, gfc_index_zero_node);
6228 : : /* Loop: for (i = 0; i < rank; ++i). */
6229 : 559 : tree idx = gfc_create_var (TREE_TYPE (rank), "idx");
6230 : : /* Loop body. */
6231 : 559 : stmtblock_t loop_body;
6232 : 559 : gfc_init_block (&loop_body);
6233 : : /* gfc->dim[i].lbound = ... */
6234 : 559 : tmp = gfc_get_cfi_dim_lbound (cfi, idx);
6235 : 559 : gfc_conv_descriptor_lbound_set (&loop_body, gfc, idx, tmp);
6236 : :
6237 : : /* gfc->dim[i].ubound = gfc->dim[i].lbound + cfi->dim[i].extent - 1. */
6238 : 559 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
6239 : : gfc_conv_descriptor_lbound_get (gfc, idx),
6240 : : gfc_index_one_node);
6241 : 559 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
6242 : : gfc_get_cfi_dim_extent (cfi, idx), tmp);
6243 : 559 : gfc_conv_descriptor_ubound_set (&loop_body, gfc, idx, tmp);
6244 : :
6245 : : /* gfc->dim[i].stride = cfi->dim[i].sm / cfi>elem_len */
6246 : 559 : tmp = gfc_get_cfi_dim_sm (cfi, idx);
6247 : 559 : tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
6248 : : gfc_array_index_type, tmp,
6249 : : fold_convert (gfc_array_index_type,
6250 : : gfc_get_cfi_desc_elem_len (cfi)));
6251 : 559 : gfc_conv_descriptor_stride_set (&loop_body, gfc, idx, tmp);
6252 : :
6253 : : /* gfc->offset -= gfc->dim[i].stride * gfc->dim[i].lbound. */
6254 : 559 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
6255 : : gfc_conv_descriptor_stride_get (gfc, idx),
6256 : : gfc_conv_descriptor_lbound_get (gfc, idx));
6257 : 559 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
6258 : : gfc_conv_descriptor_offset_get (gfc), tmp);
6259 : 559 : gfc_conv_descriptor_offset_set (&loop_body, gfc, tmp);
6260 : : /* Generate loop. */
6261 : 1118 : gfc_simple_for_loop (&block2, idx, build_int_cst (TREE_TYPE (idx), 0),
6262 : 559 : rank, LT_EXPR, build_int_cst (TREE_TYPE (idx), 1),
6263 : : gfc_finish_block (&loop_body));
6264 : : }
6265 : :
6266 : 987 : if (e->ts.type == BT_CHARACTER && !e->ts.u.cl->length)
6267 : : {
6268 : 60 : tmp = fold_convert (gfc_charlen_type_node,
6269 : : gfc_get_cfi_desc_elem_len (cfi));
6270 : 60 : if (e->ts.kind != 1)
6271 : 24 : tmp = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
6272 : : gfc_charlen_type_node, tmp,
6273 : 24 : build_int_cst (gfc_charlen_type_node,
6274 : 24 : e->ts.kind));
6275 : 60 : gfc_add_modify (&block2, gfc_strlen, tmp);
6276 : : }
6277 : :
6278 : 987 : tmp = gfc_get_cfi_desc_base_addr (cfi),
6279 : 987 : tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
6280 : : tmp, null_pointer_node);
6281 : 987 : tmp = build3_v (COND_EXPR, tmp, gfc_finish_block (&block2),
6282 : : build_empty_stmt (input_location));
6283 : 987 : gfc_add_expr_to_block (&block, tmp);
6284 : :
6285 : 6536 : post_call:
6286 : 6536 : gfc_add_block_to_block (&block, &se.post);
6287 : 6536 : if (present && block.head)
6288 : : {
6289 : 6 : tmp = build3_v (COND_EXPR, present, gfc_finish_block (&block),
6290 : : build_empty_stmt (input_location));
6291 : 6 : gfc_add_expr_to_block (&parmse->post, tmp);
6292 : : }
6293 : 6530 : else if (block.head)
6294 : 1558 : gfc_add_block_to_block (&parmse->post, &block);
6295 : 6536 : }
6296 : :
6297 : :
6298 : : /* Create "conditional temporary" to handle scalar dummy variables with the
6299 : : OPTIONAL+VALUE attribute that shall not be dereferenced. Use null value
6300 : : as fallback. Only instances of intrinsic basic type are supported. */
6301 : :
6302 : : static void
6303 : 186 : conv_cond_temp (gfc_se * parmse, gfc_expr * e, tree cond)
6304 : : {
6305 : 186 : tree temp;
6306 : 186 : gcc_assert (e->ts.type != BT_DERIVED && e->ts.type != BT_CLASS);
6307 : 186 : gcc_assert (e->rank == 0);
6308 : 186 : temp = gfc_create_var (TREE_TYPE (parmse->expr), "condtemp");
6309 : 186 : TREE_STATIC (temp) = 1;
6310 : 186 : TREE_CONSTANT (temp) = 1;
6311 : 186 : TREE_READONLY (temp) = 1;
6312 : 186 : DECL_INITIAL (temp) = build_zero_cst (TREE_TYPE (temp));
6313 : 186 : parmse->expr = fold_build3_loc (input_location, COND_EXPR,
6314 : 186 : TREE_TYPE (parmse->expr),
6315 : : cond, parmse->expr, temp);
6316 : 186 : parmse->expr = gfc_evaluate_now (parmse->expr, &parmse->pre);
6317 : 186 : }
6318 : :
6319 : :
6320 : : /* Helper function for the handling of (currently) scalar dummy variables
6321 : : with the VALUE attribute. Argument parmse should already be set up. */
6322 : : static void
6323 : 21960 : conv_dummy_value (gfc_se * parmse, gfc_expr * e, gfc_symbol * fsym,
6324 : : vec<tree, va_gc> *& optionalargs)
6325 : : {
6326 : 21960 : tree tmp;
6327 : :
6328 : 21960 : gcc_assert (fsym && fsym->attr.value && !fsym->attr.dimension);
6329 : :
6330 : : /* Absent actual argument for optional scalar dummy. */
6331 : 21960 : if ((e == NULL || e->expr_type == EXPR_NULL) && fsym->attr.optional)
6332 : : {
6333 : : /* For scalar arguments with VALUE attribute which are passed by
6334 : : value, pass "0" and a hidden argument for the optional status. */
6335 : 373 : if (fsym->ts.type == BT_CHARACTER)
6336 : : {
6337 : : /* Pass a NULL pointer for an absent CHARACTER arg and a length of
6338 : : zero. */
6339 : 90 : parmse->expr = null_pointer_node;
6340 : 90 : parmse->string_length = build_int_cst (gfc_charlen_type_node, 0);
6341 : : }
6342 : : else
6343 : 283 : parmse->expr = fold_convert (gfc_sym_type (fsym),
6344 : : integer_zero_node);
6345 : 373 : vec_safe_push (optionalargs, boolean_false_node);
6346 : :
6347 : 373 : return;
6348 : : }
6349 : :
6350 : : /* gfortran argument passing conventions:
6351 : : actual arguments to CHARACTER(len=1),VALUE
6352 : : dummy arguments are actually passed by value.
6353 : : Strings are truncated to length 1. */
6354 : 21587 : if (gfc_length_one_character_type_p (&fsym->ts))
6355 : : {
6356 : 390 : if (e->expr_type == EXPR_CONSTANT
6357 : 66 : && e->value.character.length > 1)
6358 : : {
6359 : 12 : e->value.character.length = 1;
6360 : 12 : gfc_conv_expr (parmse, e);
6361 : : }
6362 : :
6363 : 390 : tree slen1 = build_int_cst (gfc_charlen_type_node, 1);
6364 : 390 : gfc_conv_string_parameter (parmse);
6365 : 390 : parmse->expr = gfc_string_to_single_character (slen1, parmse->expr,
6366 : : e->ts.kind);
6367 : : /* Truncate resulting string to length 1. */
6368 : 390 : parmse->string_length = slen1;
6369 : : }
6370 : :
6371 : 21587 : if (fsym->attr.optional
6372 : 607 : && fsym->ts.type != BT_CLASS
6373 : 607 : && fsym->ts.type != BT_DERIVED)
6374 : : {
6375 : : /* F2018:15.5.2.12 Argument presence and
6376 : : restrictions on arguments not present. */
6377 : 604 : if (e->expr_type == EXPR_VARIABLE
6378 : 479 : && e->rank == 0
6379 : 1029 : && (gfc_expr_attr (e).allocatable
6380 : 323 : || gfc_expr_attr (e).pointer))
6381 : : {
6382 : 186 : gfc_se argse;
6383 : 186 : tree cond;
6384 : 186 : gfc_init_se (&argse, NULL);
6385 : 186 : argse.want_pointer = 1;
6386 : 186 : gfc_conv_expr (&argse, e);
6387 : 186 : cond = fold_convert (TREE_TYPE (argse.expr), null_pointer_node);
6388 : 186 : cond = fold_build2_loc (input_location, NE_EXPR,
6389 : : logical_type_node,
6390 : : argse.expr, cond);
6391 : 372 : vec_safe_push (optionalargs,
6392 : 186 : fold_convert (boolean_type_node, cond));
6393 : : /* Create "conditional temporary". */
6394 : 186 : conv_cond_temp (parmse, e, cond);
6395 : : }
6396 : 418 : else if (e->expr_type != EXPR_VARIABLE
6397 : 293 : || !e->symtree->n.sym->attr.optional
6398 : 188 : || (e->ref != NULL && e->ref->type != REF_ARRAY))
6399 : 230 : vec_safe_push (optionalargs, boolean_true_node);
6400 : : else
6401 : : {
6402 : 188 : tmp = gfc_conv_expr_present (e->symtree->n.sym);
6403 : 188 : if (e->ts.type != BT_CHARACTER && !e->symtree->n.sym->attr.value)
6404 : 60 : parmse->expr
6405 : 120 : = fold_build3_loc (input_location, COND_EXPR,
6406 : 60 : TREE_TYPE (parmse->expr),
6407 : : tmp, parmse->expr,
6408 : 60 : fold_convert (TREE_TYPE (parmse->expr),
6409 : : integer_zero_node));
6410 : :
6411 : 376 : vec_safe_push (optionalargs,
6412 : 188 : fold_convert (boolean_type_node, tmp));
6413 : : }
6414 : : }
6415 : : }
6416 : :
6417 : :
6418 : : /* Helper function for the handling of NULL() actual arguments associated with
6419 : : non-optional dummy variables. Argument parmse should already be set up. */
6420 : : static void
6421 : 426 : conv_null_actual (gfc_se * parmse, gfc_expr * e, gfc_symbol * fsym)
6422 : : {
6423 : 426 : gcc_assert (fsym && e->expr_type == EXPR_NULL);
6424 : :
6425 : : /* Obtain the character length for a NULL() actual with a character
6426 : : MOLD argument. Otherwise substitute a suitable dummy length.
6427 : : Here we handle only non-optional dummies of non-bind(c) procedures. */
6428 : 426 : if (fsym->ts.type == BT_CHARACTER)
6429 : : {
6430 : 216 : if (e->ts.type == BT_CHARACTER
6431 : 162 : && e->symtree->n.sym->ts.type == BT_CHARACTER)
6432 : : {
6433 : : /* MOLD is present. Substitute a temporary character NULL pointer.
6434 : : For an assumed-rank dummy we need a descriptor that passes the
6435 : : correct rank. */
6436 : 162 : if (fsym->as && fsym->as->type == AS_ASSUMED_RANK)
6437 : : {
6438 : 54 : tree rank;
6439 : 54 : tree tmp = parmse->expr;
6440 : 54 : tmp = gfc_conv_scalar_to_descriptor (parmse, tmp, fsym->attr);
6441 : 54 : rank = gfc_conv_descriptor_rank (tmp);
6442 : 54 : gfc_add_modify (&parmse->pre, rank,
6443 : 54 : build_int_cst (TREE_TYPE (rank), e->rank));
6444 : 54 : parmse->expr = gfc_build_addr_expr (NULL_TREE, tmp);
6445 : 54 : }
6446 : : else
6447 : : {
6448 : 108 : tree tmp = gfc_create_var (TREE_TYPE (parmse->expr), "null");
6449 : 108 : gfc_add_modify (&parmse->pre, tmp,
6450 : 108 : build_zero_cst (TREE_TYPE (tmp)));
6451 : 108 : parmse->expr = gfc_build_addr_expr (NULL_TREE, tmp);
6452 : : }
6453 : :
6454 : : /* Ensure that a usable length is available. */
6455 : 162 : if (parmse->string_length == NULL_TREE)
6456 : : {
6457 : 162 : gfc_typespec *ts = &e->symtree->n.sym->ts;
6458 : :
6459 : 162 : if (ts->u.cl->length != NULL
6460 : 108 : && ts->u.cl->length->expr_type == EXPR_CONSTANT)
6461 : 108 : gfc_conv_const_charlen (ts->u.cl);
6462 : :
6463 : 162 : if (ts->u.cl->backend_decl)
6464 : 162 : parmse->string_length = ts->u.cl->backend_decl;
6465 : : }
6466 : : }
6467 : 54 : else if (e->ts.type == BT_UNKNOWN && parmse->string_length == NULL_TREE)
6468 : : {
6469 : : /* MOLD is not present. Pass length of associated dummy character
6470 : : argument if constant, or zero. */
6471 : 54 : if (fsym->ts.u.cl->length != NULL
6472 : 18 : && fsym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
6473 : : {
6474 : 18 : gfc_conv_const_charlen (fsym->ts.u.cl);
6475 : 18 : parmse->string_length = fsym->ts.u.cl->backend_decl;
6476 : : }
6477 : : else
6478 : : {
6479 : 36 : parmse->string_length = gfc_create_var (gfc_charlen_type_node,
6480 : : "slen");
6481 : 36 : gfc_add_modify (&parmse->pre, parmse->string_length,
6482 : : build_zero_cst (gfc_charlen_type_node));
6483 : : }
6484 : : }
6485 : : }
6486 : 210 : else if (fsym->ts.type == BT_DERIVED)
6487 : : {
6488 : 210 : if (e->ts.type != BT_UNKNOWN)
6489 : : /* MOLD is present. Pass a corresponding temporary NULL pointer.
6490 : : For an assumed-rank dummy we provide a descriptor that passes
6491 : : the correct rank. */
6492 : : {
6493 : 138 : tree rank;
6494 : 138 : tree tmp = parmse->expr;
6495 : :
6496 : 138 : tmp = gfc_conv_scalar_to_descriptor (parmse, tmp, gfc_expr_attr (e));
6497 : 138 : rank = gfc_conv_descriptor_rank (tmp);
6498 : 138 : gfc_add_modify (&parmse->pre, rank,
6499 : 138 : build_int_cst (TREE_TYPE (rank), e->rank));
6500 : 138 : gfc_conv_descriptor_data_set (&parmse->pre, tmp, null_pointer_node);
6501 : 138 : parmse->expr = gfc_build_addr_expr (NULL_TREE, tmp);
6502 : : }
6503 : : else
6504 : : /* MOLD is not present. Use attributes from dummy argument, which is
6505 : : not allowed to be assumed-rank. */
6506 : : {
6507 : 72 : int dummy_rank;
6508 : 72 : tree tmp = parmse->expr;
6509 : :
6510 : 72 : if ((fsym->attr.allocatable || fsym->attr.pointer)
6511 : 72 : && fsym->attr.intent == INTENT_UNKNOWN)
6512 : 36 : fsym->attr.intent = INTENT_IN;
6513 : 72 : tmp = gfc_conv_scalar_to_descriptor (parmse, tmp, fsym->attr);
6514 : 72 : dummy_rank = fsym->as ? fsym->as->rank : 0;
6515 : 24 : if (dummy_rank > 0)
6516 : : {
6517 : 24 : tree rank = gfc_conv_descriptor_rank (tmp);
6518 : 24 : gfc_add_modify (&parmse->pre, rank,
6519 : 24 : build_int_cst (TREE_TYPE (rank), dummy_rank));
6520 : : }
6521 : 72 : gfc_conv_descriptor_data_set (&parmse->pre, tmp, null_pointer_node);
6522 : 72 : parmse->expr = gfc_build_addr_expr (NULL_TREE, tmp);
6523 : : }
6524 : : }
6525 : 426 : }
6526 : :
6527 : :
6528 : : /* Generate code for a procedure call. Note can return se->post != NULL.
6529 : : If se->direct_byref is set then se->expr contains the return parameter.
6530 : : Return nonzero, if the call has alternate specifiers.
6531 : : 'expr' is only needed for procedure pointer components. */
6532 : :
6533 : : int
6534 : 129946 : gfc_conv_procedure_call (gfc_se * se, gfc_symbol * sym,
6535 : : gfc_actual_arglist * args, gfc_expr * expr,
6536 : : vec<tree, va_gc> *append_args)
6537 : : {
6538 : 129946 : gfc_interface_mapping mapping;
6539 : 129946 : vec<tree, va_gc> *arglist;
6540 : 129946 : vec<tree, va_gc> *retargs;
6541 : 129946 : tree tmp;
6542 : 129946 : tree fntype;
6543 : 129946 : gfc_se parmse;
6544 : 129946 : gfc_array_info *info;
6545 : 129946 : int byref;
6546 : 129946 : int parm_kind;
6547 : 129946 : tree type;
6548 : 129946 : tree var;
6549 : 129946 : tree len;
6550 : 129946 : tree base_object;
6551 : 129946 : vec<tree, va_gc> *stringargs;
6552 : 129946 : vec<tree, va_gc> *optionalargs;
6553 : 129946 : tree result = NULL;
6554 : 129946 : gfc_formal_arglist *formal;
6555 : 129946 : gfc_actual_arglist *arg;
6556 : 129946 : int has_alternate_specifier = 0;
6557 : 129946 : bool need_interface_mapping;
6558 : 129946 : bool is_builtin;
6559 : 129946 : bool callee_alloc;
6560 : 129946 : bool ulim_copy;
6561 : 129946 : gfc_typespec ts;
6562 : 129946 : gfc_charlen cl;
6563 : 129946 : gfc_expr *e;
6564 : 129946 : gfc_symbol *fsym;
6565 : 129946 : enum {MISSING = 0, ELEMENTAL, SCALAR, SCALAR_POINTER, ARRAY};
6566 : 129946 : gfc_component *comp = NULL;
6567 : 129946 : int arglen;
6568 : 129946 : unsigned int argc;
6569 : 129946 : tree arg1_cntnr = NULL_TREE;
6570 : 129946 : arglist = NULL;
6571 : 129946 : retargs = NULL;
6572 : 129946 : stringargs = NULL;
6573 : 129946 : optionalargs = NULL;
6574 : 129946 : var = NULL_TREE;
6575 : 129946 : len = NULL_TREE;
6576 : 129946 : gfc_clear_ts (&ts);
6577 : 129946 : gfc_intrinsic_sym *isym = expr && expr->rank ?
6578 : : expr->value.function.isym : NULL;
6579 : :
6580 : 129946 : comp = gfc_get_proc_ptr_comp (expr);
6581 : :
6582 : 259892 : bool elemental_proc = (comp
6583 : 1828 : && comp->ts.interface
6584 : 1775 : && comp->ts.interface->attr.elemental)
6585 : 1635 : || (comp && comp->attr.elemental)
6586 : 131581 : || sym->attr.elemental;
6587 : :
6588 : 129946 : if (se->ss != NULL)
6589 : : {
6590 : 23327 : if (!elemental_proc)
6591 : : {
6592 : 20378 : gcc_assert (se->ss->info->type == GFC_SS_FUNCTION);
6593 : 20378 : if (se->ss->info->useflags)
6594 : : {
6595 : 5715 : gcc_assert ((!comp && gfc_return_by_reference (sym)
6596 : : && sym->result->attr.dimension)
6597 : : || (comp && comp->attr.dimension)
6598 : : || gfc_is_class_array_function (expr));
6599 : 5715 : gcc_assert (se->loop != NULL);
6600 : : /* Access the previously obtained result. */
6601 : 5715 : gfc_conv_tmp_array_ref (se);
6602 : 5715 : return 0;
6603 : : }
6604 : : }
6605 : 17612 : info = &se->ss->info->data.array;
6606 : : }
6607 : : else
6608 : : info = NULL;
6609 : :
6610 : 124231 : stmtblock_t post, clobbers, dealloc_blk;
6611 : 124231 : gfc_init_block (&post);
6612 : 124231 : gfc_init_block (&clobbers);
6613 : 124231 : gfc_init_block (&dealloc_blk);
6614 : 124231 : gfc_init_interface_mapping (&mapping);
6615 : 124231 : if (!comp)
6616 : : {
6617 : 122452 : formal = gfc_sym_get_dummy_args (sym);
6618 : 122452 : need_interface_mapping = sym->attr.dimension ||
6619 : 108029 : (sym->ts.type == BT_CHARACTER
6620 : 3005 : && sym->ts.u.cl->length
6621 : 2361 : && sym->ts.u.cl->length->expr_type
6622 : : != EXPR_CONSTANT);
6623 : : }
6624 : : else
6625 : : {
6626 : 1779 : formal = comp->ts.interface ? comp->ts.interface->formal : NULL;
6627 : 1779 : need_interface_mapping = comp->attr.dimension ||
6628 : 1716 : (comp->ts.type == BT_CHARACTER
6629 : 67 : && comp->ts.u.cl->length
6630 : 58 : && comp->ts.u.cl->length->expr_type
6631 : : != EXPR_CONSTANT);
6632 : : }
6633 : :
6634 : 124231 : base_object = NULL_TREE;
6635 : : /* For _vprt->_copy () routines no formal symbol is present. Nevertheless
6636 : : is the third and fourth argument to such a function call a value
6637 : : denoting the number of elements to copy (i.e., most of the time the
6638 : : length of a deferred length string). */
6639 : 248462 : ulim_copy = (formal == NULL)
6640 : 30986 : && UNLIMITED_POLY (sym)
6641 : 124310 : && comp && (strcmp ("_copy", comp->name) == 0);
6642 : :
6643 : : /* Scan for allocatable actual arguments passed to allocatable dummy
6644 : : arguments with INTENT(OUT). As the corresponding actual arguments are
6645 : : deallocated before execution of the procedure, we evaluate actual
6646 : : argument expressions to avoid problems with possible dependencies. */
6647 : 124231 : bool force_eval_args = false;
6648 : 124231 : gfc_formal_arglist *tmp_formal;
6649 : 383176 : for (arg = args, tmp_formal = formal; arg != NULL;
6650 : 225466 : arg = arg->next, tmp_formal = tmp_formal ? tmp_formal->next : NULL)
6651 : : {
6652 : 259432 : e = arg->expr;
6653 : 259432 : fsym = tmp_formal ? tmp_formal->sym : NULL;
6654 : 246489 : if (e && fsym
6655 : 214437 : && e->expr_type == EXPR_VARIABLE
6656 : 92776 : && fsym->attr.intent == INTENT_OUT
6657 : 6135 : && (fsym->ts.type == BT_CLASS && fsym->attr.class_ok
6658 : 6135 : ? CLASS_DATA (fsym)->attr.allocatable
6659 : 4661 : : fsym->attr.allocatable)
6660 : 487 : && e->symtree
6661 : 487 : && e->symtree->n.sym
6662 : 505921 : && gfc_variable_attr (e, NULL).allocatable)
6663 : : {
6664 : : force_eval_args = true;
6665 : : break;
6666 : : }
6667 : : }
6668 : :
6669 : : /* Evaluate the arguments. */
6670 : 384053 : for (arg = args, argc = 0; arg != NULL;
6671 : 259822 : arg = arg->next, formal = formal ? formal->next : NULL, ++argc)
6672 : : {
6673 : 259822 : bool finalized = false;
6674 : 259822 : tree derived_array = NULL_TREE;
6675 : 259822 : symbol_attribute *attr;
6676 : :
6677 : 259822 : e = arg->expr;
6678 : 259822 : fsym = formal ? formal->sym : NULL;
6679 : 486165 : parm_kind = MISSING;
6680 : :
6681 : 226343 : attr = fsym ? &(fsym->ts.type == BT_CLASS ? CLASS_DATA (fsym)->attr
6682 : : : fsym->attr)
6683 : : : nullptr;
6684 : : /* If the procedure requires an explicit interface, the actual
6685 : : argument is passed according to the corresponding formal
6686 : : argument. If the corresponding formal argument is a POINTER,
6687 : : ALLOCATABLE or assumed shape, we do not use g77's calling
6688 : : convention, and pass the address of the array descriptor
6689 : : instead. Otherwise we use g77's calling convention, in other words
6690 : : pass the array data pointer without descriptor. */
6691 : 226290 : bool nodesc_arg = fsym != NULL
6692 : 226290 : && !(fsym->attr.pointer || fsym->attr.allocatable)
6693 : 217487 : && fsym->as
6694 : 37712 : && fsym->as->type != AS_ASSUMED_SHAPE
6695 : 22630 : && fsym->as->type != AS_ASSUMED_RANK;
6696 : 259822 : if (comp)
6697 : 2683 : nodesc_arg = nodesc_arg || !comp->attr.always_explicit;
6698 : : else
6699 : 257139 : nodesc_arg
6700 : : = nodesc_arg
6701 : 257139 : || !(sym->attr.always_explicit || (attr && attr->codimension));
6702 : :
6703 : : /* Class array expressions are sometimes coming completely unadorned
6704 : : with either arrayspec or _data component. Correct that here.
6705 : : OOP-TODO: Move this to the frontend. */
6706 : 259822 : if (e && e->expr_type == EXPR_VARIABLE
6707 : 107029 : && !e->ref
6708 : 49453 : && e->ts.type == BT_CLASS
6709 : 2581 : && (CLASS_DATA (e)->attr.codimension
6710 : 2581 : || CLASS_DATA (e)->attr.dimension))
6711 : : {
6712 : 0 : gfc_typespec temp_ts = e->ts;
6713 : 0 : gfc_add_class_array_ref (e);
6714 : 0 : e->ts = temp_ts;
6715 : : }
6716 : :
6717 : 259822 : if (e == NULL
6718 : 246873 : || (e->expr_type == EXPR_NULL
6719 : 745 : && fsym
6720 : : && fsym->attr.value
6721 : : && fsym->attr.optional
6722 : 745 : && !fsym->attr.dimension
6723 : 72 : && fsym->ts.type != BT_DERIVED
6724 : 72 : && fsym->ts.type != BT_CLASS))
6725 : : {
6726 : 13021 : if (se->ignore_optional)
6727 : : {
6728 : : /* Some intrinsics have already been resolved to the correct
6729 : : parameters. */
6730 : 422 : continue;
6731 : : }
6732 : 12823 : else if (arg->label)
6733 : : {
6734 : 224 : has_alternate_specifier = 1;
6735 : 224 : continue;
6736 : : }
6737 : : else
6738 : : {
6739 : 12599 : gfc_init_se (&parmse, NULL);
6740 : :
6741 : : /* For scalar arguments with VALUE attribute which are passed by
6742 : : value, pass "0" and a hidden argument gives the optional
6743 : : status. */
6744 : 12599 : if (fsym && fsym->attr.optional && fsym->attr.value
6745 : 11541 : && !fsym->attr.dimension && fsym->ts.type != BT_CLASS
6746 : 373 : && !gfc_bt_struct (sym->ts.type))
6747 : : {
6748 : 373 : conv_dummy_value (&parmse, e, fsym, optionalargs);
6749 : : }
6750 : : else
6751 : : {
6752 : : /* Pass a NULL pointer for an absent arg. */
6753 : 12226 : parmse.expr = null_pointer_node;
6754 : 12226 : gfc_dummy_arg * const dummy_arg = arg->associated_dummy;
6755 : 12226 : if (dummy_arg
6756 : 12226 : && gfc_dummy_arg_get_typespec (*dummy_arg).type
6757 : : == BT_CHARACTER)
6758 : 1115 : parmse.string_length = build_int_cst (gfc_charlen_type_node,
6759 : 1115 : 0);
6760 : : }
6761 : : }
6762 : : }
6763 : 246801 : else if (e->expr_type == EXPR_NULL
6764 : 673 : && (e->ts.type == BT_UNKNOWN || e->ts.type == BT_DERIVED)
6765 : 371 : && fsym && attr && (attr->pointer || attr->allocatable)
6766 : 293 : && fsym->ts.type == BT_DERIVED)
6767 : : {
6768 : 210 : gfc_init_se (&parmse, NULL);
6769 : 210 : gfc_conv_expr_reference (&parmse, e);
6770 : 210 : conv_null_actual (&parmse, e, fsym);
6771 : : }
6772 : 246591 : else if (arg->expr->expr_type == EXPR_NULL
6773 : 463 : && fsym && !fsym->attr.pointer
6774 : 163 : && (fsym->ts.type != BT_CLASS
6775 : 6 : || !CLASS_DATA (fsym)->attr.class_pointer))
6776 : : {
6777 : : /* Pass a NULL pointer to denote an absent arg. */
6778 : 163 : gcc_assert (fsym->attr.optional && !fsym->attr.allocatable
6779 : : && (fsym->ts.type != BT_CLASS
6780 : : || !CLASS_DATA (fsym)->attr.allocatable));
6781 : 163 : gfc_init_se (&parmse, NULL);
6782 : 163 : parmse.expr = null_pointer_node;
6783 : 163 : if (arg->associated_dummy
6784 : 163 : && gfc_dummy_arg_get_typespec (*arg->associated_dummy).type
6785 : : == BT_CHARACTER)
6786 : 42 : parmse.string_length = build_int_cst (gfc_charlen_type_node, 0);
6787 : : }
6788 : 246428 : else if (fsym && fsym->ts.type == BT_CLASS
6789 : 10403 : && e->ts.type == BT_DERIVED)
6790 : : {
6791 : : /* The derived type needs to be converted to a temporary
6792 : : CLASS object. */
6793 : 4161 : gfc_init_se (&parmse, se);
6794 : 4161 : gfc_conv_derived_to_class (&parmse, e, fsym, NULL_TREE,
6795 : 4161 : fsym->attr.optional
6796 : 1008 : && e->expr_type == EXPR_VARIABLE
6797 : 1008 : && e->symtree->n.sym->attr.optional,
6798 : 4161 : CLASS_DATA (fsym)->attr.class_pointer
6799 : 4161 : || CLASS_DATA (fsym)->attr.allocatable,
6800 : : sym->name, &derived_array);
6801 : : }
6802 : 210215 : else if (UNLIMITED_POLY (fsym) && e->ts.type != BT_CLASS
6803 : 834 : && e->ts.type != BT_PROCEDURE
6804 : 822 : && (gfc_expr_attr (e).flavor != FL_PROCEDURE
6805 : 12 : || gfc_expr_attr (e).proc != PROC_UNKNOWN))
6806 : : {
6807 : : /* The intrinsic type needs to be converted to a temporary
6808 : : CLASS object for the unlimited polymorphic formal. */
6809 : 822 : gfc_find_vtab (&e->ts);
6810 : 822 : gfc_init_se (&parmse, se);
6811 : 822 : gfc_conv_intrinsic_to_class (&parmse, e, fsym->ts);
6812 : :
6813 : : }
6814 : 241445 : else if (se->ss && se->ss->info->useflags)
6815 : : {
6816 : 5124 : gfc_ss *ss;
6817 : :
6818 : 5124 : ss = se->ss;
6819 : :
6820 : : /* An elemental function inside a scalarized loop. */
6821 : 5124 : gfc_init_se (&parmse, se);
6822 : 5124 : parm_kind = ELEMENTAL;
6823 : :
6824 : : /* When no fsym is present, ulim_copy is set and this is a third or
6825 : : fourth argument, use call-by-value instead of by reference to
6826 : : hand the length properties to the copy routine (i.e., most of the
6827 : : time this will be a call to a __copy_character_* routine where the
6828 : : third and fourth arguments are the lengths of a deferred length
6829 : : char array). */
6830 : 5124 : if ((fsym && fsym->attr.value)
6831 : 4962 : || (ulim_copy && (argc == 2 || argc == 3)))
6832 : 162 : gfc_conv_expr (&parmse, e);
6833 : : else
6834 : 4962 : gfc_conv_expr_reference (&parmse, e);
6835 : :
6836 : 5124 : if (e->ts.type == BT_CHARACTER && !e->rank
6837 : 174 : && e->expr_type == EXPR_FUNCTION)
6838 : 12 : parmse.expr = build_fold_indirect_ref_loc (input_location,
6839 : : parmse.expr);
6840 : :
6841 : 5074 : if (fsym && fsym->ts.type == BT_DERIVED
6842 : 6386 : && gfc_is_class_container_ref (e))
6843 : : {
6844 : 24 : parmse.expr = gfc_class_data_get (parmse.expr);
6845 : :
6846 : 24 : if (fsym->attr.optional && e->expr_type == EXPR_VARIABLE
6847 : 24 : && e->symtree->n.sym->attr.optional)
6848 : : {
6849 : 0 : tree cond = gfc_conv_expr_present (e->symtree->n.sym);
6850 : 0 : parmse.expr = build3_loc (input_location, COND_EXPR,
6851 : 0 : TREE_TYPE (parmse.expr),
6852 : : cond, parmse.expr,
6853 : 0 : fold_convert (TREE_TYPE (parmse.expr),
6854 : : null_pointer_node));
6855 : : }
6856 : : }
6857 : :
6858 : : /* Scalar dummy arguments of intrinsic type with VALUE attribute. */
6859 : 5124 : if (fsym
6860 : 5074 : && fsym->attr.value
6861 : 162 : && fsym->ts.type != BT_DERIVED
6862 : 162 : && fsym->ts.type != BT_CLASS)
6863 : 162 : conv_dummy_value (&parmse, e, fsym, optionalargs);
6864 : :
6865 : : /* If we are passing an absent array as optional dummy to an
6866 : : elemental procedure, make sure that we pass NULL when the data
6867 : : pointer is NULL. We need this extra conditional because of
6868 : : scalarization which passes arrays elements to the procedure,
6869 : : ignoring the fact that the array can be absent/unallocated/... */
6870 : 4962 : else if (ss->info->can_be_null_ref
6871 : 413 : && ss->info->type != GFC_SS_REFERENCE)
6872 : : {
6873 : 191 : tree descriptor_data;
6874 : :
6875 : 191 : descriptor_data = ss->info->data.array.data;
6876 : 191 : tmp = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
6877 : : descriptor_data,
6878 : 191 : fold_convert (TREE_TYPE (descriptor_data),
6879 : : null_pointer_node));
6880 : 191 : parmse.expr
6881 : 382 : = fold_build3_loc (input_location, COND_EXPR,
6882 : 191 : TREE_TYPE (parmse.expr),
6883 : : gfc_unlikely (tmp, PRED_FORTRAN_ABSENT_DUMMY),
6884 : 191 : fold_convert (TREE_TYPE (parmse.expr),
6885 : : null_pointer_node),
6886 : : parmse.expr);
6887 : : }
6888 : :
6889 : : /* The scalarizer does not repackage the reference to a class
6890 : : array - instead it returns a pointer to the data element. */
6891 : 5124 : if (fsym && fsym->ts.type == BT_CLASS && e->ts.type == BT_CLASS)
6892 : 156 : gfc_conv_class_to_class (&parmse, e, fsym->ts, true,
6893 : 156 : fsym->attr.intent != INTENT_IN
6894 : 156 : && (CLASS_DATA (fsym)->attr.class_pointer
6895 : : || CLASS_DATA (fsym)->attr.allocatable),
6896 : 156 : fsym->attr.optional
6897 : 0 : && e->expr_type == EXPR_VARIABLE
6898 : 0 : && e->symtree->n.sym->attr.optional,
6899 : 156 : CLASS_DATA (fsym)->attr.class_pointer
6900 : 156 : || CLASS_DATA (fsym)->attr.allocatable);
6901 : : }
6902 : : else
6903 : : {
6904 : 236321 : bool scalar;
6905 : 236321 : gfc_ss *argss;
6906 : :
6907 : 236321 : gfc_init_se (&parmse, NULL);
6908 : :
6909 : : /* Check whether the expression is a scalar or not; we cannot use
6910 : : e->rank as it can be nonzero for functions arguments. */
6911 : 236321 : argss = gfc_walk_expr (e);
6912 : 236321 : scalar = argss == gfc_ss_terminator;
6913 : 236321 : if (!scalar)
6914 : 57392 : gfc_free_ss_chain (argss);
6915 : :
6916 : : /* Special handling for passing scalar polymorphic coarrays;
6917 : : otherwise one passes "class->_data.data" instead of "&class". */
6918 : 236321 : if (e->rank == 0 && e->ts.type == BT_CLASS
6919 : 3504 : && fsym && fsym->ts.type == BT_CLASS
6920 : 3082 : && CLASS_DATA (fsym)->attr.codimension
6921 : 3082 : && !CLASS_DATA (fsym)->attr.dimension)
6922 : : {
6923 : 49 : gfc_add_class_array_ref (e);
6924 : 49 : parmse.want_coarray = 1;
6925 : 49 : scalar = false;
6926 : : }
6927 : :
6928 : : /* A scalar or transformational function. */
6929 : 236321 : if (scalar)
6930 : : {
6931 : 178880 : if (e->expr_type == EXPR_VARIABLE
6932 : 52992 : && e->symtree->n.sym->attr.cray_pointee
6933 : 390 : && fsym && fsym->attr.flavor == FL_PROCEDURE)
6934 : : {
6935 : : /* The Cray pointer needs to be converted to a pointer to
6936 : : a type given by the expression. */
6937 : 6 : gfc_conv_expr (&parmse, e);
6938 : 6 : type = build_pointer_type (TREE_TYPE (parmse.expr));
6939 : 6 : tmp = gfc_get_symbol_decl (e->symtree->n.sym->cp_pointer);
6940 : 6 : parmse.expr = convert (type, tmp);
6941 : : }
6942 : :
6943 : 178874 : else if (sym->attr.is_bind_c && e && is_CFI_desc (fsym, NULL))
6944 : : /* Implement F2018, 18.3.6, list item (5), bullet point 2. */
6945 : 686 : gfc_conv_gfc_desc_to_cfi_desc (&parmse, e, fsym);
6946 : :
6947 : 178188 : else if (fsym && fsym->attr.value)
6948 : : {
6949 : 21596 : if (fsym->ts.type == BT_CHARACTER
6950 : 537 : && fsym->ts.is_c_interop
6951 : 180 : && fsym->ns->proc_name != NULL
6952 : 180 : && fsym->ns->proc_name->attr.is_bind_c)
6953 : : {
6954 : 171 : parmse.expr = NULL;
6955 : 171 : conv_scalar_char_value (fsym, &parmse, &e);
6956 : 171 : if (parmse.expr == NULL)
6957 : 165 : gfc_conv_expr (&parmse, e);
6958 : : }
6959 : : else
6960 : : {
6961 : 21425 : gfc_conv_expr (&parmse, e);
6962 : 21425 : conv_dummy_value (&parmse, e, fsym, optionalargs);
6963 : : }
6964 : : }
6965 : :
6966 : 156592 : else if (arg->name && arg->name[0] == '%')
6967 : : /* Argument list functions %VAL, %LOC and %REF are signalled
6968 : : through arg->name. */
6969 : 4660 : conv_arglist_function (&parmse, arg->expr, arg->name);
6970 : 151932 : else if ((e->expr_type == EXPR_FUNCTION)
6971 : 8167 : && ((e->value.function.esym
6972 : 2156 : && e->value.function.esym->result->attr.pointer)
6973 : 8067 : || (!e->value.function.esym
6974 : 6011 : && e->symtree->n.sym->attr.pointer))
6975 : 100 : && fsym && fsym->attr.target)
6976 : : /* Make sure the function only gets called once. */
6977 : 8 : gfc_conv_expr_reference (&parmse, e);
6978 : 151924 : else if (e->expr_type == EXPR_FUNCTION
6979 : 8159 : && e->symtree->n.sym->result
6980 : 7130 : && e->symtree->n.sym->result != e->symtree->n.sym
6981 : 141 : && e->symtree->n.sym->result->attr.proc_pointer)
6982 : : {
6983 : : /* Functions returning procedure pointers. */
6984 : 18 : gfc_conv_expr (&parmse, e);
6985 : 18 : if (fsym && fsym->attr.proc_pointer)
6986 : 6 : parmse.expr = gfc_build_addr_expr (NULL_TREE, parmse.expr);
6987 : : }
6988 : :
6989 : : else
6990 : : {
6991 : 151906 : bool defer_to_dealloc_blk = false;
6992 : 151906 : if (e->ts.type == BT_CLASS && fsym
6993 : 3443 : && fsym->ts.type == BT_CLASS
6994 : 3021 : && (!CLASS_DATA (fsym)->as
6995 : 356 : || CLASS_DATA (fsym)->as->type != AS_ASSUMED_RANK)
6996 : 2665 : && CLASS_DATA (e)->attr.codimension)
6997 : : {
6998 : 48 : gcc_assert (!CLASS_DATA (fsym)->attr.codimension);
6999 : 48 : gcc_assert (!CLASS_DATA (fsym)->as);
7000 : 48 : gfc_add_class_array_ref (e);
7001 : 48 : parmse.want_coarray = 1;
7002 : 48 : gfc_conv_expr_reference (&parmse, e);
7003 : 48 : class_scalar_coarray_to_class (&parmse, e, fsym->ts,
7004 : 48 : fsym->attr.optional
7005 : 48 : && e->expr_type == EXPR_VARIABLE);
7006 : : }
7007 : 151858 : else if (e->ts.type == BT_CLASS && fsym
7008 : 3395 : && fsym->ts.type == BT_CLASS
7009 : 2973 : && !CLASS_DATA (fsym)->as
7010 : 2617 : && !CLASS_DATA (e)->as
7011 : 2507 : && strcmp (fsym->ts.u.derived->name,
7012 : : e->ts.u.derived->name))
7013 : : {
7014 : 1602 : type = gfc_typenode_for_spec (&fsym->ts);
7015 : 1602 : var = gfc_create_var (type, fsym->name);
7016 : 1602 : gfc_conv_expr (&parmse, e);
7017 : 1602 : if (fsym->attr.optional
7018 : 153 : && e->expr_type == EXPR_VARIABLE
7019 : 153 : && e->symtree->n.sym->attr.optional)
7020 : : {
7021 : 66 : stmtblock_t block;
7022 : 66 : tree cond;
7023 : 66 : tmp = gfc_build_addr_expr (NULL_TREE, parmse.expr);
7024 : 66 : cond = fold_build2_loc (input_location, NE_EXPR,
7025 : : logical_type_node, tmp,
7026 : 66 : fold_convert (TREE_TYPE (tmp),
7027 : : null_pointer_node));
7028 : 66 : gfc_start_block (&block);
7029 : 66 : gfc_add_modify (&block, var,
7030 : : fold_build1_loc (input_location,
7031 : : VIEW_CONVERT_EXPR,
7032 : : type, parmse.expr));
7033 : 66 : gfc_add_expr_to_block (&parmse.pre,
7034 : : fold_build3_loc (input_location,
7035 : : COND_EXPR, void_type_node,
7036 : : cond, gfc_finish_block (&block),
7037 : : build_empty_stmt (input_location)));
7038 : 66 : parmse.expr = gfc_build_addr_expr (NULL_TREE, var);
7039 : 132 : parmse.expr = build3_loc (input_location, COND_EXPR,
7040 : 66 : TREE_TYPE (parmse.expr),
7041 : : cond, parmse.expr,
7042 : 66 : fold_convert (TREE_TYPE (parmse.expr),
7043 : : null_pointer_node));
7044 : 66 : }
7045 : : else
7046 : : {
7047 : : /* Since the internal representation of unlimited
7048 : : polymorphic expressions includes an extra field
7049 : : that other class objects do not, a cast to the
7050 : : formal type does not work. */
7051 : 1536 : if (!UNLIMITED_POLY (e) && UNLIMITED_POLY (fsym))
7052 : : {
7053 : 91 : tree efield;
7054 : :
7055 : : /* Evaluate arguments just once, when they have
7056 : : side effects. */
7057 : 91 : if (TREE_SIDE_EFFECTS (parmse.expr))
7058 : : {
7059 : 25 : tree cldata, zero;
7060 : :
7061 : 25 : parmse.expr = gfc_evaluate_now (parmse.expr,
7062 : : &parmse.pre);
7063 : :
7064 : : /* Prevent memory leak, when old component
7065 : : was allocated already. */
7066 : 25 : cldata = gfc_class_data_get (parmse.expr);
7067 : 25 : zero = build_int_cst (TREE_TYPE (cldata),
7068 : 25 : 0);
7069 : 25 : tmp = fold_build2_loc (input_location, NE_EXPR,
7070 : : logical_type_node,
7071 : : cldata, zero);
7072 : 25 : tmp = build3_v (COND_EXPR, tmp,
7073 : : gfc_call_free (cldata),
7074 : : build_empty_stmt (
7075 : : input_location));
7076 : 25 : gfc_add_expr_to_block (&parmse.finalblock,
7077 : : tmp);
7078 : 25 : gfc_add_modify (&parmse.finalblock,
7079 : : cldata, zero);
7080 : : }
7081 : :
7082 : : /* Set the _data field. */
7083 : 91 : tmp = gfc_class_data_get (var);
7084 : 91 : efield = fold_convert (TREE_TYPE (tmp),
7085 : : gfc_class_data_get (parmse.expr));
7086 : 91 : gfc_add_modify (&parmse.pre, tmp, efield);
7087 : :
7088 : : /* Set the _vptr field. */
7089 : 91 : tmp = gfc_class_vptr_get (var);
7090 : 91 : efield = fold_convert (TREE_TYPE (tmp),
7091 : : gfc_class_vptr_get (parmse.expr));
7092 : 91 : gfc_add_modify (&parmse.pre, tmp, efield);
7093 : :
7094 : : /* Set the _len field. */
7095 : 91 : tmp = gfc_class_len_get (var);
7096 : 91 : gfc_add_modify (&parmse.pre, tmp,
7097 : 91 : build_int_cst (TREE_TYPE (tmp), 0));
7098 : 91 : }
7099 : : else
7100 : : {
7101 : 1445 : tmp = fold_build1_loc (input_location,
7102 : : VIEW_CONVERT_EXPR,
7103 : : type, parmse.expr);
7104 : 1445 : gfc_add_modify (&parmse.pre, var, tmp);
7105 : 1536 : ;
7106 : : }
7107 : 1536 : parmse.expr = gfc_build_addr_expr (NULL_TREE, var);
7108 : : }
7109 : : }
7110 : : else
7111 : : {
7112 : 150256 : gfc_conv_expr_reference (&parmse, e);
7113 : :
7114 : 150256 : gfc_symbol *dsym = fsym;
7115 : 150256 : gfc_dummy_arg *dummy;
7116 : :
7117 : : /* Use associated dummy as fallback for formal
7118 : : argument if there is no explicit interface. */
7119 : 150256 : if (dsym == NULL
7120 : 27480 : && (dummy = arg->associated_dummy)
7121 : 25008 : && dummy->intrinsicness == GFC_NON_INTRINSIC_DUMMY_ARG
7122 : 173792 : && dummy->u.non_intrinsic->sym)
7123 : : dsym = dummy->u.non_intrinsic->sym;
7124 : :
7125 : 150256 : if (dsym
7126 : 146312 : && dsym->attr.intent == INTENT_OUT
7127 : : && !dsym->attr.allocatable
7128 : 3191 : && !dsym->attr.pointer
7129 : 3032 : && e->expr_type == EXPR_VARIABLE
7130 : 3026 : && e->ref == NULL
7131 : 2923 : && e->symtree
7132 : 2923 : && e->symtree->n.sym
7133 : 2923 : && !e->symtree->n.sym->attr.dimension
7134 : 2923 : && e->ts.type != BT_CHARACTER
7135 : 2821 : && e->ts.type != BT_CLASS
7136 : 2591 : && (e->ts.type != BT_DERIVED
7137 : 486 : || (dsym->ts.type == BT_DERIVED
7138 : 486 : && e->ts.u.derived == dsym->ts.u.derived
7139 : : /* Types with allocatable components are
7140 : : excluded from clobbering because we need
7141 : : the unclobbered pointers to free the
7142 : : allocatable components in the callee.
7143 : : Same goes for finalizable types or types
7144 : : with finalizable components, we need to
7145 : : pass the unclobbered values to the
7146 : : finalization routines.
7147 : : For parameterized types, it's less clear
7148 : : but they may not have a constant size
7149 : : so better exclude them in any case. */
7150 : : && !e->ts.u.derived->attr.alloc_comp
7151 : 471 : && !e->ts.u.derived->attr.pdt_type
7152 : 345 : && !gfc_is_finalizable (e->ts.u.derived, NULL)))
7153 : 152670 : && !sym->attr.elemental)
7154 : : {
7155 : 1081 : tree var;
7156 : 1081 : var = build_fold_indirect_ref_loc (input_location,
7157 : : parmse.expr);
7158 : 1081 : tree clobber = build_clobber (TREE_TYPE (var));
7159 : 1081 : gfc_add_modify (&clobbers, var, clobber);
7160 : : }
7161 : : }
7162 : : /* Catch base objects that are not variables. */
7163 : 151906 : if (e->ts.type == BT_CLASS
7164 : 3443 : && e->expr_type != EXPR_VARIABLE
7165 : 306 : && expr && e == expr->base_expr)
7166 : 80 : base_object = build_fold_indirect_ref_loc (input_location,
7167 : : parmse.expr);
7168 : :
7169 : : /* If an ALLOCATABLE dummy argument has INTENT(OUT) and is
7170 : : allocated on entry, it must be deallocated. */
7171 : 124426 : if (fsym && fsym->attr.intent == INTENT_OUT
7172 : 3100 : && (fsym->attr.allocatable
7173 : 2959 : || (fsym->ts.type == BT_CLASS
7174 : 259 : && CLASS_DATA (fsym)->attr.allocatable))
7175 : 152196 : && !is_CFI_desc (fsym, NULL))
7176 : : {
7177 : 290 : stmtblock_t block;
7178 : 290 : tree ptr;
7179 : :
7180 : 290 : defer_to_dealloc_blk = true;
7181 : :
7182 : 290 : parmse.expr = gfc_evaluate_data_ref_now (parmse.expr,
7183 : : &parmse.pre);
7184 : :
7185 : 290 : if (parmse.class_container != NULL_TREE)
7186 : 156 : parmse.class_container
7187 : 156 : = gfc_evaluate_data_ref_now (parmse.class_container,
7188 : : &parmse.pre);
7189 : :
7190 : 290 : gfc_init_block (&block);
7191 : 290 : ptr = parmse.expr;
7192 : 290 : if (e->ts.type == BT_CLASS)
7193 : 156 : ptr = gfc_class_data_get (ptr);
7194 : :
7195 : 290 : tree cls = parmse.class_container;
7196 : 290 : tmp = gfc_deallocate_scalar_with_status (ptr, NULL_TREE,
7197 : : NULL_TREE, true,
7198 : : e, e->ts, cls);
7199 : 290 : gfc_add_expr_to_block (&block, tmp);
7200 : 290 : gfc_add_modify (&block, ptr,
7201 : 290 : fold_convert (TREE_TYPE (ptr),
7202 : : null_pointer_node));
7203 : :
7204 : 290 : if (fsym->ts.type == BT_CLASS)
7205 : 149 : gfc_reset_vptr (&block, nullptr,
7206 : : build_fold_indirect_ref (parmse.expr),
7207 : : fsym->ts.u.derived);
7208 : :
7209 : 290 : if (fsym->attr.optional
7210 : 42 : && e->expr_type == EXPR_VARIABLE
7211 : 42 : && e->symtree->n.sym->attr.optional)
7212 : : {
7213 : 36 : tmp = fold_build3_loc (input_location, COND_EXPR,
7214 : : void_type_node,
7215 : 18 : gfc_conv_expr_present (e->symtree->n.sym),
7216 : : gfc_finish_block (&block),
7217 : : build_empty_stmt (input_location));
7218 : : }
7219 : : else
7220 : 272 : tmp = gfc_finish_block (&block);
7221 : :
7222 : 290 : gfc_add_expr_to_block (&dealloc_blk, tmp);
7223 : : }
7224 : :
7225 : : /* A class array element needs converting back to be a
7226 : : class object, if the formal argument is a class object. */
7227 : 151906 : if (fsym && fsym->ts.type == BT_CLASS
7228 : 3033 : && e->ts.type == BT_CLASS
7229 : 3021 : && ((CLASS_DATA (fsym)->as
7230 : 356 : && CLASS_DATA (fsym)->as->type == AS_ASSUMED_RANK)
7231 : 2665 : || CLASS_DATA (e)->attr.dimension))
7232 : : {
7233 : 466 : gfc_se class_se = parmse;
7234 : 466 : gfc_init_block (&class_se.pre);
7235 : 466 : gfc_init_block (&class_se.post);
7236 : :
7237 : 466 : gfc_conv_class_to_class (&class_se, e, fsym->ts, false,
7238 : 466 : fsym->attr.intent != INTENT_IN
7239 : 466 : && (CLASS_DATA (fsym)->attr.class_pointer
7240 : : || CLASS_DATA (fsym)->attr.allocatable),
7241 : 466 : fsym->attr.optional
7242 : 198 : && e->expr_type == EXPR_VARIABLE
7243 : 198 : && e->symtree->n.sym->attr.optional,
7244 : 466 : CLASS_DATA (fsym)->attr.class_pointer
7245 : 466 : || CLASS_DATA (fsym)->attr.allocatable);
7246 : :
7247 : 466 : parmse.expr = class_se.expr;
7248 : 932 : stmtblock_t *class_pre_block = defer_to_dealloc_blk
7249 : 466 : ? &dealloc_blk
7250 : : : &parmse.pre;
7251 : 466 : gfc_add_block_to_block (class_pre_block, &class_se.pre);
7252 : 466 : gfc_add_block_to_block (&parmse.post, &class_se.post);
7253 : : }
7254 : :
7255 : 124426 : if (fsym && (fsym->ts.type == BT_DERIVED
7256 : 113047 : || fsym->ts.type == BT_ASSUMED)
7257 : 12230 : && e->ts.type == BT_CLASS
7258 : 410 : && !CLASS_DATA (e)->attr.dimension
7259 : 410 : && !CLASS_DATA (e)->attr.codimension)
7260 : : {
7261 : 374 : parmse.expr = gfc_class_data_get (parmse.expr);
7262 : : /* The result is a class temporary, whose _data component
7263 : : must be freed to avoid a memory leak. */
7264 : 374 : if (e->expr_type == EXPR_FUNCTION
7265 : 23 : && CLASS_DATA (e)->attr.allocatable)
7266 : : {
7267 : 19 : tree zero;
7268 : :
7269 : : /* Finalize the expression. */
7270 : 19 : gfc_finalize_tree_expr (&parmse, NULL,
7271 : : gfc_expr_attr (e), e->rank);
7272 : 19 : gfc_add_block_to_block (&parmse.post,
7273 : : &parmse.finalblock);
7274 : :
7275 : : /* Then free the class _data. */
7276 : 19 : zero = build_int_cst (TREE_TYPE (parmse.expr), 0);
7277 : 19 : tmp = fold_build2_loc (input_location, NE_EXPR,
7278 : : logical_type_node,
7279 : : parmse.expr, zero);
7280 : 19 : tmp = build3_v (COND_EXPR, tmp,
7281 : : gfc_call_free (parmse.expr),
7282 : : build_empty_stmt (input_location));
7283 : 19 : gfc_add_expr_to_block (&parmse.post, tmp);
7284 : 19 : gfc_add_modify (&parmse.post, parmse.expr, zero);
7285 : : }
7286 : : }
7287 : :
7288 : : /* Wrap scalar variable in a descriptor. We need to convert
7289 : : the address of a pointer back to the pointer itself before,
7290 : : we can assign it to the data field. */
7291 : :
7292 : 124426 : if (fsym && fsym->as && fsym->as->type == AS_ASSUMED_RANK
7293 : 1281 : && fsym->ts.type != BT_CLASS && e->expr_type != EXPR_NULL)
7294 : : {
7295 : 1209 : tmp = parmse.expr;
7296 : 1209 : if (TREE_CODE (tmp) == ADDR_EXPR)
7297 : 703 : tmp = TREE_OPERAND (tmp, 0);
7298 : 1209 : parmse.expr = gfc_conv_scalar_to_descriptor (&parmse, tmp,
7299 : : fsym->attr);
7300 : 1209 : parmse.expr = gfc_build_addr_expr (NULL_TREE,
7301 : : parmse.expr);
7302 : : }
7303 : 123217 : else if (fsym && e->expr_type != EXPR_NULL
7304 : 122919 : && ((fsym->attr.pointer
7305 : 1733 : && fsym->attr.flavor != FL_PROCEDURE)
7306 : 121192 : || (fsym->attr.proc_pointer
7307 : 157 : && !(e->expr_type == EXPR_VARIABLE
7308 : 157 : && e->symtree->n.sym->attr.dummy))
7309 : 121047 : || (fsym->attr.proc_pointer
7310 : 12 : && e->expr_type == EXPR_VARIABLE
7311 : 12 : && gfc_is_proc_ptr_comp (e))
7312 : 121041 : || (fsym->attr.allocatable
7313 : 948 : && fsym->attr.flavor != FL_PROCEDURE)))
7314 : : {
7315 : : /* Scalar pointer dummy args require an extra level of
7316 : : indirection. The null pointer already contains
7317 : : this level of indirection. */
7318 : 2820 : parm_kind = SCALAR_POINTER;
7319 : 2820 : parmse.expr = gfc_build_addr_expr (NULL_TREE, parmse.expr);
7320 : : }
7321 : : }
7322 : : }
7323 : 57441 : else if (e->ts.type == BT_CLASS
7324 : 2565 : && fsym && fsym->ts.type == BT_CLASS
7325 : 2219 : && (CLASS_DATA (fsym)->attr.dimension
7326 : 2219 : || CLASS_DATA (fsym)->attr.codimension))
7327 : : {
7328 : : /* Pass a class array. */
7329 : 2219 : parmse.use_offset = 1;
7330 : 2219 : gfc_conv_expr_descriptor (&parmse, e);
7331 : 2219 : bool defer_to_dealloc_blk = false;
7332 : :
7333 : 2219 : if (fsym->attr.optional
7334 : 798 : && e->expr_type == EXPR_VARIABLE
7335 : 798 : && e->symtree->n.sym->attr.optional)
7336 : : {
7337 : 438 : stmtblock_t block;
7338 : :
7339 : 438 : gfc_init_block (&block);
7340 : 438 : gfc_add_block_to_block (&block, &parmse.pre);
7341 : :
7342 : 876 : tree t = fold_build3_loc (input_location, COND_EXPR,
7343 : : void_type_node,
7344 : 438 : gfc_conv_expr_present (e->symtree->n.sym),
7345 : : gfc_finish_block (&block),
7346 : : build_empty_stmt (input_location));
7347 : :
7348 : 438 : gfc_add_expr_to_block (&parmse.pre, t);
7349 : : }
7350 : :
7351 : : /* If an ALLOCATABLE dummy argument has INTENT(OUT) and is
7352 : : allocated on entry, it must be deallocated. */
7353 : 2219 : if (fsym->attr.intent == INTENT_OUT
7354 : 141 : && CLASS_DATA (fsym)->attr.allocatable)
7355 : : {
7356 : 110 : stmtblock_t block;
7357 : 110 : tree ptr;
7358 : :
7359 : : /* In case the data reference to deallocate is dependent on
7360 : : its own content, save the resulting pointer to a variable
7361 : : and only use that variable from now on, before the
7362 : : expression becomes invalid. */
7363 : 110 : parmse.expr = gfc_evaluate_data_ref_now (parmse.expr,
7364 : : &parmse.pre);
7365 : :
7366 : 110 : if (parmse.class_container != NULL_TREE)
7367 : 110 : parmse.class_container
7368 : 110 : = gfc_evaluate_data_ref_now (parmse.class_container,
7369 : : &parmse.pre);
7370 : :
7371 : 110 : gfc_init_block (&block);
7372 : 110 : ptr = parmse.expr;
7373 : 110 : ptr = gfc_class_data_get (ptr);
7374 : :
7375 : 110 : tree cls = parmse.class_container;
7376 : 110 : tmp = gfc_deallocate_with_status (ptr, NULL_TREE,
7377 : : NULL_TREE, NULL_TREE,
7378 : : NULL_TREE, true, e,
7379 : : GFC_CAF_COARRAY_NOCOARRAY,
7380 : : cls);
7381 : 110 : gfc_add_expr_to_block (&block, tmp);
7382 : 110 : tmp = fold_build2_loc (input_location, MODIFY_EXPR,
7383 : : void_type_node, ptr,
7384 : : null_pointer_node);
7385 : 110 : gfc_add_expr_to_block (&block, tmp);
7386 : 110 : gfc_reset_vptr (&block, e, parmse.class_container);
7387 : :
7388 : 110 : if (fsym->attr.optional
7389 : 30 : && e->expr_type == EXPR_VARIABLE
7390 : 30 : && (!e->ref
7391 : 30 : || (e->ref->type == REF_ARRAY
7392 : 0 : && e->ref->u.ar.type != AR_FULL))
7393 : 0 : && e->symtree->n.sym->attr.optional)
7394 : : {
7395 : 0 : tmp = fold_build3_loc (input_location, COND_EXPR,
7396 : : void_type_node,
7397 : 0 : gfc_conv_expr_present (e->symtree->n.sym),
7398 : : gfc_finish_block (&block),
7399 : : build_empty_stmt (input_location));
7400 : : }
7401 : : else
7402 : 110 : tmp = gfc_finish_block (&block);
7403 : :
7404 : 110 : gfc_add_expr_to_block (&dealloc_blk, tmp);
7405 : 110 : defer_to_dealloc_blk = true;
7406 : : }
7407 : :
7408 : 2219 : gfc_se class_se = parmse;
7409 : 2219 : gfc_init_block (&class_se.pre);
7410 : 2219 : gfc_init_block (&class_se.post);
7411 : :
7412 : : /* The conversion does not repackage the reference to a class
7413 : : array - _data descriptor. */
7414 : 2219 : gfc_conv_class_to_class (&class_se, e, fsym->ts, false,
7415 : 2219 : fsym->attr.intent != INTENT_IN
7416 : 2219 : && (CLASS_DATA (fsym)->attr.class_pointer
7417 : : || CLASS_DATA (fsym)->attr.allocatable),
7418 : 2219 : fsym->attr.optional
7419 : 798 : && e->expr_type == EXPR_VARIABLE
7420 : 798 : && e->symtree->n.sym->attr.optional,
7421 : 2219 : CLASS_DATA (fsym)->attr.class_pointer
7422 : 2219 : || CLASS_DATA (fsym)->attr.allocatable);
7423 : :
7424 : 2219 : parmse.expr = class_se.expr;
7425 : 4438 : stmtblock_t *class_pre_block = defer_to_dealloc_blk
7426 : 2219 : ? &dealloc_blk
7427 : : : &parmse.pre;
7428 : 2219 : gfc_add_block_to_block (class_pre_block, &class_se.pre);
7429 : 2219 : gfc_add_block_to_block (&parmse.post, &class_se.post);
7430 : 2219 : }
7431 : : else
7432 : : {
7433 : : /* If the argument is a function call that may not create
7434 : : a temporary for the result, we have to check that we
7435 : : can do it, i.e. that there is no alias between this
7436 : : argument and another one. */
7437 : 55222 : if (gfc_get_noncopying_intrinsic_argument (e) != NULL)
7438 : : {
7439 : 377 : gfc_expr *iarg;
7440 : 377 : sym_intent intent;
7441 : :
7442 : 377 : if (fsym != NULL)
7443 : 368 : intent = fsym->attr.intent;
7444 : : else
7445 : : intent = INTENT_UNKNOWN;
7446 : :
7447 : 377 : if (gfc_check_fncall_dependency (e, intent, sym, args,
7448 : : NOT_ELEMENTAL))
7449 : 21 : parmse.force_tmp = 1;
7450 : :
7451 : 377 : iarg = e->value.function.actual->expr;
7452 : :
7453 : : /* Temporary needed if aliasing due to host association. */
7454 : 377 : if (sym->attr.contained
7455 : 114 : && !sym->attr.pure
7456 : 114 : && !sym->attr.implicit_pure
7457 : 36 : && !sym->attr.use_assoc
7458 : 36 : && iarg->expr_type == EXPR_VARIABLE
7459 : 36 : && sym->ns == iarg->symtree->n.sym->ns)
7460 : 36 : parmse.force_tmp = 1;
7461 : :
7462 : : /* Ditto within module. */
7463 : 377 : if (sym->attr.use_assoc
7464 : 377 : && !sym->attr.pure
7465 : 6 : && !sym->attr.implicit_pure
7466 : 0 : && iarg->expr_type == EXPR_VARIABLE
7467 : 0 : && sym->module == iarg->symtree->n.sym->module)
7468 : 0 : parmse.force_tmp = 1;
7469 : : }
7470 : :
7471 : : /* Special case for assumed-rank arrays: when passing an
7472 : : argument to a nonallocatable/nonpointer dummy, the bounds have
7473 : : to be reset as otherwise a last-dim ubound of -1 is
7474 : : indistinguishable from an assumed-size array in the callee. */
7475 : 55222 : if (!sym->attr.is_bind_c && e && fsym && fsym->as
7476 : 32095 : && fsym->as->type == AS_ASSUMED_RANK
7477 : 10146 : && e->rank != -1
7478 : 9857 : && e->expr_type == EXPR_VARIABLE
7479 : 9416 : && ((fsym->ts.type == BT_CLASS
7480 : 0 : && !CLASS_DATA (fsym)->attr.class_pointer
7481 : 0 : && !CLASS_DATA (fsym)->attr.allocatable)
7482 : 9416 : || (fsym->ts.type != BT_CLASS
7483 : 9416 : && !fsym->attr.pointer && !fsym->attr.allocatable)))
7484 : : {
7485 : : /* Change AR_FULL to a (:,:,:) ref to force bounds update. */
7486 : 8873 : gfc_ref *ref;
7487 : 9119 : for (ref = e->ref; ref->next; ref = ref->next)
7488 : : {
7489 : 294 : if (ref->next->type == REF_INQUIRY)
7490 : : break;
7491 : 8873 : };
7492 : 8873 : if (ref->u.ar.type == AR_FULL
7493 : 8183 : && ref->u.ar.as->type != AS_ASSUMED_SIZE)
7494 : 8063 : ref->u.ar.type = AR_SECTION;
7495 : : }
7496 : :
7497 : 55222 : if (sym->attr.is_bind_c && e && is_CFI_desc (fsym, NULL))
7498 : : /* Implement F2018, 18.3.6, list item (5), bullet point 2. */
7499 : 5850 : gfc_conv_gfc_desc_to_cfi_desc (&parmse, e, fsym);
7500 : :
7501 : 49372 : else if (e->expr_type == EXPR_VARIABLE
7502 : 37770 : && is_subref_array (e)
7503 : 49954 : && !(fsym && fsym->attr.pointer))
7504 : : /* The actual argument is a component reference to an
7505 : : array of derived types. In this case, the argument
7506 : : is converted to a temporary, which is passed and then
7507 : : written back after the procedure call. */
7508 : 377 : gfc_conv_subref_array_arg (&parmse, e, nodesc_arg,
7509 : 377 : fsym ? fsym->attr.intent : INTENT_INOUT,
7510 : 377 : fsym && fsym->attr.pointer);
7511 : :
7512 : 48995 : else if (e->ts.type == BT_CLASS && CLASS_DATA (e)->as
7513 : 345 : && CLASS_DATA (e)->as->type == AS_ASSUMED_SIZE
7514 : 18 : && nodesc_arg && fsym->ts.type == BT_DERIVED)
7515 : : /* An assumed size class actual argument being passed to
7516 : : a 'no descriptor' formal argument just requires the
7517 : : data pointer to be passed. For class dummy arguments
7518 : : this is stored in the symbol backend decl.. */
7519 : 6 : parmse.expr = e->symtree->n.sym->backend_decl;
7520 : :
7521 : 48989 : else if (gfc_is_class_array_ref (e, NULL)
7522 : 48989 : && fsym && fsym->ts.type == BT_DERIVED)
7523 : : /* The actual argument is a component reference to an
7524 : : array of derived types. In this case, the argument
7525 : : is converted to a temporary, which is passed and then
7526 : : written back after the procedure call.
7527 : : OOP-TODO: Insert code so that if the dynamic type is
7528 : : the same as the declared type, copy-in/copy-out does
7529 : : not occur. */
7530 : 108 : gfc_conv_subref_array_arg (&parmse, e, nodesc_arg,
7531 : 108 : fsym->attr.intent,
7532 : 108 : fsym->attr.pointer);
7533 : :
7534 : 48881 : else if (gfc_is_class_array_function (e)
7535 : 48881 : && fsym && fsym->ts.type == BT_DERIVED)
7536 : : /* See previous comment. For function actual argument,
7537 : : the write out is not needed so the intent is set as
7538 : : intent in. */
7539 : : {
7540 : 13 : e->must_finalize = 1;
7541 : 13 : gfc_conv_subref_array_arg (&parmse, e, nodesc_arg,
7542 : 13 : INTENT_IN, fsym->attr.pointer);
7543 : : }
7544 : 45264 : else if (fsym && fsym->attr.contiguous
7545 : 60 : && (fsym->attr.target
7546 : 1674 : ? gfc_is_not_contiguous (e)
7547 : 1614 : : !gfc_is_simply_contiguous (e, false, true))
7548 : 50857 : && gfc_expr_is_variable (e))
7549 : : {
7550 : 303 : gfc_conv_subref_array_arg (&parmse, e, nodesc_arg,
7551 : 303 : fsym->attr.intent,
7552 : 303 : fsym->attr.pointer);
7553 : : }
7554 : : else
7555 : : /* This is where we introduce a temporary to store the
7556 : : result of a non-lvalue array expression. */
7557 : 48565 : gfc_conv_array_parameter (&parmse, e, nodesc_arg, fsym,
7558 : : sym->name, NULL);
7559 : :
7560 : : /* If an ALLOCATABLE dummy argument has INTENT(OUT) and is
7561 : : allocated on entry, it must be deallocated.
7562 : : CFI descriptors are handled elsewhere. */
7563 : 51618 : if (fsym && fsym->attr.allocatable
7564 : 1682 : && fsym->attr.intent == INTENT_OUT
7565 : 54985 : && !is_CFI_desc (fsym, NULL))
7566 : : {
7567 : 145 : if (fsym->ts.type == BT_DERIVED
7568 : 45 : && fsym->ts.u.derived->attr.alloc_comp)
7569 : : {
7570 : : // deallocate the components first
7571 : 9 : tmp = gfc_deallocate_alloc_comp (fsym->ts.u.derived,
7572 : : parmse.expr, e->rank);
7573 : : /* But check whether dummy argument is optional. */
7574 : 9 : if (tmp != NULL_TREE
7575 : 9 : && fsym->attr.optional
7576 : 6 : && e->expr_type == EXPR_VARIABLE
7577 : 6 : && e->symtree->n.sym->attr.optional)
7578 : : {
7579 : 6 : tree present;
7580 : 6 : present = gfc_conv_expr_present (e->symtree->n.sym);
7581 : 6 : tmp = build3_v (COND_EXPR, present, tmp,
7582 : : build_empty_stmt (input_location));
7583 : : }
7584 : 9 : if (tmp != NULL_TREE)
7585 : 9 : gfc_add_expr_to_block (&dealloc_blk, tmp);
7586 : : }
7587 : :
7588 : 145 : tmp = parmse.expr;
7589 : : /* With bind(C), the actual argument is replaced by a bind-C
7590 : : descriptor; in this case, the data component arrives here,
7591 : : which shall not be dereferenced, but still freed and
7592 : : nullified. */
7593 : 145 : if (TREE_TYPE(tmp) != pvoid_type_node)
7594 : 145 : tmp = build_fold_indirect_ref_loc (input_location,
7595 : : parmse.expr);
7596 : 145 : tmp = gfc_deallocate_with_status (tmp, NULL_TREE, NULL_TREE,
7597 : : NULL_TREE, NULL_TREE, true,
7598 : : e,
7599 : : GFC_CAF_COARRAY_NOCOARRAY);
7600 : 145 : if (fsym->attr.optional
7601 : 48 : && e->expr_type == EXPR_VARIABLE
7602 : 48 : && e->symtree->n.sym->attr.optional)
7603 : 48 : tmp = fold_build3_loc (input_location, COND_EXPR,
7604 : : void_type_node,
7605 : 24 : gfc_conv_expr_present (e->symtree->n.sym),
7606 : : tmp, build_empty_stmt (input_location));
7607 : 145 : gfc_add_expr_to_block (&dealloc_blk, tmp);
7608 : : }
7609 : : }
7610 : : }
7611 : : /* Special case for an assumed-rank dummy argument. */
7612 : 259400 : if (!sym->attr.is_bind_c && e && fsym && e->rank > 0
7613 : 52988 : && (fsym->ts.type == BT_CLASS
7614 : 52988 : ? (CLASS_DATA (fsym)->as
7615 : 4164 : && CLASS_DATA (fsym)->as->type == AS_ASSUMED_RANK)
7616 : 48824 : : (fsym->as && fsym->as->type == AS_ASSUMED_RANK)))
7617 : : {
7618 : 10996 : if (fsym->ts.type == BT_CLASS
7619 : 10996 : ? (CLASS_DATA (fsym)->attr.class_pointer
7620 : 1055 : || CLASS_DATA (fsym)->attr.allocatable)
7621 : 9941 : : (fsym->attr.pointer || fsym->attr.allocatable))
7622 : : {
7623 : : /* Unallocated allocatable arrays and unassociated pointer
7624 : : arrays need their dtype setting if they are argument
7625 : : associated with assumed rank dummies to set the rank. */
7626 : 891 : set_dtype_for_unallocated (&parmse, e);
7627 : : }
7628 : 10105 : else if (e->expr_type == EXPR_VARIABLE
7629 : 9626 : && e->symtree->n.sym->attr.dummy
7630 : 698 : && (e->ts.type == BT_CLASS
7631 : 891 : ? (e->ref && e->ref->next
7632 : 193 : && e->ref->next->type == REF_ARRAY
7633 : 193 : && e->ref->next->u.ar.type == AR_FULL
7634 : 386 : && e->ref->next->u.ar.as->type == AS_ASSUMED_SIZE)
7635 : 505 : : (e->ref && e->ref->type == REF_ARRAY
7636 : 505 : && e->ref->u.ar.type == AR_FULL
7637 : 733 : && e->ref->u.ar.as->type == AS_ASSUMED_SIZE)))
7638 : : {
7639 : : /* Assumed-size actual to assumed-rank dummy requires
7640 : : dim[rank-1].ubound = -1. */
7641 : 180 : tree minus_one;
7642 : 180 : tmp = build_fold_indirect_ref_loc (input_location, parmse.expr);
7643 : 180 : if (fsym->ts.type == BT_CLASS)
7644 : 60 : tmp = gfc_class_data_get (tmp);
7645 : 180 : minus_one = build_int_cst (gfc_array_index_type, -1);
7646 : 180 : gfc_conv_descriptor_ubound_set (&parmse.pre, tmp,
7647 : 180 : gfc_rank_cst[e->rank - 1],
7648 : : minus_one);
7649 : : }
7650 : : }
7651 : :
7652 : : /* The case with fsym->attr.optional is that of a user subroutine
7653 : : with an interface indicating an optional argument. When we call
7654 : : an intrinsic subroutine, however, fsym is NULL, but we might still
7655 : : have an optional argument, so we proceed to the substitution
7656 : : just in case. Arguments passed to bind(c) procedures via CFI
7657 : : descriptors are handled elsewhere. */
7658 : 246873 : if (e && (fsym == NULL || fsym->attr.optional)
7659 : 316527 : && !(sym->attr.is_bind_c && is_CFI_desc (fsym, NULL)))
7660 : : {
7661 : : /* If an optional argument is itself an optional dummy argument,
7662 : : check its presence and substitute a null if absent. This is
7663 : : only needed when passing an array to an elemental procedure
7664 : : as then array elements are accessed - or no NULL pointer is
7665 : : allowed and a "1" or "0" should be passed if not present.
7666 : : When passing a non-array-descriptor full array to a
7667 : : non-array-descriptor dummy, no check is needed. For
7668 : : array-descriptor actual to array-descriptor dummy, see
7669 : : PR 41911 for why a check has to be inserted.
7670 : : fsym == NULL is checked as intrinsics required the descriptor
7671 : : but do not always set fsym.
7672 : : Also, it is necessary to pass a NULL pointer to library routines
7673 : : which usually ignore optional arguments, so they can handle
7674 : : these themselves. */
7675 : 56033 : if (e->expr_type == EXPR_VARIABLE
7676 : 25511 : && e->symtree->n.sym->attr.optional
7677 : 2315 : && (((e->rank != 0 && elemental_proc)
7678 : 2142 : || e->representation.length || e->ts.type == BT_CHARACTER
7679 : 1916 : || (e->rank == 0 && e->symtree->n.sym->attr.value)
7680 : 1854 : || (e->rank != 0
7681 : 1076 : && (fsym == NULL
7682 : 1040 : || (fsym->as
7683 : 278 : && (fsym->as->type == AS_ASSUMED_SHAPE
7684 : 246 : || fsym->as->type == AS_ASSUMED_RANK
7685 : 128 : || fsym->as->type == AS_DEFERRED)))))
7686 : 1638 : || se->ignore_optional))
7687 : 705 : gfc_conv_missing_dummy (&parmse, e, fsym ? fsym->ts : e->ts,
7688 : 705 : e->representation.length);
7689 : : }
7690 : :
7691 : : /* Make the class container for the first argument available with class
7692 : : valued transformational functions. */
7693 : 259400 : if (argc == 0 && e && e->ts.type == BT_CLASS
7694 : 4786 : && isym && isym->transformational
7695 : 84 : && se->ss && se->ss->info)
7696 : : {
7697 : 84 : arg1_cntnr = parmse.expr;
7698 : 84 : if (POINTER_TYPE_P (TREE_TYPE (arg1_cntnr)))
7699 : 84 : arg1_cntnr = build_fold_indirect_ref_loc (input_location, arg1_cntnr);
7700 : 84 : arg1_cntnr = gfc_get_class_from_expr (arg1_cntnr);
7701 : 84 : se->ss->info->class_container = arg1_cntnr;
7702 : : }
7703 : :
7704 : 259400 : if (fsym && e)
7705 : : {
7706 : : /* Obtain the character length of an assumed character length
7707 : : length procedure from the typespec. */
7708 : 214821 : if (fsym->ts.type == BT_CHARACTER
7709 : 30810 : && parmse.string_length == NULL_TREE
7710 : 3508 : && e->ts.type == BT_PROCEDURE
7711 : 15 : && e->symtree->n.sym->ts.type == BT_CHARACTER
7712 : 15 : && e->symtree->n.sym->ts.u.cl->length != NULL
7713 : 15 : && e->symtree->n.sym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
7714 : : {
7715 : 8 : gfc_conv_const_charlen (e->symtree->n.sym->ts.u.cl);
7716 : 8 : parmse.string_length = e->symtree->n.sym->ts.u.cl->backend_decl;
7717 : : }
7718 : :
7719 : : /* Obtain the character length for a NULL() actual with a character
7720 : : MOLD argument. Otherwise substitute a suitable dummy length.
7721 : : Here we handle non-optional dummies of non-bind(c) procedures. */
7722 : 214821 : if (e->expr_type == EXPR_NULL
7723 : 745 : && fsym->ts.type == BT_CHARACTER
7724 : 296 : && !fsym->attr.optional
7725 : 215039 : && !(sym->attr.is_bind_c && is_CFI_desc (fsym, NULL)))
7726 : 216 : conv_null_actual (&parmse, e, fsym);
7727 : : }
7728 : :
7729 : : /* If any actual argument of the procedure is allocatable and passed
7730 : : to an allocatable dummy with INTENT(OUT), we conservatively
7731 : : evaluate actual argument expressions before deallocations are
7732 : : performed and the procedure is executed. May create temporaries.
7733 : : This ensures we conform to F2023:15.5.3, 15.5.4. */
7734 : 246873 : if (e && fsym && force_eval_args
7735 : 1078 : && fsym->attr.intent != INTENT_OUT
7736 : 259797 : && !gfc_is_constant_expr (e))
7737 : 256 : parmse.expr = gfc_evaluate_now (parmse.expr, &parmse.pre);
7738 : :
7739 : 259400 : if (fsym && need_interface_mapping && e)
7740 : 36961 : gfc_add_interface_mapping (&mapping, fsym, &parmse, e);
7741 : :
7742 : 259400 : gfc_add_block_to_block (&se->pre, &parmse.pre);
7743 : 259400 : gfc_add_block_to_block (&post, &parmse.post);
7744 : 259400 : gfc_add_block_to_block (&se->finalblock, &parmse.finalblock);
7745 : :
7746 : : /* Allocated allocatable components of derived types must be
7747 : : deallocated for non-variable scalars, array arguments to elemental
7748 : : procedures, and array arguments with descriptor to non-elemental
7749 : : procedures. As bounds information for descriptorless arrays is no
7750 : : longer available here, they are dealt with in trans-array.cc
7751 : : (gfc_conv_array_parameter). */
7752 : 246873 : if (e && (e->ts.type == BT_DERIVED || e->ts.type == BT_CLASS)
7753 : 26339 : && e->ts.u.derived->attr.alloc_comp
7754 : 7148 : && (e->rank == 0 || elemental_proc || !nodesc_arg)
7755 : 266430 : && !expr_may_alias_variables (e, elemental_proc))
7756 : : {
7757 : 308 : int parm_rank;
7758 : : /* It is known the e returns a structure type with at least one
7759 : : allocatable component. When e is a function, ensure that the
7760 : : function is called once only by using a temporary variable. */
7761 : 308 : if (!DECL_P (parmse.expr))
7762 : 266 : parmse.expr = gfc_evaluate_now_loc (input_location,
7763 : : parmse.expr, &se->pre);
7764 : :
7765 : 308 : if (fsym && fsym->attr.value)
7766 : 66 : tmp = parmse.expr;
7767 : : else
7768 : 242 : tmp = build_fold_indirect_ref_loc (input_location,
7769 : : parmse.expr);
7770 : :
7771 : 308 : parm_rank = e->rank;
7772 : 308 : switch (parm_kind)
7773 : : {
7774 : : case (ELEMENTAL):
7775 : : case (SCALAR):
7776 : 308 : parm_rank = 0;
7777 : : break;
7778 : :
7779 : 0 : case (SCALAR_POINTER):
7780 : 0 : tmp = build_fold_indirect_ref_loc (input_location,
7781 : : tmp);
7782 : 0 : break;
7783 : : }
7784 : :
7785 : 308 : if (e->ts.type == BT_DERIVED && fsym && fsym->ts.type == BT_CLASS)
7786 : : {
7787 : : /* The derived type is passed to gfc_deallocate_alloc_comp.
7788 : : Therefore, class actuals can be handled correctly but derived
7789 : : types passed to class formals need the _data component. */
7790 : 74 : tmp = gfc_class_data_get (tmp);
7791 : 74 : if (!CLASS_DATA (fsym)->attr.dimension)
7792 : : {
7793 : 48 : if (UNLIMITED_POLY (fsym))
7794 : : {
7795 : 12 : tree type = gfc_typenode_for_spec (&e->ts);
7796 : 12 : type = build_pointer_type (type);
7797 : 12 : tmp = fold_convert (type, tmp);
7798 : : }
7799 : 48 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
7800 : : }
7801 : : }
7802 : :
7803 : 308 : if (e->expr_type == EXPR_OP
7804 : 24 : && e->value.op.op == INTRINSIC_PARENTHESES
7805 : 24 : && e->value.op.op1->expr_type == EXPR_VARIABLE)
7806 : : {
7807 : 24 : tree local_tmp;
7808 : 24 : local_tmp = gfc_evaluate_now (tmp, &se->pre);
7809 : 24 : local_tmp = gfc_copy_alloc_comp (e->ts.u.derived, local_tmp, tmp,
7810 : : parm_rank, 0);
7811 : 24 : gfc_add_expr_to_block (&se->post, local_tmp);
7812 : : }
7813 : :
7814 : 308 : if (!finalized && !e->must_finalize)
7815 : : {
7816 : 307 : bool scalar_res_outside_loop;
7817 : 909 : scalar_res_outside_loop = e->expr_type == EXPR_FUNCTION
7818 : 150 : && parm_rank == 0
7819 : 445 : && parmse.loop;
7820 : :
7821 : : /* Scalars passed to an assumed rank argument are converted to
7822 : : a descriptor. Obtain the data field before deallocating any
7823 : : allocatable components. */
7824 : 295 : if (parm_rank == 0 && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)))
7825 : 19 : tmp = gfc_conv_descriptor_data_get (tmp);
7826 : :
7827 : 307 : if (scalar_res_outside_loop)
7828 : : {
7829 : : /* Go through the ss chain to find the argument and use
7830 : : the stored value. */
7831 : 30 : gfc_ss *tmp_ss = parmse.loop->ss;
7832 : 72 : for (; tmp_ss; tmp_ss = tmp_ss->next)
7833 : 60 : if (tmp_ss->info
7834 : 48 : && tmp_ss->info->expr == e
7835 : 18 : && tmp_ss->info->data.scalar.value != NULL_TREE)
7836 : : {
7837 : 18 : tmp = tmp_ss->info->data.scalar.value;
7838 : 18 : break;
7839 : : }
7840 : : }
7841 : :
7842 : 307 : STRIP_NOPS (tmp);
7843 : :
7844 : 307 : if (derived_array != NULL_TREE)
7845 : 13 : tmp = gfc_deallocate_alloc_comp (e->ts.u.derived,
7846 : : derived_array,
7847 : : parm_rank);
7848 : 294 : else if ((e->ts.type == BT_CLASS
7849 : 24 : && GFC_CLASS_TYPE_P (TREE_TYPE (tmp)))
7850 : 294 : || e->ts.type == BT_DERIVED)
7851 : 294 : tmp = gfc_deallocate_alloc_comp (e->ts.u.derived, tmp,
7852 : : parm_rank);
7853 : 0 : else if (e->ts.type == BT_CLASS)
7854 : 0 : tmp = gfc_deallocate_alloc_comp (CLASS_DATA (e)->ts.u.derived,
7855 : : tmp, parm_rank);
7856 : :
7857 : 307 : if (scalar_res_outside_loop)
7858 : 30 : gfc_add_expr_to_block (&parmse.loop->post, tmp);
7859 : : else
7860 : 277 : gfc_prepend_expr_to_block (&post, tmp);
7861 : : }
7862 : : }
7863 : :
7864 : : /* Add argument checking of passing an unallocated/NULL actual to
7865 : : a nonallocatable/nonpointer dummy. */
7866 : :
7867 : 259400 : if (gfc_option.rtcheck & GFC_RTCHECK_POINTER && e != NULL)
7868 : : {
7869 : 6529 : symbol_attribute attr;
7870 : 6529 : char *msg;
7871 : 6529 : tree cond;
7872 : 6529 : tree tmp;
7873 : 6529 : symbol_attribute fsym_attr;
7874 : :
7875 : 6529 : if (fsym)
7876 : : {
7877 : 6343 : if (fsym->ts.type == BT_CLASS)
7878 : : {
7879 : 303 : fsym_attr = CLASS_DATA (fsym)->attr;
7880 : 303 : fsym_attr.pointer = fsym_attr.class_pointer;
7881 : : }
7882 : : else
7883 : 6040 : fsym_attr = fsym->attr;
7884 : : }
7885 : :
7886 : 6529 : if (e->expr_type == EXPR_VARIABLE || e->expr_type == EXPR_FUNCTION)
7887 : 4075 : attr = gfc_expr_attr (e);
7888 : : else
7889 : 6061 : goto end_pointer_check;
7890 : :
7891 : : /* In Fortran 2008 it's allowed to pass a NULL pointer/nonallocated
7892 : : allocatable to an optional dummy, cf. 12.5.2.12. */
7893 : 4075 : if (fsym != NULL && fsym->attr.optional && !attr.proc_pointer
7894 : 1038 : && (gfc_option.allow_std & GFC_STD_F2008) != 0)
7895 : 1032 : goto end_pointer_check;
7896 : :
7897 : 3043 : if (attr.optional)
7898 : : {
7899 : : /* If the actual argument is an optional pointer/allocatable and
7900 : : the formal argument takes an nonpointer optional value,
7901 : : it is invalid to pass a non-present argument on, even
7902 : : though there is no technical reason for this in gfortran.
7903 : : See Fortran 2003, Section 12.4.1.6 item (7)+(8). */
7904 : 60 : tree present, null_ptr, type;
7905 : :
7906 : 60 : if (attr.allocatable
7907 : 0 : && (fsym == NULL || !fsym_attr.allocatable))
7908 : 0 : msg = xasprintf ("Allocatable actual argument '%s' is not "
7909 : : "allocated or not present",
7910 : 0 : e->symtree->n.sym->name);
7911 : 60 : else if (attr.pointer
7912 : 12 : && (fsym == NULL || !fsym_attr.pointer))
7913 : 12 : msg = xasprintf ("Pointer actual argument '%s' is not "
7914 : : "associated or not present",
7915 : 12 : e->symtree->n.sym->name);
7916 : 48 : else if (attr.proc_pointer && !e->value.function.actual
7917 : 0 : && (fsym == NULL || !fsym_attr.proc_pointer))
7918 : 0 : msg = xasprintf ("Proc-pointer actual argument '%s' is not "
7919 : : "associated or not present",
7920 : 0 : e->symtree->n.sym->name);
7921 : : else
7922 : 48 : goto end_pointer_check;
7923 : :
7924 : 12 : present = gfc_conv_expr_present (e->symtree->n.sym);
7925 : 12 : type = TREE_TYPE (present);
7926 : 12 : present = fold_build2_loc (input_location, EQ_EXPR,
7927 : : logical_type_node, present,
7928 : : fold_convert (type,
7929 : : null_pointer_node));
7930 : 12 : type = TREE_TYPE (parmse.expr);
7931 : 12 : null_ptr = fold_build2_loc (input_location, EQ_EXPR,
7932 : : logical_type_node, parmse.expr,
7933 : : fold_convert (type,
7934 : : null_pointer_node));
7935 : 12 : cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
7936 : : logical_type_node, present, null_ptr);
7937 : : }
7938 : : else
7939 : : {
7940 : 2983 : if (attr.allocatable
7941 : 266 : && (fsym == NULL || !fsym_attr.allocatable))
7942 : 200 : msg = xasprintf ("Allocatable actual argument '%s' is not "
7943 : 200 : "allocated", e->symtree->n.sym->name);
7944 : 2783 : else if (attr.pointer
7945 : 253 : && (fsym == NULL || !fsym_attr.pointer))
7946 : 184 : msg = xasprintf ("Pointer actual argument '%s' is not "
7947 : 184 : "associated", e->symtree->n.sym->name);
7948 : 2599 : else if (attr.proc_pointer && !e->value.function.actual
7949 : 72 : && (fsym == NULL || !fsym_attr.proc_pointer))
7950 : 72 : msg = xasprintf ("Proc-pointer actual argument '%s' is not "
7951 : 72 : "associated", e->symtree->n.sym->name);
7952 : : else
7953 : 2527 : goto end_pointer_check;
7954 : :
7955 : 456 : tmp = parmse.expr;
7956 : 456 : if (fsym && fsym->ts.type == BT_CLASS)
7957 : : {
7958 : 76 : if (POINTER_TYPE_P (TREE_TYPE (tmp)))
7959 : 70 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
7960 : 76 : tmp = gfc_class_data_get (tmp);
7961 : 76 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)))
7962 : 3 : tmp = gfc_conv_descriptor_data_get (tmp);
7963 : : }
7964 : :
7965 : : /* If the argument is passed by value, we need to strip the
7966 : : INDIRECT_REF. */
7967 : 456 : if (!POINTER_TYPE_P (TREE_TYPE (tmp)))
7968 : 12 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
7969 : :
7970 : 456 : cond = fold_build2_loc (input_location, EQ_EXPR,
7971 : : logical_type_node, tmp,
7972 : 456 : fold_convert (TREE_TYPE (tmp),
7973 : : null_pointer_node));
7974 : : }
7975 : :
7976 : 468 : gfc_trans_runtime_check (true, false, cond, &se->pre, &e->where,
7977 : : msg);
7978 : 468 : free (msg);
7979 : : }
7980 : 252871 : end_pointer_check:
7981 : :
7982 : : /* Deferred length dummies pass the character length by reference
7983 : : so that the value can be returned. */
7984 : 259400 : if (parmse.string_length && fsym && fsym->ts.deferred)
7985 : : {
7986 : 757 : if (INDIRECT_REF_P (parmse.string_length))
7987 : : {
7988 : : /* In chains of functions/procedure calls the string_length already
7989 : : is a pointer to the variable holding the length. Therefore
7990 : : remove the deref on call. */
7991 : 90 : tmp = parmse.string_length;
7992 : 90 : parmse.string_length = TREE_OPERAND (parmse.string_length, 0);
7993 : : }
7994 : : else
7995 : : {
7996 : 667 : tmp = parmse.string_length;
7997 : 667 : if (!VAR_P (tmp) && TREE_CODE (tmp) != COMPONENT_REF)
7998 : 61 : tmp = gfc_evaluate_now (parmse.string_length, &se->pre);
7999 : 667 : parmse.string_length = gfc_build_addr_expr (NULL_TREE, tmp);
8000 : : }
8001 : :
8002 : 757 : if (e && e->expr_type == EXPR_VARIABLE
8003 : 600 : && fsym->attr.allocatable
8004 : 336 : && e->ts.u.cl->backend_decl
8005 : 336 : && VAR_P (e->ts.u.cl->backend_decl))
8006 : : {
8007 : 252 : if (INDIRECT_REF_P (tmp))
8008 : 0 : tmp = TREE_OPERAND (tmp, 0);
8009 : 252 : gfc_add_modify (&se->post, e->ts.u.cl->backend_decl,
8010 : : fold_convert (gfc_charlen_type_node, tmp));
8011 : : }
8012 : : }
8013 : :
8014 : : /* Character strings are passed as two parameters, a length and a
8015 : : pointer - except for Bind(c) and c_ptrs which only passe the pointer.
8016 : : An unlimited polymorphic formal argument likewise does not
8017 : : need the length. */
8018 : 259400 : if (parmse.string_length != NULL_TREE
8019 : 36037 : && !sym->attr.is_bind_c
8020 : 35353 : && !(fsym && fsym->ts.type == BT_DERIVED && fsym->ts.u.derived
8021 : : && fsym->ts.u.derived->intmod_sym_id == ISOCBINDING_PTR
8022 : : && fsym->ts.u.derived->from_intmod == INTMOD_ISO_C_BINDING )
8023 : 29440 : && !(fsym && fsym->ts.type == BT_ASSUMED)
8024 : 29331 : && !(fsym && UNLIMITED_POLY (fsym)))
8025 : 35063 : vec_safe_push (stringargs, parmse.string_length);
8026 : :
8027 : : /* When calling __copy for character expressions to unlimited
8028 : : polymorphic entities, the dst argument needs a string length. */
8029 : 47114 : if (sym->name[0] == '_' && e && e->ts.type == BT_CHARACTER
8030 : 4854 : && startswith (sym->name, "__vtab_CHARACTER")
8031 : 0 : && arg->next && arg->next->expr
8032 : 0 : && (arg->next->expr->ts.type == BT_DERIVED
8033 : 0 : || arg->next->expr->ts.type == BT_CLASS)
8034 : 259400 : && arg->next->expr->ts.u.derived->attr.unlimited_polymorphic)
8035 : 0 : vec_safe_push (stringargs, parmse.string_length);
8036 : :
8037 : : /* For descriptorless coarrays and assumed-shape coarray dummies, we
8038 : : pass the token and the offset as additional arguments. */
8039 : 259400 : if (fsym && e == NULL && flag_coarray == GFC_FCOARRAY_LIB
8040 : 71 : && ((fsym->ts.type != BT_CLASS && fsym->attr.codimension
8041 : 68 : && !fsym->attr.allocatable)
8042 : 69 : || (fsym->ts.type == BT_CLASS
8043 : 3 : && CLASS_DATA (fsym)->attr.codimension
8044 : 3 : && !CLASS_DATA (fsym)->attr.allocatable)))
8045 : : {
8046 : : /* Token and offset. */
8047 : 5 : vec_safe_push (stringargs, null_pointer_node);
8048 : 5 : vec_safe_push (stringargs, build_int_cst (gfc_array_index_type, 0));
8049 : 5 : gcc_assert (fsym->attr.optional);
8050 : : }
8051 : 226285 : else if (fsym && flag_coarray == GFC_FCOARRAY_LIB
8052 : 334 : && ((fsym->ts.type != BT_CLASS && fsym->attr.codimension
8053 : 322 : && !fsym->attr.allocatable)
8054 : 266 : || (fsym->ts.type == BT_CLASS
8055 : 12 : && CLASS_DATA (fsym)->attr.codimension
8056 : 12 : && !CLASS_DATA (fsym)->attr.allocatable)))
8057 : : {
8058 : 76 : tree caf_decl, caf_type, caf_desc = NULL_TREE;
8059 : 76 : tree offset, tmp2;
8060 : :
8061 : 76 : caf_decl = gfc_get_tree_for_caf_expr (e);
8062 : 76 : caf_type = TREE_TYPE (caf_decl);
8063 : 76 : if (POINTER_TYPE_P (caf_type)
8064 : 76 : && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (caf_type)))
8065 : 2 : caf_desc = TREE_TYPE (caf_type);
8066 : 74 : else if (GFC_DESCRIPTOR_TYPE_P (caf_type))
8067 : : caf_desc = caf_type;
8068 : :
8069 : 32 : if (caf_desc
8070 : 32 : && (GFC_TYPE_ARRAY_AKIND (caf_desc) == GFC_ARRAY_ALLOCATABLE
8071 : 0 : || GFC_TYPE_ARRAY_AKIND (caf_desc) == GFC_ARRAY_POINTER))
8072 : : {
8073 : 64 : tmp = POINTER_TYPE_P (TREE_TYPE (caf_decl))
8074 : 34 : ? build_fold_indirect_ref (caf_decl)
8075 : : : caf_decl;
8076 : 32 : tmp = gfc_conv_descriptor_token (tmp);
8077 : : }
8078 : 44 : else if (DECL_LANG_SPECIFIC (caf_decl)
8079 : 44 : && GFC_DECL_TOKEN (caf_decl) != NULL_TREE)
8080 : 8 : tmp = GFC_DECL_TOKEN (caf_decl);
8081 : : else
8082 : : {
8083 : 36 : gcc_assert (GFC_ARRAY_TYPE_P (caf_type)
8084 : : && GFC_TYPE_ARRAY_CAF_TOKEN (caf_type) != NULL_TREE);
8085 : 36 : tmp = GFC_TYPE_ARRAY_CAF_TOKEN (caf_type);
8086 : : }
8087 : :
8088 : 76 : vec_safe_push (stringargs, tmp);
8089 : :
8090 : 76 : if (caf_desc
8091 : 76 : && GFC_TYPE_ARRAY_AKIND (caf_desc) == GFC_ARRAY_ALLOCATABLE)
8092 : 32 : offset = build_int_cst (gfc_array_index_type, 0);
8093 : 44 : else if (DECL_LANG_SPECIFIC (caf_decl)
8094 : 44 : && GFC_DECL_CAF_OFFSET (caf_decl) != NULL_TREE)
8095 : 8 : offset = GFC_DECL_CAF_OFFSET (caf_decl);
8096 : 36 : else if (GFC_TYPE_ARRAY_CAF_OFFSET (caf_type) != NULL_TREE)
8097 : 0 : offset = GFC_TYPE_ARRAY_CAF_OFFSET (caf_type);
8098 : : else
8099 : 36 : offset = build_int_cst (gfc_array_index_type, 0);
8100 : :
8101 : 76 : if (caf_desc)
8102 : : {
8103 : 64 : tmp = POINTER_TYPE_P (TREE_TYPE (caf_decl))
8104 : 34 : ? build_fold_indirect_ref (caf_decl)
8105 : : : caf_decl;
8106 : 32 : tmp = gfc_conv_descriptor_data_get (tmp);
8107 : : }
8108 : : else
8109 : : {
8110 : 44 : gcc_assert (POINTER_TYPE_P (caf_type));
8111 : 44 : tmp = caf_decl;
8112 : : }
8113 : :
8114 : 152 : tmp2 = fsym->ts.type == BT_CLASS
8115 : 76 : ? gfc_class_data_get (parmse.expr) : parmse.expr;
8116 : 76 : if ((fsym->ts.type != BT_CLASS
8117 : 68 : && (fsym->as->type == AS_ASSUMED_SHAPE
8118 : 39 : || fsym->as->type == AS_ASSUMED_RANK))
8119 : 47 : || (fsym->ts.type == BT_CLASS
8120 : 8 : && (CLASS_DATA (fsym)->as->type == AS_ASSUMED_SHAPE
8121 : 5 : || CLASS_DATA (fsym)->as->type == AS_ASSUMED_RANK)))
8122 : : {
8123 : 32 : if (fsym->ts.type == BT_CLASS)
8124 : 3 : gcc_assert (!POINTER_TYPE_P (TREE_TYPE (tmp2)));
8125 : : else
8126 : : {
8127 : 29 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (tmp2)));
8128 : 29 : tmp2 = build_fold_indirect_ref_loc (input_location, tmp2);
8129 : : }
8130 : 32 : gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp2)));
8131 : 32 : tmp2 = gfc_conv_descriptor_data_get (tmp2);
8132 : : }
8133 : 44 : else if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp2)))
8134 : 5 : tmp2 = gfc_conv_descriptor_data_get (tmp2);
8135 : : else
8136 : : {
8137 : 39 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (tmp2)));
8138 : : }
8139 : :
8140 : 76 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
8141 : : gfc_array_index_type,
8142 : : fold_convert (gfc_array_index_type, tmp2),
8143 : : fold_convert (gfc_array_index_type, tmp));
8144 : 76 : offset = fold_build2_loc (input_location, PLUS_EXPR,
8145 : : gfc_array_index_type, offset, tmp);
8146 : :
8147 : 76 : vec_safe_push (stringargs, offset);
8148 : : }
8149 : :
8150 : 259400 : vec_safe_push (arglist, parmse.expr);
8151 : : }
8152 : :
8153 : 124231 : gfc_add_block_to_block (&se->pre, &dealloc_blk);
8154 : 124231 : gfc_add_block_to_block (&se->pre, &clobbers);
8155 : 124231 : gfc_finish_interface_mapping (&mapping, &se->pre, &se->post);
8156 : :
8157 : 124231 : if (comp)
8158 : 1779 : ts = comp->ts;
8159 : 122452 : else if (sym->ts.type == BT_CLASS)
8160 : 830 : ts = CLASS_DATA (sym)->ts;
8161 : : else
8162 : 121622 : ts = sym->ts;
8163 : :
8164 : 124231 : if (ts.type == BT_CHARACTER && sym->attr.is_bind_c)
8165 : 186 : se->string_length = build_int_cst (gfc_charlen_type_node, 1);
8166 : 124045 : else if (ts.type == BT_CHARACTER)
8167 : : {
8168 : 4720 : if (ts.u.cl->length == NULL)
8169 : : {
8170 : : /* Assumed character length results are not allowed by C418 of the 2003
8171 : : standard and are trapped in resolve.cc; except in the case of SPREAD
8172 : : (and other intrinsics?) and dummy functions. In the case of SPREAD,
8173 : : we take the character length of the first argument for the result.
8174 : : For dummies, we have to look through the formal argument list for
8175 : : this function and use the character length found there.
8176 : : Likewise, we handle the case of deferred-length character dummy
8177 : : arguments to intrinsics that determine the characteristics of
8178 : : the result, which cannot be deferred-length. */
8179 : 1190 : if (expr->value.function.isym)
8180 : 680 : ts.deferred = false;
8181 : 1190 : if (ts.deferred)
8182 : 505 : cl.backend_decl = gfc_create_var (gfc_charlen_type_node, "slen");
8183 : 685 : else if (!sym->attr.dummy)
8184 : 680 : cl.backend_decl = (*stringargs)[0];
8185 : : else
8186 : : {
8187 : 5 : formal = gfc_sym_get_dummy_args (sym->ns->proc_name);
8188 : 18 : for (; formal; formal = formal->next)
8189 : 8 : if (strcmp (formal->sym->name, sym->name) == 0)
8190 : 5 : cl.backend_decl = formal->sym->ts.u.cl->backend_decl;
8191 : : }
8192 : 1190 : len = cl.backend_decl;
8193 : : }
8194 : : else
8195 : : {
8196 : 3530 : tree tmp;
8197 : :
8198 : : /* Calculate the length of the returned string. */
8199 : 3530 : gfc_init_se (&parmse, NULL);
8200 : 3530 : if (need_interface_mapping)
8201 : 2883 : gfc_apply_interface_mapping (&mapping, &parmse, ts.u.cl->length);
8202 : : else
8203 : 647 : gfc_conv_expr (&parmse, ts.u.cl->length);
8204 : 3530 : gfc_add_block_to_block (&se->pre, &parmse.pre);
8205 : 3530 : gfc_add_block_to_block (&se->post, &parmse.post);
8206 : 3530 : tmp = parmse.expr;
8207 : : /* TODO: It would be better to have the charlens as
8208 : : gfc_charlen_type_node already when the interface is
8209 : : created instead of converting it here (see PR 84615). */
8210 : 3530 : tmp = fold_build2_loc (input_location, MAX_EXPR,
8211 : : gfc_charlen_type_node,
8212 : : fold_convert (gfc_charlen_type_node, tmp),
8213 : : build_zero_cst (gfc_charlen_type_node));
8214 : 3530 : cl.backend_decl = tmp;
8215 : : }
8216 : :
8217 : : /* Set up a charlen structure for it. */
8218 : 4720 : cl.next = NULL;
8219 : 4720 : cl.length = NULL;
8220 : 4720 : ts.u.cl = &cl;
8221 : :
8222 : 4720 : len = cl.backend_decl;
8223 : : }
8224 : :
8225 : 1779 : byref = (comp && (comp->attr.dimension
8226 : 1716 : || (comp->ts.type == BT_CHARACTER && !sym->attr.is_bind_c)))
8227 : 124231 : || (!comp && gfc_return_by_reference (sym));
8228 : 17438 : if (byref)
8229 : : {
8230 : 17438 : if (se->direct_byref)
8231 : : {
8232 : : /* Sometimes, too much indirection can be applied; e.g. for
8233 : : function_result = array_valued_recursive_function. */
8234 : 7091 : if (TREE_TYPE (TREE_TYPE (se->expr))
8235 : 7091 : && TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr)))
8236 : 7109 : && GFC_DESCRIPTOR_TYPE_P
8237 : : (TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr)))))
8238 : 18 : se->expr = build_fold_indirect_ref_loc (input_location,
8239 : : se->expr);
8240 : :
8241 : : /* If the lhs of an assignment x = f(..) is allocatable and
8242 : : f2003 is allowed, we must do the automatic reallocation.
8243 : : TODO - deal with intrinsics, without using a temporary. */
8244 : 7091 : if (flag_realloc_lhs
8245 : 7016 : && se->ss && se->ss->loop_chain
8246 : 152 : && se->ss->loop_chain->is_alloc_lhs
8247 : 152 : && !expr->value.function.isym
8248 : 152 : && sym->result->as != NULL)
8249 : : {
8250 : : /* Evaluate the bounds of the result, if known. */
8251 : 152 : gfc_set_loop_bounds_from_array_spec (&mapping, se,
8252 : : sym->result->as);
8253 : :
8254 : : /* Perform the automatic reallocation. */
8255 : 152 : tmp = gfc_alloc_allocatable_for_assignment (se->loop,
8256 : : expr, NULL);
8257 : 152 : gfc_add_expr_to_block (&se->pre, tmp);
8258 : :
8259 : : /* Pass the temporary as the first argument. */
8260 : 152 : result = info->descriptor;
8261 : : }
8262 : : else
8263 : 6939 : result = build_fold_indirect_ref_loc (input_location,
8264 : : se->expr);
8265 : 7091 : vec_safe_push (retargs, se->expr);
8266 : : }
8267 : 10347 : else if (comp && comp->attr.dimension)
8268 : : {
8269 : 60 : gcc_assert (se->loop && info);
8270 : :
8271 : : /* Set the type of the array. vtable charlens are not always reliable.
8272 : : Use the interface, if possible. */
8273 : 60 : if (comp->ts.type == BT_CHARACTER
8274 : 1 : && expr->symtree->n.sym->ts.type == BT_CLASS
8275 : 1 : && comp->ts.interface && comp->ts.interface->result)
8276 : 1 : tmp = gfc_typenode_for_spec (&comp->ts.interface->result->ts);
8277 : : else
8278 : 59 : tmp = gfc_typenode_for_spec (&comp->ts);
8279 : 60 : gcc_assert (se->ss->dimen == se->loop->dimen);
8280 : :
8281 : : /* Evaluate the bounds of the result, if known. */
8282 : 60 : gfc_set_loop_bounds_from_array_spec (&mapping, se, comp->as);
8283 : :
8284 : : /* If the lhs of an assignment x = f(..) is allocatable and
8285 : : f2003 is allowed, we must not generate the function call
8286 : : here but should just send back the results of the mapping.
8287 : : This is signalled by the function ss being flagged. */
8288 : 60 : if (flag_realloc_lhs && se->ss && se->ss->is_alloc_lhs)
8289 : : {
8290 : 0 : gfc_free_interface_mapping (&mapping);
8291 : 0 : return has_alternate_specifier;
8292 : : }
8293 : :
8294 : : /* Create a temporary to store the result. In case the function
8295 : : returns a pointer, the temporary will be a shallow copy and
8296 : : mustn't be deallocated. */
8297 : 60 : callee_alloc = comp->attr.allocatable || comp->attr.pointer;
8298 : 60 : gfc_trans_create_temp_array (&se->pre, &se->post, se->ss,
8299 : : tmp, NULL_TREE, false,
8300 : : !comp->attr.pointer, callee_alloc,
8301 : 60 : &se->ss->info->expr->where);
8302 : :
8303 : : /* Pass the temporary as the first argument. */
8304 : 60 : result = info->descriptor;
8305 : 60 : tmp = gfc_build_addr_expr (NULL_TREE, result);
8306 : 60 : vec_safe_push (retargs, tmp);
8307 : : }
8308 : 10220 : else if (!comp && sym->result->attr.dimension)
8309 : : {
8310 : 7335 : gcc_assert (se->loop && info);
8311 : :
8312 : : /* Set the type of the array. */
8313 : 7335 : tmp = gfc_typenode_for_spec (&ts);
8314 : 7335 : tmp = arg1_cntnr ? TREE_TYPE (arg1_cntnr) : tmp;
8315 : 7335 : gcc_assert (se->ss->dimen == se->loop->dimen);
8316 : :
8317 : : /* Evaluate the bounds of the result, if known. */
8318 : 7335 : gfc_set_loop_bounds_from_array_spec (&mapping, se, sym->result->as);
8319 : :
8320 : : /* If the lhs of an assignment x = f(..) is allocatable and
8321 : : f2003 is allowed, we must not generate the function call
8322 : : here but should just send back the results of the mapping.
8323 : : This is signalled by the function ss being flagged. */
8324 : 7335 : if (flag_realloc_lhs && se->ss && se->ss->is_alloc_lhs)
8325 : : {
8326 : 0 : gfc_free_interface_mapping (&mapping);
8327 : 0 : return has_alternate_specifier;
8328 : : }
8329 : :
8330 : : /* Create a temporary to store the result. In case the function
8331 : : returns a pointer, the temporary will be a shallow copy and
8332 : : mustn't be deallocated. */
8333 : 7335 : callee_alloc = sym->attr.allocatable || sym->attr.pointer;
8334 : 7335 : gfc_trans_create_temp_array (&se->pre, &se->post, se->ss,
8335 : : tmp, NULL_TREE, false,
8336 : : !sym->attr.pointer, callee_alloc,
8337 : 7335 : &se->ss->info->expr->where);
8338 : :
8339 : : /* Pass the temporary as the first argument. */
8340 : 7335 : result = info->descriptor;
8341 : 7335 : tmp = gfc_build_addr_expr (NULL_TREE, result);
8342 : 7335 : vec_safe_push (retargs, tmp);
8343 : : }
8344 : 2952 : else if (ts.type == BT_CHARACTER)
8345 : : {
8346 : : /* Pass the string length. */
8347 : 2886 : type = gfc_get_character_type (ts.kind, ts.u.cl);
8348 : 2886 : type = build_pointer_type (type);
8349 : :
8350 : : /* Emit a DECL_EXPR for the VLA type. */
8351 : 2886 : tmp = TREE_TYPE (type);
8352 : 2886 : if (TYPE_SIZE (tmp)
8353 : 2886 : && TREE_CODE (TYPE_SIZE (tmp)) != INTEGER_CST)
8354 : : {
8355 : 1833 : tmp = build_decl (input_location, TYPE_DECL, NULL_TREE, tmp);
8356 : 1833 : DECL_ARTIFICIAL (tmp) = 1;
8357 : 1833 : DECL_IGNORED_P (tmp) = 1;
8358 : 1833 : tmp = fold_build1_loc (input_location, DECL_EXPR,
8359 : 1833 : TREE_TYPE (tmp), tmp);
8360 : 1833 : gfc_add_expr_to_block (&se->pre, tmp);
8361 : : }
8362 : :
8363 : : /* Return an address to a char[0:len-1]* temporary for
8364 : : character pointers. */
8365 : 2886 : if ((!comp && (sym->attr.pointer || sym->attr.allocatable))
8366 : 67 : || (comp && (comp->attr.pointer || comp->attr.allocatable)))
8367 : : {
8368 : 548 : var = gfc_create_var (type, "pstr");
8369 : :
8370 : 548 : if ((!comp && sym->attr.allocatable)
8371 : 21 : || (comp && comp->attr.allocatable))
8372 : : {
8373 : 263 : gfc_add_modify (&se->pre, var,
8374 : 263 : fold_convert (TREE_TYPE (var),
8375 : : null_pointer_node));
8376 : 263 : tmp = gfc_call_free (var);
8377 : 263 : gfc_add_expr_to_block (&se->post, tmp);
8378 : : }
8379 : :
8380 : : /* Provide an address expression for the function arguments. */
8381 : 548 : var = gfc_build_addr_expr (NULL_TREE, var);
8382 : : }
8383 : : else
8384 : 2338 : var = gfc_conv_string_tmp (se, type, len);
8385 : :
8386 : 2886 : vec_safe_push (retargs, var);
8387 : : }
8388 : : else
8389 : : {
8390 : 66 : gcc_assert (flag_f2c && ts.type == BT_COMPLEX);
8391 : :
8392 : 66 : type = gfc_get_complex_type (ts.kind);
8393 : 66 : var = gfc_build_addr_expr (NULL_TREE, gfc_create_var (type, "cmplx"));
8394 : 66 : vec_safe_push (retargs, var);
8395 : : }
8396 : :
8397 : : /* Add the string length to the argument list. */
8398 : 17438 : if (ts.type == BT_CHARACTER && ts.deferred)
8399 : : {
8400 : 505 : tmp = len;
8401 : 505 : if (!VAR_P (tmp))
8402 : 0 : tmp = gfc_evaluate_now (len, &se->pre);
8403 : 505 : TREE_STATIC (tmp) = 1;
8404 : 505 : gfc_add_modify (&se->pre, tmp,
8405 : 505 : build_int_cst (TREE_TYPE (tmp), 0));
8406 : 505 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
8407 : 505 : vec_safe_push (retargs, tmp);
8408 : : }
8409 : 16933 : else if (ts.type == BT_CHARACTER)
8410 : 4215 : vec_safe_push (retargs, len);
8411 : : }
8412 : 124231 : gfc_free_interface_mapping (&mapping);
8413 : :
8414 : : /* We need to glom RETARGS + ARGLIST + STRINGARGS + APPEND_ARGS. */
8415 : 231374 : arglen = (vec_safe_length (arglist) + vec_safe_length (optionalargs)
8416 : 148755 : + vec_safe_length (stringargs) + vec_safe_length (append_args));
8417 : 124231 : vec_safe_reserve (retargs, arglen);
8418 : :
8419 : : /* Add the return arguments. */
8420 : 124231 : vec_safe_splice (retargs, arglist);
8421 : :
8422 : : /* Add the hidden present status for optional+value to the arguments. */
8423 : 124231 : vec_safe_splice (retargs, optionalargs);
8424 : :
8425 : : /* Add the hidden string length parameters to the arguments. */
8426 : 124231 : vec_safe_splice (retargs, stringargs);
8427 : :
8428 : : /* We may want to append extra arguments here. This is used e.g. for
8429 : : calls to libgfortran_matmul_??, which need extra information. */
8430 : 124231 : vec_safe_splice (retargs, append_args);
8431 : :
8432 : 124231 : arglist = retargs;
8433 : :
8434 : : /* Generate the actual call. */
8435 : 124231 : is_builtin = false;
8436 : 124231 : if (base_object == NULL_TREE)
8437 : 124151 : conv_function_val (se, &is_builtin, sym, expr, args);
8438 : : else
8439 : 80 : conv_base_obj_fcn_val (se, base_object, expr);
8440 : :
8441 : : /* If there are alternate return labels, function type should be
8442 : : integer. Can't modify the type in place though, since it can be shared
8443 : : with other functions. For dummy arguments, the typing is done to
8444 : : this result, even if it has to be repeated for each call. */
8445 : 124231 : if (has_alternate_specifier
8446 : 124231 : && TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr))) != integer_type_node)
8447 : : {
8448 : 7 : if (!sym->attr.dummy)
8449 : : {
8450 : 0 : TREE_TYPE (sym->backend_decl)
8451 : 0 : = build_function_type (integer_type_node,
8452 : 0 : TYPE_ARG_TYPES (TREE_TYPE (sym->backend_decl)));
8453 : 0 : se->expr = gfc_build_addr_expr (NULL_TREE, sym->backend_decl);
8454 : : }
8455 : : else
8456 : 7 : TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr))) = integer_type_node;
8457 : : }
8458 : :
8459 : 124231 : fntype = TREE_TYPE (TREE_TYPE (se->expr));
8460 : 124231 : se->expr = build_call_vec (TREE_TYPE (fntype), se->expr, arglist);
8461 : :
8462 : 124231 : if (is_builtin)
8463 : 413 : se->expr = update_builtin_function (se->expr, sym);
8464 : :
8465 : : /* Allocatable scalar function results must be freed and nullified
8466 : : after use. This necessitates the creation of a temporary to
8467 : : hold the result to prevent duplicate calls. */
8468 : 124231 : symbol_attribute attr = comp ? comp->attr : sym->attr;
8469 : 124231 : bool allocatable = attr.allocatable && !attr.dimension;
8470 : 124231 : gfc_symbol *der = comp ?
8471 : 1779 : comp->ts.type == BT_DERIVED ? comp->ts.u.derived : NULL
8472 : : :
8473 : 122452 : sym->ts.type == BT_DERIVED ? sym->ts.u.derived : NULL;
8474 : 2800 : bool finalizable = der != NULL && der->ns->proc_name
8475 : 5597 : && gfc_is_finalizable (der, NULL);
8476 : :
8477 : 124231 : if (!byref && finalizable)
8478 : 149 : gfc_finalize_tree_expr (se, der, attr, expr->rank);
8479 : :
8480 : 124231 : if (!byref && sym->ts.type != BT_CHARACTER
8481 : 106607 : && allocatable && !finalizable)
8482 : : {
8483 : 128 : tmp = gfc_create_var (TREE_TYPE (se->expr), NULL);
8484 : 128 : gfc_add_modify (&se->pre, tmp, se->expr);
8485 : 128 : se->expr = tmp;
8486 : 128 : tmp = gfc_call_free (tmp);
8487 : 128 : gfc_add_expr_to_block (&post, tmp);
8488 : 128 : gfc_add_modify (&post, se->expr, build_int_cst (TREE_TYPE (se->expr), 0));
8489 : : }
8490 : :
8491 : : /* If we have a pointer function, but we don't want a pointer, e.g.
8492 : : something like
8493 : : x = f()
8494 : : where f is pointer valued, we have to dereference the result. */
8495 : 124231 : if (!se->want_pointer && !byref
8496 : 106208 : && ((!comp && (sym->attr.pointer || sym->attr.allocatable))
8497 : 1605 : || (comp && (comp->attr.pointer || comp->attr.allocatable))))
8498 : 364 : se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
8499 : :
8500 : : /* f2c calling conventions require a scalar default real function to
8501 : : return a double precision result. Convert this back to default
8502 : : real. We only care about the cases that can happen in Fortran 77.
8503 : : */
8504 : 124231 : if (flag_f2c && sym->ts.type == BT_REAL
8505 : 102 : && sym->ts.kind == gfc_default_real_kind
8506 : : && !sym->attr.pointer
8507 : 78 : && !sym->attr.allocatable
8508 : 42 : && !sym->attr.always_explicit)
8509 : 42 : se->expr = fold_convert (gfc_get_real_type (sym->ts.kind), se->expr);
8510 : :
8511 : : /* A pure function may still have side-effects - it may modify its
8512 : : parameters. */
8513 : 124231 : TREE_SIDE_EFFECTS (se->expr) = 1;
8514 : : #if 0
8515 : : if (!sym->attr.pure)
8516 : : TREE_SIDE_EFFECTS (se->expr) = 1;
8517 : : #endif
8518 : :
8519 : 124231 : if (byref)
8520 : : {
8521 : : /* Add the function call to the pre chain. There is no expression. */
8522 : 17438 : gfc_add_expr_to_block (&se->pre, se->expr);
8523 : 17438 : se->expr = NULL_TREE;
8524 : :
8525 : 17438 : if (!se->direct_byref)
8526 : : {
8527 : 10347 : if ((sym->attr.dimension && !comp) || (comp && comp->attr.dimension))
8528 : : {
8529 : 7395 : if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
8530 : : {
8531 : : /* Check the data pointer hasn't been modified. This would
8532 : : happen in a function returning a pointer. */
8533 : 251 : tmp = gfc_conv_descriptor_data_get (info->descriptor);
8534 : 251 : tmp = fold_build2_loc (input_location, NE_EXPR,
8535 : : logical_type_node,
8536 : : tmp, info->data);
8537 : 251 : gfc_trans_runtime_check (true, false, tmp, &se->pre, NULL,
8538 : : gfc_msg_fault);
8539 : : }
8540 : 7395 : se->expr = info->descriptor;
8541 : : /* Bundle in the string length. */
8542 : 7395 : se->string_length = len;
8543 : :
8544 : 7395 : if (finalizable)
8545 : 6 : gfc_finalize_tree_expr (se, der, attr, expr->rank);
8546 : : }
8547 : 2952 : else if (ts.type == BT_CHARACTER)
8548 : : {
8549 : : /* Dereference for character pointer results. */
8550 : 2886 : if ((!comp && (sym->attr.pointer || sym->attr.allocatable))
8551 : 67 : || (comp && (comp->attr.pointer || comp->attr.allocatable)))
8552 : 548 : se->expr = build_fold_indirect_ref_loc (input_location, var);
8553 : : else
8554 : 2338 : se->expr = var;
8555 : :
8556 : 2886 : se->string_length = len;
8557 : : }
8558 : : else
8559 : : {
8560 : 66 : gcc_assert (ts.type == BT_COMPLEX && flag_f2c);
8561 : 66 : se->expr = build_fold_indirect_ref_loc (input_location, var);
8562 : : }
8563 : : }
8564 : : }
8565 : :
8566 : : /* Associate the rhs class object's meta-data with the result, when the
8567 : : result is a temporary. */
8568 : 107148 : if (args && args->expr && args->expr->ts.type == BT_CLASS
8569 : 4786 : && sym->ts.type == BT_CLASS && result != NULL_TREE && DECL_P (result)
8570 : 124257 : && !GFC_CLASS_TYPE_P (TREE_TYPE (result)))
8571 : : {
8572 : 26 : gfc_se parmse;
8573 : 26 : gfc_expr *class_expr = gfc_find_and_cut_at_last_class_ref (args->expr);
8574 : :
8575 : 26 : gfc_init_se (&parmse, NULL);
8576 : 26 : parmse.data_not_needed = 1;
8577 : 26 : gfc_conv_expr (&parmse, class_expr);
8578 : 26 : if (!DECL_LANG_SPECIFIC (result))
8579 : 26 : gfc_allocate_lang_decl (result);
8580 : 26 : GFC_DECL_SAVED_DESCRIPTOR (result) = parmse.expr;
8581 : 26 : gfc_free_expr (class_expr);
8582 : : /* -fcheck= can add diagnostic code, which has to be placed before
8583 : : the call. */
8584 : 26 : if (parmse.pre.head != NULL)
8585 : 12 : gfc_add_expr_to_block (&se->pre, parmse.pre.head);
8586 : 26 : gcc_assert (parmse.post.head == NULL_TREE);
8587 : : }
8588 : :
8589 : : /* Follow the function call with the argument post block. */
8590 : 124231 : if (byref)
8591 : : {
8592 : 17438 : gfc_add_block_to_block (&se->pre, &post);
8593 : :
8594 : : /* Transformational functions of derived types with allocatable
8595 : : components must have the result allocatable components copied when the
8596 : : argument is actually given. */
8597 : 17438 : arg = expr->value.function.actual;
8598 : 17438 : if (result && arg && expr->rank
8599 : 13704 : && isym && isym->transformational
8600 : 12108 : && arg->expr
8601 : 12066 : && arg->expr->ts.type == BT_DERIVED
8602 : 208 : && arg->expr->ts.u.derived->attr.alloc_comp)
8603 : : {
8604 : 18 : tree tmp2;
8605 : : /* Copy the allocatable components. We have to use a
8606 : : temporary here to prevent source allocatable components
8607 : : from being corrupted. */
8608 : 18 : tmp2 = gfc_evaluate_now (result, &se->pre);
8609 : 18 : tmp = gfc_copy_alloc_comp (arg->expr->ts.u.derived,
8610 : : result, tmp2, expr->rank, 0);
8611 : 18 : gfc_add_expr_to_block (&se->pre, tmp);
8612 : 18 : tmp = gfc_copy_allocatable_data (result, tmp2, TREE_TYPE(tmp2),
8613 : : expr->rank);
8614 : 18 : gfc_add_expr_to_block (&se->pre, tmp);
8615 : :
8616 : : /* Finally free the temporary's data field. */
8617 : 18 : tmp = gfc_conv_descriptor_data_get (tmp2);
8618 : 18 : tmp = gfc_deallocate_with_status (tmp, NULL_TREE, NULL_TREE,
8619 : : NULL_TREE, NULL_TREE, true,
8620 : : NULL, GFC_CAF_COARRAY_NOCOARRAY);
8621 : 18 : gfc_add_expr_to_block (&se->pre, tmp);
8622 : : }
8623 : : }
8624 : : else
8625 : : {
8626 : : /* For a function with a class array result, save the result as
8627 : : a temporary, set the info fields needed by the scalarizer and
8628 : : call the finalization function of the temporary. Note that the
8629 : : nullification of allocatable components needed by the result
8630 : : is done in gfc_trans_assignment_1. */
8631 : 33037 : if (expr && (gfc_is_class_array_function (expr)
8632 : 32728 : || gfc_is_alloc_class_scalar_function (expr))
8633 : 828 : && se->expr && GFC_CLASS_TYPE_P (TREE_TYPE (se->expr))
8634 : 107609 : && expr->must_finalize)
8635 : : {
8636 : 315 : int n;
8637 : 315 : if (se->ss && se->ss->loop)
8638 : : {
8639 : 177 : gfc_add_block_to_block (&se->ss->loop->pre, &se->pre);
8640 : 177 : se->expr = gfc_evaluate_now (se->expr, &se->ss->loop->pre);
8641 : 177 : tmp = gfc_class_data_get (se->expr);
8642 : 177 : info->descriptor = tmp;
8643 : 177 : info->data = gfc_conv_descriptor_data_get (tmp);
8644 : 177 : info->offset = gfc_conv_descriptor_offset_get (tmp);
8645 : 366 : for (n = 0; n < se->ss->loop->dimen; n++)
8646 : : {
8647 : 189 : tree dim = gfc_rank_cst[n];
8648 : 189 : se->ss->loop->to[n] = gfc_conv_descriptor_ubound_get (tmp, dim);
8649 : 189 : se->ss->loop->from[n] = gfc_conv_descriptor_lbound_get (tmp, dim);
8650 : : }
8651 : : }
8652 : : else
8653 : : {
8654 : : /* TODO Eliminate the doubling of temporaries. This
8655 : : one is necessary to ensure no memory leakage. */
8656 : 138 : se->expr = gfc_evaluate_now (se->expr, &se->pre);
8657 : : }
8658 : :
8659 : : /* Finalize the result, if necessary. */
8660 : 630 : attr = expr->value.function.esym
8661 : 315 : ? CLASS_DATA (expr->value.function.esym->result)->attr
8662 : 14 : : CLASS_DATA (expr)->attr;
8663 : 315 : if (!((gfc_is_class_array_function (expr)
8664 : 108 : || gfc_is_alloc_class_scalar_function (expr))
8665 : 315 : && attr.pointer))
8666 : 270 : gfc_finalize_tree_expr (se, NULL, attr, expr->rank);
8667 : : }
8668 : 106793 : gfc_add_block_to_block (&se->post, &post);
8669 : : }
8670 : :
8671 : : return has_alternate_specifier;
8672 : : }
8673 : :
8674 : :
8675 : : /* Fill a character string with spaces. */
8676 : :
8677 : : static tree
8678 : 28425 : fill_with_spaces (tree start, tree type, tree size)
8679 : : {
8680 : 28425 : stmtblock_t block, loop;
8681 : 28425 : tree i, el, exit_label, cond, tmp;
8682 : :
8683 : : /* For a simple char type, we can call memset(). */
8684 : 28425 : if (compare_tree_int (TYPE_SIZE_UNIT (type), 1) == 0)
8685 : 47464 : return build_call_expr_loc (input_location,
8686 : : builtin_decl_explicit (BUILT_IN_MEMSET),
8687 : : 3, start,
8688 : 23732 : build_int_cst (gfc_get_int_type (gfc_c_int_kind),
8689 : 23732 : lang_hooks.to_target_charset (' ')),
8690 : : fold_convert (size_type_node, size));
8691 : :
8692 : : /* Otherwise, we use a loop:
8693 : : for (el = start, i = size; i > 0; el--, i+= TYPE_SIZE_UNIT (type))
8694 : : *el = (type) ' ';
8695 : : */
8696 : :
8697 : : /* Initialize variables. */
8698 : 4693 : gfc_init_block (&block);
8699 : 4693 : i = gfc_create_var (sizetype, "i");
8700 : 4693 : gfc_add_modify (&block, i, fold_convert (sizetype, size));
8701 : 4693 : el = gfc_create_var (build_pointer_type (type), "el");
8702 : 4693 : gfc_add_modify (&block, el, fold_convert (TREE_TYPE (el), start));
8703 : 4693 : exit_label = gfc_build_label_decl (NULL_TREE);
8704 : 4693 : TREE_USED (exit_label) = 1;
8705 : :
8706 : :
8707 : : /* Loop body. */
8708 : 4693 : gfc_init_block (&loop);
8709 : :
8710 : : /* Exit condition. */
8711 : 4693 : cond = fold_build2_loc (input_location, LE_EXPR, logical_type_node, i,
8712 : : build_zero_cst (sizetype));
8713 : 4693 : tmp = build1_v (GOTO_EXPR, exit_label);
8714 : 4693 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
8715 : : build_empty_stmt (input_location));
8716 : 4693 : gfc_add_expr_to_block (&loop, tmp);
8717 : :
8718 : : /* Assignment. */
8719 : 4693 : gfc_add_modify (&loop,
8720 : : fold_build1_loc (input_location, INDIRECT_REF, type, el),
8721 : 4693 : build_int_cst (type, lang_hooks.to_target_charset (' ')));
8722 : :
8723 : : /* Increment loop variables. */
8724 : 4693 : gfc_add_modify (&loop, i,
8725 : : fold_build2_loc (input_location, MINUS_EXPR, sizetype, i,
8726 : 4693 : TYPE_SIZE_UNIT (type)));
8727 : 4693 : gfc_add_modify (&loop, el,
8728 : : fold_build_pointer_plus_loc (input_location,
8729 : 4693 : el, TYPE_SIZE_UNIT (type)));
8730 : :
8731 : : /* Making the loop... actually loop! */
8732 : 4693 : tmp = gfc_finish_block (&loop);
8733 : 4693 : tmp = build1_v (LOOP_EXPR, tmp);
8734 : 4693 : gfc_add_expr_to_block (&block, tmp);
8735 : :
8736 : : /* The exit label. */
8737 : 4693 : tmp = build1_v (LABEL_EXPR, exit_label);
8738 : 4693 : gfc_add_expr_to_block (&block, tmp);
8739 : :
8740 : :
8741 : 4693 : return gfc_finish_block (&block);
8742 : : }
8743 : :
8744 : :
8745 : : /* Generate code to copy a string. */
8746 : :
8747 : : void
8748 : 33319 : gfc_trans_string_copy (stmtblock_t * block, tree dlength, tree dest,
8749 : : int dkind, tree slength, tree src, int skind)
8750 : : {
8751 : 33319 : tree tmp, dlen, slen;
8752 : 33319 : tree dsc;
8753 : 33319 : tree ssc;
8754 : 33319 : tree cond;
8755 : 33319 : tree cond2;
8756 : 33319 : tree tmp2;
8757 : 33319 : tree tmp3;
8758 : 33319 : tree tmp4;
8759 : 33319 : tree chartype;
8760 : 33319 : stmtblock_t tempblock;
8761 : :
8762 : 33319 : gcc_assert (dkind == skind);
8763 : :
8764 : 33319 : if (slength != NULL_TREE)
8765 : : {
8766 : 33319 : slen = gfc_evaluate_now (fold_convert (gfc_charlen_type_node, slength), block);
8767 : 33319 : ssc = gfc_string_to_single_character (slen, src, skind);
8768 : : }
8769 : : else
8770 : : {
8771 : 0 : slen = build_one_cst (gfc_charlen_type_node);
8772 : 0 : ssc = src;
8773 : : }
8774 : :
8775 : 33319 : if (dlength != NULL_TREE)
8776 : : {
8777 : 33319 : dlen = gfc_evaluate_now (fold_convert (gfc_charlen_type_node, dlength), block);
8778 : 33319 : dsc = gfc_string_to_single_character (dlen, dest, dkind);
8779 : : }
8780 : : else
8781 : : {
8782 : 0 : dlen = build_one_cst (gfc_charlen_type_node);
8783 : 0 : dsc = dest;
8784 : : }
8785 : :
8786 : : /* Assign directly if the types are compatible. */
8787 : 33319 : if (dsc != NULL_TREE && ssc != NULL_TREE
8788 : 33319 : && TREE_TYPE (dsc) == TREE_TYPE (ssc))
8789 : : {
8790 : 4894 : gfc_add_modify (block, dsc, ssc);
8791 : 4894 : return;
8792 : : }
8793 : :
8794 : : /* The string copy algorithm below generates code like
8795 : :
8796 : : if (destlen > 0)
8797 : : {
8798 : : if (srclen < destlen)
8799 : : {
8800 : : memmove (dest, src, srclen);
8801 : : // Pad with spaces.
8802 : : memset (&dest[srclen], ' ', destlen - srclen);
8803 : : }
8804 : : else
8805 : : {
8806 : : // Truncate if too long.
8807 : : memmove (dest, src, destlen);
8808 : : }
8809 : : }
8810 : : */
8811 : :
8812 : : /* Do nothing if the destination length is zero. */
8813 : 28425 : cond = fold_build2_loc (input_location, GT_EXPR, logical_type_node, dlen,
8814 : 28425 : build_zero_cst (TREE_TYPE (dlen)));
8815 : :
8816 : : /* For non-default character kinds, we have to multiply the string
8817 : : length by the base type size. */
8818 : 28425 : chartype = gfc_get_char_type (dkind);
8819 : 28425 : slen = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (slen),
8820 : : slen,
8821 : 28425 : fold_convert (TREE_TYPE (slen),
8822 : : TYPE_SIZE_UNIT (chartype)));
8823 : 28425 : dlen = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (dlen),
8824 : : dlen,
8825 : 28425 : fold_convert (TREE_TYPE (dlen),
8826 : : TYPE_SIZE_UNIT (chartype)));
8827 : :
8828 : 28425 : if (dlength && POINTER_TYPE_P (TREE_TYPE (dest)))
8829 : 28377 : dest = fold_convert (pvoid_type_node, dest);
8830 : : else
8831 : 48 : dest = gfc_build_addr_expr (pvoid_type_node, dest);
8832 : :
8833 : 28425 : if (slength && POINTER_TYPE_P (TREE_TYPE (src)))
8834 : 28421 : src = fold_convert (pvoid_type_node, src);
8835 : : else
8836 : 4 : src = gfc_build_addr_expr (pvoid_type_node, src);
8837 : :
8838 : : /* Truncate string if source is too long. */
8839 : 28425 : cond2 = fold_build2_loc (input_location, LT_EXPR, logical_type_node, slen,
8840 : : dlen);
8841 : :
8842 : : /* Pre-evaluate pointers unless one of the IF arms will be optimized away. */
8843 : 28425 : if (!CONSTANT_CLASS_P (cond2))
8844 : : {
8845 : 8743 : dest = gfc_evaluate_now (dest, block);
8846 : 8743 : src = gfc_evaluate_now (src, block);
8847 : : }
8848 : :
8849 : : /* Copy and pad with spaces. */
8850 : 28425 : tmp3 = build_call_expr_loc (input_location,
8851 : : builtin_decl_explicit (BUILT_IN_MEMMOVE),
8852 : : 3, dest, src,
8853 : : fold_convert (size_type_node, slen));
8854 : :
8855 : : /* Wstringop-overflow appears at -O3 even though this warning is not
8856 : : explicitly available in fortran nor can it be switched off. If the
8857 : : source length is a constant, its negative appears as a very large
8858 : : positive number and triggers the warning in BUILTIN_MEMSET. Fixing
8859 : : the result of the MINUS_EXPR suppresses this spurious warning. */
8860 : 28425 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
8861 : 28425 : TREE_TYPE(dlen), dlen, slen);
8862 : 28425 : if (slength && TREE_CONSTANT (slength))
8863 : 25053 : tmp = gfc_evaluate_now (tmp, block);
8864 : :
8865 : 28425 : tmp4 = fold_build_pointer_plus_loc (input_location, dest, slen);
8866 : 28425 : tmp4 = fill_with_spaces (tmp4, chartype, tmp);
8867 : :
8868 : 28425 : gfc_init_block (&tempblock);
8869 : 28425 : gfc_add_expr_to_block (&tempblock, tmp3);
8870 : 28425 : gfc_add_expr_to_block (&tempblock, tmp4);
8871 : 28425 : tmp3 = gfc_finish_block (&tempblock);
8872 : :
8873 : : /* The truncated memmove if the slen >= dlen. */
8874 : 28425 : tmp2 = build_call_expr_loc (input_location,
8875 : : builtin_decl_explicit (BUILT_IN_MEMMOVE),
8876 : : 3, dest, src,
8877 : : fold_convert (size_type_node, dlen));
8878 : :
8879 : : /* The whole copy_string function is there. */
8880 : 28425 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond2,
8881 : : tmp3, tmp2);
8882 : 28425 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
8883 : : build_empty_stmt (input_location));
8884 : 28425 : gfc_add_expr_to_block (block, tmp);
8885 : : }
8886 : :
8887 : :
8888 : : /* Translate a statement function.
8889 : : The value of a statement function reference is obtained by evaluating the
8890 : : expression using the values of the actual arguments for the values of the
8891 : : corresponding dummy arguments. */
8892 : :
8893 : : static void
8894 : 269 : gfc_conv_statement_function (gfc_se * se, gfc_expr * expr)
8895 : : {
8896 : 269 : gfc_symbol *sym;
8897 : 269 : gfc_symbol *fsym;
8898 : 269 : gfc_formal_arglist *fargs;
8899 : 269 : gfc_actual_arglist *args;
8900 : 269 : gfc_se lse;
8901 : 269 : gfc_se rse;
8902 : 269 : gfc_saved_var *saved_vars;
8903 : 269 : tree *temp_vars;
8904 : 269 : tree type;
8905 : 269 : tree tmp;
8906 : 269 : int n;
8907 : :
8908 : 269 : sym = expr->symtree->n.sym;
8909 : 269 : args = expr->value.function.actual;
8910 : 269 : gfc_init_se (&lse, NULL);
8911 : 269 : gfc_init_se (&rse, NULL);
8912 : :
8913 : 269 : n = 0;
8914 : 727 : for (fargs = gfc_sym_get_dummy_args (sym); fargs; fargs = fargs->next)
8915 : 458 : n++;
8916 : 269 : saved_vars = XCNEWVEC (gfc_saved_var, n);
8917 : 269 : temp_vars = XCNEWVEC (tree, n);
8918 : :
8919 : 727 : for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs;
8920 : 458 : fargs = fargs->next, n++)
8921 : : {
8922 : : /* Each dummy shall be specified, explicitly or implicitly, to be
8923 : : scalar. */
8924 : 458 : gcc_assert (fargs->sym->attr.dimension == 0);
8925 : 458 : fsym = fargs->sym;
8926 : :
8927 : 458 : if (fsym->ts.type == BT_CHARACTER)
8928 : : {
8929 : : /* Copy string arguments. */
8930 : 48 : tree arglen;
8931 : :
8932 : 48 : gcc_assert (fsym->ts.u.cl && fsym->ts.u.cl->length
8933 : : && fsym->ts.u.cl->length->expr_type == EXPR_CONSTANT);
8934 : :
8935 : : /* Create a temporary to hold the value. */
8936 : 48 : if (fsym->ts.u.cl->backend_decl == NULL_TREE)
8937 : 1 : fsym->ts.u.cl->backend_decl
8938 : 1 : = gfc_conv_constant_to_tree (fsym->ts.u.cl->length);
8939 : :
8940 : 48 : type = gfc_get_character_type (fsym->ts.kind, fsym->ts.u.cl);
8941 : 48 : temp_vars[n] = gfc_create_var (type, fsym->name);
8942 : :
8943 : 48 : arglen = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
8944 : :
8945 : 48 : gfc_conv_expr (&rse, args->expr);
8946 : 48 : gfc_conv_string_parameter (&rse);
8947 : 48 : gfc_add_block_to_block (&se->pre, &lse.pre);
8948 : 48 : gfc_add_block_to_block (&se->pre, &rse.pre);
8949 : :
8950 : 48 : gfc_trans_string_copy (&se->pre, arglen, temp_vars[n], fsym->ts.kind,
8951 : : rse.string_length, rse.expr, fsym->ts.kind);
8952 : 48 : gfc_add_block_to_block (&se->pre, &lse.post);
8953 : 48 : gfc_add_block_to_block (&se->pre, &rse.post);
8954 : : }
8955 : : else
8956 : : {
8957 : : /* For everything else, just evaluate the expression. */
8958 : :
8959 : : /* Create a temporary to hold the value. */
8960 : 410 : type = gfc_typenode_for_spec (&fsym->ts);
8961 : 410 : temp_vars[n] = gfc_create_var (type, fsym->name);
8962 : :
8963 : 410 : gfc_conv_expr (&lse, args->expr);
8964 : :
8965 : 410 : gfc_add_block_to_block (&se->pre, &lse.pre);
8966 : 410 : gfc_add_modify (&se->pre, temp_vars[n], lse.expr);
8967 : 410 : gfc_add_block_to_block (&se->pre, &lse.post);
8968 : : }
8969 : :
8970 : 458 : args = args->next;
8971 : : }
8972 : :
8973 : : /* Use the temporary variables in place of the real ones. */
8974 : 727 : for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs;
8975 : 458 : fargs = fargs->next, n++)
8976 : 458 : gfc_shadow_sym (fargs->sym, temp_vars[n], &saved_vars[n]);
8977 : :
8978 : 269 : gfc_conv_expr (se, sym->value);
8979 : :
8980 : 269 : if (sym->ts.type == BT_CHARACTER)
8981 : : {
8982 : 55 : gfc_conv_const_charlen (sym->ts.u.cl);
8983 : :
8984 : : /* Force the expression to the correct length. */
8985 : 55 : if (!INTEGER_CST_P (se->string_length)
8986 : 101 : || tree_int_cst_lt (se->string_length,
8987 : 46 : sym->ts.u.cl->backend_decl))
8988 : : {
8989 : 31 : type = gfc_get_character_type (sym->ts.kind, sym->ts.u.cl);
8990 : 31 : tmp = gfc_create_var (type, sym->name);
8991 : 31 : tmp = gfc_build_addr_expr (build_pointer_type (type), tmp);
8992 : 31 : gfc_trans_string_copy (&se->pre, sym->ts.u.cl->backend_decl, tmp,
8993 : : sym->ts.kind, se->string_length, se->expr,
8994 : : sym->ts.kind);
8995 : 31 : se->expr = tmp;
8996 : : }
8997 : 55 : se->string_length = sym->ts.u.cl->backend_decl;
8998 : : }
8999 : :
9000 : : /* Restore the original variables. */
9001 : 727 : for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs;
9002 : 458 : fargs = fargs->next, n++)
9003 : 458 : gfc_restore_sym (fargs->sym, &saved_vars[n]);
9004 : 269 : free (temp_vars);
9005 : 269 : free (saved_vars);
9006 : 269 : }
9007 : :
9008 : :
9009 : : /* Translate a function expression. */
9010 : :
9011 : : static void
9012 : 284322 : gfc_conv_function_expr (gfc_se * se, gfc_expr * expr)
9013 : : {
9014 : 284322 : gfc_symbol *sym;
9015 : :
9016 : 284322 : if (expr->value.function.isym)
9017 : : {
9018 : 235392 : gfc_conv_intrinsic_function (se, expr);
9019 : 235392 : return;
9020 : : }
9021 : :
9022 : : /* expr.value.function.esym is the resolved (specific) function symbol for
9023 : : most functions. However this isn't set for dummy procedures. */
9024 : 48930 : sym = expr->value.function.esym;
9025 : 48930 : if (!sym)
9026 : 1424 : sym = expr->symtree->n.sym;
9027 : :
9028 : : /* The IEEE_ARITHMETIC functions are caught here. */
9029 : 48930 : if (sym->from_intmod == INTMOD_IEEE_ARITHMETIC)
9030 : 13903 : if (gfc_conv_ieee_arithmetic_function (se, expr))
9031 : : return;
9032 : :
9033 : : /* We distinguish statement functions from general functions to improve
9034 : : runtime performance. */
9035 : 36497 : if (sym->attr.proc == PROC_ST_FUNCTION)
9036 : : {
9037 : 269 : gfc_conv_statement_function (se, expr);
9038 : 269 : return;
9039 : : }
9040 : :
9041 : 36228 : gfc_conv_procedure_call (se, sym, expr->value.function.actual, expr,
9042 : : NULL);
9043 : : }
9044 : :
9045 : :
9046 : : /* Determine whether the given EXPR_CONSTANT is a zero initializer. */
9047 : :
9048 : : static bool
9049 : 37883 : is_zero_initializer_p (gfc_expr * expr)
9050 : : {
9051 : 37883 : if (expr->expr_type != EXPR_CONSTANT)
9052 : : return false;
9053 : :
9054 : : /* We ignore constants with prescribed memory representations for now. */
9055 : 10964 : if (expr->representation.string)
9056 : : return false;
9057 : :
9058 : 10946 : switch (expr->ts.type)
9059 : : {
9060 : 4906 : case BT_INTEGER:
9061 : 4906 : return mpz_cmp_si (expr->value.integer, 0) == 0;
9062 : :
9063 : 4882 : case BT_REAL:
9064 : 4882 : return mpfr_zero_p (expr->value.real)
9065 : 4882 : && MPFR_SIGN (expr->value.real) >= 0;
9066 : :
9067 : 799 : case BT_LOGICAL:
9068 : 799 : return expr->value.logical == 0;
9069 : :
9070 : 225 : case BT_COMPLEX:
9071 : 225 : return mpfr_zero_p (mpc_realref (expr->value.complex))
9072 : 134 : && MPFR_SIGN (mpc_realref (expr->value.complex)) >= 0
9073 : 134 : && mpfr_zero_p (mpc_imagref (expr->value.complex))
9074 : 347 : && MPFR_SIGN (mpc_imagref (expr->value.complex)) >= 0;
9075 : :
9076 : : default:
9077 : : break;
9078 : : }
9079 : : return false;
9080 : : }
9081 : :
9082 : :
9083 : : static void
9084 : 33651 : gfc_conv_array_constructor_expr (gfc_se * se, gfc_expr * expr)
9085 : : {
9086 : 33651 : gfc_ss *ss;
9087 : :
9088 : 33651 : ss = se->ss;
9089 : 33651 : gcc_assert (ss != NULL && ss != gfc_ss_terminator);
9090 : 33651 : gcc_assert (ss->info->expr == expr && ss->info->type == GFC_SS_CONSTRUCTOR);
9091 : :
9092 : 33651 : gfc_conv_tmp_array_ref (se);
9093 : 33651 : }
9094 : :
9095 : :
9096 : : /* Build a static initializer. EXPR is the expression for the initial value.
9097 : : The other parameters describe the variable of the component being
9098 : : initialized. EXPR may be null. */
9099 : :
9100 : : tree
9101 : 129551 : gfc_conv_initializer (gfc_expr * expr, gfc_typespec * ts, tree type,
9102 : : bool array, bool pointer, bool procptr)
9103 : : {
9104 : 129551 : gfc_se se;
9105 : :
9106 : 129551 : if (flag_coarray != GFC_FCOARRAY_LIB && ts->type == BT_DERIVED
9107 : 41255 : && ts->u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
9108 : 41255 : && ts->u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
9109 : 57 : return build_constructor (type, NULL);
9110 : :
9111 : 129494 : if (!(expr || pointer || procptr))
9112 : : return NULL_TREE;
9113 : :
9114 : : /* Check if we have ISOCBINDING_NULL_PTR or ISOCBINDING_NULL_FUNPTR
9115 : : (these are the only two iso_c_binding derived types that can be
9116 : : used as initialization expressions). If so, we need to modify
9117 : : the 'expr' to be that for a (void *). */
9118 : 121370 : if (expr != NULL && expr->ts.type == BT_DERIVED
9119 : 37097 : && expr->ts.is_iso_c && expr->ts.u.derived)
9120 : : {
9121 : 179 : if (TREE_CODE (type) == ARRAY_TYPE)
9122 : 4 : return build_constructor (type, NULL);
9123 : 175 : else if (POINTER_TYPE_P (type))
9124 : 175 : return build_int_cst (type, 0);
9125 : : else
9126 : 0 : gcc_unreachable ();
9127 : : }
9128 : :
9129 : 121191 : if (array && !procptr)
9130 : : {
9131 : 8361 : tree ctor;
9132 : : /* Arrays need special handling. */
9133 : 8361 : if (pointer)
9134 : 634 : ctor = gfc_build_null_descriptor (type);
9135 : : /* Special case assigning an array to zero. */
9136 : 7727 : else if (is_zero_initializer_p (expr))
9137 : 203 : ctor = build_constructor (type, NULL);
9138 : : else
9139 : 7524 : ctor = gfc_conv_array_initializer (type, expr);
9140 : 8361 : TREE_STATIC (ctor) = 1;
9141 : 8361 : return ctor;
9142 : : }
9143 : 112830 : else if (pointer || procptr)
9144 : : {
9145 : 54545 : if (ts->type == BT_CLASS && !procptr)
9146 : : {
9147 : 1660 : gfc_init_se (&se, NULL);
9148 : 1660 : gfc_conv_structure (&se, gfc_class_initializer (ts, expr), 1);
9149 : 1660 : gcc_assert (TREE_CODE (se.expr) == CONSTRUCTOR);
9150 : 1660 : TREE_STATIC (se.expr) = 1;
9151 : 1660 : return se.expr;
9152 : : }
9153 : 52885 : else if (!expr || expr->expr_type == EXPR_NULL)
9154 : 28661 : return fold_convert (type, null_pointer_node);
9155 : : else
9156 : : {
9157 : 24224 : gfc_init_se (&se, NULL);
9158 : 24224 : se.want_pointer = 1;
9159 : 24224 : gfc_conv_expr (&se, expr);
9160 : 24224 : gcc_assert (TREE_CODE (se.expr) != CONSTRUCTOR);
9161 : : return se.expr;
9162 : : }
9163 : : }
9164 : : else
9165 : : {
9166 : 58285 : switch (ts->type)
9167 : : {
9168 : 17314 : case_bt_struct:
9169 : 17314 : case BT_CLASS:
9170 : 17314 : gfc_init_se (&se, NULL);
9171 : 17314 : if (ts->type == BT_CLASS && expr->expr_type == EXPR_NULL)
9172 : 739 : gfc_conv_structure (&se, gfc_class_initializer (ts, expr), 1);
9173 : : else
9174 : 16575 : gfc_conv_structure (&se, expr, 1);
9175 : 17314 : gcc_assert (TREE_CODE (se.expr) == CONSTRUCTOR);
9176 : 17314 : TREE_STATIC (se.expr) = 1;
9177 : 17314 : return se.expr;
9178 : :
9179 : 2552 : case BT_CHARACTER:
9180 : 2552 : if (expr->expr_type == EXPR_CONSTANT)
9181 : : {
9182 : 2551 : tree ctor = gfc_conv_string_init (ts->u.cl->backend_decl, expr);
9183 : 2551 : TREE_STATIC (ctor) = 1;
9184 : 2551 : return ctor;
9185 : : }
9186 : :
9187 : : /* Fallthrough. */
9188 : 38420 : default:
9189 : 38420 : gfc_init_se (&se, NULL);
9190 : 38420 : gfc_conv_constant (&se, expr);
9191 : 38420 : gcc_assert (TREE_CODE (se.expr) != CONSTRUCTOR);
9192 : : return se.expr;
9193 : : }
9194 : : }
9195 : : }
9196 : :
9197 : : static tree
9198 : 892 : gfc_trans_subarray_assign (tree dest, gfc_component * cm, gfc_expr * expr)
9199 : : {
9200 : 892 : gfc_se rse;
9201 : 892 : gfc_se lse;
9202 : 892 : gfc_ss *rss;
9203 : 892 : gfc_ss *lss;
9204 : 892 : gfc_array_info *lss_array;
9205 : 892 : stmtblock_t body;
9206 : 892 : stmtblock_t block;
9207 : 892 : gfc_loopinfo loop;
9208 : 892 : int n;
9209 : 892 : tree tmp;
9210 : :
9211 : 892 : gfc_start_block (&block);
9212 : :
9213 : : /* Initialize the scalarizer. */
9214 : 892 : gfc_init_loopinfo (&loop);
9215 : :
9216 : 892 : gfc_init_se (&lse, NULL);
9217 : 892 : gfc_init_se (&rse, NULL);
9218 : :
9219 : : /* Walk the rhs. */
9220 : 892 : rss = gfc_walk_expr (expr);
9221 : 892 : if (rss == gfc_ss_terminator)
9222 : : /* The rhs is scalar. Add a ss for the expression. */
9223 : 159 : rss = gfc_get_scalar_ss (gfc_ss_terminator, expr);
9224 : :
9225 : : /* Create a SS for the destination. */
9226 : 892 : lss = gfc_get_array_ss (gfc_ss_terminator, NULL, cm->as->rank,
9227 : : GFC_SS_COMPONENT);
9228 : 892 : lss_array = &lss->info->data.array;
9229 : 892 : lss_array->shape = gfc_get_shape (cm->as->rank);
9230 : 892 : lss_array->descriptor = dest;
9231 : 892 : lss_array->data = gfc_conv_array_data (dest);
9232 : 892 : lss_array->offset = gfc_conv_array_offset (dest);
9233 : 1846 : for (n = 0; n < cm->as->rank; n++)
9234 : : {
9235 : 954 : lss_array->start[n] = gfc_conv_array_lbound (dest, n);
9236 : 954 : lss_array->stride[n] = gfc_index_one_node;
9237 : :
9238 : 954 : mpz_init (lss_array->shape[n]);
9239 : 954 : mpz_sub (lss_array->shape[n], cm->as->upper[n]->value.integer,
9240 : 954 : cm->as->lower[n]->value.integer);
9241 : 954 : mpz_add_ui (lss_array->shape[n], lss_array->shape[n], 1);
9242 : : }
9243 : :
9244 : : /* Associate the SS with the loop. */
9245 : 892 : gfc_add_ss_to_loop (&loop, lss);
9246 : 892 : gfc_add_ss_to_loop (&loop, rss);
9247 : :
9248 : : /* Calculate the bounds of the scalarization. */
9249 : 892 : gfc_conv_ss_startstride (&loop);
9250 : :
9251 : : /* Setup the scalarizing loops. */
9252 : 892 : gfc_conv_loop_setup (&loop, &expr->where);
9253 : :
9254 : : /* Setup the gfc_se structures. */
9255 : 892 : gfc_copy_loopinfo_to_se (&lse, &loop);
9256 : 892 : gfc_copy_loopinfo_to_se (&rse, &loop);
9257 : :
9258 : 892 : rse.ss = rss;
9259 : 892 : gfc_mark_ss_chain_used (rss, 1);
9260 : 892 : lse.ss = lss;
9261 : 892 : gfc_mark_ss_chain_used (lss, 1);
9262 : :
9263 : : /* Start the scalarized loop body. */
9264 : 892 : gfc_start_scalarized_body (&loop, &body);
9265 : :
9266 : 892 : gfc_conv_tmp_array_ref (&lse);
9267 : 892 : if (cm->ts.type == BT_CHARACTER)
9268 : 176 : lse.string_length = cm->ts.u.cl->backend_decl;
9269 : :
9270 : 892 : gfc_conv_expr (&rse, expr);
9271 : :
9272 : 892 : tmp = gfc_trans_scalar_assign (&lse, &rse, cm->ts, true, false);
9273 : 892 : gfc_add_expr_to_block (&body, tmp);
9274 : :
9275 : 892 : gcc_assert (rse.ss == gfc_ss_terminator);
9276 : :
9277 : : /* Generate the copying loops. */
9278 : 892 : gfc_trans_scalarizing_loops (&loop, &body);
9279 : :
9280 : : /* Wrap the whole thing up. */
9281 : 892 : gfc_add_block_to_block (&block, &loop.pre);
9282 : 892 : gfc_add_block_to_block (&block, &loop.post);
9283 : :
9284 : 892 : gcc_assert (lss_array->shape != NULL);
9285 : 892 : gfc_free_shape (&lss_array->shape, cm->as->rank);
9286 : 892 : gfc_cleanup_loop (&loop);
9287 : :
9288 : 892 : return gfc_finish_block (&block);
9289 : : }
9290 : :
9291 : :
9292 : : static tree
9293 : 1010 : gfc_trans_alloc_subarray_assign (tree dest, gfc_component * cm,
9294 : : gfc_expr * expr)
9295 : : {
9296 : 1010 : gfc_se se;
9297 : 1010 : stmtblock_t block;
9298 : 1010 : tree offset;
9299 : 1010 : int n;
9300 : 1010 : tree tmp;
9301 : 1010 : tree tmp2;
9302 : 1010 : gfc_array_spec *as;
9303 : 1010 : gfc_expr *arg = NULL;
9304 : :
9305 : 1010 : gfc_start_block (&block);
9306 : 1010 : gfc_init_se (&se, NULL);
9307 : :
9308 : : /* Get the descriptor for the expressions. */
9309 : 1010 : se.want_pointer = 0;
9310 : 1010 : gfc_conv_expr_descriptor (&se, expr);
9311 : 1010 : gfc_add_block_to_block (&block, &se.pre);
9312 : 1010 : gfc_add_modify (&block, dest, se.expr);
9313 : 1010 : if (cm->ts.type == BT_CHARACTER
9314 : 1010 : && gfc_deferred_strlen (cm, &tmp))
9315 : : {
9316 : 30 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
9317 : 30 : TREE_TYPE (tmp),
9318 : 30 : TREE_OPERAND (dest, 0),
9319 : : tmp, NULL_TREE);
9320 : 30 : gfc_add_modify (&block, tmp,
9321 : 30 : fold_convert (TREE_TYPE (tmp),
9322 : : se.string_length));
9323 : 30 : cm->ts.u.cl->backend_decl = gfc_create_var (gfc_charlen_type_node,
9324 : : "slen");
9325 : 30 : gfc_add_modify (&block, cm->ts.u.cl->backend_decl, se.string_length);
9326 : : }
9327 : :
9328 : : /* Deal with arrays of derived types with allocatable components. */
9329 : 1010 : if (gfc_bt_struct (cm->ts.type)
9330 : 170 : && cm->ts.u.derived->attr.alloc_comp)
9331 : : // TODO: Fix caf_mode
9332 : 116 : tmp = gfc_copy_alloc_comp (cm->ts.u.derived,
9333 : : se.expr, dest,
9334 : 116 : cm->as->rank, 0);
9335 : 894 : else if (cm->ts.type == BT_CLASS && expr->ts.type == BT_DERIVED
9336 : 36 : && CLASS_DATA(cm)->attr.allocatable)
9337 : : {
9338 : 36 : if (cm->ts.u.derived->attr.alloc_comp)
9339 : : // TODO: Fix caf_mode
9340 : 0 : tmp = gfc_copy_alloc_comp (expr->ts.u.derived,
9341 : : se.expr, dest,
9342 : : expr->rank, 0);
9343 : : else
9344 : : {
9345 : 36 : tmp = TREE_TYPE (dest);
9346 : 36 : tmp = gfc_duplicate_allocatable (dest, se.expr,
9347 : : tmp, expr->rank, NULL_TREE);
9348 : : }
9349 : : }
9350 : 858 : else if (cm->ts.type == BT_CHARACTER && cm->ts.deferred)
9351 : 30 : tmp = gfc_duplicate_allocatable (dest, se.expr,
9352 : : gfc_typenode_for_spec (&cm->ts),
9353 : 30 : cm->as->rank, NULL_TREE);
9354 : : else
9355 : 828 : tmp = gfc_duplicate_allocatable (dest, se.expr,
9356 : 828 : TREE_TYPE(cm->backend_decl),
9357 : 828 : cm->as->rank, NULL_TREE);
9358 : :
9359 : :
9360 : 1010 : gfc_add_expr_to_block (&block, tmp);
9361 : 1010 : gfc_add_block_to_block (&block, &se.post);
9362 : :
9363 : 1010 : if (expr->expr_type != EXPR_VARIABLE)
9364 : 890 : gfc_conv_descriptor_data_set (&block, se.expr,
9365 : : null_pointer_node);
9366 : :
9367 : : /* We need to know if the argument of a conversion function is a
9368 : : variable, so that the correct lower bound can be used. */
9369 : 1010 : if (expr->expr_type == EXPR_FUNCTION
9370 : 60 : && expr->value.function.isym
9371 : 48 : && expr->value.function.isym->conversion
9372 : 48 : && expr->value.function.actual->expr
9373 : 48 : && expr->value.function.actual->expr->expr_type == EXPR_VARIABLE)
9374 : 48 : arg = expr->value.function.actual->expr;
9375 : :
9376 : : /* Obtain the array spec of full array references. */
9377 : 48 : if (arg)
9378 : 48 : as = gfc_get_full_arrayspec_from_expr (arg);
9379 : : else
9380 : 962 : as = gfc_get_full_arrayspec_from_expr (expr);
9381 : :
9382 : : /* Shift the lbound and ubound of temporaries to being unity,
9383 : : rather than zero, based. Always calculate the offset. */
9384 : 1010 : offset = gfc_conv_descriptor_offset_get (dest);
9385 : 1010 : gfc_add_modify (&block, offset, gfc_index_zero_node);
9386 : 1010 : tmp2 =gfc_create_var (gfc_array_index_type, NULL);
9387 : :
9388 : 2086 : for (n = 0; n < expr->rank; n++)
9389 : : {
9390 : 1076 : tree span;
9391 : 1076 : tree lbound;
9392 : :
9393 : : /* Obtain the correct lbound - ISO/IEC TR 15581:2001 page 9.
9394 : : TODO It looks as if gfc_conv_expr_descriptor should return
9395 : : the correct bounds and that the following should not be
9396 : : necessary. This would simplify gfc_conv_intrinsic_bound
9397 : : as well. */
9398 : 1076 : if (as && as->lower[n])
9399 : : {
9400 : 54 : gfc_se lbse;
9401 : 54 : gfc_init_se (&lbse, NULL);
9402 : 54 : gfc_conv_expr (&lbse, as->lower[n]);
9403 : 54 : gfc_add_block_to_block (&block, &lbse.pre);
9404 : 54 : lbound = gfc_evaluate_now (lbse.expr, &block);
9405 : 54 : }
9406 : 1022 : else if (as && arg)
9407 : : {
9408 : 66 : tmp = gfc_get_symbol_decl (arg->symtree->n.sym);
9409 : 66 : lbound = gfc_conv_descriptor_lbound_get (tmp,
9410 : : gfc_rank_cst[n]);
9411 : : }
9412 : 956 : else if (as)
9413 : 72 : lbound = gfc_conv_descriptor_lbound_get (dest,
9414 : : gfc_rank_cst[n]);
9415 : : else
9416 : 884 : lbound = gfc_index_one_node;
9417 : :
9418 : 1076 : lbound = fold_convert (gfc_array_index_type, lbound);
9419 : :
9420 : : /* Shift the bounds and set the offset accordingly. */
9421 : 1076 : tmp = gfc_conv_descriptor_ubound_get (dest, gfc_rank_cst[n]);
9422 : 1076 : span = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
9423 : : tmp, gfc_conv_descriptor_lbound_get (dest, gfc_rank_cst[n]));
9424 : 1076 : tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
9425 : : span, lbound);
9426 : 1076 : gfc_conv_descriptor_ubound_set (&block, dest,
9427 : : gfc_rank_cst[n], tmp);
9428 : 1076 : gfc_conv_descriptor_lbound_set (&block, dest,
9429 : : gfc_rank_cst[n], lbound);
9430 : :
9431 : 1076 : tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
9432 : : gfc_conv_descriptor_lbound_get (dest,
9433 : : gfc_rank_cst[n]),
9434 : : gfc_conv_descriptor_stride_get (dest,
9435 : : gfc_rank_cst[n]));
9436 : 1076 : gfc_add_modify (&block, tmp2, tmp);
9437 : 1076 : tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
9438 : : offset, tmp2);
9439 : 1076 : gfc_conv_descriptor_offset_set (&block, dest, tmp);
9440 : : }
9441 : :
9442 : 1010 : if (arg)
9443 : : {
9444 : : /* If a conversion expression has a null data pointer
9445 : : argument, nullify the allocatable component. */
9446 : 48 : tree non_null_expr;
9447 : 48 : tree null_expr;
9448 : :
9449 : 48 : if (arg->symtree->n.sym->attr.allocatable
9450 : 48 : || arg->symtree->n.sym->attr.pointer)
9451 : : {
9452 : 48 : non_null_expr = gfc_finish_block (&block);
9453 : 48 : gfc_start_block (&block);
9454 : 48 : gfc_conv_descriptor_data_set (&block, dest,
9455 : : null_pointer_node);
9456 : 48 : null_expr = gfc_finish_block (&block);
9457 : 48 : tmp = gfc_conv_descriptor_data_get (arg->symtree->n.sym->backend_decl);
9458 : 48 : tmp = build2_loc (input_location, EQ_EXPR, logical_type_node, tmp,
9459 : 48 : fold_convert (TREE_TYPE (tmp), null_pointer_node));
9460 : 48 : return build3_v (COND_EXPR, tmp,
9461 : : null_expr, non_null_expr);
9462 : : }
9463 : : }
9464 : :
9465 : 962 : return gfc_finish_block (&block);
9466 : : }
9467 : :
9468 : :
9469 : : /* Allocate or reallocate scalar component, as necessary. */
9470 : :
9471 : : static void
9472 : 282 : alloc_scalar_allocatable_subcomponent (stmtblock_t *block, tree comp,
9473 : : gfc_component *cm, gfc_expr *expr2,
9474 : : tree slen)
9475 : : {
9476 : 282 : tree tmp;
9477 : 282 : tree ptr;
9478 : 282 : tree size;
9479 : 282 : tree size_in_bytes;
9480 : 282 : tree lhs_cl_size = NULL_TREE;
9481 : 282 : gfc_se se;
9482 : :
9483 : 282 : if (!comp)
9484 : 0 : return;
9485 : :
9486 : 282 : if (!expr2 || expr2->rank)
9487 : : return;
9488 : :
9489 : 282 : realloc_lhs_warning (expr2->ts.type, false, &expr2->where);
9490 : :
9491 : 282 : if (cm->ts.type == BT_CHARACTER && cm->ts.deferred)
9492 : : {
9493 : 124 : gcc_assert (expr2->ts.type == BT_CHARACTER);
9494 : 124 : size = expr2->ts.u.cl->backend_decl;
9495 : 124 : if (!size || !VAR_P (size))
9496 : 124 : size = gfc_create_var (TREE_TYPE (slen), "slen");
9497 : 124 : gfc_add_modify (block, size, slen);
9498 : :
9499 : 124 : gfc_deferred_strlen (cm, &tmp);
9500 : 124 : lhs_cl_size = fold_build3_loc (input_location, COMPONENT_REF,
9501 : : gfc_charlen_type_node,
9502 : 124 : TREE_OPERAND (comp, 0),
9503 : : tmp, NULL_TREE);
9504 : :
9505 : 124 : tmp = TREE_TYPE (gfc_typenode_for_spec (&cm->ts));
9506 : 124 : tmp = TYPE_SIZE_UNIT (tmp);
9507 : 248 : size_in_bytes = fold_build2_loc (input_location, MULT_EXPR,
9508 : 124 : TREE_TYPE (tmp), tmp,
9509 : 124 : fold_convert (TREE_TYPE (tmp), size));
9510 : : }
9511 : 158 : else if (cm->ts.type == BT_CLASS)
9512 : : {
9513 : 78 : if (expr2->ts.type != BT_CLASS)
9514 : : {
9515 : 78 : if (expr2->ts.type == BT_CHARACTER)
9516 : : {
9517 : 18 : gfc_init_se (&se, NULL);
9518 : 18 : gfc_conv_expr (&se, expr2);
9519 : 18 : size = build_int_cst (gfc_charlen_type_node, expr2->ts.kind);
9520 : 18 : size = fold_build2_loc (input_location, MULT_EXPR,
9521 : : gfc_charlen_type_node,
9522 : : se.string_length, size);
9523 : 18 : size = fold_convert (size_type_node, size);
9524 : : }
9525 : : else
9526 : : {
9527 : 60 : if (expr2->ts.type == BT_DERIVED)
9528 : 48 : tmp = gfc_get_symbol_decl (expr2->ts.u.derived);
9529 : : else
9530 : 12 : tmp = gfc_typenode_for_spec (&expr2->ts);
9531 : 60 : size = TYPE_SIZE_UNIT (tmp);
9532 : : }
9533 : : }
9534 : : else
9535 : : {
9536 : 0 : gfc_expr *e2vtab;
9537 : 0 : e2vtab = gfc_find_and_cut_at_last_class_ref (expr2);
9538 : 0 : gfc_add_vptr_component (e2vtab);
9539 : 0 : gfc_add_size_component (e2vtab);
9540 : 0 : gfc_init_se (&se, NULL);
9541 : 0 : gfc_conv_expr (&se, e2vtab);
9542 : 0 : gfc_add_block_to_block (block, &se.pre);
9543 : 0 : size = fold_convert (size_type_node, se.expr);
9544 : 0 : gfc_free_expr (e2vtab);
9545 : : }
9546 : : size_in_bytes = size;
9547 : : }
9548 : : else
9549 : : {
9550 : : /* Otherwise use the length in bytes of the rhs. */
9551 : 80 : size = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&cm->ts));
9552 : 80 : size_in_bytes = size;
9553 : : }
9554 : :
9555 : 282 : size_in_bytes = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
9556 : : size_in_bytes, size_one_node);
9557 : :
9558 : 282 : if (cm->ts.type == BT_DERIVED && cm->ts.u.derived->attr.alloc_comp)
9559 : : {
9560 : 0 : tmp = build_call_expr_loc (input_location,
9561 : : builtin_decl_explicit (BUILT_IN_CALLOC),
9562 : : 2, build_one_cst (size_type_node),
9563 : : size_in_bytes);
9564 : 0 : tmp = fold_convert (TREE_TYPE (comp), tmp);
9565 : 0 : gfc_add_modify (block, comp, tmp);
9566 : : }
9567 : : else
9568 : : {
9569 : 282 : tmp = build_call_expr_loc (input_location,
9570 : : builtin_decl_explicit (BUILT_IN_MALLOC),
9571 : : 1, size_in_bytes);
9572 : 282 : if (GFC_CLASS_TYPE_P (TREE_TYPE (comp)))
9573 : 78 : ptr = gfc_class_data_get (comp);
9574 : : else
9575 : : ptr = comp;
9576 : 282 : tmp = fold_convert (TREE_TYPE (ptr), tmp);
9577 : 282 : gfc_add_modify (block, ptr, tmp);
9578 : : }
9579 : :
9580 : 282 : if (cm->ts.type == BT_CHARACTER && cm->ts.deferred)
9581 : : /* Update the lhs character length. */
9582 : 124 : gfc_add_modify (block, lhs_cl_size,
9583 : 124 : fold_convert (TREE_TYPE (lhs_cl_size), size));
9584 : : }
9585 : :
9586 : :
9587 : : /* Assign a single component of a derived type constructor. */
9588 : :
9589 : : static tree
9590 : 25365 : gfc_trans_subcomponent_assign (tree dest, gfc_component * cm,
9591 : : gfc_expr * expr, bool init)
9592 : : {
9593 : 25365 : gfc_se se;
9594 : 25365 : gfc_se lse;
9595 : 25365 : stmtblock_t block;
9596 : 25365 : tree tmp;
9597 : 25365 : tree vtab;
9598 : :
9599 : 25365 : gfc_start_block (&block);
9600 : :
9601 : 25365 : if (cm->attr.pointer || cm->attr.proc_pointer)
9602 : : {
9603 : : /* Only care about pointers here, not about allocatables. */
9604 : 2329 : gfc_init_se (&se, NULL);
9605 : : /* Pointer component. */
9606 : 2329 : if ((cm->attr.dimension || cm->attr.codimension)
9607 : 557 : && !cm->attr.proc_pointer)
9608 : : {
9609 : : /* Array pointer. */
9610 : 542 : if (expr->expr_type == EXPR_NULL)
9611 : 536 : gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
9612 : : else
9613 : : {
9614 : 6 : se.direct_byref = 1;
9615 : 6 : se.expr = dest;
9616 : 6 : gfc_conv_expr_descriptor (&se, expr);
9617 : 6 : gfc_add_block_to_block (&block, &se.pre);
9618 : 6 : gfc_add_block_to_block (&block, &se.post);
9619 : : }
9620 : : }
9621 : : else
9622 : : {
9623 : : /* Scalar pointers. */
9624 : 1787 : se.want_pointer = 1;
9625 : 1787 : gfc_conv_expr (&se, expr);
9626 : 1787 : gfc_add_block_to_block (&block, &se.pre);
9627 : :
9628 : 1787 : if (expr->symtree && expr->symtree->n.sym->attr.proc_pointer
9629 : 918 : && expr->symtree->n.sym->attr.dummy)
9630 : 12 : se.expr = build_fold_indirect_ref_loc (input_location, se.expr);
9631 : :
9632 : 1787 : gfc_add_modify (&block, dest,
9633 : 1787 : fold_convert (TREE_TYPE (dest), se.expr));
9634 : 1787 : gfc_add_block_to_block (&block, &se.post);
9635 : : }
9636 : : }
9637 : 23036 : else if (cm->ts.type == BT_CLASS && expr->expr_type == EXPR_NULL)
9638 : : {
9639 : : /* NULL initialization for CLASS components. */
9640 : 827 : tmp = gfc_trans_structure_assign (dest,
9641 : : gfc_class_initializer (&cm->ts, expr),
9642 : : false);
9643 : 827 : gfc_add_expr_to_block (&block, tmp);
9644 : : }
9645 : 22209 : else if ((cm->attr.dimension || cm->attr.codimension)
9646 : 3822 : && !cm->attr.proc_pointer)
9647 : : {
9648 : 3822 : if (cm->attr.allocatable && expr->expr_type == EXPR_NULL)
9649 : 1956 : gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
9650 : 1866 : else if (cm->attr.allocatable || cm->attr.pdt_array)
9651 : : {
9652 : 974 : tmp = gfc_trans_alloc_subarray_assign (dest, cm, expr);
9653 : 974 : gfc_add_expr_to_block (&block, tmp);
9654 : : }
9655 : : else
9656 : : {
9657 : 892 : tmp = gfc_trans_subarray_assign (dest, cm, expr);
9658 : 892 : gfc_add_expr_to_block (&block, tmp);
9659 : : }
9660 : : }
9661 : 18387 : else if (cm->ts.type == BT_CLASS
9662 : 120 : && CLASS_DATA (cm)->attr.dimension
9663 : 120 : && CLASS_DATA (cm)->attr.allocatable
9664 : 36 : && expr->ts.type == BT_DERIVED)
9665 : : {
9666 : 36 : vtab = gfc_get_symbol_decl (gfc_find_vtab (&expr->ts));
9667 : 36 : vtab = gfc_build_addr_expr (NULL_TREE, vtab);
9668 : 36 : tmp = gfc_class_vptr_get (dest);
9669 : 36 : gfc_add_modify (&block, tmp,
9670 : 36 : fold_convert (TREE_TYPE (tmp), vtab));
9671 : 36 : tmp = gfc_class_data_get (dest);
9672 : 36 : tmp = gfc_trans_alloc_subarray_assign (tmp, cm, expr);
9673 : 36 : gfc_add_expr_to_block (&block, tmp);
9674 : : }
9675 : 18351 : else if (init && cm->attr.allocatable && expr->expr_type == EXPR_NULL)
9676 : : {
9677 : : /* NULL initialization for allocatable components. */
9678 : 66 : gfc_add_modify (&block, dest, fold_convert (TREE_TYPE (dest),
9679 : : null_pointer_node));
9680 : : }
9681 : 12600 : else if (init && (cm->attr.allocatable
9682 : 12396 : || (cm->ts.type == BT_CLASS && CLASS_DATA (cm)->attr.allocatable
9683 : 84 : && expr->ts.type != BT_CLASS)))
9684 : : {
9685 : 282 : tree size;
9686 : :
9687 : 282 : gfc_init_se (&se, NULL);
9688 : 282 : gfc_conv_expr (&se, expr);
9689 : :
9690 : : /* The remainder of these instructions follow the if (cm->attr.pointer)
9691 : : if (!cm->attr.dimension) part above. */
9692 : 282 : gfc_add_block_to_block (&block, &se.pre);
9693 : : /* Take care about non-array allocatable components here. The alloc_*
9694 : : routine below is motivated by the alloc_scalar_allocatable_for_
9695 : : assignment() routine, but with the realloc portions removed and
9696 : : different input. */
9697 : 282 : alloc_scalar_allocatable_subcomponent (&block, dest, cm, expr,
9698 : : se.string_length);
9699 : :
9700 : 282 : if (expr->symtree && expr->symtree->n.sym->attr.proc_pointer
9701 : 107 : && expr->symtree->n.sym->attr.dummy)
9702 : 0 : se.expr = build_fold_indirect_ref_loc (input_location, se.expr);
9703 : :
9704 : 282 : if (cm->ts.type == BT_CLASS)
9705 : : {
9706 : 78 : tmp = gfc_class_data_get (dest);
9707 : 78 : tmp = build_fold_indirect_ref_loc (input_location, tmp);
9708 : 78 : vtab = gfc_get_symbol_decl (gfc_find_vtab (&expr->ts));
9709 : 78 : vtab = gfc_build_addr_expr (NULL_TREE, vtab);
9710 : 78 : gfc_add_modify (&block, gfc_class_vptr_get (dest),
9711 : 78 : fold_convert (TREE_TYPE (gfc_class_vptr_get (dest)), vtab));
9712 : : }
9713 : : else
9714 : 204 : tmp = build_fold_indirect_ref_loc (input_location, dest);
9715 : :
9716 : : /* For deferred strings insert a memcpy. */
9717 : 282 : if (cm->ts.type == BT_CHARACTER && cm->ts.deferred)
9718 : : {
9719 : 124 : gcc_assert (se.string_length || expr->ts.u.cl->backend_decl);
9720 : 124 : size = size_of_string_in_bytes (cm->ts.kind, se.string_length
9721 : : ? se.string_length
9722 : 0 : : expr->ts.u.cl->backend_decl);
9723 : 124 : tmp = gfc_build_memcpy_call (tmp, se.expr, size);
9724 : 124 : gfc_add_expr_to_block (&block, tmp);
9725 : : }
9726 : 158 : else if (cm->ts.type == BT_CLASS)
9727 : : {
9728 : : /* Fix the expression for memcpy. */
9729 : 78 : if (expr->expr_type != EXPR_VARIABLE)
9730 : 48 : se.expr = gfc_evaluate_now (se.expr, &block);
9731 : :
9732 : 78 : if (expr->ts.type == BT_CHARACTER)
9733 : : {
9734 : 18 : size = build_int_cst (gfc_charlen_type_node, expr->ts.kind);
9735 : 18 : size = fold_build2_loc (input_location, MULT_EXPR,
9736 : : gfc_charlen_type_node,
9737 : : se.string_length, size);
9738 : 18 : size = fold_convert (size_type_node, size);
9739 : : }
9740 : : else
9741 : 60 : size = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&expr->ts));
9742 : :
9743 : : /* Now copy the expression to the constructor component _data. */
9744 : 78 : gfc_add_expr_to_block (&block,
9745 : : gfc_build_memcpy_call (tmp, se.expr, size));
9746 : :
9747 : : /* Fill the unlimited polymorphic _len field. */
9748 : 78 : if (UNLIMITED_POLY (cm) && expr->ts.type == BT_CHARACTER)
9749 : : {
9750 : 18 : tmp = gfc_class_len_get (gfc_get_class_from_expr (tmp));
9751 : 18 : gfc_add_modify (&block, tmp,
9752 : 18 : fold_convert (TREE_TYPE (tmp),
9753 : : se.string_length));
9754 : : }
9755 : : }
9756 : : else
9757 : 80 : gfc_add_modify (&block, tmp,
9758 : 80 : fold_convert (TREE_TYPE (tmp), se.expr));
9759 : 282 : gfc_add_block_to_block (&block, &se.post);
9760 : 282 : }
9761 : 18003 : else if (expr->ts.type == BT_UNION)
9762 : : {
9763 : 13 : tree tmp;
9764 : 13 : gfc_constructor *c = gfc_constructor_first (expr->value.constructor);
9765 : : /* We mark that the entire union should be initialized with a contrived
9766 : : EXPR_NULL expression at the beginning. */
9767 : 13 : if (c != NULL && c->n.component == NULL
9768 : 7 : && c->expr != NULL && c->expr->expr_type == EXPR_NULL)
9769 : : {
9770 : 6 : tmp = build2_loc (input_location, MODIFY_EXPR, void_type_node,
9771 : 6 : dest, build_constructor (TREE_TYPE (dest), NULL));
9772 : 6 : gfc_add_expr_to_block (&block, tmp);
9773 : 6 : c = gfc_constructor_next (c);
9774 : : }
9775 : : /* The following constructor expression, if any, represents a specific
9776 : : map intializer, as given by the user. */
9777 : 13 : if (c != NULL && c->expr != NULL)
9778 : : {
9779 : 6 : gcc_assert (expr->expr_type == EXPR_STRUCTURE);
9780 : 6 : tmp = gfc_trans_structure_assign (dest, expr, expr->symtree != NULL);
9781 : 6 : gfc_add_expr_to_block (&block, tmp);
9782 : : }
9783 : : }
9784 : 17990 : else if (expr->ts.type == BT_DERIVED && expr->ts.f90_type != BT_VOID)
9785 : : {
9786 : 2801 : if (expr->expr_type != EXPR_STRUCTURE)
9787 : : {
9788 : 344 : tree dealloc = NULL_TREE;
9789 : 344 : gfc_init_se (&se, NULL);
9790 : 344 : gfc_conv_expr (&se, expr);
9791 : 344 : gfc_add_block_to_block (&block, &se.pre);
9792 : : /* Prevent repeat evaluations in gfc_copy_alloc_comp by fixing the
9793 : : expression in a temporary variable and deallocate the allocatable
9794 : : components. Then we can the copy the expression to the result. */
9795 : 344 : if (cm->ts.u.derived->attr.alloc_comp
9796 : 246 : && expr->expr_type != EXPR_VARIABLE)
9797 : : {
9798 : 216 : se.expr = gfc_evaluate_now (se.expr, &block);
9799 : 216 : dealloc = gfc_deallocate_alloc_comp (cm->ts.u.derived, se.expr,
9800 : : expr->rank);
9801 : : }
9802 : 344 : gfc_add_modify (&block, dest,
9803 : 344 : fold_convert (TREE_TYPE (dest), se.expr));
9804 : 344 : if (cm->ts.u.derived->attr.alloc_comp
9805 : 246 : && expr->expr_type != EXPR_NULL)
9806 : : {
9807 : : // TODO: Fix caf_mode
9808 : 48 : tmp = gfc_copy_alloc_comp (cm->ts.u.derived, se.expr,
9809 : : dest, expr->rank, 0);
9810 : 48 : gfc_add_expr_to_block (&block, tmp);
9811 : 48 : if (dealloc != NULL_TREE)
9812 : 18 : gfc_add_expr_to_block (&block, dealloc);
9813 : : }
9814 : 344 : gfc_add_block_to_block (&block, &se.post);
9815 : : }
9816 : : else
9817 : : {
9818 : : /* Nested constructors. */
9819 : 2457 : tmp = gfc_trans_structure_assign (dest, expr, expr->symtree != NULL);
9820 : 2457 : gfc_add_expr_to_block (&block, tmp);
9821 : : }
9822 : : }
9823 : 15189 : else if (gfc_deferred_strlen (cm, &tmp))
9824 : : {
9825 : 79 : tree strlen;
9826 : 79 : strlen = tmp;
9827 : 79 : gcc_assert (strlen);
9828 : 79 : strlen = fold_build3_loc (input_location, COMPONENT_REF,
9829 : 79 : TREE_TYPE (strlen),
9830 : 79 : TREE_OPERAND (dest, 0),
9831 : : strlen, NULL_TREE);
9832 : :
9833 : 79 : if (expr->expr_type == EXPR_NULL)
9834 : : {
9835 : 67 : tmp = build_int_cst (TREE_TYPE (cm->backend_decl), 0);
9836 : 67 : gfc_add_modify (&block, dest, tmp);
9837 : 67 : tmp = build_int_cst (TREE_TYPE (strlen), 0);
9838 : 67 : gfc_add_modify (&block, strlen, tmp);
9839 : : }
9840 : : else
9841 : : {
9842 : 12 : tree size;
9843 : 12 : gfc_init_se (&se, NULL);
9844 : 12 : gfc_conv_expr (&se, expr);
9845 : 12 : size = size_of_string_in_bytes (cm->ts.kind, se.string_length);
9846 : 12 : size = fold_convert (size_type_node, size);
9847 : 12 : tmp = build_call_expr_loc (input_location,
9848 : : builtin_decl_explicit (BUILT_IN_MALLOC),
9849 : : 1, size);
9850 : 12 : gfc_add_modify (&block, dest,
9851 : 12 : fold_convert (TREE_TYPE (dest), tmp));
9852 : 12 : gfc_add_modify (&block, strlen,
9853 : 12 : fold_convert (TREE_TYPE (strlen), se.string_length));
9854 : 12 : tmp = gfc_build_memcpy_call (dest, se.expr, size);
9855 : 12 : gfc_add_expr_to_block (&block, tmp);
9856 : : }
9857 : : }
9858 : 15110 : else if (!cm->attr.artificial)
9859 : : {
9860 : : /* Scalar component (excluding deferred parameters). */
9861 : 15034 : gfc_init_se (&se, NULL);
9862 : 15034 : gfc_init_se (&lse, NULL);
9863 : :
9864 : 15034 : gfc_conv_expr (&se, expr);
9865 : 15034 : if (cm->ts.type == BT_CHARACTER)
9866 : 1044 : lse.string_length = cm->ts.u.cl->backend_decl;
9867 : 15034 : lse.expr = dest;
9868 : 15034 : tmp = gfc_trans_scalar_assign (&lse, &se, cm->ts, false, false);
9869 : 15034 : gfc_add_expr_to_block (&block, tmp);
9870 : : }
9871 : 25365 : return gfc_finish_block (&block);
9872 : : }
9873 : :
9874 : : /* Assign a derived type constructor to a variable. */
9875 : :
9876 : : tree
9877 : 18088 : gfc_trans_structure_assign (tree dest, gfc_expr * expr, bool init, bool coarray)
9878 : : {
9879 : 18088 : gfc_constructor *c;
9880 : 18088 : gfc_component *cm;
9881 : 18088 : stmtblock_t block;
9882 : 18088 : tree field;
9883 : 18088 : tree tmp;
9884 : 18088 : gfc_se se;
9885 : :
9886 : 18088 : gfc_start_block (&block);
9887 : :
9888 : 18088 : if (expr->ts.u.derived->from_intmod == INTMOD_ISO_C_BINDING
9889 : 183 : && (expr->ts.u.derived->intmod_sym_id == ISOCBINDING_PTR
9890 : 9 : || expr->ts.u.derived->intmod_sym_id == ISOCBINDING_FUNPTR))
9891 : : {
9892 : 183 : gfc_se lse;
9893 : :
9894 : 183 : gfc_init_se (&se, NULL);
9895 : 183 : gfc_init_se (&lse, NULL);
9896 : 183 : gfc_conv_expr (&se, gfc_constructor_first (expr->value.constructor)->expr);
9897 : 183 : lse.expr = dest;
9898 : 183 : gfc_add_modify (&block, lse.expr,
9899 : 183 : fold_convert (TREE_TYPE (lse.expr), se.expr));
9900 : :
9901 : 183 : return gfc_finish_block (&block);
9902 : : }
9903 : :
9904 : : /* Make sure that the derived type has been completely built. */
9905 : 17905 : if (!expr->ts.u.derived->backend_decl
9906 : 17905 : || !TYPE_FIELDS (expr->ts.u.derived->backend_decl))
9907 : : {
9908 : 223 : tmp = gfc_typenode_for_spec (&expr->ts);
9909 : 223 : gcc_assert (tmp);
9910 : : }
9911 : :
9912 : 17905 : cm = expr->ts.u.derived->components;
9913 : :
9914 : :
9915 : 17905 : if (coarray)
9916 : 101 : gfc_init_se (&se, NULL);
9917 : :
9918 : 17905 : for (c = gfc_constructor_first (expr->value.constructor);
9919 : 46123 : c; c = gfc_constructor_next (c), cm = cm->next)
9920 : : {
9921 : : /* Skip absent members in default initializers. */
9922 : 28218 : if (!c->expr && !cm->attr.allocatable)
9923 : 2853 : continue;
9924 : :
9925 : : /* Register the component with the caf-lib before it is initialized.
9926 : : Register only allocatable components, that are not coarray'ed
9927 : : components (%comp[*]). Only register when the constructor is the
9928 : : null-expression. */
9929 : 25365 : if (coarray && !cm->attr.codimension
9930 : 182 : && (cm->attr.allocatable || cm->attr.pointer)
9931 : 168 : && (!c->expr || c->expr->expr_type == EXPR_NULL))
9932 : : {
9933 : 168 : tree token, desc, size;
9934 : 336 : bool is_array = cm->ts.type == BT_CLASS
9935 : 168 : ? CLASS_DATA (cm)->attr.dimension : cm->attr.dimension;
9936 : :
9937 : 168 : field = cm->backend_decl;
9938 : 168 : field = fold_build3_loc (input_location, COMPONENT_REF,
9939 : 168 : TREE_TYPE (field), dest, field, NULL_TREE);
9940 : 168 : if (cm->ts.type == BT_CLASS)
9941 : 0 : field = gfc_class_data_get (field);
9942 : :
9943 : 168 : token
9944 : 168 : = is_array
9945 : 168 : ? gfc_conv_descriptor_token (field)
9946 : 49 : : fold_build3_loc (input_location, COMPONENT_REF,
9947 : 49 : TREE_TYPE (gfc_comp_caf_token (cm)), dest,
9948 : 49 : gfc_comp_caf_token (cm), NULL_TREE);
9949 : :
9950 : 168 : if (is_array)
9951 : : {
9952 : : /* The _caf_register routine looks at the rank of the array
9953 : : descriptor to decide whether the data registered is an array
9954 : : or not. */
9955 : 119 : int rank = cm->ts.type == BT_CLASS ? CLASS_DATA (cm)->as->rank
9956 : 119 : : cm->as->rank;
9957 : : /* When the rank is not known just set a positive rank, which
9958 : : suffices to recognize the data as array. */
9959 : 119 : if (rank < 0)
9960 : 0 : rank = 1;
9961 : 119 : size = build_zero_cst (size_type_node);
9962 : 119 : desc = field;
9963 : 119 : gfc_add_modify (&block, gfc_conv_descriptor_rank (desc),
9964 : 119 : build_int_cst (signed_char_type_node, rank));
9965 : : }
9966 : : else
9967 : : {
9968 : 49 : desc = gfc_conv_scalar_to_descriptor (&se, field,
9969 : 49 : cm->ts.type == BT_CLASS
9970 : 49 : ? CLASS_DATA (cm)->attr
9971 : : : cm->attr);
9972 : 49 : size = TYPE_SIZE_UNIT (TREE_TYPE (field));
9973 : : }
9974 : 168 : gfc_add_block_to_block (&block, &se.pre);
9975 : 336 : tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_register,
9976 : 168 : 7, size, build_int_cst (
9977 : : integer_type_node,
9978 : 168 : GFC_CAF_COARRAY_ALLOC_REGISTER_ONLY),
9979 : : gfc_build_addr_expr (pvoid_type_node,
9980 : : token),
9981 : : gfc_build_addr_expr (NULL_TREE, desc),
9982 : : null_pointer_node, null_pointer_node,
9983 : : integer_zero_node);
9984 : 168 : gfc_add_expr_to_block (&block, tmp);
9985 : : }
9986 : 25365 : field = cm->backend_decl;
9987 : 25365 : gcc_assert(field);
9988 : 25365 : tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
9989 : : dest, field, NULL_TREE);
9990 : 25365 : if (!c->expr)
9991 : : {
9992 : 0 : gfc_expr *e = gfc_get_null_expr (NULL);
9993 : 0 : tmp = gfc_trans_subcomponent_assign (tmp, cm, e, init);
9994 : 0 : gfc_free_expr (e);
9995 : : }
9996 : : else
9997 : 25365 : tmp = gfc_trans_subcomponent_assign (tmp, cm, c->expr, init);
9998 : 25365 : gfc_add_expr_to_block (&block, tmp);
9999 : : }
10000 : 17905 : return gfc_finish_block (&block);
10001 : : }
10002 : :
10003 : : static void
10004 : 21 : gfc_conv_union_initializer (vec<constructor_elt, va_gc> *&v,
10005 : : gfc_component *un, gfc_expr *init)
10006 : : {
10007 : 21 : gfc_constructor *ctor;
10008 : :
10009 : 21 : if (un->ts.type != BT_UNION || un == NULL || init == NULL)
10010 : : return;
10011 : :
10012 : 21 : ctor = gfc_constructor_first (init->value.constructor);
10013 : :
10014 : 21 : if (ctor == NULL || ctor->expr == NULL)
10015 : : return;
10016 : :
10017 : 21 : gcc_assert (init->expr_type == EXPR_STRUCTURE);
10018 : :
10019 : : /* If we have an 'initialize all' constructor, do it first. */
10020 : 21 : if (ctor->expr->expr_type == EXPR_NULL)
10021 : : {
10022 : 9 : tree union_type = TREE_TYPE (un->backend_decl);
10023 : 9 : tree val = build_constructor (union_type, NULL);
10024 : 9 : CONSTRUCTOR_APPEND_ELT (v, un->backend_decl, val);
10025 : 9 : ctor = gfc_constructor_next (ctor);
10026 : : }
10027 : :
10028 : : /* Add the map initializer on top. */
10029 : 21 : if (ctor != NULL && ctor->expr != NULL)
10030 : : {
10031 : 12 : gcc_assert (ctor->expr->expr_type == EXPR_STRUCTURE);
10032 : 12 : tree val = gfc_conv_initializer (ctor->expr, &un->ts,
10033 : 12 : TREE_TYPE (un->backend_decl),
10034 : 12 : un->attr.dimension, un->attr.pointer,
10035 : 12 : un->attr.proc_pointer);
10036 : 12 : CONSTRUCTOR_APPEND_ELT (v, un->backend_decl, val);
10037 : : }
10038 : : }
10039 : :
10040 : : /* Build an expression for a constructor. If init is nonzero then
10041 : : this is part of a static variable initializer. */
10042 : :
10043 : : void
10044 : 35178 : gfc_conv_structure (gfc_se * se, gfc_expr * expr, int init)
10045 : : {
10046 : 35178 : gfc_constructor *c;
10047 : 35178 : gfc_component *cm;
10048 : 35178 : tree val;
10049 : 35178 : tree type;
10050 : 35178 : tree tmp;
10051 : 35178 : vec<constructor_elt, va_gc> *v = NULL;
10052 : :
10053 : 35178 : gcc_assert (se->ss == NULL);
10054 : 35178 : gcc_assert (expr->expr_type == EXPR_STRUCTURE);
10055 : 35178 : type = gfc_typenode_for_spec (&expr->ts);
10056 : :
10057 : 35178 : if (!init)
10058 : : {
10059 : : /* Create a temporary variable and fill it in. */
10060 : 14283 : se->expr = gfc_create_var (type, expr->ts.u.derived->name);
10061 : : /* The symtree in expr is NULL, if the code to generate is for
10062 : : initializing the static members only. */
10063 : 28566 : tmp = gfc_trans_structure_assign (se->expr, expr, expr->symtree != NULL,
10064 : 14283 : se->want_coarray);
10065 : 14283 : gfc_add_expr_to_block (&se->pre, tmp);
10066 : 14283 : return;
10067 : : }
10068 : :
10069 : 20895 : cm = expr->ts.u.derived->components;
10070 : :
10071 : 20895 : for (c = gfc_constructor_first (expr->value.constructor);
10072 : 110185 : c && cm; c = gfc_constructor_next (c), cm = cm->next)
10073 : : {
10074 : : /* Skip absent members in default initializers and allocatable
10075 : : components. Although the latter have a default initializer
10076 : : of EXPR_NULL,... by default, the static nullify is not needed
10077 : : since this is done every time we come into scope. */
10078 : 89290 : if (!c->expr || (cm->attr.allocatable && cm->attr.flavor != FL_PROCEDURE))
10079 : 7522 : continue;
10080 : :
10081 : 81768 : if (cm->initializer && cm->initializer->expr_type != EXPR_NULL
10082 : 47256 : && strcmp (cm->name, "_extends") == 0
10083 : 1254 : && cm->initializer->symtree)
10084 : : {
10085 : 1254 : tree vtab;
10086 : 1254 : gfc_symbol *vtabs;
10087 : 1254 : vtabs = cm->initializer->symtree->n.sym;
10088 : 1254 : vtab = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtabs));
10089 : 1254 : vtab = unshare_expr_without_location (vtab);
10090 : 1254 : CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl, vtab);
10091 : 1254 : }
10092 : 80514 : else if (cm->ts.u.derived && strcmp (cm->name, "_size") == 0)
10093 : : {
10094 : 8930 : val = TYPE_SIZE_UNIT (gfc_get_derived_type (cm->ts.u.derived));
10095 : 8930 : CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl,
10096 : : fold_convert (TREE_TYPE (cm->backend_decl),
10097 : : val));
10098 : 8930 : }
10099 : 71584 : else if (cm->ts.type == BT_INTEGER && strcmp (cm->name, "_len") == 0)
10100 : 386 : CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl,
10101 : : fold_convert (TREE_TYPE (cm->backend_decl),
10102 : 386 : integer_zero_node));
10103 : 71198 : else if (cm->ts.type == BT_UNION)
10104 : 21 : gfc_conv_union_initializer (v, cm, c->expr);
10105 : : else
10106 : : {
10107 : 71177 : val = gfc_conv_initializer (c->expr, &cm->ts,
10108 : 71177 : TREE_TYPE (cm->backend_decl),
10109 : : cm->attr.dimension, cm->attr.pointer,
10110 : 71177 : cm->attr.proc_pointer);
10111 : 71177 : val = unshare_expr_without_location (val);
10112 : :
10113 : : /* Append it to the constructor list. */
10114 : 160467 : CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl, val);
10115 : : }
10116 : : }
10117 : :
10118 : 20895 : se->expr = build_constructor (type, v);
10119 : 20895 : if (init)
10120 : 20895 : TREE_CONSTANT (se->expr) = 1;
10121 : : }
10122 : :
10123 : :
10124 : : /* Translate a substring expression. */
10125 : :
10126 : : static void
10127 : 273 : gfc_conv_substring_expr (gfc_se * se, gfc_expr * expr)
10128 : : {
10129 : 273 : gfc_ref *ref;
10130 : :
10131 : 273 : ref = expr->ref;
10132 : :
10133 : 273 : gcc_assert (ref == NULL || ref->type == REF_SUBSTRING);
10134 : :
10135 : 546 : se->expr = gfc_build_wide_string_const (expr->ts.kind,
10136 : 273 : expr->value.character.length,
10137 : 273 : expr->value.character.string);
10138 : :
10139 : 273 : se->string_length = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (se->expr)));
10140 : 273 : TYPE_STRING_FLAG (TREE_TYPE (se->expr)) = 1;
10141 : :
10142 : 273 : if (ref)
10143 : 273 : gfc_conv_substring (se, ref, expr->ts.kind, NULL, &expr->where);
10144 : 273 : }
10145 : :
10146 : :
10147 : : /* Entry point for expression translation. Evaluates a scalar quantity.
10148 : : EXPR is the expression to be translated, and SE is the state structure if
10149 : : called from within the scalarized. */
10150 : :
10151 : : void
10152 : 2986599 : gfc_conv_expr (gfc_se * se, gfc_expr * expr)
10153 : : {
10154 : 2986599 : gfc_ss *ss;
10155 : :
10156 : 2986599 : ss = se->ss;
10157 : 2986599 : if (ss && ss->info->expr == expr
10158 : 214017 : && (ss->info->type == GFC_SS_SCALAR
10159 : : || ss->info->type == GFC_SS_REFERENCE))
10160 : : {
10161 : 34317 : gfc_ss_info *ss_info;
10162 : :
10163 : 34317 : ss_info = ss->info;
10164 : : /* Substitute a scalar expression evaluated outside the scalarization
10165 : : loop. */
10166 : 34317 : se->expr = ss_info->data.scalar.value;
10167 : 34317 : if (gfc_scalar_elemental_arg_saved_as_reference (ss_info))
10168 : 818 : se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
10169 : :
10170 : 34317 : se->string_length = ss_info->string_length;
10171 : 34317 : gfc_advance_se_ss_chain (se);
10172 : 34317 : return;
10173 : : }
10174 : :
10175 : : /* We need to convert the expressions for the iso_c_binding derived types.
10176 : : C_NULL_PTR and C_NULL_FUNPTR will be made EXPR_NULL, which evaluates to
10177 : : null_pointer_node. C_PTR and C_FUNPTR are converted to match the
10178 : : typespec for the C_PTR and C_FUNPTR symbols, which has already been
10179 : : updated to be an integer with a kind equal to the size of a (void *). */
10180 : 2952282 : if (expr->ts.type == BT_DERIVED && expr->ts.u.derived->ts.f90_type == BT_VOID
10181 : 15157 : && expr->ts.u.derived->attr.is_bind_c)
10182 : : {
10183 : 14340 : if (expr->expr_type == EXPR_VARIABLE
10184 : 10146 : && (expr->symtree->n.sym->intmod_sym_id == ISOCBINDING_NULL_PTR
10185 : 10146 : || expr->symtree->n.sym->intmod_sym_id
10186 : : == ISOCBINDING_NULL_FUNPTR))
10187 : : {
10188 : : /* Set expr_type to EXPR_NULL, which will result in
10189 : : null_pointer_node being used below. */
10190 : 0 : expr->expr_type = EXPR_NULL;
10191 : : }
10192 : : else
10193 : : {
10194 : : /* Update the type/kind of the expression to be what the new
10195 : : type/kind are for the updated symbols of C_PTR/C_FUNPTR. */
10196 : 14340 : expr->ts.type = BT_INTEGER;
10197 : 14340 : expr->ts.f90_type = BT_VOID;
10198 : 14340 : expr->ts.kind = gfc_index_integer_kind;
10199 : : }
10200 : : }
10201 : :
10202 : 2952282 : gfc_fix_class_refs (expr);
10203 : :
10204 : 2952282 : switch (expr->expr_type)
10205 : : {
10206 : 362401 : case EXPR_OP:
10207 : 362401 : gfc_conv_expr_op (se, expr);
10208 : 362401 : break;
10209 : :
10210 : 277320 : case EXPR_FUNCTION:
10211 : 277320 : gfc_conv_function_expr (se, expr);
10212 : 277320 : break;
10213 : :
10214 : 998246 : case EXPR_CONSTANT:
10215 : 998246 : gfc_conv_constant (se, expr);
10216 : 998246 : break;
10217 : :
10218 : 1262361 : case EXPR_VARIABLE:
10219 : 1262361 : gfc_conv_variable (se, expr);
10220 : 1262361 : break;
10221 : :
10222 : 3747 : case EXPR_NULL:
10223 : 3747 : se->expr = null_pointer_node;
10224 : 3747 : break;
10225 : :
10226 : 273 : case EXPR_SUBSTRING:
10227 : 273 : gfc_conv_substring_expr (se, expr);
10228 : 273 : break;
10229 : :
10230 : 14283 : case EXPR_STRUCTURE:
10231 : 14283 : gfc_conv_structure (se, expr, 0);
10232 : : /* F2008 4.5.6.3 para 5: If an executable construct references a
10233 : : structure constructor or array constructor, the entity created by
10234 : : the constructor is finalized after execution of the innermost
10235 : : executable construct containing the reference. This, in fact,
10236 : : was later deleted by the Combined Techical Corrigenda 1 TO 4 for
10237 : : fortran 2008 (f08/0011). */
10238 : 14283 : if ((gfc_option.allow_std & (GFC_STD_F2008 | GFC_STD_F2003))
10239 : 14283 : && !(gfc_option.allow_std & GFC_STD_GNU)
10240 : 139 : && expr->must_finalize
10241 : 14295 : && gfc_may_be_finalized (expr->ts))
10242 : : {
10243 : 12 : locus loc;
10244 : 12 : gfc_locus_from_location (&loc, input_location);
10245 : 12 : gfc_warning (0, "The structure constructor at %L has been"
10246 : : " finalized. This feature was removed by f08/0011."
10247 : : " Use -std=f2018 or -std=gnu to eliminate the"
10248 : : " finalization.", &loc);
10249 : 12 : symbol_attribute attr;
10250 : 12 : attr.allocatable = attr.pointer = 0;
10251 : 12 : gfc_finalize_tree_expr (se, expr->ts.u.derived, attr, 0);
10252 : 12 : gfc_add_block_to_block (&se->post, &se->finalblock);
10253 : : }
10254 : : break;
10255 : :
10256 : 33651 : case EXPR_ARRAY:
10257 : 33651 : gfc_conv_array_constructor_expr (se, expr);
10258 : 33651 : gfc_add_block_to_block (&se->post, &se->finalblock);
10259 : 33651 : break;
10260 : :
10261 : 0 : default:
10262 : 0 : gcc_unreachable ();
10263 : 2986599 : break;
10264 : : }
10265 : : }
10266 : :
10267 : : /* Like gfc_conv_expr_val, but the value is also suitable for use in the lhs
10268 : : of an assignment. */
10269 : : void
10270 : 344342 : gfc_conv_expr_lhs (gfc_se * se, gfc_expr * expr)
10271 : : {
10272 : 344342 : gfc_conv_expr (se, expr);
10273 : : /* All numeric lvalues should have empty post chains. If not we need to
10274 : : figure out a way of rewriting an lvalue so that it has no post chain. */
10275 : 344342 : gcc_assert (expr->ts.type == BT_CHARACTER || !se->post.head);
10276 : 344342 : }
10277 : :
10278 : : /* Like gfc_conv_expr, but the POST block is guaranteed to be empty for
10279 : : numeric expressions. Used for scalar values where inserting cleanup code
10280 : : is inconvenient. */
10281 : : void
10282 : 861177 : gfc_conv_expr_val (gfc_se * se, gfc_expr * expr)
10283 : : {
10284 : 861177 : tree val;
10285 : :
10286 : 861177 : gcc_assert (expr->ts.type != BT_CHARACTER);
10287 : 861177 : gfc_conv_expr (se, expr);
10288 : 861177 : if (se->post.head)
10289 : : {
10290 : 2408 : val = gfc_create_var (TREE_TYPE (se->expr), NULL);
10291 : 2408 : gfc_add_modify (&se->pre, val, se->expr);
10292 : 2408 : se->expr = val;
10293 : 2408 : gfc_add_block_to_block (&se->pre, &se->post);
10294 : : }
10295 : 861177 : }
10296 : :
10297 : : /* Helper to translate an expression and convert it to a particular type. */
10298 : : void
10299 : 271180 : gfc_conv_expr_type (gfc_se * se, gfc_expr * expr, tree type)
10300 : : {
10301 : 271180 : gfc_conv_expr_val (se, expr);
10302 : 271180 : se->expr = convert (type, se->expr);
10303 : 271180 : }
10304 : :
10305 : :
10306 : : /* Converts an expression so that it can be passed by reference. Scalar
10307 : : values only. */
10308 : :
10309 : : void
10310 : 218194 : gfc_conv_expr_reference (gfc_se * se, gfc_expr * expr)
10311 : : {
10312 : 218194 : gfc_ss *ss;
10313 : 218194 : tree var;
10314 : :
10315 : 218194 : ss = se->ss;
10316 : 218194 : if (ss && ss->info->expr == expr
10317 : 7099 : && ss->info->type == GFC_SS_REFERENCE)
10318 : : {
10319 : : /* Returns a reference to the scalar evaluated outside the loop
10320 : : for this case. */
10321 : 822 : gfc_conv_expr (se, expr);
10322 : :
10323 : 822 : if (expr->ts.type == BT_CHARACTER
10324 : 114 : && expr->expr_type != EXPR_FUNCTION)
10325 : 102 : gfc_conv_string_parameter (se);
10326 : : else
10327 : 720 : se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
10328 : :
10329 : 822 : return;
10330 : : }
10331 : :
10332 : 217372 : if (expr->ts.type == BT_CHARACTER)
10333 : : {
10334 : 48631 : gfc_conv_expr (se, expr);
10335 : 48631 : gfc_conv_string_parameter (se);
10336 : 48631 : return;
10337 : : }
10338 : :
10339 : 168741 : if (expr->expr_type == EXPR_VARIABLE)
10340 : : {
10341 : 66536 : se->want_pointer = 1;
10342 : 66536 : gfc_conv_expr (se, expr);
10343 : 66536 : if (se->post.head)
10344 : : {
10345 : 0 : var = gfc_create_var (TREE_TYPE (se->expr), NULL);
10346 : 0 : gfc_add_modify (&se->pre, var, se->expr);
10347 : 0 : gfc_add_block_to_block (&se->pre, &se->post);
10348 : 0 : se->expr = var;
10349 : : }
10350 : 66536 : return;
10351 : : }
10352 : :
10353 : 102205 : if (expr->expr_type == EXPR_FUNCTION
10354 : 12904 : && ((expr->value.function.esym
10355 : 2034 : && expr->value.function.esym->result
10356 : : && expr->value.function.esym->result->attr.pointer
10357 : 2033 : && !expr->value.function.esym->result->attr.dimension)
10358 : 12834 : || (!expr->value.function.esym && !expr->ref
10359 : 10764 : && expr->symtree->n.sym->attr.pointer
10360 : 10764 : && !expr->symtree->n.sym->attr.dimension)))
10361 : : {
10362 : 70 : se->want_pointer = 1;
10363 : 70 : gfc_conv_expr (se, expr);
10364 : 70 : var = gfc_create_var (TREE_TYPE (se->expr), NULL);
10365 : 70 : gfc_add_modify (&se->pre, var, se->expr);
10366 : 70 : se->expr = var;
10367 : 70 : return;
10368 : : }
10369 : :
10370 : 102135 : gfc_conv_expr (se, expr);
10371 : :
10372 : : /* Create a temporary var to hold the value. */
10373 : 102135 : if (TREE_CONSTANT (se->expr))
10374 : : {
10375 : : tree tmp = se->expr;
10376 : 81238 : STRIP_TYPE_NOPS (tmp);
10377 : 81238 : var = build_decl (input_location,
10378 : 81238 : CONST_DECL, NULL, TREE_TYPE (tmp));
10379 : 81238 : DECL_INITIAL (var) = tmp;
10380 : 81238 : TREE_STATIC (var) = 1;
10381 : 81238 : pushdecl (var);
10382 : : }
10383 : : else
10384 : : {
10385 : 20897 : var = gfc_create_var (TREE_TYPE (se->expr), NULL);
10386 : 20897 : gfc_add_modify (&se->pre, var, se->expr);
10387 : : }
10388 : :
10389 : 102135 : if (!expr->must_finalize)
10390 : 102045 : gfc_add_block_to_block (&se->pre, &se->post);
10391 : :
10392 : : /* Take the address of that value. */
10393 : 102135 : se->expr = gfc_build_addr_expr (NULL_TREE, var);
10394 : : }
10395 : :
10396 : :
10397 : : /* Get the _len component for an unlimited polymorphic expression. */
10398 : :
10399 : : static tree
10400 : 1617 : trans_get_upoly_len (stmtblock_t *block, gfc_expr *expr)
10401 : : {
10402 : 1617 : gfc_se se;
10403 : 1617 : gfc_ref *ref = expr->ref;
10404 : :
10405 : 1617 : gfc_init_se (&se, NULL);
10406 : 3288 : while (ref && ref->next)
10407 : : ref = ref->next;
10408 : 1617 : gfc_add_len_component (expr);
10409 : 1617 : gfc_conv_expr (&se, expr);
10410 : 1617 : gfc_add_block_to_block (block, &se.pre);
10411 : 1617 : gcc_assert (se.post.head == NULL_TREE);
10412 : 1617 : if (ref)
10413 : : {
10414 : 220 : gfc_free_ref_list (ref->next);
10415 : 220 : ref->next = NULL;
10416 : : }
10417 : : else
10418 : : {
10419 : 1397 : gfc_free_ref_list (expr->ref);
10420 : 1397 : expr->ref = NULL;
10421 : : }
10422 : 1617 : return se.expr;
10423 : : }
10424 : :
10425 : :
10426 : : /* Assign _vptr and _len components as appropriate. BLOCK should be a
10427 : : statement-list outside of the scalarizer-loop. When code is generated, that
10428 : : depends on the scalarized expression, it is added to RSE.PRE.
10429 : : Returns le's _vptr tree and when set the len expressions in to_lenp and
10430 : : from_lenp to form a le%_vptr%_copy (re, le, [from_lenp, to_lenp])
10431 : : expression. */
10432 : :
10433 : : static tree
10434 : 4262 : trans_class_vptr_len_assignment (stmtblock_t *block, gfc_expr * le,
10435 : : gfc_expr * re, gfc_se *rse,
10436 : : tree * to_lenp, tree * from_lenp,
10437 : : tree * from_vptrp)
10438 : : {
10439 : 4262 : gfc_se se;
10440 : 4262 : gfc_expr * vptr_expr;
10441 : 4262 : tree tmp, to_len = NULL_TREE, from_len = NULL_TREE, lhs_vptr;
10442 : 4262 : bool set_vptr = false, temp_rhs = false;
10443 : 4262 : stmtblock_t *pre = block;
10444 : 4262 : tree class_expr = NULL_TREE;
10445 : 4262 : tree from_vptr = NULL_TREE;
10446 : :
10447 : : /* Create a temporary for complicated expressions. */
10448 : 4262 : if (re->expr_type != EXPR_VARIABLE && re->expr_type != EXPR_NULL
10449 : 1128 : && rse->expr != NULL_TREE)
10450 : : {
10451 : 1128 : if (!DECL_P (rse->expr))
10452 : : {
10453 : 306 : if (re->ts.type == BT_CLASS && !GFC_CLASS_TYPE_P (TREE_TYPE (rse->expr)))
10454 : 37 : class_expr = gfc_get_class_from_expr (rse->expr);
10455 : :
10456 : 306 : if (rse->loop)
10457 : 93 : pre = &rse->loop->pre;
10458 : : else
10459 : 213 : pre = &rse->pre;
10460 : :
10461 : 306 : if (class_expr != NULL_TREE && UNLIMITED_POLY (re))
10462 : 37 : tmp = gfc_evaluate_now (TREE_OPERAND (rse->expr, 0), &rse->pre);
10463 : : else
10464 : 269 : tmp = gfc_evaluate_now (rse->expr, &rse->pre);
10465 : :
10466 : 306 : rse->expr = tmp;
10467 : : }
10468 : : else
10469 : 822 : pre = &rse->pre;
10470 : :
10471 : : temp_rhs = true;
10472 : : }
10473 : :
10474 : : /* Get the _vptr for the left-hand side expression. */
10475 : 4262 : gfc_init_se (&se, NULL);
10476 : 4262 : vptr_expr = gfc_find_and_cut_at_last_class_ref (le);
10477 : 4262 : if (vptr_expr != NULL && gfc_expr_attr (vptr_expr).class_ok)
10478 : : {
10479 : : /* Care about _len for unlimited polymorphic entities. */
10480 : 4244 : if (UNLIMITED_POLY (vptr_expr)
10481 : 3389 : || (vptr_expr->ts.type == BT_DERIVED
10482 : 2403 : && vptr_expr->ts.u.derived->attr.unlimited_polymorphic))
10483 : 1333 : to_len = trans_get_upoly_len (block, vptr_expr);
10484 : 4244 : gfc_add_vptr_component (vptr_expr);
10485 : 4244 : set_vptr = true;
10486 : : }
10487 : : else
10488 : 18 : vptr_expr = gfc_lval_expr_from_sym (gfc_find_vtab (&le->ts));
10489 : 4262 : se.want_pointer = 1;
10490 : 4262 : gfc_conv_expr (&se, vptr_expr);
10491 : 4262 : gfc_free_expr (vptr_expr);
10492 : 4262 : gfc_add_block_to_block (block, &se.pre);
10493 : 4262 : gcc_assert (se.post.head == NULL_TREE);
10494 : 4262 : lhs_vptr = se.expr;
10495 : 4262 : STRIP_NOPS (lhs_vptr);
10496 : :
10497 : : /* Set the _vptr only when the left-hand side of the assignment is a
10498 : : class-object. */
10499 : 4262 : if (set_vptr)
10500 : : {
10501 : : /* Get the vptr from the rhs expression only, when it is variable.
10502 : : Functions are expected to be assigned to a temporary beforehand. */
10503 : 3009 : vptr_expr = (re->expr_type == EXPR_VARIABLE && re->ts.type == BT_CLASS)
10504 : 4991 : ? gfc_find_and_cut_at_last_class_ref (re)
10505 : : : NULL;
10506 : 747 : if (vptr_expr != NULL && vptr_expr->ts.type == BT_CLASS)
10507 : : {
10508 : 747 : if (to_len != NULL_TREE)
10509 : : {
10510 : : /* Get the _len information from the rhs. */
10511 : 299 : if (UNLIMITED_POLY (vptr_expr)
10512 : : || (vptr_expr->ts.type == BT_DERIVED
10513 : : && vptr_expr->ts.u.derived->attr.unlimited_polymorphic))
10514 : 272 : from_len = trans_get_upoly_len (block, vptr_expr);
10515 : : }
10516 : 747 : gfc_add_vptr_component (vptr_expr);
10517 : : }
10518 : : else
10519 : : {
10520 : 3497 : if (re->expr_type == EXPR_VARIABLE
10521 : 2262 : && DECL_P (re->symtree->n.sym->backend_decl)
10522 : 2262 : && DECL_LANG_SPECIFIC (re->symtree->n.sym->backend_decl)
10523 : 813 : && GFC_DECL_SAVED_DESCRIPTOR (re->symtree->n.sym->backend_decl)
10524 : 3564 : && GFC_CLASS_TYPE_P (TREE_TYPE (GFC_DECL_SAVED_DESCRIPTOR (
10525 : : re->symtree->n.sym->backend_decl))))
10526 : : {
10527 : 43 : vptr_expr = NULL;
10528 : 43 : se.expr = gfc_class_vptr_get (GFC_DECL_SAVED_DESCRIPTOR (
10529 : : re->symtree->n.sym->backend_decl));
10530 : 43 : if (to_len && UNLIMITED_POLY (re))
10531 : 0 : from_len = gfc_class_len_get (GFC_DECL_SAVED_DESCRIPTOR (
10532 : : re->symtree->n.sym->backend_decl));
10533 : : }
10534 : 3454 : else if (temp_rhs && re->ts.type == BT_CLASS)
10535 : : {
10536 : 207 : vptr_expr = NULL;
10537 : 207 : if (class_expr)
10538 : : tmp = class_expr;
10539 : 170 : else if (!GFC_CLASS_TYPE_P (TREE_TYPE (rse->expr)))
10540 : 0 : tmp = gfc_get_class_from_expr (rse->expr);
10541 : : else
10542 : : tmp = rse->expr;
10543 : :
10544 : 207 : se.expr = gfc_class_vptr_get (tmp);
10545 : 207 : from_vptr = se.expr;
10546 : 207 : if (UNLIMITED_POLY (re))
10547 : 67 : from_len = gfc_class_len_get (tmp);
10548 : :
10549 : : }
10550 : 3247 : else if (re->expr_type != EXPR_NULL)
10551 : : /* Only when rhs is non-NULL use its declared type for vptr
10552 : : initialisation. */
10553 : 3128 : vptr_expr = gfc_lval_expr_from_sym (gfc_find_vtab (&re->ts));
10554 : : else
10555 : : /* When the rhs is NULL use the vtab of lhs' declared type. */
10556 : 119 : vptr_expr = gfc_lval_expr_from_sym (gfc_find_vtab (&le->ts));
10557 : : }
10558 : :
10559 : 4061 : if (vptr_expr)
10560 : : {
10561 : 3994 : gfc_init_se (&se, NULL);
10562 : 3994 : se.want_pointer = 1;
10563 : 3994 : gfc_conv_expr (&se, vptr_expr);
10564 : 3994 : gfc_free_expr (vptr_expr);
10565 : 3994 : gfc_add_block_to_block (block, &se.pre);
10566 : 3994 : gcc_assert (se.post.head == NULL_TREE);
10567 : 3994 : from_vptr = se.expr;
10568 : : }
10569 : 4244 : gfc_add_modify (pre, lhs_vptr, fold_convert (TREE_TYPE (lhs_vptr),
10570 : : se.expr));
10571 : :
10572 : 4244 : if (to_len != NULL_TREE)
10573 : : {
10574 : : /* The _len component needs to be set. Figure how to get the
10575 : : value of the right-hand side. */
10576 : 1333 : if (from_len == NULL_TREE)
10577 : : {
10578 : 994 : if (rse->string_length != NULL_TREE)
10579 : : from_len = rse->string_length;
10580 : 554 : else if (re->ts.type == BT_CHARACTER && re->ts.u.cl->length)
10581 : : {
10582 : 0 : gfc_init_se (&se, NULL);
10583 : 0 : gfc_conv_expr (&se, re->ts.u.cl->length);
10584 : 0 : gfc_add_block_to_block (block, &se.pre);
10585 : 0 : gcc_assert (se.post.head == NULL_TREE);
10586 : 0 : from_len = gfc_evaluate_now (se.expr, block);
10587 : : }
10588 : : else
10589 : 554 : from_len = build_zero_cst (gfc_charlen_type_node);
10590 : : }
10591 : 1333 : gfc_add_modify (pre, to_len, fold_convert (TREE_TYPE (to_len),
10592 : : from_len));
10593 : : }
10594 : : }
10595 : :
10596 : : /* Return the _len and _vptr trees only, when requested. */
10597 : 4262 : if (to_lenp)
10598 : 3132 : *to_lenp = to_len;
10599 : 4262 : if (from_lenp)
10600 : 3132 : *from_lenp = from_len;
10601 : 4262 : if (from_vptrp)
10602 : 3132 : *from_vptrp = from_vptr;
10603 : 4262 : return lhs_vptr;
10604 : : }
10605 : :
10606 : :
10607 : : /* Assign tokens for pointer components. */
10608 : :
10609 : : static void
10610 : 6 : trans_caf_token_assign (gfc_se *lse, gfc_se *rse, gfc_expr *expr1,
10611 : : gfc_expr *expr2)
10612 : : {
10613 : 6 : symbol_attribute lhs_attr, rhs_attr;
10614 : 6 : tree tmp, lhs_tok, rhs_tok;
10615 : : /* Flag to indicated component refs on the rhs. */
10616 : 6 : bool rhs_cr;
10617 : :
10618 : 6 : lhs_attr = gfc_caf_attr (expr1);
10619 : 6 : if (expr2->expr_type != EXPR_NULL)
10620 : : {
10621 : 4 : rhs_attr = gfc_caf_attr (expr2, false, &rhs_cr);
10622 : 4 : if (lhs_attr.codimension && rhs_attr.codimension)
10623 : : {
10624 : 2 : lhs_tok = gfc_get_ultimate_alloc_ptr_comps_caf_token (lse, expr1);
10625 : 2 : lhs_tok = build_fold_indirect_ref (lhs_tok);
10626 : :
10627 : 2 : if (rhs_cr)
10628 : 0 : rhs_tok = gfc_get_ultimate_alloc_ptr_comps_caf_token (rse, expr2);
10629 : : else
10630 : : {
10631 : 2 : tree caf_decl;
10632 : 2 : caf_decl = gfc_get_tree_for_caf_expr (expr2);
10633 : 2 : gfc_get_caf_token_offset (rse, &rhs_tok, NULL, caf_decl,
10634 : : NULL_TREE, NULL);
10635 : : }
10636 : 2 : tmp = build2_loc (input_location, MODIFY_EXPR, void_type_node,
10637 : : lhs_tok,
10638 : 2 : fold_convert (TREE_TYPE (lhs_tok), rhs_tok));
10639 : 2 : gfc_prepend_expr_to_block (&lse->post, tmp);
10640 : : }
10641 : : }
10642 : 2 : else if (lhs_attr.codimension)
10643 : : {
10644 : 2 : lhs_tok = gfc_get_ultimate_alloc_ptr_comps_caf_token (lse, expr1);
10645 : 2 : if (!lhs_tok)
10646 : : {
10647 : 1 : lhs_tok = gfc_get_tree_for_caf_expr (expr1);
10648 : 1 : lhs_tok = GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (lhs_tok));
10649 : : }
10650 : : else
10651 : 1 : lhs_tok = build_fold_indirect_ref (lhs_tok);
10652 : 2 : tmp = build2_loc (input_location, MODIFY_EXPR, void_type_node,
10653 : : lhs_tok, null_pointer_node);
10654 : 2 : gfc_prepend_expr_to_block (&lse->post, tmp);
10655 : : }
10656 : 6 : }
10657 : :
10658 : :
10659 : : /* Do everything that is needed for a CLASS function expr2. */
10660 : :
10661 : : static tree
10662 : 18 : trans_class_pointer_fcn (stmtblock_t *block, gfc_se *lse, gfc_se *rse,
10663 : : gfc_expr *expr1, gfc_expr *expr2)
10664 : : {
10665 : 18 : tree expr1_vptr = NULL_TREE;
10666 : 18 : tree tmp;
10667 : :
10668 : 18 : gfc_conv_function_expr (rse, expr2);
10669 : 18 : rse->expr = gfc_evaluate_now (rse->expr, &rse->pre);
10670 : :
10671 : 18 : if (expr1->ts.type != BT_CLASS)
10672 : 12 : rse->expr = gfc_class_data_get (rse->expr);
10673 : : else
10674 : : {
10675 : 6 : expr1_vptr = trans_class_vptr_len_assignment (block, expr1,
10676 : : expr2, rse,
10677 : : NULL, NULL, NULL);
10678 : 6 : gfc_add_block_to_block (block, &rse->pre);
10679 : 6 : tmp = gfc_create_var (TREE_TYPE (rse->expr), "ptrtemp");
10680 : 6 : gfc_add_modify (&lse->pre, tmp, rse->expr);
10681 : :
10682 : 12 : gfc_add_modify (&lse->pre, expr1_vptr,
10683 : 6 : fold_convert (TREE_TYPE (expr1_vptr),
10684 : : gfc_class_vptr_get (tmp)));
10685 : 6 : rse->expr = gfc_class_data_get (tmp);
10686 : : }
10687 : :
10688 : 18 : return expr1_vptr;
10689 : : }
10690 : :
10691 : :
10692 : : tree
10693 : 9527 : gfc_trans_pointer_assign (gfc_code * code)
10694 : : {
10695 : 9527 : return gfc_trans_pointer_assignment (code->expr1, code->expr2);
10696 : : }
10697 : :
10698 : :
10699 : : /* Generate code for a pointer assignment. */
10700 : :
10701 : : tree
10702 : 9552 : gfc_trans_pointer_assignment (gfc_expr * expr1, gfc_expr * expr2)
10703 : : {
10704 : 9552 : gfc_se lse;
10705 : 9552 : gfc_se rse;
10706 : 9552 : stmtblock_t block;
10707 : 9552 : tree desc;
10708 : 9552 : tree tmp;
10709 : 9552 : tree expr1_vptr = NULL_TREE;
10710 : 9552 : bool scalar, non_proc_ptr_assign;
10711 : 9552 : gfc_ss *ss;
10712 : :
10713 : 9552 : gfc_start_block (&block);
10714 : :
10715 : 9552 : gfc_init_se (&lse, NULL);
10716 : :
10717 : : /* Usually testing whether this is not a proc pointer assignment. */
10718 : 9552 : non_proc_ptr_assign = !(gfc_expr_attr (expr1).proc_pointer
10719 : 1157 : && expr2->expr_type == EXPR_VARIABLE
10720 : 928 : && expr2->symtree->n.sym->attr.flavor == FL_PROCEDURE);
10721 : :
10722 : : /* Check whether the expression is a scalar or not; we cannot use
10723 : : expr1->rank as it can be nonzero for proc pointers. */
10724 : 9552 : ss = gfc_walk_expr (expr1);
10725 : 9552 : scalar = ss == gfc_ss_terminator;
10726 : 9552 : if (!scalar)
10727 : 3883 : gfc_free_ss_chain (ss);
10728 : :
10729 : 9552 : if (expr1->ts.type == BT_DERIVED && expr2->ts.type == BT_CLASS
10730 : 84 : && expr2->expr_type != EXPR_FUNCTION && non_proc_ptr_assign)
10731 : : {
10732 : 66 : gfc_add_data_component (expr2);
10733 : : /* The following is required as gfc_add_data_component doesn't
10734 : : update ts.type if there is a trailing REF_ARRAY. */
10735 : 66 : expr2->ts.type = BT_DERIVED;
10736 : : }
10737 : :
10738 : 9552 : if (scalar)
10739 : : {
10740 : : /* Scalar pointers. */
10741 : 5669 : lse.want_pointer = 1;
10742 : 5669 : gfc_conv_expr (&lse, expr1);
10743 : 5669 : gfc_init_se (&rse, NULL);
10744 : 5669 : rse.want_pointer = 1;
10745 : 5669 : if (expr2->expr_type == EXPR_FUNCTION && expr2->ts.type == BT_CLASS)
10746 : 6 : trans_class_pointer_fcn (&block, &lse, &rse, expr1, expr2);
10747 : : else
10748 : 5663 : gfc_conv_expr (&rse, expr2);
10749 : :
10750 : 5669 : if (non_proc_ptr_assign && expr1->ts.type == BT_CLASS)
10751 : : {
10752 : 750 : trans_class_vptr_len_assignment (&block, expr1, expr2, &rse, NULL,
10753 : : NULL, NULL);
10754 : 750 : lse.expr = gfc_class_data_get (lse.expr);
10755 : : }
10756 : :
10757 : 5669 : if (expr1->symtree->n.sym->attr.proc_pointer
10758 : 5669 : && expr1->symtree->n.sym->attr.dummy)
10759 : 49 : lse.expr = build_fold_indirect_ref_loc (input_location,
10760 : : lse.expr);
10761 : :
10762 : 5669 : if (expr2->symtree && expr2->symtree->n.sym->attr.proc_pointer
10763 : 4515 : && expr2->symtree->n.sym->attr.dummy)
10764 : 20 : rse.expr = build_fold_indirect_ref_loc (input_location,
10765 : : rse.expr);
10766 : :
10767 : 5669 : gfc_add_block_to_block (&block, &lse.pre);
10768 : 5669 : gfc_add_block_to_block (&block, &rse.pre);
10769 : :
10770 : : /* Check character lengths if character expression. The test is only
10771 : : really added if -fbounds-check is enabled. Exclude deferred
10772 : : character length lefthand sides. */
10773 : 921 : if (expr1->ts.type == BT_CHARACTER && expr2->expr_type != EXPR_NULL
10774 : 747 : && !expr1->ts.deferred
10775 : 300 : && !expr1->symtree->n.sym->attr.proc_pointer
10776 : 5962 : && !gfc_is_proc_ptr_comp (expr1))
10777 : : {
10778 : 274 : gcc_assert (expr2->ts.type == BT_CHARACTER);
10779 : 274 : gcc_assert (lse.string_length && rse.string_length);
10780 : 274 : gfc_trans_same_strlen_check ("pointer assignment", &expr1->where,
10781 : : lse.string_length, rse.string_length,
10782 : : &block);
10783 : : }
10784 : :
10785 : : /* The assignment to an deferred character length sets the string
10786 : : length to that of the rhs. */
10787 : 5669 : if (expr1->ts.deferred)
10788 : : {
10789 : 562 : if (expr2->expr_type != EXPR_NULL && lse.string_length != NULL)
10790 : 445 : gfc_add_modify (&block, lse.string_length,
10791 : 445 : fold_convert (TREE_TYPE (lse.string_length),
10792 : : rse.string_length));
10793 : 117 : else if (lse.string_length != NULL)
10794 : 115 : gfc_add_modify (&block, lse.string_length,
10795 : 115 : build_zero_cst (TREE_TYPE (lse.string_length)));
10796 : : }
10797 : :
10798 : 5669 : gfc_add_modify (&block, lse.expr,
10799 : 5669 : fold_convert (TREE_TYPE (lse.expr), rse.expr));
10800 : :
10801 : 5669 : if (flag_coarray == GFC_FCOARRAY_LIB)
10802 : : {
10803 : 350 : if (expr1->ref)
10804 : : /* Also set the tokens for pointer components in derived typed
10805 : : coarrays. */
10806 : 6 : trans_caf_token_assign (&lse, &rse, expr1, expr2);
10807 : 344 : else if (gfc_caf_attr (expr1).codimension)
10808 : : {
10809 : 0 : tree lhs_caf_decl, rhs_caf_decl, lhs_tok, rhs_tok;
10810 : :
10811 : 0 : lhs_caf_decl = gfc_get_tree_for_caf_expr (expr1);
10812 : 0 : rhs_caf_decl = gfc_get_tree_for_caf_expr (expr2);
10813 : 0 : gfc_get_caf_token_offset (&lse, &lhs_tok, nullptr, lhs_caf_decl,
10814 : : NULL_TREE, expr1);
10815 : 0 : gfc_get_caf_token_offset (&rse, &rhs_tok, nullptr, rhs_caf_decl,
10816 : : NULL_TREE, expr2);
10817 : 0 : gfc_add_modify (&block, lhs_tok, rhs_tok);
10818 : : }
10819 : : }
10820 : :
10821 : 5669 : gfc_add_block_to_block (&block, &rse.post);
10822 : 5669 : gfc_add_block_to_block (&block, &lse.post);
10823 : : }
10824 : : else
10825 : : {
10826 : 3883 : gfc_ref* remap;
10827 : 3883 : bool rank_remap;
10828 : 3883 : tree strlen_lhs;
10829 : 3883 : tree strlen_rhs = NULL_TREE;
10830 : :
10831 : : /* Array pointer. Find the last reference on the LHS and if it is an
10832 : : array section ref, we're dealing with bounds remapping. In this case,
10833 : : set it to AR_FULL so that gfc_conv_expr_descriptor does
10834 : : not see it and process the bounds remapping afterwards explicitly. */
10835 : 12135 : for (remap = expr1->ref; remap; remap = remap->next)
10836 : 4694 : if (!remap->next && remap->type == REF_ARRAY
10837 : 3883 : && remap->u.ar.type == AR_SECTION)
10838 : : break;
10839 : 3883 : rank_remap = (remap && remap->u.ar.end[0]);
10840 : :
10841 : 325 : if (remap && expr2->expr_type == EXPR_NULL)
10842 : : {
10843 : 2 : gfc_error ("If bounds remapping is specified at %L, "
10844 : : "the pointer target shall not be NULL", &expr1->where);
10845 : 2 : return NULL_TREE;
10846 : : }
10847 : :
10848 : 3881 : gfc_init_se (&lse, NULL);
10849 : 3881 : if (remap)
10850 : 323 : lse.descriptor_only = 1;
10851 : 3881 : gfc_conv_expr_descriptor (&lse, expr1);
10852 : 3881 : strlen_lhs = lse.string_length;
10853 : 3881 : desc = lse.expr;
10854 : :
10855 : 3881 : if (expr2->expr_type == EXPR_NULL)
10856 : : {
10857 : : /* Just set the data pointer to null. */
10858 : 665 : gfc_conv_descriptor_data_set (&lse.pre, lse.expr, null_pointer_node);
10859 : : }
10860 : 3216 : else if (rank_remap)
10861 : : {
10862 : : /* If we are rank-remapping, just get the RHS's descriptor and
10863 : : process this later on. */
10864 : 200 : gfc_init_se (&rse, NULL);
10865 : 200 : rse.direct_byref = 1;
10866 : 200 : rse.byref_noassign = 1;
10867 : :
10868 : 200 : if (expr2->expr_type == EXPR_FUNCTION && expr2->ts.type == BT_CLASS)
10869 : 12 : expr1_vptr = trans_class_pointer_fcn (&block, &lse, &rse,
10870 : : expr1, expr2);
10871 : 188 : else if (expr2->expr_type == EXPR_FUNCTION)
10872 : : {
10873 : : tree bound[GFC_MAX_DIMENSIONS];
10874 : : int i;
10875 : :
10876 : 26 : for (i = 0; i < expr2->rank; i++)
10877 : 13 : bound[i] = NULL_TREE;
10878 : 13 : tmp = gfc_typenode_for_spec (&expr2->ts);
10879 : 13 : tmp = gfc_get_array_type_bounds (tmp, expr2->rank, 0,
10880 : : bound, bound, 0,
10881 : : GFC_ARRAY_POINTER_CONT, false);
10882 : 13 : tmp = gfc_create_var (tmp, "ptrtemp");
10883 : 13 : rse.descriptor_only = 0;
10884 : 13 : rse.expr = tmp;
10885 : 13 : rse.direct_byref = 1;
10886 : 13 : gfc_conv_expr_descriptor (&rse, expr2);
10887 : 13 : strlen_rhs = rse.string_length;
10888 : 13 : rse.expr = tmp;
10889 : : }
10890 : : else
10891 : : {
10892 : 175 : gfc_conv_expr_descriptor (&rse, expr2);
10893 : 175 : strlen_rhs = rse.string_length;
10894 : 175 : if (expr1->ts.type == BT_CLASS)
10895 : 36 : expr1_vptr = trans_class_vptr_len_assignment (&block, expr1,
10896 : : expr2, &rse,
10897 : : NULL, NULL,
10898 : : NULL);
10899 : : }
10900 : : }
10901 : 3016 : else if (expr2->expr_type == EXPR_VARIABLE)
10902 : : {
10903 : : /* Assign directly to the LHS's descriptor. */
10904 : 2890 : lse.descriptor_only = 0;
10905 : 2890 : lse.direct_byref = 1;
10906 : 2890 : gfc_conv_expr_descriptor (&lse, expr2);
10907 : 2890 : strlen_rhs = lse.string_length;
10908 : 2890 : gfc_init_se (&rse, NULL);
10909 : :
10910 : 2890 : if (expr1->ts.type == BT_CLASS)
10911 : : {
10912 : 325 : rse.expr = NULL_TREE;
10913 : 325 : rse.string_length = strlen_rhs;
10914 : 325 : trans_class_vptr_len_assignment (&block, expr1, expr2, &rse,
10915 : : NULL, NULL, NULL);
10916 : : }
10917 : :
10918 : 2890 : if (remap == NULL)
10919 : : {
10920 : : /* If the target is not a whole array, use the target array
10921 : : reference for remap. */
10922 : 5950 : for (remap = expr2->ref; remap; remap = remap->next)
10923 : 3284 : if (remap->type == REF_ARRAY
10924 : 2815 : && remap->u.ar.type == AR_FULL
10925 : 2159 : && remap->next)
10926 : : break;
10927 : : }
10928 : : }
10929 : 126 : else if (expr2->expr_type == EXPR_FUNCTION && expr2->ts.type == BT_CLASS)
10930 : : {
10931 : 19 : gfc_init_se (&rse, NULL);
10932 : 19 : rse.want_pointer = 1;
10933 : 19 : gfc_conv_function_expr (&rse, expr2);
10934 : 19 : if (expr1->ts.type != BT_CLASS)
10935 : : {
10936 : 6 : rse.expr = gfc_class_data_get (rse.expr);
10937 : 6 : gfc_add_modify (&lse.pre, desc, rse.expr);
10938 : : /* Set the lhs span. */
10939 : 6 : tmp = TREE_TYPE (rse.expr);
10940 : 6 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (tmp));
10941 : 6 : tmp = fold_convert (gfc_array_index_type, tmp);
10942 : 6 : gfc_conv_descriptor_span_set (&lse.pre, desc, tmp);
10943 : : }
10944 : : else
10945 : : {
10946 : 13 : expr1_vptr = trans_class_vptr_len_assignment (&block, expr1,
10947 : : expr2, &rse, NULL,
10948 : : NULL, NULL);
10949 : 13 : gfc_add_block_to_block (&block, &rse.pre);
10950 : 13 : tmp = gfc_create_var (TREE_TYPE (rse.expr), "ptrtemp");
10951 : 13 : gfc_add_modify (&lse.pre, tmp, rse.expr);
10952 : :
10953 : 26 : gfc_add_modify (&lse.pre, expr1_vptr,
10954 : 13 : fold_convert (TREE_TYPE (expr1_vptr),
10955 : : gfc_class_vptr_get (tmp)));
10956 : 13 : rse.expr = gfc_class_data_get (tmp);
10957 : 13 : gfc_add_modify (&lse.pre, desc, rse.expr);
10958 : : }
10959 : : }
10960 : : else
10961 : : {
10962 : : /* Assign to a temporary descriptor and then copy that
10963 : : temporary to the pointer. */
10964 : 107 : tmp = gfc_create_var (TREE_TYPE (desc), "ptrtemp");
10965 : 107 : lse.descriptor_only = 0;
10966 : 107 : lse.expr = tmp;
10967 : 107 : lse.direct_byref = 1;
10968 : 107 : gfc_conv_expr_descriptor (&lse, expr2);
10969 : 107 : strlen_rhs = lse.string_length;
10970 : 107 : gfc_add_modify (&lse.pre, desc, tmp);
10971 : : }
10972 : :
10973 : 3881 : if (expr1->ts.type == BT_CHARACTER
10974 : 572 : && expr1->ts.deferred)
10975 : : {
10976 : 326 : gfc_symbol *psym = expr1->symtree->n.sym;
10977 : 326 : tmp = NULL_TREE;
10978 : 326 : if (psym->ts.type == BT_CHARACTER
10979 : 325 : && psym->ts.u.cl->backend_decl)
10980 : 325 : tmp = psym->ts.u.cl->backend_decl;
10981 : 1 : else if (expr1->ts.u.cl->backend_decl
10982 : 1 : && VAR_P (expr1->ts.u.cl->backend_decl))
10983 : 0 : tmp = expr1->ts.u.cl->backend_decl;
10984 : 1 : else if (TREE_CODE (lse.expr) == COMPONENT_REF)
10985 : : {
10986 : 1 : gfc_ref *ref = expr1->ref;
10987 : 3 : for (;ref; ref = ref->next)
10988 : : {
10989 : 2 : if (ref->type == REF_COMPONENT
10990 : 1 : && ref->u.c.component->ts.type == BT_CHARACTER
10991 : 3 : && gfc_deferred_strlen (ref->u.c.component, &tmp))
10992 : 1 : tmp = fold_build3_loc (input_location, COMPONENT_REF,
10993 : 1 : TREE_TYPE (tmp),
10994 : 1 : TREE_OPERAND (lse.expr, 0),
10995 : : tmp, NULL_TREE);
10996 : : }
10997 : : }
10998 : :
10999 : 326 : gcc_assert (tmp);
11000 : :
11001 : 326 : if (expr2->expr_type != EXPR_NULL)
11002 : 314 : gfc_add_modify (&block, tmp,
11003 : 314 : fold_convert (TREE_TYPE (tmp), strlen_rhs));
11004 : : else
11005 : 12 : gfc_add_modify (&block, tmp, build_zero_cst (TREE_TYPE (tmp)));
11006 : : }
11007 : :
11008 : 3881 : gfc_add_block_to_block (&block, &lse.pre);
11009 : 3881 : if (rank_remap)
11010 : 200 : gfc_add_block_to_block (&block, &rse.pre);
11011 : :
11012 : : /* If we do bounds remapping, update LHS descriptor accordingly. */
11013 : 3881 : if (remap)
11014 : : {
11015 : 424 : int dim;
11016 : 424 : gcc_assert (remap->u.ar.dimen == expr1->rank);
11017 : :
11018 : 424 : if (rank_remap)
11019 : : {
11020 : : /* Do rank remapping. We already have the RHS's descriptor
11021 : : converted in rse and now have to build the correct LHS
11022 : : descriptor for it. */
11023 : :
11024 : 200 : tree dtype, data, span;
11025 : 200 : tree offs, stride;
11026 : 200 : tree lbound, ubound;
11027 : :
11028 : : /* Set dtype. */
11029 : 200 : dtype = gfc_conv_descriptor_dtype (desc);
11030 : 200 : tmp = gfc_get_dtype (TREE_TYPE (desc));
11031 : 200 : gfc_add_modify (&block, dtype, tmp);
11032 : :
11033 : : /* Copy data pointer. */
11034 : 200 : data = gfc_conv_descriptor_data_get (rse.expr);
11035 : 200 : gfc_conv_descriptor_data_set (&block, desc, data);
11036 : :
11037 : : /* Copy the span. */
11038 : 200 : if (VAR_P (rse.expr)
11039 : 200 : && GFC_DECL_PTR_ARRAY_P (rse.expr))
11040 : 12 : span = gfc_conv_descriptor_span_get (rse.expr);
11041 : : else
11042 : : {
11043 : 188 : tmp = TREE_TYPE (rse.expr);
11044 : 188 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (tmp));
11045 : 188 : span = fold_convert (gfc_array_index_type, tmp);
11046 : : }
11047 : 200 : gfc_conv_descriptor_span_set (&block, desc, span);
11048 : :
11049 : : /* Copy offset but adjust it such that it would correspond
11050 : : to a lbound of zero. */
11051 : 200 : if (expr2->rank == -1)
11052 : 42 : gfc_conv_descriptor_offset_set (&block, desc,
11053 : : gfc_index_zero_node);
11054 : : else
11055 : : {
11056 : 158 : offs = gfc_conv_descriptor_offset_get (rse.expr);
11057 : 492 : for (dim = 0; dim < expr2->rank; ++dim)
11058 : : {
11059 : 176 : stride = gfc_conv_descriptor_stride_get (rse.expr,
11060 : : gfc_rank_cst[dim]);
11061 : 176 : lbound = gfc_conv_descriptor_lbound_get (rse.expr,
11062 : : gfc_rank_cst[dim]);
11063 : 176 : tmp = fold_build2_loc (input_location, MULT_EXPR,
11064 : : gfc_array_index_type, stride,
11065 : : lbound);
11066 : 176 : offs = fold_build2_loc (input_location, PLUS_EXPR,
11067 : : gfc_array_index_type, offs, tmp);
11068 : : }
11069 : 158 : gfc_conv_descriptor_offset_set (&block, desc, offs);
11070 : : }
11071 : : /* Set the bounds as declared for the LHS and calculate strides as
11072 : : well as another offset update accordingly. */
11073 : 200 : stride = gfc_conv_descriptor_stride_get (rse.expr,
11074 : : gfc_rank_cst[0]);
11075 : 527 : for (dim = 0; dim < expr1->rank; ++dim)
11076 : : {
11077 : 327 : gfc_se lower_se;
11078 : 327 : gfc_se upper_se;
11079 : :
11080 : 327 : gcc_assert (remap->u.ar.start[dim] && remap->u.ar.end[dim]);
11081 : :
11082 : 327 : if (remap->u.ar.start[dim]->expr_type != EXPR_CONSTANT
11083 : : || remap->u.ar.start[dim]->expr_type != EXPR_VARIABLE)
11084 : 327 : gfc_resolve_expr (remap->u.ar.start[dim]);
11085 : 327 : if (remap->u.ar.end[dim]->expr_type != EXPR_CONSTANT
11086 : : || remap->u.ar.end[dim]->expr_type != EXPR_VARIABLE)
11087 : 327 : gfc_resolve_expr (remap->u.ar.end[dim]);
11088 : :
11089 : : /* Convert declared bounds. */
11090 : 327 : gfc_init_se (&lower_se, NULL);
11091 : 327 : gfc_init_se (&upper_se, NULL);
11092 : 327 : gfc_conv_expr (&lower_se, remap->u.ar.start[dim]);
11093 : 327 : gfc_conv_expr (&upper_se, remap->u.ar.end[dim]);
11094 : :
11095 : 327 : gfc_add_block_to_block (&block, &lower_se.pre);
11096 : 327 : gfc_add_block_to_block (&block, &upper_se.pre);
11097 : :
11098 : 327 : lbound = fold_convert (gfc_array_index_type, lower_se.expr);
11099 : 327 : ubound = fold_convert (gfc_array_index_type, upper_se.expr);
11100 : :
11101 : 327 : lbound = gfc_evaluate_now (lbound, &block);
11102 : 327 : ubound = gfc_evaluate_now (ubound, &block);
11103 : :
11104 : 327 : gfc_add_block_to_block (&block, &lower_se.post);
11105 : 327 : gfc_add_block_to_block (&block, &upper_se.post);
11106 : :
11107 : : /* Set bounds in descriptor. */
11108 : 327 : gfc_conv_descriptor_lbound_set (&block, desc,
11109 : : gfc_rank_cst[dim], lbound);
11110 : 327 : gfc_conv_descriptor_ubound_set (&block, desc,
11111 : : gfc_rank_cst[dim], ubound);
11112 : :
11113 : : /* Set stride. */
11114 : 327 : stride = gfc_evaluate_now (stride, &block);
11115 : 327 : gfc_conv_descriptor_stride_set (&block, desc,
11116 : : gfc_rank_cst[dim], stride);
11117 : :
11118 : : /* Update offset. */
11119 : 327 : offs = gfc_conv_descriptor_offset_get (desc);
11120 : 327 : tmp = fold_build2_loc (input_location, MULT_EXPR,
11121 : : gfc_array_index_type, lbound, stride);
11122 : 327 : offs = fold_build2_loc (input_location, MINUS_EXPR,
11123 : : gfc_array_index_type, offs, tmp);
11124 : 327 : offs = gfc_evaluate_now (offs, &block);
11125 : 327 : gfc_conv_descriptor_offset_set (&block, desc, offs);
11126 : :
11127 : : /* Update stride. */
11128 : 327 : tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
11129 : 327 : stride = fold_build2_loc (input_location, MULT_EXPR,
11130 : : gfc_array_index_type, stride, tmp);
11131 : : }
11132 : : }
11133 : : else
11134 : : {
11135 : : /* Bounds remapping. Just shift the lower bounds. */
11136 : :
11137 : 224 : gcc_assert (expr1->rank == expr2->rank);
11138 : :
11139 : 556 : for (dim = 0; dim < remap->u.ar.dimen; ++dim)
11140 : : {
11141 : 332 : gfc_se lbound_se;
11142 : :
11143 : 332 : gcc_assert (!remap->u.ar.end[dim]);
11144 : 332 : gfc_init_se (&lbound_se, NULL);
11145 : 332 : if (remap->u.ar.start[dim])
11146 : : {
11147 : 225 : gfc_conv_expr (&lbound_se, remap->u.ar.start[dim]);
11148 : 225 : gfc_add_block_to_block (&block, &lbound_se.pre);
11149 : : }
11150 : : else
11151 : : /* This remap arises from a target that is not a whole
11152 : : array. The start expressions will be NULL but we need
11153 : : the lbounds to be one. */
11154 : 107 : lbound_se.expr = gfc_index_one_node;
11155 : 332 : gfc_conv_shift_descriptor_lbound (&block, desc,
11156 : : dim, lbound_se.expr);
11157 : 332 : gfc_add_block_to_block (&block, &lbound_se.post);
11158 : : }
11159 : : }
11160 : : }
11161 : :
11162 : : /* If rank remapping was done, check with -fcheck=bounds that
11163 : : the target is at least as large as the pointer. */
11164 : 3881 : if (rank_remap && (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
11165 : 72 : && expr2->rank != -1)
11166 : : {
11167 : 54 : tree lsize, rsize;
11168 : 54 : tree fault;
11169 : 54 : const char* msg;
11170 : :
11171 : 54 : lsize = gfc_conv_descriptor_size (lse.expr, expr1->rank);
11172 : 54 : rsize = gfc_conv_descriptor_size (rse.expr, expr2->rank);
11173 : :
11174 : 54 : lsize = gfc_evaluate_now (lsize, &block);
11175 : 54 : rsize = gfc_evaluate_now (rsize, &block);
11176 : 54 : fault = fold_build2_loc (input_location, LT_EXPR, logical_type_node,
11177 : : rsize, lsize);
11178 : :
11179 : 54 : msg = _("Target of rank remapping is too small (%ld < %ld)");
11180 : 54 : gfc_trans_runtime_check (true, false, fault, &block, &expr2->where,
11181 : : msg, rsize, lsize);
11182 : : }
11183 : :
11184 : : /* Check string lengths if applicable. The check is only really added
11185 : : to the output code if -fbounds-check is enabled. */
11186 : 3881 : if (expr1->ts.type == BT_CHARACTER && expr2->expr_type != EXPR_NULL)
11187 : : {
11188 : 506 : gcc_assert (expr2->ts.type == BT_CHARACTER);
11189 : 506 : gcc_assert (strlen_lhs && strlen_rhs);
11190 : 506 : gfc_trans_same_strlen_check ("pointer assignment", &expr1->where,
11191 : : strlen_lhs, strlen_rhs, &block);
11192 : : }
11193 : :
11194 : 3881 : gfc_add_block_to_block (&block, &lse.post);
11195 : 3881 : if (rank_remap)
11196 : 200 : gfc_add_block_to_block (&block, &rse.post);
11197 : : }
11198 : :
11199 : 9550 : return gfc_finish_block (&block);
11200 : : }
11201 : :
11202 : :
11203 : : /* Makes sure se is suitable for passing as a function string parameter. */
11204 : : /* TODO: Need to check all callers of this function. It may be abused. */
11205 : :
11206 : : void
11207 : 231220 : gfc_conv_string_parameter (gfc_se * se)
11208 : : {
11209 : 231220 : tree type;
11210 : :
11211 : 231220 : if (TREE_CODE (TREE_TYPE (se->expr)) == INTEGER_TYPE
11212 : 231220 : && integer_onep (se->string_length))
11213 : : {
11214 : 667 : se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
11215 : 667 : return;
11216 : : }
11217 : :
11218 : 230553 : if (TREE_CODE (se->expr) == STRING_CST)
11219 : : {
11220 : 97331 : type = TREE_TYPE (TREE_TYPE (se->expr));
11221 : 97331 : se->expr = gfc_build_addr_expr (build_pointer_type (type), se->expr);
11222 : 97331 : return;
11223 : : }
11224 : :
11225 : 133222 : if ((TREE_CODE (TREE_TYPE (se->expr)) == ARRAY_TYPE
11226 : 51523 : || TREE_CODE (TREE_TYPE (se->expr)) == INTEGER_TYPE)
11227 : 133318 : && TYPE_STRING_FLAG (TREE_TYPE (se->expr)))
11228 : : {
11229 : 81795 : type = TREE_TYPE (se->expr);
11230 : 81795 : if (TREE_CODE (se->expr) != INDIRECT_REF)
11231 : 77023 : se->expr = gfc_build_addr_expr (build_pointer_type (type), se->expr);
11232 : : else
11233 : : {
11234 : 4772 : if (TREE_CODE (type) == ARRAY_TYPE)
11235 : 4772 : type = TREE_TYPE (type);
11236 : 4772 : type = gfc_get_character_type_len_for_eltype (type,
11237 : : se->string_length);
11238 : 4772 : type = build_pointer_type (type);
11239 : 4772 : se->expr = gfc_build_addr_expr (type, se->expr);
11240 : : }
11241 : : }
11242 : :
11243 : 133222 : gcc_assert (POINTER_TYPE_P (TREE_TYPE (se->expr)));
11244 : : }
11245 : :
11246 : :
11247 : : /* Generate code for assignment of scalar variables. Includes character
11248 : : strings and derived types with allocatable components.
11249 : : If you know that the LHS has no allocations, set dealloc to false.
11250 : :
11251 : : DEEP_COPY has no effect if the typespec TS is not a derived type with
11252 : : allocatable components. Otherwise, if it is set, an explicit copy of each
11253 : : allocatable component is made. This is necessary as a simple copy of the
11254 : : whole object would copy array descriptors as is, so that the lhs's
11255 : : allocatable components would point to the rhs's after the assignment.
11256 : : Typically, setting DEEP_COPY is necessary if the rhs is a variable, and not
11257 : : necessary if the rhs is a non-pointer function, as the allocatable components
11258 : : are not accessible by other means than the function's result after the
11259 : : function has returned. It is even more subtle when temporaries are involved,
11260 : : as the two following examples show:
11261 : : 1. When we evaluate an array constructor, a temporary is created. Thus
11262 : : there is theoretically no alias possible. However, no deep copy is
11263 : : made for this temporary, so that if the constructor is made of one or
11264 : : more variable with allocatable components, those components still point
11265 : : to the variable's: DEEP_COPY should be set for the assignment from the
11266 : : temporary to the lhs in that case.
11267 : : 2. When assigning a scalar to an array, we evaluate the scalar value out
11268 : : of the loop, store it into a temporary variable, and assign from that.
11269 : : In that case, deep copying when assigning to the temporary would be a
11270 : : waste of resources; however deep copies should happen when assigning from
11271 : : the temporary to each array element: again DEEP_COPY should be set for
11272 : : the assignment from the temporary to the lhs. */
11273 : :
11274 : : tree
11275 : 228661 : gfc_trans_scalar_assign (gfc_se *lse, gfc_se *rse, gfc_typespec ts,
11276 : : bool deep_copy, bool dealloc, bool in_coarray,
11277 : : bool assoc_assign)
11278 : : {
11279 : 228661 : stmtblock_t block;
11280 : 228661 : tree tmp;
11281 : 228661 : tree cond;
11282 : :
11283 : 228661 : gfc_init_block (&block);
11284 : :
11285 : 228661 : if (ts.type == BT_CHARACTER)
11286 : : {
11287 : 31078 : tree rlen = NULL;
11288 : 31078 : tree llen = NULL;
11289 : :
11290 : 31078 : if (lse->string_length != NULL_TREE)
11291 : : {
11292 : 31078 : gfc_conv_string_parameter (lse);
11293 : 31078 : gfc_add_block_to_block (&block, &lse->pre);
11294 : 31078 : llen = lse->string_length;
11295 : : }
11296 : :
11297 : 31078 : if (rse->string_length != NULL_TREE)
11298 : : {
11299 : 31078 : gfc_conv_string_parameter (rse);
11300 : 31078 : gfc_add_block_to_block (&block, &rse->pre);
11301 : 31078 : rlen = rse->string_length;
11302 : : }
11303 : :
11304 : 31078 : gfc_trans_string_copy (&block, llen, lse->expr, ts.kind, rlen,
11305 : : rse->expr, ts.kind);
11306 : : }
11307 : 197583 : else if (gfc_bt_struct (ts.type)
11308 : 16165 : && (ts.u.derived->attr.alloc_comp
11309 : 11233 : || (deep_copy && ts.u.derived->attr.pdt_type)))
11310 : : {
11311 : 5003 : tree tmp_var = NULL_TREE;
11312 : 5003 : cond = NULL_TREE;
11313 : :
11314 : : /* Are the rhs and the lhs the same? */
11315 : 5003 : if (deep_copy)
11316 : : {
11317 : 3064 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
11318 : : gfc_build_addr_expr (NULL_TREE, lse->expr),
11319 : : gfc_build_addr_expr (NULL_TREE, rse->expr));
11320 : 3064 : cond = gfc_evaluate_now (cond, &lse->pre);
11321 : : }
11322 : :
11323 : : /* Deallocate the lhs allocated components as long as it is not
11324 : : the same as the rhs. This must be done following the assignment
11325 : : to prevent deallocating data that could be used in the rhs
11326 : : expression. */
11327 : 5003 : if (dealloc)
11328 : : {
11329 : 1493 : tmp_var = gfc_evaluate_now (lse->expr, &lse->pre);
11330 : 1493 : tmp = gfc_deallocate_alloc_comp_no_caf (ts.u.derived, tmp_var,
11331 : 1493 : 0, gfc_may_be_finalized (ts));
11332 : 1493 : if (deep_copy)
11333 : 613 : tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
11334 : : tmp);
11335 : 1493 : gfc_add_expr_to_block (&lse->post, tmp);
11336 : : }
11337 : :
11338 : 5003 : gfc_add_block_to_block (&block, &rse->pre);
11339 : 5003 : gfc_add_block_to_block (&block, &lse->finalblock);
11340 : 5003 : gfc_add_block_to_block (&block, &lse->pre);
11341 : :
11342 : 5003 : gfc_add_modify (&block, lse->expr,
11343 : 5003 : fold_convert (TREE_TYPE (lse->expr), rse->expr));
11344 : :
11345 : : /* Restore pointer address of coarray components. */
11346 : 5003 : if (ts.u.derived->attr.coarray_comp && deep_copy && tmp_var != NULL_TREE)
11347 : : {
11348 : 4 : tmp = gfc_reassign_alloc_comp_caf (ts.u.derived, tmp_var, lse->expr);
11349 : 4 : tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
11350 : : tmp);
11351 : 4 : gfc_add_expr_to_block (&block, tmp);
11352 : : }
11353 : :
11354 : : /* Do a deep copy if the rhs is a variable, if it is not the
11355 : : same as the lhs. */
11356 : 5003 : if (deep_copy)
11357 : : {
11358 : 3064 : int caf_mode = in_coarray ? (GFC_STRUCTURE_CAF_MODE_ENABLE_COARRAY
11359 : : | GFC_STRUCTURE_CAF_MODE_IN_COARRAY) : 0;
11360 : 3064 : tmp = gfc_copy_alloc_comp (ts.u.derived, rse->expr, lse->expr, 0,
11361 : : caf_mode);
11362 : 3064 : tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
11363 : : tmp);
11364 : 3064 : gfc_add_expr_to_block (&block, tmp);
11365 : : }
11366 : : }
11367 : 192580 : else if (gfc_bt_struct (ts.type))
11368 : : {
11369 : 11162 : gfc_add_block_to_block (&block, &rse->pre);
11370 : 11162 : gfc_add_block_to_block (&block, &lse->finalblock);
11371 : 11162 : gfc_add_block_to_block (&block, &lse->pre);
11372 : 11162 : tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
11373 : 11162 : TREE_TYPE (lse->expr), rse->expr);
11374 : 11162 : gfc_add_modify (&block, lse->expr, tmp);
11375 : : }
11376 : : /* If possible use the rhs vptr copy with trans_scalar_class_assign.... */
11377 : 181418 : else if (ts.type == BT_CLASS)
11378 : : {
11379 : 740 : gfc_add_block_to_block (&block, &lse->pre);
11380 : 740 : gfc_add_block_to_block (&block, &rse->pre);
11381 : 740 : gfc_add_block_to_block (&block, &lse->finalblock);
11382 : :
11383 : 740 : if (!trans_scalar_class_assign (&block, lse, rse))
11384 : : {
11385 : : /* ...otherwise assignment suffices. Note the use of VIEW_CONVERT_EXPR
11386 : : for the lhs which ensures that class data rhs cast as a string assigns
11387 : : correctly. */
11388 : 606 : tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
11389 : 606 : TREE_TYPE (rse->expr), lse->expr);
11390 : 606 : gfc_add_modify (&block, tmp, rse->expr);
11391 : : }
11392 : : }
11393 : 180678 : else if (ts.type != BT_CLASS)
11394 : : {
11395 : 180678 : gfc_add_block_to_block (&block, &lse->pre);
11396 : 180678 : gfc_add_block_to_block (&block, &rse->pre);
11397 : :
11398 : 180678 : if (in_coarray)
11399 : : {
11400 : 587 : if (flag_coarray == GFC_FCOARRAY_LIB && assoc_assign)
11401 : : {
11402 : 0 : gfc_add_modify (&block, gfc_conv_descriptor_token (lse->expr),
11403 : 0 : TYPE_LANG_SPECIFIC (
11404 : : TREE_TYPE (TREE_TYPE (rse->expr)))
11405 : : ->caf_token);
11406 : : }
11407 : 587 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (lse->expr)))
11408 : 0 : lse->expr = gfc_conv_array_data (lse->expr);
11409 : 260 : if (flag_coarray == GFC_FCOARRAY_SINGLE && assoc_assign
11410 : 587 : && !POINTER_TYPE_P (TREE_TYPE (rse->expr)))
11411 : 0 : rse->expr = gfc_build_addr_expr (NULL_TREE, rse->expr);
11412 : : }
11413 : 180678 : gfc_add_modify (&block, lse->expr,
11414 : 180678 : fold_convert (TREE_TYPE (lse->expr), rse->expr));
11415 : : }
11416 : :
11417 : 228661 : gfc_add_block_to_block (&block, &lse->post);
11418 : 228661 : gfc_add_block_to_block (&block, &rse->post);
11419 : :
11420 : 228661 : return gfc_finish_block (&block);
11421 : : }
11422 : :
11423 : :
11424 : : /* There are quite a lot of restrictions on the optimisation in using an
11425 : : array function assign without a temporary. */
11426 : :
11427 : : static bool
11428 : 14372 : arrayfunc_assign_needs_temporary (gfc_expr * expr1, gfc_expr * expr2)
11429 : : {
11430 : 14372 : gfc_ref * ref;
11431 : 14372 : bool seen_array_ref;
11432 : 14372 : bool c = false;
11433 : 14372 : gfc_symbol *sym = expr1->symtree->n.sym;
11434 : :
11435 : : /* Play it safe with class functions assigned to a derived type. */
11436 : 14372 : if (gfc_is_class_array_function (expr2)
11437 : 14372 : && expr1->ts.type == BT_DERIVED)
11438 : : return true;
11439 : :
11440 : : /* The caller has already checked rank>0 and expr_type == EXPR_FUNCTION. */
11441 : 14348 : if (expr2->value.function.isym && !gfc_is_intrinsic_libcall (expr2))
11442 : : return true;
11443 : :
11444 : : /* Elemental functions are scalarized so that they don't need a
11445 : : temporary in gfc_trans_assignment_1, so return a true. Otherwise,
11446 : : they would need special treatment in gfc_trans_arrayfunc_assign. */
11447 : 8612 : if (expr2->value.function.esym != NULL
11448 : 1522 : && expr2->value.function.esym->attr.elemental)
11449 : : return true;
11450 : :
11451 : : /* Need a temporary if rhs is not FULL or a contiguous section. */
11452 : 8274 : if (expr1->ref && !(gfc_full_array_ref_p (expr1->ref, &c) || c))
11453 : : return true;
11454 : :
11455 : : /* Need a temporary if EXPR1 can't be expressed as a descriptor. */
11456 : 8022 : if (gfc_ref_needs_temporary_p (expr1->ref))
11457 : : return true;
11458 : :
11459 : : /* Functions returning pointers or allocatables need temporaries. */
11460 : 8010 : if (gfc_expr_attr (expr2).pointer
11461 : 8010 : || gfc_expr_attr (expr2).allocatable)
11462 : 391 : return true;
11463 : :
11464 : : /* Character array functions need temporaries unless the
11465 : : character lengths are the same. */
11466 : 7619 : if (expr2->ts.type == BT_CHARACTER && expr2->rank > 0)
11467 : : {
11468 : 560 : if (UNLIMITED_POLY (expr1))
11469 : : return true;
11470 : :
11471 : 554 : if (expr1->ts.u.cl->length == NULL
11472 : 512 : || expr1->ts.u.cl->length->expr_type != EXPR_CONSTANT)
11473 : : return true;
11474 : :
11475 : 498 : if (expr2->ts.u.cl->length == NULL
11476 : 492 : || expr2->ts.u.cl->length->expr_type != EXPR_CONSTANT)
11477 : : return true;
11478 : :
11479 : 480 : if (mpz_cmp (expr1->ts.u.cl->length->value.integer,
11480 : 480 : expr2->ts.u.cl->length->value.integer) != 0)
11481 : : return true;
11482 : : }
11483 : :
11484 : : /* Check that no LHS component references appear during an array
11485 : : reference. This is needed because we do not have the means to
11486 : : span any arbitrary stride with an array descriptor. This check
11487 : : is not needed for the rhs because the function result has to be
11488 : : a complete type. */
11489 : 7533 : seen_array_ref = false;
11490 : 15066 : for (ref = expr1->ref; ref; ref = ref->next)
11491 : : {
11492 : 7546 : if (ref->type == REF_ARRAY)
11493 : : seen_array_ref= true;
11494 : 13 : else if (ref->type == REF_COMPONENT && seen_array_ref)
11495 : : return true;
11496 : : }
11497 : :
11498 : : /* Check for a dependency. */
11499 : 7520 : if (gfc_check_fncall_dependency (expr1, INTENT_OUT,
11500 : : expr2->value.function.esym,
11501 : : expr2->value.function.actual,
11502 : : NOT_ELEMENTAL))
11503 : : return true;
11504 : :
11505 : : /* If we have reached here with an intrinsic function, we do not
11506 : : need a temporary except in the particular case that reallocation
11507 : : on assignment is active and the lhs is allocatable and a target,
11508 : : or a pointer which may be a subref pointer. FIXME: The last
11509 : : condition can go away when we use span in the intrinsics
11510 : : directly.*/
11511 : 7083 : if (expr2->value.function.isym)
11512 : 6263 : return (flag_realloc_lhs && sym->attr.allocatable && sym->attr.target)
11513 : 12613 : || (sym->attr.pointer && sym->attr.subref_array_pointer);
11514 : :
11515 : : /* If the LHS is a dummy, we need a temporary if it is not
11516 : : INTENT(OUT). */
11517 : 745 : if (sym->attr.dummy && sym->attr.intent != INTENT_OUT)
11518 : : return true;
11519 : :
11520 : : /* If the lhs has been host_associated, is in common, a pointer or is
11521 : : a target and the function is not using a RESULT variable, aliasing
11522 : : can occur and a temporary is needed. */
11523 : 739 : if ((sym->attr.host_assoc
11524 : : || sym->attr.in_common
11525 : 739 : || sym->attr.pointer
11526 : 673 : || sym->attr.cray_pointee
11527 : 673 : || sym->attr.target)
11528 : 66 : && expr2->symtree != NULL
11529 : 66 : && expr2->symtree->n.sym == expr2->symtree->n.sym->result)
11530 : : return true;
11531 : :
11532 : : /* A PURE function can unconditionally be called without a temporary. */
11533 : 697 : if (expr2->value.function.esym != NULL
11534 : 672 : && expr2->value.function.esym->attr.pure)
11535 : : return false;
11536 : :
11537 : : /* Implicit_pure functions are those which could legally be declared
11538 : : to be PURE. */
11539 : 669 : if (expr2->value.function.esym != NULL
11540 : 644 : && expr2->value.function.esym->attr.implicit_pure)
11541 : : return false;
11542 : :
11543 : 402 : if (!sym->attr.use_assoc
11544 : : && !sym->attr.in_common
11545 : : && !sym->attr.pointer
11546 : 402 : && !sym->attr.target
11547 : 396 : && !sym->attr.cray_pointee
11548 : 396 : && expr2->value.function.esym)
11549 : : {
11550 : : /* A temporary is not needed if the function is not contained and
11551 : : the variable is local or host associated and not a pointer or
11552 : : a target. */
11553 : 371 : if (!expr2->value.function.esym->attr.contained)
11554 : : return false;
11555 : :
11556 : : /* A temporary is not needed if the lhs has never been host
11557 : : associated and the procedure is contained. */
11558 : 146 : else if (!sym->attr.host_assoc)
11559 : : return false;
11560 : :
11561 : : /* A temporary is not needed if the variable is local and not
11562 : : a pointer, a target or a result. */
11563 : 6 : if (sym->ns->parent
11564 : 0 : && expr2->value.function.esym->ns == sym->ns->parent)
11565 : : return false;
11566 : : }
11567 : :
11568 : : /* Default to temporary use. */
11569 : : return true;
11570 : : }
11571 : :
11572 : :
11573 : : /* Provide the loop info so that the lhs descriptor can be built for
11574 : : reallocatable assignments from extrinsic function calls. */
11575 : :
11576 : : static void
11577 : 152 : realloc_lhs_loop_for_fcn_call (gfc_se *se, locus *where, gfc_ss **ss,
11578 : : gfc_loopinfo *loop)
11579 : : {
11580 : : /* Signal that the function call should not be made by
11581 : : gfc_conv_loop_setup. */
11582 : 152 : se->ss->is_alloc_lhs = 1;
11583 : 152 : gfc_init_loopinfo (loop);
11584 : 152 : gfc_add_ss_to_loop (loop, *ss);
11585 : 152 : gfc_add_ss_to_loop (loop, se->ss);
11586 : 152 : gfc_conv_ss_startstride (loop);
11587 : 152 : gfc_conv_loop_setup (loop, where);
11588 : 152 : gfc_copy_loopinfo_to_se (se, loop);
11589 : 152 : gfc_add_block_to_block (&se->pre, &loop->pre);
11590 : 152 : gfc_add_block_to_block (&se->pre, &loop->post);
11591 : 152 : se->ss->is_alloc_lhs = 0;
11592 : 152 : }
11593 : :
11594 : :
11595 : : /* For assignment to a reallocatable lhs from intrinsic functions,
11596 : : replace the se.expr (ie. the result) with a temporary descriptor.
11597 : : Null the data field so that the library allocates space for the
11598 : : result. Free the data of the original descriptor after the function,
11599 : : in case it appears in an argument expression and transfer the
11600 : : result to the original descriptor. */
11601 : :
11602 : : static void
11603 : 2034 : fcncall_realloc_result (gfc_se *se, int rank, tree dtype)
11604 : : {
11605 : 2034 : tree desc;
11606 : 2034 : tree res_desc;
11607 : 2034 : tree tmp;
11608 : 2034 : tree offset;
11609 : 2034 : tree zero_cond;
11610 : 2034 : tree not_same_shape;
11611 : 2034 : stmtblock_t shape_block;
11612 : 2034 : int n;
11613 : :
11614 : : /* Use the allocation done by the library. Substitute the lhs
11615 : : descriptor with a copy, whose data field is nulled.*/
11616 : 2034 : desc = build_fold_indirect_ref_loc (input_location, se->expr);
11617 : 2034 : if (POINTER_TYPE_P (TREE_TYPE (desc)))
11618 : 9 : desc = build_fold_indirect_ref_loc (input_location, desc);
11619 : :
11620 : : /* Unallocated, the descriptor does not have a dtype. */
11621 : 2034 : tmp = gfc_conv_descriptor_dtype (desc);
11622 : 2034 : if (dtype != NULL_TREE)
11623 : 13 : gfc_add_modify (&se->pre, tmp, dtype);
11624 : : else
11625 : 2021 : gfc_add_modify (&se->pre, tmp, gfc_get_dtype (TREE_TYPE (desc)));
11626 : :
11627 : 2034 : res_desc = gfc_evaluate_now (desc, &se->pre);
11628 : 2034 : gfc_conv_descriptor_data_set (&se->pre, res_desc, null_pointer_node);
11629 : 2034 : se->expr = gfc_build_addr_expr (NULL_TREE, res_desc);
11630 : :
11631 : : /* Free the lhs after the function call and copy the result data to
11632 : : the lhs descriptor. */
11633 : 2034 : tmp = gfc_conv_descriptor_data_get (desc);
11634 : 2034 : zero_cond = fold_build2_loc (input_location, EQ_EXPR,
11635 : : logical_type_node, tmp,
11636 : 2034 : build_int_cst (TREE_TYPE (tmp), 0));
11637 : 2034 : zero_cond = gfc_evaluate_now (zero_cond, &se->post);
11638 : 2034 : tmp = gfc_call_free (tmp);
11639 : 2034 : gfc_add_expr_to_block (&se->post, tmp);
11640 : :
11641 : 2034 : tmp = gfc_conv_descriptor_data_get (res_desc);
11642 : 2034 : gfc_conv_descriptor_data_set (&se->post, desc, tmp);
11643 : :
11644 : : /* Check that the shapes are the same between lhs and expression.
11645 : : The evaluation of the shape is done in 'shape_block' to avoid
11646 : : unitialized warnings from the lhs bounds. */
11647 : 2034 : not_same_shape = boolean_false_node;
11648 : 2034 : gfc_start_block (&shape_block);
11649 : 6624 : for (n = 0 ; n < rank; n++)
11650 : : {
11651 : 4590 : tree tmp1;
11652 : 4590 : tmp = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[n]);
11653 : 4590 : tmp1 = gfc_conv_descriptor_lbound_get (res_desc, gfc_rank_cst[n]);
11654 : 4590 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
11655 : : gfc_array_index_type, tmp, tmp1);
11656 : 4590 : tmp1 = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[n]);
11657 : 4590 : tmp = fold_build2_loc (input_location, MINUS_EXPR,
11658 : : gfc_array_index_type, tmp, tmp1);
11659 : 4590 : tmp1 = gfc_conv_descriptor_ubound_get (res_desc, gfc_rank_cst[n]);
11660 : 4590 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
11661 : : gfc_array_index_type, tmp, tmp1);
11662 : 4590 : tmp = fold_build2_loc (input_location, NE_EXPR,
11663 : : logical_type_node, tmp,
11664 : : gfc_index_zero_node);
11665 : 4590 : tmp = gfc_evaluate_now (tmp, &shape_block);
11666 : 4590 : if (n == 0)
11667 : : not_same_shape = tmp;
11668 : : else
11669 : 2556 : not_same_shape = fold_build2_loc (input_location, TRUTH_OR_EXPR,
11670 : : logical_type_node, tmp,
11671 : : not_same_shape);
11672 : : }
11673 : :
11674 : : /* 'zero_cond' being true is equal to lhs not being allocated or the
11675 : : shapes being different. */
11676 : 2034 : tmp = fold_build2_loc (input_location, TRUTH_OR_EXPR, logical_type_node,
11677 : : zero_cond, not_same_shape);
11678 : 2034 : gfc_add_modify (&shape_block, zero_cond, tmp);
11679 : 2034 : tmp = gfc_finish_block (&shape_block);
11680 : 2034 : tmp = build3_v (COND_EXPR, zero_cond,
11681 : : build_empty_stmt (input_location), tmp);
11682 : 2034 : gfc_add_expr_to_block (&se->post, tmp);
11683 : :
11684 : : /* Now reset the bounds returned from the function call to bounds based
11685 : : on the lhs lbounds, except where the lhs is not allocated or the shapes
11686 : : of 'variable and 'expr' are different. Set the offset accordingly. */
11687 : 2034 : offset = gfc_index_zero_node;
11688 : 6624 : for (n = 0 ; n < rank; n++)
11689 : : {
11690 : 4590 : tree lbound;
11691 : :
11692 : 4590 : lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[n]);
11693 : 4590 : lbound = fold_build3_loc (input_location, COND_EXPR,
11694 : : gfc_array_index_type, zero_cond,
11695 : : gfc_index_one_node, lbound);
11696 : 4590 : lbound = gfc_evaluate_now (lbound, &se->post);
11697 : :
11698 : 4590 : tmp = gfc_conv_descriptor_ubound_get (res_desc, gfc_rank_cst[n]);
11699 : 4590 : tmp = fold_build2_loc (input_location, PLUS_EXPR,
11700 : : gfc_array_index_type, tmp, lbound);
11701 : 4590 : gfc_conv_descriptor_lbound_set (&se->post, desc,
11702 : : gfc_rank_cst[n], lbound);
11703 : 4590 : gfc_conv_descriptor_ubound_set (&se->post, desc,
11704 : : gfc_rank_cst[n], tmp);
11705 : :
11706 : : /* Set stride and accumulate the offset. */
11707 : 4590 : tmp = gfc_conv_descriptor_stride_get (res_desc, gfc_rank_cst[n]);
11708 : 4590 : gfc_conv_descriptor_stride_set (&se->post, desc,
11709 : : gfc_rank_cst[n], tmp);
11710 : 4590 : tmp = fold_build2_loc (input_location, MULT_EXPR,
11711 : : gfc_array_index_type, lbound, tmp);
11712 : 4590 : offset = fold_build2_loc (input_location, MINUS_EXPR,
11713 : : gfc_array_index_type, offset, tmp);
11714 : 4590 : offset = gfc_evaluate_now (offset, &se->post);
11715 : : }
11716 : :
11717 : 2034 : gfc_conv_descriptor_offset_set (&se->post, desc, offset);
11718 : 2034 : }
11719 : :
11720 : :
11721 : :
11722 : : /* Try to translate array(:) = func (...), where func is a transformational
11723 : : array function, without using a temporary. Returns NULL if this isn't the
11724 : : case. */
11725 : :
11726 : : static tree
11727 : 14372 : gfc_trans_arrayfunc_assign (gfc_expr * expr1, gfc_expr * expr2)
11728 : : {
11729 : 14372 : gfc_se se;
11730 : 14372 : gfc_ss *ss = NULL;
11731 : 14372 : gfc_component *comp = NULL;
11732 : 14372 : gfc_loopinfo loop;
11733 : 14372 : tree tmp;
11734 : 14372 : tree lhs;
11735 : 14372 : gfc_se final_se;
11736 : 14372 : gfc_symbol *sym = expr1->symtree->n.sym;
11737 : 14372 : bool finalizable = gfc_may_be_finalized (expr1->ts);
11738 : :
11739 : 14372 : if (arrayfunc_assign_needs_temporary (expr1, expr2))
11740 : : return NULL;
11741 : :
11742 : : /* The frontend doesn't seem to bother filling in expr->symtree for intrinsic
11743 : : functions. */
11744 : 6965 : comp = gfc_get_proc_ptr_comp (expr2);
11745 : :
11746 : 6965 : if (!(expr2->value.function.isym
11747 : 660 : || (comp && comp->attr.dimension)
11748 : 660 : || (!comp && gfc_return_by_reference (expr2->value.function.esym)
11749 : 660 : && expr2->value.function.esym->result->attr.dimension)))
11750 : 0 : return NULL;
11751 : :
11752 : 6965 : gfc_init_se (&se, NULL);
11753 : 6965 : gfc_start_block (&se.pre);
11754 : 6965 : se.want_pointer = 1;
11755 : :
11756 : : /* First the lhs must be finalized, if necessary. We use a copy of the symbol
11757 : : backend decl, stash the original away for the finalization so that the
11758 : : value used is that before the assignment. This is necessary because
11759 : : evaluation of the rhs expression using direct by reference can change
11760 : : the value. However, the standard mandates that the finalization must occur
11761 : : after evaluation of the rhs. */
11762 : 6965 : gfc_init_se (&final_se, NULL);
11763 : :
11764 : 6965 : if (finalizable)
11765 : : {
11766 : 33 : tmp = sym->backend_decl;
11767 : 33 : lhs = sym->backend_decl;
11768 : 33 : if (INDIRECT_REF_P (tmp))
11769 : 0 : tmp = TREE_OPERAND (tmp, 0);
11770 : 33 : sym->backend_decl = gfc_create_var (TREE_TYPE (tmp), "lhs");
11771 : 33 : gfc_add_modify (&se.pre, sym->backend_decl, tmp);
11772 : 33 : if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp)))
11773 : : {
11774 : 0 : tmp = gfc_copy_alloc_comp (expr1->ts.u.derived, tmp, sym->backend_decl,
11775 : : expr1->rank, 0);
11776 : 0 : gfc_add_expr_to_block (&final_se.pre, tmp);
11777 : : }
11778 : : }
11779 : :
11780 : 33 : if (finalizable && gfc_assignment_finalizer_call (&final_se, expr1, false))
11781 : : {
11782 : 33 : gfc_add_block_to_block (&se.pre, &final_se.pre);
11783 : 33 : gfc_add_block_to_block (&se.post, &final_se.finalblock);
11784 : : }
11785 : :
11786 : 6965 : if (finalizable)
11787 : 33 : sym->backend_decl = lhs;
11788 : :
11789 : 6965 : gfc_conv_array_parameter (&se, expr1, false, NULL, NULL, NULL);
11790 : :
11791 : 6965 : if (expr1->ts.type == BT_DERIVED
11792 : 185 : && expr1->ts.u.derived->attr.alloc_comp)
11793 : : {
11794 : 44 : tmp = build_fold_indirect_ref_loc (input_location, se.expr);
11795 : 44 : tmp = gfc_deallocate_alloc_comp_no_caf (expr1->ts.u.derived, tmp,
11796 : : expr1->rank);
11797 : 44 : gfc_add_expr_to_block (&se.pre, tmp);
11798 : : }
11799 : :
11800 : 6965 : se.direct_byref = 1;
11801 : 6965 : se.ss = gfc_walk_expr (expr2);
11802 : 6965 : gcc_assert (se.ss != gfc_ss_terminator);
11803 : :
11804 : : /* Since this is a direct by reference call, references to the lhs can be
11805 : : used for finalization of the function result just as long as the blocks
11806 : : from final_se are added at the right time. */
11807 : 6965 : gfc_init_se (&final_se, NULL);
11808 : 6965 : if (finalizable && expr2->value.function.esym)
11809 : : {
11810 : 20 : final_se.expr = build_fold_indirect_ref_loc (input_location, se.expr);
11811 : 20 : gfc_finalize_tree_expr (&final_se, expr2->ts.u.derived,
11812 : 20 : expr2->value.function.esym->attr,
11813 : : expr2->rank);
11814 : : }
11815 : :
11816 : : /* Reallocate on assignment needs the loopinfo for extrinsic functions.
11817 : : This is signalled to gfc_conv_procedure_call by setting is_alloc_lhs.
11818 : : Clearly, this cannot be done for an allocatable function result, since
11819 : : the shape of the result is unknown and, in any case, the function must
11820 : : correctly take care of the reallocation internally. For intrinsic
11821 : : calls, the array data is freed and the library takes care of allocation.
11822 : : TODO: Add logic of trans-array.cc: gfc_alloc_allocatable_for_assignment
11823 : : to the library. */
11824 : 6965 : if (flag_realloc_lhs
11825 : 6890 : && gfc_is_reallocatable_lhs (expr1)
11826 : 9151 : && !gfc_expr_attr (expr1).codimension
11827 : 2186 : && !gfc_is_coindexed (expr1)
11828 : 9151 : && !(expr2->value.function.esym
11829 : 152 : && expr2->value.function.esym->result->attr.allocatable))
11830 : : {
11831 : 2186 : realloc_lhs_warning (expr1->ts.type, true, &expr1->where);
11832 : :
11833 : 2186 : if (!expr2->value.function.isym)
11834 : : {
11835 : 152 : ss = gfc_walk_expr (expr1);
11836 : 152 : gcc_assert (ss != gfc_ss_terminator);
11837 : :
11838 : 152 : realloc_lhs_loop_for_fcn_call (&se, &expr1->where, &ss, &loop);
11839 : 152 : ss->is_alloc_lhs = 1;
11840 : : }
11841 : : else
11842 : : {
11843 : 2034 : tree dtype = NULL_TREE;
11844 : 2034 : tree type = gfc_typenode_for_spec (&expr2->ts);
11845 : 2034 : if (expr1->ts.type == BT_CLASS)
11846 : : {
11847 : 13 : tmp = gfc_class_vptr_get (sym->backend_decl);
11848 : 13 : tree tmp2 = gfc_get_symbol_decl (gfc_find_vtab (&expr2->ts));
11849 : 13 : tmp2 = gfc_build_addr_expr (TREE_TYPE (tmp), tmp2);
11850 : 13 : gfc_add_modify (&se.pre, tmp, tmp2);
11851 : 13 : dtype = gfc_get_dtype_rank_type (expr1->rank,type);
11852 : : }
11853 : 2034 : fcncall_realloc_result (&se, expr1->rank, dtype);
11854 : : }
11855 : : }
11856 : :
11857 : 6965 : gfc_conv_function_expr (&se, expr2);
11858 : :
11859 : : /* Fix the result. */
11860 : 6965 : gfc_add_block_to_block (&se.pre, &se.post);
11861 : 6965 : if (finalizable)
11862 : 33 : gfc_add_block_to_block (&se.pre, &final_se.pre);
11863 : :
11864 : : /* Do the finalization, including final calls from function arguments. */
11865 : 33 : if (finalizable)
11866 : : {
11867 : 33 : gfc_add_block_to_block (&se.pre, &final_se.post);
11868 : 33 : gfc_add_block_to_block (&se.pre, &se.finalblock);
11869 : 33 : gfc_add_block_to_block (&se.pre, &final_se.finalblock);
11870 : : }
11871 : :
11872 : 6965 : if (ss)
11873 : 152 : gfc_cleanup_loop (&loop);
11874 : : else
11875 : 6813 : gfc_free_ss_chain (se.ss);
11876 : :
11877 : 6965 : return gfc_finish_block (&se.pre);
11878 : : }
11879 : :
11880 : :
11881 : : /* Try to efficiently translate array(:) = 0. Return NULL if this
11882 : : can't be done. */
11883 : :
11884 : : static tree
11885 : 3757 : gfc_trans_zero_assign (gfc_expr * expr)
11886 : : {
11887 : 3757 : tree dest, len, type;
11888 : 3757 : tree tmp;
11889 : 3757 : gfc_symbol *sym;
11890 : :
11891 : 3757 : sym = expr->symtree->n.sym;
11892 : 3757 : dest = gfc_get_symbol_decl (sym);
11893 : :
11894 : 3757 : type = TREE_TYPE (dest);
11895 : 3757 : if (POINTER_TYPE_P (type))
11896 : 259 : type = TREE_TYPE (type);
11897 : 3757 : if (GFC_ARRAY_TYPE_P (type))
11898 : : {
11899 : : /* Determine the length of the array. */
11900 : 2555 : len = GFC_TYPE_ARRAY_SIZE (type);
11901 : 2555 : if (!len || TREE_CODE (len) != INTEGER_CST)
11902 : : return NULL_TREE;
11903 : : }
11904 : 1202 : else if (GFC_DESCRIPTOR_TYPE_P (type)
11905 : 1202 : && gfc_is_simply_contiguous (expr, false, false))
11906 : : {
11907 : 1102 : if (POINTER_TYPE_P (TREE_TYPE (dest)))
11908 : 4 : dest = build_fold_indirect_ref_loc (input_location, dest);
11909 : 1102 : len = gfc_conv_descriptor_size (dest, GFC_TYPE_ARRAY_RANK (type));
11910 : 1102 : dest = gfc_conv_descriptor_data_get (dest);
11911 : : }
11912 : : else
11913 : 100 : return NULL_TREE;
11914 : :
11915 : : /* If we are zeroing a local array avoid taking its address by emitting
11916 : : a = {} instead. */
11917 : 3467 : if (!POINTER_TYPE_P (TREE_TYPE (dest)))
11918 : 2323 : return build2_loc (input_location, MODIFY_EXPR, void_type_node,
11919 : 2323 : dest, build_constructor (TREE_TYPE (dest),
11920 : 2323 : NULL));
11921 : :
11922 : : /* Multiply len by element size. */
11923 : 1144 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (type));
11924 : 1144 : len = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
11925 : : len, fold_convert (gfc_array_index_type, tmp));
11926 : :
11927 : : /* Convert arguments to the correct types. */
11928 : 1144 : dest = fold_convert (pvoid_type_node, dest);
11929 : 1144 : len = fold_convert (size_type_node, len);
11930 : :
11931 : : /* Construct call to __builtin_memset. */
11932 : 1144 : tmp = build_call_expr_loc (input_location,
11933 : : builtin_decl_explicit (BUILT_IN_MEMSET),
11934 : : 3, dest, integer_zero_node, len);
11935 : 1144 : return fold_convert (void_type_node, tmp);
11936 : : }
11937 : :
11938 : :
11939 : : /* Helper for gfc_trans_array_copy and gfc_trans_array_constructor_copy
11940 : : that constructs the call to __builtin_memcpy. */
11941 : :
11942 : : tree
11943 : 6994 : gfc_build_memcpy_call (tree dst, tree src, tree len)
11944 : : {
11945 : 6994 : tree tmp;
11946 : :
11947 : : /* Convert arguments to the correct types. */
11948 : 6994 : if (!POINTER_TYPE_P (TREE_TYPE (dst)))
11949 : 6762 : dst = gfc_build_addr_expr (pvoid_type_node, dst);
11950 : : else
11951 : 232 : dst = fold_convert (pvoid_type_node, dst);
11952 : :
11953 : 6994 : if (!POINTER_TYPE_P (TREE_TYPE (src)))
11954 : 6669 : src = gfc_build_addr_expr (pvoid_type_node, src);
11955 : : else
11956 : 325 : src = fold_convert (pvoid_type_node, src);
11957 : :
11958 : 6994 : len = fold_convert (size_type_node, len);
11959 : :
11960 : : /* Construct call to __builtin_memcpy. */
11961 : 6994 : tmp = build_call_expr_loc (input_location,
11962 : : builtin_decl_explicit (BUILT_IN_MEMCPY),
11963 : : 3, dst, src, len);
11964 : 6994 : return fold_convert (void_type_node, tmp);
11965 : : }
11966 : :
11967 : :
11968 : : /* Try to efficiently translate dst(:) = src(:). Return NULL if this
11969 : : can't be done. EXPR1 is the destination/lhs and EXPR2 is the
11970 : : source/rhs, both are gfc_full_array_ref_p which have been checked for
11971 : : dependencies. */
11972 : :
11973 : : static tree
11974 : 2487 : gfc_trans_array_copy (gfc_expr * expr1, gfc_expr * expr2)
11975 : : {
11976 : 2487 : tree dst, dlen, dtype;
11977 : 2487 : tree src, slen, stype;
11978 : 2487 : tree tmp;
11979 : :
11980 : 2487 : dst = gfc_get_symbol_decl (expr1->symtree->n.sym);
11981 : 2487 : src = gfc_get_symbol_decl (expr2->symtree->n.sym);
11982 : :
11983 : 2487 : dtype = TREE_TYPE (dst);
11984 : 2487 : if (POINTER_TYPE_P (dtype))
11985 : 222 : dtype = TREE_TYPE (dtype);
11986 : 2487 : stype = TREE_TYPE (src);
11987 : 2487 : if (POINTER_TYPE_P (stype))
11988 : 257 : stype = TREE_TYPE (stype);
11989 : :
11990 : 2487 : if (!GFC_ARRAY_TYPE_P (dtype) || !GFC_ARRAY_TYPE_P (stype))
11991 : : return NULL_TREE;
11992 : :
11993 : : /* Determine the lengths of the arrays. */
11994 : 1529 : dlen = GFC_TYPE_ARRAY_SIZE (dtype);
11995 : 1529 : if (!dlen || TREE_CODE (dlen) != INTEGER_CST)
11996 : : return NULL_TREE;
11997 : 1435 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (dtype));
11998 : 1435 : dlen = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
11999 : : dlen, fold_convert (gfc_array_index_type, tmp));
12000 : :
12001 : 1435 : slen = GFC_TYPE_ARRAY_SIZE (stype);
12002 : 1435 : if (!slen || TREE_CODE (slen) != INTEGER_CST)
12003 : : return NULL_TREE;
12004 : 1429 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (stype));
12005 : 1429 : slen = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
12006 : : slen, fold_convert (gfc_array_index_type, tmp));
12007 : :
12008 : : /* Sanity check that they are the same. This should always be
12009 : : the case, as we should already have checked for conformance. */
12010 : 1429 : if (!tree_int_cst_equal (slen, dlen))
12011 : : return NULL_TREE;
12012 : :
12013 : 1429 : return gfc_build_memcpy_call (dst, src, dlen);
12014 : : }
12015 : :
12016 : :
12017 : : /* Try to efficiently translate array(:) = (/ ... /). Return NULL if
12018 : : this can't be done. EXPR1 is the destination/lhs for which
12019 : : gfc_full_array_ref_p is true, and EXPR2 is the source/rhs. */
12020 : :
12021 : : static tree
12022 : 7430 : gfc_trans_array_constructor_copy (gfc_expr * expr1, gfc_expr * expr2)
12023 : : {
12024 : 7430 : unsigned HOST_WIDE_INT nelem;
12025 : 7430 : tree dst, dtype;
12026 : 7430 : tree src, stype;
12027 : 7430 : tree len;
12028 : 7430 : tree tmp;
12029 : :
12030 : 7430 : nelem = gfc_constant_array_constructor_p (expr2->value.constructor);
12031 : 7430 : if (nelem == 0)
12032 : : return NULL_TREE;
12033 : :
12034 : 5813 : dst = gfc_get_symbol_decl (expr1->symtree->n.sym);
12035 : 5813 : dtype = TREE_TYPE (dst);
12036 : 5813 : if (POINTER_TYPE_P (dtype))
12037 : 245 : dtype = TREE_TYPE (dtype);
12038 : 5813 : if (!GFC_ARRAY_TYPE_P (dtype))
12039 : : return NULL_TREE;
12040 : :
12041 : : /* Determine the lengths of the array. */
12042 : 5141 : len = GFC_TYPE_ARRAY_SIZE (dtype);
12043 : 5141 : if (!len || TREE_CODE (len) != INTEGER_CST)
12044 : : return NULL_TREE;
12045 : :
12046 : : /* Confirm that the constructor is the same size. */
12047 : 5049 : if (compare_tree_int (len, nelem) != 0)
12048 : : return NULL_TREE;
12049 : :
12050 : 5049 : tmp = TYPE_SIZE_UNIT (gfc_get_element_type (dtype));
12051 : 5049 : len = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type, len,
12052 : : fold_convert (gfc_array_index_type, tmp));
12053 : :
12054 : 5049 : stype = gfc_typenode_for_spec (&expr2->ts);
12055 : 5049 : src = gfc_build_constant_array_constructor (expr2, stype);
12056 : :
12057 : 5049 : return gfc_build_memcpy_call (dst, src, len);
12058 : : }
12059 : :
12060 : :
12061 : : /* Tells whether the expression is to be treated as a variable reference. */
12062 : :
12063 : : bool
12064 : 205945 : gfc_expr_is_variable (gfc_expr *expr)
12065 : : {
12066 : 206205 : gfc_expr *arg;
12067 : 206205 : gfc_component *comp;
12068 : 206205 : gfc_symbol *func_ifc;
12069 : :
12070 : 206205 : if (expr->expr_type == EXPR_VARIABLE)
12071 : : return true;
12072 : :
12073 : 173811 : arg = gfc_get_noncopying_intrinsic_argument (expr);
12074 : 173811 : if (arg)
12075 : : {
12076 : 260 : gcc_assert (expr->value.function.isym->id == GFC_ISYM_TRANSPOSE);
12077 : : return gfc_expr_is_variable (arg);
12078 : : }
12079 : :
12080 : : /* A data-pointer-returning function should be considered as a variable
12081 : : too. */
12082 : 173551 : if (expr->expr_type == EXPR_FUNCTION
12083 : 34411 : && expr->ref == NULL)
12084 : : {
12085 : 34044 : if (expr->value.function.isym != NULL)
12086 : : return false;
12087 : :
12088 : 8751 : if (expr->value.function.esym != NULL)
12089 : : {
12090 : 8742 : func_ifc = expr->value.function.esym;
12091 : 8742 : goto found_ifc;
12092 : : }
12093 : 9 : gcc_assert (expr->symtree);
12094 : 9 : func_ifc = expr->symtree->n.sym;
12095 : 9 : goto found_ifc;
12096 : : }
12097 : :
12098 : 139507 : comp = gfc_get_proc_ptr_comp (expr);
12099 : 139507 : if ((expr->expr_type == EXPR_PPC || expr->expr_type == EXPR_FUNCTION)
12100 : 367 : && comp)
12101 : : {
12102 : 265 : func_ifc = comp->ts.interface;
12103 : 265 : goto found_ifc;
12104 : : }
12105 : :
12106 : 139242 : if (expr->expr_type == EXPR_COMPCALL)
12107 : : {
12108 : 0 : gcc_assert (!expr->value.compcall.tbp->is_generic);
12109 : 0 : func_ifc = expr->value.compcall.tbp->u.specific->n.sym;
12110 : 0 : goto found_ifc;
12111 : : }
12112 : :
12113 : : return false;
12114 : :
12115 : 9016 : found_ifc:
12116 : 9016 : gcc_assert (func_ifc->attr.function
12117 : : && func_ifc->result != NULL);
12118 : 9016 : return func_ifc->result->attr.pointer;
12119 : : }
12120 : :
12121 : :
12122 : : /* Is the lhs OK for automatic reallocation? */
12123 : :
12124 : : static bool
12125 : 162426 : is_scalar_reallocatable_lhs (gfc_expr *expr)
12126 : : {
12127 : 162426 : gfc_ref * ref;
12128 : :
12129 : : /* An allocatable variable with no reference. */
12130 : 162426 : if (expr->symtree->n.sym->attr.allocatable
12131 : 6436 : && !expr->ref)
12132 : : return true;
12133 : :
12134 : : /* All that can be left are allocatable components. However, we do
12135 : : not check for allocatable components here because the expression
12136 : : could be an allocatable component of a pointer component. */
12137 : 159857 : if (expr->symtree->n.sym->ts.type != BT_DERIVED
12138 : 140474 : && expr->symtree->n.sym->ts.type != BT_CLASS)
12139 : : return false;
12140 : :
12141 : : /* Find an allocatable component ref last. */
12142 : 34485 : for (ref = expr->ref; ref; ref = ref->next)
12143 : 13956 : if (ref->type == REF_COMPONENT
12144 : 10471 : && !ref->next
12145 : 8167 : && ref->u.c.component->attr.allocatable)
12146 : : return true;
12147 : :
12148 : : return false;
12149 : : }
12150 : :
12151 : :
12152 : : /* Allocate or reallocate scalar lhs, as necessary. */
12153 : :
12154 : : static void
12155 : 3110 : alloc_scalar_allocatable_for_assignment (stmtblock_t *block,
12156 : : tree string_length,
12157 : : gfc_expr *expr1,
12158 : : gfc_expr *expr2)
12159 : :
12160 : : {
12161 : 3110 : tree cond;
12162 : 3110 : tree tmp;
12163 : 3110 : tree size;
12164 : 3110 : tree size_in_bytes;
12165 : 3110 : tree jump_label1;
12166 : 3110 : tree jump_label2;
12167 : 3110 : gfc_se lse;
12168 : 3110 : gfc_ref *ref;
12169 : :
12170 : 3110 : if (!expr1 || expr1->rank)
12171 : 0 : return;
12172 : :
12173 : 3110 : if (!expr2 || expr2->rank)
12174 : : return;
12175 : :
12176 : 4003 : for (ref = expr1->ref; ref; ref = ref->next)
12177 : 893 : if (ref->type == REF_SUBSTRING)
12178 : : return;
12179 : :
12180 : 3110 : realloc_lhs_warning (expr2->ts.type, false, &expr2->where);
12181 : :
12182 : : /* Since this is a scalar lhs, we can afford to do this. That is,
12183 : : there is no risk of side effects being repeated. */
12184 : 3110 : gfc_init_se (&lse, NULL);
12185 : 3110 : lse.want_pointer = 1;
12186 : 3110 : gfc_conv_expr (&lse, expr1);
12187 : :
12188 : 3110 : jump_label1 = gfc_build_label_decl (NULL_TREE);
12189 : 3110 : jump_label2 = gfc_build_label_decl (NULL_TREE);
12190 : :
12191 : : /* Do the allocation if the lhs is NULL. Otherwise go to label 1. */
12192 : 3110 : tmp = build_int_cst (TREE_TYPE (lse.expr), 0);
12193 : 3110 : cond = fold_build2_loc (input_location, NE_EXPR, logical_type_node,
12194 : : lse.expr, tmp);
12195 : 3110 : tmp = build3_v (COND_EXPR, cond,
12196 : : build1_v (GOTO_EXPR, jump_label1),
12197 : : build_empty_stmt (input_location));
12198 : 3110 : gfc_add_expr_to_block (block, tmp);
12199 : :
12200 : 3110 : if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
12201 : : {
12202 : : /* Use the rhs string length and the lhs element size. Note that 'size' is
12203 : : used below for the string-length comparison, only. */
12204 : 1312 : size = string_length;
12205 : 1312 : tmp = TYPE_SIZE_UNIT (gfc_get_char_type (expr1->ts.kind));
12206 : 2624 : size_in_bytes = fold_build2_loc (input_location, MULT_EXPR,
12207 : 1312 : TREE_TYPE (tmp), tmp,
12208 : 1312 : fold_convert (TREE_TYPE (tmp), size));
12209 : : }
12210 : : else
12211 : : {
12212 : : /* Otherwise use the length in bytes of the rhs. */
12213 : 1798 : size = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&expr1->ts));
12214 : 1798 : size_in_bytes = size;
12215 : : }
12216 : :
12217 : 3110 : size_in_bytes = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
12218 : : size_in_bytes, size_one_node);
12219 : :
12220 : 3110 : if (gfc_caf_attr (expr1).codimension && flag_coarray == GFC_FCOARRAY_LIB)
12221 : : {
12222 : 31 : tree caf_decl, token;
12223 : 31 : gfc_se caf_se;
12224 : 31 : symbol_attribute attr;
12225 : :
12226 : 31 : gfc_clear_attr (&attr);
12227 : 31 : gfc_init_se (&caf_se, NULL);
12228 : :
12229 : 31 : caf_decl = gfc_get_tree_for_caf_expr (expr1);
12230 : 31 : gfc_get_caf_token_offset (&caf_se, &token, NULL, caf_decl, NULL_TREE,
12231 : : NULL);
12232 : 31 : gfc_add_block_to_block (block, &caf_se.pre);
12233 : 31 : gfc_allocate_allocatable (block, lse.expr, size_in_bytes,
12234 : : gfc_build_addr_expr (NULL_TREE, token),
12235 : : NULL_TREE, NULL_TREE, NULL_TREE, jump_label1,
12236 : : expr1, 1);
12237 : : }
12238 : 3079 : else if (expr1->ts.type == BT_DERIVED && expr1->ts.u.derived->attr.alloc_comp)
12239 : : {
12240 : 26 : tmp = build_call_expr_loc (input_location,
12241 : : builtin_decl_explicit (BUILT_IN_CALLOC),
12242 : : 2, build_one_cst (size_type_node),
12243 : : size_in_bytes);
12244 : 26 : tmp = fold_convert (TREE_TYPE (lse.expr), tmp);
12245 : 26 : gfc_add_modify (block, lse.expr, tmp);
12246 : : }
12247 : : else
12248 : : {
12249 : 3053 : tmp = build_call_expr_loc (input_location,
12250 : : builtin_decl_explicit (BUILT_IN_MALLOC),
12251 : : 1, size_in_bytes);
12252 : 3053 : tmp = fold_convert (TREE_TYPE (lse.expr), tmp);
12253 : 3053 : gfc_add_modify (block, lse.expr, tmp);
12254 : : }
12255 : :
12256 : 3110 : if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
12257 : : {
12258 : : /* Deferred characters need checking for lhs and rhs string
12259 : : length. Other deferred parameter variables will have to
12260 : : come here too. */
12261 : 1312 : tmp = build1_v (GOTO_EXPR, jump_label2);
12262 : 1312 : gfc_add_expr_to_block (block, tmp);
12263 : : }
12264 : 3110 : tmp = build1_v (LABEL_EXPR, jump_label1);
12265 : 3110 : gfc_add_expr_to_block (block, tmp);
12266 : :
12267 : : /* For a deferred length character, reallocate if lengths of lhs and
12268 : : rhs are different. */
12269 : 3110 : if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
12270 : : {
12271 : 1312 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
12272 : : lse.string_length,
12273 : 1312 : fold_convert (TREE_TYPE (lse.string_length),
12274 : : size));
12275 : : /* Jump past the realloc if the lengths are the same. */
12276 : 1312 : tmp = build3_v (COND_EXPR, cond,
12277 : : build1_v (GOTO_EXPR, jump_label2),
12278 : : build_empty_stmt (input_location));
12279 : 1312 : gfc_add_expr_to_block (block, tmp);
12280 : 1312 : tmp = build_call_expr_loc (input_location,
12281 : : builtin_decl_explicit (BUILT_IN_REALLOC),
12282 : : 2, fold_convert (pvoid_type_node, lse.expr),
12283 : : size_in_bytes);
12284 : 1312 : tree omp_cond = NULL_TREE;
12285 : 1312 : if (flag_openmp_allocators)
12286 : : {
12287 : 1 : tree omp_tmp;
12288 : 1 : omp_cond = gfc_omp_call_is_alloc (lse.expr);
12289 : 1 : omp_cond = gfc_evaluate_now (omp_cond, block);
12290 : :
12291 : 1 : omp_tmp = builtin_decl_explicit (BUILT_IN_GOMP_REALLOC);
12292 : 1 : omp_tmp = build_call_expr_loc (input_location, omp_tmp, 4,
12293 : : fold_convert (pvoid_type_node,
12294 : : lse.expr), size_in_bytes,
12295 : : build_zero_cst (ptr_type_node),
12296 : : build_zero_cst (ptr_type_node));
12297 : 1 : tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
12298 : : omp_cond, omp_tmp, tmp);
12299 : : }
12300 : 1312 : tmp = fold_convert (TREE_TYPE (lse.expr), tmp);
12301 : 1312 : gfc_add_modify (block, lse.expr, tmp);
12302 : 1312 : if (omp_cond)
12303 : 1 : gfc_add_expr_to_block (block,
12304 : : build3_loc (input_location, COND_EXPR,
12305 : : void_type_node, omp_cond,
12306 : : gfc_omp_call_add_alloc (lse.expr),
12307 : : build_empty_stmt (input_location)));
12308 : 1312 : tmp = build1_v (LABEL_EXPR, jump_label2);
12309 : 1312 : gfc_add_expr_to_block (block, tmp);
12310 : :
12311 : : /* Update the lhs character length. */
12312 : 1312 : size = string_length;
12313 : 1312 : gfc_add_modify (block, lse.string_length,
12314 : 1312 : fold_convert (TREE_TYPE (lse.string_length), size));
12315 : : }
12316 : : }
12317 : :
12318 : : /* Check for assignments of the type
12319 : :
12320 : : a = a + 4
12321 : :
12322 : : to make sure we do not check for reallocation unneccessarily. */
12323 : :
12324 : :
12325 : : static bool
12326 : 6265 : is_runtime_conformable (gfc_expr *expr1, gfc_expr *expr2)
12327 : : {
12328 : 6554 : gfc_actual_arglist *a;
12329 : 6554 : gfc_expr *e1, *e2;
12330 : :
12331 : 6554 : switch (expr2->expr_type)
12332 : : {
12333 : 1732 : case EXPR_VARIABLE:
12334 : 1732 : return gfc_dep_compare_expr (expr1, expr2) == 0;
12335 : :
12336 : 2756 : case EXPR_FUNCTION:
12337 : 2756 : if (expr2->value.function.esym
12338 : 272 : && expr2->value.function.esym->attr.elemental)
12339 : : {
12340 : 51 : for (a = expr2->value.function.actual; a != NULL; a = a->next)
12341 : : {
12342 : 50 : e1 = a->expr;
12343 : 50 : if (e1 && e1->rank > 0 && !is_runtime_conformable (expr1, e1))
12344 : : return false;
12345 : : }
12346 : : return true;
12347 : : }
12348 : 2718 : else if (expr2->value.function.isym
12349 : 2470 : && expr2->value.function.isym->elemental)
12350 : : {
12351 : 324 : for (a = expr2->value.function.actual; a != NULL; a = a->next)
12352 : : {
12353 : 314 : e1 = a->expr;
12354 : 314 : if (e1 && e1->rank > 0 && !is_runtime_conformable (expr1, e1))
12355 : : return false;
12356 : : }
12357 : : return true;
12358 : : }
12359 : :
12360 : : break;
12361 : :
12362 : 477 : case EXPR_OP:
12363 : 477 : switch (expr2->value.op.op)
12364 : : {
12365 : 32 : case INTRINSIC_NOT:
12366 : 32 : case INTRINSIC_UPLUS:
12367 : 32 : case INTRINSIC_UMINUS:
12368 : 32 : case INTRINSIC_PARENTHESES:
12369 : 32 : return is_runtime_conformable (expr1, expr2->value.op.op1);
12370 : :
12371 : 420 : case INTRINSIC_PLUS:
12372 : 420 : case INTRINSIC_MINUS:
12373 : 420 : case INTRINSIC_TIMES:
12374 : 420 : case INTRINSIC_DIVIDE:
12375 : 420 : case INTRINSIC_POWER:
12376 : 420 : case INTRINSIC_AND:
12377 : 420 : case INTRINSIC_OR:
12378 : 420 : case INTRINSIC_EQV:
12379 : 420 : case INTRINSIC_NEQV:
12380 : 420 : case INTRINSIC_EQ:
12381 : 420 : case INTRINSIC_NE:
12382 : 420 : case INTRINSIC_GT:
12383 : 420 : case INTRINSIC_GE:
12384 : 420 : case INTRINSIC_LT:
12385 : 420 : case INTRINSIC_LE:
12386 : 420 : case INTRINSIC_EQ_OS:
12387 : 420 : case INTRINSIC_NE_OS:
12388 : 420 : case INTRINSIC_GT_OS:
12389 : 420 : case INTRINSIC_GE_OS:
12390 : 420 : case INTRINSIC_LT_OS:
12391 : 420 : case INTRINSIC_LE_OS:
12392 : :
12393 : 420 : e1 = expr2->value.op.op1;
12394 : 420 : e2 = expr2->value.op.op2;
12395 : :
12396 : 420 : if (e1->rank == 0 && e2->rank > 0)
12397 : : return is_runtime_conformable (expr1, e2);
12398 : 374 : else if (e1->rank > 0 && e2->rank == 0)
12399 : : return is_runtime_conformable (expr1, e1);
12400 : 163 : else if (e1->rank > 0 && e2->rank > 0)
12401 : 163 : return is_runtime_conformable (expr1, e1)
12402 : 163 : && is_runtime_conformable (expr1, e2);
12403 : : break;
12404 : :
12405 : : default:
12406 : : break;
12407 : :
12408 : : }
12409 : :
12410 : : break;
12411 : :
12412 : : default:
12413 : : break;
12414 : : }
12415 : : return false;
12416 : : }
12417 : :
12418 : :
12419 : : static tree
12420 : 3132 : trans_class_assignment (stmtblock_t *block, gfc_expr *lhs, gfc_expr *rhs,
12421 : : gfc_se *lse, gfc_se *rse, bool use_vptr_copy,
12422 : : bool class_realloc)
12423 : : {
12424 : 3132 : tree tmp, fcn, stdcopy, to_len, from_len, vptr, old_vptr, rhs_vptr;
12425 : 3132 : vec<tree, va_gc> *args = NULL;
12426 : 3132 : bool final_expr;
12427 : :
12428 : 3132 : final_expr = gfc_assignment_finalizer_call (lse, lhs, false);
12429 : 3132 : if (final_expr)
12430 : : {
12431 : 418 : if (rse->loop)
12432 : 160 : gfc_prepend_expr_to_block (&rse->loop->pre,
12433 : : gfc_finish_block (&lse->finalblock));
12434 : : else
12435 : 258 : gfc_add_block_to_block (block, &lse->finalblock);
12436 : : }
12437 : :
12438 : : /* Store the old vptr so that dynamic types can be compared for
12439 : : reallocation to occur or not. */
12440 : 3132 : if (class_realloc)
12441 : : {
12442 : 270 : tmp = lse->expr;
12443 : 270 : if (!GFC_CLASS_TYPE_P (TREE_TYPE (tmp)))
12444 : 18 : tmp = gfc_get_class_from_expr (tmp);
12445 : : }
12446 : :
12447 : 3132 : vptr = trans_class_vptr_len_assignment (block, lhs, rhs, rse, &to_len,
12448 : : &from_len, &rhs_vptr);
12449 : 3132 : if (rhs_vptr == NULL_TREE)
12450 : 61 : rhs_vptr = vptr;
12451 : :
12452 : : /* Generate (re)allocation of the lhs. */
12453 : 3132 : if (class_realloc)
12454 : : {
12455 : 270 : stmtblock_t alloc, re_alloc;
12456 : 270 : tree class_han, re, size;
12457 : :
12458 : 270 : if (tmp && GFC_CLASS_TYPE_P (TREE_TYPE (tmp)))
12459 : 252 : old_vptr = gfc_evaluate_now (gfc_class_vptr_get (tmp), block);
12460 : : else
12461 : 18 : old_vptr = build_int_cst (TREE_TYPE (vptr), 0);
12462 : :
12463 : 270 : size = gfc_vptr_size_get (rhs_vptr);
12464 : :
12465 : : /* Take into account _len of unlimited polymorphic entities.
12466 : : TODO: handle class(*) allocatable function results on rhs. */
12467 : 270 : if (UNLIMITED_POLY (rhs))
12468 : : {
12469 : 18 : tree len;
12470 : 18 : if (rhs->expr_type == EXPR_VARIABLE)
12471 : 12 : len = trans_get_upoly_len (block, rhs);
12472 : : else
12473 : 6 : len = gfc_class_len_get (tmp);
12474 : 18 : len = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
12475 : : fold_convert (size_type_node, len),
12476 : : size_one_node);
12477 : 18 : size = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (size),
12478 : 18 : size, fold_convert (TREE_TYPE (size), len));
12479 : 18 : }
12480 : 252 : else if (rhs->ts.type == BT_CHARACTER && rse->string_length)
12481 : 21 : size = fold_build2_loc (input_location, MULT_EXPR,
12482 : : gfc_charlen_type_node, size,
12483 : : rse->string_length);
12484 : :
12485 : :
12486 : 270 : tmp = lse->expr;
12487 : 270 : class_han = GFC_CLASS_TYPE_P (TREE_TYPE (tmp))
12488 : 270 : ? gfc_class_data_get (tmp) : tmp;
12489 : :
12490 : 270 : if (!POINTER_TYPE_P (TREE_TYPE (class_han)))
12491 : 18 : class_han = gfc_build_addr_expr (NULL_TREE, class_han);
12492 : :
12493 : : /* Allocate block. */
12494 : 270 : gfc_init_block (&alloc);
12495 : 270 : gfc_allocate_using_malloc (&alloc, class_han, size, NULL_TREE);
12496 : :
12497 : : /* Reallocate if dynamic types are different. */
12498 : 270 : gfc_init_block (&re_alloc);
12499 : 270 : if (UNLIMITED_POLY (lhs) && rhs->ts.type == BT_CHARACTER)
12500 : : {
12501 : 21 : gfc_add_expr_to_block (&re_alloc, gfc_call_free (class_han));
12502 : 21 : gfc_allocate_using_malloc (&re_alloc, class_han, size, NULL_TREE);
12503 : : }
12504 : : else
12505 : : {
12506 : 249 : tmp = fold_convert (pvoid_type_node, class_han);
12507 : 249 : re = build_call_expr_loc (input_location,
12508 : : builtin_decl_explicit (BUILT_IN_REALLOC),
12509 : : 2, tmp, size);
12510 : 249 : re = fold_build2_loc (input_location, MODIFY_EXPR, TREE_TYPE (tmp),
12511 : : tmp, re);
12512 : 249 : tmp = fold_build2_loc (input_location, NE_EXPR,
12513 : : logical_type_node, rhs_vptr, old_vptr);
12514 : 249 : re = fold_build3_loc (input_location, COND_EXPR, void_type_node,
12515 : : tmp, re, build_empty_stmt (input_location));
12516 : 249 : gfc_add_expr_to_block (&re_alloc, re);
12517 : : }
12518 : 270 : tree realloc_expr = lhs->ts.type == BT_CLASS ?
12519 : 252 : gfc_finish_block (&re_alloc) :
12520 : 18 : build_empty_stmt (input_location);
12521 : :
12522 : : /* Allocate if _data is NULL, reallocate otherwise. */
12523 : 270 : tmp = fold_build2_loc (input_location, EQ_EXPR,
12524 : : logical_type_node, class_han,
12525 : 270 : build_int_cst (prvoid_type_node, 0));
12526 : 270 : tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node,
12527 : : gfc_unlikely (tmp,
12528 : : PRED_FORTRAN_FAIL_ALLOC),
12529 : : gfc_finish_block (&alloc),
12530 : : realloc_expr);
12531 : 270 : gfc_add_expr_to_block (&lse->pre, tmp);
12532 : : }
12533 : :
12534 : 3132 : fcn = gfc_vptr_copy_get (vptr);
12535 : :
12536 : 3132 : tmp = GFC_CLASS_TYPE_P (TREE_TYPE (rse->expr))
12537 : 3132 : ? gfc_class_data_get (rse->expr) : rse->expr;
12538 : 3132 : if (use_vptr_copy)
12539 : : {
12540 : 5262 : if (!POINTER_TYPE_P (TREE_TYPE (tmp))
12541 : 518 : || INDIRECT_REF_P (tmp)
12542 : 397 : || (rhs->ts.type == BT_DERIVED
12543 : 0 : && rhs->ts.u.derived->attr.unlimited_polymorphic
12544 : : && !rhs->ts.u.derived->attr.pointer
12545 : 0 : && !rhs->ts.u.derived->attr.allocatable)
12546 : 3284 : || (UNLIMITED_POLY (rhs)
12547 : : && !CLASS_DATA (rhs)->attr.pointer
12548 : 134 : && !CLASS_DATA (rhs)->attr.allocatable))
12549 : 2490 : vec_safe_push (args, gfc_build_addr_expr (NULL_TREE, tmp));
12550 : : else
12551 : 397 : vec_safe_push (args, tmp);
12552 : 2887 : tmp = GFC_CLASS_TYPE_P (TREE_TYPE (lse->expr))
12553 : 2887 : ? gfc_class_data_get (lse->expr) : lse->expr;
12554 : 5103 : if (!POINTER_TYPE_P (TREE_TYPE (tmp))
12555 : 671 : || INDIRECT_REF_P (tmp)
12556 : 252 : || (lhs->ts.type == BT_DERIVED
12557 : 0 : && lhs->ts.u.derived->attr.unlimited_polymorphic
12558 : : && !lhs->ts.u.derived->attr.pointer
12559 : 0 : && !lhs->ts.u.derived->attr.allocatable)
12560 : 3139 : || (UNLIMITED_POLY (lhs)
12561 : : && !CLASS_DATA (lhs)->attr.pointer
12562 : 95 : && !CLASS_DATA (lhs)->attr.allocatable))
12563 : 2635 : vec_safe_push (args, gfc_build_addr_expr (NULL_TREE, tmp));
12564 : : else
12565 : 252 : vec_safe_push (args, tmp);
12566 : :
12567 : 2887 : stdcopy = build_call_vec (TREE_TYPE (TREE_TYPE (fcn)), fcn, args);
12568 : :
12569 : 2887 : if (to_len != NULL_TREE && !integer_zerop (from_len))
12570 : : {
12571 : 400 : tree extcopy;
12572 : 400 : vec_safe_push (args, from_len);
12573 : 400 : vec_safe_push (args, to_len);
12574 : 400 : extcopy = build_call_vec (TREE_TYPE (TREE_TYPE (fcn)), fcn, args);
12575 : :
12576 : 400 : tmp = fold_build2_loc (input_location, GT_EXPR,
12577 : : logical_type_node, from_len,
12578 : 400 : build_zero_cst (TREE_TYPE (from_len)));
12579 : 400 : return fold_build3_loc (input_location, COND_EXPR,
12580 : : void_type_node, tmp,
12581 : 400 : extcopy, stdcopy);
12582 : : }
12583 : : else
12584 : 2487 : return stdcopy;
12585 : : }
12586 : : else
12587 : : {
12588 : 245 : tree rhst = GFC_CLASS_TYPE_P (TREE_TYPE (lse->expr))
12589 : 245 : ? gfc_class_data_get (lse->expr) : lse->expr;
12590 : 245 : stmtblock_t tblock;
12591 : 245 : gfc_init_block (&tblock);
12592 : 245 : if (!POINTER_TYPE_P (TREE_TYPE (tmp)))
12593 : 0 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
12594 : 245 : if (!POINTER_TYPE_P (TREE_TYPE (rhst)))
12595 : 0 : rhst = gfc_build_addr_expr (NULL_TREE, rhst);
12596 : : /* When coming from a ptr_copy lhs and rhs are swapped. */
12597 : 245 : gfc_add_modify_loc (input_location, &tblock, rhst,
12598 : 245 : fold_convert (TREE_TYPE (rhst), tmp));
12599 : 245 : return gfc_finish_block (&tblock);
12600 : : }
12601 : : }
12602 : :
12603 : : bool
12604 : 201811 : is_assoc_assign (gfc_expr *lhs, gfc_expr *rhs)
12605 : : {
12606 : 201811 : if (lhs->expr_type != EXPR_VARIABLE || rhs->expr_type != EXPR_VARIABLE)
12607 : : return false;
12608 : :
12609 : 29627 : return lhs->symtree->n.sym->assoc
12610 : 29627 : && lhs->symtree->n.sym->assoc->target == rhs;
12611 : : }
12612 : :
12613 : : /* Subroutine of gfc_trans_assignment that actually scalarizes the
12614 : : assignment. EXPR1 is the destination/LHS and EXPR2 is the source/RHS.
12615 : : init_flag indicates initialization expressions and dealloc that no
12616 : : deallocate prior assignment is needed (if in doubt, set true).
12617 : : When PTR_COPY is set and expr1 is a class type, then use the _vptr-copy
12618 : : routine instead of a pointer assignment. Alias resolution is only done,
12619 : : when MAY_ALIAS is set (the default). This flag is used by ALLOCATE()
12620 : : where it is known, that newly allocated memory on the lhs can never be
12621 : : an alias of the rhs. */
12622 : :
12623 : : static tree
12624 : 201811 : gfc_trans_assignment_1 (gfc_expr * expr1, gfc_expr * expr2, bool init_flag,
12625 : : bool dealloc, bool use_vptr_copy, bool may_alias)
12626 : : {
12627 : 201811 : gfc_se lse;
12628 : 201811 : gfc_se rse;
12629 : 201811 : gfc_ss *lss;
12630 : 201811 : gfc_ss *lss_section;
12631 : 201811 : gfc_ss *rss;
12632 : 201811 : gfc_loopinfo loop;
12633 : 201811 : tree tmp;
12634 : 201811 : stmtblock_t block;
12635 : 201811 : stmtblock_t body;
12636 : 201811 : bool final_expr;
12637 : 201811 : bool l_is_temp;
12638 : 201811 : bool scalar_to_array;
12639 : 201811 : tree string_length;
12640 : 201811 : int n;
12641 : 201811 : bool maybe_workshare = false, lhs_refs_comp = false, rhs_refs_comp = false;
12642 : 201811 : symbol_attribute lhs_caf_attr, rhs_caf_attr, lhs_attr;
12643 : 201811 : bool is_poly_assign;
12644 : 201811 : bool realloc_flag;
12645 : 201811 : bool assoc_assign = false;
12646 : :
12647 : : /* Assignment of the form lhs = rhs. */
12648 : 201811 : gfc_start_block (&block);
12649 : :
12650 : 201811 : gfc_init_se (&lse, NULL);
12651 : 201811 : gfc_init_se (&rse, NULL);
12652 : :
12653 : : /* Walk the lhs. */
12654 : 201811 : lss = gfc_walk_expr (expr1);
12655 : 201811 : if (gfc_is_reallocatable_lhs (expr1))
12656 : : {
12657 : 10125 : lss->no_bounds_check = 1;
12658 : 10125 : if (!(expr2->expr_type == EXPR_FUNCTION
12659 : 2567 : && expr2->value.function.isym != NULL
12660 : 2275 : && !(expr2->value.function.isym->elemental
12661 : : || expr2->value.function.isym->conversion)))
12662 : 8129 : lss->is_alloc_lhs = 1;
12663 : : }
12664 : : else
12665 : 191686 : lss->no_bounds_check = expr1->no_bounds_check;
12666 : :
12667 : 201811 : rss = NULL;
12668 : :
12669 : 201811 : if (expr2->expr_type != EXPR_VARIABLE
12670 : 201811 : && expr2->expr_type != EXPR_CONSTANT
12671 : 201811 : && (expr2->ts.type == BT_CLASS || gfc_may_be_finalized (expr2->ts)))
12672 : : {
12673 : 646 : expr2->must_finalize = 1;
12674 : : /* F2023 7.5.6.3: If an executable construct references a nonpointer
12675 : : function, the result is finalized after execution of the innermost
12676 : : executable construct containing the reference. */
12677 : 646 : if (expr2->expr_type == EXPR_FUNCTION
12678 : 646 : && (gfc_expr_attr (expr2).pointer
12679 : 291 : || (expr2->ts.type == BT_CLASS && CLASS_DATA (expr2)->attr.class_pointer)))
12680 : 133 : expr2->must_finalize = 0;
12681 : : /* F2008 4.5.6.3 para 5: If an executable construct references a
12682 : : structure constructor or array constructor, the entity created by
12683 : : the constructor is finalized after execution of the innermost
12684 : : executable construct containing the reference.
12685 : : These finalizations were later deleted by the Combined Techical
12686 : : Corrigenda 1 TO 4 for fortran 2008 (f08/0011). */
12687 : 513 : else if (gfc_notification_std (GFC_STD_F2018_DEL)
12688 : 513 : && (expr2->expr_type == EXPR_STRUCTURE
12689 : 470 : || expr2->expr_type == EXPR_ARRAY))
12690 : 190 : expr2->must_finalize = 0;
12691 : : }
12692 : :
12693 : :
12694 : : /* Checking whether a class assignment is desired is quite complicated and
12695 : : needed at two locations, so do it once only before the information is
12696 : : needed. */
12697 : 201811 : lhs_attr = gfc_expr_attr (expr1);
12698 : :
12699 : 187138 : is_poly_assign = (use_vptr_copy || lhs_attr.pointer
12700 : 183965 : || (lhs_attr.allocatable && !lhs_attr.dimension))
12701 : 21164 : && (expr1->ts.type == BT_CLASS
12702 : 20392 : || gfc_is_class_array_ref (expr1, NULL)
12703 : 19261 : || gfc_is_class_scalar_expr (expr1)
12704 : 17989 : || gfc_is_class_array_ref (expr2, NULL)
12705 : 17989 : || gfc_is_class_scalar_expr (expr2))
12706 : 205004 : && lhs_attr.flavor != FL_PROCEDURE;
12707 : :
12708 : 201811 : assoc_assign = is_assoc_assign (expr1, expr2);
12709 : :
12710 : 403622 : realloc_flag = flag_realloc_lhs
12711 : 196256 : && gfc_is_reallocatable_lhs (expr1)
12712 : 7008 : && expr2->rank
12713 : 207460 : && !is_runtime_conformable (expr1, expr2);
12714 : :
12715 : : /* Only analyze the expressions for coarray properties, when in coarray-lib
12716 : : mode. Avoid false-positive uninitialized diagnostics with initializing
12717 : : the codimension flag unconditionally. */
12718 : 201811 : lhs_caf_attr.codimension = false;
12719 : 201811 : rhs_caf_attr.codimension = false;
12720 : 201811 : if (flag_coarray == GFC_FCOARRAY_LIB)
12721 : : {
12722 : 3912 : lhs_caf_attr = gfc_caf_attr (expr1, false, &lhs_refs_comp);
12723 : 3912 : rhs_caf_attr = gfc_caf_attr (expr2, false, &rhs_refs_comp);
12724 : : }
12725 : :
12726 : 201811 : if (lss != gfc_ss_terminator)
12727 : : {
12728 : : /* The assignment needs scalarization. */
12729 : : lss_section = lss;
12730 : :
12731 : : /* Find a non-scalar SS from the lhs. */
12732 : : while (lss_section != gfc_ss_terminator
12733 : 36826 : && lss_section->info->type != GFC_SS_SECTION)
12734 : 0 : lss_section = lss_section->next;
12735 : :
12736 : 36826 : gcc_assert (lss_section != gfc_ss_terminator);
12737 : :
12738 : : /* Initialize the scalarizer. */
12739 : 36826 : gfc_init_loopinfo (&loop);
12740 : :
12741 : : /* Walk the rhs. */
12742 : 36826 : rss = gfc_walk_expr (expr2);
12743 : 36826 : if (rss == gfc_ss_terminator)
12744 : : /* The rhs is scalar. Add a ss for the expression. */
12745 : 13740 : rss = gfc_get_scalar_ss (gfc_ss_terminator, expr2);
12746 : : /* When doing a class assign, then the handle to the rhs needs to be a
12747 : : pointer to allow for polymorphism. */
12748 : 36826 : if (is_poly_assign && expr2->rank == 0 && !UNLIMITED_POLY (expr2))
12749 : 478 : rss->info->type = GFC_SS_REFERENCE;
12750 : :
12751 : 36826 : rss->no_bounds_check = expr2->no_bounds_check;
12752 : : /* Associate the SS with the loop. */
12753 : 36826 : gfc_add_ss_to_loop (&loop, lss);
12754 : 36826 : gfc_add_ss_to_loop (&loop, rss);
12755 : :
12756 : : /* Calculate the bounds of the scalarization. */
12757 : 36826 : gfc_conv_ss_startstride (&loop);
12758 : : /* Enable loop reversal. */
12759 : 626042 : for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
12760 : 552390 : loop.reverse[n] = GFC_ENABLE_REVERSE;
12761 : : /* Resolve any data dependencies in the statement. */
12762 : 36826 : if (may_alias)
12763 : 34680 : gfc_conv_resolve_dependencies (&loop, lss, rss);
12764 : : /* Setup the scalarizing loops. */
12765 : 36826 : gfc_conv_loop_setup (&loop, &expr2->where);
12766 : :
12767 : : /* Setup the gfc_se structures. */
12768 : 36826 : gfc_copy_loopinfo_to_se (&lse, &loop);
12769 : 36826 : gfc_copy_loopinfo_to_se (&rse, &loop);
12770 : :
12771 : 36826 : rse.ss = rss;
12772 : 36826 : gfc_mark_ss_chain_used (rss, 1);
12773 : 36826 : if (loop.temp_ss == NULL)
12774 : : {
12775 : 35873 : lse.ss = lss;
12776 : 35873 : gfc_mark_ss_chain_used (lss, 1);
12777 : : }
12778 : : else
12779 : : {
12780 : 953 : lse.ss = loop.temp_ss;
12781 : 953 : gfc_mark_ss_chain_used (lss, 3);
12782 : 953 : gfc_mark_ss_chain_used (loop.temp_ss, 3);
12783 : : }
12784 : :
12785 : : /* Allow the scalarizer to workshare array assignments. */
12786 : 36826 : if ((ompws_flags & (OMPWS_WORKSHARE_FLAG | OMPWS_SCALARIZER_BODY))
12787 : : == OMPWS_WORKSHARE_FLAG
12788 : 85 : && loop.temp_ss == NULL)
12789 : : {
12790 : 73 : maybe_workshare = true;
12791 : 73 : ompws_flags |= OMPWS_SCALARIZER_WS | OMPWS_SCALARIZER_BODY;
12792 : : }
12793 : :
12794 : : /* Start the scalarized loop body. */
12795 : 36826 : gfc_start_scalarized_body (&loop, &body);
12796 : : }
12797 : : else
12798 : 164985 : gfc_init_block (&body);
12799 : :
12800 : 201811 : l_is_temp = (lss != gfc_ss_terminator && loop.temp_ss != NULL);
12801 : :
12802 : : /* Translate the expression. */
12803 : 403622 : rse.want_coarray = flag_coarray == GFC_FCOARRAY_LIB
12804 : 201811 : && (init_flag || assoc_assign) && lhs_caf_attr.codimension;
12805 : 201811 : rse.want_pointer = rse.want_coarray && !init_flag && !lhs_caf_attr.dimension;
12806 : 201811 : gfc_conv_expr (&rse, expr2);
12807 : :
12808 : : /* Deal with the case of a scalar class function assigned to a derived type.
12809 : : */
12810 : 201811 : if (gfc_is_alloc_class_scalar_function (expr2)
12811 : 201811 : && expr1->ts.type == BT_DERIVED)
12812 : : {
12813 : 60 : rse.expr = gfc_class_data_get (rse.expr);
12814 : 60 : rse.expr = build_fold_indirect_ref_loc (input_location, rse.expr);
12815 : : }
12816 : :
12817 : : /* Stabilize a string length for temporaries. */
12818 : 201811 : if (expr2->ts.type == BT_CHARACTER && !expr1->ts.deferred
12819 : 23042 : && !(VAR_P (rse.string_length)
12820 : : || TREE_CODE (rse.string_length) == PARM_DECL
12821 : : || INDIRECT_REF_P (rse.string_length)))
12822 : 22293 : string_length = gfc_evaluate_now (rse.string_length, &rse.pre);
12823 : 179518 : else if (expr2->ts.type == BT_CHARACTER)
12824 : : {
12825 : 3787 : if (expr1->ts.deferred
12826 : 5922 : && gfc_expr_attr (expr1).allocatable
12827 : 6036 : && gfc_check_dependency (expr1, expr2, true))
12828 : 114 : rse.string_length =
12829 : 114 : gfc_evaluate_now_function_scope (rse.string_length, &rse.pre);
12830 : 3787 : string_length = rse.string_length;
12831 : : }
12832 : : else
12833 : : string_length = NULL_TREE;
12834 : :
12835 : 201811 : if (l_is_temp)
12836 : : {
12837 : 953 : gfc_conv_tmp_array_ref (&lse);
12838 : 953 : if (expr2->ts.type == BT_CHARACTER)
12839 : 111 : lse.string_length = string_length;
12840 : : }
12841 : : else
12842 : : {
12843 : 200858 : gfc_conv_expr (&lse, expr1);
12844 : 200858 : if (gfc_option.rtcheck & GFC_RTCHECK_MEM
12845 : 6143 : && !init_flag
12846 : 200870 : && gfc_expr_attr (expr1).allocatable
12847 : 48 : && expr1->rank
12848 : 200906 : && !expr2->rank)
12849 : : {
12850 : 36 : tree cond;
12851 : 36 : const char* msg;
12852 : :
12853 : 72 : tmp = INDIRECT_REF_P (lse.expr)
12854 : 36 : ? gfc_build_addr_expr (NULL_TREE, lse.expr) : lse.expr;
12855 : 36 : STRIP_NOPS (tmp);
12856 : :
12857 : : /* We should only get array references here. */
12858 : 36 : gcc_assert (TREE_CODE (tmp) == POINTER_PLUS_EXPR
12859 : : || TREE_CODE (tmp) == ARRAY_REF);
12860 : :
12861 : : /* 'tmp' is either the pointer to the array(POINTER_PLUS_EXPR)
12862 : : or the array itself(ARRAY_REF). */
12863 : 36 : tmp = TREE_OPERAND (tmp, 0);
12864 : :
12865 : : /* Provide the address of the array. */
12866 : 36 : if (TREE_CODE (lse.expr) == ARRAY_REF)
12867 : 18 : tmp = gfc_build_addr_expr (NULL_TREE, tmp);
12868 : :
12869 : 36 : cond = fold_build2_loc (input_location, EQ_EXPR, logical_type_node,
12870 : 36 : tmp, build_int_cst (TREE_TYPE (tmp), 0));
12871 : 36 : msg = _("Assignment of scalar to unallocated array");
12872 : 36 : gfc_trans_runtime_check (true, false, cond, &loop.pre,
12873 : : &expr1->where, msg);
12874 : : }
12875 : :
12876 : : /* Deallocate the lhs parameterized components if required. */
12877 : 200858 : if (dealloc && expr2->expr_type == EXPR_FUNCTION
12878 : 34109 : && !expr1->symtree->n.sym->attr.associate_var)
12879 : : {
12880 : 34026 : if (expr1->ts.type == BT_DERIVED
12881 : 1890 : && expr1->ts.u.derived
12882 : 1890 : && expr1->ts.u.derived->attr.pdt_type)
12883 : : {
12884 : 12 : tmp = gfc_deallocate_pdt_comp (expr1->ts.u.derived, lse.expr,
12885 : : expr1->rank);
12886 : 12 : gfc_add_expr_to_block (&lse.pre, tmp);
12887 : : }
12888 : 34014 : else if (expr1->ts.type == BT_CLASS
12889 : 337 : && CLASS_DATA (expr1)->ts.u.derived
12890 : 337 : && CLASS_DATA (expr1)->ts.u.derived->attr.pdt_type)
12891 : : {
12892 : 0 : tmp = gfc_class_data_get (lse.expr);
12893 : 0 : tmp = gfc_deallocate_pdt_comp (CLASS_DATA (expr1)->ts.u.derived,
12894 : : tmp, expr1->rank);
12895 : 0 : gfc_add_expr_to_block (&lse.pre, tmp);
12896 : : }
12897 : : }
12898 : : }
12899 : :
12900 : : /* Assignments of scalar derived types with allocatable components
12901 : : to arrays must be done with a deep copy and the rhs temporary
12902 : : must have its components deallocated afterwards. */
12903 : 403622 : scalar_to_array = (expr2->ts.type == BT_DERIVED
12904 : 16652 : && expr2->ts.u.derived->attr.alloc_comp
12905 : 5060 : && !gfc_expr_is_variable (expr2)
12906 : 204423 : && expr1->rank && !expr2->rank);
12907 : 403622 : scalar_to_array |= (expr1->ts.type == BT_DERIVED
12908 : 16933 : && expr1->rank
12909 : 3199 : && expr1->ts.u.derived->attr.alloc_comp
12910 : 202859 : && gfc_is_alloc_class_scalar_function (expr2));
12911 : 201811 : if (scalar_to_array && dealloc)
12912 : : {
12913 : 50 : tmp = gfc_deallocate_alloc_comp_no_caf (expr2->ts.u.derived, rse.expr, 0);
12914 : 50 : gfc_prepend_expr_to_block (&loop.post, tmp);
12915 : : }
12916 : :
12917 : : /* When assigning a character function result to a deferred-length variable,
12918 : : the function call must happen before the (re)allocation of the lhs -
12919 : : otherwise the character length of the result is not known.
12920 : : NOTE 1: This relies on having the exact dependence of the length type
12921 : : parameter available to the caller; gfortran saves it in the .mod files.
12922 : : NOTE 2: Vector array references generate an index temporary that must
12923 : : not go outside the loop. Otherwise, variables should not generate
12924 : : a pre block.
12925 : : NOTE 3: The concatenation operation generates a temporary pointer,
12926 : : whose allocation must go to the innermost loop.
12927 : : NOTE 4: Elemental functions may generate a temporary, too. */
12928 : 201811 : if (flag_realloc_lhs
12929 : 196256 : && expr2->ts.type == BT_CHARACTER && expr1->ts.deferred
12930 : 2544 : && !(lss != gfc_ss_terminator
12931 : 745 : && rss != gfc_ss_terminator
12932 : 745 : && ((expr2->expr_type == EXPR_VARIABLE && expr2->rank)
12933 : 568 : || (expr2->expr_type == EXPR_FUNCTION
12934 : 118 : && expr2->value.function.esym != NULL
12935 : 26 : && expr2->value.function.esym->attr.elemental)
12936 : 555 : || (expr2->expr_type == EXPR_FUNCTION
12937 : 105 : && expr2->value.function.isym != NULL
12938 : 92 : && expr2->value.function.isym->elemental)
12939 : 535 : || (expr2->expr_type == EXPR_OP
12940 : 31 : && expr2->value.op.op == INTRINSIC_CONCAT))))
12941 : 2309 : gfc_add_block_to_block (&block, &rse.pre);
12942 : :
12943 : : /* Nullify the allocatable components corresponding to those of the lhs
12944 : : derived type, so that the finalization of the function result does not
12945 : : affect the lhs of the assignment. Prepend is used to ensure that the
12946 : : nullification occurs before the call to the finalizer. In the case of
12947 : : a scalar to array assignment, this is done in gfc_trans_scalar_assign
12948 : : as part of the deep copy. */
12949 : 201237 : if (!scalar_to_array && expr1->ts.type == BT_DERIVED
12950 : 218170 : && (gfc_is_class_array_function (expr2)
12951 : 16335 : || gfc_is_alloc_class_scalar_function (expr2)))
12952 : : {
12953 : 78 : tmp = gfc_nullify_alloc_comp (expr1->ts.u.derived, rse.expr, 0);
12954 : 78 : gfc_prepend_expr_to_block (&rse.post, tmp);
12955 : 78 : if (lss != gfc_ss_terminator && rss == gfc_ss_terminator)
12956 : 0 : gfc_add_block_to_block (&loop.post, &rse.post);
12957 : : }
12958 : :
12959 : 201811 : tmp = NULL_TREE;
12960 : :
12961 : 201811 : if (is_poly_assign)
12962 : : {
12963 : 3132 : tmp = trans_class_assignment (&body, expr1, expr2, &lse, &rse,
12964 : 3132 : use_vptr_copy || (lhs_attr.allocatable
12965 : 515 : && !lhs_attr.dimension),
12966 : 2948 : !realloc_flag && flag_realloc_lhs
12967 : 3647 : && !lhs_attr.pointer);
12968 : 3132 : if (expr2->expr_type == EXPR_FUNCTION
12969 : 224 : && expr2->ts.type == BT_DERIVED
12970 : 30 : && expr2->ts.u.derived->attr.alloc_comp)
12971 : : {
12972 : 18 : tree tmp2 = gfc_deallocate_alloc_comp (expr2->ts.u.derived,
12973 : : rse.expr, expr2->rank);
12974 : 18 : if (lss == gfc_ss_terminator)
12975 : 18 : gfc_add_expr_to_block (&rse.post, tmp2);
12976 : : else
12977 : 0 : gfc_add_expr_to_block (&loop.post, tmp2);
12978 : : }
12979 : :
12980 : 3132 : expr1->must_finalize = 0;
12981 : : }
12982 : 198679 : else if (!is_poly_assign && expr2->must_finalize
12983 : 347 : && expr1->ts.type == BT_CLASS
12984 : 126 : && expr2->ts.type == BT_CLASS)
12985 : : {
12986 : : /* This case comes about when the scalarizer provides array element
12987 : : references. Use the vptr copy function, since this does a deep
12988 : : copy of allocatable components, without which the finalizer call
12989 : : will deallocate the components. */
12990 : 120 : tmp = gfc_get_vptr_from_expr (rse.expr);
12991 : 120 : if (tmp != NULL_TREE)
12992 : : {
12993 : 120 : tree fcn = gfc_vptr_copy_get (tmp);
12994 : 120 : if (POINTER_TYPE_P (TREE_TYPE (fcn)))
12995 : 120 : fcn = build_fold_indirect_ref_loc (input_location, fcn);
12996 : 120 : tmp = build_call_expr_loc (input_location,
12997 : : fcn, 2,
12998 : : gfc_build_addr_expr (NULL, rse.expr),
12999 : : gfc_build_addr_expr (NULL, lse.expr));
13000 : : }
13001 : : }
13002 : :
13003 : : /* Comply with F2018 (7.5.6.3). Make sure that any finalization code is added
13004 : : after evaluation of the rhs and before reallocation. */
13005 : 201811 : final_expr = gfc_assignment_finalizer_call (&lse, expr1, init_flag);
13006 : 201811 : if (final_expr && !(expr2->expr_type == EXPR_VARIABLE
13007 : 163 : && expr2->symtree->n.sym->attr.artificial))
13008 : : {
13009 : 545 : if (lss == gfc_ss_terminator)
13010 : : {
13011 : 158 : gfc_add_block_to_block (&block, &rse.pre);
13012 : 158 : gfc_add_block_to_block (&block, &lse.finalblock);
13013 : : }
13014 : : else
13015 : : {
13016 : 387 : gfc_add_block_to_block (&body, &rse.pre);
13017 : 387 : gfc_add_block_to_block (&loop.code[expr1->rank - 1],
13018 : : &lse.finalblock);
13019 : : }
13020 : : }
13021 : : else
13022 : 201266 : gfc_add_block_to_block (&body, &rse.pre);
13023 : :
13024 : 201811 : if (flag_coarray != GFC_FCOARRAY_NONE && expr1->ts.type == BT_CHARACTER
13025 : 1941 : && assoc_assign)
13026 : 0 : tmp = gfc_trans_pointer_assignment (expr1, expr2);
13027 : :
13028 : : /* If nothing else works, do it the old fashioned way! */
13029 : 201811 : if (tmp == NULL_TREE)
13030 : 198559 : tmp
13031 : 198559 : = gfc_trans_scalar_assign (&lse, &rse, expr1->ts,
13032 : 369227 : gfc_expr_is_variable (expr2) || scalar_to_array
13033 : 368737 : || expr2->expr_type == EXPR_ARRAY,
13034 : 198559 : !(l_is_temp || init_flag) && dealloc,
13035 : 198559 : expr1->symtree->n.sym->attr.codimension,
13036 : : assoc_assign);
13037 : :
13038 : : /* Add the lse pre block to the body */
13039 : 201811 : gfc_add_block_to_block (&body, &lse.pre);
13040 : 201811 : gfc_add_expr_to_block (&body, tmp);
13041 : :
13042 : : /* Add the post blocks to the body. Scalar finalization must appear before
13043 : : the post block in case any dellocations are done. */
13044 : 201811 : if (rse.finalblock.head
13045 : 201811 : && (!l_is_temp || (expr2->expr_type == EXPR_FUNCTION
13046 : 14 : && gfc_expr_attr (expr2).elemental)))
13047 : : {
13048 : 135 : gfc_add_block_to_block (&body, &rse.finalblock);
13049 : 135 : gfc_add_block_to_block (&body, &rse.post);
13050 : : }
13051 : : else
13052 : 201676 : gfc_add_block_to_block (&body, &rse.post);
13053 : :
13054 : 201811 : gfc_add_block_to_block (&body, &lse.post);
13055 : :
13056 : 201811 : if (lss == gfc_ss_terminator)
13057 : : {
13058 : : /* F2003: Add the code for reallocation on assignment. */
13059 : 162426 : if (flag_realloc_lhs && is_scalar_reallocatable_lhs (expr1)
13060 : 168113 : && !is_poly_assign)
13061 : 3110 : alloc_scalar_allocatable_for_assignment (&block, string_length,
13062 : : expr1, expr2);
13063 : :
13064 : : /* Use the scalar assignment as is. */
13065 : 164985 : gfc_add_block_to_block (&block, &body);
13066 : : }
13067 : : else
13068 : : {
13069 : 36826 : gcc_assert (lse.ss == gfc_ss_terminator
13070 : : && rse.ss == gfc_ss_terminator);
13071 : :
13072 : 36826 : if (l_is_temp)
13073 : : {
13074 : 953 : gfc_trans_scalarized_loop_boundary (&loop, &body);
13075 : :
13076 : : /* We need to copy the temporary to the actual lhs. */
13077 : 953 : gfc_init_se (&lse, NULL);
13078 : 953 : gfc_init_se (&rse, NULL);
13079 : 953 : gfc_copy_loopinfo_to_se (&lse, &loop);
13080 : 953 : gfc_copy_loopinfo_to_se (&rse, &loop);
13081 : :
13082 : 953 : rse.ss = loop.temp_ss;
13083 : 953 : lse.ss = lss;
13084 : :
13085 : 953 : gfc_conv_tmp_array_ref (&rse);
13086 : 953 : gfc_conv_expr (&lse, expr1);
13087 : :
13088 : 953 : gcc_assert (lse.ss == gfc_ss_terminator
13089 : : && rse.ss == gfc_ss_terminator);
13090 : :
13091 : 953 : if (expr2->ts.type == BT_CHARACTER)
13092 : 111 : rse.string_length = string_length;
13093 : :
13094 : 953 : tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts,
13095 : : false, dealloc);
13096 : 953 : gfc_add_expr_to_block (&body, tmp);
13097 : : }
13098 : :
13099 : : /* F2003: Allocate or reallocate lhs of allocatable array. */
13100 : 36826 : if (realloc_flag)
13101 : : {
13102 : 5466 : realloc_lhs_warning (expr1->ts.type, true, &expr1->where);
13103 : 5466 : ompws_flags &= ~OMPWS_SCALARIZER_WS;
13104 : 5466 : tmp = gfc_alloc_allocatable_for_assignment (&loop, expr1, expr2);
13105 : 5466 : if (tmp != NULL_TREE)
13106 : 5466 : gfc_add_expr_to_block (&loop.code[expr1->rank - 1], tmp);
13107 : : }
13108 : :
13109 : 36826 : if (maybe_workshare)
13110 : 73 : ompws_flags &= ~OMPWS_SCALARIZER_BODY;
13111 : :
13112 : : /* Generate the copying loops. */
13113 : 36826 : gfc_trans_scalarizing_loops (&loop, &body);
13114 : :
13115 : : /* Wrap the whole thing up. */
13116 : 36826 : gfc_add_block_to_block (&block, &loop.pre);
13117 : 36826 : gfc_add_block_to_block (&block, &loop.post);
13118 : :
13119 : 36826 : gfc_cleanup_loop (&loop);
13120 : : }
13121 : :
13122 : 201811 : return gfc_finish_block (&block);
13123 : : }
13124 : :
13125 : :
13126 : : /* Check whether EXPR is a copyable array. */
13127 : :
13128 : : static bool
13129 : 653594 : copyable_array_p (gfc_expr * expr)
13130 : : {
13131 : 653594 : if (expr->expr_type != EXPR_VARIABLE)
13132 : : return false;
13133 : :
13134 : : /* First check it's an array. */
13135 : 631111 : if (expr->rank < 1 || !expr->ref || expr->ref->next)
13136 : : return false;
13137 : :
13138 : 135152 : if (!gfc_full_array_ref_p (expr->ref, NULL))
13139 : : return false;
13140 : :
13141 : : /* Next check that it's of a simple enough type. */
13142 : 108489 : switch (expr->ts.type)
13143 : : {
13144 : : case BT_INTEGER:
13145 : : case BT_REAL:
13146 : : case BT_COMPLEX:
13147 : : case BT_LOGICAL:
13148 : : return true;
13149 : :
13150 : : case BT_CHARACTER:
13151 : : return false;
13152 : :
13153 : 5494 : case_bt_struct:
13154 : 5494 : return !expr->ts.u.derived->attr.alloc_comp;
13155 : :
13156 : : default:
13157 : : break;
13158 : : }
13159 : :
13160 : : return false;
13161 : : }
13162 : :
13163 : : /* Translate an assignment. */
13164 : :
13165 : : tree
13166 : 218721 : gfc_trans_assignment (gfc_expr * expr1, gfc_expr * expr2, bool init_flag,
13167 : : bool dealloc, bool use_vptr_copy, bool may_alias)
13168 : : {
13169 : 218721 : tree tmp;
13170 : :
13171 : : /* Special case a single function returning an array. */
13172 : 218721 : if (expr2->expr_type == EXPR_FUNCTION && expr2->rank > 0)
13173 : : {
13174 : 14372 : tmp = gfc_trans_arrayfunc_assign (expr1, expr2);
13175 : 14372 : if (tmp)
13176 : : return tmp;
13177 : : }
13178 : :
13179 : : /* Special case assigning an array to zero. */
13180 : 211756 : if (copyable_array_p (expr1)
13181 : 211756 : && is_zero_initializer_p (expr2))
13182 : : {
13183 : 3757 : tmp = gfc_trans_zero_assign (expr1);
13184 : 3757 : if (tmp)
13185 : : return tmp;
13186 : : }
13187 : :
13188 : : /* Special case copying one array to another. */
13189 : 208289 : if (copyable_array_p (expr1)
13190 : 26689 : && copyable_array_p (expr2)
13191 : 2582 : && gfc_compare_types (&expr1->ts, &expr2->ts)
13192 : 210871 : && !gfc_check_dependency (expr1, expr2, 0))
13193 : : {
13194 : 2487 : tmp = gfc_trans_array_copy (expr1, expr2);
13195 : 2487 : if (tmp)
13196 : : return tmp;
13197 : : }
13198 : :
13199 : : /* Special case initializing an array from a constant array constructor. */
13200 : 206860 : if (copyable_array_p (expr1)
13201 : 25260 : && expr2->expr_type == EXPR_ARRAY
13202 : 214290 : && gfc_compare_types (&expr1->ts, &expr2->ts))
13203 : : {
13204 : 7430 : tmp = gfc_trans_array_constructor_copy (expr1, expr2);
13205 : 7430 : if (tmp)
13206 : : return tmp;
13207 : : }
13208 : :
13209 : 201811 : if (UNLIMITED_POLY (expr1) && expr1->rank)
13210 : 201811 : use_vptr_copy = true;
13211 : :
13212 : : /* Fallback to the scalarizer to generate explicit loops. */
13213 : 201811 : return gfc_trans_assignment_1 (expr1, expr2, init_flag, dealloc,
13214 : 201811 : use_vptr_copy, may_alias);
13215 : : }
13216 : :
13217 : : tree
13218 : 11122 : gfc_trans_init_assign (gfc_code * code)
13219 : : {
13220 : 11122 : return gfc_trans_assignment (code->expr1, code->expr2, true, false, true);
13221 : : }
13222 : :
13223 : : tree
13224 : 199842 : gfc_trans_assign (gfc_code * code)
13225 : : {
13226 : 199842 : return gfc_trans_assignment (code->expr1, code->expr2, false, true);
13227 : : }
13228 : :
13229 : : /* Generate a simple loop for internal use of the form
13230 : : for (var = begin; var <cond> end; var += step)
13231 : : body; */
13232 : : void
13233 : 12154 : gfc_simple_for_loop (stmtblock_t *block, tree var, tree begin, tree end,
13234 : : enum tree_code cond, tree step, tree body)
13235 : : {
13236 : 12154 : tree tmp;
13237 : :
13238 : : /* var = begin. */
13239 : 12154 : gfc_add_modify (block, var, begin);
13240 : :
13241 : : /* Loop: for (var = begin; var <cond> end; var += step). */
13242 : 12154 : tree label_loop = gfc_build_label_decl (NULL_TREE);
13243 : 12154 : tree label_cond = gfc_build_label_decl (NULL_TREE);
13244 : 12154 : TREE_USED (label_loop) = 1;
13245 : 12154 : TREE_USED (label_cond) = 1;
13246 : :
13247 : 12154 : gfc_add_expr_to_block (block, build1_v (GOTO_EXPR, label_cond));
13248 : 12154 : gfc_add_expr_to_block (block, build1_v (LABEL_EXPR, label_loop));
13249 : :
13250 : : /* Loop body. */
13251 : 12154 : gfc_add_expr_to_block (block, body);
13252 : :
13253 : : /* End of loop body. */
13254 : 12154 : tmp = fold_build2_loc (input_location, PLUS_EXPR, TREE_TYPE (var), var, step);
13255 : 12154 : gfc_add_modify (block, var, tmp);
13256 : 12154 : gfc_add_expr_to_block (block, build1_v (LABEL_EXPR, label_cond));
13257 : 12154 : tmp = fold_build2_loc (input_location, cond, boolean_type_node, var, end);
13258 : 12154 : tmp = build3_v (COND_EXPR, tmp, build1_v (GOTO_EXPR, label_loop),
13259 : : build_empty_stmt (input_location));
13260 : 12154 : gfc_add_expr_to_block (block, tmp);
13261 : 12154 : }
|