re PR fortran/59678 ([F03] Segfault on equalizing variables of a complex derived...
[gcc.git] / gcc / fortran / trans-expr.c
1 /* Expression translation
2 Copyright (C) 2002-2015 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.c-- generate GENERIC trees for gfc_expr. */
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "gfortran.h"
28 #include "hash-set.h"
29 #include "machmode.h"
30 #include "vec.h"
31 #include "double-int.h"
32 #include "input.h"
33 #include "alias.h"
34 #include "symtab.h"
35 #include "options.h"
36 #include "wide-int.h"
37 #include "inchash.h"
38 #include "tree.h"
39 #include "fold-const.h"
40 #include "stringpool.h"
41 #include "diagnostic-core.h" /* For fatal_error. */
42 #include "langhooks.h"
43 #include "flags.h"
44 #include "arith.h"
45 #include "constructor.h"
46 #include "trans.h"
47 #include "trans-const.h"
48 #include "trans-types.h"
49 #include "trans-array.h"
50 /* Only for gfc_trans_assign and gfc_trans_pointer_assign. */
51 #include "trans-stmt.h"
52 #include "dependency.h"
53 #include "gimplify.h"
54
55 /* Convert a scalar to an array descriptor. To be used for assumed-rank
56 arrays. */
57
58 static tree
59 get_scalar_to_descriptor_type (tree scalar, symbol_attribute attr)
60 {
61 enum gfc_array_kind akind;
62
63 if (attr.pointer)
64 akind = GFC_ARRAY_POINTER_CONT;
65 else if (attr.allocatable)
66 akind = GFC_ARRAY_ALLOCATABLE;
67 else
68 akind = GFC_ARRAY_ASSUMED_SHAPE_CONT;
69
70 if (POINTER_TYPE_P (TREE_TYPE (scalar)))
71 scalar = TREE_TYPE (scalar);
72 return gfc_get_array_type_bounds (TREE_TYPE (scalar), 0, 0, NULL, NULL, 1,
73 akind, !(attr.pointer || attr.target));
74 }
75
76 tree
77 gfc_conv_scalar_to_descriptor (gfc_se *se, tree scalar, symbol_attribute attr)
78 {
79 tree desc, type;
80
81 type = get_scalar_to_descriptor_type (scalar, attr);
82 desc = gfc_create_var (type, "desc");
83 DECL_ARTIFICIAL (desc) = 1;
84
85 if (!POINTER_TYPE_P (TREE_TYPE (scalar)))
86 scalar = gfc_build_addr_expr (NULL_TREE, scalar);
87 gfc_add_modify (&se->pre, gfc_conv_descriptor_dtype (desc),
88 gfc_get_dtype (type));
89 gfc_conv_descriptor_data_set (&se->pre, desc, scalar);
90
91 /* Copy pointer address back - but only if it could have changed and
92 if the actual argument is a pointer and not, e.g., NULL(). */
93 if ((attr.pointer || attr.allocatable) && attr.intent != INTENT_IN)
94 gfc_add_modify (&se->post, scalar,
95 fold_convert (TREE_TYPE (scalar),
96 gfc_conv_descriptor_data_get (desc)));
97 return desc;
98 }
99
100
101 /* This is the seed for an eventual trans-class.c
102
103 The following parameters should not be used directly since they might
104 in future implementations. Use the corresponding APIs. */
105 #define CLASS_DATA_FIELD 0
106 #define CLASS_VPTR_FIELD 1
107 #define CLASS_LEN_FIELD 2
108 #define VTABLE_HASH_FIELD 0
109 #define VTABLE_SIZE_FIELD 1
110 #define VTABLE_EXTENDS_FIELD 2
111 #define VTABLE_DEF_INIT_FIELD 3
112 #define VTABLE_COPY_FIELD 4
113 #define VTABLE_FINAL_FIELD 5
114
115
116 tree
117 gfc_class_set_static_fields (tree decl, tree vptr, tree data)
118 {
119 tree tmp;
120 tree field;
121 vec<constructor_elt, va_gc> *init = NULL;
122
123 field = TYPE_FIELDS (TREE_TYPE (decl));
124 tmp = gfc_advance_chain (field, CLASS_DATA_FIELD);
125 CONSTRUCTOR_APPEND_ELT (init, tmp, data);
126
127 tmp = gfc_advance_chain (field, CLASS_VPTR_FIELD);
128 CONSTRUCTOR_APPEND_ELT (init, tmp, vptr);
129
130 return build_constructor (TREE_TYPE (decl), init);
131 }
132
133
134 tree
135 gfc_class_data_get (tree decl)
136 {
137 tree data;
138 if (POINTER_TYPE_P (TREE_TYPE (decl)))
139 decl = build_fold_indirect_ref_loc (input_location, decl);
140 data = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (decl)),
141 CLASS_DATA_FIELD);
142 return fold_build3_loc (input_location, COMPONENT_REF,
143 TREE_TYPE (data), decl, data,
144 NULL_TREE);
145 }
146
147
148 tree
149 gfc_class_vptr_get (tree decl)
150 {
151 tree vptr;
152 /* For class arrays decl may be a temporary descriptor handle, the vptr is
153 then available through the saved descriptor. */
154 if (TREE_CODE (decl) == VAR_DECL && DECL_LANG_SPECIFIC (decl)
155 && GFC_DECL_SAVED_DESCRIPTOR (decl))
156 decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
157 if (POINTER_TYPE_P (TREE_TYPE (decl)))
158 decl = build_fold_indirect_ref_loc (input_location, decl);
159 vptr = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (decl)),
160 CLASS_VPTR_FIELD);
161 return fold_build3_loc (input_location, COMPONENT_REF,
162 TREE_TYPE (vptr), decl, vptr,
163 NULL_TREE);
164 }
165
166
167 tree
168 gfc_class_len_get (tree decl)
169 {
170 tree len;
171 /* For class arrays decl may be a temporary descriptor handle, the len is
172 then available through the saved descriptor. */
173 if (TREE_CODE (decl) == VAR_DECL && DECL_LANG_SPECIFIC (decl)
174 && GFC_DECL_SAVED_DESCRIPTOR (decl))
175 decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
176 if (POINTER_TYPE_P (TREE_TYPE (decl)))
177 decl = build_fold_indirect_ref_loc (input_location, decl);
178 len = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (decl)),
179 CLASS_LEN_FIELD);
180 return fold_build3_loc (input_location, COMPONENT_REF,
181 TREE_TYPE (len), decl, len,
182 NULL_TREE);
183 }
184
185
186 /* Get the specified FIELD from the VPTR. */
187
188 static tree
189 vptr_field_get (tree vptr, int fieldno)
190 {
191 tree field;
192 vptr = build_fold_indirect_ref_loc (input_location, vptr);
193 field = gfc_advance_chain (TYPE_FIELDS (TREE_TYPE (vptr)),
194 fieldno);
195 field = fold_build3_loc (input_location, COMPONENT_REF,
196 TREE_TYPE (field), vptr, field,
197 NULL_TREE);
198 gcc_assert (field);
199 return field;
200 }
201
202
203 /* Get the field from the class' vptr. */
204
205 static tree
206 class_vtab_field_get (tree decl, int fieldno)
207 {
208 tree vptr;
209 vptr = gfc_class_vptr_get (decl);
210 return vptr_field_get (vptr, fieldno);
211 }
212
213
214 /* Define a macro for creating the class_vtab_* and vptr_* accessors in
215 unison. */
216 #define VTAB_GET_FIELD_GEN(name, field) tree \
217 gfc_class_vtab_## name ##_get (tree cl) \
218 { \
219 return class_vtab_field_get (cl, field); \
220 } \
221 \
222 tree \
223 gfc_vptr_## name ##_get (tree vptr) \
224 { \
225 return vptr_field_get (vptr, field); \
226 }
227
228 VTAB_GET_FIELD_GEN (hash, VTABLE_HASH_FIELD)
229 VTAB_GET_FIELD_GEN (extends, VTABLE_EXTENDS_FIELD)
230 VTAB_GET_FIELD_GEN (def_init, VTABLE_DEF_INIT_FIELD)
231 VTAB_GET_FIELD_GEN (copy, VTABLE_COPY_FIELD)
232 VTAB_GET_FIELD_GEN (final, VTABLE_FINAL_FIELD)
233
234
235 /* The size field is returned as an array index type. Therefore treat
236 it and only it specially. */
237
238 tree
239 gfc_class_vtab_size_get (tree cl)
240 {
241 tree size;
242 size = class_vtab_field_get (cl, VTABLE_SIZE_FIELD);
243 /* Always return size as an array index type. */
244 size = fold_convert (gfc_array_index_type, size);
245 gcc_assert (size);
246 return size;
247 }
248
249 tree
250 gfc_vptr_size_get (tree vptr)
251 {
252 tree size;
253 size = vptr_field_get (vptr, VTABLE_SIZE_FIELD);
254 /* Always return size as an array index type. */
255 size = fold_convert (gfc_array_index_type, size);
256 gcc_assert (size);
257 return size;
258 }
259
260
261 #undef CLASS_DATA_FIELD
262 #undef CLASS_VPTR_FIELD
263 #undef VTABLE_HASH_FIELD
264 #undef VTABLE_SIZE_FIELD
265 #undef VTABLE_EXTENDS_FIELD
266 #undef VTABLE_DEF_INIT_FIELD
267 #undef VTABLE_COPY_FIELD
268 #undef VTABLE_FINAL_FIELD
269
270
271 /* Search for the last _class ref in the chain of references of this
272 expression and cut the chain there. Albeit this routine is similiar
273 to class.c::gfc_add_component_ref (), is there a significant
274 difference: gfc_add_component_ref () concentrates on an array ref to
275 be the last ref in the chain. This routine is oblivious to the kind
276 of refs following. */
277
278 gfc_expr *
279 gfc_find_and_cut_at_last_class_ref (gfc_expr *e)
280 {
281 gfc_expr *base_expr;
282 gfc_ref *ref, *class_ref, *tail;
283
284 /* Find the last class reference. */
285 class_ref = NULL;
286 for (ref = e->ref; ref; ref = ref->next)
287 {
288 if (ref->type == REF_COMPONENT
289 && ref->u.c.component->ts.type == BT_CLASS)
290 class_ref = ref;
291
292 if (ref->next == NULL)
293 break;
294 }
295
296 /* Remove and store all subsequent references after the
297 CLASS reference. */
298 if (class_ref)
299 {
300 tail = class_ref->next;
301 class_ref->next = NULL;
302 }
303 else
304 {
305 tail = e->ref;
306 e->ref = NULL;
307 }
308
309 base_expr = gfc_expr_to_initialize (e);
310
311 /* Restore the original tail expression. */
312 if (class_ref)
313 {
314 gfc_free_ref_list (class_ref->next);
315 class_ref->next = tail;
316 }
317 else
318 {
319 gfc_free_ref_list (e->ref);
320 e->ref = tail;
321 }
322 return base_expr;
323 }
324
325
326 /* Reset the vptr to the declared type, e.g. after deallocation. */
327
328 void
329 gfc_reset_vptr (stmtblock_t *block, gfc_expr *e)
330 {
331 gfc_expr *rhs, *lhs = gfc_copy_expr (e);
332 gfc_symbol *vtab;
333 tree tmp;
334 gfc_ref *ref;
335
336 /* If we have a class array, we need go back to the class
337 container. */
338 if (lhs->ref && lhs->ref->next && !lhs->ref->next->next
339 && lhs->ref->next->type == REF_ARRAY
340 && lhs->ref->next->u.ar.type == AR_FULL
341 && lhs->ref->type == REF_COMPONENT
342 && strcmp (lhs->ref->u.c.component->name, "_data") == 0)
343 {
344 gfc_free_ref_list (lhs->ref);
345 lhs->ref = NULL;
346 }
347 else
348 for (ref = lhs->ref; ref; ref = ref->next)
349 if (ref->next && ref->next->next && !ref->next->next->next
350 && ref->next->next->type == REF_ARRAY
351 && ref->next->next->u.ar.type == AR_FULL
352 && ref->next->type == REF_COMPONENT
353 && strcmp (ref->next->u.c.component->name, "_data") == 0)
354 {
355 gfc_free_ref_list (ref->next);
356 ref->next = NULL;
357 }
358
359 gfc_add_vptr_component (lhs);
360
361 if (UNLIMITED_POLY (e))
362 rhs = gfc_get_null_expr (NULL);
363 else
364 {
365 vtab = gfc_find_derived_vtab (e->ts.u.derived);
366 rhs = gfc_lval_expr_from_sym (vtab);
367 }
368 tmp = gfc_trans_pointer_assignment (lhs, rhs);
369 gfc_add_expr_to_block (block, tmp);
370 gfc_free_expr (lhs);
371 gfc_free_expr (rhs);
372 }
373
374
375 /* Reset the len for unlimited polymorphic objects. */
376
377 void
378 gfc_reset_len (stmtblock_t *block, gfc_expr *expr)
379 {
380 gfc_expr *e;
381 gfc_se se_len;
382 e = gfc_find_and_cut_at_last_class_ref (expr);
383 gfc_add_len_component (e);
384 gfc_init_se (&se_len, NULL);
385 gfc_conv_expr (&se_len, e);
386 gfc_add_modify (block, se_len.expr,
387 fold_convert (TREE_TYPE (se_len.expr), integer_zero_node));
388 gfc_free_expr (e);
389 }
390
391
392 /* Obtain the vptr of the last class reference in an expression.
393 Return NULL_TREE if no class reference is found. */
394
395 tree
396 gfc_get_vptr_from_expr (tree expr)
397 {
398 tree tmp;
399 tree type;
400
401 for (tmp = expr; tmp; tmp = TREE_OPERAND (tmp, 0))
402 {
403 type = TREE_TYPE (tmp);
404 while (type)
405 {
406 if (GFC_CLASS_TYPE_P (type))
407 return gfc_class_vptr_get (tmp);
408 if (type != TYPE_CANONICAL (type))
409 type = TYPE_CANONICAL (type);
410 else
411 type = NULL_TREE;
412 }
413 if (TREE_CODE (tmp) == VAR_DECL)
414 break;
415 }
416 return NULL_TREE;
417 }
418
419
420 static void
421 class_array_data_assign (stmtblock_t *block, tree lhs_desc, tree rhs_desc,
422 bool lhs_type)
423 {
424 tree tmp, tmp2, type;
425
426 gfc_conv_descriptor_data_set (block, lhs_desc,
427 gfc_conv_descriptor_data_get (rhs_desc));
428 gfc_conv_descriptor_offset_set (block, lhs_desc,
429 gfc_conv_descriptor_offset_get (rhs_desc));
430
431 gfc_add_modify (block, gfc_conv_descriptor_dtype (lhs_desc),
432 gfc_conv_descriptor_dtype (rhs_desc));
433
434 /* Assign the dimension as range-ref. */
435 tmp = gfc_get_descriptor_dimension (lhs_desc);
436 tmp2 = gfc_get_descriptor_dimension (rhs_desc);
437
438 type = lhs_type ? TREE_TYPE (tmp) : TREE_TYPE (tmp2);
439 tmp = build4_loc (input_location, ARRAY_RANGE_REF, type, tmp,
440 gfc_index_zero_node, NULL_TREE, NULL_TREE);
441 tmp2 = build4_loc (input_location, ARRAY_RANGE_REF, type, tmp2,
442 gfc_index_zero_node, NULL_TREE, NULL_TREE);
443 gfc_add_modify (block, tmp, tmp2);
444 }
445
446
447 /* Takes a derived type expression and returns the address of a temporary
448 class object of the 'declared' type. If vptr is not NULL, this is
449 used for the temporary class object.
450 optional_alloc_ptr is false when the dummy is neither allocatable
451 nor a pointer; that's only relevant for the optional handling. */
452 void
453 gfc_conv_derived_to_class (gfc_se *parmse, gfc_expr *e,
454 gfc_typespec class_ts, tree vptr, bool optional,
455 bool optional_alloc_ptr)
456 {
457 gfc_symbol *vtab;
458 tree cond_optional = NULL_TREE;
459 gfc_ss *ss;
460 tree ctree;
461 tree var;
462 tree tmp;
463
464 /* The derived type needs to be converted to a temporary
465 CLASS object. */
466 tmp = gfc_typenode_for_spec (&class_ts);
467 var = gfc_create_var (tmp, "class");
468
469 /* Set the vptr. */
470 ctree = gfc_class_vptr_get (var);
471
472 if (vptr != NULL_TREE)
473 {
474 /* Use the dynamic vptr. */
475 tmp = vptr;
476 }
477 else
478 {
479 /* In this case the vtab corresponds to the derived type and the
480 vptr must point to it. */
481 vtab = gfc_find_derived_vtab (e->ts.u.derived);
482 gcc_assert (vtab);
483 tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
484 }
485 gfc_add_modify (&parmse->pre, ctree,
486 fold_convert (TREE_TYPE (ctree), tmp));
487
488 /* Now set the data field. */
489 ctree = gfc_class_data_get (var);
490
491 if (optional)
492 cond_optional = gfc_conv_expr_present (e->symtree->n.sym);
493
494 if (parmse->ss && parmse->ss->info->useflags)
495 {
496 /* For an array reference in an elemental procedure call we need
497 to retain the ss to provide the scalarized array reference. */
498 gfc_conv_expr_reference (parmse, e);
499 tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
500 if (optional)
501 tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
502 cond_optional, tmp,
503 fold_convert (TREE_TYPE (tmp), null_pointer_node));
504 gfc_add_modify (&parmse->pre, ctree, tmp);
505
506 }
507 else
508 {
509 ss = gfc_walk_expr (e);
510 if (ss == gfc_ss_terminator)
511 {
512 parmse->ss = NULL;
513 gfc_conv_expr_reference (parmse, e);
514
515 /* Scalar to an assumed-rank array. */
516 if (class_ts.u.derived->components->as)
517 {
518 tree type;
519 type = get_scalar_to_descriptor_type (parmse->expr,
520 gfc_expr_attr (e));
521 gfc_add_modify (&parmse->pre, gfc_conv_descriptor_dtype (ctree),
522 gfc_get_dtype (type));
523 if (optional)
524 parmse->expr = build3_loc (input_location, COND_EXPR,
525 TREE_TYPE (parmse->expr),
526 cond_optional, parmse->expr,
527 fold_convert (TREE_TYPE (parmse->expr),
528 null_pointer_node));
529 gfc_conv_descriptor_data_set (&parmse->pre, ctree, parmse->expr);
530 }
531 else
532 {
533 tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
534 if (optional)
535 tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
536 cond_optional, tmp,
537 fold_convert (TREE_TYPE (tmp),
538 null_pointer_node));
539 gfc_add_modify (&parmse->pre, ctree, tmp);
540 }
541 }
542 else
543 {
544 stmtblock_t block;
545 gfc_init_block (&block);
546
547 parmse->ss = ss;
548 gfc_conv_expr_descriptor (parmse, e);
549
550 if (e->rank != class_ts.u.derived->components->as->rank)
551 {
552 gcc_assert (class_ts.u.derived->components->as->type
553 == AS_ASSUMED_RANK);
554 class_array_data_assign (&block, ctree, parmse->expr, false);
555 }
556 else
557 {
558 if (gfc_expr_attr (e).codimension)
559 parmse->expr = fold_build1_loc (input_location,
560 VIEW_CONVERT_EXPR,
561 TREE_TYPE (ctree),
562 parmse->expr);
563 gfc_add_modify (&block, ctree, parmse->expr);
564 }
565
566 if (optional)
567 {
568 tmp = gfc_finish_block (&block);
569
570 gfc_init_block (&block);
571 gfc_conv_descriptor_data_set (&block, ctree, null_pointer_node);
572
573 tmp = build3_v (COND_EXPR, cond_optional, tmp,
574 gfc_finish_block (&block));
575 gfc_add_expr_to_block (&parmse->pre, tmp);
576 }
577 else
578 gfc_add_block_to_block (&parmse->pre, &block);
579 }
580 }
581
582 if (class_ts.u.derived->components->ts.type == BT_DERIVED
583 && class_ts.u.derived->components->ts.u.derived
584 ->attr.unlimited_polymorphic)
585 {
586 /* Take care about initializing the _len component correctly. */
587 ctree = gfc_class_len_get (var);
588 if (UNLIMITED_POLY (e))
589 {
590 gfc_expr *len;
591 gfc_se se;
592
593 len = gfc_copy_expr (e);
594 gfc_add_len_component (len);
595 gfc_init_se (&se, NULL);
596 gfc_conv_expr (&se, len);
597 if (optional)
598 tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (se.expr),
599 cond_optional, se.expr,
600 fold_convert (TREE_TYPE (se.expr),
601 integer_zero_node));
602 else
603 tmp = se.expr;
604 }
605 else
606 tmp = integer_zero_node;
607 gfc_add_modify (&parmse->pre, ctree, fold_convert (TREE_TYPE (ctree),
608 tmp));
609 }
610 /* Pass the address of the class object. */
611 parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
612
613 if (optional && optional_alloc_ptr)
614 parmse->expr = build3_loc (input_location, COND_EXPR,
615 TREE_TYPE (parmse->expr),
616 cond_optional, parmse->expr,
617 fold_convert (TREE_TYPE (parmse->expr),
618 null_pointer_node));
619 }
620
621
622 /* Create a new class container, which is required as scalar coarrays
623 have an array descriptor while normal scalars haven't. Optionally,
624 NULL pointer checks are added if the argument is OPTIONAL. */
625
626 static void
627 class_scalar_coarray_to_class (gfc_se *parmse, gfc_expr *e,
628 gfc_typespec class_ts, bool optional)
629 {
630 tree var, ctree, tmp;
631 stmtblock_t block;
632 gfc_ref *ref;
633 gfc_ref *class_ref;
634
635 gfc_init_block (&block);
636
637 class_ref = NULL;
638 for (ref = e->ref; ref; ref = ref->next)
639 {
640 if (ref->type == REF_COMPONENT
641 && ref->u.c.component->ts.type == BT_CLASS)
642 class_ref = ref;
643 }
644
645 if (class_ref == NULL
646 && e->symtree && e->symtree->n.sym->ts.type == BT_CLASS)
647 tmp = e->symtree->n.sym->backend_decl;
648 else
649 {
650 /* Remove everything after the last class reference, convert the
651 expression and then recover its tailend once more. */
652 gfc_se tmpse;
653 ref = class_ref->next;
654 class_ref->next = NULL;
655 gfc_init_se (&tmpse, NULL);
656 gfc_conv_expr (&tmpse, e);
657 class_ref->next = ref;
658 tmp = tmpse.expr;
659 }
660
661 var = gfc_typenode_for_spec (&class_ts);
662 var = gfc_create_var (var, "class");
663
664 ctree = gfc_class_vptr_get (var);
665 gfc_add_modify (&block, ctree,
666 fold_convert (TREE_TYPE (ctree), gfc_class_vptr_get (tmp)));
667
668 ctree = gfc_class_data_get (var);
669 tmp = gfc_conv_descriptor_data_get (gfc_class_data_get (tmp));
670 gfc_add_modify (&block, ctree, fold_convert (TREE_TYPE (ctree), tmp));
671
672 /* Pass the address of the class object. */
673 parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
674
675 if (optional)
676 {
677 tree cond = gfc_conv_expr_present (e->symtree->n.sym);
678 tree tmp2;
679
680 tmp = gfc_finish_block (&block);
681
682 gfc_init_block (&block);
683 tmp2 = gfc_class_data_get (var);
684 gfc_add_modify (&block, tmp2, fold_convert (TREE_TYPE (tmp2),
685 null_pointer_node));
686 tmp2 = gfc_finish_block (&block);
687
688 tmp = build3_loc (input_location, COND_EXPR, void_type_node,
689 cond, tmp, tmp2);
690 gfc_add_expr_to_block (&parmse->pre, tmp);
691 }
692 else
693 gfc_add_block_to_block (&parmse->pre, &block);
694 }
695
696
697 /* Takes an intrinsic type expression and returns the address of a temporary
698 class object of the 'declared' type. */
699 void
700 gfc_conv_intrinsic_to_class (gfc_se *parmse, gfc_expr *e,
701 gfc_typespec class_ts)
702 {
703 gfc_symbol *vtab;
704 gfc_ss *ss;
705 tree ctree;
706 tree var;
707 tree tmp;
708
709 /* The intrinsic type needs to be converted to a temporary
710 CLASS object. */
711 tmp = gfc_typenode_for_spec (&class_ts);
712 var = gfc_create_var (tmp, "class");
713
714 /* Set the vptr. */
715 ctree = gfc_class_vptr_get (var);
716
717 vtab = gfc_find_vtab (&e->ts);
718 gcc_assert (vtab);
719 tmp = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtab));
720 gfc_add_modify (&parmse->pre, ctree,
721 fold_convert (TREE_TYPE (ctree), tmp));
722
723 /* Now set the data field. */
724 ctree = gfc_class_data_get (var);
725 if (parmse->ss && parmse->ss->info->useflags)
726 {
727 /* For an array reference in an elemental procedure call we need
728 to retain the ss to provide the scalarized array reference. */
729 gfc_conv_expr_reference (parmse, e);
730 tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
731 gfc_add_modify (&parmse->pre, ctree, tmp);
732 }
733 else
734 {
735 ss = gfc_walk_expr (e);
736 if (ss == gfc_ss_terminator)
737 {
738 parmse->ss = NULL;
739 gfc_conv_expr_reference (parmse, e);
740 if (class_ts.u.derived->components->as
741 && class_ts.u.derived->components->as->type == AS_ASSUMED_RANK)
742 {
743 tmp = gfc_conv_scalar_to_descriptor (parmse, parmse->expr,
744 gfc_expr_attr (e));
745 tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
746 TREE_TYPE (ctree), tmp);
747 }
748 else
749 tmp = fold_convert (TREE_TYPE (ctree), parmse->expr);
750 gfc_add_modify (&parmse->pre, ctree, tmp);
751 }
752 else
753 {
754 parmse->ss = ss;
755 parmse->use_offset = 1;
756 gfc_conv_expr_descriptor (parmse, e);
757 if (class_ts.u.derived->components->as->rank != e->rank)
758 {
759 tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
760 TREE_TYPE (ctree), parmse->expr);
761 gfc_add_modify (&parmse->pre, ctree, tmp);
762 }
763 else
764 gfc_add_modify (&parmse->pre, ctree, parmse->expr);
765 }
766 }
767
768 gcc_assert (class_ts.type == BT_CLASS);
769 if (class_ts.u.derived->components->ts.type == BT_DERIVED
770 && class_ts.u.derived->components->ts.u.derived
771 ->attr.unlimited_polymorphic)
772 {
773 ctree = gfc_class_len_get (var);
774 /* When the actual arg is a char array, then set the _len component of the
775 unlimited polymorphic entity, too. */
776 if (e->ts.type == BT_CHARACTER)
777 {
778 /* Start with parmse->string_length because this seems to be set to a
779 correct value more often. */
780 if (parmse->string_length)
781 tmp = parmse->string_length;
782 /* When the string_length is not yet set, then try the backend_decl of
783 the cl. */
784 else if (e->ts.u.cl->backend_decl)
785 tmp = e->ts.u.cl->backend_decl;
786 /* If both of the above approaches fail, then try to generate an
787 expression from the input, which is only feasible currently, when the
788 expression can be evaluated to a constant one. */
789 else
790 {
791 /* Try to simplify the expression. */
792 gfc_simplify_expr (e, 0);
793 if (e->expr_type == EXPR_CONSTANT && !e->ts.u.cl->resolved)
794 {
795 /* Amazingly all data is present to compute the length of a
796 constant string, but the expression is not yet there. */
797 e->ts.u.cl->length = gfc_get_constant_expr (BT_INTEGER, 4,
798 &e->where);
799 mpz_set_ui (e->ts.u.cl->length->value.integer,
800 e->value.character.length);
801 gfc_conv_const_charlen (e->ts.u.cl);
802 e->ts.u.cl->resolved = 1;
803 tmp = e->ts.u.cl->backend_decl;
804 }
805 else
806 {
807 gfc_error ("Can't compute the length of the char array at %L.",
808 &e->where);
809 }
810 }
811 }
812 else
813 tmp = integer_zero_node;
814
815 gfc_add_modify (&parmse->pre, ctree, tmp);
816 }
817 else if (class_ts.type == BT_CLASS
818 && class_ts.u.derived->components
819 && class_ts.u.derived->components->ts.u
820 .derived->attr.unlimited_polymorphic)
821 {
822 ctree = gfc_class_len_get (var);
823 gfc_add_modify (&parmse->pre, ctree,
824 fold_convert (TREE_TYPE (ctree),
825 integer_zero_node));
826 }
827 /* Pass the address of the class object. */
828 parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
829 }
830
831
832 /* Takes a scalarized class array expression and returns the
833 address of a temporary scalar class object of the 'declared'
834 type.
835 OOP-TODO: This could be improved by adding code that branched on
836 the dynamic type being the same as the declared type. In this case
837 the original class expression can be passed directly.
838 optional_alloc_ptr is false when the dummy is neither allocatable
839 nor a pointer; that's relevant for the optional handling.
840 Set copyback to true if class container's _data and _vtab pointers
841 might get modified. */
842
843 void
844 gfc_conv_class_to_class (gfc_se *parmse, gfc_expr *e, gfc_typespec class_ts,
845 bool elemental, bool copyback, bool optional,
846 bool optional_alloc_ptr)
847 {
848 tree ctree;
849 tree var;
850 tree tmp;
851 tree vptr;
852 tree cond = NULL_TREE;
853 tree slen = NULL_TREE;
854 gfc_ref *ref;
855 gfc_ref *class_ref;
856 stmtblock_t block;
857 bool full_array = false;
858
859 gfc_init_block (&block);
860
861 class_ref = NULL;
862 for (ref = e->ref; ref; ref = ref->next)
863 {
864 if (ref->type == REF_COMPONENT
865 && ref->u.c.component->ts.type == BT_CLASS)
866 class_ref = ref;
867
868 if (ref->next == NULL)
869 break;
870 }
871
872 if ((ref == NULL || class_ref == ref)
873 && (!class_ts.u.derived->components->as
874 || class_ts.u.derived->components->as->rank != -1))
875 return;
876
877 /* Test for FULL_ARRAY. */
878 if (e->rank == 0 && gfc_expr_attr (e).codimension
879 && gfc_expr_attr (e).dimension)
880 full_array = true;
881 else
882 gfc_is_class_array_ref (e, &full_array);
883
884 /* The derived type needs to be converted to a temporary
885 CLASS object. */
886 tmp = gfc_typenode_for_spec (&class_ts);
887 var = gfc_create_var (tmp, "class");
888
889 /* Set the data. */
890 ctree = gfc_class_data_get (var);
891 if (class_ts.u.derived->components->as
892 && e->rank != class_ts.u.derived->components->as->rank)
893 {
894 if (e->rank == 0)
895 {
896 tree type = get_scalar_to_descriptor_type (parmse->expr,
897 gfc_expr_attr (e));
898 gfc_add_modify (&block, gfc_conv_descriptor_dtype (ctree),
899 gfc_get_dtype (type));
900
901 tmp = gfc_class_data_get (parmse->expr);
902 if (!POINTER_TYPE_P (TREE_TYPE (tmp)))
903 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
904
905 gfc_conv_descriptor_data_set (&block, ctree, tmp);
906 }
907 else
908 class_array_data_assign (&block, ctree, parmse->expr, false);
909 }
910 else
911 {
912 if (TREE_TYPE (parmse->expr) != TREE_TYPE (ctree))
913 parmse->expr = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
914 TREE_TYPE (ctree), parmse->expr);
915 gfc_add_modify (&block, ctree, parmse->expr);
916 }
917
918 /* Return the data component, except in the case of scalarized array
919 references, where nullification of the cannot occur and so there
920 is no need. */
921 if (!elemental && full_array && copyback)
922 {
923 if (class_ts.u.derived->components->as
924 && e->rank != class_ts.u.derived->components->as->rank)
925 {
926 if (e->rank == 0)
927 gfc_add_modify (&parmse->post, gfc_class_data_get (parmse->expr),
928 gfc_conv_descriptor_data_get (ctree));
929 else
930 class_array_data_assign (&parmse->post, parmse->expr, ctree, true);
931 }
932 else
933 gfc_add_modify (&parmse->post, parmse->expr, ctree);
934 }
935
936 /* Set the vptr. */
937 ctree = gfc_class_vptr_get (var);
938
939 /* The vptr is the second field of the actual argument.
940 First we have to find the corresponding class reference. */
941
942 tmp = NULL_TREE;
943 if (class_ref == NULL
944 && e->symtree && e->symtree->n.sym->ts.type == BT_CLASS)
945 {
946 tmp = e->symtree->n.sym->backend_decl;
947 if (DECL_LANG_SPECIFIC (tmp) && GFC_DECL_SAVED_DESCRIPTOR (tmp))
948 tmp = GFC_DECL_SAVED_DESCRIPTOR (tmp);
949 slen = integer_zero_node;
950 }
951 else
952 {
953 /* Remove everything after the last class reference, convert the
954 expression and then recover its tailend once more. */
955 gfc_se tmpse;
956 ref = class_ref->next;
957 class_ref->next = NULL;
958 gfc_init_se (&tmpse, NULL);
959 gfc_conv_expr (&tmpse, e);
960 class_ref->next = ref;
961 tmp = tmpse.expr;
962 slen = tmpse.string_length;
963 }
964
965 gcc_assert (tmp != NULL_TREE);
966
967 /* Dereference if needs be. */
968 if (TREE_CODE (TREE_TYPE (tmp)) == REFERENCE_TYPE)
969 tmp = build_fold_indirect_ref_loc (input_location, tmp);
970
971 vptr = gfc_class_vptr_get (tmp);
972 gfc_add_modify (&block, ctree,
973 fold_convert (TREE_TYPE (ctree), vptr));
974
975 /* Return the vptr component, except in the case of scalarized array
976 references, where the dynamic type cannot change. */
977 if (!elemental && full_array && copyback)
978 gfc_add_modify (&parmse->post, vptr,
979 fold_convert (TREE_TYPE (vptr), ctree));
980
981 /* For unlimited polymorphic objects also set the _len component. */
982 if (class_ts.type == BT_CLASS
983 && class_ts.u.derived->components
984 && class_ts.u.derived->components->ts.u
985 .derived->attr.unlimited_polymorphic)
986 {
987 ctree = gfc_class_len_get (var);
988 if (UNLIMITED_POLY (e))
989 tmp = gfc_class_len_get (tmp);
990 else if (e->ts.type == BT_CHARACTER)
991 {
992 gcc_assert (slen != NULL_TREE);
993 tmp = slen;
994 }
995 else
996 tmp = integer_zero_node;
997 gfc_add_modify (&parmse->pre, ctree,
998 fold_convert (TREE_TYPE (ctree), tmp));
999 }
1000
1001 if (optional)
1002 {
1003 tree tmp2;
1004
1005 cond = gfc_conv_expr_present (e->symtree->n.sym);
1006 /* parmse->pre may contain some preparatory instructions for the
1007 temporary array descriptor. Those may only be executed when the
1008 optional argument is set, therefore add parmse->pre's instructions
1009 to block, which is later guarded by an if (optional_arg_given). */
1010 gfc_add_block_to_block (&parmse->pre, &block);
1011 block.head = parmse->pre.head;
1012 parmse->pre.head = NULL_TREE;
1013 tmp = gfc_finish_block (&block);
1014
1015 if (optional_alloc_ptr)
1016 tmp2 = build_empty_stmt (input_location);
1017 else
1018 {
1019 gfc_init_block (&block);
1020
1021 tmp2 = gfc_conv_descriptor_data_get (gfc_class_data_get (var));
1022 gfc_add_modify (&block, tmp2, fold_convert (TREE_TYPE (tmp2),
1023 null_pointer_node));
1024 tmp2 = gfc_finish_block (&block);
1025 }
1026
1027 tmp = build3_loc (input_location, COND_EXPR, void_type_node,
1028 cond, tmp, tmp2);
1029 gfc_add_expr_to_block (&parmse->pre, tmp);
1030 }
1031 else
1032 gfc_add_block_to_block (&parmse->pre, &block);
1033
1034 /* Pass the address of the class object. */
1035 parmse->expr = gfc_build_addr_expr (NULL_TREE, var);
1036
1037 if (optional && optional_alloc_ptr)
1038 parmse->expr = build3_loc (input_location, COND_EXPR,
1039 TREE_TYPE (parmse->expr),
1040 cond, parmse->expr,
1041 fold_convert (TREE_TYPE (parmse->expr),
1042 null_pointer_node));
1043 }
1044
1045
1046 /* Given a class array declaration and an index, returns the address
1047 of the referenced element. */
1048
1049 tree
1050 gfc_get_class_array_ref (tree index, tree class_decl)
1051 {
1052 tree data = gfc_class_data_get (class_decl);
1053 tree size = gfc_class_vtab_size_get (class_decl);
1054 tree offset = fold_build2_loc (input_location, MULT_EXPR,
1055 gfc_array_index_type,
1056 index, size);
1057 tree ptr;
1058 data = gfc_conv_descriptor_data_get (data);
1059 ptr = fold_convert (pvoid_type_node, data);
1060 ptr = fold_build_pointer_plus_loc (input_location, ptr, offset);
1061 return fold_convert (TREE_TYPE (data), ptr);
1062 }
1063
1064
1065 /* Copies one class expression to another, assuming that if either
1066 'to' or 'from' are arrays they are packed. Should 'from' be
1067 NULL_TREE, the initialization expression for 'to' is used, assuming
1068 that the _vptr is set. */
1069
1070 tree
1071 gfc_copy_class_to_class (tree from, tree to, tree nelems, bool unlimited)
1072 {
1073 tree fcn;
1074 tree fcn_type;
1075 tree from_data;
1076 tree from_len;
1077 tree to_data;
1078 tree to_len;
1079 tree to_ref;
1080 tree from_ref;
1081 vec<tree, va_gc> *args;
1082 tree tmp;
1083 tree stdcopy;
1084 tree extcopy;
1085 tree index;
1086
1087 args = NULL;
1088 /* To prevent warnings on uninitialized variables. */
1089 from_len = to_len = NULL_TREE;
1090
1091 if (from != NULL_TREE)
1092 fcn = gfc_class_vtab_copy_get (from);
1093 else
1094 fcn = gfc_class_vtab_copy_get (to);
1095
1096 fcn_type = TREE_TYPE (TREE_TYPE (fcn));
1097
1098 if (from != NULL_TREE)
1099 from_data = gfc_class_data_get (from);
1100 else
1101 from_data = gfc_class_vtab_def_init_get (to);
1102
1103 if (unlimited)
1104 {
1105 if (from != NULL_TREE && unlimited)
1106 from_len = gfc_class_len_get (from);
1107 else
1108 from_len = integer_zero_node;
1109 }
1110
1111 to_data = gfc_class_data_get (to);
1112 if (unlimited)
1113 to_len = gfc_class_len_get (to);
1114
1115 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (to_data)))
1116 {
1117 stmtblock_t loopbody;
1118 stmtblock_t body;
1119 stmtblock_t ifbody;
1120 gfc_loopinfo loop;
1121
1122 gfc_init_block (&body);
1123 tmp = fold_build2_loc (input_location, MINUS_EXPR,
1124 gfc_array_index_type, nelems,
1125 gfc_index_one_node);
1126 nelems = gfc_evaluate_now (tmp, &body);
1127 index = gfc_create_var (gfc_array_index_type, "S");
1128
1129 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (from_data)))
1130 {
1131 from_ref = gfc_get_class_array_ref (index, from);
1132 vec_safe_push (args, from_ref);
1133 }
1134 else
1135 vec_safe_push (args, from_data);
1136
1137 to_ref = gfc_get_class_array_ref (index, to);
1138 vec_safe_push (args, to_ref);
1139
1140 tmp = build_call_vec (fcn_type, fcn, args);
1141
1142 /* Build the body of the loop. */
1143 gfc_init_block (&loopbody);
1144 gfc_add_expr_to_block (&loopbody, tmp);
1145
1146 /* Build the loop and return. */
1147 gfc_init_loopinfo (&loop);
1148 loop.dimen = 1;
1149 loop.from[0] = gfc_index_zero_node;
1150 loop.loopvar[0] = index;
1151 loop.to[0] = nelems;
1152 gfc_trans_scalarizing_loops (&loop, &loopbody);
1153 gfc_init_block (&ifbody);
1154 gfc_add_block_to_block (&ifbody, &loop.pre);
1155 stdcopy = gfc_finish_block (&ifbody);
1156 /* In initialization mode from_len is a constant zero. */
1157 if (unlimited && !integer_zerop (from_len))
1158 {
1159 vec_safe_push (args, from_len);
1160 vec_safe_push (args, to_len);
1161 tmp = build_call_vec (fcn_type, fcn, args);
1162 /* Build the body of the loop. */
1163 gfc_init_block (&loopbody);
1164 gfc_add_expr_to_block (&loopbody, tmp);
1165
1166 /* Build the loop and return. */
1167 gfc_init_loopinfo (&loop);
1168 loop.dimen = 1;
1169 loop.from[0] = gfc_index_zero_node;
1170 loop.loopvar[0] = index;
1171 loop.to[0] = nelems;
1172 gfc_trans_scalarizing_loops (&loop, &loopbody);
1173 gfc_init_block (&ifbody);
1174 gfc_add_block_to_block (&ifbody, &loop.pre);
1175 extcopy = gfc_finish_block (&ifbody);
1176
1177 tmp = fold_build2_loc (input_location, GT_EXPR,
1178 boolean_type_node, from_len,
1179 integer_zero_node);
1180 tmp = fold_build3_loc (input_location, COND_EXPR,
1181 void_type_node, tmp, extcopy, stdcopy);
1182 gfc_add_expr_to_block (&body, tmp);
1183 tmp = gfc_finish_block (&body);
1184 }
1185 else
1186 {
1187 gfc_add_expr_to_block (&body, stdcopy);
1188 tmp = gfc_finish_block (&body);
1189 }
1190 gfc_cleanup_loop (&loop);
1191 }
1192 else
1193 {
1194 gcc_assert (!GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (from_data)));
1195 vec_safe_push (args, from_data);
1196 vec_safe_push (args, to_data);
1197 stdcopy = build_call_vec (fcn_type, fcn, args);
1198
1199 /* In initialization mode from_len is a constant zero. */
1200 if (unlimited && !integer_zerop (from_len))
1201 {
1202 vec_safe_push (args, from_len);
1203 vec_safe_push (args, to_len);
1204 extcopy = build_call_vec (fcn_type, fcn, args);
1205 tmp = fold_build2_loc (input_location, GT_EXPR,
1206 boolean_type_node, from_len,
1207 integer_zero_node);
1208 tmp = fold_build3_loc (input_location, COND_EXPR,
1209 void_type_node, tmp, extcopy, stdcopy);
1210 }
1211 else
1212 tmp = stdcopy;
1213 }
1214
1215 /* Only copy _def_init to to_data, when it is not a NULL-pointer. */
1216 if (from == NULL_TREE)
1217 {
1218 tree cond;
1219 cond = fold_build2_loc (input_location, NE_EXPR,
1220 boolean_type_node,
1221 from_data, null_pointer_node);
1222 tmp = fold_build3_loc (input_location, COND_EXPR,
1223 void_type_node, cond,
1224 tmp, build_empty_stmt (input_location));
1225 }
1226
1227 return tmp;
1228 }
1229
1230
1231 static tree
1232 gfc_trans_class_array_init_assign (gfc_expr *rhs, gfc_expr *lhs, gfc_expr *obj)
1233 {
1234 gfc_actual_arglist *actual;
1235 gfc_expr *ppc;
1236 gfc_code *ppc_code;
1237 tree res;
1238
1239 actual = gfc_get_actual_arglist ();
1240 actual->expr = gfc_copy_expr (rhs);
1241 actual->next = gfc_get_actual_arglist ();
1242 actual->next->expr = gfc_copy_expr (lhs);
1243 ppc = gfc_copy_expr (obj);
1244 gfc_add_vptr_component (ppc);
1245 gfc_add_component_ref (ppc, "_copy");
1246 ppc_code = gfc_get_code (EXEC_CALL);
1247 ppc_code->resolved_sym = ppc->symtree->n.sym;
1248 /* Although '_copy' is set to be elemental in class.c, it is
1249 not staying that way. Find out why, sometime.... */
1250 ppc_code->resolved_sym->attr.elemental = 1;
1251 ppc_code->ext.actual = actual;
1252 ppc_code->expr1 = ppc;
1253 /* Since '_copy' is elemental, the scalarizer will take care
1254 of arrays in gfc_trans_call. */
1255 res = gfc_trans_call (ppc_code, false, NULL, NULL, false);
1256 gfc_free_statements (ppc_code);
1257
1258 if (UNLIMITED_POLY(obj))
1259 {
1260 /* Check if rhs is non-NULL. */
1261 gfc_se src;
1262 gfc_init_se (&src, NULL);
1263 gfc_conv_expr (&src, rhs);
1264 src.expr = gfc_build_addr_expr (NULL_TREE, src.expr);
1265 tree cond = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
1266 src.expr, fold_convert (TREE_TYPE (src.expr),
1267 null_pointer_node));
1268 res = build3_loc (input_location, COND_EXPR, TREE_TYPE (res), cond, res,
1269 build_empty_stmt (input_location));
1270 }
1271
1272 return res;
1273 }
1274
1275 /* Special case for initializing a polymorphic dummy with INTENT(OUT).
1276 A MEMCPY is needed to copy the full data from the default initializer
1277 of the dynamic type. */
1278
1279 tree
1280 gfc_trans_class_init_assign (gfc_code *code)
1281 {
1282 stmtblock_t block;
1283 tree tmp;
1284 gfc_se dst,src,memsz;
1285 gfc_expr *lhs, *rhs, *sz;
1286
1287 gfc_start_block (&block);
1288
1289 lhs = gfc_copy_expr (code->expr1);
1290 gfc_add_data_component (lhs);
1291
1292 rhs = gfc_copy_expr (code->expr1);
1293 gfc_add_vptr_component (rhs);
1294
1295 /* Make sure that the component backend_decls have been built, which
1296 will not have happened if the derived types concerned have not
1297 been referenced. */
1298 gfc_get_derived_type (rhs->ts.u.derived);
1299 gfc_add_def_init_component (rhs);
1300 /* The _def_init is always scalar. */
1301 rhs->rank = 0;
1302
1303 if (code->expr1->ts.type == BT_CLASS
1304 && CLASS_DATA (code->expr1)->attr.dimension)
1305 tmp = gfc_trans_class_array_init_assign (rhs, lhs, code->expr1);
1306 else
1307 {
1308 sz = gfc_copy_expr (code->expr1);
1309 gfc_add_vptr_component (sz);
1310 gfc_add_size_component (sz);
1311
1312 gfc_init_se (&dst, NULL);
1313 gfc_init_se (&src, NULL);
1314 gfc_init_se (&memsz, NULL);
1315 gfc_conv_expr (&dst, lhs);
1316 gfc_conv_expr (&src, rhs);
1317 gfc_conv_expr (&memsz, sz);
1318 gfc_add_block_to_block (&block, &src.pre);
1319 src.expr = gfc_build_addr_expr (NULL_TREE, src.expr);
1320
1321 tmp = gfc_build_memcpy_call (dst.expr, src.expr, memsz.expr);
1322
1323 if (UNLIMITED_POLY(code->expr1))
1324 {
1325 /* Check if _def_init is non-NULL. */
1326 tree cond = fold_build2_loc (input_location, NE_EXPR,
1327 boolean_type_node, src.expr,
1328 fold_convert (TREE_TYPE (src.expr),
1329 null_pointer_node));
1330 tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp), cond,
1331 tmp, build_empty_stmt (input_location));
1332 }
1333 }
1334
1335 if (code->expr1->symtree->n.sym->attr.optional
1336 || code->expr1->symtree->n.sym->ns->proc_name->attr.entry_master)
1337 {
1338 tree present = gfc_conv_expr_present (code->expr1->symtree->n.sym);
1339 tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
1340 present, tmp,
1341 build_empty_stmt (input_location));
1342 }
1343
1344 gfc_add_expr_to_block (&block, tmp);
1345
1346 return gfc_finish_block (&block);
1347 }
1348
1349
1350 /* Translate an assignment to a CLASS object
1351 (pointer or ordinary assignment). */
1352
1353 tree
1354 gfc_trans_class_assign (gfc_expr *expr1, gfc_expr *expr2, gfc_exec_op op)
1355 {
1356 stmtblock_t block;
1357 tree tmp;
1358 gfc_expr *lhs;
1359 gfc_expr *rhs;
1360 gfc_ref *ref;
1361
1362 gfc_start_block (&block);
1363
1364 ref = expr1->ref;
1365 while (ref && ref->next)
1366 ref = ref->next;
1367
1368 /* Class valued proc_pointer assignments do not need any further
1369 preparation. */
1370 if (ref && ref->type == REF_COMPONENT
1371 && ref->u.c.component->attr.proc_pointer
1372 && expr2->expr_type == EXPR_VARIABLE
1373 && expr2->symtree->n.sym->attr.flavor == FL_PROCEDURE
1374 && op == EXEC_POINTER_ASSIGN)
1375 goto assign;
1376
1377 if (expr2->ts.type != BT_CLASS)
1378 {
1379 /* Insert an additional assignment which sets the '_vptr' field. */
1380 gfc_symbol *vtab = NULL;
1381 gfc_symtree *st;
1382
1383 lhs = gfc_copy_expr (expr1);
1384 gfc_add_vptr_component (lhs);
1385
1386 if (UNLIMITED_POLY (expr1)
1387 && expr2->expr_type == EXPR_NULL && expr2->ts.type == BT_UNKNOWN)
1388 {
1389 rhs = gfc_get_null_expr (&expr2->where);
1390 goto assign_vptr;
1391 }
1392
1393 if (expr2->expr_type == EXPR_NULL)
1394 vtab = gfc_find_vtab (&expr1->ts);
1395 else
1396 vtab = gfc_find_vtab (&expr2->ts);
1397 gcc_assert (vtab);
1398
1399 rhs = gfc_get_expr ();
1400 rhs->expr_type = EXPR_VARIABLE;
1401 gfc_find_sym_tree (vtab->name, vtab->ns, 1, &st);
1402 rhs->symtree = st;
1403 rhs->ts = vtab->ts;
1404 assign_vptr:
1405 tmp = gfc_trans_pointer_assignment (lhs, rhs);
1406 gfc_add_expr_to_block (&block, tmp);
1407
1408 gfc_free_expr (lhs);
1409 gfc_free_expr (rhs);
1410 }
1411 else if (expr1->ts.type == BT_DERIVED && UNLIMITED_POLY (expr2))
1412 {
1413 /* F2003:C717 only sequence and bind-C types can come here. */
1414 gcc_assert (expr1->ts.u.derived->attr.sequence
1415 || expr1->ts.u.derived->attr.is_bind_c);
1416 gfc_add_data_component (expr2);
1417 goto assign;
1418 }
1419 else if (CLASS_DATA (expr2)->attr.dimension && expr2->expr_type != EXPR_FUNCTION)
1420 {
1421 /* Insert an additional assignment which sets the '_vptr' field. */
1422 lhs = gfc_copy_expr (expr1);
1423 gfc_add_vptr_component (lhs);
1424
1425 rhs = gfc_copy_expr (expr2);
1426 gfc_add_vptr_component (rhs);
1427
1428 tmp = gfc_trans_pointer_assignment (lhs, rhs);
1429 gfc_add_expr_to_block (&block, tmp);
1430
1431 gfc_free_expr (lhs);
1432 gfc_free_expr (rhs);
1433 }
1434
1435 /* Do the actual CLASS assignment. */
1436 if (expr2->ts.type == BT_CLASS
1437 && !CLASS_DATA (expr2)->attr.dimension)
1438 op = EXEC_ASSIGN;
1439 else if (expr2->expr_type != EXPR_FUNCTION || expr2->ts.type != BT_CLASS
1440 || !CLASS_DATA (expr2)->attr.dimension)
1441 gfc_add_data_component (expr1);
1442
1443 assign:
1444
1445 if (op == EXEC_ASSIGN)
1446 tmp = gfc_trans_assignment (expr1, expr2, false, true);
1447 else if (op == EXEC_POINTER_ASSIGN)
1448 tmp = gfc_trans_pointer_assignment (expr1, expr2);
1449 else
1450 gcc_unreachable();
1451
1452 gfc_add_expr_to_block (&block, tmp);
1453
1454 return gfc_finish_block (&block);
1455 }
1456
1457
1458 /* End of prototype trans-class.c */
1459
1460
1461 static void
1462 realloc_lhs_warning (bt type, bool array, locus *where)
1463 {
1464 if (array && type != BT_CLASS && type != BT_DERIVED && warn_realloc_lhs)
1465 gfc_warning (OPT_Wrealloc_lhs,
1466 "Code for reallocating the allocatable array at %L will "
1467 "be added", where);
1468 else if (warn_realloc_lhs_all)
1469 gfc_warning (OPT_Wrealloc_lhs_all,
1470 "Code for reallocating the allocatable variable at %L "
1471 "will be added", where);
1472 }
1473
1474
1475 static tree gfc_trans_structure_assign (tree dest, gfc_expr * expr, bool init);
1476 static void gfc_apply_interface_mapping_to_expr (gfc_interface_mapping *,
1477 gfc_expr *);
1478
1479 /* Copy the scalarization loop variables. */
1480
1481 static void
1482 gfc_copy_se_loopvars (gfc_se * dest, gfc_se * src)
1483 {
1484 dest->ss = src->ss;
1485 dest->loop = src->loop;
1486 }
1487
1488
1489 /* Initialize a simple expression holder.
1490
1491 Care must be taken when multiple se are created with the same parent.
1492 The child se must be kept in sync. The easiest way is to delay creation
1493 of a child se until after after the previous se has been translated. */
1494
1495 void
1496 gfc_init_se (gfc_se * se, gfc_se * parent)
1497 {
1498 memset (se, 0, sizeof (gfc_se));
1499 gfc_init_block (&se->pre);
1500 gfc_init_block (&se->post);
1501
1502 se->parent = parent;
1503
1504 if (parent)
1505 gfc_copy_se_loopvars (se, parent);
1506 }
1507
1508
1509 /* Advances to the next SS in the chain. Use this rather than setting
1510 se->ss = se->ss->next because all the parents needs to be kept in sync.
1511 See gfc_init_se. */
1512
1513 void
1514 gfc_advance_se_ss_chain (gfc_se * se)
1515 {
1516 gfc_se *p;
1517 gfc_ss *ss;
1518
1519 gcc_assert (se != NULL && se->ss != NULL && se->ss != gfc_ss_terminator);
1520
1521 p = se;
1522 /* Walk down the parent chain. */
1523 while (p != NULL)
1524 {
1525 /* Simple consistency check. */
1526 gcc_assert (p->parent == NULL || p->parent->ss == p->ss
1527 || p->parent->ss->nested_ss == p->ss);
1528
1529 /* If we were in a nested loop, the next scalarized expression can be
1530 on the parent ss' next pointer. Thus we should not take the next
1531 pointer blindly, but rather go up one nest level as long as next
1532 is the end of chain. */
1533 ss = p->ss;
1534 while (ss->next == gfc_ss_terminator && ss->parent != NULL)
1535 ss = ss->parent;
1536
1537 p->ss = ss->next;
1538
1539 p = p->parent;
1540 }
1541 }
1542
1543
1544 /* Ensures the result of the expression as either a temporary variable
1545 or a constant so that it can be used repeatedly. */
1546
1547 void
1548 gfc_make_safe_expr (gfc_se * se)
1549 {
1550 tree var;
1551
1552 if (CONSTANT_CLASS_P (se->expr))
1553 return;
1554
1555 /* We need a temporary for this result. */
1556 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
1557 gfc_add_modify (&se->pre, var, se->expr);
1558 se->expr = var;
1559 }
1560
1561
1562 /* Return an expression which determines if a dummy parameter is present.
1563 Also used for arguments to procedures with multiple entry points. */
1564
1565 tree
1566 gfc_conv_expr_present (gfc_symbol * sym)
1567 {
1568 tree decl, cond;
1569
1570 gcc_assert (sym->attr.dummy);
1571 decl = gfc_get_symbol_decl (sym);
1572
1573 /* Intrinsic scalars with VALUE attribute which are passed by value
1574 use a hidden argument to denote the present status. */
1575 if (sym->attr.value && sym->ts.type != BT_CHARACTER
1576 && sym->ts.type != BT_CLASS && sym->ts.type != BT_DERIVED
1577 && !sym->attr.dimension)
1578 {
1579 char name[GFC_MAX_SYMBOL_LEN + 2];
1580 tree tree_name;
1581
1582 gcc_assert (TREE_CODE (decl) == PARM_DECL);
1583 name[0] = '_';
1584 strcpy (&name[1], sym->name);
1585 tree_name = get_identifier (name);
1586
1587 /* Walk function argument list to find hidden arg. */
1588 cond = DECL_ARGUMENTS (DECL_CONTEXT (decl));
1589 for ( ; cond != NULL_TREE; cond = TREE_CHAIN (cond))
1590 if (DECL_NAME (cond) == tree_name)
1591 break;
1592
1593 gcc_assert (cond);
1594 return cond;
1595 }
1596
1597 if (TREE_CODE (decl) != PARM_DECL)
1598 {
1599 /* Array parameters use a temporary descriptor, we want the real
1600 parameter. */
1601 gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (decl))
1602 || GFC_ARRAY_TYPE_P (TREE_TYPE (decl)));
1603 decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
1604 }
1605
1606 cond = fold_build2_loc (input_location, NE_EXPR, boolean_type_node, decl,
1607 fold_convert (TREE_TYPE (decl), null_pointer_node));
1608
1609 /* Fortran 2008 allows to pass null pointers and non-associated pointers
1610 as actual argument to denote absent dummies. For array descriptors,
1611 we thus also need to check the array descriptor. For BT_CLASS, it
1612 can also occur for scalars and F2003 due to type->class wrapping and
1613 class->class wrapping. Note further that BT_CLASS always uses an
1614 array descriptor for arrays, also for explicit-shape/assumed-size. */
1615
1616 if (!sym->attr.allocatable
1617 && ((sym->ts.type != BT_CLASS && !sym->attr.pointer)
1618 || (sym->ts.type == BT_CLASS
1619 && !CLASS_DATA (sym)->attr.allocatable
1620 && !CLASS_DATA (sym)->attr.class_pointer))
1621 && ((gfc_option.allow_std & GFC_STD_F2008) != 0
1622 || sym->ts.type == BT_CLASS))
1623 {
1624 tree tmp;
1625
1626 if ((sym->as && (sym->as->type == AS_ASSUMED_SHAPE
1627 || sym->as->type == AS_ASSUMED_RANK
1628 || sym->attr.codimension))
1629 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as))
1630 {
1631 tmp = build_fold_indirect_ref_loc (input_location, decl);
1632 if (sym->ts.type == BT_CLASS)
1633 tmp = gfc_class_data_get (tmp);
1634 tmp = gfc_conv_array_data (tmp);
1635 }
1636 else if (sym->ts.type == BT_CLASS)
1637 tmp = gfc_class_data_get (decl);
1638 else
1639 tmp = NULL_TREE;
1640
1641 if (tmp != NULL_TREE)
1642 {
1643 tmp = fold_build2_loc (input_location, NE_EXPR, boolean_type_node, tmp,
1644 fold_convert (TREE_TYPE (tmp), null_pointer_node));
1645 cond = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
1646 boolean_type_node, cond, tmp);
1647 }
1648 }
1649
1650 return cond;
1651 }
1652
1653
1654 /* Converts a missing, dummy argument into a null or zero. */
1655
1656 void
1657 gfc_conv_missing_dummy (gfc_se * se, gfc_expr * arg, gfc_typespec ts, int kind)
1658 {
1659 tree present;
1660 tree tmp;
1661
1662 present = gfc_conv_expr_present (arg->symtree->n.sym);
1663
1664 if (kind > 0)
1665 {
1666 /* Create a temporary and convert it to the correct type. */
1667 tmp = gfc_get_int_type (kind);
1668 tmp = fold_convert (tmp, build_fold_indirect_ref_loc (input_location,
1669 se->expr));
1670
1671 /* Test for a NULL value. */
1672 tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp), present,
1673 tmp, fold_convert (TREE_TYPE (tmp), integer_one_node));
1674 tmp = gfc_evaluate_now (tmp, &se->pre);
1675 se->expr = gfc_build_addr_expr (NULL_TREE, tmp);
1676 }
1677 else
1678 {
1679 tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (se->expr),
1680 present, se->expr,
1681 build_zero_cst (TREE_TYPE (se->expr)));
1682 tmp = gfc_evaluate_now (tmp, &se->pre);
1683 se->expr = tmp;
1684 }
1685
1686 if (ts.type == BT_CHARACTER)
1687 {
1688 tmp = build_int_cst (gfc_charlen_type_node, 0);
1689 tmp = fold_build3_loc (input_location, COND_EXPR, gfc_charlen_type_node,
1690 present, se->string_length, tmp);
1691 tmp = gfc_evaluate_now (tmp, &se->pre);
1692 se->string_length = tmp;
1693 }
1694 return;
1695 }
1696
1697
1698 /* Get the character length of an expression, looking through gfc_refs
1699 if necessary. */
1700
1701 tree
1702 gfc_get_expr_charlen (gfc_expr *e)
1703 {
1704 gfc_ref *r;
1705 tree length;
1706
1707 gcc_assert (e->expr_type == EXPR_VARIABLE
1708 && e->ts.type == BT_CHARACTER);
1709
1710 length = NULL; /* To silence compiler warning. */
1711
1712 if (is_subref_array (e) && e->ts.u.cl->length)
1713 {
1714 gfc_se tmpse;
1715 gfc_init_se (&tmpse, NULL);
1716 gfc_conv_expr_type (&tmpse, e->ts.u.cl->length, gfc_charlen_type_node);
1717 e->ts.u.cl->backend_decl = tmpse.expr;
1718 return tmpse.expr;
1719 }
1720
1721 /* First candidate: if the variable is of type CHARACTER, the
1722 expression's length could be the length of the character
1723 variable. */
1724 if (e->symtree->n.sym->ts.type == BT_CHARACTER)
1725 length = e->symtree->n.sym->ts.u.cl->backend_decl;
1726
1727 /* Look through the reference chain for component references. */
1728 for (r = e->ref; r; r = r->next)
1729 {
1730 switch (r->type)
1731 {
1732 case REF_COMPONENT:
1733 if (r->u.c.component->ts.type == BT_CHARACTER)
1734 length = r->u.c.component->ts.u.cl->backend_decl;
1735 break;
1736
1737 case REF_ARRAY:
1738 /* Do nothing. */
1739 break;
1740
1741 default:
1742 /* We should never got substring references here. These will be
1743 broken down by the scalarizer. */
1744 gcc_unreachable ();
1745 break;
1746 }
1747 }
1748
1749 gcc_assert (length != NULL);
1750 return length;
1751 }
1752
1753
1754 /* Return for an expression the backend decl of the coarray. */
1755
1756 tree
1757 gfc_get_tree_for_caf_expr (gfc_expr *expr)
1758 {
1759 tree caf_decl;
1760 bool found = false;
1761 gfc_ref *ref, *comp_ref = NULL;
1762
1763 gcc_assert (expr && expr->expr_type == EXPR_VARIABLE);
1764
1765 /* Not-implemented diagnostic. */
1766 for (ref = expr->ref; ref; ref = ref->next)
1767 if (ref->type == REF_COMPONENT)
1768 {
1769 comp_ref = ref;
1770 if ((ref->u.c.component->ts.type == BT_CLASS
1771 && !CLASS_DATA (ref->u.c.component)->attr.codimension
1772 && (CLASS_DATA (ref->u.c.component)->attr.pointer
1773 || CLASS_DATA (ref->u.c.component)->attr.allocatable))
1774 || (ref->u.c.component->ts.type != BT_CLASS
1775 && !ref->u.c.component->attr.codimension
1776 && (ref->u.c.component->attr.pointer
1777 || ref->u.c.component->attr.allocatable)))
1778 gfc_error ("Sorry, coindexed access to a pointer or allocatable "
1779 "component of the coindexed coarray at %L is not yet "
1780 "supported", &expr->where);
1781 }
1782 if ((!comp_ref
1783 && ((expr->symtree->n.sym->ts.type == BT_CLASS
1784 && CLASS_DATA (expr->symtree->n.sym)->attr.alloc_comp)
1785 || (expr->symtree->n.sym->ts.type == BT_DERIVED
1786 && expr->symtree->n.sym->ts.u.derived->attr.alloc_comp)))
1787 || (comp_ref
1788 && ((comp_ref->u.c.component->ts.type == BT_CLASS
1789 && CLASS_DATA (comp_ref->u.c.component)->attr.alloc_comp)
1790 || (comp_ref->u.c.component->ts.type == BT_DERIVED
1791 && comp_ref->u.c.component->ts.u.derived->attr.alloc_comp))))
1792 gfc_error ("Sorry, coindexed coarray at %L with allocatable component is "
1793 "not yet supported", &expr->where);
1794
1795 if (expr->rank)
1796 {
1797 /* Without the new array descriptor, access like "caf[i]%a(:)%b" is in
1798 general not possible as the required stride multiplier might be not
1799 a multiple of c_sizeof(b). In case of noncoindexed access, the
1800 scalarizer often takes care of it - for coarrays, it always fails. */
1801 for (ref = expr->ref; ref; ref = ref->next)
1802 if (ref->type == REF_COMPONENT
1803 && ((ref->u.c.component->ts.type == BT_CLASS
1804 && CLASS_DATA (ref->u.c.component)->attr.codimension)
1805 || (ref->u.c.component->ts.type != BT_CLASS
1806 && ref->u.c.component->attr.codimension)))
1807 break;
1808 if (ref == NULL)
1809 ref = expr->ref;
1810 for ( ; ref; ref = ref->next)
1811 if (ref->type == REF_ARRAY && ref->u.ar.dimen)
1812 break;
1813 for ( ; ref; ref = ref->next)
1814 if (ref->type == REF_COMPONENT)
1815 gfc_error ("Sorry, coindexed access at %L to a scalar component "
1816 "with an array partref is not yet supported",
1817 &expr->where);
1818 }
1819
1820 caf_decl = expr->symtree->n.sym->backend_decl;
1821 gcc_assert (caf_decl);
1822 if (expr->symtree->n.sym->ts.type == BT_CLASS)
1823 caf_decl = gfc_class_data_get (caf_decl);
1824 if (expr->symtree->n.sym->attr.codimension)
1825 return caf_decl;
1826
1827 /* The following code assumes that the coarray is a component reachable via
1828 only scalar components/variables; the Fortran standard guarantees this. */
1829
1830 for (ref = expr->ref; ref; ref = ref->next)
1831 if (ref->type == REF_COMPONENT)
1832 {
1833 gfc_component *comp = ref->u.c.component;
1834
1835 if (POINTER_TYPE_P (TREE_TYPE (caf_decl)))
1836 caf_decl = build_fold_indirect_ref_loc (input_location, caf_decl);
1837 caf_decl = fold_build3_loc (input_location, COMPONENT_REF,
1838 TREE_TYPE (comp->backend_decl), caf_decl,
1839 comp->backend_decl, NULL_TREE);
1840 if (comp->ts.type == BT_CLASS)
1841 caf_decl = gfc_class_data_get (caf_decl);
1842 if (comp->attr.codimension)
1843 {
1844 found = true;
1845 break;
1846 }
1847 }
1848 gcc_assert (found && caf_decl);
1849 return caf_decl;
1850 }
1851
1852
1853 /* Obtain the Coarray token - and optionally also the offset. */
1854
1855 void
1856 gfc_get_caf_token_offset (tree *token, tree *offset, tree caf_decl, tree se_expr,
1857 gfc_expr *expr)
1858 {
1859 tree tmp;
1860
1861 /* Coarray token. */
1862 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (caf_decl)))
1863 {
1864 gcc_assert (GFC_TYPE_ARRAY_AKIND (TREE_TYPE (caf_decl))
1865 == GFC_ARRAY_ALLOCATABLE
1866 || expr->symtree->n.sym->attr.select_type_temporary);
1867 *token = gfc_conv_descriptor_token (caf_decl);
1868 }
1869 else if (DECL_LANG_SPECIFIC (caf_decl)
1870 && GFC_DECL_TOKEN (caf_decl) != NULL_TREE)
1871 *token = GFC_DECL_TOKEN (caf_decl);
1872 else
1873 {
1874 gcc_assert (GFC_ARRAY_TYPE_P (TREE_TYPE (caf_decl))
1875 && GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (caf_decl)) != NULL_TREE);
1876 *token = GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (caf_decl));
1877 }
1878
1879 if (offset == NULL)
1880 return;
1881
1882 /* Offset between the coarray base address and the address wanted. */
1883 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (caf_decl))
1884 && (GFC_TYPE_ARRAY_AKIND (TREE_TYPE (caf_decl)) == GFC_ARRAY_ALLOCATABLE
1885 || GFC_TYPE_ARRAY_AKIND (TREE_TYPE (caf_decl)) == GFC_ARRAY_POINTER))
1886 *offset = build_int_cst (gfc_array_index_type, 0);
1887 else if (DECL_LANG_SPECIFIC (caf_decl)
1888 && GFC_DECL_CAF_OFFSET (caf_decl) != NULL_TREE)
1889 *offset = GFC_DECL_CAF_OFFSET (caf_decl);
1890 else if (GFC_TYPE_ARRAY_CAF_OFFSET (TREE_TYPE (caf_decl)) != NULL_TREE)
1891 *offset = GFC_TYPE_ARRAY_CAF_OFFSET (TREE_TYPE (caf_decl));
1892 else
1893 *offset = build_int_cst (gfc_array_index_type, 0);
1894
1895 if (POINTER_TYPE_P (TREE_TYPE (se_expr))
1896 && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (se_expr))))
1897 {
1898 tmp = build_fold_indirect_ref_loc (input_location, se_expr);
1899 tmp = gfc_conv_descriptor_data_get (tmp);
1900 }
1901 else if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se_expr)))
1902 tmp = gfc_conv_descriptor_data_get (se_expr);
1903 else
1904 {
1905 gcc_assert (POINTER_TYPE_P (TREE_TYPE (se_expr)));
1906 tmp = se_expr;
1907 }
1908
1909 *offset = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1910 *offset, fold_convert (gfc_array_index_type, tmp));
1911
1912 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (caf_decl)))
1913 tmp = gfc_conv_descriptor_data_get (caf_decl);
1914 else
1915 {
1916 gcc_assert (POINTER_TYPE_P (TREE_TYPE (caf_decl)));
1917 tmp = caf_decl;
1918 }
1919
1920 *offset = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
1921 fold_convert (gfc_array_index_type, *offset),
1922 fold_convert (gfc_array_index_type, tmp));
1923 }
1924
1925
1926 /* Convert the coindex of a coarray into an image index; the result is
1927 image_num = (idx(1)-lcobound(1)+1) + (idx(2)-lcobound(2))*extent(1)
1928 + (idx(3)-lcobound(3))*extend(1)*extent(2) + ... */
1929
1930 tree
1931 gfc_caf_get_image_index (stmtblock_t *block, gfc_expr *e, tree desc)
1932 {
1933 gfc_ref *ref;
1934 tree lbound, ubound, extent, tmp, img_idx;
1935 gfc_se se;
1936 int i;
1937
1938 for (ref = e->ref; ref; ref = ref->next)
1939 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
1940 break;
1941 gcc_assert (ref != NULL);
1942
1943 img_idx = integer_zero_node;
1944 extent = integer_one_node;
1945 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (desc)))
1946 for (i = ref->u.ar.dimen; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
1947 {
1948 gfc_init_se (&se, NULL);
1949 gfc_conv_expr_type (&se, ref->u.ar.start[i], integer_type_node);
1950 gfc_add_block_to_block (block, &se.pre);
1951 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[i]);
1952 tmp = fold_build2_loc (input_location, MINUS_EXPR,
1953 integer_type_node, se.expr,
1954 fold_convert(integer_type_node, lbound));
1955 tmp = fold_build2_loc (input_location, MULT_EXPR, integer_type_node,
1956 extent, tmp);
1957 img_idx = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
1958 img_idx, tmp);
1959 if (i < ref->u.ar.dimen + ref->u.ar.codimen - 1)
1960 {
1961 ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[i]);
1962 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
1963 tmp = fold_convert (integer_type_node, tmp);
1964 extent = fold_build2_loc (input_location, MULT_EXPR,
1965 integer_type_node, extent, tmp);
1966 }
1967 }
1968 else
1969 for (i = ref->u.ar.dimen; i < ref->u.ar.dimen + ref->u.ar.codimen; i++)
1970 {
1971 gfc_init_se (&se, NULL);
1972 gfc_conv_expr_type (&se, ref->u.ar.start[i], integer_type_node);
1973 gfc_add_block_to_block (block, &se.pre);
1974 lbound = GFC_TYPE_ARRAY_LBOUND (TREE_TYPE (desc), i);
1975 lbound = fold_convert (integer_type_node, lbound);
1976 tmp = fold_build2_loc (input_location, MINUS_EXPR,
1977 integer_type_node, se.expr, lbound);
1978 tmp = fold_build2_loc (input_location, MULT_EXPR, integer_type_node,
1979 extent, tmp);
1980 img_idx = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
1981 img_idx, tmp);
1982 if (i < ref->u.ar.dimen + ref->u.ar.codimen - 1)
1983 {
1984 ubound = GFC_TYPE_ARRAY_UBOUND (TREE_TYPE (desc), i);
1985 ubound = fold_convert (integer_type_node, ubound);
1986 tmp = fold_build2_loc (input_location, MINUS_EXPR,
1987 integer_type_node, ubound, lbound);
1988 tmp = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
1989 tmp, integer_one_node);
1990 extent = fold_build2_loc (input_location, MULT_EXPR,
1991 integer_type_node, extent, tmp);
1992 }
1993 }
1994 img_idx = fold_build2_loc (input_location, PLUS_EXPR, integer_type_node,
1995 img_idx, integer_one_node);
1996 return img_idx;
1997 }
1998
1999
2000 /* For each character array constructor subexpression without a ts.u.cl->length,
2001 replace it by its first element (if there aren't any elements, the length
2002 should already be set to zero). */
2003
2004 static void
2005 flatten_array_ctors_without_strlen (gfc_expr* e)
2006 {
2007 gfc_actual_arglist* arg;
2008 gfc_constructor* c;
2009
2010 if (!e)
2011 return;
2012
2013 switch (e->expr_type)
2014 {
2015
2016 case EXPR_OP:
2017 flatten_array_ctors_without_strlen (e->value.op.op1);
2018 flatten_array_ctors_without_strlen (e->value.op.op2);
2019 break;
2020
2021 case EXPR_COMPCALL:
2022 /* TODO: Implement as with EXPR_FUNCTION when needed. */
2023 gcc_unreachable ();
2024
2025 case EXPR_FUNCTION:
2026 for (arg = e->value.function.actual; arg; arg = arg->next)
2027 flatten_array_ctors_without_strlen (arg->expr);
2028 break;
2029
2030 case EXPR_ARRAY:
2031
2032 /* We've found what we're looking for. */
2033 if (e->ts.type == BT_CHARACTER && !e->ts.u.cl->length)
2034 {
2035 gfc_constructor *c;
2036 gfc_expr* new_expr;
2037
2038 gcc_assert (e->value.constructor);
2039
2040 c = gfc_constructor_first (e->value.constructor);
2041 new_expr = c->expr;
2042 c->expr = NULL;
2043
2044 flatten_array_ctors_without_strlen (new_expr);
2045 gfc_replace_expr (e, new_expr);
2046 break;
2047 }
2048
2049 /* Otherwise, fall through to handle constructor elements. */
2050 case EXPR_STRUCTURE:
2051 for (c = gfc_constructor_first (e->value.constructor);
2052 c; c = gfc_constructor_next (c))
2053 flatten_array_ctors_without_strlen (c->expr);
2054 break;
2055
2056 default:
2057 break;
2058
2059 }
2060 }
2061
2062
2063 /* Generate code to initialize a string length variable. Returns the
2064 value. For array constructors, cl->length might be NULL and in this case,
2065 the first element of the constructor is needed. expr is the original
2066 expression so we can access it but can be NULL if this is not needed. */
2067
2068 void
2069 gfc_conv_string_length (gfc_charlen * cl, gfc_expr * expr, stmtblock_t * pblock)
2070 {
2071 gfc_se se;
2072
2073 gfc_init_se (&se, NULL);
2074
2075 if (!cl->length
2076 && cl->backend_decl
2077 && TREE_CODE (cl->backend_decl) == VAR_DECL)
2078 return;
2079
2080 /* If cl->length is NULL, use gfc_conv_expr to obtain the string length but
2081 "flatten" array constructors by taking their first element; all elements
2082 should be the same length or a cl->length should be present. */
2083 if (!cl->length)
2084 {
2085 gfc_expr* expr_flat;
2086 gcc_assert (expr);
2087 expr_flat = gfc_copy_expr (expr);
2088 flatten_array_ctors_without_strlen (expr_flat);
2089 gfc_resolve_expr (expr_flat);
2090
2091 gfc_conv_expr (&se, expr_flat);
2092 gfc_add_block_to_block (pblock, &se.pre);
2093 cl->backend_decl = convert (gfc_charlen_type_node, se.string_length);
2094
2095 gfc_free_expr (expr_flat);
2096 return;
2097 }
2098
2099 /* Convert cl->length. */
2100
2101 gcc_assert (cl->length);
2102
2103 gfc_conv_expr_type (&se, cl->length, gfc_charlen_type_node);
2104 se.expr = fold_build2_loc (input_location, MAX_EXPR, gfc_charlen_type_node,
2105 se.expr, build_int_cst (gfc_charlen_type_node, 0));
2106 gfc_add_block_to_block (pblock, &se.pre);
2107
2108 if (cl->backend_decl)
2109 gfc_add_modify (pblock, cl->backend_decl, se.expr);
2110 else
2111 cl->backend_decl = gfc_evaluate_now (se.expr, pblock);
2112 }
2113
2114
2115 static void
2116 gfc_conv_substring (gfc_se * se, gfc_ref * ref, int kind,
2117 const char *name, locus *where)
2118 {
2119 tree tmp;
2120 tree type;
2121 tree fault;
2122 gfc_se start;
2123 gfc_se end;
2124 char *msg;
2125 mpz_t length;
2126
2127 type = gfc_get_character_type (kind, ref->u.ss.length);
2128 type = build_pointer_type (type);
2129
2130 gfc_init_se (&start, se);
2131 gfc_conv_expr_type (&start, ref->u.ss.start, gfc_charlen_type_node);
2132 gfc_add_block_to_block (&se->pre, &start.pre);
2133
2134 if (integer_onep (start.expr))
2135 gfc_conv_string_parameter (se);
2136 else
2137 {
2138 tmp = start.expr;
2139 STRIP_NOPS (tmp);
2140 /* Avoid multiple evaluation of substring start. */
2141 if (!CONSTANT_CLASS_P (tmp) && !DECL_P (tmp))
2142 start.expr = gfc_evaluate_now (start.expr, &se->pre);
2143
2144 /* Change the start of the string. */
2145 if (TYPE_STRING_FLAG (TREE_TYPE (se->expr)))
2146 tmp = se->expr;
2147 else
2148 tmp = build_fold_indirect_ref_loc (input_location,
2149 se->expr);
2150 tmp = gfc_build_array_ref (tmp, start.expr, NULL);
2151 se->expr = gfc_build_addr_expr (type, tmp);
2152 }
2153
2154 /* Length = end + 1 - start. */
2155 gfc_init_se (&end, se);
2156 if (ref->u.ss.end == NULL)
2157 end.expr = se->string_length;
2158 else
2159 {
2160 gfc_conv_expr_type (&end, ref->u.ss.end, gfc_charlen_type_node);
2161 gfc_add_block_to_block (&se->pre, &end.pre);
2162 }
2163 tmp = end.expr;
2164 STRIP_NOPS (tmp);
2165 if (!CONSTANT_CLASS_P (tmp) && !DECL_P (tmp))
2166 end.expr = gfc_evaluate_now (end.expr, &se->pre);
2167
2168 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2169 {
2170 tree nonempty = fold_build2_loc (input_location, LE_EXPR,
2171 boolean_type_node, start.expr,
2172 end.expr);
2173
2174 /* Check lower bound. */
2175 fault = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2176 start.expr,
2177 build_int_cst (gfc_charlen_type_node, 1));
2178 fault = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
2179 boolean_type_node, nonempty, fault);
2180 if (name)
2181 msg = xasprintf ("Substring out of bounds: lower bound (%%ld) of '%s' "
2182 "is less than one", name);
2183 else
2184 msg = xasprintf ("Substring out of bounds: lower bound (%%ld)"
2185 "is less than one");
2186 gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
2187 fold_convert (long_integer_type_node,
2188 start.expr));
2189 free (msg);
2190
2191 /* Check upper bound. */
2192 fault = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
2193 end.expr, se->string_length);
2194 fault = fold_build2_loc (input_location, TRUTH_ANDIF_EXPR,
2195 boolean_type_node, nonempty, fault);
2196 if (name)
2197 msg = xasprintf ("Substring out of bounds: upper bound (%%ld) of '%s' "
2198 "exceeds string length (%%ld)", name);
2199 else
2200 msg = xasprintf ("Substring out of bounds: upper bound (%%ld) "
2201 "exceeds string length (%%ld)");
2202 gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
2203 fold_convert (long_integer_type_node, end.expr),
2204 fold_convert (long_integer_type_node,
2205 se->string_length));
2206 free (msg);
2207 }
2208
2209 /* Try to calculate the length from the start and end expressions. */
2210 if (ref->u.ss.end
2211 && gfc_dep_difference (ref->u.ss.end, ref->u.ss.start, &length))
2212 {
2213 int i_len;
2214
2215 i_len = mpz_get_si (length) + 1;
2216 if (i_len < 0)
2217 i_len = 0;
2218
2219 tmp = build_int_cst (gfc_charlen_type_node, i_len);
2220 mpz_clear (length); /* Was initialized by gfc_dep_difference. */
2221 }
2222 else
2223 {
2224 tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_charlen_type_node,
2225 end.expr, start.expr);
2226 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_charlen_type_node,
2227 build_int_cst (gfc_charlen_type_node, 1), tmp);
2228 tmp = fold_build2_loc (input_location, MAX_EXPR, gfc_charlen_type_node,
2229 tmp, build_int_cst (gfc_charlen_type_node, 0));
2230 }
2231
2232 se->string_length = tmp;
2233 }
2234
2235
2236 /* Convert a derived type component reference. */
2237
2238 static void
2239 gfc_conv_component_ref (gfc_se * se, gfc_ref * ref)
2240 {
2241 gfc_component *c;
2242 tree tmp;
2243 tree decl;
2244 tree field;
2245
2246 c = ref->u.c.component;
2247
2248 if (c->backend_decl == NULL_TREE
2249 && ref->u.c.sym != NULL)
2250 gfc_get_derived_type (ref->u.c.sym);
2251
2252 field = c->backend_decl;
2253 gcc_assert (field && TREE_CODE (field) == FIELD_DECL);
2254 decl = se->expr;
2255
2256 /* Components can correspond to fields of different containing
2257 types, as components are created without context, whereas
2258 a concrete use of a component has the type of decl as context.
2259 So, if the type doesn't match, we search the corresponding
2260 FIELD_DECL in the parent type. To not waste too much time
2261 we cache this result in norestrict_decl. */
2262
2263 if (DECL_FIELD_CONTEXT (field) != TREE_TYPE (decl))
2264 {
2265 tree f2 = c->norestrict_decl;
2266 if (!f2 || DECL_FIELD_CONTEXT (f2) != TREE_TYPE (decl))
2267 for (f2 = TYPE_FIELDS (TREE_TYPE (decl)); f2; f2 = DECL_CHAIN (f2))
2268 if (TREE_CODE (f2) == FIELD_DECL
2269 && DECL_NAME (f2) == DECL_NAME (field))
2270 break;
2271 gcc_assert (f2);
2272 c->norestrict_decl = f2;
2273 field = f2;
2274 }
2275
2276 if (ref->u.c.sym && ref->u.c.sym->ts.type == BT_CLASS
2277 && strcmp ("_data", c->name) == 0)
2278 {
2279 /* Found a ref to the _data component. Store the associated ref to
2280 the vptr in se->class_vptr. */
2281 se->class_vptr = gfc_class_vptr_get (decl);
2282 }
2283 else
2284 se->class_vptr = NULL_TREE;
2285
2286 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
2287 decl, field, NULL_TREE);
2288
2289 se->expr = tmp;
2290
2291 /* Allocatable deferred char arrays are to be handled by the gfc_deferred_
2292 strlen () conditional below. */
2293 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
2294 && !(c->attr.allocatable && c->ts.deferred))
2295 {
2296 tmp = c->ts.u.cl->backend_decl;
2297 /* Components must always be constant length. */
2298 gcc_assert (tmp && INTEGER_CST_P (tmp));
2299 se->string_length = tmp;
2300 }
2301
2302 if (gfc_deferred_strlen (c, &field))
2303 {
2304 tmp = fold_build3_loc (input_location, COMPONENT_REF,
2305 TREE_TYPE (field),
2306 decl, field, NULL_TREE);
2307 se->string_length = tmp;
2308 }
2309
2310 if (((c->attr.pointer || c->attr.allocatable)
2311 && (!c->attr.dimension && !c->attr.codimension)
2312 && c->ts.type != BT_CHARACTER)
2313 || c->attr.proc_pointer)
2314 se->expr = build_fold_indirect_ref_loc (input_location,
2315 se->expr);
2316 }
2317
2318
2319 /* This function deals with component references to components of the
2320 parent type for derived type extensions. */
2321 static void
2322 conv_parent_component_references (gfc_se * se, gfc_ref * ref)
2323 {
2324 gfc_component *c;
2325 gfc_component *cmp;
2326 gfc_symbol *dt;
2327 gfc_ref parent;
2328
2329 dt = ref->u.c.sym;
2330 c = ref->u.c.component;
2331
2332 /* Return if the component is in the parent type. */
2333 for (cmp = dt->components; cmp; cmp = cmp->next)
2334 if (strcmp (c->name, cmp->name) == 0)
2335 return;
2336
2337 /* Build a gfc_ref to recursively call gfc_conv_component_ref. */
2338 parent.type = REF_COMPONENT;
2339 parent.next = NULL;
2340 parent.u.c.sym = dt;
2341 parent.u.c.component = dt->components;
2342
2343 if (dt->backend_decl == NULL)
2344 gfc_get_derived_type (dt);
2345
2346 /* Build the reference and call self. */
2347 gfc_conv_component_ref (se, &parent);
2348 parent.u.c.sym = dt->components->ts.u.derived;
2349 parent.u.c.component = c;
2350 conv_parent_component_references (se, &parent);
2351 }
2352
2353 /* Return the contents of a variable. Also handles reference/pointer
2354 variables (all Fortran pointer references are implicit). */
2355
2356 static void
2357 gfc_conv_variable (gfc_se * se, gfc_expr * expr)
2358 {
2359 gfc_ss *ss;
2360 gfc_ref *ref;
2361 gfc_symbol *sym;
2362 tree parent_decl = NULL_TREE;
2363 int parent_flag;
2364 bool return_value;
2365 bool alternate_entry;
2366 bool entry_master;
2367 bool is_classarray;
2368 bool first_time = true;
2369
2370 sym = expr->symtree->n.sym;
2371 is_classarray = IS_CLASS_ARRAY (sym);
2372 ss = se->ss;
2373 if (ss != NULL)
2374 {
2375 gfc_ss_info *ss_info = ss->info;
2376
2377 /* Check that something hasn't gone horribly wrong. */
2378 gcc_assert (ss != gfc_ss_terminator);
2379 gcc_assert (ss_info->expr == expr);
2380
2381 /* A scalarized term. We already know the descriptor. */
2382 se->expr = ss_info->data.array.descriptor;
2383 se->string_length = ss_info->string_length;
2384 ref = ss_info->data.array.ref;
2385 if (ref)
2386 gcc_assert (ref->type == REF_ARRAY
2387 && ref->u.ar.type != AR_ELEMENT);
2388 else
2389 gfc_conv_tmp_array_ref (se);
2390 }
2391 else
2392 {
2393 tree se_expr = NULL_TREE;
2394
2395 se->expr = gfc_get_symbol_decl (sym);
2396
2397 /* Deal with references to a parent results or entries by storing
2398 the current_function_decl and moving to the parent_decl. */
2399 return_value = sym->attr.function && sym->result == sym;
2400 alternate_entry = sym->attr.function && sym->attr.entry
2401 && sym->result == sym;
2402 entry_master = sym->attr.result
2403 && sym->ns->proc_name->attr.entry_master
2404 && !gfc_return_by_reference (sym->ns->proc_name);
2405 if (current_function_decl)
2406 parent_decl = DECL_CONTEXT (current_function_decl);
2407
2408 if ((se->expr == parent_decl && return_value)
2409 || (sym->ns && sym->ns->proc_name
2410 && parent_decl
2411 && sym->ns->proc_name->backend_decl == parent_decl
2412 && (alternate_entry || entry_master)))
2413 parent_flag = 1;
2414 else
2415 parent_flag = 0;
2416
2417 /* Special case for assigning the return value of a function.
2418 Self recursive functions must have an explicit return value. */
2419 if (return_value && (se->expr == current_function_decl || parent_flag))
2420 se_expr = gfc_get_fake_result_decl (sym, parent_flag);
2421
2422 /* Similarly for alternate entry points. */
2423 else if (alternate_entry
2424 && (sym->ns->proc_name->backend_decl == current_function_decl
2425 || parent_flag))
2426 {
2427 gfc_entry_list *el = NULL;
2428
2429 for (el = sym->ns->entries; el; el = el->next)
2430 if (sym == el->sym)
2431 {
2432 se_expr = gfc_get_fake_result_decl (sym, parent_flag);
2433 break;
2434 }
2435 }
2436
2437 else if (entry_master
2438 && (sym->ns->proc_name->backend_decl == current_function_decl
2439 || parent_flag))
2440 se_expr = gfc_get_fake_result_decl (sym, parent_flag);
2441
2442 if (se_expr)
2443 se->expr = se_expr;
2444
2445 /* Procedure actual arguments. */
2446 else if (sym->attr.flavor == FL_PROCEDURE
2447 && se->expr != current_function_decl)
2448 {
2449 if (!sym->attr.dummy && !sym->attr.proc_pointer)
2450 {
2451 gcc_assert (TREE_CODE (se->expr) == FUNCTION_DECL);
2452 se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
2453 }
2454 return;
2455 }
2456
2457
2458 /* Dereference the expression, where needed. Since characters
2459 are entirely different from other types, they are treated
2460 separately. */
2461 if (sym->ts.type == BT_CHARACTER)
2462 {
2463 /* Dereference character pointer dummy arguments
2464 or results. */
2465 if ((sym->attr.pointer || sym->attr.allocatable)
2466 && (sym->attr.dummy
2467 || sym->attr.function
2468 || sym->attr.result))
2469 se->expr = build_fold_indirect_ref_loc (input_location,
2470 se->expr);
2471
2472 }
2473 else if (!sym->attr.value)
2474 {
2475 /* Dereference temporaries for class array dummy arguments. */
2476 if (sym->attr.dummy && is_classarray
2477 && GFC_ARRAY_TYPE_P (TREE_TYPE (se->expr)))
2478 {
2479 if (!se->descriptor_only)
2480 se->expr = GFC_DECL_SAVED_DESCRIPTOR (se->expr);
2481
2482 se->expr = build_fold_indirect_ref_loc (input_location,
2483 se->expr);
2484 }
2485
2486 /* Dereference non-character scalar dummy arguments. */
2487 if (sym->attr.dummy && !sym->attr.dimension
2488 && !(sym->attr.codimension && sym->attr.allocatable)
2489 && (sym->ts.type != BT_CLASS
2490 || (!CLASS_DATA (sym)->attr.dimension
2491 && !(CLASS_DATA (sym)->attr.codimension
2492 && CLASS_DATA (sym)->attr.allocatable))))
2493 se->expr = build_fold_indirect_ref_loc (input_location,
2494 se->expr);
2495
2496 /* Dereference scalar hidden result. */
2497 if (flag_f2c && sym->ts.type == BT_COMPLEX
2498 && (sym->attr.function || sym->attr.result)
2499 && !sym->attr.dimension && !sym->attr.pointer
2500 && !sym->attr.always_explicit)
2501 se->expr = build_fold_indirect_ref_loc (input_location,
2502 se->expr);
2503
2504 /* Dereference non-character, non-class pointer variables.
2505 These must be dummies, results, or scalars. */
2506 if (!is_classarray
2507 && (sym->attr.pointer || sym->attr.allocatable
2508 || gfc_is_associate_pointer (sym)
2509 || (sym->as && sym->as->type == AS_ASSUMED_RANK))
2510 && (sym->attr.dummy
2511 || sym->attr.function
2512 || sym->attr.result
2513 || (!sym->attr.dimension
2514 && (!sym->attr.codimension || !sym->attr.allocatable))))
2515 se->expr = build_fold_indirect_ref_loc (input_location,
2516 se->expr);
2517 /* Now treat the class array pointer variables accordingly. */
2518 else if (sym->ts.type == BT_CLASS
2519 && sym->attr.dummy
2520 && (CLASS_DATA (sym)->attr.dimension
2521 || CLASS_DATA (sym)->attr.codimension)
2522 && ((CLASS_DATA (sym)->as
2523 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
2524 || CLASS_DATA (sym)->attr.allocatable
2525 || CLASS_DATA (sym)->attr.class_pointer))
2526 se->expr = build_fold_indirect_ref_loc (input_location,
2527 se->expr);
2528 /* And the case where a non-dummy, non-result, non-function,
2529 non-allotable and non-pointer classarray is present. This case was
2530 previously covered by the first if, but with introducing the
2531 condition !is_classarray there, that case has to be covered
2532 explicitly. */
2533 else if (sym->ts.type == BT_CLASS
2534 && !sym->attr.dummy
2535 && !sym->attr.function
2536 && !sym->attr.result
2537 && (CLASS_DATA (sym)->attr.dimension
2538 || CLASS_DATA (sym)->attr.codimension)
2539 && !CLASS_DATA (sym)->attr.allocatable
2540 && !CLASS_DATA (sym)->attr.class_pointer)
2541 se->expr = build_fold_indirect_ref_loc (input_location,
2542 se->expr);
2543 }
2544
2545 ref = expr->ref;
2546 }
2547
2548 /* For character variables, also get the length. */
2549 if (sym->ts.type == BT_CHARACTER)
2550 {
2551 /* If the character length of an entry isn't set, get the length from
2552 the master function instead. */
2553 if (sym->attr.entry && !sym->ts.u.cl->backend_decl)
2554 se->string_length = sym->ns->proc_name->ts.u.cl->backend_decl;
2555 else
2556 se->string_length = sym->ts.u.cl->backend_decl;
2557 gcc_assert (se->string_length);
2558 }
2559
2560 while (ref)
2561 {
2562 switch (ref->type)
2563 {
2564 case REF_ARRAY:
2565 /* Return the descriptor if that's what we want and this is an array
2566 section reference. */
2567 if (se->descriptor_only && ref->u.ar.type != AR_ELEMENT)
2568 return;
2569 /* TODO: Pointers to single elements of array sections, eg elemental subs. */
2570 /* Return the descriptor for array pointers and allocations. */
2571 if (se->want_pointer
2572 && ref->next == NULL && (se->descriptor_only))
2573 return;
2574
2575 gfc_conv_array_ref (se, &ref->u.ar, expr, &expr->where);
2576 /* Return a pointer to an element. */
2577 break;
2578
2579 case REF_COMPONENT:
2580 if (first_time && is_classarray && sym->attr.dummy
2581 && se->descriptor_only
2582 && !CLASS_DATA (sym)->attr.allocatable
2583 && !CLASS_DATA (sym)->attr.class_pointer
2584 && CLASS_DATA (sym)->as
2585 && CLASS_DATA (sym)->as->type != AS_ASSUMED_RANK
2586 && strcmp ("_data", ref->u.c.component->name) == 0)
2587 /* Skip the first ref of a _data component, because for class
2588 arrays that one is already done by introducing a temporary
2589 array descriptor. */
2590 break;
2591
2592 if (ref->u.c.sym->attr.extension)
2593 conv_parent_component_references (se, ref);
2594
2595 gfc_conv_component_ref (se, ref);
2596 if (!ref->next && ref->u.c.sym->attr.codimension
2597 && se->want_pointer && se->descriptor_only)
2598 return;
2599
2600 break;
2601
2602 case REF_SUBSTRING:
2603 gfc_conv_substring (se, ref, expr->ts.kind,
2604 expr->symtree->name, &expr->where);
2605 break;
2606
2607 default:
2608 gcc_unreachable ();
2609 break;
2610 }
2611 first_time = false;
2612 ref = ref->next;
2613 }
2614 /* Pointer assignment, allocation or pass by reference. Arrays are handled
2615 separately. */
2616 if (se->want_pointer)
2617 {
2618 if (expr->ts.type == BT_CHARACTER && !gfc_is_proc_ptr_comp (expr))
2619 gfc_conv_string_parameter (se);
2620 else
2621 se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
2622 }
2623 }
2624
2625
2626 /* Unary ops are easy... Or they would be if ! was a valid op. */
2627
2628 static void
2629 gfc_conv_unary_op (enum tree_code code, gfc_se * se, gfc_expr * expr)
2630 {
2631 gfc_se operand;
2632 tree type;
2633
2634 gcc_assert (expr->ts.type != BT_CHARACTER);
2635 /* Initialize the operand. */
2636 gfc_init_se (&operand, se);
2637 gfc_conv_expr_val (&operand, expr->value.op.op1);
2638 gfc_add_block_to_block (&se->pre, &operand.pre);
2639
2640 type = gfc_typenode_for_spec (&expr->ts);
2641
2642 /* TRUTH_NOT_EXPR is not a "true" unary operator in GCC.
2643 We must convert it to a compare to 0 (e.g. EQ_EXPR (op1, 0)).
2644 All other unary operators have an equivalent GIMPLE unary operator. */
2645 if (code == TRUTH_NOT_EXPR)
2646 se->expr = fold_build2_loc (input_location, EQ_EXPR, type, operand.expr,
2647 build_int_cst (type, 0));
2648 else
2649 se->expr = fold_build1_loc (input_location, code, type, operand.expr);
2650
2651 }
2652
2653 /* Expand power operator to optimal multiplications when a value is raised
2654 to a constant integer n. See section 4.6.3, "Evaluation of Powers" of
2655 Donald E. Knuth, "Seminumerical Algorithms", Vol. 2, "The Art of Computer
2656 Programming", 3rd Edition, 1998. */
2657
2658 /* This code is mostly duplicated from expand_powi in the backend.
2659 We establish the "optimal power tree" lookup table with the defined size.
2660 The items in the table are the exponents used to calculate the index
2661 exponents. Any integer n less than the value can get an "addition chain",
2662 with the first node being one. */
2663 #define POWI_TABLE_SIZE 256
2664
2665 /* The table is from builtins.c. */
2666 static const unsigned char powi_table[POWI_TABLE_SIZE] =
2667 {
2668 0, 1, 1, 2, 2, 3, 3, 4, /* 0 - 7 */
2669 4, 6, 5, 6, 6, 10, 7, 9, /* 8 - 15 */
2670 8, 16, 9, 16, 10, 12, 11, 13, /* 16 - 23 */
2671 12, 17, 13, 18, 14, 24, 15, 26, /* 24 - 31 */
2672 16, 17, 17, 19, 18, 33, 19, 26, /* 32 - 39 */
2673 20, 25, 21, 40, 22, 27, 23, 44, /* 40 - 47 */
2674 24, 32, 25, 34, 26, 29, 27, 44, /* 48 - 55 */
2675 28, 31, 29, 34, 30, 60, 31, 36, /* 56 - 63 */
2676 32, 64, 33, 34, 34, 46, 35, 37, /* 64 - 71 */
2677 36, 65, 37, 50, 38, 48, 39, 69, /* 72 - 79 */
2678 40, 49, 41, 43, 42, 51, 43, 58, /* 80 - 87 */
2679 44, 64, 45, 47, 46, 59, 47, 76, /* 88 - 95 */
2680 48, 65, 49, 66, 50, 67, 51, 66, /* 96 - 103 */
2681 52, 70, 53, 74, 54, 104, 55, 74, /* 104 - 111 */
2682 56, 64, 57, 69, 58, 78, 59, 68, /* 112 - 119 */
2683 60, 61, 61, 80, 62, 75, 63, 68, /* 120 - 127 */
2684 64, 65, 65, 128, 66, 129, 67, 90, /* 128 - 135 */
2685 68, 73, 69, 131, 70, 94, 71, 88, /* 136 - 143 */
2686 72, 128, 73, 98, 74, 132, 75, 121, /* 144 - 151 */
2687 76, 102, 77, 124, 78, 132, 79, 106, /* 152 - 159 */
2688 80, 97, 81, 160, 82, 99, 83, 134, /* 160 - 167 */
2689 84, 86, 85, 95, 86, 160, 87, 100, /* 168 - 175 */
2690 88, 113, 89, 98, 90, 107, 91, 122, /* 176 - 183 */
2691 92, 111, 93, 102, 94, 126, 95, 150, /* 184 - 191 */
2692 96, 128, 97, 130, 98, 133, 99, 195, /* 192 - 199 */
2693 100, 128, 101, 123, 102, 164, 103, 138, /* 200 - 207 */
2694 104, 145, 105, 146, 106, 109, 107, 149, /* 208 - 215 */
2695 108, 200, 109, 146, 110, 170, 111, 157, /* 216 - 223 */
2696 112, 128, 113, 130, 114, 182, 115, 132, /* 224 - 231 */
2697 116, 200, 117, 132, 118, 158, 119, 206, /* 232 - 239 */
2698 120, 240, 121, 162, 122, 147, 123, 152, /* 240 - 247 */
2699 124, 166, 125, 214, 126, 138, 127, 153, /* 248 - 255 */
2700 };
2701
2702 /* If n is larger than lookup table's max index, we use the "window
2703 method". */
2704 #define POWI_WINDOW_SIZE 3
2705
2706 /* Recursive function to expand the power operator. The temporary
2707 values are put in tmpvar. The function returns tmpvar[1] ** n. */
2708 static tree
2709 gfc_conv_powi (gfc_se * se, unsigned HOST_WIDE_INT n, tree * tmpvar)
2710 {
2711 tree op0;
2712 tree op1;
2713 tree tmp;
2714 int digit;
2715
2716 if (n < POWI_TABLE_SIZE)
2717 {
2718 if (tmpvar[n])
2719 return tmpvar[n];
2720
2721 op0 = gfc_conv_powi (se, n - powi_table[n], tmpvar);
2722 op1 = gfc_conv_powi (se, powi_table[n], tmpvar);
2723 }
2724 else if (n & 1)
2725 {
2726 digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
2727 op0 = gfc_conv_powi (se, n - digit, tmpvar);
2728 op1 = gfc_conv_powi (se, digit, tmpvar);
2729 }
2730 else
2731 {
2732 op0 = gfc_conv_powi (se, n >> 1, tmpvar);
2733 op1 = op0;
2734 }
2735
2736 tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE (op0), op0, op1);
2737 tmp = gfc_evaluate_now (tmp, &se->pre);
2738
2739 if (n < POWI_TABLE_SIZE)
2740 tmpvar[n] = tmp;
2741
2742 return tmp;
2743 }
2744
2745
2746 /* Expand lhs ** rhs. rhs is a constant integer. If it expands successfully,
2747 return 1. Else return 0 and a call to runtime library functions
2748 will have to be built. */
2749 static int
2750 gfc_conv_cst_int_power (gfc_se * se, tree lhs, tree rhs)
2751 {
2752 tree cond;
2753 tree tmp;
2754 tree type;
2755 tree vartmp[POWI_TABLE_SIZE];
2756 HOST_WIDE_INT m;
2757 unsigned HOST_WIDE_INT n;
2758 int sgn;
2759 wide_int wrhs = rhs;
2760
2761 /* If exponent is too large, we won't expand it anyway, so don't bother
2762 with large integer values. */
2763 if (!wi::fits_shwi_p (wrhs))
2764 return 0;
2765
2766 m = wrhs.to_shwi ();
2767 /* There's no ABS for HOST_WIDE_INT, so here we go. It also takes care
2768 of the asymmetric range of the integer type. */
2769 n = (unsigned HOST_WIDE_INT) (m < 0 ? -m : m);
2770
2771 type = TREE_TYPE (lhs);
2772 sgn = tree_int_cst_sgn (rhs);
2773
2774 if (((FLOAT_TYPE_P (type) && !flag_unsafe_math_optimizations)
2775 || optimize_size) && (m > 2 || m < -1))
2776 return 0;
2777
2778 /* rhs == 0 */
2779 if (sgn == 0)
2780 {
2781 se->expr = gfc_build_const (type, integer_one_node);
2782 return 1;
2783 }
2784
2785 /* If rhs < 0 and lhs is an integer, the result is -1, 0 or 1. */
2786 if ((sgn == -1) && (TREE_CODE (type) == INTEGER_TYPE))
2787 {
2788 tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
2789 lhs, build_int_cst (TREE_TYPE (lhs), -1));
2790 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
2791 lhs, build_int_cst (TREE_TYPE (lhs), 1));
2792
2793 /* If rhs is even,
2794 result = (lhs == 1 || lhs == -1) ? 1 : 0. */
2795 if ((n & 1) == 0)
2796 {
2797 tmp = fold_build2_loc (input_location, TRUTH_OR_EXPR,
2798 boolean_type_node, tmp, cond);
2799 se->expr = fold_build3_loc (input_location, COND_EXPR, type,
2800 tmp, build_int_cst (type, 1),
2801 build_int_cst (type, 0));
2802 return 1;
2803 }
2804 /* If rhs is odd,
2805 result = (lhs == 1) ? 1 : (lhs == -1) ? -1 : 0. */
2806 tmp = fold_build3_loc (input_location, COND_EXPR, type, tmp,
2807 build_int_cst (type, -1),
2808 build_int_cst (type, 0));
2809 se->expr = fold_build3_loc (input_location, COND_EXPR, type,
2810 cond, build_int_cst (type, 1), tmp);
2811 return 1;
2812 }
2813
2814 memset (vartmp, 0, sizeof (vartmp));
2815 vartmp[1] = lhs;
2816 if (sgn == -1)
2817 {
2818 tmp = gfc_build_const (type, integer_one_node);
2819 vartmp[1] = fold_build2_loc (input_location, RDIV_EXPR, type, tmp,
2820 vartmp[1]);
2821 }
2822
2823 se->expr = gfc_conv_powi (se, n, vartmp);
2824
2825 return 1;
2826 }
2827
2828
2829 /* Power op (**). Constant integer exponent has special handling. */
2830
2831 static void
2832 gfc_conv_power_op (gfc_se * se, gfc_expr * expr)
2833 {
2834 tree gfc_int4_type_node;
2835 int kind;
2836 int ikind;
2837 int res_ikind_1, res_ikind_2;
2838 gfc_se lse;
2839 gfc_se rse;
2840 tree fndecl = NULL;
2841
2842 gfc_init_se (&lse, se);
2843 gfc_conv_expr_val (&lse, expr->value.op.op1);
2844 lse.expr = gfc_evaluate_now (lse.expr, &lse.pre);
2845 gfc_add_block_to_block (&se->pre, &lse.pre);
2846
2847 gfc_init_se (&rse, se);
2848 gfc_conv_expr_val (&rse, expr->value.op.op2);
2849 gfc_add_block_to_block (&se->pre, &rse.pre);
2850
2851 if (expr->value.op.op2->ts.type == BT_INTEGER
2852 && expr->value.op.op2->expr_type == EXPR_CONSTANT)
2853 if (gfc_conv_cst_int_power (se, lse.expr, rse.expr))
2854 return;
2855
2856 gfc_int4_type_node = gfc_get_int_type (4);
2857
2858 /* In case of integer operands with kinds 1 or 2, we call the integer kind 4
2859 library routine. But in the end, we have to convert the result back
2860 if this case applies -- with res_ikind_K, we keep track whether operand K
2861 falls into this case. */
2862 res_ikind_1 = -1;
2863 res_ikind_2 = -1;
2864
2865 kind = expr->value.op.op1->ts.kind;
2866 switch (expr->value.op.op2->ts.type)
2867 {
2868 case BT_INTEGER:
2869 ikind = expr->value.op.op2->ts.kind;
2870 switch (ikind)
2871 {
2872 case 1:
2873 case 2:
2874 rse.expr = convert (gfc_int4_type_node, rse.expr);
2875 res_ikind_2 = ikind;
2876 /* Fall through. */
2877
2878 case 4:
2879 ikind = 0;
2880 break;
2881
2882 case 8:
2883 ikind = 1;
2884 break;
2885
2886 case 16:
2887 ikind = 2;
2888 break;
2889
2890 default:
2891 gcc_unreachable ();
2892 }
2893 switch (kind)
2894 {
2895 case 1:
2896 case 2:
2897 if (expr->value.op.op1->ts.type == BT_INTEGER)
2898 {
2899 lse.expr = convert (gfc_int4_type_node, lse.expr);
2900 res_ikind_1 = kind;
2901 }
2902 else
2903 gcc_unreachable ();
2904 /* Fall through. */
2905
2906 case 4:
2907 kind = 0;
2908 break;
2909
2910 case 8:
2911 kind = 1;
2912 break;
2913
2914 case 10:
2915 kind = 2;
2916 break;
2917
2918 case 16:
2919 kind = 3;
2920 break;
2921
2922 default:
2923 gcc_unreachable ();
2924 }
2925
2926 switch (expr->value.op.op1->ts.type)
2927 {
2928 case BT_INTEGER:
2929 if (kind == 3) /* Case 16 was not handled properly above. */
2930 kind = 2;
2931 fndecl = gfor_fndecl_math_powi[kind][ikind].integer;
2932 break;
2933
2934 case BT_REAL:
2935 /* Use builtins for real ** int4. */
2936 if (ikind == 0)
2937 {
2938 switch (kind)
2939 {
2940 case 0:
2941 fndecl = builtin_decl_explicit (BUILT_IN_POWIF);
2942 break;
2943
2944 case 1:
2945 fndecl = builtin_decl_explicit (BUILT_IN_POWI);
2946 break;
2947
2948 case 2:
2949 fndecl = builtin_decl_explicit (BUILT_IN_POWIL);
2950 break;
2951
2952 case 3:
2953 /* Use the __builtin_powil() only if real(kind=16) is
2954 actually the C long double type. */
2955 if (!gfc_real16_is_float128)
2956 fndecl = builtin_decl_explicit (BUILT_IN_POWIL);
2957 break;
2958
2959 default:
2960 gcc_unreachable ();
2961 }
2962 }
2963
2964 /* If we don't have a good builtin for this, go for the
2965 library function. */
2966 if (!fndecl)
2967 fndecl = gfor_fndecl_math_powi[kind][ikind].real;
2968 break;
2969
2970 case BT_COMPLEX:
2971 fndecl = gfor_fndecl_math_powi[kind][ikind].cmplx;
2972 break;
2973
2974 default:
2975 gcc_unreachable ();
2976 }
2977 break;
2978
2979 case BT_REAL:
2980 fndecl = gfc_builtin_decl_for_float_kind (BUILT_IN_POW, kind);
2981 break;
2982
2983 case BT_COMPLEX:
2984 fndecl = gfc_builtin_decl_for_float_kind (BUILT_IN_CPOW, kind);
2985 break;
2986
2987 default:
2988 gcc_unreachable ();
2989 break;
2990 }
2991
2992 se->expr = build_call_expr_loc (input_location,
2993 fndecl, 2, lse.expr, rse.expr);
2994
2995 /* Convert the result back if it is of wrong integer kind. */
2996 if (res_ikind_1 != -1 && res_ikind_2 != -1)
2997 {
2998 /* We want the maximum of both operand kinds as result. */
2999 if (res_ikind_1 < res_ikind_2)
3000 res_ikind_1 = res_ikind_2;
3001 se->expr = convert (gfc_get_int_type (res_ikind_1), se->expr);
3002 }
3003 }
3004
3005
3006 /* Generate code to allocate a string temporary. */
3007
3008 tree
3009 gfc_conv_string_tmp (gfc_se * se, tree type, tree len)
3010 {
3011 tree var;
3012 tree tmp;
3013
3014 if (gfc_can_put_var_on_stack (len))
3015 {
3016 /* Create a temporary variable to hold the result. */
3017 tmp = fold_build2_loc (input_location, MINUS_EXPR,
3018 gfc_charlen_type_node, len,
3019 build_int_cst (gfc_charlen_type_node, 1));
3020 tmp = build_range_type (gfc_array_index_type, gfc_index_zero_node, tmp);
3021
3022 if (TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE)
3023 tmp = build_array_type (TREE_TYPE (TREE_TYPE (type)), tmp);
3024 else
3025 tmp = build_array_type (TREE_TYPE (type), tmp);
3026
3027 var = gfc_create_var (tmp, "str");
3028 var = gfc_build_addr_expr (type, var);
3029 }
3030 else
3031 {
3032 /* Allocate a temporary to hold the result. */
3033 var = gfc_create_var (type, "pstr");
3034 gcc_assert (POINTER_TYPE_P (type));
3035 tmp = TREE_TYPE (type);
3036 if (TREE_CODE (tmp) == ARRAY_TYPE)
3037 tmp = TREE_TYPE (tmp);
3038 tmp = TYPE_SIZE_UNIT (tmp);
3039 tmp = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
3040 fold_convert (size_type_node, len),
3041 fold_convert (size_type_node, tmp));
3042 tmp = gfc_call_malloc (&se->pre, type, tmp);
3043 gfc_add_modify (&se->pre, var, tmp);
3044
3045 /* Free the temporary afterwards. */
3046 tmp = gfc_call_free (convert (pvoid_type_node, var));
3047 gfc_add_expr_to_block (&se->post, tmp);
3048 }
3049
3050 return var;
3051 }
3052
3053
3054 /* Handle a string concatenation operation. A temporary will be allocated to
3055 hold the result. */
3056
3057 static void
3058 gfc_conv_concat_op (gfc_se * se, gfc_expr * expr)
3059 {
3060 gfc_se lse, rse;
3061 tree len, type, var, tmp, fndecl;
3062
3063 gcc_assert (expr->value.op.op1->ts.type == BT_CHARACTER
3064 && expr->value.op.op2->ts.type == BT_CHARACTER);
3065 gcc_assert (expr->value.op.op1->ts.kind == expr->value.op.op2->ts.kind);
3066
3067 gfc_init_se (&lse, se);
3068 gfc_conv_expr (&lse, expr->value.op.op1);
3069 gfc_conv_string_parameter (&lse);
3070 gfc_init_se (&rse, se);
3071 gfc_conv_expr (&rse, expr->value.op.op2);
3072 gfc_conv_string_parameter (&rse);
3073
3074 gfc_add_block_to_block (&se->pre, &lse.pre);
3075 gfc_add_block_to_block (&se->pre, &rse.pre);
3076
3077 type = gfc_get_character_type (expr->ts.kind, expr->ts.u.cl);
3078 len = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
3079 if (len == NULL_TREE)
3080 {
3081 len = fold_build2_loc (input_location, PLUS_EXPR,
3082 TREE_TYPE (lse.string_length),
3083 lse.string_length, rse.string_length);
3084 }
3085
3086 type = build_pointer_type (type);
3087
3088 var = gfc_conv_string_tmp (se, type, len);
3089
3090 /* Do the actual concatenation. */
3091 if (expr->ts.kind == 1)
3092 fndecl = gfor_fndecl_concat_string;
3093 else if (expr->ts.kind == 4)
3094 fndecl = gfor_fndecl_concat_string_char4;
3095 else
3096 gcc_unreachable ();
3097
3098 tmp = build_call_expr_loc (input_location,
3099 fndecl, 6, len, var, lse.string_length, lse.expr,
3100 rse.string_length, rse.expr);
3101 gfc_add_expr_to_block (&se->pre, tmp);
3102
3103 /* Add the cleanup for the operands. */
3104 gfc_add_block_to_block (&se->pre, &rse.post);
3105 gfc_add_block_to_block (&se->pre, &lse.post);
3106
3107 se->expr = var;
3108 se->string_length = len;
3109 }
3110
3111 /* Translates an op expression. Common (binary) cases are handled by this
3112 function, others are passed on. Recursion is used in either case.
3113 We use the fact that (op1.ts == op2.ts) (except for the power
3114 operator **).
3115 Operators need no special handling for scalarized expressions as long as
3116 they call gfc_conv_simple_val to get their operands.
3117 Character strings get special handling. */
3118
3119 static void
3120 gfc_conv_expr_op (gfc_se * se, gfc_expr * expr)
3121 {
3122 enum tree_code code;
3123 gfc_se lse;
3124 gfc_se rse;
3125 tree tmp, type;
3126 int lop;
3127 int checkstring;
3128
3129 checkstring = 0;
3130 lop = 0;
3131 switch (expr->value.op.op)
3132 {
3133 case INTRINSIC_PARENTHESES:
3134 if ((expr->ts.type == BT_REAL || expr->ts.type == BT_COMPLEX)
3135 && flag_protect_parens)
3136 {
3137 gfc_conv_unary_op (PAREN_EXPR, se, expr);
3138 gcc_assert (FLOAT_TYPE_P (TREE_TYPE (se->expr)));
3139 return;
3140 }
3141
3142 /* Fallthrough. */
3143 case INTRINSIC_UPLUS:
3144 gfc_conv_expr (se, expr->value.op.op1);
3145 return;
3146
3147 case INTRINSIC_UMINUS:
3148 gfc_conv_unary_op (NEGATE_EXPR, se, expr);
3149 return;
3150
3151 case INTRINSIC_NOT:
3152 gfc_conv_unary_op (TRUTH_NOT_EXPR, se, expr);
3153 return;
3154
3155 case INTRINSIC_PLUS:
3156 code = PLUS_EXPR;
3157 break;
3158
3159 case INTRINSIC_MINUS:
3160 code = MINUS_EXPR;
3161 break;
3162
3163 case INTRINSIC_TIMES:
3164 code = MULT_EXPR;
3165 break;
3166
3167 case INTRINSIC_DIVIDE:
3168 /* If expr is a real or complex expr, use an RDIV_EXPR. If op1 is
3169 an integer, we must round towards zero, so we use a
3170 TRUNC_DIV_EXPR. */
3171 if (expr->ts.type == BT_INTEGER)
3172 code = TRUNC_DIV_EXPR;
3173 else
3174 code = RDIV_EXPR;
3175 break;
3176
3177 case INTRINSIC_POWER:
3178 gfc_conv_power_op (se, expr);
3179 return;
3180
3181 case INTRINSIC_CONCAT:
3182 gfc_conv_concat_op (se, expr);
3183 return;
3184
3185 case INTRINSIC_AND:
3186 code = TRUTH_ANDIF_EXPR;
3187 lop = 1;
3188 break;
3189
3190 case INTRINSIC_OR:
3191 code = TRUTH_ORIF_EXPR;
3192 lop = 1;
3193 break;
3194
3195 /* EQV and NEQV only work on logicals, but since we represent them
3196 as integers, we can use EQ_EXPR and NE_EXPR for them in GIMPLE. */
3197 case INTRINSIC_EQ:
3198 case INTRINSIC_EQ_OS:
3199 case INTRINSIC_EQV:
3200 code = EQ_EXPR;
3201 checkstring = 1;
3202 lop = 1;
3203 break;
3204
3205 case INTRINSIC_NE:
3206 case INTRINSIC_NE_OS:
3207 case INTRINSIC_NEQV:
3208 code = NE_EXPR;
3209 checkstring = 1;
3210 lop = 1;
3211 break;
3212
3213 case INTRINSIC_GT:
3214 case INTRINSIC_GT_OS:
3215 code = GT_EXPR;
3216 checkstring = 1;
3217 lop = 1;
3218 break;
3219
3220 case INTRINSIC_GE:
3221 case INTRINSIC_GE_OS:
3222 code = GE_EXPR;
3223 checkstring = 1;
3224 lop = 1;
3225 break;
3226
3227 case INTRINSIC_LT:
3228 case INTRINSIC_LT_OS:
3229 code = LT_EXPR;
3230 checkstring = 1;
3231 lop = 1;
3232 break;
3233
3234 case INTRINSIC_LE:
3235 case INTRINSIC_LE_OS:
3236 code = LE_EXPR;
3237 checkstring = 1;
3238 lop = 1;
3239 break;
3240
3241 case INTRINSIC_USER:
3242 case INTRINSIC_ASSIGN:
3243 /* These should be converted into function calls by the frontend. */
3244 gcc_unreachable ();
3245
3246 default:
3247 fatal_error (input_location, "Unknown intrinsic op");
3248 return;
3249 }
3250
3251 /* The only exception to this is **, which is handled separately anyway. */
3252 gcc_assert (expr->value.op.op1->ts.type == expr->value.op.op2->ts.type);
3253
3254 if (checkstring && expr->value.op.op1->ts.type != BT_CHARACTER)
3255 checkstring = 0;
3256
3257 /* lhs */
3258 gfc_init_se (&lse, se);
3259 gfc_conv_expr (&lse, expr->value.op.op1);
3260 gfc_add_block_to_block (&se->pre, &lse.pre);
3261
3262 /* rhs */
3263 gfc_init_se (&rse, se);
3264 gfc_conv_expr (&rse, expr->value.op.op2);
3265 gfc_add_block_to_block (&se->pre, &rse.pre);
3266
3267 if (checkstring)
3268 {
3269 gfc_conv_string_parameter (&lse);
3270 gfc_conv_string_parameter (&rse);
3271
3272 lse.expr = gfc_build_compare_string (lse.string_length, lse.expr,
3273 rse.string_length, rse.expr,
3274 expr->value.op.op1->ts.kind,
3275 code);
3276 rse.expr = build_int_cst (TREE_TYPE (lse.expr), 0);
3277 gfc_add_block_to_block (&lse.post, &rse.post);
3278 }
3279
3280 type = gfc_typenode_for_spec (&expr->ts);
3281
3282 if (lop)
3283 {
3284 /* The result of logical ops is always boolean_type_node. */
3285 tmp = fold_build2_loc (input_location, code, boolean_type_node,
3286 lse.expr, rse.expr);
3287 se->expr = convert (type, tmp);
3288 }
3289 else
3290 se->expr = fold_build2_loc (input_location, code, type, lse.expr, rse.expr);
3291
3292 /* Add the post blocks. */
3293 gfc_add_block_to_block (&se->post, &rse.post);
3294 gfc_add_block_to_block (&se->post, &lse.post);
3295 }
3296
3297 /* If a string's length is one, we convert it to a single character. */
3298
3299 tree
3300 gfc_string_to_single_character (tree len, tree str, int kind)
3301 {
3302
3303 if (len == NULL
3304 || !tree_fits_uhwi_p (len)
3305 || !POINTER_TYPE_P (TREE_TYPE (str)))
3306 return NULL_TREE;
3307
3308 if (TREE_INT_CST_LOW (len) == 1)
3309 {
3310 str = fold_convert (gfc_get_pchar_type (kind), str);
3311 return build_fold_indirect_ref_loc (input_location, str);
3312 }
3313
3314 if (kind == 1
3315 && TREE_CODE (str) == ADDR_EXPR
3316 && TREE_CODE (TREE_OPERAND (str, 0)) == ARRAY_REF
3317 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (str, 0), 0)) == STRING_CST
3318 && array_ref_low_bound (TREE_OPERAND (str, 0))
3319 == TREE_OPERAND (TREE_OPERAND (str, 0), 1)
3320 && TREE_INT_CST_LOW (len) > 1
3321 && TREE_INT_CST_LOW (len)
3322 == (unsigned HOST_WIDE_INT)
3323 TREE_STRING_LENGTH (TREE_OPERAND (TREE_OPERAND (str, 0), 0)))
3324 {
3325 tree ret = fold_convert (gfc_get_pchar_type (kind), str);
3326 ret = build_fold_indirect_ref_loc (input_location, ret);
3327 if (TREE_CODE (ret) == INTEGER_CST)
3328 {
3329 tree string_cst = TREE_OPERAND (TREE_OPERAND (str, 0), 0);
3330 int i, length = TREE_STRING_LENGTH (string_cst);
3331 const char *ptr = TREE_STRING_POINTER (string_cst);
3332
3333 for (i = 1; i < length; i++)
3334 if (ptr[i] != ' ')
3335 return NULL_TREE;
3336
3337 return ret;
3338 }
3339 }
3340
3341 return NULL_TREE;
3342 }
3343
3344
3345 void
3346 gfc_conv_scalar_char_value (gfc_symbol *sym, gfc_se *se, gfc_expr **expr)
3347 {
3348
3349 if (sym->backend_decl)
3350 {
3351 /* This becomes the nominal_type in
3352 function.c:assign_parm_find_data_types. */
3353 TREE_TYPE (sym->backend_decl) = unsigned_char_type_node;
3354 /* This becomes the passed_type in
3355 function.c:assign_parm_find_data_types. C promotes char to
3356 integer for argument passing. */
3357 DECL_ARG_TYPE (sym->backend_decl) = unsigned_type_node;
3358
3359 DECL_BY_REFERENCE (sym->backend_decl) = 0;
3360 }
3361
3362 if (expr != NULL)
3363 {
3364 /* If we have a constant character expression, make it into an
3365 integer. */
3366 if ((*expr)->expr_type == EXPR_CONSTANT)
3367 {
3368 gfc_typespec ts;
3369 gfc_clear_ts (&ts);
3370
3371 *expr = gfc_get_int_expr (gfc_default_integer_kind, NULL,
3372 (int)(*expr)->value.character.string[0]);
3373 if ((*expr)->ts.kind != gfc_c_int_kind)
3374 {
3375 /* The expr needs to be compatible with a C int. If the
3376 conversion fails, then the 2 causes an ICE. */
3377 ts.type = BT_INTEGER;
3378 ts.kind = gfc_c_int_kind;
3379 gfc_convert_type (*expr, &ts, 2);
3380 }
3381 }
3382 else if (se != NULL && (*expr)->expr_type == EXPR_VARIABLE)
3383 {
3384 if ((*expr)->ref == NULL)
3385 {
3386 se->expr = gfc_string_to_single_character
3387 (build_int_cst (integer_type_node, 1),
3388 gfc_build_addr_expr (gfc_get_pchar_type ((*expr)->ts.kind),
3389 gfc_get_symbol_decl
3390 ((*expr)->symtree->n.sym)),
3391 (*expr)->ts.kind);
3392 }
3393 else
3394 {
3395 gfc_conv_variable (se, *expr);
3396 se->expr = gfc_string_to_single_character
3397 (build_int_cst (integer_type_node, 1),
3398 gfc_build_addr_expr (gfc_get_pchar_type ((*expr)->ts.kind),
3399 se->expr),
3400 (*expr)->ts.kind);
3401 }
3402 }
3403 }
3404 }
3405
3406 /* Helper function for gfc_build_compare_string. Return LEN_TRIM value
3407 if STR is a string literal, otherwise return -1. */
3408
3409 static int
3410 gfc_optimize_len_trim (tree len, tree str, int kind)
3411 {
3412 if (kind == 1
3413 && TREE_CODE (str) == ADDR_EXPR
3414 && TREE_CODE (TREE_OPERAND (str, 0)) == ARRAY_REF
3415 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (str, 0), 0)) == STRING_CST
3416 && array_ref_low_bound (TREE_OPERAND (str, 0))
3417 == TREE_OPERAND (TREE_OPERAND (str, 0), 1)
3418 && tree_fits_uhwi_p (len)
3419 && tree_to_uhwi (len) >= 1
3420 && tree_to_uhwi (len)
3421 == (unsigned HOST_WIDE_INT)
3422 TREE_STRING_LENGTH (TREE_OPERAND (TREE_OPERAND (str, 0), 0)))
3423 {
3424 tree folded = fold_convert (gfc_get_pchar_type (kind), str);
3425 folded = build_fold_indirect_ref_loc (input_location, folded);
3426 if (TREE_CODE (folded) == INTEGER_CST)
3427 {
3428 tree string_cst = TREE_OPERAND (TREE_OPERAND (str, 0), 0);
3429 int length = TREE_STRING_LENGTH (string_cst);
3430 const char *ptr = TREE_STRING_POINTER (string_cst);
3431
3432 for (; length > 0; length--)
3433 if (ptr[length - 1] != ' ')
3434 break;
3435
3436 return length;
3437 }
3438 }
3439 return -1;
3440 }
3441
3442 /* Helper to build a call to memcmp. */
3443
3444 static tree
3445 build_memcmp_call (tree s1, tree s2, tree n)
3446 {
3447 tree tmp;
3448
3449 if (!POINTER_TYPE_P (TREE_TYPE (s1)))
3450 s1 = gfc_build_addr_expr (pvoid_type_node, s1);
3451 else
3452 s1 = fold_convert (pvoid_type_node, s1);
3453
3454 if (!POINTER_TYPE_P (TREE_TYPE (s2)))
3455 s2 = gfc_build_addr_expr (pvoid_type_node, s2);
3456 else
3457 s2 = fold_convert (pvoid_type_node, s2);
3458
3459 n = fold_convert (size_type_node, n);
3460
3461 tmp = build_call_expr_loc (input_location,
3462 builtin_decl_explicit (BUILT_IN_MEMCMP),
3463 3, s1, s2, n);
3464
3465 return fold_convert (integer_type_node, tmp);
3466 }
3467
3468 /* Compare two strings. If they are all single characters, the result is the
3469 subtraction of them. Otherwise, we build a library call. */
3470
3471 tree
3472 gfc_build_compare_string (tree len1, tree str1, tree len2, tree str2, int kind,
3473 enum tree_code code)
3474 {
3475 tree sc1;
3476 tree sc2;
3477 tree fndecl;
3478
3479 gcc_assert (POINTER_TYPE_P (TREE_TYPE (str1)));
3480 gcc_assert (POINTER_TYPE_P (TREE_TYPE (str2)));
3481
3482 sc1 = gfc_string_to_single_character (len1, str1, kind);
3483 sc2 = gfc_string_to_single_character (len2, str2, kind);
3484
3485 if (sc1 != NULL_TREE && sc2 != NULL_TREE)
3486 {
3487 /* Deal with single character specially. */
3488 sc1 = fold_convert (integer_type_node, sc1);
3489 sc2 = fold_convert (integer_type_node, sc2);
3490 return fold_build2_loc (input_location, MINUS_EXPR, integer_type_node,
3491 sc1, sc2);
3492 }
3493
3494 if ((code == EQ_EXPR || code == NE_EXPR)
3495 && optimize
3496 && INTEGER_CST_P (len1) && INTEGER_CST_P (len2))
3497 {
3498 /* If one string is a string literal with LEN_TRIM longer
3499 than the length of the second string, the strings
3500 compare unequal. */
3501 int len = gfc_optimize_len_trim (len1, str1, kind);
3502 if (len > 0 && compare_tree_int (len2, len) < 0)
3503 return integer_one_node;
3504 len = gfc_optimize_len_trim (len2, str2, kind);
3505 if (len > 0 && compare_tree_int (len1, len) < 0)
3506 return integer_one_node;
3507 }
3508
3509 /* We can compare via memcpy if the strings are known to be equal
3510 in length and they are
3511 - kind=1
3512 - kind=4 and the comparison is for (in)equality. */
3513
3514 if (INTEGER_CST_P (len1) && INTEGER_CST_P (len2)
3515 && tree_int_cst_equal (len1, len2)
3516 && (kind == 1 || code == EQ_EXPR || code == NE_EXPR))
3517 {
3518 tree tmp;
3519 tree chartype;
3520
3521 chartype = gfc_get_char_type (kind);
3522 tmp = fold_build2_loc (input_location, MULT_EXPR, TREE_TYPE(len1),
3523 fold_convert (TREE_TYPE(len1),
3524 TYPE_SIZE_UNIT(chartype)),
3525 len1);
3526 return build_memcmp_call (str1, str2, tmp);
3527 }
3528
3529 /* Build a call for the comparison. */
3530 if (kind == 1)
3531 fndecl = gfor_fndecl_compare_string;
3532 else if (kind == 4)
3533 fndecl = gfor_fndecl_compare_string_char4;
3534 else
3535 gcc_unreachable ();
3536
3537 return build_call_expr_loc (input_location, fndecl, 4,
3538 len1, str1, len2, str2);
3539 }
3540
3541
3542 /* Return the backend_decl for a procedure pointer component. */
3543
3544 static tree
3545 get_proc_ptr_comp (gfc_expr *e)
3546 {
3547 gfc_se comp_se;
3548 gfc_expr *e2;
3549 expr_t old_type;
3550
3551 gfc_init_se (&comp_se, NULL);
3552 e2 = gfc_copy_expr (e);
3553 /* We have to restore the expr type later so that gfc_free_expr frees
3554 the exact same thing that was allocated.
3555 TODO: This is ugly. */
3556 old_type = e2->expr_type;
3557 e2->expr_type = EXPR_VARIABLE;
3558 gfc_conv_expr (&comp_se, e2);
3559 e2->expr_type = old_type;
3560 gfc_free_expr (e2);
3561 return build_fold_addr_expr_loc (input_location, comp_se.expr);
3562 }
3563
3564
3565 /* Convert a typebound function reference from a class object. */
3566 static void
3567 conv_base_obj_fcn_val (gfc_se * se, tree base_object, gfc_expr * expr)
3568 {
3569 gfc_ref *ref;
3570 tree var;
3571
3572 if (TREE_CODE (base_object) != VAR_DECL)
3573 {
3574 var = gfc_create_var (TREE_TYPE (base_object), NULL);
3575 gfc_add_modify (&se->pre, var, base_object);
3576 }
3577 se->expr = gfc_class_vptr_get (base_object);
3578 se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
3579 ref = expr->ref;
3580 while (ref && ref->next)
3581 ref = ref->next;
3582 gcc_assert (ref && ref->type == REF_COMPONENT);
3583 if (ref->u.c.sym->attr.extension)
3584 conv_parent_component_references (se, ref);
3585 gfc_conv_component_ref (se, ref);
3586 se->expr = build_fold_addr_expr_loc (input_location, se->expr);
3587 }
3588
3589
3590 static void
3591 conv_function_val (gfc_se * se, gfc_symbol * sym, gfc_expr * expr)
3592 {
3593 tree tmp;
3594
3595 if (gfc_is_proc_ptr_comp (expr))
3596 tmp = get_proc_ptr_comp (expr);
3597 else if (sym->attr.dummy)
3598 {
3599 tmp = gfc_get_symbol_decl (sym);
3600 if (sym->attr.proc_pointer)
3601 tmp = build_fold_indirect_ref_loc (input_location,
3602 tmp);
3603 gcc_assert (TREE_CODE (TREE_TYPE (tmp)) == POINTER_TYPE
3604 && TREE_CODE (TREE_TYPE (TREE_TYPE (tmp))) == FUNCTION_TYPE);
3605 }
3606 else
3607 {
3608 if (!sym->backend_decl)
3609 sym->backend_decl = gfc_get_extern_function_decl (sym);
3610
3611 TREE_USED (sym->backend_decl) = 1;
3612
3613 tmp = sym->backend_decl;
3614
3615 if (sym->attr.cray_pointee)
3616 {
3617 /* TODO - make the cray pointee a pointer to a procedure,
3618 assign the pointer to it and use it for the call. This
3619 will do for now! */
3620 tmp = convert (build_pointer_type (TREE_TYPE (tmp)),
3621 gfc_get_symbol_decl (sym->cp_pointer));
3622 tmp = gfc_evaluate_now (tmp, &se->pre);
3623 }
3624
3625 if (!POINTER_TYPE_P (TREE_TYPE (tmp)))
3626 {
3627 gcc_assert (TREE_CODE (tmp) == FUNCTION_DECL);
3628 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
3629 }
3630 }
3631 se->expr = tmp;
3632 }
3633
3634
3635 /* Initialize MAPPING. */
3636
3637 void
3638 gfc_init_interface_mapping (gfc_interface_mapping * mapping)
3639 {
3640 mapping->syms = NULL;
3641 mapping->charlens = NULL;
3642 }
3643
3644
3645 /* Free all memory held by MAPPING (but not MAPPING itself). */
3646
3647 void
3648 gfc_free_interface_mapping (gfc_interface_mapping * mapping)
3649 {
3650 gfc_interface_sym_mapping *sym;
3651 gfc_interface_sym_mapping *nextsym;
3652 gfc_charlen *cl;
3653 gfc_charlen *nextcl;
3654
3655 for (sym = mapping->syms; sym; sym = nextsym)
3656 {
3657 nextsym = sym->next;
3658 sym->new_sym->n.sym->formal = NULL;
3659 gfc_free_symbol (sym->new_sym->n.sym);
3660 gfc_free_expr (sym->expr);
3661 free (sym->new_sym);
3662 free (sym);
3663 }
3664 for (cl = mapping->charlens; cl; cl = nextcl)
3665 {
3666 nextcl = cl->next;
3667 gfc_free_expr (cl->length);
3668 free (cl);
3669 }
3670 }
3671
3672
3673 /* Return a copy of gfc_charlen CL. Add the returned structure to
3674 MAPPING so that it will be freed by gfc_free_interface_mapping. */
3675
3676 static gfc_charlen *
3677 gfc_get_interface_mapping_charlen (gfc_interface_mapping * mapping,
3678 gfc_charlen * cl)
3679 {
3680 gfc_charlen *new_charlen;
3681
3682 new_charlen = gfc_get_charlen ();
3683 new_charlen->next = mapping->charlens;
3684 new_charlen->length = gfc_copy_expr (cl->length);
3685
3686 mapping->charlens = new_charlen;
3687 return new_charlen;
3688 }
3689
3690
3691 /* A subroutine of gfc_add_interface_mapping. Return a descriptorless
3692 array variable that can be used as the actual argument for dummy
3693 argument SYM. Add any initialization code to BLOCK. PACKED is as
3694 for gfc_get_nodesc_array_type and DATA points to the first element
3695 in the passed array. */
3696
3697 static tree
3698 gfc_get_interface_mapping_array (stmtblock_t * block, gfc_symbol * sym,
3699 gfc_packed packed, tree data)
3700 {
3701 tree type;
3702 tree var;
3703
3704 type = gfc_typenode_for_spec (&sym->ts);
3705 type = gfc_get_nodesc_array_type (type, sym->as, packed,
3706 !sym->attr.target && !sym->attr.pointer
3707 && !sym->attr.proc_pointer);
3708
3709 var = gfc_create_var (type, "ifm");
3710 gfc_add_modify (block, var, fold_convert (type, data));
3711
3712 return var;
3713 }
3714
3715
3716 /* A subroutine of gfc_add_interface_mapping. Set the stride, upper bounds
3717 and offset of descriptorless array type TYPE given that it has the same
3718 size as DESC. Add any set-up code to BLOCK. */
3719
3720 static void
3721 gfc_set_interface_mapping_bounds (stmtblock_t * block, tree type, tree desc)
3722 {
3723 int n;
3724 tree dim;
3725 tree offset;
3726 tree tmp;
3727
3728 offset = gfc_index_zero_node;
3729 for (n = 0; n < GFC_TYPE_ARRAY_RANK (type); n++)
3730 {
3731 dim = gfc_rank_cst[n];
3732 GFC_TYPE_ARRAY_STRIDE (type, n) = gfc_conv_array_stride (desc, n);
3733 if (GFC_TYPE_ARRAY_LBOUND (type, n) == NULL_TREE)
3734 {
3735 GFC_TYPE_ARRAY_LBOUND (type, n)
3736 = gfc_conv_descriptor_lbound_get (desc, dim);
3737 GFC_TYPE_ARRAY_UBOUND (type, n)
3738 = gfc_conv_descriptor_ubound_get (desc, dim);
3739 }
3740 else if (GFC_TYPE_ARRAY_UBOUND (type, n) == NULL_TREE)
3741 {
3742 tmp = fold_build2_loc (input_location, MINUS_EXPR,
3743 gfc_array_index_type,
3744 gfc_conv_descriptor_ubound_get (desc, dim),
3745 gfc_conv_descriptor_lbound_get (desc, dim));
3746 tmp = fold_build2_loc (input_location, PLUS_EXPR,
3747 gfc_array_index_type,
3748 GFC_TYPE_ARRAY_LBOUND (type, n), tmp);
3749 tmp = gfc_evaluate_now (tmp, block);
3750 GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
3751 }
3752 tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
3753 GFC_TYPE_ARRAY_LBOUND (type, n),
3754 GFC_TYPE_ARRAY_STRIDE (type, n));
3755 offset = fold_build2_loc (input_location, MINUS_EXPR,
3756 gfc_array_index_type, offset, tmp);
3757 }
3758 offset = gfc_evaluate_now (offset, block);
3759 GFC_TYPE_ARRAY_OFFSET (type) = offset;
3760 }
3761
3762
3763 /* Extend MAPPING so that it maps dummy argument SYM to the value stored
3764 in SE. The caller may still use se->expr and se->string_length after
3765 calling this function. */
3766
3767 void
3768 gfc_add_interface_mapping (gfc_interface_mapping * mapping,
3769 gfc_symbol * sym, gfc_se * se,
3770 gfc_expr *expr)
3771 {
3772 gfc_interface_sym_mapping *sm;
3773 tree desc;
3774 tree tmp;
3775 tree value;
3776 gfc_symbol *new_sym;
3777 gfc_symtree *root;
3778 gfc_symtree *new_symtree;
3779
3780 /* Create a new symbol to represent the actual argument. */
3781 new_sym = gfc_new_symbol (sym->name, NULL);
3782 new_sym->ts = sym->ts;
3783 new_sym->as = gfc_copy_array_spec (sym->as);
3784 new_sym->attr.referenced = 1;
3785 new_sym->attr.dimension = sym->attr.dimension;
3786 new_sym->attr.contiguous = sym->attr.contiguous;
3787 new_sym->attr.codimension = sym->attr.codimension;
3788 new_sym->attr.pointer = sym->attr.pointer;
3789 new_sym->attr.allocatable = sym->attr.allocatable;
3790 new_sym->attr.flavor = sym->attr.flavor;
3791 new_sym->attr.function = sym->attr.function;
3792
3793 /* Ensure that the interface is available and that
3794 descriptors are passed for array actual arguments. */
3795 if (sym->attr.flavor == FL_PROCEDURE)
3796 {
3797 new_sym->formal = expr->symtree->n.sym->formal;
3798 new_sym->attr.always_explicit
3799 = expr->symtree->n.sym->attr.always_explicit;
3800 }
3801
3802 /* Create a fake symtree for it. */
3803 root = NULL;
3804 new_symtree = gfc_new_symtree (&root, sym->name);
3805 new_symtree->n.sym = new_sym;
3806 gcc_assert (new_symtree == root);
3807
3808 /* Create a dummy->actual mapping. */
3809 sm = XCNEW (gfc_interface_sym_mapping);
3810 sm->next = mapping->syms;
3811 sm->old = sym;
3812 sm->new_sym = new_symtree;
3813 sm->expr = gfc_copy_expr (expr);
3814 mapping->syms = sm;
3815
3816 /* Stabilize the argument's value. */
3817 if (!sym->attr.function && se)
3818 se->expr = gfc_evaluate_now (se->expr, &se->pre);
3819
3820 if (sym->ts.type == BT_CHARACTER)
3821 {
3822 /* Create a copy of the dummy argument's length. */
3823 new_sym->ts.u.cl = gfc_get_interface_mapping_charlen (mapping, sym->ts.u.cl);
3824 sm->expr->ts.u.cl = new_sym->ts.u.cl;
3825
3826 /* If the length is specified as "*", record the length that
3827 the caller is passing. We should use the callee's length
3828 in all other cases. */
3829 if (!new_sym->ts.u.cl->length && se)
3830 {
3831 se->string_length = gfc_evaluate_now (se->string_length, &se->pre);
3832 new_sym->ts.u.cl->backend_decl = se->string_length;
3833 }
3834 }
3835
3836 if (!se)
3837 return;
3838
3839 /* Use the passed value as-is if the argument is a function. */
3840 if (sym->attr.flavor == FL_PROCEDURE)
3841 value = se->expr;
3842
3843 /* If the argument is either a string or a pointer to a string,
3844 convert it to a boundless character type. */
3845 else if (!sym->attr.dimension && sym->ts.type == BT_CHARACTER)
3846 {
3847 tmp = gfc_get_character_type_len (sym->ts.kind, NULL);
3848 tmp = build_pointer_type (tmp);
3849 if (sym->attr.pointer)
3850 value = build_fold_indirect_ref_loc (input_location,
3851 se->expr);
3852 else
3853 value = se->expr;
3854 value = fold_convert (tmp, value);
3855 }
3856
3857 /* If the argument is a scalar, a pointer to an array or an allocatable,
3858 dereference it. */
3859 else if (!sym->attr.dimension || sym->attr.pointer || sym->attr.allocatable)
3860 value = build_fold_indirect_ref_loc (input_location,
3861 se->expr);
3862
3863 /* For character(*), use the actual argument's descriptor. */
3864 else if (sym->ts.type == BT_CHARACTER && !new_sym->ts.u.cl->length)
3865 value = build_fold_indirect_ref_loc (input_location,
3866 se->expr);
3867
3868 /* If the argument is an array descriptor, use it to determine
3869 information about the actual argument's shape. */
3870 else if (POINTER_TYPE_P (TREE_TYPE (se->expr))
3871 && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (se->expr))))
3872 {
3873 /* Get the actual argument's descriptor. */
3874 desc = build_fold_indirect_ref_loc (input_location,
3875 se->expr);
3876
3877 /* Create the replacement variable. */
3878 tmp = gfc_conv_descriptor_data_get (desc);
3879 value = gfc_get_interface_mapping_array (&se->pre, sym,
3880 PACKED_NO, tmp);
3881
3882 /* Use DESC to work out the upper bounds, strides and offset. */
3883 gfc_set_interface_mapping_bounds (&se->pre, TREE_TYPE (value), desc);
3884 }
3885 else
3886 /* Otherwise we have a packed array. */
3887 value = gfc_get_interface_mapping_array (&se->pre, sym,
3888 PACKED_FULL, se->expr);
3889
3890 new_sym->backend_decl = value;
3891 }
3892
3893
3894 /* Called once all dummy argument mappings have been added to MAPPING,
3895 but before the mapping is used to evaluate expressions. Pre-evaluate
3896 the length of each argument, adding any initialization code to PRE and
3897 any finalization code to POST. */
3898
3899 void
3900 gfc_finish_interface_mapping (gfc_interface_mapping * mapping,
3901 stmtblock_t * pre, stmtblock_t * post)
3902 {
3903 gfc_interface_sym_mapping *sym;
3904 gfc_expr *expr;
3905 gfc_se se;
3906
3907 for (sym = mapping->syms; sym; sym = sym->next)
3908 if (sym->new_sym->n.sym->ts.type == BT_CHARACTER
3909 && !sym->new_sym->n.sym->ts.u.cl->backend_decl)
3910 {
3911 expr = sym->new_sym->n.sym->ts.u.cl->length;
3912 gfc_apply_interface_mapping_to_expr (mapping, expr);
3913 gfc_init_se (&se, NULL);
3914 gfc_conv_expr (&se, expr);
3915 se.expr = fold_convert (gfc_charlen_type_node, se.expr);
3916 se.expr = gfc_evaluate_now (se.expr, &se.pre);
3917 gfc_add_block_to_block (pre, &se.pre);
3918 gfc_add_block_to_block (post, &se.post);
3919
3920 sym->new_sym->n.sym->ts.u.cl->backend_decl = se.expr;
3921 }
3922 }
3923
3924
3925 /* Like gfc_apply_interface_mapping_to_expr, but applied to
3926 constructor C. */
3927
3928 static void
3929 gfc_apply_interface_mapping_to_cons (gfc_interface_mapping * mapping,
3930 gfc_constructor_base base)
3931 {
3932 gfc_constructor *c;
3933 for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
3934 {
3935 gfc_apply_interface_mapping_to_expr (mapping, c->expr);
3936 if (c->iterator)
3937 {
3938 gfc_apply_interface_mapping_to_expr (mapping, c->iterator->start);
3939 gfc_apply_interface_mapping_to_expr (mapping, c->iterator->end);
3940 gfc_apply_interface_mapping_to_expr (mapping, c->iterator->step);
3941 }
3942 }
3943 }
3944
3945
3946 /* Like gfc_apply_interface_mapping_to_expr, but applied to
3947 reference REF. */
3948
3949 static void
3950 gfc_apply_interface_mapping_to_ref (gfc_interface_mapping * mapping,
3951 gfc_ref * ref)
3952 {
3953 int n;
3954
3955 for (; ref; ref = ref->next)
3956 switch (ref->type)
3957 {
3958 case REF_ARRAY:
3959 for (n = 0; n < ref->u.ar.dimen; n++)
3960 {
3961 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.start[n]);
3962 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.end[n]);
3963 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.stride[n]);
3964 }
3965 break;
3966
3967 case REF_COMPONENT:
3968 break;
3969
3970 case REF_SUBSTRING:
3971 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ss.start);
3972 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ss.end);
3973 break;
3974 }
3975 }
3976
3977
3978 /* Convert intrinsic function calls into result expressions. */
3979
3980 static bool
3981 gfc_map_intrinsic_function (gfc_expr *expr, gfc_interface_mapping *mapping)
3982 {
3983 gfc_symbol *sym;
3984 gfc_expr *new_expr;
3985 gfc_expr *arg1;
3986 gfc_expr *arg2;
3987 int d, dup;
3988
3989 arg1 = expr->value.function.actual->expr;
3990 if (expr->value.function.actual->next)
3991 arg2 = expr->value.function.actual->next->expr;
3992 else
3993 arg2 = NULL;
3994
3995 sym = arg1->symtree->n.sym;
3996
3997 if (sym->attr.dummy)
3998 return false;
3999
4000 new_expr = NULL;
4001
4002 switch (expr->value.function.isym->id)
4003 {
4004 case GFC_ISYM_LEN:
4005 /* TODO figure out why this condition is necessary. */
4006 if (sym->attr.function
4007 && (arg1->ts.u.cl->length == NULL
4008 || (arg1->ts.u.cl->length->expr_type != EXPR_CONSTANT
4009 && arg1->ts.u.cl->length->expr_type != EXPR_VARIABLE)))
4010 return false;
4011
4012 new_expr = gfc_copy_expr (arg1->ts.u.cl->length);
4013 break;
4014
4015 case GFC_ISYM_SIZE:
4016 if (!sym->as || sym->as->rank == 0)
4017 return false;
4018
4019 if (arg2 && arg2->expr_type == EXPR_CONSTANT)
4020 {
4021 dup = mpz_get_si (arg2->value.integer);
4022 d = dup - 1;
4023 }
4024 else
4025 {
4026 dup = sym->as->rank;
4027 d = 0;
4028 }
4029
4030 for (; d < dup; d++)
4031 {
4032 gfc_expr *tmp;
4033
4034 if (!sym->as->upper[d] || !sym->as->lower[d])
4035 {
4036 gfc_free_expr (new_expr);
4037 return false;
4038 }
4039
4040 tmp = gfc_add (gfc_copy_expr (sym->as->upper[d]),
4041 gfc_get_int_expr (gfc_default_integer_kind,
4042 NULL, 1));
4043 tmp = gfc_subtract (tmp, gfc_copy_expr (sym->as->lower[d]));
4044 if (new_expr)
4045 new_expr = gfc_multiply (new_expr, tmp);
4046 else
4047 new_expr = tmp;
4048 }
4049 break;
4050
4051 case GFC_ISYM_LBOUND:
4052 case GFC_ISYM_UBOUND:
4053 /* TODO These implementations of lbound and ubound do not limit if
4054 the size < 0, according to F95's 13.14.53 and 13.14.113. */
4055
4056 if (!sym->as || sym->as->rank == 0)
4057 return false;
4058
4059 if (arg2 && arg2->expr_type == EXPR_CONSTANT)
4060 d = mpz_get_si (arg2->value.integer) - 1;
4061 else
4062 /* TODO: If the need arises, this could produce an array of
4063 ubound/lbounds. */
4064 gcc_unreachable ();
4065
4066 if (expr->value.function.isym->id == GFC_ISYM_LBOUND)
4067 {
4068 if (sym->as->lower[d])
4069 new_expr = gfc_copy_expr (sym->as->lower[d]);
4070 }
4071 else
4072 {
4073 if (sym->as->upper[d])
4074 new_expr = gfc_copy_expr (sym->as->upper[d]);
4075 }
4076 break;
4077
4078 default:
4079 break;
4080 }
4081
4082 gfc_apply_interface_mapping_to_expr (mapping, new_expr);
4083 if (!new_expr)
4084 return false;
4085
4086 gfc_replace_expr (expr, new_expr);
4087 return true;
4088 }
4089
4090
4091 static void
4092 gfc_map_fcn_formal_to_actual (gfc_expr *expr, gfc_expr *map_expr,
4093 gfc_interface_mapping * mapping)
4094 {
4095 gfc_formal_arglist *f;
4096 gfc_actual_arglist *actual;
4097
4098 actual = expr->value.function.actual;
4099 f = gfc_sym_get_dummy_args (map_expr->symtree->n.sym);
4100
4101 for (; f && actual; f = f->next, actual = actual->next)
4102 {
4103 if (!actual->expr)
4104 continue;
4105
4106 gfc_add_interface_mapping (mapping, f->sym, NULL, actual->expr);
4107 }
4108
4109 if (map_expr->symtree->n.sym->attr.dimension)
4110 {
4111 int d;
4112 gfc_array_spec *as;
4113
4114 as = gfc_copy_array_spec (map_expr->symtree->n.sym->as);
4115
4116 for (d = 0; d < as->rank; d++)
4117 {
4118 gfc_apply_interface_mapping_to_expr (mapping, as->lower[d]);
4119 gfc_apply_interface_mapping_to_expr (mapping, as->upper[d]);
4120 }
4121
4122 expr->value.function.esym->as = as;
4123 }
4124
4125 if (map_expr->symtree->n.sym->ts.type == BT_CHARACTER)
4126 {
4127 expr->value.function.esym->ts.u.cl->length
4128 = gfc_copy_expr (map_expr->symtree->n.sym->ts.u.cl->length);
4129
4130 gfc_apply_interface_mapping_to_expr (mapping,
4131 expr->value.function.esym->ts.u.cl->length);
4132 }
4133 }
4134
4135
4136 /* EXPR is a copy of an expression that appeared in the interface
4137 associated with MAPPING. Walk it recursively looking for references to
4138 dummy arguments that MAPPING maps to actual arguments. Replace each such
4139 reference with a reference to the associated actual argument. */
4140
4141 static void
4142 gfc_apply_interface_mapping_to_expr (gfc_interface_mapping * mapping,
4143 gfc_expr * expr)
4144 {
4145 gfc_interface_sym_mapping *sym;
4146 gfc_actual_arglist *actual;
4147
4148 if (!expr)
4149 return;
4150
4151 /* Copying an expression does not copy its length, so do that here. */
4152 if (expr->ts.type == BT_CHARACTER && expr->ts.u.cl)
4153 {
4154 expr->ts.u.cl = gfc_get_interface_mapping_charlen (mapping, expr->ts.u.cl);
4155 gfc_apply_interface_mapping_to_expr (mapping, expr->ts.u.cl->length);
4156 }
4157
4158 /* Apply the mapping to any references. */
4159 gfc_apply_interface_mapping_to_ref (mapping, expr->ref);
4160
4161 /* ...and to the expression's symbol, if it has one. */
4162 /* TODO Find out why the condition on expr->symtree had to be moved into
4163 the loop rather than being outside it, as originally. */
4164 for (sym = mapping->syms; sym; sym = sym->next)
4165 if (expr->symtree && sym->old == expr->symtree->n.sym)
4166 {
4167 if (sym->new_sym->n.sym->backend_decl)
4168 expr->symtree = sym->new_sym;
4169 else if (sym->expr)
4170 gfc_replace_expr (expr, gfc_copy_expr (sym->expr));
4171 }
4172
4173 /* ...and to subexpressions in expr->value. */
4174 switch (expr->expr_type)
4175 {
4176 case EXPR_VARIABLE:
4177 case EXPR_CONSTANT:
4178 case EXPR_NULL:
4179 case EXPR_SUBSTRING:
4180 break;
4181
4182 case EXPR_OP:
4183 gfc_apply_interface_mapping_to_expr (mapping, expr->value.op.op1);
4184 gfc_apply_interface_mapping_to_expr (mapping, expr->value.op.op2);
4185 break;
4186
4187 case EXPR_FUNCTION:
4188 for (actual = expr->value.function.actual; actual; actual = actual->next)
4189 gfc_apply_interface_mapping_to_expr (mapping, actual->expr);
4190
4191 if (expr->value.function.esym == NULL
4192 && expr->value.function.isym != NULL
4193 && expr->value.function.actual->expr->symtree
4194 && gfc_map_intrinsic_function (expr, mapping))
4195 break;
4196
4197 for (sym = mapping->syms; sym; sym = sym->next)
4198 if (sym->old == expr->value.function.esym)
4199 {
4200 expr->value.function.esym = sym->new_sym->n.sym;
4201 gfc_map_fcn_formal_to_actual (expr, sym->expr, mapping);
4202 expr->value.function.esym->result = sym->new_sym->n.sym;
4203 }
4204 break;
4205
4206 case EXPR_ARRAY:
4207 case EXPR_STRUCTURE:
4208 gfc_apply_interface_mapping_to_cons (mapping, expr->value.constructor);
4209 break;
4210
4211 case EXPR_COMPCALL:
4212 case EXPR_PPC:
4213 gcc_unreachable ();
4214 break;
4215 }
4216
4217 return;
4218 }
4219
4220
4221 /* Evaluate interface expression EXPR using MAPPING. Store the result
4222 in SE. */
4223
4224 void
4225 gfc_apply_interface_mapping (gfc_interface_mapping * mapping,
4226 gfc_se * se, gfc_expr * expr)
4227 {
4228 expr = gfc_copy_expr (expr);
4229 gfc_apply_interface_mapping_to_expr (mapping, expr);
4230 gfc_conv_expr (se, expr);
4231 se->expr = gfc_evaluate_now (se->expr, &se->pre);
4232 gfc_free_expr (expr);
4233 }
4234
4235
4236 /* Returns a reference to a temporary array into which a component of
4237 an actual argument derived type array is copied and then returned
4238 after the function call. */
4239 void
4240 gfc_conv_subref_array_arg (gfc_se * parmse, gfc_expr * expr, int g77,
4241 sym_intent intent, bool formal_ptr)
4242 {
4243 gfc_se lse;
4244 gfc_se rse;
4245 gfc_ss *lss;
4246 gfc_ss *rss;
4247 gfc_loopinfo loop;
4248 gfc_loopinfo loop2;
4249 gfc_array_info *info;
4250 tree offset;
4251 tree tmp_index;
4252 tree tmp;
4253 tree base_type;
4254 tree size;
4255 stmtblock_t body;
4256 int n;
4257 int dimen;
4258
4259 gfc_init_se (&lse, NULL);
4260 gfc_init_se (&rse, NULL);
4261
4262 /* Walk the argument expression. */
4263 rss = gfc_walk_expr (expr);
4264
4265 gcc_assert (rss != gfc_ss_terminator);
4266
4267 /* Initialize the scalarizer. */
4268 gfc_init_loopinfo (&loop);
4269 gfc_add_ss_to_loop (&loop, rss);
4270
4271 /* Calculate the bounds of the scalarization. */
4272 gfc_conv_ss_startstride (&loop);
4273
4274 /* Build an ss for the temporary. */
4275 if (expr->ts.type == BT_CHARACTER && !expr->ts.u.cl->backend_decl)
4276 gfc_conv_string_length (expr->ts.u.cl, expr, &parmse->pre);
4277
4278 base_type = gfc_typenode_for_spec (&expr->ts);
4279 if (GFC_ARRAY_TYPE_P (base_type)
4280 || GFC_DESCRIPTOR_TYPE_P (base_type))
4281 base_type = gfc_get_element_type (base_type);
4282
4283 if (expr->ts.type == BT_CLASS)
4284 base_type = gfc_typenode_for_spec (&CLASS_DATA (expr)->ts);
4285
4286 loop.temp_ss = gfc_get_temp_ss (base_type, ((expr->ts.type == BT_CHARACTER)
4287 ? expr->ts.u.cl->backend_decl
4288 : NULL),
4289 loop.dimen);
4290
4291 parmse->string_length = loop.temp_ss->info->string_length;
4292
4293 /* Associate the SS with the loop. */
4294 gfc_add_ss_to_loop (&loop, loop.temp_ss);
4295
4296 /* Setup the scalarizing loops. */
4297 gfc_conv_loop_setup (&loop, &expr->where);
4298
4299 /* Pass the temporary descriptor back to the caller. */
4300 info = &loop.temp_ss->info->data.array;
4301 parmse->expr = info->descriptor;
4302
4303 /* Setup the gfc_se structures. */
4304 gfc_copy_loopinfo_to_se (&lse, &loop);
4305 gfc_copy_loopinfo_to_se (&rse, &loop);
4306
4307 rse.ss = rss;
4308 lse.ss = loop.temp_ss;
4309 gfc_mark_ss_chain_used (rss, 1);
4310 gfc_mark_ss_chain_used (loop.temp_ss, 1);
4311
4312 /* Start the scalarized loop body. */
4313 gfc_start_scalarized_body (&loop, &body);
4314
4315 /* Translate the expression. */
4316 gfc_conv_expr (&rse, expr);
4317
4318 /* Reset the offset for the function call since the loop
4319 is zero based on the data pointer. Note that the temp
4320 comes first in the loop chain since it is added second. */
4321 if (gfc_is_alloc_class_array_function (expr))
4322 {
4323 tmp = loop.ss->loop_chain->info->data.array.descriptor;
4324 gfc_conv_descriptor_offset_set (&loop.pre, tmp,
4325 gfc_index_zero_node);
4326 }
4327
4328 gfc_conv_tmp_array_ref (&lse);
4329
4330 if (intent != INTENT_OUT)
4331 {
4332 tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts, true, false, true);
4333 gfc_add_expr_to_block (&body, tmp);
4334 gcc_assert (rse.ss == gfc_ss_terminator);
4335 gfc_trans_scalarizing_loops (&loop, &body);
4336 }
4337 else
4338 {
4339 /* Make sure that the temporary declaration survives by merging
4340 all the loop declarations into the current context. */
4341 for (n = 0; n < loop.dimen; n++)
4342 {
4343 gfc_merge_block_scope (&body);
4344 body = loop.code[loop.order[n]];
4345 }
4346 gfc_merge_block_scope (&body);
4347 }
4348
4349 /* Add the post block after the second loop, so that any
4350 freeing of allocated memory is done at the right time. */
4351 gfc_add_block_to_block (&parmse->pre, &loop.pre);
4352
4353 /**********Copy the temporary back again.*********/
4354
4355 gfc_init_se (&lse, NULL);
4356 gfc_init_se (&rse, NULL);
4357
4358 /* Walk the argument expression. */
4359 lss = gfc_walk_expr (expr);
4360 rse.ss = loop.temp_ss;
4361 lse.ss = lss;
4362
4363 /* Initialize the scalarizer. */
4364 gfc_init_loopinfo (&loop2);
4365 gfc_add_ss_to_loop (&loop2, lss);
4366
4367 dimen = rse.ss->dimen;
4368
4369 /* Skip the write-out loop for this case. */
4370 if (gfc_is_alloc_class_array_function (expr))
4371 goto class_array_fcn;
4372
4373 /* Calculate the bounds of the scalarization. */
4374 gfc_conv_ss_startstride (&loop2);
4375
4376 /* Setup the scalarizing loops. */
4377 gfc_conv_loop_setup (&loop2, &expr->where);
4378
4379 gfc_copy_loopinfo_to_se (&lse, &loop2);
4380 gfc_copy_loopinfo_to_se (&rse, &loop2);
4381
4382 gfc_mark_ss_chain_used (lss, 1);
4383 gfc_mark_ss_chain_used (loop.temp_ss, 1);
4384
4385 /* Declare the variable to hold the temporary offset and start the
4386 scalarized loop body. */
4387 offset = gfc_create_var (gfc_array_index_type, NULL);
4388 gfc_start_scalarized_body (&loop2, &body);
4389
4390 /* Build the offsets for the temporary from the loop variables. The
4391 temporary array has lbounds of zero and strides of one in all
4392 dimensions, so this is very simple. The offset is only computed
4393 outside the innermost loop, so the overall transfer could be
4394 optimized further. */
4395 info = &rse.ss->info->data.array;
4396
4397 tmp_index = gfc_index_zero_node;
4398 for (n = dimen - 1; n > 0; n--)
4399 {
4400 tree tmp_str;
4401 tmp = rse.loop->loopvar[n];
4402 tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
4403 tmp, rse.loop->from[n]);
4404 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
4405 tmp, tmp_index);
4406
4407 tmp_str = fold_build2_loc (input_location, MINUS_EXPR,
4408 gfc_array_index_type,
4409 rse.loop->to[n-1], rse.loop->from[n-1]);
4410 tmp_str = fold_build2_loc (input_location, PLUS_EXPR,
4411 gfc_array_index_type,
4412 tmp_str, gfc_index_one_node);
4413
4414 tmp_index = fold_build2_loc (input_location, MULT_EXPR,
4415 gfc_array_index_type, tmp, tmp_str);
4416 }
4417
4418 tmp_index = fold_build2_loc (input_location, MINUS_EXPR,
4419 gfc_array_index_type,
4420 tmp_index, rse.loop->from[0]);
4421 gfc_add_modify (&rse.loop->code[0], offset, tmp_index);
4422
4423 tmp_index = fold_build2_loc (input_location, PLUS_EXPR,
4424 gfc_array_index_type,
4425 rse.loop->loopvar[0], offset);
4426
4427 /* Now use the offset for the reference. */
4428 tmp = build_fold_indirect_ref_loc (input_location,
4429 info->data);
4430 rse.expr = gfc_build_array_ref (tmp, tmp_index, NULL);
4431
4432 if (expr->ts.type == BT_CHARACTER)
4433 rse.string_length = expr->ts.u.cl->backend_decl;
4434
4435 gfc_conv_expr (&lse, expr);
4436
4437 gcc_assert (lse.ss == gfc_ss_terminator);
4438
4439 tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts, false, false, true);
4440 gfc_add_expr_to_block (&body, tmp);
4441
4442 /* Generate the copying loops. */
4443 gfc_trans_scalarizing_loops (&loop2, &body);
4444
4445 /* Wrap the whole thing up by adding the second loop to the post-block
4446 and following it by the post-block of the first loop. In this way,
4447 if the temporary needs freeing, it is done after use! */
4448 if (intent != INTENT_IN)
4449 {
4450 gfc_add_block_to_block (&parmse->post, &loop2.pre);
4451 gfc_add_block_to_block (&parmse->post, &loop2.post);
4452 }
4453
4454 class_array_fcn:
4455
4456 gfc_add_block_to_block (&parmse->post, &loop.post);
4457
4458 gfc_cleanup_loop (&loop);
4459 gfc_cleanup_loop (&loop2);
4460
4461 /* Pass the string length to the argument expression. */
4462 if (expr->ts.type == BT_CHARACTER)
4463 parmse->string_length = expr->ts.u.cl->backend_decl;
4464
4465 /* Determine the offset for pointer formal arguments and set the
4466 lbounds to one. */
4467 if (formal_ptr)
4468 {
4469 size = gfc_index_one_node;
4470 offset = gfc_index_zero_node;
4471 for (n = 0; n < dimen; n++)
4472 {
4473 tmp = gfc_conv_descriptor_ubound_get (parmse->expr,
4474 gfc_rank_cst[n]);
4475 tmp = fold_build2_loc (input_location, PLUS_EXPR,
4476 gfc_array_index_type, tmp,
4477 gfc_index_one_node);
4478 gfc_conv_descriptor_ubound_set (&parmse->pre,
4479 parmse->expr,
4480 gfc_rank_cst[n],
4481 tmp);
4482 gfc_conv_descriptor_lbound_set (&parmse->pre,
4483 parmse->expr,
4484 gfc_rank_cst[n],
4485 gfc_index_one_node);
4486 size = gfc_evaluate_now (size, &parmse->pre);
4487 offset = fold_build2_loc (input_location, MINUS_EXPR,
4488 gfc_array_index_type,
4489 offset, size);
4490 offset = gfc_evaluate_now (offset, &parmse->pre);
4491 tmp = fold_build2_loc (input_location, MINUS_EXPR,
4492 gfc_array_index_type,
4493 rse.loop->to[n], rse.loop->from[n]);
4494 tmp = fold_build2_loc (input_location, PLUS_EXPR,
4495 gfc_array_index_type,
4496 tmp, gfc_index_one_node);
4497 size = fold_build2_loc (input_location, MULT_EXPR,
4498 gfc_array_index_type, size, tmp);
4499 }
4500
4501 gfc_conv_descriptor_offset_set (&parmse->pre, parmse->expr,
4502 offset);
4503 }
4504
4505 /* We want either the address for the data or the address of the descriptor,
4506 depending on the mode of passing array arguments. */
4507 if (g77)
4508 parmse->expr = gfc_conv_descriptor_data_get (parmse->expr);
4509 else
4510 parmse->expr = gfc_build_addr_expr (NULL_TREE, parmse->expr);
4511
4512 return;
4513 }
4514
4515
4516 /* Generate the code for argument list functions. */
4517
4518 static void
4519 conv_arglist_function (gfc_se *se, gfc_expr *expr, const char *name)
4520 {
4521 /* Pass by value for g77 %VAL(arg), pass the address
4522 indirectly for %LOC, else by reference. Thus %REF
4523 is a "do-nothing" and %LOC is the same as an F95
4524 pointer. */
4525 if (strncmp (name, "%VAL", 4) == 0)
4526 gfc_conv_expr (se, expr);
4527 else if (strncmp (name, "%LOC", 4) == 0)
4528 {
4529 gfc_conv_expr_reference (se, expr);
4530 se->expr = gfc_build_addr_expr (NULL, se->expr);
4531 }
4532 else if (strncmp (name, "%REF", 4) == 0)
4533 gfc_conv_expr_reference (se, expr);
4534 else
4535 gfc_error ("Unknown argument list function at %L", &expr->where);
4536 }
4537
4538
4539 /* Generate code for a procedure call. Note can return se->post != NULL.
4540 If se->direct_byref is set then se->expr contains the return parameter.
4541 Return nonzero, if the call has alternate specifiers.
4542 'expr' is only needed for procedure pointer components. */
4543
4544 int
4545 gfc_conv_procedure_call (gfc_se * se, gfc_symbol * sym,
4546 gfc_actual_arglist * args, gfc_expr * expr,
4547 vec<tree, va_gc> *append_args)
4548 {
4549 gfc_interface_mapping mapping;
4550 vec<tree, va_gc> *arglist;
4551 vec<tree, va_gc> *retargs;
4552 tree tmp;
4553 tree fntype;
4554 gfc_se parmse;
4555 gfc_array_info *info;
4556 int byref;
4557 int parm_kind;
4558 tree type;
4559 tree var;
4560 tree len;
4561 tree base_object;
4562 vec<tree, va_gc> *stringargs;
4563 vec<tree, va_gc> *optionalargs;
4564 tree result = NULL;
4565 gfc_formal_arglist *formal;
4566 gfc_actual_arglist *arg;
4567 int has_alternate_specifier = 0;
4568 bool need_interface_mapping;
4569 bool callee_alloc;
4570 gfc_typespec ts;
4571 gfc_charlen cl;
4572 gfc_expr *e;
4573 gfc_symbol *fsym;
4574 stmtblock_t post;
4575 enum {MISSING = 0, ELEMENTAL, SCALAR, SCALAR_POINTER, ARRAY};
4576 gfc_component *comp = NULL;
4577 int arglen;
4578
4579 arglist = NULL;
4580 retargs = NULL;
4581 stringargs = NULL;
4582 optionalargs = NULL;
4583 var = NULL_TREE;
4584 len = NULL_TREE;
4585 gfc_clear_ts (&ts);
4586
4587 comp = gfc_get_proc_ptr_comp (expr);
4588
4589 if (se->ss != NULL)
4590 {
4591 if (!sym->attr.elemental && !(comp && comp->attr.elemental))
4592 {
4593 gcc_assert (se->ss->info->type == GFC_SS_FUNCTION);
4594 if (se->ss->info->useflags)
4595 {
4596 gcc_assert ((!comp && gfc_return_by_reference (sym)
4597 && sym->result->attr.dimension)
4598 || (comp && comp->attr.dimension)
4599 || gfc_is_alloc_class_array_function (expr));
4600 gcc_assert (se->loop != NULL);
4601 /* Access the previously obtained result. */
4602 gfc_conv_tmp_array_ref (se);
4603 return 0;
4604 }
4605 }
4606 info = &se->ss->info->data.array;
4607 }
4608 else
4609 info = NULL;
4610
4611 gfc_init_block (&post);
4612 gfc_init_interface_mapping (&mapping);
4613 if (!comp)
4614 {
4615 formal = gfc_sym_get_dummy_args (sym);
4616 need_interface_mapping = sym->attr.dimension ||
4617 (sym->ts.type == BT_CHARACTER
4618 && sym->ts.u.cl->length
4619 && sym->ts.u.cl->length->expr_type
4620 != EXPR_CONSTANT);
4621 }
4622 else
4623 {
4624 formal = comp->ts.interface ? comp->ts.interface->formal : NULL;
4625 need_interface_mapping = comp->attr.dimension ||
4626 (comp->ts.type == BT_CHARACTER
4627 && comp->ts.u.cl->length
4628 && comp->ts.u.cl->length->expr_type
4629 != EXPR_CONSTANT);
4630 }
4631
4632 base_object = NULL_TREE;
4633
4634 /* Evaluate the arguments. */
4635 for (arg = args; arg != NULL;
4636 arg = arg->next, formal = formal ? formal->next : NULL)
4637 {
4638 e = arg->expr;
4639 fsym = formal ? formal->sym : NULL;
4640 parm_kind = MISSING;
4641
4642 /* Class array expressions are sometimes coming completely unadorned
4643 with either arrayspec or _data component. Correct that here.
4644 OOP-TODO: Move this to the frontend. */
4645 if (e && e->expr_type == EXPR_VARIABLE
4646 && !e->ref
4647 && e->ts.type == BT_CLASS
4648 && (CLASS_DATA (e)->attr.codimension
4649 || CLASS_DATA (e)->attr.dimension))
4650 {
4651 gfc_typespec temp_ts = e->ts;
4652 gfc_add_class_array_ref (e);
4653 e->ts = temp_ts;
4654 }
4655
4656 if (e == NULL)
4657 {
4658 if (se->ignore_optional)
4659 {
4660 /* Some intrinsics have already been resolved to the correct
4661 parameters. */
4662 continue;
4663 }
4664 else if (arg->label)
4665 {
4666 has_alternate_specifier = 1;
4667 continue;
4668 }
4669 else
4670 {
4671 gfc_init_se (&parmse, NULL);
4672
4673 /* For scalar arguments with VALUE attribute which are passed by
4674 value, pass "0" and a hidden argument gives the optional
4675 status. */
4676 if (fsym && fsym->attr.optional && fsym->attr.value
4677 && !fsym->attr.dimension && fsym->ts.type != BT_CHARACTER
4678 && fsym->ts.type != BT_CLASS && fsym->ts.type != BT_DERIVED)
4679 {
4680 parmse.expr = fold_convert (gfc_sym_type (fsym),
4681 integer_zero_node);
4682 vec_safe_push (optionalargs, boolean_false_node);
4683 }
4684 else
4685 {
4686 /* Pass a NULL pointer for an absent arg. */
4687 parmse.expr = null_pointer_node;
4688 if (arg->missing_arg_type == BT_CHARACTER)
4689 parmse.string_length = build_int_cst (gfc_charlen_type_node,
4690 0);
4691 }
4692 }
4693 }
4694 else if (arg->expr->expr_type == EXPR_NULL
4695 && fsym && !fsym->attr.pointer
4696 && (fsym->ts.type != BT_CLASS
4697 || !CLASS_DATA (fsym)->attr.class_pointer))
4698 {
4699 /* Pass a NULL pointer to denote an absent arg. */
4700 gcc_assert (fsym->attr.optional && !fsym->attr.allocatable
4701 && (fsym->ts.type != BT_CLASS
4702 || !CLASS_DATA (fsym)->attr.allocatable));
4703 gfc_init_se (&parmse, NULL);
4704 parmse.expr = null_pointer_node;
4705 if (arg->missing_arg_type == BT_CHARACTER)
4706 parmse.string_length = build_int_cst (gfc_charlen_type_node, 0);
4707 }
4708 else if (fsym && fsym->ts.type == BT_CLASS
4709 && e->ts.type == BT_DERIVED)
4710 {
4711 /* The derived type needs to be converted to a temporary
4712 CLASS object. */
4713 gfc_init_se (&parmse, se);
4714 gfc_conv_derived_to_class (&parmse, e, fsym->ts, NULL,
4715 fsym->attr.optional
4716 && e->expr_type == EXPR_VARIABLE
4717 && e->symtree->n.sym->attr.optional,
4718 CLASS_DATA (fsym)->attr.class_pointer
4719 || CLASS_DATA (fsym)->attr.allocatable);
4720 }
4721 else if (UNLIMITED_POLY (fsym) && e->ts.type != BT_CLASS)
4722 {
4723 /* The intrinsic type needs to be converted to a temporary
4724 CLASS object for the unlimited polymorphic formal. */
4725 gfc_init_se (&parmse, se);
4726 gfc_conv_intrinsic_to_class (&parmse, e, fsym->ts);
4727 }
4728 else if (se->ss && se->ss->info->useflags)
4729 {
4730 gfc_ss *ss;
4731
4732 ss = se->ss;
4733
4734 /* An elemental function inside a scalarized loop. */
4735 gfc_init_se (&parmse, se);
4736 parm_kind = ELEMENTAL;
4737
4738 /* For all value functions or polymorphic scalar non-pointer
4739 non-allocatable variables use the expression in e directly. This
4740 ensures, that initializers of polymorphic entities are correctly
4741 copied. */
4742 if (fsym && (fsym->attr.value
4743 || (e->expr_type == EXPR_VARIABLE
4744 && fsym->ts.type == BT_DERIVED
4745 && e->ts.type == BT_DERIVED
4746 && !e->ts.u.derived->attr.dimension
4747 && !e->rank
4748 && (!e->symtree
4749 || (!e->symtree->n.sym->attr.allocatable
4750 && !e->symtree->n.sym->attr.pointer)))))
4751 gfc_conv_expr (&parmse, e);
4752 else
4753 gfc_conv_expr_reference (&parmse, e);
4754
4755 if (e->ts.type == BT_CHARACTER && !e->rank
4756 && e->expr_type == EXPR_FUNCTION)
4757 parmse.expr = build_fold_indirect_ref_loc (input_location,
4758 parmse.expr);
4759
4760 if (fsym && fsym->ts.type == BT_DERIVED
4761 && gfc_is_class_container_ref (e))
4762 {
4763 parmse.expr = gfc_class_data_get (parmse.expr);
4764
4765 if (fsym->attr.optional && e->expr_type == EXPR_VARIABLE
4766 && e->symtree->n.sym->attr.optional)
4767 {
4768 tree cond = gfc_conv_expr_present (e->symtree->n.sym);
4769 parmse.expr = build3_loc (input_location, COND_EXPR,
4770 TREE_TYPE (parmse.expr),
4771 cond, parmse.expr,
4772 fold_convert (TREE_TYPE (parmse.expr),
4773 null_pointer_node));
4774 }
4775 }
4776
4777 /* If we are passing an absent array as optional dummy to an
4778 elemental procedure, make sure that we pass NULL when the data
4779 pointer is NULL. We need this extra conditional because of
4780 scalarization which passes arrays elements to the procedure,
4781 ignoring the fact that the array can be absent/unallocated/... */
4782 if (ss->info->can_be_null_ref && ss->info->type != GFC_SS_REFERENCE)
4783 {
4784 tree descriptor_data;
4785
4786 descriptor_data = ss->info->data.array.data;
4787 tmp = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
4788 descriptor_data,
4789 fold_convert (TREE_TYPE (descriptor_data),
4790 null_pointer_node));
4791 parmse.expr
4792 = fold_build3_loc (input_location, COND_EXPR,
4793 TREE_TYPE (parmse.expr),
4794 gfc_unlikely (tmp, PRED_FORTRAN_ABSENT_DUMMY),
4795 fold_convert (TREE_TYPE (parmse.expr),
4796 null_pointer_node),
4797 parmse.expr);
4798 }
4799
4800 /* The scalarizer does not repackage the reference to a class
4801 array - instead it returns a pointer to the data element. */
4802 if (fsym && fsym->ts.type == BT_CLASS && e->ts.type == BT_CLASS)
4803 gfc_conv_class_to_class (&parmse, e, fsym->ts, true,
4804 fsym->attr.intent != INTENT_IN
4805 && (CLASS_DATA (fsym)->attr.class_pointer
4806 || CLASS_DATA (fsym)->attr.allocatable),
4807 fsym->attr.optional
4808 && e->expr_type == EXPR_VARIABLE
4809 && e->symtree->n.sym->attr.optional,
4810 CLASS_DATA (fsym)->attr.class_pointer
4811 || CLASS_DATA (fsym)->attr.allocatable);
4812 }
4813 else
4814 {
4815 bool scalar;
4816 gfc_ss *argss;
4817
4818 gfc_init_se (&parmse, NULL);
4819
4820 /* Check whether the expression is a scalar or not; we cannot use
4821 e->rank as it can be nonzero for functions arguments. */
4822 argss = gfc_walk_expr (e);
4823 scalar = argss == gfc_ss_terminator;
4824 if (!scalar)
4825 gfc_free_ss_chain (argss);
4826
4827 /* Special handling for passing scalar polymorphic coarrays;
4828 otherwise one passes "class->_data.data" instead of "&class". */
4829 if (e->rank == 0 && e->ts.type == BT_CLASS
4830 && fsym && fsym->ts.type == BT_CLASS
4831 && CLASS_DATA (fsym)->attr.codimension
4832 && !CLASS_DATA (fsym)->attr.dimension)
4833 {
4834 gfc_add_class_array_ref (e);
4835 parmse.want_coarray = 1;
4836 scalar = false;
4837 }
4838
4839 /* A scalar or transformational function. */
4840 if (scalar)
4841 {
4842 if (e->expr_type == EXPR_VARIABLE
4843 && e->symtree->n.sym->attr.cray_pointee
4844 && fsym && fsym->attr.flavor == FL_PROCEDURE)
4845 {
4846 /* The Cray pointer needs to be converted to a pointer to
4847 a type given by the expression. */
4848 gfc_conv_expr (&parmse, e);
4849 type = build_pointer_type (TREE_TYPE (parmse.expr));
4850 tmp = gfc_get_symbol_decl (e->symtree->n.sym->cp_pointer);
4851 parmse.expr = convert (type, tmp);
4852 }
4853 else if (fsym && fsym->attr.value)
4854 {
4855 if (fsym->ts.type == BT_CHARACTER
4856 && fsym->ts.is_c_interop
4857 && fsym->ns->proc_name != NULL
4858 && fsym->ns->proc_name->attr.is_bind_c)
4859 {
4860 parmse.expr = NULL;
4861 gfc_conv_scalar_char_value (fsym, &parmse, &e);
4862 if (parmse.expr == NULL)
4863 gfc_conv_expr (&parmse, e);
4864 }
4865 else
4866 {
4867 gfc_conv_expr (&parmse, e);
4868 if (fsym->attr.optional
4869 && fsym->ts.type != BT_CLASS
4870 && fsym->ts.type != BT_DERIVED)
4871 {
4872 if (e->expr_type != EXPR_VARIABLE
4873 || !e->symtree->n.sym->attr.optional
4874 || e->ref != NULL)
4875 vec_safe_push (optionalargs, boolean_true_node);
4876 else
4877 {
4878 tmp = gfc_conv_expr_present (e->symtree->n.sym);
4879 if (!e->symtree->n.sym->attr.value)
4880 parmse.expr
4881 = fold_build3_loc (input_location, COND_EXPR,
4882 TREE_TYPE (parmse.expr),
4883 tmp, parmse.expr,
4884 fold_convert (TREE_TYPE (parmse.expr),
4885 integer_zero_node));
4886
4887 vec_safe_push (optionalargs, tmp);
4888 }
4889 }
4890 }
4891 }
4892 else if (arg->name && arg->name[0] == '%')
4893 /* Argument list functions %VAL, %LOC and %REF are signalled
4894 through arg->name. */
4895 conv_arglist_function (&parmse, arg->expr, arg->name);
4896 else if ((e->expr_type == EXPR_FUNCTION)
4897 && ((e->value.function.esym
4898 && e->value.function.esym->result->attr.pointer)
4899 || (!e->value.function.esym
4900 && e->symtree->n.sym->attr.pointer))
4901 && fsym && fsym->attr.target)
4902 {
4903 gfc_conv_expr (&parmse, e);
4904 parmse.expr = gfc_build_addr_expr (NULL_TREE, parmse.expr);
4905 }
4906 else if (e->expr_type == EXPR_FUNCTION
4907 && e->symtree->n.sym->result
4908 && e->symtree->n.sym->result != e->symtree->n.sym
4909 && e->symtree->n.sym->result->attr.proc_pointer)
4910 {
4911 /* Functions returning procedure pointers. */
4912 gfc_conv_expr (&parmse, e);
4913 if (fsym && fsym->attr.proc_pointer)
4914 parmse.expr = gfc_build_addr_expr (NULL_TREE, parmse.expr);
4915 }
4916 else
4917 {
4918 if (e->ts.type == BT_CLASS && fsym
4919 && fsym->ts.type == BT_CLASS
4920 && (!CLASS_DATA (fsym)->as
4921 || CLASS_DATA (fsym)->as->type != AS_ASSUMED_RANK)
4922 && CLASS_DATA (e)->attr.codimension)
4923 {
4924 gcc_assert (!CLASS_DATA (fsym)->attr.codimension);
4925 gcc_assert (!CLASS_DATA (fsym)->as);
4926 gfc_add_class_array_ref (e);
4927 parmse.want_coarray = 1;
4928 gfc_conv_expr_reference (&parmse, e);
4929 class_scalar_coarray_to_class (&parmse, e, fsym->ts,
4930 fsym->attr.optional
4931 && e->expr_type == EXPR_VARIABLE);
4932 }
4933 else if (e->ts.type == BT_CLASS && fsym
4934 && fsym->ts.type == BT_CLASS
4935 && !CLASS_DATA (fsym)->as
4936 && !CLASS_DATA (e)->as
4937 && strcmp (fsym->ts.u.derived->name,
4938 e->ts.u.derived->name))
4939 {
4940 type = gfc_typenode_for_spec (&fsym->ts);
4941 var = gfc_create_var (type, fsym->name);
4942 gfc_conv_expr (&parmse, e);
4943 if (fsym->attr.optional
4944 && e->expr_type == EXPR_VARIABLE
4945 && e->symtree->n.sym->attr.optional)
4946 {
4947 stmtblock_t block;
4948 tree cond;
4949 tmp = gfc_build_addr_expr (NULL_TREE, parmse.expr);
4950 cond = fold_build2_loc (input_location, NE_EXPR,
4951 boolean_type_node, tmp,
4952 fold_convert (TREE_TYPE (tmp),
4953 null_pointer_node));
4954 gfc_start_block (&block);
4955 gfc_add_modify (&block, var,
4956 fold_build1_loc (input_location,
4957 VIEW_CONVERT_EXPR,
4958 type, parmse.expr));
4959 gfc_add_expr_to_block (&parmse.pre,
4960 fold_build3_loc (input_location,
4961 COND_EXPR, void_type_node,
4962 cond, gfc_finish_block (&block),
4963 build_empty_stmt (input_location)));
4964 parmse.expr = gfc_build_addr_expr (NULL_TREE, var);
4965 parmse.expr = build3_loc (input_location, COND_EXPR,
4966 TREE_TYPE (parmse.expr),
4967 cond, parmse.expr,
4968 fold_convert (TREE_TYPE (parmse.expr),
4969 null_pointer_node));
4970 }
4971 else
4972 {
4973 gfc_add_modify (&parmse.pre, var,
4974 fold_build1_loc (input_location,
4975 VIEW_CONVERT_EXPR,
4976 type, parmse.expr));
4977 parmse.expr = gfc_build_addr_expr (NULL_TREE, var);
4978 }
4979 }
4980 else
4981 gfc_conv_expr_reference (&parmse, e);
4982
4983 /* Catch base objects that are not variables. */
4984 if (e->ts.type == BT_CLASS
4985 && e->expr_type != EXPR_VARIABLE
4986 && expr && e == expr->base_expr)
4987 base_object = build_fold_indirect_ref_loc (input_location,
4988 parmse.expr);
4989
4990 /* A class array element needs converting back to be a
4991 class object, if the formal argument is a class object. */
4992 if (fsym && fsym->ts.type == BT_CLASS
4993 && e->ts.type == BT_CLASS
4994 && ((CLASS_DATA (fsym)->as
4995 && CLASS_DATA (fsym)->as->type == AS_ASSUMED_RANK)
4996 || CLASS_DATA (e)->attr.dimension))
4997 gfc_conv_class_to_class (&parmse, e, fsym->ts, false,
4998 fsym->attr.intent != INTENT_IN
4999 && (CLASS_DATA (fsym)->attr.class_pointer
5000 || CLASS_DATA (fsym)->attr.allocatable),
5001 fsym->attr.optional
5002 && e->expr_type == EXPR_VARIABLE
5003 && e->symtree->n.sym->attr.optional,
5004 CLASS_DATA (fsym)->attr.class_pointer
5005 || CLASS_DATA (fsym)->attr.allocatable);
5006
5007 /* If an ALLOCATABLE dummy argument has INTENT(OUT) and is
5008 allocated on entry, it must be deallocated. */
5009 if (fsym && fsym->attr.intent == INTENT_OUT
5010 && (fsym->attr.allocatable
5011 || (fsym->ts.type == BT_CLASS
5012 && CLASS_DATA (fsym)->attr.allocatable)))
5013 {
5014 stmtblock_t block;
5015 tree ptr;
5016
5017 gfc_init_block (&block);
5018 ptr = parmse.expr;
5019 if (e->ts.type == BT_CLASS)
5020 ptr = gfc_class_data_get (ptr);
5021
5022 tmp = gfc_deallocate_scalar_with_status (ptr, NULL_TREE,
5023 true, e, e->ts);
5024 gfc_add_expr_to_block (&block, tmp);
5025 tmp = fold_build2_loc (input_location, MODIFY_EXPR,
5026 void_type_node, ptr,
5027 null_pointer_node);
5028 gfc_add_expr_to_block (&block, tmp);
5029
5030 if (fsym->ts.type == BT_CLASS && UNLIMITED_POLY (fsym))
5031 {
5032 gfc_add_modify (&block, ptr,
5033 fold_convert (TREE_TYPE (ptr),
5034 null_pointer_node));
5035 gfc_add_expr_to_block (&block, tmp);
5036 }
5037 else if (fsym->ts.type == BT_CLASS)
5038 {
5039 gfc_symbol *vtab;
5040 vtab = gfc_find_derived_vtab (fsym->ts.u.derived);
5041 tmp = gfc_get_symbol_decl (vtab);
5042 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
5043 ptr = gfc_class_vptr_get (parmse.expr);
5044 gfc_add_modify (&block, ptr,
5045 fold_convert (TREE_TYPE (ptr), tmp));
5046 gfc_add_expr_to_block (&block, tmp);
5047 }
5048
5049 if (fsym->attr.optional
5050 && e->expr_type == EXPR_VARIABLE
5051 && e->symtree->n.sym->attr.optional)
5052 {
5053 tmp = fold_build3_loc (input_location, COND_EXPR,
5054 void_type_node,
5055 gfc_conv_expr_present (e->symtree->n.sym),
5056 gfc_finish_block (&block),
5057 build_empty_stmt (input_location));
5058 }
5059 else
5060 tmp = gfc_finish_block (&block);
5061
5062 gfc_add_expr_to_block (&se->pre, tmp);
5063 }
5064
5065 if (fsym && (fsym->ts.type == BT_DERIVED
5066 || fsym->ts.type == BT_ASSUMED)
5067 && e->ts.type == BT_CLASS
5068 && !CLASS_DATA (e)->attr.dimension
5069 && !CLASS_DATA (e)->attr.codimension)
5070 parmse.expr = gfc_class_data_get (parmse.expr);
5071
5072 /* Wrap scalar variable in a descriptor. We need to convert
5073 the address of a pointer back to the pointer itself before,
5074 we can assign it to the data field. */
5075
5076 if (fsym && fsym->as && fsym->as->type == AS_ASSUMED_RANK
5077 && fsym->ts.type != BT_CLASS && e->expr_type != EXPR_NULL)
5078 {
5079 tmp = parmse.expr;
5080 if (TREE_CODE (tmp) == ADDR_EXPR
5081 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (tmp, 0))))
5082 tmp = TREE_OPERAND (tmp, 0);
5083 parmse.expr = gfc_conv_scalar_to_descriptor (&parmse, tmp,
5084 fsym->attr);
5085 parmse.expr = gfc_build_addr_expr (NULL_TREE,
5086 parmse.expr);
5087 }
5088 else if (fsym && e->expr_type != EXPR_NULL
5089 && ((fsym->attr.pointer
5090 && fsym->attr.flavor != FL_PROCEDURE)
5091 || (fsym->attr.proc_pointer
5092 && !(e->expr_type == EXPR_VARIABLE
5093 && e->symtree->n.sym->attr.dummy))
5094 || (fsym->attr.proc_pointer
5095 && e->expr_type == EXPR_VARIABLE
5096 && gfc_is_proc_ptr_comp (e))
5097 || (fsym->attr.allocatable
5098 && fsym->attr.flavor != FL_PROCEDURE)))
5099 {
5100 /* Scalar pointer dummy args require an extra level of
5101 indirection. The null pointer already contains
5102 this level of indirection. */
5103 parm_kind = SCALAR_POINTER;
5104 parmse.expr = gfc_build_addr_expr (NULL_TREE, parmse.expr);
5105 }
5106 }
5107 }
5108 else if (e->ts.type == BT_CLASS
5109 && fsym && fsym->ts.type == BT_CLASS
5110 && (CLASS_DATA (fsym)->attr.dimension
5111 || CLASS_DATA (fsym)->attr.codimension))
5112 {
5113 /* Pass a class array. */
5114 parmse.use_offset = 1;
5115 gfc_conv_expr_descriptor (&parmse, e);
5116
5117 /* If an ALLOCATABLE dummy argument has INTENT(OUT) and is
5118 allocated on entry, it must be deallocated. */
5119 if (fsym->attr.intent == INTENT_OUT
5120 && CLASS_DATA (fsym)->attr.allocatable)
5121 {
5122 stmtblock_t block;
5123 tree ptr;
5124
5125 gfc_init_block (&block);
5126 ptr = parmse.expr;
5127 ptr = gfc_class_data_get (ptr);
5128
5129 tmp = gfc_deallocate_with_status (ptr, NULL_TREE,
5130 NULL_TREE, NULL_TREE,
5131 NULL_TREE, true, e,
5132 false);
5133 gfc_add_expr_to_block (&block, tmp);
5134 tmp = fold_build2_loc (input_location, MODIFY_EXPR,
5135 void_type_node, ptr,
5136 null_pointer_node);
5137 gfc_add_expr_to_block (&block, tmp);
5138 gfc_reset_vptr (&block, e);
5139
5140 if (fsym->attr.optional
5141 && e->expr_type == EXPR_VARIABLE
5142 && (!e->ref
5143 || (e->ref->type == REF_ARRAY
5144 && e->ref->u.ar.type != AR_FULL))
5145 && e->symtree->n.sym->attr.optional)
5146 {
5147 tmp = fold_build3_loc (input_location, COND_EXPR,
5148 void_type_node,
5149 gfc_conv_expr_present (e->symtree->n.sym),
5150 gfc_finish_block (&block),
5151 build_empty_stmt (input_location));
5152 }
5153 else
5154 tmp = gfc_finish_block (&block);
5155
5156 gfc_add_expr_to_block (&se->pre, tmp);
5157 }
5158
5159 /* The conversion does not repackage the reference to a class
5160 array - _data descriptor. */
5161 gfc_conv_class_to_class (&parmse, e, fsym->ts, false,
5162 fsym->attr.intent != INTENT_IN
5163 && (CLASS_DATA (fsym)->attr.class_pointer
5164 || CLASS_DATA (fsym)->attr.allocatable),
5165 fsym->attr.optional
5166 && e->expr_type == EXPR_VARIABLE
5167 && e->symtree->n.sym->attr.optional,
5168 CLASS_DATA (fsym)->attr.class_pointer
5169 || CLASS_DATA (fsym)->attr.allocatable);
5170 }
5171 else
5172 {
5173 /* If the procedure requires an explicit interface, the actual
5174 argument is passed according to the corresponding formal
5175 argument. If the corresponding formal argument is a POINTER,
5176 ALLOCATABLE or assumed shape, we do not use g77's calling
5177 convention, and pass the address of the array descriptor
5178 instead. Otherwise we use g77's calling convention. */
5179 bool f;
5180 f = (fsym != NULL)
5181 && !(fsym->attr.pointer || fsym->attr.allocatable)
5182 && fsym->as && fsym->as->type != AS_ASSUMED_SHAPE
5183 && fsym->as->type != AS_ASSUMED_RANK;
5184 if (comp)
5185 f = f || !comp->attr.always_explicit;
5186 else
5187 f = f || !sym->attr.always_explicit;
5188
5189 /* If the argument is a function call that may not create
5190 a temporary for the result, we have to check that we
5191 can do it, i.e. that there is no alias between this
5192 argument and another one. */
5193 if (gfc_get_noncopying_intrinsic_argument (e) != NULL)
5194 {
5195 gfc_expr *iarg;
5196 sym_intent intent;
5197
5198 if (fsym != NULL)
5199 intent = fsym->attr.intent;
5200 else
5201 intent = INTENT_UNKNOWN;
5202
5203 if (gfc_check_fncall_dependency (e, intent, sym, args,
5204 NOT_ELEMENTAL))
5205 parmse.force_tmp = 1;
5206
5207 iarg = e->value.function.actual->expr;
5208
5209 /* Temporary needed if aliasing due to host association. */
5210 if (sym->attr.contained
5211 && !sym->attr.pure
5212 && !sym->attr.implicit_pure
5213 && !sym->attr.use_assoc
5214 && iarg->expr_type == EXPR_VARIABLE
5215 && sym->ns == iarg->symtree->n.sym->ns)
5216 parmse.force_tmp = 1;
5217
5218 /* Ditto within module. */
5219 if (sym->attr.use_assoc
5220 && !sym->attr.pure
5221 && !sym->attr.implicit_pure
5222 && iarg->expr_type == EXPR_VARIABLE
5223 && sym->module == iarg->symtree->n.sym->module)
5224 parmse.force_tmp = 1;
5225 }
5226
5227 if (e->expr_type == EXPR_VARIABLE
5228 && is_subref_array (e))
5229 /* The actual argument is a component reference to an
5230 array of derived types. In this case, the argument
5231 is converted to a temporary, which is passed and then
5232 written back after the procedure call. */
5233 gfc_conv_subref_array_arg (&parmse, e, f,
5234 fsym ? fsym->attr.intent : INTENT_INOUT,
5235 fsym && fsym->attr.pointer);
5236 else if (gfc_is_class_array_ref (e, NULL)
5237 && fsym && fsym->ts.type == BT_DERIVED)
5238 /* The actual argument is a component reference to an
5239 array of derived types. In this case, the argument
5240 is converted to a temporary, which is passed and then
5241 written back after the procedure call.
5242 OOP-TODO: Insert code so that if the dynamic type is
5243 the same as the declared type, copy-in/copy-out does
5244 not occur. */
5245 gfc_conv_subref_array_arg (&parmse, e, f,
5246 fsym ? fsym->attr.intent : INTENT_INOUT,
5247 fsym && fsym->attr.pointer);
5248
5249 else if (gfc_is_alloc_class_array_function (e)
5250 && fsym && fsym->ts.type == BT_DERIVED)
5251 /* See previous comment. For function actual argument,
5252 the write out is not needed so the intent is set as
5253 intent in. */
5254 {
5255 e->must_finalize = 1;
5256 gfc_conv_subref_array_arg (&parmse, e, f,
5257 INTENT_IN,
5258 fsym && fsym->attr.pointer);
5259 }
5260 else
5261 gfc_conv_array_parameter (&parmse, e, f, fsym, sym->name, NULL);
5262
5263 /* If an ALLOCATABLE dummy argument has INTENT(OUT) and is
5264 allocated on entry, it must be deallocated. */
5265 if (fsym && fsym->attr.allocatable
5266 && fsym->attr.intent == INTENT_OUT)
5267 {
5268 tmp = build_fold_indirect_ref_loc (input_location,
5269 parmse.expr);
5270 tmp = gfc_trans_dealloc_allocated (tmp, false, e);
5271 if (fsym->attr.optional
5272 && e->expr_type == EXPR_VARIABLE
5273 && e->symtree->n.sym->attr.optional)
5274 tmp = fold_build3_loc (input_location, COND_EXPR,
5275 void_type_node,
5276 gfc_conv_expr_present (e->symtree->n.sym),
5277 tmp, build_empty_stmt (input_location));
5278 gfc_add_expr_to_block (&se->pre, tmp);
5279 }
5280 }
5281 }
5282
5283 /* The case with fsym->attr.optional is that of a user subroutine
5284 with an interface indicating an optional argument. When we call
5285 an intrinsic subroutine, however, fsym is NULL, but we might still
5286 have an optional argument, so we proceed to the substitution
5287 just in case. */
5288 if (e && (fsym == NULL || fsym->attr.optional))
5289 {
5290 /* If an optional argument is itself an optional dummy argument,
5291 check its presence and substitute a null if absent. This is
5292 only needed when passing an array to an elemental procedure
5293 as then array elements are accessed - or no NULL pointer is
5294 allowed and a "1" or "0" should be passed if not present.
5295 When passing a non-array-descriptor full array to a
5296 non-array-descriptor dummy, no check is needed. For
5297 array-descriptor actual to array-descriptor dummy, see
5298 PR 41911 for why a check has to be inserted.
5299 fsym == NULL is checked as intrinsics required the descriptor
5300 but do not always set fsym. */
5301 if (e->expr_type == EXPR_VARIABLE
5302 && e->symtree->n.sym->attr.optional
5303 && ((e->rank != 0 && sym->attr.elemental)
5304 || e->representation.length || e->ts.type == BT_CHARACTER
5305 || (e->rank != 0
5306 && (fsym == NULL
5307 || (fsym-> as
5308 && (fsym->as->type == AS_ASSUMED_SHAPE
5309 || fsym->as->type == AS_ASSUMED_RANK
5310 || fsym->as->type == AS_DEFERRED))))))
5311 gfc_conv_missing_dummy (&parmse, e, fsym ? fsym->ts : e->ts,
5312 e->representation.length);
5313 }
5314
5315 if (fsym && e)
5316 {
5317 /* Obtain the character length of an assumed character length
5318 length procedure from the typespec. */
5319 if (fsym->ts.type == BT_CHARACTER
5320 && parmse.string_length == NULL_TREE
5321 && e->ts.type == BT_PROCEDURE
5322 && e->symtree->n.sym->ts.type == BT_CHARACTER
5323 && e->symtree->n.sym->ts.u.cl->length != NULL
5324 && e->symtree->n.sym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
5325 {
5326 gfc_conv_const_charlen (e->symtree->n.sym->ts.u.cl);
5327 parmse.string_length = e->symtree->n.sym->ts.u.cl->backend_decl;
5328 }
5329 }
5330
5331 if (fsym && need_interface_mapping && e)
5332 gfc_add_interface_mapping (&mapping, fsym, &parmse, e);
5333
5334 gfc_add_block_to_block (&se->pre, &parmse.pre);
5335 gfc_add_block_to_block (&post, &parmse.post);
5336
5337 /* Allocated allocatable components of derived types must be
5338 deallocated for non-variable scalars. Non-variable arrays are
5339 dealt with in trans-array.c(gfc_conv_array_parameter). */
5340 if (e && (e->ts.type == BT_DERIVED || e->ts.type == BT_CLASS)
5341 && e->ts.u.derived->attr.alloc_comp
5342 && !(e->symtree && e->symtree->n.sym->attr.pointer)
5343 && (e->expr_type != EXPR_VARIABLE && !e->rank))
5344 {
5345 int parm_rank;
5346 tmp = build_fold_indirect_ref_loc (input_location,
5347 parmse.expr);
5348 parm_rank = e->rank;
5349 switch (parm_kind)
5350 {
5351 case (ELEMENTAL):
5352 case (SCALAR):
5353 parm_rank = 0;
5354 break;
5355
5356 case (SCALAR_POINTER):
5357 tmp = build_fold_indirect_ref_loc (input_location,
5358 tmp);
5359 break;
5360 }
5361
5362 if (e->expr_type == EXPR_OP
5363 && e->value.op.op == INTRINSIC_PARENTHESES
5364 && e->value.op.op1->expr_type == EXPR_VARIABLE)
5365 {
5366 tree local_tmp;
5367 local_tmp = gfc_evaluate_now (tmp, &se->pre);
5368 local_tmp = gfc_copy_alloc_comp (e->ts.u.derived, local_tmp, tmp, parm_rank);
5369 gfc_add_expr_to_block (&se->post, local_tmp);
5370 }
5371
5372 if (e->ts.type == BT_DERIVED && fsym && fsym->ts.type == BT_CLASS)
5373 {
5374 /* The derived type is passed to gfc_deallocate_alloc_comp.
5375 Therefore, class actuals can handled correctly but derived
5376 types passed to class formals need the _data component. */
5377 tmp = gfc_class_data_get (tmp);
5378 if (!CLASS_DATA (fsym)->attr.dimension)
5379 tmp = build_fold_indirect_ref_loc (input_location, tmp);
5380 }
5381
5382 tmp = gfc_deallocate_alloc_comp (e->ts.u.derived, tmp, parm_rank);
5383
5384 gfc_add_expr_to_block (&se->post, tmp);
5385 }
5386
5387 /* Add argument checking of passing an unallocated/NULL actual to
5388 a nonallocatable/nonpointer dummy. */
5389
5390 if (gfc_option.rtcheck & GFC_RTCHECK_POINTER && e != NULL)
5391 {
5392 symbol_attribute attr;
5393 char *msg;
5394 tree cond;
5395
5396 if (e->expr_type == EXPR_VARIABLE || e->expr_type == EXPR_FUNCTION)
5397 attr = gfc_expr_attr (e);
5398 else
5399 goto end_pointer_check;
5400
5401 /* In Fortran 2008 it's allowed to pass a NULL pointer/nonallocated
5402 allocatable to an optional dummy, cf. 12.5.2.12. */
5403 if (fsym != NULL && fsym->attr.optional && !attr.proc_pointer
5404 && (gfc_option.allow_std & GFC_STD_F2008) != 0)
5405 goto end_pointer_check;
5406
5407 if (attr.optional)
5408 {
5409 /* If the actual argument is an optional pointer/allocatable and
5410 the formal argument takes an nonpointer optional value,
5411 it is invalid to pass a non-present argument on, even
5412 though there is no technical reason for this in gfortran.
5413 See Fortran 2003, Section 12.4.1.6 item (7)+(8). */
5414 tree present, null_ptr, type;
5415
5416 if (attr.allocatable
5417 && (fsym == NULL || !fsym->attr.allocatable))
5418 msg = xasprintf ("Allocatable actual argument '%s' is not "
5419 "allocated or not present",
5420 e->symtree->n.sym->name);
5421 else if (attr.pointer
5422 && (fsym == NULL || !fsym->attr.pointer))
5423 msg = xasprintf ("Pointer actual argument '%s' is not "
5424 "associated or not present",
5425 e->symtree->n.sym->name);
5426 else if (attr.proc_pointer
5427 && (fsym == NULL || !fsym->attr.proc_pointer))
5428 msg = xasprintf ("Proc-pointer actual argument '%s' is not "
5429 "associated or not present",
5430 e->symtree->n.sym->name);
5431 else
5432 goto end_pointer_check;
5433
5434 present = gfc_conv_expr_present (e->symtree->n.sym);
5435 type = TREE_TYPE (present);
5436 present = fold_build2_loc (input_location, EQ_EXPR,
5437 boolean_type_node, present,
5438 fold_convert (type,
5439 null_pointer_node));
5440 type = TREE_TYPE (parmse.expr);
5441 null_ptr = fold_build2_loc (input_location, EQ_EXPR,
5442 boolean_type_node, parmse.expr,
5443 fold_convert (type,
5444 null_pointer_node));
5445 cond = fold_build2_loc (input_location, TRUTH_ORIF_EXPR,
5446 boolean_type_node, present, null_ptr);
5447 }
5448 else
5449 {
5450 if (attr.allocatable
5451 && (fsym == NULL || !fsym->attr.allocatable))
5452 msg = xasprintf ("Allocatable actual argument '%s' is not "
5453 "allocated", e->symtree->n.sym->name);
5454 else if (attr.pointer
5455 && (fsym == NULL || !fsym->attr.pointer))
5456 msg = xasprintf ("Pointer actual argument '%s' is not "
5457 "associated", e->symtree->n.sym->name);
5458 else if (attr.proc_pointer
5459 && (fsym == NULL || !fsym->attr.proc_pointer))
5460 msg = xasprintf ("Proc-pointer actual argument '%s' is not "
5461 "associated", e->symtree->n.sym->name);
5462 else
5463 goto end_pointer_check;
5464
5465 tmp = parmse.expr;
5466
5467 /* If the argument is passed by value, we need to strip the
5468 INDIRECT_REF. */
5469 if (!POINTER_TYPE_P (TREE_TYPE (parmse.expr)))
5470 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
5471
5472 cond = fold_build2_loc (input_location, EQ_EXPR,
5473 boolean_type_node, tmp,
5474 fold_convert (TREE_TYPE (tmp),
5475 null_pointer_node));
5476 }
5477
5478 gfc_trans_runtime_check (true, false, cond, &se->pre, &e->where,
5479 msg);
5480 free (msg);
5481 }
5482 end_pointer_check:
5483
5484 /* Deferred length dummies pass the character length by reference
5485 so that the value can be returned. */
5486 if (parmse.string_length && fsym && fsym->ts.deferred)
5487 {
5488 if (INDIRECT_REF_P (parmse.string_length))
5489 /* In chains of functions/procedure calls the string_length already
5490 is a pointer to the variable holding the length. Therefore
5491 remove the deref on call. */
5492 parmse.string_length = TREE_OPERAND (parmse.string_length, 0);
5493 else
5494 {
5495 tmp = parmse.string_length;
5496 if (TREE_CODE (tmp) != VAR_DECL)
5497 tmp = gfc_evaluate_now (parmse.string_length, &se->pre);
5498 parmse.string_length = gfc_build_addr_expr (NULL_TREE, tmp);
5499 }
5500 }
5501
5502 /* Character strings are passed as two parameters, a length and a
5503 pointer - except for Bind(c) which only passes the pointer.
5504 An unlimited polymorphic formal argument likewise does not
5505 need the length. */
5506 if (parmse.string_length != NULL_TREE
5507 && !sym->attr.is_bind_c
5508 && !(fsym && UNLIMITED_POLY (fsym)))
5509 vec_safe_push (stringargs, parmse.string_length);
5510
5511 /* When calling __copy for character expressions to unlimited
5512 polymorphic entities, the dst argument needs a string length. */
5513 if (sym->name[0] == '_' && e && e->ts.type == BT_CHARACTER
5514 && strncmp (sym->name, "__vtab_CHARACTER", 16) == 0
5515 && arg->next && arg->next->expr
5516 && arg->next->expr->ts.type == BT_DERIVED
5517 && arg->next->expr->ts.u.derived->attr.unlimited_polymorphic)
5518 vec_safe_push (stringargs, parmse.string_length);
5519
5520 /* For descriptorless coarrays and assumed-shape coarray dummies, we
5521 pass the token and the offset as additional arguments. */
5522 if (fsym && e == NULL && flag_coarray == GFC_FCOARRAY_LIB
5523 && ((fsym->ts.type != BT_CLASS && fsym->attr.codimension
5524 && !fsym->attr.allocatable)
5525 || (fsym->ts.type == BT_CLASS
5526 && CLASS_DATA (fsym)->attr.codimension
5527 && !CLASS_DATA (fsym)->attr.allocatable)))
5528 {
5529 /* Token and offset. */
5530 vec_safe_push (stringargs, null_pointer_node);
5531 vec_safe_push (stringargs, build_int_cst (gfc_array_index_type, 0));
5532 gcc_assert (fsym->attr.optional);
5533 }
5534 else if (fsym && flag_coarray == GFC_FCOARRAY_LIB
5535 && ((fsym->ts.type != BT_CLASS && fsym->attr.codimension
5536 && !fsym->attr.allocatable)
5537 || (fsym->ts.type == BT_CLASS
5538 && CLASS_DATA (fsym)->attr.codimension
5539 && !CLASS_DATA (fsym)->attr.allocatable)))
5540 {
5541 tree caf_decl, caf_type;
5542 tree offset, tmp2;
5543
5544 caf_decl = gfc_get_tree_for_caf_expr (e);
5545 caf_type = TREE_TYPE (caf_decl);
5546
5547 if (GFC_DESCRIPTOR_TYPE_P (caf_type)
5548 && (GFC_TYPE_ARRAY_AKIND (caf_type) == GFC_ARRAY_ALLOCATABLE
5549 || GFC_TYPE_ARRAY_AKIND (caf_type) == GFC_ARRAY_POINTER))
5550 tmp = gfc_conv_descriptor_token (caf_decl);
5551 else if (DECL_LANG_SPECIFIC (caf_decl)
5552 && GFC_DECL_TOKEN (caf_decl) != NULL_TREE)
5553 tmp = GFC_DECL_TOKEN (caf_decl);
5554 else
5555 {
5556 gcc_assert (GFC_ARRAY_TYPE_P (caf_type)
5557 && GFC_TYPE_ARRAY_CAF_TOKEN (caf_type) != NULL_TREE);
5558 tmp = GFC_TYPE_ARRAY_CAF_TOKEN (caf_type);
5559 }
5560
5561 vec_safe_push (stringargs, tmp);
5562
5563 if (GFC_DESCRIPTOR_TYPE_P (caf_type)
5564 && GFC_TYPE_ARRAY_AKIND (caf_type) == GFC_ARRAY_ALLOCATABLE)
5565 offset = build_int_cst (gfc_array_index_type, 0);
5566 else if (DECL_LANG_SPECIFIC (caf_decl)
5567 && GFC_DECL_CAF_OFFSET (caf_decl) != NULL_TREE)
5568 offset = GFC_DECL_CAF_OFFSET (caf_decl);
5569 else if (GFC_TYPE_ARRAY_CAF_OFFSET (caf_type) != NULL_TREE)
5570 offset = GFC_TYPE_ARRAY_CAF_OFFSET (caf_type);
5571 else
5572 offset = build_int_cst (gfc_array_index_type, 0);
5573
5574 if (GFC_DESCRIPTOR_TYPE_P (caf_type))
5575 tmp = gfc_conv_descriptor_data_get (caf_decl);
5576 else
5577 {
5578 gcc_assert (POINTER_TYPE_P (caf_type));
5579 tmp = caf_decl;
5580 }
5581
5582 tmp2 = fsym->ts.type == BT_CLASS
5583 ? gfc_class_data_get (parmse.expr) : parmse.expr;
5584 if ((fsym->ts.type != BT_CLASS
5585 && (fsym->as->type == AS_ASSUMED_SHAPE
5586 || fsym->as->type == AS_ASSUMED_RANK))
5587 || (fsym->ts.type == BT_CLASS
5588 && (CLASS_DATA (fsym)->as->type == AS_ASSUMED_SHAPE
5589 || CLASS_DATA (fsym)->as->type == AS_ASSUMED_RANK)))
5590 {
5591 if (fsym->ts.type == BT_CLASS)
5592 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (tmp2)));
5593 else
5594 {
5595 gcc_assert (POINTER_TYPE_P (TREE_TYPE (tmp2)));
5596 tmp2 = build_fold_indirect_ref_loc (input_location, tmp2);
5597 }
5598 gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp2)));
5599 tmp2 = gfc_conv_descriptor_data_get (tmp2);
5600 }
5601 else if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (tmp2)))
5602 tmp2 = gfc_conv_descriptor_data_get (tmp2);
5603 else
5604 {
5605 gcc_assert (POINTER_TYPE_P (TREE_TYPE (tmp2)));
5606 }
5607
5608 tmp = fold_build2_loc (input_location, MINUS_EXPR,
5609 gfc_array_index_type,
5610 fold_convert (gfc_array_index_type, tmp2),
5611 fold_convert (gfc_array_index_type, tmp));
5612 offset = fold_build2_loc (input_location, PLUS_EXPR,
5613 gfc_array_index_type, offset, tmp);
5614
5615 vec_safe_push (stringargs, offset);
5616 }
5617
5618 vec_safe_push (arglist, parmse.expr);
5619 }
5620 gfc_finish_interface_mapping (&mapping, &se->pre, &se->post);
5621
5622 if (comp)
5623 ts = comp->ts;
5624 else
5625 ts = sym->ts;
5626
5627 if (ts.type == BT_CHARACTER && sym->attr.is_bind_c)
5628 se->string_length = build_int_cst (gfc_charlen_type_node, 1);
5629 else if (ts.type == BT_CHARACTER)
5630 {
5631 if (ts.u.cl->length == NULL)
5632 {
5633 /* Assumed character length results are not allowed by 5.1.1.5 of the
5634 standard and are trapped in resolve.c; except in the case of SPREAD
5635 (and other intrinsics?) and dummy functions. In the case of SPREAD,
5636 we take the character length of the first argument for the result.
5637 For dummies, we have to look through the formal argument list for
5638 this function and use the character length found there.*/
5639 if (ts.deferred)
5640 cl.backend_decl = gfc_create_var (gfc_charlen_type_node, "slen");
5641 else if (!sym->attr.dummy)
5642 cl.backend_decl = (*stringargs)[0];
5643 else
5644 {
5645 formal = gfc_sym_get_dummy_args (sym->ns->proc_name);
5646 for (; formal; formal = formal->next)
5647 if (strcmp (formal->sym->name, sym->name) == 0)
5648 cl.backend_decl = formal->sym->ts.u.cl->backend_decl;
5649 }
5650 len = cl.backend_decl;
5651 }
5652 else
5653 {
5654 tree tmp;
5655
5656 /* Calculate the length of the returned string. */
5657 gfc_init_se (&parmse, NULL);
5658 if (need_interface_mapping)
5659 gfc_apply_interface_mapping (&mapping, &parmse, ts.u.cl->length);
5660 else
5661 gfc_conv_expr (&parmse, ts.u.cl->length);
5662 gfc_add_block_to_block (&se->pre, &parmse.pre);
5663 gfc_add_block_to_block (&se->post, &parmse.post);
5664
5665 tmp = fold_convert (gfc_charlen_type_node, parmse.expr);
5666 tmp = fold_build2_loc (input_location, MAX_EXPR,
5667 gfc_charlen_type_node, tmp,
5668 build_int_cst (gfc_charlen_type_node, 0));
5669 cl.backend_decl = tmp;
5670 }
5671
5672 /* Set up a charlen structure for it. */
5673 cl.next = NULL;
5674 cl.length = NULL;
5675 ts.u.cl = &cl;
5676
5677 len = cl.backend_decl;
5678 }
5679
5680 byref = (comp && (comp->attr.dimension || comp->ts.type == BT_CHARACTER))
5681 || (!comp && gfc_return_by_reference (sym));
5682 if (byref)
5683 {
5684 if (se->direct_byref)
5685 {
5686 /* Sometimes, too much indirection can be applied; e.g. for
5687 function_result = array_valued_recursive_function. */
5688 if (TREE_TYPE (TREE_TYPE (se->expr))
5689 && TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr)))
5690 && GFC_DESCRIPTOR_TYPE_P
5691 (TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr)))))
5692 se->expr = build_fold_indirect_ref_loc (input_location,
5693 se->expr);
5694
5695 /* If the lhs of an assignment x = f(..) is allocatable and
5696 f2003 is allowed, we must do the automatic reallocation.
5697 TODO - deal with intrinsics, without using a temporary. */
5698 if (flag_realloc_lhs
5699 && se->ss && se->ss->loop_chain
5700 && se->ss->loop_chain->is_alloc_lhs
5701 && !expr->value.function.isym
5702 && sym->result->as != NULL)
5703 {
5704 /* Evaluate the bounds of the result, if known. */
5705 gfc_set_loop_bounds_from_array_spec (&mapping, se,
5706 sym->result->as);
5707
5708 /* Perform the automatic reallocation. */
5709 tmp = gfc_alloc_allocatable_for_assignment (se->loop,
5710 expr, NULL);
5711 gfc_add_expr_to_block (&se->pre, tmp);
5712
5713 /* Pass the temporary as the first argument. */
5714 result = info->descriptor;
5715 }
5716 else
5717 result = build_fold_indirect_ref_loc (input_location,
5718 se->expr);
5719 vec_safe_push (retargs, se->expr);
5720 }
5721 else if (comp && comp->attr.dimension)
5722 {
5723 gcc_assert (se->loop && info);
5724
5725 /* Set the type of the array. */
5726 tmp = gfc_typenode_for_spec (&comp->ts);
5727 gcc_assert (se->ss->dimen == se->loop->dimen);
5728
5729 /* Evaluate the bounds of the result, if known. */
5730 gfc_set_loop_bounds_from_array_spec (&mapping, se, comp->as);
5731
5732 /* If the lhs of an assignment x = f(..) is allocatable and
5733 f2003 is allowed, we must not generate the function call
5734 here but should just send back the results of the mapping.
5735 This is signalled by the function ss being flagged. */
5736 if (flag_realloc_lhs && se->ss && se->ss->is_alloc_lhs)
5737 {
5738 gfc_free_interface_mapping (&mapping);
5739 return has_alternate_specifier;
5740 }
5741
5742 /* Create a temporary to store the result. In case the function
5743 returns a pointer, the temporary will be a shallow copy and
5744 mustn't be deallocated. */
5745 callee_alloc = comp->attr.allocatable || comp->attr.pointer;
5746 gfc_trans_create_temp_array (&se->pre, &se->post, se->ss,
5747 tmp, NULL_TREE, false,
5748 !comp->attr.pointer, callee_alloc,
5749 &se->ss->info->expr->where);
5750
5751 /* Pass the temporary as the first argument. */
5752 result = info->descriptor;
5753 tmp = gfc_build_addr_expr (NULL_TREE, result);
5754 vec_safe_push (retargs, tmp);
5755 }
5756 else if (!comp && sym->result->attr.dimension)
5757 {
5758 gcc_assert (se->loop && info);
5759
5760 /* Set the type of the array. */
5761 tmp = gfc_typenode_for_spec (&ts);
5762 gcc_assert (se->ss->dimen == se->loop->dimen);
5763
5764 /* Evaluate the bounds of the result, if known. */
5765 gfc_set_loop_bounds_from_array_spec (&mapping, se, sym->result->as);
5766
5767 /* If the lhs of an assignment x = f(..) is allocatable and
5768 f2003 is allowed, we must not generate the function call
5769 here but should just send back the results of the mapping.
5770 This is signalled by the function ss being flagged. */
5771 if (flag_realloc_lhs && se->ss && se->ss->is_alloc_lhs)
5772 {
5773 gfc_free_interface_mapping (&mapping);
5774 return has_alternate_specifier;
5775 }
5776
5777 /* Create a temporary to store the result. In case the function
5778 returns a pointer, the temporary will be a shallow copy and
5779 mustn't be deallocated. */
5780 callee_alloc = sym->attr.allocatable || sym->attr.pointer;
5781 gfc_trans_create_temp_array (&se->pre, &se->post, se->ss,
5782 tmp, NULL_TREE, false,
5783 !sym->attr.pointer, callee_alloc,
5784 &se->ss->info->expr->where);
5785
5786 /* Pass the temporary as the first argument. */
5787 result = info->descriptor;
5788 tmp = gfc_build_addr_expr (NULL_TREE, result);
5789 vec_safe_push (retargs, tmp);
5790 }
5791 else if (ts.type == BT_CHARACTER)
5792 {
5793 /* Pass the string length. */
5794 type = gfc_get_character_type (ts.kind, ts.u.cl);
5795 type = build_pointer_type (type);
5796
5797 /* Return an address to a char[0:len-1]* temporary for
5798 character pointers. */
5799 if ((!comp && (sym->attr.pointer || sym->attr.allocatable))
5800 || (comp && (comp->attr.pointer || comp->attr.allocatable)))
5801 {
5802 var = gfc_create_var (type, "pstr");
5803
5804 if ((!comp && sym->attr.allocatable)
5805 || (comp && comp->attr.allocatable))
5806 {
5807 gfc_add_modify (&se->pre, var,
5808 fold_convert (TREE_TYPE (var),
5809 null_pointer_node));
5810 tmp = gfc_call_free (convert (pvoid_type_node, var));
5811 gfc_add_expr_to_block (&se->post, tmp);
5812 }
5813
5814 /* Provide an address expression for the function arguments. */
5815 var = gfc_build_addr_expr (NULL_TREE, var);
5816 }
5817 else
5818 var = gfc_conv_string_tmp (se, type, len);
5819
5820 vec_safe_push (retargs, var);
5821 }
5822 else
5823 {
5824 gcc_assert (flag_f2c && ts.type == BT_COMPLEX);
5825
5826 type = gfc_get_complex_type (ts.kind);
5827 var = gfc_build_addr_expr (NULL_TREE, gfc_create_var (type, "cmplx"));
5828 vec_safe_push (retargs, var);
5829 }
5830
5831 /* Add the string length to the argument list. */
5832 if (ts.type == BT_CHARACTER && ts.deferred)
5833 {
5834 tmp = len;
5835 if (TREE_CODE (tmp) != VAR_DECL)
5836 tmp = gfc_evaluate_now (len, &se->pre);
5837 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
5838 vec_safe_push (retargs, tmp);
5839 }
5840 else if (ts.type == BT_CHARACTER)
5841 vec_safe_push (retargs, len);
5842 }
5843 gfc_free_interface_mapping (&mapping);
5844
5845 /* We need to glom RETARGS + ARGLIST + STRINGARGS + APPEND_ARGS. */
5846 arglen = (vec_safe_length (arglist) + vec_safe_length (optionalargs)
5847 + vec_safe_length (stringargs) + vec_safe_length (append_args));
5848 vec_safe_reserve (retargs, arglen);
5849
5850 /* Add the return arguments. */
5851 retargs->splice (arglist);
5852
5853 /* Add the hidden present status for optional+value to the arguments. */
5854 retargs->splice (optionalargs);
5855
5856 /* Add the hidden string length parameters to the arguments. */
5857 retargs->splice (stringargs);
5858
5859 /* We may want to append extra arguments here. This is used e.g. for
5860 calls to libgfortran_matmul_??, which need extra information. */
5861 if (!vec_safe_is_empty (append_args))
5862 retargs->splice (append_args);
5863 arglist = retargs;
5864
5865 /* Generate the actual call. */
5866 if (base_object == NULL_TREE)
5867 conv_function_val (se, sym, expr);
5868 else
5869 conv_base_obj_fcn_val (se, base_object, expr);
5870
5871 /* If there are alternate return labels, function type should be
5872 integer. Can't modify the type in place though, since it can be shared
5873 with other functions. For dummy arguments, the typing is done to
5874 this result, even if it has to be repeated for each call. */
5875 if (has_alternate_specifier
5876 && TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr))) != integer_type_node)
5877 {
5878 if (!sym->attr.dummy)
5879 {
5880 TREE_TYPE (sym->backend_decl)
5881 = build_function_type (integer_type_node,
5882 TYPE_ARG_TYPES (TREE_TYPE (sym->backend_decl)));
5883 se->expr = gfc_build_addr_expr (NULL_TREE, sym->backend_decl);
5884 }
5885 else
5886 TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr))) = integer_type_node;
5887 }
5888
5889 fntype = TREE_TYPE (TREE_TYPE (se->expr));
5890 se->expr = build_call_vec (TREE_TYPE (fntype), se->expr, arglist);
5891
5892 /* If we have a pointer function, but we don't want a pointer, e.g.
5893 something like
5894 x = f()
5895 where f is pointer valued, we have to dereference the result. */
5896 if (!se->want_pointer && !byref
5897 && ((!comp && (sym->attr.pointer || sym->attr.allocatable))
5898 || (comp && (comp->attr.pointer || comp->attr.allocatable))))
5899 se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
5900
5901 /* f2c calling conventions require a scalar default real function to
5902 return a double precision result. Convert this back to default
5903 real. We only care about the cases that can happen in Fortran 77.
5904 */
5905 if (flag_f2c && sym->ts.type == BT_REAL
5906 && sym->ts.kind == gfc_default_real_kind
5907 && !sym->attr.always_explicit)
5908 se->expr = fold_convert (gfc_get_real_type (sym->ts.kind), se->expr);
5909
5910 /* A pure function may still have side-effects - it may modify its
5911 parameters. */
5912 TREE_SIDE_EFFECTS (se->expr) = 1;
5913 #if 0
5914 if (!sym->attr.pure)
5915 TREE_SIDE_EFFECTS (se->expr) = 1;
5916 #endif
5917
5918 if (byref)
5919 {
5920 /* Add the function call to the pre chain. There is no expression. */
5921 gfc_add_expr_to_block (&se->pre, se->expr);
5922 se->expr = NULL_TREE;
5923
5924 if (!se->direct_byref)
5925 {
5926 if ((sym->attr.dimension && !comp) || (comp && comp->attr.dimension))
5927 {
5928 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
5929 {
5930 /* Check the data pointer hasn't been modified. This would
5931 happen in a function returning a pointer. */
5932 tmp = gfc_conv_descriptor_data_get (info->descriptor);
5933 tmp = fold_build2_loc (input_location, NE_EXPR,
5934 boolean_type_node,
5935 tmp, info->data);
5936 gfc_trans_runtime_check (true, false, tmp, &se->pre, NULL,
5937 gfc_msg_fault);
5938 }
5939 se->expr = info->descriptor;
5940 /* Bundle in the string length. */
5941 se->string_length = len;
5942 }
5943 else if (ts.type == BT_CHARACTER)
5944 {
5945 /* Dereference for character pointer results. */
5946 if ((!comp && (sym->attr.pointer || sym->attr.allocatable))
5947 || (comp && (comp->attr.pointer || comp->attr.allocatable)))
5948 se->expr = build_fold_indirect_ref_loc (input_location, var);
5949 else
5950 se->expr = var;
5951
5952 se->string_length = len;
5953 }
5954 else
5955 {
5956 gcc_assert (ts.type == BT_COMPLEX && flag_f2c);
5957 se->expr = build_fold_indirect_ref_loc (input_location, var);
5958 }
5959 }
5960 }
5961
5962 /* Follow the function call with the argument post block. */
5963 if (byref)
5964 {
5965 gfc_add_block_to_block (&se->pre, &post);
5966
5967 /* Transformational functions of derived types with allocatable
5968 components must have the result allocatable components copied. */
5969 arg = expr->value.function.actual;
5970 if (result && arg && expr->rank
5971 && expr->value.function.isym
5972 && expr->value.function.isym->transformational
5973 && arg->expr->ts.type == BT_DERIVED
5974 && arg->expr->ts.u.derived->attr.alloc_comp)
5975 {
5976 tree tmp2;
5977 /* Copy the allocatable components. We have to use a
5978 temporary here to prevent source allocatable components
5979 from being corrupted. */
5980 tmp2 = gfc_evaluate_now (result, &se->pre);
5981 tmp = gfc_copy_alloc_comp (arg->expr->ts.u.derived,
5982 result, tmp2, expr->rank);
5983 gfc_add_expr_to_block (&se->pre, tmp);
5984 tmp = gfc_copy_allocatable_data (result, tmp2, TREE_TYPE(tmp2),
5985 expr->rank);
5986 gfc_add_expr_to_block (&se->pre, tmp);
5987
5988 /* Finally free the temporary's data field. */
5989 tmp = gfc_conv_descriptor_data_get (tmp2);
5990 tmp = gfc_deallocate_with_status (tmp, NULL_TREE, NULL_TREE,
5991 NULL_TREE, NULL_TREE, true,
5992 NULL, false);
5993 gfc_add_expr_to_block (&se->pre, tmp);
5994 }
5995 }
5996 else
5997 {
5998 /* For a function with a class array result, save the result as
5999 a temporary, set the info fields needed by the scalarizer and
6000 call the finalization function of the temporary. Note that the
6001 nullification of allocatable components needed by the result
6002 is done in gfc_trans_assignment_1. */
6003 if (expr && ((gfc_is_alloc_class_array_function (expr)
6004 && se->ss && se->ss->loop)
6005 || gfc_is_alloc_class_scalar_function (expr))
6006 && se->expr && GFC_CLASS_TYPE_P (TREE_TYPE (se->expr))
6007 && expr->must_finalize)
6008 {
6009 tree final_fndecl;
6010 tree is_final;
6011 int n;
6012 if (se->ss && se->ss->loop)
6013 {
6014 se->expr = gfc_evaluate_now (se->expr, &se->ss->loop->pre);
6015 tmp = gfc_class_data_get (se->expr);
6016 info->descriptor = tmp;
6017 info->data = gfc_conv_descriptor_data_get (tmp);
6018 info->offset = gfc_conv_descriptor_offset_get (tmp);
6019 for (n = 0; n < se->ss->loop->dimen; n++)
6020 {
6021 tree dim = gfc_rank_cst[n];
6022 se->ss->loop->to[n] = gfc_conv_descriptor_ubound_get (tmp, dim);
6023 se->ss->loop->from[n] = gfc_conv_descriptor_lbound_get (tmp, dim);
6024 }
6025 }
6026 else
6027 {
6028 /* TODO Eliminate the doubling of temporaries. This
6029 one is necessary to ensure no memory leakage. */
6030 se->expr = gfc_evaluate_now (se->expr, &se->pre);
6031 tmp = gfc_class_data_get (se->expr);
6032 tmp = gfc_conv_scalar_to_descriptor (se, tmp,
6033 CLASS_DATA (expr->value.function.esym->result)->attr);
6034 }
6035
6036 final_fndecl = gfc_class_vtab_final_get (se->expr);
6037 is_final = fold_build2_loc (input_location, NE_EXPR,
6038 boolean_type_node,
6039 final_fndecl,
6040 fold_convert (TREE_TYPE (final_fndecl),
6041 null_pointer_node));
6042 final_fndecl = build_fold_indirect_ref_loc (input_location,
6043 final_fndecl);
6044 tmp = build_call_expr_loc (input_location,
6045 final_fndecl, 3,
6046 gfc_build_addr_expr (NULL, tmp),
6047 gfc_class_vtab_size_get (se->expr),
6048 boolean_false_node);
6049 tmp = fold_build3_loc (input_location, COND_EXPR,
6050 void_type_node, is_final, tmp,
6051 build_empty_stmt (input_location));
6052
6053 if (se->ss && se->ss->loop)
6054 {
6055 gfc_add_expr_to_block (&se->ss->loop->post, tmp);
6056 tmp = gfc_call_free (convert (pvoid_type_node, info->data));
6057 gfc_add_expr_to_block (&se->ss->loop->post, tmp);
6058 }
6059 else
6060 {
6061 gfc_add_expr_to_block (&se->post, tmp);
6062 tmp = gfc_class_data_get (se->expr);
6063 tmp = gfc_call_free (convert (pvoid_type_node, tmp));
6064 gfc_add_expr_to_block (&se->post, tmp);
6065 }
6066 expr->must_finalize = 0;
6067 }
6068
6069 gfc_add_block_to_block (&se->post, &post);
6070 }
6071
6072 return has_alternate_specifier;
6073 }
6074
6075
6076 /* Fill a character string with spaces. */
6077
6078 static tree
6079 fill_with_spaces (tree start, tree type, tree size)
6080 {
6081 stmtblock_t block, loop;
6082 tree i, el, exit_label, cond, tmp;
6083
6084 /* For a simple char type, we can call memset(). */
6085 if (compare_tree_int (TYPE_SIZE_UNIT (type), 1) == 0)
6086 return build_call_expr_loc (input_location,
6087 builtin_decl_explicit (BUILT_IN_MEMSET),
6088 3, start,
6089 build_int_cst (gfc_get_int_type (gfc_c_int_kind),
6090 lang_hooks.to_target_charset (' ')),
6091 size);
6092
6093 /* Otherwise, we use a loop:
6094 for (el = start, i = size; i > 0; el--, i+= TYPE_SIZE_UNIT (type))
6095 *el = (type) ' ';
6096 */
6097
6098 /* Initialize variables. */
6099 gfc_init_block (&block);
6100 i = gfc_create_var (sizetype, "i");
6101 gfc_add_modify (&block, i, fold_convert (sizetype, size));
6102 el = gfc_create_var (build_pointer_type (type), "el");
6103 gfc_add_modify (&block, el, fold_convert (TREE_TYPE (el), start));
6104 exit_label = gfc_build_label_decl (NULL_TREE);
6105 TREE_USED (exit_label) = 1;
6106
6107
6108 /* Loop body. */
6109 gfc_init_block (&loop);
6110
6111 /* Exit condition. */
6112 cond = fold_build2_loc (input_location, LE_EXPR, boolean_type_node, i,
6113 build_zero_cst (sizetype));
6114 tmp = build1_v (GOTO_EXPR, exit_label);
6115 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
6116 build_empty_stmt (input_location));
6117 gfc_add_expr_to_block (&loop, tmp);
6118
6119 /* Assignment. */
6120 gfc_add_modify (&loop,
6121 fold_build1_loc (input_location, INDIRECT_REF, type, el),
6122 build_int_cst (type, lang_hooks.to_target_charset (' ')));
6123
6124 /* Increment loop variables. */
6125 gfc_add_modify (&loop, i,
6126 fold_build2_loc (input_location, MINUS_EXPR, sizetype, i,
6127 TYPE_SIZE_UNIT (type)));
6128 gfc_add_modify (&loop, el,
6129 fold_build_pointer_plus_loc (input_location,
6130 el, TYPE_SIZE_UNIT (type)));
6131
6132 /* Making the loop... actually loop! */
6133 tmp = gfc_finish_block (&loop);
6134 tmp = build1_v (LOOP_EXPR, tmp);
6135 gfc_add_expr_to_block (&block, tmp);
6136
6137 /* The exit label. */
6138 tmp = build1_v (LABEL_EXPR, exit_label);
6139 gfc_add_expr_to_block (&block, tmp);
6140
6141
6142 return gfc_finish_block (&block);
6143 }
6144
6145
6146 /* Generate code to copy a string. */
6147
6148 void
6149 gfc_trans_string_copy (stmtblock_t * block, tree dlength, tree dest,
6150 int dkind, tree slength, tree src, int skind)
6151 {
6152 tree tmp, dlen, slen;
6153 tree dsc;
6154 tree ssc;
6155 tree cond;
6156 tree cond2;
6157 tree tmp2;
6158 tree tmp3;
6159 tree tmp4;
6160 tree chartype;
6161 stmtblock_t tempblock;
6162
6163 gcc_assert (dkind == skind);
6164
6165 if (slength != NULL_TREE)
6166 {
6167 slen = fold_convert (size_type_node, gfc_evaluate_now (slength, block));
6168 ssc = gfc_string_to_single_character (slen, src, skind);
6169 }
6170 else
6171 {
6172 slen = build_int_cst (size_type_node, 1);
6173 ssc = src;
6174 }
6175
6176 if (dlength != NULL_TREE)
6177 {
6178 dlen = fold_convert (size_type_node, gfc_evaluate_now (dlength, block));
6179 dsc = gfc_string_to_single_character (dlen, dest, dkind);
6180 }
6181 else
6182 {
6183 dlen = build_int_cst (size_type_node, 1);
6184 dsc = dest;
6185 }
6186
6187 /* Assign directly if the types are compatible. */
6188 if (dsc != NULL_TREE && ssc != NULL_TREE
6189 && TREE_TYPE (dsc) == TREE_TYPE (ssc))
6190 {
6191 gfc_add_modify (block, dsc, ssc);
6192 return;
6193 }
6194
6195 /* Do nothing if the destination length is zero. */
6196 cond = fold_build2_loc (input_location, GT_EXPR, boolean_type_node, dlen,
6197 build_int_cst (size_type_node, 0));
6198
6199 /* The following code was previously in _gfortran_copy_string:
6200
6201 // The two strings may overlap so we use memmove.
6202 void
6203 copy_string (GFC_INTEGER_4 destlen, char * dest,
6204 GFC_INTEGER_4 srclen, const char * src)
6205 {
6206 if (srclen >= destlen)
6207 {
6208 // This will truncate if too long.
6209 memmove (dest, src, destlen);
6210 }
6211 else
6212 {
6213 memmove (dest, src, srclen);
6214 // Pad with spaces.
6215 memset (&dest[srclen], ' ', destlen - srclen);
6216 }
6217 }
6218
6219 We're now doing it here for better optimization, but the logic
6220 is the same. */
6221
6222 /* For non-default character kinds, we have to multiply the string
6223 length by the base type size. */
6224 chartype = gfc_get_char_type (dkind);
6225 slen = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
6226 fold_convert (size_type_node, slen),
6227 fold_convert (size_type_node,
6228 TYPE_SIZE_UNIT (chartype)));
6229 dlen = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
6230 fold_convert (size_type_node, dlen),
6231 fold_convert (size_type_node,
6232 TYPE_SIZE_UNIT (chartype)));
6233
6234 if (dlength && POINTER_TYPE_P (TREE_TYPE (dest)))
6235 dest = fold_convert (pvoid_type_node, dest);
6236 else
6237 dest = gfc_build_addr_expr (pvoid_type_node, dest);
6238
6239 if (slength && POINTER_TYPE_P (TREE_TYPE (src)))
6240 src = fold_convert (pvoid_type_node, src);
6241 else
6242 src = gfc_build_addr_expr (pvoid_type_node, src);
6243
6244 /* Truncate string if source is too long. */
6245 cond2 = fold_build2_loc (input_location, GE_EXPR, boolean_type_node, slen,
6246 dlen);
6247 tmp2 = build_call_expr_loc (input_location,
6248 builtin_decl_explicit (BUILT_IN_MEMMOVE),
6249 3, dest, src, dlen);
6250
6251 /* Else copy and pad with spaces. */
6252 tmp3 = build_call_expr_loc (input_location,
6253 builtin_decl_explicit (BUILT_IN_MEMMOVE),
6254 3, dest, src, slen);
6255
6256 tmp4 = fold_build_pointer_plus_loc (input_location, dest, slen);
6257 tmp4 = fill_with_spaces (tmp4, chartype,
6258 fold_build2_loc (input_location, MINUS_EXPR,
6259 TREE_TYPE(dlen), dlen, slen));
6260
6261 gfc_init_block (&tempblock);
6262 gfc_add_expr_to_block (&tempblock, tmp3);
6263 gfc_add_expr_to_block (&tempblock, tmp4);
6264 tmp3 = gfc_finish_block (&tempblock);
6265
6266 /* The whole copy_string function is there. */
6267 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond2,
6268 tmp2, tmp3);
6269 tmp = fold_build3_loc (input_location, COND_EXPR, void_type_node, cond, tmp,
6270 build_empty_stmt (input_location));
6271 gfc_add_expr_to_block (block, tmp);
6272 }
6273
6274
6275 /* Translate a statement function.
6276 The value of a statement function reference is obtained by evaluating the
6277 expression using the values of the actual arguments for the values of the
6278 corresponding dummy arguments. */
6279
6280 static void
6281 gfc_conv_statement_function (gfc_se * se, gfc_expr * expr)
6282 {
6283 gfc_symbol *sym;
6284 gfc_symbol *fsym;
6285 gfc_formal_arglist *fargs;
6286 gfc_actual_arglist *args;
6287 gfc_se lse;
6288 gfc_se rse;
6289 gfc_saved_var *saved_vars;
6290 tree *temp_vars;
6291 tree type;
6292 tree tmp;
6293 int n;
6294
6295 sym = expr->symtree->n.sym;
6296 args = expr->value.function.actual;
6297 gfc_init_se (&lse, NULL);
6298 gfc_init_se (&rse, NULL);
6299
6300 n = 0;
6301 for (fargs = gfc_sym_get_dummy_args (sym); fargs; fargs = fargs->next)
6302 n++;
6303 saved_vars = XCNEWVEC (gfc_saved_var, n);
6304 temp_vars = XCNEWVEC (tree, n);
6305
6306 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs;
6307 fargs = fargs->next, n++)
6308 {
6309 /* Each dummy shall be specified, explicitly or implicitly, to be
6310 scalar. */
6311 gcc_assert (fargs->sym->attr.dimension == 0);
6312 fsym = fargs->sym;
6313
6314 if (fsym->ts.type == BT_CHARACTER)
6315 {
6316 /* Copy string arguments. */
6317 tree arglen;
6318
6319 gcc_assert (fsym->ts.u.cl && fsym->ts.u.cl->length
6320 && fsym->ts.u.cl->length->expr_type == EXPR_CONSTANT);
6321
6322 /* Create a temporary to hold the value. */
6323 if (fsym->ts.u.cl->backend_decl == NULL_TREE)
6324 fsym->ts.u.cl->backend_decl
6325 = gfc_conv_constant_to_tree (fsym->ts.u.cl->length);
6326
6327 type = gfc_get_character_type (fsym->ts.kind, fsym->ts.u.cl);
6328 temp_vars[n] = gfc_create_var (type, fsym->name);
6329
6330 arglen = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
6331
6332 gfc_conv_expr (&rse, args->expr);
6333 gfc_conv_string_parameter (&rse);
6334 gfc_add_block_to_block (&se->pre, &lse.pre);
6335 gfc_add_block_to_block (&se->pre, &rse.pre);
6336
6337 gfc_trans_string_copy (&se->pre, arglen, temp_vars[n], fsym->ts.kind,
6338 rse.string_length, rse.expr, fsym->ts.kind);
6339 gfc_add_block_to_block (&se->pre, &lse.post);
6340 gfc_add_block_to_block (&se->pre, &rse.post);
6341 }
6342 else
6343 {
6344 /* For everything else, just evaluate the expression. */
6345
6346 /* Create a temporary to hold the value. */
6347 type = gfc_typenode_for_spec (&fsym->ts);
6348 temp_vars[n] = gfc_create_var (type, fsym->name);
6349
6350 gfc_conv_expr (&lse, args->expr);
6351
6352 gfc_add_block_to_block (&se->pre, &lse.pre);
6353 gfc_add_modify (&se->pre, temp_vars[n], lse.expr);
6354 gfc_add_block_to_block (&se->pre, &lse.post);
6355 }
6356
6357 args = args->next;
6358 }
6359
6360 /* Use the temporary variables in place of the real ones. */
6361 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs;
6362 fargs = fargs->next, n++)
6363 gfc_shadow_sym (fargs->sym, temp_vars[n], &saved_vars[n]);
6364
6365 gfc_conv_expr (se, sym->value);
6366
6367 if (sym->ts.type == BT_CHARACTER)
6368 {
6369 gfc_conv_const_charlen (sym->ts.u.cl);
6370
6371 /* Force the expression to the correct length. */
6372 if (!INTEGER_CST_P (se->string_length)
6373 || tree_int_cst_lt (se->string_length,
6374 sym->ts.u.cl->backend_decl))
6375 {
6376 type = gfc_get_character_type (sym->ts.kind, sym->ts.u.cl);
6377 tmp = gfc_create_var (type, sym->name);
6378 tmp = gfc_build_addr_expr (build_pointer_type (type), tmp);
6379 gfc_trans_string_copy (&se->pre, sym->ts.u.cl->backend_decl, tmp,
6380 sym->ts.kind, se->string_length, se->expr,
6381 sym->ts.kind);
6382 se->expr = tmp;
6383 }
6384 se->string_length = sym->ts.u.cl->backend_decl;
6385 }
6386
6387 /* Restore the original variables. */
6388 for (fargs = gfc_sym_get_dummy_args (sym), n = 0; fargs;
6389 fargs = fargs->next, n++)
6390 gfc_restore_sym (fargs->sym, &saved_vars[n]);
6391 free (temp_vars);
6392 free (saved_vars);
6393 }
6394
6395
6396 /* Translate a function expression. */
6397
6398 static void
6399 gfc_conv_function_expr (gfc_se * se, gfc_expr * expr)
6400 {
6401 gfc_symbol *sym;
6402
6403 if (expr->value.function.isym)
6404 {
6405 gfc_conv_intrinsic_function (se, expr);
6406 return;
6407 }
6408
6409 /* expr.value.function.esym is the resolved (specific) function symbol for
6410 most functions. However this isn't set for dummy procedures. */
6411 sym = expr->value.function.esym;
6412 if (!sym)
6413 sym = expr->symtree->n.sym;
6414
6415 /* The IEEE_ARITHMETIC functions are caught here. */
6416 if (sym->from_intmod == INTMOD_IEEE_ARITHMETIC)
6417 if (gfc_conv_ieee_arithmetic_function (se, expr))
6418 return;
6419
6420 /* We distinguish statement functions from general functions to improve
6421 runtime performance. */
6422 if (sym->attr.proc == PROC_ST_FUNCTION)
6423 {
6424 gfc_conv_statement_function (se, expr);
6425 return;
6426 }
6427
6428 gfc_conv_procedure_call (se, sym, expr->value.function.actual, expr,
6429 NULL);
6430 }
6431
6432
6433 /* Determine whether the given EXPR_CONSTANT is a zero initializer. */
6434
6435 static bool
6436 is_zero_initializer_p (gfc_expr * expr)
6437 {
6438 if (expr->expr_type != EXPR_CONSTANT)
6439 return false;
6440
6441 /* We ignore constants with prescribed memory representations for now. */
6442 if (expr->representation.string)
6443 return false;
6444
6445 switch (expr->ts.type)
6446 {
6447 case BT_INTEGER:
6448 return mpz_cmp_si (expr->value.integer, 0) == 0;
6449
6450 case BT_REAL:
6451 return mpfr_zero_p (expr->value.real)
6452 && MPFR_SIGN (expr->value.real) >= 0;
6453
6454 case BT_LOGICAL:
6455 return expr->value.logical == 0;
6456
6457 case BT_COMPLEX:
6458 return mpfr_zero_p (mpc_realref (expr->value.complex))
6459 && MPFR_SIGN (mpc_realref (expr->value.complex)) >= 0
6460 && mpfr_zero_p (mpc_imagref (expr->value.complex))
6461 && MPFR_SIGN (mpc_imagref (expr->value.complex)) >= 0;
6462
6463 default:
6464 break;
6465 }
6466 return false;
6467 }
6468
6469
6470 static void
6471 gfc_conv_array_constructor_expr (gfc_se * se, gfc_expr * expr)
6472 {
6473 gfc_ss *ss;
6474
6475 ss = se->ss;
6476 gcc_assert (ss != NULL && ss != gfc_ss_terminator);
6477 gcc_assert (ss->info->expr == expr && ss->info->type == GFC_SS_CONSTRUCTOR);
6478
6479 gfc_conv_tmp_array_ref (se);
6480 }
6481
6482
6483 /* Build a static initializer. EXPR is the expression for the initial value.
6484 The other parameters describe the variable of the component being
6485 initialized. EXPR may be null. */
6486
6487 tree
6488 gfc_conv_initializer (gfc_expr * expr, gfc_typespec * ts, tree type,
6489 bool array, bool pointer, bool procptr)
6490 {
6491 gfc_se se;
6492
6493 if (!(expr || pointer || procptr))
6494 return NULL_TREE;
6495
6496 /* Check if we have ISOCBINDING_NULL_PTR or ISOCBINDING_NULL_FUNPTR
6497 (these are the only two iso_c_binding derived types that can be
6498 used as initialization expressions). If so, we need to modify
6499 the 'expr' to be that for a (void *). */
6500 if (expr != NULL && expr->ts.type == BT_DERIVED
6501 && expr->ts.is_iso_c && expr->ts.u.derived)
6502 {
6503 gfc_symbol *derived = expr->ts.u.derived;
6504
6505 /* The derived symbol has already been converted to a (void *). Use
6506 its kind. */
6507 expr = gfc_get_int_expr (derived->ts.kind, NULL, 0);
6508 expr->ts.f90_type = derived->ts.f90_type;
6509
6510 gfc_init_se (&se, NULL);
6511 gfc_conv_constant (&se, expr);
6512 gcc_assert (TREE_CODE (se.expr) != CONSTRUCTOR);
6513 return se.expr;
6514 }
6515
6516 if (array && !procptr)
6517 {
6518 tree ctor;
6519 /* Arrays need special handling. */
6520 if (pointer)
6521 ctor = gfc_build_null_descriptor (type);
6522 /* Special case assigning an array to zero. */
6523 else if (is_zero_initializer_p (expr))
6524 ctor = build_constructor (type, NULL);
6525 else
6526 ctor = gfc_conv_array_initializer (type, expr);
6527 TREE_STATIC (ctor) = 1;
6528 return ctor;
6529 }
6530 else if (pointer || procptr)
6531 {
6532 if (ts->type == BT_CLASS && !procptr)
6533 {
6534 gfc_init_se (&se, NULL);
6535 gfc_conv_structure (&se, gfc_class_initializer (ts, expr), 1);
6536 gcc_assert (TREE_CODE (se.expr) == CONSTRUCTOR);
6537 TREE_STATIC (se.expr) = 1;
6538 return se.expr;
6539 }
6540 else if (!expr || expr->expr_type == EXPR_NULL)
6541 return fold_convert (type, null_pointer_node);
6542 else
6543 {
6544 gfc_init_se (&se, NULL);
6545 se.want_pointer = 1;
6546 gfc_conv_expr (&se, expr);
6547 gcc_assert (TREE_CODE (se.expr) != CONSTRUCTOR);
6548 return se.expr;
6549 }
6550 }
6551 else
6552 {
6553 switch (ts->type)
6554 {
6555 case BT_DERIVED:
6556 case BT_CLASS:
6557 gfc_init_se (&se, NULL);
6558 if (ts->type == BT_CLASS && expr->expr_type == EXPR_NULL)
6559 gfc_conv_structure (&se, gfc_class_initializer (ts, expr), 1);
6560 else
6561 gfc_conv_structure (&se, expr, 1);
6562 gcc_assert (TREE_CODE (se.expr) == CONSTRUCTOR);
6563 TREE_STATIC (se.expr) = 1;
6564 return se.expr;
6565
6566 case BT_CHARACTER:
6567 {
6568 tree ctor = gfc_conv_string_init (ts->u.cl->backend_decl,expr);
6569 TREE_STATIC (ctor) = 1;
6570 return ctor;
6571 }
6572
6573 default:
6574 gfc_init_se (&se, NULL);
6575 gfc_conv_constant (&se, expr);
6576 gcc_assert (TREE_CODE (se.expr) != CONSTRUCTOR);
6577 return se.expr;
6578 }
6579 }
6580 }
6581
6582 static tree
6583 gfc_trans_subarray_assign (tree dest, gfc_component * cm, gfc_expr * expr)
6584 {
6585 gfc_se rse;
6586 gfc_se lse;
6587 gfc_ss *rss;
6588 gfc_ss *lss;
6589 gfc_array_info *lss_array;
6590 stmtblock_t body;
6591 stmtblock_t block;
6592 gfc_loopinfo loop;
6593 int n;
6594 tree tmp;
6595
6596 gfc_start_block (&block);
6597
6598 /* Initialize the scalarizer. */
6599 gfc_init_loopinfo (&loop);
6600
6601 gfc_init_se (&lse, NULL);
6602 gfc_init_se (&rse, NULL);
6603
6604 /* Walk the rhs. */
6605 rss = gfc_walk_expr (expr);
6606 if (rss == gfc_ss_terminator)
6607 /* The rhs is scalar. Add a ss for the expression. */
6608 rss = gfc_get_scalar_ss (gfc_ss_terminator, expr);
6609
6610 /* Create a SS for the destination. */
6611 lss = gfc_get_array_ss (gfc_ss_terminator, NULL, cm->as->rank,
6612 GFC_SS_COMPONENT);
6613 lss_array = &lss->info->data.array;
6614 lss_array->shape = gfc_get_shape (cm->as->rank);
6615 lss_array->descriptor = dest;
6616 lss_array->data = gfc_conv_array_data (dest);
6617 lss_array->offset = gfc_conv_array_offset (dest);
6618 for (n = 0; n < cm->as->rank; n++)
6619 {
6620 lss_array->start[n] = gfc_conv_array_lbound (dest, n);
6621 lss_array->stride[n] = gfc_index_one_node;
6622
6623 mpz_init (lss_array->shape[n]);
6624 mpz_sub (lss_array->shape[n], cm->as->upper[n]->value.integer,
6625 cm->as->lower[n]->value.integer);
6626 mpz_add_ui (lss_array->shape[n], lss_array->shape[n], 1);
6627 }
6628
6629 /* Associate the SS with the loop. */
6630 gfc_add_ss_to_loop (&loop, lss);
6631 gfc_add_ss_to_loop (&loop, rss);
6632
6633 /* Calculate the bounds of the scalarization. */
6634 gfc_conv_ss_startstride (&loop);
6635
6636 /* Setup the scalarizing loops. */
6637 gfc_conv_loop_setup (&loop, &expr->where);
6638
6639 /* Setup the gfc_se structures. */
6640 gfc_copy_loopinfo_to_se (&lse, &loop);
6641 gfc_copy_loopinfo_to_se (&rse, &loop);
6642
6643 rse.ss = rss;
6644 gfc_mark_ss_chain_used (rss, 1);
6645 lse.ss = lss;
6646 gfc_mark_ss_chain_used (lss, 1);
6647
6648 /* Start the scalarized loop body. */
6649 gfc_start_scalarized_body (&loop, &body);
6650
6651 gfc_conv_tmp_array_ref (&lse);
6652 if (cm->ts.type == BT_CHARACTER)
6653 lse.string_length = cm->ts.u.cl->backend_decl;
6654
6655 gfc_conv_expr (&rse, expr);
6656
6657 tmp = gfc_trans_scalar_assign (&lse, &rse, cm->ts, true, false, true);
6658 gfc_add_expr_to_block (&body, tmp);
6659
6660 gcc_assert (rse.ss == gfc_ss_terminator);
6661
6662 /* Generate the copying loops. */
6663 gfc_trans_scalarizing_loops (&loop, &body);
6664
6665 /* Wrap the whole thing up. */
6666 gfc_add_block_to_block (&block, &loop.pre);
6667 gfc_add_block_to_block (&block, &loop.post);
6668
6669 gcc_assert (lss_array->shape != NULL);
6670 gfc_free_shape (&lss_array->shape, cm->as->rank);
6671 gfc_cleanup_loop (&loop);
6672
6673 return gfc_finish_block (&block);
6674 }
6675
6676
6677 static tree
6678 gfc_trans_alloc_subarray_assign (tree dest, gfc_component * cm,
6679 gfc_expr * expr)
6680 {
6681 gfc_se se;
6682 stmtblock_t block;
6683 tree offset;
6684 int n;
6685 tree tmp;
6686 tree tmp2;
6687 gfc_array_spec *as;
6688 gfc_expr *arg = NULL;
6689
6690 gfc_start_block (&block);
6691 gfc_init_se (&se, NULL);
6692
6693 /* Get the descriptor for the expressions. */
6694 se.want_pointer = 0;
6695 gfc_conv_expr_descriptor (&se, expr);
6696 gfc_add_block_to_block (&block, &se.pre);
6697 gfc_add_modify (&block, dest, se.expr);
6698
6699 /* Deal with arrays of derived types with allocatable components. */
6700 if (cm->ts.type == BT_DERIVED
6701 && cm->ts.u.derived->attr.alloc_comp)
6702 tmp = gfc_copy_alloc_comp (cm->ts.u.derived,
6703 se.expr, dest,
6704 cm->as->rank);
6705 else if (cm->ts.type == BT_CLASS && expr->ts.type == BT_DERIVED
6706 && CLASS_DATA(cm)->attr.allocatable)
6707 {
6708 if (cm->ts.u.derived->attr.alloc_comp)
6709 tmp = gfc_copy_alloc_comp (expr->ts.u.derived,
6710 se.expr, dest,
6711 expr->rank);
6712 else
6713 {
6714 tmp = TREE_TYPE (dest);
6715 tmp = gfc_duplicate_allocatable (dest, se.expr,
6716 tmp, expr->rank, NULL_TREE);
6717 }
6718 }
6719 else
6720 tmp = gfc_duplicate_allocatable (dest, se.expr,
6721 TREE_TYPE(cm->backend_decl),
6722 cm->as->rank, NULL_TREE);
6723
6724 gfc_add_expr_to_block (&block, tmp);
6725 gfc_add_block_to_block (&block, &se.post);
6726
6727 if (expr->expr_type != EXPR_VARIABLE)
6728 gfc_conv_descriptor_data_set (&block, se.expr,
6729 null_pointer_node);
6730
6731 /* We need to know if the argument of a conversion function is a
6732 variable, so that the correct lower bound can be used. */
6733 if (expr->expr_type == EXPR_FUNCTION
6734 && expr->value.function.isym
6735 && expr->value.function.isym->conversion
6736 && expr->value.function.actual->expr
6737 && expr->value.function.actual->expr->expr_type == EXPR_VARIABLE)
6738 arg = expr->value.function.actual->expr;
6739
6740 /* Obtain the array spec of full array references. */
6741 if (arg)
6742 as = gfc_get_full_arrayspec_from_expr (arg);
6743 else
6744 as = gfc_get_full_arrayspec_from_expr (expr);
6745
6746 /* Shift the lbound and ubound of temporaries to being unity,
6747 rather than zero, based. Always calculate the offset. */
6748 offset = gfc_conv_descriptor_offset_get (dest);
6749 gfc_add_modify (&block, offset, gfc_index_zero_node);
6750 tmp2 =gfc_create_var (gfc_array_index_type, NULL);
6751
6752 for (n = 0; n < expr->rank; n++)
6753 {
6754 tree span;
6755 tree lbound;
6756
6757 /* Obtain the correct lbound - ISO/IEC TR 15581:2001 page 9.
6758 TODO It looks as if gfc_conv_expr_descriptor should return
6759 the correct bounds and that the following should not be
6760 necessary. This would simplify gfc_conv_intrinsic_bound
6761 as well. */
6762 if (as && as->lower[n])
6763 {
6764 gfc_se lbse;
6765 gfc_init_se (&lbse, NULL);
6766 gfc_conv_expr (&lbse, as->lower[n]);
6767 gfc_add_block_to_block (&block, &lbse.pre);
6768 lbound = gfc_evaluate_now (lbse.expr, &block);
6769 }
6770 else if (as && arg)
6771 {
6772 tmp = gfc_get_symbol_decl (arg->symtree->n.sym);
6773 lbound = gfc_conv_descriptor_lbound_get (tmp,
6774 gfc_rank_cst[n]);
6775 }
6776 else if (as)
6777 lbound = gfc_conv_descriptor_lbound_get (dest,
6778 gfc_rank_cst[n]);
6779 else
6780 lbound = gfc_index_one_node;
6781
6782 lbound = fold_convert (gfc_array_index_type, lbound);
6783
6784 /* Shift the bounds and set the offset accordingly. */
6785 tmp = gfc_conv_descriptor_ubound_get (dest, gfc_rank_cst[n]);
6786 span = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
6787 tmp, gfc_conv_descriptor_lbound_get (dest, gfc_rank_cst[n]));
6788 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
6789 span, lbound);
6790 gfc_conv_descriptor_ubound_set (&block, dest,
6791 gfc_rank_cst[n], tmp);
6792 gfc_conv_descriptor_lbound_set (&block, dest,
6793 gfc_rank_cst[n], lbound);
6794
6795 tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
6796 gfc_conv_descriptor_lbound_get (dest,
6797 gfc_rank_cst[n]),
6798 gfc_conv_descriptor_stride_get (dest,
6799 gfc_rank_cst[n]));
6800 gfc_add_modify (&block, tmp2, tmp);
6801 tmp = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
6802 offset, tmp2);
6803 gfc_conv_descriptor_offset_set (&block, dest, tmp);
6804 }
6805
6806 if (arg)
6807 {
6808 /* If a conversion expression has a null data pointer
6809 argument, nullify the allocatable component. */
6810 tree non_null_expr;
6811 tree null_expr;
6812
6813 if (arg->symtree->n.sym->attr.allocatable
6814 || arg->symtree->n.sym->attr.pointer)
6815 {
6816 non_null_expr = gfc_finish_block (&block);
6817 gfc_start_block (&block);
6818 gfc_conv_descriptor_data_set (&block, dest,
6819 null_pointer_node);
6820 null_expr = gfc_finish_block (&block);
6821 tmp = gfc_conv_descriptor_data_get (arg->symtree->n.sym->backend_decl);
6822 tmp = build2_loc (input_location, EQ_EXPR, boolean_type_node, tmp,
6823 fold_convert (TREE_TYPE (tmp), null_pointer_node));
6824 return build3_v (COND_EXPR, tmp,
6825 null_expr, non_null_expr);
6826 }
6827 }
6828
6829 return gfc_finish_block (&block);
6830 }
6831
6832
6833 /* Allocate or reallocate scalar component, as necessary. */
6834
6835 static void
6836 alloc_scalar_allocatable_for_subcomponent_assignment (stmtblock_t *block,
6837 tree comp,
6838 gfc_component *cm,
6839 gfc_expr *expr2,
6840 gfc_symbol *sym)
6841 {
6842 tree tmp;
6843 tree ptr;
6844 tree size;
6845 tree size_in_bytes;
6846 tree lhs_cl_size = NULL_TREE;
6847
6848 if (!comp)
6849 return;
6850
6851 if (!expr2 || expr2->rank)
6852 return;
6853
6854 realloc_lhs_warning (expr2->ts.type, false, &expr2->where);
6855
6856 if (cm->ts.type == BT_CHARACTER && cm->ts.deferred)
6857 {
6858 char name[GFC_MAX_SYMBOL_LEN+9];
6859 gfc_component *strlen;
6860 /* Use the rhs string length and the lhs element size. */
6861 gcc_assert (expr2->ts.type == BT_CHARACTER);
6862 if (!expr2->ts.u.cl->backend_decl)
6863 {
6864 gfc_conv_string_length (expr2->ts.u.cl, expr2, block);
6865 gcc_assert (expr2->ts.u.cl->backend_decl);
6866 }
6867
6868 size = expr2->ts.u.cl->backend_decl;
6869
6870 /* Ensure that cm->ts.u.cl->backend_decl is a componentref to _%s_length
6871 component. */
6872 sprintf (name, "_%s_length", cm->name);
6873 strlen = gfc_find_component (sym, name, true, true);
6874 lhs_cl_size = fold_build3_loc (input_location, COMPONENT_REF,
6875 gfc_charlen_type_node,
6876 TREE_OPERAND (comp, 0),
6877 strlen->backend_decl, NULL_TREE);
6878
6879 tmp = TREE_TYPE (gfc_typenode_for_spec (&cm->ts));
6880 tmp = TYPE_SIZE_UNIT (tmp);
6881 size_in_bytes = fold_build2_loc (input_location, MULT_EXPR,
6882 TREE_TYPE (tmp), tmp,
6883 fold_convert (TREE_TYPE (tmp), size));
6884 }
6885 else
6886 {
6887 /* Otherwise use the length in bytes of the rhs. */
6888 size = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&cm->ts));
6889 size_in_bytes = size;
6890 }
6891
6892 size_in_bytes = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
6893 size_in_bytes, size_one_node);
6894
6895 if (cm->ts.type == BT_DERIVED && cm->ts.u.derived->attr.alloc_comp)
6896 {
6897 tmp = build_call_expr_loc (input_location,
6898 builtin_decl_explicit (BUILT_IN_CALLOC),
6899 2, build_one_cst (size_type_node),
6900 size_in_bytes);
6901 tmp = fold_convert (TREE_TYPE (comp), tmp);
6902 gfc_add_modify (block, comp, tmp);
6903 }
6904 else
6905 {
6906 tmp = build_call_expr_loc (input_location,
6907 builtin_decl_explicit (BUILT_IN_MALLOC),
6908 1, size_in_bytes);
6909 if (GFC_CLASS_TYPE_P (TREE_TYPE (comp)))
6910 ptr = gfc_class_data_get (comp);
6911 else
6912 ptr = comp;
6913 tmp = fold_convert (TREE_TYPE (ptr), tmp);
6914 gfc_add_modify (block, ptr, tmp);
6915 }
6916
6917 if (cm->ts.type == BT_CHARACTER && cm->ts.deferred)
6918 /* Update the lhs character length. */
6919 gfc_add_modify (block, lhs_cl_size, size);
6920 }
6921
6922
6923 /* Assign a single component of a derived type constructor. */
6924
6925 static tree
6926 gfc_trans_subcomponent_assign (tree dest, gfc_component * cm, gfc_expr * expr,
6927 gfc_symbol *sym, bool init)
6928 {
6929 gfc_se se;
6930 gfc_se lse;
6931 stmtblock_t block;
6932 tree tmp;
6933 tree vtab;
6934
6935 gfc_start_block (&block);
6936
6937 if (cm->attr.pointer || cm->attr.proc_pointer)
6938 {
6939 /* Only care about pointers here, not about allocatables. */
6940 gfc_init_se (&se, NULL);
6941 /* Pointer component. */
6942 if ((cm->attr.dimension || cm->attr.codimension)
6943 && !cm->attr.proc_pointer)
6944 {
6945 /* Array pointer. */
6946 if (expr->expr_type == EXPR_NULL)
6947 gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
6948 else
6949 {
6950 se.direct_byref = 1;
6951 se.expr = dest;
6952 gfc_conv_expr_descriptor (&se, expr);
6953 gfc_add_block_to_block (&block, &se.pre);
6954 gfc_add_block_to_block (&block, &se.post);
6955 }
6956 }
6957 else
6958 {
6959 /* Scalar pointers. */
6960 se.want_pointer = 1;
6961 gfc_conv_expr (&se, expr);
6962 gfc_add_block_to_block (&block, &se.pre);
6963
6964 if (expr->symtree && expr->symtree->n.sym->attr.proc_pointer
6965 && expr->symtree->n.sym->attr.dummy)
6966 se.expr = build_fold_indirect_ref_loc (input_location, se.expr);
6967
6968 gfc_add_modify (&block, dest,
6969 fold_convert (TREE_TYPE (dest), se.expr));
6970 gfc_add_block_to_block (&block, &se.post);
6971 }
6972 }
6973 else if (cm->ts.type == BT_CLASS && expr->expr_type == EXPR_NULL)
6974 {
6975 /* NULL initialization for CLASS components. */
6976 tmp = gfc_trans_structure_assign (dest,
6977 gfc_class_initializer (&cm->ts, expr),
6978 false);
6979 gfc_add_expr_to_block (&block, tmp);
6980 }
6981 else if ((cm->attr.dimension || cm->attr.codimension)
6982 && !cm->attr.proc_pointer)
6983 {
6984 if (cm->attr.allocatable && expr->expr_type == EXPR_NULL)
6985 gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
6986 else if (cm->attr.allocatable)
6987 {
6988 tmp = gfc_trans_alloc_subarray_assign (dest, cm, expr);
6989 gfc_add_expr_to_block (&block, tmp);
6990 }
6991 else
6992 {
6993 tmp = gfc_trans_subarray_assign (dest, cm, expr);
6994 gfc_add_expr_to_block (&block, tmp);
6995 }
6996 }
6997 else if (cm->ts.type == BT_CLASS
6998 && CLASS_DATA (cm)->attr.dimension
6999 && CLASS_DATA (cm)->attr.allocatable
7000 && expr->ts.type == BT_DERIVED)
7001 {
7002 vtab = gfc_get_symbol_decl (gfc_find_vtab (&expr->ts));
7003 vtab = gfc_build_addr_expr (NULL_TREE, vtab);
7004 tmp = gfc_class_vptr_get (dest);
7005 gfc_add_modify (&block, tmp,
7006 fold_convert (TREE_TYPE (tmp), vtab));
7007 tmp = gfc_class_data_get (dest);
7008 tmp = gfc_trans_alloc_subarray_assign (tmp, cm, expr);
7009 gfc_add_expr_to_block (&block, tmp);
7010 }
7011 else if (init && (cm->attr.allocatable
7012 || (cm->ts.type == BT_CLASS && CLASS_DATA (cm)->attr.allocatable)))
7013 {
7014 /* Take care about non-array allocatable components here. The alloc_*
7015 routine below is motivated by the alloc_scalar_allocatable_for_
7016 assignment() routine, but with the realloc portions removed and
7017 different input. */
7018 alloc_scalar_allocatable_for_subcomponent_assignment (&block,
7019 dest,
7020 cm,
7021 expr,
7022 sym);
7023 /* The remainder of these instructions follow the if (cm->attr.pointer)
7024 if (!cm->attr.dimension) part above. */
7025 gfc_init_se (&se, NULL);
7026 gfc_conv_expr (&se, expr);
7027 gfc_add_block_to_block (&block, &se.pre);
7028
7029 if (expr->symtree && expr->symtree->n.sym->attr.proc_pointer
7030 && expr->symtree->n.sym->attr.dummy)
7031 se.expr = build_fold_indirect_ref_loc (input_location, se.expr);
7032
7033 if (cm->ts.type == BT_CLASS && expr->ts.type == BT_DERIVED)
7034 {
7035 tmp = gfc_class_data_get (dest);
7036 tmp = build_fold_indirect_ref_loc (input_location, tmp);
7037 vtab = gfc_get_symbol_decl (gfc_find_vtab (&expr->ts));
7038 vtab = gfc_build_addr_expr (NULL_TREE, vtab);
7039 gfc_add_modify (&block, gfc_class_vptr_get (dest),
7040 fold_convert (TREE_TYPE (gfc_class_vptr_get (dest)), vtab));
7041 }
7042 else
7043 tmp = build_fold_indirect_ref_loc (input_location, dest);
7044
7045 /* For deferred strings insert a memcpy. */
7046 if (cm->ts.type == BT_CHARACTER && cm->ts.deferred)
7047 {
7048 tree size;
7049 gcc_assert (se.string_length || expr->ts.u.cl->backend_decl);
7050 size = size_of_string_in_bytes (cm->ts.kind, se.string_length
7051 ? se.string_length
7052 : expr->ts.u.cl->backend_decl);
7053 tmp = gfc_build_memcpy_call (tmp, se.expr, size);
7054 gfc_add_expr_to_block (&block, tmp);
7055 }
7056 else
7057 gfc_add_modify (&block, tmp,
7058 fold_convert (TREE_TYPE (tmp), se.expr));
7059 gfc_add_block_to_block (&block, &se.post);
7060 }
7061 else if (expr->ts.type == BT_DERIVED && expr->ts.f90_type != BT_VOID)
7062 {
7063 if (expr->expr_type != EXPR_STRUCTURE)
7064 {
7065 gfc_init_se (&se, NULL);
7066 gfc_conv_expr (&se, expr);
7067 gfc_add_block_to_block (&block, &se.pre);
7068 if (cm->ts.u.derived->attr.alloc_comp
7069 && expr->expr_type == EXPR_VARIABLE)
7070 {
7071 tmp = gfc_copy_alloc_comp (cm->ts.u.derived, se.expr,
7072 dest, expr->rank);
7073 gfc_add_expr_to_block (&block, tmp);
7074 }
7075 else
7076 gfc_add_modify (&block, dest,
7077 fold_convert (TREE_TYPE (dest), se.expr));
7078 gfc_add_block_to_block (&block, &se.post);
7079 }
7080 else
7081 {
7082 /* Nested constructors. */
7083 tmp = gfc_trans_structure_assign (dest, expr, expr->symtree != NULL);
7084 gfc_add_expr_to_block (&block, tmp);
7085 }
7086 }
7087 else if (gfc_deferred_strlen (cm, &tmp))
7088 {
7089 tree strlen;
7090 strlen = tmp;
7091 gcc_assert (strlen);
7092 strlen = fold_build3_loc (input_location, COMPONENT_REF,
7093 TREE_TYPE (strlen),
7094 TREE_OPERAND (dest, 0),
7095 strlen, NULL_TREE);
7096
7097 if (expr->expr_type == EXPR_NULL)
7098 {
7099 tmp = build_int_cst (TREE_TYPE (cm->backend_decl), 0);
7100 gfc_add_modify (&block, dest, tmp);
7101 tmp = build_int_cst (TREE_TYPE (strlen), 0);
7102 gfc_add_modify (&block, strlen, tmp);
7103 }
7104 else
7105 {
7106 tree size;
7107 gfc_init_se (&se, NULL);
7108 gfc_conv_expr (&se, expr);
7109 size = size_of_string_in_bytes (cm->ts.kind, se.string_length);
7110 tmp = build_call_expr_loc (input_location,
7111 builtin_decl_explicit (BUILT_IN_MALLOC),
7112 1, size);
7113 gfc_add_modify (&block, dest,
7114 fold_convert (TREE_TYPE (dest), tmp));
7115 gfc_add_modify (&block, strlen, se.string_length);
7116 tmp = gfc_build_memcpy_call (dest, se.expr, size);
7117 gfc_add_expr_to_block (&block, tmp);
7118 }
7119 }
7120 else if (!cm->attr.artificial)
7121 {
7122 /* Scalar component (excluding deferred parameters). */
7123 gfc_init_se (&se, NULL);
7124 gfc_init_se (&lse, NULL);
7125
7126 gfc_conv_expr (&se, expr);
7127 if (cm->ts.type == BT_CHARACTER)
7128 lse.string_length = cm->ts.u.cl->backend_decl;
7129 lse.expr = dest;
7130 tmp = gfc_trans_scalar_assign (&lse, &se, cm->ts, true, false, true);
7131 gfc_add_expr_to_block (&block, tmp);
7132 }
7133 return gfc_finish_block (&block);
7134 }
7135
7136 /* Assign a derived type constructor to a variable. */
7137
7138 static tree
7139 gfc_trans_structure_assign (tree dest, gfc_expr * expr, bool init)
7140 {
7141 gfc_constructor *c;
7142 gfc_component *cm;
7143 stmtblock_t block;
7144 tree field;
7145 tree tmp;
7146
7147 gfc_start_block (&block);
7148 cm = expr->ts.u.derived->components;
7149
7150 if (expr->ts.u.derived->from_intmod == INTMOD_ISO_C_BINDING
7151 && (expr->ts.u.derived->intmod_sym_id == ISOCBINDING_PTR
7152 || expr->ts.u.derived->intmod_sym_id == ISOCBINDING_FUNPTR))
7153 {
7154 gfc_se se, lse;
7155
7156 gcc_assert (cm->backend_decl == NULL);
7157 gfc_init_se (&se, NULL);
7158 gfc_init_se (&lse, NULL);
7159 gfc_conv_expr (&se, gfc_constructor_first (expr->value.constructor)->expr);
7160 lse.expr = dest;
7161 gfc_add_modify (&block, lse.expr,
7162 fold_convert (TREE_TYPE (lse.expr), se.expr));
7163
7164 return gfc_finish_block (&block);
7165 }
7166
7167 for (c = gfc_constructor_first (expr->value.constructor);
7168 c; c = gfc_constructor_next (c), cm = cm->next)
7169 {
7170 /* Skip absent members in default initializers. */
7171 if (!c->expr && !cm->attr.allocatable)
7172 continue;
7173
7174 field = cm->backend_decl;
7175 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
7176 dest, field, NULL_TREE);
7177 if (!c->expr)
7178 {
7179 gfc_expr *e = gfc_get_null_expr (NULL);
7180 tmp = gfc_trans_subcomponent_assign (tmp, cm, e, expr->ts.u.derived,
7181 init);
7182 gfc_free_expr (e);
7183 }
7184 else
7185 tmp = gfc_trans_subcomponent_assign (tmp, cm, c->expr,
7186 expr->ts.u.derived, init);
7187 gfc_add_expr_to_block (&block, tmp);
7188 }
7189 return gfc_finish_block (&block);
7190 }
7191
7192 /* Build an expression for a constructor. If init is nonzero then
7193 this is part of a static variable initializer. */
7194
7195 void
7196 gfc_conv_structure (gfc_se * se, gfc_expr * expr, int init)
7197 {
7198 gfc_constructor *c;
7199 gfc_component *cm;
7200 tree val;
7201 tree type;
7202 tree tmp;
7203 vec<constructor_elt, va_gc> *v = NULL;
7204
7205 gcc_assert (se->ss == NULL);
7206 gcc_assert (expr->expr_type == EXPR_STRUCTURE);
7207 type = gfc_typenode_for_spec (&expr->ts);
7208
7209 if (!init)
7210 {
7211 /* Create a temporary variable and fill it in. */
7212 se->expr = gfc_create_var (type, expr->ts.u.derived->name);
7213 /* The symtree in expr is NULL, if the code to generate is for
7214 initializing the static members only. */
7215 tmp = gfc_trans_structure_assign (se->expr, expr, expr->symtree != NULL);
7216 gfc_add_expr_to_block (&se->pre, tmp);
7217 return;
7218 }
7219
7220 cm = expr->ts.u.derived->components;
7221
7222 for (c = gfc_constructor_first (expr->value.constructor);
7223 c; c = gfc_constructor_next (c), cm = cm->next)
7224 {
7225 /* Skip absent members in default initializers and allocatable
7226 components. Although the latter have a default initializer
7227 of EXPR_NULL,... by default, the static nullify is not needed
7228 since this is done every time we come into scope. */
7229 if (!c->expr || (cm->attr.allocatable && cm->attr.flavor != FL_PROCEDURE))
7230 continue;
7231
7232 if (cm->initializer && cm->initializer->expr_type != EXPR_NULL
7233 && strcmp (cm->name, "_extends") == 0
7234 && cm->initializer->symtree)
7235 {
7236 tree vtab;
7237 gfc_symbol *vtabs;
7238 vtabs = cm->initializer->symtree->n.sym;
7239 vtab = gfc_build_addr_expr (NULL_TREE, gfc_get_symbol_decl (vtabs));
7240 vtab = unshare_expr_without_location (vtab);
7241 CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl, vtab);
7242 }
7243 else if (cm->ts.u.derived && strcmp (cm->name, "_size") == 0)
7244 {
7245 val = TYPE_SIZE_UNIT (gfc_get_derived_type (cm->ts.u.derived));
7246 CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl,
7247 fold_convert (TREE_TYPE (cm->backend_decl),
7248 val));
7249 }
7250 else if (cm->ts.type == BT_INTEGER && strcmp (cm->name, "_len") == 0)
7251 CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl,
7252 fold_convert (TREE_TYPE (cm->backend_decl),
7253 integer_zero_node));
7254 else
7255 {
7256 val = gfc_conv_initializer (c->expr, &cm->ts,
7257 TREE_TYPE (cm->backend_decl),
7258 cm->attr.dimension, cm->attr.pointer,
7259 cm->attr.proc_pointer);
7260 val = unshare_expr_without_location (val);
7261
7262 /* Append it to the constructor list. */
7263 CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl, val);
7264 }
7265 }
7266 se->expr = build_constructor (type, v);
7267 if (init)
7268 TREE_CONSTANT (se->expr) = 1;
7269 }
7270
7271
7272 /* Translate a substring expression. */
7273
7274 static void
7275 gfc_conv_substring_expr (gfc_se * se, gfc_expr * expr)
7276 {
7277 gfc_ref *ref;
7278
7279 ref = expr->ref;
7280
7281 gcc_assert (ref == NULL || ref->type == REF_SUBSTRING);
7282
7283 se->expr = gfc_build_wide_string_const (expr->ts.kind,
7284 expr->value.character.length,
7285 expr->value.character.string);
7286
7287 se->string_length = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (se->expr)));
7288 TYPE_STRING_FLAG (TREE_TYPE (se->expr)) = 1;
7289
7290 if (ref)
7291 gfc_conv_substring (se, ref, expr->ts.kind, NULL, &expr->where);
7292 }
7293
7294
7295 /* Entry point for expression translation. Evaluates a scalar quantity.
7296 EXPR is the expression to be translated, and SE is the state structure if
7297 called from within the scalarized. */
7298
7299 void
7300 gfc_conv_expr (gfc_se * se, gfc_expr * expr)
7301 {
7302 gfc_ss *ss;
7303
7304 ss = se->ss;
7305 if (ss && ss->info->expr == expr
7306 && (ss->info->type == GFC_SS_SCALAR
7307 || ss->info->type == GFC_SS_REFERENCE))
7308 {
7309 gfc_ss_info *ss_info;
7310
7311 ss_info = ss->info;
7312 /* Substitute a scalar expression evaluated outside the scalarization
7313 loop. */
7314 se->expr = ss_info->data.scalar.value;
7315 /* If the reference can be NULL, the value field contains the reference,
7316 not the value the reference points to (see gfc_add_loop_ss_code). */
7317 if (ss_info->can_be_null_ref)
7318 se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
7319
7320 se->string_length = ss_info->string_length;
7321 gfc_advance_se_ss_chain (se);
7322 return;
7323 }
7324
7325 /* We need to convert the expressions for the iso_c_binding derived types.
7326 C_NULL_PTR and C_NULL_FUNPTR will be made EXPR_NULL, which evaluates to
7327 null_pointer_node. C_PTR and C_FUNPTR are converted to match the
7328 typespec for the C_PTR and C_FUNPTR symbols, which has already been
7329 updated to be an integer with a kind equal to the size of a (void *). */
7330 if (expr->ts.type == BT_DERIVED && expr->ts.u.derived->ts.f90_type == BT_VOID
7331 && expr->ts.u.derived->attr.is_bind_c)
7332 {
7333 if (expr->expr_type == EXPR_VARIABLE
7334 && (expr->symtree->n.sym->intmod_sym_id == ISOCBINDING_NULL_PTR
7335 || expr->symtree->n.sym->intmod_sym_id
7336 == ISOCBINDING_NULL_FUNPTR))
7337 {
7338 /* Set expr_type to EXPR_NULL, which will result in
7339 null_pointer_node being used below. */
7340 expr->expr_type = EXPR_NULL;
7341 }
7342 else
7343 {
7344 /* Update the type/kind of the expression to be what the new
7345 type/kind are for the updated symbols of C_PTR/C_FUNPTR. */
7346 expr->ts.type = BT_INTEGER;
7347 expr->ts.f90_type = BT_VOID;
7348 expr->ts.kind = gfc_index_integer_kind;
7349 }
7350 }
7351
7352 gfc_fix_class_refs (expr);
7353
7354 switch (expr->expr_type)
7355 {
7356 case EXPR_OP:
7357 gfc_conv_expr_op (se, expr);
7358 break;
7359
7360 case EXPR_FUNCTION:
7361 gfc_conv_function_expr (se, expr);
7362 break;
7363
7364 case EXPR_CONSTANT:
7365 gfc_conv_constant (se, expr);
7366 break;
7367
7368 case EXPR_VARIABLE:
7369 gfc_conv_variable (se, expr);
7370 break;
7371
7372 case EXPR_NULL:
7373 se->expr = null_pointer_node;
7374 break;
7375
7376 case EXPR_SUBSTRING:
7377 gfc_conv_substring_expr (se, expr);
7378 break;
7379
7380 case EXPR_STRUCTURE:
7381 gfc_conv_structure (se, expr, 0);
7382 break;
7383
7384 case EXPR_ARRAY:
7385 gfc_conv_array_constructor_expr (se, expr);
7386 break;
7387
7388 default:
7389 gcc_unreachable ();
7390 break;
7391 }
7392 }
7393
7394 /* Like gfc_conv_expr_val, but the value is also suitable for use in the lhs
7395 of an assignment. */
7396 void
7397 gfc_conv_expr_lhs (gfc_se * se, gfc_expr * expr)
7398 {
7399 gfc_conv_expr (se, expr);
7400 /* All numeric lvalues should have empty post chains. If not we need to
7401 figure out a way of rewriting an lvalue so that it has no post chain. */
7402 gcc_assert (expr->ts.type == BT_CHARACTER || !se->post.head);
7403 }
7404
7405 /* Like gfc_conv_expr, but the POST block is guaranteed to be empty for
7406 numeric expressions. Used for scalar values where inserting cleanup code
7407 is inconvenient. */
7408 void
7409 gfc_conv_expr_val (gfc_se * se, gfc_expr * expr)
7410 {
7411 tree val;
7412
7413 gcc_assert (expr->ts.type != BT_CHARACTER);
7414 gfc_conv_expr (se, expr);
7415 if (se->post.head)
7416 {
7417 val = gfc_create_var (TREE_TYPE (se->expr), NULL);
7418 gfc_add_modify (&se->pre, val, se->expr);
7419 se->expr = val;
7420 gfc_add_block_to_block (&se->pre, &se->post);
7421 }
7422 }
7423
7424 /* Helper to translate an expression and convert it to a particular type. */
7425 void
7426 gfc_conv_expr_type (gfc_se * se, gfc_expr * expr, tree type)
7427 {
7428 gfc_conv_expr_val (se, expr);
7429 se->expr = convert (type, se->expr);
7430 }
7431
7432
7433 /* Converts an expression so that it can be passed by reference. Scalar
7434 values only. */
7435
7436 void
7437 gfc_conv_expr_reference (gfc_se * se, gfc_expr * expr)
7438 {
7439 gfc_ss *ss;
7440 tree var;
7441
7442 ss = se->ss;
7443 if (ss && ss->info->expr == expr
7444 && ss->info->type == GFC_SS_REFERENCE)
7445 {
7446 /* Returns a reference to the scalar evaluated outside the loop
7447 for this case. */
7448 gfc_conv_expr (se, expr);
7449
7450 if (expr->ts.type == BT_CHARACTER
7451 && expr->expr_type != EXPR_FUNCTION)
7452 gfc_conv_string_parameter (se);
7453 else
7454 se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
7455
7456 return;
7457 }
7458
7459 if (expr->ts.type == BT_CHARACTER)
7460 {
7461 gfc_conv_expr (se, expr);
7462 gfc_conv_string_parameter (se);
7463 return;
7464 }
7465
7466 if (expr->expr_type == EXPR_VARIABLE)
7467 {
7468 se->want_pointer = 1;
7469 gfc_conv_expr (se, expr);
7470 if (se->post.head)
7471 {
7472 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
7473 gfc_add_modify (&se->pre, var, se->expr);
7474 gfc_add_block_to_block (&se->pre, &se->post);
7475 se->expr = var;
7476 }
7477 return;
7478 }
7479
7480 if (expr->expr_type == EXPR_FUNCTION
7481 && ((expr->value.function.esym
7482 && expr->value.function.esym->result->attr.pointer
7483 && !expr->value.function.esym->result->attr.dimension)
7484 || (!expr->value.function.esym && !expr->ref
7485 && expr->symtree->n.sym->attr.pointer
7486 && !expr->symtree->n.sym->attr.dimension)))
7487 {
7488 se->want_pointer = 1;
7489 gfc_conv_expr (se, expr);
7490 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
7491 gfc_add_modify (&se->pre, var, se->expr);
7492 se->expr = var;
7493 return;
7494 }
7495
7496 gfc_conv_expr (se, expr);
7497
7498 /* Create a temporary var to hold the value. */
7499 if (TREE_CONSTANT (se->expr))
7500 {
7501 tree tmp = se->expr;
7502 STRIP_TYPE_NOPS (tmp);
7503 var = build_decl (input_location,
7504 CONST_DECL, NULL, TREE_TYPE (tmp));
7505 DECL_INITIAL (var) = tmp;
7506 TREE_STATIC (var) = 1;
7507 pushdecl (var);
7508 }
7509 else
7510 {
7511 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
7512 gfc_add_modify (&se->pre, var, se->expr);
7513 }
7514 gfc_add_block_to_block (&se->pre, &se->post);
7515
7516 /* Take the address of that value. */
7517 se->expr = gfc_build_addr_expr (NULL_TREE, var);
7518 if (expr->ts.type == BT_DERIVED && expr->rank
7519 && !gfc_is_finalizable (expr->ts.u.derived, NULL)
7520 && expr->ts.u.derived->attr.alloc_comp
7521 && expr->expr_type != EXPR_VARIABLE)
7522 {
7523 tree tmp;
7524
7525 tmp = build_fold_indirect_ref_loc (input_location, se->expr);
7526 tmp = gfc_deallocate_alloc_comp (expr->ts.u.derived, tmp, expr->rank);
7527
7528 /* The components shall be deallocated before
7529 their containing entity. */
7530 gfc_prepend_expr_to_block (&se->post, tmp);
7531 }
7532 }
7533
7534
7535 tree
7536 gfc_trans_pointer_assign (gfc_code * code)
7537 {
7538 return gfc_trans_pointer_assignment (code->expr1, code->expr2);
7539 }
7540
7541
7542 /* Generate code for a pointer assignment. */
7543
7544 tree
7545 gfc_trans_pointer_assignment (gfc_expr * expr1, gfc_expr * expr2)
7546 {
7547 gfc_expr *expr1_vptr = NULL;
7548 gfc_se lse;
7549 gfc_se rse;
7550 stmtblock_t block;
7551 tree desc;
7552 tree tmp;
7553 tree decl;
7554 bool scalar;
7555 gfc_ss *ss;
7556
7557 gfc_start_block (&block);
7558
7559 gfc_init_se (&lse, NULL);
7560
7561 /* Check whether the expression is a scalar or not; we cannot use
7562 expr1->rank as it can be nonzero for proc pointers. */
7563 ss = gfc_walk_expr (expr1);
7564 scalar = ss == gfc_ss_terminator;
7565 if (!scalar)
7566 gfc_free_ss_chain (ss);
7567
7568 if (expr1->ts.type == BT_DERIVED && expr2->ts.type == BT_CLASS
7569 && expr2->expr_type != EXPR_FUNCTION)
7570 {
7571 gfc_add_data_component (expr2);
7572 /* The following is required as gfc_add_data_component doesn't
7573 update ts.type if there is a tailing REF_ARRAY. */
7574 expr2->ts.type = BT_DERIVED;
7575 }
7576
7577 if (scalar)
7578 {
7579 /* Scalar pointers. */
7580 lse.want_pointer = 1;
7581 gfc_conv_expr (&lse, expr1);
7582 gfc_init_se (&rse, NULL);
7583 rse.want_pointer = 1;
7584 gfc_conv_expr (&rse, expr2);
7585
7586 if (expr1->symtree->n.sym->attr.proc_pointer
7587 && expr1->symtree->n.sym->attr.dummy)
7588 lse.expr = build_fold_indirect_ref_loc (input_location,
7589 lse.expr);
7590
7591 if (expr2->symtree && expr2->symtree->n.sym->attr.proc_pointer
7592 && expr2->symtree->n.sym->attr.dummy)
7593 rse.expr = build_fold_indirect_ref_loc (input_location,
7594 rse.expr);
7595
7596 gfc_add_block_to_block (&block, &lse.pre);
7597 gfc_add_block_to_block (&block, &rse.pre);
7598
7599 /* For string assignments to unlimited polymorphic pointers add an
7600 assignment of the string_length to the _len component of the
7601 pointer. */
7602 if ((expr1->ts.type == BT_CLASS || expr1->ts.type == BT_DERIVED)
7603 && expr1->ts.u.derived->attr.unlimited_polymorphic
7604 && (expr2->ts.type == BT_CHARACTER ||
7605 ((expr2->ts.type == BT_DERIVED || expr2->ts.type == BT_CLASS)
7606 && expr2->ts.u.derived->attr.unlimited_polymorphic)))
7607 {
7608 gfc_expr *len_comp;
7609 gfc_se se;
7610 len_comp = gfc_get_len_component (expr1);
7611 gfc_init_se (&se, NULL);
7612 gfc_conv_expr (&se, len_comp);
7613
7614 /* ptr % _len = len (str) */
7615 gfc_add_modify (&block, se.expr, rse.string_length);
7616 lse.string_length = se.expr;
7617 gfc_free_expr (len_comp);
7618 }
7619
7620 /* Check character lengths if character expression. The test is only
7621 really added if -fbounds-check is enabled. Exclude deferred
7622 character length lefthand sides. */
7623 if (expr1->ts.type == BT_CHARACTER && expr2->expr_type != EXPR_NULL
7624 && !expr1->ts.deferred
7625 && !expr1->symtree->n.sym->attr.proc_pointer
7626 && !gfc_is_proc_ptr_comp (expr1))
7627 {
7628 gcc_assert (expr2->ts.type == BT_CHARACTER);
7629 gcc_assert (lse.string_length && rse.string_length);
7630 gfc_trans_same_strlen_check ("pointer assignment", &expr1->where,
7631 lse.string_length, rse.string_length,
7632 &block);
7633 }
7634
7635 /* The assignment to an deferred character length sets the string
7636 length to that of the rhs. */
7637 if (expr1->ts.deferred)
7638 {
7639 if (expr2->expr_type != EXPR_NULL && lse.string_length != NULL)
7640 gfc_add_modify (&block, lse.string_length, rse.string_length);
7641 else if (lse.string_length != NULL)
7642 gfc_add_modify (&block, lse.string_length,
7643 build_int_cst (gfc_charlen_type_node, 0));
7644 }
7645
7646 if (expr1->ts.type == BT_DERIVED && expr2->ts.type == BT_CLASS)
7647 rse.expr = gfc_class_data_get (rse.expr);
7648
7649 gfc_add_modify (&block, lse.expr,
7650 fold_convert (TREE_TYPE (lse.expr), rse.expr));
7651
7652 gfc_add_block_to_block (&block, &rse.post);
7653 gfc_add_block_to_block (&block, &lse.post);
7654 }
7655 else
7656 {
7657 gfc_ref* remap;
7658 bool rank_remap;
7659 tree strlen_lhs;
7660 tree strlen_rhs = NULL_TREE;
7661
7662 /* Array pointer. Find the last reference on the LHS and if it is an
7663 array section ref, we're dealing with bounds remapping. In this case,
7664 set it to AR_FULL so that gfc_conv_expr_descriptor does
7665 not see it and process the bounds remapping afterwards explicitly. */
7666 for (remap = expr1->ref; remap; remap = remap->next)
7667 if (!remap->next && remap->type == REF_ARRAY
7668 && remap->u.ar.type == AR_SECTION)
7669 break;
7670 rank_remap = (remap && remap->u.ar.end[0]);
7671
7672 gfc_init_se (&lse, NULL);
7673 if (remap)
7674 lse.descriptor_only = 1;
7675 if (expr2->expr_type == EXPR_FUNCTION && expr2->ts.type == BT_CLASS
7676 && expr1->ts.type == BT_CLASS)
7677 expr1_vptr = gfc_copy_expr (expr1);
7678 gfc_conv_expr_descriptor (&lse, expr1);
7679 strlen_lhs = lse.string_length;
7680 desc = lse.expr;
7681
7682 if (expr2->expr_type == EXPR_NULL)
7683 {
7684 /* Just set the data pointer to null. */
7685 gfc_conv_descriptor_data_set (&lse.pre, lse.expr, null_pointer_node);
7686 }
7687 else if (rank_remap)
7688 {
7689 /* If we are rank-remapping, just get the RHS's descriptor and
7690 process this later on. */
7691 gfc_init_se (&rse, NULL);
7692 rse.direct_byref = 1;
7693 rse.byref_noassign = 1;
7694
7695 if (expr2->expr_type == EXPR_FUNCTION && expr2->ts.type == BT_CLASS)
7696 {
7697 gfc_conv_function_expr (&rse, expr2);
7698
7699 if (expr1->ts.type != BT_CLASS)
7700 rse.expr = gfc_class_data_get (rse.expr);
7701 else
7702 {
7703 gfc_add_block_to_block (&block, &rse.pre);
7704 tmp = gfc_create_var (TREE_TYPE (rse.expr), "ptrtemp");
7705 gfc_add_modify (&lse.pre, tmp, rse.expr);
7706
7707 gfc_add_vptr_component (expr1_vptr);
7708 gfc_init_se (&rse, NULL);
7709 rse.want_pointer = 1;
7710 gfc_conv_expr (&rse, expr1_vptr);
7711 gfc_add_modify (&lse.pre, rse.expr,
7712 fold_convert (TREE_TYPE (rse.expr),
7713 gfc_class_vptr_get (tmp)));
7714 rse.expr = gfc_class_data_get (tmp);
7715 }
7716 }
7717 else if (expr2->expr_type == EXPR_FUNCTION)
7718 {
7719 tree bound[GFC_MAX_DIMENSIONS];
7720 int i;
7721
7722 for (i = 0; i < expr2->rank; i++)
7723 bound[i] = NULL_TREE;
7724 tmp = gfc_typenode_for_spec (&expr2->ts);
7725 tmp = gfc_get_array_type_bounds (tmp, expr2->rank, 0,
7726 bound, bound, 0,
7727 GFC_ARRAY_POINTER_CONT, false);
7728 tmp = gfc_create_var (tmp, "ptrtemp");
7729 lse.descriptor_only = 0;
7730 lse.expr = tmp;
7731 lse.direct_byref = 1;
7732 gfc_conv_expr_descriptor (&lse, expr2);
7733 strlen_rhs = lse.string_length;
7734 rse.expr = tmp;
7735 }
7736 else
7737 {
7738 gfc_conv_expr_descriptor (&rse, expr2);
7739 strlen_rhs = rse.string_length;
7740 }
7741 }
7742 else if (expr2->expr_type == EXPR_VARIABLE)
7743 {
7744 /* Assign directly to the LHS's descriptor. */
7745 lse.descriptor_only = 0;
7746 lse.direct_byref = 1;
7747 gfc_conv_expr_descriptor (&lse, expr2);
7748 strlen_rhs = lse.string_length;
7749
7750 /* If this is a subreference array pointer assignment, use the rhs
7751 descriptor element size for the lhs span. */
7752 if (expr1->symtree->n.sym->attr.subref_array_pointer)
7753 {
7754 decl = expr1->symtree->n.sym->backend_decl;
7755 gfc_init_se (&rse, NULL);
7756 rse.descriptor_only = 1;
7757 gfc_conv_expr (&rse, expr2);
7758 tmp = gfc_get_element_type (TREE_TYPE (rse.expr));
7759 tmp = fold_convert (gfc_array_index_type, size_in_bytes (tmp));
7760 if (!INTEGER_CST_P (tmp))
7761 gfc_add_block_to_block (&lse.post, &rse.pre);
7762 gfc_add_modify (&lse.post, GFC_DECL_SPAN(decl), tmp);
7763 }
7764 }
7765 else if (expr2->expr_type == EXPR_FUNCTION && expr2->ts.type == BT_CLASS)
7766 {
7767 gfc_init_se (&rse, NULL);
7768 rse.want_pointer = 1;
7769 gfc_conv_function_expr (&rse, expr2);
7770 if (expr1->ts.type != BT_CLASS)
7771 {
7772 rse.expr = gfc_class_data_get (rse.expr);
7773 gfc_add_modify (&lse.pre, desc, rse.expr);
7774 }
7775 else
7776 {
7777 gfc_add_block_to_block (&block, &rse.pre);
7778 tmp = gfc_create_var (TREE_TYPE (rse.expr), "ptrtemp");
7779 gfc_add_modify (&lse.pre, tmp, rse.expr);
7780
7781 gfc_add_vptr_component (expr1_vptr);
7782 gfc_init_se (&rse, NULL);
7783 rse.want_pointer = 1;
7784 gfc_conv_expr (&rse, expr1_vptr);
7785 gfc_add_modify (&lse.pre, rse.expr,
7786 fold_convert (TREE_TYPE (rse.expr),
7787 gfc_class_vptr_get (tmp)));
7788 rse.expr = gfc_class_data_get (tmp);
7789 gfc_add_modify (&lse.pre, desc, rse.expr);
7790 }
7791 }
7792 else
7793 {
7794 /* Assign to a temporary descriptor and then copy that
7795 temporary to the pointer. */
7796 tmp = gfc_create_var (TREE_TYPE (desc), "ptrtemp");
7797 lse.descriptor_only = 0;
7798 lse.expr = tmp;
7799 lse.direct_byref = 1;
7800 gfc_conv_expr_descriptor (&lse, expr2);
7801 strlen_rhs = lse.string_length;
7802 gfc_add_modify (&lse.pre, desc, tmp);
7803 }
7804
7805 if (expr1_vptr)
7806 gfc_free_expr (expr1_vptr);
7807
7808 gfc_add_block_to_block (&block, &lse.pre);
7809 if (rank_remap)
7810 gfc_add_block_to_block (&block, &rse.pre);
7811
7812 /* If we do bounds remapping, update LHS descriptor accordingly. */
7813 if (remap)
7814 {
7815 int dim;
7816 gcc_assert (remap->u.ar.dimen == expr1->rank);
7817
7818 if (rank_remap)
7819 {
7820 /* Do rank remapping. We already have the RHS's descriptor
7821 converted in rse and now have to build the correct LHS
7822 descriptor for it. */
7823
7824 tree dtype, data;
7825 tree offs, stride;
7826 tree lbound, ubound;
7827
7828 /* Set dtype. */
7829 dtype = gfc_conv_descriptor_dtype (desc);
7830 tmp = gfc_get_dtype (TREE_TYPE (desc));
7831 gfc_add_modify (&block, dtype, tmp);
7832
7833 /* Copy data pointer. */
7834 data = gfc_conv_descriptor_data_get (rse.expr);
7835 gfc_conv_descriptor_data_set (&block, desc, data);
7836
7837 /* Copy offset but adjust it such that it would correspond
7838 to a lbound of zero. */
7839 offs = gfc_conv_descriptor_offset_get (rse.expr);
7840 for (dim = 0; dim < expr2->rank; ++dim)
7841 {
7842 stride = gfc_conv_descriptor_stride_get (rse.expr,
7843 gfc_rank_cst[dim]);
7844 lbound = gfc_conv_descriptor_lbound_get (rse.expr,
7845 gfc_rank_cst[dim]);
7846 tmp = fold_build2_loc (input_location, MULT_EXPR,
7847 gfc_array_index_type, stride, lbound);
7848 offs = fold_build2_loc (input_location, PLUS_EXPR,
7849 gfc_array_index_type, offs, tmp);
7850 }
7851 gfc_conv_descriptor_offset_set (&block, desc, offs);
7852
7853 /* Set the bounds as declared for the LHS and calculate strides as
7854 well as another offset update accordingly. */
7855 stride = gfc_conv_descriptor_stride_get (rse.expr,
7856 gfc_rank_cst[0]);
7857 for (dim = 0; dim < expr1->rank; ++dim)
7858 {
7859 gfc_se lower_se;
7860 gfc_se upper_se;
7861
7862 gcc_assert (remap->u.ar.start[dim] && remap->u.ar.end[dim]);
7863
7864 /* Convert declared bounds. */
7865 gfc_init_se (&lower_se, NULL);
7866 gfc_init_se (&upper_se, NULL);
7867 gfc_conv_expr (&lower_se, remap->u.ar.start[dim]);
7868 gfc_conv_expr (&upper_se, remap->u.ar.end[dim]);
7869
7870 gfc_add_block_to_block (&block, &lower_se.pre);
7871 gfc_add_block_to_block (&block, &upper_se.pre);
7872
7873 lbound = fold_convert (gfc_array_index_type, lower_se.expr);
7874 ubound = fold_convert (gfc_array_index_type, upper_se.expr);
7875
7876 lbound = gfc_evaluate_now (lbound, &block);
7877 ubound = gfc_evaluate_now (ubound, &block);
7878
7879 gfc_add_block_to_block (&block, &lower_se.post);
7880 gfc_add_block_to_block (&block, &upper_se.post);
7881
7882 /* Set bounds in descriptor. */
7883 gfc_conv_descriptor_lbound_set (&block, desc,
7884 gfc_rank_cst[dim], lbound);
7885 gfc_conv_descriptor_ubound_set (&block, desc,
7886 gfc_rank_cst[dim], ubound);
7887
7888 /* Set stride. */
7889 stride = gfc_evaluate_now (stride, &block);
7890 gfc_conv_descriptor_stride_set (&block, desc,
7891 gfc_rank_cst[dim], stride);
7892
7893 /* Update offset. */
7894 offs = gfc_conv_descriptor_offset_get (desc);
7895 tmp = fold_build2_loc (input_location, MULT_EXPR,
7896 gfc_array_index_type, lbound, stride);
7897 offs = fold_build2_loc (input_location, MINUS_EXPR,
7898 gfc_array_index_type, offs, tmp);
7899 offs = gfc_evaluate_now (offs, &block);
7900 gfc_conv_descriptor_offset_set (&block, desc, offs);
7901
7902 /* Update stride. */
7903 tmp = gfc_conv_array_extent_dim (lbound, ubound, NULL);
7904 stride = fold_build2_loc (input_location, MULT_EXPR,
7905 gfc_array_index_type, stride, tmp);
7906 }
7907 }
7908 else
7909 {
7910 /* Bounds remapping. Just shift the lower bounds. */
7911
7912 gcc_assert (expr1->rank == expr2->rank);
7913
7914 for (dim = 0; dim < remap->u.ar.dimen; ++dim)
7915 {
7916 gfc_se lbound_se;
7917
7918 gcc_assert (remap->u.ar.start[dim]);
7919 gcc_assert (!remap->u.ar.end[dim]);
7920 gfc_init_se (&lbound_se, NULL);
7921 gfc_conv_expr (&lbound_se, remap->u.ar.start[dim]);
7922
7923 gfc_add_block_to_block (&block, &lbound_se.pre);
7924 gfc_conv_shift_descriptor_lbound (&block, desc,
7925 dim, lbound_se.expr);
7926 gfc_add_block_to_block (&block, &lbound_se.post);
7927 }
7928 }
7929 }
7930
7931 /* Check string lengths if applicable. The check is only really added
7932 to the output code if -fbounds-check is enabled. */
7933 if (expr1->ts.type == BT_CHARACTER && expr2->expr_type != EXPR_NULL)
7934 {
7935 gcc_assert (expr2->ts.type == BT_CHARACTER);
7936 gcc_assert (strlen_lhs && strlen_rhs);
7937 gfc_trans_same_strlen_check ("pointer assignment", &expr1->where,
7938 strlen_lhs, strlen_rhs, &block);
7939 }
7940
7941 /* If rank remapping was done, check with -fcheck=bounds that
7942 the target is at least as large as the pointer. */
7943 if (rank_remap && (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS))
7944 {
7945 tree lsize, rsize;
7946 tree fault;
7947 const char* msg;
7948
7949 lsize = gfc_conv_descriptor_size (lse.expr, expr1->rank);
7950 rsize = gfc_conv_descriptor_size (rse.expr, expr2->rank);
7951
7952 lsize = gfc_evaluate_now (lsize, &block);
7953 rsize = gfc_evaluate_now (rsize, &block);
7954 fault = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
7955 rsize, lsize);
7956
7957 msg = _("Target of rank remapping is too small (%ld < %ld)");
7958 gfc_trans_runtime_check (true, false, fault, &block, &expr2->where,
7959 msg, rsize, lsize);
7960 }
7961
7962 gfc_add_block_to_block (&block, &lse.post);
7963 if (rank_remap)
7964 gfc_add_block_to_block (&block, &rse.post);
7965 }
7966
7967 return gfc_finish_block (&block);
7968 }
7969
7970
7971 /* Makes sure se is suitable for passing as a function string parameter. */
7972 /* TODO: Need to check all callers of this function. It may be abused. */
7973
7974 void
7975 gfc_conv_string_parameter (gfc_se * se)
7976 {
7977 tree type;
7978
7979 if (TREE_CODE (se->expr) == STRING_CST)
7980 {
7981 type = TREE_TYPE (TREE_TYPE (se->expr));
7982 se->expr = gfc_build_addr_expr (build_pointer_type (type), se->expr);
7983 return;
7984 }
7985
7986 if (TYPE_STRING_FLAG (TREE_TYPE (se->expr)))
7987 {
7988 if (TREE_CODE (se->expr) != INDIRECT_REF)
7989 {
7990 type = TREE_TYPE (se->expr);
7991 se->expr = gfc_build_addr_expr (build_pointer_type (type), se->expr);
7992 }
7993 else
7994 {
7995 type = gfc_get_character_type_len (gfc_default_character_kind,
7996 se->string_length);
7997 type = build_pointer_type (type);
7998 se->expr = gfc_build_addr_expr (type, se->expr);
7999 }
8000 }
8001
8002 gcc_assert (POINTER_TYPE_P (TREE_TYPE (se->expr)));
8003 }
8004
8005
8006 /* Generate code for assignment of scalar variables. Includes character
8007 strings and derived types with allocatable components.
8008 If you know that the LHS has no allocations, set dealloc to false.
8009
8010 DEEP_COPY has no effect if the typespec TS is not a derived type with
8011 allocatable components. Otherwise, if it is set, an explicit copy of each
8012 allocatable component is made. This is necessary as a simple copy of the
8013 whole object would copy array descriptors as is, so that the lhs's
8014 allocatable components would point to the rhs's after the assignment.
8015 Typically, setting DEEP_COPY is necessary if the rhs is a variable, and not
8016 necessary if the rhs is a non-pointer function, as the allocatable components
8017 are not accessible by other means than the function's result after the
8018 function has returned. It is even more subtle when temporaries are involved,
8019 as the two following examples show:
8020 1. When we evaluate an array constructor, a temporary is created. Thus
8021 there is theoretically no alias possible. However, no deep copy is
8022 made for this temporary, so that if the constructor is made of one or
8023 more variable with allocatable components, those components still point
8024 to the variable's: DEEP_COPY should be set for the assignment from the
8025 temporary to the lhs in that case.
8026 2. When assigning a scalar to an array, we evaluate the scalar value out
8027 of the loop, store it into a temporary variable, and assign from that.
8028 In that case, deep copying when assigning to the temporary would be a
8029 waste of resources; however deep copies should happen when assigning from
8030 the temporary to each array element: again DEEP_COPY should be set for
8031 the assignment from the temporary to the lhs. */
8032
8033 tree
8034 gfc_trans_scalar_assign (gfc_se * lse, gfc_se * rse, gfc_typespec ts,
8035 bool l_is_temp, bool deep_copy, bool dealloc)
8036 {
8037 stmtblock_t block;
8038 tree tmp;
8039 tree cond;
8040
8041 gfc_init_block (&block);
8042
8043 if (ts.type == BT_CHARACTER)
8044 {
8045 tree rlen = NULL;
8046 tree llen = NULL;
8047
8048 if (lse->string_length != NULL_TREE)
8049 {
8050 gfc_conv_string_parameter (lse);
8051 gfc_add_block_to_block (&block, &lse->pre);
8052 llen = lse->string_length;
8053 }
8054
8055 if (rse->string_length != NULL_TREE)
8056 {
8057 gcc_assert (rse->string_length != NULL_TREE);
8058 gfc_conv_string_parameter (rse);
8059 gfc_add_block_to_block (&block, &rse->pre);
8060 rlen = rse->string_length;
8061 }
8062
8063 gfc_trans_string_copy (&block, llen, lse->expr, ts.kind, rlen,
8064 rse->expr, ts.kind);
8065 }
8066 else if (ts.type == BT_DERIVED && ts.u.derived->attr.alloc_comp)
8067 {
8068 tree tmp_var = NULL_TREE;
8069 cond = NULL_TREE;
8070
8071 /* Are the rhs and the lhs the same? */
8072 if (deep_copy)
8073 {
8074 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
8075 gfc_build_addr_expr (NULL_TREE, lse->expr),
8076 gfc_build_addr_expr (NULL_TREE, rse->expr));
8077 cond = gfc_evaluate_now (cond, &lse->pre);
8078 }
8079
8080 /* Deallocate the lhs allocated components as long as it is not
8081 the same as the rhs. This must be done following the assignment
8082 to prevent deallocating data that could be used in the rhs
8083 expression. */
8084 if (!l_is_temp && dealloc)
8085 {
8086 tmp_var = gfc_evaluate_now (lse->expr, &lse->pre);
8087 tmp = gfc_deallocate_alloc_comp_no_caf (ts.u.derived, tmp_var, 0);
8088 if (deep_copy)
8089 tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
8090 tmp);
8091 gfc_add_expr_to_block (&lse->post, tmp);
8092 }
8093
8094 gfc_add_block_to_block (&block, &rse->pre);
8095 gfc_add_block_to_block (&block, &lse->pre);
8096
8097 gfc_add_modify (&block, lse->expr,
8098 fold_convert (TREE_TYPE (lse->expr), rse->expr));
8099
8100 /* Restore pointer address of coarray components. */
8101 if (ts.u.derived->attr.coarray_comp && deep_copy && tmp_var != NULL_TREE)
8102 {
8103 tmp = gfc_reassign_alloc_comp_caf (ts.u.derived, tmp_var, lse->expr);
8104 tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
8105 tmp);
8106 gfc_add_expr_to_block (&block, tmp);
8107 }
8108
8109 /* Do a deep copy if the rhs is a variable, if it is not the
8110 same as the lhs. */
8111 if (deep_copy)
8112 {
8113 tmp = gfc_copy_alloc_comp (ts.u.derived, rse->expr, lse->expr, 0);
8114 tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
8115 tmp);
8116 gfc_add_expr_to_block (&block, tmp);
8117 }
8118 }
8119 else if (ts.type == BT_DERIVED || ts.type == BT_CLASS)
8120 {
8121 gfc_add_block_to_block (&block, &lse->pre);
8122 gfc_add_block_to_block (&block, &rse->pre);
8123 tmp = fold_build1_loc (input_location, VIEW_CONVERT_EXPR,
8124 TREE_TYPE (lse->expr), rse->expr);
8125 gfc_add_modify (&block, lse->expr, tmp);
8126 }
8127 else
8128 {
8129 gfc_add_block_to_block (&block, &lse->pre);
8130 gfc_add_block_to_block (&block, &rse->pre);
8131
8132 gfc_add_modify (&block, lse->expr,
8133 fold_convert (TREE_TYPE (lse->expr), rse->expr));
8134 }
8135
8136 gfc_add_block_to_block (&block, &lse->post);
8137 gfc_add_block_to_block (&block, &rse->post);
8138
8139 return gfc_finish_block (&block);
8140 }
8141
8142
8143 /* There are quite a lot of restrictions on the optimisation in using an
8144 array function assign without a temporary. */
8145
8146 static bool
8147 arrayfunc_assign_needs_temporary (gfc_expr * expr1, gfc_expr * expr2)
8148 {
8149 gfc_ref * ref;
8150 bool seen_array_ref;
8151 bool c = false;
8152 gfc_symbol *sym = expr1->symtree->n.sym;
8153
8154 /* Play it safe with class functions assigned to a derived type. */
8155 if (gfc_is_alloc_class_array_function (expr2)
8156 && expr1->ts.type == BT_DERIVED)
8157 return true;
8158
8159 /* The caller has already checked rank>0 and expr_type == EXPR_FUNCTION. */
8160 if (expr2->value.function.isym && !gfc_is_intrinsic_libcall (expr2))
8161 return true;
8162
8163 /* Elemental functions are scalarized so that they don't need a
8164 temporary in gfc_trans_assignment_1, so return a true. Otherwise,
8165 they would need special treatment in gfc_trans_arrayfunc_assign. */
8166 if (expr2->value.function.esym != NULL
8167 && expr2->value.function.esym->attr.elemental)
8168 return true;
8169
8170 /* Need a temporary if rhs is not FULL or a contiguous section. */
8171 if (expr1->ref && !(gfc_full_array_ref_p (expr1->ref, &c) || c))
8172 return true;
8173
8174 /* Need a temporary if EXPR1 can't be expressed as a descriptor. */
8175 if (gfc_ref_needs_temporary_p (expr1->ref))
8176 return true;
8177
8178 /* Functions returning pointers or allocatables need temporaries. */
8179 c = expr2->value.function.esym
8180 ? (expr2->value.function.esym->attr.pointer
8181 || expr2->value.function.esym->attr.allocatable)
8182 : (expr2->symtree->n.sym->attr.pointer
8183 || expr2->symtree->n.sym->attr.allocatable);
8184 if (c)
8185 return true;
8186
8187 /* Character array functions need temporaries unless the
8188 character lengths are the same. */
8189 if (expr2->ts.type == BT_CHARACTER && expr2->rank > 0)
8190 {
8191 if (expr1->ts.u.cl->length == NULL
8192 || expr1->ts.u.cl->length->expr_type != EXPR_CONSTANT)
8193 return true;
8194
8195 if (expr2->ts.u.cl->length == NULL
8196 || expr2->ts.u.cl->length->expr_type != EXPR_CONSTANT)
8197 return true;
8198
8199 if (mpz_cmp (expr1->ts.u.cl->length->value.integer,
8200 expr2->ts.u.cl->length->value.integer) != 0)
8201 return true;
8202 }
8203
8204 /* Check that no LHS component references appear during an array
8205 reference. This is needed because we do not have the means to
8206 span any arbitrary stride with an array descriptor. This check
8207 is not needed for the rhs because the function result has to be
8208 a complete type. */
8209 seen_array_ref = false;
8210 for (ref = expr1->ref; ref; ref = ref->next)
8211 {
8212 if (ref->type == REF_ARRAY)
8213 seen_array_ref= true;
8214 else if (ref->type == REF_COMPONENT && seen_array_ref)
8215 return true;
8216 }
8217
8218 /* Check for a dependency. */
8219 if (gfc_check_fncall_dependency (expr1, INTENT_OUT,
8220 expr2->value.function.esym,
8221 expr2->value.function.actual,
8222 NOT_ELEMENTAL))
8223 return true;
8224
8225 /* If we have reached here with an intrinsic function, we do not
8226 need a temporary except in the particular case that reallocation
8227 on assignment is active and the lhs is allocatable and a target. */
8228 if (expr2->value.function.isym)
8229 return (flag_realloc_lhs && sym->attr.allocatable && sym->attr.target);
8230
8231 /* If the LHS is a dummy, we need a temporary if it is not
8232 INTENT(OUT). */
8233 if (sym->attr.dummy && sym->attr.intent != INTENT_OUT)
8234 return true;
8235
8236 /* If the lhs has been host_associated, is in common, a pointer or is
8237 a target and the function is not using a RESULT variable, aliasing
8238 can occur and a temporary is needed. */
8239 if ((sym->attr.host_assoc
8240 || sym->attr.in_common
8241 || sym->attr.pointer
8242 || sym->attr.cray_pointee
8243 || sym->attr.target)
8244 && expr2->symtree != NULL
8245 && expr2->symtree->n.sym == expr2->symtree->n.sym->result)
8246 return true;
8247
8248 /* A PURE function can unconditionally be called without a temporary. */
8249 if (expr2->value.function.esym != NULL
8250 && expr2->value.function.esym->attr.pure)
8251 return false;
8252
8253 /* Implicit_pure functions are those which could legally be declared
8254 to be PURE. */
8255 if (expr2->value.function.esym != NULL
8256 && expr2->value.function.esym->attr.implicit_pure)
8257 return false;
8258
8259 if (!sym->attr.use_assoc
8260 && !sym->attr.in_common
8261 && !sym->attr.pointer
8262 && !sym->attr.target
8263 && !sym->attr.cray_pointee
8264 && expr2->value.function.esym)
8265 {
8266 /* A temporary is not needed if the function is not contained and
8267 the variable is local or host associated and not a pointer or
8268 a target. */
8269 if (!expr2->value.function.esym->attr.contained)
8270 return false;
8271
8272 /* A temporary is not needed if the lhs has never been host
8273 associated and the procedure is contained. */
8274 else if (!sym->attr.host_assoc)
8275 return false;
8276
8277 /* A temporary is not needed if the variable is local and not
8278 a pointer, a target or a result. */
8279 if (sym->ns->parent
8280 && expr2->value.function.esym->ns == sym->ns->parent)
8281 return false;
8282 }
8283
8284 /* Default to temporary use. */
8285 return true;
8286 }
8287
8288
8289 /* Provide the loop info so that the lhs descriptor can be built for
8290 reallocatable assignments from extrinsic function calls. */
8291
8292 static void
8293 realloc_lhs_loop_for_fcn_call (gfc_se *se, locus *where, gfc_ss **ss,
8294 gfc_loopinfo *loop)
8295 {
8296 /* Signal that the function call should not be made by
8297 gfc_conv_loop_setup. */
8298 se->ss->is_alloc_lhs = 1;
8299 gfc_init_loopinfo (loop);
8300 gfc_add_ss_to_loop (loop, *ss);
8301 gfc_add_ss_to_loop (loop, se->ss);
8302 gfc_conv_ss_startstride (loop);
8303 gfc_conv_loop_setup (loop, where);
8304 gfc_copy_loopinfo_to_se (se, loop);
8305 gfc_add_block_to_block (&se->pre, &loop->pre);
8306 gfc_add_block_to_block (&se->pre, &loop->post);
8307 se->ss->is_alloc_lhs = 0;
8308 }
8309
8310
8311 /* For assignment to a reallocatable lhs from intrinsic functions,
8312 replace the se.expr (ie. the result) with a temporary descriptor.
8313 Null the data field so that the library allocates space for the
8314 result. Free the data of the original descriptor after the function,
8315 in case it appears in an argument expression and transfer the
8316 result to the original descriptor. */
8317
8318 static void
8319 fcncall_realloc_result (gfc_se *se, int rank)
8320 {
8321 tree desc;
8322 tree res_desc;
8323 tree tmp;
8324 tree offset;
8325 tree zero_cond;
8326 int n;
8327
8328 /* Use the allocation done by the library. Substitute the lhs
8329 descriptor with a copy, whose data field is nulled.*/
8330 desc = build_fold_indirect_ref_loc (input_location, se->expr);
8331 if (POINTER_TYPE_P (TREE_TYPE (desc)))
8332 desc = build_fold_indirect_ref_loc (input_location, desc);
8333
8334 /* Unallocated, the descriptor does not have a dtype. */
8335 tmp = gfc_conv_descriptor_dtype (desc);
8336 gfc_add_modify (&se->pre, tmp, gfc_get_dtype (TREE_TYPE (desc)));
8337
8338 res_desc = gfc_evaluate_now (desc, &se->pre);
8339 gfc_conv_descriptor_data_set (&se->pre, res_desc, null_pointer_node);
8340 se->expr = gfc_build_addr_expr (NULL_TREE, res_desc);
8341
8342 /* Free the lhs after the function call and copy the result data to
8343 the lhs descriptor. */
8344 tmp = gfc_conv_descriptor_data_get (desc);
8345 zero_cond = fold_build2_loc (input_location, EQ_EXPR,
8346 boolean_type_node, tmp,
8347 build_int_cst (TREE_TYPE (tmp), 0));
8348 zero_cond = gfc_evaluate_now (zero_cond, &se->post);
8349 tmp = gfc_call_free (fold_convert (pvoid_type_node, tmp));
8350 gfc_add_expr_to_block (&se->post, tmp);
8351
8352 tmp = gfc_conv_descriptor_data_get (res_desc);
8353 gfc_conv_descriptor_data_set (&se->post, desc, tmp);
8354
8355 /* Check that the shapes are the same between lhs and expression. */
8356 for (n = 0 ; n < rank; n++)
8357 {
8358 tree tmp1;
8359 tmp = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[n]);
8360 tmp1 = gfc_conv_descriptor_lbound_get (res_desc, gfc_rank_cst[n]);
8361 tmp = fold_build2_loc (input_location, MINUS_EXPR,
8362 gfc_array_index_type, tmp, tmp1);
8363 tmp1 = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[n]);
8364 tmp = fold_build2_loc (input_location, MINUS_EXPR,
8365 gfc_array_index_type, tmp, tmp1);
8366 tmp1 = gfc_conv_descriptor_ubound_get (res_desc, gfc_rank_cst[n]);
8367 tmp = fold_build2_loc (input_location, PLUS_EXPR,
8368 gfc_array_index_type, tmp, tmp1);
8369 tmp = fold_build2_loc (input_location, NE_EXPR,
8370 boolean_type_node, tmp,
8371 gfc_index_zero_node);
8372 tmp = gfc_evaluate_now (tmp, &se->post);
8373 zero_cond = fold_build2_loc (input_location, TRUTH_OR_EXPR,
8374 boolean_type_node, tmp,
8375 zero_cond);
8376 }
8377
8378 /* 'zero_cond' being true is equal to lhs not being allocated or the
8379 shapes being different. */
8380 zero_cond = gfc_evaluate_now (zero_cond, &se->post);
8381
8382 /* Now reset the bounds returned from the function call to bounds based
8383 on the lhs lbounds, except where the lhs is not allocated or the shapes
8384 of 'variable and 'expr' are different. Set the offset accordingly. */
8385 offset = gfc_index_zero_node;
8386 for (n = 0 ; n < rank; n++)
8387 {
8388 tree lbound;
8389
8390 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[n]);
8391 lbound = fold_build3_loc (input_location, COND_EXPR,
8392 gfc_array_index_type, zero_cond,
8393 gfc_index_one_node, lbound);
8394 lbound = gfc_evaluate_now (lbound, &se->post);
8395
8396 tmp = gfc_conv_descriptor_ubound_get (res_desc, gfc_rank_cst[n]);
8397 tmp = fold_build2_loc (input_location, PLUS_EXPR,
8398 gfc_array_index_type, tmp, lbound);
8399 gfc_conv_descriptor_lbound_set (&se->post, desc,
8400 gfc_rank_cst[n], lbound);
8401 gfc_conv_descriptor_ubound_set (&se->post, desc,
8402 gfc_rank_cst[n], tmp);
8403
8404 /* Set stride and accumulate the offset. */
8405 tmp = gfc_conv_descriptor_stride_get (res_desc, gfc_rank_cst[n]);
8406 gfc_conv_descriptor_stride_set (&se->post, desc,
8407 gfc_rank_cst[n], tmp);
8408 tmp = fold_build2_loc (input_location, MULT_EXPR,
8409 gfc_array_index_type, lbound, tmp);
8410 offset = fold_build2_loc (input_location, MINUS_EXPR,
8411 gfc_array_index_type, offset, tmp);
8412 offset = gfc_evaluate_now (offset, &se->post);
8413 }
8414
8415 gfc_conv_descriptor_offset_set (&se->post, desc, offset);
8416 }
8417
8418
8419
8420 /* Try to translate array(:) = func (...), where func is a transformational
8421 array function, without using a temporary. Returns NULL if this isn't the
8422 case. */
8423
8424 static tree
8425 gfc_trans_arrayfunc_assign (gfc_expr * expr1, gfc_expr * expr2)
8426 {
8427 gfc_se se;
8428 gfc_ss *ss = NULL;
8429 gfc_component *comp = NULL;
8430 gfc_loopinfo loop;
8431
8432 if (arrayfunc_assign_needs_temporary (expr1, expr2))
8433 return NULL;
8434
8435 /* The frontend doesn't seem to bother filling in expr->symtree for intrinsic
8436 functions. */
8437 comp = gfc_get_proc_ptr_comp (expr2);
8438 gcc_assert (expr2->value.function.isym
8439 || (comp && comp->attr.dimension)
8440 || (!comp && gfc_return_by_reference (expr2->value.function.esym)
8441 && expr2->value.function.esym->result->attr.dimension));
8442
8443 gfc_init_se (&se, NULL);
8444 gfc_start_block (&se.pre);
8445 se.want_pointer = 1;
8446
8447 gfc_conv_array_parameter (&se, expr1, false, NULL, NULL, NULL);
8448
8449 if (expr1->ts.type == BT_DERIVED
8450 && expr1->ts.u.derived->attr.alloc_comp)
8451 {
8452 tree tmp;
8453 tmp = gfc_deallocate_alloc_comp_no_caf (expr1->ts.u.derived, se.expr,
8454 expr1->rank);
8455 gfc_add_expr_to_block (&se.pre, tmp);
8456 }
8457
8458 se.direct_byref = 1;
8459 se.ss = gfc_walk_expr (expr2);
8460 gcc_assert (se.ss != gfc_ss_terminator);
8461
8462 /* Reallocate on assignment needs the loopinfo for extrinsic functions.
8463 This is signalled to gfc_conv_procedure_call by setting is_alloc_lhs.
8464 Clearly, this cannot be done for an allocatable function result, since
8465 the shape of the result is unknown and, in any case, the function must
8466 correctly take care of the reallocation internally. For intrinsic
8467 calls, the array data is freed and the library takes care of allocation.
8468 TODO: Add logic of trans-array.c: gfc_alloc_allocatable_for_assignment
8469 to the library. */
8470 if (flag_realloc_lhs
8471 && gfc_is_reallocatable_lhs (expr1)
8472 && !gfc_expr_attr (expr1).codimension
8473 && !gfc_is_coindexed (expr1)
8474 && !(expr2->value.function.esym
8475 && expr2->value.function.esym->result->attr.allocatable))
8476 {
8477 realloc_lhs_warning (expr1->ts.type, true, &expr1->where);
8478
8479 if (!expr2->value.function.isym)
8480 {
8481 ss = gfc_walk_expr (expr1);
8482 gcc_assert (ss != gfc_ss_terminator);
8483
8484 realloc_lhs_loop_for_fcn_call (&se, &expr1->where, &ss, &loop);
8485 ss->is_alloc_lhs = 1;
8486 }
8487 else
8488 fcncall_realloc_result (&se, expr1->rank);
8489 }
8490
8491 gfc_conv_function_expr (&se, expr2);
8492 gfc_add_block_to_block (&se.pre, &se.post);
8493
8494 if (ss)
8495 gfc_cleanup_loop (&loop);
8496 else
8497 gfc_free_ss_chain (se.ss);
8498
8499 return gfc_finish_block (&se.pre);
8500 }
8501
8502
8503 /* Try to efficiently translate array(:) = 0. Return NULL if this
8504 can't be done. */
8505
8506 static tree
8507 gfc_trans_zero_assign (gfc_expr * expr)
8508 {
8509 tree dest, len, type;
8510 tree tmp;
8511 gfc_symbol *sym;
8512
8513 sym = expr->symtree->n.sym;
8514 dest = gfc_get_symbol_decl (sym);
8515
8516 type = TREE_TYPE (dest);
8517 if (POINTER_TYPE_P (type))
8518 type = TREE_TYPE (type);
8519 if (!GFC_ARRAY_TYPE_P (type))
8520 return NULL_TREE;
8521
8522 /* Determine the length of the array. */
8523 len = GFC_TYPE_ARRAY_SIZE (type);
8524 if (!len || TREE_CODE (len) != INTEGER_CST)
8525 return NULL_TREE;
8526
8527 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (type));
8528 len = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type, len,
8529 fold_convert (gfc_array_index_type, tmp));
8530
8531 /* If we are zeroing a local array avoid taking its address by emitting
8532 a = {} instead. */
8533 if (!POINTER_TYPE_P (TREE_TYPE (dest)))
8534 return build2_loc (input_location, MODIFY_EXPR, void_type_node,
8535 dest, build_constructor (TREE_TYPE (dest),
8536 NULL));
8537
8538 /* Convert arguments to the correct types. */
8539 dest = fold_convert (pvoid_type_node, dest);
8540 len = fold_convert (size_type_node, len);
8541
8542 /* Construct call to __builtin_memset. */
8543 tmp = build_call_expr_loc (input_location,
8544 builtin_decl_explicit (BUILT_IN_MEMSET),
8545 3, dest, integer_zero_node, len);
8546 return fold_convert (void_type_node, tmp);
8547 }
8548
8549
8550 /* Helper for gfc_trans_array_copy and gfc_trans_array_constructor_copy
8551 that constructs the call to __builtin_memcpy. */
8552
8553 tree
8554 gfc_build_memcpy_call (tree dst, tree src, tree len)
8555 {
8556 tree tmp;
8557
8558 /* Convert arguments to the correct types. */
8559 if (!POINTER_TYPE_P (TREE_TYPE (dst)))
8560 dst = gfc_build_addr_expr (pvoid_type_node, dst);
8561 else
8562 dst = fold_convert (pvoid_type_node, dst);
8563
8564 if (!POINTER_TYPE_P (TREE_TYPE (src)))
8565 src = gfc_build_addr_expr (pvoid_type_node, src);
8566 else
8567 src = fold_convert (pvoid_type_node, src);
8568
8569 len = fold_convert (size_type_node, len);
8570
8571 /* Construct call to __builtin_memcpy. */
8572 tmp = build_call_expr_loc (input_location,
8573 builtin_decl_explicit (BUILT_IN_MEMCPY),
8574 3, dst, src, len);
8575 return fold_convert (void_type_node, tmp);
8576 }
8577
8578
8579 /* Try to efficiently translate dst(:) = src(:). Return NULL if this
8580 can't be done. EXPR1 is the destination/lhs and EXPR2 is the
8581 source/rhs, both are gfc_full_array_ref_p which have been checked for
8582 dependencies. */
8583
8584 static tree
8585 gfc_trans_array_copy (gfc_expr * expr1, gfc_expr * expr2)
8586 {
8587 tree dst, dlen, dtype;
8588 tree src, slen, stype;
8589 tree tmp;
8590
8591 dst = gfc_get_symbol_decl (expr1->symtree->n.sym);
8592 src = gfc_get_symbol_decl (expr2->symtree->n.sym);
8593
8594 dtype = TREE_TYPE (dst);
8595 if (POINTER_TYPE_P (dtype))
8596 dtype = TREE_TYPE (dtype);
8597 stype = TREE_TYPE (src);
8598 if (POINTER_TYPE_P (stype))
8599 stype = TREE_TYPE (stype);
8600
8601 if (!GFC_ARRAY_TYPE_P (dtype) || !GFC_ARRAY_TYPE_P (stype))
8602 return NULL_TREE;
8603
8604 /* Determine the lengths of the arrays. */
8605 dlen = GFC_TYPE_ARRAY_SIZE (dtype);
8606 if (!dlen || TREE_CODE (dlen) != INTEGER_CST)
8607 return NULL_TREE;
8608 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (dtype));
8609 dlen = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
8610 dlen, fold_convert (gfc_array_index_type, tmp));
8611
8612 slen = GFC_TYPE_ARRAY_SIZE (stype);
8613 if (!slen || TREE_CODE (slen) != INTEGER_CST)
8614 return NULL_TREE;
8615 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (stype));
8616 slen = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
8617 slen, fold_convert (gfc_array_index_type, tmp));
8618
8619 /* Sanity check that they are the same. This should always be
8620 the case, as we should already have checked for conformance. */
8621 if (!tree_int_cst_equal (slen, dlen))
8622 return NULL_TREE;
8623
8624 return gfc_build_memcpy_call (dst, src, dlen);
8625 }
8626
8627
8628 /* Try to efficiently translate array(:) = (/ ... /). Return NULL if
8629 this can't be done. EXPR1 is the destination/lhs for which
8630 gfc_full_array_ref_p is true, and EXPR2 is the source/rhs. */
8631
8632 static tree
8633 gfc_trans_array_constructor_copy (gfc_expr * expr1, gfc_expr * expr2)
8634 {
8635 unsigned HOST_WIDE_INT nelem;
8636 tree dst, dtype;
8637 tree src, stype;
8638 tree len;
8639 tree tmp;
8640
8641 nelem = gfc_constant_array_constructor_p (expr2->value.constructor);
8642 if (nelem == 0)
8643 return NULL_TREE;
8644
8645 dst = gfc_get_symbol_decl (expr1->symtree->n.sym);
8646 dtype = TREE_TYPE (dst);
8647 if (POINTER_TYPE_P (dtype))
8648 dtype = TREE_TYPE (dtype);
8649 if (!GFC_ARRAY_TYPE_P (dtype))
8650 return NULL_TREE;
8651
8652 /* Determine the lengths of the array. */
8653 len = GFC_TYPE_ARRAY_SIZE (dtype);
8654 if (!len || TREE_CODE (len) != INTEGER_CST)
8655 return NULL_TREE;
8656
8657 /* Confirm that the constructor is the same size. */
8658 if (compare_tree_int (len, nelem) != 0)
8659 return NULL_TREE;
8660
8661 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (dtype));
8662 len = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type, len,
8663 fold_convert (gfc_array_index_type, tmp));
8664
8665 stype = gfc_typenode_for_spec (&expr2->ts);
8666 src = gfc_build_constant_array_constructor (expr2, stype);
8667
8668 stype = TREE_TYPE (src);
8669 if (POINTER_TYPE_P (stype))
8670 stype = TREE_TYPE (stype);
8671
8672 return gfc_build_memcpy_call (dst, src, len);
8673 }
8674
8675
8676 /* Tells whether the expression is to be treated as a variable reference. */
8677
8678 static bool
8679 expr_is_variable (gfc_expr *expr)
8680 {
8681 gfc_expr *arg;
8682 gfc_component *comp;
8683 gfc_symbol *func_ifc;
8684
8685 if (expr->expr_type == EXPR_VARIABLE)
8686 return true;
8687
8688 arg = gfc_get_noncopying_intrinsic_argument (expr);
8689 if (arg)
8690 {
8691 gcc_assert (expr->value.function.isym->id == GFC_ISYM_TRANSPOSE);
8692 return expr_is_variable (arg);
8693 }
8694
8695 /* A data-pointer-returning function should be considered as a variable
8696 too. */
8697 if (expr->expr_type == EXPR_FUNCTION
8698 && expr->ref == NULL)
8699 {
8700 if (expr->value.function.isym != NULL)
8701 return false;
8702
8703 if (expr->value.function.esym != NULL)
8704 {
8705 func_ifc = expr->value.function.esym;
8706 goto found_ifc;
8707 }
8708 else
8709 {
8710 gcc_assert (expr->symtree);
8711 func_ifc = expr->symtree->n.sym;
8712 goto found_ifc;
8713 }
8714
8715 gcc_unreachable ();
8716 }
8717
8718 comp = gfc_get_proc_ptr_comp (expr);
8719 if ((expr->expr_type == EXPR_PPC || expr->expr_type == EXPR_FUNCTION)
8720 && comp)
8721 {
8722 func_ifc = comp->ts.interface;
8723 goto found_ifc;
8724 }
8725
8726 if (expr->expr_type == EXPR_COMPCALL)
8727 {
8728 gcc_assert (!expr->value.compcall.tbp->is_generic);
8729 func_ifc = expr->value.compcall.tbp->u.specific->n.sym;
8730 goto found_ifc;
8731 }
8732
8733 return false;
8734
8735 found_ifc:
8736 gcc_assert (func_ifc->attr.function
8737 && func_ifc->result != NULL);
8738 return func_ifc->result->attr.pointer;
8739 }
8740
8741
8742 /* Is the lhs OK for automatic reallocation? */
8743
8744 static bool
8745 is_scalar_reallocatable_lhs (gfc_expr *expr)
8746 {
8747 gfc_ref * ref;
8748
8749 /* An allocatable variable with no reference. */
8750 if (expr->symtree->n.sym->attr.allocatable
8751 && !expr->ref)
8752 return true;
8753
8754 /* All that can be left are allocatable components. */
8755 if ((expr->symtree->n.sym->ts.type != BT_DERIVED
8756 && expr->symtree->n.sym->ts.type != BT_CLASS)
8757 || !expr->symtree->n.sym->ts.u.derived->attr.alloc_comp)
8758 return false;
8759
8760 /* Find an allocatable component ref last. */
8761 for (ref = expr->ref; ref; ref = ref->next)
8762 if (ref->type == REF_COMPONENT
8763 && !ref->next
8764 && ref->u.c.component->attr.allocatable)
8765 return true;
8766
8767 return false;
8768 }
8769
8770
8771 /* Allocate or reallocate scalar lhs, as necessary. */
8772
8773 static void
8774 alloc_scalar_allocatable_for_assignment (stmtblock_t *block,
8775 tree string_length,
8776 gfc_expr *expr1,
8777 gfc_expr *expr2)
8778
8779 {
8780 tree cond;
8781 tree tmp;
8782 tree size;
8783 tree size_in_bytes;
8784 tree jump_label1;
8785 tree jump_label2;
8786 gfc_se lse;
8787
8788 if (!expr1 || expr1->rank)
8789 return;
8790
8791 if (!expr2 || expr2->rank)
8792 return;
8793
8794 realloc_lhs_warning (expr2->ts.type, false, &expr2->where);
8795
8796 /* Since this is a scalar lhs, we can afford to do this. That is,
8797 there is no risk of side effects being repeated. */
8798 gfc_init_se (&lse, NULL);
8799 lse.want_pointer = 1;
8800 gfc_conv_expr (&lse, expr1);
8801
8802 jump_label1 = gfc_build_label_decl (NULL_TREE);
8803 jump_label2 = gfc_build_label_decl (NULL_TREE);
8804
8805 /* Do the allocation if the lhs is NULL. Otherwise go to label 1. */
8806 tmp = build_int_cst (TREE_TYPE (lse.expr), 0);
8807 cond = fold_build2_loc (input_location, NE_EXPR, boolean_type_node,
8808 lse.expr, tmp);
8809 tmp = build3_v (COND_EXPR, cond,
8810 build1_v (GOTO_EXPR, jump_label1),
8811 build_empty_stmt (input_location));
8812 gfc_add_expr_to_block (block, tmp);
8813
8814 if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
8815 {
8816 /* Use the rhs string length and the lhs element size. */
8817 size = string_length;
8818 tmp = TREE_TYPE (gfc_typenode_for_spec (&expr1->ts));
8819 tmp = TYPE_SIZE_UNIT (tmp);
8820 size_in_bytes = fold_build2_loc (input_location, MULT_EXPR,
8821 TREE_TYPE (tmp), tmp,
8822 fold_convert (TREE_TYPE (tmp), size));
8823 }
8824 else
8825 {
8826 /* Otherwise use the length in bytes of the rhs. */
8827 size = TYPE_SIZE_UNIT (gfc_typenode_for_spec (&expr1->ts));
8828 size_in_bytes = size;
8829 }
8830
8831 size_in_bytes = fold_build2_loc (input_location, MAX_EXPR, size_type_node,
8832 size_in_bytes, size_one_node);
8833
8834 if (expr1->ts.type == BT_DERIVED && expr1->ts.u.derived->attr.alloc_comp)
8835 {
8836 tmp = build_call_expr_loc (input_location,
8837 builtin_decl_explicit (BUILT_IN_CALLOC),
8838 2, build_one_cst (size_type_node),
8839 size_in_bytes);
8840 tmp = fold_convert (TREE_TYPE (lse.expr), tmp);
8841 gfc_add_modify (block, lse.expr, tmp);
8842 }
8843 else
8844 {
8845 tmp = build_call_expr_loc (input_location,
8846 builtin_decl_explicit (BUILT_IN_MALLOC),
8847 1, size_in_bytes);
8848 tmp = fold_convert (TREE_TYPE (lse.expr), tmp);
8849 gfc_add_modify (block, lse.expr, tmp);
8850 }
8851
8852 if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
8853 {
8854 /* Deferred characters need checking for lhs and rhs string
8855 length. Other deferred parameter variables will have to
8856 come here too. */
8857 tmp = build1_v (GOTO_EXPR, jump_label2);
8858 gfc_add_expr_to_block (block, tmp);
8859 }
8860 tmp = build1_v (LABEL_EXPR, jump_label1);
8861 gfc_add_expr_to_block (block, tmp);
8862
8863 /* For a deferred length character, reallocate if lengths of lhs and
8864 rhs are different. */
8865 if (expr1->ts.type == BT_CHARACTER && expr1->ts.deferred)
8866 {
8867 cond = fold_build2_loc (input_location, EQ_EXPR, boolean_type_node,
8868 lse.string_length, size);
8869 /* Jump past the realloc if the lengths are the same. */
8870 tmp = build3_v (COND_EXPR, cond,
8871 build1_v (GOTO_EXPR, jump_label2),
8872 build_empty_stmt (input_location));
8873 gfc_add_expr_to_block (block, tmp);
8874 tmp = build_call_expr_loc (input_location,
8875 builtin_decl_explicit (BUILT_IN_REALLOC),
8876 2, fold_convert (pvoid_type_node, lse.expr),
8877 size_in_bytes);
8878 tmp = fold_convert (TREE_TYPE (lse.expr), tmp);
8879 gfc_add_modify (block, lse.expr, tmp);
8880 tmp = build1_v (LABEL_EXPR, jump_label2);
8881 gfc_add_expr_to_block (block, tmp);
8882
8883 /* Update the lhs character length. */
8884 size = string_length;
8885 gfc_add_modify (block, lse.string_length, size);
8886 }
8887 }
8888
8889 /* Check for assignments of the type
8890
8891 a = a + 4
8892
8893 to make sure we do not check for reallocation unneccessarily. */
8894
8895
8896 static bool
8897 is_runtime_conformable (gfc_expr *expr1, gfc_expr *expr2)
8898 {
8899 gfc_actual_arglist *a;
8900 gfc_expr *e1, *e2;
8901
8902 switch (expr2->expr_type)
8903 {
8904 case EXPR_VARIABLE:
8905 return gfc_dep_compare_expr (expr1, expr2) == 0;
8906
8907 case EXPR_FUNCTION:
8908 if (expr2->value.function.esym
8909 && expr2->value.function.esym->attr.elemental)
8910 {
8911 for (a = expr2->value.function.actual; a != NULL; a = a->next)
8912 {
8913 e1 = a->expr;
8914 if (e1 && e1->rank > 0 && !is_runtime_conformable (expr1, e1))
8915 return false;
8916 }
8917 return true;
8918 }
8919 else if (expr2->value.function.isym
8920 && expr2->value.function.isym->elemental)
8921 {
8922 for (a = expr2->value.function.actual; a != NULL; a = a->next)
8923 {
8924 e1 = a->expr;
8925 if (e1 && e1->rank > 0 && !is_runtime_conformable (expr1, e1))
8926 return false;
8927 }
8928 return true;
8929 }
8930
8931 break;
8932
8933 case EXPR_OP:
8934 switch (expr2->value.op.op)
8935 {
8936 case INTRINSIC_NOT:
8937 case INTRINSIC_UPLUS:
8938 case INTRINSIC_UMINUS:
8939 case INTRINSIC_PARENTHESES:
8940 return is_runtime_conformable (expr1, expr2->value.op.op1);
8941
8942 case INTRINSIC_PLUS:
8943 case INTRINSIC_MINUS:
8944 case INTRINSIC_TIMES:
8945 case INTRINSIC_DIVIDE:
8946 case INTRINSIC_POWER:
8947 case INTRINSIC_AND:
8948 case INTRINSIC_OR:
8949 case INTRINSIC_EQV:
8950 case INTRINSIC_NEQV:
8951 case INTRINSIC_EQ:
8952 case INTRINSIC_NE:
8953 case INTRINSIC_GT:
8954 case INTRINSIC_GE:
8955 case INTRINSIC_LT:
8956 case INTRINSIC_LE:
8957 case INTRINSIC_EQ_OS:
8958 case INTRINSIC_NE_OS:
8959 case INTRINSIC_GT_OS:
8960 case INTRINSIC_GE_OS:
8961 case INTRINSIC_LT_OS:
8962 case INTRINSIC_LE_OS:
8963
8964 e1 = expr2->value.op.op1;
8965 e2 = expr2->value.op.op2;
8966
8967 if (e1->rank == 0 && e2->rank > 0)
8968 return is_runtime_conformable (expr1, e2);
8969 else if (e1->rank > 0 && e2->rank == 0)
8970 return is_runtime_conformable (expr1, e1);
8971 else if (e1->rank > 0 && e2->rank > 0)
8972 return is_runtime_conformable (expr1, e1)
8973 && is_runtime_conformable (expr1, e2);
8974 break;
8975
8976 default:
8977 break;
8978
8979 }
8980
8981 break;
8982
8983 default:
8984 break;
8985 }
8986 return false;
8987 }
8988
8989 /* Subroutine of gfc_trans_assignment that actually scalarizes the
8990 assignment. EXPR1 is the destination/LHS and EXPR2 is the source/RHS.
8991 init_flag indicates initialization expressions and dealloc that no
8992 deallocate prior assignment is needed (if in doubt, set true). */
8993
8994 static tree
8995 gfc_trans_assignment_1 (gfc_expr * expr1, gfc_expr * expr2, bool init_flag,
8996 bool dealloc)
8997 {
8998 gfc_se lse;
8999 gfc_se rse;
9000 gfc_ss *lss;
9001 gfc_ss *lss_section;
9002 gfc_ss *rss;
9003 gfc_loopinfo loop;
9004 tree tmp;
9005 stmtblock_t block;
9006 stmtblock_t body;
9007 bool l_is_temp;
9008 bool scalar_to_array;
9009 tree string_length;
9010 int n;
9011
9012 /* Assignment of the form lhs = rhs. */
9013 gfc_start_block (&block);
9014
9015 gfc_init_se (&lse, NULL);
9016 gfc_init_se (&rse, NULL);
9017
9018 /* Walk the lhs. */
9019 lss = gfc_walk_expr (expr1);
9020 if (gfc_is_reallocatable_lhs (expr1)
9021 && !(expr2->expr_type == EXPR_FUNCTION
9022 && expr2->value.function.isym != NULL))
9023 lss->is_alloc_lhs = 1;
9024 rss = NULL;
9025
9026 if ((expr1->ts.type == BT_DERIVED)
9027 && (gfc_is_alloc_class_array_function (expr2)
9028 || gfc_is_alloc_class_scalar_function (expr2)))
9029 expr2->must_finalize = 1;
9030
9031 if (lss != gfc_ss_terminator)
9032 {
9033 /* The assignment needs scalarization. */
9034 lss_section = lss;
9035
9036 /* Find a non-scalar SS from the lhs. */
9037 while (lss_section != gfc_ss_terminator
9038 && lss_section->info->type != GFC_SS_SECTION)
9039 lss_section = lss_section->next;
9040
9041 gcc_assert (lss_section != gfc_ss_terminator);
9042
9043 /* Initialize the scalarizer. */
9044 gfc_init_loopinfo (&loop);
9045
9046 /* Walk the rhs. */
9047 rss = gfc_walk_expr (expr2);
9048 if (rss == gfc_ss_terminator)
9049 /* The rhs is scalar. Add a ss for the expression. */
9050 rss = gfc_get_scalar_ss (gfc_ss_terminator, expr2);
9051
9052 /* Associate the SS with the loop. */
9053 gfc_add_ss_to_loop (&loop, lss);
9054 gfc_add_ss_to_loop (&loop, rss);
9055
9056 /* Calculate the bounds of the scalarization. */
9057 gfc_conv_ss_startstride (&loop);
9058 /* Enable loop reversal. */
9059 for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
9060 loop.reverse[n] = GFC_ENABLE_REVERSE;
9061 /* Resolve any data dependencies in the statement. */
9062 gfc_conv_resolve_dependencies (&loop, lss, rss);
9063 /* Setup the scalarizing loops. */
9064 gfc_conv_loop_setup (&loop, &expr2->where);
9065
9066 /* Setup the gfc_se structures. */
9067 gfc_copy_loopinfo_to_se (&lse, &loop);
9068 gfc_copy_loopinfo_to_se (&rse, &loop);
9069
9070 rse.ss = rss;
9071 gfc_mark_ss_chain_used (rss, 1);
9072 if (loop.temp_ss == NULL)
9073 {
9074 lse.ss = lss;
9075 gfc_mark_ss_chain_used (lss, 1);
9076 }
9077 else
9078 {
9079 lse.ss = loop.temp_ss;
9080 gfc_mark_ss_chain_used (lss, 3);
9081 gfc_mark_ss_chain_used (loop.temp_ss, 3);
9082 }
9083
9084 /* Allow the scalarizer to workshare array assignments. */
9085 if ((ompws_flags & OMPWS_WORKSHARE_FLAG) && loop.temp_ss == NULL)
9086 ompws_flags |= OMPWS_SCALARIZER_WS;
9087
9088 /* Start the scalarized loop body. */
9089 gfc_start_scalarized_body (&loop, &body);
9090 }
9091 else
9092 gfc_init_block (&body);
9093
9094 l_is_temp = (lss != gfc_ss_terminator && loop.temp_ss != NULL);
9095
9096 /* Translate the expression. */
9097 gfc_conv_expr (&rse, expr2);
9098
9099 /* Deal with the case of a scalar class function assigned to a derived type. */
9100 if (gfc_is_alloc_class_scalar_function (expr2)
9101 && expr1->ts.type == BT_DERIVED)
9102 {
9103 rse.expr = gfc_class_data_get (rse.expr);
9104 rse.expr = build_fold_indirect_ref_loc (input_location, rse.expr);
9105 }
9106
9107 /* Stabilize a string length for temporaries. */
9108 if (expr2->ts.type == BT_CHARACTER)
9109 string_length = gfc_evaluate_now (rse.string_length, &rse.pre);
9110 else
9111 string_length = NULL_TREE;
9112
9113 if (l_is_temp)
9114 {
9115 gfc_conv_tmp_array_ref (&lse);
9116 if (expr2->ts.type == BT_CHARACTER)
9117 lse.string_length = string_length;
9118 }
9119 else
9120 gfc_conv_expr (&lse, expr1);
9121
9122 /* Assignments of scalar derived types with allocatable components
9123 to arrays must be done with a deep copy and the rhs temporary
9124 must have its components deallocated afterwards. */
9125 scalar_to_array = (expr2->ts.type == BT_DERIVED
9126 && expr2->ts.u.derived->attr.alloc_comp
9127 && !expr_is_variable (expr2)
9128 && !gfc_is_constant_expr (expr2)
9129 && expr1->rank && !expr2->rank);
9130 scalar_to_array |= (expr1->ts.type == BT_DERIVED
9131 && expr1->rank
9132 && expr1->ts.u.derived->attr.alloc_comp
9133 && gfc_is_alloc_class_scalar_function (expr2));
9134 if (scalar_to_array && dealloc)
9135 {
9136 tmp = gfc_deallocate_alloc_comp_no_caf (expr2->ts.u.derived, rse.expr, 0);
9137 gfc_add_expr_to_block (&loop.post, tmp);
9138 }
9139
9140 /* When assigning a character function result to a deferred-length variable,
9141 the function call must happen before the (re)allocation of the lhs -
9142 otherwise the character length of the result is not known.
9143 NOTE: This relies on having the exact dependence of the length type
9144 parameter available to the caller; gfortran saves it in the .mod files. */
9145 if (flag_realloc_lhs && expr2->ts.type == BT_CHARACTER && expr1->ts.deferred)
9146 gfc_add_block_to_block (&block, &rse.pre);
9147
9148 /* Nullify the allocatable components corresponding to those of the lhs
9149 derived type, so that the finalization of the function result does not
9150 affect the lhs of the assignment. Prepend is used to ensure that the
9151 nullification occurs before the call to the finalizer. In the case of
9152 a scalar to array assignment, this is done in gfc_trans_scalar_assign
9153 as part of the deep copy. */
9154 if (!scalar_to_array && (expr1->ts.type == BT_DERIVED)
9155 && (gfc_is_alloc_class_array_function (expr2)
9156 || gfc_is_alloc_class_scalar_function (expr2)))
9157 {
9158 tmp = rse.expr;
9159 tmp = gfc_nullify_alloc_comp (expr1->ts.u.derived, rse.expr, 0);
9160 gfc_prepend_expr_to_block (&rse.post, tmp);
9161 if (lss != gfc_ss_terminator && rss == gfc_ss_terminator)
9162 gfc_add_block_to_block (&loop.post, &rse.post);
9163 }
9164
9165 tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts,
9166 l_is_temp || init_flag,
9167 expr_is_variable (expr2) || scalar_to_array
9168 || expr2->expr_type == EXPR_ARRAY, dealloc);
9169 gfc_add_expr_to_block (&body, tmp);
9170
9171 if (lss == gfc_ss_terminator)
9172 {
9173 /* F2003: Add the code for reallocation on assignment. */
9174 if (flag_realloc_lhs && is_scalar_reallocatable_lhs (expr1))
9175 alloc_scalar_allocatable_for_assignment (&block, string_length,
9176 expr1, expr2);
9177
9178 /* Use the scalar assignment as is. */
9179 gfc_add_block_to_block (&block, &body);
9180 }
9181 else
9182 {
9183 gcc_assert (lse.ss == gfc_ss_terminator
9184 && rse.ss == gfc_ss_terminator);
9185
9186 if (l_is_temp)
9187 {
9188 gfc_trans_scalarized_loop_boundary (&loop, &body);
9189
9190 /* We need to copy the temporary to the actual lhs. */
9191 gfc_init_se (&lse, NULL);
9192 gfc_init_se (&rse, NULL);
9193 gfc_copy_loopinfo_to_se (&lse, &loop);
9194 gfc_copy_loopinfo_to_se (&rse, &loop);
9195
9196 rse.ss = loop.temp_ss;
9197 lse.ss = lss;
9198
9199 gfc_conv_tmp_array_ref (&rse);
9200 gfc_conv_expr (&lse, expr1);
9201
9202 gcc_assert (lse.ss == gfc_ss_terminator
9203 && rse.ss == gfc_ss_terminator);
9204
9205 if (expr2->ts.type == BT_CHARACTER)
9206 rse.string_length = string_length;
9207
9208 tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts,
9209 false, false, dealloc);
9210 gfc_add_expr_to_block (&body, tmp);
9211 }
9212
9213 /* F2003: Allocate or reallocate lhs of allocatable array. */
9214 if (flag_realloc_lhs
9215 && gfc_is_reallocatable_lhs (expr1)
9216 && !gfc_expr_attr (expr1).codimension
9217 && !gfc_is_coindexed (expr1)
9218 && expr2->rank
9219 && !is_runtime_conformable (expr1, expr2))
9220 {
9221 realloc_lhs_warning (expr1->ts.type, true, &expr1->where);
9222 ompws_flags &= ~OMPWS_SCALARIZER_WS;
9223 tmp = gfc_alloc_allocatable_for_assignment (&loop, expr1, expr2);
9224 if (tmp != NULL_TREE)
9225 gfc_add_expr_to_block (&loop.code[expr1->rank - 1], tmp);
9226 }
9227
9228 /* Generate the copying loops. */
9229 gfc_trans_scalarizing_loops (&loop, &body);
9230
9231 /* Wrap the whole thing up. */
9232 gfc_add_block_to_block (&block, &loop.pre);
9233 gfc_add_block_to_block (&block, &loop.post);
9234
9235 gfc_cleanup_loop (&loop);
9236 }
9237
9238 return gfc_finish_block (&block);
9239 }
9240
9241
9242 /* Check whether EXPR is a copyable array. */
9243
9244 static bool
9245 copyable_array_p (gfc_expr * expr)
9246 {
9247 if (expr->expr_type != EXPR_VARIABLE)
9248 return false;
9249
9250 /* First check it's an array. */
9251 if (expr->rank < 1 || !expr->ref || expr->ref->next)
9252 return false;
9253
9254 if (!gfc_full_array_ref_p (expr->ref, NULL))
9255 return false;
9256
9257 /* Next check that it's of a simple enough type. */
9258 switch (expr->ts.type)
9259 {
9260 case BT_INTEGER:
9261 case BT_REAL:
9262 case BT_COMPLEX:
9263 case BT_LOGICAL:
9264 return true;
9265
9266 case BT_CHARACTER:
9267 return false;
9268
9269 case BT_DERIVED:
9270 return !expr->ts.u.derived->attr.alloc_comp;
9271
9272 default:
9273 break;
9274 }
9275
9276 return false;
9277 }
9278
9279 /* Translate an assignment. */
9280
9281 tree
9282 gfc_trans_assignment (gfc_expr * expr1, gfc_expr * expr2, bool init_flag,
9283 bool dealloc)
9284 {
9285 tree tmp;
9286
9287 /* Special case a single function returning an array. */
9288 if (expr2->expr_type == EXPR_FUNCTION && expr2->rank > 0)
9289 {
9290 tmp = gfc_trans_arrayfunc_assign (expr1, expr2);
9291 if (tmp)
9292 return tmp;
9293 }
9294
9295 /* Special case assigning an array to zero. */
9296 if (copyable_array_p (expr1)
9297 && is_zero_initializer_p (expr2))
9298 {
9299 tmp = gfc_trans_zero_assign (expr1);
9300 if (tmp)
9301 return tmp;
9302 }
9303
9304 /* Special case copying one array to another. */
9305 if (copyable_array_p (expr1)
9306 && copyable_array_p (expr2)
9307 && gfc_compare_types (&expr1->ts, &expr2->ts)
9308 && !gfc_check_dependency (expr1, expr2, 0))
9309 {
9310 tmp = gfc_trans_array_copy (expr1, expr2);
9311 if (tmp)
9312 return tmp;
9313 }
9314
9315 /* Special case initializing an array from a constant array constructor. */
9316 if (copyable_array_p (expr1)
9317 && expr2->expr_type == EXPR_ARRAY
9318 && gfc_compare_types (&expr1->ts, &expr2->ts))
9319 {
9320 tmp = gfc_trans_array_constructor_copy (expr1, expr2);
9321 if (tmp)
9322 return tmp;
9323 }
9324
9325 /* Fallback to the scalarizer to generate explicit loops. */
9326 return gfc_trans_assignment_1 (expr1, expr2, init_flag, dealloc);
9327 }
9328
9329 tree
9330 gfc_trans_init_assign (gfc_code * code)
9331 {
9332 return gfc_trans_assignment (code->expr1, code->expr2, true, false);
9333 }
9334
9335 tree
9336 gfc_trans_assign (gfc_code * code)
9337 {
9338 return gfc_trans_assignment (code->expr1, code->expr2, false, true);
9339 }