re PR fortran/81849 (Size of automatic array argument specified by host-associated...
[gcc.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "options.h"
25 #include "bitmap.h"
26 #include "gfortran.h"
27 #include "arith.h" /* For gfc_compare_expr(). */
28 #include "dependency.h"
29 #include "data.h"
30 #include "target-memory.h" /* for gfc_simplify_transfer */
31 #include "constructor.h"
32
33 /* Types used in equivalence statements. */
34
35 enum seq_type
36 {
37 SEQ_NONDEFAULT, SEQ_NUMERIC, SEQ_CHARACTER, SEQ_MIXED
38 };
39
40 /* Stack to keep track of the nesting of blocks as we move through the
41 code. See resolve_branch() and gfc_resolve_code(). */
42
43 typedef struct code_stack
44 {
45 struct gfc_code *head, *current;
46 struct code_stack *prev;
47
48 /* This bitmap keeps track of the targets valid for a branch from
49 inside this block except for END {IF|SELECT}s of enclosing
50 blocks. */
51 bitmap reachable_labels;
52 }
53 code_stack;
54
55 static code_stack *cs_base = NULL;
56
57
58 /* Nonzero if we're inside a FORALL or DO CONCURRENT block. */
59
60 static int forall_flag;
61 int gfc_do_concurrent_flag;
62
63 /* True when we are resolving an expression that is an actual argument to
64 a procedure. */
65 static bool actual_arg = false;
66 /* True when we are resolving an expression that is the first actual argument
67 to a procedure. */
68 static bool first_actual_arg = false;
69
70
71 /* Nonzero if we're inside a OpenMP WORKSHARE or PARALLEL WORKSHARE block. */
72
73 static int omp_workshare_flag;
74
75 /* True if we are processing a formal arglist. The corresponding function
76 resets the flag each time that it is read. */
77 static bool formal_arg_flag = false;
78
79 /* True if we are resolving a specification expression. */
80 static bool specification_expr = false;
81
82 /* The id of the last entry seen. */
83 static int current_entry_id;
84
85 /* We use bitmaps to determine if a branch target is valid. */
86 static bitmap_obstack labels_obstack;
87
88 /* True when simplifying a EXPR_VARIABLE argument to an inquiry function. */
89 static bool inquiry_argument = false;
90
91
92 bool
93 gfc_is_formal_arg (void)
94 {
95 return formal_arg_flag;
96 }
97
98 /* Is the symbol host associated? */
99 static bool
100 is_sym_host_assoc (gfc_symbol *sym, gfc_namespace *ns)
101 {
102 for (ns = ns->parent; ns; ns = ns->parent)
103 {
104 if (sym->ns == ns)
105 return true;
106 }
107
108 return false;
109 }
110
111 /* Ensure a typespec used is valid; for instance, TYPE(t) is invalid if t is
112 an ABSTRACT derived-type. If where is not NULL, an error message with that
113 locus is printed, optionally using name. */
114
115 static bool
116 resolve_typespec_used (gfc_typespec* ts, locus* where, const char* name)
117 {
118 if (ts->type == BT_DERIVED && ts->u.derived->attr.abstract)
119 {
120 if (where)
121 {
122 if (name)
123 gfc_error ("%qs at %L is of the ABSTRACT type %qs",
124 name, where, ts->u.derived->name);
125 else
126 gfc_error ("ABSTRACT type %qs used at %L",
127 ts->u.derived->name, where);
128 }
129
130 return false;
131 }
132
133 return true;
134 }
135
136
137 static bool
138 check_proc_interface (gfc_symbol *ifc, locus *where)
139 {
140 /* Several checks for F08:C1216. */
141 if (ifc->attr.procedure)
142 {
143 gfc_error ("Interface %qs at %L is declared "
144 "in a later PROCEDURE statement", ifc->name, where);
145 return false;
146 }
147 if (ifc->generic)
148 {
149 /* For generic interfaces, check if there is
150 a specific procedure with the same name. */
151 gfc_interface *gen = ifc->generic;
152 while (gen && strcmp (gen->sym->name, ifc->name) != 0)
153 gen = gen->next;
154 if (!gen)
155 {
156 gfc_error ("Interface %qs at %L may not be generic",
157 ifc->name, where);
158 return false;
159 }
160 }
161 if (ifc->attr.proc == PROC_ST_FUNCTION)
162 {
163 gfc_error ("Interface %qs at %L may not be a statement function",
164 ifc->name, where);
165 return false;
166 }
167 if (gfc_is_intrinsic (ifc, 0, ifc->declared_at)
168 || gfc_is_intrinsic (ifc, 1, ifc->declared_at))
169 ifc->attr.intrinsic = 1;
170 if (ifc->attr.intrinsic && !gfc_intrinsic_actual_ok (ifc->name, 0))
171 {
172 gfc_error ("Intrinsic procedure %qs not allowed in "
173 "PROCEDURE statement at %L", ifc->name, where);
174 return false;
175 }
176 if (!ifc->attr.if_source && !ifc->attr.intrinsic && ifc->name[0] != '\0')
177 {
178 gfc_error ("Interface %qs at %L must be explicit", ifc->name, where);
179 return false;
180 }
181 return true;
182 }
183
184
185 static void resolve_symbol (gfc_symbol *sym);
186
187
188 /* Resolve the interface for a PROCEDURE declaration or procedure pointer. */
189
190 static bool
191 resolve_procedure_interface (gfc_symbol *sym)
192 {
193 gfc_symbol *ifc = sym->ts.interface;
194
195 if (!ifc)
196 return true;
197
198 if (ifc == sym)
199 {
200 gfc_error ("PROCEDURE %qs at %L may not be used as its own interface",
201 sym->name, &sym->declared_at);
202 return false;
203 }
204 if (!check_proc_interface (ifc, &sym->declared_at))
205 return false;
206
207 if (ifc->attr.if_source || ifc->attr.intrinsic)
208 {
209 /* Resolve interface and copy attributes. */
210 resolve_symbol (ifc);
211 if (ifc->attr.intrinsic)
212 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
213
214 if (ifc->result)
215 {
216 sym->ts = ifc->result->ts;
217 sym->attr.allocatable = ifc->result->attr.allocatable;
218 sym->attr.pointer = ifc->result->attr.pointer;
219 sym->attr.dimension = ifc->result->attr.dimension;
220 sym->attr.class_ok = ifc->result->attr.class_ok;
221 sym->as = gfc_copy_array_spec (ifc->result->as);
222 sym->result = sym;
223 }
224 else
225 {
226 sym->ts = ifc->ts;
227 sym->attr.allocatable = ifc->attr.allocatable;
228 sym->attr.pointer = ifc->attr.pointer;
229 sym->attr.dimension = ifc->attr.dimension;
230 sym->attr.class_ok = ifc->attr.class_ok;
231 sym->as = gfc_copy_array_spec (ifc->as);
232 }
233 sym->ts.interface = ifc;
234 sym->attr.function = ifc->attr.function;
235 sym->attr.subroutine = ifc->attr.subroutine;
236
237 sym->attr.pure = ifc->attr.pure;
238 sym->attr.elemental = ifc->attr.elemental;
239 sym->attr.contiguous = ifc->attr.contiguous;
240 sym->attr.recursive = ifc->attr.recursive;
241 sym->attr.always_explicit = ifc->attr.always_explicit;
242 sym->attr.ext_attr |= ifc->attr.ext_attr;
243 sym->attr.is_bind_c = ifc->attr.is_bind_c;
244 /* Copy char length. */
245 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
246 {
247 sym->ts.u.cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
248 if (sym->ts.u.cl->length && !sym->ts.u.cl->resolved
249 && !gfc_resolve_expr (sym->ts.u.cl->length))
250 return false;
251 }
252 }
253
254 return true;
255 }
256
257
258 /* Resolve types of formal argument lists. These have to be done early so that
259 the formal argument lists of module procedures can be copied to the
260 containing module before the individual procedures are resolved
261 individually. We also resolve argument lists of procedures in interface
262 blocks because they are self-contained scoping units.
263
264 Since a dummy argument cannot be a non-dummy procedure, the only
265 resort left for untyped names are the IMPLICIT types. */
266
267 static void
268 resolve_formal_arglist (gfc_symbol *proc)
269 {
270 gfc_formal_arglist *f;
271 gfc_symbol *sym;
272 bool saved_specification_expr;
273 int i;
274
275 if (proc->result != NULL)
276 sym = proc->result;
277 else
278 sym = proc;
279
280 if (gfc_elemental (proc)
281 || sym->attr.pointer || sym->attr.allocatable
282 || (sym->as && sym->as->rank != 0))
283 {
284 proc->attr.always_explicit = 1;
285 sym->attr.always_explicit = 1;
286 }
287
288 formal_arg_flag = true;
289
290 for (f = proc->formal; f; f = f->next)
291 {
292 gfc_array_spec *as;
293
294 sym = f->sym;
295
296 if (sym == NULL)
297 {
298 /* Alternate return placeholder. */
299 if (gfc_elemental (proc))
300 gfc_error ("Alternate return specifier in elemental subroutine "
301 "%qs at %L is not allowed", proc->name,
302 &proc->declared_at);
303 if (proc->attr.function)
304 gfc_error ("Alternate return specifier in function "
305 "%qs at %L is not allowed", proc->name,
306 &proc->declared_at);
307 continue;
308 }
309 else if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
310 && !resolve_procedure_interface (sym))
311 return;
312
313 if (strcmp (proc->name, sym->name) == 0)
314 {
315 gfc_error ("Self-referential argument "
316 "%qs at %L is not allowed", sym->name,
317 &proc->declared_at);
318 return;
319 }
320
321 if (sym->attr.if_source != IFSRC_UNKNOWN)
322 resolve_formal_arglist (sym);
323
324 if (sym->attr.subroutine || sym->attr.external)
325 {
326 if (sym->attr.flavor == FL_UNKNOWN)
327 gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, &sym->declared_at);
328 }
329 else
330 {
331 if (sym->ts.type == BT_UNKNOWN && !proc->attr.intrinsic
332 && (!sym->attr.function || sym->result == sym))
333 gfc_set_default_type (sym, 1, sym->ns);
334 }
335
336 as = sym->ts.type == BT_CLASS && sym->attr.class_ok
337 ? CLASS_DATA (sym)->as : sym->as;
338
339 saved_specification_expr = specification_expr;
340 specification_expr = true;
341 gfc_resolve_array_spec (as, 0);
342 specification_expr = saved_specification_expr;
343
344 /* We can't tell if an array with dimension (:) is assumed or deferred
345 shape until we know if it has the pointer or allocatable attributes.
346 */
347 if (as && as->rank > 0 && as->type == AS_DEFERRED
348 && ((sym->ts.type != BT_CLASS
349 && !(sym->attr.pointer || sym->attr.allocatable))
350 || (sym->ts.type == BT_CLASS
351 && !(CLASS_DATA (sym)->attr.class_pointer
352 || CLASS_DATA (sym)->attr.allocatable)))
353 && sym->attr.flavor != FL_PROCEDURE)
354 {
355 as->type = AS_ASSUMED_SHAPE;
356 for (i = 0; i < as->rank; i++)
357 as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
358 }
359
360 if ((as && as->rank > 0 && as->type == AS_ASSUMED_SHAPE)
361 || (as && as->type == AS_ASSUMED_RANK)
362 || sym->attr.pointer || sym->attr.allocatable || sym->attr.target
363 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
364 && (CLASS_DATA (sym)->attr.class_pointer
365 || CLASS_DATA (sym)->attr.allocatable
366 || CLASS_DATA (sym)->attr.target))
367 || sym->attr.optional)
368 {
369 proc->attr.always_explicit = 1;
370 if (proc->result)
371 proc->result->attr.always_explicit = 1;
372 }
373
374 /* If the flavor is unknown at this point, it has to be a variable.
375 A procedure specification would have already set the type. */
376
377 if (sym->attr.flavor == FL_UNKNOWN)
378 gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, &sym->declared_at);
379
380 if (gfc_pure (proc))
381 {
382 if (sym->attr.flavor == FL_PROCEDURE)
383 {
384 /* F08:C1279. */
385 if (!gfc_pure (sym))
386 {
387 gfc_error ("Dummy procedure %qs of PURE procedure at %L must "
388 "also be PURE", sym->name, &sym->declared_at);
389 continue;
390 }
391 }
392 else if (!sym->attr.pointer)
393 {
394 if (proc->attr.function && sym->attr.intent != INTENT_IN)
395 {
396 if (sym->attr.value)
397 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
398 " of pure function %qs at %L with VALUE "
399 "attribute but without INTENT(IN)",
400 sym->name, proc->name, &sym->declared_at);
401 else
402 gfc_error ("Argument %qs of pure function %qs at %L must "
403 "be INTENT(IN) or VALUE", sym->name, proc->name,
404 &sym->declared_at);
405 }
406
407 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN)
408 {
409 if (sym->attr.value)
410 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
411 " of pure subroutine %qs at %L with VALUE "
412 "attribute but without INTENT", sym->name,
413 proc->name, &sym->declared_at);
414 else
415 gfc_error ("Argument %qs of pure subroutine %qs at %L "
416 "must have its INTENT specified or have the "
417 "VALUE attribute", sym->name, proc->name,
418 &sym->declared_at);
419 }
420 }
421
422 /* F08:C1278a. */
423 if (sym->ts.type == BT_CLASS && sym->attr.intent == INTENT_OUT)
424 {
425 gfc_error ("INTENT(OUT) argument %qs of pure procedure %qs at %L"
426 " may not be polymorphic", sym->name, proc->name,
427 &sym->declared_at);
428 continue;
429 }
430 }
431
432 if (proc->attr.implicit_pure)
433 {
434 if (sym->attr.flavor == FL_PROCEDURE)
435 {
436 if (!gfc_pure (sym))
437 proc->attr.implicit_pure = 0;
438 }
439 else if (!sym->attr.pointer)
440 {
441 if (proc->attr.function && sym->attr.intent != INTENT_IN
442 && !sym->value)
443 proc->attr.implicit_pure = 0;
444
445 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN
446 && !sym->value)
447 proc->attr.implicit_pure = 0;
448 }
449 }
450
451 if (gfc_elemental (proc))
452 {
453 /* F08:C1289. */
454 if (sym->attr.codimension
455 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
456 && CLASS_DATA (sym)->attr.codimension))
457 {
458 gfc_error ("Coarray dummy argument %qs at %L to elemental "
459 "procedure", sym->name, &sym->declared_at);
460 continue;
461 }
462
463 if (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
464 && CLASS_DATA (sym)->as))
465 {
466 gfc_error ("Argument %qs of elemental procedure at %L must "
467 "be scalar", sym->name, &sym->declared_at);
468 continue;
469 }
470
471 if (sym->attr.allocatable
472 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
473 && CLASS_DATA (sym)->attr.allocatable))
474 {
475 gfc_error ("Argument %qs of elemental procedure at %L cannot "
476 "have the ALLOCATABLE attribute", sym->name,
477 &sym->declared_at);
478 continue;
479 }
480
481 if (sym->attr.pointer
482 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
483 && CLASS_DATA (sym)->attr.class_pointer))
484 {
485 gfc_error ("Argument %qs of elemental procedure at %L cannot "
486 "have the POINTER attribute", sym->name,
487 &sym->declared_at);
488 continue;
489 }
490
491 if (sym->attr.flavor == FL_PROCEDURE)
492 {
493 gfc_error ("Dummy procedure %qs not allowed in elemental "
494 "procedure %qs at %L", sym->name, proc->name,
495 &sym->declared_at);
496 continue;
497 }
498
499 /* Fortran 2008 Corrigendum 1, C1290a. */
500 if (sym->attr.intent == INTENT_UNKNOWN && !sym->attr.value)
501 {
502 gfc_error ("Argument %qs of elemental procedure %qs at %L must "
503 "have its INTENT specified or have the VALUE "
504 "attribute", sym->name, proc->name,
505 &sym->declared_at);
506 continue;
507 }
508 }
509
510 /* Each dummy shall be specified to be scalar. */
511 if (proc->attr.proc == PROC_ST_FUNCTION)
512 {
513 if (sym->as != NULL)
514 {
515 /* F03:C1263 (R1238) The function-name and each dummy-arg-name
516 shall be specified, explicitly or implicitly, to be scalar. */
517 gfc_error ("Argument '%s' of statement function '%s' at %L "
518 "must be scalar", sym->name, proc->name,
519 &proc->declared_at);
520 continue;
521 }
522
523 if (sym->ts.type == BT_CHARACTER)
524 {
525 gfc_charlen *cl = sym->ts.u.cl;
526 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
527 {
528 gfc_error ("Character-valued argument %qs of statement "
529 "function at %L must have constant length",
530 sym->name, &sym->declared_at);
531 continue;
532 }
533 }
534 }
535 }
536 formal_arg_flag = false;
537 }
538
539
540 /* Work function called when searching for symbols that have argument lists
541 associated with them. */
542
543 static void
544 find_arglists (gfc_symbol *sym)
545 {
546 if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns
547 || gfc_fl_struct (sym->attr.flavor) || sym->attr.intrinsic)
548 return;
549
550 resolve_formal_arglist (sym);
551 }
552
553
554 /* Given a namespace, resolve all formal argument lists within the namespace.
555 */
556
557 static void
558 resolve_formal_arglists (gfc_namespace *ns)
559 {
560 if (ns == NULL)
561 return;
562
563 gfc_traverse_ns (ns, find_arglists);
564 }
565
566
567 static void
568 resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
569 {
570 bool t;
571
572 if (sym && sym->attr.flavor == FL_PROCEDURE
573 && sym->ns->parent
574 && sym->ns->parent->proc_name
575 && sym->ns->parent->proc_name->attr.flavor == FL_PROCEDURE
576 && !strcmp (sym->name, sym->ns->parent->proc_name->name))
577 gfc_error ("Contained procedure %qs at %L has the same name as its "
578 "encompassing procedure", sym->name, &sym->declared_at);
579
580 /* If this namespace is not a function or an entry master function,
581 ignore it. */
582 if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
583 || sym->attr.entry_master)
584 return;
585
586 /* Try to find out of what the return type is. */
587 if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
588 {
589 t = gfc_set_default_type (sym->result, 0, ns);
590
591 if (!t && !sym->result->attr.untyped)
592 {
593 if (sym->result == sym)
594 gfc_error ("Contained function %qs at %L has no IMPLICIT type",
595 sym->name, &sym->declared_at);
596 else if (!sym->result->attr.proc_pointer)
597 gfc_error ("Result %qs of contained function %qs at %L has "
598 "no IMPLICIT type", sym->result->name, sym->name,
599 &sym->result->declared_at);
600 sym->result->attr.untyped = 1;
601 }
602 }
603
604 /* Fortran 2008 Draft Standard, page 535, C418, on type-param-value
605 type, lists the only ways a character length value of * can be used:
606 dummy arguments of procedures, named constants, function results and
607 in allocate statements if the allocate_object is an assumed length dummy
608 in external functions. Internal function results and results of module
609 procedures are not on this list, ergo, not permitted. */
610
611 if (sym->result->ts.type == BT_CHARACTER)
612 {
613 gfc_charlen *cl = sym->result->ts.u.cl;
614 if ((!cl || !cl->length) && !sym->result->ts.deferred)
615 {
616 /* See if this is a module-procedure and adapt error message
617 accordingly. */
618 bool module_proc;
619 gcc_assert (ns->parent && ns->parent->proc_name);
620 module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
621
622 gfc_error (module_proc
623 ? G_("Character-valued module procedure %qs at %L"
624 " must not be assumed length")
625 : G_("Character-valued internal function %qs at %L"
626 " must not be assumed length"),
627 sym->name, &sym->declared_at);
628 }
629 }
630 }
631
632
633 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
634 introduce duplicates. */
635
636 static void
637 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
638 {
639 gfc_formal_arglist *f, *new_arglist;
640 gfc_symbol *new_sym;
641
642 for (; new_args != NULL; new_args = new_args->next)
643 {
644 new_sym = new_args->sym;
645 /* See if this arg is already in the formal argument list. */
646 for (f = proc->formal; f; f = f->next)
647 {
648 if (new_sym == f->sym)
649 break;
650 }
651
652 if (f)
653 continue;
654
655 /* Add a new argument. Argument order is not important. */
656 new_arglist = gfc_get_formal_arglist ();
657 new_arglist->sym = new_sym;
658 new_arglist->next = proc->formal;
659 proc->formal = new_arglist;
660 }
661 }
662
663
664 /* Flag the arguments that are not present in all entries. */
665
666 static void
667 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
668 {
669 gfc_formal_arglist *f, *head;
670 head = new_args;
671
672 for (f = proc->formal; f; f = f->next)
673 {
674 if (f->sym == NULL)
675 continue;
676
677 for (new_args = head; new_args; new_args = new_args->next)
678 {
679 if (new_args->sym == f->sym)
680 break;
681 }
682
683 if (new_args)
684 continue;
685
686 f->sym->attr.not_always_present = 1;
687 }
688 }
689
690
691 /* Resolve alternate entry points. If a symbol has multiple entry points we
692 create a new master symbol for the main routine, and turn the existing
693 symbol into an entry point. */
694
695 static void
696 resolve_entries (gfc_namespace *ns)
697 {
698 gfc_namespace *old_ns;
699 gfc_code *c;
700 gfc_symbol *proc;
701 gfc_entry_list *el;
702 char name[GFC_MAX_SYMBOL_LEN + 1];
703 static int master_count = 0;
704
705 if (ns->proc_name == NULL)
706 return;
707
708 /* No need to do anything if this procedure doesn't have alternate entry
709 points. */
710 if (!ns->entries)
711 return;
712
713 /* We may already have resolved alternate entry points. */
714 if (ns->proc_name->attr.entry_master)
715 return;
716
717 /* If this isn't a procedure something has gone horribly wrong. */
718 gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
719
720 /* Remember the current namespace. */
721 old_ns = gfc_current_ns;
722
723 gfc_current_ns = ns;
724
725 /* Add the main entry point to the list of entry points. */
726 el = gfc_get_entry_list ();
727 el->sym = ns->proc_name;
728 el->id = 0;
729 el->next = ns->entries;
730 ns->entries = el;
731 ns->proc_name->attr.entry = 1;
732
733 /* If it is a module function, it needs to be in the right namespace
734 so that gfc_get_fake_result_decl can gather up the results. The
735 need for this arose in get_proc_name, where these beasts were
736 left in their own namespace, to keep prior references linked to
737 the entry declaration.*/
738 if (ns->proc_name->attr.function
739 && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
740 el->sym->ns = ns;
741
742 /* Do the same for entries where the master is not a module
743 procedure. These are retained in the module namespace because
744 of the module procedure declaration. */
745 for (el = el->next; el; el = el->next)
746 if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
747 && el->sym->attr.mod_proc)
748 el->sym->ns = ns;
749 el = ns->entries;
750
751 /* Add an entry statement for it. */
752 c = gfc_get_code (EXEC_ENTRY);
753 c->ext.entry = el;
754 c->next = ns->code;
755 ns->code = c;
756
757 /* Create a new symbol for the master function. */
758 /* Give the internal function a unique name (within this file).
759 Also include the function name so the user has some hope of figuring
760 out what is going on. */
761 snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
762 master_count++, ns->proc_name->name);
763 gfc_get_ha_symbol (name, &proc);
764 gcc_assert (proc != NULL);
765
766 gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
767 if (ns->proc_name->attr.subroutine)
768 gfc_add_subroutine (&proc->attr, proc->name, NULL);
769 else
770 {
771 gfc_symbol *sym;
772 gfc_typespec *ts, *fts;
773 gfc_array_spec *as, *fas;
774 gfc_add_function (&proc->attr, proc->name, NULL);
775 proc->result = proc;
776 fas = ns->entries->sym->as;
777 fas = fas ? fas : ns->entries->sym->result->as;
778 fts = &ns->entries->sym->result->ts;
779 if (fts->type == BT_UNKNOWN)
780 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
781 for (el = ns->entries->next; el; el = el->next)
782 {
783 ts = &el->sym->result->ts;
784 as = el->sym->as;
785 as = as ? as : el->sym->result->as;
786 if (ts->type == BT_UNKNOWN)
787 ts = gfc_get_default_type (el->sym->result->name, NULL);
788
789 if (! gfc_compare_types (ts, fts)
790 || (el->sym->result->attr.dimension
791 != ns->entries->sym->result->attr.dimension)
792 || (el->sym->result->attr.pointer
793 != ns->entries->sym->result->attr.pointer))
794 break;
795 else if (as && fas && ns->entries->sym->result != el->sym->result
796 && gfc_compare_array_spec (as, fas) == 0)
797 gfc_error ("Function %s at %L has entries with mismatched "
798 "array specifications", ns->entries->sym->name,
799 &ns->entries->sym->declared_at);
800 /* The characteristics need to match and thus both need to have
801 the same string length, i.e. both len=*, or both len=4.
802 Having both len=<variable> is also possible, but difficult to
803 check at compile time. */
804 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
805 && (((ts->u.cl->length && !fts->u.cl->length)
806 ||(!ts->u.cl->length && fts->u.cl->length))
807 || (ts->u.cl->length
808 && ts->u.cl->length->expr_type
809 != fts->u.cl->length->expr_type)
810 || (ts->u.cl->length
811 && ts->u.cl->length->expr_type == EXPR_CONSTANT
812 && mpz_cmp (ts->u.cl->length->value.integer,
813 fts->u.cl->length->value.integer) != 0)))
814 gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
815 "entries returning variables of different "
816 "string lengths", ns->entries->sym->name,
817 &ns->entries->sym->declared_at);
818 }
819
820 if (el == NULL)
821 {
822 sym = ns->entries->sym->result;
823 /* All result types the same. */
824 proc->ts = *fts;
825 if (sym->attr.dimension)
826 gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
827 if (sym->attr.pointer)
828 gfc_add_pointer (&proc->attr, NULL);
829 }
830 else
831 {
832 /* Otherwise the result will be passed through a union by
833 reference. */
834 proc->attr.mixed_entry_master = 1;
835 for (el = ns->entries; el; el = el->next)
836 {
837 sym = el->sym->result;
838 if (sym->attr.dimension)
839 {
840 if (el == ns->entries)
841 gfc_error ("FUNCTION result %s can't be an array in "
842 "FUNCTION %s at %L", sym->name,
843 ns->entries->sym->name, &sym->declared_at);
844 else
845 gfc_error ("ENTRY result %s can't be an array in "
846 "FUNCTION %s at %L", sym->name,
847 ns->entries->sym->name, &sym->declared_at);
848 }
849 else if (sym->attr.pointer)
850 {
851 if (el == ns->entries)
852 gfc_error ("FUNCTION result %s can't be a POINTER in "
853 "FUNCTION %s at %L", sym->name,
854 ns->entries->sym->name, &sym->declared_at);
855 else
856 gfc_error ("ENTRY result %s can't be a POINTER in "
857 "FUNCTION %s at %L", sym->name,
858 ns->entries->sym->name, &sym->declared_at);
859 }
860 else
861 {
862 ts = &sym->ts;
863 if (ts->type == BT_UNKNOWN)
864 ts = gfc_get_default_type (sym->name, NULL);
865 switch (ts->type)
866 {
867 case BT_INTEGER:
868 if (ts->kind == gfc_default_integer_kind)
869 sym = NULL;
870 break;
871 case BT_REAL:
872 if (ts->kind == gfc_default_real_kind
873 || ts->kind == gfc_default_double_kind)
874 sym = NULL;
875 break;
876 case BT_COMPLEX:
877 if (ts->kind == gfc_default_complex_kind)
878 sym = NULL;
879 break;
880 case BT_LOGICAL:
881 if (ts->kind == gfc_default_logical_kind)
882 sym = NULL;
883 break;
884 case BT_UNKNOWN:
885 /* We will issue error elsewhere. */
886 sym = NULL;
887 break;
888 default:
889 break;
890 }
891 if (sym)
892 {
893 if (el == ns->entries)
894 gfc_error ("FUNCTION result %s can't be of type %s "
895 "in FUNCTION %s at %L", sym->name,
896 gfc_typename (ts), ns->entries->sym->name,
897 &sym->declared_at);
898 else
899 gfc_error ("ENTRY result %s can't be of type %s "
900 "in FUNCTION %s at %L", sym->name,
901 gfc_typename (ts), ns->entries->sym->name,
902 &sym->declared_at);
903 }
904 }
905 }
906 }
907 }
908 proc->attr.access = ACCESS_PRIVATE;
909 proc->attr.entry_master = 1;
910
911 /* Merge all the entry point arguments. */
912 for (el = ns->entries; el; el = el->next)
913 merge_argument_lists (proc, el->sym->formal);
914
915 /* Check the master formal arguments for any that are not
916 present in all entry points. */
917 for (el = ns->entries; el; el = el->next)
918 check_argument_lists (proc, el->sym->formal);
919
920 /* Use the master function for the function body. */
921 ns->proc_name = proc;
922
923 /* Finalize the new symbols. */
924 gfc_commit_symbols ();
925
926 /* Restore the original namespace. */
927 gfc_current_ns = old_ns;
928 }
929
930
931 /* Resolve common variables. */
932 static void
933 resolve_common_vars (gfc_common_head *common_block, bool named_common)
934 {
935 gfc_symbol *csym = common_block->head;
936
937 for (; csym; csym = csym->common_next)
938 {
939 /* gfc_add_in_common may have been called before, but the reported errors
940 have been ignored to continue parsing.
941 We do the checks again here. */
942 if (!csym->attr.use_assoc)
943 gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
944
945 if (csym->value || csym->attr.data)
946 {
947 if (!csym->ns->is_block_data)
948 gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
949 "but only in BLOCK DATA initialization is "
950 "allowed", csym->name, &csym->declared_at);
951 else if (!named_common)
952 gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
953 "in a blank COMMON but initialization is only "
954 "allowed in named common blocks", csym->name,
955 &csym->declared_at);
956 }
957
958 if (UNLIMITED_POLY (csym))
959 gfc_error_now ("%qs in cannot appear in COMMON at %L "
960 "[F2008:C5100]", csym->name, &csym->declared_at);
961
962 if (csym->ts.type != BT_DERIVED)
963 continue;
964
965 if (!(csym->ts.u.derived->attr.sequence
966 || csym->ts.u.derived->attr.is_bind_c))
967 gfc_error_now ("Derived type variable %qs in COMMON at %L "
968 "has neither the SEQUENCE nor the BIND(C) "
969 "attribute", csym->name, &csym->declared_at);
970 if (csym->ts.u.derived->attr.alloc_comp)
971 gfc_error_now ("Derived type variable %qs in COMMON at %L "
972 "has an ultimate component that is "
973 "allocatable", csym->name, &csym->declared_at);
974 if (gfc_has_default_initializer (csym->ts.u.derived))
975 gfc_error_now ("Derived type variable %qs in COMMON at %L "
976 "may not have default initializer", csym->name,
977 &csym->declared_at);
978
979 if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
980 gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
981 }
982 }
983
984 /* Resolve common blocks. */
985 static void
986 resolve_common_blocks (gfc_symtree *common_root)
987 {
988 gfc_symbol *sym;
989 gfc_gsymbol * gsym;
990
991 if (common_root == NULL)
992 return;
993
994 if (common_root->left)
995 resolve_common_blocks (common_root->left);
996 if (common_root->right)
997 resolve_common_blocks (common_root->right);
998
999 resolve_common_vars (common_root->n.common, true);
1000
1001 if (!gfc_notify_std (GFC_STD_F2018_OBS, "COMMON block at %L",
1002 &common_root->n.common->where))
1003 return;
1004
1005 /* The common name is a global name - in Fortran 2003 also if it has a
1006 C binding name, since Fortran 2008 only the C binding name is a global
1007 identifier. */
1008 if (!common_root->n.common->binding_label
1009 || gfc_notification_std (GFC_STD_F2008))
1010 {
1011 gsym = gfc_find_gsymbol (gfc_gsym_root,
1012 common_root->n.common->name);
1013
1014 if (gsym && gfc_notification_std (GFC_STD_F2008)
1015 && gsym->type == GSYM_COMMON
1016 && ((common_root->n.common->binding_label
1017 && (!gsym->binding_label
1018 || strcmp (common_root->n.common->binding_label,
1019 gsym->binding_label) != 0))
1020 || (!common_root->n.common->binding_label
1021 && gsym->binding_label)))
1022 {
1023 gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
1024 "identifier and must thus have the same binding name "
1025 "as the same-named COMMON block at %L: %s vs %s",
1026 common_root->n.common->name, &common_root->n.common->where,
1027 &gsym->where,
1028 common_root->n.common->binding_label
1029 ? common_root->n.common->binding_label : "(blank)",
1030 gsym->binding_label ? gsym->binding_label : "(blank)");
1031 return;
1032 }
1033
1034 if (gsym && gsym->type != GSYM_COMMON
1035 && !common_root->n.common->binding_label)
1036 {
1037 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1038 "as entity at %L",
1039 common_root->n.common->name, &common_root->n.common->where,
1040 &gsym->where);
1041 return;
1042 }
1043 if (gsym && gsym->type != GSYM_COMMON)
1044 {
1045 gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
1046 "%L sharing the identifier with global non-COMMON-block "
1047 "entity at %L", common_root->n.common->name,
1048 &common_root->n.common->where, &gsym->where);
1049 return;
1050 }
1051 if (!gsym)
1052 {
1053 gsym = gfc_get_gsymbol (common_root->n.common->name);
1054 gsym->type = GSYM_COMMON;
1055 gsym->where = common_root->n.common->where;
1056 gsym->defined = 1;
1057 }
1058 gsym->used = 1;
1059 }
1060
1061 if (common_root->n.common->binding_label)
1062 {
1063 gsym = gfc_find_gsymbol (gfc_gsym_root,
1064 common_root->n.common->binding_label);
1065 if (gsym && gsym->type != GSYM_COMMON)
1066 {
1067 gfc_error ("COMMON block at %L with binding label %qs uses the same "
1068 "global identifier as entity at %L",
1069 &common_root->n.common->where,
1070 common_root->n.common->binding_label, &gsym->where);
1071 return;
1072 }
1073 if (!gsym)
1074 {
1075 gsym = gfc_get_gsymbol (common_root->n.common->binding_label);
1076 gsym->type = GSYM_COMMON;
1077 gsym->where = common_root->n.common->where;
1078 gsym->defined = 1;
1079 }
1080 gsym->used = 1;
1081 }
1082
1083 gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
1084 if (sym == NULL)
1085 return;
1086
1087 if (sym->attr.flavor == FL_PARAMETER)
1088 gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
1089 sym->name, &common_root->n.common->where, &sym->declared_at);
1090
1091 if (sym->attr.external)
1092 gfc_error ("COMMON block %qs at %L cannot have the EXTERNAL attribute",
1093 sym->name, &common_root->n.common->where);
1094
1095 if (sym->attr.intrinsic)
1096 gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
1097 sym->name, &common_root->n.common->where);
1098 else if (sym->attr.result
1099 || gfc_is_function_return_value (sym, gfc_current_ns))
1100 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1101 "that is also a function result", sym->name,
1102 &common_root->n.common->where);
1103 else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
1104 && sym->attr.proc != PROC_ST_FUNCTION)
1105 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1106 "that is also a global procedure", sym->name,
1107 &common_root->n.common->where);
1108 }
1109
1110
1111 /* Resolve contained function types. Because contained functions can call one
1112 another, they have to be worked out before any of the contained procedures
1113 can be resolved.
1114
1115 The good news is that if a function doesn't already have a type, the only
1116 way it can get one is through an IMPLICIT type or a RESULT variable, because
1117 by definition contained functions are contained namespace they're contained
1118 in, not in a sibling or parent namespace. */
1119
1120 static void
1121 resolve_contained_functions (gfc_namespace *ns)
1122 {
1123 gfc_namespace *child;
1124 gfc_entry_list *el;
1125
1126 resolve_formal_arglists (ns);
1127
1128 for (child = ns->contained; child; child = child->sibling)
1129 {
1130 /* Resolve alternate entry points first. */
1131 resolve_entries (child);
1132
1133 /* Then check function return types. */
1134 resolve_contained_fntype (child->proc_name, child);
1135 for (el = child->entries; el; el = el->next)
1136 resolve_contained_fntype (el->sym, child);
1137 }
1138 }
1139
1140
1141
1142 /* A Parameterized Derived Type constructor must contain values for
1143 the PDT KIND parameters or they must have a default initializer.
1144 Go through the constructor picking out the KIND expressions,
1145 storing them in 'param_list' and then call gfc_get_pdt_instance
1146 to obtain the PDT instance. */
1147
1148 static gfc_actual_arglist *param_list, *param_tail, *param;
1149
1150 static bool
1151 get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
1152 {
1153 param = gfc_get_actual_arglist ();
1154 if (!param_list)
1155 param_list = param_tail = param;
1156 else
1157 {
1158 param_tail->next = param;
1159 param_tail = param_tail->next;
1160 }
1161
1162 param_tail->name = c->name;
1163 if (expr)
1164 param_tail->expr = gfc_copy_expr (expr);
1165 else if (c->initializer)
1166 param_tail->expr = gfc_copy_expr (c->initializer);
1167 else
1168 {
1169 param_tail->spec_type = SPEC_ASSUMED;
1170 if (c->attr.pdt_kind)
1171 {
1172 gfc_error ("The KIND parameter %qs in the PDT constructor "
1173 "at %C has no value", param->name);
1174 return false;
1175 }
1176 }
1177
1178 return true;
1179 }
1180
1181 static bool
1182 get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
1183 gfc_symbol *derived)
1184 {
1185 gfc_constructor *cons = NULL;
1186 gfc_component *comp;
1187 bool t = true;
1188
1189 if (expr && expr->expr_type == EXPR_STRUCTURE)
1190 cons = gfc_constructor_first (expr->value.constructor);
1191 else if (constr)
1192 cons = *constr;
1193 gcc_assert (cons);
1194
1195 comp = derived->components;
1196
1197 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1198 {
1199 if (cons->expr
1200 && cons->expr->expr_type == EXPR_STRUCTURE
1201 && comp->ts.type == BT_DERIVED)
1202 {
1203 t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
1204 if (!t)
1205 return t;
1206 }
1207 else if (comp->ts.type == BT_DERIVED)
1208 {
1209 t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
1210 if (!t)
1211 return t;
1212 }
1213 else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
1214 && derived->attr.pdt_template)
1215 {
1216 t = get_pdt_spec_expr (comp, cons->expr);
1217 if (!t)
1218 return t;
1219 }
1220 }
1221 return t;
1222 }
1223
1224
1225 static bool resolve_fl_derived0 (gfc_symbol *sym);
1226 static bool resolve_fl_struct (gfc_symbol *sym);
1227
1228
1229 /* Resolve all of the elements of a structure constructor and make sure that
1230 the types are correct. The 'init' flag indicates that the given
1231 constructor is an initializer. */
1232
1233 static bool
1234 resolve_structure_cons (gfc_expr *expr, int init)
1235 {
1236 gfc_constructor *cons;
1237 gfc_component *comp;
1238 bool t;
1239 symbol_attribute a;
1240
1241 t = true;
1242
1243 if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
1244 {
1245 if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
1246 resolve_fl_derived0 (expr->ts.u.derived);
1247 else
1248 resolve_fl_struct (expr->ts.u.derived);
1249
1250 /* If this is a Parameterized Derived Type template, find the
1251 instance corresponding to the PDT kind parameters. */
1252 if (expr->ts.u.derived->attr.pdt_template)
1253 {
1254 param_list = NULL;
1255 t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
1256 if (!t)
1257 return t;
1258 gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
1259
1260 expr->param_list = gfc_copy_actual_arglist (param_list);
1261
1262 if (param_list)
1263 gfc_free_actual_arglist (param_list);
1264
1265 if (!expr->ts.u.derived->attr.pdt_type)
1266 return false;
1267 }
1268 }
1269
1270 cons = gfc_constructor_first (expr->value.constructor);
1271
1272 /* A constructor may have references if it is the result of substituting a
1273 parameter variable. In this case we just pull out the component we
1274 want. */
1275 if (expr->ref)
1276 comp = expr->ref->u.c.sym->components;
1277 else
1278 comp = expr->ts.u.derived->components;
1279
1280 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1281 {
1282 int rank;
1283
1284 if (!cons->expr)
1285 continue;
1286
1287 /* Unions use an EXPR_NULL contrived expression to tell the translation
1288 phase to generate an initializer of the appropriate length.
1289 Ignore it here. */
1290 if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
1291 continue;
1292
1293 if (!gfc_resolve_expr (cons->expr))
1294 {
1295 t = false;
1296 continue;
1297 }
1298
1299 rank = comp->as ? comp->as->rank : 0;
1300 if (comp->ts.type == BT_CLASS
1301 && !comp->ts.u.derived->attr.unlimited_polymorphic
1302 && CLASS_DATA (comp)->as)
1303 rank = CLASS_DATA (comp)->as->rank;
1304
1305 if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
1306 && (comp->attr.allocatable || cons->expr->rank))
1307 {
1308 gfc_error ("The rank of the element in the structure "
1309 "constructor at %L does not match that of the "
1310 "component (%d/%d)", &cons->expr->where,
1311 cons->expr->rank, rank);
1312 t = false;
1313 }
1314
1315 /* If we don't have the right type, try to convert it. */
1316
1317 if (!comp->attr.proc_pointer &&
1318 !gfc_compare_types (&cons->expr->ts, &comp->ts))
1319 {
1320 if (strcmp (comp->name, "_extends") == 0)
1321 {
1322 /* Can afford to be brutal with the _extends initializer.
1323 The derived type can get lost because it is PRIVATE
1324 but it is not usage constrained by the standard. */
1325 cons->expr->ts = comp->ts;
1326 }
1327 else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
1328 {
1329 gfc_error ("The element in the structure constructor at %L, "
1330 "for pointer component %qs, is %s but should be %s",
1331 &cons->expr->where, comp->name,
1332 gfc_basic_typename (cons->expr->ts.type),
1333 gfc_basic_typename (comp->ts.type));
1334 t = false;
1335 }
1336 else
1337 {
1338 bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
1339 if (t)
1340 t = t2;
1341 }
1342 }
1343
1344 /* For strings, the length of the constructor should be the same as
1345 the one of the structure, ensure this if the lengths are known at
1346 compile time and when we are dealing with PARAMETER or structure
1347 constructors. */
1348 if (cons->expr->ts.type == BT_CHARACTER && comp->ts.u.cl
1349 && comp->ts.u.cl->length
1350 && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
1351 && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
1352 && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
1353 && cons->expr->rank != 0
1354 && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
1355 comp->ts.u.cl->length->value.integer) != 0)
1356 {
1357 if (cons->expr->expr_type == EXPR_VARIABLE
1358 && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
1359 {
1360 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1361 to make use of the gfc_resolve_character_array_constructor
1362 machinery. The expression is later simplified away to
1363 an array of string literals. */
1364 gfc_expr *para = cons->expr;
1365 cons->expr = gfc_get_expr ();
1366 cons->expr->ts = para->ts;
1367 cons->expr->where = para->where;
1368 cons->expr->expr_type = EXPR_ARRAY;
1369 cons->expr->rank = para->rank;
1370 cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
1371 gfc_constructor_append_expr (&cons->expr->value.constructor,
1372 para, &cons->expr->where);
1373 }
1374
1375 if (cons->expr->expr_type == EXPR_ARRAY)
1376 {
1377 /* Rely on the cleanup of the namespace to deal correctly with
1378 the old charlen. (There was a block here that attempted to
1379 remove the charlen but broke the chain in so doing.) */
1380 cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1381 cons->expr->ts.u.cl->length_from_typespec = true;
1382 cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
1383 gfc_resolve_character_array_constructor (cons->expr);
1384 }
1385 }
1386
1387 if (cons->expr->expr_type == EXPR_NULL
1388 && !(comp->attr.pointer || comp->attr.allocatable
1389 || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
1390 || (comp->ts.type == BT_CLASS
1391 && (CLASS_DATA (comp)->attr.class_pointer
1392 || CLASS_DATA (comp)->attr.allocatable))))
1393 {
1394 t = false;
1395 gfc_error ("The NULL in the structure constructor at %L is "
1396 "being applied to component %qs, which is neither "
1397 "a POINTER nor ALLOCATABLE", &cons->expr->where,
1398 comp->name);
1399 }
1400
1401 if (comp->attr.proc_pointer && comp->ts.interface)
1402 {
1403 /* Check procedure pointer interface. */
1404 gfc_symbol *s2 = NULL;
1405 gfc_component *c2;
1406 const char *name;
1407 char err[200];
1408
1409 c2 = gfc_get_proc_ptr_comp (cons->expr);
1410 if (c2)
1411 {
1412 s2 = c2->ts.interface;
1413 name = c2->name;
1414 }
1415 else if (cons->expr->expr_type == EXPR_FUNCTION)
1416 {
1417 s2 = cons->expr->symtree->n.sym->result;
1418 name = cons->expr->symtree->n.sym->result->name;
1419 }
1420 else if (cons->expr->expr_type != EXPR_NULL)
1421 {
1422 s2 = cons->expr->symtree->n.sym;
1423 name = cons->expr->symtree->n.sym->name;
1424 }
1425
1426 if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
1427 err, sizeof (err), NULL, NULL))
1428 {
1429 gfc_error_opt (OPT_Wargument_mismatch,
1430 "Interface mismatch for procedure-pointer "
1431 "component %qs in structure constructor at %L:"
1432 " %s", comp->name, &cons->expr->where, err);
1433 return false;
1434 }
1435 }
1436
1437 if (!comp->attr.pointer || comp->attr.proc_pointer
1438 || cons->expr->expr_type == EXPR_NULL)
1439 continue;
1440
1441 a = gfc_expr_attr (cons->expr);
1442
1443 if (!a.pointer && !a.target)
1444 {
1445 t = false;
1446 gfc_error ("The element in the structure constructor at %L, "
1447 "for pointer component %qs should be a POINTER or "
1448 "a TARGET", &cons->expr->where, comp->name);
1449 }
1450
1451 if (init)
1452 {
1453 /* F08:C461. Additional checks for pointer initialization. */
1454 if (a.allocatable)
1455 {
1456 t = false;
1457 gfc_error ("Pointer initialization target at %L "
1458 "must not be ALLOCATABLE", &cons->expr->where);
1459 }
1460 if (!a.save)
1461 {
1462 t = false;
1463 gfc_error ("Pointer initialization target at %L "
1464 "must have the SAVE attribute", &cons->expr->where);
1465 }
1466 }
1467
1468 /* F2003, C1272 (3). */
1469 bool impure = cons->expr->expr_type == EXPR_VARIABLE
1470 && (gfc_impure_variable (cons->expr->symtree->n.sym)
1471 || gfc_is_coindexed (cons->expr));
1472 if (impure && gfc_pure (NULL))
1473 {
1474 t = false;
1475 gfc_error ("Invalid expression in the structure constructor for "
1476 "pointer component %qs at %L in PURE procedure",
1477 comp->name, &cons->expr->where);
1478 }
1479
1480 if (impure)
1481 gfc_unset_implicit_pure (NULL);
1482 }
1483
1484 return t;
1485 }
1486
1487
1488 /****************** Expression name resolution ******************/
1489
1490 /* Returns 0 if a symbol was not declared with a type or
1491 attribute declaration statement, nonzero otherwise. */
1492
1493 static int
1494 was_declared (gfc_symbol *sym)
1495 {
1496 symbol_attribute a;
1497
1498 a = sym->attr;
1499
1500 if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
1501 return 1;
1502
1503 if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
1504 || a.optional || a.pointer || a.save || a.target || a.volatile_
1505 || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
1506 || a.asynchronous || a.codimension)
1507 return 1;
1508
1509 return 0;
1510 }
1511
1512
1513 /* Determine if a symbol is generic or not. */
1514
1515 static int
1516 generic_sym (gfc_symbol *sym)
1517 {
1518 gfc_symbol *s;
1519
1520 if (sym->attr.generic ||
1521 (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
1522 return 1;
1523
1524 if (was_declared (sym) || sym->ns->parent == NULL)
1525 return 0;
1526
1527 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1528
1529 if (s != NULL)
1530 {
1531 if (s == sym)
1532 return 0;
1533 else
1534 return generic_sym (s);
1535 }
1536
1537 return 0;
1538 }
1539
1540
1541 /* Determine if a symbol is specific or not. */
1542
1543 static int
1544 specific_sym (gfc_symbol *sym)
1545 {
1546 gfc_symbol *s;
1547
1548 if (sym->attr.if_source == IFSRC_IFBODY
1549 || sym->attr.proc == PROC_MODULE
1550 || sym->attr.proc == PROC_INTERNAL
1551 || sym->attr.proc == PROC_ST_FUNCTION
1552 || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1553 || sym->attr.external)
1554 return 1;
1555
1556 if (was_declared (sym) || sym->ns->parent == NULL)
1557 return 0;
1558
1559 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1560
1561 return (s == NULL) ? 0 : specific_sym (s);
1562 }
1563
1564
1565 /* Figure out if the procedure is specific, generic or unknown. */
1566
1567 enum proc_type
1568 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
1569
1570 static proc_type
1571 procedure_kind (gfc_symbol *sym)
1572 {
1573 if (generic_sym (sym))
1574 return PTYPE_GENERIC;
1575
1576 if (specific_sym (sym))
1577 return PTYPE_SPECIFIC;
1578
1579 return PTYPE_UNKNOWN;
1580 }
1581
1582 /* Check references to assumed size arrays. The flag need_full_assumed_size
1583 is nonzero when matching actual arguments. */
1584
1585 static int need_full_assumed_size = 0;
1586
1587 static bool
1588 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1589 {
1590 if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1591 return false;
1592
1593 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1594 What should it be? */
1595 if (e->ref && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1596 && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1597 && (e->ref->u.ar.type == AR_FULL))
1598 {
1599 gfc_error ("The upper bound in the last dimension must "
1600 "appear in the reference to the assumed size "
1601 "array %qs at %L", sym->name, &e->where);
1602 return true;
1603 }
1604 return false;
1605 }
1606
1607
1608 /* Look for bad assumed size array references in argument expressions
1609 of elemental and array valued intrinsic procedures. Since this is
1610 called from procedure resolution functions, it only recurses at
1611 operators. */
1612
1613 static bool
1614 resolve_assumed_size_actual (gfc_expr *e)
1615 {
1616 if (e == NULL)
1617 return false;
1618
1619 switch (e->expr_type)
1620 {
1621 case EXPR_VARIABLE:
1622 if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1623 return true;
1624 break;
1625
1626 case EXPR_OP:
1627 if (resolve_assumed_size_actual (e->value.op.op1)
1628 || resolve_assumed_size_actual (e->value.op.op2))
1629 return true;
1630 break;
1631
1632 default:
1633 break;
1634 }
1635 return false;
1636 }
1637
1638
1639 /* Check a generic procedure, passed as an actual argument, to see if
1640 there is a matching specific name. If none, it is an error, and if
1641 more than one, the reference is ambiguous. */
1642 static int
1643 count_specific_procs (gfc_expr *e)
1644 {
1645 int n;
1646 gfc_interface *p;
1647 gfc_symbol *sym;
1648
1649 n = 0;
1650 sym = e->symtree->n.sym;
1651
1652 for (p = sym->generic; p; p = p->next)
1653 if (strcmp (sym->name, p->sym->name) == 0)
1654 {
1655 e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1656 sym->name);
1657 n++;
1658 }
1659
1660 if (n > 1)
1661 gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
1662 &e->where);
1663
1664 if (n == 0)
1665 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1666 "argument at %L", sym->name, &e->where);
1667
1668 return n;
1669 }
1670
1671
1672 /* See if a call to sym could possibly be a not allowed RECURSION because of
1673 a missing RECURSIVE declaration. This means that either sym is the current
1674 context itself, or sym is the parent of a contained procedure calling its
1675 non-RECURSIVE containing procedure.
1676 This also works if sym is an ENTRY. */
1677
1678 static bool
1679 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1680 {
1681 gfc_symbol* proc_sym;
1682 gfc_symbol* context_proc;
1683 gfc_namespace* real_context;
1684
1685 if (sym->attr.flavor == FL_PROGRAM
1686 || gfc_fl_struct (sym->attr.flavor))
1687 return false;
1688
1689 /* If we've got an ENTRY, find real procedure. */
1690 if (sym->attr.entry && sym->ns->entries)
1691 proc_sym = sym->ns->entries->sym;
1692 else
1693 proc_sym = sym;
1694
1695 /* If sym is RECURSIVE, all is well of course. */
1696 if (proc_sym->attr.recursive || flag_recursive)
1697 return false;
1698
1699 /* Find the context procedure's "real" symbol if it has entries.
1700 We look for a procedure symbol, so recurse on the parents if we don't
1701 find one (like in case of a BLOCK construct). */
1702 for (real_context = context; ; real_context = real_context->parent)
1703 {
1704 /* We should find something, eventually! */
1705 gcc_assert (real_context);
1706
1707 context_proc = (real_context->entries ? real_context->entries->sym
1708 : real_context->proc_name);
1709
1710 /* In some special cases, there may not be a proc_name, like for this
1711 invalid code:
1712 real(bad_kind()) function foo () ...
1713 when checking the call to bad_kind ().
1714 In these cases, we simply return here and assume that the
1715 call is ok. */
1716 if (!context_proc)
1717 return false;
1718
1719 if (context_proc->attr.flavor != FL_LABEL)
1720 break;
1721 }
1722
1723 /* A call from sym's body to itself is recursion, of course. */
1724 if (context_proc == proc_sym)
1725 return true;
1726
1727 /* The same is true if context is a contained procedure and sym the
1728 containing one. */
1729 if (context_proc->attr.contained)
1730 {
1731 gfc_symbol* parent_proc;
1732
1733 gcc_assert (context->parent);
1734 parent_proc = (context->parent->entries ? context->parent->entries->sym
1735 : context->parent->proc_name);
1736
1737 if (parent_proc == proc_sym)
1738 return true;
1739 }
1740
1741 return false;
1742 }
1743
1744
1745 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1746 its typespec and formal argument list. */
1747
1748 bool
1749 gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
1750 {
1751 gfc_intrinsic_sym* isym = NULL;
1752 const char* symstd;
1753
1754 if (sym->formal)
1755 return true;
1756
1757 /* Already resolved. */
1758 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1759 return true;
1760
1761 /* We already know this one is an intrinsic, so we don't call
1762 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1763 gfc_find_subroutine directly to check whether it is a function or
1764 subroutine. */
1765
1766 if (sym->intmod_sym_id && sym->attr.subroutine)
1767 {
1768 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1769 isym = gfc_intrinsic_subroutine_by_id (id);
1770 }
1771 else if (sym->intmod_sym_id)
1772 {
1773 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1774 isym = gfc_intrinsic_function_by_id (id);
1775 }
1776 else if (!sym->attr.subroutine)
1777 isym = gfc_find_function (sym->name);
1778
1779 if (isym && !sym->attr.subroutine)
1780 {
1781 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1782 && !sym->attr.implicit_type)
1783 gfc_warning (OPT_Wsurprising,
1784 "Type specified for intrinsic function %qs at %L is"
1785 " ignored", sym->name, &sym->declared_at);
1786
1787 if (!sym->attr.function &&
1788 !gfc_add_function(&sym->attr, sym->name, loc))
1789 return false;
1790
1791 sym->ts = isym->ts;
1792 }
1793 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1794 {
1795 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1796 {
1797 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1798 " specifier", sym->name, &sym->declared_at);
1799 return false;
1800 }
1801
1802 if (!sym->attr.subroutine &&
1803 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1804 return false;
1805 }
1806 else
1807 {
1808 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1809 &sym->declared_at);
1810 return false;
1811 }
1812
1813 gfc_copy_formal_args_intr (sym, isym, NULL);
1814
1815 sym->attr.pure = isym->pure;
1816 sym->attr.elemental = isym->elemental;
1817
1818 /* Check it is actually available in the standard settings. */
1819 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1820 {
1821 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1822 "available in the current standard settings but %s. Use "
1823 "an appropriate %<-std=*%> option or enable "
1824 "%<-fall-intrinsics%> in order to use it.",
1825 sym->name, &sym->declared_at, symstd);
1826 return false;
1827 }
1828
1829 return true;
1830 }
1831
1832
1833 /* Resolve a procedure expression, like passing it to a called procedure or as
1834 RHS for a procedure pointer assignment. */
1835
1836 static bool
1837 resolve_procedure_expression (gfc_expr* expr)
1838 {
1839 gfc_symbol* sym;
1840
1841 if (expr->expr_type != EXPR_VARIABLE)
1842 return true;
1843 gcc_assert (expr->symtree);
1844
1845 sym = expr->symtree->n.sym;
1846
1847 if (sym->attr.intrinsic)
1848 gfc_resolve_intrinsic (sym, &expr->where);
1849
1850 if (sym->attr.flavor != FL_PROCEDURE
1851 || (sym->attr.function && sym->result == sym))
1852 return true;
1853
1854 /* A non-RECURSIVE procedure that is used as procedure expression within its
1855 own body is in danger of being called recursively. */
1856 if (is_illegal_recursion (sym, gfc_current_ns))
1857 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1858 " itself recursively. Declare it RECURSIVE or use"
1859 " %<-frecursive%>", sym->name, &expr->where);
1860
1861 return true;
1862 }
1863
1864
1865 /* Resolve an actual argument list. Most of the time, this is just
1866 resolving the expressions in the list.
1867 The exception is that we sometimes have to decide whether arguments
1868 that look like procedure arguments are really simple variable
1869 references. */
1870
1871 static bool
1872 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1873 bool no_formal_args)
1874 {
1875 gfc_symbol *sym;
1876 gfc_symtree *parent_st;
1877 gfc_expr *e;
1878 gfc_component *comp;
1879 int save_need_full_assumed_size;
1880 bool return_value = false;
1881 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1882
1883 actual_arg = true;
1884 first_actual_arg = true;
1885
1886 for (; arg; arg = arg->next)
1887 {
1888 e = arg->expr;
1889 if (e == NULL)
1890 {
1891 /* Check the label is a valid branching target. */
1892 if (arg->label)
1893 {
1894 if (arg->label->defined == ST_LABEL_UNKNOWN)
1895 {
1896 gfc_error ("Label %d referenced at %L is never defined",
1897 arg->label->value, &arg->label->where);
1898 goto cleanup;
1899 }
1900 }
1901 first_actual_arg = false;
1902 continue;
1903 }
1904
1905 if (e->expr_type == EXPR_VARIABLE
1906 && e->symtree->n.sym->attr.generic
1907 && no_formal_args
1908 && count_specific_procs (e) != 1)
1909 goto cleanup;
1910
1911 if (e->ts.type != BT_PROCEDURE)
1912 {
1913 save_need_full_assumed_size = need_full_assumed_size;
1914 if (e->expr_type != EXPR_VARIABLE)
1915 need_full_assumed_size = 0;
1916 if (!gfc_resolve_expr (e))
1917 goto cleanup;
1918 need_full_assumed_size = save_need_full_assumed_size;
1919 goto argument_list;
1920 }
1921
1922 /* See if the expression node should really be a variable reference. */
1923
1924 sym = e->symtree->n.sym;
1925
1926 if (sym->attr.flavor == FL_PROCEDURE
1927 || sym->attr.intrinsic
1928 || sym->attr.external)
1929 {
1930 int actual_ok;
1931
1932 /* If a procedure is not already determined to be something else
1933 check if it is intrinsic. */
1934 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1935 sym->attr.intrinsic = 1;
1936
1937 if (sym->attr.proc == PROC_ST_FUNCTION)
1938 {
1939 gfc_error ("Statement function %qs at %L is not allowed as an "
1940 "actual argument", sym->name, &e->where);
1941 }
1942
1943 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1944 sym->attr.subroutine);
1945 if (sym->attr.intrinsic && actual_ok == 0)
1946 {
1947 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1948 "actual argument", sym->name, &e->where);
1949 }
1950
1951 if (sym->attr.contained && !sym->attr.use_assoc
1952 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1953 {
1954 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1955 " used as actual argument at %L",
1956 sym->name, &e->where))
1957 goto cleanup;
1958 }
1959
1960 if (sym->attr.elemental && !sym->attr.intrinsic)
1961 {
1962 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1963 "allowed as an actual argument at %L", sym->name,
1964 &e->where);
1965 }
1966
1967 /* Check if a generic interface has a specific procedure
1968 with the same name before emitting an error. */
1969 if (sym->attr.generic && count_specific_procs (e) != 1)
1970 goto cleanup;
1971
1972 /* Just in case a specific was found for the expression. */
1973 sym = e->symtree->n.sym;
1974
1975 /* If the symbol is the function that names the current (or
1976 parent) scope, then we really have a variable reference. */
1977
1978 if (gfc_is_function_return_value (sym, sym->ns))
1979 goto got_variable;
1980
1981 /* If all else fails, see if we have a specific intrinsic. */
1982 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
1983 {
1984 gfc_intrinsic_sym *isym;
1985
1986 isym = gfc_find_function (sym->name);
1987 if (isym == NULL || !isym->specific)
1988 {
1989 gfc_error ("Unable to find a specific INTRINSIC procedure "
1990 "for the reference %qs at %L", sym->name,
1991 &e->where);
1992 goto cleanup;
1993 }
1994 sym->ts = isym->ts;
1995 sym->attr.intrinsic = 1;
1996 sym->attr.function = 1;
1997 }
1998
1999 if (!gfc_resolve_expr (e))
2000 goto cleanup;
2001 goto argument_list;
2002 }
2003
2004 /* See if the name is a module procedure in a parent unit. */
2005
2006 if (was_declared (sym) || sym->ns->parent == NULL)
2007 goto got_variable;
2008
2009 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2010 {
2011 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2012 goto cleanup;
2013 }
2014
2015 if (parent_st == NULL)
2016 goto got_variable;
2017
2018 sym = parent_st->n.sym;
2019 e->symtree = parent_st; /* Point to the right thing. */
2020
2021 if (sym->attr.flavor == FL_PROCEDURE
2022 || sym->attr.intrinsic
2023 || sym->attr.external)
2024 {
2025 if (!gfc_resolve_expr (e))
2026 goto cleanup;
2027 goto argument_list;
2028 }
2029
2030 got_variable:
2031 e->expr_type = EXPR_VARIABLE;
2032 e->ts = sym->ts;
2033 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2034 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2035 && CLASS_DATA (sym)->as))
2036 {
2037 e->rank = sym->ts.type == BT_CLASS
2038 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2039 e->ref = gfc_get_ref ();
2040 e->ref->type = REF_ARRAY;
2041 e->ref->u.ar.type = AR_FULL;
2042 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2043 ? CLASS_DATA (sym)->as : sym->as;
2044 }
2045
2046 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2047 primary.c (match_actual_arg). If above code determines that it
2048 is a variable instead, it needs to be resolved as it was not
2049 done at the beginning of this function. */
2050 save_need_full_assumed_size = need_full_assumed_size;
2051 if (e->expr_type != EXPR_VARIABLE)
2052 need_full_assumed_size = 0;
2053 if (!gfc_resolve_expr (e))
2054 goto cleanup;
2055 need_full_assumed_size = save_need_full_assumed_size;
2056
2057 argument_list:
2058 /* Check argument list functions %VAL, %LOC and %REF. There is
2059 nothing to do for %REF. */
2060 if (arg->name && arg->name[0] == '%')
2061 {
2062 if (strcmp ("%VAL", arg->name) == 0)
2063 {
2064 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2065 {
2066 gfc_error ("By-value argument at %L is not of numeric "
2067 "type", &e->where);
2068 goto cleanup;
2069 }
2070
2071 if (e->rank)
2072 {
2073 gfc_error ("By-value argument at %L cannot be an array or "
2074 "an array section", &e->where);
2075 goto cleanup;
2076 }
2077
2078 /* Intrinsics are still PROC_UNKNOWN here. However,
2079 since same file external procedures are not resolvable
2080 in gfortran, it is a good deal easier to leave them to
2081 intrinsic.c. */
2082 if (ptype != PROC_UNKNOWN
2083 && ptype != PROC_DUMMY
2084 && ptype != PROC_EXTERNAL
2085 && ptype != PROC_MODULE)
2086 {
2087 gfc_error ("By-value argument at %L is not allowed "
2088 "in this context", &e->where);
2089 goto cleanup;
2090 }
2091 }
2092
2093 /* Statement functions have already been excluded above. */
2094 else if (strcmp ("%LOC", arg->name) == 0
2095 && e->ts.type == BT_PROCEDURE)
2096 {
2097 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2098 {
2099 gfc_error ("Passing internal procedure at %L by location "
2100 "not allowed", &e->where);
2101 goto cleanup;
2102 }
2103 }
2104 }
2105
2106 comp = gfc_get_proc_ptr_comp(e);
2107 if (e->expr_type == EXPR_VARIABLE
2108 && comp && comp->attr.elemental)
2109 {
2110 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2111 "allowed as an actual argument at %L", comp->name,
2112 &e->where);
2113 }
2114
2115 /* Fortran 2008, C1237. */
2116 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2117 && gfc_has_ultimate_pointer (e))
2118 {
2119 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2120 "component", &e->where);
2121 goto cleanup;
2122 }
2123
2124 first_actual_arg = false;
2125 }
2126
2127 return_value = true;
2128
2129 cleanup:
2130 actual_arg = actual_arg_sav;
2131 first_actual_arg = first_actual_arg_sav;
2132
2133 return return_value;
2134 }
2135
2136
2137 /* Do the checks of the actual argument list that are specific to elemental
2138 procedures. If called with c == NULL, we have a function, otherwise if
2139 expr == NULL, we have a subroutine. */
2140
2141 static bool
2142 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2143 {
2144 gfc_actual_arglist *arg0;
2145 gfc_actual_arglist *arg;
2146 gfc_symbol *esym = NULL;
2147 gfc_intrinsic_sym *isym = NULL;
2148 gfc_expr *e = NULL;
2149 gfc_intrinsic_arg *iformal = NULL;
2150 gfc_formal_arglist *eformal = NULL;
2151 bool formal_optional = false;
2152 bool set_by_optional = false;
2153 int i;
2154 int rank = 0;
2155
2156 /* Is this an elemental procedure? */
2157 if (expr && expr->value.function.actual != NULL)
2158 {
2159 if (expr->value.function.esym != NULL
2160 && expr->value.function.esym->attr.elemental)
2161 {
2162 arg0 = expr->value.function.actual;
2163 esym = expr->value.function.esym;
2164 }
2165 else if (expr->value.function.isym != NULL
2166 && expr->value.function.isym->elemental)
2167 {
2168 arg0 = expr->value.function.actual;
2169 isym = expr->value.function.isym;
2170 }
2171 else
2172 return true;
2173 }
2174 else if (c && c->ext.actual != NULL)
2175 {
2176 arg0 = c->ext.actual;
2177
2178 if (c->resolved_sym)
2179 esym = c->resolved_sym;
2180 else
2181 esym = c->symtree->n.sym;
2182 gcc_assert (esym);
2183
2184 if (!esym->attr.elemental)
2185 return true;
2186 }
2187 else
2188 return true;
2189
2190 /* The rank of an elemental is the rank of its array argument(s). */
2191 for (arg = arg0; arg; arg = arg->next)
2192 {
2193 if (arg->expr != NULL && arg->expr->rank != 0)
2194 {
2195 rank = arg->expr->rank;
2196 if (arg->expr->expr_type == EXPR_VARIABLE
2197 && arg->expr->symtree->n.sym->attr.optional)
2198 set_by_optional = true;
2199
2200 /* Function specific; set the result rank and shape. */
2201 if (expr)
2202 {
2203 expr->rank = rank;
2204 if (!expr->shape && arg->expr->shape)
2205 {
2206 expr->shape = gfc_get_shape (rank);
2207 for (i = 0; i < rank; i++)
2208 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2209 }
2210 }
2211 break;
2212 }
2213 }
2214
2215 /* If it is an array, it shall not be supplied as an actual argument
2216 to an elemental procedure unless an array of the same rank is supplied
2217 as an actual argument corresponding to a nonoptional dummy argument of
2218 that elemental procedure(12.4.1.5). */
2219 formal_optional = false;
2220 if (isym)
2221 iformal = isym->formal;
2222 else
2223 eformal = esym->formal;
2224
2225 for (arg = arg0; arg; arg = arg->next)
2226 {
2227 if (eformal)
2228 {
2229 if (eformal->sym && eformal->sym->attr.optional)
2230 formal_optional = true;
2231 eformal = eformal->next;
2232 }
2233 else if (isym && iformal)
2234 {
2235 if (iformal->optional)
2236 formal_optional = true;
2237 iformal = iformal->next;
2238 }
2239 else if (isym)
2240 formal_optional = true;
2241
2242 if (pedantic && arg->expr != NULL
2243 && arg->expr->expr_type == EXPR_VARIABLE
2244 && arg->expr->symtree->n.sym->attr.optional
2245 && formal_optional
2246 && arg->expr->rank
2247 && (set_by_optional || arg->expr->rank != rank)
2248 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2249 {
2250 gfc_warning (OPT_Wpedantic,
2251 "%qs at %L is an array and OPTIONAL; IF IT IS "
2252 "MISSING, it cannot be the actual argument of an "
2253 "ELEMENTAL procedure unless there is a non-optional "
2254 "argument with the same rank (12.4.1.5)",
2255 arg->expr->symtree->n.sym->name, &arg->expr->where);
2256 }
2257 }
2258
2259 for (arg = arg0; arg; arg = arg->next)
2260 {
2261 if (arg->expr == NULL || arg->expr->rank == 0)
2262 continue;
2263
2264 /* Being elemental, the last upper bound of an assumed size array
2265 argument must be present. */
2266 if (resolve_assumed_size_actual (arg->expr))
2267 return false;
2268
2269 /* Elemental procedure's array actual arguments must conform. */
2270 if (e != NULL)
2271 {
2272 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2273 return false;
2274 }
2275 else
2276 e = arg->expr;
2277 }
2278
2279 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2280 is an array, the intent inout/out variable needs to be also an array. */
2281 if (rank > 0 && esym && expr == NULL)
2282 for (eformal = esym->formal, arg = arg0; arg && eformal;
2283 arg = arg->next, eformal = eformal->next)
2284 if ((eformal->sym->attr.intent == INTENT_OUT
2285 || eformal->sym->attr.intent == INTENT_INOUT)
2286 && arg->expr && arg->expr->rank == 0)
2287 {
2288 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2289 "ELEMENTAL subroutine %qs is a scalar, but another "
2290 "actual argument is an array", &arg->expr->where,
2291 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2292 : "INOUT", eformal->sym->name, esym->name);
2293 return false;
2294 }
2295 return true;
2296 }
2297
2298
2299 /* This function does the checking of references to global procedures
2300 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2301 77 and 95 standards. It checks for a gsymbol for the name, making
2302 one if it does not already exist. If it already exists, then the
2303 reference being resolved must correspond to the type of gsymbol.
2304 Otherwise, the new symbol is equipped with the attributes of the
2305 reference. The corresponding code that is called in creating
2306 global entities is parse.c.
2307
2308 In addition, for all but -std=legacy, the gsymbols are used to
2309 check the interfaces of external procedures from the same file.
2310 The namespace of the gsymbol is resolved and then, once this is
2311 done the interface is checked. */
2312
2313
2314 static bool
2315 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2316 {
2317 if (!gsym_ns->proc_name->attr.recursive)
2318 return true;
2319
2320 if (sym->ns == gsym_ns)
2321 return false;
2322
2323 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2324 return false;
2325
2326 return true;
2327 }
2328
2329 static bool
2330 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2331 {
2332 if (gsym_ns->entries)
2333 {
2334 gfc_entry_list *entry = gsym_ns->entries;
2335
2336 for (; entry; entry = entry->next)
2337 {
2338 if (strcmp (sym->name, entry->sym->name) == 0)
2339 {
2340 if (strcmp (gsym_ns->proc_name->name,
2341 sym->ns->proc_name->name) == 0)
2342 return false;
2343
2344 if (sym->ns->parent
2345 && strcmp (gsym_ns->proc_name->name,
2346 sym->ns->parent->proc_name->name) == 0)
2347 return false;
2348 }
2349 }
2350 }
2351 return true;
2352 }
2353
2354
2355 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2356
2357 bool
2358 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2359 {
2360 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2361
2362 for ( ; arg; arg = arg->next)
2363 {
2364 if (!arg->sym)
2365 continue;
2366
2367 if (arg->sym->attr.allocatable) /* (2a) */
2368 {
2369 strncpy (errmsg, _("allocatable argument"), err_len);
2370 return true;
2371 }
2372 else if (arg->sym->attr.asynchronous)
2373 {
2374 strncpy (errmsg, _("asynchronous argument"), err_len);
2375 return true;
2376 }
2377 else if (arg->sym->attr.optional)
2378 {
2379 strncpy (errmsg, _("optional argument"), err_len);
2380 return true;
2381 }
2382 else if (arg->sym->attr.pointer)
2383 {
2384 strncpy (errmsg, _("pointer argument"), err_len);
2385 return true;
2386 }
2387 else if (arg->sym->attr.target)
2388 {
2389 strncpy (errmsg, _("target argument"), err_len);
2390 return true;
2391 }
2392 else if (arg->sym->attr.value)
2393 {
2394 strncpy (errmsg, _("value argument"), err_len);
2395 return true;
2396 }
2397 else if (arg->sym->attr.volatile_)
2398 {
2399 strncpy (errmsg, _("volatile argument"), err_len);
2400 return true;
2401 }
2402 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2403 {
2404 strncpy (errmsg, _("assumed-shape argument"), err_len);
2405 return true;
2406 }
2407 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2408 {
2409 strncpy (errmsg, _("assumed-rank argument"), err_len);
2410 return true;
2411 }
2412 else if (arg->sym->attr.codimension) /* (2c) */
2413 {
2414 strncpy (errmsg, _("coarray argument"), err_len);
2415 return true;
2416 }
2417 else if (false) /* (2d) TODO: parametrized derived type */
2418 {
2419 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2420 return true;
2421 }
2422 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2423 {
2424 strncpy (errmsg, _("polymorphic argument"), err_len);
2425 return true;
2426 }
2427 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2428 {
2429 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2430 return true;
2431 }
2432 else if (arg->sym->ts.type == BT_ASSUMED)
2433 {
2434 /* As assumed-type is unlimited polymorphic (cf. above).
2435 See also TS 29113, Note 6.1. */
2436 strncpy (errmsg, _("assumed-type argument"), err_len);
2437 return true;
2438 }
2439 }
2440
2441 if (sym->attr.function)
2442 {
2443 gfc_symbol *res = sym->result ? sym->result : sym;
2444
2445 if (res->attr.dimension) /* (3a) */
2446 {
2447 strncpy (errmsg, _("array result"), err_len);
2448 return true;
2449 }
2450 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2451 {
2452 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2453 return true;
2454 }
2455 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2456 && res->ts.u.cl->length
2457 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2458 {
2459 strncpy (errmsg, _("result with non-constant character length"), err_len);
2460 return true;
2461 }
2462 }
2463
2464 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2465 {
2466 strncpy (errmsg, _("elemental procedure"), err_len);
2467 return true;
2468 }
2469 else if (sym->attr.is_bind_c) /* (5) */
2470 {
2471 strncpy (errmsg, _("bind(c) procedure"), err_len);
2472 return true;
2473 }
2474
2475 return false;
2476 }
2477
2478
2479 static void
2480 resolve_global_procedure (gfc_symbol *sym, locus *where,
2481 gfc_actual_arglist **actual, int sub)
2482 {
2483 gfc_gsymbol * gsym;
2484 gfc_namespace *ns;
2485 enum gfc_symbol_type type;
2486 char reason[200];
2487
2488 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2489
2490 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name);
2491
2492 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2493 gfc_global_used (gsym, where);
2494
2495 if ((sym->attr.if_source == IFSRC_UNKNOWN
2496 || sym->attr.if_source == IFSRC_IFBODY)
2497 && gsym->type != GSYM_UNKNOWN
2498 && !gsym->binding_label
2499 && gsym->ns
2500 && gsym->ns->resolved != -1
2501 && gsym->ns->proc_name
2502 && not_in_recursive (sym, gsym->ns)
2503 && not_entry_self_reference (sym, gsym->ns))
2504 {
2505 gfc_symbol *def_sym;
2506
2507 /* Resolve the gsymbol namespace if needed. */
2508 if (!gsym->ns->resolved)
2509 {
2510 gfc_symbol *old_dt_list;
2511
2512 /* Stash away derived types so that the backend_decls do not
2513 get mixed up. */
2514 old_dt_list = gfc_derived_types;
2515 gfc_derived_types = NULL;
2516
2517 gfc_resolve (gsym->ns);
2518
2519 /* Store the new derived types with the global namespace. */
2520 if (gfc_derived_types)
2521 gsym->ns->derived_types = gfc_derived_types;
2522
2523 /* Restore the derived types of this namespace. */
2524 gfc_derived_types = old_dt_list;
2525 }
2526
2527 /* Make sure that translation for the gsymbol occurs before
2528 the procedure currently being resolved. */
2529 ns = gfc_global_ns_list;
2530 for (; ns && ns != gsym->ns; ns = ns->sibling)
2531 {
2532 if (ns->sibling == gsym->ns)
2533 {
2534 ns->sibling = gsym->ns->sibling;
2535 gsym->ns->sibling = gfc_global_ns_list;
2536 gfc_global_ns_list = gsym->ns;
2537 break;
2538 }
2539 }
2540
2541 def_sym = gsym->ns->proc_name;
2542
2543 /* This can happen if a binding name has been specified. */
2544 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2545 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2546
2547 if (def_sym->attr.entry_master)
2548 {
2549 gfc_entry_list *entry;
2550 for (entry = gsym->ns->entries; entry; entry = entry->next)
2551 if (strcmp (entry->sym->name, sym->name) == 0)
2552 {
2553 def_sym = entry->sym;
2554 break;
2555 }
2556 }
2557
2558 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2559 {
2560 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2561 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2562 gfc_typename (&def_sym->ts));
2563 goto done;
2564 }
2565
2566 if (sym->attr.if_source == IFSRC_UNKNOWN
2567 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2568 {
2569 gfc_error ("Explicit interface required for %qs at %L: %s",
2570 sym->name, &sym->declared_at, reason);
2571 goto done;
2572 }
2573
2574 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU))
2575 /* Turn erros into warnings with -std=gnu and -std=legacy. */
2576 gfc_errors_to_warnings (true);
2577
2578 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2579 reason, sizeof(reason), NULL, NULL))
2580 {
2581 gfc_error_opt (OPT_Wargument_mismatch,
2582 "Interface mismatch in global procedure %qs at %L:"
2583 " %s", sym->name, &sym->declared_at, reason);
2584 goto done;
2585 }
2586
2587 if (!pedantic
2588 || ((gfc_option.warn_std & GFC_STD_LEGACY)
2589 && !(gfc_option.warn_std & GFC_STD_GNU)))
2590 gfc_errors_to_warnings (true);
2591
2592 if (sym->attr.if_source != IFSRC_IFBODY)
2593 gfc_procedure_use (def_sym, actual, where);
2594 }
2595
2596 done:
2597 gfc_errors_to_warnings (false);
2598
2599 if (gsym->type == GSYM_UNKNOWN)
2600 {
2601 gsym->type = type;
2602 gsym->where = *where;
2603 }
2604
2605 gsym->used = 1;
2606 }
2607
2608
2609 /************* Function resolution *************/
2610
2611 /* Resolve a function call known to be generic.
2612 Section 14.1.2.4.1. */
2613
2614 static match
2615 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2616 {
2617 gfc_symbol *s;
2618
2619 if (sym->attr.generic)
2620 {
2621 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2622 if (s != NULL)
2623 {
2624 expr->value.function.name = s->name;
2625 expr->value.function.esym = s;
2626
2627 if (s->ts.type != BT_UNKNOWN)
2628 expr->ts = s->ts;
2629 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2630 expr->ts = s->result->ts;
2631
2632 if (s->as != NULL)
2633 expr->rank = s->as->rank;
2634 else if (s->result != NULL && s->result->as != NULL)
2635 expr->rank = s->result->as->rank;
2636
2637 gfc_set_sym_referenced (expr->value.function.esym);
2638
2639 return MATCH_YES;
2640 }
2641
2642 /* TODO: Need to search for elemental references in generic
2643 interface. */
2644 }
2645
2646 if (sym->attr.intrinsic)
2647 return gfc_intrinsic_func_interface (expr, 0);
2648
2649 return MATCH_NO;
2650 }
2651
2652
2653 static bool
2654 resolve_generic_f (gfc_expr *expr)
2655 {
2656 gfc_symbol *sym;
2657 match m;
2658 gfc_interface *intr = NULL;
2659
2660 sym = expr->symtree->n.sym;
2661
2662 for (;;)
2663 {
2664 m = resolve_generic_f0 (expr, sym);
2665 if (m == MATCH_YES)
2666 return true;
2667 else if (m == MATCH_ERROR)
2668 return false;
2669
2670 generic:
2671 if (!intr)
2672 for (intr = sym->generic; intr; intr = intr->next)
2673 if (gfc_fl_struct (intr->sym->attr.flavor))
2674 break;
2675
2676 if (sym->ns->parent == NULL)
2677 break;
2678 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2679
2680 if (sym == NULL)
2681 break;
2682 if (!generic_sym (sym))
2683 goto generic;
2684 }
2685
2686 /* Last ditch attempt. See if the reference is to an intrinsic
2687 that possesses a matching interface. 14.1.2.4 */
2688 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2689 {
2690 if (gfc_init_expr_flag)
2691 gfc_error ("Function %qs in initialization expression at %L "
2692 "must be an intrinsic function",
2693 expr->symtree->n.sym->name, &expr->where);
2694 else
2695 gfc_error ("There is no specific function for the generic %qs "
2696 "at %L", expr->symtree->n.sym->name, &expr->where);
2697 return false;
2698 }
2699
2700 if (intr)
2701 {
2702 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2703 NULL, false))
2704 return false;
2705 if (!gfc_use_derived (expr->ts.u.derived))
2706 return false;
2707 return resolve_structure_cons (expr, 0);
2708 }
2709
2710 m = gfc_intrinsic_func_interface (expr, 0);
2711 if (m == MATCH_YES)
2712 return true;
2713
2714 if (m == MATCH_NO)
2715 gfc_error ("Generic function %qs at %L is not consistent with a "
2716 "specific intrinsic interface", expr->symtree->n.sym->name,
2717 &expr->where);
2718
2719 return false;
2720 }
2721
2722
2723 /* Resolve a function call known to be specific. */
2724
2725 static match
2726 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2727 {
2728 match m;
2729
2730 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2731 {
2732 if (sym->attr.dummy)
2733 {
2734 sym->attr.proc = PROC_DUMMY;
2735 goto found;
2736 }
2737
2738 sym->attr.proc = PROC_EXTERNAL;
2739 goto found;
2740 }
2741
2742 if (sym->attr.proc == PROC_MODULE
2743 || sym->attr.proc == PROC_ST_FUNCTION
2744 || sym->attr.proc == PROC_INTERNAL)
2745 goto found;
2746
2747 if (sym->attr.intrinsic)
2748 {
2749 m = gfc_intrinsic_func_interface (expr, 1);
2750 if (m == MATCH_YES)
2751 return MATCH_YES;
2752 if (m == MATCH_NO)
2753 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2754 "with an intrinsic", sym->name, &expr->where);
2755
2756 return MATCH_ERROR;
2757 }
2758
2759 return MATCH_NO;
2760
2761 found:
2762 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2763
2764 if (sym->result)
2765 expr->ts = sym->result->ts;
2766 else
2767 expr->ts = sym->ts;
2768 expr->value.function.name = sym->name;
2769 expr->value.function.esym = sym;
2770 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2771 error(s). */
2772 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2773 return MATCH_ERROR;
2774 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2775 expr->rank = CLASS_DATA (sym)->as->rank;
2776 else if (sym->as != NULL)
2777 expr->rank = sym->as->rank;
2778
2779 return MATCH_YES;
2780 }
2781
2782
2783 static bool
2784 resolve_specific_f (gfc_expr *expr)
2785 {
2786 gfc_symbol *sym;
2787 match m;
2788
2789 sym = expr->symtree->n.sym;
2790
2791 for (;;)
2792 {
2793 m = resolve_specific_f0 (sym, expr);
2794 if (m == MATCH_YES)
2795 return true;
2796 if (m == MATCH_ERROR)
2797 return false;
2798
2799 if (sym->ns->parent == NULL)
2800 break;
2801
2802 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2803
2804 if (sym == NULL)
2805 break;
2806 }
2807
2808 gfc_error ("Unable to resolve the specific function %qs at %L",
2809 expr->symtree->n.sym->name, &expr->where);
2810
2811 return true;
2812 }
2813
2814 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2815 candidates in CANDIDATES_LEN. */
2816
2817 static void
2818 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2819 char **&candidates,
2820 size_t &candidates_len)
2821 {
2822 gfc_symtree *p;
2823
2824 if (sym == NULL)
2825 return;
2826 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2827 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2828 vec_push (candidates, candidates_len, sym->name);
2829
2830 p = sym->left;
2831 if (p)
2832 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2833
2834 p = sym->right;
2835 if (p)
2836 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2837 }
2838
2839
2840 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2841
2842 const char*
2843 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2844 {
2845 char **candidates = NULL;
2846 size_t candidates_len = 0;
2847 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2848 return gfc_closest_fuzzy_match (fn, candidates);
2849 }
2850
2851
2852 /* Resolve a procedure call not known to be generic nor specific. */
2853
2854 static bool
2855 resolve_unknown_f (gfc_expr *expr)
2856 {
2857 gfc_symbol *sym;
2858 gfc_typespec *ts;
2859
2860 sym = expr->symtree->n.sym;
2861
2862 if (sym->attr.dummy)
2863 {
2864 sym->attr.proc = PROC_DUMMY;
2865 expr->value.function.name = sym->name;
2866 goto set_type;
2867 }
2868
2869 /* See if we have an intrinsic function reference. */
2870
2871 if (gfc_is_intrinsic (sym, 0, expr->where))
2872 {
2873 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2874 return true;
2875 return false;
2876 }
2877
2878 /* The reference is to an external name. */
2879
2880 sym->attr.proc = PROC_EXTERNAL;
2881 expr->value.function.name = sym->name;
2882 expr->value.function.esym = expr->symtree->n.sym;
2883
2884 if (sym->as != NULL)
2885 expr->rank = sym->as->rank;
2886
2887 /* Type of the expression is either the type of the symbol or the
2888 default type of the symbol. */
2889
2890 set_type:
2891 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2892
2893 if (sym->ts.type != BT_UNKNOWN)
2894 expr->ts = sym->ts;
2895 else
2896 {
2897 ts = gfc_get_default_type (sym->name, sym->ns);
2898
2899 if (ts->type == BT_UNKNOWN)
2900 {
2901 const char *guessed
2902 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2903 if (guessed)
2904 gfc_error ("Function %qs at %L has no IMPLICIT type"
2905 "; did you mean %qs?",
2906 sym->name, &expr->where, guessed);
2907 else
2908 gfc_error ("Function %qs at %L has no IMPLICIT type",
2909 sym->name, &expr->where);
2910 return false;
2911 }
2912 else
2913 expr->ts = *ts;
2914 }
2915
2916 return true;
2917 }
2918
2919
2920 /* Return true, if the symbol is an external procedure. */
2921 static bool
2922 is_external_proc (gfc_symbol *sym)
2923 {
2924 if (!sym->attr.dummy && !sym->attr.contained
2925 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2926 && sym->attr.proc != PROC_ST_FUNCTION
2927 && !sym->attr.proc_pointer
2928 && !sym->attr.use_assoc
2929 && sym->name)
2930 return true;
2931
2932 return false;
2933 }
2934
2935
2936 /* Figure out if a function reference is pure or not. Also set the name
2937 of the function for a potential error message. Return nonzero if the
2938 function is PURE, zero if not. */
2939 static int
2940 pure_stmt_function (gfc_expr *, gfc_symbol *);
2941
2942 int
2943 gfc_pure_function (gfc_expr *e, const char **name)
2944 {
2945 int pure;
2946 gfc_component *comp;
2947
2948 *name = NULL;
2949
2950 if (e->symtree != NULL
2951 && e->symtree->n.sym != NULL
2952 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2953 return pure_stmt_function (e, e->symtree->n.sym);
2954
2955 comp = gfc_get_proc_ptr_comp (e);
2956 if (comp)
2957 {
2958 pure = gfc_pure (comp->ts.interface);
2959 *name = comp->name;
2960 }
2961 else if (e->value.function.esym)
2962 {
2963 pure = gfc_pure (e->value.function.esym);
2964 *name = e->value.function.esym->name;
2965 }
2966 else if (e->value.function.isym)
2967 {
2968 pure = e->value.function.isym->pure
2969 || e->value.function.isym->elemental;
2970 *name = e->value.function.isym->name;
2971 }
2972 else
2973 {
2974 /* Implicit functions are not pure. */
2975 pure = 0;
2976 *name = e->value.function.name;
2977 }
2978
2979 return pure;
2980 }
2981
2982
2983 /* Check if the expression is a reference to an implicitly pure function. */
2984
2985 int
2986 gfc_implicit_pure_function (gfc_expr *e)
2987 {
2988 gfc_component *comp = gfc_get_proc_ptr_comp (e);
2989 if (comp)
2990 return gfc_implicit_pure (comp->ts.interface);
2991 else if (e->value.function.esym)
2992 return gfc_implicit_pure (e->value.function.esym);
2993 else
2994 return 0;
2995 }
2996
2997
2998 static bool
2999 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
3000 int *f ATTRIBUTE_UNUSED)
3001 {
3002 const char *name;
3003
3004 /* Don't bother recursing into other statement functions
3005 since they will be checked individually for purity. */
3006 if (e->expr_type != EXPR_FUNCTION
3007 || !e->symtree
3008 || e->symtree->n.sym == sym
3009 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
3010 return false;
3011
3012 return gfc_pure_function (e, &name) ? false : true;
3013 }
3014
3015
3016 static int
3017 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
3018 {
3019 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
3020 }
3021
3022
3023 /* Check if an impure function is allowed in the current context. */
3024
3025 static bool check_pure_function (gfc_expr *e)
3026 {
3027 const char *name = NULL;
3028 if (!gfc_pure_function (e, &name) && name)
3029 {
3030 if (forall_flag)
3031 {
3032 gfc_error ("Reference to impure function %qs at %L inside a "
3033 "FORALL %s", name, &e->where,
3034 forall_flag == 2 ? "mask" : "block");
3035 return false;
3036 }
3037 else if (gfc_do_concurrent_flag)
3038 {
3039 gfc_error ("Reference to impure function %qs at %L inside a "
3040 "DO CONCURRENT %s", name, &e->where,
3041 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3042 return false;
3043 }
3044 else if (gfc_pure (NULL))
3045 {
3046 gfc_error ("Reference to impure function %qs at %L "
3047 "within a PURE procedure", name, &e->where);
3048 return false;
3049 }
3050 if (!gfc_implicit_pure_function (e))
3051 gfc_unset_implicit_pure (NULL);
3052 }
3053 return true;
3054 }
3055
3056
3057 /* Update current procedure's array_outer_dependency flag, considering
3058 a call to procedure SYM. */
3059
3060 static void
3061 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3062 {
3063 /* Check to see if this is a sibling function that has not yet
3064 been resolved. */
3065 gfc_namespace *sibling = gfc_current_ns->sibling;
3066 for (; sibling; sibling = sibling->sibling)
3067 {
3068 if (sibling->proc_name == sym)
3069 {
3070 gfc_resolve (sibling);
3071 break;
3072 }
3073 }
3074
3075 /* If SYM has references to outer arrays, so has the procedure calling
3076 SYM. If SYM is a procedure pointer, we can assume the worst. */
3077 if ((sym->attr.array_outer_dependency || sym->attr.proc_pointer)
3078 && gfc_current_ns->proc_name)
3079 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3080 }
3081
3082
3083 /* Resolve a function call, which means resolving the arguments, then figuring
3084 out which entity the name refers to. */
3085
3086 static bool
3087 resolve_function (gfc_expr *expr)
3088 {
3089 gfc_actual_arglist *arg;
3090 gfc_symbol *sym;
3091 bool t;
3092 int temp;
3093 procedure_type p = PROC_INTRINSIC;
3094 bool no_formal_args;
3095
3096 sym = NULL;
3097 if (expr->symtree)
3098 sym = expr->symtree->n.sym;
3099
3100 /* If this is a procedure pointer component, it has already been resolved. */
3101 if (gfc_is_proc_ptr_comp (expr))
3102 return true;
3103
3104 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3105 another caf_get. */
3106 if (sym && sym->attr.intrinsic
3107 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3108 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3109 return true;
3110
3111 if (sym && sym->attr.intrinsic
3112 && !gfc_resolve_intrinsic (sym, &expr->where))
3113 return false;
3114
3115 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3116 {
3117 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3118 return false;
3119 }
3120
3121 /* If this is a deferred TBP with an abstract interface (which may
3122 of course be referenced), expr->value.function.esym will be set. */
3123 if (sym && sym->attr.abstract && !expr->value.function.esym)
3124 {
3125 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3126 sym->name, &expr->where);
3127 return false;
3128 }
3129
3130 /* If this is a deferred TBP with an abstract interface, its result
3131 cannot be an assumed length character (F2003: C418). */
3132 if (sym && sym->attr.abstract && sym->attr.function
3133 && sym->result->ts.u.cl
3134 && sym->result->ts.u.cl->length == NULL
3135 && !sym->result->ts.deferred)
3136 {
3137 gfc_error ("ABSTRACT INTERFACE %qs at %L must not have an assumed "
3138 "character length result (F2008: C418)", sym->name,
3139 &sym->declared_at);
3140 return false;
3141 }
3142
3143 /* Switch off assumed size checking and do this again for certain kinds
3144 of procedure, once the procedure itself is resolved. */
3145 need_full_assumed_size++;
3146
3147 if (expr->symtree && expr->symtree->n.sym)
3148 p = expr->symtree->n.sym->attr.proc;
3149
3150 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3151 inquiry_argument = true;
3152 no_formal_args = sym && is_external_proc (sym)
3153 && gfc_sym_get_dummy_args (sym) == NULL;
3154
3155 if (!resolve_actual_arglist (expr->value.function.actual,
3156 p, no_formal_args))
3157 {
3158 inquiry_argument = false;
3159 return false;
3160 }
3161
3162 inquiry_argument = false;
3163
3164 /* Resume assumed_size checking. */
3165 need_full_assumed_size--;
3166
3167 /* If the procedure is external, check for usage. */
3168 if (sym && is_external_proc (sym))
3169 resolve_global_procedure (sym, &expr->where,
3170 &expr->value.function.actual, 0);
3171
3172 if (sym && sym->ts.type == BT_CHARACTER
3173 && sym->ts.u.cl
3174 && sym->ts.u.cl->length == NULL
3175 && !sym->attr.dummy
3176 && !sym->ts.deferred
3177 && expr->value.function.esym == NULL
3178 && !sym->attr.contained)
3179 {
3180 /* Internal procedures are taken care of in resolve_contained_fntype. */
3181 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3182 "be used at %L since it is not a dummy argument",
3183 sym->name, &expr->where);
3184 return false;
3185 }
3186
3187 /* See if function is already resolved. */
3188
3189 if (expr->value.function.name != NULL
3190 || expr->value.function.isym != NULL)
3191 {
3192 if (expr->ts.type == BT_UNKNOWN)
3193 expr->ts = sym->ts;
3194 t = true;
3195 }
3196 else
3197 {
3198 /* Apply the rules of section 14.1.2. */
3199
3200 switch (procedure_kind (sym))
3201 {
3202 case PTYPE_GENERIC:
3203 t = resolve_generic_f (expr);
3204 break;
3205
3206 case PTYPE_SPECIFIC:
3207 t = resolve_specific_f (expr);
3208 break;
3209
3210 case PTYPE_UNKNOWN:
3211 t = resolve_unknown_f (expr);
3212 break;
3213
3214 default:
3215 gfc_internal_error ("resolve_function(): bad function type");
3216 }
3217 }
3218
3219 /* If the expression is still a function (it might have simplified),
3220 then we check to see if we are calling an elemental function. */
3221
3222 if (expr->expr_type != EXPR_FUNCTION)
3223 return t;
3224
3225 temp = need_full_assumed_size;
3226 need_full_assumed_size = 0;
3227
3228 if (!resolve_elemental_actual (expr, NULL))
3229 return false;
3230
3231 if (omp_workshare_flag
3232 && expr->value.function.esym
3233 && ! gfc_elemental (expr->value.function.esym))
3234 {
3235 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3236 "in WORKSHARE construct", expr->value.function.esym->name,
3237 &expr->where);
3238 t = false;
3239 }
3240
3241 #define GENERIC_ID expr->value.function.isym->id
3242 else if (expr->value.function.actual != NULL
3243 && expr->value.function.isym != NULL
3244 && GENERIC_ID != GFC_ISYM_LBOUND
3245 && GENERIC_ID != GFC_ISYM_LCOBOUND
3246 && GENERIC_ID != GFC_ISYM_UCOBOUND
3247 && GENERIC_ID != GFC_ISYM_LEN
3248 && GENERIC_ID != GFC_ISYM_LOC
3249 && GENERIC_ID != GFC_ISYM_C_LOC
3250 && GENERIC_ID != GFC_ISYM_PRESENT)
3251 {
3252 /* Array intrinsics must also have the last upper bound of an
3253 assumed size array argument. UBOUND and SIZE have to be
3254 excluded from the check if the second argument is anything
3255 than a constant. */
3256
3257 for (arg = expr->value.function.actual; arg; arg = arg->next)
3258 {
3259 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3260 && arg == expr->value.function.actual
3261 && arg->next != NULL && arg->next->expr)
3262 {
3263 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3264 break;
3265
3266 if (arg->next->name && strcmp (arg->next->name, "kind") == 0)
3267 break;
3268
3269 if ((int)mpz_get_si (arg->next->expr->value.integer)
3270 < arg->expr->rank)
3271 break;
3272 }
3273
3274 if (arg->expr != NULL
3275 && arg->expr->rank > 0
3276 && resolve_assumed_size_actual (arg->expr))
3277 return false;
3278 }
3279 }
3280 #undef GENERIC_ID
3281
3282 need_full_assumed_size = temp;
3283
3284 if (!check_pure_function(expr))
3285 t = false;
3286
3287 /* Functions without the RECURSIVE attribution are not allowed to
3288 * call themselves. */
3289 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3290 {
3291 gfc_symbol *esym;
3292 esym = expr->value.function.esym;
3293
3294 if (is_illegal_recursion (esym, gfc_current_ns))
3295 {
3296 if (esym->attr.entry && esym->ns->entries)
3297 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3298 " function %qs is not RECURSIVE",
3299 esym->name, &expr->where, esym->ns->entries->sym->name);
3300 else
3301 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3302 " is not RECURSIVE", esym->name, &expr->where);
3303
3304 t = false;
3305 }
3306 }
3307
3308 /* Character lengths of use associated functions may contains references to
3309 symbols not referenced from the current program unit otherwise. Make sure
3310 those symbols are marked as referenced. */
3311
3312 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3313 && expr->value.function.esym->attr.use_assoc)
3314 {
3315 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3316 }
3317
3318 /* Make sure that the expression has a typespec that works. */
3319 if (expr->ts.type == BT_UNKNOWN)
3320 {
3321 if (expr->symtree->n.sym->result
3322 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3323 && !expr->symtree->n.sym->result->attr.proc_pointer)
3324 expr->ts = expr->symtree->n.sym->result->ts;
3325 }
3326
3327 if (!expr->ref && !expr->value.function.isym)
3328 {
3329 if (expr->value.function.esym)
3330 update_current_proc_array_outer_dependency (expr->value.function.esym);
3331 else
3332 update_current_proc_array_outer_dependency (sym);
3333 }
3334 else if (expr->ref)
3335 /* typebound procedure: Assume the worst. */
3336 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3337
3338 return t;
3339 }
3340
3341
3342 /************* Subroutine resolution *************/
3343
3344 static bool
3345 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3346 {
3347 if (gfc_pure (sym))
3348 return true;
3349
3350 if (forall_flag)
3351 {
3352 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3353 name, loc);
3354 return false;
3355 }
3356 else if (gfc_do_concurrent_flag)
3357 {
3358 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3359 "PURE", name, loc);
3360 return false;
3361 }
3362 else if (gfc_pure (NULL))
3363 {
3364 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3365 return false;
3366 }
3367
3368 gfc_unset_implicit_pure (NULL);
3369 return true;
3370 }
3371
3372
3373 static match
3374 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3375 {
3376 gfc_symbol *s;
3377
3378 if (sym->attr.generic)
3379 {
3380 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3381 if (s != NULL)
3382 {
3383 c->resolved_sym = s;
3384 if (!pure_subroutine (s, s->name, &c->loc))
3385 return MATCH_ERROR;
3386 return MATCH_YES;
3387 }
3388
3389 /* TODO: Need to search for elemental references in generic interface. */
3390 }
3391
3392 if (sym->attr.intrinsic)
3393 return gfc_intrinsic_sub_interface (c, 0);
3394
3395 return MATCH_NO;
3396 }
3397
3398
3399 static bool
3400 resolve_generic_s (gfc_code *c)
3401 {
3402 gfc_symbol *sym;
3403 match m;
3404
3405 sym = c->symtree->n.sym;
3406
3407 for (;;)
3408 {
3409 m = resolve_generic_s0 (c, sym);
3410 if (m == MATCH_YES)
3411 return true;
3412 else if (m == MATCH_ERROR)
3413 return false;
3414
3415 generic:
3416 if (sym->ns->parent == NULL)
3417 break;
3418 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3419
3420 if (sym == NULL)
3421 break;
3422 if (!generic_sym (sym))
3423 goto generic;
3424 }
3425
3426 /* Last ditch attempt. See if the reference is to an intrinsic
3427 that possesses a matching interface. 14.1.2.4 */
3428 sym = c->symtree->n.sym;
3429
3430 if (!gfc_is_intrinsic (sym, 1, c->loc))
3431 {
3432 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3433 sym->name, &c->loc);
3434 return false;
3435 }
3436
3437 m = gfc_intrinsic_sub_interface (c, 0);
3438 if (m == MATCH_YES)
3439 return true;
3440 if (m == MATCH_NO)
3441 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3442 "intrinsic subroutine interface", sym->name, &c->loc);
3443
3444 return false;
3445 }
3446
3447
3448 /* Resolve a subroutine call known to be specific. */
3449
3450 static match
3451 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3452 {
3453 match m;
3454
3455 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3456 {
3457 if (sym->attr.dummy)
3458 {
3459 sym->attr.proc = PROC_DUMMY;
3460 goto found;
3461 }
3462
3463 sym->attr.proc = PROC_EXTERNAL;
3464 goto found;
3465 }
3466
3467 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3468 goto found;
3469
3470 if (sym->attr.intrinsic)
3471 {
3472 m = gfc_intrinsic_sub_interface (c, 1);
3473 if (m == MATCH_YES)
3474 return MATCH_YES;
3475 if (m == MATCH_NO)
3476 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3477 "with an intrinsic", sym->name, &c->loc);
3478
3479 return MATCH_ERROR;
3480 }
3481
3482 return MATCH_NO;
3483
3484 found:
3485 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3486
3487 c->resolved_sym = sym;
3488 if (!pure_subroutine (sym, sym->name, &c->loc))
3489 return MATCH_ERROR;
3490
3491 return MATCH_YES;
3492 }
3493
3494
3495 static bool
3496 resolve_specific_s (gfc_code *c)
3497 {
3498 gfc_symbol *sym;
3499 match m;
3500
3501 sym = c->symtree->n.sym;
3502
3503 for (;;)
3504 {
3505 m = resolve_specific_s0 (c, sym);
3506 if (m == MATCH_YES)
3507 return true;
3508 if (m == MATCH_ERROR)
3509 return false;
3510
3511 if (sym->ns->parent == NULL)
3512 break;
3513
3514 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3515
3516 if (sym == NULL)
3517 break;
3518 }
3519
3520 sym = c->symtree->n.sym;
3521 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3522 sym->name, &c->loc);
3523
3524 return false;
3525 }
3526
3527
3528 /* Resolve a subroutine call not known to be generic nor specific. */
3529
3530 static bool
3531 resolve_unknown_s (gfc_code *c)
3532 {
3533 gfc_symbol *sym;
3534
3535 sym = c->symtree->n.sym;
3536
3537 if (sym->attr.dummy)
3538 {
3539 sym->attr.proc = PROC_DUMMY;
3540 goto found;
3541 }
3542
3543 /* See if we have an intrinsic function reference. */
3544
3545 if (gfc_is_intrinsic (sym, 1, c->loc))
3546 {
3547 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3548 return true;
3549 return false;
3550 }
3551
3552 /* The reference is to an external name. */
3553
3554 found:
3555 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3556
3557 c->resolved_sym = sym;
3558
3559 return pure_subroutine (sym, sym->name, &c->loc);
3560 }
3561
3562
3563 /* Resolve a subroutine call. Although it was tempting to use the same code
3564 for functions, subroutines and functions are stored differently and this
3565 makes things awkward. */
3566
3567 static bool
3568 resolve_call (gfc_code *c)
3569 {
3570 bool t;
3571 procedure_type ptype = PROC_INTRINSIC;
3572 gfc_symbol *csym, *sym;
3573 bool no_formal_args;
3574
3575 csym = c->symtree ? c->symtree->n.sym : NULL;
3576
3577 if (csym && csym->ts.type != BT_UNKNOWN)
3578 {
3579 gfc_error ("%qs at %L has a type, which is not consistent with "
3580 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3581 return false;
3582 }
3583
3584 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3585 {
3586 gfc_symtree *st;
3587 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3588 sym = st ? st->n.sym : NULL;
3589 if (sym && csym != sym
3590 && sym->ns == gfc_current_ns
3591 && sym->attr.flavor == FL_PROCEDURE
3592 && sym->attr.contained)
3593 {
3594 sym->refs++;
3595 if (csym->attr.generic)
3596 c->symtree->n.sym = sym;
3597 else
3598 c->symtree = st;
3599 csym = c->symtree->n.sym;
3600 }
3601 }
3602
3603 /* If this ia a deferred TBP, c->expr1 will be set. */
3604 if (!c->expr1 && csym)
3605 {
3606 if (csym->attr.abstract)
3607 {
3608 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3609 csym->name, &c->loc);
3610 return false;
3611 }
3612
3613 /* Subroutines without the RECURSIVE attribution are not allowed to
3614 call themselves. */
3615 if (is_illegal_recursion (csym, gfc_current_ns))
3616 {
3617 if (csym->attr.entry && csym->ns->entries)
3618 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3619 "as subroutine %qs is not RECURSIVE",
3620 csym->name, &c->loc, csym->ns->entries->sym->name);
3621 else
3622 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3623 "as it is not RECURSIVE", csym->name, &c->loc);
3624
3625 t = false;
3626 }
3627 }
3628
3629 /* Switch off assumed size checking and do this again for certain kinds
3630 of procedure, once the procedure itself is resolved. */
3631 need_full_assumed_size++;
3632
3633 if (csym)
3634 ptype = csym->attr.proc;
3635
3636 no_formal_args = csym && is_external_proc (csym)
3637 && gfc_sym_get_dummy_args (csym) == NULL;
3638 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3639 return false;
3640
3641 /* Resume assumed_size checking. */
3642 need_full_assumed_size--;
3643
3644 /* If external, check for usage. */
3645 if (csym && is_external_proc (csym))
3646 resolve_global_procedure (csym, &c->loc, &c->ext.actual, 1);
3647
3648 t = true;
3649 if (c->resolved_sym == NULL)
3650 {
3651 c->resolved_isym = NULL;
3652 switch (procedure_kind (csym))
3653 {
3654 case PTYPE_GENERIC:
3655 t = resolve_generic_s (c);
3656 break;
3657
3658 case PTYPE_SPECIFIC:
3659 t = resolve_specific_s (c);
3660 break;
3661
3662 case PTYPE_UNKNOWN:
3663 t = resolve_unknown_s (c);
3664 break;
3665
3666 default:
3667 gfc_internal_error ("resolve_subroutine(): bad function type");
3668 }
3669 }
3670
3671 /* Some checks of elemental subroutine actual arguments. */
3672 if (!resolve_elemental_actual (NULL, c))
3673 return false;
3674
3675 if (!c->expr1)
3676 update_current_proc_array_outer_dependency (csym);
3677 else
3678 /* Typebound procedure: Assume the worst. */
3679 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3680
3681 return t;
3682 }
3683
3684
3685 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3686 op1->shape and op2->shape are non-NULL return true if their shapes
3687 match. If both op1->shape and op2->shape are non-NULL return false
3688 if their shapes do not match. If either op1->shape or op2->shape is
3689 NULL, return true. */
3690
3691 static bool
3692 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3693 {
3694 bool t;
3695 int i;
3696
3697 t = true;
3698
3699 if (op1->shape != NULL && op2->shape != NULL)
3700 {
3701 for (i = 0; i < op1->rank; i++)
3702 {
3703 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3704 {
3705 gfc_error ("Shapes for operands at %L and %L are not conformable",
3706 &op1->where, &op2->where);
3707 t = false;
3708 break;
3709 }
3710 }
3711 }
3712
3713 return t;
3714 }
3715
3716 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3717 For example A .AND. B becomes IAND(A, B). */
3718 static gfc_expr *
3719 logical_to_bitwise (gfc_expr *e)
3720 {
3721 gfc_expr *tmp, *op1, *op2;
3722 gfc_isym_id isym;
3723 gfc_actual_arglist *args = NULL;
3724
3725 gcc_assert (e->expr_type == EXPR_OP);
3726
3727 isym = GFC_ISYM_NONE;
3728 op1 = e->value.op.op1;
3729 op2 = e->value.op.op2;
3730
3731 switch (e->value.op.op)
3732 {
3733 case INTRINSIC_NOT:
3734 isym = GFC_ISYM_NOT;
3735 break;
3736 case INTRINSIC_AND:
3737 isym = GFC_ISYM_IAND;
3738 break;
3739 case INTRINSIC_OR:
3740 isym = GFC_ISYM_IOR;
3741 break;
3742 case INTRINSIC_NEQV:
3743 isym = GFC_ISYM_IEOR;
3744 break;
3745 case INTRINSIC_EQV:
3746 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3747 Change the old expression to NEQV, which will get replaced by IEOR,
3748 and wrap it in NOT. */
3749 tmp = gfc_copy_expr (e);
3750 tmp->value.op.op = INTRINSIC_NEQV;
3751 tmp = logical_to_bitwise (tmp);
3752 isym = GFC_ISYM_NOT;
3753 op1 = tmp;
3754 op2 = NULL;
3755 break;
3756 default:
3757 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3758 }
3759
3760 /* Inherit the original operation's operands as arguments. */
3761 args = gfc_get_actual_arglist ();
3762 args->expr = op1;
3763 if (op2)
3764 {
3765 args->next = gfc_get_actual_arglist ();
3766 args->next->expr = op2;
3767 }
3768
3769 /* Convert the expression to a function call. */
3770 e->expr_type = EXPR_FUNCTION;
3771 e->value.function.actual = args;
3772 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3773 e->value.function.name = e->value.function.isym->name;
3774 e->value.function.esym = NULL;
3775
3776 /* Make up a pre-resolved function call symtree if we need to. */
3777 if (!e->symtree || !e->symtree->n.sym)
3778 {
3779 gfc_symbol *sym;
3780 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3781 sym = e->symtree->n.sym;
3782 sym->result = sym;
3783 sym->attr.flavor = FL_PROCEDURE;
3784 sym->attr.function = 1;
3785 sym->attr.elemental = 1;
3786 sym->attr.pure = 1;
3787 sym->attr.referenced = 1;
3788 gfc_intrinsic_symbol (sym);
3789 gfc_commit_symbol (sym);
3790 }
3791
3792 args->name = e->value.function.isym->formal->name;
3793 if (e->value.function.isym->formal->next)
3794 args->next->name = e->value.function.isym->formal->next->name;
3795
3796 return e;
3797 }
3798
3799 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3800 candidates in CANDIDATES_LEN. */
3801 static void
3802 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3803 char **&candidates,
3804 size_t &candidates_len)
3805 {
3806 gfc_symtree *p;
3807
3808 if (uop == NULL)
3809 return;
3810
3811 /* Not sure how to properly filter here. Use all for a start.
3812 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3813 these as i suppose they don't make terribly sense. */
3814
3815 if (uop->n.uop->op != NULL)
3816 vec_push (candidates, candidates_len, uop->name);
3817
3818 p = uop->left;
3819 if (p)
3820 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3821
3822 p = uop->right;
3823 if (p)
3824 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3825 }
3826
3827 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3828
3829 static const char*
3830 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3831 {
3832 char **candidates = NULL;
3833 size_t candidates_len = 0;
3834 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3835 return gfc_closest_fuzzy_match (op, candidates);
3836 }
3837
3838
3839 /* Callback finding an impure function as an operand to an .and. or
3840 .or. expression. Remember the last function warned about to
3841 avoid double warnings when recursing. */
3842
3843 static int
3844 impure_function_callback (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED,
3845 void *data)
3846 {
3847 gfc_expr *f = *e;
3848 const char *name;
3849 static gfc_expr *last = NULL;
3850 bool *found = (bool *) data;
3851
3852 if (f->expr_type == EXPR_FUNCTION)
3853 {
3854 *found = 1;
3855 if (f != last && !gfc_pure_function (f, &name)
3856 && !gfc_implicit_pure_function (f))
3857 {
3858 if (name)
3859 gfc_warning (OPT_Wfunction_elimination,
3860 "Impure function %qs at %L might not be evaluated",
3861 name, &f->where);
3862 else
3863 gfc_warning (OPT_Wfunction_elimination,
3864 "Impure function at %L might not be evaluated",
3865 &f->where);
3866 }
3867 last = f;
3868 }
3869
3870 return 0;
3871 }
3872
3873
3874 /* Resolve an operator expression node. This can involve replacing the
3875 operation with a user defined function call. */
3876
3877 static bool
3878 resolve_operator (gfc_expr *e)
3879 {
3880 gfc_expr *op1, *op2;
3881 char msg[200];
3882 bool dual_locus_error;
3883 bool t;
3884
3885 /* Resolve all subnodes-- give them types. */
3886
3887 switch (e->value.op.op)
3888 {
3889 default:
3890 if (!gfc_resolve_expr (e->value.op.op2))
3891 return false;
3892
3893 /* Fall through. */
3894
3895 case INTRINSIC_NOT:
3896 case INTRINSIC_UPLUS:
3897 case INTRINSIC_UMINUS:
3898 case INTRINSIC_PARENTHESES:
3899 if (!gfc_resolve_expr (e->value.op.op1))
3900 return false;
3901 break;
3902 }
3903
3904 /* Typecheck the new node. */
3905
3906 op1 = e->value.op.op1;
3907 op2 = e->value.op.op2;
3908 dual_locus_error = false;
3909
3910 if ((op1 && op1->expr_type == EXPR_NULL)
3911 || (op2 && op2->expr_type == EXPR_NULL))
3912 {
3913 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
3914 goto bad_op;
3915 }
3916
3917 switch (e->value.op.op)
3918 {
3919 case INTRINSIC_UPLUS:
3920 case INTRINSIC_UMINUS:
3921 if (op1->ts.type == BT_INTEGER
3922 || op1->ts.type == BT_REAL
3923 || op1->ts.type == BT_COMPLEX)
3924 {
3925 e->ts = op1->ts;
3926 break;
3927 }
3928
3929 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
3930 gfc_op2string (e->value.op.op), gfc_typename (&e->ts));
3931 goto bad_op;
3932
3933 case INTRINSIC_PLUS:
3934 case INTRINSIC_MINUS:
3935 case INTRINSIC_TIMES:
3936 case INTRINSIC_DIVIDE:
3937 case INTRINSIC_POWER:
3938 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3939 {
3940 gfc_type_convert_binary (e, 1);
3941 break;
3942 }
3943
3944 if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
3945 sprintf (msg,
3946 _("Unexpected derived-type entities in binary intrinsic "
3947 "numeric operator %%<%s%%> at %%L"),
3948 gfc_op2string (e->value.op.op));
3949 else
3950 sprintf (msg,
3951 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
3952 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3953 gfc_typename (&op2->ts));
3954 goto bad_op;
3955
3956 case INTRINSIC_CONCAT:
3957 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3958 && op1->ts.kind == op2->ts.kind)
3959 {
3960 e->ts.type = BT_CHARACTER;
3961 e->ts.kind = op1->ts.kind;
3962 break;
3963 }
3964
3965 sprintf (msg,
3966 _("Operands of string concatenation operator at %%L are %s/%s"),
3967 gfc_typename (&op1->ts), gfc_typename (&op2->ts));
3968 goto bad_op;
3969
3970 case INTRINSIC_AND:
3971 case INTRINSIC_OR:
3972 case INTRINSIC_EQV:
3973 case INTRINSIC_NEQV:
3974 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
3975 {
3976 e->ts.type = BT_LOGICAL;
3977 e->ts.kind = gfc_kind_max (op1, op2);
3978 if (op1->ts.kind < e->ts.kind)
3979 gfc_convert_type (op1, &e->ts, 2);
3980 else if (op2->ts.kind < e->ts.kind)
3981 gfc_convert_type (op2, &e->ts, 2);
3982
3983 if (flag_frontend_optimize &&
3984 (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
3985 {
3986 /* Warn about short-circuiting
3987 with impure function as second operand. */
3988 bool op2_f = false;
3989 gfc_expr_walker (&op2, impure_function_callback, &op2_f);
3990 }
3991 break;
3992 }
3993
3994 /* Logical ops on integers become bitwise ops with -fdec. */
3995 else if (flag_dec
3996 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
3997 {
3998 e->ts.type = BT_INTEGER;
3999 e->ts.kind = gfc_kind_max (op1, op2);
4000 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
4001 gfc_convert_type (op1, &e->ts, 1);
4002 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
4003 gfc_convert_type (op2, &e->ts, 1);
4004 e = logical_to_bitwise (e);
4005 break;
4006 }
4007
4008 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
4009 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
4010 gfc_typename (&op2->ts));
4011
4012 goto bad_op;
4013
4014 case INTRINSIC_NOT:
4015 /* Logical ops on integers become bitwise ops with -fdec. */
4016 if (flag_dec && op1->ts.type == BT_INTEGER)
4017 {
4018 e->ts.type = BT_INTEGER;
4019 e->ts.kind = op1->ts.kind;
4020 e = logical_to_bitwise (e);
4021 break;
4022 }
4023
4024 if (op1->ts.type == BT_LOGICAL)
4025 {
4026 e->ts.type = BT_LOGICAL;
4027 e->ts.kind = op1->ts.kind;
4028 break;
4029 }
4030
4031 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
4032 gfc_typename (&op1->ts));
4033 goto bad_op;
4034
4035 case INTRINSIC_GT:
4036 case INTRINSIC_GT_OS:
4037 case INTRINSIC_GE:
4038 case INTRINSIC_GE_OS:
4039 case INTRINSIC_LT:
4040 case INTRINSIC_LT_OS:
4041 case INTRINSIC_LE:
4042 case INTRINSIC_LE_OS:
4043 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
4044 {
4045 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
4046 goto bad_op;
4047 }
4048
4049 /* Fall through. */
4050
4051 case INTRINSIC_EQ:
4052 case INTRINSIC_EQ_OS:
4053 case INTRINSIC_NE:
4054 case INTRINSIC_NE_OS:
4055 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4056 && op1->ts.kind == op2->ts.kind)
4057 {
4058 e->ts.type = BT_LOGICAL;
4059 e->ts.kind = gfc_default_logical_kind;
4060 break;
4061 }
4062
4063 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4064 {
4065 gfc_type_convert_binary (e, 1);
4066
4067 e->ts.type = BT_LOGICAL;
4068 e->ts.kind = gfc_default_logical_kind;
4069
4070 if (warn_compare_reals)
4071 {
4072 gfc_intrinsic_op op = e->value.op.op;
4073
4074 /* Type conversion has made sure that the types of op1 and op2
4075 agree, so it is only necessary to check the first one. */
4076 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
4077 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
4078 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
4079 {
4080 const char *msg;
4081
4082 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4083 msg = "Equality comparison for %s at %L";
4084 else
4085 msg = "Inequality comparison for %s at %L";
4086
4087 gfc_warning (OPT_Wcompare_reals, msg,
4088 gfc_typename (&op1->ts), &op1->where);
4089 }
4090 }
4091
4092 break;
4093 }
4094
4095 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4096 sprintf (msg,
4097 _("Logicals at %%L must be compared with %s instead of %s"),
4098 (e->value.op.op == INTRINSIC_EQ
4099 || e->value.op.op == INTRINSIC_EQ_OS)
4100 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4101 else
4102 sprintf (msg,
4103 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4104 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
4105 gfc_typename (&op2->ts));
4106
4107 goto bad_op;
4108
4109 case INTRINSIC_USER:
4110 if (e->value.op.uop->op == NULL)
4111 {
4112 const char *name = e->value.op.uop->name;
4113 const char *guessed;
4114 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4115 if (guessed)
4116 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4117 name, guessed);
4118 else
4119 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4120 }
4121 else if (op2 == NULL)
4122 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4123 e->value.op.uop->name, gfc_typename (&op1->ts));
4124 else
4125 {
4126 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4127 e->value.op.uop->name, gfc_typename (&op1->ts),
4128 gfc_typename (&op2->ts));
4129 e->value.op.uop->op->sym->attr.referenced = 1;
4130 }
4131
4132 goto bad_op;
4133
4134 case INTRINSIC_PARENTHESES:
4135 e->ts = op1->ts;
4136 if (e->ts.type == BT_CHARACTER)
4137 e->ts.u.cl = op1->ts.u.cl;
4138 break;
4139
4140 default:
4141 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4142 }
4143
4144 /* Deal with arrayness of an operand through an operator. */
4145
4146 t = true;
4147
4148 switch (e->value.op.op)
4149 {
4150 case INTRINSIC_PLUS:
4151 case INTRINSIC_MINUS:
4152 case INTRINSIC_TIMES:
4153 case INTRINSIC_DIVIDE:
4154 case INTRINSIC_POWER:
4155 case INTRINSIC_CONCAT:
4156 case INTRINSIC_AND:
4157 case INTRINSIC_OR:
4158 case INTRINSIC_EQV:
4159 case INTRINSIC_NEQV:
4160 case INTRINSIC_EQ:
4161 case INTRINSIC_EQ_OS:
4162 case INTRINSIC_NE:
4163 case INTRINSIC_NE_OS:
4164 case INTRINSIC_GT:
4165 case INTRINSIC_GT_OS:
4166 case INTRINSIC_GE:
4167 case INTRINSIC_GE_OS:
4168 case INTRINSIC_LT:
4169 case INTRINSIC_LT_OS:
4170 case INTRINSIC_LE:
4171 case INTRINSIC_LE_OS:
4172
4173 if (op1->rank == 0 && op2->rank == 0)
4174 e->rank = 0;
4175
4176 if (op1->rank == 0 && op2->rank != 0)
4177 {
4178 e->rank = op2->rank;
4179
4180 if (e->shape == NULL)
4181 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4182 }
4183
4184 if (op1->rank != 0 && op2->rank == 0)
4185 {
4186 e->rank = op1->rank;
4187
4188 if (e->shape == NULL)
4189 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4190 }
4191
4192 if (op1->rank != 0 && op2->rank != 0)
4193 {
4194 if (op1->rank == op2->rank)
4195 {
4196 e->rank = op1->rank;
4197 if (e->shape == NULL)
4198 {
4199 t = compare_shapes (op1, op2);
4200 if (!t)
4201 e->shape = NULL;
4202 else
4203 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4204 }
4205 }
4206 else
4207 {
4208 /* Allow higher level expressions to work. */
4209 e->rank = 0;
4210
4211 /* Try user-defined operators, and otherwise throw an error. */
4212 dual_locus_error = true;
4213 sprintf (msg,
4214 _("Inconsistent ranks for operator at %%L and %%L"));
4215 goto bad_op;
4216 }
4217 }
4218
4219 break;
4220
4221 case INTRINSIC_PARENTHESES:
4222 case INTRINSIC_NOT:
4223 case INTRINSIC_UPLUS:
4224 case INTRINSIC_UMINUS:
4225 /* Simply copy arrayness attribute */
4226 e->rank = op1->rank;
4227
4228 if (e->shape == NULL)
4229 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4230
4231 break;
4232
4233 default:
4234 break;
4235 }
4236
4237 /* Attempt to simplify the expression. */
4238 if (t)
4239 {
4240 t = gfc_simplify_expr (e, 0);
4241 /* Some calls do not succeed in simplification and return false
4242 even though there is no error; e.g. variable references to
4243 PARAMETER arrays. */
4244 if (!gfc_is_constant_expr (e))
4245 t = true;
4246 }
4247 return t;
4248
4249 bad_op:
4250
4251 {
4252 match m = gfc_extend_expr (e);
4253 if (m == MATCH_YES)
4254 return true;
4255 if (m == MATCH_ERROR)
4256 return false;
4257 }
4258
4259 if (dual_locus_error)
4260 gfc_error (msg, &op1->where, &op2->where);
4261 else
4262 gfc_error (msg, &e->where);
4263
4264 return false;
4265 }
4266
4267
4268 /************** Array resolution subroutines **************/
4269
4270 enum compare_result
4271 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4272
4273 /* Compare two integer expressions. */
4274
4275 static compare_result
4276 compare_bound (gfc_expr *a, gfc_expr *b)
4277 {
4278 int i;
4279
4280 if (a == NULL || a->expr_type != EXPR_CONSTANT
4281 || b == NULL || b->expr_type != EXPR_CONSTANT)
4282 return CMP_UNKNOWN;
4283
4284 /* If either of the types isn't INTEGER, we must have
4285 raised an error earlier. */
4286
4287 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4288 return CMP_UNKNOWN;
4289
4290 i = mpz_cmp (a->value.integer, b->value.integer);
4291
4292 if (i < 0)
4293 return CMP_LT;
4294 if (i > 0)
4295 return CMP_GT;
4296 return CMP_EQ;
4297 }
4298
4299
4300 /* Compare an integer expression with an integer. */
4301
4302 static compare_result
4303 compare_bound_int (gfc_expr *a, int b)
4304 {
4305 int i;
4306
4307 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4308 return CMP_UNKNOWN;
4309
4310 if (a->ts.type != BT_INTEGER)
4311 gfc_internal_error ("compare_bound_int(): Bad expression");
4312
4313 i = mpz_cmp_si (a->value.integer, b);
4314
4315 if (i < 0)
4316 return CMP_LT;
4317 if (i > 0)
4318 return CMP_GT;
4319 return CMP_EQ;
4320 }
4321
4322
4323 /* Compare an integer expression with a mpz_t. */
4324
4325 static compare_result
4326 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4327 {
4328 int i;
4329
4330 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4331 return CMP_UNKNOWN;
4332
4333 if (a->ts.type != BT_INTEGER)
4334 gfc_internal_error ("compare_bound_int(): Bad expression");
4335
4336 i = mpz_cmp (a->value.integer, b);
4337
4338 if (i < 0)
4339 return CMP_LT;
4340 if (i > 0)
4341 return CMP_GT;
4342 return CMP_EQ;
4343 }
4344
4345
4346 /* Compute the last value of a sequence given by a triplet.
4347 Return 0 if it wasn't able to compute the last value, or if the
4348 sequence if empty, and 1 otherwise. */
4349
4350 static int
4351 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4352 gfc_expr *stride, mpz_t last)
4353 {
4354 mpz_t rem;
4355
4356 if (start == NULL || start->expr_type != EXPR_CONSTANT
4357 || end == NULL || end->expr_type != EXPR_CONSTANT
4358 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4359 return 0;
4360
4361 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4362 || (stride != NULL && stride->ts.type != BT_INTEGER))
4363 return 0;
4364
4365 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4366 {
4367 if (compare_bound (start, end) == CMP_GT)
4368 return 0;
4369 mpz_set (last, end->value.integer);
4370 return 1;
4371 }
4372
4373 if (compare_bound_int (stride, 0) == CMP_GT)
4374 {
4375 /* Stride is positive */
4376 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4377 return 0;
4378 }
4379 else
4380 {
4381 /* Stride is negative */
4382 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4383 return 0;
4384 }
4385
4386 mpz_init (rem);
4387 mpz_sub (rem, end->value.integer, start->value.integer);
4388 mpz_tdiv_r (rem, rem, stride->value.integer);
4389 mpz_sub (last, end->value.integer, rem);
4390 mpz_clear (rem);
4391
4392 return 1;
4393 }
4394
4395
4396 /* Compare a single dimension of an array reference to the array
4397 specification. */
4398
4399 static bool
4400 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4401 {
4402 mpz_t last_value;
4403
4404 if (ar->dimen_type[i] == DIMEN_STAR)
4405 {
4406 gcc_assert (ar->stride[i] == NULL);
4407 /* This implies [*] as [*:] and [*:3] are not possible. */
4408 if (ar->start[i] == NULL)
4409 {
4410 gcc_assert (ar->end[i] == NULL);
4411 return true;
4412 }
4413 }
4414
4415 /* Given start, end and stride values, calculate the minimum and
4416 maximum referenced indexes. */
4417
4418 switch (ar->dimen_type[i])
4419 {
4420 case DIMEN_VECTOR:
4421 case DIMEN_THIS_IMAGE:
4422 break;
4423
4424 case DIMEN_STAR:
4425 case DIMEN_ELEMENT:
4426 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4427 {
4428 if (i < as->rank)
4429 gfc_warning (0, "Array reference at %L is out of bounds "
4430 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4431 mpz_get_si (ar->start[i]->value.integer),
4432 mpz_get_si (as->lower[i]->value.integer), i+1);
4433 else
4434 gfc_warning (0, "Array reference at %L is out of bounds "
4435 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4436 mpz_get_si (ar->start[i]->value.integer),
4437 mpz_get_si (as->lower[i]->value.integer),
4438 i + 1 - as->rank);
4439 return true;
4440 }
4441 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4442 {
4443 if (i < as->rank)
4444 gfc_warning (0, "Array reference at %L is out of bounds "
4445 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4446 mpz_get_si (ar->start[i]->value.integer),
4447 mpz_get_si (as->upper[i]->value.integer), i+1);
4448 else
4449 gfc_warning (0, "Array reference at %L is out of bounds "
4450 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4451 mpz_get_si (ar->start[i]->value.integer),
4452 mpz_get_si (as->upper[i]->value.integer),
4453 i + 1 - as->rank);
4454 return true;
4455 }
4456
4457 break;
4458
4459 case DIMEN_RANGE:
4460 {
4461 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4462 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4463
4464 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4465
4466 /* Check for zero stride, which is not allowed. */
4467 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4468 {
4469 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4470 return false;
4471 }
4472
4473 /* if start == len || (stride > 0 && start < len)
4474 || (stride < 0 && start > len),
4475 then the array section contains at least one element. In this
4476 case, there is an out-of-bounds access if
4477 (start < lower || start > upper). */
4478 if (compare_bound (AR_START, AR_END) == CMP_EQ
4479 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4480 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4481 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4482 && comp_start_end == CMP_GT))
4483 {
4484 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4485 {
4486 gfc_warning (0, "Lower array reference at %L is out of bounds "
4487 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4488 mpz_get_si (AR_START->value.integer),
4489 mpz_get_si (as->lower[i]->value.integer), i+1);
4490 return true;
4491 }
4492 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4493 {
4494 gfc_warning (0, "Lower array reference at %L is out of bounds "
4495 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4496 mpz_get_si (AR_START->value.integer),
4497 mpz_get_si (as->upper[i]->value.integer), i+1);
4498 return true;
4499 }
4500 }
4501
4502 /* If we can compute the highest index of the array section,
4503 then it also has to be between lower and upper. */
4504 mpz_init (last_value);
4505 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4506 last_value))
4507 {
4508 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4509 {
4510 gfc_warning (0, "Upper array reference at %L is out of bounds "
4511 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4512 mpz_get_si (last_value),
4513 mpz_get_si (as->lower[i]->value.integer), i+1);
4514 mpz_clear (last_value);
4515 return true;
4516 }
4517 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4518 {
4519 gfc_warning (0, "Upper array reference at %L is out of bounds "
4520 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4521 mpz_get_si (last_value),
4522 mpz_get_si (as->upper[i]->value.integer), i+1);
4523 mpz_clear (last_value);
4524 return true;
4525 }
4526 }
4527 mpz_clear (last_value);
4528
4529 #undef AR_START
4530 #undef AR_END
4531 }
4532 break;
4533
4534 default:
4535 gfc_internal_error ("check_dimension(): Bad array reference");
4536 }
4537
4538 return true;
4539 }
4540
4541
4542 /* Compare an array reference with an array specification. */
4543
4544 static bool
4545 compare_spec_to_ref (gfc_array_ref *ar)
4546 {
4547 gfc_array_spec *as;
4548 int i;
4549
4550 as = ar->as;
4551 i = as->rank - 1;
4552 /* TODO: Full array sections are only allowed as actual parameters. */
4553 if (as->type == AS_ASSUMED_SIZE
4554 && (/*ar->type == AR_FULL
4555 ||*/ (ar->type == AR_SECTION
4556 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4557 {
4558 gfc_error ("Rightmost upper bound of assumed size array section "
4559 "not specified at %L", &ar->where);
4560 return false;
4561 }
4562
4563 if (ar->type == AR_FULL)
4564 return true;
4565
4566 if (as->rank != ar->dimen)
4567 {
4568 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4569 &ar->where, ar->dimen, as->rank);
4570 return false;
4571 }
4572
4573 /* ar->codimen == 0 is a local array. */
4574 if (as->corank != ar->codimen && ar->codimen != 0)
4575 {
4576 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4577 &ar->where, ar->codimen, as->corank);
4578 return false;
4579 }
4580
4581 for (i = 0; i < as->rank; i++)
4582 if (!check_dimension (i, ar, as))
4583 return false;
4584
4585 /* Local access has no coarray spec. */
4586 if (ar->codimen != 0)
4587 for (i = as->rank; i < as->rank + as->corank; i++)
4588 {
4589 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4590 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4591 {
4592 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4593 i + 1 - as->rank, &ar->where);
4594 return false;
4595 }
4596 if (!check_dimension (i, ar, as))
4597 return false;
4598 }
4599
4600 return true;
4601 }
4602
4603
4604 /* Resolve one part of an array index. */
4605
4606 static bool
4607 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4608 int force_index_integer_kind)
4609 {
4610 gfc_typespec ts;
4611
4612 if (index == NULL)
4613 return true;
4614
4615 if (!gfc_resolve_expr (index))
4616 return false;
4617
4618 if (check_scalar && index->rank != 0)
4619 {
4620 gfc_error ("Array index at %L must be scalar", &index->where);
4621 return false;
4622 }
4623
4624 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4625 {
4626 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4627 &index->where, gfc_basic_typename (index->ts.type));
4628 return false;
4629 }
4630
4631 if (index->ts.type == BT_REAL)
4632 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4633 &index->where))
4634 return false;
4635
4636 if ((index->ts.kind != gfc_index_integer_kind
4637 && force_index_integer_kind)
4638 || index->ts.type != BT_INTEGER)
4639 {
4640 gfc_clear_ts (&ts);
4641 ts.type = BT_INTEGER;
4642 ts.kind = gfc_index_integer_kind;
4643
4644 gfc_convert_type_warn (index, &ts, 2, 0);
4645 }
4646
4647 return true;
4648 }
4649
4650 /* Resolve one part of an array index. */
4651
4652 bool
4653 gfc_resolve_index (gfc_expr *index, int check_scalar)
4654 {
4655 return gfc_resolve_index_1 (index, check_scalar, 1);
4656 }
4657
4658 /* Resolve a dim argument to an intrinsic function. */
4659
4660 bool
4661 gfc_resolve_dim_arg (gfc_expr *dim)
4662 {
4663 if (dim == NULL)
4664 return true;
4665
4666 if (!gfc_resolve_expr (dim))
4667 return false;
4668
4669 if (dim->rank != 0)
4670 {
4671 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4672 return false;
4673
4674 }
4675
4676 if (dim->ts.type != BT_INTEGER)
4677 {
4678 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4679 return false;
4680 }
4681
4682 if (dim->ts.kind != gfc_index_integer_kind)
4683 {
4684 gfc_typespec ts;
4685
4686 gfc_clear_ts (&ts);
4687 ts.type = BT_INTEGER;
4688 ts.kind = gfc_index_integer_kind;
4689
4690 gfc_convert_type_warn (dim, &ts, 2, 0);
4691 }
4692
4693 return true;
4694 }
4695
4696 /* Given an expression that contains array references, update those array
4697 references to point to the right array specifications. While this is
4698 filled in during matching, this information is difficult to save and load
4699 in a module, so we take care of it here.
4700
4701 The idea here is that the original array reference comes from the
4702 base symbol. We traverse the list of reference structures, setting
4703 the stored reference to references. Component references can
4704 provide an additional array specification. */
4705
4706 static void
4707 find_array_spec (gfc_expr *e)
4708 {
4709 gfc_array_spec *as;
4710 gfc_component *c;
4711 gfc_ref *ref;
4712
4713 if (e->symtree->n.sym->ts.type == BT_CLASS)
4714 as = CLASS_DATA (e->symtree->n.sym)->as;
4715 else
4716 as = e->symtree->n.sym->as;
4717
4718 for (ref = e->ref; ref; ref = ref->next)
4719 switch (ref->type)
4720 {
4721 case REF_ARRAY:
4722 if (as == NULL)
4723 gfc_internal_error ("find_array_spec(): Missing spec");
4724
4725 ref->u.ar.as = as;
4726 as = NULL;
4727 break;
4728
4729 case REF_COMPONENT:
4730 c = ref->u.c.component;
4731 if (c->attr.dimension)
4732 {
4733 if (as != NULL)
4734 gfc_internal_error ("find_array_spec(): unused as(1)");
4735 as = c->as;
4736 }
4737
4738 break;
4739
4740 case REF_SUBSTRING:
4741 case REF_INQUIRY:
4742 break;
4743 }
4744
4745 if (as != NULL)
4746 gfc_internal_error ("find_array_spec(): unused as(2)");
4747 }
4748
4749
4750 /* Resolve an array reference. */
4751
4752 static bool
4753 resolve_array_ref (gfc_array_ref *ar)
4754 {
4755 int i, check_scalar;
4756 gfc_expr *e;
4757
4758 for (i = 0; i < ar->dimen + ar->codimen; i++)
4759 {
4760 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4761
4762 /* Do not force gfc_index_integer_kind for the start. We can
4763 do fine with any integer kind. This avoids temporary arrays
4764 created for indexing with a vector. */
4765 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4766 return false;
4767 if (!gfc_resolve_index (ar->end[i], check_scalar))
4768 return false;
4769 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4770 return false;
4771
4772 e = ar->start[i];
4773
4774 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4775 switch (e->rank)
4776 {
4777 case 0:
4778 ar->dimen_type[i] = DIMEN_ELEMENT;
4779 break;
4780
4781 case 1:
4782 ar->dimen_type[i] = DIMEN_VECTOR;
4783 if (e->expr_type == EXPR_VARIABLE
4784 && e->symtree->n.sym->ts.type == BT_DERIVED)
4785 ar->start[i] = gfc_get_parentheses (e);
4786 break;
4787
4788 default:
4789 gfc_error ("Array index at %L is an array of rank %d",
4790 &ar->c_where[i], e->rank);
4791 return false;
4792 }
4793
4794 /* Fill in the upper bound, which may be lower than the
4795 specified one for something like a(2:10:5), which is
4796 identical to a(2:7:5). Only relevant for strides not equal
4797 to one. Don't try a division by zero. */
4798 if (ar->dimen_type[i] == DIMEN_RANGE
4799 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4800 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4801 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4802 {
4803 mpz_t size, end;
4804
4805 if (gfc_ref_dimen_size (ar, i, &size, &end))
4806 {
4807 if (ar->end[i] == NULL)
4808 {
4809 ar->end[i] =
4810 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4811 &ar->where);
4812 mpz_set (ar->end[i]->value.integer, end);
4813 }
4814 else if (ar->end[i]->ts.type == BT_INTEGER
4815 && ar->end[i]->expr_type == EXPR_CONSTANT)
4816 {
4817 mpz_set (ar->end[i]->value.integer, end);
4818 }
4819 else
4820 gcc_unreachable ();
4821
4822 mpz_clear (size);
4823 mpz_clear (end);
4824 }
4825 }
4826 }
4827
4828 if (ar->type == AR_FULL)
4829 {
4830 if (ar->as->rank == 0)
4831 ar->type = AR_ELEMENT;
4832
4833 /* Make sure array is the same as array(:,:), this way
4834 we don't need to special case all the time. */
4835 ar->dimen = ar->as->rank;
4836 for (i = 0; i < ar->dimen; i++)
4837 {
4838 ar->dimen_type[i] = DIMEN_RANGE;
4839
4840 gcc_assert (ar->start[i] == NULL);
4841 gcc_assert (ar->end[i] == NULL);
4842 gcc_assert (ar->stride[i] == NULL);
4843 }
4844 }
4845
4846 /* If the reference type is unknown, figure out what kind it is. */
4847
4848 if (ar->type == AR_UNKNOWN)
4849 {
4850 ar->type = AR_ELEMENT;
4851 for (i = 0; i < ar->dimen; i++)
4852 if (ar->dimen_type[i] == DIMEN_RANGE
4853 || ar->dimen_type[i] == DIMEN_VECTOR)
4854 {
4855 ar->type = AR_SECTION;
4856 break;
4857 }
4858 }
4859
4860 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
4861 return false;
4862
4863 if (ar->as->corank && ar->codimen == 0)
4864 {
4865 int n;
4866 ar->codimen = ar->as->corank;
4867 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
4868 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
4869 }
4870
4871 return true;
4872 }
4873
4874
4875 static bool
4876 resolve_substring (gfc_ref *ref)
4877 {
4878 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
4879
4880 if (ref->u.ss.start != NULL)
4881 {
4882 if (!gfc_resolve_expr (ref->u.ss.start))
4883 return false;
4884
4885 if (ref->u.ss.start->ts.type != BT_INTEGER)
4886 {
4887 gfc_error ("Substring start index at %L must be of type INTEGER",
4888 &ref->u.ss.start->where);
4889 return false;
4890 }
4891
4892 if (ref->u.ss.start->rank != 0)
4893 {
4894 gfc_error ("Substring start index at %L must be scalar",
4895 &ref->u.ss.start->where);
4896 return false;
4897 }
4898
4899 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
4900 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4901 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4902 {
4903 gfc_error ("Substring start index at %L is less than one",
4904 &ref->u.ss.start->where);
4905 return false;
4906 }
4907 }
4908
4909 if (ref->u.ss.end != NULL)
4910 {
4911 if (!gfc_resolve_expr (ref->u.ss.end))
4912 return false;
4913
4914 if (ref->u.ss.end->ts.type != BT_INTEGER)
4915 {
4916 gfc_error ("Substring end index at %L must be of type INTEGER",
4917 &ref->u.ss.end->where);
4918 return false;
4919 }
4920
4921 if (ref->u.ss.end->rank != 0)
4922 {
4923 gfc_error ("Substring end index at %L must be scalar",
4924 &ref->u.ss.end->where);
4925 return false;
4926 }
4927
4928 if (ref->u.ss.length != NULL
4929 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
4930 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4931 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4932 {
4933 gfc_error ("Substring end index at %L exceeds the string length",
4934 &ref->u.ss.start->where);
4935 return false;
4936 }
4937
4938 if (compare_bound_mpz_t (ref->u.ss.end,
4939 gfc_integer_kinds[k].huge) == CMP_GT
4940 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4941 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4942 {
4943 gfc_error ("Substring end index at %L is too large",
4944 &ref->u.ss.end->where);
4945 return false;
4946 }
4947 }
4948
4949 return true;
4950 }
4951
4952
4953 /* This function supplies missing substring charlens. */
4954
4955 void
4956 gfc_resolve_substring_charlen (gfc_expr *e)
4957 {
4958 gfc_ref *char_ref;
4959 gfc_expr *start, *end;
4960 gfc_typespec *ts = NULL;
4961
4962 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
4963 {
4964 if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
4965 break;
4966 if (char_ref->type == REF_COMPONENT)
4967 ts = &char_ref->u.c.component->ts;
4968 }
4969
4970 if (!char_ref || char_ref->type == REF_INQUIRY)
4971 return;
4972
4973 gcc_assert (char_ref->next == NULL);
4974
4975 if (e->ts.u.cl)
4976 {
4977 if (e->ts.u.cl->length)
4978 gfc_free_expr (e->ts.u.cl->length);
4979 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
4980 return;
4981 }
4982
4983 e->ts.type = BT_CHARACTER;
4984 e->ts.kind = gfc_default_character_kind;
4985
4986 if (!e->ts.u.cl)
4987 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4988
4989 if (char_ref->u.ss.start)
4990 start = gfc_copy_expr (char_ref->u.ss.start);
4991 else
4992 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
4993
4994 if (char_ref->u.ss.end)
4995 end = gfc_copy_expr (char_ref->u.ss.end);
4996 else if (e->expr_type == EXPR_VARIABLE)
4997 {
4998 if (!ts)
4999 ts = &e->symtree->n.sym->ts;
5000 end = gfc_copy_expr (ts->u.cl->length);
5001 }
5002 else
5003 end = NULL;
5004
5005 if (!start || !end)
5006 {
5007 gfc_free_expr (start);
5008 gfc_free_expr (end);
5009 return;
5010 }
5011
5012 /* Length = (end - start + 1). */
5013 e->ts.u.cl->length = gfc_subtract (end, start);
5014 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
5015 gfc_get_int_expr (gfc_charlen_int_kind,
5016 NULL, 1));
5017
5018 /* F2008, 6.4.1: Both the starting point and the ending point shall
5019 be within the range 1, 2, ..., n unless the starting point exceeds
5020 the ending point, in which case the substring has length zero. */
5021
5022 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
5023 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
5024
5025 e->ts.u.cl->length->ts.type = BT_INTEGER;
5026 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5027
5028 /* Make sure that the length is simplified. */
5029 gfc_simplify_expr (e->ts.u.cl->length, 1);
5030 gfc_resolve_expr (e->ts.u.cl->length);
5031 }
5032
5033
5034 /* Resolve subtype references. */
5035
5036 static bool
5037 resolve_ref (gfc_expr *expr)
5038 {
5039 int current_part_dimension, n_components, seen_part_dimension;
5040 gfc_ref *ref;
5041
5042 for (ref = expr->ref; ref; ref = ref->next)
5043 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
5044 {
5045 find_array_spec (expr);
5046 break;
5047 }
5048
5049 for (ref = expr->ref; ref; ref = ref->next)
5050 switch (ref->type)
5051 {
5052 case REF_ARRAY:
5053 if (!resolve_array_ref (&ref->u.ar))
5054 return false;
5055 break;
5056
5057 case REF_COMPONENT:
5058 case REF_INQUIRY:
5059 break;
5060
5061 case REF_SUBSTRING:
5062 if (!resolve_substring (ref))
5063 return false;
5064 break;
5065 }
5066
5067 /* Check constraints on part references. */
5068
5069 current_part_dimension = 0;
5070 seen_part_dimension = 0;
5071 n_components = 0;
5072
5073 for (ref = expr->ref; ref; ref = ref->next)
5074 {
5075 switch (ref->type)
5076 {
5077 case REF_ARRAY:
5078 switch (ref->u.ar.type)
5079 {
5080 case AR_FULL:
5081 /* Coarray scalar. */
5082 if (ref->u.ar.as->rank == 0)
5083 {
5084 current_part_dimension = 0;
5085 break;
5086 }
5087 /* Fall through. */
5088 case AR_SECTION:
5089 current_part_dimension = 1;
5090 break;
5091
5092 case AR_ELEMENT:
5093 current_part_dimension = 0;
5094 break;
5095
5096 case AR_UNKNOWN:
5097 gfc_internal_error ("resolve_ref(): Bad array reference");
5098 }
5099
5100 break;
5101
5102 case REF_COMPONENT:
5103 if (current_part_dimension || seen_part_dimension)
5104 {
5105 /* F03:C614. */
5106 if (ref->u.c.component->attr.pointer
5107 || ref->u.c.component->attr.proc_pointer
5108 || (ref->u.c.component->ts.type == BT_CLASS
5109 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5110 {
5111 gfc_error ("Component to the right of a part reference "
5112 "with nonzero rank must not have the POINTER "
5113 "attribute at %L", &expr->where);
5114 return false;
5115 }
5116 else if (ref->u.c.component->attr.allocatable
5117 || (ref->u.c.component->ts.type == BT_CLASS
5118 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5119
5120 {
5121 gfc_error ("Component to the right of a part reference "
5122 "with nonzero rank must not have the ALLOCATABLE "
5123 "attribute at %L", &expr->where);
5124 return false;
5125 }
5126 }
5127
5128 n_components++;
5129 break;
5130
5131 case REF_SUBSTRING:
5132 case REF_INQUIRY:
5133 break;
5134 }
5135
5136 if (((ref->type == REF_COMPONENT && n_components > 1)
5137 || ref->next == NULL)
5138 && current_part_dimension
5139 && seen_part_dimension)
5140 {
5141 gfc_error ("Two or more part references with nonzero rank must "
5142 "not be specified at %L", &expr->where);
5143 return false;
5144 }
5145
5146 if (ref->type == REF_COMPONENT)
5147 {
5148 if (current_part_dimension)
5149 seen_part_dimension = 1;
5150
5151 /* reset to make sure */
5152 current_part_dimension = 0;
5153 }
5154 }
5155
5156 return true;
5157 }
5158
5159
5160 /* Given an expression, determine its shape. This is easier than it sounds.
5161 Leaves the shape array NULL if it is not possible to determine the shape. */
5162
5163 static void
5164 expression_shape (gfc_expr *e)
5165 {
5166 mpz_t array[GFC_MAX_DIMENSIONS];
5167 int i;
5168
5169 if (e->rank <= 0 || e->shape != NULL)
5170 return;
5171
5172 for (i = 0; i < e->rank; i++)
5173 if (!gfc_array_dimen_size (e, i, &array[i]))
5174 goto fail;
5175
5176 e->shape = gfc_get_shape (e->rank);
5177
5178 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5179
5180 return;
5181
5182 fail:
5183 for (i--; i >= 0; i--)
5184 mpz_clear (array[i]);
5185 }
5186
5187
5188 /* Given a variable expression node, compute the rank of the expression by
5189 examining the base symbol and any reference structures it may have. */
5190
5191 void
5192 expression_rank (gfc_expr *e)
5193 {
5194 gfc_ref *ref;
5195 int i, rank;
5196
5197 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5198 could lead to serious confusion... */
5199 gcc_assert (e->expr_type != EXPR_COMPCALL);
5200
5201 if (e->ref == NULL)
5202 {
5203 if (e->expr_type == EXPR_ARRAY)
5204 goto done;
5205 /* Constructors can have a rank different from one via RESHAPE(). */
5206
5207 if (e->symtree == NULL)
5208 {
5209 e->rank = 0;
5210 goto done;
5211 }
5212
5213 e->rank = (e->symtree->n.sym->as == NULL)
5214 ? 0 : e->symtree->n.sym->as->rank;
5215 goto done;
5216 }
5217
5218 rank = 0;
5219
5220 for (ref = e->ref; ref; ref = ref->next)
5221 {
5222 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5223 && ref->u.c.component->attr.function && !ref->next)
5224 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5225
5226 if (ref->type != REF_ARRAY)
5227 continue;
5228
5229 if (ref->u.ar.type == AR_FULL)
5230 {
5231 rank = ref->u.ar.as->rank;
5232 break;
5233 }
5234
5235 if (ref->u.ar.type == AR_SECTION)
5236 {
5237 /* Figure out the rank of the section. */
5238 if (rank != 0)
5239 gfc_internal_error ("expression_rank(): Two array specs");
5240
5241 for (i = 0; i < ref->u.ar.dimen; i++)
5242 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5243 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5244 rank++;
5245
5246 break;
5247 }
5248 }
5249
5250 e->rank = rank;
5251
5252 done:
5253 expression_shape (e);
5254 }
5255
5256
5257 static void
5258 add_caf_get_intrinsic (gfc_expr *e)
5259 {
5260 gfc_expr *wrapper, *tmp_expr;
5261 gfc_ref *ref;
5262 int n;
5263
5264 for (ref = e->ref; ref; ref = ref->next)
5265 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5266 break;
5267 if (ref == NULL)
5268 return;
5269
5270 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5271 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5272 return;
5273
5274 tmp_expr = XCNEW (gfc_expr);
5275 *tmp_expr = *e;
5276 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5277 "caf_get", tmp_expr->where, 1, tmp_expr);
5278 wrapper->ts = e->ts;
5279 wrapper->rank = e->rank;
5280 if (e->rank)
5281 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5282 *e = *wrapper;
5283 free (wrapper);
5284 }
5285
5286
5287 static void
5288 remove_caf_get_intrinsic (gfc_expr *e)
5289 {
5290 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5291 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5292 gfc_expr *e2 = e->value.function.actual->expr;
5293 e->value.function.actual->expr = NULL;
5294 gfc_free_actual_arglist (e->value.function.actual);
5295 gfc_free_shape (&e->shape, e->rank);
5296 *e = *e2;
5297 free (e2);
5298 }
5299
5300
5301 /* Resolve a variable expression. */
5302
5303 static bool
5304 resolve_variable (gfc_expr *e)
5305 {
5306 gfc_symbol *sym;
5307 bool t;
5308
5309 t = true;
5310
5311 if (e->symtree == NULL)
5312 return false;
5313 sym = e->symtree->n.sym;
5314
5315 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5316 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5317 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5318 {
5319 if (!actual_arg || inquiry_argument)
5320 {
5321 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5322 "be used as actual argument", sym->name, &e->where);
5323 return false;
5324 }
5325 }
5326 /* TS 29113, 407b. */
5327 else if (e->ts.type == BT_ASSUMED)
5328 {
5329 if (!actual_arg)
5330 {
5331 gfc_error ("Assumed-type variable %s at %L may only be used "
5332 "as actual argument", sym->name, &e->where);
5333 return false;
5334 }
5335 else if (inquiry_argument && !first_actual_arg)
5336 {
5337 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5338 for all inquiry functions in resolve_function; the reason is
5339 that the function-name resolution happens too late in that
5340 function. */
5341 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5342 "an inquiry function shall be the first argument",
5343 sym->name, &e->where);
5344 return false;
5345 }
5346 }
5347 /* TS 29113, C535b. */
5348 else if ((sym->ts.type == BT_CLASS && sym->attr.class_ok
5349 && CLASS_DATA (sym)->as
5350 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5351 || (sym->ts.type != BT_CLASS && sym->as
5352 && sym->as->type == AS_ASSUMED_RANK))
5353 {
5354 if (!actual_arg)
5355 {
5356 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5357 "actual argument", sym->name, &e->where);
5358 return false;
5359 }
5360 else if (inquiry_argument && !first_actual_arg)
5361 {
5362 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5363 for all inquiry functions in resolve_function; the reason is
5364 that the function-name resolution happens too late in that
5365 function. */
5366 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5367 "to an inquiry function shall be the first argument",
5368 sym->name, &e->where);
5369 return false;
5370 }
5371 }
5372
5373 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5374 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5375 && e->ref->next == NULL))
5376 {
5377 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5378 "a subobject reference", sym->name, &e->ref->u.ar.where);
5379 return false;
5380 }
5381 /* TS 29113, 407b. */
5382 else if (e->ts.type == BT_ASSUMED && e->ref
5383 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5384 && e->ref->next == NULL))
5385 {
5386 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5387 "reference", sym->name, &e->ref->u.ar.where);
5388 return false;
5389 }
5390
5391 /* TS 29113, C535b. */
5392 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5393 && CLASS_DATA (sym)->as
5394 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5395 || (sym->ts.type != BT_CLASS && sym->as
5396 && sym->as->type == AS_ASSUMED_RANK))
5397 && e->ref
5398 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5399 && e->ref->next == NULL))
5400 {
5401 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5402 "reference", sym->name, &e->ref->u.ar.where);
5403 return false;
5404 }
5405
5406 /* For variables that are used in an associate (target => object) where
5407 the object's basetype is array valued while the target is scalar,
5408 the ts' type of the component refs is still array valued, which
5409 can't be translated that way. */
5410 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5411 && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
5412 && CLASS_DATA (sym->assoc->target)->as)
5413 {
5414 gfc_ref *ref = e->ref;
5415 while (ref)
5416 {
5417 switch (ref->type)
5418 {
5419 case REF_COMPONENT:
5420 ref->u.c.sym = sym->ts.u.derived;
5421 /* Stop the loop. */
5422 ref = NULL;
5423 break;
5424 default:
5425 ref = ref->next;
5426 break;
5427 }
5428 }
5429 }
5430
5431 /* If this is an associate-name, it may be parsed with an array reference
5432 in error even though the target is scalar. Fail directly in this case.
5433 TODO Understand why class scalar expressions must be excluded. */
5434 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5435 {
5436 if (sym->ts.type == BT_CLASS)
5437 gfc_fix_class_refs (e);
5438 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5439 return false;
5440 else if (sym->attr.dimension && (!e->ref || e->ref->type != REF_ARRAY))
5441 {
5442 /* This can happen because the parser did not detect that the
5443 associate name is an array and the expression had no array
5444 part_ref. */
5445 gfc_ref *ref = gfc_get_ref ();
5446 ref->type = REF_ARRAY;
5447 ref->u.ar = *gfc_get_array_ref();
5448 ref->u.ar.type = AR_FULL;
5449 if (sym->as)
5450 {
5451 ref->u.ar.as = sym->as;
5452 ref->u.ar.dimen = sym->as->rank;
5453 }
5454 ref->next = e->ref;
5455 e->ref = ref;
5456
5457 }
5458 }
5459
5460 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5461 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5462
5463 /* On the other hand, the parser may not have known this is an array;
5464 in this case, we have to add a FULL reference. */
5465 if (sym->assoc && sym->attr.dimension && !e->ref)
5466 {
5467 e->ref = gfc_get_ref ();
5468 e->ref->type = REF_ARRAY;
5469 e->ref->u.ar.type = AR_FULL;
5470 e->ref->u.ar.dimen = 0;
5471 }
5472
5473 /* Like above, but for class types, where the checking whether an array
5474 ref is present is more complicated. Furthermore make sure not to add
5475 the full array ref to _vptr or _len refs. */
5476 if (sym->assoc && sym->ts.type == BT_CLASS
5477 && CLASS_DATA (sym)->attr.dimension
5478 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5479 {
5480 gfc_ref *ref, *newref;
5481
5482 newref = gfc_get_ref ();
5483 newref->type = REF_ARRAY;
5484 newref->u.ar.type = AR_FULL;
5485 newref->u.ar.dimen = 0;
5486 /* Because this is an associate var and the first ref either is a ref to
5487 the _data component or not, no traversal of the ref chain is
5488 needed. The array ref needs to be inserted after the _data ref,
5489 or when that is not present, which may happend for polymorphic
5490 types, then at the first position. */
5491 ref = e->ref;
5492 if (!ref)
5493 e->ref = newref;
5494 else if (ref->type == REF_COMPONENT
5495 && strcmp ("_data", ref->u.c.component->name) == 0)
5496 {
5497 if (!ref->next || ref->next->type != REF_ARRAY)
5498 {
5499 newref->next = ref->next;
5500 ref->next = newref;
5501 }
5502 else
5503 /* Array ref present already. */
5504 gfc_free_ref_list (newref);
5505 }
5506 else if (ref->type == REF_ARRAY)
5507 /* Array ref present already. */
5508 gfc_free_ref_list (newref);
5509 else
5510 {
5511 newref->next = ref;
5512 e->ref = newref;
5513 }
5514 }
5515
5516 if (e->ref && !resolve_ref (e))
5517 return false;
5518
5519 if (sym->attr.flavor == FL_PROCEDURE
5520 && (!sym->attr.function
5521 || (sym->attr.function && sym->result
5522 && sym->result->attr.proc_pointer
5523 && !sym->result->attr.function)))
5524 {
5525 e->ts.type = BT_PROCEDURE;
5526 goto resolve_procedure;
5527 }
5528
5529 if (sym->ts.type != BT_UNKNOWN)
5530 gfc_variable_attr (e, &e->ts);
5531 else if (sym->attr.flavor == FL_PROCEDURE
5532 && sym->attr.function && sym->result
5533 && sym->result->ts.type != BT_UNKNOWN
5534 && sym->result->attr.proc_pointer)
5535 e->ts = sym->result->ts;
5536 else
5537 {
5538 /* Must be a simple variable reference. */
5539 if (!gfc_set_default_type (sym, 1, sym->ns))
5540 return false;
5541 e->ts = sym->ts;
5542 }
5543
5544 if (check_assumed_size_reference (sym, e))
5545 return false;
5546
5547 /* Deal with forward references to entries during gfc_resolve_code, to
5548 satisfy, at least partially, 12.5.2.5. */
5549 if (gfc_current_ns->entries
5550 && current_entry_id == sym->entry_id
5551 && cs_base
5552 && cs_base->current
5553 && cs_base->current->op != EXEC_ENTRY)
5554 {
5555 gfc_entry_list *entry;
5556 gfc_formal_arglist *formal;
5557 int n;
5558 bool seen, saved_specification_expr;
5559
5560 /* If the symbol is a dummy... */
5561 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5562 {
5563 entry = gfc_current_ns->entries;
5564 seen = false;
5565
5566 /* ...test if the symbol is a parameter of previous entries. */
5567 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5568 for (formal = entry->sym->formal; formal; formal = formal->next)
5569 {
5570 if (formal->sym && sym->name == formal->sym->name)
5571 {
5572 seen = true;
5573 break;
5574 }
5575 }
5576
5577 /* If it has not been seen as a dummy, this is an error. */
5578 if (!seen)
5579 {
5580 if (specification_expr)
5581 gfc_error ("Variable %qs, used in a specification expression"
5582 ", is referenced at %L before the ENTRY statement "
5583 "in which it is a parameter",
5584 sym->name, &cs_base->current->loc);
5585 else
5586 gfc_error ("Variable %qs is used at %L before the ENTRY "
5587 "statement in which it is a parameter",
5588 sym->name, &cs_base->current->loc);
5589 t = false;
5590 }
5591 }
5592
5593 /* Now do the same check on the specification expressions. */
5594 saved_specification_expr = specification_expr;
5595 specification_expr = true;
5596 if (sym->ts.type == BT_CHARACTER
5597 && !gfc_resolve_expr (sym->ts.u.cl->length))
5598 t = false;
5599
5600 if (sym->as)
5601 for (n = 0; n < sym->as->rank; n++)
5602 {
5603 if (!gfc_resolve_expr (sym->as->lower[n]))
5604 t = false;
5605 if (!gfc_resolve_expr (sym->as->upper[n]))
5606 t = false;
5607 }
5608 specification_expr = saved_specification_expr;
5609
5610 if (t)
5611 /* Update the symbol's entry level. */
5612 sym->entry_id = current_entry_id + 1;
5613 }
5614
5615 /* If a symbol has been host_associated mark it. This is used latter,
5616 to identify if aliasing is possible via host association. */
5617 if (sym->attr.flavor == FL_VARIABLE
5618 && gfc_current_ns->parent
5619 && (gfc_current_ns->parent == sym->ns
5620 || (gfc_current_ns->parent->parent
5621 && gfc_current_ns->parent->parent == sym->ns)))
5622 sym->attr.host_assoc = 1;
5623
5624 if (gfc_current_ns->proc_name
5625 && sym->attr.dimension
5626 && (sym->ns != gfc_current_ns
5627 || sym->attr.use_assoc
5628 || sym->attr.in_common))
5629 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5630
5631 resolve_procedure:
5632 if (t && !resolve_procedure_expression (e))
5633 t = false;
5634
5635 /* F2008, C617 and C1229. */
5636 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5637 && gfc_is_coindexed (e))
5638 {
5639 gfc_ref *ref, *ref2 = NULL;
5640
5641 for (ref = e->ref; ref; ref = ref->next)
5642 {
5643 if (ref->type == REF_COMPONENT)
5644 ref2 = ref;
5645 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5646 break;
5647 }
5648
5649 for ( ; ref; ref = ref->next)
5650 if (ref->type == REF_COMPONENT)
5651 break;
5652
5653 /* Expression itself is not coindexed object. */
5654 if (ref && e->ts.type == BT_CLASS)
5655 {
5656 gfc_error ("Polymorphic subobject of coindexed object at %L",
5657 &e->where);
5658 t = false;
5659 }
5660
5661 /* Expression itself is coindexed object. */
5662 if (ref == NULL)
5663 {
5664 gfc_component *c;
5665 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5666 for ( ; c; c = c->next)
5667 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5668 {
5669 gfc_error ("Coindexed object with polymorphic allocatable "
5670 "subcomponent at %L", &e->where);
5671 t = false;
5672 break;
5673 }
5674 }
5675 }
5676
5677 if (t)
5678 expression_rank (e);
5679
5680 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5681 add_caf_get_intrinsic (e);
5682
5683 /* Simplify cases where access to a parameter array results in a
5684 single constant. Suppress errors since those will have been
5685 issued before, as warnings. */
5686 if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
5687 {
5688 gfc_push_suppress_errors ();
5689 gfc_simplify_expr (e, 1);
5690 gfc_pop_suppress_errors ();
5691 }
5692
5693 return t;
5694 }
5695
5696
5697 /* Checks to see that the correct symbol has been host associated.
5698 The only situation where this arises is that in which a twice
5699 contained function is parsed after the host association is made.
5700 Therefore, on detecting this, change the symbol in the expression
5701 and convert the array reference into an actual arglist if the old
5702 symbol is a variable. */
5703 static bool
5704 check_host_association (gfc_expr *e)
5705 {
5706 gfc_symbol *sym, *old_sym;
5707 gfc_symtree *st;
5708 int n;
5709 gfc_ref *ref;
5710 gfc_actual_arglist *arg, *tail = NULL;
5711 bool retval = e->expr_type == EXPR_FUNCTION;
5712
5713 /* If the expression is the result of substitution in
5714 interface.c(gfc_extend_expr) because there is no way in
5715 which the host association can be wrong. */
5716 if (e->symtree == NULL
5717 || e->symtree->n.sym == NULL
5718 || e->user_operator)
5719 return retval;
5720
5721 old_sym = e->symtree->n.sym;
5722
5723 if (gfc_current_ns->parent
5724 && old_sym->ns != gfc_current_ns)
5725 {
5726 /* Use the 'USE' name so that renamed module symbols are
5727 correctly handled. */
5728 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5729
5730 if (sym && old_sym != sym
5731 && sym->ts.type == old_sym->ts.type
5732 && sym->attr.flavor == FL_PROCEDURE
5733 && sym->attr.contained)
5734 {
5735 /* Clear the shape, since it might not be valid. */
5736 gfc_free_shape (&e->shape, e->rank);
5737
5738 /* Give the expression the right symtree! */
5739 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5740 gcc_assert (st != NULL);
5741
5742 if (old_sym->attr.flavor == FL_PROCEDURE
5743 || e->expr_type == EXPR_FUNCTION)
5744 {
5745 /* Original was function so point to the new symbol, since
5746 the actual argument list is already attached to the
5747 expression. */
5748 e->value.function.esym = NULL;
5749 e->symtree = st;
5750 }
5751 else
5752 {
5753 /* Original was variable so convert array references into
5754 an actual arglist. This does not need any checking now
5755 since resolve_function will take care of it. */
5756 e->value.function.actual = NULL;
5757 e->expr_type = EXPR_FUNCTION;
5758 e->symtree = st;
5759
5760 /* Ambiguity will not arise if the array reference is not
5761 the last reference. */
5762 for (ref = e->ref; ref; ref = ref->next)
5763 if (ref->type == REF_ARRAY && ref->next == NULL)
5764 break;
5765
5766 gcc_assert (ref->type == REF_ARRAY);
5767
5768 /* Grab the start expressions from the array ref and
5769 copy them into actual arguments. */
5770 for (n = 0; n < ref->u.ar.dimen; n++)
5771 {
5772 arg = gfc_get_actual_arglist ();
5773 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5774 if (e->value.function.actual == NULL)
5775 tail = e->value.function.actual = arg;
5776 else
5777 {
5778 tail->next = arg;
5779 tail = arg;
5780 }
5781 }
5782
5783 /* Dump the reference list and set the rank. */
5784 gfc_free_ref_list (e->ref);
5785 e->ref = NULL;
5786 e->rank = sym->as ? sym->as->rank : 0;
5787 }
5788
5789 gfc_resolve_expr (e);
5790 sym->refs++;
5791 }
5792 }
5793 /* This might have changed! */
5794 return e->expr_type == EXPR_FUNCTION;
5795 }
5796
5797
5798 static void
5799 gfc_resolve_character_operator (gfc_expr *e)
5800 {
5801 gfc_expr *op1 = e->value.op.op1;
5802 gfc_expr *op2 = e->value.op.op2;
5803 gfc_expr *e1 = NULL;
5804 gfc_expr *e2 = NULL;
5805
5806 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
5807
5808 if (op1->ts.u.cl && op1->ts.u.cl->length)
5809 e1 = gfc_copy_expr (op1->ts.u.cl->length);
5810 else if (op1->expr_type == EXPR_CONSTANT)
5811 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5812 op1->value.character.length);
5813
5814 if (op2->ts.u.cl && op2->ts.u.cl->length)
5815 e2 = gfc_copy_expr (op2->ts.u.cl->length);
5816 else if (op2->expr_type == EXPR_CONSTANT)
5817 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5818 op2->value.character.length);
5819
5820 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5821
5822 if (!e1 || !e2)
5823 {
5824 gfc_free_expr (e1);
5825 gfc_free_expr (e2);
5826
5827 return;
5828 }
5829
5830 e->ts.u.cl->length = gfc_add (e1, e2);
5831 e->ts.u.cl->length->ts.type = BT_INTEGER;
5832 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5833 gfc_simplify_expr (e->ts.u.cl->length, 0);
5834 gfc_resolve_expr (e->ts.u.cl->length);
5835
5836 return;
5837 }
5838
5839
5840 /* Ensure that an character expression has a charlen and, if possible, a
5841 length expression. */
5842
5843 static void
5844 fixup_charlen (gfc_expr *e)
5845 {
5846 /* The cases fall through so that changes in expression type and the need
5847 for multiple fixes are picked up. In all circumstances, a charlen should
5848 be available for the middle end to hang a backend_decl on. */
5849 switch (e->expr_type)
5850 {
5851 case EXPR_OP:
5852 gfc_resolve_character_operator (e);
5853 /* FALLTHRU */
5854
5855 case EXPR_ARRAY:
5856 if (e->expr_type == EXPR_ARRAY)
5857 gfc_resolve_character_array_constructor (e);
5858 /* FALLTHRU */
5859
5860 case EXPR_SUBSTRING:
5861 if (!e->ts.u.cl && e->ref)
5862 gfc_resolve_substring_charlen (e);
5863 /* FALLTHRU */
5864
5865 default:
5866 if (!e->ts.u.cl)
5867 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5868
5869 break;
5870 }
5871 }
5872
5873
5874 /* Update an actual argument to include the passed-object for type-bound
5875 procedures at the right position. */
5876
5877 static gfc_actual_arglist*
5878 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
5879 const char *name)
5880 {
5881 gcc_assert (argpos > 0);
5882
5883 if (argpos == 1)
5884 {
5885 gfc_actual_arglist* result;
5886
5887 result = gfc_get_actual_arglist ();
5888 result->expr = po;
5889 result->next = lst;
5890 if (name)
5891 result->name = name;
5892
5893 return result;
5894 }
5895
5896 if (lst)
5897 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
5898 else
5899 lst = update_arglist_pass (NULL, po, argpos - 1, name);
5900 return lst;
5901 }
5902
5903
5904 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
5905
5906 static gfc_expr*
5907 extract_compcall_passed_object (gfc_expr* e)
5908 {
5909 gfc_expr* po;
5910
5911 gcc_assert (e->expr_type == EXPR_COMPCALL);
5912
5913 if (e->value.compcall.base_object)
5914 po = gfc_copy_expr (e->value.compcall.base_object);
5915 else
5916 {
5917 po = gfc_get_expr ();
5918 po->expr_type = EXPR_VARIABLE;
5919 po->symtree = e->symtree;
5920 po->ref = gfc_copy_ref (e->ref);
5921 po->where = e->where;
5922 }
5923
5924 if (!gfc_resolve_expr (po))
5925 return NULL;
5926
5927 return po;
5928 }
5929
5930
5931 /* Update the arglist of an EXPR_COMPCALL expression to include the
5932 passed-object. */
5933
5934 static bool
5935 update_compcall_arglist (gfc_expr* e)
5936 {
5937 gfc_expr* po;
5938 gfc_typebound_proc* tbp;
5939
5940 tbp = e->value.compcall.tbp;
5941
5942 if (tbp->error)
5943 return false;
5944
5945 po = extract_compcall_passed_object (e);
5946 if (!po)
5947 return false;
5948
5949 if (tbp->nopass || e->value.compcall.ignore_pass)
5950 {
5951 gfc_free_expr (po);
5952 return true;
5953 }
5954
5955 if (tbp->pass_arg_num <= 0)
5956 return false;
5957
5958 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
5959 tbp->pass_arg_num,
5960 tbp->pass_arg);
5961
5962 return true;
5963 }
5964
5965
5966 /* Extract the passed object from a PPC call (a copy of it). */
5967
5968 static gfc_expr*
5969 extract_ppc_passed_object (gfc_expr *e)
5970 {
5971 gfc_expr *po;
5972 gfc_ref **ref;
5973
5974 po = gfc_get_expr ();
5975 po->expr_type = EXPR_VARIABLE;
5976 po->symtree = e->symtree;
5977 po->ref = gfc_copy_ref (e->ref);
5978 po->where = e->where;
5979
5980 /* Remove PPC reference. */
5981 ref = &po->ref;
5982 while ((*ref)->next)
5983 ref = &(*ref)->next;
5984 gfc_free_ref_list (*ref);
5985 *ref = NULL;
5986
5987 if (!gfc_resolve_expr (po))
5988 return NULL;
5989
5990 return po;
5991 }
5992
5993
5994 /* Update the actual arglist of a procedure pointer component to include the
5995 passed-object. */
5996
5997 static bool
5998 update_ppc_arglist (gfc_expr* e)
5999 {
6000 gfc_expr* po;
6001 gfc_component *ppc;
6002 gfc_typebound_proc* tb;
6003
6004 ppc = gfc_get_proc_ptr_comp (e);
6005 if (!ppc)
6006 return false;
6007
6008 tb = ppc->tb;
6009
6010 if (tb->error)
6011 return false;
6012 else if (tb->nopass)
6013 return true;
6014
6015 po = extract_ppc_passed_object (e);
6016 if (!po)
6017 return false;
6018
6019 /* F08:R739. */
6020 if (po->rank != 0)
6021 {
6022 gfc_error ("Passed-object at %L must be scalar", &e->where);
6023 return false;
6024 }
6025
6026 /* F08:C611. */
6027 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
6028 {
6029 gfc_error ("Base object for procedure-pointer component call at %L is of"
6030 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
6031 return false;
6032 }
6033
6034 gcc_assert (tb->pass_arg_num > 0);
6035 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6036 tb->pass_arg_num,
6037 tb->pass_arg);
6038
6039 return true;
6040 }
6041
6042
6043 /* Check that the object a TBP is called on is valid, i.e. it must not be
6044 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
6045
6046 static bool
6047 check_typebound_baseobject (gfc_expr* e)
6048 {
6049 gfc_expr* base;
6050 bool return_value = false;
6051
6052 base = extract_compcall_passed_object (e);
6053 if (!base)
6054 return false;
6055
6056 gcc_assert (base->ts.type == BT_DERIVED || base->ts.type == BT_CLASS);
6057
6058 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
6059 return false;
6060
6061 /* F08:C611. */
6062 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
6063 {
6064 gfc_error ("Base object for type-bound procedure call at %L is of"
6065 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
6066 goto cleanup;
6067 }
6068
6069 /* F08:C1230. If the procedure called is NOPASS,
6070 the base object must be scalar. */
6071 if (e->value.compcall.tbp->nopass && base->rank != 0)
6072 {
6073 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
6074 " be scalar", &e->where);
6075 goto cleanup;
6076 }
6077
6078 return_value = true;
6079
6080 cleanup:
6081 gfc_free_expr (base);
6082 return return_value;
6083 }
6084
6085
6086 /* Resolve a call to a type-bound procedure, either function or subroutine,
6087 statically from the data in an EXPR_COMPCALL expression. The adapted
6088 arglist and the target-procedure symtree are returned. */
6089
6090 static bool
6091 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
6092 gfc_actual_arglist** actual)
6093 {
6094 gcc_assert (e->expr_type == EXPR_COMPCALL);
6095 gcc_assert (!e->value.compcall.tbp->is_generic);
6096
6097 /* Update the actual arglist for PASS. */
6098 if (!update_compcall_arglist (e))
6099 return false;
6100
6101 *actual = e->value.compcall.actual;
6102 *target = e->value.compcall.tbp->u.specific;
6103
6104 gfc_free_ref_list (e->ref);
6105 e->ref = NULL;
6106 e->value.compcall.actual = NULL;
6107
6108 /* If we find a deferred typebound procedure, check for derived types
6109 that an overriding typebound procedure has not been missed. */
6110 if (e->value.compcall.name
6111 && !e->value.compcall.tbp->non_overridable
6112 && e->value.compcall.base_object
6113 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6114 {
6115 gfc_symtree *st;
6116 gfc_symbol *derived;
6117
6118 /* Use the derived type of the base_object. */
6119 derived = e->value.compcall.base_object->ts.u.derived;
6120 st = NULL;
6121
6122 /* If necessary, go through the inheritance chain. */
6123 while (!st && derived)
6124 {
6125 /* Look for the typebound procedure 'name'. */
6126 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6127 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6128 e->value.compcall.name);
6129 if (!st)
6130 derived = gfc_get_derived_super_type (derived);
6131 }
6132
6133 /* Now find the specific name in the derived type namespace. */
6134 if (st && st->n.tb && st->n.tb->u.specific)
6135 gfc_find_sym_tree (st->n.tb->u.specific->name,
6136 derived->ns, 1, &st);
6137 if (st)
6138 *target = st;
6139 }
6140 return true;
6141 }
6142
6143
6144 /* Get the ultimate declared type from an expression. In addition,
6145 return the last class/derived type reference and the copy of the
6146 reference list. If check_types is set true, derived types are
6147 identified as well as class references. */
6148 static gfc_symbol*
6149 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6150 gfc_expr *e, bool check_types)
6151 {
6152 gfc_symbol *declared;
6153 gfc_ref *ref;
6154
6155 declared = NULL;
6156 if (class_ref)
6157 *class_ref = NULL;
6158 if (new_ref)
6159 *new_ref = gfc_copy_ref (e->ref);
6160
6161 for (ref = e->ref; ref; ref = ref->next)
6162 {
6163 if (ref->type != REF_COMPONENT)
6164 continue;
6165
6166 if ((ref->u.c.component->ts.type == BT_CLASS
6167 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6168 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6169 {
6170 declared = ref->u.c.component->ts.u.derived;
6171 if (class_ref)
6172 *class_ref = ref;
6173 }
6174 }
6175
6176 if (declared == NULL)
6177 declared = e->symtree->n.sym->ts.u.derived;
6178
6179 return declared;
6180 }
6181
6182
6183 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6184 which of the specific bindings (if any) matches the arglist and transform
6185 the expression into a call of that binding. */
6186
6187 static bool
6188 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6189 {
6190 gfc_typebound_proc* genproc;
6191 const char* genname;
6192 gfc_symtree *st;
6193 gfc_symbol *derived;
6194
6195 gcc_assert (e->expr_type == EXPR_COMPCALL);
6196 genname = e->value.compcall.name;
6197 genproc = e->value.compcall.tbp;
6198
6199 if (!genproc->is_generic)
6200 return true;
6201
6202 /* Try the bindings on this type and in the inheritance hierarchy. */
6203 for (; genproc; genproc = genproc->overridden)
6204 {
6205 gfc_tbp_generic* g;
6206
6207 gcc_assert (genproc->is_generic);
6208 for (g = genproc->u.generic; g; g = g->next)
6209 {
6210 gfc_symbol* target;
6211 gfc_actual_arglist* args;
6212 bool matches;
6213
6214 gcc_assert (g->specific);
6215
6216 if (g->specific->error)
6217 continue;
6218
6219 target = g->specific->u.specific->n.sym;
6220
6221 /* Get the right arglist by handling PASS/NOPASS. */
6222 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6223 if (!g->specific->nopass)
6224 {
6225 gfc_expr* po;
6226 po = extract_compcall_passed_object (e);
6227 if (!po)
6228 {
6229 gfc_free_actual_arglist (args);
6230 return false;
6231 }
6232
6233 gcc_assert (g->specific->pass_arg_num > 0);
6234 gcc_assert (!g->specific->error);
6235 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6236 g->specific->pass_arg);
6237 }
6238 resolve_actual_arglist (args, target->attr.proc,
6239 is_external_proc (target)
6240 && gfc_sym_get_dummy_args (target) == NULL);
6241
6242 /* Check if this arglist matches the formal. */
6243 matches = gfc_arglist_matches_symbol (&args, target);
6244
6245 /* Clean up and break out of the loop if we've found it. */
6246 gfc_free_actual_arglist (args);
6247 if (matches)
6248 {
6249 e->value.compcall.tbp = g->specific;
6250 genname = g->specific_st->name;
6251 /* Pass along the name for CLASS methods, where the vtab
6252 procedure pointer component has to be referenced. */
6253 if (name)
6254 *name = genname;
6255 goto success;
6256 }
6257 }
6258 }
6259
6260 /* Nothing matching found! */
6261 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6262 " %qs at %L", genname, &e->where);
6263 return false;
6264
6265 success:
6266 /* Make sure that we have the right specific instance for the name. */
6267 derived = get_declared_from_expr (NULL, NULL, e, true);
6268
6269 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6270 if (st)
6271 e->value.compcall.tbp = st->n.tb;
6272
6273 return true;
6274 }
6275
6276
6277 /* Resolve a call to a type-bound subroutine. */
6278
6279 static bool
6280 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6281 {
6282 gfc_actual_arglist* newactual;
6283 gfc_symtree* target;
6284
6285 /* Check that's really a SUBROUTINE. */
6286 if (!c->expr1->value.compcall.tbp->subroutine)
6287 {
6288 if (!c->expr1->value.compcall.tbp->is_generic
6289 && c->expr1->value.compcall.tbp->u.specific
6290 && c->expr1->value.compcall.tbp->u.specific->n.sym
6291 && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
6292 c->expr1->value.compcall.tbp->subroutine = 1;
6293 else
6294 {
6295 gfc_error ("%qs at %L should be a SUBROUTINE",
6296 c->expr1->value.compcall.name, &c->loc);
6297 return false;
6298 }
6299 }
6300
6301 if (!check_typebound_baseobject (c->expr1))
6302 return false;
6303
6304 /* Pass along the name for CLASS methods, where the vtab
6305 procedure pointer component has to be referenced. */
6306 if (name)
6307 *name = c->expr1->value.compcall.name;
6308
6309 if (!resolve_typebound_generic_call (c->expr1, name))
6310 return false;
6311
6312 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6313 if (overridable)
6314 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6315
6316 /* Transform into an ordinary EXEC_CALL for now. */
6317
6318 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6319 return false;
6320
6321 c->ext.actual = newactual;
6322 c->symtree = target;
6323 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6324
6325 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6326
6327 gfc_free_expr (c->expr1);
6328 c->expr1 = gfc_get_expr ();
6329 c->expr1->expr_type = EXPR_FUNCTION;
6330 c->expr1->symtree = target;
6331 c->expr1->where = c->loc;
6332
6333 return resolve_call (c);
6334 }
6335
6336
6337 /* Resolve a component-call expression. */
6338 static bool
6339 resolve_compcall (gfc_expr* e, const char **name)
6340 {
6341 gfc_actual_arglist* newactual;
6342 gfc_symtree* target;
6343
6344 /* Check that's really a FUNCTION. */
6345 if (!e->value.compcall.tbp->function)
6346 {
6347 gfc_error ("%qs at %L should be a FUNCTION",
6348 e->value.compcall.name, &e->where);
6349 return false;
6350 }
6351
6352 /* These must not be assign-calls! */
6353 gcc_assert (!e->value.compcall.assign);
6354
6355 if (!check_typebound_baseobject (e))
6356 return false;
6357
6358 /* Pass along the name for CLASS methods, where the vtab
6359 procedure pointer component has to be referenced. */
6360 if (name)
6361 *name = e->value.compcall.name;
6362
6363 if (!resolve_typebound_generic_call (e, name))
6364 return false;
6365 gcc_assert (!e->value.compcall.tbp->is_generic);
6366
6367 /* Take the rank from the function's symbol. */
6368 if (e->value.compcall.tbp->u.specific->n.sym->as)
6369 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6370
6371 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6372 arglist to the TBP's binding target. */
6373
6374 if (!resolve_typebound_static (e, &target, &newactual))
6375 return false;
6376
6377 e->value.function.actual = newactual;
6378 e->value.function.name = NULL;
6379 e->value.function.esym = target->n.sym;
6380 e->value.function.isym = NULL;
6381 e->symtree = target;
6382 e->ts = target->n.sym->ts;
6383 e->expr_type = EXPR_FUNCTION;
6384
6385 /* Resolution is not necessary if this is a class subroutine; this
6386 function only has to identify the specific proc. Resolution of
6387 the call will be done next in resolve_typebound_call. */
6388 return gfc_resolve_expr (e);
6389 }
6390
6391
6392 static bool resolve_fl_derived (gfc_symbol *sym);
6393
6394
6395 /* Resolve a typebound function, or 'method'. First separate all
6396 the non-CLASS references by calling resolve_compcall directly. */
6397
6398 static bool
6399 resolve_typebound_function (gfc_expr* e)
6400 {
6401 gfc_symbol *declared;
6402 gfc_component *c;
6403 gfc_ref *new_ref;
6404 gfc_ref *class_ref;
6405 gfc_symtree *st;
6406 const char *name;
6407 gfc_typespec ts;
6408 gfc_expr *expr;
6409 bool overridable;
6410
6411 st = e->symtree;
6412
6413 /* Deal with typebound operators for CLASS objects. */
6414 expr = e->value.compcall.base_object;
6415 overridable = !e->value.compcall.tbp->non_overridable;
6416 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6417 {
6418 /* If the base_object is not a variable, the corresponding actual
6419 argument expression must be stored in e->base_expression so
6420 that the corresponding tree temporary can be used as the base
6421 object in gfc_conv_procedure_call. */
6422 if (expr->expr_type != EXPR_VARIABLE)
6423 {
6424 gfc_actual_arglist *args;
6425
6426 for (args= e->value.function.actual; args; args = args->next)
6427 {
6428 if (expr == args->expr)
6429 expr = args->expr;
6430 }
6431 }
6432
6433 /* Since the typebound operators are generic, we have to ensure
6434 that any delays in resolution are corrected and that the vtab
6435 is present. */
6436 ts = expr->ts;
6437 declared = ts.u.derived;
6438 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6439 if (c->ts.u.derived == NULL)
6440 c->ts.u.derived = gfc_find_derived_vtab (declared);
6441
6442 if (!resolve_compcall (e, &name))
6443 return false;
6444
6445 /* Use the generic name if it is there. */
6446 name = name ? name : e->value.function.esym->name;
6447 e->symtree = expr->symtree;
6448 e->ref = gfc_copy_ref (expr->ref);
6449 get_declared_from_expr (&class_ref, NULL, e, false);
6450
6451 /* Trim away the extraneous references that emerge from nested
6452 use of interface.c (extend_expr). */
6453 if (class_ref && class_ref->next)
6454 {
6455 gfc_free_ref_list (class_ref->next);
6456 class_ref->next = NULL;
6457 }
6458 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6459 {
6460 gfc_free_ref_list (e->ref);
6461 e->ref = NULL;
6462 }
6463
6464 gfc_add_vptr_component (e);
6465 gfc_add_component_ref (e, name);
6466 e->value.function.esym = NULL;
6467 if (expr->expr_type != EXPR_VARIABLE)
6468 e->base_expr = expr;
6469 return true;
6470 }
6471
6472 if (st == NULL)
6473 return resolve_compcall (e, NULL);
6474
6475 if (!resolve_ref (e))
6476 return false;
6477
6478 /* Get the CLASS declared type. */
6479 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6480
6481 if (!resolve_fl_derived (declared))
6482 return false;
6483
6484 /* Weed out cases of the ultimate component being a derived type. */
6485 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6486 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6487 {
6488 gfc_free_ref_list (new_ref);
6489 return resolve_compcall (e, NULL);
6490 }
6491
6492 c = gfc_find_component (declared, "_data", true, true, NULL);
6493 declared = c->ts.u.derived;
6494
6495 /* Treat the call as if it is a typebound procedure, in order to roll
6496 out the correct name for the specific function. */
6497 if (!resolve_compcall (e, &name))
6498 {
6499 gfc_free_ref_list (new_ref);
6500 return false;
6501 }
6502 ts = e->ts;
6503
6504 if (overridable)
6505 {
6506 /* Convert the expression to a procedure pointer component call. */
6507 e->value.function.esym = NULL;
6508 e->symtree = st;
6509
6510 if (new_ref)
6511 e->ref = new_ref;
6512
6513 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6514 gfc_add_vptr_component (e);
6515 gfc_add_component_ref (e, name);
6516
6517 /* Recover the typespec for the expression. This is really only
6518 necessary for generic procedures, where the additional call
6519 to gfc_add_component_ref seems to throw the collection of the
6520 correct typespec. */
6521 e->ts = ts;
6522 }
6523 else if (new_ref)
6524 gfc_free_ref_list (new_ref);
6525
6526 return true;
6527 }
6528
6529 /* Resolve a typebound subroutine, or 'method'. First separate all
6530 the non-CLASS references by calling resolve_typebound_call
6531 directly. */
6532
6533 static bool
6534 resolve_typebound_subroutine (gfc_code *code)
6535 {
6536 gfc_symbol *declared;
6537 gfc_component *c;
6538 gfc_ref *new_ref;
6539 gfc_ref *class_ref;
6540 gfc_symtree *st;
6541 const char *name;
6542 gfc_typespec ts;
6543 gfc_expr *expr;
6544 bool overridable;
6545
6546 st = code->expr1->symtree;
6547
6548 /* Deal with typebound operators for CLASS objects. */
6549 expr = code->expr1->value.compcall.base_object;
6550 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6551 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6552 {
6553 /* If the base_object is not a variable, the corresponding actual
6554 argument expression must be stored in e->base_expression so
6555 that the corresponding tree temporary can be used as the base
6556 object in gfc_conv_procedure_call. */
6557 if (expr->expr_type != EXPR_VARIABLE)
6558 {
6559 gfc_actual_arglist *args;
6560
6561 args= code->expr1->value.function.actual;
6562 for (; args; args = args->next)
6563 if (expr == args->expr)
6564 expr = args->expr;
6565 }
6566
6567 /* Since the typebound operators are generic, we have to ensure
6568 that any delays in resolution are corrected and that the vtab
6569 is present. */
6570 declared = expr->ts.u.derived;
6571 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6572 if (c->ts.u.derived == NULL)
6573 c->ts.u.derived = gfc_find_derived_vtab (declared);
6574
6575 if (!resolve_typebound_call (code, &name, NULL))
6576 return false;
6577
6578 /* Use the generic name if it is there. */
6579 name = name ? name : code->expr1->value.function.esym->name;
6580 code->expr1->symtree = expr->symtree;
6581 code->expr1->ref = gfc_copy_ref (expr->ref);
6582
6583 /* Trim away the extraneous references that emerge from nested
6584 use of interface.c (extend_expr). */
6585 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6586 if (class_ref && class_ref->next)
6587 {
6588 gfc_free_ref_list (class_ref->next);
6589 class_ref->next = NULL;
6590 }
6591 else if (code->expr1->ref && !class_ref)
6592 {
6593 gfc_free_ref_list (code->expr1->ref);
6594 code->expr1->ref = NULL;
6595 }
6596
6597 /* Now use the procedure in the vtable. */
6598 gfc_add_vptr_component (code->expr1);
6599 gfc_add_component_ref (code->expr1, name);
6600 code->expr1->value.function.esym = NULL;
6601 if (expr->expr_type != EXPR_VARIABLE)
6602 code->expr1->base_expr = expr;
6603 return true;
6604 }
6605
6606 if (st == NULL)
6607 return resolve_typebound_call (code, NULL, NULL);
6608
6609 if (!resolve_ref (code->expr1))
6610 return false;
6611
6612 /* Get the CLASS declared type. */
6613 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6614
6615 /* Weed out cases of the ultimate component being a derived type. */
6616 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6617 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6618 {
6619 gfc_free_ref_list (new_ref);
6620 return resolve_typebound_call (code, NULL, NULL);
6621 }
6622
6623 if (!resolve_typebound_call (code, &name, &overridable))
6624 {
6625 gfc_free_ref_list (new_ref);
6626 return false;
6627 }
6628 ts = code->expr1->ts;
6629
6630 if (overridable)
6631 {
6632 /* Convert the expression to a procedure pointer component call. */
6633 code->expr1->value.function.esym = NULL;
6634 code->expr1->symtree = st;
6635
6636 if (new_ref)
6637 code->expr1->ref = new_ref;
6638
6639 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6640 gfc_add_vptr_component (code->expr1);
6641 gfc_add_component_ref (code->expr1, name);
6642
6643 /* Recover the typespec for the expression. This is really only
6644 necessary for generic procedures, where the additional call
6645 to gfc_add_component_ref seems to throw the collection of the
6646 correct typespec. */
6647 code->expr1->ts = ts;
6648 }
6649 else if (new_ref)
6650 gfc_free_ref_list (new_ref);
6651
6652 return true;
6653 }
6654
6655
6656 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6657
6658 static bool
6659 resolve_ppc_call (gfc_code* c)
6660 {
6661 gfc_component *comp;
6662
6663 comp = gfc_get_proc_ptr_comp (c->expr1);
6664 gcc_assert (comp != NULL);
6665
6666 c->resolved_sym = c->expr1->symtree->n.sym;
6667 c->expr1->expr_type = EXPR_VARIABLE;
6668
6669 if (!comp->attr.subroutine)
6670 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6671
6672 if (!resolve_ref (c->expr1))
6673 return false;
6674
6675 if (!update_ppc_arglist (c->expr1))
6676 return false;
6677
6678 c->ext.actual = c->expr1->value.compcall.actual;
6679
6680 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6681 !(comp->ts.interface
6682 && comp->ts.interface->formal)))
6683 return false;
6684
6685 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6686 return false;
6687
6688 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6689
6690 return true;
6691 }
6692
6693
6694 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6695
6696 static bool
6697 resolve_expr_ppc (gfc_expr* e)
6698 {
6699 gfc_component *comp;
6700
6701 comp = gfc_get_proc_ptr_comp (e);
6702 gcc_assert (comp != NULL);
6703
6704 /* Convert to EXPR_FUNCTION. */
6705 e->expr_type = EXPR_FUNCTION;
6706 e->value.function.isym = NULL;
6707 e->value.function.actual = e->value.compcall.actual;
6708 e->ts = comp->ts;
6709 if (comp->as != NULL)
6710 e->rank = comp->as->rank;
6711
6712 if (!comp->attr.function)
6713 gfc_add_function (&comp->attr, comp->name, &e->where);
6714
6715 if (!resolve_ref (e))
6716 return false;
6717
6718 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6719 !(comp->ts.interface
6720 && comp->ts.interface->formal)))
6721 return false;
6722
6723 if (!update_ppc_arglist (e))
6724 return false;
6725
6726 if (!check_pure_function(e))
6727 return false;
6728
6729 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6730
6731 return true;
6732 }
6733
6734
6735 static bool
6736 gfc_is_expandable_expr (gfc_expr *e)
6737 {
6738 gfc_constructor *con;
6739
6740 if (e->expr_type == EXPR_ARRAY)
6741 {
6742 /* Traverse the constructor looking for variables that are flavor
6743 parameter. Parameters must be expanded since they are fully used at
6744 compile time. */
6745 con = gfc_constructor_first (e->value.constructor);
6746 for (; con; con = gfc_constructor_next (con))
6747 {
6748 if (con->expr->expr_type == EXPR_VARIABLE
6749 && con->expr->symtree
6750 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6751 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6752 return true;
6753 if (con->expr->expr_type == EXPR_ARRAY
6754 && gfc_is_expandable_expr (con->expr))
6755 return true;
6756 }
6757 }
6758
6759 return false;
6760 }
6761
6762
6763 /* Sometimes variables in specification expressions of the result
6764 of module procedures in submodules wind up not being the 'real'
6765 dummy. Find this, if possible, in the namespace of the first
6766 formal argument. */
6767
6768 static void
6769 fixup_unique_dummy (gfc_expr *e)
6770 {
6771 gfc_symtree *st = NULL;
6772 gfc_symbol *s = NULL;
6773
6774 if (e->symtree->n.sym->ns->proc_name
6775 && e->symtree->n.sym->ns->proc_name->formal)
6776 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6777
6778 if (s != NULL)
6779 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6780
6781 if (st != NULL
6782 && st->n.sym != NULL
6783 && st->n.sym->attr.dummy)
6784 e->symtree = st;
6785 }
6786
6787 /* Resolve an expression. That is, make sure that types of operands agree
6788 with their operators, intrinsic operators are converted to function calls
6789 for overloaded types and unresolved function references are resolved. */
6790
6791 bool
6792 gfc_resolve_expr (gfc_expr *e)
6793 {
6794 bool t;
6795 bool inquiry_save, actual_arg_save, first_actual_arg_save;
6796
6797 if (e == NULL)
6798 return true;
6799
6800 /* inquiry_argument only applies to variables. */
6801 inquiry_save = inquiry_argument;
6802 actual_arg_save = actual_arg;
6803 first_actual_arg_save = first_actual_arg;
6804
6805 if (e->expr_type != EXPR_VARIABLE)
6806 {
6807 inquiry_argument = false;
6808 actual_arg = false;
6809 first_actual_arg = false;
6810 }
6811 else if (e->symtree != NULL
6812 && *e->symtree->name == '@'
6813 && e->symtree->n.sym->attr.dummy)
6814 {
6815 /* Deal with submodule specification expressions that are not
6816 found to be referenced in module.c(read_cleanup). */
6817 fixup_unique_dummy (e);
6818 }
6819
6820 switch (e->expr_type)
6821 {
6822 case EXPR_OP:
6823 t = resolve_operator (e);
6824 break;
6825
6826 case EXPR_FUNCTION:
6827 case EXPR_VARIABLE:
6828
6829 if (check_host_association (e))
6830 t = resolve_function (e);
6831 else
6832 t = resolve_variable (e);
6833
6834 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
6835 && e->ref->type != REF_SUBSTRING)
6836 gfc_resolve_substring_charlen (e);
6837
6838 break;
6839
6840 case EXPR_COMPCALL:
6841 t = resolve_typebound_function (e);
6842 break;
6843
6844 case EXPR_SUBSTRING:
6845 t = resolve_ref (e);
6846 break;
6847
6848 case EXPR_CONSTANT:
6849 case EXPR_NULL:
6850 t = true;
6851 break;
6852
6853 case EXPR_PPC:
6854 t = resolve_expr_ppc (e);
6855 break;
6856
6857 case EXPR_ARRAY:
6858 t = false;
6859 if (!resolve_ref (e))
6860 break;
6861
6862 t = gfc_resolve_array_constructor (e);
6863 /* Also try to expand a constructor. */
6864 if (t)
6865 {
6866 expression_rank (e);
6867 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
6868 gfc_expand_constructor (e, false);
6869 }
6870
6871 /* This provides the opportunity for the length of constructors with
6872 character valued function elements to propagate the string length
6873 to the expression. */
6874 if (t && e->ts.type == BT_CHARACTER)
6875 {
6876 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
6877 here rather then add a duplicate test for it above. */
6878 gfc_expand_constructor (e, false);
6879 t = gfc_resolve_character_array_constructor (e);
6880 }
6881
6882 break;
6883
6884 case EXPR_STRUCTURE:
6885 t = resolve_ref (e);
6886 if (!t)
6887 break;
6888
6889 t = resolve_structure_cons (e, 0);
6890 if (!t)
6891 break;
6892
6893 t = gfc_simplify_expr (e, 0);
6894 break;
6895
6896 default:
6897 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
6898 }
6899
6900 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
6901 fixup_charlen (e);
6902
6903 inquiry_argument = inquiry_save;
6904 actual_arg = actual_arg_save;
6905 first_actual_arg = first_actual_arg_save;
6906
6907 return t;
6908 }
6909
6910
6911 /* Resolve an expression from an iterator. They must be scalar and have
6912 INTEGER or (optionally) REAL type. */
6913
6914 static bool
6915 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
6916 const char *name_msgid)
6917 {
6918 if (!gfc_resolve_expr (expr))
6919 return false;
6920
6921 if (expr->rank != 0)
6922 {
6923 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
6924 return false;
6925 }
6926
6927 if (expr->ts.type != BT_INTEGER)
6928 {
6929 if (expr->ts.type == BT_REAL)
6930 {
6931 if (real_ok)
6932 return gfc_notify_std (GFC_STD_F95_DEL,
6933 "%s at %L must be integer",
6934 _(name_msgid), &expr->where);
6935 else
6936 {
6937 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
6938 &expr->where);
6939 return false;
6940 }
6941 }
6942 else
6943 {
6944 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
6945 return false;
6946 }
6947 }
6948 return true;
6949 }
6950
6951
6952 /* Resolve the expressions in an iterator structure. If REAL_OK is
6953 false allow only INTEGER type iterators, otherwise allow REAL types.
6954 Set own_scope to true for ac-implied-do and data-implied-do as those
6955 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
6956
6957 bool
6958 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
6959 {
6960 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
6961 return false;
6962
6963 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
6964 _("iterator variable")))
6965 return false;
6966
6967 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
6968 "Start expression in DO loop"))
6969 return false;
6970
6971 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
6972 "End expression in DO loop"))
6973 return false;
6974
6975 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
6976 "Step expression in DO loop"))
6977 return false;
6978
6979 if (iter->step->expr_type == EXPR_CONSTANT)
6980 {
6981 if ((iter->step->ts.type == BT_INTEGER
6982 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
6983 || (iter->step->ts.type == BT_REAL
6984 && mpfr_sgn (iter->step->value.real) == 0))
6985 {
6986 gfc_error ("Step expression in DO loop at %L cannot be zero",
6987 &iter->step->where);
6988 return false;
6989 }
6990 }
6991
6992 /* Convert start, end, and step to the same type as var. */
6993 if (iter->start->ts.kind != iter->var->ts.kind
6994 || iter->start->ts.type != iter->var->ts.type)
6995 gfc_convert_type (iter->start, &iter->var->ts, 1);
6996
6997 if (iter->end->ts.kind != iter->var->ts.kind
6998 || iter->end->ts.type != iter->var->ts.type)
6999 gfc_convert_type (iter->end, &iter->var->ts, 1);
7000
7001 if (iter->step->ts.kind != iter->var->ts.kind
7002 || iter->step->ts.type != iter->var->ts.type)
7003 gfc_convert_type (iter->step, &iter->var->ts, 1);
7004
7005 if (iter->start->expr_type == EXPR_CONSTANT
7006 && iter->end->expr_type == EXPR_CONSTANT
7007 && iter->step->expr_type == EXPR_CONSTANT)
7008 {
7009 int sgn, cmp;
7010 if (iter->start->ts.type == BT_INTEGER)
7011 {
7012 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
7013 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
7014 }
7015 else
7016 {
7017 sgn = mpfr_sgn (iter->step->value.real);
7018 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
7019 }
7020 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
7021 gfc_warning (OPT_Wzerotrip,
7022 "DO loop at %L will be executed zero times",
7023 &iter->step->where);
7024 }
7025
7026 if (iter->end->expr_type == EXPR_CONSTANT
7027 && iter->end->ts.type == BT_INTEGER
7028 && iter->step->expr_type == EXPR_CONSTANT
7029 && iter->step->ts.type == BT_INTEGER
7030 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
7031 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
7032 {
7033 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
7034 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
7035
7036 if (is_step_positive
7037 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
7038 gfc_warning (OPT_Wundefined_do_loop,
7039 "DO loop at %L is undefined as it overflows",
7040 &iter->step->where);
7041 else if (!is_step_positive
7042 && mpz_cmp (iter->end->value.integer,
7043 gfc_integer_kinds[k].min_int) == 0)
7044 gfc_warning (OPT_Wundefined_do_loop,
7045 "DO loop at %L is undefined as it underflows",
7046 &iter->step->where);
7047 }
7048
7049 return true;
7050 }
7051
7052
7053 /* Traversal function for find_forall_index. f == 2 signals that
7054 that variable itself is not to be checked - only the references. */
7055
7056 static bool
7057 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
7058 {
7059 if (expr->expr_type != EXPR_VARIABLE)
7060 return false;
7061
7062 /* A scalar assignment */
7063 if (!expr->ref || *f == 1)
7064 {
7065 if (expr->symtree->n.sym == sym)
7066 return true;
7067 else
7068 return false;
7069 }
7070
7071 if (*f == 2)
7072 *f = 1;
7073 return false;
7074 }
7075
7076
7077 /* Check whether the FORALL index appears in the expression or not.
7078 Returns true if SYM is found in EXPR. */
7079
7080 bool
7081 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
7082 {
7083 if (gfc_traverse_expr (expr, sym, forall_index, f))
7084 return true;
7085 else
7086 return false;
7087 }
7088
7089
7090 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
7091 to be a scalar INTEGER variable. The subscripts and stride are scalar
7092 INTEGERs, and if stride is a constant it must be nonzero.
7093 Furthermore "A subscript or stride in a forall-triplet-spec shall
7094 not contain a reference to any index-name in the
7095 forall-triplet-spec-list in which it appears." (7.5.4.1) */
7096
7097 static void
7098 resolve_forall_iterators (gfc_forall_iterator *it)
7099 {
7100 gfc_forall_iterator *iter, *iter2;
7101
7102 for (iter = it; iter; iter = iter->next)
7103 {
7104 if (gfc_resolve_expr (iter->var)
7105 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
7106 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
7107 &iter->var->where);
7108
7109 if (gfc_resolve_expr (iter->start)
7110 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
7111 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
7112 &iter->start->where);
7113 if (iter->var->ts.kind != iter->start->ts.kind)
7114 gfc_convert_type (iter->start, &iter->var->ts, 1);
7115
7116 if (gfc_resolve_expr (iter->end)
7117 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
7118 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
7119 &iter->end->where);
7120 if (iter->var->ts.kind != iter->end->ts.kind)
7121 gfc_convert_type (iter->end, &iter->var->ts, 1);
7122
7123 if (gfc_resolve_expr (iter->stride))
7124 {
7125 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7126 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7127 &iter->stride->where, "INTEGER");
7128
7129 if (iter->stride->expr_type == EXPR_CONSTANT
7130 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7131 gfc_error ("FORALL stride expression at %L cannot be zero",
7132 &iter->stride->where);
7133 }
7134 if (iter->var->ts.kind != iter->stride->ts.kind)
7135 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7136 }
7137
7138 for (iter = it; iter; iter = iter->next)
7139 for (iter2 = iter; iter2; iter2 = iter2->next)
7140 {
7141 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7142 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7143 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7144 gfc_error ("FORALL index %qs may not appear in triplet "
7145 "specification at %L", iter->var->symtree->name,
7146 &iter2->start->where);
7147 }
7148 }
7149
7150
7151 /* Given a pointer to a symbol that is a derived type, see if it's
7152 inaccessible, i.e. if it's defined in another module and the components are
7153 PRIVATE. The search is recursive if necessary. Returns zero if no
7154 inaccessible components are found, nonzero otherwise. */
7155
7156 static int
7157 derived_inaccessible (gfc_symbol *sym)
7158 {
7159 gfc_component *c;
7160
7161 if (sym->attr.use_assoc && sym->attr.private_comp)
7162 return 1;
7163
7164 for (c = sym->components; c; c = c->next)
7165 {
7166 /* Prevent an infinite loop through this function. */
7167 if (c->ts.type == BT_DERIVED && c->attr.pointer
7168 && sym == c->ts.u.derived)
7169 continue;
7170
7171 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7172 return 1;
7173 }
7174
7175 return 0;
7176 }
7177
7178
7179 /* Resolve the argument of a deallocate expression. The expression must be
7180 a pointer or a full array. */
7181
7182 static bool
7183 resolve_deallocate_expr (gfc_expr *e)
7184 {
7185 symbol_attribute attr;
7186 int allocatable, pointer;
7187 gfc_ref *ref;
7188 gfc_symbol *sym;
7189 gfc_component *c;
7190 bool unlimited;
7191
7192 if (!gfc_resolve_expr (e))
7193 return false;
7194
7195 if (e->expr_type != EXPR_VARIABLE)
7196 goto bad;
7197
7198 sym = e->symtree->n.sym;
7199 unlimited = UNLIMITED_POLY(sym);
7200
7201 if (sym->ts.type == BT_CLASS)
7202 {
7203 allocatable = CLASS_DATA (sym)->attr.allocatable;
7204 pointer = CLASS_DATA (sym)->attr.class_pointer;
7205 }
7206 else
7207 {
7208 allocatable = sym->attr.allocatable;
7209 pointer = sym->attr.pointer;
7210 }
7211 for (ref = e->ref; ref; ref = ref->next)
7212 {
7213 switch (ref->type)
7214 {
7215 case REF_ARRAY:
7216 if (ref->u.ar.type != AR_FULL
7217 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7218 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7219 allocatable = 0;
7220 break;
7221
7222 case REF_COMPONENT:
7223 c = ref->u.c.component;
7224 if (c->ts.type == BT_CLASS)
7225 {
7226 allocatable = CLASS_DATA (c)->attr.allocatable;
7227 pointer = CLASS_DATA (c)->attr.class_pointer;
7228 }
7229 else
7230 {
7231 allocatable = c->attr.allocatable;
7232 pointer = c->attr.pointer;
7233 }
7234 break;
7235
7236 case REF_SUBSTRING:
7237 case REF_INQUIRY:
7238 allocatable = 0;
7239 break;
7240 }
7241 }
7242
7243 attr = gfc_expr_attr (e);
7244
7245 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7246 {
7247 bad:
7248 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7249 &e->where);
7250 return false;
7251 }
7252
7253 /* F2008, C644. */
7254 if (gfc_is_coindexed (e))
7255 {
7256 gfc_error ("Coindexed allocatable object at %L", &e->where);
7257 return false;
7258 }
7259
7260 if (pointer
7261 && !gfc_check_vardef_context (e, true, true, false,
7262 _("DEALLOCATE object")))
7263 return false;
7264 if (!gfc_check_vardef_context (e, false, true, false,
7265 _("DEALLOCATE object")))
7266 return false;
7267
7268 return true;
7269 }
7270
7271
7272 /* Returns true if the expression e contains a reference to the symbol sym. */
7273 static bool
7274 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7275 {
7276 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7277 return true;
7278
7279 return false;
7280 }
7281
7282 bool
7283 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7284 {
7285 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7286 }
7287
7288
7289 /* Given the expression node e for an allocatable/pointer of derived type to be
7290 allocated, get the expression node to be initialized afterwards (needed for
7291 derived types with default initializers, and derived types with allocatable
7292 components that need nullification.) */
7293
7294 gfc_expr *
7295 gfc_expr_to_initialize (gfc_expr *e)
7296 {
7297 gfc_expr *result;
7298 gfc_ref *ref;
7299 int i;
7300
7301 result = gfc_copy_expr (e);
7302
7303 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7304 for (ref = result->ref; ref; ref = ref->next)
7305 if (ref->type == REF_ARRAY && ref->next == NULL)
7306 {
7307 ref->u.ar.type = AR_FULL;
7308
7309 for (i = 0; i < ref->u.ar.dimen; i++)
7310 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7311
7312 break;
7313 }
7314
7315 gfc_free_shape (&result->shape, result->rank);
7316
7317 /* Recalculate rank, shape, etc. */
7318 gfc_resolve_expr (result);
7319 return result;
7320 }
7321
7322
7323 /* If the last ref of an expression is an array ref, return a copy of the
7324 expression with that one removed. Otherwise, a copy of the original
7325 expression. This is used for allocate-expressions and pointer assignment
7326 LHS, where there may be an array specification that needs to be stripped
7327 off when using gfc_check_vardef_context. */
7328
7329 static gfc_expr*
7330 remove_last_array_ref (gfc_expr* e)
7331 {
7332 gfc_expr* e2;
7333 gfc_ref** r;
7334
7335 e2 = gfc_copy_expr (e);
7336 for (r = &e2->ref; *r; r = &(*r)->next)
7337 if ((*r)->type == REF_ARRAY && !(*r)->next)
7338 {
7339 gfc_free_ref_list (*r);
7340 *r = NULL;
7341 break;
7342 }
7343
7344 return e2;
7345 }
7346
7347
7348 /* Used in resolve_allocate_expr to check that a allocation-object and
7349 a source-expr are conformable. This does not catch all possible
7350 cases; in particular a runtime checking is needed. */
7351
7352 static bool
7353 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7354 {
7355 gfc_ref *tail;
7356 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7357
7358 /* First compare rank. */
7359 if ((tail && e1->rank != tail->u.ar.as->rank)
7360 || (!tail && e1->rank != e2->rank))
7361 {
7362 gfc_error ("Source-expr at %L must be scalar or have the "
7363 "same rank as the allocate-object at %L",
7364 &e1->where, &e2->where);
7365 return false;
7366 }
7367
7368 if (e1->shape)
7369 {
7370 int i;
7371 mpz_t s;
7372
7373 mpz_init (s);
7374
7375 for (i = 0; i < e1->rank; i++)
7376 {
7377 if (tail->u.ar.start[i] == NULL)
7378 break;
7379
7380 if (tail->u.ar.end[i])
7381 {
7382 mpz_set (s, tail->u.ar.end[i]->value.integer);
7383 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7384 mpz_add_ui (s, s, 1);
7385 }
7386 else
7387 {
7388 mpz_set (s, tail->u.ar.start[i]->value.integer);
7389 }
7390
7391 if (mpz_cmp (e1->shape[i], s) != 0)
7392 {
7393 gfc_error ("Source-expr at %L and allocate-object at %L must "
7394 "have the same shape", &e1->where, &e2->where);
7395 mpz_clear (s);
7396 return false;
7397 }
7398 }
7399
7400 mpz_clear (s);
7401 }
7402
7403 return true;
7404 }
7405
7406
7407 /* Resolve the expression in an ALLOCATE statement, doing the additional
7408 checks to see whether the expression is OK or not. The expression must
7409 have a trailing array reference that gives the size of the array. */
7410
7411 static bool
7412 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7413 {
7414 int i, pointer, allocatable, dimension, is_abstract;
7415 int codimension;
7416 bool coindexed;
7417 bool unlimited;
7418 symbol_attribute attr;
7419 gfc_ref *ref, *ref2;
7420 gfc_expr *e2;
7421 gfc_array_ref *ar;
7422 gfc_symbol *sym = NULL;
7423 gfc_alloc *a;
7424 gfc_component *c;
7425 bool t;
7426
7427 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7428 checking of coarrays. */
7429 for (ref = e->ref; ref; ref = ref->next)
7430 if (ref->next == NULL)
7431 break;
7432
7433 if (ref && ref->type == REF_ARRAY)
7434 ref->u.ar.in_allocate = true;
7435
7436 if (!gfc_resolve_expr (e))
7437 goto failure;
7438
7439 /* Make sure the expression is allocatable or a pointer. If it is
7440 pointer, the next-to-last reference must be a pointer. */
7441
7442 ref2 = NULL;
7443 if (e->symtree)
7444 sym = e->symtree->n.sym;
7445
7446 /* Check whether ultimate component is abstract and CLASS. */
7447 is_abstract = 0;
7448
7449 /* Is the allocate-object unlimited polymorphic? */
7450 unlimited = UNLIMITED_POLY(e);
7451
7452 if (e->expr_type != EXPR_VARIABLE)
7453 {
7454 allocatable = 0;
7455 attr = gfc_expr_attr (e);
7456 pointer = attr.pointer;
7457 dimension = attr.dimension;
7458 codimension = attr.codimension;
7459 }
7460 else
7461 {
7462 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7463 {
7464 allocatable = CLASS_DATA (sym)->attr.allocatable;
7465 pointer = CLASS_DATA (sym)->attr.class_pointer;
7466 dimension = CLASS_DATA (sym)->attr.dimension;
7467 codimension = CLASS_DATA (sym)->attr.codimension;
7468 is_abstract = CLASS_DATA (sym)->attr.abstract;
7469 }
7470 else
7471 {
7472 allocatable = sym->attr.allocatable;
7473 pointer = sym->attr.pointer;
7474 dimension = sym->attr.dimension;
7475 codimension = sym->attr.codimension;
7476 }
7477
7478 coindexed = false;
7479
7480 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7481 {
7482 switch (ref->type)
7483 {
7484 case REF_ARRAY:
7485 if (ref->u.ar.codimen > 0)
7486 {
7487 int n;
7488 for (n = ref->u.ar.dimen;
7489 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7490 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7491 {
7492 coindexed = true;
7493 break;
7494 }
7495 }
7496
7497 if (ref->next != NULL)
7498 pointer = 0;
7499 break;
7500
7501 case REF_COMPONENT:
7502 /* F2008, C644. */
7503 if (coindexed)
7504 {
7505 gfc_error ("Coindexed allocatable object at %L",
7506 &e->where);
7507 goto failure;
7508 }
7509
7510 c = ref->u.c.component;
7511 if (c->ts.type == BT_CLASS)
7512 {
7513 allocatable = CLASS_DATA (c)->attr.allocatable;
7514 pointer = CLASS_DATA (c)->attr.class_pointer;
7515 dimension = CLASS_DATA (c)->attr.dimension;
7516 codimension = CLASS_DATA (c)->attr.codimension;
7517 is_abstract = CLASS_DATA (c)->attr.abstract;
7518 }
7519 else
7520 {
7521 allocatable = c->attr.allocatable;
7522 pointer = c->attr.pointer;
7523 dimension = c->attr.dimension;
7524 codimension = c->attr.codimension;
7525 is_abstract = c->attr.abstract;
7526 }
7527 break;
7528
7529 case REF_SUBSTRING:
7530 case REF_INQUIRY:
7531 allocatable = 0;
7532 pointer = 0;
7533 break;
7534 }
7535 }
7536 }
7537
7538 /* Check for F08:C628. */
7539 if (allocatable == 0 && pointer == 0 && !unlimited)
7540 {
7541 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7542 &e->where);
7543 goto failure;
7544 }
7545
7546 /* Some checks for the SOURCE tag. */
7547 if (code->expr3)
7548 {
7549 /* Check F03:C631. */
7550 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7551 {
7552 gfc_error ("Type of entity at %L is type incompatible with "
7553 "source-expr at %L", &e->where, &code->expr3->where);
7554 goto failure;
7555 }
7556
7557 /* Check F03:C632 and restriction following Note 6.18. */
7558 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7559 goto failure;
7560
7561 /* Check F03:C633. */
7562 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7563 {
7564 gfc_error ("The allocate-object at %L and the source-expr at %L "
7565 "shall have the same kind type parameter",
7566 &e->where, &code->expr3->where);
7567 goto failure;
7568 }
7569
7570 /* Check F2008, C642. */
7571 if (code->expr3->ts.type == BT_DERIVED
7572 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7573 || (code->expr3->ts.u.derived->from_intmod
7574 == INTMOD_ISO_FORTRAN_ENV
7575 && code->expr3->ts.u.derived->intmod_sym_id
7576 == ISOFORTRAN_LOCK_TYPE)))
7577 {
7578 gfc_error ("The source-expr at %L shall neither be of type "
7579 "LOCK_TYPE nor have a LOCK_TYPE component if "
7580 "allocate-object at %L is a coarray",
7581 &code->expr3->where, &e->where);
7582 goto failure;
7583 }
7584
7585 /* Check TS18508, C702/C703. */
7586 if (code->expr3->ts.type == BT_DERIVED
7587 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7588 || (code->expr3->ts.u.derived->from_intmod
7589 == INTMOD_ISO_FORTRAN_ENV
7590 && code->expr3->ts.u.derived->intmod_sym_id
7591 == ISOFORTRAN_EVENT_TYPE)))
7592 {
7593 gfc_error ("The source-expr at %L shall neither be of type "
7594 "EVENT_TYPE nor have a EVENT_TYPE component if "
7595 "allocate-object at %L is a coarray",
7596 &code->expr3->where, &e->where);
7597 goto failure;
7598 }
7599 }
7600
7601 /* Check F08:C629. */
7602 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7603 && !code->expr3)
7604 {
7605 gcc_assert (e->ts.type == BT_CLASS);
7606 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7607 "type-spec or source-expr", sym->name, &e->where);
7608 goto failure;
7609 }
7610
7611 /* Check F08:C632. */
7612 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7613 && !UNLIMITED_POLY (e))
7614 {
7615 int cmp;
7616
7617 if (!e->ts.u.cl->length)
7618 goto failure;
7619
7620 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7621 code->ext.alloc.ts.u.cl->length);
7622 if (cmp == 1 || cmp == -1 || cmp == -3)
7623 {
7624 gfc_error ("Allocating %s at %L with type-spec requires the same "
7625 "character-length parameter as in the declaration",
7626 sym->name, &e->where);
7627 goto failure;
7628 }
7629 }
7630
7631 /* In the variable definition context checks, gfc_expr_attr is used
7632 on the expression. This is fooled by the array specification
7633 present in e, thus we have to eliminate that one temporarily. */
7634 e2 = remove_last_array_ref (e);
7635 t = true;
7636 if (t && pointer)
7637 t = gfc_check_vardef_context (e2, true, true, false,
7638 _("ALLOCATE object"));
7639 if (t)
7640 t = gfc_check_vardef_context (e2, false, true, false,
7641 _("ALLOCATE object"));
7642 gfc_free_expr (e2);
7643 if (!t)
7644 goto failure;
7645
7646 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7647 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7648 {
7649 /* For class arrays, the initialization with SOURCE is done
7650 using _copy and trans_call. It is convenient to exploit that
7651 when the allocated type is different from the declared type but
7652 no SOURCE exists by setting expr3. */
7653 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7654 }
7655 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7656 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7657 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7658 {
7659 /* We have to zero initialize the integer variable. */
7660 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7661 }
7662
7663 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7664 {
7665 /* Make sure the vtab symbol is present when
7666 the module variables are generated. */
7667 gfc_typespec ts = e->ts;
7668 if (code->expr3)
7669 ts = code->expr3->ts;
7670 else if (code->ext.alloc.ts.type == BT_DERIVED)
7671 ts = code->ext.alloc.ts;
7672
7673 /* Finding the vtab also publishes the type's symbol. Therefore this
7674 statement is necessary. */
7675 gfc_find_derived_vtab (ts.u.derived);
7676 }
7677 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7678 {
7679 /* Again, make sure the vtab symbol is present when
7680 the module variables are generated. */
7681 gfc_typespec *ts = NULL;
7682 if (code->expr3)
7683 ts = &code->expr3->ts;
7684 else
7685 ts = &code->ext.alloc.ts;
7686
7687 gcc_assert (ts);
7688
7689 /* Finding the vtab also publishes the type's symbol. Therefore this
7690 statement is necessary. */
7691 gfc_find_vtab (ts);
7692 }
7693
7694 if (dimension == 0 && codimension == 0)
7695 goto success;
7696
7697 /* Make sure the last reference node is an array specification. */
7698
7699 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7700 || (dimension && ref2->u.ar.dimen == 0))
7701 {
7702 /* F08:C633. */
7703 if (code->expr3)
7704 {
7705 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7706 "in ALLOCATE statement at %L", &e->where))
7707 goto failure;
7708 if (code->expr3->rank != 0)
7709 *array_alloc_wo_spec = true;
7710 else
7711 {
7712 gfc_error ("Array specification or array-valued SOURCE= "
7713 "expression required in ALLOCATE statement at %L",
7714 &e->where);
7715 goto failure;
7716 }
7717 }
7718 else
7719 {
7720 gfc_error ("Array specification required in ALLOCATE statement "
7721 "at %L", &e->where);
7722 goto failure;
7723 }
7724 }
7725
7726 /* Make sure that the array section reference makes sense in the
7727 context of an ALLOCATE specification. */
7728
7729 ar = &ref2->u.ar;
7730
7731 if (codimension)
7732 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7733 if (ar->dimen_type[i] == DIMEN_THIS_IMAGE)
7734 {
7735 gfc_error ("Coarray specification required in ALLOCATE statement "
7736 "at %L", &e->where);
7737 goto failure;
7738 }
7739
7740 for (i = 0; i < ar->dimen; i++)
7741 {
7742 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
7743 goto check_symbols;
7744
7745 switch (ar->dimen_type[i])
7746 {
7747 case DIMEN_ELEMENT:
7748 break;
7749
7750 case DIMEN_RANGE:
7751 if (ar->start[i] != NULL
7752 && ar->end[i] != NULL
7753 && ar->stride[i] == NULL)
7754 break;
7755
7756 /* Fall through. */
7757
7758 case DIMEN_UNKNOWN:
7759 case DIMEN_VECTOR:
7760 case DIMEN_STAR:
7761 case DIMEN_THIS_IMAGE:
7762 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7763 &e->where);
7764 goto failure;
7765 }
7766
7767 check_symbols:
7768 for (a = code->ext.alloc.list; a; a = a->next)
7769 {
7770 sym = a->expr->symtree->n.sym;
7771
7772 /* TODO - check derived type components. */
7773 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
7774 continue;
7775
7776 if ((ar->start[i] != NULL
7777 && gfc_find_sym_in_expr (sym, ar->start[i]))
7778 || (ar->end[i] != NULL
7779 && gfc_find_sym_in_expr (sym, ar->end[i])))
7780 {
7781 gfc_error ("%qs must not appear in the array specification at "
7782 "%L in the same ALLOCATE statement where it is "
7783 "itself allocated", sym->name, &ar->where);
7784 goto failure;
7785 }
7786 }
7787 }
7788
7789 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
7790 {
7791 if (ar->dimen_type[i] == DIMEN_ELEMENT
7792 || ar->dimen_type[i] == DIMEN_RANGE)
7793 {
7794 if (i == (ar->dimen + ar->codimen - 1))
7795 {
7796 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
7797 "statement at %L", &e->where);
7798 goto failure;
7799 }
7800 continue;
7801 }
7802
7803 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
7804 && ar->stride[i] == NULL)
7805 break;
7806
7807 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
7808 &e->where);
7809 goto failure;
7810 }
7811
7812 success:
7813 return true;
7814
7815 failure:
7816 return false;
7817 }
7818
7819
7820 static void
7821 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
7822 {
7823 gfc_expr *stat, *errmsg, *pe, *qe;
7824 gfc_alloc *a, *p, *q;
7825
7826 stat = code->expr1;
7827 errmsg = code->expr2;
7828
7829 /* Check the stat variable. */
7830 if (stat)
7831 {
7832 gfc_check_vardef_context (stat, false, false, false,
7833 _("STAT variable"));
7834
7835 if ((stat->ts.type != BT_INTEGER
7836 && !(stat->ref && (stat->ref->type == REF_ARRAY
7837 || stat->ref->type == REF_COMPONENT)))
7838 || stat->rank > 0)
7839 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
7840 "variable", &stat->where);
7841
7842 for (p = code->ext.alloc.list; p; p = p->next)
7843 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
7844 {
7845 gfc_ref *ref1, *ref2;
7846 bool found = true;
7847
7848 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
7849 ref1 = ref1->next, ref2 = ref2->next)
7850 {
7851 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7852 continue;
7853 if (ref1->u.c.component->name != ref2->u.c.component->name)
7854 {
7855 found = false;
7856 break;
7857 }
7858 }
7859
7860 if (found)
7861 {
7862 gfc_error ("Stat-variable at %L shall not be %sd within "
7863 "the same %s statement", &stat->where, fcn, fcn);
7864 break;
7865 }
7866 }
7867 }
7868
7869 /* Check the errmsg variable. */
7870 if (errmsg)
7871 {
7872 if (!stat)
7873 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
7874 &errmsg->where);
7875
7876 gfc_check_vardef_context (errmsg, false, false, false,
7877 _("ERRMSG variable"));
7878
7879 /* F18:R928 alloc-opt is ERRMSG = errmsg-variable
7880 F18:R930 errmsg-variable is scalar-default-char-variable
7881 F18:R906 default-char-variable is variable
7882 F18:C906 default-char-variable shall be default character. */
7883 if ((errmsg->ts.type != BT_CHARACTER
7884 && !(errmsg->ref
7885 && (errmsg->ref->type == REF_ARRAY
7886 || errmsg->ref->type == REF_COMPONENT)))
7887 || errmsg->rank > 0
7888 || errmsg->ts.kind != gfc_default_character_kind)
7889 gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
7890 "variable", &errmsg->where);
7891
7892 for (p = code->ext.alloc.list; p; p = p->next)
7893 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
7894 {
7895 gfc_ref *ref1, *ref2;
7896 bool found = true;
7897
7898 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
7899 ref1 = ref1->next, ref2 = ref2->next)
7900 {
7901 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7902 continue;
7903 if (ref1->u.c.component->name != ref2->u.c.component->name)
7904 {
7905 found = false;
7906 break;
7907 }
7908 }
7909
7910 if (found)
7911 {
7912 gfc_error ("Errmsg-variable at %L shall not be %sd within "
7913 "the same %s statement", &errmsg->where, fcn, fcn);
7914 break;
7915 }
7916 }
7917 }
7918
7919 /* Check that an allocate-object appears only once in the statement. */
7920
7921 for (p = code->ext.alloc.list; p; p = p->next)
7922 {
7923 pe = p->expr;
7924 for (q = p->next; q; q = q->next)
7925 {
7926 qe = q->expr;
7927 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
7928 {
7929 /* This is a potential collision. */
7930 gfc_ref *pr = pe->ref;
7931 gfc_ref *qr = qe->ref;
7932
7933 /* Follow the references until
7934 a) They start to differ, in which case there is no error;
7935 you can deallocate a%b and a%c in a single statement
7936 b) Both of them stop, which is an error
7937 c) One of them stops, which is also an error. */
7938 while (1)
7939 {
7940 if (pr == NULL && qr == NULL)
7941 {
7942 gfc_error ("Allocate-object at %L also appears at %L",
7943 &pe->where, &qe->where);
7944 break;
7945 }
7946 else if (pr != NULL && qr == NULL)
7947 {
7948 gfc_error ("Allocate-object at %L is subobject of"
7949 " object at %L", &pe->where, &qe->where);
7950 break;
7951 }
7952 else if (pr == NULL && qr != NULL)
7953 {
7954 gfc_error ("Allocate-object at %L is subobject of"
7955 " object at %L", &qe->where, &pe->where);
7956 break;
7957 }
7958 /* Here, pr != NULL && qr != NULL */
7959 gcc_assert(pr->type == qr->type);
7960 if (pr->type == REF_ARRAY)
7961 {
7962 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
7963 which are legal. */
7964 gcc_assert (qr->type == REF_ARRAY);
7965
7966 if (pr->next && qr->next)
7967 {
7968 int i;
7969 gfc_array_ref *par = &(pr->u.ar);
7970 gfc_array_ref *qar = &(qr->u.ar);
7971
7972 for (i=0; i<par->dimen; i++)
7973 {
7974 if ((par->start[i] != NULL
7975 || qar->start[i] != NULL)
7976 && gfc_dep_compare_expr (par->start[i],
7977 qar->start[i]) != 0)
7978 goto break_label;
7979 }
7980 }
7981 }
7982 else
7983 {
7984 if (pr->u.c.component->name != qr->u.c.component->name)
7985 break;
7986 }
7987
7988 pr = pr->next;
7989 qr = qr->next;
7990 }
7991 break_label:
7992 ;
7993 }
7994 }
7995 }
7996
7997 if (strcmp (fcn, "ALLOCATE") == 0)
7998 {
7999 bool arr_alloc_wo_spec = false;
8000
8001 /* Resolving the expr3 in the loop over all objects to allocate would
8002 execute loop invariant code for each loop item. Therefore do it just
8003 once here. */
8004 if (code->expr3 && code->expr3->mold
8005 && code->expr3->ts.type == BT_DERIVED)
8006 {
8007 /* Default initialization via MOLD (non-polymorphic). */
8008 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
8009 if (rhs != NULL)
8010 {
8011 gfc_resolve_expr (rhs);
8012 gfc_free_expr (code->expr3);
8013 code->expr3 = rhs;
8014 }
8015 }
8016 for (a = code->ext.alloc.list; a; a = a->next)
8017 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
8018
8019 if (arr_alloc_wo_spec && code->expr3)
8020 {
8021 /* Mark the allocate to have to take the array specification
8022 from the expr3. */
8023 code->ext.alloc.arr_spec_from_expr3 = 1;
8024 }
8025 }
8026 else
8027 {
8028 for (a = code->ext.alloc.list; a; a = a->next)
8029 resolve_deallocate_expr (a->expr);
8030 }
8031 }
8032
8033
8034 /************ SELECT CASE resolution subroutines ************/
8035
8036 /* Callback function for our mergesort variant. Determines interval
8037 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
8038 op1 > op2. Assumes we're not dealing with the default case.
8039 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
8040 There are nine situations to check. */
8041
8042 static int
8043 compare_cases (const gfc_case *op1, const gfc_case *op2)
8044 {
8045 int retval;
8046
8047 if (op1->low == NULL) /* op1 = (:L) */
8048 {
8049 /* op2 = (:N), so overlap. */
8050 retval = 0;
8051 /* op2 = (M:) or (M:N), L < M */
8052 if (op2->low != NULL
8053 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8054 retval = -1;
8055 }
8056 else if (op1->high == NULL) /* op1 = (K:) */
8057 {
8058 /* op2 = (M:), so overlap. */
8059 retval = 0;
8060 /* op2 = (:N) or (M:N), K > N */
8061 if (op2->high != NULL
8062 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8063 retval = 1;
8064 }
8065 else /* op1 = (K:L) */
8066 {
8067 if (op2->low == NULL) /* op2 = (:N), K > N */
8068 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8069 ? 1 : 0;
8070 else if (op2->high == NULL) /* op2 = (M:), L < M */
8071 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8072 ? -1 : 0;
8073 else /* op2 = (M:N) */
8074 {
8075 retval = 0;
8076 /* L < M */
8077 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8078 retval = -1;
8079 /* K > N */
8080 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8081 retval = 1;
8082 }
8083 }
8084
8085 return retval;
8086 }
8087
8088
8089 /* Merge-sort a double linked case list, detecting overlap in the
8090 process. LIST is the head of the double linked case list before it
8091 is sorted. Returns the head of the sorted list if we don't see any
8092 overlap, or NULL otherwise. */
8093
8094 static gfc_case *
8095 check_case_overlap (gfc_case *list)
8096 {
8097 gfc_case *p, *q, *e, *tail;
8098 int insize, nmerges, psize, qsize, cmp, overlap_seen;
8099
8100 /* If the passed list was empty, return immediately. */
8101 if (!list)
8102 return NULL;
8103
8104 overlap_seen = 0;
8105 insize = 1;
8106
8107 /* Loop unconditionally. The only exit from this loop is a return
8108 statement, when we've finished sorting the case list. */
8109 for (;;)
8110 {
8111 p = list;
8112 list = NULL;
8113 tail = NULL;
8114
8115 /* Count the number of merges we do in this pass. */
8116 nmerges = 0;
8117
8118 /* Loop while there exists a merge to be done. */
8119 while (p)
8120 {
8121 int i;
8122
8123 /* Count this merge. */
8124 nmerges++;
8125
8126 /* Cut the list in two pieces by stepping INSIZE places
8127 forward in the list, starting from P. */
8128 psize = 0;
8129 q = p;
8130 for (i = 0; i < insize; i++)
8131 {
8132 psize++;
8133 q = q->right;
8134 if (!q)
8135 break;
8136 }
8137 qsize = insize;
8138
8139 /* Now we have two lists. Merge them! */
8140 while (psize > 0 || (qsize > 0 && q != NULL))
8141 {
8142 /* See from which the next case to merge comes from. */
8143 if (psize == 0)
8144 {
8145 /* P is empty so the next case must come from Q. */
8146 e = q;
8147 q = q->right;
8148 qsize--;
8149 }
8150 else if (qsize == 0 || q == NULL)
8151 {
8152 /* Q is empty. */
8153 e = p;
8154 p = p->right;
8155 psize--;
8156 }
8157 else
8158 {
8159 cmp = compare_cases (p, q);
8160 if (cmp < 0)
8161 {
8162 /* The whole case range for P is less than the
8163 one for Q. */
8164 e = p;
8165 p = p->right;
8166 psize--;
8167 }
8168 else if (cmp > 0)
8169 {
8170 /* The whole case range for Q is greater than
8171 the case range for P. */
8172 e = q;
8173 q = q->right;
8174 qsize--;
8175 }
8176 else
8177 {
8178 /* The cases overlap, or they are the same
8179 element in the list. Either way, we must
8180 issue an error and get the next case from P. */
8181 /* FIXME: Sort P and Q by line number. */
8182 gfc_error ("CASE label at %L overlaps with CASE "
8183 "label at %L", &p->where, &q->where);
8184 overlap_seen = 1;
8185 e = p;
8186 p = p->right;
8187 psize--;
8188 }
8189 }
8190
8191 /* Add the next element to the merged list. */
8192 if (tail)
8193 tail->right = e;
8194 else
8195 list = e;
8196 e->left = tail;
8197 tail = e;
8198 }
8199
8200 /* P has now stepped INSIZE places along, and so has Q. So
8201 they're the same. */
8202 p = q;
8203 }
8204 tail->right = NULL;
8205
8206 /* If we have done only one merge or none at all, we've
8207 finished sorting the cases. */
8208 if (nmerges <= 1)
8209 {
8210 if (!overlap_seen)
8211 return list;
8212 else
8213 return NULL;
8214 }
8215
8216 /* Otherwise repeat, merging lists twice the size. */
8217 insize *= 2;
8218 }
8219 }
8220
8221
8222 /* Check to see if an expression is suitable for use in a CASE statement.
8223 Makes sure that all case expressions are scalar constants of the same
8224 type. Return false if anything is wrong. */
8225
8226 static bool
8227 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8228 {
8229 if (e == NULL) return true;
8230
8231 if (e->ts.type != case_expr->ts.type)
8232 {
8233 gfc_error ("Expression in CASE statement at %L must be of type %s",
8234 &e->where, gfc_basic_typename (case_expr->ts.type));
8235 return false;
8236 }
8237
8238 /* C805 (R808) For a given case-construct, each case-value shall be of
8239 the same type as case-expr. For character type, length differences
8240 are allowed, but the kind type parameters shall be the same. */
8241
8242 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8243 {
8244 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8245 &e->where, case_expr->ts.kind);
8246 return false;
8247 }
8248
8249 /* Convert the case value kind to that of case expression kind,
8250 if needed */
8251
8252 if (e->ts.kind != case_expr->ts.kind)
8253 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8254
8255 if (e->rank != 0)
8256 {
8257 gfc_error ("Expression in CASE statement at %L must be scalar",
8258 &e->where);
8259 return false;
8260 }
8261
8262 return true;
8263 }
8264
8265
8266 /* Given a completely parsed select statement, we:
8267
8268 - Validate all expressions and code within the SELECT.
8269 - Make sure that the selection expression is not of the wrong type.
8270 - Make sure that no case ranges overlap.
8271 - Eliminate unreachable cases and unreachable code resulting from
8272 removing case labels.
8273
8274 The standard does allow unreachable cases, e.g. CASE (5:3). But
8275 they are a hassle for code generation, and to prevent that, we just
8276 cut them out here. This is not necessary for overlapping cases
8277 because they are illegal and we never even try to generate code.
8278
8279 We have the additional caveat that a SELECT construct could have
8280 been a computed GOTO in the source code. Fortunately we can fairly
8281 easily work around that here: The case_expr for a "real" SELECT CASE
8282 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8283 we have to do is make sure that the case_expr is a scalar integer
8284 expression. */
8285
8286 static void
8287 resolve_select (gfc_code *code, bool select_type)
8288 {
8289 gfc_code *body;
8290 gfc_expr *case_expr;
8291 gfc_case *cp, *default_case, *tail, *head;
8292 int seen_unreachable;
8293 int seen_logical;
8294 int ncases;
8295 bt type;
8296 bool t;
8297
8298 if (code->expr1 == NULL)
8299 {
8300 /* This was actually a computed GOTO statement. */
8301 case_expr = code->expr2;
8302 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8303 gfc_error ("Selection expression in computed GOTO statement "
8304 "at %L must be a scalar integer expression",
8305 &case_expr->where);
8306
8307 /* Further checking is not necessary because this SELECT was built
8308 by the compiler, so it should always be OK. Just move the
8309 case_expr from expr2 to expr so that we can handle computed
8310 GOTOs as normal SELECTs from here on. */
8311 code->expr1 = code->expr2;
8312 code->expr2 = NULL;
8313 return;
8314 }
8315
8316 case_expr = code->expr1;
8317 type = case_expr->ts.type;
8318
8319 /* F08:C830. */
8320 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8321 {
8322 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8323 &case_expr->where, gfc_typename (&case_expr->ts));
8324
8325 /* Punt. Going on here just produce more garbage error messages. */
8326 return;
8327 }
8328
8329 /* F08:R842. */
8330 if (!select_type && case_expr->rank != 0)
8331 {
8332 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8333 "expression", &case_expr->where);
8334
8335 /* Punt. */
8336 return;
8337 }
8338
8339 /* Raise a warning if an INTEGER case value exceeds the range of
8340 the case-expr. Later, all expressions will be promoted to the
8341 largest kind of all case-labels. */
8342
8343 if (type == BT_INTEGER)
8344 for (body = code->block; body; body = body->block)
8345 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8346 {
8347 if (cp->low
8348 && gfc_check_integer_range (cp->low->value.integer,
8349 case_expr->ts.kind) != ARITH_OK)
8350 gfc_warning (0, "Expression in CASE statement at %L is "
8351 "not in the range of %s", &cp->low->where,
8352 gfc_typename (&case_expr->ts));
8353
8354 if (cp->high
8355 && cp->low != cp->high
8356 && gfc_check_integer_range (cp->high->value.integer,
8357 case_expr->ts.kind) != ARITH_OK)
8358 gfc_warning (0, "Expression in CASE statement at %L is "
8359 "not in the range of %s", &cp->high->where,
8360 gfc_typename (&case_expr->ts));
8361 }
8362
8363 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8364 of the SELECT CASE expression and its CASE values. Walk the lists
8365 of case values, and if we find a mismatch, promote case_expr to
8366 the appropriate kind. */
8367
8368 if (type == BT_LOGICAL || type == BT_INTEGER)
8369 {
8370 for (body = code->block; body; body = body->block)
8371 {
8372 /* Walk the case label list. */
8373 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8374 {
8375 /* Intercept the DEFAULT case. It does not have a kind. */
8376 if (cp->low == NULL && cp->high == NULL)
8377 continue;
8378
8379 /* Unreachable case ranges are discarded, so ignore. */
8380 if (cp->low != NULL && cp->high != NULL
8381 && cp->low != cp->high
8382 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8383 continue;
8384
8385 if (cp->low != NULL
8386 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8387 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8388
8389 if (cp->high != NULL
8390 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8391 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8392 }
8393 }
8394 }
8395
8396 /* Assume there is no DEFAULT case. */
8397 default_case = NULL;
8398 head = tail = NULL;
8399 ncases = 0;
8400 seen_logical = 0;
8401
8402 for (body = code->block; body; body = body->block)
8403 {
8404 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8405 t = true;
8406 seen_unreachable = 0;
8407
8408 /* Walk the case label list, making sure that all case labels
8409 are legal. */
8410 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8411 {
8412 /* Count the number of cases in the whole construct. */
8413 ncases++;
8414
8415 /* Intercept the DEFAULT case. */
8416 if (cp->low == NULL && cp->high == NULL)
8417 {
8418 if (default_case != NULL)
8419 {
8420 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8421 "by a second DEFAULT CASE at %L",
8422 &default_case->where, &cp->where);
8423 t = false;
8424 break;
8425 }
8426 else
8427 {
8428 default_case = cp;
8429 continue;
8430 }
8431 }
8432
8433 /* Deal with single value cases and case ranges. Errors are
8434 issued from the validation function. */
8435 if (!validate_case_label_expr (cp->low, case_expr)
8436 || !validate_case_label_expr (cp->high, case_expr))
8437 {
8438 t = false;
8439 break;
8440 }
8441
8442 if (type == BT_LOGICAL
8443 && ((cp->low == NULL || cp->high == NULL)
8444 || cp->low != cp->high))
8445 {
8446 gfc_error ("Logical range in CASE statement at %L is not "
8447 "allowed", &cp->low->where);
8448 t = false;
8449 break;
8450 }
8451
8452 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8453 {
8454 int value;
8455 value = cp->low->value.logical == 0 ? 2 : 1;
8456 if (value & seen_logical)
8457 {
8458 gfc_error ("Constant logical value in CASE statement "
8459 "is repeated at %L",
8460 &cp->low->where);
8461 t = false;
8462 break;
8463 }
8464 seen_logical |= value;
8465 }
8466
8467 if (cp->low != NULL && cp->high != NULL
8468 && cp->low != cp->high
8469 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8470 {
8471 if (warn_surprising)
8472 gfc_warning (OPT_Wsurprising,
8473 "Range specification at %L can never be matched",
8474 &cp->where);
8475
8476 cp->unreachable = 1;
8477 seen_unreachable = 1;
8478 }
8479 else
8480 {
8481 /* If the case range can be matched, it can also overlap with
8482 other cases. To make sure it does not, we put it in a
8483 double linked list here. We sort that with a merge sort
8484 later on to detect any overlapping cases. */
8485 if (!head)
8486 {
8487 head = tail = cp;
8488 head->right = head->left = NULL;
8489 }
8490 else
8491 {
8492 tail->right = cp;
8493 tail->right->left = tail;
8494 tail = tail->right;
8495 tail->right = NULL;
8496 }
8497 }
8498 }
8499
8500 /* It there was a failure in the previous case label, give up
8501 for this case label list. Continue with the next block. */
8502 if (!t)
8503 continue;
8504
8505 /* See if any case labels that are unreachable have been seen.
8506 If so, we eliminate them. This is a bit of a kludge because
8507 the case lists for a single case statement (label) is a
8508 single forward linked lists. */
8509 if (seen_unreachable)
8510 {
8511 /* Advance until the first case in the list is reachable. */
8512 while (body->ext.block.case_list != NULL
8513 && body->ext.block.case_list->unreachable)
8514 {
8515 gfc_case *n = body->ext.block.case_list;
8516 body->ext.block.case_list = body->ext.block.case_list->next;
8517 n->next = NULL;
8518 gfc_free_case_list (n);
8519 }
8520
8521 /* Strip all other unreachable cases. */
8522 if (body->ext.block.case_list)
8523 {
8524 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8525 {
8526 if (cp->next->unreachable)
8527 {
8528 gfc_case *n = cp->next;
8529 cp->next = cp->next->next;
8530 n->next = NULL;
8531 gfc_free_case_list (n);
8532 }
8533 }
8534 }
8535 }
8536 }
8537
8538 /* See if there were overlapping cases. If the check returns NULL,
8539 there was overlap. In that case we don't do anything. If head
8540 is non-NULL, we prepend the DEFAULT case. The sorted list can
8541 then used during code generation for SELECT CASE constructs with
8542 a case expression of a CHARACTER type. */
8543 if (head)
8544 {
8545 head = check_case_overlap (head);
8546
8547 /* Prepend the default_case if it is there. */
8548 if (head != NULL && default_case)
8549 {
8550 default_case->left = NULL;
8551 default_case->right = head;
8552 head->left = default_case;
8553 }
8554 }
8555
8556 /* Eliminate dead blocks that may be the result if we've seen
8557 unreachable case labels for a block. */
8558 for (body = code; body && body->block; body = body->block)
8559 {
8560 if (body->block->ext.block.case_list == NULL)
8561 {
8562 /* Cut the unreachable block from the code chain. */
8563 gfc_code *c = body->block;
8564 body->block = c->block;
8565
8566 /* Kill the dead block, but not the blocks below it. */
8567 c->block = NULL;
8568 gfc_free_statements (c);
8569 }
8570 }
8571
8572 /* More than two cases is legal but insane for logical selects.
8573 Issue a warning for it. */
8574 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8575 gfc_warning (OPT_Wsurprising,
8576 "Logical SELECT CASE block at %L has more that two cases",
8577 &code->loc);
8578 }
8579
8580
8581 /* Check if a derived type is extensible. */
8582
8583 bool
8584 gfc_type_is_extensible (gfc_symbol *sym)
8585 {
8586 return !(sym->attr.is_bind_c || sym->attr.sequence
8587 || (sym->attr.is_class
8588 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8589 }
8590
8591
8592 static void
8593 resolve_types (gfc_namespace *ns);
8594
8595 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8596 correct as well as possibly the array-spec. */
8597
8598 static void
8599 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8600 {
8601 gfc_expr* target;
8602
8603 gcc_assert (sym->assoc);
8604 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8605
8606 /* If this is for SELECT TYPE, the target may not yet be set. In that
8607 case, return. Resolution will be called later manually again when
8608 this is done. */
8609 target = sym->assoc->target;
8610 if (!target)
8611 return;
8612 gcc_assert (!sym->assoc->dangling);
8613
8614 if (resolve_target && !gfc_resolve_expr (target))
8615 return;
8616
8617 /* For variable targets, we get some attributes from the target. */
8618 if (target->expr_type == EXPR_VARIABLE)
8619 {
8620 gfc_symbol* tsym;
8621
8622 gcc_assert (target->symtree);
8623 tsym = target->symtree->n.sym;
8624
8625 sym->attr.asynchronous = tsym->attr.asynchronous;
8626 sym->attr.volatile_ = tsym->attr.volatile_;
8627
8628 sym->attr.target = tsym->attr.target
8629 || gfc_expr_attr (target).pointer;
8630 if (is_subref_array (target))
8631 sym->attr.subref_array_pointer = 1;
8632 }
8633
8634 if (target->expr_type == EXPR_NULL)
8635 {
8636 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8637 return;
8638 }
8639 else if (target->ts.type == BT_UNKNOWN)
8640 {
8641 gfc_error ("Selector at %L has no type", &target->where);
8642 return;
8643 }
8644
8645 /* Get type if this was not already set. Note that it can be
8646 some other type than the target in case this is a SELECT TYPE
8647 selector! So we must not update when the type is already there. */
8648 if (sym->ts.type == BT_UNKNOWN)
8649 sym->ts = target->ts;
8650
8651 gcc_assert (sym->ts.type != BT_UNKNOWN);
8652
8653 /* See if this is a valid association-to-variable. */
8654 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8655 && !gfc_has_vector_subscript (target));
8656
8657 /* Finally resolve if this is an array or not. */
8658 if (sym->attr.dimension && target->rank == 0)
8659 {
8660 /* primary.c makes the assumption that a reference to an associate
8661 name followed by a left parenthesis is an array reference. */
8662 if (sym->ts.type != BT_CHARACTER)
8663 gfc_error ("Associate-name %qs at %L is used as array",
8664 sym->name, &sym->declared_at);
8665 sym->attr.dimension = 0;
8666 return;
8667 }
8668
8669
8670 /* We cannot deal with class selectors that need temporaries. */
8671 if (target->ts.type == BT_CLASS
8672 && gfc_ref_needs_temporary_p (target->ref))
8673 {
8674 gfc_error ("CLASS selector at %L needs a temporary which is not "
8675 "yet implemented", &target->where);
8676 return;
8677 }
8678
8679 if (target->ts.type == BT_CLASS)
8680 gfc_fix_class_refs (target);
8681
8682 if (target->rank != 0)
8683 {
8684 gfc_array_spec *as;
8685 /* The rank may be incorrectly guessed at parsing, therefore make sure
8686 it is corrected now. */
8687 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8688 {
8689 if (!sym->as)
8690 sym->as = gfc_get_array_spec ();
8691 as = sym->as;
8692 as->rank = target->rank;
8693 as->type = AS_DEFERRED;
8694 as->corank = gfc_get_corank (target);
8695 sym->attr.dimension = 1;
8696 if (as->corank != 0)
8697 sym->attr.codimension = 1;
8698 }
8699 else if (sym->ts.type == BT_CLASS && (!CLASS_DATA (sym)->as || sym->assoc->rankguessed))
8700 {
8701 if (!CLASS_DATA (sym)->as)
8702 CLASS_DATA (sym)->as = gfc_get_array_spec ();
8703 as = CLASS_DATA (sym)->as;
8704 as->rank = target->rank;
8705 as->type = AS_DEFERRED;
8706 as->corank = gfc_get_corank (target);
8707 CLASS_DATA (sym)->attr.dimension = 1;
8708 if (as->corank != 0)
8709 CLASS_DATA (sym)->attr.codimension = 1;
8710 }
8711 }
8712 else
8713 {
8714 /* target's rank is 0, but the type of the sym is still array valued,
8715 which has to be corrected. */
8716 if (sym->ts.type == BT_CLASS
8717 && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
8718 {
8719 gfc_array_spec *as;
8720 symbol_attribute attr;
8721 /* The associated variable's type is still the array type
8722 correct this now. */
8723 gfc_typespec *ts = &target->ts;
8724 gfc_ref *ref;
8725 gfc_component *c;
8726 for (ref = target->ref; ref != NULL; ref = ref->next)
8727 {
8728 switch (ref->type)
8729 {
8730 case REF_COMPONENT:
8731 ts = &ref->u.c.component->ts;
8732 break;
8733 case REF_ARRAY:
8734 if (ts->type == BT_CLASS)
8735 ts = &ts->u.derived->components->ts;
8736 break;
8737 default:
8738 break;
8739 }
8740 }
8741 /* Create a scalar instance of the current class type. Because the
8742 rank of a class array goes into its name, the type has to be
8743 rebuild. The alternative of (re-)setting just the attributes
8744 and as in the current type, destroys the type also in other
8745 places. */
8746 as = NULL;
8747 sym->ts = *ts;
8748 sym->ts.type = BT_CLASS;
8749 attr = CLASS_DATA (sym)->attr;
8750 attr.class_ok = 0;
8751 attr.associate_var = 1;
8752 attr.dimension = attr.codimension = 0;
8753 attr.class_pointer = 1;
8754 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
8755 gcc_unreachable ();
8756 /* Make sure the _vptr is set. */
8757 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
8758 if (c->ts.u.derived == NULL)
8759 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
8760 CLASS_DATA (sym)->attr.pointer = 1;
8761 CLASS_DATA (sym)->attr.class_pointer = 1;
8762 gfc_set_sym_referenced (sym->ts.u.derived);
8763 gfc_commit_symbol (sym->ts.u.derived);
8764 /* _vptr now has the _vtab in it, change it to the _vtype. */
8765 if (c->ts.u.derived->attr.vtab)
8766 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
8767 c->ts.u.derived->ns->types_resolved = 0;
8768 resolve_types (c->ts.u.derived->ns);
8769 }
8770 }
8771
8772 /* Mark this as an associate variable. */
8773 sym->attr.associate_var = 1;
8774
8775 /* Fix up the type-spec for CHARACTER types. */
8776 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
8777 {
8778 if (!sym->ts.u.cl)
8779 sym->ts.u.cl = target->ts.u.cl;
8780
8781 if (sym->ts.deferred && target->expr_type == EXPR_VARIABLE
8782 && target->symtree->n.sym->attr.dummy
8783 && sym->ts.u.cl == target->ts.u.cl)
8784 {
8785 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
8786 sym->ts.deferred = 1;
8787 }
8788
8789 if (!sym->ts.u.cl->length
8790 && !sym->ts.deferred
8791 && target->expr_type == EXPR_CONSTANT)
8792 {
8793 sym->ts.u.cl->length =
8794 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
8795 target->value.character.length);
8796 }
8797 else if ((!sym->ts.u.cl->length
8798 || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
8799 && target->expr_type != EXPR_VARIABLE)
8800 {
8801 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
8802 sym->ts.deferred = 1;
8803
8804 /* This is reset in trans-stmt.c after the assignment
8805 of the target expression to the associate name. */
8806 sym->attr.allocatable = 1;
8807 }
8808 }
8809
8810 /* If the target is a good class object, so is the associate variable. */
8811 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
8812 sym->attr.class_ok = 1;
8813 }
8814
8815
8816 /* Ensure that SELECT TYPE expressions have the correct rank and a full
8817 array reference, where necessary. The symbols are artificial and so
8818 the dimension attribute and arrayspec can also be set. In addition,
8819 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
8820 This is corrected here as well.*/
8821
8822 static void
8823 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
8824 int rank, gfc_ref *ref)
8825 {
8826 gfc_ref *nref = (*expr1)->ref;
8827 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
8828 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
8829 (*expr1)->rank = rank;
8830 if (sym1->ts.type == BT_CLASS)
8831 {
8832 if ((*expr1)->ts.type != BT_CLASS)
8833 (*expr1)->ts = sym1->ts;
8834
8835 CLASS_DATA (sym1)->attr.dimension = 1;
8836 if (CLASS_DATA (sym1)->as == NULL && sym2)
8837 CLASS_DATA (sym1)->as
8838 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
8839 }
8840 else
8841 {
8842 sym1->attr.dimension = 1;
8843 if (sym1->as == NULL && sym2)
8844 sym1->as = gfc_copy_array_spec (sym2->as);
8845 }
8846
8847 for (; nref; nref = nref->next)
8848 if (nref->next == NULL)
8849 break;
8850
8851 if (ref && nref && nref->type != REF_ARRAY)
8852 nref->next = gfc_copy_ref (ref);
8853 else if (ref && !nref)
8854 (*expr1)->ref = gfc_copy_ref (ref);
8855 }
8856
8857
8858 static gfc_expr *
8859 build_loc_call (gfc_expr *sym_expr)
8860 {
8861 gfc_expr *loc_call;
8862 loc_call = gfc_get_expr ();
8863 loc_call->expr_type = EXPR_FUNCTION;
8864 gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
8865 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
8866 loc_call->symtree->n.sym->attr.intrinsic = 1;
8867 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
8868 gfc_commit_symbol (loc_call->symtree->n.sym);
8869 loc_call->ts.type = BT_INTEGER;
8870 loc_call->ts.kind = gfc_index_integer_kind;
8871 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
8872 loc_call->value.function.actual = gfc_get_actual_arglist ();
8873 loc_call->value.function.actual->expr = sym_expr;
8874 loc_call->where = sym_expr->where;
8875 return loc_call;
8876 }
8877
8878 /* Resolve a SELECT TYPE statement. */
8879
8880 static void
8881 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
8882 {
8883 gfc_symbol *selector_type;
8884 gfc_code *body, *new_st, *if_st, *tail;
8885 gfc_code *class_is = NULL, *default_case = NULL;
8886 gfc_case *c;
8887 gfc_symtree *st;
8888 char name[GFC_MAX_SYMBOL_LEN];
8889 gfc_namespace *ns;
8890 int error = 0;
8891 int rank = 0;
8892 gfc_ref* ref = NULL;
8893 gfc_expr *selector_expr = NULL;
8894
8895 ns = code->ext.block.ns;
8896 gfc_resolve (ns);
8897
8898 /* Check for F03:C813. */
8899 if (code->expr1->ts.type != BT_CLASS
8900 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
8901 {
8902 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
8903 "at %L", &code->loc);
8904 return;
8905 }
8906
8907 if (!code->expr1->symtree->n.sym->attr.class_ok)
8908 return;
8909
8910 if (code->expr2)
8911 {
8912 gfc_ref *ref2 = NULL;
8913 for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
8914 if (ref->type == REF_COMPONENT
8915 && ref->u.c.component->ts.type == BT_CLASS)
8916 ref2 = ref;
8917
8918 if (ref2)
8919 {
8920 if (code->expr1->symtree->n.sym->attr.untyped)
8921 code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
8922 selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
8923 }
8924 else
8925 {
8926 if (code->expr1->symtree->n.sym->attr.untyped)
8927 code->expr1->symtree->n.sym->ts = code->expr2->ts;
8928 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
8929 }
8930
8931 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
8932 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
8933
8934 /* F2008: C803 The selector expression must not be coindexed. */
8935 if (gfc_is_coindexed (code->expr2))
8936 {
8937 gfc_error ("Selector at %L must not be coindexed",
8938 &code->expr2->where);
8939 return;
8940 }
8941
8942 }
8943 else
8944 {
8945 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
8946
8947 if (gfc_is_coindexed (code->expr1))
8948 {
8949 gfc_error ("Selector at %L must not be coindexed",
8950 &code->expr1->where);
8951 return;
8952 }
8953 }
8954
8955 /* Loop over TYPE IS / CLASS IS cases. */
8956 for (body = code->block; body; body = body->block)
8957 {
8958 c = body->ext.block.case_list;
8959
8960 if (!error)
8961 {
8962 /* Check for repeated cases. */
8963 for (tail = code->block; tail; tail = tail->block)
8964 {
8965 gfc_case *d = tail->ext.block.case_list;
8966 if (tail == body)
8967 break;
8968
8969 if (c->ts.type == d->ts.type
8970 && ((c->ts.type == BT_DERIVED
8971 && c->ts.u.derived && d->ts.u.derived
8972 && !strcmp (c->ts.u.derived->name,
8973 d->ts.u.derived->name))
8974 || c->ts.type == BT_UNKNOWN
8975 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8976 && c->ts.kind == d->ts.kind)))
8977 {
8978 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
8979 &c->where, &d->where);
8980 return;
8981 }
8982 }
8983 }
8984
8985 /* Check F03:C815. */
8986 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8987 && !selector_type->attr.unlimited_polymorphic
8988 && !gfc_type_is_extensible (c->ts.u.derived))
8989 {
8990 gfc_error ("Derived type %qs at %L must be extensible",
8991 c->ts.u.derived->name, &c->where);
8992 error++;
8993 continue;
8994 }
8995
8996 /* Check F03:C816. */
8997 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
8998 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
8999 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
9000 {
9001 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9002 gfc_error ("Derived type %qs at %L must be an extension of %qs",
9003 c->ts.u.derived->name, &c->where, selector_type->name);
9004 else
9005 gfc_error ("Unexpected intrinsic type %qs at %L",
9006 gfc_basic_typename (c->ts.type), &c->where);
9007 error++;
9008 continue;
9009 }
9010
9011 /* Check F03:C814. */
9012 if (c->ts.type == BT_CHARACTER
9013 && (c->ts.u.cl->length != NULL || c->ts.deferred))
9014 {
9015 gfc_error ("The type-spec at %L shall specify that each length "
9016 "type parameter is assumed", &c->where);
9017 error++;
9018 continue;
9019 }
9020
9021 /* Intercept the DEFAULT case. */
9022 if (c->ts.type == BT_UNKNOWN)
9023 {
9024 /* Check F03:C818. */
9025 if (default_case)
9026 {
9027 gfc_error ("The DEFAULT CASE at %L cannot be followed "
9028 "by a second DEFAULT CASE at %L",
9029 &default_case->ext.block.case_list->where, &c->where);
9030 error++;
9031 continue;
9032 }
9033
9034 default_case = body;
9035 }
9036 }
9037
9038 if (error > 0)
9039 return;
9040
9041 /* Transform SELECT TYPE statement to BLOCK and associate selector to
9042 target if present. If there are any EXIT statements referring to the
9043 SELECT TYPE construct, this is no problem because the gfc_code
9044 reference stays the same and EXIT is equally possible from the BLOCK
9045 it is changed to. */
9046 code->op = EXEC_BLOCK;
9047 if (code->expr2)
9048 {
9049 gfc_association_list* assoc;
9050
9051 assoc = gfc_get_association_list ();
9052 assoc->st = code->expr1->symtree;
9053 assoc->target = gfc_copy_expr (code->expr2);
9054 assoc->target->where = code->expr2->where;
9055 /* assoc->variable will be set by resolve_assoc_var. */
9056
9057 code->ext.block.assoc = assoc;
9058 code->expr1->symtree->n.sym->assoc = assoc;
9059
9060 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9061 }
9062 else
9063 code->ext.block.assoc = NULL;
9064
9065 /* Ensure that the selector rank and arrayspec are available to
9066 correct expressions in which they might be missing. */
9067 if (code->expr2 && code->expr2->rank)
9068 {
9069 rank = code->expr2->rank;
9070 for (ref = code->expr2->ref; ref; ref = ref->next)
9071 if (ref->next == NULL)
9072 break;
9073 if (ref && ref->type == REF_ARRAY)
9074 ref = gfc_copy_ref (ref);
9075
9076 /* Fixup expr1 if necessary. */
9077 if (rank)
9078 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
9079 }
9080 else if (code->expr1->rank)
9081 {
9082 rank = code->expr1->rank;
9083 for (ref = code->expr1->ref; ref; ref = ref->next)
9084 if (ref->next == NULL)
9085 break;
9086 if (ref && ref->type == REF_ARRAY)
9087 ref = gfc_copy_ref (ref);
9088 }
9089
9090 /* Add EXEC_SELECT to switch on type. */
9091 new_st = gfc_get_code (code->op);
9092 new_st->expr1 = code->expr1;
9093 new_st->expr2 = code->expr2;
9094 new_st->block = code->block;
9095 code->expr1 = code->expr2 = NULL;
9096 code->block = NULL;
9097 if (!ns->code)
9098 ns->code = new_st;
9099 else
9100 ns->code->next = new_st;
9101 code = new_st;
9102 code->op = EXEC_SELECT_TYPE;
9103
9104 /* Use the intrinsic LOC function to generate an integer expression
9105 for the vtable of the selector. Note that the rank of the selector
9106 expression has to be set to zero. */
9107 gfc_add_vptr_component (code->expr1);
9108 code->expr1->rank = 0;
9109 code->expr1 = build_loc_call (code->expr1);
9110 selector_expr = code->expr1->value.function.actual->expr;
9111
9112 /* Loop over TYPE IS / CLASS IS cases. */
9113 for (body = code->block; body; body = body->block)
9114 {
9115 gfc_symbol *vtab;
9116 gfc_expr *e;
9117 c = body->ext.block.case_list;
9118
9119 /* Generate an index integer expression for address of the
9120 TYPE/CLASS vtable and store it in c->low. The hash expression
9121 is stored in c->high and is used to resolve intrinsic cases. */
9122 if (c->ts.type != BT_UNKNOWN)
9123 {
9124 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9125 {
9126 vtab = gfc_find_derived_vtab (c->ts.u.derived);
9127 gcc_assert (vtab);
9128 c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
9129 c->ts.u.derived->hash_value);
9130 }
9131 else
9132 {
9133 vtab = gfc_find_vtab (&c->ts);
9134 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
9135 e = CLASS_DATA (vtab)->initializer;
9136 c->high = gfc_copy_expr (e);
9137 if (c->high->ts.kind != gfc_integer_4_kind)
9138 {
9139 gfc_typespec ts;
9140 ts.kind = gfc_integer_4_kind;
9141 ts.type = BT_INTEGER;
9142 gfc_convert_type_warn (c->high, &ts, 2, 0);
9143 }
9144 }
9145
9146 e = gfc_lval_expr_from_sym (vtab);
9147 c->low = build_loc_call (e);
9148 }
9149 else
9150 continue;
9151
9152 /* Associate temporary to selector. This should only be done
9153 when this case is actually true, so build a new ASSOCIATE
9154 that does precisely this here (instead of using the
9155 'global' one). */
9156
9157 if (c->ts.type == BT_CLASS)
9158 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
9159 else if (c->ts.type == BT_DERIVED)
9160 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
9161 else if (c->ts.type == BT_CHARACTER)
9162 {
9163 HOST_WIDE_INT charlen = 0;
9164 if (c->ts.u.cl && c->ts.u.cl->length
9165 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9166 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9167 snprintf (name, sizeof (name),
9168 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9169 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9170 }
9171 else
9172 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9173 c->ts.kind);
9174
9175 st = gfc_find_symtree (ns->sym_root, name);
9176 gcc_assert (st->n.sym->assoc);
9177 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9178 st->n.sym->assoc->target->where = selector_expr->where;
9179 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9180 {
9181 gfc_add_data_component (st->n.sym->assoc->target);
9182 /* Fixup the target expression if necessary. */
9183 if (rank)
9184 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9185 }
9186
9187 new_st = gfc_get_code (EXEC_BLOCK);
9188 new_st->ext.block.ns = gfc_build_block_ns (ns);
9189 new_st->ext.block.ns->code = body->next;
9190 body->next = new_st;
9191
9192 /* Chain in the new list only if it is marked as dangling. Otherwise
9193 there is a CASE label overlap and this is already used. Just ignore,
9194 the error is diagnosed elsewhere. */
9195 if (st->n.sym->assoc->dangling)
9196 {
9197 new_st->ext.block.assoc = st->n.sym->assoc;
9198 st->n.sym->assoc->dangling = 0;
9199 }
9200
9201 resolve_assoc_var (st->n.sym, false);
9202 }
9203
9204 /* Take out CLASS IS cases for separate treatment. */
9205 body = code;
9206 while (body && body->block)
9207 {
9208 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9209 {
9210 /* Add to class_is list. */
9211 if (class_is == NULL)
9212 {
9213 class_is = body->block;
9214 tail = class_is;
9215 }
9216 else
9217 {
9218 for (tail = class_is; tail->block; tail = tail->block) ;
9219 tail->block = body->block;
9220 tail = tail->block;
9221 }
9222 /* Remove from EXEC_SELECT list. */
9223 body->block = body->block->block;
9224 tail->block = NULL;
9225 }
9226 else
9227 body = body->block;
9228 }
9229
9230 if (class_is)
9231 {
9232 gfc_symbol *vtab;
9233
9234 if (!default_case)
9235 {
9236 /* Add a default case to hold the CLASS IS cases. */
9237 for (tail = code; tail->block; tail = tail->block) ;
9238 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9239 tail = tail->block;
9240 tail->ext.block.case_list = gfc_get_case ();
9241 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9242 tail->next = NULL;
9243 default_case = tail;
9244 }
9245
9246 /* More than one CLASS IS block? */
9247 if (class_is->block)
9248 {
9249 gfc_code **c1,*c2;
9250 bool swapped;
9251 /* Sort CLASS IS blocks by extension level. */
9252 do
9253 {
9254 swapped = false;
9255 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9256 {
9257 c2 = (*c1)->block;
9258 /* F03:C817 (check for doubles). */
9259 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9260 == c2->ext.block.case_list->ts.u.derived->hash_value)
9261 {
9262 gfc_error ("Double CLASS IS block in SELECT TYPE "
9263 "statement at %L",
9264 &c2->ext.block.case_list->where);
9265 return;
9266 }
9267 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9268 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9269 {
9270 /* Swap. */
9271 (*c1)->block = c2->block;
9272 c2->block = *c1;
9273 *c1 = c2;
9274 swapped = true;
9275 }
9276 }
9277 }
9278 while (swapped);
9279 }
9280
9281 /* Generate IF chain. */
9282 if_st = gfc_get_code (EXEC_IF);
9283 new_st = if_st;
9284 for (body = class_is; body; body = body->block)
9285 {
9286 new_st->block = gfc_get_code (EXEC_IF);
9287 new_st = new_st->block;
9288 /* Set up IF condition: Call _gfortran_is_extension_of. */
9289 new_st->expr1 = gfc_get_expr ();
9290 new_st->expr1->expr_type = EXPR_FUNCTION;
9291 new_st->expr1->ts.type = BT_LOGICAL;
9292 new_st->expr1->ts.kind = 4;
9293 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9294 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9295 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9296 /* Set up arguments. */
9297 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9298 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9299 new_st->expr1->value.function.actual->expr->where = code->loc;
9300 new_st->expr1->where = code->loc;
9301 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9302 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9303 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9304 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9305 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9306 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9307 new_st->next = body->next;
9308 }
9309 if (default_case->next)
9310 {
9311 new_st->block = gfc_get_code (EXEC_IF);
9312 new_st = new_st->block;
9313 new_st->next = default_case->next;
9314 }
9315
9316 /* Replace CLASS DEFAULT code by the IF chain. */
9317 default_case->next = if_st;
9318 }
9319
9320 /* Resolve the internal code. This cannot be done earlier because
9321 it requires that the sym->assoc of selectors is set already. */
9322 gfc_current_ns = ns;
9323 gfc_resolve_blocks (code->block, gfc_current_ns);
9324 gfc_current_ns = old_ns;
9325
9326 if (ref)
9327 free (ref);
9328 }
9329
9330
9331 /* Resolve a transfer statement. This is making sure that:
9332 -- a derived type being transferred has only non-pointer components
9333 -- a derived type being transferred doesn't have private components, unless
9334 it's being transferred from the module where the type was defined
9335 -- we're not trying to transfer a whole assumed size array. */
9336
9337 static void
9338 resolve_transfer (gfc_code *code)
9339 {
9340 gfc_symbol *sym, *derived;
9341 gfc_ref *ref;
9342 gfc_expr *exp;
9343 bool write = false;
9344 bool formatted = false;
9345 gfc_dt *dt = code->ext.dt;
9346 gfc_symbol *dtio_sub = NULL;
9347
9348 exp = code->expr1;
9349
9350 while (exp != NULL && exp->expr_type == EXPR_OP
9351 && exp->value.op.op == INTRINSIC_PARENTHESES)
9352 exp = exp->value.op.op1;
9353
9354 if (exp && exp->expr_type == EXPR_NULL
9355 && code->ext.dt)
9356 {
9357 gfc_error ("Invalid context for NULL () intrinsic at %L",
9358 &exp->where);
9359 return;
9360 }
9361
9362 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9363 && exp->expr_type != EXPR_FUNCTION
9364 && exp->expr_type != EXPR_STRUCTURE))
9365 return;
9366
9367 /* If we are reading, the variable will be changed. Note that
9368 code->ext.dt may be NULL if the TRANSFER is related to
9369 an INQUIRE statement -- but in this case, we are not reading, either. */
9370 if (dt && dt->dt_io_kind->value.iokind == M_READ
9371 && !gfc_check_vardef_context (exp, false, false, false,
9372 _("item in READ")))
9373 return;
9374
9375 const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
9376 || exp->expr_type == EXPR_FUNCTION
9377 ? &exp->ts : &exp->symtree->n.sym->ts;
9378
9379 /* Go to actual component transferred. */
9380 for (ref = exp->ref; ref; ref = ref->next)
9381 if (ref->type == REF_COMPONENT)
9382 ts = &ref->u.c.component->ts;
9383
9384 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9385 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9386 {
9387 derived = ts->u.derived;
9388
9389 /* Determine when to use the formatted DTIO procedure. */
9390 if (dt && (dt->format_expr || dt->format_label))
9391 formatted = true;
9392
9393 write = dt->dt_io_kind->value.iokind == M_WRITE
9394 || dt->dt_io_kind->value.iokind == M_PRINT;
9395 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9396
9397 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9398 {
9399 dt->udtio = exp;
9400 sym = exp->symtree->n.sym->ns->proc_name;
9401 /* Check to see if this is a nested DTIO call, with the
9402 dummy as the io-list object. */
9403 if (sym && sym == dtio_sub && sym->formal
9404 && sym->formal->sym == exp->symtree->n.sym
9405 && exp->ref == NULL)
9406 {
9407 if (!sym->attr.recursive)
9408 {
9409 gfc_error ("DTIO %s procedure at %L must be recursive",
9410 sym->name, &sym->declared_at);
9411 return;
9412 }
9413 }
9414 }
9415 }
9416
9417 if (ts->type == BT_CLASS && dtio_sub == NULL)
9418 {
9419 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9420 "it is processed by a defined input/output procedure",
9421 &code->loc);
9422 return;
9423 }
9424
9425 if (ts->type == BT_DERIVED)
9426 {
9427 /* Check that transferred derived type doesn't contain POINTER
9428 components unless it is processed by a defined input/output
9429 procedure". */
9430 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9431 {
9432 gfc_error ("Data transfer element at %L cannot have POINTER "
9433 "components unless it is processed by a defined "
9434 "input/output procedure", &code->loc);
9435 return;
9436 }
9437
9438 /* F08:C935. */
9439 if (ts->u.derived->attr.proc_pointer_comp)
9440 {
9441 gfc_error ("Data transfer element at %L cannot have "
9442 "procedure pointer components", &code->loc);
9443 return;
9444 }
9445
9446 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9447 {
9448 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9449 "components unless it is processed by a defined "
9450 "input/output procedure", &code->loc);
9451 return;
9452 }
9453
9454 /* C_PTR and C_FUNPTR have private components which means they cannot
9455 be printed. However, if -std=gnu and not -pedantic, allow
9456 the component to be printed to help debugging. */
9457 if (ts->u.derived->ts.f90_type == BT_VOID)
9458 {
9459 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9460 "cannot have PRIVATE components", &code->loc))
9461 return;
9462 }
9463 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9464 {
9465 gfc_error ("Data transfer element at %L cannot have "
9466 "PRIVATE components unless it is processed by "
9467 "a defined input/output procedure", &code->loc);
9468 return;
9469 }
9470 }
9471
9472 if (exp->expr_type == EXPR_STRUCTURE)
9473 return;
9474
9475 sym = exp->symtree->n.sym;
9476
9477 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9478 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9479 {
9480 gfc_error ("Data transfer element at %L cannot be a full reference to "
9481 "an assumed-size array", &code->loc);
9482 return;
9483 }
9484
9485 if (async_io_dt && exp->expr_type == EXPR_VARIABLE)
9486 exp->symtree->n.sym->attr.asynchronous = 1;
9487 }
9488
9489
9490 /*********** Toplevel code resolution subroutines ***********/
9491
9492 /* Find the set of labels that are reachable from this block. We also
9493 record the last statement in each block. */
9494
9495 static void
9496 find_reachable_labels (gfc_code *block)
9497 {
9498 gfc_code *c;
9499
9500 if (!block)
9501 return;
9502
9503 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9504
9505 /* Collect labels in this block. We don't keep those corresponding
9506 to END {IF|SELECT}, these are checked in resolve_branch by going
9507 up through the code_stack. */
9508 for (c = block; c; c = c->next)
9509 {
9510 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9511 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9512 }
9513
9514 /* Merge with labels from parent block. */
9515 if (cs_base->prev)
9516 {
9517 gcc_assert (cs_base->prev->reachable_labels);
9518 bitmap_ior_into (cs_base->reachable_labels,
9519 cs_base->prev->reachable_labels);
9520 }
9521 }
9522
9523
9524 static void
9525 resolve_lock_unlock_event (gfc_code *code)
9526 {
9527 if (code->expr1->expr_type == EXPR_FUNCTION
9528 && code->expr1->value.function.isym
9529 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9530 remove_caf_get_intrinsic (code->expr1);
9531
9532 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9533 && (code->expr1->ts.type != BT_DERIVED
9534 || code->expr1->expr_type != EXPR_VARIABLE
9535 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
9536 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
9537 || code->expr1->rank != 0
9538 || (!gfc_is_coarray (code->expr1) &&
9539 !gfc_is_coindexed (code->expr1))))
9540 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9541 &code->expr1->where);
9542 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
9543 && (code->expr1->ts.type != BT_DERIVED
9544 || code->expr1->expr_type != EXPR_VARIABLE
9545 || code->expr1->ts.u.derived->from_intmod
9546 != INTMOD_ISO_FORTRAN_ENV
9547 || code->expr1->ts.u.derived->intmod_sym_id
9548 != ISOFORTRAN_EVENT_TYPE
9549 || code->expr1->rank != 0))
9550 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9551 &code->expr1->where);
9552 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
9553 && !gfc_is_coindexed (code->expr1))
9554 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9555 &code->expr1->where);
9556 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
9557 gfc_error ("Event variable argument at %L must be a coarray but not "
9558 "coindexed", &code->expr1->where);
9559
9560 /* Check STAT. */
9561 if (code->expr2
9562 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9563 || code->expr2->expr_type != EXPR_VARIABLE))
9564 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9565 &code->expr2->where);
9566
9567 if (code->expr2
9568 && !gfc_check_vardef_context (code->expr2, false, false, false,
9569 _("STAT variable")))
9570 return;
9571
9572 /* Check ERRMSG. */
9573 if (code->expr3
9574 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9575 || code->expr3->expr_type != EXPR_VARIABLE))
9576 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9577 &code->expr3->where);
9578
9579 if (code->expr3
9580 && !gfc_check_vardef_context (code->expr3, false, false, false,
9581 _("ERRMSG variable")))
9582 return;
9583
9584 /* Check for LOCK the ACQUIRED_LOCK. */
9585 if (code->op != EXEC_EVENT_WAIT && code->expr4
9586 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
9587 || code->expr4->expr_type != EXPR_VARIABLE))
9588 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
9589 "variable", &code->expr4->where);
9590
9591 if (code->op != EXEC_EVENT_WAIT && code->expr4
9592 && !gfc_check_vardef_context (code->expr4, false, false, false,
9593 _("ACQUIRED_LOCK variable")))
9594 return;
9595
9596 /* Check for EVENT WAIT the UNTIL_COUNT. */
9597 if (code->op == EXEC_EVENT_WAIT && code->expr4)
9598 {
9599 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
9600 || code->expr4->rank != 0)
9601 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
9602 "expression", &code->expr4->where);
9603 }
9604 }
9605
9606
9607 static void
9608 resolve_critical (gfc_code *code)
9609 {
9610 gfc_symtree *symtree;
9611 gfc_symbol *lock_type;
9612 char name[GFC_MAX_SYMBOL_LEN];
9613 static int serial = 0;
9614
9615 if (flag_coarray != GFC_FCOARRAY_LIB)
9616 return;
9617
9618 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
9619 GFC_PREFIX ("lock_type"));
9620 if (symtree)
9621 lock_type = symtree->n.sym;
9622 else
9623 {
9624 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
9625 false) != 0)
9626 gcc_unreachable ();
9627 lock_type = symtree->n.sym;
9628 lock_type->attr.flavor = FL_DERIVED;
9629 lock_type->attr.zero_comp = 1;
9630 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
9631 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
9632 }
9633
9634 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
9635 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
9636 gcc_unreachable ();
9637
9638 code->resolved_sym = symtree->n.sym;
9639 symtree->n.sym->attr.flavor = FL_VARIABLE;
9640 symtree->n.sym->attr.referenced = 1;
9641 symtree->n.sym->attr.artificial = 1;
9642 symtree->n.sym->attr.codimension = 1;
9643 symtree->n.sym->ts.type = BT_DERIVED;
9644 symtree->n.sym->ts.u.derived = lock_type;
9645 symtree->n.sym->as = gfc_get_array_spec ();
9646 symtree->n.sym->as->corank = 1;
9647 symtree->n.sym->as->type = AS_EXPLICIT;
9648 symtree->n.sym->as->cotype = AS_EXPLICIT;
9649 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
9650 NULL, 1);
9651 gfc_commit_symbols();
9652 }
9653
9654
9655 static void
9656 resolve_sync (gfc_code *code)
9657 {
9658 /* Check imageset. The * case matches expr1 == NULL. */
9659 if (code->expr1)
9660 {
9661 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
9662 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
9663 "INTEGER expression", &code->expr1->where);
9664 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
9665 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
9666 gfc_error ("Imageset argument at %L must between 1 and num_images()",
9667 &code->expr1->where);
9668 else if (code->expr1->expr_type == EXPR_ARRAY
9669 && gfc_simplify_expr (code->expr1, 0))
9670 {
9671 gfc_constructor *cons;
9672 cons = gfc_constructor_first (code->expr1->value.constructor);
9673 for (; cons; cons = gfc_constructor_next (cons))
9674 if (cons->expr->expr_type == EXPR_CONSTANT
9675 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
9676 gfc_error ("Imageset argument at %L must between 1 and "
9677 "num_images()", &cons->expr->where);
9678 }
9679 }
9680
9681 /* Check STAT. */
9682 gfc_resolve_expr (code->expr2);
9683 if (code->expr2
9684 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9685 || code->expr2->expr_type != EXPR_VARIABLE))
9686 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9687 &code->expr2->where);
9688
9689 /* Check ERRMSG. */
9690 gfc_resolve_expr (code->expr3);
9691 if (code->expr3
9692 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9693 || code->expr3->expr_type != EXPR_VARIABLE))
9694 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9695 &code->expr3->where);
9696 }
9697
9698
9699 /* Given a branch to a label, see if the branch is conforming.
9700 The code node describes where the branch is located. */
9701
9702 static void
9703 resolve_branch (gfc_st_label *label, gfc_code *code)
9704 {
9705 code_stack *stack;
9706
9707 if (label == NULL)
9708 return;
9709
9710 /* Step one: is this a valid branching target? */
9711
9712 if (label->defined == ST_LABEL_UNKNOWN)
9713 {
9714 gfc_error ("Label %d referenced at %L is never defined", label->value,
9715 &code->loc);
9716 return;
9717 }
9718
9719 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
9720 {
9721 gfc_error ("Statement at %L is not a valid branch target statement "
9722 "for the branch statement at %L", &label->where, &code->loc);
9723 return;
9724 }
9725
9726 /* Step two: make sure this branch is not a branch to itself ;-) */
9727
9728 if (code->here == label)
9729 {
9730 gfc_warning (0,
9731 "Branch at %L may result in an infinite loop", &code->loc);
9732 return;
9733 }
9734
9735 /* Step three: See if the label is in the same block as the
9736 branching statement. The hard work has been done by setting up
9737 the bitmap reachable_labels. */
9738
9739 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
9740 {
9741 /* Check now whether there is a CRITICAL construct; if so, check
9742 whether the label is still visible outside of the CRITICAL block,
9743 which is invalid. */
9744 for (stack = cs_base; stack; stack = stack->prev)
9745 {
9746 if (stack->current->op == EXEC_CRITICAL
9747 && bitmap_bit_p (stack->reachable_labels, label->value))
9748 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
9749 "label at %L", &code->loc, &label->where);
9750 else if (stack->current->op == EXEC_DO_CONCURRENT
9751 && bitmap_bit_p (stack->reachable_labels, label->value))
9752 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
9753 "for label at %L", &code->loc, &label->where);
9754 }
9755
9756 return;
9757 }
9758
9759 /* Step four: If we haven't found the label in the bitmap, it may
9760 still be the label of the END of the enclosing block, in which
9761 case we find it by going up the code_stack. */
9762
9763 for (stack = cs_base; stack; stack = stack->prev)
9764 {
9765 if (stack->current->next && stack->current->next->here == label)
9766 break;
9767 if (stack->current->op == EXEC_CRITICAL)
9768 {
9769 /* Note: A label at END CRITICAL does not leave the CRITICAL
9770 construct as END CRITICAL is still part of it. */
9771 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
9772 " at %L", &code->loc, &label->where);
9773 return;
9774 }
9775 else if (stack->current->op == EXEC_DO_CONCURRENT)
9776 {
9777 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
9778 "label at %L", &code->loc, &label->where);
9779 return;
9780 }
9781 }
9782
9783 if (stack)
9784 {
9785 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
9786 return;
9787 }
9788
9789 /* The label is not in an enclosing block, so illegal. This was
9790 allowed in Fortran 66, so we allow it as extension. No
9791 further checks are necessary in this case. */
9792 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
9793 "as the GOTO statement at %L", &label->where,
9794 &code->loc);
9795 return;
9796 }
9797
9798
9799 /* Check whether EXPR1 has the same shape as EXPR2. */
9800
9801 static bool
9802 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
9803 {
9804 mpz_t shape[GFC_MAX_DIMENSIONS];
9805 mpz_t shape2[GFC_MAX_DIMENSIONS];
9806 bool result = false;
9807 int i;
9808
9809 /* Compare the rank. */
9810 if (expr1->rank != expr2->rank)
9811 return result;
9812
9813 /* Compare the size of each dimension. */
9814 for (i=0; i<expr1->rank; i++)
9815 {
9816 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
9817 goto ignore;
9818
9819 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
9820 goto ignore;
9821
9822 if (mpz_cmp (shape[i], shape2[i]))
9823 goto over;
9824 }
9825
9826 /* When either of the two expression is an assumed size array, we
9827 ignore the comparison of dimension sizes. */
9828 ignore:
9829 result = true;
9830
9831 over:
9832 gfc_clear_shape (shape, i);
9833 gfc_clear_shape (shape2, i);
9834 return result;
9835 }
9836
9837
9838 /* Check whether a WHERE assignment target or a WHERE mask expression
9839 has the same shape as the outmost WHERE mask expression. */
9840
9841 static void
9842 resolve_where (gfc_code *code, gfc_expr *mask)
9843 {
9844 gfc_code *cblock;
9845 gfc_code *cnext;
9846 gfc_expr *e = NULL;
9847
9848 cblock = code->block;
9849
9850 /* Store the first WHERE mask-expr of the WHERE statement or construct.
9851 In case of nested WHERE, only the outmost one is stored. */
9852 if (mask == NULL) /* outmost WHERE */
9853 e = cblock->expr1;
9854 else /* inner WHERE */
9855 e = mask;
9856
9857 while (cblock)
9858 {
9859 if (cblock->expr1)
9860 {
9861 /* Check if the mask-expr has a consistent shape with the
9862 outmost WHERE mask-expr. */
9863 if (!resolve_where_shape (cblock->expr1, e))
9864 gfc_error ("WHERE mask at %L has inconsistent shape",
9865 &cblock->expr1->where);
9866 }
9867
9868 /* the assignment statement of a WHERE statement, or the first
9869 statement in where-body-construct of a WHERE construct */
9870 cnext = cblock->next;
9871 while (cnext)
9872 {
9873 switch (cnext->op)
9874 {
9875 /* WHERE assignment statement */
9876 case EXEC_ASSIGN:
9877
9878 /* Check shape consistent for WHERE assignment target. */
9879 if (e && !resolve_where_shape (cnext->expr1, e))
9880 gfc_error ("WHERE assignment target at %L has "
9881 "inconsistent shape", &cnext->expr1->where);
9882 break;
9883
9884
9885 case EXEC_ASSIGN_CALL:
9886 resolve_call (cnext);
9887 if (!cnext->resolved_sym->attr.elemental)
9888 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9889 &cnext->ext.actual->expr->where);
9890 break;
9891
9892 /* WHERE or WHERE construct is part of a where-body-construct */
9893 case EXEC_WHERE:
9894 resolve_where (cnext, e);
9895 break;
9896
9897 default:
9898 gfc_error ("Unsupported statement inside WHERE at %L",
9899 &cnext->loc);
9900 }
9901 /* the next statement within the same where-body-construct */
9902 cnext = cnext->next;
9903 }
9904 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9905 cblock = cblock->block;
9906 }
9907 }
9908
9909
9910 /* Resolve assignment in FORALL construct.
9911 NVAR is the number of FORALL index variables, and VAR_EXPR records the
9912 FORALL index variables. */
9913
9914 static void
9915 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
9916 {
9917 int n;
9918
9919 for (n = 0; n < nvar; n++)
9920 {
9921 gfc_symbol *forall_index;
9922
9923 forall_index = var_expr[n]->symtree->n.sym;
9924
9925 /* Check whether the assignment target is one of the FORALL index
9926 variable. */
9927 if ((code->expr1->expr_type == EXPR_VARIABLE)
9928 && (code->expr1->symtree->n.sym == forall_index))
9929 gfc_error ("Assignment to a FORALL index variable at %L",
9930 &code->expr1->where);
9931 else
9932 {
9933 /* If one of the FORALL index variables doesn't appear in the
9934 assignment variable, then there could be a many-to-one
9935 assignment. Emit a warning rather than an error because the
9936 mask could be resolving this problem. */
9937 if (!find_forall_index (code->expr1, forall_index, 0))
9938 gfc_warning (0, "The FORALL with index %qs is not used on the "
9939 "left side of the assignment at %L and so might "
9940 "cause multiple assignment to this object",
9941 var_expr[n]->symtree->name, &code->expr1->where);
9942 }
9943 }
9944 }
9945
9946
9947 /* Resolve WHERE statement in FORALL construct. */
9948
9949 static void
9950 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
9951 gfc_expr **var_expr)
9952 {
9953 gfc_code *cblock;
9954 gfc_code *cnext;
9955
9956 cblock = code->block;
9957 while (cblock)
9958 {
9959 /* the assignment statement of a WHERE statement, or the first
9960 statement in where-body-construct of a WHERE construct */
9961 cnext = cblock->next;
9962 while (cnext)
9963 {
9964 switch (cnext->op)
9965 {
9966 /* WHERE assignment statement */
9967 case EXEC_ASSIGN:
9968 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
9969 break;
9970
9971 /* WHERE operator assignment statement */
9972 case EXEC_ASSIGN_CALL:
9973 resolve_call (cnext);
9974 if (!cnext->resolved_sym->attr.elemental)
9975 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9976 &cnext->ext.actual->expr->where);
9977 break;
9978
9979 /* WHERE or WHERE construct is part of a where-body-construct */
9980 case EXEC_WHERE:
9981 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
9982 break;
9983
9984 default:
9985 gfc_error ("Unsupported statement inside WHERE at %L",
9986 &cnext->loc);
9987 }
9988 /* the next statement within the same where-body-construct */
9989 cnext = cnext->next;
9990 }
9991 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9992 cblock = cblock->block;
9993 }
9994 }
9995
9996
9997 /* Traverse the FORALL body to check whether the following errors exist:
9998 1. For assignment, check if a many-to-one assignment happens.
9999 2. For WHERE statement, check the WHERE body to see if there is any
10000 many-to-one assignment. */
10001
10002 static void
10003 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
10004 {
10005 gfc_code *c;
10006
10007 c = code->block->next;
10008 while (c)
10009 {
10010 switch (c->op)
10011 {
10012 case EXEC_ASSIGN:
10013 case EXEC_POINTER_ASSIGN:
10014 gfc_resolve_assign_in_forall (c, nvar, var_expr);
10015 break;
10016
10017 case EXEC_ASSIGN_CALL:
10018 resolve_call (c);
10019 break;
10020
10021 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
10022 there is no need to handle it here. */
10023 case EXEC_FORALL:
10024 break;
10025 case EXEC_WHERE:
10026 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
10027 break;
10028 default:
10029 break;
10030 }
10031 /* The next statement in the FORALL body. */
10032 c = c->next;
10033 }
10034 }
10035
10036
10037 /* Counts the number of iterators needed inside a forall construct, including
10038 nested forall constructs. This is used to allocate the needed memory
10039 in gfc_resolve_forall. */
10040
10041 static int
10042 gfc_count_forall_iterators (gfc_code *code)
10043 {
10044 int max_iters, sub_iters, current_iters;
10045 gfc_forall_iterator *fa;
10046
10047 gcc_assert(code->op == EXEC_FORALL);
10048 max_iters = 0;
10049 current_iters = 0;
10050
10051 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10052 current_iters ++;
10053
10054 code = code->block->next;
10055
10056 while (code)
10057 {
10058 if (code->op == EXEC_FORALL)
10059 {
10060 sub_iters = gfc_count_forall_iterators (code);
10061 if (sub_iters > max_iters)
10062 max_iters = sub_iters;
10063 }
10064 code = code->next;
10065 }
10066
10067 return current_iters + max_iters;
10068 }
10069
10070
10071 /* Given a FORALL construct, first resolve the FORALL iterator, then call
10072 gfc_resolve_forall_body to resolve the FORALL body. */
10073
10074 static void
10075 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
10076 {
10077 static gfc_expr **var_expr;
10078 static int total_var = 0;
10079 static int nvar = 0;
10080 int i, old_nvar, tmp;
10081 gfc_forall_iterator *fa;
10082
10083 old_nvar = nvar;
10084
10085 if (!gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
10086 return;
10087
10088 /* Start to resolve a FORALL construct */
10089 if (forall_save == 0)
10090 {
10091 /* Count the total number of FORALL indices in the nested FORALL
10092 construct in order to allocate the VAR_EXPR with proper size. */
10093 total_var = gfc_count_forall_iterators (code);
10094
10095 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
10096 var_expr = XCNEWVEC (gfc_expr *, total_var);
10097 }
10098
10099 /* The information about FORALL iterator, including FORALL indices start, end
10100 and stride. An outer FORALL indice cannot appear in start, end or stride. */
10101 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10102 {
10103 /* Fortran 20008: C738 (R753). */
10104 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
10105 {
10106 gfc_error ("FORALL index-name at %L must be a scalar variable "
10107 "of type integer", &fa->var->where);
10108 continue;
10109 }
10110
10111 /* Check if any outer FORALL index name is the same as the current
10112 one. */
10113 for (i = 0; i < nvar; i++)
10114 {
10115 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
10116 gfc_error ("An outer FORALL construct already has an index "
10117 "with this name %L", &fa->var->where);
10118 }
10119
10120 /* Record the current FORALL index. */
10121 var_expr[nvar] = gfc_copy_expr (fa->var);
10122
10123 nvar++;
10124
10125 /* No memory leak. */
10126 gcc_assert (nvar <= total_var);
10127 }
10128
10129 /* Resolve the FORALL body. */
10130 gfc_resolve_forall_body (code, nvar, var_expr);
10131
10132 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
10133 gfc_resolve_blocks (code->block, ns);
10134
10135 tmp = nvar;
10136 nvar = old_nvar;
10137 /* Free only the VAR_EXPRs allocated in this frame. */
10138 for (i = nvar; i < tmp; i++)
10139 gfc_free_expr (var_expr[i]);
10140
10141 if (nvar == 0)
10142 {
10143 /* We are in the outermost FORALL construct. */
10144 gcc_assert (forall_save == 0);
10145
10146 /* VAR_EXPR is not needed any more. */
10147 free (var_expr);
10148 total_var = 0;
10149 }
10150 }
10151
10152
10153 /* Resolve a BLOCK construct statement. */
10154
10155 static void
10156 resolve_block_construct (gfc_code* code)
10157 {
10158 /* Resolve the BLOCK's namespace. */
10159 gfc_resolve (code->ext.block.ns);
10160
10161 /* For an ASSOCIATE block, the associations (and their targets) are already
10162 resolved during resolve_symbol. */
10163 }
10164
10165
10166 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
10167 DO code nodes. */
10168
10169 void
10170 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10171 {
10172 bool t;
10173
10174 for (; b; b = b->block)
10175 {
10176 t = gfc_resolve_expr (b->expr1);
10177 if (!gfc_resolve_expr (b->expr2))
10178 t = false;
10179
10180 switch (b->op)
10181 {
10182 case EXEC_IF:
10183 if (t && b->expr1 != NULL
10184 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10185 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10186 &b->expr1->where);
10187 break;
10188
10189 case EXEC_WHERE:
10190 if (t
10191 && b->expr1 != NULL
10192 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10193 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10194 &b->expr1->where);
10195 break;
10196
10197 case EXEC_GOTO:
10198 resolve_branch (b->label1, b);
10199 break;
10200
10201 case EXEC_BLOCK:
10202 resolve_block_construct (b);
10203 break;
10204
10205 case EXEC_SELECT:
10206 case EXEC_SELECT_TYPE:
10207 case EXEC_FORALL:
10208 case EXEC_DO:
10209 case EXEC_DO_WHILE:
10210 case EXEC_DO_CONCURRENT:
10211 case EXEC_CRITICAL:
10212 case EXEC_READ:
10213 case EXEC_WRITE:
10214 case EXEC_IOLENGTH:
10215 case EXEC_WAIT:
10216 break;
10217
10218 case EXEC_OMP_ATOMIC:
10219 case EXEC_OACC_ATOMIC:
10220 {
10221 gfc_omp_atomic_op aop
10222 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10223
10224 /* Verify this before calling gfc_resolve_code, which might
10225 change it. */
10226 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10227 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10228 && b->next->next == NULL)
10229 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10230 && b->next->next != NULL
10231 && b->next->next->op == EXEC_ASSIGN
10232 && b->next->next->next == NULL));
10233 }
10234 break;
10235
10236 case EXEC_OACC_PARALLEL_LOOP:
10237 case EXEC_OACC_PARALLEL:
10238 case EXEC_OACC_KERNELS_LOOP:
10239 case EXEC_OACC_KERNELS:
10240 case EXEC_OACC_DATA:
10241 case EXEC_OACC_HOST_DATA:
10242 case EXEC_OACC_LOOP:
10243 case EXEC_OACC_UPDATE:
10244 case EXEC_OACC_WAIT:
10245 case EXEC_OACC_CACHE:
10246 case EXEC_OACC_ENTER_DATA:
10247 case EXEC_OACC_EXIT_DATA:
10248 case EXEC_OACC_ROUTINE:
10249 case EXEC_OMP_CRITICAL:
10250 case EXEC_OMP_DISTRIBUTE:
10251 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10252 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10253 case EXEC_OMP_DISTRIBUTE_SIMD:
10254 case EXEC_OMP_DO:
10255 case EXEC_OMP_DO_SIMD:
10256 case EXEC_OMP_MASTER:
10257 case EXEC_OMP_ORDERED:
10258 case EXEC_OMP_PARALLEL:
10259 case EXEC_OMP_PARALLEL_DO:
10260 case EXEC_OMP_PARALLEL_DO_SIMD:
10261 case EXEC_OMP_PARALLEL_SECTIONS:
10262 case EXEC_OMP_PARALLEL_WORKSHARE:
10263 case EXEC_OMP_SECTIONS:
10264 case EXEC_OMP_SIMD:
10265 case EXEC_OMP_SINGLE:
10266 case EXEC_OMP_TARGET:
10267 case EXEC_OMP_TARGET_DATA:
10268 case EXEC_OMP_TARGET_ENTER_DATA:
10269 case EXEC_OMP_TARGET_EXIT_DATA:
10270 case EXEC_OMP_TARGET_PARALLEL:
10271 case EXEC_OMP_TARGET_PARALLEL_DO:
10272 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10273 case EXEC_OMP_TARGET_SIMD:
10274 case EXEC_OMP_TARGET_TEAMS:
10275 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10276 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10277 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10278 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10279 case EXEC_OMP_TARGET_UPDATE:
10280 case EXEC_OMP_TASK:
10281 case EXEC_OMP_TASKGROUP:
10282 case EXEC_OMP_TASKLOOP:
10283 case EXEC_OMP_TASKLOOP_SIMD:
10284 case EXEC_OMP_TASKWAIT:
10285 case EXEC_OMP_TASKYIELD:
10286 case EXEC_OMP_TEAMS:
10287 case EXEC_OMP_TEAMS_DISTRIBUTE:
10288 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10289 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10290 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10291 case EXEC_OMP_WORKSHARE:
10292 break;
10293
10294 default:
10295 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10296 }
10297
10298 gfc_resolve_code (b->next, ns);
10299 }
10300 }
10301
10302
10303 /* Does everything to resolve an ordinary assignment. Returns true
10304 if this is an interface assignment. */
10305 static bool
10306 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10307 {
10308 bool rval = false;
10309 gfc_expr *lhs;
10310 gfc_expr *rhs;
10311 int n;
10312 gfc_ref *ref;
10313 symbol_attribute attr;
10314
10315 if (gfc_extend_assign (code, ns))
10316 {
10317 gfc_expr** rhsptr;
10318
10319 if (code->op == EXEC_ASSIGN_CALL)
10320 {
10321 lhs = code->ext.actual->expr;
10322 rhsptr = &code->ext.actual->next->expr;
10323 }
10324 else
10325 {
10326 gfc_actual_arglist* args;
10327 gfc_typebound_proc* tbp;
10328
10329 gcc_assert (code->op == EXEC_COMPCALL);
10330
10331 args = code->expr1->value.compcall.actual;
10332 lhs = args->expr;
10333 rhsptr = &args->next->expr;
10334
10335 tbp = code->expr1->value.compcall.tbp;
10336 gcc_assert (!tbp->is_generic);
10337 }
10338
10339 /* Make a temporary rhs when there is a default initializer
10340 and rhs is the same symbol as the lhs. */
10341 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10342 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10343 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10344 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10345 *rhsptr = gfc_get_parentheses (*rhsptr);
10346
10347 return true;
10348 }
10349
10350 lhs = code->expr1;
10351 rhs = code->expr2;
10352
10353 if (rhs->is_boz
10354 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L outside "
10355 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
10356 &code->loc))
10357 return false;
10358
10359 /* Handle the case of a BOZ literal on the RHS. */
10360 if (rhs->is_boz && lhs->ts.type != BT_INTEGER)
10361 {
10362 int rc;
10363 if (warn_surprising)
10364 gfc_warning (OPT_Wsurprising,
10365 "BOZ literal at %L is bitwise transferred "
10366 "non-integer symbol %qs", &code->loc,
10367 lhs->symtree->n.sym->name);
10368
10369 if (!gfc_convert_boz (rhs, &lhs->ts))
10370 return false;
10371 if ((rc = gfc_range_check (rhs)) != ARITH_OK)
10372 {
10373 if (rc == ARITH_UNDERFLOW)
10374 gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
10375 ". This check can be disabled with the option "
10376 "%<-fno-range-check%>", &rhs->where);
10377 else if (rc == ARITH_OVERFLOW)
10378 gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
10379 ". This check can be disabled with the option "
10380 "%<-fno-range-check%>", &rhs->where);
10381 else if (rc == ARITH_NAN)
10382 gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
10383 ". This check can be disabled with the option "
10384 "%<-fno-range-check%>", &rhs->where);
10385 return false;
10386 }
10387 }
10388
10389 if (lhs->ts.type == BT_CHARACTER
10390 && warn_character_truncation)
10391 {
10392 HOST_WIDE_INT llen = 0, rlen = 0;
10393 if (lhs->ts.u.cl != NULL
10394 && lhs->ts.u.cl->length != NULL
10395 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10396 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10397
10398 if (rhs->expr_type == EXPR_CONSTANT)
10399 rlen = rhs->value.character.length;
10400
10401 else if (rhs->ts.u.cl != NULL
10402 && rhs->ts.u.cl->length != NULL
10403 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10404 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10405
10406 if (rlen && llen && rlen > llen)
10407 gfc_warning_now (OPT_Wcharacter_truncation,
10408 "CHARACTER expression will be truncated "
10409 "in assignment (%ld/%ld) at %L",
10410 (long) llen, (long) rlen, &code->loc);
10411 }
10412
10413 /* Ensure that a vector index expression for the lvalue is evaluated
10414 to a temporary if the lvalue symbol is referenced in it. */
10415 if (lhs->rank)
10416 {
10417 for (ref = lhs->ref; ref; ref= ref->next)
10418 if (ref->type == REF_ARRAY)
10419 {
10420 for (n = 0; n < ref->u.ar.dimen; n++)
10421 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10422 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10423 ref->u.ar.start[n]))
10424 ref->u.ar.start[n]
10425 = gfc_get_parentheses (ref->u.ar.start[n]);
10426 }
10427 }
10428
10429 if (gfc_pure (NULL))
10430 {
10431 if (lhs->ts.type == BT_DERIVED
10432 && lhs->expr_type == EXPR_VARIABLE
10433 && lhs->ts.u.derived->attr.pointer_comp
10434 && rhs->expr_type == EXPR_VARIABLE
10435 && (gfc_impure_variable (rhs->symtree->n.sym)
10436 || gfc_is_coindexed (rhs)))
10437 {
10438 /* F2008, C1283. */
10439 if (gfc_is_coindexed (rhs))
10440 gfc_error ("Coindexed expression at %L is assigned to "
10441 "a derived type variable with a POINTER "
10442 "component in a PURE procedure",
10443 &rhs->where);
10444 else
10445 gfc_error ("The impure variable at %L is assigned to "
10446 "a derived type variable with a POINTER "
10447 "component in a PURE procedure (12.6)",
10448 &rhs->where);
10449 return rval;
10450 }
10451
10452 /* Fortran 2008, C1283. */
10453 if (gfc_is_coindexed (lhs))
10454 {
10455 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10456 "procedure", &rhs->where);
10457 return rval;
10458 }
10459 }
10460
10461 if (gfc_implicit_pure (NULL))
10462 {
10463 if (lhs->expr_type == EXPR_VARIABLE
10464 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10465 && lhs->symtree->n.sym->ns != gfc_current_ns)
10466 gfc_unset_implicit_pure (NULL);
10467
10468 if (lhs->ts.type == BT_DERIVED
10469 && lhs->expr_type == EXPR_VARIABLE
10470 && lhs->ts.u.derived->attr.pointer_comp
10471 && rhs->expr_type == EXPR_VARIABLE
10472 && (gfc_impure_variable (rhs->symtree->n.sym)
10473 || gfc_is_coindexed (rhs)))
10474 gfc_unset_implicit_pure (NULL);
10475
10476 /* Fortran 2008, C1283. */
10477 if (gfc_is_coindexed (lhs))
10478 gfc_unset_implicit_pure (NULL);
10479 }
10480
10481 /* F2008, 7.2.1.2. */
10482 attr = gfc_expr_attr (lhs);
10483 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10484 {
10485 if (attr.codimension)
10486 {
10487 gfc_error ("Assignment to polymorphic coarray at %L is not "
10488 "permitted", &lhs->where);
10489 return false;
10490 }
10491 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10492 "polymorphic variable at %L", &lhs->where))
10493 return false;
10494 if (!flag_realloc_lhs)
10495 {
10496 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10497 "requires %<-frealloc-lhs%>", &lhs->where);
10498 return false;
10499 }
10500 }
10501 else if (lhs->ts.type == BT_CLASS)
10502 {
10503 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10504 "assignment at %L - check that there is a matching specific "
10505 "subroutine for '=' operator", &lhs->where);
10506 return false;
10507 }
10508
10509 bool lhs_coindexed = gfc_is_coindexed (lhs);
10510
10511 /* F2008, Section 7.2.1.2. */
10512 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10513 {
10514 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10515 "component in assignment at %L", &lhs->where);
10516 return false;
10517 }
10518
10519 /* Assign the 'data' of a class object to a derived type. */
10520 if (lhs->ts.type == BT_DERIVED
10521 && rhs->ts.type == BT_CLASS
10522 && rhs->expr_type != EXPR_ARRAY)
10523 gfc_add_data_component (rhs);
10524
10525 /* Make sure there is a vtable and, in particular, a _copy for the
10526 rhs type. */
10527 if (UNLIMITED_POLY (lhs) && lhs->rank && rhs->ts.type != BT_CLASS)
10528 gfc_find_vtab (&rhs->ts);
10529
10530 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
10531 && (lhs_coindexed
10532 || (code->expr2->expr_type == EXPR_FUNCTION
10533 && code->expr2->value.function.isym
10534 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
10535 && (code->expr1->rank == 0 || code->expr2->rank != 0)
10536 && !gfc_expr_attr (rhs).allocatable
10537 && !gfc_has_vector_subscript (rhs)));
10538
10539 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
10540
10541 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10542 Additionally, insert this code when the RHS is a CAF as we then use the
10543 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10544 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10545 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10546 path. */
10547 if (caf_convert_to_send)
10548 {
10549 if (code->expr2->expr_type == EXPR_FUNCTION
10550 && code->expr2->value.function.isym
10551 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
10552 remove_caf_get_intrinsic (code->expr2);
10553 code->op = EXEC_CALL;
10554 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
10555 code->resolved_sym = code->symtree->n.sym;
10556 code->resolved_sym->attr.flavor = FL_PROCEDURE;
10557 code->resolved_sym->attr.intrinsic = 1;
10558 code->resolved_sym->attr.subroutine = 1;
10559 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
10560 gfc_commit_symbol (code->resolved_sym);
10561 code->ext.actual = gfc_get_actual_arglist ();
10562 code->ext.actual->expr = lhs;
10563 code->ext.actual->next = gfc_get_actual_arglist ();
10564 code->ext.actual->next->expr = rhs;
10565 code->expr1 = NULL;
10566 code->expr2 = NULL;
10567 }
10568
10569 return false;
10570 }
10571
10572
10573 /* Add a component reference onto an expression. */
10574
10575 static void
10576 add_comp_ref (gfc_expr *e, gfc_component *c)
10577 {
10578 gfc_ref **ref;
10579 ref = &(e->ref);
10580 while (*ref)
10581 ref = &((*ref)->next);
10582 *ref = gfc_get_ref ();
10583 (*ref)->type = REF_COMPONENT;
10584 (*ref)->u.c.sym = e->ts.u.derived;
10585 (*ref)->u.c.component = c;
10586 e->ts = c->ts;
10587
10588 /* Add a full array ref, as necessary. */
10589 if (c->as)
10590 {
10591 gfc_add_full_array_ref (e, c->as);
10592 e->rank = c->as->rank;
10593 }
10594 }
10595
10596
10597 /* Build an assignment. Keep the argument 'op' for future use, so that
10598 pointer assignments can be made. */
10599
10600 static gfc_code *
10601 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
10602 gfc_component *comp1, gfc_component *comp2, locus loc)
10603 {
10604 gfc_code *this_code;
10605
10606 this_code = gfc_get_code (op);
10607 this_code->next = NULL;
10608 this_code->expr1 = gfc_copy_expr (expr1);
10609 this_code->expr2 = gfc_copy_expr (expr2);
10610 this_code->loc = loc;
10611 if (comp1 && comp2)
10612 {
10613 add_comp_ref (this_code->expr1, comp1);
10614 add_comp_ref (this_code->expr2, comp2);
10615 }
10616
10617 return this_code;
10618 }
10619
10620
10621 /* Makes a temporary variable expression based on the characteristics of
10622 a given variable expression. */
10623
10624 static gfc_expr*
10625 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
10626 {
10627 static int serial = 0;
10628 char name[GFC_MAX_SYMBOL_LEN];
10629 gfc_symtree *tmp;
10630 gfc_array_spec *as;
10631 gfc_array_ref *aref;
10632 gfc_ref *ref;
10633
10634 sprintf (name, GFC_PREFIX("DA%d"), serial++);
10635 gfc_get_sym_tree (name, ns, &tmp, false);
10636 gfc_add_type (tmp->n.sym, &e->ts, NULL);
10637
10638 if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
10639 tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
10640 NULL,
10641 e->value.character.length);
10642
10643 as = NULL;
10644 ref = NULL;
10645 aref = NULL;
10646
10647 /* Obtain the arrayspec for the temporary. */
10648 if (e->rank && e->expr_type != EXPR_ARRAY
10649 && e->expr_type != EXPR_FUNCTION
10650 && e->expr_type != EXPR_OP)
10651 {
10652 aref = gfc_find_array_ref (e);
10653 if (e->expr_type == EXPR_VARIABLE
10654 && e->symtree->n.sym->as == aref->as)
10655 as = aref->as;
10656 else
10657 {
10658 for (ref = e->ref; ref; ref = ref->next)
10659 if (ref->type == REF_COMPONENT
10660 && ref->u.c.component->as == aref->as)
10661 {
10662 as = aref->as;
10663 break;
10664 }
10665 }
10666 }
10667
10668 /* Add the attributes and the arrayspec to the temporary. */
10669 tmp->n.sym->attr = gfc_expr_attr (e);
10670 tmp->n.sym->attr.function = 0;
10671 tmp->n.sym->attr.result = 0;
10672 tmp->n.sym->attr.flavor = FL_VARIABLE;
10673 tmp->n.sym->attr.dummy = 0;
10674 tmp->n.sym->attr.intent = INTENT_UNKNOWN;
10675
10676 if (as)
10677 {
10678 tmp->n.sym->as = gfc_copy_array_spec (as);
10679 if (!ref)
10680 ref = e->ref;
10681 if (as->type == AS_DEFERRED)
10682 tmp->n.sym->attr.allocatable = 1;
10683 }
10684 else if (e->rank && (e->expr_type == EXPR_ARRAY
10685 || e->expr_type == EXPR_FUNCTION
10686 || e->expr_type == EXPR_OP))
10687 {
10688 tmp->n.sym->as = gfc_get_array_spec ();
10689 tmp->n.sym->as->type = AS_DEFERRED;
10690 tmp->n.sym->as->rank = e->rank;
10691 tmp->n.sym->attr.allocatable = 1;
10692 tmp->n.sym->attr.dimension = 1;
10693 }
10694 else
10695 tmp->n.sym->attr.dimension = 0;
10696
10697 gfc_set_sym_referenced (tmp->n.sym);
10698 gfc_commit_symbol (tmp->n.sym);
10699 e = gfc_lval_expr_from_sym (tmp->n.sym);
10700
10701 /* Should the lhs be a section, use its array ref for the
10702 temporary expression. */
10703 if (aref && aref->type != AR_FULL)
10704 {
10705 gfc_free_ref_list (e->ref);
10706 e->ref = gfc_copy_ref (ref);
10707 }
10708 return e;
10709 }
10710
10711
10712 /* Add one line of code to the code chain, making sure that 'head' and
10713 'tail' are appropriately updated. */
10714
10715 static void
10716 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
10717 {
10718 gcc_assert (this_code);
10719 if (*head == NULL)
10720 *head = *tail = *this_code;
10721 else
10722 *tail = gfc_append_code (*tail, *this_code);
10723 *this_code = NULL;
10724 }
10725
10726
10727 /* Counts the potential number of part array references that would
10728 result from resolution of typebound defined assignments. */
10729
10730 static int
10731 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
10732 {
10733 gfc_component *c;
10734 int c_depth = 0, t_depth;
10735
10736 for (c= derived->components; c; c = c->next)
10737 {
10738 if ((!gfc_bt_struct (c->ts.type)
10739 || c->attr.pointer
10740 || c->attr.allocatable
10741 || c->attr.proc_pointer_comp
10742 || c->attr.class_pointer
10743 || c->attr.proc_pointer)
10744 && !c->attr.defined_assign_comp)
10745 continue;
10746
10747 if (c->as && c_depth == 0)
10748 c_depth = 1;
10749
10750 if (c->ts.u.derived->attr.defined_assign_comp)
10751 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
10752 c->as ? 1 : 0);
10753 else
10754 t_depth = 0;
10755
10756 c_depth = t_depth > c_depth ? t_depth : c_depth;
10757 }
10758 return depth + c_depth;
10759 }
10760
10761
10762 /* Implement 7.2.1.3 of the F08 standard:
10763 "An intrinsic assignment where the variable is of derived type is
10764 performed as if each component of the variable were assigned from the
10765 corresponding component of expr using pointer assignment (7.2.2) for
10766 each pointer component, defined assignment for each nonpointer
10767 nonallocatable component of a type that has a type-bound defined
10768 assignment consistent with the component, intrinsic assignment for
10769 each other nonpointer nonallocatable component, ..."
10770
10771 The pointer assignments are taken care of by the intrinsic
10772 assignment of the structure itself. This function recursively adds
10773 defined assignments where required. The recursion is accomplished
10774 by calling gfc_resolve_code.
10775
10776 When the lhs in a defined assignment has intent INOUT, we need a
10777 temporary for the lhs. In pseudo-code:
10778
10779 ! Only call function lhs once.
10780 if (lhs is not a constant or an variable)
10781 temp_x = expr2
10782 expr2 => temp_x
10783 ! Do the intrinsic assignment
10784 expr1 = expr2
10785 ! Now do the defined assignments
10786 do over components with typebound defined assignment [%cmp]
10787 #if one component's assignment procedure is INOUT
10788 t1 = expr1
10789 #if expr2 non-variable
10790 temp_x = expr2
10791 expr2 => temp_x
10792 # endif
10793 expr1 = expr2
10794 # for each cmp
10795 t1%cmp {defined=} expr2%cmp
10796 expr1%cmp = t1%cmp
10797 #else
10798 expr1 = expr2
10799
10800 # for each cmp
10801 expr1%cmp {defined=} expr2%cmp
10802 #endif
10803 */
10804
10805 /* The temporary assignments have to be put on top of the additional
10806 code to avoid the result being changed by the intrinsic assignment.
10807 */
10808 static int component_assignment_level = 0;
10809 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
10810
10811 static void
10812 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
10813 {
10814 gfc_component *comp1, *comp2;
10815 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
10816 gfc_expr *t1;
10817 int error_count, depth;
10818
10819 gfc_get_errors (NULL, &error_count);
10820
10821 /* Filter out continuing processing after an error. */
10822 if (error_count
10823 || (*code)->expr1->ts.type != BT_DERIVED
10824 || (*code)->expr2->ts.type != BT_DERIVED)
10825 return;
10826
10827 /* TODO: Handle more than one part array reference in assignments. */
10828 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
10829 (*code)->expr1->rank ? 1 : 0);
10830 if (depth > 1)
10831 {
10832 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
10833 "done because multiple part array references would "
10834 "occur in intermediate expressions.", &(*code)->loc);
10835 return;
10836 }
10837
10838 component_assignment_level++;
10839
10840 /* Create a temporary so that functions get called only once. */
10841 if ((*code)->expr2->expr_type != EXPR_VARIABLE
10842 && (*code)->expr2->expr_type != EXPR_CONSTANT)
10843 {
10844 gfc_expr *tmp_expr;
10845
10846 /* Assign the rhs to the temporary. */
10847 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
10848 this_code = build_assignment (EXEC_ASSIGN,
10849 tmp_expr, (*code)->expr2,
10850 NULL, NULL, (*code)->loc);
10851 /* Add the code and substitute the rhs expression. */
10852 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
10853 gfc_free_expr ((*code)->expr2);
10854 (*code)->expr2 = tmp_expr;
10855 }
10856
10857 /* Do the intrinsic assignment. This is not needed if the lhs is one
10858 of the temporaries generated here, since the intrinsic assignment
10859 to the final result already does this. */
10860 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
10861 {
10862 this_code = build_assignment (EXEC_ASSIGN,
10863 (*code)->expr1, (*code)->expr2,
10864 NULL, NULL, (*code)->loc);
10865 add_code_to_chain (&this_code, &head, &tail);
10866 }
10867
10868 comp1 = (*code)->expr1->ts.u.derived->components;
10869 comp2 = (*code)->expr2->ts.u.derived->components;
10870
10871 t1 = NULL;
10872 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
10873 {
10874 bool inout = false;
10875
10876 /* The intrinsic assignment does the right thing for pointers
10877 of all kinds and allocatable components. */
10878 if (!gfc_bt_struct (comp1->ts.type)
10879 || comp1->attr.pointer
10880 || comp1->attr.allocatable
10881 || comp1->attr.proc_pointer_comp
10882 || comp1->attr.class_pointer
10883 || comp1->attr.proc_pointer)
10884 continue;
10885
10886 /* Make an assigment for this component. */
10887 this_code = build_assignment (EXEC_ASSIGN,
10888 (*code)->expr1, (*code)->expr2,
10889 comp1, comp2, (*code)->loc);
10890
10891 /* Convert the assignment if there is a defined assignment for
10892 this type. Otherwise, using the call from gfc_resolve_code,
10893 recurse into its components. */
10894 gfc_resolve_code (this_code, ns);
10895
10896 if (this_code->op == EXEC_ASSIGN_CALL)
10897 {
10898 gfc_formal_arglist *dummy_args;
10899 gfc_symbol *rsym;
10900 /* Check that there is a typebound defined assignment. If not,
10901 then this must be a module defined assignment. We cannot
10902 use the defined_assign_comp attribute here because it must
10903 be this derived type that has the defined assignment and not
10904 a parent type. */
10905 if (!(comp1->ts.u.derived->f2k_derived
10906 && comp1->ts.u.derived->f2k_derived
10907 ->tb_op[INTRINSIC_ASSIGN]))
10908 {
10909 gfc_free_statements (this_code);
10910 this_code = NULL;
10911 continue;
10912 }
10913
10914 /* If the first argument of the subroutine has intent INOUT
10915 a temporary must be generated and used instead. */
10916 rsym = this_code->resolved_sym;
10917 dummy_args = gfc_sym_get_dummy_args (rsym);
10918 if (dummy_args
10919 && dummy_args->sym->attr.intent == INTENT_INOUT)
10920 {
10921 gfc_code *temp_code;
10922 inout = true;
10923
10924 /* Build the temporary required for the assignment and put
10925 it at the head of the generated code. */
10926 if (!t1)
10927 {
10928 t1 = get_temp_from_expr ((*code)->expr1, ns);
10929 temp_code = build_assignment (EXEC_ASSIGN,
10930 t1, (*code)->expr1,
10931 NULL, NULL, (*code)->loc);
10932
10933 /* For allocatable LHS, check whether it is allocated. Note
10934 that allocatable components with defined assignment are
10935 not yet support. See PR 57696. */
10936 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
10937 {
10938 gfc_code *block;
10939 gfc_expr *e =
10940 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
10941 block = gfc_get_code (EXEC_IF);
10942 block->block = gfc_get_code (EXEC_IF);
10943 block->block->expr1
10944 = gfc_build_intrinsic_call (ns,
10945 GFC_ISYM_ALLOCATED, "allocated",
10946 (*code)->loc, 1, e);
10947 block->block->next = temp_code;
10948 temp_code = block;
10949 }
10950 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
10951 }
10952
10953 /* Replace the first actual arg with the component of the
10954 temporary. */
10955 gfc_free_expr (this_code->ext.actual->expr);
10956 this_code->ext.actual->expr = gfc_copy_expr (t1);
10957 add_comp_ref (this_code->ext.actual->expr, comp1);
10958
10959 /* If the LHS variable is allocatable and wasn't allocated and
10960 the temporary is allocatable, pointer assign the address of
10961 the freshly allocated LHS to the temporary. */
10962 if ((*code)->expr1->symtree->n.sym->attr.allocatable
10963 && gfc_expr_attr ((*code)->expr1).allocatable)
10964 {
10965 gfc_code *block;
10966 gfc_expr *cond;
10967
10968 cond = gfc_get_expr ();
10969 cond->ts.type = BT_LOGICAL;
10970 cond->ts.kind = gfc_default_logical_kind;
10971 cond->expr_type = EXPR_OP;
10972 cond->where = (*code)->loc;
10973 cond->value.op.op = INTRINSIC_NOT;
10974 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
10975 GFC_ISYM_ALLOCATED, "allocated",
10976 (*code)->loc, 1, gfc_copy_expr (t1));
10977 block = gfc_get_code (EXEC_IF);
10978 block->block = gfc_get_code (EXEC_IF);
10979 block->block->expr1 = cond;
10980 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
10981 t1, (*code)->expr1,
10982 NULL, NULL, (*code)->loc);
10983 add_code_to_chain (&block, &head, &tail);
10984 }
10985 }
10986 }
10987 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
10988 {
10989 /* Don't add intrinsic assignments since they are already
10990 effected by the intrinsic assignment of the structure. */
10991 gfc_free_statements (this_code);
10992 this_code = NULL;
10993 continue;
10994 }
10995
10996 add_code_to_chain (&this_code, &head, &tail);
10997
10998 if (t1 && inout)
10999 {
11000 /* Transfer the value to the final result. */
11001 this_code = build_assignment (EXEC_ASSIGN,
11002 (*code)->expr1, t1,
11003 comp1, comp2, (*code)->loc);
11004 add_code_to_chain (&this_code, &head, &tail);
11005 }
11006 }
11007
11008 /* Put the temporary assignments at the top of the generated code. */
11009 if (tmp_head && component_assignment_level == 1)
11010 {
11011 gfc_append_code (tmp_head, head);
11012 head = tmp_head;
11013 tmp_head = tmp_tail = NULL;
11014 }
11015
11016 // If we did a pointer assignment - thus, we need to ensure that the LHS is
11017 // not accidentally deallocated. Hence, nullify t1.
11018 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
11019 && gfc_expr_attr ((*code)->expr1).allocatable)
11020 {
11021 gfc_code *block;
11022 gfc_expr *cond;
11023 gfc_expr *e;
11024
11025 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11026 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
11027 (*code)->loc, 2, gfc_copy_expr (t1), e);
11028 block = gfc_get_code (EXEC_IF);
11029 block->block = gfc_get_code (EXEC_IF);
11030 block->block->expr1 = cond;
11031 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11032 t1, gfc_get_null_expr (&(*code)->loc),
11033 NULL, NULL, (*code)->loc);
11034 gfc_append_code (tail, block);
11035 tail = block;
11036 }
11037
11038 /* Now attach the remaining code chain to the input code. Step on
11039 to the end of the new code since resolution is complete. */
11040 gcc_assert ((*code)->op == EXEC_ASSIGN);
11041 tail->next = (*code)->next;
11042 /* Overwrite 'code' because this would place the intrinsic assignment
11043 before the temporary for the lhs is created. */
11044 gfc_free_expr ((*code)->expr1);
11045 gfc_free_expr ((*code)->expr2);
11046 **code = *head;
11047 if (head != tail)
11048 free (head);
11049 *code = tail;
11050
11051 component_assignment_level--;
11052 }
11053
11054
11055 /* F2008: Pointer function assignments are of the form:
11056 ptr_fcn (args) = expr
11057 This function breaks these assignments into two statements:
11058 temporary_pointer => ptr_fcn(args)
11059 temporary_pointer = expr */
11060
11061 static bool
11062 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
11063 {
11064 gfc_expr *tmp_ptr_expr;
11065 gfc_code *this_code;
11066 gfc_component *comp;
11067 gfc_symbol *s;
11068
11069 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
11070 return false;
11071
11072 /* Even if standard does not support this feature, continue to build
11073 the two statements to avoid upsetting frontend_passes.c. */
11074 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
11075 "%L", &(*code)->loc);
11076
11077 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
11078
11079 if (comp)
11080 s = comp->ts.interface;
11081 else
11082 s = (*code)->expr1->symtree->n.sym;
11083
11084 if (s == NULL || !s->result->attr.pointer)
11085 {
11086 gfc_error ("The function result on the lhs of the assignment at "
11087 "%L must have the pointer attribute.",
11088 &(*code)->expr1->where);
11089 (*code)->op = EXEC_NOP;
11090 return false;
11091 }
11092
11093 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
11094
11095 /* get_temp_from_expression is set up for ordinary assignments. To that
11096 end, where array bounds are not known, arrays are made allocatable.
11097 Change the temporary to a pointer here. */
11098 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
11099 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
11100 tmp_ptr_expr->where = (*code)->loc;
11101
11102 this_code = build_assignment (EXEC_ASSIGN,
11103 tmp_ptr_expr, (*code)->expr2,
11104 NULL, NULL, (*code)->loc);
11105 this_code->next = (*code)->next;
11106 (*code)->next = this_code;
11107 (*code)->op = EXEC_POINTER_ASSIGN;
11108 (*code)->expr2 = (*code)->expr1;
11109 (*code)->expr1 = tmp_ptr_expr;
11110
11111 return true;
11112 }
11113
11114
11115 /* Deferred character length assignments from an operator expression
11116 require a temporary because the character length of the lhs can
11117 change in the course of the assignment. */
11118
11119 static bool
11120 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
11121 {
11122 gfc_expr *tmp_expr;
11123 gfc_code *this_code;
11124
11125 if (!((*code)->expr1->ts.type == BT_CHARACTER
11126 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
11127 && (*code)->expr2->expr_type == EXPR_OP))
11128 return false;
11129
11130 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
11131 return false;
11132
11133 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11134 tmp_expr->where = (*code)->loc;
11135
11136 /* A new charlen is required to ensure that the variable string
11137 length is different to that of the original lhs. */
11138 tmp_expr->ts.u.cl = gfc_get_charlen();
11139 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
11140 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
11141 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
11142
11143 tmp_expr->symtree->n.sym->ts.deferred = 1;
11144
11145 this_code = build_assignment (EXEC_ASSIGN,
11146 (*code)->expr1,
11147 gfc_copy_expr (tmp_expr),
11148 NULL, NULL, (*code)->loc);
11149
11150 (*code)->expr1 = tmp_expr;
11151
11152 this_code->next = (*code)->next;
11153 (*code)->next = this_code;
11154
11155 return true;
11156 }
11157
11158
11159 /* Given a block of code, recursively resolve everything pointed to by this
11160 code block. */
11161
11162 void
11163 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
11164 {
11165 int omp_workshare_save;
11166 int forall_save, do_concurrent_save;
11167 code_stack frame;
11168 bool t;
11169
11170 frame.prev = cs_base;
11171 frame.head = code;
11172 cs_base = &frame;
11173
11174 find_reachable_labels (code);
11175
11176 for (; code; code = code->next)
11177 {
11178 frame.current = code;
11179 forall_save = forall_flag;
11180 do_concurrent_save = gfc_do_concurrent_flag;
11181
11182 if (code->op == EXEC_FORALL)
11183 {
11184 forall_flag = 1;
11185 gfc_resolve_forall (code, ns, forall_save);
11186 forall_flag = 2;
11187 }
11188 else if (code->block)
11189 {
11190 omp_workshare_save = -1;
11191 switch (code->op)
11192 {
11193 case EXEC_OACC_PARALLEL_LOOP:
11194 case EXEC_OACC_PARALLEL:
11195 case EXEC_OACC_KERNELS_LOOP:
11196 case EXEC_OACC_KERNELS:
11197 case EXEC_OACC_DATA:
11198 case EXEC_OACC_HOST_DATA:
11199 case EXEC_OACC_LOOP:
11200 gfc_resolve_oacc_blocks (code, ns);
11201 break;
11202 case EXEC_OMP_PARALLEL_WORKSHARE:
11203 omp_workshare_save = omp_workshare_flag;
11204 omp_workshare_flag = 1;
11205 gfc_resolve_omp_parallel_blocks (code, ns);
11206 break;
11207 case EXEC_OMP_PARALLEL:
11208 case EXEC_OMP_PARALLEL_DO:
11209 case EXEC_OMP_PARALLEL_DO_SIMD:
11210 case EXEC_OMP_PARALLEL_SECTIONS:
11211 case EXEC_OMP_TARGET_PARALLEL:
11212 case EXEC_OMP_TARGET_PARALLEL_DO:
11213 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11214 case EXEC_OMP_TARGET_TEAMS:
11215 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11216 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11217 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11218 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11219 case EXEC_OMP_TASK:
11220 case EXEC_OMP_TASKLOOP:
11221 case EXEC_OMP_TASKLOOP_SIMD:
11222 case EXEC_OMP_TEAMS:
11223 case EXEC_OMP_TEAMS_DISTRIBUTE:
11224 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11225 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11226 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11227 omp_workshare_save = omp_workshare_flag;
11228 omp_workshare_flag = 0;
11229 gfc_resolve_omp_parallel_blocks (code, ns);
11230 break;
11231 case EXEC_OMP_DISTRIBUTE:
11232 case EXEC_OMP_DISTRIBUTE_SIMD:
11233 case EXEC_OMP_DO:
11234 case EXEC_OMP_DO_SIMD:
11235 case EXEC_OMP_SIMD:
11236 case EXEC_OMP_TARGET_SIMD:
11237 gfc_resolve_omp_do_blocks (code, ns);
11238 break;
11239 case EXEC_SELECT_TYPE:
11240 /* Blocks are handled in resolve_select_type because we have
11241 to transform the SELECT TYPE into ASSOCIATE first. */
11242 break;
11243 case EXEC_DO_CONCURRENT:
11244 gfc_do_concurrent_flag = 1;
11245 gfc_resolve_blocks (code->block, ns);
11246 gfc_do_concurrent_flag = 2;
11247 break;
11248 case EXEC_OMP_WORKSHARE:
11249 omp_workshare_save = omp_workshare_flag;
11250 omp_workshare_flag = 1;
11251 /* FALL THROUGH */
11252 default:
11253 gfc_resolve_blocks (code->block, ns);
11254 break;
11255 }
11256
11257 if (omp_workshare_save != -1)
11258 omp_workshare_flag = omp_workshare_save;
11259 }
11260 start:
11261 t = true;
11262 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11263 t = gfc_resolve_expr (code->expr1);
11264 forall_flag = forall_save;
11265 gfc_do_concurrent_flag = do_concurrent_save;
11266
11267 if (!gfc_resolve_expr (code->expr2))
11268 t = false;
11269
11270 if (code->op == EXEC_ALLOCATE
11271 && !gfc_resolve_expr (code->expr3))
11272 t = false;
11273
11274 switch (code->op)
11275 {
11276 case EXEC_NOP:
11277 case EXEC_END_BLOCK:
11278 case EXEC_END_NESTED_BLOCK:
11279 case EXEC_CYCLE:
11280 case EXEC_PAUSE:
11281 case EXEC_STOP:
11282 case EXEC_ERROR_STOP:
11283 case EXEC_EXIT:
11284 case EXEC_CONTINUE:
11285 case EXEC_DT_END:
11286 case EXEC_ASSIGN_CALL:
11287 break;
11288
11289 case EXEC_CRITICAL:
11290 resolve_critical (code);
11291 break;
11292
11293 case EXEC_SYNC_ALL:
11294 case EXEC_SYNC_IMAGES:
11295 case EXEC_SYNC_MEMORY:
11296 resolve_sync (code);
11297 break;
11298
11299 case EXEC_LOCK:
11300 case EXEC_UNLOCK:
11301 case EXEC_EVENT_POST:
11302 case EXEC_EVENT_WAIT:
11303 resolve_lock_unlock_event (code);
11304 break;
11305
11306 case EXEC_FAIL_IMAGE:
11307 case EXEC_FORM_TEAM:
11308 case EXEC_CHANGE_TEAM:
11309 case EXEC_END_TEAM:
11310 case EXEC_SYNC_TEAM:
11311 break;
11312
11313 case EXEC_ENTRY:
11314 /* Keep track of which entry we are up to. */
11315 current_entry_id = code->ext.entry->id;
11316 break;
11317
11318 case EXEC_WHERE:
11319 resolve_where (code, NULL);
11320 break;
11321
11322 case EXEC_GOTO:
11323 if (code->expr1 != NULL)
11324 {
11325 if (code->expr1->ts.type != BT_INTEGER)
11326 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11327 "INTEGER variable", &code->expr1->where);
11328 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11329 gfc_error ("Variable %qs has not been assigned a target "
11330 "label at %L", code->expr1->symtree->n.sym->name,
11331 &code->expr1->where);
11332 }
11333 else
11334 resolve_branch (code->label1, code);
11335 break;
11336
11337 case EXEC_RETURN:
11338 if (code->expr1 != NULL
11339 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11340 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11341 "INTEGER return specifier", &code->expr1->where);
11342 break;
11343
11344 case EXEC_INIT_ASSIGN:
11345 case EXEC_END_PROCEDURE:
11346 break;
11347
11348 case EXEC_ASSIGN:
11349 if (!t)
11350 break;
11351
11352 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11353 the LHS. */
11354 if (code->expr1->expr_type == EXPR_FUNCTION
11355 && code->expr1->value.function.isym
11356 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11357 remove_caf_get_intrinsic (code->expr1);
11358
11359 /* If this is a pointer function in an lvalue variable context,
11360 the new code will have to be resolved afresh. This is also the
11361 case with an error, where the code is transformed into NOP to
11362 prevent ICEs downstream. */
11363 if (resolve_ptr_fcn_assign (&code, ns)
11364 || code->op == EXEC_NOP)
11365 goto start;
11366
11367 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11368 _("assignment")))
11369 break;
11370
11371 if (resolve_ordinary_assign (code, ns))
11372 {
11373 if (code->op == EXEC_COMPCALL)
11374 goto compcall;
11375 else
11376 goto call;
11377 }
11378
11379 /* Check for dependencies in deferred character length array
11380 assignments and generate a temporary, if necessary. */
11381 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11382 break;
11383
11384 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11385 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11386 && code->expr1->ts.u.derived
11387 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11388 generate_component_assignments (&code, ns);
11389
11390 break;
11391
11392 case EXEC_LABEL_ASSIGN:
11393 if (code->label1->defined == ST_LABEL_UNKNOWN)
11394 gfc_error ("Label %d referenced at %L is never defined",
11395 code->label1->value, &code->label1->where);
11396 if (t
11397 && (code->expr1->expr_type != EXPR_VARIABLE
11398 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11399 || code->expr1->symtree->n.sym->ts.kind
11400 != gfc_default_integer_kind
11401 || code->expr1->symtree->n.sym->as != NULL))
11402 gfc_error ("ASSIGN statement at %L requires a scalar "
11403 "default INTEGER variable", &code->expr1->where);
11404 break;
11405
11406 case EXEC_POINTER_ASSIGN:
11407 {
11408 gfc_expr* e;
11409
11410 if (!t)
11411 break;
11412
11413 /* This is both a variable definition and pointer assignment
11414 context, so check both of them. For rank remapping, a final
11415 array ref may be present on the LHS and fool gfc_expr_attr
11416 used in gfc_check_vardef_context. Remove it. */
11417 e = remove_last_array_ref (code->expr1);
11418 t = gfc_check_vardef_context (e, true, false, false,
11419 _("pointer assignment"));
11420 if (t)
11421 t = gfc_check_vardef_context (e, false, false, false,
11422 _("pointer assignment"));
11423 gfc_free_expr (e);
11424
11425 t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
11426
11427 if (!t)
11428 break;
11429
11430 /* Assigning a class object always is a regular assign. */
11431 if (code->expr2->ts.type == BT_CLASS
11432 && code->expr1->ts.type == BT_CLASS
11433 && !CLASS_DATA (code->expr2)->attr.dimension
11434 && !(gfc_expr_attr (code->expr1).proc_pointer
11435 && code->expr2->expr_type == EXPR_VARIABLE
11436 && code->expr2->symtree->n.sym->attr.flavor
11437 == FL_PROCEDURE))
11438 code->op = EXEC_ASSIGN;
11439 break;
11440 }
11441
11442 case EXEC_ARITHMETIC_IF:
11443 {
11444 gfc_expr *e = code->expr1;
11445
11446 gfc_resolve_expr (e);
11447 if (e->expr_type == EXPR_NULL)
11448 gfc_error ("Invalid NULL at %L", &e->where);
11449
11450 if (t && (e->rank > 0
11451 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11452 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11453 "REAL or INTEGER expression", &e->where);
11454
11455 resolve_branch (code->label1, code);
11456 resolve_branch (code->label2, code);
11457 resolve_branch (code->label3, code);
11458 }
11459 break;
11460
11461 case EXEC_IF:
11462 if (t && code->expr1 != NULL
11463 && (code->expr1->ts.type != BT_LOGICAL
11464 || code->expr1->rank != 0))
11465 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11466 &code->expr1->where);
11467 break;
11468
11469 case EXEC_CALL:
11470 call:
11471 resolve_call (code);
11472 break;
11473
11474 case EXEC_COMPCALL:
11475 compcall:
11476 resolve_typebound_subroutine (code);
11477 break;
11478
11479 case EXEC_CALL_PPC:
11480 resolve_ppc_call (code);
11481 break;
11482
11483 case EXEC_SELECT:
11484 /* Select is complicated. Also, a SELECT construct could be
11485 a transformed computed GOTO. */
11486 resolve_select (code, false);
11487 break;
11488
11489 case EXEC_SELECT_TYPE:
11490 resolve_select_type (code, ns);
11491 break;
11492
11493 case EXEC_BLOCK:
11494 resolve_block_construct (code);
11495 break;
11496
11497 case EXEC_DO:
11498 if (code->ext.iterator != NULL)
11499 {
11500 gfc_iterator *iter = code->ext.iterator;
11501 if (gfc_resolve_iterator (iter, true, false))
11502 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11503 true);
11504 }
11505 break;
11506
11507 case EXEC_DO_WHILE:
11508 if (code->expr1 == NULL)
11509 gfc_internal_error ("gfc_resolve_code(): No expression on "
11510 "DO WHILE");
11511 if (t
11512 && (code->expr1->rank != 0
11513 || code->expr1->ts.type != BT_LOGICAL))
11514 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11515 "a scalar LOGICAL expression", &code->expr1->where);
11516 break;
11517
11518 case EXEC_ALLOCATE:
11519 if (t)
11520 resolve_allocate_deallocate (code, "ALLOCATE");
11521
11522 break;
11523
11524 case EXEC_DEALLOCATE:
11525 if (t)
11526 resolve_allocate_deallocate (code, "DEALLOCATE");
11527
11528 break;
11529
11530 case EXEC_OPEN:
11531 if (!gfc_resolve_open (code->ext.open))
11532 break;
11533
11534 resolve_branch (code->ext.open->err, code);
11535 break;
11536
11537 case EXEC_CLOSE:
11538 if (!gfc_resolve_close (code->ext.close))
11539 break;
11540
11541 resolve_branch (code->ext.close->err, code);
11542 break;
11543
11544 case EXEC_BACKSPACE:
11545 case EXEC_ENDFILE:
11546 case EXEC_REWIND:
11547 case EXEC_FLUSH:
11548 if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
11549 break;
11550
11551 resolve_branch (code->ext.filepos->err, code);
11552 break;
11553
11554 case EXEC_INQUIRE:
11555 if (!gfc_resolve_inquire (code->ext.inquire))
11556 break;
11557
11558 resolve_branch (code->ext.inquire->err, code);
11559 break;
11560
11561 case EXEC_IOLENGTH:
11562 gcc_assert (code->ext.inquire != NULL);
11563 if (!gfc_resolve_inquire (code->ext.inquire))
11564 break;
11565
11566 resolve_branch (code->ext.inquire->err, code);
11567 break;
11568
11569 case EXEC_WAIT:
11570 if (!gfc_resolve_wait (code->ext.wait))
11571 break;
11572
11573 resolve_branch (code->ext.wait->err, code);
11574 resolve_branch (code->ext.wait->end, code);
11575 resolve_branch (code->ext.wait->eor, code);
11576 break;
11577
11578 case EXEC_READ:
11579 case EXEC_WRITE:
11580 if (!gfc_resolve_dt (code->ext.dt, &code->loc))
11581 break;
11582
11583 resolve_branch (code->ext.dt->err, code);
11584 resolve_branch (code->ext.dt->end, code);
11585 resolve_branch (code->ext.dt->eor, code);
11586 break;
11587
11588 case EXEC_TRANSFER:
11589 resolve_transfer (code);
11590 break;
11591
11592 case EXEC_DO_CONCURRENT:
11593 case EXEC_FORALL:
11594 resolve_forall_iterators (code->ext.forall_iterator);
11595
11596 if (code->expr1 != NULL
11597 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
11598 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
11599 "expression", &code->expr1->where);
11600 break;
11601
11602 case EXEC_OACC_PARALLEL_LOOP:
11603 case EXEC_OACC_PARALLEL:
11604 case EXEC_OACC_KERNELS_LOOP:
11605 case EXEC_OACC_KERNELS:
11606 case EXEC_OACC_DATA:
11607 case EXEC_OACC_HOST_DATA:
11608 case EXEC_OACC_LOOP:
11609 case EXEC_OACC_UPDATE:
11610 case EXEC_OACC_WAIT:
11611 case EXEC_OACC_CACHE:
11612 case EXEC_OACC_ENTER_DATA:
11613 case EXEC_OACC_EXIT_DATA:
11614 case EXEC_OACC_ATOMIC:
11615 case EXEC_OACC_DECLARE:
11616 gfc_resolve_oacc_directive (code, ns);
11617 break;
11618
11619 case EXEC_OMP_ATOMIC:
11620 case EXEC_OMP_BARRIER:
11621 case EXEC_OMP_CANCEL:
11622 case EXEC_OMP_CANCELLATION_POINT:
11623 case EXEC_OMP_CRITICAL:
11624 case EXEC_OMP_FLUSH:
11625 case EXEC_OMP_DISTRIBUTE:
11626 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
11627 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
11628 case EXEC_OMP_DISTRIBUTE_SIMD:
11629 case EXEC_OMP_DO:
11630 case EXEC_OMP_DO_SIMD:
11631 case EXEC_OMP_MASTER:
11632 case EXEC_OMP_ORDERED:
11633 case EXEC_OMP_SECTIONS:
11634 case EXEC_OMP_SIMD:
11635 case EXEC_OMP_SINGLE:
11636 case EXEC_OMP_TARGET:
11637 case EXEC_OMP_TARGET_DATA:
11638 case EXEC_OMP_TARGET_ENTER_DATA:
11639 case EXEC_OMP_TARGET_EXIT_DATA:
11640 case EXEC_OMP_TARGET_PARALLEL:
11641 case EXEC_OMP_TARGET_PARALLEL_DO:
11642 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11643 case EXEC_OMP_TARGET_SIMD:
11644 case EXEC_OMP_TARGET_TEAMS:
11645 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11646 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11647 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11648 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11649 case EXEC_OMP_TARGET_UPDATE:
11650 case EXEC_OMP_TASK:
11651 case EXEC_OMP_TASKGROUP:
11652 case EXEC_OMP_TASKLOOP:
11653 case EXEC_OMP_TASKLOOP_SIMD:
11654 case EXEC_OMP_TASKWAIT:
11655 case EXEC_OMP_TASKYIELD:
11656 case EXEC_OMP_TEAMS:
11657 case EXEC_OMP_TEAMS_DISTRIBUTE:
11658 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11659 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11660 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11661 case EXEC_OMP_WORKSHARE:
11662 gfc_resolve_omp_directive (code, ns);
11663 break;
11664
11665 case EXEC_OMP_PARALLEL:
11666 case EXEC_OMP_PARALLEL_DO:
11667 case EXEC_OMP_PARALLEL_DO_SIMD:
11668 case EXEC_OMP_PARALLEL_SECTIONS:
11669 case EXEC_OMP_PARALLEL_WORKSHARE:
11670 omp_workshare_save = omp_workshare_flag;
11671 omp_workshare_flag = 0;
11672 gfc_resolve_omp_directive (code, ns);
11673 omp_workshare_flag = omp_workshare_save;
11674 break;
11675
11676 default:
11677 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
11678 }
11679 }
11680
11681 cs_base = frame.prev;
11682 }
11683
11684
11685 /* Resolve initial values and make sure they are compatible with
11686 the variable. */
11687
11688 static void
11689 resolve_values (gfc_symbol *sym)
11690 {
11691 bool t;
11692
11693 if (sym->value == NULL)
11694 return;
11695
11696 if (sym->value->expr_type == EXPR_STRUCTURE)
11697 t= resolve_structure_cons (sym->value, 1);
11698 else
11699 t = gfc_resolve_expr (sym->value);
11700
11701 if (!t)
11702 return;
11703
11704 gfc_check_assign_symbol (sym, NULL, sym->value);
11705 }
11706
11707
11708 /* Verify any BIND(C) derived types in the namespace so we can report errors
11709 for them once, rather than for each variable declared of that type. */
11710
11711 static void
11712 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
11713 {
11714 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
11715 && derived_sym->attr.is_bind_c == 1)
11716 verify_bind_c_derived_type (derived_sym);
11717
11718 return;
11719 }
11720
11721
11722 /* Check the interfaces of DTIO procedures associated with derived
11723 type 'sym'. These procedures can either have typebound bindings or
11724 can appear in DTIO generic interfaces. */
11725
11726 static void
11727 gfc_verify_DTIO_procedures (gfc_symbol *sym)
11728 {
11729 if (!sym || sym->attr.flavor != FL_DERIVED)
11730 return;
11731
11732 gfc_check_dtio_interfaces (sym);
11733
11734 return;
11735 }
11736
11737 /* Verify that any binding labels used in a given namespace do not collide
11738 with the names or binding labels of any global symbols. Multiple INTERFACE
11739 for the same procedure are permitted. */
11740
11741 static void
11742 gfc_verify_binding_labels (gfc_symbol *sym)
11743 {
11744 gfc_gsymbol *gsym;
11745 const char *module;
11746
11747 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
11748 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
11749 return;
11750
11751 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
11752
11753 if (sym->module)
11754 module = sym->module;
11755 else if (sym->ns && sym->ns->proc_name
11756 && sym->ns->proc_name->attr.flavor == FL_MODULE)
11757 module = sym->ns->proc_name->name;
11758 else if (sym->ns && sym->ns->parent
11759 && sym->ns && sym->ns->parent->proc_name
11760 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
11761 module = sym->ns->parent->proc_name->name;
11762 else
11763 module = NULL;
11764
11765 if (!gsym
11766 || (!gsym->defined
11767 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
11768 {
11769 if (!gsym)
11770 gsym = gfc_get_gsymbol (sym->binding_label);
11771 gsym->where = sym->declared_at;
11772 gsym->sym_name = sym->name;
11773 gsym->binding_label = sym->binding_label;
11774 gsym->ns = sym->ns;
11775 gsym->mod_name = module;
11776 if (sym->attr.function)
11777 gsym->type = GSYM_FUNCTION;
11778 else if (sym->attr.subroutine)
11779 gsym->type = GSYM_SUBROUTINE;
11780 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
11781 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
11782 return;
11783 }
11784
11785 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
11786 {
11787 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
11788 "identifier as entity at %L", sym->name,
11789 sym->binding_label, &sym->declared_at, &gsym->where);
11790 /* Clear the binding label to prevent checking multiple times. */
11791 sym->binding_label = NULL;
11792 return;
11793 }
11794
11795 if (sym->attr.flavor == FL_VARIABLE && module
11796 && (strcmp (module, gsym->mod_name) != 0
11797 || strcmp (sym->name, gsym->sym_name) != 0))
11798 {
11799 /* This can only happen if the variable is defined in a module - if it
11800 isn't the same module, reject it. */
11801 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
11802 "uses the same global identifier as entity at %L from module %qs",
11803 sym->name, module, sym->binding_label,
11804 &sym->declared_at, &gsym->where, gsym->mod_name);
11805 sym->binding_label = NULL;
11806 return;
11807 }
11808
11809 if ((sym->attr.function || sym->attr.subroutine)
11810 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
11811 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
11812 && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
11813 && (module != gsym->mod_name
11814 || strcmp (gsym->sym_name, sym->name) != 0
11815 || (module && strcmp (module, gsym->mod_name) != 0)))
11816 {
11817 /* Print an error if the procedure is defined multiple times; we have to
11818 exclude references to the same procedure via module association or
11819 multiple checks for the same procedure. */
11820 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
11821 "global identifier as entity at %L", sym->name,
11822 sym->binding_label, &sym->declared_at, &gsym->where);
11823 sym->binding_label = NULL;
11824 }
11825 }
11826
11827
11828 /* Resolve an index expression. */
11829
11830 static bool
11831 resolve_index_expr (gfc_expr *e)
11832 {
11833 if (!gfc_resolve_expr (e))
11834 return false;
11835
11836 if (!gfc_simplify_expr (e, 0))
11837 return false;
11838
11839 if (!gfc_specification_expr (e))
11840 return false;
11841
11842 return true;
11843 }
11844
11845
11846 /* Resolve a charlen structure. */
11847
11848 static bool
11849 resolve_charlen (gfc_charlen *cl)
11850 {
11851 int k;
11852 bool saved_specification_expr;
11853
11854 if (cl->resolved)
11855 return true;
11856
11857 cl->resolved = 1;
11858 saved_specification_expr = specification_expr;
11859 specification_expr = true;
11860
11861 if (cl->length_from_typespec)
11862 {
11863 if (!gfc_resolve_expr (cl->length))
11864 {
11865 specification_expr = saved_specification_expr;
11866 return false;
11867 }
11868
11869 if (!gfc_simplify_expr (cl->length, 0))
11870 {
11871 specification_expr = saved_specification_expr;
11872 return false;
11873 }
11874
11875 /* cl->length has been resolved. It should have an integer type. */
11876 if (cl->length->ts.type != BT_INTEGER)
11877 {
11878 gfc_error ("Scalar INTEGER expression expected at %L",
11879 &cl->length->where);
11880 return false;
11881 }
11882 }
11883 else
11884 {
11885 if (!resolve_index_expr (cl->length))
11886 {
11887 specification_expr = saved_specification_expr;
11888 return false;
11889 }
11890 }
11891
11892 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
11893 a negative value, the length of character entities declared is zero. */
11894 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11895 && mpz_sgn (cl->length->value.integer) < 0)
11896 gfc_replace_expr (cl->length,
11897 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
11898
11899 /* Check that the character length is not too large. */
11900 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
11901 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11902 && cl->length->ts.type == BT_INTEGER
11903 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
11904 {
11905 gfc_error ("String length at %L is too large", &cl->length->where);
11906 specification_expr = saved_specification_expr;
11907 return false;
11908 }
11909
11910 specification_expr = saved_specification_expr;
11911 return true;
11912 }
11913
11914
11915 /* Test for non-constant shape arrays. */
11916
11917 static bool
11918 is_non_constant_shape_array (gfc_symbol *sym)
11919 {
11920 gfc_expr *e;
11921 int i;
11922 bool not_constant;
11923
11924 not_constant = false;
11925 if (sym->as != NULL)
11926 {
11927 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
11928 has not been simplified; parameter array references. Do the
11929 simplification now. */
11930 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
11931 {
11932 e = sym->as->lower[i];
11933 if (e && (!resolve_index_expr(e)
11934 || !gfc_is_constant_expr (e)))
11935 not_constant = true;
11936 e = sym->as->upper[i];
11937 if (e && (!resolve_index_expr(e)
11938 || !gfc_is_constant_expr (e)))
11939 not_constant = true;
11940 }
11941 }
11942 return not_constant;
11943 }
11944
11945 /* Given a symbol and an initialization expression, add code to initialize
11946 the symbol to the function entry. */
11947 static void
11948 build_init_assign (gfc_symbol *sym, gfc_expr *init)
11949 {
11950 gfc_expr *lval;
11951 gfc_code *init_st;
11952 gfc_namespace *ns = sym->ns;
11953
11954 /* Search for the function namespace if this is a contained
11955 function without an explicit result. */
11956 if (sym->attr.function && sym == sym->result
11957 && sym->name != sym->ns->proc_name->name)
11958 {
11959 ns = ns->contained;
11960 for (;ns; ns = ns->sibling)
11961 if (strcmp (ns->proc_name->name, sym->name) == 0)
11962 break;
11963 }
11964
11965 if (ns == NULL)
11966 {
11967 gfc_free_expr (init);
11968 return;
11969 }
11970
11971 /* Build an l-value expression for the result. */
11972 lval = gfc_lval_expr_from_sym (sym);
11973
11974 /* Add the code at scope entry. */
11975 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
11976 init_st->next = ns->code;
11977 ns->code = init_st;
11978
11979 /* Assign the default initializer to the l-value. */
11980 init_st->loc = sym->declared_at;
11981 init_st->expr1 = lval;
11982 init_st->expr2 = init;
11983 }
11984
11985
11986 /* Whether or not we can generate a default initializer for a symbol. */
11987
11988 static bool
11989 can_generate_init (gfc_symbol *sym)
11990 {
11991 symbol_attribute *a;
11992 if (!sym)
11993 return false;
11994 a = &sym->attr;
11995
11996 /* These symbols should never have a default initialization. */
11997 return !(
11998 a->allocatable
11999 || a->external
12000 || a->pointer
12001 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
12002 && (CLASS_DATA (sym)->attr.class_pointer
12003 || CLASS_DATA (sym)->attr.proc_pointer))
12004 || a->in_equivalence
12005 || a->in_common
12006 || a->data
12007 || sym->module
12008 || a->cray_pointee
12009 || a->cray_pointer
12010 || sym->assoc
12011 || (!a->referenced && !a->result)
12012 || (a->dummy && a->intent != INTENT_OUT)
12013 || (a->function && sym != sym->result)
12014 );
12015 }
12016
12017
12018 /* Assign the default initializer to a derived type variable or result. */
12019
12020 static void
12021 apply_default_init (gfc_symbol *sym)
12022 {
12023 gfc_expr *init = NULL;
12024
12025 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12026 return;
12027
12028 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
12029 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12030
12031 if (init == NULL && sym->ts.type != BT_CLASS)
12032 return;
12033
12034 build_init_assign (sym, init);
12035 sym->attr.referenced = 1;
12036 }
12037
12038
12039 /* Build an initializer for a local. Returns null if the symbol should not have
12040 a default initialization. */
12041
12042 static gfc_expr *
12043 build_default_init_expr (gfc_symbol *sym)
12044 {
12045 /* These symbols should never have a default initialization. */
12046 if (sym->attr.allocatable
12047 || sym->attr.external
12048 || sym->attr.dummy
12049 || sym->attr.pointer
12050 || sym->attr.in_equivalence
12051 || sym->attr.in_common
12052 || sym->attr.data
12053 || sym->module
12054 || sym->attr.cray_pointee
12055 || sym->attr.cray_pointer
12056 || sym->assoc)
12057 return NULL;
12058
12059 /* Get the appropriate init expression. */
12060 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
12061 }
12062
12063 /* Add an initialization expression to a local variable. */
12064 static void
12065 apply_default_init_local (gfc_symbol *sym)
12066 {
12067 gfc_expr *init = NULL;
12068
12069 /* The symbol should be a variable or a function return value. */
12070 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12071 || (sym->attr.function && sym->result != sym))
12072 return;
12073
12074 /* Try to build the initializer expression. If we can't initialize
12075 this symbol, then init will be NULL. */
12076 init = build_default_init_expr (sym);
12077 if (init == NULL)
12078 return;
12079
12080 /* For saved variables, we don't want to add an initializer at function
12081 entry, so we just add a static initializer. Note that automatic variables
12082 are stack allocated even with -fno-automatic; we have also to exclude
12083 result variable, which are also nonstatic. */
12084 if (!sym->attr.automatic
12085 && (sym->attr.save || sym->ns->save_all
12086 || (flag_max_stack_var_size == 0 && !sym->attr.result
12087 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
12088 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
12089 {
12090 /* Don't clobber an existing initializer! */
12091 gcc_assert (sym->value == NULL);
12092 sym->value = init;
12093 return;
12094 }
12095
12096 build_init_assign (sym, init);
12097 }
12098
12099
12100 /* Resolution of common features of flavors variable and procedure. */
12101
12102 static bool
12103 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
12104 {
12105 gfc_array_spec *as;
12106
12107 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12108 as = CLASS_DATA (sym)->as;
12109 else
12110 as = sym->as;
12111
12112 /* Constraints on deferred shape variable. */
12113 if (as == NULL || as->type != AS_DEFERRED)
12114 {
12115 bool pointer, allocatable, dimension;
12116
12117 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12118 {
12119 pointer = CLASS_DATA (sym)->attr.class_pointer;
12120 allocatable = CLASS_DATA (sym)->attr.allocatable;
12121 dimension = CLASS_DATA (sym)->attr.dimension;
12122 }
12123 else
12124 {
12125 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
12126 allocatable = sym->attr.allocatable;
12127 dimension = sym->attr.dimension;
12128 }
12129
12130 if (allocatable)
12131 {
12132 if (dimension && as->type != AS_ASSUMED_RANK)
12133 {
12134 gfc_error ("Allocatable array %qs at %L must have a deferred "
12135 "shape or assumed rank", sym->name, &sym->declared_at);
12136 return false;
12137 }
12138 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
12139 "%qs at %L may not be ALLOCATABLE",
12140 sym->name, &sym->declared_at))
12141 return false;
12142 }
12143
12144 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
12145 {
12146 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
12147 "assumed rank", sym->name, &sym->declared_at);
12148 return false;
12149 }
12150 }
12151 else
12152 {
12153 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
12154 && sym->ts.type != BT_CLASS && !sym->assoc)
12155 {
12156 gfc_error ("Array %qs at %L cannot have a deferred shape",
12157 sym->name, &sym->declared_at);
12158 return false;
12159 }
12160 }
12161
12162 /* Constraints on polymorphic variables. */
12163 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
12164 {
12165 /* F03:C502. */
12166 if (sym->attr.class_ok
12167 && !sym->attr.select_type_temporary
12168 && !UNLIMITED_POLY (sym)
12169 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
12170 {
12171 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
12172 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
12173 &sym->declared_at);
12174 return false;
12175 }
12176
12177 /* F03:C509. */
12178 /* Assume that use associated symbols were checked in the module ns.
12179 Class-variables that are associate-names are also something special
12180 and excepted from the test. */
12181 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
12182 {
12183 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
12184 "or pointer", sym->name, &sym->declared_at);
12185 return false;
12186 }
12187 }
12188
12189 return true;
12190 }
12191
12192
12193 /* Additional checks for symbols with flavor variable and derived
12194 type. To be called from resolve_fl_variable. */
12195
12196 static bool
12197 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12198 {
12199 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12200
12201 /* Check to see if a derived type is blocked from being host
12202 associated by the presence of another class I symbol in the same
12203 namespace. 14.6.1.3 of the standard and the discussion on
12204 comp.lang.fortran. */
12205 if (sym->ns != sym->ts.u.derived->ns
12206 && !sym->ts.u.derived->attr.use_assoc
12207 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12208 {
12209 gfc_symbol *s;
12210 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12211 if (s && s->attr.generic)
12212 s = gfc_find_dt_in_generic (s);
12213 if (s && !gfc_fl_struct (s->attr.flavor))
12214 {
12215 gfc_error ("The type %qs cannot be host associated at %L "
12216 "because it is blocked by an incompatible object "
12217 "of the same name declared at %L",
12218 sym->ts.u.derived->name, &sym->declared_at,
12219 &s->declared_at);
12220 return false;
12221 }
12222 }
12223
12224 /* 4th constraint in section 11.3: "If an object of a type for which
12225 component-initialization is specified (R429) appears in the
12226 specification-part of a module and does not have the ALLOCATABLE
12227 or POINTER attribute, the object shall have the SAVE attribute."
12228
12229 The check for initializers is performed with
12230 gfc_has_default_initializer because gfc_default_initializer generates
12231 a hidden default for allocatable components. */
12232 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12233 && sym->ns->proc_name->attr.flavor == FL_MODULE
12234 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12235 && !sym->attr.pointer && !sym->attr.allocatable
12236 && gfc_has_default_initializer (sym->ts.u.derived)
12237 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12238 "%qs at %L, needed due to the default "
12239 "initialization", sym->name, &sym->declared_at))
12240 return false;
12241
12242 /* Assign default initializer. */
12243 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12244 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12245 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12246
12247 return true;
12248 }
12249
12250
12251 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12252 except in the declaration of an entity or component that has the POINTER
12253 or ALLOCATABLE attribute. */
12254
12255 static bool
12256 deferred_requirements (gfc_symbol *sym)
12257 {
12258 if (sym->ts.deferred
12259 && !(sym->attr.pointer
12260 || sym->attr.allocatable
12261 || sym->attr.associate_var
12262 || sym->attr.omp_udr_artificial_var))
12263 {
12264 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12265 "requires either the POINTER or ALLOCATABLE attribute",
12266 sym->name, &sym->declared_at);
12267 return false;
12268 }
12269 return true;
12270 }
12271
12272
12273 /* Resolve symbols with flavor variable. */
12274
12275 static bool
12276 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12277 {
12278 const char *auto_save_msg = "Automatic object %qs at %L cannot have the "
12279 "SAVE attribute";
12280
12281 if (!resolve_fl_var_and_proc (sym, mp_flag))
12282 return false;
12283
12284 /* Set this flag to check that variables are parameters of all entries.
12285 This check is effected by the call to gfc_resolve_expr through
12286 is_non_constant_shape_array. */
12287 bool saved_specification_expr = specification_expr;
12288 specification_expr = true;
12289
12290 if (sym->ns->proc_name
12291 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12292 || sym->ns->proc_name->attr.is_main_program)
12293 && !sym->attr.use_assoc
12294 && !sym->attr.allocatable
12295 && !sym->attr.pointer
12296 && is_non_constant_shape_array (sym))
12297 {
12298 /* F08:C541. The shape of an array defined in a main program or module
12299 * needs to be constant. */
12300 gfc_error ("The module or main program array %qs at %L must "
12301 "have constant shape", sym->name, &sym->declared_at);
12302 specification_expr = saved_specification_expr;
12303 return false;
12304 }
12305
12306 /* Constraints on deferred type parameter. */
12307 if (!deferred_requirements (sym))
12308 return false;
12309
12310 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12311 {
12312 /* Make sure that character string variables with assumed length are
12313 dummy arguments. */
12314 gfc_expr *e = NULL;
12315
12316 if (sym->ts.u.cl)
12317 e = sym->ts.u.cl->length;
12318 else
12319 return false;
12320
12321 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12322 && !sym->ts.deferred && !sym->attr.select_type_temporary
12323 && !sym->attr.omp_udr_artificial_var)
12324 {
12325 gfc_error ("Entity with assumed character length at %L must be a "
12326 "dummy argument or a PARAMETER", &sym->declared_at);
12327 specification_expr = saved_specification_expr;
12328 return false;
12329 }
12330
12331 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12332 {
12333 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12334 specification_expr = saved_specification_expr;
12335 return false;
12336 }
12337
12338 if (!gfc_is_constant_expr (e)
12339 && !(e->expr_type == EXPR_VARIABLE
12340 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12341 {
12342 if (!sym->attr.use_assoc && sym->ns->proc_name
12343 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12344 || sym->ns->proc_name->attr.is_main_program))
12345 {
12346 gfc_error ("%qs at %L must have constant character length "
12347 "in this context", sym->name, &sym->declared_at);
12348 specification_expr = saved_specification_expr;
12349 return false;
12350 }
12351 if (sym->attr.in_common)
12352 {
12353 gfc_error ("COMMON variable %qs at %L must have constant "
12354 "character length", sym->name, &sym->declared_at);
12355 specification_expr = saved_specification_expr;
12356 return false;
12357 }
12358 }
12359 }
12360
12361 if (sym->value == NULL && sym->attr.referenced)
12362 apply_default_init_local (sym); /* Try to apply a default initialization. */
12363
12364 /* Determine if the symbol may not have an initializer. */
12365 int no_init_flag = 0, automatic_flag = 0;
12366 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12367 || sym->attr.intrinsic || sym->attr.result)
12368 no_init_flag = 1;
12369 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12370 && is_non_constant_shape_array (sym))
12371 {
12372 no_init_flag = automatic_flag = 1;
12373
12374 /* Also, they must not have the SAVE attribute.
12375 SAVE_IMPLICIT is checked below. */
12376 if (sym->as && sym->attr.codimension)
12377 {
12378 int corank = sym->as->corank;
12379 sym->as->corank = 0;
12380 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12381 sym->as->corank = corank;
12382 }
12383 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12384 {
12385 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12386 specification_expr = saved_specification_expr;
12387 return false;
12388 }
12389 }
12390
12391 /* Ensure that any initializer is simplified. */
12392 if (sym->value)
12393 gfc_simplify_expr (sym->value, 1);
12394
12395 /* Reject illegal initializers. */
12396 if (!sym->mark && sym->value)
12397 {
12398 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12399 && CLASS_DATA (sym)->attr.allocatable))
12400 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12401 sym->name, &sym->declared_at);
12402 else if (sym->attr.external)
12403 gfc_error ("External %qs at %L cannot have an initializer",
12404 sym->name, &sym->declared_at);
12405 else if (sym->attr.dummy
12406 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12407 gfc_error ("Dummy %qs at %L cannot have an initializer",
12408 sym->name, &sym->declared_at);
12409 else if (sym->attr.intrinsic)
12410 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12411 sym->name, &sym->declared_at);
12412 else if (sym->attr.result)
12413 gfc_error ("Function result %qs at %L cannot have an initializer",
12414 sym->name, &sym->declared_at);
12415 else if (automatic_flag)
12416 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12417 sym->name, &sym->declared_at);
12418 else
12419 goto no_init_error;
12420 specification_expr = saved_specification_expr;
12421 return false;
12422 }
12423
12424 no_init_error:
12425 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12426 {
12427 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12428 specification_expr = saved_specification_expr;
12429 return res;
12430 }
12431
12432 specification_expr = saved_specification_expr;
12433 return true;
12434 }
12435
12436
12437 /* Compare the dummy characteristics of a module procedure interface
12438 declaration with the corresponding declaration in a submodule. */
12439 static gfc_formal_arglist *new_formal;
12440 static char errmsg[200];
12441
12442 static void
12443 compare_fsyms (gfc_symbol *sym)
12444 {
12445 gfc_symbol *fsym;
12446
12447 if (sym == NULL || new_formal == NULL)
12448 return;
12449
12450 fsym = new_formal->sym;
12451
12452 if (sym == fsym)
12453 return;
12454
12455 if (strcmp (sym->name, fsym->name) == 0)
12456 {
12457 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12458 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12459 }
12460 }
12461
12462
12463 /* Resolve a procedure. */
12464
12465 static bool
12466 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12467 {
12468 gfc_formal_arglist *arg;
12469
12470 if (sym->attr.function
12471 && !resolve_fl_var_and_proc (sym, mp_flag))
12472 return false;
12473
12474 if (sym->ts.type == BT_CHARACTER)
12475 {
12476 gfc_charlen *cl = sym->ts.u.cl;
12477
12478 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12479 && !resolve_charlen (cl))
12480 return false;
12481
12482 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12483 && sym->attr.proc == PROC_ST_FUNCTION)
12484 {
12485 gfc_error ("Character-valued statement function %qs at %L must "
12486 "have constant length", sym->name, &sym->declared_at);
12487 return false;
12488 }
12489 }
12490
12491 /* Ensure that derived type for are not of a private type. Internal
12492 module procedures are excluded by 2.2.3.3 - i.e., they are not
12493 externally accessible and can access all the objects accessible in
12494 the host. */
12495 if (!(sym->ns->parent && sym->ns->parent->proc_name
12496 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12497 && gfc_check_symbol_access (sym))
12498 {
12499 gfc_interface *iface;
12500
12501 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12502 {
12503 if (arg->sym
12504 && arg->sym->ts.type == BT_DERIVED
12505 && !arg->sym->ts.u.derived->attr.use_assoc
12506 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12507 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
12508 "and cannot be a dummy argument"
12509 " of %qs, which is PUBLIC at %L",
12510 arg->sym->name, sym->name,
12511 &sym->declared_at))
12512 {
12513 /* Stop this message from recurring. */
12514 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12515 return false;
12516 }
12517 }
12518
12519 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12520 PRIVATE to the containing module. */
12521 for (iface = sym->generic; iface; iface = iface->next)
12522 {
12523 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
12524 {
12525 if (arg->sym
12526 && arg->sym->ts.type == BT_DERIVED
12527 && !arg->sym->ts.u.derived->attr.use_assoc
12528 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12529 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
12530 "PUBLIC interface %qs at %L "
12531 "takes dummy arguments of %qs which "
12532 "is PRIVATE", iface->sym->name,
12533 sym->name, &iface->sym->declared_at,
12534 gfc_typename(&arg->sym->ts)))
12535 {
12536 /* Stop this message from recurring. */
12537 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12538 return false;
12539 }
12540 }
12541 }
12542 }
12543
12544 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
12545 && !sym->attr.proc_pointer)
12546 {
12547 gfc_error ("Function %qs at %L cannot have an initializer",
12548 sym->name, &sym->declared_at);
12549
12550 /* Make sure no second error is issued for this. */
12551 sym->value->error = 1;
12552 return false;
12553 }
12554
12555 /* An external symbol may not have an initializer because it is taken to be
12556 a procedure. Exception: Procedure Pointers. */
12557 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
12558 {
12559 gfc_error ("External object %qs at %L may not have an initializer",
12560 sym->name, &sym->declared_at);
12561 return false;
12562 }
12563
12564 /* An elemental function is required to return a scalar 12.7.1 */
12565 if (sym->attr.elemental && sym->attr.function
12566 && (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)))
12567 {
12568 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
12569 "result", sym->name, &sym->declared_at);
12570 /* Reset so that the error only occurs once. */
12571 sym->attr.elemental = 0;
12572 return false;
12573 }
12574
12575 if (sym->attr.proc == PROC_ST_FUNCTION
12576 && (sym->attr.allocatable || sym->attr.pointer))
12577 {
12578 gfc_error ("Statement function %qs at %L may not have pointer or "
12579 "allocatable attribute", sym->name, &sym->declared_at);
12580 return false;
12581 }
12582
12583 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
12584 char-len-param shall not be array-valued, pointer-valued, recursive
12585 or pure. ....snip... A character value of * may only be used in the
12586 following ways: (i) Dummy arg of procedure - dummy associates with
12587 actual length; (ii) To declare a named constant; or (iii) External
12588 function - but length must be declared in calling scoping unit. */
12589 if (sym->attr.function
12590 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
12591 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
12592 {
12593 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
12594 || (sym->attr.recursive) || (sym->attr.pure))
12595 {
12596 if (sym->as && sym->as->rank)
12597 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12598 "array-valued", sym->name, &sym->declared_at);
12599
12600 if (sym->attr.pointer)
12601 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12602 "pointer-valued", sym->name, &sym->declared_at);
12603
12604 if (sym->attr.pure)
12605 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12606 "pure", sym->name, &sym->declared_at);
12607
12608 if (sym->attr.recursive)
12609 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12610 "recursive", sym->name, &sym->declared_at);
12611
12612 return false;
12613 }
12614
12615 /* Appendix B.2 of the standard. Contained functions give an
12616 error anyway. Deferred character length is an F2003 feature.
12617 Don't warn on intrinsic conversion functions, which start
12618 with two underscores. */
12619 if (!sym->attr.contained && !sym->ts.deferred
12620 && (sym->name[0] != '_' || sym->name[1] != '_'))
12621 gfc_notify_std (GFC_STD_F95_OBS,
12622 "CHARACTER(*) function %qs at %L",
12623 sym->name, &sym->declared_at);
12624 }
12625
12626 /* F2008, C1218. */
12627 if (sym->attr.elemental)
12628 {
12629 if (sym->attr.proc_pointer)
12630 {
12631 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
12632 sym->name, &sym->declared_at);
12633 return false;
12634 }
12635 if (sym->attr.dummy)
12636 {
12637 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
12638 sym->name, &sym->declared_at);
12639 return false;
12640 }
12641 }
12642
12643 /* F2018, C15100: "The result of an elemental function shall be scalar,
12644 and shall not have the POINTER or ALLOCATABLE attribute." The scalar
12645 pointer is tested and caught elsewhere. */
12646 if (sym->attr.elemental && sym->result
12647 && (sym->result->attr.allocatable || sym->result->attr.pointer))
12648 {
12649 gfc_error ("Function result variable %qs at %L of elemental "
12650 "function %qs shall not have an ALLOCATABLE or POINTER "
12651 "attribute", sym->result->name,
12652 &sym->result->declared_at, sym->name);
12653 return false;
12654 }
12655
12656 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
12657 {
12658 gfc_formal_arglist *curr_arg;
12659 int has_non_interop_arg = 0;
12660
12661 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
12662 sym->common_block))
12663 {
12664 /* Clear these to prevent looking at them again if there was an
12665 error. */
12666 sym->attr.is_bind_c = 0;
12667 sym->attr.is_c_interop = 0;
12668 sym->ts.is_c_interop = 0;
12669 }
12670 else
12671 {
12672 /* So far, no errors have been found. */
12673 sym->attr.is_c_interop = 1;
12674 sym->ts.is_c_interop = 1;
12675 }
12676
12677 curr_arg = gfc_sym_get_dummy_args (sym);
12678 while (curr_arg != NULL)
12679 {
12680 /* Skip implicitly typed dummy args here. */
12681 if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
12682 if (!gfc_verify_c_interop_param (curr_arg->sym))
12683 /* If something is found to fail, record the fact so we
12684 can mark the symbol for the procedure as not being
12685 BIND(C) to try and prevent multiple errors being
12686 reported. */
12687 has_non_interop_arg = 1;
12688
12689 curr_arg = curr_arg->next;
12690 }
12691
12692 /* See if any of the arguments were not interoperable and if so, clear
12693 the procedure symbol to prevent duplicate error messages. */
12694 if (has_non_interop_arg != 0)
12695 {
12696 sym->attr.is_c_interop = 0;
12697 sym->ts.is_c_interop = 0;
12698 sym->attr.is_bind_c = 0;
12699 }
12700 }
12701
12702 if (!sym->attr.proc_pointer)
12703 {
12704 if (sym->attr.save == SAVE_EXPLICIT)
12705 {
12706 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
12707 "in %qs at %L", sym->name, &sym->declared_at);
12708 return false;
12709 }
12710 if (sym->attr.intent)
12711 {
12712 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
12713 "in %qs at %L", sym->name, &sym->declared_at);
12714 return false;
12715 }
12716 if (sym->attr.subroutine && sym->attr.result)
12717 {
12718 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
12719 "in %qs at %L", sym->name, &sym->declared_at);
12720 return false;
12721 }
12722 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
12723 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
12724 || sym->attr.contained))
12725 {
12726 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
12727 "in %qs at %L", sym->name, &sym->declared_at);
12728 return false;
12729 }
12730 if (strcmp ("ppr@", sym->name) == 0)
12731 {
12732 gfc_error ("Procedure pointer result %qs at %L "
12733 "is missing the pointer attribute",
12734 sym->ns->proc_name->name, &sym->declared_at);
12735 return false;
12736 }
12737 }
12738
12739 /* Assume that a procedure whose body is not known has references
12740 to external arrays. */
12741 if (sym->attr.if_source != IFSRC_DECL)
12742 sym->attr.array_outer_dependency = 1;
12743
12744 /* Compare the characteristics of a module procedure with the
12745 interface declaration. Ideally this would be done with
12746 gfc_compare_interfaces but, at present, the formal interface
12747 cannot be copied to the ts.interface. */
12748 if (sym->attr.module_procedure
12749 && sym->attr.if_source == IFSRC_DECL)
12750 {
12751 gfc_symbol *iface;
12752 char name[2*GFC_MAX_SYMBOL_LEN + 1];
12753 char *module_name;
12754 char *submodule_name;
12755 strcpy (name, sym->ns->proc_name->name);
12756 module_name = strtok (name, ".");
12757 submodule_name = strtok (NULL, ".");
12758
12759 iface = sym->tlink;
12760 sym->tlink = NULL;
12761
12762 /* Make sure that the result uses the correct charlen for deferred
12763 length results. */
12764 if (iface && sym->result
12765 && iface->ts.type == BT_CHARACTER
12766 && iface->ts.deferred)
12767 sym->result->ts.u.cl = iface->ts.u.cl;
12768
12769 if (iface == NULL)
12770 goto check_formal;
12771
12772 /* Check the procedure characteristics. */
12773 if (sym->attr.elemental != iface->attr.elemental)
12774 {
12775 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
12776 "PROCEDURE at %L and its interface in %s",
12777 &sym->declared_at, module_name);
12778 return false;
12779 }
12780
12781 if (sym->attr.pure != iface->attr.pure)
12782 {
12783 gfc_error ("Mismatch in PURE attribute between MODULE "
12784 "PROCEDURE at %L and its interface in %s",
12785 &sym->declared_at, module_name);
12786 return false;
12787 }
12788
12789 if (sym->attr.recursive != iface->attr.recursive)
12790 {
12791 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
12792 "PROCEDURE at %L and its interface in %s",
12793 &sym->declared_at, module_name);
12794 return false;
12795 }
12796
12797 /* Check the result characteristics. */
12798 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
12799 {
12800 gfc_error ("%s between the MODULE PROCEDURE declaration "
12801 "in MODULE %qs and the declaration at %L in "
12802 "(SUB)MODULE %qs",
12803 errmsg, module_name, &sym->declared_at,
12804 submodule_name ? submodule_name : module_name);
12805 return false;
12806 }
12807
12808 check_formal:
12809 /* Check the characteristics of the formal arguments. */
12810 if (sym->formal && sym->formal_ns)
12811 {
12812 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
12813 {
12814 new_formal = arg;
12815 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
12816 }
12817 }
12818 }
12819 return true;
12820 }
12821
12822
12823 /* Resolve a list of finalizer procedures. That is, after they have hopefully
12824 been defined and we now know their defined arguments, check that they fulfill
12825 the requirements of the standard for procedures used as finalizers. */
12826
12827 static bool
12828 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
12829 {
12830 gfc_finalizer* list;
12831 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
12832 bool result = true;
12833 bool seen_scalar = false;
12834 gfc_symbol *vtab;
12835 gfc_component *c;
12836 gfc_symbol *parent = gfc_get_derived_super_type (derived);
12837
12838 if (parent)
12839 gfc_resolve_finalizers (parent, finalizable);
12840
12841 /* Ensure that derived-type components have a their finalizers resolved. */
12842 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
12843 for (c = derived->components; c; c = c->next)
12844 if (c->ts.type == BT_DERIVED
12845 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
12846 {
12847 bool has_final2 = false;
12848 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
12849 return false; /* Error. */
12850 has_final = has_final || has_final2;
12851 }
12852 /* Return early if not finalizable. */
12853 if (!has_final)
12854 {
12855 if (finalizable)
12856 *finalizable = false;
12857 return true;
12858 }
12859
12860 /* Walk over the list of finalizer-procedures, check them, and if any one
12861 does not fit in with the standard's definition, print an error and remove
12862 it from the list. */
12863 prev_link = &derived->f2k_derived->finalizers;
12864 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
12865 {
12866 gfc_formal_arglist *dummy_args;
12867 gfc_symbol* arg;
12868 gfc_finalizer* i;
12869 int my_rank;
12870
12871 /* Skip this finalizer if we already resolved it. */
12872 if (list->proc_tree)
12873 {
12874 if (list->proc_tree->n.sym->formal->sym->as == NULL
12875 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
12876 seen_scalar = true;
12877 prev_link = &(list->next);
12878 continue;
12879 }
12880
12881 /* Check this exists and is a SUBROUTINE. */
12882 if (!list->proc_sym->attr.subroutine)
12883 {
12884 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
12885 list->proc_sym->name, &list->where);
12886 goto error;
12887 }
12888
12889 /* We should have exactly one argument. */
12890 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
12891 if (!dummy_args || dummy_args->next)
12892 {
12893 gfc_error ("FINAL procedure at %L must have exactly one argument",
12894 &list->where);
12895 goto error;
12896 }
12897 arg = dummy_args->sym;
12898
12899 /* This argument must be of our type. */
12900 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
12901 {
12902 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
12903 &arg->declared_at, derived->name);
12904 goto error;
12905 }
12906
12907 /* It must neither be a pointer nor allocatable nor optional. */
12908 if (arg->attr.pointer)
12909 {
12910 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
12911 &arg->declared_at);
12912 goto error;
12913 }
12914 if (arg->attr.allocatable)
12915 {
12916 gfc_error ("Argument of FINAL procedure at %L must not be"
12917 " ALLOCATABLE", &arg->declared_at);
12918 goto error;
12919 }
12920 if (arg->attr.optional)
12921 {
12922 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
12923 &arg->declared_at);
12924 goto error;
12925 }
12926
12927 /* It must not be INTENT(OUT). */
12928 if (arg->attr.intent == INTENT_OUT)
12929 {
12930 gfc_error ("Argument of FINAL procedure at %L must not be"
12931 " INTENT(OUT)", &arg->declared_at);
12932 goto error;
12933 }
12934
12935 /* Warn if the procedure is non-scalar and not assumed shape. */
12936 if (warn_surprising && arg->as && arg->as->rank != 0
12937 && arg->as->type != AS_ASSUMED_SHAPE)
12938 gfc_warning (OPT_Wsurprising,
12939 "Non-scalar FINAL procedure at %L should have assumed"
12940 " shape argument", &arg->declared_at);
12941
12942 /* Check that it does not match in kind and rank with a FINAL procedure
12943 defined earlier. To really loop over the *earlier* declarations,
12944 we need to walk the tail of the list as new ones were pushed at the
12945 front. */
12946 /* TODO: Handle kind parameters once they are implemented. */
12947 my_rank = (arg->as ? arg->as->rank : 0);
12948 for (i = list->next; i; i = i->next)
12949 {
12950 gfc_formal_arglist *dummy_args;
12951
12952 /* Argument list might be empty; that is an error signalled earlier,
12953 but we nevertheless continued resolving. */
12954 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
12955 if (dummy_args)
12956 {
12957 gfc_symbol* i_arg = dummy_args->sym;
12958 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
12959 if (i_rank == my_rank)
12960 {
12961 gfc_error ("FINAL procedure %qs declared at %L has the same"
12962 " rank (%d) as %qs",
12963 list->proc_sym->name, &list->where, my_rank,
12964 i->proc_sym->name);
12965 goto error;
12966 }
12967 }
12968 }
12969
12970 /* Is this the/a scalar finalizer procedure? */
12971 if (my_rank == 0)
12972 seen_scalar = true;
12973
12974 /* Find the symtree for this procedure. */
12975 gcc_assert (!list->proc_tree);
12976 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
12977
12978 prev_link = &list->next;
12979 continue;
12980
12981 /* Remove wrong nodes immediately from the list so we don't risk any
12982 troubles in the future when they might fail later expectations. */
12983 error:
12984 i = list;
12985 *prev_link = list->next;
12986 gfc_free_finalizer (i);
12987 result = false;
12988 }
12989
12990 if (result == false)
12991 return false;
12992
12993 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
12994 were nodes in the list, must have been for arrays. It is surely a good
12995 idea to have a scalar version there if there's something to finalize. */
12996 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
12997 gfc_warning (OPT_Wsurprising,
12998 "Only array FINAL procedures declared for derived type %qs"
12999 " defined at %L, suggest also scalar one",
13000 derived->name, &derived->declared_at);
13001
13002 vtab = gfc_find_derived_vtab (derived);
13003 c = vtab->ts.u.derived->components->next->next->next->next->next;
13004 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
13005
13006 if (finalizable)
13007 *finalizable = true;
13008
13009 return true;
13010 }
13011
13012
13013 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
13014
13015 static bool
13016 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
13017 const char* generic_name, locus where)
13018 {
13019 gfc_symbol *sym1, *sym2;
13020 const char *pass1, *pass2;
13021 gfc_formal_arglist *dummy_args;
13022
13023 gcc_assert (t1->specific && t2->specific);
13024 gcc_assert (!t1->specific->is_generic);
13025 gcc_assert (!t2->specific->is_generic);
13026 gcc_assert (t1->is_operator == t2->is_operator);
13027
13028 sym1 = t1->specific->u.specific->n.sym;
13029 sym2 = t2->specific->u.specific->n.sym;
13030
13031 if (sym1 == sym2)
13032 return true;
13033
13034 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
13035 if (sym1->attr.subroutine != sym2->attr.subroutine
13036 || sym1->attr.function != sym2->attr.function)
13037 {
13038 gfc_error ("%qs and %qs can't be mixed FUNCTION/SUBROUTINE for"
13039 " GENERIC %qs at %L",
13040 sym1->name, sym2->name, generic_name, &where);
13041 return false;
13042 }
13043
13044 /* Determine PASS arguments. */
13045 if (t1->specific->nopass)
13046 pass1 = NULL;
13047 else if (t1->specific->pass_arg)
13048 pass1 = t1->specific->pass_arg;
13049 else
13050 {
13051 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
13052 if (dummy_args)
13053 pass1 = dummy_args->sym->name;
13054 else
13055 pass1 = NULL;
13056 }
13057 if (t2->specific->nopass)
13058 pass2 = NULL;
13059 else if (t2->specific->pass_arg)
13060 pass2 = t2->specific->pass_arg;
13061 else
13062 {
13063 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
13064 if (dummy_args)
13065 pass2 = dummy_args->sym->name;
13066 else
13067 pass2 = NULL;
13068 }
13069
13070 /* Compare the interfaces. */
13071 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
13072 NULL, 0, pass1, pass2))
13073 {
13074 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
13075 sym1->name, sym2->name, generic_name, &where);
13076 return false;
13077 }
13078
13079 return true;
13080 }
13081
13082
13083 /* Worker function for resolving a generic procedure binding; this is used to
13084 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
13085
13086 The difference between those cases is finding possible inherited bindings
13087 that are overridden, as one has to look for them in tb_sym_root,
13088 tb_uop_root or tb_op, respectively. Thus the caller must already find
13089 the super-type and set p->overridden correctly. */
13090
13091 static bool
13092 resolve_tb_generic_targets (gfc_symbol* super_type,
13093 gfc_typebound_proc* p, const char* name)
13094 {
13095 gfc_tbp_generic* target;
13096 gfc_symtree* first_target;
13097 gfc_symtree* inherited;
13098
13099 gcc_assert (p && p->is_generic);
13100
13101 /* Try to find the specific bindings for the symtrees in our target-list. */
13102 gcc_assert (p->u.generic);
13103 for (target = p->u.generic; target; target = target->next)
13104 if (!target->specific)
13105 {
13106 gfc_typebound_proc* overridden_tbp;
13107 gfc_tbp_generic* g;
13108 const char* target_name;
13109
13110 target_name = target->specific_st->name;
13111
13112 /* Defined for this type directly. */
13113 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
13114 {
13115 target->specific = target->specific_st->n.tb;
13116 goto specific_found;
13117 }
13118
13119 /* Look for an inherited specific binding. */
13120 if (super_type)
13121 {
13122 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
13123 true, NULL);
13124
13125 if (inherited)
13126 {
13127 gcc_assert (inherited->n.tb);
13128 target->specific = inherited->n.tb;
13129 goto specific_found;
13130 }
13131 }
13132
13133 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
13134 " at %L", target_name, name, &p->where);
13135 return false;
13136
13137 /* Once we've found the specific binding, check it is not ambiguous with
13138 other specifics already found or inherited for the same GENERIC. */
13139 specific_found:
13140 gcc_assert (target->specific);
13141
13142 /* This must really be a specific binding! */
13143 if (target->specific->is_generic)
13144 {
13145 gfc_error ("GENERIC %qs at %L must target a specific binding,"
13146 " %qs is GENERIC, too", name, &p->where, target_name);
13147 return false;
13148 }
13149
13150 /* Check those already resolved on this type directly. */
13151 for (g = p->u.generic; g; g = g->next)
13152 if (g != target && g->specific
13153 && !check_generic_tbp_ambiguity (target, g, name, p->where))
13154 return false;
13155
13156 /* Check for ambiguity with inherited specific targets. */
13157 for (overridden_tbp = p->overridden; overridden_tbp;
13158 overridden_tbp = overridden_tbp->overridden)
13159 if (overridden_tbp->is_generic)
13160 {
13161 for (g = overridden_tbp->u.generic; g; g = g->next)
13162 {
13163 gcc_assert (g->specific);
13164 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
13165 return false;
13166 }
13167 }
13168 }
13169
13170 /* If we attempt to "overwrite" a specific binding, this is an error. */
13171 if (p->overridden && !p->overridden->is_generic)
13172 {
13173 gfc_error ("GENERIC %qs at %L can't overwrite specific binding with"
13174 " the same name", name, &p->where);
13175 return false;
13176 }
13177
13178 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
13179 all must have the same attributes here. */
13180 first_target = p->u.generic->specific->u.specific;
13181 gcc_assert (first_target);
13182 p->subroutine = first_target->n.sym->attr.subroutine;
13183 p->function = first_target->n.sym->attr.function;
13184
13185 return true;
13186 }
13187
13188
13189 /* Resolve a GENERIC procedure binding for a derived type. */
13190
13191 static bool
13192 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
13193 {
13194 gfc_symbol* super_type;
13195
13196 /* Find the overridden binding if any. */
13197 st->n.tb->overridden = NULL;
13198 super_type = gfc_get_derived_super_type (derived);
13199 if (super_type)
13200 {
13201 gfc_symtree* overridden;
13202 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
13203 true, NULL);
13204
13205 if (overridden && overridden->n.tb)
13206 st->n.tb->overridden = overridden->n.tb;
13207 }
13208
13209 /* Resolve using worker function. */
13210 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13211 }
13212
13213
13214 /* Retrieve the target-procedure of an operator binding and do some checks in
13215 common for intrinsic and user-defined type-bound operators. */
13216
13217 static gfc_symbol*
13218 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13219 {
13220 gfc_symbol* target_proc;
13221
13222 gcc_assert (target->specific && !target->specific->is_generic);
13223 target_proc = target->specific->u.specific->n.sym;
13224 gcc_assert (target_proc);
13225
13226 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13227 if (target->specific->nopass)
13228 {
13229 gfc_error ("Type-bound operator at %L can't be NOPASS", &where);
13230 return NULL;
13231 }
13232
13233 return target_proc;
13234 }
13235
13236
13237 /* Resolve a type-bound intrinsic operator. */
13238
13239 static bool
13240 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13241 gfc_typebound_proc* p)
13242 {
13243 gfc_symbol* super_type;
13244 gfc_tbp_generic* target;
13245
13246 /* If there's already an error here, do nothing (but don't fail again). */
13247 if (p->error)
13248 return true;
13249
13250 /* Operators should always be GENERIC bindings. */
13251 gcc_assert (p->is_generic);
13252
13253 /* Look for an overridden binding. */
13254 super_type = gfc_get_derived_super_type (derived);
13255 if (super_type && super_type->f2k_derived)
13256 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13257 op, true, NULL);
13258 else
13259 p->overridden = NULL;
13260
13261 /* Resolve general GENERIC properties using worker function. */
13262 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13263 goto error;
13264
13265 /* Check the targets to be procedures of correct interface. */
13266 for (target = p->u.generic; target; target = target->next)
13267 {
13268 gfc_symbol* target_proc;
13269
13270 target_proc = get_checked_tb_operator_target (target, p->where);
13271 if (!target_proc)
13272 goto error;
13273
13274 if (!gfc_check_operator_interface (target_proc, op, p->where))
13275 goto error;
13276
13277 /* Add target to non-typebound operator list. */
13278 if (!target->specific->deferred && !derived->attr.use_assoc
13279 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13280 {
13281 gfc_interface *head, *intr;
13282
13283 /* Preempt 'gfc_check_new_interface' for submodules, where the
13284 mechanism for handling module procedures winds up resolving
13285 operator interfaces twice and would otherwise cause an error. */
13286 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13287 if (intr->sym == target_proc
13288 && target_proc->attr.used_in_submodule)
13289 return true;
13290
13291 if (!gfc_check_new_interface (derived->ns->op[op],
13292 target_proc, p->where))
13293 return false;
13294 head = derived->ns->op[op];
13295 intr = gfc_get_interface ();
13296 intr->sym = target_proc;
13297 intr->where = p->where;
13298 intr->next = head;
13299 derived->ns->op[op] = intr;
13300 }
13301 }
13302
13303 return true;
13304
13305 error:
13306 p->error = 1;
13307 return false;
13308 }
13309
13310
13311 /* Resolve a type-bound user operator (tree-walker callback). */
13312
13313 static gfc_symbol* resolve_bindings_derived;
13314 static bool resolve_bindings_result;
13315
13316 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13317
13318 static void
13319 resolve_typebound_user_op (gfc_symtree* stree)
13320 {
13321 gfc_symbol* super_type;
13322 gfc_tbp_generic* target;
13323
13324 gcc_assert (stree && stree->n.tb);
13325
13326 if (stree->n.tb->error)
13327 return;
13328
13329 /* Operators should always be GENERIC bindings. */
13330 gcc_assert (stree->n.tb->is_generic);
13331
13332 /* Find overridden procedure, if any. */
13333 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13334 if (super_type && super_type->f2k_derived)
13335 {
13336 gfc_symtree* overridden;
13337 overridden = gfc_find_typebound_user_op (super_type, NULL,
13338 stree->name, true, NULL);
13339
13340 if (overridden && overridden->n.tb)
13341 stree->n.tb->overridden = overridden->n.tb;
13342 }
13343 else
13344 stree->n.tb->overridden = NULL;
13345
13346 /* Resolve basically using worker function. */
13347 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13348 goto error;
13349
13350 /* Check the targets to be functions of correct interface. */
13351 for (target = stree->n.tb->u.generic; target; target = target->next)
13352 {
13353 gfc_symbol* target_proc;
13354
13355 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13356 if (!target_proc)
13357 goto error;
13358
13359 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13360 goto error;
13361 }
13362
13363 return;
13364
13365 error:
13366 resolve_bindings_result = false;
13367 stree->n.tb->error = 1;
13368 }
13369
13370
13371 /* Resolve the type-bound procedures for a derived type. */
13372
13373 static void
13374 resolve_typebound_procedure (gfc_symtree* stree)
13375 {
13376 gfc_symbol* proc;
13377 locus where;
13378 gfc_symbol* me_arg;
13379 gfc_symbol* super_type;
13380 gfc_component* comp;
13381
13382 gcc_assert (stree);
13383
13384 /* Undefined specific symbol from GENERIC target definition. */
13385 if (!stree->n.tb)
13386 return;
13387
13388 if (stree->n.tb->error)
13389 return;
13390
13391 /* If this is a GENERIC binding, use that routine. */
13392 if (stree->n.tb->is_generic)
13393 {
13394 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13395 goto error;
13396 return;
13397 }
13398
13399 /* Get the target-procedure to check it. */
13400 gcc_assert (!stree->n.tb->is_generic);
13401 gcc_assert (stree->n.tb->u.specific);
13402 proc = stree->n.tb->u.specific->n.sym;
13403 where = stree->n.tb->where;
13404
13405 /* Default access should already be resolved from the parser. */
13406 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13407
13408 if (stree->n.tb->deferred)
13409 {
13410 if (!check_proc_interface (proc, &where))
13411 goto error;
13412 }
13413 else
13414 {
13415 /* Check for F08:C465. */
13416 if ((!proc->attr.subroutine && !proc->attr.function)
13417 || (proc->attr.proc != PROC_MODULE
13418 && proc->attr.if_source != IFSRC_IFBODY)
13419 || proc->attr.abstract)
13420 {
13421 gfc_error ("%qs must be a module procedure or an external procedure with"
13422 " an explicit interface at %L", proc->name, &where);
13423 goto error;
13424 }
13425 }
13426
13427 stree->n.tb->subroutine = proc->attr.subroutine;
13428 stree->n.tb->function = proc->attr.function;
13429
13430 /* Find the super-type of the current derived type. We could do this once and
13431 store in a global if speed is needed, but as long as not I believe this is
13432 more readable and clearer. */
13433 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13434
13435 /* If PASS, resolve and check arguments if not already resolved / loaded
13436 from a .mod file. */
13437 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13438 {
13439 gfc_formal_arglist *dummy_args;
13440
13441 dummy_args = gfc_sym_get_dummy_args (proc);
13442 if (stree->n.tb->pass_arg)
13443 {
13444 gfc_formal_arglist *i;
13445
13446 /* If an explicit passing argument name is given, walk the arg-list
13447 and look for it. */
13448
13449 me_arg = NULL;
13450 stree->n.tb->pass_arg_num = 1;
13451 for (i = dummy_args; i; i = i->next)
13452 {
13453 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13454 {
13455 me_arg = i->sym;
13456 break;
13457 }
13458 ++stree->n.tb->pass_arg_num;
13459 }
13460
13461 if (!me_arg)
13462 {
13463 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13464 " argument %qs",
13465 proc->name, stree->n.tb->pass_arg, &where,
13466 stree->n.tb->pass_arg);
13467 goto error;
13468 }
13469 }
13470 else
13471 {
13472 /* Otherwise, take the first one; there should in fact be at least
13473 one. */
13474 stree->n.tb->pass_arg_num = 1;
13475 if (!dummy_args)
13476 {
13477 gfc_error ("Procedure %qs with PASS at %L must have at"
13478 " least one argument", proc->name, &where);
13479 goto error;
13480 }
13481 me_arg = dummy_args->sym;
13482 }
13483
13484 /* Now check that the argument-type matches and the passed-object
13485 dummy argument is generally fine. */
13486
13487 gcc_assert (me_arg);
13488
13489 if (me_arg->ts.type != BT_CLASS)
13490 {
13491 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13492 " at %L", proc->name, &where);
13493 goto error;
13494 }
13495
13496 if (CLASS_DATA (me_arg)->ts.u.derived
13497 != resolve_bindings_derived)
13498 {
13499 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13500 " the derived-type %qs", me_arg->name, proc->name,
13501 me_arg->name, &where, resolve_bindings_derived->name);
13502 goto error;
13503 }
13504
13505 gcc_assert (me_arg->ts.type == BT_CLASS);
13506 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
13507 {
13508 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13509 " scalar", proc->name, &where);
13510 goto error;
13511 }
13512 if (CLASS_DATA (me_arg)->attr.allocatable)
13513 {
13514 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13515 " be ALLOCATABLE", proc->name, &where);
13516 goto error;
13517 }
13518 if (CLASS_DATA (me_arg)->attr.class_pointer)
13519 {
13520 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13521 " be POINTER", proc->name, &where);
13522 goto error;
13523 }
13524 }
13525
13526 /* If we are extending some type, check that we don't override a procedure
13527 flagged NON_OVERRIDABLE. */
13528 stree->n.tb->overridden = NULL;
13529 if (super_type)
13530 {
13531 gfc_symtree* overridden;
13532 overridden = gfc_find_typebound_proc (super_type, NULL,
13533 stree->name, true, NULL);
13534
13535 if (overridden)
13536 {
13537 if (overridden->n.tb)
13538 stree->n.tb->overridden = overridden->n.tb;
13539
13540 if (!gfc_check_typebound_override (stree, overridden))
13541 goto error;
13542 }
13543 }
13544
13545 /* See if there's a name collision with a component directly in this type. */
13546 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
13547 if (!strcmp (comp->name, stree->name))
13548 {
13549 gfc_error ("Procedure %qs at %L has the same name as a component of"
13550 " %qs",
13551 stree->name, &where, resolve_bindings_derived->name);
13552 goto error;
13553 }
13554
13555 /* Try to find a name collision with an inherited component. */
13556 if (super_type && gfc_find_component (super_type, stree->name, true, true,
13557 NULL))
13558 {
13559 gfc_error ("Procedure %qs at %L has the same name as an inherited"
13560 " component of %qs",
13561 stree->name, &where, resolve_bindings_derived->name);
13562 goto error;
13563 }
13564
13565 stree->n.tb->error = 0;
13566 return;
13567
13568 error:
13569 resolve_bindings_result = false;
13570 stree->n.tb->error = 1;
13571 }
13572
13573
13574 static bool
13575 resolve_typebound_procedures (gfc_symbol* derived)
13576 {
13577 int op;
13578 gfc_symbol* super_type;
13579
13580 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
13581 return true;
13582
13583 super_type = gfc_get_derived_super_type (derived);
13584 if (super_type)
13585 resolve_symbol (super_type);
13586
13587 resolve_bindings_derived = derived;
13588 resolve_bindings_result = true;
13589
13590 if (derived->f2k_derived->tb_sym_root)
13591 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
13592 &resolve_typebound_procedure);
13593
13594 if (derived->f2k_derived->tb_uop_root)
13595 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
13596 &resolve_typebound_user_op);
13597
13598 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
13599 {
13600 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
13601 if (p && !resolve_typebound_intrinsic_op (derived,
13602 (gfc_intrinsic_op)op, p))
13603 resolve_bindings_result = false;
13604 }
13605
13606 return resolve_bindings_result;
13607 }
13608
13609
13610 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
13611 to give all identical derived types the same backend_decl. */
13612 static void
13613 add_dt_to_dt_list (gfc_symbol *derived)
13614 {
13615 if (!derived->dt_next)
13616 {
13617 if (gfc_derived_types)
13618 {
13619 derived->dt_next = gfc_derived_types->dt_next;
13620 gfc_derived_types->dt_next = derived;
13621 }
13622 else
13623 {
13624 derived->dt_next = derived;
13625 }
13626 gfc_derived_types = derived;
13627 }
13628 }
13629
13630
13631 /* Ensure that a derived-type is really not abstract, meaning that every
13632 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
13633
13634 static bool
13635 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
13636 {
13637 if (!st)
13638 return true;
13639
13640 if (!ensure_not_abstract_walker (sub, st->left))
13641 return false;
13642 if (!ensure_not_abstract_walker (sub, st->right))
13643 return false;
13644
13645 if (st->n.tb && st->n.tb->deferred)
13646 {
13647 gfc_symtree* overriding;
13648 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
13649 if (!overriding)
13650 return false;
13651 gcc_assert (overriding->n.tb);
13652 if (overriding->n.tb->deferred)
13653 {
13654 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
13655 " %qs is DEFERRED and not overridden",
13656 sub->name, &sub->declared_at, st->name);
13657 return false;
13658 }
13659 }
13660
13661 return true;
13662 }
13663
13664 static bool
13665 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
13666 {
13667 /* The algorithm used here is to recursively travel up the ancestry of sub
13668 and for each ancestor-type, check all bindings. If any of them is
13669 DEFERRED, look it up starting from sub and see if the found (overriding)
13670 binding is not DEFERRED.
13671 This is not the most efficient way to do this, but it should be ok and is
13672 clearer than something sophisticated. */
13673
13674 gcc_assert (ancestor && !sub->attr.abstract);
13675
13676 if (!ancestor->attr.abstract)
13677 return true;
13678
13679 /* Walk bindings of this ancestor. */
13680 if (ancestor->f2k_derived)
13681 {
13682 bool t;
13683 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
13684 if (!t)
13685 return false;
13686 }
13687
13688 /* Find next ancestor type and recurse on it. */
13689 ancestor = gfc_get_derived_super_type (ancestor);
13690 if (ancestor)
13691 return ensure_not_abstract (sub, ancestor);
13692
13693 return true;
13694 }
13695
13696
13697 /* This check for typebound defined assignments is done recursively
13698 since the order in which derived types are resolved is not always in
13699 order of the declarations. */
13700
13701 static void
13702 check_defined_assignments (gfc_symbol *derived)
13703 {
13704 gfc_component *c;
13705
13706 for (c = derived->components; c; c = c->next)
13707 {
13708 if (!gfc_bt_struct (c->ts.type)
13709 || c->attr.pointer
13710 || c->attr.allocatable
13711 || c->attr.proc_pointer_comp
13712 || c->attr.class_pointer
13713 || c->attr.proc_pointer)
13714 continue;
13715
13716 if (c->ts.u.derived->attr.defined_assign_comp
13717 || (c->ts.u.derived->f2k_derived
13718 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
13719 {
13720 derived->attr.defined_assign_comp = 1;
13721 return;
13722 }
13723
13724 check_defined_assignments (c->ts.u.derived);
13725 if (c->ts.u.derived->attr.defined_assign_comp)
13726 {
13727 derived->attr.defined_assign_comp = 1;
13728 return;
13729 }
13730 }
13731 }
13732
13733
13734 /* Resolve a single component of a derived type or structure. */
13735
13736 static bool
13737 resolve_component (gfc_component *c, gfc_symbol *sym)
13738 {
13739 gfc_symbol *super_type;
13740
13741 if (c->attr.artificial)
13742 return true;
13743
13744 /* Do not allow vtype components to be resolved in nameless namespaces
13745 such as block data because the procedure pointers will cause ICEs
13746 and vtables are not needed in these contexts. */
13747 if (sym->attr.vtype && sym->attr.use_assoc
13748 && sym->ns->proc_name == NULL)
13749 return true;
13750
13751 /* F2008, C442. */
13752 if ((!sym->attr.is_class || c != sym->components)
13753 && c->attr.codimension
13754 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
13755 {
13756 gfc_error ("Coarray component %qs at %L must be allocatable with "
13757 "deferred shape", c->name, &c->loc);
13758 return false;
13759 }
13760
13761 /* F2008, C443. */
13762 if (c->attr.codimension && c->ts.type == BT_DERIVED
13763 && c->ts.u.derived->ts.is_iso_c)
13764 {
13765 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
13766 "shall not be a coarray", c->name, &c->loc);
13767 return false;
13768 }
13769
13770 /* F2008, C444. */
13771 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
13772 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
13773 || c->attr.allocatable))
13774 {
13775 gfc_error ("Component %qs at %L with coarray component "
13776 "shall be a nonpointer, nonallocatable scalar",
13777 c->name, &c->loc);
13778 return false;
13779 }
13780
13781 /* F2008, C448. */
13782 if (c->attr.contiguous && (!c->attr.dimension || !c->attr.pointer))
13783 {
13784 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
13785 "is not an array pointer", c->name, &c->loc);
13786 return false;
13787 }
13788
13789 /* F2003, 15.2.1 - length has to be one. */
13790 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
13791 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
13792 || !gfc_is_constant_expr (c->ts.u.cl->length)
13793 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
13794 {
13795 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
13796 c->name, &c->loc);
13797 return false;
13798 }
13799
13800 if (c->attr.proc_pointer && c->ts.interface)
13801 {
13802 gfc_symbol *ifc = c->ts.interface;
13803
13804 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
13805 {
13806 c->tb->error = 1;
13807 return false;
13808 }
13809
13810 if (ifc->attr.if_source || ifc->attr.intrinsic)
13811 {
13812 /* Resolve interface and copy attributes. */
13813 if (ifc->formal && !ifc->formal_ns)
13814 resolve_symbol (ifc);
13815 if (ifc->attr.intrinsic)
13816 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
13817
13818 if (ifc->result)
13819 {
13820 c->ts = ifc->result->ts;
13821 c->attr.allocatable = ifc->result->attr.allocatable;
13822 c->attr.pointer = ifc->result->attr.pointer;
13823 c->attr.dimension = ifc->result->attr.dimension;
13824 c->as = gfc_copy_array_spec (ifc->result->as);
13825 c->attr.class_ok = ifc->result->attr.class_ok;
13826 }
13827 else
13828 {
13829 c->ts = ifc->ts;
13830 c->attr.allocatable = ifc->attr.allocatable;
13831 c->attr.pointer = ifc->attr.pointer;
13832 c->attr.dimension = ifc->attr.dimension;
13833 c->as = gfc_copy_array_spec (ifc->as);
13834 c->attr.class_ok = ifc->attr.class_ok;
13835 }
13836 c->ts.interface = ifc;
13837 c->attr.function = ifc->attr.function;
13838 c->attr.subroutine = ifc->attr.subroutine;
13839
13840 c->attr.pure = ifc->attr.pure;
13841 c->attr.elemental = ifc->attr.elemental;
13842 c->attr.recursive = ifc->attr.recursive;
13843 c->attr.always_explicit = ifc->attr.always_explicit;
13844 c->attr.ext_attr |= ifc->attr.ext_attr;
13845 /* Copy char length. */
13846 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
13847 {
13848 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
13849 if (cl->length && !cl->resolved
13850 && !gfc_resolve_expr (cl->length))
13851 {
13852 c->tb->error = 1;
13853 return false;
13854 }
13855 c->ts.u.cl = cl;
13856 }
13857 }
13858 }
13859 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
13860 {
13861 /* Since PPCs are not implicitly typed, a PPC without an explicit
13862 interface must be a subroutine. */
13863 gfc_add_subroutine (&c->attr, c->name, &c->loc);
13864 }
13865
13866 /* Procedure pointer components: Check PASS arg. */
13867 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
13868 && !sym->attr.vtype)
13869 {
13870 gfc_symbol* me_arg;
13871
13872 if (c->tb->pass_arg)
13873 {
13874 gfc_formal_arglist* i;
13875
13876 /* If an explicit passing argument name is given, walk the arg-list
13877 and look for it. */
13878
13879 me_arg = NULL;
13880 c->tb->pass_arg_num = 1;
13881 for (i = c->ts.interface->formal; i; i = i->next)
13882 {
13883 if (!strcmp (i->sym->name, c->tb->pass_arg))
13884 {
13885 me_arg = i->sym;
13886 break;
13887 }
13888 c->tb->pass_arg_num++;
13889 }
13890
13891 if (!me_arg)
13892 {
13893 gfc_error ("Procedure pointer component %qs with PASS(%s) "
13894 "at %L has no argument %qs", c->name,
13895 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
13896 c->tb->error = 1;
13897 return false;
13898 }
13899 }
13900 else
13901 {
13902 /* Otherwise, take the first one; there should in fact be at least
13903 one. */
13904 c->tb->pass_arg_num = 1;
13905 if (!c->ts.interface->formal)
13906 {
13907 gfc_error ("Procedure pointer component %qs with PASS at %L "
13908 "must have at least one argument",
13909 c->name, &c->loc);
13910 c->tb->error = 1;
13911 return false;
13912 }
13913 me_arg = c->ts.interface->formal->sym;
13914 }
13915
13916 /* Now check that the argument-type matches. */
13917 gcc_assert (me_arg);
13918 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
13919 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
13920 || (me_arg->ts.type == BT_CLASS
13921 && CLASS_DATA (me_arg)->ts.u.derived != sym))
13922 {
13923 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13924 " the derived type %qs", me_arg->name, c->name,
13925 me_arg->name, &c->loc, sym->name);
13926 c->tb->error = 1;
13927 return false;
13928 }
13929
13930 /* Check for F03:C453. */
13931 if (CLASS_DATA (me_arg)->attr.dimension)
13932 {
13933 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13934 "must be scalar", me_arg->name, c->name, me_arg->name,
13935 &c->loc);
13936 c->tb->error = 1;
13937 return false;
13938 }
13939
13940 if (CLASS_DATA (me_arg)->attr.class_pointer)
13941 {
13942 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13943 "may not have the POINTER attribute", me_arg->name,
13944 c->name, me_arg->name, &c->loc);
13945 c->tb->error = 1;
13946 return false;
13947 }
13948
13949 if (CLASS_DATA (me_arg)->attr.allocatable)
13950 {
13951 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13952 "may not be ALLOCATABLE", me_arg->name, c->name,
13953 me_arg->name, &c->loc);
13954 c->tb->error = 1;
13955 return false;
13956 }
13957
13958 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
13959 {
13960 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13961 " at %L", c->name, &c->loc);
13962 return false;
13963 }
13964
13965 }
13966
13967 /* Check type-spec if this is not the parent-type component. */
13968 if (((sym->attr.is_class
13969 && (!sym->components->ts.u.derived->attr.extension
13970 || c != sym->components->ts.u.derived->components))
13971 || (!sym->attr.is_class
13972 && (!sym->attr.extension || c != sym->components)))
13973 && !sym->attr.vtype
13974 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
13975 return false;
13976
13977 super_type = gfc_get_derived_super_type (sym);
13978
13979 /* If this type is an extension, set the accessibility of the parent
13980 component. */
13981 if (super_type
13982 && ((sym->attr.is_class
13983 && c == sym->components->ts.u.derived->components)
13984 || (!sym->attr.is_class && c == sym->components))
13985 && strcmp (super_type->name, c->name) == 0)
13986 c->attr.access = super_type->attr.access;
13987
13988 /* If this type is an extension, see if this component has the same name
13989 as an inherited type-bound procedure. */
13990 if (super_type && !sym->attr.is_class
13991 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
13992 {
13993 gfc_error ("Component %qs of %qs at %L has the same name as an"
13994 " inherited type-bound procedure",
13995 c->name, sym->name, &c->loc);
13996 return false;
13997 }
13998
13999 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
14000 && !c->ts.deferred)
14001 {
14002 if (c->ts.u.cl->length == NULL
14003 || (!resolve_charlen(c->ts.u.cl))
14004 || !gfc_is_constant_expr (c->ts.u.cl->length))
14005 {
14006 gfc_error ("Character length of component %qs needs to "
14007 "be a constant specification expression at %L",
14008 c->name,
14009 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
14010 return false;
14011 }
14012 }
14013
14014 if (c->ts.type == BT_CHARACTER && c->ts.deferred
14015 && !c->attr.pointer && !c->attr.allocatable)
14016 {
14017 gfc_error ("Character component %qs of %qs at %L with deferred "
14018 "length must be a POINTER or ALLOCATABLE",
14019 c->name, sym->name, &c->loc);
14020 return false;
14021 }
14022
14023 /* Add the hidden deferred length field. */
14024 if (c->ts.type == BT_CHARACTER
14025 && (c->ts.deferred || c->attr.pdt_string)
14026 && !c->attr.function
14027 && !sym->attr.is_class)
14028 {
14029 char name[GFC_MAX_SYMBOL_LEN+9];
14030 gfc_component *strlen;
14031 sprintf (name, "_%s_length", c->name);
14032 strlen = gfc_find_component (sym, name, true, true, NULL);
14033 if (strlen == NULL)
14034 {
14035 if (!gfc_add_component (sym, name, &strlen))
14036 return false;
14037 strlen->ts.type = BT_INTEGER;
14038 strlen->ts.kind = gfc_charlen_int_kind;
14039 strlen->attr.access = ACCESS_PRIVATE;
14040 strlen->attr.artificial = 1;
14041 }
14042 }
14043
14044 if (c->ts.type == BT_DERIVED
14045 && sym->component_access != ACCESS_PRIVATE
14046 && gfc_check_symbol_access (sym)
14047 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
14048 && !c->ts.u.derived->attr.use_assoc
14049 && !gfc_check_symbol_access (c->ts.u.derived)
14050 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
14051 "PRIVATE type and cannot be a component of "
14052 "%qs, which is PUBLIC at %L", c->name,
14053 sym->name, &sym->declared_at))
14054 return false;
14055
14056 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
14057 {
14058 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
14059 "type %s", c->name, &c->loc, sym->name);
14060 return false;
14061 }
14062
14063 if (sym->attr.sequence)
14064 {
14065 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
14066 {
14067 gfc_error ("Component %s of SEQUENCE type declared at %L does "
14068 "not have the SEQUENCE attribute",
14069 c->ts.u.derived->name, &sym->declared_at);
14070 return false;
14071 }
14072 }
14073
14074 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
14075 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
14076 else if (c->ts.type == BT_CLASS && c->attr.class_ok
14077 && CLASS_DATA (c)->ts.u.derived->attr.generic)
14078 CLASS_DATA (c)->ts.u.derived
14079 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
14080
14081 /* If an allocatable component derived type is of the same type as
14082 the enclosing derived type, we need a vtable generating so that
14083 the __deallocate procedure is created. */
14084 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
14085 && c->ts.u.derived == sym && c->attr.allocatable == 1)
14086 gfc_find_vtab (&c->ts);
14087
14088 /* Ensure that all the derived type components are put on the
14089 derived type list; even in formal namespaces, where derived type
14090 pointer components might not have been declared. */
14091 if (c->ts.type == BT_DERIVED
14092 && c->ts.u.derived
14093 && c->ts.u.derived->components
14094 && c->attr.pointer
14095 && sym != c->ts.u.derived)
14096 add_dt_to_dt_list (c->ts.u.derived);
14097
14098 if (!gfc_resolve_array_spec (c->as,
14099 !(c->attr.pointer || c->attr.proc_pointer
14100 || c->attr.allocatable)))
14101 return false;
14102
14103 if (c->initializer && !sym->attr.vtype
14104 && !c->attr.pdt_kind && !c->attr.pdt_len
14105 && !gfc_check_assign_symbol (sym, c, c->initializer))
14106 return false;
14107
14108 return true;
14109 }
14110
14111
14112 /* Be nice about the locus for a structure expression - show the locus of the
14113 first non-null sub-expression if we can. */
14114
14115 static locus *
14116 cons_where (gfc_expr *struct_expr)
14117 {
14118 gfc_constructor *cons;
14119
14120 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
14121
14122 cons = gfc_constructor_first (struct_expr->value.constructor);
14123 for (; cons; cons = gfc_constructor_next (cons))
14124 {
14125 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
14126 return &cons->expr->where;
14127 }
14128
14129 return &struct_expr->where;
14130 }
14131
14132 /* Resolve the components of a structure type. Much less work than derived
14133 types. */
14134
14135 static bool
14136 resolve_fl_struct (gfc_symbol *sym)
14137 {
14138 gfc_component *c;
14139 gfc_expr *init = NULL;
14140 bool success;
14141
14142 /* Make sure UNIONs do not have overlapping initializers. */
14143 if (sym->attr.flavor == FL_UNION)
14144 {
14145 for (c = sym->components; c; c = c->next)
14146 {
14147 if (init && c->initializer)
14148 {
14149 gfc_error ("Conflicting initializers in union at %L and %L",
14150 cons_where (init), cons_where (c->initializer));
14151 gfc_free_expr (c->initializer);
14152 c->initializer = NULL;
14153 }
14154 if (init == NULL)
14155 init = c->initializer;
14156 }
14157 }
14158
14159 success = true;
14160 for (c = sym->components; c; c = c->next)
14161 if (!resolve_component (c, sym))
14162 success = false;
14163
14164 if (!success)
14165 return false;
14166
14167 if (sym->components)
14168 add_dt_to_dt_list (sym);
14169
14170 return true;
14171 }
14172
14173
14174 /* Resolve the components of a derived type. This does not have to wait until
14175 resolution stage, but can be done as soon as the dt declaration has been
14176 parsed. */
14177
14178 static bool
14179 resolve_fl_derived0 (gfc_symbol *sym)
14180 {
14181 gfc_symbol* super_type;
14182 gfc_component *c;
14183 gfc_formal_arglist *f;
14184 bool success;
14185
14186 if (sym->attr.unlimited_polymorphic)
14187 return true;
14188
14189 super_type = gfc_get_derived_super_type (sym);
14190
14191 /* F2008, C432. */
14192 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14193 {
14194 gfc_error ("As extending type %qs at %L has a coarray component, "
14195 "parent type %qs shall also have one", sym->name,
14196 &sym->declared_at, super_type->name);
14197 return false;
14198 }
14199
14200 /* Ensure the extended type gets resolved before we do. */
14201 if (super_type && !resolve_fl_derived0 (super_type))
14202 return false;
14203
14204 /* An ABSTRACT type must be extensible. */
14205 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14206 {
14207 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14208 sym->name, &sym->declared_at);
14209 return false;
14210 }
14211
14212 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14213 : sym->components;
14214
14215 success = true;
14216 for ( ; c != NULL; c = c->next)
14217 if (!resolve_component (c, sym))
14218 success = false;
14219
14220 if (!success)
14221 return false;
14222
14223 /* Now add the caf token field, where needed. */
14224 if (flag_coarray != GFC_FCOARRAY_NONE
14225 && !sym->attr.is_class && !sym->attr.vtype)
14226 {
14227 for (c = sym->components; c; c = c->next)
14228 if (!c->attr.dimension && !c->attr.codimension
14229 && (c->attr.allocatable || c->attr.pointer))
14230 {
14231 char name[GFC_MAX_SYMBOL_LEN+9];
14232 gfc_component *token;
14233 sprintf (name, "_caf_%s", c->name);
14234 token = gfc_find_component (sym, name, true, true, NULL);
14235 if (token == NULL)
14236 {
14237 if (!gfc_add_component (sym, name, &token))
14238 return false;
14239 token->ts.type = BT_VOID;
14240 token->ts.kind = gfc_default_integer_kind;
14241 token->attr.access = ACCESS_PRIVATE;
14242 token->attr.artificial = 1;
14243 token->attr.caf_token = 1;
14244 }
14245 }
14246 }
14247
14248 check_defined_assignments (sym);
14249
14250 if (!sym->attr.defined_assign_comp && super_type)
14251 sym->attr.defined_assign_comp
14252 = super_type->attr.defined_assign_comp;
14253
14254 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14255 all DEFERRED bindings are overridden. */
14256 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14257 && !sym->attr.is_class
14258 && !ensure_not_abstract (sym, super_type))
14259 return false;
14260
14261 /* Check that there is a component for every PDT parameter. */
14262 if (sym->attr.pdt_template)
14263 {
14264 for (f = sym->formal; f; f = f->next)
14265 {
14266 if (!f->sym)
14267 continue;
14268 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14269 if (c == NULL)
14270 {
14271 gfc_error ("Parameterized type %qs does not have a component "
14272 "corresponding to parameter %qs at %L", sym->name,
14273 f->sym->name, &sym->declared_at);
14274 break;
14275 }
14276 }
14277 }
14278
14279 /* Add derived type to the derived type list. */
14280 add_dt_to_dt_list (sym);
14281
14282 return true;
14283 }
14284
14285
14286 /* The following procedure does the full resolution of a derived type,
14287 including resolution of all type-bound procedures (if present). In contrast
14288 to 'resolve_fl_derived0' this can only be done after the module has been
14289 parsed completely. */
14290
14291 static bool
14292 resolve_fl_derived (gfc_symbol *sym)
14293 {
14294 gfc_symbol *gen_dt = NULL;
14295
14296 if (sym->attr.unlimited_polymorphic)
14297 return true;
14298
14299 if (!sym->attr.is_class)
14300 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14301 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14302 && (!gen_dt->generic->sym->attr.use_assoc
14303 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14304 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14305 "%qs at %L being the same name as derived "
14306 "type at %L", sym->name,
14307 gen_dt->generic->sym == sym
14308 ? gen_dt->generic->next->sym->name
14309 : gen_dt->generic->sym->name,
14310 gen_dt->generic->sym == sym
14311 ? &gen_dt->generic->next->sym->declared_at
14312 : &gen_dt->generic->sym->declared_at,
14313 &sym->declared_at))
14314 return false;
14315
14316 if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
14317 {
14318 gfc_error ("Derived type %qs at %L has not been declared",
14319 sym->name, &sym->declared_at);
14320 return false;
14321 }
14322
14323 /* Resolve the finalizer procedures. */
14324 if (!gfc_resolve_finalizers (sym, NULL))
14325 return false;
14326
14327 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14328 {
14329 /* Fix up incomplete CLASS symbols. */
14330 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14331 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14332
14333 /* Nothing more to do for unlimited polymorphic entities. */
14334 if (data->ts.u.derived->attr.unlimited_polymorphic)
14335 return true;
14336 else if (vptr->ts.u.derived == NULL)
14337 {
14338 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14339 gcc_assert (vtab);
14340 vptr->ts.u.derived = vtab->ts.u.derived;
14341 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14342 return false;
14343 }
14344 }
14345
14346 if (!resolve_fl_derived0 (sym))
14347 return false;
14348
14349 /* Resolve the type-bound procedures. */
14350 if (!resolve_typebound_procedures (sym))
14351 return false;
14352
14353 /* Generate module vtables subject to their accessibility and their not
14354 being vtables or pdt templates. If this is not done class declarations
14355 in external procedures wind up with their own version and so SELECT TYPE
14356 fails because the vptrs do not have the same address. */
14357 if (gfc_option.allow_std & GFC_STD_F2003
14358 && sym->ns->proc_name
14359 && sym->ns->proc_name->attr.flavor == FL_MODULE
14360 && sym->attr.access != ACCESS_PRIVATE
14361 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14362 {
14363 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14364 gfc_set_sym_referenced (vtab);
14365 }
14366
14367 return true;
14368 }
14369
14370
14371 static bool
14372 resolve_fl_namelist (gfc_symbol *sym)
14373 {
14374 gfc_namelist *nl;
14375 gfc_symbol *nlsym;
14376
14377 for (nl = sym->namelist; nl; nl = nl->next)
14378 {
14379 /* Check again, the check in match only works if NAMELIST comes
14380 after the decl. */
14381 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14382 {
14383 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14384 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14385 return false;
14386 }
14387
14388 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14389 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14390 "with assumed shape in namelist %qs at %L",
14391 nl->sym->name, sym->name, &sym->declared_at))
14392 return false;
14393
14394 if (is_non_constant_shape_array (nl->sym)
14395 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14396 "with nonconstant shape in namelist %qs at %L",
14397 nl->sym->name, sym->name, &sym->declared_at))
14398 return false;
14399
14400 if (nl->sym->ts.type == BT_CHARACTER
14401 && (nl->sym->ts.u.cl->length == NULL
14402 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14403 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14404 "nonconstant character length in "
14405 "namelist %qs at %L", nl->sym->name,
14406 sym->name, &sym->declared_at))
14407 return false;
14408
14409 }
14410
14411 /* Reject PRIVATE objects in a PUBLIC namelist. */
14412 if (gfc_check_symbol_access (sym))
14413 {
14414 for (nl = sym->namelist; nl; nl = nl->next)
14415 {
14416 if (!nl->sym->attr.use_assoc
14417 && !is_sym_host_assoc (nl->sym, sym->ns)
14418 && !gfc_check_symbol_access (nl->sym))
14419 {
14420 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14421 "cannot be member of PUBLIC namelist %qs at %L",
14422 nl->sym->name, sym->name, &sym->declared_at);
14423 return false;
14424 }
14425
14426 if (nl->sym->ts.type == BT_DERIVED
14427 && (nl->sym->ts.u.derived->attr.alloc_comp
14428 || nl->sym->ts.u.derived->attr.pointer_comp))
14429 {
14430 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14431 "namelist %qs at %L with ALLOCATABLE "
14432 "or POINTER components", nl->sym->name,
14433 sym->name, &sym->declared_at))
14434 return false;
14435 return true;
14436 }
14437
14438 /* Types with private components that came here by USE-association. */
14439 if (nl->sym->ts.type == BT_DERIVED
14440 && derived_inaccessible (nl->sym->ts.u.derived))
14441 {
14442 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14443 "components and cannot be member of namelist %qs at %L",
14444 nl->sym->name, sym->name, &sym->declared_at);
14445 return false;
14446 }
14447
14448 /* Types with private components that are defined in the same module. */
14449 if (nl->sym->ts.type == BT_DERIVED
14450 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14451 && nl->sym->ts.u.derived->attr.private_comp)
14452 {
14453 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14454 "cannot be a member of PUBLIC namelist %qs at %L",
14455 nl->sym->name, sym->name, &sym->declared_at);
14456 return false;
14457 }
14458 }
14459 }
14460
14461
14462 /* 14.1.2 A module or internal procedure represent local entities
14463 of the same type as a namelist member and so are not allowed. */
14464 for (nl = sym->namelist; nl; nl = nl->next)
14465 {
14466 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
14467 continue;
14468
14469 if (nl->sym->attr.function && nl->sym == nl->sym->result)
14470 if ((nl->sym == sym->ns->proc_name)
14471 ||
14472 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
14473 continue;
14474
14475 nlsym = NULL;
14476 if (nl->sym->name)
14477 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
14478 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
14479 {
14480 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14481 "attribute in %qs at %L", nlsym->name,
14482 &sym->declared_at);
14483 return false;
14484 }
14485 }
14486
14487 if (async_io_dt)
14488 {
14489 for (nl = sym->namelist; nl; nl = nl->next)
14490 nl->sym->attr.asynchronous = 1;
14491 }
14492 return true;
14493 }
14494
14495
14496 static bool
14497 resolve_fl_parameter (gfc_symbol *sym)
14498 {
14499 /* A parameter array's shape needs to be constant. */
14500 if (sym->as != NULL
14501 && (sym->as->type == AS_DEFERRED
14502 || is_non_constant_shape_array (sym)))
14503 {
14504 gfc_error ("Parameter array %qs at %L cannot be automatic "
14505 "or of deferred shape", sym->name, &sym->declared_at);
14506 return false;
14507 }
14508
14509 /* Constraints on deferred type parameter. */
14510 if (!deferred_requirements (sym))
14511 return false;
14512
14513 /* Make sure a parameter that has been implicitly typed still
14514 matches the implicit type, since PARAMETER statements can precede
14515 IMPLICIT statements. */
14516 if (sym->attr.implicit_type
14517 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
14518 sym->ns)))
14519 {
14520 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
14521 "later IMPLICIT type", sym->name, &sym->declared_at);
14522 return false;
14523 }
14524
14525 /* Make sure the types of derived parameters are consistent. This
14526 type checking is deferred until resolution because the type may
14527 refer to a derived type from the host. */
14528 if (sym->ts.type == BT_DERIVED
14529 && !gfc_compare_types (&sym->ts, &sym->value->ts))
14530 {
14531 gfc_error ("Incompatible derived type in PARAMETER at %L",
14532 &sym->value->where);
14533 return false;
14534 }
14535
14536 /* F03:C509,C514. */
14537 if (sym->ts.type == BT_CLASS)
14538 {
14539 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
14540 sym->name, &sym->declared_at);
14541 return false;
14542 }
14543
14544 return true;
14545 }
14546
14547
14548 /* Called by resolve_symbol to check PDTs. */
14549
14550 static void
14551 resolve_pdt (gfc_symbol* sym)
14552 {
14553 gfc_symbol *derived = NULL;
14554 gfc_actual_arglist *param;
14555 gfc_component *c;
14556 bool const_len_exprs = true;
14557 bool assumed_len_exprs = false;
14558 symbol_attribute *attr;
14559
14560 if (sym->ts.type == BT_DERIVED)
14561 {
14562 derived = sym->ts.u.derived;
14563 attr = &(sym->attr);
14564 }
14565 else if (sym->ts.type == BT_CLASS)
14566 {
14567 derived = CLASS_DATA (sym)->ts.u.derived;
14568 attr = &(CLASS_DATA (sym)->attr);
14569 }
14570 else
14571 gcc_unreachable ();
14572
14573 gcc_assert (derived->attr.pdt_type);
14574
14575 for (param = sym->param_list; param; param = param->next)
14576 {
14577 c = gfc_find_component (derived, param->name, false, true, NULL);
14578 gcc_assert (c);
14579 if (c->attr.pdt_kind)
14580 continue;
14581
14582 if (param->expr && !gfc_is_constant_expr (param->expr)
14583 && c->attr.pdt_len)
14584 const_len_exprs = false;
14585 else if (param->spec_type == SPEC_ASSUMED)
14586 assumed_len_exprs = true;
14587
14588 if (param->spec_type == SPEC_DEFERRED
14589 && !attr->allocatable && !attr->pointer)
14590 gfc_error ("The object %qs at %L has a deferred LEN "
14591 "parameter %qs and is neither allocatable "
14592 "nor a pointer", sym->name, &sym->declared_at,
14593 param->name);
14594
14595 }
14596
14597 if (!const_len_exprs
14598 && (sym->ns->proc_name->attr.is_main_program
14599 || sym->ns->proc_name->attr.flavor == FL_MODULE
14600 || sym->attr.save != SAVE_NONE))
14601 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
14602 "SAVE attribute or be a variable declared in the "
14603 "main program, a module or a submodule(F08/C513)",
14604 sym->name, &sym->declared_at);
14605
14606 if (assumed_len_exprs && !(sym->attr.dummy
14607 || sym->attr.select_type_temporary || sym->attr.associate_var))
14608 gfc_error ("The object %qs at %L with ASSUMED type parameters "
14609 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
14610 sym->name, &sym->declared_at);
14611 }
14612
14613
14614 /* Do anything necessary to resolve a symbol. Right now, we just
14615 assume that an otherwise unknown symbol is a variable. This sort
14616 of thing commonly happens for symbols in module. */
14617
14618 static void
14619 resolve_symbol (gfc_symbol *sym)
14620 {
14621 int check_constant, mp_flag;
14622 gfc_symtree *symtree;
14623 gfc_symtree *this_symtree;
14624 gfc_namespace *ns;
14625 gfc_component *c;
14626 symbol_attribute class_attr;
14627 gfc_array_spec *as;
14628 bool saved_specification_expr;
14629
14630 if (sym->resolved)
14631 return;
14632 sym->resolved = 1;
14633
14634 /* No symbol will ever have union type; only components can be unions.
14635 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
14636 (just like derived type declaration symbols have flavor FL_DERIVED). */
14637 gcc_assert (sym->ts.type != BT_UNION);
14638
14639 /* Coarrayed polymorphic objects with allocatable or pointer components are
14640 yet unsupported for -fcoarray=lib. */
14641 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
14642 && sym->ts.u.derived && CLASS_DATA (sym)
14643 && CLASS_DATA (sym)->attr.codimension
14644 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
14645 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
14646 {
14647 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
14648 "type coarrays at %L are unsupported", &sym->declared_at);
14649 return;
14650 }
14651
14652 if (sym->attr.artificial)
14653 return;
14654
14655 if (sym->attr.unlimited_polymorphic)
14656 return;
14657
14658 if (sym->attr.flavor == FL_UNKNOWN
14659 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
14660 && !sym->attr.generic && !sym->attr.external
14661 && sym->attr.if_source == IFSRC_UNKNOWN
14662 && sym->ts.type == BT_UNKNOWN))
14663 {
14664
14665 /* If we find that a flavorless symbol is an interface in one of the
14666 parent namespaces, find its symtree in this namespace, free the
14667 symbol and set the symtree to point to the interface symbol. */
14668 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
14669 {
14670 symtree = gfc_find_symtree (ns->sym_root, sym->name);
14671 if (symtree && (symtree->n.sym->generic ||
14672 (symtree->n.sym->attr.flavor == FL_PROCEDURE
14673 && sym->ns->construct_entities)))
14674 {
14675 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
14676 sym->name);
14677 if (this_symtree->n.sym == sym)
14678 {
14679 symtree->n.sym->refs++;
14680 gfc_release_symbol (sym);
14681 this_symtree->n.sym = symtree->n.sym;
14682 return;
14683 }
14684 }
14685 }
14686
14687 /* Otherwise give it a flavor according to such attributes as
14688 it has. */
14689 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
14690 && sym->attr.intrinsic == 0)
14691 sym->attr.flavor = FL_VARIABLE;
14692 else if (sym->attr.flavor == FL_UNKNOWN)
14693 {
14694 sym->attr.flavor = FL_PROCEDURE;
14695 if (sym->attr.dimension)
14696 sym->attr.function = 1;
14697 }
14698 }
14699
14700 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
14701 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
14702
14703 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
14704 && !resolve_procedure_interface (sym))
14705 return;
14706
14707 if (sym->attr.is_protected && !sym->attr.proc_pointer
14708 && (sym->attr.procedure || sym->attr.external))
14709 {
14710 if (sym->attr.external)
14711 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
14712 "at %L", &sym->declared_at);
14713 else
14714 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
14715 "at %L", &sym->declared_at);
14716
14717 return;
14718 }
14719
14720 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
14721 return;
14722
14723 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
14724 && !resolve_fl_struct (sym))
14725 return;
14726
14727 /* Symbols that are module procedures with results (functions) have
14728 the types and array specification copied for type checking in
14729 procedures that call them, as well as for saving to a module
14730 file. These symbols can't stand the scrutiny that their results
14731 can. */
14732 mp_flag = (sym->result != NULL && sym->result != sym);
14733
14734 /* Make sure that the intrinsic is consistent with its internal
14735 representation. This needs to be done before assigning a default
14736 type to avoid spurious warnings. */
14737 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
14738 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
14739 return;
14740
14741 /* Resolve associate names. */
14742 if (sym->assoc)
14743 resolve_assoc_var (sym, true);
14744
14745 /* Assign default type to symbols that need one and don't have one. */
14746 if (sym->ts.type == BT_UNKNOWN)
14747 {
14748 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
14749 {
14750 gfc_set_default_type (sym, 1, NULL);
14751 }
14752
14753 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
14754 && !sym->attr.function && !sym->attr.subroutine
14755 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
14756 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
14757
14758 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14759 {
14760 /* The specific case of an external procedure should emit an error
14761 in the case that there is no implicit type. */
14762 if (!mp_flag)
14763 {
14764 if (!sym->attr.mixed_entry_master)
14765 gfc_set_default_type (sym, sym->attr.external, NULL);
14766 }
14767 else
14768 {
14769 /* Result may be in another namespace. */
14770 resolve_symbol (sym->result);
14771
14772 if (!sym->result->attr.proc_pointer)
14773 {
14774 sym->ts = sym->result->ts;
14775 sym->as = gfc_copy_array_spec (sym->result->as);
14776 sym->attr.dimension = sym->result->attr.dimension;
14777 sym->attr.pointer = sym->result->attr.pointer;
14778 sym->attr.allocatable = sym->result->attr.allocatable;
14779 sym->attr.contiguous = sym->result->attr.contiguous;
14780 }
14781 }
14782 }
14783 }
14784 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14785 {
14786 bool saved_specification_expr = specification_expr;
14787 specification_expr = true;
14788 gfc_resolve_array_spec (sym->result->as, false);
14789 specification_expr = saved_specification_expr;
14790 }
14791
14792 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
14793 {
14794 as = CLASS_DATA (sym)->as;
14795 class_attr = CLASS_DATA (sym)->attr;
14796 class_attr.pointer = class_attr.class_pointer;
14797 }
14798 else
14799 {
14800 class_attr = sym->attr;
14801 as = sym->as;
14802 }
14803
14804 /* F2008, C530. */
14805 if (sym->attr.contiguous
14806 && (!class_attr.dimension
14807 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
14808 && !class_attr.pointer)))
14809 {
14810 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
14811 "array pointer or an assumed-shape or assumed-rank array",
14812 sym->name, &sym->declared_at);
14813 return;
14814 }
14815
14816 /* Assumed size arrays and assumed shape arrays must be dummy
14817 arguments. Array-spec's of implied-shape should have been resolved to
14818 AS_EXPLICIT already. */
14819
14820 if (as)
14821 {
14822 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
14823 specification expression. */
14824 if (as->type == AS_IMPLIED_SHAPE)
14825 {
14826 int i;
14827 for (i=0; i<as->rank; i++)
14828 {
14829 if (as->lower[i] != NULL && as->upper[i] == NULL)
14830 {
14831 gfc_error ("Bad specification for assumed size array at %L",
14832 &as->lower[i]->where);
14833 return;
14834 }
14835 }
14836 gcc_unreachable();
14837 }
14838
14839 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
14840 || as->type == AS_ASSUMED_SHAPE)
14841 && !sym->attr.dummy && !sym->attr.select_type_temporary)
14842 {
14843 if (as->type == AS_ASSUMED_SIZE)
14844 gfc_error ("Assumed size array at %L must be a dummy argument",
14845 &sym->declared_at);
14846 else
14847 gfc_error ("Assumed shape array at %L must be a dummy argument",
14848 &sym->declared_at);
14849 return;
14850 }
14851 /* TS 29113, C535a. */
14852 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
14853 && !sym->attr.select_type_temporary)
14854 {
14855 gfc_error ("Assumed-rank array at %L must be a dummy argument",
14856 &sym->declared_at);
14857 return;
14858 }
14859 if (as->type == AS_ASSUMED_RANK
14860 && (sym->attr.codimension || sym->attr.value))
14861 {
14862 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
14863 "CODIMENSION attribute", &sym->declared_at);
14864 return;
14865 }
14866 }
14867
14868 /* Make sure symbols with known intent or optional are really dummy
14869 variable. Because of ENTRY statement, this has to be deferred
14870 until resolution time. */
14871
14872 if (!sym->attr.dummy
14873 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
14874 {
14875 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
14876 return;
14877 }
14878
14879 if (sym->attr.value && !sym->attr.dummy)
14880 {
14881 gfc_error ("%qs at %L cannot have the VALUE attribute because "
14882 "it is not a dummy argument", sym->name, &sym->declared_at);
14883 return;
14884 }
14885
14886 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
14887 {
14888 gfc_charlen *cl = sym->ts.u.cl;
14889 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
14890 {
14891 gfc_error ("Character dummy variable %qs at %L with VALUE "
14892 "attribute must have constant length",
14893 sym->name, &sym->declared_at);
14894 return;
14895 }
14896
14897 if (sym->ts.is_c_interop
14898 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
14899 {
14900 gfc_error ("C interoperable character dummy variable %qs at %L "
14901 "with VALUE attribute must have length one",
14902 sym->name, &sym->declared_at);
14903 return;
14904 }
14905 }
14906
14907 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
14908 && sym->ts.u.derived->attr.generic)
14909 {
14910 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
14911 if (!sym->ts.u.derived)
14912 {
14913 gfc_error ("The derived type %qs at %L is of type %qs, "
14914 "which has not been defined", sym->name,
14915 &sym->declared_at, sym->ts.u.derived->name);
14916 sym->ts.type = BT_UNKNOWN;
14917 return;
14918 }
14919 }
14920
14921 /* Use the same constraints as TYPE(*), except for the type check
14922 and that only scalars and assumed-size arrays are permitted. */
14923 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
14924 {
14925 if (!sym->attr.dummy)
14926 {
14927 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14928 "a dummy argument", sym->name, &sym->declared_at);
14929 return;
14930 }
14931
14932 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
14933 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
14934 && sym->ts.type != BT_COMPLEX)
14935 {
14936 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14937 "of type TYPE(*) or of an numeric intrinsic type",
14938 sym->name, &sym->declared_at);
14939 return;
14940 }
14941
14942 if (sym->attr.allocatable || sym->attr.codimension
14943 || sym->attr.pointer || sym->attr.value)
14944 {
14945 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14946 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
14947 "attribute", sym->name, &sym->declared_at);
14948 return;
14949 }
14950
14951 if (sym->attr.intent == INTENT_OUT)
14952 {
14953 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14954 "have the INTENT(OUT) attribute",
14955 sym->name, &sym->declared_at);
14956 return;
14957 }
14958 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
14959 {
14960 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
14961 "either be a scalar or an assumed-size array",
14962 sym->name, &sym->declared_at);
14963 return;
14964 }
14965
14966 /* Set the type to TYPE(*) and add a dimension(*) to ensure
14967 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
14968 packing. */
14969 sym->ts.type = BT_ASSUMED;
14970 sym->as = gfc_get_array_spec ();
14971 sym->as->type = AS_ASSUMED_SIZE;
14972 sym->as->rank = 1;
14973 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
14974 }
14975 else if (sym->ts.type == BT_ASSUMED)
14976 {
14977 /* TS 29113, C407a. */
14978 if (!sym->attr.dummy)
14979 {
14980 gfc_error ("Assumed type of variable %s at %L is only permitted "
14981 "for dummy variables", sym->name, &sym->declared_at);
14982 return;
14983 }
14984 if (sym->attr.allocatable || sym->attr.codimension
14985 || sym->attr.pointer || sym->attr.value)
14986 {
14987 gfc_error ("Assumed-type variable %s at %L may not have the "
14988 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
14989 sym->name, &sym->declared_at);
14990 return;
14991 }
14992 if (sym->attr.intent == INTENT_OUT)
14993 {
14994 gfc_error ("Assumed-type variable %s at %L may not have the "
14995 "INTENT(OUT) attribute",
14996 sym->name, &sym->declared_at);
14997 return;
14998 }
14999 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
15000 {
15001 gfc_error ("Assumed-type variable %s at %L shall not be an "
15002 "explicit-shape array", sym->name, &sym->declared_at);
15003 return;
15004 }
15005 }
15006
15007 /* If the symbol is marked as bind(c), that it is declared at module level
15008 scope and verify its type and kind. Do not do the latter for symbols
15009 that are implicitly typed because that is handled in
15010 gfc_set_default_type. Handle dummy arguments and procedure definitions
15011 separately. Also, anything that is use associated is not handled here
15012 but instead is handled in the module it is declared in. Finally, derived
15013 type definitions are allowed to be BIND(C) since that only implies that
15014 they're interoperable, and they are checked fully for interoperability
15015 when a variable is declared of that type. */
15016 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
15017 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
15018 && sym->attr.flavor != FL_DERIVED)
15019 {
15020 bool t = true;
15021
15022 /* First, make sure the variable is declared at the
15023 module-level scope (J3/04-007, Section 15.3). */
15024 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
15025 sym->attr.in_common == 0)
15026 {
15027 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
15028 "is neither a COMMON block nor declared at the "
15029 "module level scope", sym->name, &(sym->declared_at));
15030 t = false;
15031 }
15032 else if (sym->ts.type == BT_CHARACTER
15033 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
15034 || !gfc_is_constant_expr (sym->ts.u.cl->length)
15035 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
15036 {
15037 gfc_error ("BIND(C) Variable %qs at %L must have length one",
15038 sym->name, &sym->declared_at);
15039 t = false;
15040 }
15041 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
15042 {
15043 t = verify_com_block_vars_c_interop (sym->common_head);
15044 }
15045 else if (sym->attr.implicit_type == 0)
15046 {
15047 /* If type() declaration, we need to verify that the components
15048 of the given type are all C interoperable, etc. */
15049 if (sym->ts.type == BT_DERIVED &&
15050 sym->ts.u.derived->attr.is_c_interop != 1)
15051 {
15052 /* Make sure the user marked the derived type as BIND(C). If
15053 not, call the verify routine. This could print an error
15054 for the derived type more than once if multiple variables
15055 of that type are declared. */
15056 if (sym->ts.u.derived->attr.is_bind_c != 1)
15057 verify_bind_c_derived_type (sym->ts.u.derived);
15058 t = false;
15059 }
15060
15061 /* Verify the variable itself as C interoperable if it
15062 is BIND(C). It is not possible for this to succeed if
15063 the verify_bind_c_derived_type failed, so don't have to handle
15064 any error returned by verify_bind_c_derived_type. */
15065 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
15066 sym->common_block);
15067 }
15068
15069 if (!t)
15070 {
15071 /* clear the is_bind_c flag to prevent reporting errors more than
15072 once if something failed. */
15073 sym->attr.is_bind_c = 0;
15074 return;
15075 }
15076 }
15077
15078 /* If a derived type symbol has reached this point, without its
15079 type being declared, we have an error. Notice that most
15080 conditions that produce undefined derived types have already
15081 been dealt with. However, the likes of:
15082 implicit type(t) (t) ..... call foo (t) will get us here if
15083 the type is not declared in the scope of the implicit
15084 statement. Change the type to BT_UNKNOWN, both because it is so
15085 and to prevent an ICE. */
15086 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15087 && sym->ts.u.derived->components == NULL
15088 && !sym->ts.u.derived->attr.zero_comp)
15089 {
15090 gfc_error ("The derived type %qs at %L is of type %qs, "
15091 "which has not been defined", sym->name,
15092 &sym->declared_at, sym->ts.u.derived->name);
15093 sym->ts.type = BT_UNKNOWN;
15094 return;
15095 }
15096
15097 /* Make sure that the derived type has been resolved and that the
15098 derived type is visible in the symbol's namespace, if it is a
15099 module function and is not PRIVATE. */
15100 if (sym->ts.type == BT_DERIVED
15101 && sym->ts.u.derived->attr.use_assoc
15102 && sym->ns->proc_name
15103 && sym->ns->proc_name->attr.flavor == FL_MODULE
15104 && !resolve_fl_derived (sym->ts.u.derived))
15105 return;
15106
15107 /* Unless the derived-type declaration is use associated, Fortran 95
15108 does not allow public entries of private derived types.
15109 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
15110 161 in 95-006r3. */
15111 if (sym->ts.type == BT_DERIVED
15112 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
15113 && !sym->ts.u.derived->attr.use_assoc
15114 && gfc_check_symbol_access (sym)
15115 && !gfc_check_symbol_access (sym->ts.u.derived)
15116 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
15117 "derived type %qs",
15118 (sym->attr.flavor == FL_PARAMETER)
15119 ? "parameter" : "variable",
15120 sym->name, &sym->declared_at,
15121 sym->ts.u.derived->name))
15122 return;
15123
15124 /* F2008, C1302. */
15125 if (sym->ts.type == BT_DERIVED
15126 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15127 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
15128 || sym->ts.u.derived->attr.lock_comp)
15129 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15130 {
15131 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
15132 "type LOCK_TYPE must be a coarray", sym->name,
15133 &sym->declared_at);
15134 return;
15135 }
15136
15137 /* TS18508, C702/C703. */
15138 if (sym->ts.type == BT_DERIVED
15139 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15140 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
15141 || sym->ts.u.derived->attr.event_comp)
15142 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15143 {
15144 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
15145 "type EVENT_TYPE must be a coarray", sym->name,
15146 &sym->declared_at);
15147 return;
15148 }
15149
15150 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
15151 default initialization is defined (5.1.2.4.4). */
15152 if (sym->ts.type == BT_DERIVED
15153 && sym->attr.dummy
15154 && sym->attr.intent == INTENT_OUT
15155 && sym->as
15156 && sym->as->type == AS_ASSUMED_SIZE)
15157 {
15158 for (c = sym->ts.u.derived->components; c; c = c->next)
15159 {
15160 if (c->initializer)
15161 {
15162 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
15163 "ASSUMED SIZE and so cannot have a default initializer",
15164 sym->name, &sym->declared_at);
15165 return;
15166 }
15167 }
15168 }
15169
15170 /* F2008, C542. */
15171 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15172 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
15173 {
15174 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
15175 "INTENT(OUT)", sym->name, &sym->declared_at);
15176 return;
15177 }
15178
15179 /* TS18508. */
15180 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15181 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
15182 {
15183 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
15184 "INTENT(OUT)", sym->name, &sym->declared_at);
15185 return;
15186 }
15187
15188 /* F2008, C525. */
15189 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15190 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15191 && CLASS_DATA (sym)->attr.coarray_comp))
15192 || class_attr.codimension)
15193 && (sym->attr.result || sym->result == sym))
15194 {
15195 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15196 "a coarray component", sym->name, &sym->declared_at);
15197 return;
15198 }
15199
15200 /* F2008, C524. */
15201 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15202 && sym->ts.u.derived->ts.is_iso_c)
15203 {
15204 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15205 "shall not be a coarray", sym->name, &sym->declared_at);
15206 return;
15207 }
15208
15209 /* F2008, C525. */
15210 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15211 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15212 && CLASS_DATA (sym)->attr.coarray_comp))
15213 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15214 || class_attr.allocatable))
15215 {
15216 gfc_error ("Variable %qs at %L with coarray component shall be a "
15217 "nonpointer, nonallocatable scalar, which is not a coarray",
15218 sym->name, &sym->declared_at);
15219 return;
15220 }
15221
15222 /* F2008, C526. The function-result case was handled above. */
15223 if (class_attr.codimension
15224 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15225 || sym->attr.select_type_temporary
15226 || sym->attr.associate_var
15227 || (sym->ns->save_all && !sym->attr.automatic)
15228 || sym->ns->proc_name->attr.flavor == FL_MODULE
15229 || sym->ns->proc_name->attr.is_main_program
15230 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15231 {
15232 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15233 "nor a dummy argument", sym->name, &sym->declared_at);
15234 return;
15235 }
15236 /* F2008, C528. */
15237 else if (class_attr.codimension && !sym->attr.select_type_temporary
15238 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15239 {
15240 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15241 "deferred shape", sym->name, &sym->declared_at);
15242 return;
15243 }
15244 else if (class_attr.codimension && class_attr.allocatable && as
15245 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15246 {
15247 gfc_error ("Allocatable coarray variable %qs at %L must have "
15248 "deferred shape", sym->name, &sym->declared_at);
15249 return;
15250 }
15251
15252 /* F2008, C541. */
15253 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15254 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15255 && CLASS_DATA (sym)->attr.coarray_comp))
15256 || (class_attr.codimension && class_attr.allocatable))
15257 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15258 {
15259 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15260 "allocatable coarray or have coarray components",
15261 sym->name, &sym->declared_at);
15262 return;
15263 }
15264
15265 if (class_attr.codimension && sym->attr.dummy
15266 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15267 {
15268 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15269 "procedure %qs", sym->name, &sym->declared_at,
15270 sym->ns->proc_name->name);
15271 return;
15272 }
15273
15274 if (sym->ts.type == BT_LOGICAL
15275 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15276 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15277 && sym->ns->proc_name->attr.is_bind_c)))
15278 {
15279 int i;
15280 for (i = 0; gfc_logical_kinds[i].kind; i++)
15281 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15282 break;
15283 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15284 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15285 "%L with non-C_Bool kind in BIND(C) procedure "
15286 "%qs", sym->name, &sym->declared_at,
15287 sym->ns->proc_name->name))
15288 return;
15289 else if (!gfc_logical_kinds[i].c_bool
15290 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15291 "%qs at %L with non-C_Bool kind in "
15292 "BIND(C) procedure %qs", sym->name,
15293 &sym->declared_at,
15294 sym->attr.function ? sym->name
15295 : sym->ns->proc_name->name))
15296 return;
15297 }
15298
15299 switch (sym->attr.flavor)
15300 {
15301 case FL_VARIABLE:
15302 if (!resolve_fl_variable (sym, mp_flag))
15303 return;
15304 break;
15305
15306 case FL_PROCEDURE:
15307 if (sym->formal && !sym->formal_ns)
15308 {
15309 /* Check that none of the arguments are a namelist. */
15310 gfc_formal_arglist *formal = sym->formal;
15311
15312 for (; formal; formal = formal->next)
15313 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15314 {
15315 gfc_error ("Namelist %qs cannot be an argument to "
15316 "subroutine or function at %L",
15317 formal->sym->name, &sym->declared_at);
15318 return;
15319 }
15320 }
15321
15322 if (!resolve_fl_procedure (sym, mp_flag))
15323 return;
15324 break;
15325
15326 case FL_NAMELIST:
15327 if (!resolve_fl_namelist (sym))
15328 return;
15329 break;
15330
15331 case FL_PARAMETER:
15332 if (!resolve_fl_parameter (sym))
15333 return;
15334 break;
15335
15336 default:
15337 break;
15338 }
15339
15340 /* Resolve array specifier. Check as well some constraints
15341 on COMMON blocks. */
15342
15343 check_constant = sym->attr.in_common && !sym->attr.pointer;
15344
15345 /* Set the formal_arg_flag so that check_conflict will not throw
15346 an error for host associated variables in the specification
15347 expression for an array_valued function. */
15348 if ((sym->attr.function || sym->attr.result) && sym->as)
15349 formal_arg_flag = true;
15350
15351 saved_specification_expr = specification_expr;
15352 specification_expr = true;
15353 gfc_resolve_array_spec (sym->as, check_constant);
15354 specification_expr = saved_specification_expr;
15355
15356 formal_arg_flag = false;
15357
15358 /* Resolve formal namespaces. */
15359 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15360 && !sym->attr.contained && !sym->attr.intrinsic)
15361 gfc_resolve (sym->formal_ns);
15362
15363 /* Make sure the formal namespace is present. */
15364 if (sym->formal && !sym->formal_ns)
15365 {
15366 gfc_formal_arglist *formal = sym->formal;
15367 while (formal && !formal->sym)
15368 formal = formal->next;
15369
15370 if (formal)
15371 {
15372 sym->formal_ns = formal->sym->ns;
15373 if (sym->ns != formal->sym->ns)
15374 sym->formal_ns->refs++;
15375 }
15376 }
15377
15378 /* Check threadprivate restrictions. */
15379 if (sym->attr.threadprivate && !sym->attr.save
15380 && !(sym->ns->save_all && !sym->attr.automatic)
15381 && (!sym->attr.in_common
15382 && sym->module == NULL
15383 && (sym->ns->proc_name == NULL
15384 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15385 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15386
15387 /* Check omp declare target restrictions. */
15388 if (sym->attr.omp_declare_target
15389 && sym->attr.flavor == FL_VARIABLE
15390 && !sym->attr.save
15391 && !(sym->ns->save_all && !sym->attr.automatic)
15392 && (!sym->attr.in_common
15393 && sym->module == NULL
15394 && (sym->ns->proc_name == NULL
15395 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15396 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15397 sym->name, &sym->declared_at);
15398
15399 /* If we have come this far we can apply default-initializers, as
15400 described in 14.7.5, to those variables that have not already
15401 been assigned one. */
15402 if (sym->ts.type == BT_DERIVED
15403 && !sym->value
15404 && !sym->attr.allocatable
15405 && !sym->attr.alloc_comp)
15406 {
15407 symbol_attribute *a = &sym->attr;
15408
15409 if ((!a->save && !a->dummy && !a->pointer
15410 && !a->in_common && !a->use_assoc
15411 && a->referenced
15412 && !((a->function || a->result)
15413 && (!a->dimension
15414 || sym->ts.u.derived->attr.alloc_comp
15415 || sym->ts.u.derived->attr.pointer_comp))
15416 && !(a->function && sym != sym->result))
15417 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15418 apply_default_init (sym);
15419 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15420 && (sym->ts.u.derived->attr.alloc_comp
15421 || sym->ts.u.derived->attr.pointer_comp))
15422 /* Mark the result symbol to be referenced, when it has allocatable
15423 components. */
15424 sym->result->attr.referenced = 1;
15425 }
15426
15427 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15428 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15429 && !CLASS_DATA (sym)->attr.class_pointer
15430 && !CLASS_DATA (sym)->attr.allocatable)
15431 apply_default_init (sym);
15432
15433 /* If this symbol has a type-spec, check it. */
15434 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15435 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15436 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15437 return;
15438
15439 if (sym->param_list)
15440 resolve_pdt (sym);
15441 }
15442
15443
15444 /************* Resolve DATA statements *************/
15445
15446 static struct
15447 {
15448 gfc_data_value *vnode;
15449 mpz_t left;
15450 }
15451 values;
15452
15453
15454 /* Advance the values structure to point to the next value in the data list. */
15455
15456 static bool
15457 next_data_value (void)
15458 {
15459 while (mpz_cmp_ui (values.left, 0) == 0)
15460 {
15461
15462 if (values.vnode->next == NULL)
15463 return false;
15464
15465 values.vnode = values.vnode->next;
15466 mpz_set (values.left, values.vnode->repeat);
15467 }
15468
15469 return true;
15470 }
15471
15472
15473 static bool
15474 check_data_variable (gfc_data_variable *var, locus *where)
15475 {
15476 gfc_expr *e;
15477 mpz_t size;
15478 mpz_t offset;
15479 bool t;
15480 ar_type mark = AR_UNKNOWN;
15481 int i;
15482 mpz_t section_index[GFC_MAX_DIMENSIONS];
15483 gfc_ref *ref;
15484 gfc_array_ref *ar;
15485 gfc_symbol *sym;
15486 int has_pointer;
15487
15488 if (!gfc_resolve_expr (var->expr))
15489 return false;
15490
15491 ar = NULL;
15492 mpz_init_set_si (offset, 0);
15493 e = var->expr;
15494
15495 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
15496 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
15497 e = e->value.function.actual->expr;
15498
15499 if (e->expr_type != EXPR_VARIABLE)
15500 {
15501 gfc_error ("Expecting definable entity near %L", where);
15502 return false;
15503 }
15504
15505 sym = e->symtree->n.sym;
15506
15507 if (sym->ns->is_block_data && !sym->attr.in_common)
15508 {
15509 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15510 sym->name, &sym->declared_at);
15511 return false;
15512 }
15513
15514 if (e->ref == NULL && sym->as)
15515 {
15516 gfc_error ("DATA array %qs at %L must be specified in a previous"
15517 " declaration", sym->name, where);
15518 return false;
15519 }
15520
15521 has_pointer = sym->attr.pointer;
15522
15523 if (gfc_is_coindexed (e))
15524 {
15525 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
15526 where);
15527 return false;
15528 }
15529
15530 for (ref = e->ref; ref; ref = ref->next)
15531 {
15532 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
15533 has_pointer = 1;
15534
15535 if (has_pointer
15536 && ref->type == REF_ARRAY
15537 && ref->u.ar.type != AR_FULL)
15538 {
15539 gfc_error ("DATA element %qs at %L is a pointer and so must "
15540 "be a full array", sym->name, where);
15541 return false;
15542 }
15543 }
15544
15545 if (e->rank == 0 || has_pointer)
15546 {
15547 mpz_init_set_ui (size, 1);
15548 ref = NULL;
15549 }
15550 else
15551 {
15552 ref = e->ref;
15553
15554 /* Find the array section reference. */
15555 for (ref = e->ref; ref; ref = ref->next)
15556 {
15557 if (ref->type != REF_ARRAY)
15558 continue;
15559 if (ref->u.ar.type == AR_ELEMENT)
15560 continue;
15561 break;
15562 }
15563 gcc_assert (ref);
15564
15565 /* Set marks according to the reference pattern. */
15566 switch (ref->u.ar.type)
15567 {
15568 case AR_FULL:
15569 mark = AR_FULL;
15570 break;
15571
15572 case AR_SECTION:
15573 ar = &ref->u.ar;
15574 /* Get the start position of array section. */
15575 gfc_get_section_index (ar, section_index, &offset);
15576 mark = AR_SECTION;
15577 break;
15578
15579 default:
15580 gcc_unreachable ();
15581 }
15582
15583 if (!gfc_array_size (e, &size))
15584 {
15585 gfc_error ("Nonconstant array section at %L in DATA statement",
15586 where);
15587 mpz_clear (offset);
15588 return false;
15589 }
15590 }
15591
15592 t = true;
15593
15594 while (mpz_cmp_ui (size, 0) > 0)
15595 {
15596 if (!next_data_value ())
15597 {
15598 gfc_error ("DATA statement at %L has more variables than values",
15599 where);
15600 t = false;
15601 break;
15602 }
15603
15604 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
15605 if (!t)
15606 break;
15607
15608 /* If we have more than one element left in the repeat count,
15609 and we have more than one element left in the target variable,
15610 then create a range assignment. */
15611 /* FIXME: Only done for full arrays for now, since array sections
15612 seem tricky. */
15613 if (mark == AR_FULL && ref && ref->next == NULL
15614 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
15615 {
15616 mpz_t range;
15617
15618 if (mpz_cmp (size, values.left) >= 0)
15619 {
15620 mpz_init_set (range, values.left);
15621 mpz_sub (size, size, values.left);
15622 mpz_set_ui (values.left, 0);
15623 }
15624 else
15625 {
15626 mpz_init_set (range, size);
15627 mpz_sub (values.left, values.left, size);
15628 mpz_set_ui (size, 0);
15629 }
15630
15631 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15632 offset, &range);
15633
15634 mpz_add (offset, offset, range);
15635 mpz_clear (range);
15636
15637 if (!t)
15638 break;
15639 }
15640
15641 /* Assign initial value to symbol. */
15642 else
15643 {
15644 mpz_sub_ui (values.left, values.left, 1);
15645 mpz_sub_ui (size, size, 1);
15646
15647 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15648 offset, NULL);
15649 if (!t)
15650 break;
15651
15652 if (mark == AR_FULL)
15653 mpz_add_ui (offset, offset, 1);
15654
15655 /* Modify the array section indexes and recalculate the offset
15656 for next element. */
15657 else if (mark == AR_SECTION)
15658 gfc_advance_section (section_index, ar, &offset);
15659 }
15660 }
15661
15662 if (mark == AR_SECTION)
15663 {
15664 for (i = 0; i < ar->dimen; i++)
15665 mpz_clear (section_index[i]);
15666 }
15667
15668 mpz_clear (size);
15669 mpz_clear (offset);
15670
15671 return t;
15672 }
15673
15674
15675 static bool traverse_data_var (gfc_data_variable *, locus *);
15676
15677 /* Iterate over a list of elements in a DATA statement. */
15678
15679 static bool
15680 traverse_data_list (gfc_data_variable *var, locus *where)
15681 {
15682 mpz_t trip;
15683 iterator_stack frame;
15684 gfc_expr *e, *start, *end, *step;
15685 bool retval = true;
15686
15687 mpz_init (frame.value);
15688 mpz_init (trip);
15689
15690 start = gfc_copy_expr (var->iter.start);
15691 end = gfc_copy_expr (var->iter.end);
15692 step = gfc_copy_expr (var->iter.step);
15693
15694 if (!gfc_simplify_expr (start, 1)
15695 || start->expr_type != EXPR_CONSTANT)
15696 {
15697 gfc_error ("start of implied-do loop at %L could not be "
15698 "simplified to a constant value", &start->where);
15699 retval = false;
15700 goto cleanup;
15701 }
15702 if (!gfc_simplify_expr (end, 1)
15703 || end->expr_type != EXPR_CONSTANT)
15704 {
15705 gfc_error ("end of implied-do loop at %L could not be "
15706 "simplified to a constant value", &start->where);
15707 retval = false;
15708 goto cleanup;
15709 }
15710 if (!gfc_simplify_expr (step, 1)
15711 || step->expr_type != EXPR_CONSTANT)
15712 {
15713 gfc_error ("step of implied-do loop at %L could not be "
15714 "simplified to a constant value", &start->where);
15715 retval = false;
15716 goto cleanup;
15717 }
15718
15719 mpz_set (trip, end->value.integer);
15720 mpz_sub (trip, trip, start->value.integer);
15721 mpz_add (trip, trip, step->value.integer);
15722
15723 mpz_div (trip, trip, step->value.integer);
15724
15725 mpz_set (frame.value, start->value.integer);
15726
15727 frame.prev = iter_stack;
15728 frame.variable = var->iter.var->symtree;
15729 iter_stack = &frame;
15730
15731 while (mpz_cmp_ui (trip, 0) > 0)
15732 {
15733 if (!traverse_data_var (var->list, where))
15734 {
15735 retval = false;
15736 goto cleanup;
15737 }
15738
15739 e = gfc_copy_expr (var->expr);
15740 if (!gfc_simplify_expr (e, 1))
15741 {
15742 gfc_free_expr (e);
15743 retval = false;
15744 goto cleanup;
15745 }
15746
15747 mpz_add (frame.value, frame.value, step->value.integer);
15748
15749 mpz_sub_ui (trip, trip, 1);
15750 }
15751
15752 cleanup:
15753 mpz_clear (frame.value);
15754 mpz_clear (trip);
15755
15756 gfc_free_expr (start);
15757 gfc_free_expr (end);
15758 gfc_free_expr (step);
15759
15760 iter_stack = frame.prev;
15761 return retval;
15762 }
15763
15764
15765 /* Type resolve variables in the variable list of a DATA statement. */
15766
15767 static bool
15768 traverse_data_var (gfc_data_variable *var, locus *where)
15769 {
15770 bool t;
15771
15772 for (; var; var = var->next)
15773 {
15774 if (var->expr == NULL)
15775 t = traverse_data_list (var, where);
15776 else
15777 t = check_data_variable (var, where);
15778
15779 if (!t)
15780 return false;
15781 }
15782
15783 return true;
15784 }
15785
15786
15787 /* Resolve the expressions and iterators associated with a data statement.
15788 This is separate from the assignment checking because data lists should
15789 only be resolved once. */
15790
15791 static bool
15792 resolve_data_variables (gfc_data_variable *d)
15793 {
15794 for (; d; d = d->next)
15795 {
15796 if (d->list == NULL)
15797 {
15798 if (!gfc_resolve_expr (d->expr))
15799 return false;
15800 }
15801 else
15802 {
15803 if (!gfc_resolve_iterator (&d->iter, false, true))
15804 return false;
15805
15806 if (!resolve_data_variables (d->list))
15807 return false;
15808 }
15809 }
15810
15811 return true;
15812 }
15813
15814
15815 /* Resolve a single DATA statement. We implement this by storing a pointer to
15816 the value list into static variables, and then recursively traversing the
15817 variables list, expanding iterators and such. */
15818
15819 static void
15820 resolve_data (gfc_data *d)
15821 {
15822
15823 if (!resolve_data_variables (d->var))
15824 return;
15825
15826 values.vnode = d->value;
15827 if (d->value == NULL)
15828 mpz_set_ui (values.left, 0);
15829 else
15830 mpz_set (values.left, d->value->repeat);
15831
15832 if (!traverse_data_var (d->var, &d->where))
15833 return;
15834
15835 /* At this point, we better not have any values left. */
15836
15837 if (next_data_value ())
15838 gfc_error ("DATA statement at %L has more values than variables",
15839 &d->where);
15840 }
15841
15842
15843 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
15844 accessed by host or use association, is a dummy argument to a pure function,
15845 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
15846 is storage associated with any such variable, shall not be used in the
15847 following contexts: (clients of this function). */
15848
15849 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
15850 procedure. Returns zero if assignment is OK, nonzero if there is a
15851 problem. */
15852 int
15853 gfc_impure_variable (gfc_symbol *sym)
15854 {
15855 gfc_symbol *proc;
15856 gfc_namespace *ns;
15857
15858 if (sym->attr.use_assoc || sym->attr.in_common)
15859 return 1;
15860
15861 /* Check if the symbol's ns is inside the pure procedure. */
15862 for (ns = gfc_current_ns; ns; ns = ns->parent)
15863 {
15864 if (ns == sym->ns)
15865 break;
15866 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
15867 return 1;
15868 }
15869
15870 proc = sym->ns->proc_name;
15871 if (sym->attr.dummy
15872 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
15873 || proc->attr.function))
15874 return 1;
15875
15876 /* TODO: Sort out what can be storage associated, if anything, and include
15877 it here. In principle equivalences should be scanned but it does not
15878 seem to be possible to storage associate an impure variable this way. */
15879 return 0;
15880 }
15881
15882
15883 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
15884 current namespace is inside a pure procedure. */
15885
15886 int
15887 gfc_pure (gfc_symbol *sym)
15888 {
15889 symbol_attribute attr;
15890 gfc_namespace *ns;
15891
15892 if (sym == NULL)
15893 {
15894 /* Check if the current namespace or one of its parents
15895 belongs to a pure procedure. */
15896 for (ns = gfc_current_ns; ns; ns = ns->parent)
15897 {
15898 sym = ns->proc_name;
15899 if (sym == NULL)
15900 return 0;
15901 attr = sym->attr;
15902 if (attr.flavor == FL_PROCEDURE && attr.pure)
15903 return 1;
15904 }
15905 return 0;
15906 }
15907
15908 attr = sym->attr;
15909
15910 return attr.flavor == FL_PROCEDURE && attr.pure;
15911 }
15912
15913
15914 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
15915 checks if the current namespace is implicitly pure. Note that this
15916 function returns false for a PURE procedure. */
15917
15918 int
15919 gfc_implicit_pure (gfc_symbol *sym)
15920 {
15921 gfc_namespace *ns;
15922
15923 if (sym == NULL)
15924 {
15925 /* Check if the current procedure is implicit_pure. Walk up
15926 the procedure list until we find a procedure. */
15927 for (ns = gfc_current_ns; ns; ns = ns->parent)
15928 {
15929 sym = ns->proc_name;
15930 if (sym == NULL)
15931 return 0;
15932
15933 if (sym->attr.flavor == FL_PROCEDURE)
15934 break;
15935 }
15936 }
15937
15938 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
15939 && !sym->attr.pure;
15940 }
15941
15942
15943 void
15944 gfc_unset_implicit_pure (gfc_symbol *sym)
15945 {
15946 gfc_namespace *ns;
15947
15948 if (sym == NULL)
15949 {
15950 /* Check if the current procedure is implicit_pure. Walk up
15951 the procedure list until we find a procedure. */
15952 for (ns = gfc_current_ns; ns; ns = ns->parent)
15953 {
15954 sym = ns->proc_name;
15955 if (sym == NULL)
15956 return;
15957
15958 if (sym->attr.flavor == FL_PROCEDURE)
15959 break;
15960 }
15961 }
15962
15963 if (sym->attr.flavor == FL_PROCEDURE)
15964 sym->attr.implicit_pure = 0;
15965 else
15966 sym->attr.pure = 0;
15967 }
15968
15969
15970 /* Test whether the current procedure is elemental or not. */
15971
15972 int
15973 gfc_elemental (gfc_symbol *sym)
15974 {
15975 symbol_attribute attr;
15976
15977 if (sym == NULL)
15978 sym = gfc_current_ns->proc_name;
15979 if (sym == NULL)
15980 return 0;
15981 attr = sym->attr;
15982
15983 return attr.flavor == FL_PROCEDURE && attr.elemental;
15984 }
15985
15986
15987 /* Warn about unused labels. */
15988
15989 static void
15990 warn_unused_fortran_label (gfc_st_label *label)
15991 {
15992 if (label == NULL)
15993 return;
15994
15995 warn_unused_fortran_label (label->left);
15996
15997 if (label->defined == ST_LABEL_UNKNOWN)
15998 return;
15999
16000 switch (label->referenced)
16001 {
16002 case ST_LABEL_UNKNOWN:
16003 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
16004 label->value, &label->where);
16005 break;
16006
16007 case ST_LABEL_BAD_TARGET:
16008 gfc_warning (OPT_Wunused_label,
16009 "Label %d at %L defined but cannot be used",
16010 label->value, &label->where);
16011 break;
16012
16013 default:
16014 break;
16015 }
16016
16017 warn_unused_fortran_label (label->right);
16018 }
16019
16020
16021 /* Returns the sequence type of a symbol or sequence. */
16022
16023 static seq_type
16024 sequence_type (gfc_typespec ts)
16025 {
16026 seq_type result;
16027 gfc_component *c;
16028
16029 switch (ts.type)
16030 {
16031 case BT_DERIVED:
16032
16033 if (ts.u.derived->components == NULL)
16034 return SEQ_NONDEFAULT;
16035
16036 result = sequence_type (ts.u.derived->components->ts);
16037 for (c = ts.u.derived->components->next; c; c = c->next)
16038 if (sequence_type (c->ts) != result)
16039 return SEQ_MIXED;
16040
16041 return result;
16042
16043 case BT_CHARACTER:
16044 if (ts.kind != gfc_default_character_kind)
16045 return SEQ_NONDEFAULT;
16046
16047 return SEQ_CHARACTER;
16048
16049 case BT_INTEGER:
16050 if (ts.kind != gfc_default_integer_kind)
16051 return SEQ_NONDEFAULT;
16052
16053 return SEQ_NUMERIC;
16054
16055 case BT_REAL:
16056 if (!(ts.kind == gfc_default_real_kind
16057 || ts.kind == gfc_default_double_kind))
16058 return SEQ_NONDEFAULT;
16059
16060 return SEQ_NUMERIC;
16061
16062 case BT_COMPLEX:
16063 if (ts.kind != gfc_default_complex_kind)
16064 return SEQ_NONDEFAULT;
16065
16066 return SEQ_NUMERIC;
16067
16068 case BT_LOGICAL:
16069 if (ts.kind != gfc_default_logical_kind)
16070 return SEQ_NONDEFAULT;
16071
16072 return SEQ_NUMERIC;
16073
16074 default:
16075 return SEQ_NONDEFAULT;
16076 }
16077 }
16078
16079
16080 /* Resolve derived type EQUIVALENCE object. */
16081
16082 static bool
16083 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
16084 {
16085 gfc_component *c = derived->components;
16086
16087 if (!derived)
16088 return true;
16089
16090 /* Shall not be an object of nonsequence derived type. */
16091 if (!derived->attr.sequence)
16092 {
16093 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
16094 "attribute to be an EQUIVALENCE object", sym->name,
16095 &e->where);
16096 return false;
16097 }
16098
16099 /* Shall not have allocatable components. */
16100 if (derived->attr.alloc_comp)
16101 {
16102 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
16103 "components to be an EQUIVALENCE object",sym->name,
16104 &e->where);
16105 return false;
16106 }
16107
16108 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
16109 {
16110 gfc_error ("Derived type variable %qs at %L with default "
16111 "initialization cannot be in EQUIVALENCE with a variable "
16112 "in COMMON", sym->name, &e->where);
16113 return false;
16114 }
16115
16116 for (; c ; c = c->next)
16117 {
16118 if (gfc_bt_struct (c->ts.type)
16119 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
16120 return false;
16121
16122 /* Shall not be an object of sequence derived type containing a pointer
16123 in the structure. */
16124 if (c->attr.pointer)
16125 {
16126 gfc_error ("Derived type variable %qs at %L with pointer "
16127 "component(s) cannot be an EQUIVALENCE object",
16128 sym->name, &e->where);
16129 return false;
16130 }
16131 }
16132 return true;
16133 }
16134
16135
16136 /* Resolve equivalence object.
16137 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
16138 an allocatable array, an object of nonsequence derived type, an object of
16139 sequence derived type containing a pointer at any level of component
16140 selection, an automatic object, a function name, an entry name, a result
16141 name, a named constant, a structure component, or a subobject of any of
16142 the preceding objects. A substring shall not have length zero. A
16143 derived type shall not have components with default initialization nor
16144 shall two objects of an equivalence group be initialized.
16145 Either all or none of the objects shall have an protected attribute.
16146 The simple constraints are done in symbol.c(check_conflict) and the rest
16147 are implemented here. */
16148
16149 static void
16150 resolve_equivalence (gfc_equiv *eq)
16151 {
16152 gfc_symbol *sym;
16153 gfc_symbol *first_sym;
16154 gfc_expr *e;
16155 gfc_ref *r;
16156 locus *last_where = NULL;
16157 seq_type eq_type, last_eq_type;
16158 gfc_typespec *last_ts;
16159 int object, cnt_protected;
16160 const char *msg;
16161
16162 last_ts = &eq->expr->symtree->n.sym->ts;
16163
16164 first_sym = eq->expr->symtree->n.sym;
16165
16166 cnt_protected = 0;
16167
16168 for (object = 1; eq; eq = eq->eq, object++)
16169 {
16170 e = eq->expr;
16171
16172 e->ts = e->symtree->n.sym->ts;
16173 /* match_varspec might not know yet if it is seeing
16174 array reference or substring reference, as it doesn't
16175 know the types. */
16176 if (e->ref && e->ref->type == REF_ARRAY)
16177 {
16178 gfc_ref *ref = e->ref;
16179 sym = e->symtree->n.sym;
16180
16181 if (sym->attr.dimension)
16182 {
16183 ref->u.ar.as = sym->as;
16184 ref = ref->next;
16185 }
16186
16187 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
16188 if (e->ts.type == BT_CHARACTER
16189 && ref
16190 && ref->type == REF_ARRAY
16191 && ref->u.ar.dimen == 1
16192 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
16193 && ref->u.ar.stride[0] == NULL)
16194 {
16195 gfc_expr *start = ref->u.ar.start[0];
16196 gfc_expr *end = ref->u.ar.end[0];
16197 void *mem = NULL;
16198
16199 /* Optimize away the (:) reference. */
16200 if (start == NULL && end == NULL)
16201 {
16202 if (e->ref == ref)
16203 e->ref = ref->next;
16204 else
16205 e->ref->next = ref->next;
16206 mem = ref;
16207 }
16208 else
16209 {
16210 ref->type = REF_SUBSTRING;
16211 if (start == NULL)
16212 start = gfc_get_int_expr (gfc_charlen_int_kind,
16213 NULL, 1);
16214 ref->u.ss.start = start;
16215 if (end == NULL && e->ts.u.cl)
16216 end = gfc_copy_expr (e->ts.u.cl->length);
16217 ref->u.ss.end = end;
16218 ref->u.ss.length = e->ts.u.cl;
16219 e->ts.u.cl = NULL;
16220 }
16221 ref = ref->next;
16222 free (mem);
16223 }
16224
16225 /* Any further ref is an error. */
16226 if (ref)
16227 {
16228 gcc_assert (ref->type == REF_ARRAY);
16229 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16230 &ref->u.ar.where);
16231 continue;
16232 }
16233 }
16234
16235 if (!gfc_resolve_expr (e))
16236 continue;
16237
16238 sym = e->symtree->n.sym;
16239
16240 if (sym->attr.is_protected)
16241 cnt_protected++;
16242 if (cnt_protected > 0 && cnt_protected != object)
16243 {
16244 gfc_error ("Either all or none of the objects in the "
16245 "EQUIVALENCE set at %L shall have the "
16246 "PROTECTED attribute",
16247 &e->where);
16248 break;
16249 }
16250
16251 /* Shall not equivalence common block variables in a PURE procedure. */
16252 if (sym->ns->proc_name
16253 && sym->ns->proc_name->attr.pure
16254 && sym->attr.in_common)
16255 {
16256 /* Need to check for symbols that may have entered the pure
16257 procedure via a USE statement. */
16258 bool saw_sym = false;
16259 if (sym->ns->use_stmts)
16260 {
16261 gfc_use_rename *r;
16262 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16263 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16264 }
16265 else
16266 saw_sym = true;
16267
16268 if (saw_sym)
16269 gfc_error ("COMMON block member %qs at %L cannot be an "
16270 "EQUIVALENCE object in the pure procedure %qs",
16271 sym->name, &e->where, sym->ns->proc_name->name);
16272 break;
16273 }
16274
16275 /* Shall not be a named constant. */
16276 if (e->expr_type == EXPR_CONSTANT)
16277 {
16278 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16279 "object", sym->name, &e->where);
16280 continue;
16281 }
16282
16283 if (e->ts.type == BT_DERIVED
16284 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16285 continue;
16286
16287 /* Check that the types correspond correctly:
16288 Note 5.28:
16289 A numeric sequence structure may be equivalenced to another sequence
16290 structure, an object of default integer type, default real type, double
16291 precision real type, default logical type such that components of the
16292 structure ultimately only become associated to objects of the same
16293 kind. A character sequence structure may be equivalenced to an object
16294 of default character kind or another character sequence structure.
16295 Other objects may be equivalenced only to objects of the same type and
16296 kind parameters. */
16297
16298 /* Identical types are unconditionally OK. */
16299 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16300 goto identical_types;
16301
16302 last_eq_type = sequence_type (*last_ts);
16303 eq_type = sequence_type (sym->ts);
16304
16305 /* Since the pair of objects is not of the same type, mixed or
16306 non-default sequences can be rejected. */
16307
16308 msg = "Sequence %s with mixed components in EQUIVALENCE "
16309 "statement at %L with different type objects";
16310 if ((object ==2
16311 && last_eq_type == SEQ_MIXED
16312 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16313 || (eq_type == SEQ_MIXED
16314 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16315 continue;
16316
16317 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16318 "statement at %L with objects of different type";
16319 if ((object ==2
16320 && last_eq_type == SEQ_NONDEFAULT
16321 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16322 || (eq_type == SEQ_NONDEFAULT
16323 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16324 continue;
16325
16326 msg ="Non-CHARACTER object %qs in default CHARACTER "
16327 "EQUIVALENCE statement at %L";
16328 if (last_eq_type == SEQ_CHARACTER
16329 && eq_type != SEQ_CHARACTER
16330 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16331 continue;
16332
16333 msg ="Non-NUMERIC object %qs in default NUMERIC "
16334 "EQUIVALENCE statement at %L";
16335 if (last_eq_type == SEQ_NUMERIC
16336 && eq_type != SEQ_NUMERIC
16337 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16338 continue;
16339
16340 identical_types:
16341 last_ts =&sym->ts;
16342 last_where = &e->where;
16343
16344 if (!e->ref)
16345 continue;
16346
16347 /* Shall not be an automatic array. */
16348 if (e->ref->type == REF_ARRAY
16349 && !gfc_resolve_array_spec (e->ref->u.ar.as, 1))
16350 {
16351 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16352 "an EQUIVALENCE object", sym->name, &e->where);
16353 continue;
16354 }
16355
16356 r = e->ref;
16357 while (r)
16358 {
16359 /* Shall not be a structure component. */
16360 if (r->type == REF_COMPONENT)
16361 {
16362 gfc_error ("Structure component %qs at %L cannot be an "
16363 "EQUIVALENCE object",
16364 r->u.c.component->name, &e->where);
16365 break;
16366 }
16367
16368 /* A substring shall not have length zero. */
16369 if (r->type == REF_SUBSTRING)
16370 {
16371 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16372 {
16373 gfc_error ("Substring at %L has length zero",
16374 &r->u.ss.start->where);
16375 break;
16376 }
16377 }
16378 r = r->next;
16379 }
16380 }
16381 }
16382
16383
16384 /* Function called by resolve_fntype to flag other symbol used in the
16385 length type parameter specification of function resuls. */
16386
16387 static bool
16388 flag_fn_result_spec (gfc_expr *expr,
16389 gfc_symbol *sym,
16390 int *f ATTRIBUTE_UNUSED)
16391 {
16392 gfc_namespace *ns;
16393 gfc_symbol *s;
16394
16395 if (expr->expr_type == EXPR_VARIABLE)
16396 {
16397 s = expr->symtree->n.sym;
16398 for (ns = s->ns; ns; ns = ns->parent)
16399 if (!ns->parent)
16400 break;
16401
16402 if (sym == s)
16403 {
16404 gfc_error ("Self reference in character length expression "
16405 "for %qs at %L", sym->name, &expr->where);
16406 return true;
16407 }
16408
16409 if (!s->fn_result_spec
16410 && s->attr.flavor == FL_PARAMETER)
16411 {
16412 /* Function contained in a module.... */
16413 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16414 {
16415 gfc_symtree *st;
16416 s->fn_result_spec = 1;
16417 /* Make sure that this symbol is translated as a module
16418 variable. */
16419 st = gfc_get_unique_symtree (ns);
16420 st->n.sym = s;
16421 s->refs++;
16422 }
16423 /* ... which is use associated and called. */
16424 else if (s->attr.use_assoc || s->attr.used_in_submodule
16425 ||
16426 /* External function matched with an interface. */
16427 (s->ns->proc_name
16428 && ((s->ns == ns
16429 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16430 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16431 && s->ns->proc_name->attr.function))
16432 s->fn_result_spec = 1;
16433 }
16434 }
16435 return false;
16436 }
16437
16438
16439 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16440
16441 static void
16442 resolve_fntype (gfc_namespace *ns)
16443 {
16444 gfc_entry_list *el;
16445 gfc_symbol *sym;
16446
16447 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16448 return;
16449
16450 /* If there are any entries, ns->proc_name is the entry master
16451 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16452 if (ns->entries)
16453 sym = ns->entries->sym;
16454 else
16455 sym = ns->proc_name;
16456 if (sym->result == sym
16457 && sym->ts.type == BT_UNKNOWN
16458 && !gfc_set_default_type (sym, 0, NULL)
16459 && !sym->attr.untyped)
16460 {
16461 gfc_error ("Function %qs at %L has no IMPLICIT type",
16462 sym->name, &sym->declared_at);
16463 sym->attr.untyped = 1;
16464 }
16465
16466 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
16467 && !sym->attr.contained
16468 && !gfc_check_symbol_access (sym->ts.u.derived)
16469 && gfc_check_symbol_access (sym))
16470 {
16471 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
16472 "%L of PRIVATE type %qs", sym->name,
16473 &sym->declared_at, sym->ts.u.derived->name);
16474 }
16475
16476 if (ns->entries)
16477 for (el = ns->entries->next; el; el = el->next)
16478 {
16479 if (el->sym->result == el->sym
16480 && el->sym->ts.type == BT_UNKNOWN
16481 && !gfc_set_default_type (el->sym, 0, NULL)
16482 && !el->sym->attr.untyped)
16483 {
16484 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16485 el->sym->name, &el->sym->declared_at);
16486 el->sym->attr.untyped = 1;
16487 }
16488 }
16489
16490 if (sym->ts.type == BT_CHARACTER)
16491 gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
16492 }
16493
16494
16495 /* 12.3.2.1.1 Defined operators. */
16496
16497 static bool
16498 check_uop_procedure (gfc_symbol *sym, locus where)
16499 {
16500 gfc_formal_arglist *formal;
16501
16502 if (!sym->attr.function)
16503 {
16504 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16505 sym->name, &where);
16506 return false;
16507 }
16508
16509 if (sym->ts.type == BT_CHARACTER
16510 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
16511 && !(sym->result && ((sym->result->ts.u.cl
16512 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
16513 {
16514 gfc_error ("User operator procedure %qs at %L cannot be assumed "
16515 "character length", sym->name, &where);
16516 return false;
16517 }
16518
16519 formal = gfc_sym_get_dummy_args (sym);
16520 if (!formal || !formal->sym)
16521 {
16522 gfc_error ("User operator procedure %qs at %L must have at least "
16523 "one argument", sym->name, &where);
16524 return false;
16525 }
16526
16527 if (formal->sym->attr.intent != INTENT_IN)
16528 {
16529 gfc_error ("First argument of operator interface at %L must be "
16530 "INTENT(IN)", &where);
16531 return false;
16532 }
16533
16534 if (formal->sym->attr.optional)
16535 {
16536 gfc_error ("First argument of operator interface at %L cannot be "
16537 "optional", &where);
16538 return false;
16539 }
16540
16541 formal = formal->next;
16542 if (!formal || !formal->sym)
16543 return true;
16544
16545 if (formal->sym->attr.intent != INTENT_IN)
16546 {
16547 gfc_error ("Second argument of operator interface at %L must be "
16548 "INTENT(IN)", &where);
16549 return false;
16550 }
16551
16552 if (formal->sym->attr.optional)
16553 {
16554 gfc_error ("Second argument of operator interface at %L cannot be "
16555 "optional", &where);
16556 return false;
16557 }
16558
16559 if (formal->next)
16560 {
16561 gfc_error ("Operator interface at %L must have, at most, two "
16562 "arguments", &where);
16563 return false;
16564 }
16565
16566 return true;
16567 }
16568
16569 static void
16570 gfc_resolve_uops (gfc_symtree *symtree)
16571 {
16572 gfc_interface *itr;
16573
16574 if (symtree == NULL)
16575 return;
16576
16577 gfc_resolve_uops (symtree->left);
16578 gfc_resolve_uops (symtree->right);
16579
16580 for (itr = symtree->n.uop->op; itr; itr = itr->next)
16581 check_uop_procedure (itr->sym, itr->sym->declared_at);
16582 }
16583
16584
16585 /* Examine all of the expressions associated with a program unit,
16586 assign types to all intermediate expressions, make sure that all
16587 assignments are to compatible types and figure out which names
16588 refer to which functions or subroutines. It doesn't check code
16589 block, which is handled by gfc_resolve_code. */
16590
16591 static void
16592 resolve_types (gfc_namespace *ns)
16593 {
16594 gfc_namespace *n;
16595 gfc_charlen *cl;
16596 gfc_data *d;
16597 gfc_equiv *eq;
16598 gfc_namespace* old_ns = gfc_current_ns;
16599
16600 if (ns->types_resolved)
16601 return;
16602
16603 /* Check that all IMPLICIT types are ok. */
16604 if (!ns->seen_implicit_none)
16605 {
16606 unsigned letter;
16607 for (letter = 0; letter != GFC_LETTERS; ++letter)
16608 if (ns->set_flag[letter]
16609 && !resolve_typespec_used (&ns->default_type[letter],
16610 &ns->implicit_loc[letter], NULL))
16611 return;
16612 }
16613
16614 gfc_current_ns = ns;
16615
16616 resolve_entries (ns);
16617
16618 resolve_common_vars (&ns->blank_common, false);
16619 resolve_common_blocks (ns->common_root);
16620
16621 resolve_contained_functions (ns);
16622
16623 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
16624 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
16625 resolve_formal_arglist (ns->proc_name);
16626
16627 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
16628
16629 for (cl = ns->cl_list; cl; cl = cl->next)
16630 resolve_charlen (cl);
16631
16632 gfc_traverse_ns (ns, resolve_symbol);
16633
16634 resolve_fntype (ns);
16635
16636 for (n = ns->contained; n; n = n->sibling)
16637 {
16638 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
16639 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
16640 "also be PURE", n->proc_name->name,
16641 &n->proc_name->declared_at);
16642
16643 resolve_types (n);
16644 }
16645
16646 forall_flag = 0;
16647 gfc_do_concurrent_flag = 0;
16648 gfc_check_interfaces (ns);
16649
16650 gfc_traverse_ns (ns, resolve_values);
16651
16652 if (ns->save_all)
16653 gfc_save_all (ns);
16654
16655 iter_stack = NULL;
16656 for (d = ns->data; d; d = d->next)
16657 resolve_data (d);
16658
16659 iter_stack = NULL;
16660 gfc_traverse_ns (ns, gfc_formalize_init_value);
16661
16662 gfc_traverse_ns (ns, gfc_verify_binding_labels);
16663
16664 for (eq = ns->equiv; eq; eq = eq->next)
16665 resolve_equivalence (eq);
16666
16667 /* Warn about unused labels. */
16668 if (warn_unused_label)
16669 warn_unused_fortran_label (ns->st_labels);
16670
16671 gfc_resolve_uops (ns->uop_root);
16672
16673 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
16674
16675 gfc_resolve_omp_declare_simd (ns);
16676
16677 gfc_resolve_omp_udrs (ns->omp_udr_root);
16678
16679 ns->types_resolved = 1;
16680
16681 gfc_current_ns = old_ns;
16682 }
16683
16684
16685 /* Call gfc_resolve_code recursively. */
16686
16687 static void
16688 resolve_codes (gfc_namespace *ns)
16689 {
16690 gfc_namespace *n;
16691 bitmap_obstack old_obstack;
16692
16693 if (ns->resolved == 1)
16694 return;
16695
16696 for (n = ns->contained; n; n = n->sibling)
16697 resolve_codes (n);
16698
16699 gfc_current_ns = ns;
16700
16701 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
16702 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
16703 cs_base = NULL;
16704
16705 /* Set to an out of range value. */
16706 current_entry_id = -1;
16707
16708 old_obstack = labels_obstack;
16709 bitmap_obstack_initialize (&labels_obstack);
16710
16711 gfc_resolve_oacc_declare (ns);
16712 gfc_resolve_omp_local_vars (ns);
16713 gfc_resolve_code (ns->code, ns);
16714
16715 bitmap_obstack_release (&labels_obstack);
16716 labels_obstack = old_obstack;
16717 }
16718
16719
16720 /* This function is called after a complete program unit has been compiled.
16721 Its purpose is to examine all of the expressions associated with a program
16722 unit, assign types to all intermediate expressions, make sure that all
16723 assignments are to compatible types and figure out which names refer to
16724 which functions or subroutines. */
16725
16726 void
16727 gfc_resolve (gfc_namespace *ns)
16728 {
16729 gfc_namespace *old_ns;
16730 code_stack *old_cs_base;
16731 struct gfc_omp_saved_state old_omp_state;
16732
16733 if (ns->resolved)
16734 return;
16735
16736 ns->resolved = -1;
16737 old_ns = gfc_current_ns;
16738 old_cs_base = cs_base;
16739
16740 /* As gfc_resolve can be called during resolution of an OpenMP construct
16741 body, we should clear any state associated to it, so that say NS's
16742 DO loops are not interpreted as OpenMP loops. */
16743 if (!ns->construct_entities)
16744 gfc_omp_save_and_clear_state (&old_omp_state);
16745
16746 resolve_types (ns);
16747 component_assignment_level = 0;
16748 resolve_codes (ns);
16749
16750 gfc_current_ns = old_ns;
16751 cs_base = old_cs_base;
16752 ns->resolved = 1;
16753
16754 gfc_run_passes (ns);
16755
16756 if (!ns->construct_entities)
16757 gfc_omp_restore_state (&old_omp_state);
16758 }