]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/resolve.c
re PR fortran/84115 (Failure in associate construct with concatenated character target)
[thirdparty/gcc.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2018 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 95 Draft Standard, page 51, Section 5.1.1.5, on the Character
605 type, lists the only ways a character length value of * can be used:
606 dummy arguments of procedures, named constants, and function results
607 in external functions. Internal function results and results of module
608 procedures are not on this list, ergo, not permitted. */
609
610 if (sym->result->ts.type == BT_CHARACTER)
611 {
612 gfc_charlen *cl = sym->result->ts.u.cl;
613 if ((!cl || !cl->length) && !sym->result->ts.deferred)
614 {
615 /* See if this is a module-procedure and adapt error message
616 accordingly. */
617 bool module_proc;
618 gcc_assert (ns->parent && ns->parent->proc_name);
619 module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
620
621 gfc_error (module_proc
622 ? G_("Character-valued module procedure %qs at %L"
623 " must not be assumed length")
624 : G_("Character-valued internal function %qs at %L"
625 " must not be assumed length"),
626 sym->name, &sym->declared_at);
627 }
628 }
629 }
630
631
632 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
633 introduce duplicates. */
634
635 static void
636 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
637 {
638 gfc_formal_arglist *f, *new_arglist;
639 gfc_symbol *new_sym;
640
641 for (; new_args != NULL; new_args = new_args->next)
642 {
643 new_sym = new_args->sym;
644 /* See if this arg is already in the formal argument list. */
645 for (f = proc->formal; f; f = f->next)
646 {
647 if (new_sym == f->sym)
648 break;
649 }
650
651 if (f)
652 continue;
653
654 /* Add a new argument. Argument order is not important. */
655 new_arglist = gfc_get_formal_arglist ();
656 new_arglist->sym = new_sym;
657 new_arglist->next = proc->formal;
658 proc->formal = new_arglist;
659 }
660 }
661
662
663 /* Flag the arguments that are not present in all entries. */
664
665 static void
666 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
667 {
668 gfc_formal_arglist *f, *head;
669 head = new_args;
670
671 for (f = proc->formal; f; f = f->next)
672 {
673 if (f->sym == NULL)
674 continue;
675
676 for (new_args = head; new_args; new_args = new_args->next)
677 {
678 if (new_args->sym == f->sym)
679 break;
680 }
681
682 if (new_args)
683 continue;
684
685 f->sym->attr.not_always_present = 1;
686 }
687 }
688
689
690 /* Resolve alternate entry points. If a symbol has multiple entry points we
691 create a new master symbol for the main routine, and turn the existing
692 symbol into an entry point. */
693
694 static void
695 resolve_entries (gfc_namespace *ns)
696 {
697 gfc_namespace *old_ns;
698 gfc_code *c;
699 gfc_symbol *proc;
700 gfc_entry_list *el;
701 char name[GFC_MAX_SYMBOL_LEN + 1];
702 static int master_count = 0;
703
704 if (ns->proc_name == NULL)
705 return;
706
707 /* No need to do anything if this procedure doesn't have alternate entry
708 points. */
709 if (!ns->entries)
710 return;
711
712 /* We may already have resolved alternate entry points. */
713 if (ns->proc_name->attr.entry_master)
714 return;
715
716 /* If this isn't a procedure something has gone horribly wrong. */
717 gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
718
719 /* Remember the current namespace. */
720 old_ns = gfc_current_ns;
721
722 gfc_current_ns = ns;
723
724 /* Add the main entry point to the list of entry points. */
725 el = gfc_get_entry_list ();
726 el->sym = ns->proc_name;
727 el->id = 0;
728 el->next = ns->entries;
729 ns->entries = el;
730 ns->proc_name->attr.entry = 1;
731
732 /* If it is a module function, it needs to be in the right namespace
733 so that gfc_get_fake_result_decl can gather up the results. The
734 need for this arose in get_proc_name, where these beasts were
735 left in their own namespace, to keep prior references linked to
736 the entry declaration.*/
737 if (ns->proc_name->attr.function
738 && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
739 el->sym->ns = ns;
740
741 /* Do the same for entries where the master is not a module
742 procedure. These are retained in the module namespace because
743 of the module procedure declaration. */
744 for (el = el->next; el; el = el->next)
745 if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
746 && el->sym->attr.mod_proc)
747 el->sym->ns = ns;
748 el = ns->entries;
749
750 /* Add an entry statement for it. */
751 c = gfc_get_code (EXEC_ENTRY);
752 c->ext.entry = el;
753 c->next = ns->code;
754 ns->code = c;
755
756 /* Create a new symbol for the master function. */
757 /* Give the internal function a unique name (within this file).
758 Also include the function name so the user has some hope of figuring
759 out what is going on. */
760 snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
761 master_count++, ns->proc_name->name);
762 gfc_get_ha_symbol (name, &proc);
763 gcc_assert (proc != NULL);
764
765 gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
766 if (ns->proc_name->attr.subroutine)
767 gfc_add_subroutine (&proc->attr, proc->name, NULL);
768 else
769 {
770 gfc_symbol *sym;
771 gfc_typespec *ts, *fts;
772 gfc_array_spec *as, *fas;
773 gfc_add_function (&proc->attr, proc->name, NULL);
774 proc->result = proc;
775 fas = ns->entries->sym->as;
776 fas = fas ? fas : ns->entries->sym->result->as;
777 fts = &ns->entries->sym->result->ts;
778 if (fts->type == BT_UNKNOWN)
779 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
780 for (el = ns->entries->next; el; el = el->next)
781 {
782 ts = &el->sym->result->ts;
783 as = el->sym->as;
784 as = as ? as : el->sym->result->as;
785 if (ts->type == BT_UNKNOWN)
786 ts = gfc_get_default_type (el->sym->result->name, NULL);
787
788 if (! gfc_compare_types (ts, fts)
789 || (el->sym->result->attr.dimension
790 != ns->entries->sym->result->attr.dimension)
791 || (el->sym->result->attr.pointer
792 != ns->entries->sym->result->attr.pointer))
793 break;
794 else if (as && fas && ns->entries->sym->result != el->sym->result
795 && gfc_compare_array_spec (as, fas) == 0)
796 gfc_error ("Function %s at %L has entries with mismatched "
797 "array specifications", ns->entries->sym->name,
798 &ns->entries->sym->declared_at);
799 /* The characteristics need to match and thus both need to have
800 the same string length, i.e. both len=*, or both len=4.
801 Having both len=<variable> is also possible, but difficult to
802 check at compile time. */
803 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
804 && (((ts->u.cl->length && !fts->u.cl->length)
805 ||(!ts->u.cl->length && fts->u.cl->length))
806 || (ts->u.cl->length
807 && ts->u.cl->length->expr_type
808 != fts->u.cl->length->expr_type)
809 || (ts->u.cl->length
810 && ts->u.cl->length->expr_type == EXPR_CONSTANT
811 && mpz_cmp (ts->u.cl->length->value.integer,
812 fts->u.cl->length->value.integer) != 0)))
813 gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
814 "entries returning variables of different "
815 "string lengths", ns->entries->sym->name,
816 &ns->entries->sym->declared_at);
817 }
818
819 if (el == NULL)
820 {
821 sym = ns->entries->sym->result;
822 /* All result types the same. */
823 proc->ts = *fts;
824 if (sym->attr.dimension)
825 gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
826 if (sym->attr.pointer)
827 gfc_add_pointer (&proc->attr, NULL);
828 }
829 else
830 {
831 /* Otherwise the result will be passed through a union by
832 reference. */
833 proc->attr.mixed_entry_master = 1;
834 for (el = ns->entries; el; el = el->next)
835 {
836 sym = el->sym->result;
837 if (sym->attr.dimension)
838 {
839 if (el == ns->entries)
840 gfc_error ("FUNCTION result %s can't be an array in "
841 "FUNCTION %s at %L", sym->name,
842 ns->entries->sym->name, &sym->declared_at);
843 else
844 gfc_error ("ENTRY result %s can't be an array in "
845 "FUNCTION %s at %L", sym->name,
846 ns->entries->sym->name, &sym->declared_at);
847 }
848 else if (sym->attr.pointer)
849 {
850 if (el == ns->entries)
851 gfc_error ("FUNCTION result %s can't be a POINTER in "
852 "FUNCTION %s at %L", sym->name,
853 ns->entries->sym->name, &sym->declared_at);
854 else
855 gfc_error ("ENTRY result %s can't be a POINTER in "
856 "FUNCTION %s at %L", sym->name,
857 ns->entries->sym->name, &sym->declared_at);
858 }
859 else
860 {
861 ts = &sym->ts;
862 if (ts->type == BT_UNKNOWN)
863 ts = gfc_get_default_type (sym->name, NULL);
864 switch (ts->type)
865 {
866 case BT_INTEGER:
867 if (ts->kind == gfc_default_integer_kind)
868 sym = NULL;
869 break;
870 case BT_REAL:
871 if (ts->kind == gfc_default_real_kind
872 || ts->kind == gfc_default_double_kind)
873 sym = NULL;
874 break;
875 case BT_COMPLEX:
876 if (ts->kind == gfc_default_complex_kind)
877 sym = NULL;
878 break;
879 case BT_LOGICAL:
880 if (ts->kind == gfc_default_logical_kind)
881 sym = NULL;
882 break;
883 case BT_UNKNOWN:
884 /* We will issue error elsewhere. */
885 sym = NULL;
886 break;
887 default:
888 break;
889 }
890 if (sym)
891 {
892 if (el == ns->entries)
893 gfc_error ("FUNCTION result %s can't be of type %s "
894 "in FUNCTION %s at %L", sym->name,
895 gfc_typename (ts), ns->entries->sym->name,
896 &sym->declared_at);
897 else
898 gfc_error ("ENTRY result %s can't be of type %s "
899 "in FUNCTION %s at %L", sym->name,
900 gfc_typename (ts), ns->entries->sym->name,
901 &sym->declared_at);
902 }
903 }
904 }
905 }
906 }
907 proc->attr.access = ACCESS_PRIVATE;
908 proc->attr.entry_master = 1;
909
910 /* Merge all the entry point arguments. */
911 for (el = ns->entries; el; el = el->next)
912 merge_argument_lists (proc, el->sym->formal);
913
914 /* Check the master formal arguments for any that are not
915 present in all entry points. */
916 for (el = ns->entries; el; el = el->next)
917 check_argument_lists (proc, el->sym->formal);
918
919 /* Use the master function for the function body. */
920 ns->proc_name = proc;
921
922 /* Finalize the new symbols. */
923 gfc_commit_symbols ();
924
925 /* Restore the original namespace. */
926 gfc_current_ns = old_ns;
927 }
928
929
930 /* Resolve common variables. */
931 static void
932 resolve_common_vars (gfc_common_head *common_block, bool named_common)
933 {
934 gfc_symbol *csym = common_block->head;
935
936 for (; csym; csym = csym->common_next)
937 {
938 /* gfc_add_in_common may have been called before, but the reported errors
939 have been ignored to continue parsing.
940 We do the checks again here. */
941 if (!csym->attr.use_assoc)
942 gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
943
944 if (csym->value || csym->attr.data)
945 {
946 if (!csym->ns->is_block_data)
947 gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
948 "but only in BLOCK DATA initialization is "
949 "allowed", csym->name, &csym->declared_at);
950 else if (!named_common)
951 gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
952 "in a blank COMMON but initialization is only "
953 "allowed in named common blocks", csym->name,
954 &csym->declared_at);
955 }
956
957 if (UNLIMITED_POLY (csym))
958 gfc_error_now ("%qs in cannot appear in COMMON at %L "
959 "[F2008:C5100]", csym->name, &csym->declared_at);
960
961 if (csym->ts.type != BT_DERIVED)
962 continue;
963
964 if (!(csym->ts.u.derived->attr.sequence
965 || csym->ts.u.derived->attr.is_bind_c))
966 gfc_error_now ("Derived type variable %qs in COMMON at %L "
967 "has neither the SEQUENCE nor the BIND(C) "
968 "attribute", csym->name, &csym->declared_at);
969 if (csym->ts.u.derived->attr.alloc_comp)
970 gfc_error_now ("Derived type variable %qs in COMMON at %L "
971 "has an ultimate component that is "
972 "allocatable", csym->name, &csym->declared_at);
973 if (gfc_has_default_initializer (csym->ts.u.derived))
974 gfc_error_now ("Derived type variable %qs in COMMON at %L "
975 "may not have default initializer", csym->name,
976 &csym->declared_at);
977
978 if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
979 gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
980 }
981 }
982
983 /* Resolve common blocks. */
984 static void
985 resolve_common_blocks (gfc_symtree *common_root)
986 {
987 gfc_symbol *sym;
988 gfc_gsymbol * gsym;
989
990 if (common_root == NULL)
991 return;
992
993 if (common_root->left)
994 resolve_common_blocks (common_root->left);
995 if (common_root->right)
996 resolve_common_blocks (common_root->right);
997
998 resolve_common_vars (common_root->n.common, true);
999
1000 /* The common name is a global name - in Fortran 2003 also if it has a
1001 C binding name, since Fortran 2008 only the C binding name is a global
1002 identifier. */
1003 if (!common_root->n.common->binding_label
1004 || gfc_notification_std (GFC_STD_F2008))
1005 {
1006 gsym = gfc_find_gsymbol (gfc_gsym_root,
1007 common_root->n.common->name);
1008
1009 if (gsym && gfc_notification_std (GFC_STD_F2008)
1010 && gsym->type == GSYM_COMMON
1011 && ((common_root->n.common->binding_label
1012 && (!gsym->binding_label
1013 || strcmp (common_root->n.common->binding_label,
1014 gsym->binding_label) != 0))
1015 || (!common_root->n.common->binding_label
1016 && gsym->binding_label)))
1017 {
1018 gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
1019 "identifier and must thus have the same binding name "
1020 "as the same-named COMMON block at %L: %s vs %s",
1021 common_root->n.common->name, &common_root->n.common->where,
1022 &gsym->where,
1023 common_root->n.common->binding_label
1024 ? common_root->n.common->binding_label : "(blank)",
1025 gsym->binding_label ? gsym->binding_label : "(blank)");
1026 return;
1027 }
1028
1029 if (gsym && gsym->type != GSYM_COMMON
1030 && !common_root->n.common->binding_label)
1031 {
1032 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1033 "as entity at %L",
1034 common_root->n.common->name, &common_root->n.common->where,
1035 &gsym->where);
1036 return;
1037 }
1038 if (gsym && gsym->type != GSYM_COMMON)
1039 {
1040 gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
1041 "%L sharing the identifier with global non-COMMON-block "
1042 "entity at %L", common_root->n.common->name,
1043 &common_root->n.common->where, &gsym->where);
1044 return;
1045 }
1046 if (!gsym)
1047 {
1048 gsym = gfc_get_gsymbol (common_root->n.common->name);
1049 gsym->type = GSYM_COMMON;
1050 gsym->where = common_root->n.common->where;
1051 gsym->defined = 1;
1052 }
1053 gsym->used = 1;
1054 }
1055
1056 if (common_root->n.common->binding_label)
1057 {
1058 gsym = gfc_find_gsymbol (gfc_gsym_root,
1059 common_root->n.common->binding_label);
1060 if (gsym && gsym->type != GSYM_COMMON)
1061 {
1062 gfc_error ("COMMON block at %L with binding label %qs uses the same "
1063 "global identifier as entity at %L",
1064 &common_root->n.common->where,
1065 common_root->n.common->binding_label, &gsym->where);
1066 return;
1067 }
1068 if (!gsym)
1069 {
1070 gsym = gfc_get_gsymbol (common_root->n.common->binding_label);
1071 gsym->type = GSYM_COMMON;
1072 gsym->where = common_root->n.common->where;
1073 gsym->defined = 1;
1074 }
1075 gsym->used = 1;
1076 }
1077
1078 gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
1079 if (sym == NULL)
1080 return;
1081
1082 if (sym->attr.flavor == FL_PARAMETER)
1083 gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
1084 sym->name, &common_root->n.common->where, &sym->declared_at);
1085
1086 if (sym->attr.external)
1087 gfc_error ("COMMON block %qs at %L can not have the EXTERNAL attribute",
1088 sym->name, &common_root->n.common->where);
1089
1090 if (sym->attr.intrinsic)
1091 gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
1092 sym->name, &common_root->n.common->where);
1093 else if (sym->attr.result
1094 || gfc_is_function_return_value (sym, gfc_current_ns))
1095 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1096 "that is also a function result", sym->name,
1097 &common_root->n.common->where);
1098 else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
1099 && sym->attr.proc != PROC_ST_FUNCTION)
1100 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1101 "that is also a global procedure", sym->name,
1102 &common_root->n.common->where);
1103 }
1104
1105
1106 /* Resolve contained function types. Because contained functions can call one
1107 another, they have to be worked out before any of the contained procedures
1108 can be resolved.
1109
1110 The good news is that if a function doesn't already have a type, the only
1111 way it can get one is through an IMPLICIT type or a RESULT variable, because
1112 by definition contained functions are contained namespace they're contained
1113 in, not in a sibling or parent namespace. */
1114
1115 static void
1116 resolve_contained_functions (gfc_namespace *ns)
1117 {
1118 gfc_namespace *child;
1119 gfc_entry_list *el;
1120
1121 resolve_formal_arglists (ns);
1122
1123 for (child = ns->contained; child; child = child->sibling)
1124 {
1125 /* Resolve alternate entry points first. */
1126 resolve_entries (child);
1127
1128 /* Then check function return types. */
1129 resolve_contained_fntype (child->proc_name, child);
1130 for (el = child->entries; el; el = el->next)
1131 resolve_contained_fntype (el->sym, child);
1132 }
1133 }
1134
1135
1136
1137 /* A Parameterized Derived Type constructor must contain values for
1138 the PDT KIND parameters or they must have a default initializer.
1139 Go through the constructor picking out the KIND expressions,
1140 storing them in 'param_list' and then call gfc_get_pdt_instance
1141 to obtain the PDT instance. */
1142
1143 static gfc_actual_arglist *param_list, *param_tail, *param;
1144
1145 static bool
1146 get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
1147 {
1148 param = gfc_get_actual_arglist ();
1149 if (!param_list)
1150 param_list = param_tail = param;
1151 else
1152 {
1153 param_tail->next = param;
1154 param_tail = param_tail->next;
1155 }
1156
1157 param_tail->name = c->name;
1158 if (expr)
1159 param_tail->expr = gfc_copy_expr (expr);
1160 else if (c->initializer)
1161 param_tail->expr = gfc_copy_expr (c->initializer);
1162 else
1163 {
1164 param_tail->spec_type = SPEC_ASSUMED;
1165 if (c->attr.pdt_kind)
1166 {
1167 gfc_error ("The KIND parameter %qs in the PDT constructor "
1168 "at %C has no value", param->name);
1169 return false;
1170 }
1171 }
1172
1173 return true;
1174 }
1175
1176 static bool
1177 get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
1178 gfc_symbol *derived)
1179 {
1180 gfc_constructor *cons = NULL;
1181 gfc_component *comp;
1182 bool t = true;
1183
1184 if (expr && expr->expr_type == EXPR_STRUCTURE)
1185 cons = gfc_constructor_first (expr->value.constructor);
1186 else if (constr)
1187 cons = *constr;
1188 gcc_assert (cons);
1189
1190 comp = derived->components;
1191
1192 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1193 {
1194 if (cons->expr
1195 && cons->expr->expr_type == EXPR_STRUCTURE
1196 && comp->ts.type == BT_DERIVED)
1197 {
1198 t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
1199 if (!t)
1200 return t;
1201 }
1202 else if (comp->ts.type == BT_DERIVED)
1203 {
1204 t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
1205 if (!t)
1206 return t;
1207 }
1208 else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
1209 && derived->attr.pdt_template)
1210 {
1211 t = get_pdt_spec_expr (comp, cons->expr);
1212 if (!t)
1213 return t;
1214 }
1215 }
1216 return t;
1217 }
1218
1219
1220 static bool resolve_fl_derived0 (gfc_symbol *sym);
1221 static bool resolve_fl_struct (gfc_symbol *sym);
1222
1223
1224 /* Resolve all of the elements of a structure constructor and make sure that
1225 the types are correct. The 'init' flag indicates that the given
1226 constructor is an initializer. */
1227
1228 static bool
1229 resolve_structure_cons (gfc_expr *expr, int init)
1230 {
1231 gfc_constructor *cons;
1232 gfc_component *comp;
1233 bool t;
1234 symbol_attribute a;
1235
1236 t = true;
1237
1238 if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
1239 {
1240 if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
1241 resolve_fl_derived0 (expr->ts.u.derived);
1242 else
1243 resolve_fl_struct (expr->ts.u.derived);
1244
1245 /* If this is a Parameterized Derived Type template, find the
1246 instance corresponding to the PDT kind parameters. */
1247 if (expr->ts.u.derived->attr.pdt_template)
1248 {
1249 param_list = NULL;
1250 t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
1251 if (!t)
1252 return t;
1253 gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
1254
1255 expr->param_list = gfc_copy_actual_arglist (param_list);
1256
1257 if (param_list)
1258 gfc_free_actual_arglist (param_list);
1259
1260 if (!expr->ts.u.derived->attr.pdt_type)
1261 return false;
1262 }
1263 }
1264
1265 cons = gfc_constructor_first (expr->value.constructor);
1266
1267 /* A constructor may have references if it is the result of substituting a
1268 parameter variable. In this case we just pull out the component we
1269 want. */
1270 if (expr->ref)
1271 comp = expr->ref->u.c.sym->components;
1272 else
1273 comp = expr->ts.u.derived->components;
1274
1275 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1276 {
1277 int rank;
1278
1279 if (!cons->expr)
1280 continue;
1281
1282 /* Unions use an EXPR_NULL contrived expression to tell the translation
1283 phase to generate an initializer of the appropriate length.
1284 Ignore it here. */
1285 if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
1286 continue;
1287
1288 if (!gfc_resolve_expr (cons->expr))
1289 {
1290 t = false;
1291 continue;
1292 }
1293
1294 rank = comp->as ? comp->as->rank : 0;
1295 if (comp->ts.type == BT_CLASS
1296 && !comp->ts.u.derived->attr.unlimited_polymorphic
1297 && CLASS_DATA (comp)->as)
1298 rank = CLASS_DATA (comp)->as->rank;
1299
1300 if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
1301 && (comp->attr.allocatable || cons->expr->rank))
1302 {
1303 gfc_error ("The rank of the element in the structure "
1304 "constructor at %L does not match that of the "
1305 "component (%d/%d)", &cons->expr->where,
1306 cons->expr->rank, rank);
1307 t = false;
1308 }
1309
1310 /* If we don't have the right type, try to convert it. */
1311
1312 if (!comp->attr.proc_pointer &&
1313 !gfc_compare_types (&cons->expr->ts, &comp->ts))
1314 {
1315 if (strcmp (comp->name, "_extends") == 0)
1316 {
1317 /* Can afford to be brutal with the _extends initializer.
1318 The derived type can get lost because it is PRIVATE
1319 but it is not usage constrained by the standard. */
1320 cons->expr->ts = comp->ts;
1321 }
1322 else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
1323 {
1324 gfc_error ("The element in the structure constructor at %L, "
1325 "for pointer component %qs, is %s but should be %s",
1326 &cons->expr->where, comp->name,
1327 gfc_basic_typename (cons->expr->ts.type),
1328 gfc_basic_typename (comp->ts.type));
1329 t = false;
1330 }
1331 else
1332 {
1333 bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
1334 if (t)
1335 t = t2;
1336 }
1337 }
1338
1339 /* For strings, the length of the constructor should be the same as
1340 the one of the structure, ensure this if the lengths are known at
1341 compile time and when we are dealing with PARAMETER or structure
1342 constructors. */
1343 if (cons->expr->ts.type == BT_CHARACTER && comp->ts.u.cl
1344 && comp->ts.u.cl->length
1345 && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
1346 && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
1347 && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
1348 && cons->expr->rank != 0
1349 && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
1350 comp->ts.u.cl->length->value.integer) != 0)
1351 {
1352 if (cons->expr->expr_type == EXPR_VARIABLE
1353 && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
1354 {
1355 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1356 to make use of the gfc_resolve_character_array_constructor
1357 machinery. The expression is later simplified away to
1358 an array of string literals. */
1359 gfc_expr *para = cons->expr;
1360 cons->expr = gfc_get_expr ();
1361 cons->expr->ts = para->ts;
1362 cons->expr->where = para->where;
1363 cons->expr->expr_type = EXPR_ARRAY;
1364 cons->expr->rank = para->rank;
1365 cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
1366 gfc_constructor_append_expr (&cons->expr->value.constructor,
1367 para, &cons->expr->where);
1368 }
1369
1370 if (cons->expr->expr_type == EXPR_ARRAY)
1371 {
1372 /* Rely on the cleanup of the namespace to deal correctly with
1373 the old charlen. (There was a block here that attempted to
1374 remove the charlen but broke the chain in so doing.) */
1375 cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1376 cons->expr->ts.u.cl->length_from_typespec = true;
1377 cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
1378 gfc_resolve_character_array_constructor (cons->expr);
1379 }
1380 }
1381
1382 if (cons->expr->expr_type == EXPR_NULL
1383 && !(comp->attr.pointer || comp->attr.allocatable
1384 || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
1385 || (comp->ts.type == BT_CLASS
1386 && (CLASS_DATA (comp)->attr.class_pointer
1387 || CLASS_DATA (comp)->attr.allocatable))))
1388 {
1389 t = false;
1390 gfc_error ("The NULL in the structure constructor at %L is "
1391 "being applied to component %qs, which is neither "
1392 "a POINTER nor ALLOCATABLE", &cons->expr->where,
1393 comp->name);
1394 }
1395
1396 if (comp->attr.proc_pointer && comp->ts.interface)
1397 {
1398 /* Check procedure pointer interface. */
1399 gfc_symbol *s2 = NULL;
1400 gfc_component *c2;
1401 const char *name;
1402 char err[200];
1403
1404 c2 = gfc_get_proc_ptr_comp (cons->expr);
1405 if (c2)
1406 {
1407 s2 = c2->ts.interface;
1408 name = c2->name;
1409 }
1410 else if (cons->expr->expr_type == EXPR_FUNCTION)
1411 {
1412 s2 = cons->expr->symtree->n.sym->result;
1413 name = cons->expr->symtree->n.sym->result->name;
1414 }
1415 else if (cons->expr->expr_type != EXPR_NULL)
1416 {
1417 s2 = cons->expr->symtree->n.sym;
1418 name = cons->expr->symtree->n.sym->name;
1419 }
1420
1421 if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
1422 err, sizeof (err), NULL, NULL))
1423 {
1424 gfc_error_opt (OPT_Wargument_mismatch,
1425 "Interface mismatch for procedure-pointer "
1426 "component %qs in structure constructor at %L:"
1427 " %s", comp->name, &cons->expr->where, err);
1428 return false;
1429 }
1430 }
1431
1432 if (!comp->attr.pointer || comp->attr.proc_pointer
1433 || cons->expr->expr_type == EXPR_NULL)
1434 continue;
1435
1436 a = gfc_expr_attr (cons->expr);
1437
1438 if (!a.pointer && !a.target)
1439 {
1440 t = false;
1441 gfc_error ("The element in the structure constructor at %L, "
1442 "for pointer component %qs should be a POINTER or "
1443 "a TARGET", &cons->expr->where, comp->name);
1444 }
1445
1446 if (init)
1447 {
1448 /* F08:C461. Additional checks for pointer initialization. */
1449 if (a.allocatable)
1450 {
1451 t = false;
1452 gfc_error ("Pointer initialization target at %L "
1453 "must not be ALLOCATABLE", &cons->expr->where);
1454 }
1455 if (!a.save)
1456 {
1457 t = false;
1458 gfc_error ("Pointer initialization target at %L "
1459 "must have the SAVE attribute", &cons->expr->where);
1460 }
1461 }
1462
1463 /* F2003, C1272 (3). */
1464 bool impure = cons->expr->expr_type == EXPR_VARIABLE
1465 && (gfc_impure_variable (cons->expr->symtree->n.sym)
1466 || gfc_is_coindexed (cons->expr));
1467 if (impure && gfc_pure (NULL))
1468 {
1469 t = false;
1470 gfc_error ("Invalid expression in the structure constructor for "
1471 "pointer component %qs at %L in PURE procedure",
1472 comp->name, &cons->expr->where);
1473 }
1474
1475 if (impure)
1476 gfc_unset_implicit_pure (NULL);
1477 }
1478
1479 return t;
1480 }
1481
1482
1483 /****************** Expression name resolution ******************/
1484
1485 /* Returns 0 if a symbol was not declared with a type or
1486 attribute declaration statement, nonzero otherwise. */
1487
1488 static int
1489 was_declared (gfc_symbol *sym)
1490 {
1491 symbol_attribute a;
1492
1493 a = sym->attr;
1494
1495 if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
1496 return 1;
1497
1498 if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
1499 || a.optional || a.pointer || a.save || a.target || a.volatile_
1500 || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
1501 || a.asynchronous || a.codimension)
1502 return 1;
1503
1504 return 0;
1505 }
1506
1507
1508 /* Determine if a symbol is generic or not. */
1509
1510 static int
1511 generic_sym (gfc_symbol *sym)
1512 {
1513 gfc_symbol *s;
1514
1515 if (sym->attr.generic ||
1516 (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
1517 return 1;
1518
1519 if (was_declared (sym) || sym->ns->parent == NULL)
1520 return 0;
1521
1522 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1523
1524 if (s != NULL)
1525 {
1526 if (s == sym)
1527 return 0;
1528 else
1529 return generic_sym (s);
1530 }
1531
1532 return 0;
1533 }
1534
1535
1536 /* Determine if a symbol is specific or not. */
1537
1538 static int
1539 specific_sym (gfc_symbol *sym)
1540 {
1541 gfc_symbol *s;
1542
1543 if (sym->attr.if_source == IFSRC_IFBODY
1544 || sym->attr.proc == PROC_MODULE
1545 || sym->attr.proc == PROC_INTERNAL
1546 || sym->attr.proc == PROC_ST_FUNCTION
1547 || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1548 || sym->attr.external)
1549 return 1;
1550
1551 if (was_declared (sym) || sym->ns->parent == NULL)
1552 return 0;
1553
1554 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1555
1556 return (s == NULL) ? 0 : specific_sym (s);
1557 }
1558
1559
1560 /* Figure out if the procedure is specific, generic or unknown. */
1561
1562 enum proc_type
1563 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
1564
1565 static proc_type
1566 procedure_kind (gfc_symbol *sym)
1567 {
1568 if (generic_sym (sym))
1569 return PTYPE_GENERIC;
1570
1571 if (specific_sym (sym))
1572 return PTYPE_SPECIFIC;
1573
1574 return PTYPE_UNKNOWN;
1575 }
1576
1577 /* Check references to assumed size arrays. The flag need_full_assumed_size
1578 is nonzero when matching actual arguments. */
1579
1580 static int need_full_assumed_size = 0;
1581
1582 static bool
1583 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1584 {
1585 if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1586 return false;
1587
1588 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1589 What should it be? */
1590 if (e->ref && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1591 && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1592 && (e->ref->u.ar.type == AR_FULL))
1593 {
1594 gfc_error ("The upper bound in the last dimension must "
1595 "appear in the reference to the assumed size "
1596 "array %qs at %L", sym->name, &e->where);
1597 return true;
1598 }
1599 return false;
1600 }
1601
1602
1603 /* Look for bad assumed size array references in argument expressions
1604 of elemental and array valued intrinsic procedures. Since this is
1605 called from procedure resolution functions, it only recurses at
1606 operators. */
1607
1608 static bool
1609 resolve_assumed_size_actual (gfc_expr *e)
1610 {
1611 if (e == NULL)
1612 return false;
1613
1614 switch (e->expr_type)
1615 {
1616 case EXPR_VARIABLE:
1617 if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1618 return true;
1619 break;
1620
1621 case EXPR_OP:
1622 if (resolve_assumed_size_actual (e->value.op.op1)
1623 || resolve_assumed_size_actual (e->value.op.op2))
1624 return true;
1625 break;
1626
1627 default:
1628 break;
1629 }
1630 return false;
1631 }
1632
1633
1634 /* Check a generic procedure, passed as an actual argument, to see if
1635 there is a matching specific name. If none, it is an error, and if
1636 more than one, the reference is ambiguous. */
1637 static int
1638 count_specific_procs (gfc_expr *e)
1639 {
1640 int n;
1641 gfc_interface *p;
1642 gfc_symbol *sym;
1643
1644 n = 0;
1645 sym = e->symtree->n.sym;
1646
1647 for (p = sym->generic; p; p = p->next)
1648 if (strcmp (sym->name, p->sym->name) == 0)
1649 {
1650 e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1651 sym->name);
1652 n++;
1653 }
1654
1655 if (n > 1)
1656 gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
1657 &e->where);
1658
1659 if (n == 0)
1660 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1661 "argument at %L", sym->name, &e->where);
1662
1663 return n;
1664 }
1665
1666
1667 /* See if a call to sym could possibly be a not allowed RECURSION because of
1668 a missing RECURSIVE declaration. This means that either sym is the current
1669 context itself, or sym is the parent of a contained procedure calling its
1670 non-RECURSIVE containing procedure.
1671 This also works if sym is an ENTRY. */
1672
1673 static bool
1674 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1675 {
1676 gfc_symbol* proc_sym;
1677 gfc_symbol* context_proc;
1678 gfc_namespace* real_context;
1679
1680 if (sym->attr.flavor == FL_PROGRAM
1681 || gfc_fl_struct (sym->attr.flavor))
1682 return false;
1683
1684 gcc_assert (sym->attr.flavor == FL_PROCEDURE);
1685
1686 /* If we've got an ENTRY, find real procedure. */
1687 if (sym->attr.entry && sym->ns->entries)
1688 proc_sym = sym->ns->entries->sym;
1689 else
1690 proc_sym = sym;
1691
1692 /* If sym is RECURSIVE, all is well of course. */
1693 if (proc_sym->attr.recursive || flag_recursive)
1694 return false;
1695
1696 /* Find the context procedure's "real" symbol if it has entries.
1697 We look for a procedure symbol, so recurse on the parents if we don't
1698 find one (like in case of a BLOCK construct). */
1699 for (real_context = context; ; real_context = real_context->parent)
1700 {
1701 /* We should find something, eventually! */
1702 gcc_assert (real_context);
1703
1704 context_proc = (real_context->entries ? real_context->entries->sym
1705 : real_context->proc_name);
1706
1707 /* In some special cases, there may not be a proc_name, like for this
1708 invalid code:
1709 real(bad_kind()) function foo () ...
1710 when checking the call to bad_kind ().
1711 In these cases, we simply return here and assume that the
1712 call is ok. */
1713 if (!context_proc)
1714 return false;
1715
1716 if (context_proc->attr.flavor != FL_LABEL)
1717 break;
1718 }
1719
1720 /* A call from sym's body to itself is recursion, of course. */
1721 if (context_proc == proc_sym)
1722 return true;
1723
1724 /* The same is true if context is a contained procedure and sym the
1725 containing one. */
1726 if (context_proc->attr.contained)
1727 {
1728 gfc_symbol* parent_proc;
1729
1730 gcc_assert (context->parent);
1731 parent_proc = (context->parent->entries ? context->parent->entries->sym
1732 : context->parent->proc_name);
1733
1734 if (parent_proc == proc_sym)
1735 return true;
1736 }
1737
1738 return false;
1739 }
1740
1741
1742 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1743 its typespec and formal argument list. */
1744
1745 bool
1746 gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
1747 {
1748 gfc_intrinsic_sym* isym = NULL;
1749 const char* symstd;
1750
1751 if (sym->formal)
1752 return true;
1753
1754 /* Already resolved. */
1755 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1756 return true;
1757
1758 /* We already know this one is an intrinsic, so we don't call
1759 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1760 gfc_find_subroutine directly to check whether it is a function or
1761 subroutine. */
1762
1763 if (sym->intmod_sym_id && sym->attr.subroutine)
1764 {
1765 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1766 isym = gfc_intrinsic_subroutine_by_id (id);
1767 }
1768 else if (sym->intmod_sym_id)
1769 {
1770 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1771 isym = gfc_intrinsic_function_by_id (id);
1772 }
1773 else if (!sym->attr.subroutine)
1774 isym = gfc_find_function (sym->name);
1775
1776 if (isym && !sym->attr.subroutine)
1777 {
1778 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1779 && !sym->attr.implicit_type)
1780 gfc_warning (OPT_Wsurprising,
1781 "Type specified for intrinsic function %qs at %L is"
1782 " ignored", sym->name, &sym->declared_at);
1783
1784 if (!sym->attr.function &&
1785 !gfc_add_function(&sym->attr, sym->name, loc))
1786 return false;
1787
1788 sym->ts = isym->ts;
1789 }
1790 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1791 {
1792 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1793 {
1794 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1795 " specifier", sym->name, &sym->declared_at);
1796 return false;
1797 }
1798
1799 if (!sym->attr.subroutine &&
1800 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1801 return false;
1802 }
1803 else
1804 {
1805 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1806 &sym->declared_at);
1807 return false;
1808 }
1809
1810 gfc_copy_formal_args_intr (sym, isym, NULL);
1811
1812 sym->attr.pure = isym->pure;
1813 sym->attr.elemental = isym->elemental;
1814
1815 /* Check it is actually available in the standard settings. */
1816 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1817 {
1818 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1819 "available in the current standard settings but %s. Use "
1820 "an appropriate %<-std=*%> option or enable "
1821 "%<-fall-intrinsics%> in order to use it.",
1822 sym->name, &sym->declared_at, symstd);
1823 return false;
1824 }
1825
1826 return true;
1827 }
1828
1829
1830 /* Resolve a procedure expression, like passing it to a called procedure or as
1831 RHS for a procedure pointer assignment. */
1832
1833 static bool
1834 resolve_procedure_expression (gfc_expr* expr)
1835 {
1836 gfc_symbol* sym;
1837
1838 if (expr->expr_type != EXPR_VARIABLE)
1839 return true;
1840 gcc_assert (expr->symtree);
1841
1842 sym = expr->symtree->n.sym;
1843
1844 if (sym->attr.intrinsic)
1845 gfc_resolve_intrinsic (sym, &expr->where);
1846
1847 if (sym->attr.flavor != FL_PROCEDURE
1848 || (sym->attr.function && sym->result == sym))
1849 return true;
1850
1851 /* A non-RECURSIVE procedure that is used as procedure expression within its
1852 own body is in danger of being called recursively. */
1853 if (is_illegal_recursion (sym, gfc_current_ns))
1854 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1855 " itself recursively. Declare it RECURSIVE or use"
1856 " %<-frecursive%>", sym->name, &expr->where);
1857
1858 return true;
1859 }
1860
1861
1862 /* Resolve an actual argument list. Most of the time, this is just
1863 resolving the expressions in the list.
1864 The exception is that we sometimes have to decide whether arguments
1865 that look like procedure arguments are really simple variable
1866 references. */
1867
1868 static bool
1869 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1870 bool no_formal_args)
1871 {
1872 gfc_symbol *sym;
1873 gfc_symtree *parent_st;
1874 gfc_expr *e;
1875 gfc_component *comp;
1876 int save_need_full_assumed_size;
1877 bool return_value = false;
1878 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1879
1880 actual_arg = true;
1881 first_actual_arg = true;
1882
1883 for (; arg; arg = arg->next)
1884 {
1885 e = arg->expr;
1886 if (e == NULL)
1887 {
1888 /* Check the label is a valid branching target. */
1889 if (arg->label)
1890 {
1891 if (arg->label->defined == ST_LABEL_UNKNOWN)
1892 {
1893 gfc_error ("Label %d referenced at %L is never defined",
1894 arg->label->value, &arg->label->where);
1895 goto cleanup;
1896 }
1897 }
1898 first_actual_arg = false;
1899 continue;
1900 }
1901
1902 if (e->expr_type == EXPR_VARIABLE
1903 && e->symtree->n.sym->attr.generic
1904 && no_formal_args
1905 && count_specific_procs (e) != 1)
1906 goto cleanup;
1907
1908 if (e->ts.type != BT_PROCEDURE)
1909 {
1910 save_need_full_assumed_size = need_full_assumed_size;
1911 if (e->expr_type != EXPR_VARIABLE)
1912 need_full_assumed_size = 0;
1913 if (!gfc_resolve_expr (e))
1914 goto cleanup;
1915 need_full_assumed_size = save_need_full_assumed_size;
1916 goto argument_list;
1917 }
1918
1919 /* See if the expression node should really be a variable reference. */
1920
1921 sym = e->symtree->n.sym;
1922
1923 if (sym->attr.flavor == FL_PROCEDURE
1924 || sym->attr.intrinsic
1925 || sym->attr.external)
1926 {
1927 int actual_ok;
1928
1929 /* If a procedure is not already determined to be something else
1930 check if it is intrinsic. */
1931 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1932 sym->attr.intrinsic = 1;
1933
1934 if (sym->attr.proc == PROC_ST_FUNCTION)
1935 {
1936 gfc_error ("Statement function %qs at %L is not allowed as an "
1937 "actual argument", sym->name, &e->where);
1938 }
1939
1940 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1941 sym->attr.subroutine);
1942 if (sym->attr.intrinsic && actual_ok == 0)
1943 {
1944 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1945 "actual argument", sym->name, &e->where);
1946 }
1947
1948 if (sym->attr.contained && !sym->attr.use_assoc
1949 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1950 {
1951 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1952 " used as actual argument at %L",
1953 sym->name, &e->where))
1954 goto cleanup;
1955 }
1956
1957 if (sym->attr.elemental && !sym->attr.intrinsic)
1958 {
1959 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1960 "allowed as an actual argument at %L", sym->name,
1961 &e->where);
1962 }
1963
1964 /* Check if a generic interface has a specific procedure
1965 with the same name before emitting an error. */
1966 if (sym->attr.generic && count_specific_procs (e) != 1)
1967 goto cleanup;
1968
1969 /* Just in case a specific was found for the expression. */
1970 sym = e->symtree->n.sym;
1971
1972 /* If the symbol is the function that names the current (or
1973 parent) scope, then we really have a variable reference. */
1974
1975 if (gfc_is_function_return_value (sym, sym->ns))
1976 goto got_variable;
1977
1978 /* If all else fails, see if we have a specific intrinsic. */
1979 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
1980 {
1981 gfc_intrinsic_sym *isym;
1982
1983 isym = gfc_find_function (sym->name);
1984 if (isym == NULL || !isym->specific)
1985 {
1986 gfc_error ("Unable to find a specific INTRINSIC procedure "
1987 "for the reference %qs at %L", sym->name,
1988 &e->where);
1989 goto cleanup;
1990 }
1991 sym->ts = isym->ts;
1992 sym->attr.intrinsic = 1;
1993 sym->attr.function = 1;
1994 }
1995
1996 if (!gfc_resolve_expr (e))
1997 goto cleanup;
1998 goto argument_list;
1999 }
2000
2001 /* See if the name is a module procedure in a parent unit. */
2002
2003 if (was_declared (sym) || sym->ns->parent == NULL)
2004 goto got_variable;
2005
2006 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2007 {
2008 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2009 goto cleanup;
2010 }
2011
2012 if (parent_st == NULL)
2013 goto got_variable;
2014
2015 sym = parent_st->n.sym;
2016 e->symtree = parent_st; /* Point to the right thing. */
2017
2018 if (sym->attr.flavor == FL_PROCEDURE
2019 || sym->attr.intrinsic
2020 || sym->attr.external)
2021 {
2022 if (!gfc_resolve_expr (e))
2023 goto cleanup;
2024 goto argument_list;
2025 }
2026
2027 got_variable:
2028 e->expr_type = EXPR_VARIABLE;
2029 e->ts = sym->ts;
2030 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2031 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2032 && CLASS_DATA (sym)->as))
2033 {
2034 e->rank = sym->ts.type == BT_CLASS
2035 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2036 e->ref = gfc_get_ref ();
2037 e->ref->type = REF_ARRAY;
2038 e->ref->u.ar.type = AR_FULL;
2039 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2040 ? CLASS_DATA (sym)->as : sym->as;
2041 }
2042
2043 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2044 primary.c (match_actual_arg). If above code determines that it
2045 is a variable instead, it needs to be resolved as it was not
2046 done at the beginning of this function. */
2047 save_need_full_assumed_size = need_full_assumed_size;
2048 if (e->expr_type != EXPR_VARIABLE)
2049 need_full_assumed_size = 0;
2050 if (!gfc_resolve_expr (e))
2051 goto cleanup;
2052 need_full_assumed_size = save_need_full_assumed_size;
2053
2054 argument_list:
2055 /* Check argument list functions %VAL, %LOC and %REF. There is
2056 nothing to do for %REF. */
2057 if (arg->name && arg->name[0] == '%')
2058 {
2059 if (strncmp ("%VAL", arg->name, 4) == 0)
2060 {
2061 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2062 {
2063 gfc_error ("By-value argument at %L is not of numeric "
2064 "type", &e->where);
2065 goto cleanup;
2066 }
2067
2068 if (e->rank)
2069 {
2070 gfc_error ("By-value argument at %L cannot be an array or "
2071 "an array section", &e->where);
2072 goto cleanup;
2073 }
2074
2075 /* Intrinsics are still PROC_UNKNOWN here. However,
2076 since same file external procedures are not resolvable
2077 in gfortran, it is a good deal easier to leave them to
2078 intrinsic.c. */
2079 if (ptype != PROC_UNKNOWN
2080 && ptype != PROC_DUMMY
2081 && ptype != PROC_EXTERNAL
2082 && ptype != PROC_MODULE)
2083 {
2084 gfc_error ("By-value argument at %L is not allowed "
2085 "in this context", &e->where);
2086 goto cleanup;
2087 }
2088 }
2089
2090 /* Statement functions have already been excluded above. */
2091 else if (strncmp ("%LOC", arg->name, 4) == 0
2092 && e->ts.type == BT_PROCEDURE)
2093 {
2094 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2095 {
2096 gfc_error ("Passing internal procedure at %L by location "
2097 "not allowed", &e->where);
2098 goto cleanup;
2099 }
2100 }
2101 }
2102
2103 comp = gfc_get_proc_ptr_comp(e);
2104 if (e->expr_type == EXPR_VARIABLE
2105 && comp && comp->attr.elemental)
2106 {
2107 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2108 "allowed as an actual argument at %L", comp->name,
2109 &e->where);
2110 }
2111
2112 /* Fortran 2008, C1237. */
2113 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2114 && gfc_has_ultimate_pointer (e))
2115 {
2116 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2117 "component", &e->where);
2118 goto cleanup;
2119 }
2120
2121 first_actual_arg = false;
2122 }
2123
2124 return_value = true;
2125
2126 cleanup:
2127 actual_arg = actual_arg_sav;
2128 first_actual_arg = first_actual_arg_sav;
2129
2130 return return_value;
2131 }
2132
2133
2134 /* Do the checks of the actual argument list that are specific to elemental
2135 procedures. If called with c == NULL, we have a function, otherwise if
2136 expr == NULL, we have a subroutine. */
2137
2138 static bool
2139 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2140 {
2141 gfc_actual_arglist *arg0;
2142 gfc_actual_arglist *arg;
2143 gfc_symbol *esym = NULL;
2144 gfc_intrinsic_sym *isym = NULL;
2145 gfc_expr *e = NULL;
2146 gfc_intrinsic_arg *iformal = NULL;
2147 gfc_formal_arglist *eformal = NULL;
2148 bool formal_optional = false;
2149 bool set_by_optional = false;
2150 int i;
2151 int rank = 0;
2152
2153 /* Is this an elemental procedure? */
2154 if (expr && expr->value.function.actual != NULL)
2155 {
2156 if (expr->value.function.esym != NULL
2157 && expr->value.function.esym->attr.elemental)
2158 {
2159 arg0 = expr->value.function.actual;
2160 esym = expr->value.function.esym;
2161 }
2162 else if (expr->value.function.isym != NULL
2163 && expr->value.function.isym->elemental)
2164 {
2165 arg0 = expr->value.function.actual;
2166 isym = expr->value.function.isym;
2167 }
2168 else
2169 return true;
2170 }
2171 else if (c && c->ext.actual != NULL)
2172 {
2173 arg0 = c->ext.actual;
2174
2175 if (c->resolved_sym)
2176 esym = c->resolved_sym;
2177 else
2178 esym = c->symtree->n.sym;
2179 gcc_assert (esym);
2180
2181 if (!esym->attr.elemental)
2182 return true;
2183 }
2184 else
2185 return true;
2186
2187 /* The rank of an elemental is the rank of its array argument(s). */
2188 for (arg = arg0; arg; arg = arg->next)
2189 {
2190 if (arg->expr != NULL && arg->expr->rank != 0)
2191 {
2192 rank = arg->expr->rank;
2193 if (arg->expr->expr_type == EXPR_VARIABLE
2194 && arg->expr->symtree->n.sym->attr.optional)
2195 set_by_optional = true;
2196
2197 /* Function specific; set the result rank and shape. */
2198 if (expr)
2199 {
2200 expr->rank = rank;
2201 if (!expr->shape && arg->expr->shape)
2202 {
2203 expr->shape = gfc_get_shape (rank);
2204 for (i = 0; i < rank; i++)
2205 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2206 }
2207 }
2208 break;
2209 }
2210 }
2211
2212 /* If it is an array, it shall not be supplied as an actual argument
2213 to an elemental procedure unless an array of the same rank is supplied
2214 as an actual argument corresponding to a nonoptional dummy argument of
2215 that elemental procedure(12.4.1.5). */
2216 formal_optional = false;
2217 if (isym)
2218 iformal = isym->formal;
2219 else
2220 eformal = esym->formal;
2221
2222 for (arg = arg0; arg; arg = arg->next)
2223 {
2224 if (eformal)
2225 {
2226 if (eformal->sym && eformal->sym->attr.optional)
2227 formal_optional = true;
2228 eformal = eformal->next;
2229 }
2230 else if (isym && iformal)
2231 {
2232 if (iformal->optional)
2233 formal_optional = true;
2234 iformal = iformal->next;
2235 }
2236 else if (isym)
2237 formal_optional = true;
2238
2239 if (pedantic && arg->expr != NULL
2240 && arg->expr->expr_type == EXPR_VARIABLE
2241 && arg->expr->symtree->n.sym->attr.optional
2242 && formal_optional
2243 && arg->expr->rank
2244 && (set_by_optional || arg->expr->rank != rank)
2245 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2246 {
2247 gfc_warning (OPT_Wpedantic,
2248 "%qs at %L is an array and OPTIONAL; IF IT IS "
2249 "MISSING, it cannot be the actual argument of an "
2250 "ELEMENTAL procedure unless there is a non-optional "
2251 "argument with the same rank (12.4.1.5)",
2252 arg->expr->symtree->n.sym->name, &arg->expr->where);
2253 }
2254 }
2255
2256 for (arg = arg0; arg; arg = arg->next)
2257 {
2258 if (arg->expr == NULL || arg->expr->rank == 0)
2259 continue;
2260
2261 /* Being elemental, the last upper bound of an assumed size array
2262 argument must be present. */
2263 if (resolve_assumed_size_actual (arg->expr))
2264 return false;
2265
2266 /* Elemental procedure's array actual arguments must conform. */
2267 if (e != NULL)
2268 {
2269 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2270 return false;
2271 }
2272 else
2273 e = arg->expr;
2274 }
2275
2276 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2277 is an array, the intent inout/out variable needs to be also an array. */
2278 if (rank > 0 && esym && expr == NULL)
2279 for (eformal = esym->formal, arg = arg0; arg && eformal;
2280 arg = arg->next, eformal = eformal->next)
2281 if ((eformal->sym->attr.intent == INTENT_OUT
2282 || eformal->sym->attr.intent == INTENT_INOUT)
2283 && arg->expr && arg->expr->rank == 0)
2284 {
2285 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2286 "ELEMENTAL subroutine %qs is a scalar, but another "
2287 "actual argument is an array", &arg->expr->where,
2288 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2289 : "INOUT", eformal->sym->name, esym->name);
2290 return false;
2291 }
2292 return true;
2293 }
2294
2295
2296 /* This function does the checking of references to global procedures
2297 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2298 77 and 95 standards. It checks for a gsymbol for the name, making
2299 one if it does not already exist. If it already exists, then the
2300 reference being resolved must correspond to the type of gsymbol.
2301 Otherwise, the new symbol is equipped with the attributes of the
2302 reference. The corresponding code that is called in creating
2303 global entities is parse.c.
2304
2305 In addition, for all but -std=legacy, the gsymbols are used to
2306 check the interfaces of external procedures from the same file.
2307 The namespace of the gsymbol is resolved and then, once this is
2308 done the interface is checked. */
2309
2310
2311 static bool
2312 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2313 {
2314 if (!gsym_ns->proc_name->attr.recursive)
2315 return true;
2316
2317 if (sym->ns == gsym_ns)
2318 return false;
2319
2320 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2321 return false;
2322
2323 return true;
2324 }
2325
2326 static bool
2327 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2328 {
2329 if (gsym_ns->entries)
2330 {
2331 gfc_entry_list *entry = gsym_ns->entries;
2332
2333 for (; entry; entry = entry->next)
2334 {
2335 if (strcmp (sym->name, entry->sym->name) == 0)
2336 {
2337 if (strcmp (gsym_ns->proc_name->name,
2338 sym->ns->proc_name->name) == 0)
2339 return false;
2340
2341 if (sym->ns->parent
2342 && strcmp (gsym_ns->proc_name->name,
2343 sym->ns->parent->proc_name->name) == 0)
2344 return false;
2345 }
2346 }
2347 }
2348 return true;
2349 }
2350
2351
2352 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2353
2354 bool
2355 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2356 {
2357 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2358
2359 for ( ; arg; arg = arg->next)
2360 {
2361 if (!arg->sym)
2362 continue;
2363
2364 if (arg->sym->attr.allocatable) /* (2a) */
2365 {
2366 strncpy (errmsg, _("allocatable argument"), err_len);
2367 return true;
2368 }
2369 else if (arg->sym->attr.asynchronous)
2370 {
2371 strncpy (errmsg, _("asynchronous argument"), err_len);
2372 return true;
2373 }
2374 else if (arg->sym->attr.optional)
2375 {
2376 strncpy (errmsg, _("optional argument"), err_len);
2377 return true;
2378 }
2379 else if (arg->sym->attr.pointer)
2380 {
2381 strncpy (errmsg, _("pointer argument"), err_len);
2382 return true;
2383 }
2384 else if (arg->sym->attr.target)
2385 {
2386 strncpy (errmsg, _("target argument"), err_len);
2387 return true;
2388 }
2389 else if (arg->sym->attr.value)
2390 {
2391 strncpy (errmsg, _("value argument"), err_len);
2392 return true;
2393 }
2394 else if (arg->sym->attr.volatile_)
2395 {
2396 strncpy (errmsg, _("volatile argument"), err_len);
2397 return true;
2398 }
2399 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2400 {
2401 strncpy (errmsg, _("assumed-shape argument"), err_len);
2402 return true;
2403 }
2404 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2405 {
2406 strncpy (errmsg, _("assumed-rank argument"), err_len);
2407 return true;
2408 }
2409 else if (arg->sym->attr.codimension) /* (2c) */
2410 {
2411 strncpy (errmsg, _("coarray argument"), err_len);
2412 return true;
2413 }
2414 else if (false) /* (2d) TODO: parametrized derived type */
2415 {
2416 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2417 return true;
2418 }
2419 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2420 {
2421 strncpy (errmsg, _("polymorphic argument"), err_len);
2422 return true;
2423 }
2424 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2425 {
2426 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2427 return true;
2428 }
2429 else if (arg->sym->ts.type == BT_ASSUMED)
2430 {
2431 /* As assumed-type is unlimited polymorphic (cf. above).
2432 See also TS 29113, Note 6.1. */
2433 strncpy (errmsg, _("assumed-type argument"), err_len);
2434 return true;
2435 }
2436 }
2437
2438 if (sym->attr.function)
2439 {
2440 gfc_symbol *res = sym->result ? sym->result : sym;
2441
2442 if (res->attr.dimension) /* (3a) */
2443 {
2444 strncpy (errmsg, _("array result"), err_len);
2445 return true;
2446 }
2447 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2448 {
2449 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2450 return true;
2451 }
2452 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2453 && res->ts.u.cl->length
2454 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2455 {
2456 strncpy (errmsg, _("result with non-constant character length"), err_len);
2457 return true;
2458 }
2459 }
2460
2461 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2462 {
2463 strncpy (errmsg, _("elemental procedure"), err_len);
2464 return true;
2465 }
2466 else if (sym->attr.is_bind_c) /* (5) */
2467 {
2468 strncpy (errmsg, _("bind(c) procedure"), err_len);
2469 return true;
2470 }
2471
2472 return false;
2473 }
2474
2475
2476 static void
2477 resolve_global_procedure (gfc_symbol *sym, locus *where,
2478 gfc_actual_arglist **actual, int sub)
2479 {
2480 gfc_gsymbol * gsym;
2481 gfc_namespace *ns;
2482 enum gfc_symbol_type type;
2483 char reason[200];
2484
2485 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2486
2487 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name);
2488
2489 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2490 gfc_global_used (gsym, where);
2491
2492 if ((sym->attr.if_source == IFSRC_UNKNOWN
2493 || sym->attr.if_source == IFSRC_IFBODY)
2494 && gsym->type != GSYM_UNKNOWN
2495 && !gsym->binding_label
2496 && gsym->ns
2497 && gsym->ns->resolved != -1
2498 && gsym->ns->proc_name
2499 && not_in_recursive (sym, gsym->ns)
2500 && not_entry_self_reference (sym, gsym->ns))
2501 {
2502 gfc_symbol *def_sym;
2503
2504 /* Resolve the gsymbol namespace if needed. */
2505 if (!gsym->ns->resolved)
2506 {
2507 gfc_dt_list *old_dt_list;
2508
2509 /* Stash away derived types so that the backend_decls do not
2510 get mixed up. */
2511 old_dt_list = gfc_derived_types;
2512 gfc_derived_types = NULL;
2513
2514 gfc_resolve (gsym->ns);
2515
2516 /* Store the new derived types with the global namespace. */
2517 if (gfc_derived_types)
2518 gsym->ns->derived_types = gfc_derived_types;
2519
2520 /* Restore the derived types of this namespace. */
2521 gfc_derived_types = old_dt_list;
2522 }
2523
2524 /* Make sure that translation for the gsymbol occurs before
2525 the procedure currently being resolved. */
2526 ns = gfc_global_ns_list;
2527 for (; ns && ns != gsym->ns; ns = ns->sibling)
2528 {
2529 if (ns->sibling == gsym->ns)
2530 {
2531 ns->sibling = gsym->ns->sibling;
2532 gsym->ns->sibling = gfc_global_ns_list;
2533 gfc_global_ns_list = gsym->ns;
2534 break;
2535 }
2536 }
2537
2538 def_sym = gsym->ns->proc_name;
2539
2540 /* This can happen if a binding name has been specified. */
2541 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2542 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2543
2544 if (def_sym->attr.entry_master)
2545 {
2546 gfc_entry_list *entry;
2547 for (entry = gsym->ns->entries; entry; entry = entry->next)
2548 if (strcmp (entry->sym->name, sym->name) == 0)
2549 {
2550 def_sym = entry->sym;
2551 break;
2552 }
2553 }
2554
2555 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2556 {
2557 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2558 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2559 gfc_typename (&def_sym->ts));
2560 goto done;
2561 }
2562
2563 if (sym->attr.if_source == IFSRC_UNKNOWN
2564 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2565 {
2566 gfc_error ("Explicit interface required for %qs at %L: %s",
2567 sym->name, &sym->declared_at, reason);
2568 goto done;
2569 }
2570
2571 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU))
2572 /* Turn erros into warnings with -std=gnu and -std=legacy. */
2573 gfc_errors_to_warnings (true);
2574
2575 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2576 reason, sizeof(reason), NULL, NULL))
2577 {
2578 gfc_error_opt (OPT_Wargument_mismatch,
2579 "Interface mismatch in global procedure %qs at %L:"
2580 " %s", sym->name, &sym->declared_at, reason);
2581 goto done;
2582 }
2583
2584 if (!pedantic
2585 || ((gfc_option.warn_std & GFC_STD_LEGACY)
2586 && !(gfc_option.warn_std & GFC_STD_GNU)))
2587 gfc_errors_to_warnings (true);
2588
2589 if (sym->attr.if_source != IFSRC_IFBODY)
2590 gfc_procedure_use (def_sym, actual, where);
2591 }
2592
2593 done:
2594 gfc_errors_to_warnings (false);
2595
2596 if (gsym->type == GSYM_UNKNOWN)
2597 {
2598 gsym->type = type;
2599 gsym->where = *where;
2600 }
2601
2602 gsym->used = 1;
2603 }
2604
2605
2606 /************* Function resolution *************/
2607
2608 /* Resolve a function call known to be generic.
2609 Section 14.1.2.4.1. */
2610
2611 static match
2612 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2613 {
2614 gfc_symbol *s;
2615
2616 if (sym->attr.generic)
2617 {
2618 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2619 if (s != NULL)
2620 {
2621 expr->value.function.name = s->name;
2622 expr->value.function.esym = s;
2623
2624 if (s->ts.type != BT_UNKNOWN)
2625 expr->ts = s->ts;
2626 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2627 expr->ts = s->result->ts;
2628
2629 if (s->as != NULL)
2630 expr->rank = s->as->rank;
2631 else if (s->result != NULL && s->result->as != NULL)
2632 expr->rank = s->result->as->rank;
2633
2634 gfc_set_sym_referenced (expr->value.function.esym);
2635
2636 return MATCH_YES;
2637 }
2638
2639 /* TODO: Need to search for elemental references in generic
2640 interface. */
2641 }
2642
2643 if (sym->attr.intrinsic)
2644 return gfc_intrinsic_func_interface (expr, 0);
2645
2646 return MATCH_NO;
2647 }
2648
2649
2650 static bool
2651 resolve_generic_f (gfc_expr *expr)
2652 {
2653 gfc_symbol *sym;
2654 match m;
2655 gfc_interface *intr = NULL;
2656
2657 sym = expr->symtree->n.sym;
2658
2659 for (;;)
2660 {
2661 m = resolve_generic_f0 (expr, sym);
2662 if (m == MATCH_YES)
2663 return true;
2664 else if (m == MATCH_ERROR)
2665 return false;
2666
2667 generic:
2668 if (!intr)
2669 for (intr = sym->generic; intr; intr = intr->next)
2670 if (gfc_fl_struct (intr->sym->attr.flavor))
2671 break;
2672
2673 if (sym->ns->parent == NULL)
2674 break;
2675 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2676
2677 if (sym == NULL)
2678 break;
2679 if (!generic_sym (sym))
2680 goto generic;
2681 }
2682
2683 /* Last ditch attempt. See if the reference is to an intrinsic
2684 that possesses a matching interface. 14.1.2.4 */
2685 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2686 {
2687 if (gfc_init_expr_flag)
2688 gfc_error ("Function %qs in initialization expression at %L "
2689 "must be an intrinsic function",
2690 expr->symtree->n.sym->name, &expr->where);
2691 else
2692 gfc_error ("There is no specific function for the generic %qs "
2693 "at %L", expr->symtree->n.sym->name, &expr->where);
2694 return false;
2695 }
2696
2697 if (intr)
2698 {
2699 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2700 NULL, false))
2701 return false;
2702 if (!gfc_use_derived (expr->ts.u.derived))
2703 return false;
2704 return resolve_structure_cons (expr, 0);
2705 }
2706
2707 m = gfc_intrinsic_func_interface (expr, 0);
2708 if (m == MATCH_YES)
2709 return true;
2710
2711 if (m == MATCH_NO)
2712 gfc_error ("Generic function %qs at %L is not consistent with a "
2713 "specific intrinsic interface", expr->symtree->n.sym->name,
2714 &expr->where);
2715
2716 return false;
2717 }
2718
2719
2720 /* Resolve a function call known to be specific. */
2721
2722 static match
2723 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2724 {
2725 match m;
2726
2727 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2728 {
2729 if (sym->attr.dummy)
2730 {
2731 sym->attr.proc = PROC_DUMMY;
2732 goto found;
2733 }
2734
2735 sym->attr.proc = PROC_EXTERNAL;
2736 goto found;
2737 }
2738
2739 if (sym->attr.proc == PROC_MODULE
2740 || sym->attr.proc == PROC_ST_FUNCTION
2741 || sym->attr.proc == PROC_INTERNAL)
2742 goto found;
2743
2744 if (sym->attr.intrinsic)
2745 {
2746 m = gfc_intrinsic_func_interface (expr, 1);
2747 if (m == MATCH_YES)
2748 return MATCH_YES;
2749 if (m == MATCH_NO)
2750 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2751 "with an intrinsic", sym->name, &expr->where);
2752
2753 return MATCH_ERROR;
2754 }
2755
2756 return MATCH_NO;
2757
2758 found:
2759 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2760
2761 if (sym->result)
2762 expr->ts = sym->result->ts;
2763 else
2764 expr->ts = sym->ts;
2765 expr->value.function.name = sym->name;
2766 expr->value.function.esym = sym;
2767 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2768 error(s). */
2769 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2770 return MATCH_ERROR;
2771 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2772 expr->rank = CLASS_DATA (sym)->as->rank;
2773 else if (sym->as != NULL)
2774 expr->rank = sym->as->rank;
2775
2776 return MATCH_YES;
2777 }
2778
2779
2780 static bool
2781 resolve_specific_f (gfc_expr *expr)
2782 {
2783 gfc_symbol *sym;
2784 match m;
2785
2786 sym = expr->symtree->n.sym;
2787
2788 for (;;)
2789 {
2790 m = resolve_specific_f0 (sym, expr);
2791 if (m == MATCH_YES)
2792 return true;
2793 if (m == MATCH_ERROR)
2794 return false;
2795
2796 if (sym->ns->parent == NULL)
2797 break;
2798
2799 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2800
2801 if (sym == NULL)
2802 break;
2803 }
2804
2805 gfc_error ("Unable to resolve the specific function %qs at %L",
2806 expr->symtree->n.sym->name, &expr->where);
2807
2808 return true;
2809 }
2810
2811 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2812 candidates in CANDIDATES_LEN. */
2813
2814 static void
2815 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2816 char **&candidates,
2817 size_t &candidates_len)
2818 {
2819 gfc_symtree *p;
2820
2821 if (sym == NULL)
2822 return;
2823 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2824 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2825 vec_push (candidates, candidates_len, sym->name);
2826
2827 p = sym->left;
2828 if (p)
2829 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2830
2831 p = sym->right;
2832 if (p)
2833 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2834 }
2835
2836
2837 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2838
2839 const char*
2840 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2841 {
2842 char **candidates = NULL;
2843 size_t candidates_len = 0;
2844 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2845 return gfc_closest_fuzzy_match (fn, candidates);
2846 }
2847
2848
2849 /* Resolve a procedure call not known to be generic nor specific. */
2850
2851 static bool
2852 resolve_unknown_f (gfc_expr *expr)
2853 {
2854 gfc_symbol *sym;
2855 gfc_typespec *ts;
2856
2857 sym = expr->symtree->n.sym;
2858
2859 if (sym->attr.dummy)
2860 {
2861 sym->attr.proc = PROC_DUMMY;
2862 expr->value.function.name = sym->name;
2863 goto set_type;
2864 }
2865
2866 /* See if we have an intrinsic function reference. */
2867
2868 if (gfc_is_intrinsic (sym, 0, expr->where))
2869 {
2870 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2871 return true;
2872 return false;
2873 }
2874
2875 /* The reference is to an external name. */
2876
2877 sym->attr.proc = PROC_EXTERNAL;
2878 expr->value.function.name = sym->name;
2879 expr->value.function.esym = expr->symtree->n.sym;
2880
2881 if (sym->as != NULL)
2882 expr->rank = sym->as->rank;
2883
2884 /* Type of the expression is either the type of the symbol or the
2885 default type of the symbol. */
2886
2887 set_type:
2888 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2889
2890 if (sym->ts.type != BT_UNKNOWN)
2891 expr->ts = sym->ts;
2892 else
2893 {
2894 ts = gfc_get_default_type (sym->name, sym->ns);
2895
2896 if (ts->type == BT_UNKNOWN)
2897 {
2898 const char *guessed
2899 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2900 if (guessed)
2901 gfc_error ("Function %qs at %L has no IMPLICIT type"
2902 "; did you mean %qs?",
2903 sym->name, &expr->where, guessed);
2904 else
2905 gfc_error ("Function %qs at %L has no IMPLICIT type",
2906 sym->name, &expr->where);
2907 return false;
2908 }
2909 else
2910 expr->ts = *ts;
2911 }
2912
2913 return true;
2914 }
2915
2916
2917 /* Return true, if the symbol is an external procedure. */
2918 static bool
2919 is_external_proc (gfc_symbol *sym)
2920 {
2921 if (!sym->attr.dummy && !sym->attr.contained
2922 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2923 && sym->attr.proc != PROC_ST_FUNCTION
2924 && !sym->attr.proc_pointer
2925 && !sym->attr.use_assoc
2926 && sym->name)
2927 return true;
2928
2929 return false;
2930 }
2931
2932
2933 /* Figure out if a function reference is pure or not. Also set the name
2934 of the function for a potential error message. Return nonzero if the
2935 function is PURE, zero if not. */
2936 static int
2937 pure_stmt_function (gfc_expr *, gfc_symbol *);
2938
2939 static int
2940 pure_function (gfc_expr *e, const char **name)
2941 {
2942 int pure;
2943 gfc_component *comp;
2944
2945 *name = NULL;
2946
2947 if (e->symtree != NULL
2948 && e->symtree->n.sym != NULL
2949 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2950 return pure_stmt_function (e, e->symtree->n.sym);
2951
2952 comp = gfc_get_proc_ptr_comp (e);
2953 if (comp)
2954 {
2955 pure = gfc_pure (comp->ts.interface);
2956 *name = comp->name;
2957 }
2958 else if (e->value.function.esym)
2959 {
2960 pure = gfc_pure (e->value.function.esym);
2961 *name = e->value.function.esym->name;
2962 }
2963 else if (e->value.function.isym)
2964 {
2965 pure = e->value.function.isym->pure
2966 || e->value.function.isym->elemental;
2967 *name = e->value.function.isym->name;
2968 }
2969 else
2970 {
2971 /* Implicit functions are not pure. */
2972 pure = 0;
2973 *name = e->value.function.name;
2974 }
2975
2976 return pure;
2977 }
2978
2979
2980 static bool
2981 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
2982 int *f ATTRIBUTE_UNUSED)
2983 {
2984 const char *name;
2985
2986 /* Don't bother recursing into other statement functions
2987 since they will be checked individually for purity. */
2988 if (e->expr_type != EXPR_FUNCTION
2989 || !e->symtree
2990 || e->symtree->n.sym == sym
2991 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2992 return false;
2993
2994 return pure_function (e, &name) ? false : true;
2995 }
2996
2997
2998 static int
2999 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
3000 {
3001 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
3002 }
3003
3004
3005 /* Check if an impure function is allowed in the current context. */
3006
3007 static bool check_pure_function (gfc_expr *e)
3008 {
3009 const char *name = NULL;
3010 if (!pure_function (e, &name) && name)
3011 {
3012 if (forall_flag)
3013 {
3014 gfc_error ("Reference to impure function %qs at %L inside a "
3015 "FORALL %s", name, &e->where,
3016 forall_flag == 2 ? "mask" : "block");
3017 return false;
3018 }
3019 else if (gfc_do_concurrent_flag)
3020 {
3021 gfc_error ("Reference to impure function %qs at %L inside a "
3022 "DO CONCURRENT %s", name, &e->where,
3023 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3024 return false;
3025 }
3026 else if (gfc_pure (NULL))
3027 {
3028 gfc_error ("Reference to impure function %qs at %L "
3029 "within a PURE procedure", name, &e->where);
3030 return false;
3031 }
3032 gfc_unset_implicit_pure (NULL);
3033 }
3034 return true;
3035 }
3036
3037
3038 /* Update current procedure's array_outer_dependency flag, considering
3039 a call to procedure SYM. */
3040
3041 static void
3042 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3043 {
3044 /* Check to see if this is a sibling function that has not yet
3045 been resolved. */
3046 gfc_namespace *sibling = gfc_current_ns->sibling;
3047 for (; sibling; sibling = sibling->sibling)
3048 {
3049 if (sibling->proc_name == sym)
3050 {
3051 gfc_resolve (sibling);
3052 break;
3053 }
3054 }
3055
3056 /* If SYM has references to outer arrays, so has the procedure calling
3057 SYM. If SYM is a procedure pointer, we can assume the worst. */
3058 if (sym->attr.array_outer_dependency
3059 || sym->attr.proc_pointer)
3060 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3061 }
3062
3063
3064 /* Resolve a function call, which means resolving the arguments, then figuring
3065 out which entity the name refers to. */
3066
3067 static bool
3068 resolve_function (gfc_expr *expr)
3069 {
3070 gfc_actual_arglist *arg;
3071 gfc_symbol *sym;
3072 bool t;
3073 int temp;
3074 procedure_type p = PROC_INTRINSIC;
3075 bool no_formal_args;
3076
3077 sym = NULL;
3078 if (expr->symtree)
3079 sym = expr->symtree->n.sym;
3080
3081 /* If this is a procedure pointer component, it has already been resolved. */
3082 if (gfc_is_proc_ptr_comp (expr))
3083 return true;
3084
3085 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3086 another caf_get. */
3087 if (sym && sym->attr.intrinsic
3088 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3089 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3090 return true;
3091
3092 if (sym && sym->attr.intrinsic
3093 && !gfc_resolve_intrinsic (sym, &expr->where))
3094 return false;
3095
3096 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3097 {
3098 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3099 return false;
3100 }
3101
3102 /* If this ia a deferred TBP with an abstract interface (which may
3103 of course be referenced), expr->value.function.esym will be set. */
3104 if (sym && sym->attr.abstract && !expr->value.function.esym)
3105 {
3106 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3107 sym->name, &expr->where);
3108 return false;
3109 }
3110
3111 /* Switch off assumed size checking and do this again for certain kinds
3112 of procedure, once the procedure itself is resolved. */
3113 need_full_assumed_size++;
3114
3115 if (expr->symtree && expr->symtree->n.sym)
3116 p = expr->symtree->n.sym->attr.proc;
3117
3118 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3119 inquiry_argument = true;
3120 no_formal_args = sym && is_external_proc (sym)
3121 && gfc_sym_get_dummy_args (sym) == NULL;
3122
3123 if (!resolve_actual_arglist (expr->value.function.actual,
3124 p, no_formal_args))
3125 {
3126 inquiry_argument = false;
3127 return false;
3128 }
3129
3130 inquiry_argument = false;
3131
3132 /* Resume assumed_size checking. */
3133 need_full_assumed_size--;
3134
3135 /* If the procedure is external, check for usage. */
3136 if (sym && is_external_proc (sym))
3137 resolve_global_procedure (sym, &expr->where,
3138 &expr->value.function.actual, 0);
3139
3140 if (sym && sym->ts.type == BT_CHARACTER
3141 && sym->ts.u.cl
3142 && sym->ts.u.cl->length == NULL
3143 && !sym->attr.dummy
3144 && !sym->ts.deferred
3145 && expr->value.function.esym == NULL
3146 && !sym->attr.contained)
3147 {
3148 /* Internal procedures are taken care of in resolve_contained_fntype. */
3149 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3150 "be used at %L since it is not a dummy argument",
3151 sym->name, &expr->where);
3152 return false;
3153 }
3154
3155 /* See if function is already resolved. */
3156
3157 if (expr->value.function.name != NULL
3158 || expr->value.function.isym != NULL)
3159 {
3160 if (expr->ts.type == BT_UNKNOWN)
3161 expr->ts = sym->ts;
3162 t = true;
3163 }
3164 else
3165 {
3166 /* Apply the rules of section 14.1.2. */
3167
3168 switch (procedure_kind (sym))
3169 {
3170 case PTYPE_GENERIC:
3171 t = resolve_generic_f (expr);
3172 break;
3173
3174 case PTYPE_SPECIFIC:
3175 t = resolve_specific_f (expr);
3176 break;
3177
3178 case PTYPE_UNKNOWN:
3179 t = resolve_unknown_f (expr);
3180 break;
3181
3182 default:
3183 gfc_internal_error ("resolve_function(): bad function type");
3184 }
3185 }
3186
3187 /* If the expression is still a function (it might have simplified),
3188 then we check to see if we are calling an elemental function. */
3189
3190 if (expr->expr_type != EXPR_FUNCTION)
3191 return t;
3192
3193 temp = need_full_assumed_size;
3194 need_full_assumed_size = 0;
3195
3196 if (!resolve_elemental_actual (expr, NULL))
3197 return false;
3198
3199 if (omp_workshare_flag
3200 && expr->value.function.esym
3201 && ! gfc_elemental (expr->value.function.esym))
3202 {
3203 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3204 "in WORKSHARE construct", expr->value.function.esym->name,
3205 &expr->where);
3206 t = false;
3207 }
3208
3209 #define GENERIC_ID expr->value.function.isym->id
3210 else if (expr->value.function.actual != NULL
3211 && expr->value.function.isym != NULL
3212 && GENERIC_ID != GFC_ISYM_LBOUND
3213 && GENERIC_ID != GFC_ISYM_LCOBOUND
3214 && GENERIC_ID != GFC_ISYM_UCOBOUND
3215 && GENERIC_ID != GFC_ISYM_LEN
3216 && GENERIC_ID != GFC_ISYM_LOC
3217 && GENERIC_ID != GFC_ISYM_C_LOC
3218 && GENERIC_ID != GFC_ISYM_PRESENT)
3219 {
3220 /* Array intrinsics must also have the last upper bound of an
3221 assumed size array argument. UBOUND and SIZE have to be
3222 excluded from the check if the second argument is anything
3223 than a constant. */
3224
3225 for (arg = expr->value.function.actual; arg; arg = arg->next)
3226 {
3227 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3228 && arg == expr->value.function.actual
3229 && arg->next != NULL && arg->next->expr)
3230 {
3231 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3232 break;
3233
3234 if (arg->next->name && strncmp (arg->next->name, "kind", 4) == 0)
3235 break;
3236
3237 if ((int)mpz_get_si (arg->next->expr->value.integer)
3238 < arg->expr->rank)
3239 break;
3240 }
3241
3242 if (arg->expr != NULL
3243 && arg->expr->rank > 0
3244 && resolve_assumed_size_actual (arg->expr))
3245 return false;
3246 }
3247 }
3248 #undef GENERIC_ID
3249
3250 need_full_assumed_size = temp;
3251
3252 if (!check_pure_function(expr))
3253 t = false;
3254
3255 /* Functions without the RECURSIVE attribution are not allowed to
3256 * call themselves. */
3257 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3258 {
3259 gfc_symbol *esym;
3260 esym = expr->value.function.esym;
3261
3262 if (is_illegal_recursion (esym, gfc_current_ns))
3263 {
3264 if (esym->attr.entry && esym->ns->entries)
3265 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3266 " function %qs is not RECURSIVE",
3267 esym->name, &expr->where, esym->ns->entries->sym->name);
3268 else
3269 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3270 " is not RECURSIVE", esym->name, &expr->where);
3271
3272 t = false;
3273 }
3274 }
3275
3276 /* Character lengths of use associated functions may contains references to
3277 symbols not referenced from the current program unit otherwise. Make sure
3278 those symbols are marked as referenced. */
3279
3280 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3281 && expr->value.function.esym->attr.use_assoc)
3282 {
3283 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3284 }
3285
3286 /* Make sure that the expression has a typespec that works. */
3287 if (expr->ts.type == BT_UNKNOWN)
3288 {
3289 if (expr->symtree->n.sym->result
3290 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3291 && !expr->symtree->n.sym->result->attr.proc_pointer)
3292 expr->ts = expr->symtree->n.sym->result->ts;
3293 }
3294
3295 if (!expr->ref && !expr->value.function.isym)
3296 {
3297 if (expr->value.function.esym)
3298 update_current_proc_array_outer_dependency (expr->value.function.esym);
3299 else
3300 update_current_proc_array_outer_dependency (sym);
3301 }
3302 else if (expr->ref)
3303 /* typebound procedure: Assume the worst. */
3304 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3305
3306 return t;
3307 }
3308
3309
3310 /************* Subroutine resolution *************/
3311
3312 static bool
3313 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3314 {
3315 if (gfc_pure (sym))
3316 return true;
3317
3318 if (forall_flag)
3319 {
3320 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3321 name, loc);
3322 return false;
3323 }
3324 else if (gfc_do_concurrent_flag)
3325 {
3326 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3327 "PURE", name, loc);
3328 return false;
3329 }
3330 else if (gfc_pure (NULL))
3331 {
3332 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3333 return false;
3334 }
3335
3336 gfc_unset_implicit_pure (NULL);
3337 return true;
3338 }
3339
3340
3341 static match
3342 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3343 {
3344 gfc_symbol *s;
3345
3346 if (sym->attr.generic)
3347 {
3348 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3349 if (s != NULL)
3350 {
3351 c->resolved_sym = s;
3352 if (!pure_subroutine (s, s->name, &c->loc))
3353 return MATCH_ERROR;
3354 return MATCH_YES;
3355 }
3356
3357 /* TODO: Need to search for elemental references in generic interface. */
3358 }
3359
3360 if (sym->attr.intrinsic)
3361 return gfc_intrinsic_sub_interface (c, 0);
3362
3363 return MATCH_NO;
3364 }
3365
3366
3367 static bool
3368 resolve_generic_s (gfc_code *c)
3369 {
3370 gfc_symbol *sym;
3371 match m;
3372
3373 sym = c->symtree->n.sym;
3374
3375 for (;;)
3376 {
3377 m = resolve_generic_s0 (c, sym);
3378 if (m == MATCH_YES)
3379 return true;
3380 else if (m == MATCH_ERROR)
3381 return false;
3382
3383 generic:
3384 if (sym->ns->parent == NULL)
3385 break;
3386 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3387
3388 if (sym == NULL)
3389 break;
3390 if (!generic_sym (sym))
3391 goto generic;
3392 }
3393
3394 /* Last ditch attempt. See if the reference is to an intrinsic
3395 that possesses a matching interface. 14.1.2.4 */
3396 sym = c->symtree->n.sym;
3397
3398 if (!gfc_is_intrinsic (sym, 1, c->loc))
3399 {
3400 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3401 sym->name, &c->loc);
3402 return false;
3403 }
3404
3405 m = gfc_intrinsic_sub_interface (c, 0);
3406 if (m == MATCH_YES)
3407 return true;
3408 if (m == MATCH_NO)
3409 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3410 "intrinsic subroutine interface", sym->name, &c->loc);
3411
3412 return false;
3413 }
3414
3415
3416 /* Resolve a subroutine call known to be specific. */
3417
3418 static match
3419 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3420 {
3421 match m;
3422
3423 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3424 {
3425 if (sym->attr.dummy)
3426 {
3427 sym->attr.proc = PROC_DUMMY;
3428 goto found;
3429 }
3430
3431 sym->attr.proc = PROC_EXTERNAL;
3432 goto found;
3433 }
3434
3435 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3436 goto found;
3437
3438 if (sym->attr.intrinsic)
3439 {
3440 m = gfc_intrinsic_sub_interface (c, 1);
3441 if (m == MATCH_YES)
3442 return MATCH_YES;
3443 if (m == MATCH_NO)
3444 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3445 "with an intrinsic", sym->name, &c->loc);
3446
3447 return MATCH_ERROR;
3448 }
3449
3450 return MATCH_NO;
3451
3452 found:
3453 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3454
3455 c->resolved_sym = sym;
3456 if (!pure_subroutine (sym, sym->name, &c->loc))
3457 return MATCH_ERROR;
3458
3459 return MATCH_YES;
3460 }
3461
3462
3463 static bool
3464 resolve_specific_s (gfc_code *c)
3465 {
3466 gfc_symbol *sym;
3467 match m;
3468
3469 sym = c->symtree->n.sym;
3470
3471 for (;;)
3472 {
3473 m = resolve_specific_s0 (c, sym);
3474 if (m == MATCH_YES)
3475 return true;
3476 if (m == MATCH_ERROR)
3477 return false;
3478
3479 if (sym->ns->parent == NULL)
3480 break;
3481
3482 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3483
3484 if (sym == NULL)
3485 break;
3486 }
3487
3488 sym = c->symtree->n.sym;
3489 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3490 sym->name, &c->loc);
3491
3492 return false;
3493 }
3494
3495
3496 /* Resolve a subroutine call not known to be generic nor specific. */
3497
3498 static bool
3499 resolve_unknown_s (gfc_code *c)
3500 {
3501 gfc_symbol *sym;
3502
3503 sym = c->symtree->n.sym;
3504
3505 if (sym->attr.dummy)
3506 {
3507 sym->attr.proc = PROC_DUMMY;
3508 goto found;
3509 }
3510
3511 /* See if we have an intrinsic function reference. */
3512
3513 if (gfc_is_intrinsic (sym, 1, c->loc))
3514 {
3515 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3516 return true;
3517 return false;
3518 }
3519
3520 /* The reference is to an external name. */
3521
3522 found:
3523 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3524
3525 c->resolved_sym = sym;
3526
3527 return pure_subroutine (sym, sym->name, &c->loc);
3528 }
3529
3530
3531 /* Resolve a subroutine call. Although it was tempting to use the same code
3532 for functions, subroutines and functions are stored differently and this
3533 makes things awkward. */
3534
3535 static bool
3536 resolve_call (gfc_code *c)
3537 {
3538 bool t;
3539 procedure_type ptype = PROC_INTRINSIC;
3540 gfc_symbol *csym, *sym;
3541 bool no_formal_args;
3542
3543 csym = c->symtree ? c->symtree->n.sym : NULL;
3544
3545 if (csym && csym->ts.type != BT_UNKNOWN)
3546 {
3547 gfc_error ("%qs at %L has a type, which is not consistent with "
3548 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3549 return false;
3550 }
3551
3552 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3553 {
3554 gfc_symtree *st;
3555 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3556 sym = st ? st->n.sym : NULL;
3557 if (sym && csym != sym
3558 && sym->ns == gfc_current_ns
3559 && sym->attr.flavor == FL_PROCEDURE
3560 && sym->attr.contained)
3561 {
3562 sym->refs++;
3563 if (csym->attr.generic)
3564 c->symtree->n.sym = sym;
3565 else
3566 c->symtree = st;
3567 csym = c->symtree->n.sym;
3568 }
3569 }
3570
3571 /* If this ia a deferred TBP, c->expr1 will be set. */
3572 if (!c->expr1 && csym)
3573 {
3574 if (csym->attr.abstract)
3575 {
3576 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3577 csym->name, &c->loc);
3578 return false;
3579 }
3580
3581 /* Subroutines without the RECURSIVE attribution are not allowed to
3582 call themselves. */
3583 if (is_illegal_recursion (csym, gfc_current_ns))
3584 {
3585 if (csym->attr.entry && csym->ns->entries)
3586 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3587 "as subroutine %qs is not RECURSIVE",
3588 csym->name, &c->loc, csym->ns->entries->sym->name);
3589 else
3590 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3591 "as it is not RECURSIVE", csym->name, &c->loc);
3592
3593 t = false;
3594 }
3595 }
3596
3597 /* Switch off assumed size checking and do this again for certain kinds
3598 of procedure, once the procedure itself is resolved. */
3599 need_full_assumed_size++;
3600
3601 if (csym)
3602 ptype = csym->attr.proc;
3603
3604 no_formal_args = csym && is_external_proc (csym)
3605 && gfc_sym_get_dummy_args (csym) == NULL;
3606 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3607 return false;
3608
3609 /* Resume assumed_size checking. */
3610 need_full_assumed_size--;
3611
3612 /* If external, check for usage. */
3613 if (csym && is_external_proc (csym))
3614 resolve_global_procedure (csym, &c->loc, &c->ext.actual, 1);
3615
3616 t = true;
3617 if (c->resolved_sym == NULL)
3618 {
3619 c->resolved_isym = NULL;
3620 switch (procedure_kind (csym))
3621 {
3622 case PTYPE_GENERIC:
3623 t = resolve_generic_s (c);
3624 break;
3625
3626 case PTYPE_SPECIFIC:
3627 t = resolve_specific_s (c);
3628 break;
3629
3630 case PTYPE_UNKNOWN:
3631 t = resolve_unknown_s (c);
3632 break;
3633
3634 default:
3635 gfc_internal_error ("resolve_subroutine(): bad function type");
3636 }
3637 }
3638
3639 /* Some checks of elemental subroutine actual arguments. */
3640 if (!resolve_elemental_actual (NULL, c))
3641 return false;
3642
3643 if (!c->expr1)
3644 update_current_proc_array_outer_dependency (csym);
3645 else
3646 /* Typebound procedure: Assume the worst. */
3647 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3648
3649 return t;
3650 }
3651
3652
3653 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3654 op1->shape and op2->shape are non-NULL return true if their shapes
3655 match. If both op1->shape and op2->shape are non-NULL return false
3656 if their shapes do not match. If either op1->shape or op2->shape is
3657 NULL, return true. */
3658
3659 static bool
3660 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3661 {
3662 bool t;
3663 int i;
3664
3665 t = true;
3666
3667 if (op1->shape != NULL && op2->shape != NULL)
3668 {
3669 for (i = 0; i < op1->rank; i++)
3670 {
3671 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3672 {
3673 gfc_error ("Shapes for operands at %L and %L are not conformable",
3674 &op1->where, &op2->where);
3675 t = false;
3676 break;
3677 }
3678 }
3679 }
3680
3681 return t;
3682 }
3683
3684 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3685 For example A .AND. B becomes IAND(A, B). */
3686 static gfc_expr *
3687 logical_to_bitwise (gfc_expr *e)
3688 {
3689 gfc_expr *tmp, *op1, *op2;
3690 gfc_isym_id isym;
3691 gfc_actual_arglist *args = NULL;
3692
3693 gcc_assert (e->expr_type == EXPR_OP);
3694
3695 isym = GFC_ISYM_NONE;
3696 op1 = e->value.op.op1;
3697 op2 = e->value.op.op2;
3698
3699 switch (e->value.op.op)
3700 {
3701 case INTRINSIC_NOT:
3702 isym = GFC_ISYM_NOT;
3703 break;
3704 case INTRINSIC_AND:
3705 isym = GFC_ISYM_IAND;
3706 break;
3707 case INTRINSIC_OR:
3708 isym = GFC_ISYM_IOR;
3709 break;
3710 case INTRINSIC_NEQV:
3711 isym = GFC_ISYM_IEOR;
3712 break;
3713 case INTRINSIC_EQV:
3714 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3715 Change the old expression to NEQV, which will get replaced by IEOR,
3716 and wrap it in NOT. */
3717 tmp = gfc_copy_expr (e);
3718 tmp->value.op.op = INTRINSIC_NEQV;
3719 tmp = logical_to_bitwise (tmp);
3720 isym = GFC_ISYM_NOT;
3721 op1 = tmp;
3722 op2 = NULL;
3723 break;
3724 default:
3725 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3726 }
3727
3728 /* Inherit the original operation's operands as arguments. */
3729 args = gfc_get_actual_arglist ();
3730 args->expr = op1;
3731 if (op2)
3732 {
3733 args->next = gfc_get_actual_arglist ();
3734 args->next->expr = op2;
3735 }
3736
3737 /* Convert the expression to a function call. */
3738 e->expr_type = EXPR_FUNCTION;
3739 e->value.function.actual = args;
3740 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3741 e->value.function.name = e->value.function.isym->name;
3742 e->value.function.esym = NULL;
3743
3744 /* Make up a pre-resolved function call symtree if we need to. */
3745 if (!e->symtree || !e->symtree->n.sym)
3746 {
3747 gfc_symbol *sym;
3748 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3749 sym = e->symtree->n.sym;
3750 sym->result = sym;
3751 sym->attr.flavor = FL_PROCEDURE;
3752 sym->attr.function = 1;
3753 sym->attr.elemental = 1;
3754 sym->attr.pure = 1;
3755 sym->attr.referenced = 1;
3756 gfc_intrinsic_symbol (sym);
3757 gfc_commit_symbol (sym);
3758 }
3759
3760 args->name = e->value.function.isym->formal->name;
3761 if (e->value.function.isym->formal->next)
3762 args->next->name = e->value.function.isym->formal->next->name;
3763
3764 return e;
3765 }
3766
3767 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3768 candidates in CANDIDATES_LEN. */
3769 static void
3770 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3771 char **&candidates,
3772 size_t &candidates_len)
3773 {
3774 gfc_symtree *p;
3775
3776 if (uop == NULL)
3777 return;
3778
3779 /* Not sure how to properly filter here. Use all for a start.
3780 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3781 these as i suppose they don't make terribly sense. */
3782
3783 if (uop->n.uop->op != NULL)
3784 vec_push (candidates, candidates_len, uop->name);
3785
3786 p = uop->left;
3787 if (p)
3788 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3789
3790 p = uop->right;
3791 if (p)
3792 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3793 }
3794
3795 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3796
3797 static const char*
3798 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3799 {
3800 char **candidates = NULL;
3801 size_t candidates_len = 0;
3802 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3803 return gfc_closest_fuzzy_match (op, candidates);
3804 }
3805
3806
3807 /* Resolve an operator expression node. This can involve replacing the
3808 operation with a user defined function call. */
3809
3810 static bool
3811 resolve_operator (gfc_expr *e)
3812 {
3813 gfc_expr *op1, *op2;
3814 char msg[200];
3815 bool dual_locus_error;
3816 bool t;
3817
3818 /* Resolve all subnodes-- give them types. */
3819
3820 switch (e->value.op.op)
3821 {
3822 default:
3823 if (!gfc_resolve_expr (e->value.op.op2))
3824 return false;
3825
3826 /* Fall through. */
3827
3828 case INTRINSIC_NOT:
3829 case INTRINSIC_UPLUS:
3830 case INTRINSIC_UMINUS:
3831 case INTRINSIC_PARENTHESES:
3832 if (!gfc_resolve_expr (e->value.op.op1))
3833 return false;
3834 break;
3835 }
3836
3837 /* Typecheck the new node. */
3838
3839 op1 = e->value.op.op1;
3840 op2 = e->value.op.op2;
3841 dual_locus_error = false;
3842
3843 if ((op1 && op1->expr_type == EXPR_NULL)
3844 || (op2 && op2->expr_type == EXPR_NULL))
3845 {
3846 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
3847 goto bad_op;
3848 }
3849
3850 switch (e->value.op.op)
3851 {
3852 case INTRINSIC_UPLUS:
3853 case INTRINSIC_UMINUS:
3854 if (op1->ts.type == BT_INTEGER
3855 || op1->ts.type == BT_REAL
3856 || op1->ts.type == BT_COMPLEX)
3857 {
3858 e->ts = op1->ts;
3859 break;
3860 }
3861
3862 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
3863 gfc_op2string (e->value.op.op), gfc_typename (&e->ts));
3864 goto bad_op;
3865
3866 case INTRINSIC_PLUS:
3867 case INTRINSIC_MINUS:
3868 case INTRINSIC_TIMES:
3869 case INTRINSIC_DIVIDE:
3870 case INTRINSIC_POWER:
3871 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3872 {
3873 gfc_type_convert_binary (e, 1);
3874 break;
3875 }
3876
3877 sprintf (msg,
3878 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
3879 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3880 gfc_typename (&op2->ts));
3881 goto bad_op;
3882
3883 case INTRINSIC_CONCAT:
3884 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3885 && op1->ts.kind == op2->ts.kind)
3886 {
3887 e->ts.type = BT_CHARACTER;
3888 e->ts.kind = op1->ts.kind;
3889 break;
3890 }
3891
3892 sprintf (msg,
3893 _("Operands of string concatenation operator at %%L are %s/%s"),
3894 gfc_typename (&op1->ts), gfc_typename (&op2->ts));
3895 goto bad_op;
3896
3897 case INTRINSIC_AND:
3898 case INTRINSIC_OR:
3899 case INTRINSIC_EQV:
3900 case INTRINSIC_NEQV:
3901 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
3902 {
3903 e->ts.type = BT_LOGICAL;
3904 e->ts.kind = gfc_kind_max (op1, op2);
3905 if (op1->ts.kind < e->ts.kind)
3906 gfc_convert_type (op1, &e->ts, 2);
3907 else if (op2->ts.kind < e->ts.kind)
3908 gfc_convert_type (op2, &e->ts, 2);
3909 break;
3910 }
3911
3912 /* Logical ops on integers become bitwise ops with -fdec. */
3913 else if (flag_dec
3914 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
3915 {
3916 e->ts.type = BT_INTEGER;
3917 e->ts.kind = gfc_kind_max (op1, op2);
3918 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
3919 gfc_convert_type (op1, &e->ts, 1);
3920 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
3921 gfc_convert_type (op2, &e->ts, 1);
3922 e = logical_to_bitwise (e);
3923 return resolve_function (e);
3924 }
3925
3926 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
3927 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3928 gfc_typename (&op2->ts));
3929
3930 goto bad_op;
3931
3932 case INTRINSIC_NOT:
3933 /* Logical ops on integers become bitwise ops with -fdec. */
3934 if (flag_dec && op1->ts.type == BT_INTEGER)
3935 {
3936 e->ts.type = BT_INTEGER;
3937 e->ts.kind = op1->ts.kind;
3938 e = logical_to_bitwise (e);
3939 return resolve_function (e);
3940 }
3941
3942 if (op1->ts.type == BT_LOGICAL)
3943 {
3944 e->ts.type = BT_LOGICAL;
3945 e->ts.kind = op1->ts.kind;
3946 break;
3947 }
3948
3949 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
3950 gfc_typename (&op1->ts));
3951 goto bad_op;
3952
3953 case INTRINSIC_GT:
3954 case INTRINSIC_GT_OS:
3955 case INTRINSIC_GE:
3956 case INTRINSIC_GE_OS:
3957 case INTRINSIC_LT:
3958 case INTRINSIC_LT_OS:
3959 case INTRINSIC_LE:
3960 case INTRINSIC_LE_OS:
3961 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
3962 {
3963 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
3964 goto bad_op;
3965 }
3966
3967 /* Fall through. */
3968
3969 case INTRINSIC_EQ:
3970 case INTRINSIC_EQ_OS:
3971 case INTRINSIC_NE:
3972 case INTRINSIC_NE_OS:
3973 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3974 && op1->ts.kind == op2->ts.kind)
3975 {
3976 e->ts.type = BT_LOGICAL;
3977 e->ts.kind = gfc_default_logical_kind;
3978 break;
3979 }
3980
3981 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3982 {
3983 gfc_type_convert_binary (e, 1);
3984
3985 e->ts.type = BT_LOGICAL;
3986 e->ts.kind = gfc_default_logical_kind;
3987
3988 if (warn_compare_reals)
3989 {
3990 gfc_intrinsic_op op = e->value.op.op;
3991
3992 /* Type conversion has made sure that the types of op1 and op2
3993 agree, so it is only necessary to check the first one. */
3994 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
3995 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
3996 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
3997 {
3998 const char *msg;
3999
4000 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4001 msg = "Equality comparison for %s at %L";
4002 else
4003 msg = "Inequality comparison for %s at %L";
4004
4005 gfc_warning (OPT_Wcompare_reals, msg,
4006 gfc_typename (&op1->ts), &op1->where);
4007 }
4008 }
4009
4010 break;
4011 }
4012
4013 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4014 sprintf (msg,
4015 _("Logicals at %%L must be compared with %s instead of %s"),
4016 (e->value.op.op == INTRINSIC_EQ
4017 || e->value.op.op == INTRINSIC_EQ_OS)
4018 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4019 else
4020 sprintf (msg,
4021 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4022 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
4023 gfc_typename (&op2->ts));
4024
4025 goto bad_op;
4026
4027 case INTRINSIC_USER:
4028 if (e->value.op.uop->op == NULL)
4029 {
4030 const char *name = e->value.op.uop->name;
4031 const char *guessed;
4032 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4033 if (guessed)
4034 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4035 name, guessed);
4036 else
4037 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4038 }
4039 else if (op2 == NULL)
4040 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4041 e->value.op.uop->name, gfc_typename (&op1->ts));
4042 else
4043 {
4044 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4045 e->value.op.uop->name, gfc_typename (&op1->ts),
4046 gfc_typename (&op2->ts));
4047 e->value.op.uop->op->sym->attr.referenced = 1;
4048 }
4049
4050 goto bad_op;
4051
4052 case INTRINSIC_PARENTHESES:
4053 e->ts = op1->ts;
4054 if (e->ts.type == BT_CHARACTER)
4055 e->ts.u.cl = op1->ts.u.cl;
4056 break;
4057
4058 default:
4059 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4060 }
4061
4062 /* Deal with arrayness of an operand through an operator. */
4063
4064 t = true;
4065
4066 switch (e->value.op.op)
4067 {
4068 case INTRINSIC_PLUS:
4069 case INTRINSIC_MINUS:
4070 case INTRINSIC_TIMES:
4071 case INTRINSIC_DIVIDE:
4072 case INTRINSIC_POWER:
4073 case INTRINSIC_CONCAT:
4074 case INTRINSIC_AND:
4075 case INTRINSIC_OR:
4076 case INTRINSIC_EQV:
4077 case INTRINSIC_NEQV:
4078 case INTRINSIC_EQ:
4079 case INTRINSIC_EQ_OS:
4080 case INTRINSIC_NE:
4081 case INTRINSIC_NE_OS:
4082 case INTRINSIC_GT:
4083 case INTRINSIC_GT_OS:
4084 case INTRINSIC_GE:
4085 case INTRINSIC_GE_OS:
4086 case INTRINSIC_LT:
4087 case INTRINSIC_LT_OS:
4088 case INTRINSIC_LE:
4089 case INTRINSIC_LE_OS:
4090
4091 if (op1->rank == 0 && op2->rank == 0)
4092 e->rank = 0;
4093
4094 if (op1->rank == 0 && op2->rank != 0)
4095 {
4096 e->rank = op2->rank;
4097
4098 if (e->shape == NULL)
4099 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4100 }
4101
4102 if (op1->rank != 0 && op2->rank == 0)
4103 {
4104 e->rank = op1->rank;
4105
4106 if (e->shape == NULL)
4107 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4108 }
4109
4110 if (op1->rank != 0 && op2->rank != 0)
4111 {
4112 if (op1->rank == op2->rank)
4113 {
4114 e->rank = op1->rank;
4115 if (e->shape == NULL)
4116 {
4117 t = compare_shapes (op1, op2);
4118 if (!t)
4119 e->shape = NULL;
4120 else
4121 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4122 }
4123 }
4124 else
4125 {
4126 /* Allow higher level expressions to work. */
4127 e->rank = 0;
4128
4129 /* Try user-defined operators, and otherwise throw an error. */
4130 dual_locus_error = true;
4131 sprintf (msg,
4132 _("Inconsistent ranks for operator at %%L and %%L"));
4133 goto bad_op;
4134 }
4135 }
4136
4137 break;
4138
4139 case INTRINSIC_PARENTHESES:
4140 case INTRINSIC_NOT:
4141 case INTRINSIC_UPLUS:
4142 case INTRINSIC_UMINUS:
4143 /* Simply copy arrayness attribute */
4144 e->rank = op1->rank;
4145
4146 if (e->shape == NULL)
4147 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4148
4149 break;
4150
4151 default:
4152 break;
4153 }
4154
4155 /* Attempt to simplify the expression. */
4156 if (t)
4157 {
4158 t = gfc_simplify_expr (e, 0);
4159 /* Some calls do not succeed in simplification and return false
4160 even though there is no error; e.g. variable references to
4161 PARAMETER arrays. */
4162 if (!gfc_is_constant_expr (e))
4163 t = true;
4164 }
4165 return t;
4166
4167 bad_op:
4168
4169 {
4170 match m = gfc_extend_expr (e);
4171 if (m == MATCH_YES)
4172 return true;
4173 if (m == MATCH_ERROR)
4174 return false;
4175 }
4176
4177 if (dual_locus_error)
4178 gfc_error (msg, &op1->where, &op2->where);
4179 else
4180 gfc_error (msg, &e->where);
4181
4182 return false;
4183 }
4184
4185
4186 /************** Array resolution subroutines **************/
4187
4188 enum compare_result
4189 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4190
4191 /* Compare two integer expressions. */
4192
4193 static compare_result
4194 compare_bound (gfc_expr *a, gfc_expr *b)
4195 {
4196 int i;
4197
4198 if (a == NULL || a->expr_type != EXPR_CONSTANT
4199 || b == NULL || b->expr_type != EXPR_CONSTANT)
4200 return CMP_UNKNOWN;
4201
4202 /* If either of the types isn't INTEGER, we must have
4203 raised an error earlier. */
4204
4205 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4206 return CMP_UNKNOWN;
4207
4208 i = mpz_cmp (a->value.integer, b->value.integer);
4209
4210 if (i < 0)
4211 return CMP_LT;
4212 if (i > 0)
4213 return CMP_GT;
4214 return CMP_EQ;
4215 }
4216
4217
4218 /* Compare an integer expression with an integer. */
4219
4220 static compare_result
4221 compare_bound_int (gfc_expr *a, int b)
4222 {
4223 int i;
4224
4225 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4226 return CMP_UNKNOWN;
4227
4228 if (a->ts.type != BT_INTEGER)
4229 gfc_internal_error ("compare_bound_int(): Bad expression");
4230
4231 i = mpz_cmp_si (a->value.integer, b);
4232
4233 if (i < 0)
4234 return CMP_LT;
4235 if (i > 0)
4236 return CMP_GT;
4237 return CMP_EQ;
4238 }
4239
4240
4241 /* Compare an integer expression with a mpz_t. */
4242
4243 static compare_result
4244 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4245 {
4246 int i;
4247
4248 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4249 return CMP_UNKNOWN;
4250
4251 if (a->ts.type != BT_INTEGER)
4252 gfc_internal_error ("compare_bound_int(): Bad expression");
4253
4254 i = mpz_cmp (a->value.integer, b);
4255
4256 if (i < 0)
4257 return CMP_LT;
4258 if (i > 0)
4259 return CMP_GT;
4260 return CMP_EQ;
4261 }
4262
4263
4264 /* Compute the last value of a sequence given by a triplet.
4265 Return 0 if it wasn't able to compute the last value, or if the
4266 sequence if empty, and 1 otherwise. */
4267
4268 static int
4269 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4270 gfc_expr *stride, mpz_t last)
4271 {
4272 mpz_t rem;
4273
4274 if (start == NULL || start->expr_type != EXPR_CONSTANT
4275 || end == NULL || end->expr_type != EXPR_CONSTANT
4276 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4277 return 0;
4278
4279 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4280 || (stride != NULL && stride->ts.type != BT_INTEGER))
4281 return 0;
4282
4283 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4284 {
4285 if (compare_bound (start, end) == CMP_GT)
4286 return 0;
4287 mpz_set (last, end->value.integer);
4288 return 1;
4289 }
4290
4291 if (compare_bound_int (stride, 0) == CMP_GT)
4292 {
4293 /* Stride is positive */
4294 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4295 return 0;
4296 }
4297 else
4298 {
4299 /* Stride is negative */
4300 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4301 return 0;
4302 }
4303
4304 mpz_init (rem);
4305 mpz_sub (rem, end->value.integer, start->value.integer);
4306 mpz_tdiv_r (rem, rem, stride->value.integer);
4307 mpz_sub (last, end->value.integer, rem);
4308 mpz_clear (rem);
4309
4310 return 1;
4311 }
4312
4313
4314 /* Compare a single dimension of an array reference to the array
4315 specification. */
4316
4317 static bool
4318 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4319 {
4320 mpz_t last_value;
4321
4322 if (ar->dimen_type[i] == DIMEN_STAR)
4323 {
4324 gcc_assert (ar->stride[i] == NULL);
4325 /* This implies [*] as [*:] and [*:3] are not possible. */
4326 if (ar->start[i] == NULL)
4327 {
4328 gcc_assert (ar->end[i] == NULL);
4329 return true;
4330 }
4331 }
4332
4333 /* Given start, end and stride values, calculate the minimum and
4334 maximum referenced indexes. */
4335
4336 switch (ar->dimen_type[i])
4337 {
4338 case DIMEN_VECTOR:
4339 case DIMEN_THIS_IMAGE:
4340 break;
4341
4342 case DIMEN_STAR:
4343 case DIMEN_ELEMENT:
4344 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4345 {
4346 if (i < as->rank)
4347 gfc_warning (0, "Array reference at %L is out of bounds "
4348 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4349 mpz_get_si (ar->start[i]->value.integer),
4350 mpz_get_si (as->lower[i]->value.integer), i+1);
4351 else
4352 gfc_warning (0, "Array reference at %L is out of bounds "
4353 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4354 mpz_get_si (ar->start[i]->value.integer),
4355 mpz_get_si (as->lower[i]->value.integer),
4356 i + 1 - as->rank);
4357 return true;
4358 }
4359 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4360 {
4361 if (i < as->rank)
4362 gfc_warning (0, "Array reference at %L is out of bounds "
4363 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4364 mpz_get_si (ar->start[i]->value.integer),
4365 mpz_get_si (as->upper[i]->value.integer), i+1);
4366 else
4367 gfc_warning (0, "Array reference at %L is out of bounds "
4368 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4369 mpz_get_si (ar->start[i]->value.integer),
4370 mpz_get_si (as->upper[i]->value.integer),
4371 i + 1 - as->rank);
4372 return true;
4373 }
4374
4375 break;
4376
4377 case DIMEN_RANGE:
4378 {
4379 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4380 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4381
4382 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4383
4384 /* Check for zero stride, which is not allowed. */
4385 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4386 {
4387 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4388 return false;
4389 }
4390
4391 /* if start == len || (stride > 0 && start < len)
4392 || (stride < 0 && start > len),
4393 then the array section contains at least one element. In this
4394 case, there is an out-of-bounds access if
4395 (start < lower || start > upper). */
4396 if (compare_bound (AR_START, AR_END) == CMP_EQ
4397 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4398 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4399 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4400 && comp_start_end == CMP_GT))
4401 {
4402 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4403 {
4404 gfc_warning (0, "Lower array reference at %L is out of bounds "
4405 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4406 mpz_get_si (AR_START->value.integer),
4407 mpz_get_si (as->lower[i]->value.integer), i+1);
4408 return true;
4409 }
4410 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4411 {
4412 gfc_warning (0, "Lower array reference at %L is out of bounds "
4413 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4414 mpz_get_si (AR_START->value.integer),
4415 mpz_get_si (as->upper[i]->value.integer), i+1);
4416 return true;
4417 }
4418 }
4419
4420 /* If we can compute the highest index of the array section,
4421 then it also has to be between lower and upper. */
4422 mpz_init (last_value);
4423 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4424 last_value))
4425 {
4426 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4427 {
4428 gfc_warning (0, "Upper array reference at %L is out of bounds "
4429 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4430 mpz_get_si (last_value),
4431 mpz_get_si (as->lower[i]->value.integer), i+1);
4432 mpz_clear (last_value);
4433 return true;
4434 }
4435 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4436 {
4437 gfc_warning (0, "Upper array reference at %L is out of bounds "
4438 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4439 mpz_get_si (last_value),
4440 mpz_get_si (as->upper[i]->value.integer), i+1);
4441 mpz_clear (last_value);
4442 return true;
4443 }
4444 }
4445 mpz_clear (last_value);
4446
4447 #undef AR_START
4448 #undef AR_END
4449 }
4450 break;
4451
4452 default:
4453 gfc_internal_error ("check_dimension(): Bad array reference");
4454 }
4455
4456 return true;
4457 }
4458
4459
4460 /* Compare an array reference with an array specification. */
4461
4462 static bool
4463 compare_spec_to_ref (gfc_array_ref *ar)
4464 {
4465 gfc_array_spec *as;
4466 int i;
4467
4468 as = ar->as;
4469 i = as->rank - 1;
4470 /* TODO: Full array sections are only allowed as actual parameters. */
4471 if (as->type == AS_ASSUMED_SIZE
4472 && (/*ar->type == AR_FULL
4473 ||*/ (ar->type == AR_SECTION
4474 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4475 {
4476 gfc_error ("Rightmost upper bound of assumed size array section "
4477 "not specified at %L", &ar->where);
4478 return false;
4479 }
4480
4481 if (ar->type == AR_FULL)
4482 return true;
4483
4484 if (as->rank != ar->dimen)
4485 {
4486 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4487 &ar->where, ar->dimen, as->rank);
4488 return false;
4489 }
4490
4491 /* ar->codimen == 0 is a local array. */
4492 if (as->corank != ar->codimen && ar->codimen != 0)
4493 {
4494 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4495 &ar->where, ar->codimen, as->corank);
4496 return false;
4497 }
4498
4499 for (i = 0; i < as->rank; i++)
4500 if (!check_dimension (i, ar, as))
4501 return false;
4502
4503 /* Local access has no coarray spec. */
4504 if (ar->codimen != 0)
4505 for (i = as->rank; i < as->rank + as->corank; i++)
4506 {
4507 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4508 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4509 {
4510 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4511 i + 1 - as->rank, &ar->where);
4512 return false;
4513 }
4514 if (!check_dimension (i, ar, as))
4515 return false;
4516 }
4517
4518 return true;
4519 }
4520
4521
4522 /* Resolve one part of an array index. */
4523
4524 static bool
4525 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4526 int force_index_integer_kind)
4527 {
4528 gfc_typespec ts;
4529
4530 if (index == NULL)
4531 return true;
4532
4533 if (!gfc_resolve_expr (index))
4534 return false;
4535
4536 if (check_scalar && index->rank != 0)
4537 {
4538 gfc_error ("Array index at %L must be scalar", &index->where);
4539 return false;
4540 }
4541
4542 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4543 {
4544 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4545 &index->where, gfc_basic_typename (index->ts.type));
4546 return false;
4547 }
4548
4549 if (index->ts.type == BT_REAL)
4550 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4551 &index->where))
4552 return false;
4553
4554 if ((index->ts.kind != gfc_index_integer_kind
4555 && force_index_integer_kind)
4556 || index->ts.type != BT_INTEGER)
4557 {
4558 gfc_clear_ts (&ts);
4559 ts.type = BT_INTEGER;
4560 ts.kind = gfc_index_integer_kind;
4561
4562 gfc_convert_type_warn (index, &ts, 2, 0);
4563 }
4564
4565 return true;
4566 }
4567
4568 /* Resolve one part of an array index. */
4569
4570 bool
4571 gfc_resolve_index (gfc_expr *index, int check_scalar)
4572 {
4573 return gfc_resolve_index_1 (index, check_scalar, 1);
4574 }
4575
4576 /* Resolve a dim argument to an intrinsic function. */
4577
4578 bool
4579 gfc_resolve_dim_arg (gfc_expr *dim)
4580 {
4581 if (dim == NULL)
4582 return true;
4583
4584 if (!gfc_resolve_expr (dim))
4585 return false;
4586
4587 if (dim->rank != 0)
4588 {
4589 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4590 return false;
4591
4592 }
4593
4594 if (dim->ts.type != BT_INTEGER)
4595 {
4596 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4597 return false;
4598 }
4599
4600 if (dim->ts.kind != gfc_index_integer_kind)
4601 {
4602 gfc_typespec ts;
4603
4604 gfc_clear_ts (&ts);
4605 ts.type = BT_INTEGER;
4606 ts.kind = gfc_index_integer_kind;
4607
4608 gfc_convert_type_warn (dim, &ts, 2, 0);
4609 }
4610
4611 return true;
4612 }
4613
4614 /* Given an expression that contains array references, update those array
4615 references to point to the right array specifications. While this is
4616 filled in during matching, this information is difficult to save and load
4617 in a module, so we take care of it here.
4618
4619 The idea here is that the original array reference comes from the
4620 base symbol. We traverse the list of reference structures, setting
4621 the stored reference to references. Component references can
4622 provide an additional array specification. */
4623
4624 static void
4625 find_array_spec (gfc_expr *e)
4626 {
4627 gfc_array_spec *as;
4628 gfc_component *c;
4629 gfc_ref *ref;
4630
4631 if (e->symtree->n.sym->ts.type == BT_CLASS)
4632 as = CLASS_DATA (e->symtree->n.sym)->as;
4633 else
4634 as = e->symtree->n.sym->as;
4635
4636 for (ref = e->ref; ref; ref = ref->next)
4637 switch (ref->type)
4638 {
4639 case REF_ARRAY:
4640 if (as == NULL)
4641 gfc_internal_error ("find_array_spec(): Missing spec");
4642
4643 ref->u.ar.as = as;
4644 as = NULL;
4645 break;
4646
4647 case REF_COMPONENT:
4648 c = ref->u.c.component;
4649 if (c->attr.dimension)
4650 {
4651 if (as != NULL)
4652 gfc_internal_error ("find_array_spec(): unused as(1)");
4653 as = c->as;
4654 }
4655
4656 break;
4657
4658 case REF_SUBSTRING:
4659 break;
4660 }
4661
4662 if (as != NULL)
4663 gfc_internal_error ("find_array_spec(): unused as(2)");
4664 }
4665
4666
4667 /* Resolve an array reference. */
4668
4669 static bool
4670 resolve_array_ref (gfc_array_ref *ar)
4671 {
4672 int i, check_scalar;
4673 gfc_expr *e;
4674
4675 for (i = 0; i < ar->dimen + ar->codimen; i++)
4676 {
4677 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4678
4679 /* Do not force gfc_index_integer_kind for the start. We can
4680 do fine with any integer kind. This avoids temporary arrays
4681 created for indexing with a vector. */
4682 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4683 return false;
4684 if (!gfc_resolve_index (ar->end[i], check_scalar))
4685 return false;
4686 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4687 return false;
4688
4689 e = ar->start[i];
4690
4691 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4692 switch (e->rank)
4693 {
4694 case 0:
4695 ar->dimen_type[i] = DIMEN_ELEMENT;
4696 break;
4697
4698 case 1:
4699 ar->dimen_type[i] = DIMEN_VECTOR;
4700 if (e->expr_type == EXPR_VARIABLE
4701 && e->symtree->n.sym->ts.type == BT_DERIVED)
4702 ar->start[i] = gfc_get_parentheses (e);
4703 break;
4704
4705 default:
4706 gfc_error ("Array index at %L is an array of rank %d",
4707 &ar->c_where[i], e->rank);
4708 return false;
4709 }
4710
4711 /* Fill in the upper bound, which may be lower than the
4712 specified one for something like a(2:10:5), which is
4713 identical to a(2:7:5). Only relevant for strides not equal
4714 to one. Don't try a division by zero. */
4715 if (ar->dimen_type[i] == DIMEN_RANGE
4716 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4717 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4718 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4719 {
4720 mpz_t size, end;
4721
4722 if (gfc_ref_dimen_size (ar, i, &size, &end))
4723 {
4724 if (ar->end[i] == NULL)
4725 {
4726 ar->end[i] =
4727 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4728 &ar->where);
4729 mpz_set (ar->end[i]->value.integer, end);
4730 }
4731 else if (ar->end[i]->ts.type == BT_INTEGER
4732 && ar->end[i]->expr_type == EXPR_CONSTANT)
4733 {
4734 mpz_set (ar->end[i]->value.integer, end);
4735 }
4736 else
4737 gcc_unreachable ();
4738
4739 mpz_clear (size);
4740 mpz_clear (end);
4741 }
4742 }
4743 }
4744
4745 if (ar->type == AR_FULL)
4746 {
4747 if (ar->as->rank == 0)
4748 ar->type = AR_ELEMENT;
4749
4750 /* Make sure array is the same as array(:,:), this way
4751 we don't need to special case all the time. */
4752 ar->dimen = ar->as->rank;
4753 for (i = 0; i < ar->dimen; i++)
4754 {
4755 ar->dimen_type[i] = DIMEN_RANGE;
4756
4757 gcc_assert (ar->start[i] == NULL);
4758 gcc_assert (ar->end[i] == NULL);
4759 gcc_assert (ar->stride[i] == NULL);
4760 }
4761 }
4762
4763 /* If the reference type is unknown, figure out what kind it is. */
4764
4765 if (ar->type == AR_UNKNOWN)
4766 {
4767 ar->type = AR_ELEMENT;
4768 for (i = 0; i < ar->dimen; i++)
4769 if (ar->dimen_type[i] == DIMEN_RANGE
4770 || ar->dimen_type[i] == DIMEN_VECTOR)
4771 {
4772 ar->type = AR_SECTION;
4773 break;
4774 }
4775 }
4776
4777 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
4778 return false;
4779
4780 if (ar->as->corank && ar->codimen == 0)
4781 {
4782 int n;
4783 ar->codimen = ar->as->corank;
4784 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
4785 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
4786 }
4787
4788 return true;
4789 }
4790
4791
4792 static bool
4793 resolve_substring (gfc_ref *ref)
4794 {
4795 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
4796
4797 if (ref->u.ss.start != NULL)
4798 {
4799 if (!gfc_resolve_expr (ref->u.ss.start))
4800 return false;
4801
4802 if (ref->u.ss.start->ts.type != BT_INTEGER)
4803 {
4804 gfc_error ("Substring start index at %L must be of type INTEGER",
4805 &ref->u.ss.start->where);
4806 return false;
4807 }
4808
4809 if (ref->u.ss.start->rank != 0)
4810 {
4811 gfc_error ("Substring start index at %L must be scalar",
4812 &ref->u.ss.start->where);
4813 return false;
4814 }
4815
4816 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
4817 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4818 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4819 {
4820 gfc_error ("Substring start index at %L is less than one",
4821 &ref->u.ss.start->where);
4822 return false;
4823 }
4824 }
4825
4826 if (ref->u.ss.end != NULL)
4827 {
4828 if (!gfc_resolve_expr (ref->u.ss.end))
4829 return false;
4830
4831 if (ref->u.ss.end->ts.type != BT_INTEGER)
4832 {
4833 gfc_error ("Substring end index at %L must be of type INTEGER",
4834 &ref->u.ss.end->where);
4835 return false;
4836 }
4837
4838 if (ref->u.ss.end->rank != 0)
4839 {
4840 gfc_error ("Substring end index at %L must be scalar",
4841 &ref->u.ss.end->where);
4842 return false;
4843 }
4844
4845 if (ref->u.ss.length != NULL
4846 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
4847 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4848 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4849 {
4850 gfc_error ("Substring end index at %L exceeds the string length",
4851 &ref->u.ss.start->where);
4852 return false;
4853 }
4854
4855 if (compare_bound_mpz_t (ref->u.ss.end,
4856 gfc_integer_kinds[k].huge) == CMP_GT
4857 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4858 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4859 {
4860 gfc_error ("Substring end index at %L is too large",
4861 &ref->u.ss.end->where);
4862 return false;
4863 }
4864 }
4865
4866 return true;
4867 }
4868
4869
4870 /* This function supplies missing substring charlens. */
4871
4872 void
4873 gfc_resolve_substring_charlen (gfc_expr *e)
4874 {
4875 gfc_ref *char_ref;
4876 gfc_expr *start, *end;
4877 gfc_typespec *ts = NULL;
4878
4879 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
4880 {
4881 if (char_ref->type == REF_SUBSTRING)
4882 break;
4883 if (char_ref->type == REF_COMPONENT)
4884 ts = &char_ref->u.c.component->ts;
4885 }
4886
4887 if (!char_ref)
4888 return;
4889
4890 gcc_assert (char_ref->next == NULL);
4891
4892 if (e->ts.u.cl)
4893 {
4894 if (e->ts.u.cl->length)
4895 gfc_free_expr (e->ts.u.cl->length);
4896 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
4897 return;
4898 }
4899
4900 e->ts.type = BT_CHARACTER;
4901 e->ts.kind = gfc_default_character_kind;
4902
4903 if (!e->ts.u.cl)
4904 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4905
4906 if (char_ref->u.ss.start)
4907 start = gfc_copy_expr (char_ref->u.ss.start);
4908 else
4909 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
4910
4911 if (char_ref->u.ss.end)
4912 end = gfc_copy_expr (char_ref->u.ss.end);
4913 else if (e->expr_type == EXPR_VARIABLE)
4914 {
4915 if (!ts)
4916 ts = &e->symtree->n.sym->ts;
4917 end = gfc_copy_expr (ts->u.cl->length);
4918 }
4919 else
4920 end = NULL;
4921
4922 if (!start || !end)
4923 {
4924 gfc_free_expr (start);
4925 gfc_free_expr (end);
4926 return;
4927 }
4928
4929 /* Length = (end - start + 1). */
4930 e->ts.u.cl->length = gfc_subtract (end, start);
4931 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
4932 gfc_get_int_expr (gfc_charlen_int_kind,
4933 NULL, 1));
4934
4935 /* F2008, 6.4.1: Both the starting point and the ending point shall
4936 be within the range 1, 2, ..., n unless the starting point exceeds
4937 the ending point, in which case the substring has length zero. */
4938
4939 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
4940 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
4941
4942 e->ts.u.cl->length->ts.type = BT_INTEGER;
4943 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
4944
4945 /* Make sure that the length is simplified. */
4946 gfc_simplify_expr (e->ts.u.cl->length, 1);
4947 gfc_resolve_expr (e->ts.u.cl->length);
4948 }
4949
4950
4951 /* Resolve subtype references. */
4952
4953 static bool
4954 resolve_ref (gfc_expr *expr)
4955 {
4956 int current_part_dimension, n_components, seen_part_dimension;
4957 gfc_ref *ref;
4958
4959 for (ref = expr->ref; ref; ref = ref->next)
4960 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
4961 {
4962 find_array_spec (expr);
4963 break;
4964 }
4965
4966 for (ref = expr->ref; ref; ref = ref->next)
4967 switch (ref->type)
4968 {
4969 case REF_ARRAY:
4970 if (!resolve_array_ref (&ref->u.ar))
4971 return false;
4972 break;
4973
4974 case REF_COMPONENT:
4975 break;
4976
4977 case REF_SUBSTRING:
4978 if (!resolve_substring (ref))
4979 return false;
4980 break;
4981 }
4982
4983 /* Check constraints on part references. */
4984
4985 current_part_dimension = 0;
4986 seen_part_dimension = 0;
4987 n_components = 0;
4988
4989 for (ref = expr->ref; ref; ref = ref->next)
4990 {
4991 switch (ref->type)
4992 {
4993 case REF_ARRAY:
4994 switch (ref->u.ar.type)
4995 {
4996 case AR_FULL:
4997 /* Coarray scalar. */
4998 if (ref->u.ar.as->rank == 0)
4999 {
5000 current_part_dimension = 0;
5001 break;
5002 }
5003 /* Fall through. */
5004 case AR_SECTION:
5005 current_part_dimension = 1;
5006 break;
5007
5008 case AR_ELEMENT:
5009 current_part_dimension = 0;
5010 break;
5011
5012 case AR_UNKNOWN:
5013 gfc_internal_error ("resolve_ref(): Bad array reference");
5014 }
5015
5016 break;
5017
5018 case REF_COMPONENT:
5019 if (current_part_dimension || seen_part_dimension)
5020 {
5021 /* F03:C614. */
5022 if (ref->u.c.component->attr.pointer
5023 || ref->u.c.component->attr.proc_pointer
5024 || (ref->u.c.component->ts.type == BT_CLASS
5025 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5026 {
5027 gfc_error ("Component to the right of a part reference "
5028 "with nonzero rank must not have the POINTER "
5029 "attribute at %L", &expr->where);
5030 return false;
5031 }
5032 else if (ref->u.c.component->attr.allocatable
5033 || (ref->u.c.component->ts.type == BT_CLASS
5034 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5035
5036 {
5037 gfc_error ("Component to the right of a part reference "
5038 "with nonzero rank must not have the ALLOCATABLE "
5039 "attribute at %L", &expr->where);
5040 return false;
5041 }
5042 }
5043
5044 n_components++;
5045 break;
5046
5047 case REF_SUBSTRING:
5048 break;
5049 }
5050
5051 if (((ref->type == REF_COMPONENT && n_components > 1)
5052 || ref->next == NULL)
5053 && current_part_dimension
5054 && seen_part_dimension)
5055 {
5056 gfc_error ("Two or more part references with nonzero rank must "
5057 "not be specified at %L", &expr->where);
5058 return false;
5059 }
5060
5061 if (ref->type == REF_COMPONENT)
5062 {
5063 if (current_part_dimension)
5064 seen_part_dimension = 1;
5065
5066 /* reset to make sure */
5067 current_part_dimension = 0;
5068 }
5069 }
5070
5071 return true;
5072 }
5073
5074
5075 /* Given an expression, determine its shape. This is easier than it sounds.
5076 Leaves the shape array NULL if it is not possible to determine the shape. */
5077
5078 static void
5079 expression_shape (gfc_expr *e)
5080 {
5081 mpz_t array[GFC_MAX_DIMENSIONS];
5082 int i;
5083
5084 if (e->rank <= 0 || e->shape != NULL)
5085 return;
5086
5087 for (i = 0; i < e->rank; i++)
5088 if (!gfc_array_dimen_size (e, i, &array[i]))
5089 goto fail;
5090
5091 e->shape = gfc_get_shape (e->rank);
5092
5093 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5094
5095 return;
5096
5097 fail:
5098 for (i--; i >= 0; i--)
5099 mpz_clear (array[i]);
5100 }
5101
5102
5103 /* Given a variable expression node, compute the rank of the expression by
5104 examining the base symbol and any reference structures it may have. */
5105
5106 void
5107 expression_rank (gfc_expr *e)
5108 {
5109 gfc_ref *ref;
5110 int i, rank;
5111
5112 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5113 could lead to serious confusion... */
5114 gcc_assert (e->expr_type != EXPR_COMPCALL);
5115
5116 if (e->ref == NULL)
5117 {
5118 if (e->expr_type == EXPR_ARRAY)
5119 goto done;
5120 /* Constructors can have a rank different from one via RESHAPE(). */
5121
5122 if (e->symtree == NULL)
5123 {
5124 e->rank = 0;
5125 goto done;
5126 }
5127
5128 e->rank = (e->symtree->n.sym->as == NULL)
5129 ? 0 : e->symtree->n.sym->as->rank;
5130 goto done;
5131 }
5132
5133 rank = 0;
5134
5135 for (ref = e->ref; ref; ref = ref->next)
5136 {
5137 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5138 && ref->u.c.component->attr.function && !ref->next)
5139 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5140
5141 if (ref->type != REF_ARRAY)
5142 continue;
5143
5144 if (ref->u.ar.type == AR_FULL)
5145 {
5146 rank = ref->u.ar.as->rank;
5147 break;
5148 }
5149
5150 if (ref->u.ar.type == AR_SECTION)
5151 {
5152 /* Figure out the rank of the section. */
5153 if (rank != 0)
5154 gfc_internal_error ("expression_rank(): Two array specs");
5155
5156 for (i = 0; i < ref->u.ar.dimen; i++)
5157 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5158 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5159 rank++;
5160
5161 break;
5162 }
5163 }
5164
5165 e->rank = rank;
5166
5167 done:
5168 expression_shape (e);
5169 }
5170
5171
5172 static void
5173 add_caf_get_intrinsic (gfc_expr *e)
5174 {
5175 gfc_expr *wrapper, *tmp_expr;
5176 gfc_ref *ref;
5177 int n;
5178
5179 for (ref = e->ref; ref; ref = ref->next)
5180 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5181 break;
5182 if (ref == NULL)
5183 return;
5184
5185 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5186 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5187 return;
5188
5189 tmp_expr = XCNEW (gfc_expr);
5190 *tmp_expr = *e;
5191 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5192 "caf_get", tmp_expr->where, 1, tmp_expr);
5193 wrapper->ts = e->ts;
5194 wrapper->rank = e->rank;
5195 if (e->rank)
5196 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5197 *e = *wrapper;
5198 free (wrapper);
5199 }
5200
5201
5202 static void
5203 remove_caf_get_intrinsic (gfc_expr *e)
5204 {
5205 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5206 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5207 gfc_expr *e2 = e->value.function.actual->expr;
5208 e->value.function.actual->expr = NULL;
5209 gfc_free_actual_arglist (e->value.function.actual);
5210 gfc_free_shape (&e->shape, e->rank);
5211 *e = *e2;
5212 free (e2);
5213 }
5214
5215
5216 /* Resolve a variable expression. */
5217
5218 static bool
5219 resolve_variable (gfc_expr *e)
5220 {
5221 gfc_symbol *sym;
5222 bool t;
5223
5224 t = true;
5225
5226 if (e->symtree == NULL)
5227 return false;
5228 sym = e->symtree->n.sym;
5229
5230 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5231 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5232 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5233 {
5234 if (!actual_arg || inquiry_argument)
5235 {
5236 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5237 "be used as actual argument", sym->name, &e->where);
5238 return false;
5239 }
5240 }
5241 /* TS 29113, 407b. */
5242 else if (e->ts.type == BT_ASSUMED)
5243 {
5244 if (!actual_arg)
5245 {
5246 gfc_error ("Assumed-type variable %s at %L may only be used "
5247 "as actual argument", sym->name, &e->where);
5248 return false;
5249 }
5250 else if (inquiry_argument && !first_actual_arg)
5251 {
5252 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5253 for all inquiry functions in resolve_function; the reason is
5254 that the function-name resolution happens too late in that
5255 function. */
5256 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5257 "an inquiry function shall be the first argument",
5258 sym->name, &e->where);
5259 return false;
5260 }
5261 }
5262 /* TS 29113, C535b. */
5263 else if ((sym->ts.type == BT_CLASS && sym->attr.class_ok
5264 && CLASS_DATA (sym)->as
5265 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5266 || (sym->ts.type != BT_CLASS && sym->as
5267 && sym->as->type == AS_ASSUMED_RANK))
5268 {
5269 if (!actual_arg)
5270 {
5271 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5272 "actual argument", sym->name, &e->where);
5273 return false;
5274 }
5275 else if (inquiry_argument && !first_actual_arg)
5276 {
5277 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5278 for all inquiry functions in resolve_function; the reason is
5279 that the function-name resolution happens too late in that
5280 function. */
5281 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5282 "to an inquiry function shall be the first argument",
5283 sym->name, &e->where);
5284 return false;
5285 }
5286 }
5287
5288 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5289 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5290 && e->ref->next == NULL))
5291 {
5292 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5293 "a subobject reference", sym->name, &e->ref->u.ar.where);
5294 return false;
5295 }
5296 /* TS 29113, 407b. */
5297 else if (e->ts.type == BT_ASSUMED && e->ref
5298 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5299 && e->ref->next == NULL))
5300 {
5301 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5302 "reference", sym->name, &e->ref->u.ar.where);
5303 return false;
5304 }
5305
5306 /* TS 29113, C535b. */
5307 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5308 && CLASS_DATA (sym)->as
5309 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5310 || (sym->ts.type != BT_CLASS && sym->as
5311 && sym->as->type == AS_ASSUMED_RANK))
5312 && e->ref
5313 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5314 && e->ref->next == NULL))
5315 {
5316 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5317 "reference", sym->name, &e->ref->u.ar.where);
5318 return false;
5319 }
5320
5321 /* For variables that are used in an associate (target => object) where
5322 the object's basetype is array valued while the target is scalar,
5323 the ts' type of the component refs is still array valued, which
5324 can't be translated that way. */
5325 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5326 && sym->assoc->target->ts.type == BT_CLASS
5327 && CLASS_DATA (sym->assoc->target)->as)
5328 {
5329 gfc_ref *ref = e->ref;
5330 while (ref)
5331 {
5332 switch (ref->type)
5333 {
5334 case REF_COMPONENT:
5335 ref->u.c.sym = sym->ts.u.derived;
5336 /* Stop the loop. */
5337 ref = NULL;
5338 break;
5339 default:
5340 ref = ref->next;
5341 break;
5342 }
5343 }
5344 }
5345
5346 /* If this is an associate-name, it may be parsed with an array reference
5347 in error even though the target is scalar. Fail directly in this case.
5348 TODO Understand why class scalar expressions must be excluded. */
5349 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5350 {
5351 if (sym->ts.type == BT_CLASS)
5352 gfc_fix_class_refs (e);
5353 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5354 return false;
5355 }
5356
5357 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5358 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5359
5360 /* On the other hand, the parser may not have known this is an array;
5361 in this case, we have to add a FULL reference. */
5362 if (sym->assoc && sym->attr.dimension && !e->ref)
5363 {
5364 e->ref = gfc_get_ref ();
5365 e->ref->type = REF_ARRAY;
5366 e->ref->u.ar.type = AR_FULL;
5367 e->ref->u.ar.dimen = 0;
5368 }
5369
5370 /* Like above, but for class types, where the checking whether an array
5371 ref is present is more complicated. Furthermore make sure not to add
5372 the full array ref to _vptr or _len refs. */
5373 if (sym->assoc && sym->ts.type == BT_CLASS
5374 && CLASS_DATA (sym)->attr.dimension
5375 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5376 {
5377 gfc_ref *ref, *newref;
5378
5379 newref = gfc_get_ref ();
5380 newref->type = REF_ARRAY;
5381 newref->u.ar.type = AR_FULL;
5382 newref->u.ar.dimen = 0;
5383 /* Because this is an associate var and the first ref either is a ref to
5384 the _data component or not, no traversal of the ref chain is
5385 needed. The array ref needs to be inserted after the _data ref,
5386 or when that is not present, which may happend for polymorphic
5387 types, then at the first position. */
5388 ref = e->ref;
5389 if (!ref)
5390 e->ref = newref;
5391 else if (ref->type == REF_COMPONENT
5392 && strcmp ("_data", ref->u.c.component->name) == 0)
5393 {
5394 if (!ref->next || ref->next->type != REF_ARRAY)
5395 {
5396 newref->next = ref->next;
5397 ref->next = newref;
5398 }
5399 else
5400 /* Array ref present already. */
5401 gfc_free_ref_list (newref);
5402 }
5403 else if (ref->type == REF_ARRAY)
5404 /* Array ref present already. */
5405 gfc_free_ref_list (newref);
5406 else
5407 {
5408 newref->next = ref;
5409 e->ref = newref;
5410 }
5411 }
5412
5413 if (e->ref && !resolve_ref (e))
5414 return false;
5415
5416 if (sym->attr.flavor == FL_PROCEDURE
5417 && (!sym->attr.function
5418 || (sym->attr.function && sym->result
5419 && sym->result->attr.proc_pointer
5420 && !sym->result->attr.function)))
5421 {
5422 e->ts.type = BT_PROCEDURE;
5423 goto resolve_procedure;
5424 }
5425
5426 if (sym->ts.type != BT_UNKNOWN)
5427 gfc_variable_attr (e, &e->ts);
5428 else if (sym->attr.flavor == FL_PROCEDURE
5429 && sym->attr.function && sym->result
5430 && sym->result->ts.type != BT_UNKNOWN
5431 && sym->result->attr.proc_pointer)
5432 e->ts = sym->result->ts;
5433 else
5434 {
5435 /* Must be a simple variable reference. */
5436 if (!gfc_set_default_type (sym, 1, sym->ns))
5437 return false;
5438 e->ts = sym->ts;
5439 }
5440
5441 if (check_assumed_size_reference (sym, e))
5442 return false;
5443
5444 /* Deal with forward references to entries during gfc_resolve_code, to
5445 satisfy, at least partially, 12.5.2.5. */
5446 if (gfc_current_ns->entries
5447 && current_entry_id == sym->entry_id
5448 && cs_base
5449 && cs_base->current
5450 && cs_base->current->op != EXEC_ENTRY)
5451 {
5452 gfc_entry_list *entry;
5453 gfc_formal_arglist *formal;
5454 int n;
5455 bool seen, saved_specification_expr;
5456
5457 /* If the symbol is a dummy... */
5458 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5459 {
5460 entry = gfc_current_ns->entries;
5461 seen = false;
5462
5463 /* ...test if the symbol is a parameter of previous entries. */
5464 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5465 for (formal = entry->sym->formal; formal; formal = formal->next)
5466 {
5467 if (formal->sym && sym->name == formal->sym->name)
5468 {
5469 seen = true;
5470 break;
5471 }
5472 }
5473
5474 /* If it has not been seen as a dummy, this is an error. */
5475 if (!seen)
5476 {
5477 if (specification_expr)
5478 gfc_error ("Variable %qs, used in a specification expression"
5479 ", is referenced at %L before the ENTRY statement "
5480 "in which it is a parameter",
5481 sym->name, &cs_base->current->loc);
5482 else
5483 gfc_error ("Variable %qs is used at %L before the ENTRY "
5484 "statement in which it is a parameter",
5485 sym->name, &cs_base->current->loc);
5486 t = false;
5487 }
5488 }
5489
5490 /* Now do the same check on the specification expressions. */
5491 saved_specification_expr = specification_expr;
5492 specification_expr = true;
5493 if (sym->ts.type == BT_CHARACTER
5494 && !gfc_resolve_expr (sym->ts.u.cl->length))
5495 t = false;
5496
5497 if (sym->as)
5498 for (n = 0; n < sym->as->rank; n++)
5499 {
5500 if (!gfc_resolve_expr (sym->as->lower[n]))
5501 t = false;
5502 if (!gfc_resolve_expr (sym->as->upper[n]))
5503 t = false;
5504 }
5505 specification_expr = saved_specification_expr;
5506
5507 if (t)
5508 /* Update the symbol's entry level. */
5509 sym->entry_id = current_entry_id + 1;
5510 }
5511
5512 /* If a symbol has been host_associated mark it. This is used latter,
5513 to identify if aliasing is possible via host association. */
5514 if (sym->attr.flavor == FL_VARIABLE
5515 && gfc_current_ns->parent
5516 && (gfc_current_ns->parent == sym->ns
5517 || (gfc_current_ns->parent->parent
5518 && gfc_current_ns->parent->parent == sym->ns)))
5519 sym->attr.host_assoc = 1;
5520
5521 if (gfc_current_ns->proc_name
5522 && sym->attr.dimension
5523 && (sym->ns != gfc_current_ns
5524 || sym->attr.use_assoc
5525 || sym->attr.in_common))
5526 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5527
5528 resolve_procedure:
5529 if (t && !resolve_procedure_expression (e))
5530 t = false;
5531
5532 /* F2008, C617 and C1229. */
5533 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5534 && gfc_is_coindexed (e))
5535 {
5536 gfc_ref *ref, *ref2 = NULL;
5537
5538 for (ref = e->ref; ref; ref = ref->next)
5539 {
5540 if (ref->type == REF_COMPONENT)
5541 ref2 = ref;
5542 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5543 break;
5544 }
5545
5546 for ( ; ref; ref = ref->next)
5547 if (ref->type == REF_COMPONENT)
5548 break;
5549
5550 /* Expression itself is not coindexed object. */
5551 if (ref && e->ts.type == BT_CLASS)
5552 {
5553 gfc_error ("Polymorphic subobject of coindexed object at %L",
5554 &e->where);
5555 t = false;
5556 }
5557
5558 /* Expression itself is coindexed object. */
5559 if (ref == NULL)
5560 {
5561 gfc_component *c;
5562 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5563 for ( ; c; c = c->next)
5564 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5565 {
5566 gfc_error ("Coindexed object with polymorphic allocatable "
5567 "subcomponent at %L", &e->where);
5568 t = false;
5569 break;
5570 }
5571 }
5572 }
5573
5574 if (t)
5575 expression_rank (e);
5576
5577 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5578 add_caf_get_intrinsic (e);
5579
5580 return t;
5581 }
5582
5583
5584 /* Checks to see that the correct symbol has been host associated.
5585 The only situation where this arises is that in which a twice
5586 contained function is parsed after the host association is made.
5587 Therefore, on detecting this, change the symbol in the expression
5588 and convert the array reference into an actual arglist if the old
5589 symbol is a variable. */
5590 static bool
5591 check_host_association (gfc_expr *e)
5592 {
5593 gfc_symbol *sym, *old_sym;
5594 gfc_symtree *st;
5595 int n;
5596 gfc_ref *ref;
5597 gfc_actual_arglist *arg, *tail = NULL;
5598 bool retval = e->expr_type == EXPR_FUNCTION;
5599
5600 /* If the expression is the result of substitution in
5601 interface.c(gfc_extend_expr) because there is no way in
5602 which the host association can be wrong. */
5603 if (e->symtree == NULL
5604 || e->symtree->n.sym == NULL
5605 || e->user_operator)
5606 return retval;
5607
5608 old_sym = e->symtree->n.sym;
5609
5610 if (gfc_current_ns->parent
5611 && old_sym->ns != gfc_current_ns)
5612 {
5613 /* Use the 'USE' name so that renamed module symbols are
5614 correctly handled. */
5615 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5616
5617 if (sym && old_sym != sym
5618 && sym->ts.type == old_sym->ts.type
5619 && sym->attr.flavor == FL_PROCEDURE
5620 && sym->attr.contained)
5621 {
5622 /* Clear the shape, since it might not be valid. */
5623 gfc_free_shape (&e->shape, e->rank);
5624
5625 /* Give the expression the right symtree! */
5626 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5627 gcc_assert (st != NULL);
5628
5629 if (old_sym->attr.flavor == FL_PROCEDURE
5630 || e->expr_type == EXPR_FUNCTION)
5631 {
5632 /* Original was function so point to the new symbol, since
5633 the actual argument list is already attached to the
5634 expression. */
5635 e->value.function.esym = NULL;
5636 e->symtree = st;
5637 }
5638 else
5639 {
5640 /* Original was variable so convert array references into
5641 an actual arglist. This does not need any checking now
5642 since resolve_function will take care of it. */
5643 e->value.function.actual = NULL;
5644 e->expr_type = EXPR_FUNCTION;
5645 e->symtree = st;
5646
5647 /* Ambiguity will not arise if the array reference is not
5648 the last reference. */
5649 for (ref = e->ref; ref; ref = ref->next)
5650 if (ref->type == REF_ARRAY && ref->next == NULL)
5651 break;
5652
5653 gcc_assert (ref->type == REF_ARRAY);
5654
5655 /* Grab the start expressions from the array ref and
5656 copy them into actual arguments. */
5657 for (n = 0; n < ref->u.ar.dimen; n++)
5658 {
5659 arg = gfc_get_actual_arglist ();
5660 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5661 if (e->value.function.actual == NULL)
5662 tail = e->value.function.actual = arg;
5663 else
5664 {
5665 tail->next = arg;
5666 tail = arg;
5667 }
5668 }
5669
5670 /* Dump the reference list and set the rank. */
5671 gfc_free_ref_list (e->ref);
5672 e->ref = NULL;
5673 e->rank = sym->as ? sym->as->rank : 0;
5674 }
5675
5676 gfc_resolve_expr (e);
5677 sym->refs++;
5678 }
5679 }
5680 /* This might have changed! */
5681 return e->expr_type == EXPR_FUNCTION;
5682 }
5683
5684
5685 static void
5686 gfc_resolve_character_operator (gfc_expr *e)
5687 {
5688 gfc_expr *op1 = e->value.op.op1;
5689 gfc_expr *op2 = e->value.op.op2;
5690 gfc_expr *e1 = NULL;
5691 gfc_expr *e2 = NULL;
5692
5693 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
5694
5695 if (op1->ts.u.cl && op1->ts.u.cl->length)
5696 e1 = gfc_copy_expr (op1->ts.u.cl->length);
5697 else if (op1->expr_type == EXPR_CONSTANT)
5698 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5699 op1->value.character.length);
5700
5701 if (op2->ts.u.cl && op2->ts.u.cl->length)
5702 e2 = gfc_copy_expr (op2->ts.u.cl->length);
5703 else if (op2->expr_type == EXPR_CONSTANT)
5704 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5705 op2->value.character.length);
5706
5707 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5708
5709 if (!e1 || !e2)
5710 {
5711 gfc_free_expr (e1);
5712 gfc_free_expr (e2);
5713
5714 return;
5715 }
5716
5717 e->ts.u.cl->length = gfc_add (e1, e2);
5718 e->ts.u.cl->length->ts.type = BT_INTEGER;
5719 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5720 gfc_simplify_expr (e->ts.u.cl->length, 0);
5721 gfc_resolve_expr (e->ts.u.cl->length);
5722
5723 return;
5724 }
5725
5726
5727 /* Ensure that an character expression has a charlen and, if possible, a
5728 length expression. */
5729
5730 static void
5731 fixup_charlen (gfc_expr *e)
5732 {
5733 /* The cases fall through so that changes in expression type and the need
5734 for multiple fixes are picked up. In all circumstances, a charlen should
5735 be available for the middle end to hang a backend_decl on. */
5736 switch (e->expr_type)
5737 {
5738 case EXPR_OP:
5739 gfc_resolve_character_operator (e);
5740 /* FALLTHRU */
5741
5742 case EXPR_ARRAY:
5743 if (e->expr_type == EXPR_ARRAY)
5744 gfc_resolve_character_array_constructor (e);
5745 /* FALLTHRU */
5746
5747 case EXPR_SUBSTRING:
5748 if (!e->ts.u.cl && e->ref)
5749 gfc_resolve_substring_charlen (e);
5750 /* FALLTHRU */
5751
5752 default:
5753 if (!e->ts.u.cl)
5754 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5755
5756 break;
5757 }
5758 }
5759
5760
5761 /* Update an actual argument to include the passed-object for type-bound
5762 procedures at the right position. */
5763
5764 static gfc_actual_arglist*
5765 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
5766 const char *name)
5767 {
5768 gcc_assert (argpos > 0);
5769
5770 if (argpos == 1)
5771 {
5772 gfc_actual_arglist* result;
5773
5774 result = gfc_get_actual_arglist ();
5775 result->expr = po;
5776 result->next = lst;
5777 if (name)
5778 result->name = name;
5779
5780 return result;
5781 }
5782
5783 if (lst)
5784 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
5785 else
5786 lst = update_arglist_pass (NULL, po, argpos - 1, name);
5787 return lst;
5788 }
5789
5790
5791 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
5792
5793 static gfc_expr*
5794 extract_compcall_passed_object (gfc_expr* e)
5795 {
5796 gfc_expr* po;
5797
5798 gcc_assert (e->expr_type == EXPR_COMPCALL);
5799
5800 if (e->value.compcall.base_object)
5801 po = gfc_copy_expr (e->value.compcall.base_object);
5802 else
5803 {
5804 po = gfc_get_expr ();
5805 po->expr_type = EXPR_VARIABLE;
5806 po->symtree = e->symtree;
5807 po->ref = gfc_copy_ref (e->ref);
5808 po->where = e->where;
5809 }
5810
5811 if (!gfc_resolve_expr (po))
5812 return NULL;
5813
5814 return po;
5815 }
5816
5817
5818 /* Update the arglist of an EXPR_COMPCALL expression to include the
5819 passed-object. */
5820
5821 static bool
5822 update_compcall_arglist (gfc_expr* e)
5823 {
5824 gfc_expr* po;
5825 gfc_typebound_proc* tbp;
5826
5827 tbp = e->value.compcall.tbp;
5828
5829 if (tbp->error)
5830 return false;
5831
5832 po = extract_compcall_passed_object (e);
5833 if (!po)
5834 return false;
5835
5836 if (tbp->nopass || e->value.compcall.ignore_pass)
5837 {
5838 gfc_free_expr (po);
5839 return true;
5840 }
5841
5842 if (tbp->pass_arg_num <= 0)
5843 return false;
5844
5845 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
5846 tbp->pass_arg_num,
5847 tbp->pass_arg);
5848
5849 return true;
5850 }
5851
5852
5853 /* Extract the passed object from a PPC call (a copy of it). */
5854
5855 static gfc_expr*
5856 extract_ppc_passed_object (gfc_expr *e)
5857 {
5858 gfc_expr *po;
5859 gfc_ref **ref;
5860
5861 po = gfc_get_expr ();
5862 po->expr_type = EXPR_VARIABLE;
5863 po->symtree = e->symtree;
5864 po->ref = gfc_copy_ref (e->ref);
5865 po->where = e->where;
5866
5867 /* Remove PPC reference. */
5868 ref = &po->ref;
5869 while ((*ref)->next)
5870 ref = &(*ref)->next;
5871 gfc_free_ref_list (*ref);
5872 *ref = NULL;
5873
5874 if (!gfc_resolve_expr (po))
5875 return NULL;
5876
5877 return po;
5878 }
5879
5880
5881 /* Update the actual arglist of a procedure pointer component to include the
5882 passed-object. */
5883
5884 static bool
5885 update_ppc_arglist (gfc_expr* e)
5886 {
5887 gfc_expr* po;
5888 gfc_component *ppc;
5889 gfc_typebound_proc* tb;
5890
5891 ppc = gfc_get_proc_ptr_comp (e);
5892 if (!ppc)
5893 return false;
5894
5895 tb = ppc->tb;
5896
5897 if (tb->error)
5898 return false;
5899 else if (tb->nopass)
5900 return true;
5901
5902 po = extract_ppc_passed_object (e);
5903 if (!po)
5904 return false;
5905
5906 /* F08:R739. */
5907 if (po->rank != 0)
5908 {
5909 gfc_error ("Passed-object at %L must be scalar", &e->where);
5910 return false;
5911 }
5912
5913 /* F08:C611. */
5914 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
5915 {
5916 gfc_error ("Base object for procedure-pointer component call at %L is of"
5917 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
5918 return false;
5919 }
5920
5921 gcc_assert (tb->pass_arg_num > 0);
5922 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
5923 tb->pass_arg_num,
5924 tb->pass_arg);
5925
5926 return true;
5927 }
5928
5929
5930 /* Check that the object a TBP is called on is valid, i.e. it must not be
5931 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
5932
5933 static bool
5934 check_typebound_baseobject (gfc_expr* e)
5935 {
5936 gfc_expr* base;
5937 bool return_value = false;
5938
5939 base = extract_compcall_passed_object (e);
5940 if (!base)
5941 return false;
5942
5943 gcc_assert (base->ts.type == BT_DERIVED || base->ts.type == BT_CLASS);
5944
5945 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
5946 return false;
5947
5948 /* F08:C611. */
5949 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
5950 {
5951 gfc_error ("Base object for type-bound procedure call at %L is of"
5952 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
5953 goto cleanup;
5954 }
5955
5956 /* F08:C1230. If the procedure called is NOPASS,
5957 the base object must be scalar. */
5958 if (e->value.compcall.tbp->nopass && base->rank != 0)
5959 {
5960 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
5961 " be scalar", &e->where);
5962 goto cleanup;
5963 }
5964
5965 return_value = true;
5966
5967 cleanup:
5968 gfc_free_expr (base);
5969 return return_value;
5970 }
5971
5972
5973 /* Resolve a call to a type-bound procedure, either function or subroutine,
5974 statically from the data in an EXPR_COMPCALL expression. The adapted
5975 arglist and the target-procedure symtree are returned. */
5976
5977 static bool
5978 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
5979 gfc_actual_arglist** actual)
5980 {
5981 gcc_assert (e->expr_type == EXPR_COMPCALL);
5982 gcc_assert (!e->value.compcall.tbp->is_generic);
5983
5984 /* Update the actual arglist for PASS. */
5985 if (!update_compcall_arglist (e))
5986 return false;
5987
5988 *actual = e->value.compcall.actual;
5989 *target = e->value.compcall.tbp->u.specific;
5990
5991 gfc_free_ref_list (e->ref);
5992 e->ref = NULL;
5993 e->value.compcall.actual = NULL;
5994
5995 /* If we find a deferred typebound procedure, check for derived types
5996 that an overriding typebound procedure has not been missed. */
5997 if (e->value.compcall.name
5998 && !e->value.compcall.tbp->non_overridable
5999 && e->value.compcall.base_object
6000 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6001 {
6002 gfc_symtree *st;
6003 gfc_symbol *derived;
6004
6005 /* Use the derived type of the base_object. */
6006 derived = e->value.compcall.base_object->ts.u.derived;
6007 st = NULL;
6008
6009 /* If necessary, go through the inheritance chain. */
6010 while (!st && derived)
6011 {
6012 /* Look for the typebound procedure 'name'. */
6013 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6014 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6015 e->value.compcall.name);
6016 if (!st)
6017 derived = gfc_get_derived_super_type (derived);
6018 }
6019
6020 /* Now find the specific name in the derived type namespace. */
6021 if (st && st->n.tb && st->n.tb->u.specific)
6022 gfc_find_sym_tree (st->n.tb->u.specific->name,
6023 derived->ns, 1, &st);
6024 if (st)
6025 *target = st;
6026 }
6027 return true;
6028 }
6029
6030
6031 /* Get the ultimate declared type from an expression. In addition,
6032 return the last class/derived type reference and the copy of the
6033 reference list. If check_types is set true, derived types are
6034 identified as well as class references. */
6035 static gfc_symbol*
6036 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6037 gfc_expr *e, bool check_types)
6038 {
6039 gfc_symbol *declared;
6040 gfc_ref *ref;
6041
6042 declared = NULL;
6043 if (class_ref)
6044 *class_ref = NULL;
6045 if (new_ref)
6046 *new_ref = gfc_copy_ref (e->ref);
6047
6048 for (ref = e->ref; ref; ref = ref->next)
6049 {
6050 if (ref->type != REF_COMPONENT)
6051 continue;
6052
6053 if ((ref->u.c.component->ts.type == BT_CLASS
6054 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6055 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6056 {
6057 declared = ref->u.c.component->ts.u.derived;
6058 if (class_ref)
6059 *class_ref = ref;
6060 }
6061 }
6062
6063 if (declared == NULL)
6064 declared = e->symtree->n.sym->ts.u.derived;
6065
6066 return declared;
6067 }
6068
6069
6070 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6071 which of the specific bindings (if any) matches the arglist and transform
6072 the expression into a call of that binding. */
6073
6074 static bool
6075 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6076 {
6077 gfc_typebound_proc* genproc;
6078 const char* genname;
6079 gfc_symtree *st;
6080 gfc_symbol *derived;
6081
6082 gcc_assert (e->expr_type == EXPR_COMPCALL);
6083 genname = e->value.compcall.name;
6084 genproc = e->value.compcall.tbp;
6085
6086 if (!genproc->is_generic)
6087 return true;
6088
6089 /* Try the bindings on this type and in the inheritance hierarchy. */
6090 for (; genproc; genproc = genproc->overridden)
6091 {
6092 gfc_tbp_generic* g;
6093
6094 gcc_assert (genproc->is_generic);
6095 for (g = genproc->u.generic; g; g = g->next)
6096 {
6097 gfc_symbol* target;
6098 gfc_actual_arglist* args;
6099 bool matches;
6100
6101 gcc_assert (g->specific);
6102
6103 if (g->specific->error)
6104 continue;
6105
6106 target = g->specific->u.specific->n.sym;
6107
6108 /* Get the right arglist by handling PASS/NOPASS. */
6109 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6110 if (!g->specific->nopass)
6111 {
6112 gfc_expr* po;
6113 po = extract_compcall_passed_object (e);
6114 if (!po)
6115 {
6116 gfc_free_actual_arglist (args);
6117 return false;
6118 }
6119
6120 gcc_assert (g->specific->pass_arg_num > 0);
6121 gcc_assert (!g->specific->error);
6122 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6123 g->specific->pass_arg);
6124 }
6125 resolve_actual_arglist (args, target->attr.proc,
6126 is_external_proc (target)
6127 && gfc_sym_get_dummy_args (target) == NULL);
6128
6129 /* Check if this arglist matches the formal. */
6130 matches = gfc_arglist_matches_symbol (&args, target);
6131
6132 /* Clean up and break out of the loop if we've found it. */
6133 gfc_free_actual_arglist (args);
6134 if (matches)
6135 {
6136 e->value.compcall.tbp = g->specific;
6137 genname = g->specific_st->name;
6138 /* Pass along the name for CLASS methods, where the vtab
6139 procedure pointer component has to be referenced. */
6140 if (name)
6141 *name = genname;
6142 goto success;
6143 }
6144 }
6145 }
6146
6147 /* Nothing matching found! */
6148 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6149 " %qs at %L", genname, &e->where);
6150 return false;
6151
6152 success:
6153 /* Make sure that we have the right specific instance for the name. */
6154 derived = get_declared_from_expr (NULL, NULL, e, true);
6155
6156 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6157 if (st)
6158 e->value.compcall.tbp = st->n.tb;
6159
6160 return true;
6161 }
6162
6163
6164 /* Resolve a call to a type-bound subroutine. */
6165
6166 static bool
6167 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6168 {
6169 gfc_actual_arglist* newactual;
6170 gfc_symtree* target;
6171
6172 /* Check that's really a SUBROUTINE. */
6173 if (!c->expr1->value.compcall.tbp->subroutine)
6174 {
6175 gfc_error ("%qs at %L should be a SUBROUTINE",
6176 c->expr1->value.compcall.name, &c->loc);
6177 return false;
6178 }
6179
6180 if (!check_typebound_baseobject (c->expr1))
6181 return false;
6182
6183 /* Pass along the name for CLASS methods, where the vtab
6184 procedure pointer component has to be referenced. */
6185 if (name)
6186 *name = c->expr1->value.compcall.name;
6187
6188 if (!resolve_typebound_generic_call (c->expr1, name))
6189 return false;
6190
6191 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6192 if (overridable)
6193 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6194
6195 /* Transform into an ordinary EXEC_CALL for now. */
6196
6197 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6198 return false;
6199
6200 c->ext.actual = newactual;
6201 c->symtree = target;
6202 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6203
6204 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6205
6206 gfc_free_expr (c->expr1);
6207 c->expr1 = gfc_get_expr ();
6208 c->expr1->expr_type = EXPR_FUNCTION;
6209 c->expr1->symtree = target;
6210 c->expr1->where = c->loc;
6211
6212 return resolve_call (c);
6213 }
6214
6215
6216 /* Resolve a component-call expression. */
6217 static bool
6218 resolve_compcall (gfc_expr* e, const char **name)
6219 {
6220 gfc_actual_arglist* newactual;
6221 gfc_symtree* target;
6222
6223 /* Check that's really a FUNCTION. */
6224 if (!e->value.compcall.tbp->function)
6225 {
6226 gfc_error ("%qs at %L should be a FUNCTION",
6227 e->value.compcall.name, &e->where);
6228 return false;
6229 }
6230
6231 /* These must not be assign-calls! */
6232 gcc_assert (!e->value.compcall.assign);
6233
6234 if (!check_typebound_baseobject (e))
6235 return false;
6236
6237 /* Pass along the name for CLASS methods, where the vtab
6238 procedure pointer component has to be referenced. */
6239 if (name)
6240 *name = e->value.compcall.name;
6241
6242 if (!resolve_typebound_generic_call (e, name))
6243 return false;
6244 gcc_assert (!e->value.compcall.tbp->is_generic);
6245
6246 /* Take the rank from the function's symbol. */
6247 if (e->value.compcall.tbp->u.specific->n.sym->as)
6248 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6249
6250 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6251 arglist to the TBP's binding target. */
6252
6253 if (!resolve_typebound_static (e, &target, &newactual))
6254 return false;
6255
6256 e->value.function.actual = newactual;
6257 e->value.function.name = NULL;
6258 e->value.function.esym = target->n.sym;
6259 e->value.function.isym = NULL;
6260 e->symtree = target;
6261 e->ts = target->n.sym->ts;
6262 e->expr_type = EXPR_FUNCTION;
6263
6264 /* Resolution is not necessary if this is a class subroutine; this
6265 function only has to identify the specific proc. Resolution of
6266 the call will be done next in resolve_typebound_call. */
6267 return gfc_resolve_expr (e);
6268 }
6269
6270
6271 static bool resolve_fl_derived (gfc_symbol *sym);
6272
6273
6274 /* Resolve a typebound function, or 'method'. First separate all
6275 the non-CLASS references by calling resolve_compcall directly. */
6276
6277 static bool
6278 resolve_typebound_function (gfc_expr* e)
6279 {
6280 gfc_symbol *declared;
6281 gfc_component *c;
6282 gfc_ref *new_ref;
6283 gfc_ref *class_ref;
6284 gfc_symtree *st;
6285 const char *name;
6286 gfc_typespec ts;
6287 gfc_expr *expr;
6288 bool overridable;
6289
6290 st = e->symtree;
6291
6292 /* Deal with typebound operators for CLASS objects. */
6293 expr = e->value.compcall.base_object;
6294 overridable = !e->value.compcall.tbp->non_overridable;
6295 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6296 {
6297 /* If the base_object is not a variable, the corresponding actual
6298 argument expression must be stored in e->base_expression so
6299 that the corresponding tree temporary can be used as the base
6300 object in gfc_conv_procedure_call. */
6301 if (expr->expr_type != EXPR_VARIABLE)
6302 {
6303 gfc_actual_arglist *args;
6304
6305 for (args= e->value.function.actual; args; args = args->next)
6306 {
6307 if (expr == args->expr)
6308 expr = args->expr;
6309 }
6310 }
6311
6312 /* Since the typebound operators are generic, we have to ensure
6313 that any delays in resolution are corrected and that the vtab
6314 is present. */
6315 ts = expr->ts;
6316 declared = ts.u.derived;
6317 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6318 if (c->ts.u.derived == NULL)
6319 c->ts.u.derived = gfc_find_derived_vtab (declared);
6320
6321 if (!resolve_compcall (e, &name))
6322 return false;
6323
6324 /* Use the generic name if it is there. */
6325 name = name ? name : e->value.function.esym->name;
6326 e->symtree = expr->symtree;
6327 e->ref = gfc_copy_ref (expr->ref);
6328 get_declared_from_expr (&class_ref, NULL, e, false);
6329
6330 /* Trim away the extraneous references that emerge from nested
6331 use of interface.c (extend_expr). */
6332 if (class_ref && class_ref->next)
6333 {
6334 gfc_free_ref_list (class_ref->next);
6335 class_ref->next = NULL;
6336 }
6337 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6338 {
6339 gfc_free_ref_list (e->ref);
6340 e->ref = NULL;
6341 }
6342
6343 gfc_add_vptr_component (e);
6344 gfc_add_component_ref (e, name);
6345 e->value.function.esym = NULL;
6346 if (expr->expr_type != EXPR_VARIABLE)
6347 e->base_expr = expr;
6348 return true;
6349 }
6350
6351 if (st == NULL)
6352 return resolve_compcall (e, NULL);
6353
6354 if (!resolve_ref (e))
6355 return false;
6356
6357 /* Get the CLASS declared type. */
6358 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6359
6360 if (!resolve_fl_derived (declared))
6361 return false;
6362
6363 /* Weed out cases of the ultimate component being a derived type. */
6364 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6365 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6366 {
6367 gfc_free_ref_list (new_ref);
6368 return resolve_compcall (e, NULL);
6369 }
6370
6371 c = gfc_find_component (declared, "_data", true, true, NULL);
6372 declared = c->ts.u.derived;
6373
6374 /* Treat the call as if it is a typebound procedure, in order to roll
6375 out the correct name for the specific function. */
6376 if (!resolve_compcall (e, &name))
6377 {
6378 gfc_free_ref_list (new_ref);
6379 return false;
6380 }
6381 ts = e->ts;
6382
6383 if (overridable)
6384 {
6385 /* Convert the expression to a procedure pointer component call. */
6386 e->value.function.esym = NULL;
6387 e->symtree = st;
6388
6389 if (new_ref)
6390 e->ref = new_ref;
6391
6392 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6393 gfc_add_vptr_component (e);
6394 gfc_add_component_ref (e, name);
6395
6396 /* Recover the typespec for the expression. This is really only
6397 necessary for generic procedures, where the additional call
6398 to gfc_add_component_ref seems to throw the collection of the
6399 correct typespec. */
6400 e->ts = ts;
6401 }
6402 else if (new_ref)
6403 gfc_free_ref_list (new_ref);
6404
6405 return true;
6406 }
6407
6408 /* Resolve a typebound subroutine, or 'method'. First separate all
6409 the non-CLASS references by calling resolve_typebound_call
6410 directly. */
6411
6412 static bool
6413 resolve_typebound_subroutine (gfc_code *code)
6414 {
6415 gfc_symbol *declared;
6416 gfc_component *c;
6417 gfc_ref *new_ref;
6418 gfc_ref *class_ref;
6419 gfc_symtree *st;
6420 const char *name;
6421 gfc_typespec ts;
6422 gfc_expr *expr;
6423 bool overridable;
6424
6425 st = code->expr1->symtree;
6426
6427 /* Deal with typebound operators for CLASS objects. */
6428 expr = code->expr1->value.compcall.base_object;
6429 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6430 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6431 {
6432 /* If the base_object is not a variable, the corresponding actual
6433 argument expression must be stored in e->base_expression so
6434 that the corresponding tree temporary can be used as the base
6435 object in gfc_conv_procedure_call. */
6436 if (expr->expr_type != EXPR_VARIABLE)
6437 {
6438 gfc_actual_arglist *args;
6439
6440 args= code->expr1->value.function.actual;
6441 for (; args; args = args->next)
6442 if (expr == args->expr)
6443 expr = args->expr;
6444 }
6445
6446 /* Since the typebound operators are generic, we have to ensure
6447 that any delays in resolution are corrected and that the vtab
6448 is present. */
6449 declared = expr->ts.u.derived;
6450 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6451 if (c->ts.u.derived == NULL)
6452 c->ts.u.derived = gfc_find_derived_vtab (declared);
6453
6454 if (!resolve_typebound_call (code, &name, NULL))
6455 return false;
6456
6457 /* Use the generic name if it is there. */
6458 name = name ? name : code->expr1->value.function.esym->name;
6459 code->expr1->symtree = expr->symtree;
6460 code->expr1->ref = gfc_copy_ref (expr->ref);
6461
6462 /* Trim away the extraneous references that emerge from nested
6463 use of interface.c (extend_expr). */
6464 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6465 if (class_ref && class_ref->next)
6466 {
6467 gfc_free_ref_list (class_ref->next);
6468 class_ref->next = NULL;
6469 }
6470 else if (code->expr1->ref && !class_ref)
6471 {
6472 gfc_free_ref_list (code->expr1->ref);
6473 code->expr1->ref = NULL;
6474 }
6475
6476 /* Now use the procedure in the vtable. */
6477 gfc_add_vptr_component (code->expr1);
6478 gfc_add_component_ref (code->expr1, name);
6479 code->expr1->value.function.esym = NULL;
6480 if (expr->expr_type != EXPR_VARIABLE)
6481 code->expr1->base_expr = expr;
6482 return true;
6483 }
6484
6485 if (st == NULL)
6486 return resolve_typebound_call (code, NULL, NULL);
6487
6488 if (!resolve_ref (code->expr1))
6489 return false;
6490
6491 /* Get the CLASS declared type. */
6492 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6493
6494 /* Weed out cases of the ultimate component being a derived type. */
6495 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6496 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6497 {
6498 gfc_free_ref_list (new_ref);
6499 return resolve_typebound_call (code, NULL, NULL);
6500 }
6501
6502 if (!resolve_typebound_call (code, &name, &overridable))
6503 {
6504 gfc_free_ref_list (new_ref);
6505 return false;
6506 }
6507 ts = code->expr1->ts;
6508
6509 if (overridable)
6510 {
6511 /* Convert the expression to a procedure pointer component call. */
6512 code->expr1->value.function.esym = NULL;
6513 code->expr1->symtree = st;
6514
6515 if (new_ref)
6516 code->expr1->ref = new_ref;
6517
6518 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6519 gfc_add_vptr_component (code->expr1);
6520 gfc_add_component_ref (code->expr1, name);
6521
6522 /* Recover the typespec for the expression. This is really only
6523 necessary for generic procedures, where the additional call
6524 to gfc_add_component_ref seems to throw the collection of the
6525 correct typespec. */
6526 code->expr1->ts = ts;
6527 }
6528 else if (new_ref)
6529 gfc_free_ref_list (new_ref);
6530
6531 return true;
6532 }
6533
6534
6535 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6536
6537 static bool
6538 resolve_ppc_call (gfc_code* c)
6539 {
6540 gfc_component *comp;
6541
6542 comp = gfc_get_proc_ptr_comp (c->expr1);
6543 gcc_assert (comp != NULL);
6544
6545 c->resolved_sym = c->expr1->symtree->n.sym;
6546 c->expr1->expr_type = EXPR_VARIABLE;
6547
6548 if (!comp->attr.subroutine)
6549 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6550
6551 if (!resolve_ref (c->expr1))
6552 return false;
6553
6554 if (!update_ppc_arglist (c->expr1))
6555 return false;
6556
6557 c->ext.actual = c->expr1->value.compcall.actual;
6558
6559 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6560 !(comp->ts.interface
6561 && comp->ts.interface->formal)))
6562 return false;
6563
6564 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6565 return false;
6566
6567 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6568
6569 return true;
6570 }
6571
6572
6573 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6574
6575 static bool
6576 resolve_expr_ppc (gfc_expr* e)
6577 {
6578 gfc_component *comp;
6579
6580 comp = gfc_get_proc_ptr_comp (e);
6581 gcc_assert (comp != NULL);
6582
6583 /* Convert to EXPR_FUNCTION. */
6584 e->expr_type = EXPR_FUNCTION;
6585 e->value.function.isym = NULL;
6586 e->value.function.actual = e->value.compcall.actual;
6587 e->ts = comp->ts;
6588 if (comp->as != NULL)
6589 e->rank = comp->as->rank;
6590
6591 if (!comp->attr.function)
6592 gfc_add_function (&comp->attr, comp->name, &e->where);
6593
6594 if (!resolve_ref (e))
6595 return false;
6596
6597 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6598 !(comp->ts.interface
6599 && comp->ts.interface->formal)))
6600 return false;
6601
6602 if (!update_ppc_arglist (e))
6603 return false;
6604
6605 if (!check_pure_function(e))
6606 return false;
6607
6608 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6609
6610 return true;
6611 }
6612
6613
6614 static bool
6615 gfc_is_expandable_expr (gfc_expr *e)
6616 {
6617 gfc_constructor *con;
6618
6619 if (e->expr_type == EXPR_ARRAY)
6620 {
6621 /* Traverse the constructor looking for variables that are flavor
6622 parameter. Parameters must be expanded since they are fully used at
6623 compile time. */
6624 con = gfc_constructor_first (e->value.constructor);
6625 for (; con; con = gfc_constructor_next (con))
6626 {
6627 if (con->expr->expr_type == EXPR_VARIABLE
6628 && con->expr->symtree
6629 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6630 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6631 return true;
6632 if (con->expr->expr_type == EXPR_ARRAY
6633 && gfc_is_expandable_expr (con->expr))
6634 return true;
6635 }
6636 }
6637
6638 return false;
6639 }
6640
6641
6642 /* Sometimes variables in specification expressions of the result
6643 of module procedures in submodules wind up not being the 'real'
6644 dummy. Find this, if possible, in the namespace of the first
6645 formal argument. */
6646
6647 static void
6648 fixup_unique_dummy (gfc_expr *e)
6649 {
6650 gfc_symtree *st = NULL;
6651 gfc_symbol *s = NULL;
6652
6653 if (e->symtree->n.sym->ns->proc_name
6654 && e->symtree->n.sym->ns->proc_name->formal)
6655 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6656
6657 if (s != NULL)
6658 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6659
6660 if (st != NULL
6661 && st->n.sym != NULL
6662 && st->n.sym->attr.dummy)
6663 e->symtree = st;
6664 }
6665
6666 /* Resolve an expression. That is, make sure that types of operands agree
6667 with their operators, intrinsic operators are converted to function calls
6668 for overloaded types and unresolved function references are resolved. */
6669
6670 bool
6671 gfc_resolve_expr (gfc_expr *e)
6672 {
6673 bool t;
6674 bool inquiry_save, actual_arg_save, first_actual_arg_save;
6675
6676 if (e == NULL)
6677 return true;
6678
6679 /* inquiry_argument only applies to variables. */
6680 inquiry_save = inquiry_argument;
6681 actual_arg_save = actual_arg;
6682 first_actual_arg_save = first_actual_arg;
6683
6684 if (e->expr_type != EXPR_VARIABLE)
6685 {
6686 inquiry_argument = false;
6687 actual_arg = false;
6688 first_actual_arg = false;
6689 }
6690 else if (e->symtree != NULL
6691 && *e->symtree->name == '@'
6692 && e->symtree->n.sym->attr.dummy)
6693 {
6694 /* Deal with submodule specification expressions that are not
6695 found to be referenced in module.c(read_cleanup). */
6696 fixup_unique_dummy (e);
6697 }
6698
6699 switch (e->expr_type)
6700 {
6701 case EXPR_OP:
6702 t = resolve_operator (e);
6703 break;
6704
6705 case EXPR_FUNCTION:
6706 case EXPR_VARIABLE:
6707
6708 if (check_host_association (e))
6709 t = resolve_function (e);
6710 else
6711 t = resolve_variable (e);
6712
6713 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
6714 && e->ref->type != REF_SUBSTRING)
6715 gfc_resolve_substring_charlen (e);
6716
6717 break;
6718
6719 case EXPR_COMPCALL:
6720 t = resolve_typebound_function (e);
6721 break;
6722
6723 case EXPR_SUBSTRING:
6724 t = resolve_ref (e);
6725 break;
6726
6727 case EXPR_CONSTANT:
6728 case EXPR_NULL:
6729 t = true;
6730 break;
6731
6732 case EXPR_PPC:
6733 t = resolve_expr_ppc (e);
6734 break;
6735
6736 case EXPR_ARRAY:
6737 t = false;
6738 if (!resolve_ref (e))
6739 break;
6740
6741 t = gfc_resolve_array_constructor (e);
6742 /* Also try to expand a constructor. */
6743 if (t)
6744 {
6745 expression_rank (e);
6746 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
6747 gfc_expand_constructor (e, false);
6748 }
6749
6750 /* This provides the opportunity for the length of constructors with
6751 character valued function elements to propagate the string length
6752 to the expression. */
6753 if (t && e->ts.type == BT_CHARACTER)
6754 {
6755 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
6756 here rather then add a duplicate test for it above. */
6757 gfc_expand_constructor (e, false);
6758 t = gfc_resolve_character_array_constructor (e);
6759 }
6760
6761 break;
6762
6763 case EXPR_STRUCTURE:
6764 t = resolve_ref (e);
6765 if (!t)
6766 break;
6767
6768 t = resolve_structure_cons (e, 0);
6769 if (!t)
6770 break;
6771
6772 t = gfc_simplify_expr (e, 0);
6773 break;
6774
6775 default:
6776 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
6777 }
6778
6779 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
6780 fixup_charlen (e);
6781
6782 inquiry_argument = inquiry_save;
6783 actual_arg = actual_arg_save;
6784 first_actual_arg = first_actual_arg_save;
6785
6786 return t;
6787 }
6788
6789
6790 /* Resolve an expression from an iterator. They must be scalar and have
6791 INTEGER or (optionally) REAL type. */
6792
6793 static bool
6794 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
6795 const char *name_msgid)
6796 {
6797 if (!gfc_resolve_expr (expr))
6798 return false;
6799
6800 if (expr->rank != 0)
6801 {
6802 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
6803 return false;
6804 }
6805
6806 if (expr->ts.type != BT_INTEGER)
6807 {
6808 if (expr->ts.type == BT_REAL)
6809 {
6810 if (real_ok)
6811 return gfc_notify_std (GFC_STD_F95_DEL,
6812 "%s at %L must be integer",
6813 _(name_msgid), &expr->where);
6814 else
6815 {
6816 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
6817 &expr->where);
6818 return false;
6819 }
6820 }
6821 else
6822 {
6823 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
6824 return false;
6825 }
6826 }
6827 return true;
6828 }
6829
6830
6831 /* Resolve the expressions in an iterator structure. If REAL_OK is
6832 false allow only INTEGER type iterators, otherwise allow REAL types.
6833 Set own_scope to true for ac-implied-do and data-implied-do as those
6834 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
6835
6836 bool
6837 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
6838 {
6839 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
6840 return false;
6841
6842 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
6843 _("iterator variable")))
6844 return false;
6845
6846 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
6847 "Start expression in DO loop"))
6848 return false;
6849
6850 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
6851 "End expression in DO loop"))
6852 return false;
6853
6854 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
6855 "Step expression in DO loop"))
6856 return false;
6857
6858 if (iter->step->expr_type == EXPR_CONSTANT)
6859 {
6860 if ((iter->step->ts.type == BT_INTEGER
6861 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
6862 || (iter->step->ts.type == BT_REAL
6863 && mpfr_sgn (iter->step->value.real) == 0))
6864 {
6865 gfc_error ("Step expression in DO loop at %L cannot be zero",
6866 &iter->step->where);
6867 return false;
6868 }
6869 }
6870
6871 /* Convert start, end, and step to the same type as var. */
6872 if (iter->start->ts.kind != iter->var->ts.kind
6873 || iter->start->ts.type != iter->var->ts.type)
6874 gfc_convert_type (iter->start, &iter->var->ts, 1);
6875
6876 if (iter->end->ts.kind != iter->var->ts.kind
6877 || iter->end->ts.type != iter->var->ts.type)
6878 gfc_convert_type (iter->end, &iter->var->ts, 1);
6879
6880 if (iter->step->ts.kind != iter->var->ts.kind
6881 || iter->step->ts.type != iter->var->ts.type)
6882 gfc_convert_type (iter->step, &iter->var->ts, 1);
6883
6884 if (iter->start->expr_type == EXPR_CONSTANT
6885 && iter->end->expr_type == EXPR_CONSTANT
6886 && iter->step->expr_type == EXPR_CONSTANT)
6887 {
6888 int sgn, cmp;
6889 if (iter->start->ts.type == BT_INTEGER)
6890 {
6891 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
6892 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
6893 }
6894 else
6895 {
6896 sgn = mpfr_sgn (iter->step->value.real);
6897 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
6898 }
6899 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
6900 gfc_warning (OPT_Wzerotrip,
6901 "DO loop at %L will be executed zero times",
6902 &iter->step->where);
6903 }
6904
6905 if (iter->end->expr_type == EXPR_CONSTANT
6906 && iter->end->ts.type == BT_INTEGER
6907 && iter->step->expr_type == EXPR_CONSTANT
6908 && iter->step->ts.type == BT_INTEGER
6909 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
6910 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
6911 {
6912 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
6913 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
6914
6915 if (is_step_positive
6916 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
6917 gfc_warning (OPT_Wundefined_do_loop,
6918 "DO loop at %L is undefined as it overflows",
6919 &iter->step->where);
6920 else if (!is_step_positive
6921 && mpz_cmp (iter->end->value.integer,
6922 gfc_integer_kinds[k].min_int) == 0)
6923 gfc_warning (OPT_Wundefined_do_loop,
6924 "DO loop at %L is undefined as it underflows",
6925 &iter->step->where);
6926 }
6927
6928 return true;
6929 }
6930
6931
6932 /* Traversal function for find_forall_index. f == 2 signals that
6933 that variable itself is not to be checked - only the references. */
6934
6935 static bool
6936 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
6937 {
6938 if (expr->expr_type != EXPR_VARIABLE)
6939 return false;
6940
6941 /* A scalar assignment */
6942 if (!expr->ref || *f == 1)
6943 {
6944 if (expr->symtree->n.sym == sym)
6945 return true;
6946 else
6947 return false;
6948 }
6949
6950 if (*f == 2)
6951 *f = 1;
6952 return false;
6953 }
6954
6955
6956 /* Check whether the FORALL index appears in the expression or not.
6957 Returns true if SYM is found in EXPR. */
6958
6959 bool
6960 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
6961 {
6962 if (gfc_traverse_expr (expr, sym, forall_index, f))
6963 return true;
6964 else
6965 return false;
6966 }
6967
6968
6969 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
6970 to be a scalar INTEGER variable. The subscripts and stride are scalar
6971 INTEGERs, and if stride is a constant it must be nonzero.
6972 Furthermore "A subscript or stride in a forall-triplet-spec shall
6973 not contain a reference to any index-name in the
6974 forall-triplet-spec-list in which it appears." (7.5.4.1) */
6975
6976 static void
6977 resolve_forall_iterators (gfc_forall_iterator *it)
6978 {
6979 gfc_forall_iterator *iter, *iter2;
6980
6981 for (iter = it; iter; iter = iter->next)
6982 {
6983 if (gfc_resolve_expr (iter->var)
6984 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
6985 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
6986 &iter->var->where);
6987
6988 if (gfc_resolve_expr (iter->start)
6989 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
6990 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
6991 &iter->start->where);
6992 if (iter->var->ts.kind != iter->start->ts.kind)
6993 gfc_convert_type (iter->start, &iter->var->ts, 1);
6994
6995 if (gfc_resolve_expr (iter->end)
6996 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
6997 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
6998 &iter->end->where);
6999 if (iter->var->ts.kind != iter->end->ts.kind)
7000 gfc_convert_type (iter->end, &iter->var->ts, 1);
7001
7002 if (gfc_resolve_expr (iter->stride))
7003 {
7004 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7005 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7006 &iter->stride->where, "INTEGER");
7007
7008 if (iter->stride->expr_type == EXPR_CONSTANT
7009 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7010 gfc_error ("FORALL stride expression at %L cannot be zero",
7011 &iter->stride->where);
7012 }
7013 if (iter->var->ts.kind != iter->stride->ts.kind)
7014 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7015 }
7016
7017 for (iter = it; iter; iter = iter->next)
7018 for (iter2 = iter; iter2; iter2 = iter2->next)
7019 {
7020 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7021 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7022 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7023 gfc_error ("FORALL index %qs may not appear in triplet "
7024 "specification at %L", iter->var->symtree->name,
7025 &iter2->start->where);
7026 }
7027 }
7028
7029
7030 /* Given a pointer to a symbol that is a derived type, see if it's
7031 inaccessible, i.e. if it's defined in another module and the components are
7032 PRIVATE. The search is recursive if necessary. Returns zero if no
7033 inaccessible components are found, nonzero otherwise. */
7034
7035 static int
7036 derived_inaccessible (gfc_symbol *sym)
7037 {
7038 gfc_component *c;
7039
7040 if (sym->attr.use_assoc && sym->attr.private_comp)
7041 return 1;
7042
7043 for (c = sym->components; c; c = c->next)
7044 {
7045 /* Prevent an infinite loop through this function. */
7046 if (c->ts.type == BT_DERIVED && c->attr.pointer
7047 && sym == c->ts.u.derived)
7048 continue;
7049
7050 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7051 return 1;
7052 }
7053
7054 return 0;
7055 }
7056
7057
7058 /* Resolve the argument of a deallocate expression. The expression must be
7059 a pointer or a full array. */
7060
7061 static bool
7062 resolve_deallocate_expr (gfc_expr *e)
7063 {
7064 symbol_attribute attr;
7065 int allocatable, pointer;
7066 gfc_ref *ref;
7067 gfc_symbol *sym;
7068 gfc_component *c;
7069 bool unlimited;
7070
7071 if (!gfc_resolve_expr (e))
7072 return false;
7073
7074 if (e->expr_type != EXPR_VARIABLE)
7075 goto bad;
7076
7077 sym = e->symtree->n.sym;
7078 unlimited = UNLIMITED_POLY(sym);
7079
7080 if (sym->ts.type == BT_CLASS)
7081 {
7082 allocatable = CLASS_DATA (sym)->attr.allocatable;
7083 pointer = CLASS_DATA (sym)->attr.class_pointer;
7084 }
7085 else
7086 {
7087 allocatable = sym->attr.allocatable;
7088 pointer = sym->attr.pointer;
7089 }
7090 for (ref = e->ref; ref; ref = ref->next)
7091 {
7092 switch (ref->type)
7093 {
7094 case REF_ARRAY:
7095 if (ref->u.ar.type != AR_FULL
7096 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7097 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7098 allocatable = 0;
7099 break;
7100
7101 case REF_COMPONENT:
7102 c = ref->u.c.component;
7103 if (c->ts.type == BT_CLASS)
7104 {
7105 allocatable = CLASS_DATA (c)->attr.allocatable;
7106 pointer = CLASS_DATA (c)->attr.class_pointer;
7107 }
7108 else
7109 {
7110 allocatable = c->attr.allocatable;
7111 pointer = c->attr.pointer;
7112 }
7113 break;
7114
7115 case REF_SUBSTRING:
7116 allocatable = 0;
7117 break;
7118 }
7119 }
7120
7121 attr = gfc_expr_attr (e);
7122
7123 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7124 {
7125 bad:
7126 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7127 &e->where);
7128 return false;
7129 }
7130
7131 /* F2008, C644. */
7132 if (gfc_is_coindexed (e))
7133 {
7134 gfc_error ("Coindexed allocatable object at %L", &e->where);
7135 return false;
7136 }
7137
7138 if (pointer
7139 && !gfc_check_vardef_context (e, true, true, false,
7140 _("DEALLOCATE object")))
7141 return false;
7142 if (!gfc_check_vardef_context (e, false, true, false,
7143 _("DEALLOCATE object")))
7144 return false;
7145
7146 return true;
7147 }
7148
7149
7150 /* Returns true if the expression e contains a reference to the symbol sym. */
7151 static bool
7152 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7153 {
7154 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7155 return true;
7156
7157 return false;
7158 }
7159
7160 bool
7161 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7162 {
7163 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7164 }
7165
7166
7167 /* Given the expression node e for an allocatable/pointer of derived type to be
7168 allocated, get the expression node to be initialized afterwards (needed for
7169 derived types with default initializers, and derived types with allocatable
7170 components that need nullification.) */
7171
7172 gfc_expr *
7173 gfc_expr_to_initialize (gfc_expr *e)
7174 {
7175 gfc_expr *result;
7176 gfc_ref *ref;
7177 int i;
7178
7179 result = gfc_copy_expr (e);
7180
7181 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7182 for (ref = result->ref; ref; ref = ref->next)
7183 if (ref->type == REF_ARRAY && ref->next == NULL)
7184 {
7185 ref->u.ar.type = AR_FULL;
7186
7187 for (i = 0; i < ref->u.ar.dimen; i++)
7188 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7189
7190 break;
7191 }
7192
7193 gfc_free_shape (&result->shape, result->rank);
7194
7195 /* Recalculate rank, shape, etc. */
7196 gfc_resolve_expr (result);
7197 return result;
7198 }
7199
7200
7201 /* If the last ref of an expression is an array ref, return a copy of the
7202 expression with that one removed. Otherwise, a copy of the original
7203 expression. This is used for allocate-expressions and pointer assignment
7204 LHS, where there may be an array specification that needs to be stripped
7205 off when using gfc_check_vardef_context. */
7206
7207 static gfc_expr*
7208 remove_last_array_ref (gfc_expr* e)
7209 {
7210 gfc_expr* e2;
7211 gfc_ref** r;
7212
7213 e2 = gfc_copy_expr (e);
7214 for (r = &e2->ref; *r; r = &(*r)->next)
7215 if ((*r)->type == REF_ARRAY && !(*r)->next)
7216 {
7217 gfc_free_ref_list (*r);
7218 *r = NULL;
7219 break;
7220 }
7221
7222 return e2;
7223 }
7224
7225
7226 /* Used in resolve_allocate_expr to check that a allocation-object and
7227 a source-expr are conformable. This does not catch all possible
7228 cases; in particular a runtime checking is needed. */
7229
7230 static bool
7231 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7232 {
7233 gfc_ref *tail;
7234 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7235
7236 /* First compare rank. */
7237 if ((tail && e1->rank != tail->u.ar.as->rank)
7238 || (!tail && e1->rank != e2->rank))
7239 {
7240 gfc_error ("Source-expr at %L must be scalar or have the "
7241 "same rank as the allocate-object at %L",
7242 &e1->where, &e2->where);
7243 return false;
7244 }
7245
7246 if (e1->shape)
7247 {
7248 int i;
7249 mpz_t s;
7250
7251 mpz_init (s);
7252
7253 for (i = 0; i < e1->rank; i++)
7254 {
7255 if (tail->u.ar.start[i] == NULL)
7256 break;
7257
7258 if (tail->u.ar.end[i])
7259 {
7260 mpz_set (s, tail->u.ar.end[i]->value.integer);
7261 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7262 mpz_add_ui (s, s, 1);
7263 }
7264 else
7265 {
7266 mpz_set (s, tail->u.ar.start[i]->value.integer);
7267 }
7268
7269 if (mpz_cmp (e1->shape[i], s) != 0)
7270 {
7271 gfc_error ("Source-expr at %L and allocate-object at %L must "
7272 "have the same shape", &e1->where, &e2->where);
7273 mpz_clear (s);
7274 return false;
7275 }
7276 }
7277
7278 mpz_clear (s);
7279 }
7280
7281 return true;
7282 }
7283
7284
7285 /* Resolve the expression in an ALLOCATE statement, doing the additional
7286 checks to see whether the expression is OK or not. The expression must
7287 have a trailing array reference that gives the size of the array. */
7288
7289 static bool
7290 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7291 {
7292 int i, pointer, allocatable, dimension, is_abstract;
7293 int codimension;
7294 bool coindexed;
7295 bool unlimited;
7296 symbol_attribute attr;
7297 gfc_ref *ref, *ref2;
7298 gfc_expr *e2;
7299 gfc_array_ref *ar;
7300 gfc_symbol *sym = NULL;
7301 gfc_alloc *a;
7302 gfc_component *c;
7303 bool t;
7304
7305 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7306 checking of coarrays. */
7307 for (ref = e->ref; ref; ref = ref->next)
7308 if (ref->next == NULL)
7309 break;
7310
7311 if (ref && ref->type == REF_ARRAY)
7312 ref->u.ar.in_allocate = true;
7313
7314 if (!gfc_resolve_expr (e))
7315 goto failure;
7316
7317 /* Make sure the expression is allocatable or a pointer. If it is
7318 pointer, the next-to-last reference must be a pointer. */
7319
7320 ref2 = NULL;
7321 if (e->symtree)
7322 sym = e->symtree->n.sym;
7323
7324 /* Check whether ultimate component is abstract and CLASS. */
7325 is_abstract = 0;
7326
7327 /* Is the allocate-object unlimited polymorphic? */
7328 unlimited = UNLIMITED_POLY(e);
7329
7330 if (e->expr_type != EXPR_VARIABLE)
7331 {
7332 allocatable = 0;
7333 attr = gfc_expr_attr (e);
7334 pointer = attr.pointer;
7335 dimension = attr.dimension;
7336 codimension = attr.codimension;
7337 }
7338 else
7339 {
7340 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7341 {
7342 allocatable = CLASS_DATA (sym)->attr.allocatable;
7343 pointer = CLASS_DATA (sym)->attr.class_pointer;
7344 dimension = CLASS_DATA (sym)->attr.dimension;
7345 codimension = CLASS_DATA (sym)->attr.codimension;
7346 is_abstract = CLASS_DATA (sym)->attr.abstract;
7347 }
7348 else
7349 {
7350 allocatable = sym->attr.allocatable;
7351 pointer = sym->attr.pointer;
7352 dimension = sym->attr.dimension;
7353 codimension = sym->attr.codimension;
7354 }
7355
7356 coindexed = false;
7357
7358 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7359 {
7360 switch (ref->type)
7361 {
7362 case REF_ARRAY:
7363 if (ref->u.ar.codimen > 0)
7364 {
7365 int n;
7366 for (n = ref->u.ar.dimen;
7367 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7368 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7369 {
7370 coindexed = true;
7371 break;
7372 }
7373 }
7374
7375 if (ref->next != NULL)
7376 pointer = 0;
7377 break;
7378
7379 case REF_COMPONENT:
7380 /* F2008, C644. */
7381 if (coindexed)
7382 {
7383 gfc_error ("Coindexed allocatable object at %L",
7384 &e->where);
7385 goto failure;
7386 }
7387
7388 c = ref->u.c.component;
7389 if (c->ts.type == BT_CLASS)
7390 {
7391 allocatable = CLASS_DATA (c)->attr.allocatable;
7392 pointer = CLASS_DATA (c)->attr.class_pointer;
7393 dimension = CLASS_DATA (c)->attr.dimension;
7394 codimension = CLASS_DATA (c)->attr.codimension;
7395 is_abstract = CLASS_DATA (c)->attr.abstract;
7396 }
7397 else
7398 {
7399 allocatable = c->attr.allocatable;
7400 pointer = c->attr.pointer;
7401 dimension = c->attr.dimension;
7402 codimension = c->attr.codimension;
7403 is_abstract = c->attr.abstract;
7404 }
7405 break;
7406
7407 case REF_SUBSTRING:
7408 allocatable = 0;
7409 pointer = 0;
7410 break;
7411 }
7412 }
7413 }
7414
7415 /* Check for F08:C628. */
7416 if (allocatable == 0 && pointer == 0 && !unlimited)
7417 {
7418 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7419 &e->where);
7420 goto failure;
7421 }
7422
7423 /* Some checks for the SOURCE tag. */
7424 if (code->expr3)
7425 {
7426 /* Check F03:C631. */
7427 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7428 {
7429 gfc_error ("Type of entity at %L is type incompatible with "
7430 "source-expr at %L", &e->where, &code->expr3->where);
7431 goto failure;
7432 }
7433
7434 /* Check F03:C632 and restriction following Note 6.18. */
7435 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7436 goto failure;
7437
7438 /* Check F03:C633. */
7439 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7440 {
7441 gfc_error ("The allocate-object at %L and the source-expr at %L "
7442 "shall have the same kind type parameter",
7443 &e->where, &code->expr3->where);
7444 goto failure;
7445 }
7446
7447 /* Check F2008, C642. */
7448 if (code->expr3->ts.type == BT_DERIVED
7449 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7450 || (code->expr3->ts.u.derived->from_intmod
7451 == INTMOD_ISO_FORTRAN_ENV
7452 && code->expr3->ts.u.derived->intmod_sym_id
7453 == ISOFORTRAN_LOCK_TYPE)))
7454 {
7455 gfc_error ("The source-expr at %L shall neither be of type "
7456 "LOCK_TYPE nor have a LOCK_TYPE component if "
7457 "allocate-object at %L is a coarray",
7458 &code->expr3->where, &e->where);
7459 goto failure;
7460 }
7461
7462 /* Check TS18508, C702/C703. */
7463 if (code->expr3->ts.type == BT_DERIVED
7464 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7465 || (code->expr3->ts.u.derived->from_intmod
7466 == INTMOD_ISO_FORTRAN_ENV
7467 && code->expr3->ts.u.derived->intmod_sym_id
7468 == ISOFORTRAN_EVENT_TYPE)))
7469 {
7470 gfc_error ("The source-expr at %L shall neither be of type "
7471 "EVENT_TYPE nor have a EVENT_TYPE component if "
7472 "allocate-object at %L is a coarray",
7473 &code->expr3->where, &e->where);
7474 goto failure;
7475 }
7476 }
7477
7478 /* Check F08:C629. */
7479 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7480 && !code->expr3)
7481 {
7482 gcc_assert (e->ts.type == BT_CLASS);
7483 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7484 "type-spec or source-expr", sym->name, &e->where);
7485 goto failure;
7486 }
7487
7488 /* Check F08:C632. */
7489 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7490 && !UNLIMITED_POLY (e))
7491 {
7492 int cmp;
7493
7494 if (!e->ts.u.cl->length)
7495 goto failure;
7496
7497 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7498 code->ext.alloc.ts.u.cl->length);
7499 if (cmp == 1 || cmp == -1 || cmp == -3)
7500 {
7501 gfc_error ("Allocating %s at %L with type-spec requires the same "
7502 "character-length parameter as in the declaration",
7503 sym->name, &e->where);
7504 goto failure;
7505 }
7506 }
7507
7508 /* In the variable definition context checks, gfc_expr_attr is used
7509 on the expression. This is fooled by the array specification
7510 present in e, thus we have to eliminate that one temporarily. */
7511 e2 = remove_last_array_ref (e);
7512 t = true;
7513 if (t && pointer)
7514 t = gfc_check_vardef_context (e2, true, true, false,
7515 _("ALLOCATE object"));
7516 if (t)
7517 t = gfc_check_vardef_context (e2, false, true, false,
7518 _("ALLOCATE object"));
7519 gfc_free_expr (e2);
7520 if (!t)
7521 goto failure;
7522
7523 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7524 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7525 {
7526 /* For class arrays, the initialization with SOURCE is done
7527 using _copy and trans_call. It is convenient to exploit that
7528 when the allocated type is different from the declared type but
7529 no SOURCE exists by setting expr3. */
7530 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7531 }
7532 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7533 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7534 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7535 {
7536 /* We have to zero initialize the integer variable. */
7537 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7538 }
7539
7540 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7541 {
7542 /* Make sure the vtab symbol is present when
7543 the module variables are generated. */
7544 gfc_typespec ts = e->ts;
7545 if (code->expr3)
7546 ts = code->expr3->ts;
7547 else if (code->ext.alloc.ts.type == BT_DERIVED)
7548 ts = code->ext.alloc.ts;
7549
7550 /* Finding the vtab also publishes the type's symbol. Therefore this
7551 statement is necessary. */
7552 gfc_find_derived_vtab (ts.u.derived);
7553 }
7554 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7555 {
7556 /* Again, make sure the vtab symbol is present when
7557 the module variables are generated. */
7558 gfc_typespec *ts = NULL;
7559 if (code->expr3)
7560 ts = &code->expr3->ts;
7561 else
7562 ts = &code->ext.alloc.ts;
7563
7564 gcc_assert (ts);
7565
7566 /* Finding the vtab also publishes the type's symbol. Therefore this
7567 statement is necessary. */
7568 gfc_find_vtab (ts);
7569 }
7570
7571 if (dimension == 0 && codimension == 0)
7572 goto success;
7573
7574 /* Make sure the last reference node is an array specification. */
7575
7576 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7577 || (dimension && ref2->u.ar.dimen == 0))
7578 {
7579 /* F08:C633. */
7580 if (code->expr3)
7581 {
7582 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7583 "in ALLOCATE statement at %L", &e->where))
7584 goto failure;
7585 if (code->expr3->rank != 0)
7586 *array_alloc_wo_spec = true;
7587 else
7588 {
7589 gfc_error ("Array specification or array-valued SOURCE= "
7590 "expression required in ALLOCATE statement at %L",
7591 &e->where);
7592 goto failure;
7593 }
7594 }
7595 else
7596 {
7597 gfc_error ("Array specification required in ALLOCATE statement "
7598 "at %L", &e->where);
7599 goto failure;
7600 }
7601 }
7602
7603 /* Make sure that the array section reference makes sense in the
7604 context of an ALLOCATE specification. */
7605
7606 ar = &ref2->u.ar;
7607
7608 if (codimension)
7609 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7610 if (ar->dimen_type[i] == DIMEN_THIS_IMAGE)
7611 {
7612 gfc_error ("Coarray specification required in ALLOCATE statement "
7613 "at %L", &e->where);
7614 goto failure;
7615 }
7616
7617 for (i = 0; i < ar->dimen; i++)
7618 {
7619 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
7620 goto check_symbols;
7621
7622 switch (ar->dimen_type[i])
7623 {
7624 case DIMEN_ELEMENT:
7625 break;
7626
7627 case DIMEN_RANGE:
7628 if (ar->start[i] != NULL
7629 && ar->end[i] != NULL
7630 && ar->stride[i] == NULL)
7631 break;
7632
7633 /* Fall through. */
7634
7635 case DIMEN_UNKNOWN:
7636 case DIMEN_VECTOR:
7637 case DIMEN_STAR:
7638 case DIMEN_THIS_IMAGE:
7639 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7640 &e->where);
7641 goto failure;
7642 }
7643
7644 check_symbols:
7645 for (a = code->ext.alloc.list; a; a = a->next)
7646 {
7647 sym = a->expr->symtree->n.sym;
7648
7649 /* TODO - check derived type components. */
7650 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
7651 continue;
7652
7653 if ((ar->start[i] != NULL
7654 && gfc_find_sym_in_expr (sym, ar->start[i]))
7655 || (ar->end[i] != NULL
7656 && gfc_find_sym_in_expr (sym, ar->end[i])))
7657 {
7658 gfc_error ("%qs must not appear in the array specification at "
7659 "%L in the same ALLOCATE statement where it is "
7660 "itself allocated", sym->name, &ar->where);
7661 goto failure;
7662 }
7663 }
7664 }
7665
7666 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
7667 {
7668 if (ar->dimen_type[i] == DIMEN_ELEMENT
7669 || ar->dimen_type[i] == DIMEN_RANGE)
7670 {
7671 if (i == (ar->dimen + ar->codimen - 1))
7672 {
7673 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
7674 "statement at %L", &e->where);
7675 goto failure;
7676 }
7677 continue;
7678 }
7679
7680 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
7681 && ar->stride[i] == NULL)
7682 break;
7683
7684 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
7685 &e->where);
7686 goto failure;
7687 }
7688
7689 success:
7690 return true;
7691
7692 failure:
7693 return false;
7694 }
7695
7696
7697 static void
7698 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
7699 {
7700 gfc_expr *stat, *errmsg, *pe, *qe;
7701 gfc_alloc *a, *p, *q;
7702
7703 stat = code->expr1;
7704 errmsg = code->expr2;
7705
7706 /* Check the stat variable. */
7707 if (stat)
7708 {
7709 gfc_check_vardef_context (stat, false, false, false,
7710 _("STAT variable"));
7711
7712 if ((stat->ts.type != BT_INTEGER
7713 && !(stat->ref && (stat->ref->type == REF_ARRAY
7714 || stat->ref->type == REF_COMPONENT)))
7715 || stat->rank > 0)
7716 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
7717 "variable", &stat->where);
7718
7719 for (p = code->ext.alloc.list; p; p = p->next)
7720 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
7721 {
7722 gfc_ref *ref1, *ref2;
7723 bool found = true;
7724
7725 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
7726 ref1 = ref1->next, ref2 = ref2->next)
7727 {
7728 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7729 continue;
7730 if (ref1->u.c.component->name != ref2->u.c.component->name)
7731 {
7732 found = false;
7733 break;
7734 }
7735 }
7736
7737 if (found)
7738 {
7739 gfc_error ("Stat-variable at %L shall not be %sd within "
7740 "the same %s statement", &stat->where, fcn, fcn);
7741 break;
7742 }
7743 }
7744 }
7745
7746 /* Check the errmsg variable. */
7747 if (errmsg)
7748 {
7749 if (!stat)
7750 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
7751 &errmsg->where);
7752
7753 gfc_check_vardef_context (errmsg, false, false, false,
7754 _("ERRMSG variable"));
7755
7756 if ((errmsg->ts.type != BT_CHARACTER
7757 && !(errmsg->ref
7758 && (errmsg->ref->type == REF_ARRAY
7759 || errmsg->ref->type == REF_COMPONENT)))
7760 || errmsg->rank > 0 )
7761 gfc_error ("Errmsg-variable at %L must be a scalar CHARACTER "
7762 "variable", &errmsg->where);
7763
7764 for (p = code->ext.alloc.list; p; p = p->next)
7765 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
7766 {
7767 gfc_ref *ref1, *ref2;
7768 bool found = true;
7769
7770 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
7771 ref1 = ref1->next, ref2 = ref2->next)
7772 {
7773 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7774 continue;
7775 if (ref1->u.c.component->name != ref2->u.c.component->name)
7776 {
7777 found = false;
7778 break;
7779 }
7780 }
7781
7782 if (found)
7783 {
7784 gfc_error ("Errmsg-variable at %L shall not be %sd within "
7785 "the same %s statement", &errmsg->where, fcn, fcn);
7786 break;
7787 }
7788 }
7789 }
7790
7791 /* Check that an allocate-object appears only once in the statement. */
7792
7793 for (p = code->ext.alloc.list; p; p = p->next)
7794 {
7795 pe = p->expr;
7796 for (q = p->next; q; q = q->next)
7797 {
7798 qe = q->expr;
7799 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
7800 {
7801 /* This is a potential collision. */
7802 gfc_ref *pr = pe->ref;
7803 gfc_ref *qr = qe->ref;
7804
7805 /* Follow the references until
7806 a) They start to differ, in which case there is no error;
7807 you can deallocate a%b and a%c in a single statement
7808 b) Both of them stop, which is an error
7809 c) One of them stops, which is also an error. */
7810 while (1)
7811 {
7812 if (pr == NULL && qr == NULL)
7813 {
7814 gfc_error ("Allocate-object at %L also appears at %L",
7815 &pe->where, &qe->where);
7816 break;
7817 }
7818 else if (pr != NULL && qr == NULL)
7819 {
7820 gfc_error ("Allocate-object at %L is subobject of"
7821 " object at %L", &pe->where, &qe->where);
7822 break;
7823 }
7824 else if (pr == NULL && qr != NULL)
7825 {
7826 gfc_error ("Allocate-object at %L is subobject of"
7827 " object at %L", &qe->where, &pe->where);
7828 break;
7829 }
7830 /* Here, pr != NULL && qr != NULL */
7831 gcc_assert(pr->type == qr->type);
7832 if (pr->type == REF_ARRAY)
7833 {
7834 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
7835 which are legal. */
7836 gcc_assert (qr->type == REF_ARRAY);
7837
7838 if (pr->next && qr->next)
7839 {
7840 int i;
7841 gfc_array_ref *par = &(pr->u.ar);
7842 gfc_array_ref *qar = &(qr->u.ar);
7843
7844 for (i=0; i<par->dimen; i++)
7845 {
7846 if ((par->start[i] != NULL
7847 || qar->start[i] != NULL)
7848 && gfc_dep_compare_expr (par->start[i],
7849 qar->start[i]) != 0)
7850 goto break_label;
7851 }
7852 }
7853 }
7854 else
7855 {
7856 if (pr->u.c.component->name != qr->u.c.component->name)
7857 break;
7858 }
7859
7860 pr = pr->next;
7861 qr = qr->next;
7862 }
7863 break_label:
7864 ;
7865 }
7866 }
7867 }
7868
7869 if (strcmp (fcn, "ALLOCATE") == 0)
7870 {
7871 bool arr_alloc_wo_spec = false;
7872
7873 /* Resolving the expr3 in the loop over all objects to allocate would
7874 execute loop invariant code for each loop item. Therefore do it just
7875 once here. */
7876 if (code->expr3 && code->expr3->mold
7877 && code->expr3->ts.type == BT_DERIVED)
7878 {
7879 /* Default initialization via MOLD (non-polymorphic). */
7880 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
7881 if (rhs != NULL)
7882 {
7883 gfc_resolve_expr (rhs);
7884 gfc_free_expr (code->expr3);
7885 code->expr3 = rhs;
7886 }
7887 }
7888 for (a = code->ext.alloc.list; a; a = a->next)
7889 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
7890
7891 if (arr_alloc_wo_spec && code->expr3)
7892 {
7893 /* Mark the allocate to have to take the array specification
7894 from the expr3. */
7895 code->ext.alloc.arr_spec_from_expr3 = 1;
7896 }
7897 }
7898 else
7899 {
7900 for (a = code->ext.alloc.list; a; a = a->next)
7901 resolve_deallocate_expr (a->expr);
7902 }
7903 }
7904
7905
7906 /************ SELECT CASE resolution subroutines ************/
7907
7908 /* Callback function for our mergesort variant. Determines interval
7909 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
7910 op1 > op2. Assumes we're not dealing with the default case.
7911 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
7912 There are nine situations to check. */
7913
7914 static int
7915 compare_cases (const gfc_case *op1, const gfc_case *op2)
7916 {
7917 int retval;
7918
7919 if (op1->low == NULL) /* op1 = (:L) */
7920 {
7921 /* op2 = (:N), so overlap. */
7922 retval = 0;
7923 /* op2 = (M:) or (M:N), L < M */
7924 if (op2->low != NULL
7925 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
7926 retval = -1;
7927 }
7928 else if (op1->high == NULL) /* op1 = (K:) */
7929 {
7930 /* op2 = (M:), so overlap. */
7931 retval = 0;
7932 /* op2 = (:N) or (M:N), K > N */
7933 if (op2->high != NULL
7934 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
7935 retval = 1;
7936 }
7937 else /* op1 = (K:L) */
7938 {
7939 if (op2->low == NULL) /* op2 = (:N), K > N */
7940 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
7941 ? 1 : 0;
7942 else if (op2->high == NULL) /* op2 = (M:), L < M */
7943 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
7944 ? -1 : 0;
7945 else /* op2 = (M:N) */
7946 {
7947 retval = 0;
7948 /* L < M */
7949 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
7950 retval = -1;
7951 /* K > N */
7952 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
7953 retval = 1;
7954 }
7955 }
7956
7957 return retval;
7958 }
7959
7960
7961 /* Merge-sort a double linked case list, detecting overlap in the
7962 process. LIST is the head of the double linked case list before it
7963 is sorted. Returns the head of the sorted list if we don't see any
7964 overlap, or NULL otherwise. */
7965
7966 static gfc_case *
7967 check_case_overlap (gfc_case *list)
7968 {
7969 gfc_case *p, *q, *e, *tail;
7970 int insize, nmerges, psize, qsize, cmp, overlap_seen;
7971
7972 /* If the passed list was empty, return immediately. */
7973 if (!list)
7974 return NULL;
7975
7976 overlap_seen = 0;
7977 insize = 1;
7978
7979 /* Loop unconditionally. The only exit from this loop is a return
7980 statement, when we've finished sorting the case list. */
7981 for (;;)
7982 {
7983 p = list;
7984 list = NULL;
7985 tail = NULL;
7986
7987 /* Count the number of merges we do in this pass. */
7988 nmerges = 0;
7989
7990 /* Loop while there exists a merge to be done. */
7991 while (p)
7992 {
7993 int i;
7994
7995 /* Count this merge. */
7996 nmerges++;
7997
7998 /* Cut the list in two pieces by stepping INSIZE places
7999 forward in the list, starting from P. */
8000 psize = 0;
8001 q = p;
8002 for (i = 0; i < insize; i++)
8003 {
8004 psize++;
8005 q = q->right;
8006 if (!q)
8007 break;
8008 }
8009 qsize = insize;
8010
8011 /* Now we have two lists. Merge them! */
8012 while (psize > 0 || (qsize > 0 && q != NULL))
8013 {
8014 /* See from which the next case to merge comes from. */
8015 if (psize == 0)
8016 {
8017 /* P is empty so the next case must come from Q. */
8018 e = q;
8019 q = q->right;
8020 qsize--;
8021 }
8022 else if (qsize == 0 || q == NULL)
8023 {
8024 /* Q is empty. */
8025 e = p;
8026 p = p->right;
8027 psize--;
8028 }
8029 else
8030 {
8031 cmp = compare_cases (p, q);
8032 if (cmp < 0)
8033 {
8034 /* The whole case range for P is less than the
8035 one for Q. */
8036 e = p;
8037 p = p->right;
8038 psize--;
8039 }
8040 else if (cmp > 0)
8041 {
8042 /* The whole case range for Q is greater than
8043 the case range for P. */
8044 e = q;
8045 q = q->right;
8046 qsize--;
8047 }
8048 else
8049 {
8050 /* The cases overlap, or they are the same
8051 element in the list. Either way, we must
8052 issue an error and get the next case from P. */
8053 /* FIXME: Sort P and Q by line number. */
8054 gfc_error ("CASE label at %L overlaps with CASE "
8055 "label at %L", &p->where, &q->where);
8056 overlap_seen = 1;
8057 e = p;
8058 p = p->right;
8059 psize--;
8060 }
8061 }
8062
8063 /* Add the next element to the merged list. */
8064 if (tail)
8065 tail->right = e;
8066 else
8067 list = e;
8068 e->left = tail;
8069 tail = e;
8070 }
8071
8072 /* P has now stepped INSIZE places along, and so has Q. So
8073 they're the same. */
8074 p = q;
8075 }
8076 tail->right = NULL;
8077
8078 /* If we have done only one merge or none at all, we've
8079 finished sorting the cases. */
8080 if (nmerges <= 1)
8081 {
8082 if (!overlap_seen)
8083 return list;
8084 else
8085 return NULL;
8086 }
8087
8088 /* Otherwise repeat, merging lists twice the size. */
8089 insize *= 2;
8090 }
8091 }
8092
8093
8094 /* Check to see if an expression is suitable for use in a CASE statement.
8095 Makes sure that all case expressions are scalar constants of the same
8096 type. Return false if anything is wrong. */
8097
8098 static bool
8099 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8100 {
8101 if (e == NULL) return true;
8102
8103 if (e->ts.type != case_expr->ts.type)
8104 {
8105 gfc_error ("Expression in CASE statement at %L must be of type %s",
8106 &e->where, gfc_basic_typename (case_expr->ts.type));
8107 return false;
8108 }
8109
8110 /* C805 (R808) For a given case-construct, each case-value shall be of
8111 the same type as case-expr. For character type, length differences
8112 are allowed, but the kind type parameters shall be the same. */
8113
8114 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8115 {
8116 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8117 &e->where, case_expr->ts.kind);
8118 return false;
8119 }
8120
8121 /* Convert the case value kind to that of case expression kind,
8122 if needed */
8123
8124 if (e->ts.kind != case_expr->ts.kind)
8125 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8126
8127 if (e->rank != 0)
8128 {
8129 gfc_error ("Expression in CASE statement at %L must be scalar",
8130 &e->where);
8131 return false;
8132 }
8133
8134 return true;
8135 }
8136
8137
8138 /* Given a completely parsed select statement, we:
8139
8140 - Validate all expressions and code within the SELECT.
8141 - Make sure that the selection expression is not of the wrong type.
8142 - Make sure that no case ranges overlap.
8143 - Eliminate unreachable cases and unreachable code resulting from
8144 removing case labels.
8145
8146 The standard does allow unreachable cases, e.g. CASE (5:3). But
8147 they are a hassle for code generation, and to prevent that, we just
8148 cut them out here. This is not necessary for overlapping cases
8149 because they are illegal and we never even try to generate code.
8150
8151 We have the additional caveat that a SELECT construct could have
8152 been a computed GOTO in the source code. Fortunately we can fairly
8153 easily work around that here: The case_expr for a "real" SELECT CASE
8154 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8155 we have to do is make sure that the case_expr is a scalar integer
8156 expression. */
8157
8158 static void
8159 resolve_select (gfc_code *code, bool select_type)
8160 {
8161 gfc_code *body;
8162 gfc_expr *case_expr;
8163 gfc_case *cp, *default_case, *tail, *head;
8164 int seen_unreachable;
8165 int seen_logical;
8166 int ncases;
8167 bt type;
8168 bool t;
8169
8170 if (code->expr1 == NULL)
8171 {
8172 /* This was actually a computed GOTO statement. */
8173 case_expr = code->expr2;
8174 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8175 gfc_error ("Selection expression in computed GOTO statement "
8176 "at %L must be a scalar integer expression",
8177 &case_expr->where);
8178
8179 /* Further checking is not necessary because this SELECT was built
8180 by the compiler, so it should always be OK. Just move the
8181 case_expr from expr2 to expr so that we can handle computed
8182 GOTOs as normal SELECTs from here on. */
8183 code->expr1 = code->expr2;
8184 code->expr2 = NULL;
8185 return;
8186 }
8187
8188 case_expr = code->expr1;
8189 type = case_expr->ts.type;
8190
8191 /* F08:C830. */
8192 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8193 {
8194 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8195 &case_expr->where, gfc_typename (&case_expr->ts));
8196
8197 /* Punt. Going on here just produce more garbage error messages. */
8198 return;
8199 }
8200
8201 /* F08:R842. */
8202 if (!select_type && case_expr->rank != 0)
8203 {
8204 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8205 "expression", &case_expr->where);
8206
8207 /* Punt. */
8208 return;
8209 }
8210
8211 /* Raise a warning if an INTEGER case value exceeds the range of
8212 the case-expr. Later, all expressions will be promoted to the
8213 largest kind of all case-labels. */
8214
8215 if (type == BT_INTEGER)
8216 for (body = code->block; body; body = body->block)
8217 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8218 {
8219 if (cp->low
8220 && gfc_check_integer_range (cp->low->value.integer,
8221 case_expr->ts.kind) != ARITH_OK)
8222 gfc_warning (0, "Expression in CASE statement at %L is "
8223 "not in the range of %s", &cp->low->where,
8224 gfc_typename (&case_expr->ts));
8225
8226 if (cp->high
8227 && cp->low != cp->high
8228 && gfc_check_integer_range (cp->high->value.integer,
8229 case_expr->ts.kind) != ARITH_OK)
8230 gfc_warning (0, "Expression in CASE statement at %L is "
8231 "not in the range of %s", &cp->high->where,
8232 gfc_typename (&case_expr->ts));
8233 }
8234
8235 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8236 of the SELECT CASE expression and its CASE values. Walk the lists
8237 of case values, and if we find a mismatch, promote case_expr to
8238 the appropriate kind. */
8239
8240 if (type == BT_LOGICAL || type == BT_INTEGER)
8241 {
8242 for (body = code->block; body; body = body->block)
8243 {
8244 /* Walk the case label list. */
8245 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8246 {
8247 /* Intercept the DEFAULT case. It does not have a kind. */
8248 if (cp->low == NULL && cp->high == NULL)
8249 continue;
8250
8251 /* Unreachable case ranges are discarded, so ignore. */
8252 if (cp->low != NULL && cp->high != NULL
8253 && cp->low != cp->high
8254 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8255 continue;
8256
8257 if (cp->low != NULL
8258 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8259 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8260
8261 if (cp->high != NULL
8262 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8263 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8264 }
8265 }
8266 }
8267
8268 /* Assume there is no DEFAULT case. */
8269 default_case = NULL;
8270 head = tail = NULL;
8271 ncases = 0;
8272 seen_logical = 0;
8273
8274 for (body = code->block; body; body = body->block)
8275 {
8276 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8277 t = true;
8278 seen_unreachable = 0;
8279
8280 /* Walk the case label list, making sure that all case labels
8281 are legal. */
8282 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8283 {
8284 /* Count the number of cases in the whole construct. */
8285 ncases++;
8286
8287 /* Intercept the DEFAULT case. */
8288 if (cp->low == NULL && cp->high == NULL)
8289 {
8290 if (default_case != NULL)
8291 {
8292 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8293 "by a second DEFAULT CASE at %L",
8294 &default_case->where, &cp->where);
8295 t = false;
8296 break;
8297 }
8298 else
8299 {
8300 default_case = cp;
8301 continue;
8302 }
8303 }
8304
8305 /* Deal with single value cases and case ranges. Errors are
8306 issued from the validation function. */
8307 if (!validate_case_label_expr (cp->low, case_expr)
8308 || !validate_case_label_expr (cp->high, case_expr))
8309 {
8310 t = false;
8311 break;
8312 }
8313
8314 if (type == BT_LOGICAL
8315 && ((cp->low == NULL || cp->high == NULL)
8316 || cp->low != cp->high))
8317 {
8318 gfc_error ("Logical range in CASE statement at %L is not "
8319 "allowed", &cp->low->where);
8320 t = false;
8321 break;
8322 }
8323
8324 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8325 {
8326 int value;
8327 value = cp->low->value.logical == 0 ? 2 : 1;
8328 if (value & seen_logical)
8329 {
8330 gfc_error ("Constant logical value in CASE statement "
8331 "is repeated at %L",
8332 &cp->low->where);
8333 t = false;
8334 break;
8335 }
8336 seen_logical |= value;
8337 }
8338
8339 if (cp->low != NULL && cp->high != NULL
8340 && cp->low != cp->high
8341 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8342 {
8343 if (warn_surprising)
8344 gfc_warning (OPT_Wsurprising,
8345 "Range specification at %L can never be matched",
8346 &cp->where);
8347
8348 cp->unreachable = 1;
8349 seen_unreachable = 1;
8350 }
8351 else
8352 {
8353 /* If the case range can be matched, it can also overlap with
8354 other cases. To make sure it does not, we put it in a
8355 double linked list here. We sort that with a merge sort
8356 later on to detect any overlapping cases. */
8357 if (!head)
8358 {
8359 head = tail = cp;
8360 head->right = head->left = NULL;
8361 }
8362 else
8363 {
8364 tail->right = cp;
8365 tail->right->left = tail;
8366 tail = tail->right;
8367 tail->right = NULL;
8368 }
8369 }
8370 }
8371
8372 /* It there was a failure in the previous case label, give up
8373 for this case label list. Continue with the next block. */
8374 if (!t)
8375 continue;
8376
8377 /* See if any case labels that are unreachable have been seen.
8378 If so, we eliminate them. This is a bit of a kludge because
8379 the case lists for a single case statement (label) is a
8380 single forward linked lists. */
8381 if (seen_unreachable)
8382 {
8383 /* Advance until the first case in the list is reachable. */
8384 while (body->ext.block.case_list != NULL
8385 && body->ext.block.case_list->unreachable)
8386 {
8387 gfc_case *n = body->ext.block.case_list;
8388 body->ext.block.case_list = body->ext.block.case_list->next;
8389 n->next = NULL;
8390 gfc_free_case_list (n);
8391 }
8392
8393 /* Strip all other unreachable cases. */
8394 if (body->ext.block.case_list)
8395 {
8396 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8397 {
8398 if (cp->next->unreachable)
8399 {
8400 gfc_case *n = cp->next;
8401 cp->next = cp->next->next;
8402 n->next = NULL;
8403 gfc_free_case_list (n);
8404 }
8405 }
8406 }
8407 }
8408 }
8409
8410 /* See if there were overlapping cases. If the check returns NULL,
8411 there was overlap. In that case we don't do anything. If head
8412 is non-NULL, we prepend the DEFAULT case. The sorted list can
8413 then used during code generation for SELECT CASE constructs with
8414 a case expression of a CHARACTER type. */
8415 if (head)
8416 {
8417 head = check_case_overlap (head);
8418
8419 /* Prepend the default_case if it is there. */
8420 if (head != NULL && default_case)
8421 {
8422 default_case->left = NULL;
8423 default_case->right = head;
8424 head->left = default_case;
8425 }
8426 }
8427
8428 /* Eliminate dead blocks that may be the result if we've seen
8429 unreachable case labels for a block. */
8430 for (body = code; body && body->block; body = body->block)
8431 {
8432 if (body->block->ext.block.case_list == NULL)
8433 {
8434 /* Cut the unreachable block from the code chain. */
8435 gfc_code *c = body->block;
8436 body->block = c->block;
8437
8438 /* Kill the dead block, but not the blocks below it. */
8439 c->block = NULL;
8440 gfc_free_statements (c);
8441 }
8442 }
8443
8444 /* More than two cases is legal but insane for logical selects.
8445 Issue a warning for it. */
8446 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8447 gfc_warning (OPT_Wsurprising,
8448 "Logical SELECT CASE block at %L has more that two cases",
8449 &code->loc);
8450 }
8451
8452
8453 /* Check if a derived type is extensible. */
8454
8455 bool
8456 gfc_type_is_extensible (gfc_symbol *sym)
8457 {
8458 return !(sym->attr.is_bind_c || sym->attr.sequence
8459 || (sym->attr.is_class
8460 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8461 }
8462
8463
8464 static void
8465 resolve_types (gfc_namespace *ns);
8466
8467 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8468 correct as well as possibly the array-spec. */
8469
8470 static void
8471 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8472 {
8473 gfc_expr* target;
8474
8475 gcc_assert (sym->assoc);
8476 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8477
8478 /* If this is for SELECT TYPE, the target may not yet be set. In that
8479 case, return. Resolution will be called later manually again when
8480 this is done. */
8481 target = sym->assoc->target;
8482 if (!target)
8483 return;
8484 gcc_assert (!sym->assoc->dangling);
8485
8486 if (resolve_target && !gfc_resolve_expr (target))
8487 return;
8488
8489 /* For variable targets, we get some attributes from the target. */
8490 if (target->expr_type == EXPR_VARIABLE)
8491 {
8492 gfc_symbol* tsym;
8493
8494 gcc_assert (target->symtree);
8495 tsym = target->symtree->n.sym;
8496
8497 sym->attr.asynchronous = tsym->attr.asynchronous;
8498 sym->attr.volatile_ = tsym->attr.volatile_;
8499
8500 sym->attr.target = tsym->attr.target
8501 || gfc_expr_attr (target).pointer;
8502 if (is_subref_array (target))
8503 sym->attr.subref_array_pointer = 1;
8504 }
8505
8506 if (target->expr_type == EXPR_NULL)
8507 {
8508 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8509 return;
8510 }
8511 else if (target->ts.type == BT_UNKNOWN)
8512 {
8513 gfc_error ("Selector at %L has no type", &target->where);
8514 return;
8515 }
8516
8517 /* Get type if this was not already set. Note that it can be
8518 some other type than the target in case this is a SELECT TYPE
8519 selector! So we must not update when the type is already there. */
8520 if (sym->ts.type == BT_UNKNOWN)
8521 sym->ts = target->ts;
8522
8523 gcc_assert (sym->ts.type != BT_UNKNOWN);
8524
8525 /* See if this is a valid association-to-variable. */
8526 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8527 && !gfc_has_vector_subscript (target));
8528
8529 /* Finally resolve if this is an array or not. */
8530 if (sym->attr.dimension && target->rank == 0)
8531 {
8532 /* primary.c makes the assumption that a reference to an associate
8533 name followed by a left parenthesis is an array reference. */
8534 if (sym->ts.type != BT_CHARACTER)
8535 gfc_error ("Associate-name %qs at %L is used as array",
8536 sym->name, &sym->declared_at);
8537 sym->attr.dimension = 0;
8538 return;
8539 }
8540
8541
8542 /* We cannot deal with class selectors that need temporaries. */
8543 if (target->ts.type == BT_CLASS
8544 && gfc_ref_needs_temporary_p (target->ref))
8545 {
8546 gfc_error ("CLASS selector at %L needs a temporary which is not "
8547 "yet implemented", &target->where);
8548 return;
8549 }
8550
8551 if (target->ts.type == BT_CLASS)
8552 gfc_fix_class_refs (target);
8553
8554 if (target->rank != 0)
8555 {
8556 gfc_array_spec *as;
8557 /* The rank may be incorrectly guessed at parsing, therefore make sure
8558 it is corrected now. */
8559 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8560 {
8561 if (!sym->as)
8562 sym->as = gfc_get_array_spec ();
8563 as = sym->as;
8564 as->rank = target->rank;
8565 as->type = AS_DEFERRED;
8566 as->corank = gfc_get_corank (target);
8567 sym->attr.dimension = 1;
8568 if (as->corank != 0)
8569 sym->attr.codimension = 1;
8570 }
8571 }
8572 else
8573 {
8574 /* target's rank is 0, but the type of the sym is still array valued,
8575 which has to be corrected. */
8576 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
8577 {
8578 gfc_array_spec *as;
8579 symbol_attribute attr;
8580 /* The associated variable's type is still the array type
8581 correct this now. */
8582 gfc_typespec *ts = &target->ts;
8583 gfc_ref *ref;
8584 gfc_component *c;
8585 for (ref = target->ref; ref != NULL; ref = ref->next)
8586 {
8587 switch (ref->type)
8588 {
8589 case REF_COMPONENT:
8590 ts = &ref->u.c.component->ts;
8591 break;
8592 case REF_ARRAY:
8593 if (ts->type == BT_CLASS)
8594 ts = &ts->u.derived->components->ts;
8595 break;
8596 default:
8597 break;
8598 }
8599 }
8600 /* Create a scalar instance of the current class type. Because the
8601 rank of a class array goes into its name, the type has to be
8602 rebuild. The alternative of (re-)setting just the attributes
8603 and as in the current type, destroys the type also in other
8604 places. */
8605 as = NULL;
8606 sym->ts = *ts;
8607 sym->ts.type = BT_CLASS;
8608 attr = CLASS_DATA (sym)->attr;
8609 attr.class_ok = 0;
8610 attr.associate_var = 1;
8611 attr.dimension = attr.codimension = 0;
8612 attr.class_pointer = 1;
8613 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
8614 gcc_unreachable ();
8615 /* Make sure the _vptr is set. */
8616 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
8617 if (c->ts.u.derived == NULL)
8618 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
8619 CLASS_DATA (sym)->attr.pointer = 1;
8620 CLASS_DATA (sym)->attr.class_pointer = 1;
8621 gfc_set_sym_referenced (sym->ts.u.derived);
8622 gfc_commit_symbol (sym->ts.u.derived);
8623 /* _vptr now has the _vtab in it, change it to the _vtype. */
8624 if (c->ts.u.derived->attr.vtab)
8625 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
8626 c->ts.u.derived->ns->types_resolved = 0;
8627 resolve_types (c->ts.u.derived->ns);
8628 }
8629 }
8630
8631 /* Mark this as an associate variable. */
8632 sym->attr.associate_var = 1;
8633
8634 /* Fix up the type-spec for CHARACTER types. */
8635 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
8636 {
8637 if (!sym->ts.u.cl)
8638 {
8639 if (target->expr_type != EXPR_CONSTANT
8640 && !target->ts.u.cl->length)
8641 {
8642 sym->ts.u.cl = gfc_get_charlen();
8643 sym->ts.deferred = 1;
8644
8645 /* This is reset in trans-stmt.c after the assignment
8646 of the target expression to the associate name. */
8647 sym->attr.allocatable = 1;
8648 }
8649 else
8650 sym->ts.u.cl = target->ts.u.cl;
8651 }
8652
8653 if (!sym->ts.u.cl->length && !sym->ts.deferred)
8654 {
8655 if (target->expr_type == EXPR_CONSTANT)
8656 sym->ts.u.cl->length =
8657 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
8658 target->value.character.length);
8659 else
8660 gfc_error ("Not Implemented: Associate target with type character"
8661 " and non-constant length at %L", &target->where);
8662 }
8663 }
8664
8665 /* If the target is a good class object, so is the associate variable. */
8666 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
8667 sym->attr.class_ok = 1;
8668 }
8669
8670
8671 /* Ensure that SELECT TYPE expressions have the correct rank and a full
8672 array reference, where necessary. The symbols are artificial and so
8673 the dimension attribute and arrayspec can also be set. In addition,
8674 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
8675 This is corrected here as well.*/
8676
8677 static void
8678 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
8679 int rank, gfc_ref *ref)
8680 {
8681 gfc_ref *nref = (*expr1)->ref;
8682 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
8683 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
8684 (*expr1)->rank = rank;
8685 if (sym1->ts.type == BT_CLASS)
8686 {
8687 if ((*expr1)->ts.type != BT_CLASS)
8688 (*expr1)->ts = sym1->ts;
8689
8690 CLASS_DATA (sym1)->attr.dimension = 1;
8691 if (CLASS_DATA (sym1)->as == NULL && sym2)
8692 CLASS_DATA (sym1)->as
8693 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
8694 }
8695 else
8696 {
8697 sym1->attr.dimension = 1;
8698 if (sym1->as == NULL && sym2)
8699 sym1->as = gfc_copy_array_spec (sym2->as);
8700 }
8701
8702 for (; nref; nref = nref->next)
8703 if (nref->next == NULL)
8704 break;
8705
8706 if (ref && nref && nref->type != REF_ARRAY)
8707 nref->next = gfc_copy_ref (ref);
8708 else if (ref && !nref)
8709 (*expr1)->ref = gfc_copy_ref (ref);
8710 }
8711
8712
8713 static gfc_expr *
8714 build_loc_call (gfc_expr *sym_expr)
8715 {
8716 gfc_expr *loc_call;
8717 loc_call = gfc_get_expr ();
8718 loc_call->expr_type = EXPR_FUNCTION;
8719 gfc_get_sym_tree ("loc", gfc_current_ns, &loc_call->symtree, false);
8720 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
8721 loc_call->symtree->n.sym->attr.intrinsic = 1;
8722 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
8723 gfc_commit_symbol (loc_call->symtree->n.sym);
8724 loc_call->ts.type = BT_INTEGER;
8725 loc_call->ts.kind = gfc_index_integer_kind;
8726 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
8727 loc_call->value.function.actual = gfc_get_actual_arglist ();
8728 loc_call->value.function.actual->expr = sym_expr;
8729 loc_call->where = sym_expr->where;
8730 return loc_call;
8731 }
8732
8733 /* Resolve a SELECT TYPE statement. */
8734
8735 static void
8736 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
8737 {
8738 gfc_symbol *selector_type;
8739 gfc_code *body, *new_st, *if_st, *tail;
8740 gfc_code *class_is = NULL, *default_case = NULL;
8741 gfc_case *c;
8742 gfc_symtree *st;
8743 char name[GFC_MAX_SYMBOL_LEN];
8744 gfc_namespace *ns;
8745 int error = 0;
8746 int rank = 0;
8747 gfc_ref* ref = NULL;
8748 gfc_expr *selector_expr = NULL;
8749
8750 ns = code->ext.block.ns;
8751 gfc_resolve (ns);
8752
8753 /* Check for F03:C813. */
8754 if (code->expr1->ts.type != BT_CLASS
8755 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
8756 {
8757 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
8758 "at %L", &code->loc);
8759 return;
8760 }
8761
8762 if (!code->expr1->symtree->n.sym->attr.class_ok)
8763 return;
8764
8765 if (code->expr2)
8766 {
8767 if (code->expr1->symtree->n.sym->attr.untyped)
8768 code->expr1->symtree->n.sym->ts = code->expr2->ts;
8769 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
8770
8771 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
8772 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
8773
8774 /* F2008: C803 The selector expression must not be coindexed. */
8775 if (gfc_is_coindexed (code->expr2))
8776 {
8777 gfc_error ("Selector at %L must not be coindexed",
8778 &code->expr2->where);
8779 return;
8780 }
8781
8782 }
8783 else
8784 {
8785 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
8786
8787 if (gfc_is_coindexed (code->expr1))
8788 {
8789 gfc_error ("Selector at %L must not be coindexed",
8790 &code->expr1->where);
8791 return;
8792 }
8793 }
8794
8795 /* Loop over TYPE IS / CLASS IS cases. */
8796 for (body = code->block; body; body = body->block)
8797 {
8798 c = body->ext.block.case_list;
8799
8800 if (!error)
8801 {
8802 /* Check for repeated cases. */
8803 for (tail = code->block; tail; tail = tail->block)
8804 {
8805 gfc_case *d = tail->ext.block.case_list;
8806 if (tail == body)
8807 break;
8808
8809 if (c->ts.type == d->ts.type
8810 && ((c->ts.type == BT_DERIVED
8811 && c->ts.u.derived && d->ts.u.derived
8812 && !strcmp (c->ts.u.derived->name,
8813 d->ts.u.derived->name))
8814 || c->ts.type == BT_UNKNOWN
8815 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8816 && c->ts.kind == d->ts.kind)))
8817 {
8818 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
8819 &c->where, &d->where);
8820 return;
8821 }
8822 }
8823 }
8824
8825 /* Check F03:C815. */
8826 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8827 && !selector_type->attr.unlimited_polymorphic
8828 && !gfc_type_is_extensible (c->ts.u.derived))
8829 {
8830 gfc_error ("Derived type %qs at %L must be extensible",
8831 c->ts.u.derived->name, &c->where);
8832 error++;
8833 continue;
8834 }
8835
8836 /* Check F03:C816. */
8837 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
8838 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
8839 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
8840 {
8841 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8842 gfc_error ("Derived type %qs at %L must be an extension of %qs",
8843 c->ts.u.derived->name, &c->where, selector_type->name);
8844 else
8845 gfc_error ("Unexpected intrinsic type %qs at %L",
8846 gfc_basic_typename (c->ts.type), &c->where);
8847 error++;
8848 continue;
8849 }
8850
8851 /* Check F03:C814. */
8852 if (c->ts.type == BT_CHARACTER
8853 && (c->ts.u.cl->length != NULL || c->ts.deferred))
8854 {
8855 gfc_error ("The type-spec at %L shall specify that each length "
8856 "type parameter is assumed", &c->where);
8857 error++;
8858 continue;
8859 }
8860
8861 /* Intercept the DEFAULT case. */
8862 if (c->ts.type == BT_UNKNOWN)
8863 {
8864 /* Check F03:C818. */
8865 if (default_case)
8866 {
8867 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8868 "by a second DEFAULT CASE at %L",
8869 &default_case->ext.block.case_list->where, &c->where);
8870 error++;
8871 continue;
8872 }
8873
8874 default_case = body;
8875 }
8876 }
8877
8878 if (error > 0)
8879 return;
8880
8881 /* Transform SELECT TYPE statement to BLOCK and associate selector to
8882 target if present. If there are any EXIT statements referring to the
8883 SELECT TYPE construct, this is no problem because the gfc_code
8884 reference stays the same and EXIT is equally possible from the BLOCK
8885 it is changed to. */
8886 code->op = EXEC_BLOCK;
8887 if (code->expr2)
8888 {
8889 gfc_association_list* assoc;
8890
8891 assoc = gfc_get_association_list ();
8892 assoc->st = code->expr1->symtree;
8893 assoc->target = gfc_copy_expr (code->expr2);
8894 assoc->target->where = code->expr2->where;
8895 /* assoc->variable will be set by resolve_assoc_var. */
8896
8897 code->ext.block.assoc = assoc;
8898 code->expr1->symtree->n.sym->assoc = assoc;
8899
8900 resolve_assoc_var (code->expr1->symtree->n.sym, false);
8901 }
8902 else
8903 code->ext.block.assoc = NULL;
8904
8905 /* Ensure that the selector rank and arrayspec are available to
8906 correct expressions in which they might be missing. */
8907 if (code->expr2 && code->expr2->rank)
8908 {
8909 rank = code->expr2->rank;
8910 for (ref = code->expr2->ref; ref; ref = ref->next)
8911 if (ref->next == NULL)
8912 break;
8913 if (ref && ref->type == REF_ARRAY)
8914 ref = gfc_copy_ref (ref);
8915
8916 /* Fixup expr1 if necessary. */
8917 if (rank)
8918 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
8919 }
8920 else if (code->expr1->rank)
8921 {
8922 rank = code->expr1->rank;
8923 for (ref = code->expr1->ref; ref; ref = ref->next)
8924 if (ref->next == NULL)
8925 break;
8926 if (ref && ref->type == REF_ARRAY)
8927 ref = gfc_copy_ref (ref);
8928 }
8929
8930 /* Add EXEC_SELECT to switch on type. */
8931 new_st = gfc_get_code (code->op);
8932 new_st->expr1 = code->expr1;
8933 new_st->expr2 = code->expr2;
8934 new_st->block = code->block;
8935 code->expr1 = code->expr2 = NULL;
8936 code->block = NULL;
8937 if (!ns->code)
8938 ns->code = new_st;
8939 else
8940 ns->code->next = new_st;
8941 code = new_st;
8942 code->op = EXEC_SELECT_TYPE;
8943
8944 /* Use the intrinsic LOC function to generate an integer expression
8945 for the vtable of the selector. Note that the rank of the selector
8946 expression has to be set to zero. */
8947 gfc_add_vptr_component (code->expr1);
8948 code->expr1->rank = 0;
8949 code->expr1 = build_loc_call (code->expr1);
8950 selector_expr = code->expr1->value.function.actual->expr;
8951
8952 /* Loop over TYPE IS / CLASS IS cases. */
8953 for (body = code->block; body; body = body->block)
8954 {
8955 gfc_symbol *vtab;
8956 gfc_expr *e;
8957 c = body->ext.block.case_list;
8958
8959 /* Generate an index integer expression for address of the
8960 TYPE/CLASS vtable and store it in c->low. The hash expression
8961 is stored in c->high and is used to resolve intrinsic cases. */
8962 if (c->ts.type != BT_UNKNOWN)
8963 {
8964 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8965 {
8966 vtab = gfc_find_derived_vtab (c->ts.u.derived);
8967 gcc_assert (vtab);
8968 c->high = gfc_get_int_expr (gfc_default_integer_kind, NULL,
8969 c->ts.u.derived->hash_value);
8970 }
8971 else
8972 {
8973 vtab = gfc_find_vtab (&c->ts);
8974 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
8975 e = CLASS_DATA (vtab)->initializer;
8976 c->high = gfc_copy_expr (e);
8977 }
8978
8979 e = gfc_lval_expr_from_sym (vtab);
8980 c->low = build_loc_call (e);
8981 }
8982 else
8983 continue;
8984
8985 /* Associate temporary to selector. This should only be done
8986 when this case is actually true, so build a new ASSOCIATE
8987 that does precisely this here (instead of using the
8988 'global' one). */
8989
8990 if (c->ts.type == BT_CLASS)
8991 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
8992 else if (c->ts.type == BT_DERIVED)
8993 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
8994 else if (c->ts.type == BT_CHARACTER)
8995 {
8996 HOST_WIDE_INT charlen = 0;
8997 if (c->ts.u.cl && c->ts.u.cl->length
8998 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
8999 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9000 snprintf (name, sizeof (name),
9001 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9002 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9003 }
9004 else
9005 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9006 c->ts.kind);
9007
9008 st = gfc_find_symtree (ns->sym_root, name);
9009 gcc_assert (st->n.sym->assoc);
9010 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9011 st->n.sym->assoc->target->where = selector_expr->where;
9012 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9013 {
9014 gfc_add_data_component (st->n.sym->assoc->target);
9015 /* Fixup the target expression if necessary. */
9016 if (rank)
9017 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9018 }
9019
9020 new_st = gfc_get_code (EXEC_BLOCK);
9021 new_st->ext.block.ns = gfc_build_block_ns (ns);
9022 new_st->ext.block.ns->code = body->next;
9023 body->next = new_st;
9024
9025 /* Chain in the new list only if it is marked as dangling. Otherwise
9026 there is a CASE label overlap and this is already used. Just ignore,
9027 the error is diagnosed elsewhere. */
9028 if (st->n.sym->assoc->dangling)
9029 {
9030 new_st->ext.block.assoc = st->n.sym->assoc;
9031 st->n.sym->assoc->dangling = 0;
9032 }
9033
9034 resolve_assoc_var (st->n.sym, false);
9035 }
9036
9037 /* Take out CLASS IS cases for separate treatment. */
9038 body = code;
9039 while (body && body->block)
9040 {
9041 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9042 {
9043 /* Add to class_is list. */
9044 if (class_is == NULL)
9045 {
9046 class_is = body->block;
9047 tail = class_is;
9048 }
9049 else
9050 {
9051 for (tail = class_is; tail->block; tail = tail->block) ;
9052 tail->block = body->block;
9053 tail = tail->block;
9054 }
9055 /* Remove from EXEC_SELECT list. */
9056 body->block = body->block->block;
9057 tail->block = NULL;
9058 }
9059 else
9060 body = body->block;
9061 }
9062
9063 if (class_is)
9064 {
9065 gfc_symbol *vtab;
9066
9067 if (!default_case)
9068 {
9069 /* Add a default case to hold the CLASS IS cases. */
9070 for (tail = code; tail->block; tail = tail->block) ;
9071 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9072 tail = tail->block;
9073 tail->ext.block.case_list = gfc_get_case ();
9074 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9075 tail->next = NULL;
9076 default_case = tail;
9077 }
9078
9079 /* More than one CLASS IS block? */
9080 if (class_is->block)
9081 {
9082 gfc_code **c1,*c2;
9083 bool swapped;
9084 /* Sort CLASS IS blocks by extension level. */
9085 do
9086 {
9087 swapped = false;
9088 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9089 {
9090 c2 = (*c1)->block;
9091 /* F03:C817 (check for doubles). */
9092 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9093 == c2->ext.block.case_list->ts.u.derived->hash_value)
9094 {
9095 gfc_error ("Double CLASS IS block in SELECT TYPE "
9096 "statement at %L",
9097 &c2->ext.block.case_list->where);
9098 return;
9099 }
9100 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9101 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9102 {
9103 /* Swap. */
9104 (*c1)->block = c2->block;
9105 c2->block = *c1;
9106 *c1 = c2;
9107 swapped = true;
9108 }
9109 }
9110 }
9111 while (swapped);
9112 }
9113
9114 /* Generate IF chain. */
9115 if_st = gfc_get_code (EXEC_IF);
9116 new_st = if_st;
9117 for (body = class_is; body; body = body->block)
9118 {
9119 new_st->block = gfc_get_code (EXEC_IF);
9120 new_st = new_st->block;
9121 /* Set up IF condition: Call _gfortran_is_extension_of. */
9122 new_st->expr1 = gfc_get_expr ();
9123 new_st->expr1->expr_type = EXPR_FUNCTION;
9124 new_st->expr1->ts.type = BT_LOGICAL;
9125 new_st->expr1->ts.kind = 4;
9126 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9127 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9128 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9129 /* Set up arguments. */
9130 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9131 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9132 new_st->expr1->value.function.actual->expr->where = code->loc;
9133 new_st->expr1->where = code->loc;
9134 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9135 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9136 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9137 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9138 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9139 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9140 new_st->next = body->next;
9141 }
9142 if (default_case->next)
9143 {
9144 new_st->block = gfc_get_code (EXEC_IF);
9145 new_st = new_st->block;
9146 new_st->next = default_case->next;
9147 }
9148
9149 /* Replace CLASS DEFAULT code by the IF chain. */
9150 default_case->next = if_st;
9151 }
9152
9153 /* Resolve the internal code. This can not be done earlier because
9154 it requires that the sym->assoc of selectors is set already. */
9155 gfc_current_ns = ns;
9156 gfc_resolve_blocks (code->block, gfc_current_ns);
9157 gfc_current_ns = old_ns;
9158
9159 if (ref)
9160 free (ref);
9161 }
9162
9163
9164 /* Resolve a transfer statement. This is making sure that:
9165 -- a derived type being transferred has only non-pointer components
9166 -- a derived type being transferred doesn't have private components, unless
9167 it's being transferred from the module where the type was defined
9168 -- we're not trying to transfer a whole assumed size array. */
9169
9170 static void
9171 resolve_transfer (gfc_code *code)
9172 {
9173 gfc_typespec *ts;
9174 gfc_symbol *sym, *derived;
9175 gfc_ref *ref;
9176 gfc_expr *exp;
9177 bool write = false;
9178 bool formatted = false;
9179 gfc_dt *dt = code->ext.dt;
9180 gfc_symbol *dtio_sub = NULL;
9181
9182 exp = code->expr1;
9183
9184 while (exp != NULL && exp->expr_type == EXPR_OP
9185 && exp->value.op.op == INTRINSIC_PARENTHESES)
9186 exp = exp->value.op.op1;
9187
9188 if (exp && exp->expr_type == EXPR_NULL
9189 && code->ext.dt)
9190 {
9191 gfc_error ("Invalid context for NULL () intrinsic at %L",
9192 &exp->where);
9193 return;
9194 }
9195
9196 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9197 && exp->expr_type != EXPR_FUNCTION
9198 && exp->expr_type != EXPR_STRUCTURE))
9199 return;
9200
9201 /* If we are reading, the variable will be changed. Note that
9202 code->ext.dt may be NULL if the TRANSFER is related to
9203 an INQUIRE statement -- but in this case, we are not reading, either. */
9204 if (dt && dt->dt_io_kind->value.iokind == M_READ
9205 && !gfc_check_vardef_context (exp, false, false, false,
9206 _("item in READ")))
9207 return;
9208
9209 ts = exp->expr_type == EXPR_STRUCTURE ? &exp->ts : &exp->symtree->n.sym->ts;
9210
9211 /* Go to actual component transferred. */
9212 for (ref = exp->ref; ref; ref = ref->next)
9213 if (ref->type == REF_COMPONENT)
9214 ts = &ref->u.c.component->ts;
9215
9216 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9217 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9218 {
9219 if (ts->type == BT_DERIVED || ts->type == BT_CLASS)
9220 derived = ts->u.derived;
9221 else
9222 derived = ts->u.derived->components->ts.u.derived;
9223
9224 /* Determine when to use the formatted DTIO procedure. */
9225 if (dt && (dt->format_expr || dt->format_label))
9226 formatted = true;
9227
9228 write = dt->dt_io_kind->value.iokind == M_WRITE
9229 || dt->dt_io_kind->value.iokind == M_PRINT;
9230 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9231
9232 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9233 {
9234 dt->udtio = exp;
9235 sym = exp->symtree->n.sym->ns->proc_name;
9236 /* Check to see if this is a nested DTIO call, with the
9237 dummy as the io-list object. */
9238 if (sym && sym == dtio_sub && sym->formal
9239 && sym->formal->sym == exp->symtree->n.sym
9240 && exp->ref == NULL)
9241 {
9242 if (!sym->attr.recursive)
9243 {
9244 gfc_error ("DTIO %s procedure at %L must be recursive",
9245 sym->name, &sym->declared_at);
9246 return;
9247 }
9248 }
9249 }
9250 }
9251
9252 if (ts->type == BT_CLASS && dtio_sub == NULL)
9253 {
9254 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9255 "it is processed by a defined input/output procedure",
9256 &code->loc);
9257 return;
9258 }
9259
9260 if (ts->type == BT_DERIVED)
9261 {
9262 /* Check that transferred derived type doesn't contain POINTER
9263 components unless it is processed by a defined input/output
9264 procedure". */
9265 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9266 {
9267 gfc_error ("Data transfer element at %L cannot have POINTER "
9268 "components unless it is processed by a defined "
9269 "input/output procedure", &code->loc);
9270 return;
9271 }
9272
9273 /* F08:C935. */
9274 if (ts->u.derived->attr.proc_pointer_comp)
9275 {
9276 gfc_error ("Data transfer element at %L cannot have "
9277 "procedure pointer components", &code->loc);
9278 return;
9279 }
9280
9281 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9282 {
9283 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9284 "components unless it is processed by a defined "
9285 "input/output procedure", &code->loc);
9286 return;
9287 }
9288
9289 /* C_PTR and C_FUNPTR have private components which means they can not
9290 be printed. However, if -std=gnu and not -pedantic, allow
9291 the component to be printed to help debugging. */
9292 if (ts->u.derived->ts.f90_type == BT_VOID)
9293 {
9294 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9295 "cannot have PRIVATE components", &code->loc))
9296 return;
9297 }
9298 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9299 {
9300 gfc_error ("Data transfer element at %L cannot have "
9301 "PRIVATE components unless it is processed by "
9302 "a defined input/output procedure", &code->loc);
9303 return;
9304 }
9305 }
9306
9307 if (exp->expr_type == EXPR_STRUCTURE)
9308 return;
9309
9310 sym = exp->symtree->n.sym;
9311
9312 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9313 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9314 {
9315 gfc_error ("Data transfer element at %L cannot be a full reference to "
9316 "an assumed-size array", &code->loc);
9317 return;
9318 }
9319
9320 if (async_io_dt && exp->expr_type == EXPR_VARIABLE)
9321 exp->symtree->n.sym->attr.asynchronous = 1;
9322 }
9323
9324
9325 /*********** Toplevel code resolution subroutines ***********/
9326
9327 /* Find the set of labels that are reachable from this block. We also
9328 record the last statement in each block. */
9329
9330 static void
9331 find_reachable_labels (gfc_code *block)
9332 {
9333 gfc_code *c;
9334
9335 if (!block)
9336 return;
9337
9338 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9339
9340 /* Collect labels in this block. We don't keep those corresponding
9341 to END {IF|SELECT}, these are checked in resolve_branch by going
9342 up through the code_stack. */
9343 for (c = block; c; c = c->next)
9344 {
9345 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9346 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9347 }
9348
9349 /* Merge with labels from parent block. */
9350 if (cs_base->prev)
9351 {
9352 gcc_assert (cs_base->prev->reachable_labels);
9353 bitmap_ior_into (cs_base->reachable_labels,
9354 cs_base->prev->reachable_labels);
9355 }
9356 }
9357
9358
9359 static void
9360 resolve_lock_unlock_event (gfc_code *code)
9361 {
9362 if (code->expr1->expr_type == EXPR_FUNCTION
9363 && code->expr1->value.function.isym
9364 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9365 remove_caf_get_intrinsic (code->expr1);
9366
9367 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9368 && (code->expr1->ts.type != BT_DERIVED
9369 || code->expr1->expr_type != EXPR_VARIABLE
9370 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
9371 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
9372 || code->expr1->rank != 0
9373 || (!gfc_is_coarray (code->expr1) &&
9374 !gfc_is_coindexed (code->expr1))))
9375 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9376 &code->expr1->where);
9377 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
9378 && (code->expr1->ts.type != BT_DERIVED
9379 || code->expr1->expr_type != EXPR_VARIABLE
9380 || code->expr1->ts.u.derived->from_intmod
9381 != INTMOD_ISO_FORTRAN_ENV
9382 || code->expr1->ts.u.derived->intmod_sym_id
9383 != ISOFORTRAN_EVENT_TYPE
9384 || code->expr1->rank != 0))
9385 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9386 &code->expr1->where);
9387 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
9388 && !gfc_is_coindexed (code->expr1))
9389 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9390 &code->expr1->where);
9391 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
9392 gfc_error ("Event variable argument at %L must be a coarray but not "
9393 "coindexed", &code->expr1->where);
9394
9395 /* Check STAT. */
9396 if (code->expr2
9397 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9398 || code->expr2->expr_type != EXPR_VARIABLE))
9399 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9400 &code->expr2->where);
9401
9402 if (code->expr2
9403 && !gfc_check_vardef_context (code->expr2, false, false, false,
9404 _("STAT variable")))
9405 return;
9406
9407 /* Check ERRMSG. */
9408 if (code->expr3
9409 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9410 || code->expr3->expr_type != EXPR_VARIABLE))
9411 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9412 &code->expr3->where);
9413
9414 if (code->expr3
9415 && !gfc_check_vardef_context (code->expr3, false, false, false,
9416 _("ERRMSG variable")))
9417 return;
9418
9419 /* Check for LOCK the ACQUIRED_LOCK. */
9420 if (code->op != EXEC_EVENT_WAIT && code->expr4
9421 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
9422 || code->expr4->expr_type != EXPR_VARIABLE))
9423 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
9424 "variable", &code->expr4->where);
9425
9426 if (code->op != EXEC_EVENT_WAIT && code->expr4
9427 && !gfc_check_vardef_context (code->expr4, false, false, false,
9428 _("ACQUIRED_LOCK variable")))
9429 return;
9430
9431 /* Check for EVENT WAIT the UNTIL_COUNT. */
9432 if (code->op == EXEC_EVENT_WAIT && code->expr4)
9433 {
9434 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
9435 || code->expr4->rank != 0)
9436 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
9437 "expression", &code->expr4->where);
9438 }
9439 }
9440
9441
9442 static void
9443 resolve_critical (gfc_code *code)
9444 {
9445 gfc_symtree *symtree;
9446 gfc_symbol *lock_type;
9447 char name[GFC_MAX_SYMBOL_LEN];
9448 static int serial = 0;
9449
9450 if (flag_coarray != GFC_FCOARRAY_LIB)
9451 return;
9452
9453 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
9454 GFC_PREFIX ("lock_type"));
9455 if (symtree)
9456 lock_type = symtree->n.sym;
9457 else
9458 {
9459 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
9460 false) != 0)
9461 gcc_unreachable ();
9462 lock_type = symtree->n.sym;
9463 lock_type->attr.flavor = FL_DERIVED;
9464 lock_type->attr.zero_comp = 1;
9465 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
9466 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
9467 }
9468
9469 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
9470 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
9471 gcc_unreachable ();
9472
9473 code->resolved_sym = symtree->n.sym;
9474 symtree->n.sym->attr.flavor = FL_VARIABLE;
9475 symtree->n.sym->attr.referenced = 1;
9476 symtree->n.sym->attr.artificial = 1;
9477 symtree->n.sym->attr.codimension = 1;
9478 symtree->n.sym->ts.type = BT_DERIVED;
9479 symtree->n.sym->ts.u.derived = lock_type;
9480 symtree->n.sym->as = gfc_get_array_spec ();
9481 symtree->n.sym->as->corank = 1;
9482 symtree->n.sym->as->type = AS_EXPLICIT;
9483 symtree->n.sym->as->cotype = AS_EXPLICIT;
9484 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
9485 NULL, 1);
9486 gfc_commit_symbols();
9487 }
9488
9489
9490 static void
9491 resolve_sync (gfc_code *code)
9492 {
9493 /* Check imageset. The * case matches expr1 == NULL. */
9494 if (code->expr1)
9495 {
9496 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
9497 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
9498 "INTEGER expression", &code->expr1->where);
9499 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
9500 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
9501 gfc_error ("Imageset argument at %L must between 1 and num_images()",
9502 &code->expr1->where);
9503 else if (code->expr1->expr_type == EXPR_ARRAY
9504 && gfc_simplify_expr (code->expr1, 0))
9505 {
9506 gfc_constructor *cons;
9507 cons = gfc_constructor_first (code->expr1->value.constructor);
9508 for (; cons; cons = gfc_constructor_next (cons))
9509 if (cons->expr->expr_type == EXPR_CONSTANT
9510 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
9511 gfc_error ("Imageset argument at %L must between 1 and "
9512 "num_images()", &cons->expr->where);
9513 }
9514 }
9515
9516 /* Check STAT. */
9517 if (code->expr2
9518 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9519 || code->expr2->expr_type != EXPR_VARIABLE))
9520 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9521 &code->expr2->where);
9522
9523 /* Check ERRMSG. */
9524 if (code->expr3
9525 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9526 || code->expr3->expr_type != EXPR_VARIABLE))
9527 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9528 &code->expr3->where);
9529 }
9530
9531
9532 /* Given a branch to a label, see if the branch is conforming.
9533 The code node describes where the branch is located. */
9534
9535 static void
9536 resolve_branch (gfc_st_label *label, gfc_code *code)
9537 {
9538 code_stack *stack;
9539
9540 if (label == NULL)
9541 return;
9542
9543 /* Step one: is this a valid branching target? */
9544
9545 if (label->defined == ST_LABEL_UNKNOWN)
9546 {
9547 gfc_error ("Label %d referenced at %L is never defined", label->value,
9548 &code->loc);
9549 return;
9550 }
9551
9552 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
9553 {
9554 gfc_error ("Statement at %L is not a valid branch target statement "
9555 "for the branch statement at %L", &label->where, &code->loc);
9556 return;
9557 }
9558
9559 /* Step two: make sure this branch is not a branch to itself ;-) */
9560
9561 if (code->here == label)
9562 {
9563 gfc_warning (0,
9564 "Branch at %L may result in an infinite loop", &code->loc);
9565 return;
9566 }
9567
9568 /* Step three: See if the label is in the same block as the
9569 branching statement. The hard work has been done by setting up
9570 the bitmap reachable_labels. */
9571
9572 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
9573 {
9574 /* Check now whether there is a CRITICAL construct; if so, check
9575 whether the label is still visible outside of the CRITICAL block,
9576 which is invalid. */
9577 for (stack = cs_base; stack; stack = stack->prev)
9578 {
9579 if (stack->current->op == EXEC_CRITICAL
9580 && bitmap_bit_p (stack->reachable_labels, label->value))
9581 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
9582 "label at %L", &code->loc, &label->where);
9583 else if (stack->current->op == EXEC_DO_CONCURRENT
9584 && bitmap_bit_p (stack->reachable_labels, label->value))
9585 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
9586 "for label at %L", &code->loc, &label->where);
9587 }
9588
9589 return;
9590 }
9591
9592 /* Step four: If we haven't found the label in the bitmap, it may
9593 still be the label of the END of the enclosing block, in which
9594 case we find it by going up the code_stack. */
9595
9596 for (stack = cs_base; stack; stack = stack->prev)
9597 {
9598 if (stack->current->next && stack->current->next->here == label)
9599 break;
9600 if (stack->current->op == EXEC_CRITICAL)
9601 {
9602 /* Note: A label at END CRITICAL does not leave the CRITICAL
9603 construct as END CRITICAL is still part of it. */
9604 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
9605 " at %L", &code->loc, &label->where);
9606 return;
9607 }
9608 else if (stack->current->op == EXEC_DO_CONCURRENT)
9609 {
9610 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
9611 "label at %L", &code->loc, &label->where);
9612 return;
9613 }
9614 }
9615
9616 if (stack)
9617 {
9618 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
9619 return;
9620 }
9621
9622 /* The label is not in an enclosing block, so illegal. This was
9623 allowed in Fortran 66, so we allow it as extension. No
9624 further checks are necessary in this case. */
9625 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
9626 "as the GOTO statement at %L", &label->where,
9627 &code->loc);
9628 return;
9629 }
9630
9631
9632 /* Check whether EXPR1 has the same shape as EXPR2. */
9633
9634 static bool
9635 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
9636 {
9637 mpz_t shape[GFC_MAX_DIMENSIONS];
9638 mpz_t shape2[GFC_MAX_DIMENSIONS];
9639 bool result = false;
9640 int i;
9641
9642 /* Compare the rank. */
9643 if (expr1->rank != expr2->rank)
9644 return result;
9645
9646 /* Compare the size of each dimension. */
9647 for (i=0; i<expr1->rank; i++)
9648 {
9649 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
9650 goto ignore;
9651
9652 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
9653 goto ignore;
9654
9655 if (mpz_cmp (shape[i], shape2[i]))
9656 goto over;
9657 }
9658
9659 /* When either of the two expression is an assumed size array, we
9660 ignore the comparison of dimension sizes. */
9661 ignore:
9662 result = true;
9663
9664 over:
9665 gfc_clear_shape (shape, i);
9666 gfc_clear_shape (shape2, i);
9667 return result;
9668 }
9669
9670
9671 /* Check whether a WHERE assignment target or a WHERE mask expression
9672 has the same shape as the outmost WHERE mask expression. */
9673
9674 static void
9675 resolve_where (gfc_code *code, gfc_expr *mask)
9676 {
9677 gfc_code *cblock;
9678 gfc_code *cnext;
9679 gfc_expr *e = NULL;
9680
9681 cblock = code->block;
9682
9683 /* Store the first WHERE mask-expr of the WHERE statement or construct.
9684 In case of nested WHERE, only the outmost one is stored. */
9685 if (mask == NULL) /* outmost WHERE */
9686 e = cblock->expr1;
9687 else /* inner WHERE */
9688 e = mask;
9689
9690 while (cblock)
9691 {
9692 if (cblock->expr1)
9693 {
9694 /* Check if the mask-expr has a consistent shape with the
9695 outmost WHERE mask-expr. */
9696 if (!resolve_where_shape (cblock->expr1, e))
9697 gfc_error ("WHERE mask at %L has inconsistent shape",
9698 &cblock->expr1->where);
9699 }
9700
9701 /* the assignment statement of a WHERE statement, or the first
9702 statement in where-body-construct of a WHERE construct */
9703 cnext = cblock->next;
9704 while (cnext)
9705 {
9706 switch (cnext->op)
9707 {
9708 /* WHERE assignment statement */
9709 case EXEC_ASSIGN:
9710
9711 /* Check shape consistent for WHERE assignment target. */
9712 if (e && !resolve_where_shape (cnext->expr1, e))
9713 gfc_error ("WHERE assignment target at %L has "
9714 "inconsistent shape", &cnext->expr1->where);
9715 break;
9716
9717
9718 case EXEC_ASSIGN_CALL:
9719 resolve_call (cnext);
9720 if (!cnext->resolved_sym->attr.elemental)
9721 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9722 &cnext->ext.actual->expr->where);
9723 break;
9724
9725 /* WHERE or WHERE construct is part of a where-body-construct */
9726 case EXEC_WHERE:
9727 resolve_where (cnext, e);
9728 break;
9729
9730 default:
9731 gfc_error ("Unsupported statement inside WHERE at %L",
9732 &cnext->loc);
9733 }
9734 /* the next statement within the same where-body-construct */
9735 cnext = cnext->next;
9736 }
9737 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9738 cblock = cblock->block;
9739 }
9740 }
9741
9742
9743 /* Resolve assignment in FORALL construct.
9744 NVAR is the number of FORALL index variables, and VAR_EXPR records the
9745 FORALL index variables. */
9746
9747 static void
9748 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
9749 {
9750 int n;
9751
9752 for (n = 0; n < nvar; n++)
9753 {
9754 gfc_symbol *forall_index;
9755
9756 forall_index = var_expr[n]->symtree->n.sym;
9757
9758 /* Check whether the assignment target is one of the FORALL index
9759 variable. */
9760 if ((code->expr1->expr_type == EXPR_VARIABLE)
9761 && (code->expr1->symtree->n.sym == forall_index))
9762 gfc_error ("Assignment to a FORALL index variable at %L",
9763 &code->expr1->where);
9764 else
9765 {
9766 /* If one of the FORALL index variables doesn't appear in the
9767 assignment variable, then there could be a many-to-one
9768 assignment. Emit a warning rather than an error because the
9769 mask could be resolving this problem. */
9770 if (!find_forall_index (code->expr1, forall_index, 0))
9771 gfc_warning (0, "The FORALL with index %qs is not used on the "
9772 "left side of the assignment at %L and so might "
9773 "cause multiple assignment to this object",
9774 var_expr[n]->symtree->name, &code->expr1->where);
9775 }
9776 }
9777 }
9778
9779
9780 /* Resolve WHERE statement in FORALL construct. */
9781
9782 static void
9783 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
9784 gfc_expr **var_expr)
9785 {
9786 gfc_code *cblock;
9787 gfc_code *cnext;
9788
9789 cblock = code->block;
9790 while (cblock)
9791 {
9792 /* the assignment statement of a WHERE statement, or the first
9793 statement in where-body-construct of a WHERE construct */
9794 cnext = cblock->next;
9795 while (cnext)
9796 {
9797 switch (cnext->op)
9798 {
9799 /* WHERE assignment statement */
9800 case EXEC_ASSIGN:
9801 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
9802 break;
9803
9804 /* WHERE operator assignment statement */
9805 case EXEC_ASSIGN_CALL:
9806 resolve_call (cnext);
9807 if (!cnext->resolved_sym->attr.elemental)
9808 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9809 &cnext->ext.actual->expr->where);
9810 break;
9811
9812 /* WHERE or WHERE construct is part of a where-body-construct */
9813 case EXEC_WHERE:
9814 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
9815 break;
9816
9817 default:
9818 gfc_error ("Unsupported statement inside WHERE at %L",
9819 &cnext->loc);
9820 }
9821 /* the next statement within the same where-body-construct */
9822 cnext = cnext->next;
9823 }
9824 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9825 cblock = cblock->block;
9826 }
9827 }
9828
9829
9830 /* Traverse the FORALL body to check whether the following errors exist:
9831 1. For assignment, check if a many-to-one assignment happens.
9832 2. For WHERE statement, check the WHERE body to see if there is any
9833 many-to-one assignment. */
9834
9835 static void
9836 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
9837 {
9838 gfc_code *c;
9839
9840 c = code->block->next;
9841 while (c)
9842 {
9843 switch (c->op)
9844 {
9845 case EXEC_ASSIGN:
9846 case EXEC_POINTER_ASSIGN:
9847 gfc_resolve_assign_in_forall (c, nvar, var_expr);
9848 break;
9849
9850 case EXEC_ASSIGN_CALL:
9851 resolve_call (c);
9852 break;
9853
9854 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
9855 there is no need to handle it here. */
9856 case EXEC_FORALL:
9857 break;
9858 case EXEC_WHERE:
9859 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
9860 break;
9861 default:
9862 break;
9863 }
9864 /* The next statement in the FORALL body. */
9865 c = c->next;
9866 }
9867 }
9868
9869
9870 /* Counts the number of iterators needed inside a forall construct, including
9871 nested forall constructs. This is used to allocate the needed memory
9872 in gfc_resolve_forall. */
9873
9874 static int
9875 gfc_count_forall_iterators (gfc_code *code)
9876 {
9877 int max_iters, sub_iters, current_iters;
9878 gfc_forall_iterator *fa;
9879
9880 gcc_assert(code->op == EXEC_FORALL);
9881 max_iters = 0;
9882 current_iters = 0;
9883
9884 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
9885 current_iters ++;
9886
9887 code = code->block->next;
9888
9889 while (code)
9890 {
9891 if (code->op == EXEC_FORALL)
9892 {
9893 sub_iters = gfc_count_forall_iterators (code);
9894 if (sub_iters > max_iters)
9895 max_iters = sub_iters;
9896 }
9897 code = code->next;
9898 }
9899
9900 return current_iters + max_iters;
9901 }
9902
9903
9904 /* Given a FORALL construct, first resolve the FORALL iterator, then call
9905 gfc_resolve_forall_body to resolve the FORALL body. */
9906
9907 static void
9908 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
9909 {
9910 static gfc_expr **var_expr;
9911 static int total_var = 0;
9912 static int nvar = 0;
9913 int i, old_nvar, tmp;
9914 gfc_forall_iterator *fa;
9915
9916 old_nvar = nvar;
9917
9918 /* Start to resolve a FORALL construct */
9919 if (forall_save == 0)
9920 {
9921 /* Count the total number of FORALL indices in the nested FORALL
9922 construct in order to allocate the VAR_EXPR with proper size. */
9923 total_var = gfc_count_forall_iterators (code);
9924
9925 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
9926 var_expr = XCNEWVEC (gfc_expr *, total_var);
9927 }
9928
9929 /* The information about FORALL iterator, including FORALL indices start, end
9930 and stride. An outer FORALL indice cannot appear in start, end or stride. */
9931 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
9932 {
9933 /* Fortran 20008: C738 (R753). */
9934 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
9935 {
9936 gfc_error ("FORALL index-name at %L must be a scalar variable "
9937 "of type integer", &fa->var->where);
9938 continue;
9939 }
9940
9941 /* Check if any outer FORALL index name is the same as the current
9942 one. */
9943 for (i = 0; i < nvar; i++)
9944 {
9945 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
9946 gfc_error ("An outer FORALL construct already has an index "
9947 "with this name %L", &fa->var->where);
9948 }
9949
9950 /* Record the current FORALL index. */
9951 var_expr[nvar] = gfc_copy_expr (fa->var);
9952
9953 nvar++;
9954
9955 /* No memory leak. */
9956 gcc_assert (nvar <= total_var);
9957 }
9958
9959 /* Resolve the FORALL body. */
9960 gfc_resolve_forall_body (code, nvar, var_expr);
9961
9962 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
9963 gfc_resolve_blocks (code->block, ns);
9964
9965 tmp = nvar;
9966 nvar = old_nvar;
9967 /* Free only the VAR_EXPRs allocated in this frame. */
9968 for (i = nvar; i < tmp; i++)
9969 gfc_free_expr (var_expr[i]);
9970
9971 if (nvar == 0)
9972 {
9973 /* We are in the outermost FORALL construct. */
9974 gcc_assert (forall_save == 0);
9975
9976 /* VAR_EXPR is not needed any more. */
9977 free (var_expr);
9978 total_var = 0;
9979 }
9980 }
9981
9982
9983 /* Resolve a BLOCK construct statement. */
9984
9985 static void
9986 resolve_block_construct (gfc_code* code)
9987 {
9988 /* Resolve the BLOCK's namespace. */
9989 gfc_resolve (code->ext.block.ns);
9990
9991 /* For an ASSOCIATE block, the associations (and their targets) are already
9992 resolved during resolve_symbol. */
9993 }
9994
9995
9996 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
9997 DO code nodes. */
9998
9999 void
10000 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10001 {
10002 bool t;
10003
10004 for (; b; b = b->block)
10005 {
10006 t = gfc_resolve_expr (b->expr1);
10007 if (!gfc_resolve_expr (b->expr2))
10008 t = false;
10009
10010 switch (b->op)
10011 {
10012 case EXEC_IF:
10013 if (t && b->expr1 != NULL
10014 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10015 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10016 &b->expr1->where);
10017 break;
10018
10019 case EXEC_WHERE:
10020 if (t
10021 && b->expr1 != NULL
10022 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10023 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10024 &b->expr1->where);
10025 break;
10026
10027 case EXEC_GOTO:
10028 resolve_branch (b->label1, b);
10029 break;
10030
10031 case EXEC_BLOCK:
10032 resolve_block_construct (b);
10033 break;
10034
10035 case EXEC_SELECT:
10036 case EXEC_SELECT_TYPE:
10037 case EXEC_FORALL:
10038 case EXEC_DO:
10039 case EXEC_DO_WHILE:
10040 case EXEC_DO_CONCURRENT:
10041 case EXEC_CRITICAL:
10042 case EXEC_READ:
10043 case EXEC_WRITE:
10044 case EXEC_IOLENGTH:
10045 case EXEC_WAIT:
10046 break;
10047
10048 case EXEC_OMP_ATOMIC:
10049 case EXEC_OACC_ATOMIC:
10050 {
10051 gfc_omp_atomic_op aop
10052 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10053
10054 /* Verify this before calling gfc_resolve_code, which might
10055 change it. */
10056 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10057 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10058 && b->next->next == NULL)
10059 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10060 && b->next->next != NULL
10061 && b->next->next->op == EXEC_ASSIGN
10062 && b->next->next->next == NULL));
10063 }
10064 break;
10065
10066 case EXEC_OACC_PARALLEL_LOOP:
10067 case EXEC_OACC_PARALLEL:
10068 case EXEC_OACC_KERNELS_LOOP:
10069 case EXEC_OACC_KERNELS:
10070 case EXEC_OACC_DATA:
10071 case EXEC_OACC_HOST_DATA:
10072 case EXEC_OACC_LOOP:
10073 case EXEC_OACC_UPDATE:
10074 case EXEC_OACC_WAIT:
10075 case EXEC_OACC_CACHE:
10076 case EXEC_OACC_ENTER_DATA:
10077 case EXEC_OACC_EXIT_DATA:
10078 case EXEC_OACC_ROUTINE:
10079 case EXEC_OMP_CRITICAL:
10080 case EXEC_OMP_DISTRIBUTE:
10081 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10082 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10083 case EXEC_OMP_DISTRIBUTE_SIMD:
10084 case EXEC_OMP_DO:
10085 case EXEC_OMP_DO_SIMD:
10086 case EXEC_OMP_MASTER:
10087 case EXEC_OMP_ORDERED:
10088 case EXEC_OMP_PARALLEL:
10089 case EXEC_OMP_PARALLEL_DO:
10090 case EXEC_OMP_PARALLEL_DO_SIMD:
10091 case EXEC_OMP_PARALLEL_SECTIONS:
10092 case EXEC_OMP_PARALLEL_WORKSHARE:
10093 case EXEC_OMP_SECTIONS:
10094 case EXEC_OMP_SIMD:
10095 case EXEC_OMP_SINGLE:
10096 case EXEC_OMP_TARGET:
10097 case EXEC_OMP_TARGET_DATA:
10098 case EXEC_OMP_TARGET_ENTER_DATA:
10099 case EXEC_OMP_TARGET_EXIT_DATA:
10100 case EXEC_OMP_TARGET_PARALLEL:
10101 case EXEC_OMP_TARGET_PARALLEL_DO:
10102 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10103 case EXEC_OMP_TARGET_SIMD:
10104 case EXEC_OMP_TARGET_TEAMS:
10105 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10106 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10107 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10108 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10109 case EXEC_OMP_TARGET_UPDATE:
10110 case EXEC_OMP_TASK:
10111 case EXEC_OMP_TASKGROUP:
10112 case EXEC_OMP_TASKLOOP:
10113 case EXEC_OMP_TASKLOOP_SIMD:
10114 case EXEC_OMP_TASKWAIT:
10115 case EXEC_OMP_TASKYIELD:
10116 case EXEC_OMP_TEAMS:
10117 case EXEC_OMP_TEAMS_DISTRIBUTE:
10118 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10119 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10120 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10121 case EXEC_OMP_WORKSHARE:
10122 break;
10123
10124 default:
10125 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10126 }
10127
10128 gfc_resolve_code (b->next, ns);
10129 }
10130 }
10131
10132
10133 /* Does everything to resolve an ordinary assignment. Returns true
10134 if this is an interface assignment. */
10135 static bool
10136 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10137 {
10138 bool rval = false;
10139 gfc_expr *lhs;
10140 gfc_expr *rhs;
10141 int n;
10142 gfc_ref *ref;
10143 symbol_attribute attr;
10144
10145 if (gfc_extend_assign (code, ns))
10146 {
10147 gfc_expr** rhsptr;
10148
10149 if (code->op == EXEC_ASSIGN_CALL)
10150 {
10151 lhs = code->ext.actual->expr;
10152 rhsptr = &code->ext.actual->next->expr;
10153 }
10154 else
10155 {
10156 gfc_actual_arglist* args;
10157 gfc_typebound_proc* tbp;
10158
10159 gcc_assert (code->op == EXEC_COMPCALL);
10160
10161 args = code->expr1->value.compcall.actual;
10162 lhs = args->expr;
10163 rhsptr = &args->next->expr;
10164
10165 tbp = code->expr1->value.compcall.tbp;
10166 gcc_assert (!tbp->is_generic);
10167 }
10168
10169 /* Make a temporary rhs when there is a default initializer
10170 and rhs is the same symbol as the lhs. */
10171 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10172 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10173 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10174 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10175 *rhsptr = gfc_get_parentheses (*rhsptr);
10176
10177 return true;
10178 }
10179
10180 lhs = code->expr1;
10181 rhs = code->expr2;
10182
10183 if (rhs->is_boz
10184 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L outside "
10185 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
10186 &code->loc))
10187 return false;
10188
10189 /* Handle the case of a BOZ literal on the RHS. */
10190 if (rhs->is_boz && lhs->ts.type != BT_INTEGER)
10191 {
10192 int rc;
10193 if (warn_surprising)
10194 gfc_warning (OPT_Wsurprising,
10195 "BOZ literal at %L is bitwise transferred "
10196 "non-integer symbol %qs", &code->loc,
10197 lhs->symtree->n.sym->name);
10198
10199 if (!gfc_convert_boz (rhs, &lhs->ts))
10200 return false;
10201 if ((rc = gfc_range_check (rhs)) != ARITH_OK)
10202 {
10203 if (rc == ARITH_UNDERFLOW)
10204 gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
10205 ". This check can be disabled with the option "
10206 "%<-fno-range-check%>", &rhs->where);
10207 else if (rc == ARITH_OVERFLOW)
10208 gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
10209 ". This check can be disabled with the option "
10210 "%<-fno-range-check%>", &rhs->where);
10211 else if (rc == ARITH_NAN)
10212 gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
10213 ". This check can be disabled with the option "
10214 "%<-fno-range-check%>", &rhs->where);
10215 return false;
10216 }
10217 }
10218
10219 if (lhs->ts.type == BT_CHARACTER
10220 && warn_character_truncation)
10221 {
10222 HOST_WIDE_INT llen = 0, rlen = 0;
10223 if (lhs->ts.u.cl != NULL
10224 && lhs->ts.u.cl->length != NULL
10225 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10226 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10227
10228 if (rhs->expr_type == EXPR_CONSTANT)
10229 rlen = rhs->value.character.length;
10230
10231 else if (rhs->ts.u.cl != NULL
10232 && rhs->ts.u.cl->length != NULL
10233 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10234 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10235
10236 if (rlen && llen && rlen > llen)
10237 gfc_warning_now (OPT_Wcharacter_truncation,
10238 "CHARACTER expression will be truncated "
10239 "in assignment (%ld/%ld) at %L",
10240 (long) llen, (long) rlen, &code->loc);
10241 }
10242
10243 /* Ensure that a vector index expression for the lvalue is evaluated
10244 to a temporary if the lvalue symbol is referenced in it. */
10245 if (lhs->rank)
10246 {
10247 for (ref = lhs->ref; ref; ref= ref->next)
10248 if (ref->type == REF_ARRAY)
10249 {
10250 for (n = 0; n < ref->u.ar.dimen; n++)
10251 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10252 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10253 ref->u.ar.start[n]))
10254 ref->u.ar.start[n]
10255 = gfc_get_parentheses (ref->u.ar.start[n]);
10256 }
10257 }
10258
10259 if (gfc_pure (NULL))
10260 {
10261 if (lhs->ts.type == BT_DERIVED
10262 && lhs->expr_type == EXPR_VARIABLE
10263 && lhs->ts.u.derived->attr.pointer_comp
10264 && rhs->expr_type == EXPR_VARIABLE
10265 && (gfc_impure_variable (rhs->symtree->n.sym)
10266 || gfc_is_coindexed (rhs)))
10267 {
10268 /* F2008, C1283. */
10269 if (gfc_is_coindexed (rhs))
10270 gfc_error ("Coindexed expression at %L is assigned to "
10271 "a derived type variable with a POINTER "
10272 "component in a PURE procedure",
10273 &rhs->where);
10274 else
10275 gfc_error ("The impure variable at %L is assigned to "
10276 "a derived type variable with a POINTER "
10277 "component in a PURE procedure (12.6)",
10278 &rhs->where);
10279 return rval;
10280 }
10281
10282 /* Fortran 2008, C1283. */
10283 if (gfc_is_coindexed (lhs))
10284 {
10285 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10286 "procedure", &rhs->where);
10287 return rval;
10288 }
10289 }
10290
10291 if (gfc_implicit_pure (NULL))
10292 {
10293 if (lhs->expr_type == EXPR_VARIABLE
10294 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10295 && lhs->symtree->n.sym->ns != gfc_current_ns)
10296 gfc_unset_implicit_pure (NULL);
10297
10298 if (lhs->ts.type == BT_DERIVED
10299 && lhs->expr_type == EXPR_VARIABLE
10300 && lhs->ts.u.derived->attr.pointer_comp
10301 && rhs->expr_type == EXPR_VARIABLE
10302 && (gfc_impure_variable (rhs->symtree->n.sym)
10303 || gfc_is_coindexed (rhs)))
10304 gfc_unset_implicit_pure (NULL);
10305
10306 /* Fortran 2008, C1283. */
10307 if (gfc_is_coindexed (lhs))
10308 gfc_unset_implicit_pure (NULL);
10309 }
10310
10311 /* F2008, 7.2.1.2. */
10312 attr = gfc_expr_attr (lhs);
10313 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10314 {
10315 if (attr.codimension)
10316 {
10317 gfc_error ("Assignment to polymorphic coarray at %L is not "
10318 "permitted", &lhs->where);
10319 return false;
10320 }
10321 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10322 "polymorphic variable at %L", &lhs->where))
10323 return false;
10324 if (!flag_realloc_lhs)
10325 {
10326 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10327 "requires %<-frealloc-lhs%>", &lhs->where);
10328 return false;
10329 }
10330 }
10331 else if (lhs->ts.type == BT_CLASS)
10332 {
10333 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10334 "assignment at %L - check that there is a matching specific "
10335 "subroutine for '=' operator", &lhs->where);
10336 return false;
10337 }
10338
10339 bool lhs_coindexed = gfc_is_coindexed (lhs);
10340
10341 /* F2008, Section 7.2.1.2. */
10342 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10343 {
10344 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10345 "component in assignment at %L", &lhs->where);
10346 return false;
10347 }
10348
10349 /* Assign the 'data' of a class object to a derived type. */
10350 if (lhs->ts.type == BT_DERIVED
10351 && rhs->ts.type == BT_CLASS
10352 && rhs->expr_type != EXPR_ARRAY)
10353 gfc_add_data_component (rhs);
10354
10355 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
10356 && (lhs_coindexed
10357 || (code->expr2->expr_type == EXPR_FUNCTION
10358 && code->expr2->value.function.isym
10359 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
10360 && (code->expr1->rank == 0 || code->expr2->rank != 0)
10361 && !gfc_expr_attr (rhs).allocatable
10362 && !gfc_has_vector_subscript (rhs)));
10363
10364 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
10365
10366 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10367 Additionally, insert this code when the RHS is a CAF as we then use the
10368 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10369 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10370 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10371 path. */
10372 if (caf_convert_to_send)
10373 {
10374 if (code->expr2->expr_type == EXPR_FUNCTION
10375 && code->expr2->value.function.isym
10376 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
10377 remove_caf_get_intrinsic (code->expr2);
10378 code->op = EXEC_CALL;
10379 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
10380 code->resolved_sym = code->symtree->n.sym;
10381 code->resolved_sym->attr.flavor = FL_PROCEDURE;
10382 code->resolved_sym->attr.intrinsic = 1;
10383 code->resolved_sym->attr.subroutine = 1;
10384 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
10385 gfc_commit_symbol (code->resolved_sym);
10386 code->ext.actual = gfc_get_actual_arglist ();
10387 code->ext.actual->expr = lhs;
10388 code->ext.actual->next = gfc_get_actual_arglist ();
10389 code->ext.actual->next->expr = rhs;
10390 code->expr1 = NULL;
10391 code->expr2 = NULL;
10392 }
10393
10394 return false;
10395 }
10396
10397
10398 /* Add a component reference onto an expression. */
10399
10400 static void
10401 add_comp_ref (gfc_expr *e, gfc_component *c)
10402 {
10403 gfc_ref **ref;
10404 ref = &(e->ref);
10405 while (*ref)
10406 ref = &((*ref)->next);
10407 *ref = gfc_get_ref ();
10408 (*ref)->type = REF_COMPONENT;
10409 (*ref)->u.c.sym = e->ts.u.derived;
10410 (*ref)->u.c.component = c;
10411 e->ts = c->ts;
10412
10413 /* Add a full array ref, as necessary. */
10414 if (c->as)
10415 {
10416 gfc_add_full_array_ref (e, c->as);
10417 e->rank = c->as->rank;
10418 }
10419 }
10420
10421
10422 /* Build an assignment. Keep the argument 'op' for future use, so that
10423 pointer assignments can be made. */
10424
10425 static gfc_code *
10426 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
10427 gfc_component *comp1, gfc_component *comp2, locus loc)
10428 {
10429 gfc_code *this_code;
10430
10431 this_code = gfc_get_code (op);
10432 this_code->next = NULL;
10433 this_code->expr1 = gfc_copy_expr (expr1);
10434 this_code->expr2 = gfc_copy_expr (expr2);
10435 this_code->loc = loc;
10436 if (comp1 && comp2)
10437 {
10438 add_comp_ref (this_code->expr1, comp1);
10439 add_comp_ref (this_code->expr2, comp2);
10440 }
10441
10442 return this_code;
10443 }
10444
10445
10446 /* Makes a temporary variable expression based on the characteristics of
10447 a given variable expression. */
10448
10449 static gfc_expr*
10450 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
10451 {
10452 static int serial = 0;
10453 char name[GFC_MAX_SYMBOL_LEN];
10454 gfc_symtree *tmp;
10455 gfc_array_spec *as;
10456 gfc_array_ref *aref;
10457 gfc_ref *ref;
10458
10459 sprintf (name, GFC_PREFIX("DA%d"), serial++);
10460 gfc_get_sym_tree (name, ns, &tmp, false);
10461 gfc_add_type (tmp->n.sym, &e->ts, NULL);
10462
10463 as = NULL;
10464 ref = NULL;
10465 aref = NULL;
10466
10467 /* Obtain the arrayspec for the temporary. */
10468 if (e->rank && e->expr_type != EXPR_ARRAY
10469 && e->expr_type != EXPR_FUNCTION
10470 && e->expr_type != EXPR_OP)
10471 {
10472 aref = gfc_find_array_ref (e);
10473 if (e->expr_type == EXPR_VARIABLE
10474 && e->symtree->n.sym->as == aref->as)
10475 as = aref->as;
10476 else
10477 {
10478 for (ref = e->ref; ref; ref = ref->next)
10479 if (ref->type == REF_COMPONENT
10480 && ref->u.c.component->as == aref->as)
10481 {
10482 as = aref->as;
10483 break;
10484 }
10485 }
10486 }
10487
10488 /* Add the attributes and the arrayspec to the temporary. */
10489 tmp->n.sym->attr = gfc_expr_attr (e);
10490 tmp->n.sym->attr.function = 0;
10491 tmp->n.sym->attr.result = 0;
10492 tmp->n.sym->attr.flavor = FL_VARIABLE;
10493
10494 if (as)
10495 {
10496 tmp->n.sym->as = gfc_copy_array_spec (as);
10497 if (!ref)
10498 ref = e->ref;
10499 if (as->type == AS_DEFERRED)
10500 tmp->n.sym->attr.allocatable = 1;
10501 }
10502 else if (e->rank && (e->expr_type == EXPR_ARRAY
10503 || e->expr_type == EXPR_FUNCTION
10504 || e->expr_type == EXPR_OP))
10505 {
10506 tmp->n.sym->as = gfc_get_array_spec ();
10507 tmp->n.sym->as->type = AS_DEFERRED;
10508 tmp->n.sym->as->rank = e->rank;
10509 tmp->n.sym->attr.allocatable = 1;
10510 tmp->n.sym->attr.dimension = 1;
10511 }
10512 else
10513 tmp->n.sym->attr.dimension = 0;
10514
10515 gfc_set_sym_referenced (tmp->n.sym);
10516 gfc_commit_symbol (tmp->n.sym);
10517 e = gfc_lval_expr_from_sym (tmp->n.sym);
10518
10519 /* Should the lhs be a section, use its array ref for the
10520 temporary expression. */
10521 if (aref && aref->type != AR_FULL)
10522 {
10523 gfc_free_ref_list (e->ref);
10524 e->ref = gfc_copy_ref (ref);
10525 }
10526 return e;
10527 }
10528
10529
10530 /* Add one line of code to the code chain, making sure that 'head' and
10531 'tail' are appropriately updated. */
10532
10533 static void
10534 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
10535 {
10536 gcc_assert (this_code);
10537 if (*head == NULL)
10538 *head = *tail = *this_code;
10539 else
10540 *tail = gfc_append_code (*tail, *this_code);
10541 *this_code = NULL;
10542 }
10543
10544
10545 /* Counts the potential number of part array references that would
10546 result from resolution of typebound defined assignments. */
10547
10548 static int
10549 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
10550 {
10551 gfc_component *c;
10552 int c_depth = 0, t_depth;
10553
10554 for (c= derived->components; c; c = c->next)
10555 {
10556 if ((!gfc_bt_struct (c->ts.type)
10557 || c->attr.pointer
10558 || c->attr.allocatable
10559 || c->attr.proc_pointer_comp
10560 || c->attr.class_pointer
10561 || c->attr.proc_pointer)
10562 && !c->attr.defined_assign_comp)
10563 continue;
10564
10565 if (c->as && c_depth == 0)
10566 c_depth = 1;
10567
10568 if (c->ts.u.derived->attr.defined_assign_comp)
10569 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
10570 c->as ? 1 : 0);
10571 else
10572 t_depth = 0;
10573
10574 c_depth = t_depth > c_depth ? t_depth : c_depth;
10575 }
10576 return depth + c_depth;
10577 }
10578
10579
10580 /* Implement 7.2.1.3 of the F08 standard:
10581 "An intrinsic assignment where the variable is of derived type is
10582 performed as if each component of the variable were assigned from the
10583 corresponding component of expr using pointer assignment (7.2.2) for
10584 each pointer component, defined assignment for each nonpointer
10585 nonallocatable component of a type that has a type-bound defined
10586 assignment consistent with the component, intrinsic assignment for
10587 each other nonpointer nonallocatable component, ..."
10588
10589 The pointer assignments are taken care of by the intrinsic
10590 assignment of the structure itself. This function recursively adds
10591 defined assignments where required. The recursion is accomplished
10592 by calling gfc_resolve_code.
10593
10594 When the lhs in a defined assignment has intent INOUT, we need a
10595 temporary for the lhs. In pseudo-code:
10596
10597 ! Only call function lhs once.
10598 if (lhs is not a constant or an variable)
10599 temp_x = expr2
10600 expr2 => temp_x
10601 ! Do the intrinsic assignment
10602 expr1 = expr2
10603 ! Now do the defined assignments
10604 do over components with typebound defined assignment [%cmp]
10605 #if one component's assignment procedure is INOUT
10606 t1 = expr1
10607 #if expr2 non-variable
10608 temp_x = expr2
10609 expr2 => temp_x
10610 # endif
10611 expr1 = expr2
10612 # for each cmp
10613 t1%cmp {defined=} expr2%cmp
10614 expr1%cmp = t1%cmp
10615 #else
10616 expr1 = expr2
10617
10618 # for each cmp
10619 expr1%cmp {defined=} expr2%cmp
10620 #endif
10621 */
10622
10623 /* The temporary assignments have to be put on top of the additional
10624 code to avoid the result being changed by the intrinsic assignment.
10625 */
10626 static int component_assignment_level = 0;
10627 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
10628
10629 static void
10630 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
10631 {
10632 gfc_component *comp1, *comp2;
10633 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
10634 gfc_expr *t1;
10635 int error_count, depth;
10636
10637 gfc_get_errors (NULL, &error_count);
10638
10639 /* Filter out continuing processing after an error. */
10640 if (error_count
10641 || (*code)->expr1->ts.type != BT_DERIVED
10642 || (*code)->expr2->ts.type != BT_DERIVED)
10643 return;
10644
10645 /* TODO: Handle more than one part array reference in assignments. */
10646 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
10647 (*code)->expr1->rank ? 1 : 0);
10648 if (depth > 1)
10649 {
10650 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
10651 "done because multiple part array references would "
10652 "occur in intermediate expressions.", &(*code)->loc);
10653 return;
10654 }
10655
10656 component_assignment_level++;
10657
10658 /* Create a temporary so that functions get called only once. */
10659 if ((*code)->expr2->expr_type != EXPR_VARIABLE
10660 && (*code)->expr2->expr_type != EXPR_CONSTANT)
10661 {
10662 gfc_expr *tmp_expr;
10663
10664 /* Assign the rhs to the temporary. */
10665 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
10666 this_code = build_assignment (EXEC_ASSIGN,
10667 tmp_expr, (*code)->expr2,
10668 NULL, NULL, (*code)->loc);
10669 /* Add the code and substitute the rhs expression. */
10670 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
10671 gfc_free_expr ((*code)->expr2);
10672 (*code)->expr2 = tmp_expr;
10673 }
10674
10675 /* Do the intrinsic assignment. This is not needed if the lhs is one
10676 of the temporaries generated here, since the intrinsic assignment
10677 to the final result already does this. */
10678 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
10679 {
10680 this_code = build_assignment (EXEC_ASSIGN,
10681 (*code)->expr1, (*code)->expr2,
10682 NULL, NULL, (*code)->loc);
10683 add_code_to_chain (&this_code, &head, &tail);
10684 }
10685
10686 comp1 = (*code)->expr1->ts.u.derived->components;
10687 comp2 = (*code)->expr2->ts.u.derived->components;
10688
10689 t1 = NULL;
10690 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
10691 {
10692 bool inout = false;
10693
10694 /* The intrinsic assignment does the right thing for pointers
10695 of all kinds and allocatable components. */
10696 if (!gfc_bt_struct (comp1->ts.type)
10697 || comp1->attr.pointer
10698 || comp1->attr.allocatable
10699 || comp1->attr.proc_pointer_comp
10700 || comp1->attr.class_pointer
10701 || comp1->attr.proc_pointer)
10702 continue;
10703
10704 /* Make an assigment for this component. */
10705 this_code = build_assignment (EXEC_ASSIGN,
10706 (*code)->expr1, (*code)->expr2,
10707 comp1, comp2, (*code)->loc);
10708
10709 /* Convert the assignment if there is a defined assignment for
10710 this type. Otherwise, using the call from gfc_resolve_code,
10711 recurse into its components. */
10712 gfc_resolve_code (this_code, ns);
10713
10714 if (this_code->op == EXEC_ASSIGN_CALL)
10715 {
10716 gfc_formal_arglist *dummy_args;
10717 gfc_symbol *rsym;
10718 /* Check that there is a typebound defined assignment. If not,
10719 then this must be a module defined assignment. We cannot
10720 use the defined_assign_comp attribute here because it must
10721 be this derived type that has the defined assignment and not
10722 a parent type. */
10723 if (!(comp1->ts.u.derived->f2k_derived
10724 && comp1->ts.u.derived->f2k_derived
10725 ->tb_op[INTRINSIC_ASSIGN]))
10726 {
10727 gfc_free_statements (this_code);
10728 this_code = NULL;
10729 continue;
10730 }
10731
10732 /* If the first argument of the subroutine has intent INOUT
10733 a temporary must be generated and used instead. */
10734 rsym = this_code->resolved_sym;
10735 dummy_args = gfc_sym_get_dummy_args (rsym);
10736 if (dummy_args
10737 && dummy_args->sym->attr.intent == INTENT_INOUT)
10738 {
10739 gfc_code *temp_code;
10740 inout = true;
10741
10742 /* Build the temporary required for the assignment and put
10743 it at the head of the generated code. */
10744 if (!t1)
10745 {
10746 t1 = get_temp_from_expr ((*code)->expr1, ns);
10747 temp_code = build_assignment (EXEC_ASSIGN,
10748 t1, (*code)->expr1,
10749 NULL, NULL, (*code)->loc);
10750
10751 /* For allocatable LHS, check whether it is allocated. Note
10752 that allocatable components with defined assignment are
10753 not yet support. See PR 57696. */
10754 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
10755 {
10756 gfc_code *block;
10757 gfc_expr *e =
10758 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
10759 block = gfc_get_code (EXEC_IF);
10760 block->block = gfc_get_code (EXEC_IF);
10761 block->block->expr1
10762 = gfc_build_intrinsic_call (ns,
10763 GFC_ISYM_ALLOCATED, "allocated",
10764 (*code)->loc, 1, e);
10765 block->block->next = temp_code;
10766 temp_code = block;
10767 }
10768 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
10769 }
10770
10771 /* Replace the first actual arg with the component of the
10772 temporary. */
10773 gfc_free_expr (this_code->ext.actual->expr);
10774 this_code->ext.actual->expr = gfc_copy_expr (t1);
10775 add_comp_ref (this_code->ext.actual->expr, comp1);
10776
10777 /* If the LHS variable is allocatable and wasn't allocated and
10778 the temporary is allocatable, pointer assign the address of
10779 the freshly allocated LHS to the temporary. */
10780 if ((*code)->expr1->symtree->n.sym->attr.allocatable
10781 && gfc_expr_attr ((*code)->expr1).allocatable)
10782 {
10783 gfc_code *block;
10784 gfc_expr *cond;
10785
10786 cond = gfc_get_expr ();
10787 cond->ts.type = BT_LOGICAL;
10788 cond->ts.kind = gfc_default_logical_kind;
10789 cond->expr_type = EXPR_OP;
10790 cond->where = (*code)->loc;
10791 cond->value.op.op = INTRINSIC_NOT;
10792 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
10793 GFC_ISYM_ALLOCATED, "allocated",
10794 (*code)->loc, 1, gfc_copy_expr (t1));
10795 block = gfc_get_code (EXEC_IF);
10796 block->block = gfc_get_code (EXEC_IF);
10797 block->block->expr1 = cond;
10798 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
10799 t1, (*code)->expr1,
10800 NULL, NULL, (*code)->loc);
10801 add_code_to_chain (&block, &head, &tail);
10802 }
10803 }
10804 }
10805 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
10806 {
10807 /* Don't add intrinsic assignments since they are already
10808 effected by the intrinsic assignment of the structure. */
10809 gfc_free_statements (this_code);
10810 this_code = NULL;
10811 continue;
10812 }
10813
10814 add_code_to_chain (&this_code, &head, &tail);
10815
10816 if (t1 && inout)
10817 {
10818 /* Transfer the value to the final result. */
10819 this_code = build_assignment (EXEC_ASSIGN,
10820 (*code)->expr1, t1,
10821 comp1, comp2, (*code)->loc);
10822 add_code_to_chain (&this_code, &head, &tail);
10823 }
10824 }
10825
10826 /* Put the temporary assignments at the top of the generated code. */
10827 if (tmp_head && component_assignment_level == 1)
10828 {
10829 gfc_append_code (tmp_head, head);
10830 head = tmp_head;
10831 tmp_head = tmp_tail = NULL;
10832 }
10833
10834 // If we did a pointer assignment - thus, we need to ensure that the LHS is
10835 // not accidentally deallocated. Hence, nullify t1.
10836 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
10837 && gfc_expr_attr ((*code)->expr1).allocatable)
10838 {
10839 gfc_code *block;
10840 gfc_expr *cond;
10841 gfc_expr *e;
10842
10843 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
10844 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
10845 (*code)->loc, 2, gfc_copy_expr (t1), e);
10846 block = gfc_get_code (EXEC_IF);
10847 block->block = gfc_get_code (EXEC_IF);
10848 block->block->expr1 = cond;
10849 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
10850 t1, gfc_get_null_expr (&(*code)->loc),
10851 NULL, NULL, (*code)->loc);
10852 gfc_append_code (tail, block);
10853 tail = block;
10854 }
10855
10856 /* Now attach the remaining code chain to the input code. Step on
10857 to the end of the new code since resolution is complete. */
10858 gcc_assert ((*code)->op == EXEC_ASSIGN);
10859 tail->next = (*code)->next;
10860 /* Overwrite 'code' because this would place the intrinsic assignment
10861 before the temporary for the lhs is created. */
10862 gfc_free_expr ((*code)->expr1);
10863 gfc_free_expr ((*code)->expr2);
10864 **code = *head;
10865 if (head != tail)
10866 free (head);
10867 *code = tail;
10868
10869 component_assignment_level--;
10870 }
10871
10872
10873 /* F2008: Pointer function assignments are of the form:
10874 ptr_fcn (args) = expr
10875 This function breaks these assignments into two statements:
10876 temporary_pointer => ptr_fcn(args)
10877 temporary_pointer = expr */
10878
10879 static bool
10880 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
10881 {
10882 gfc_expr *tmp_ptr_expr;
10883 gfc_code *this_code;
10884 gfc_component *comp;
10885 gfc_symbol *s;
10886
10887 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
10888 return false;
10889
10890 /* Even if standard does not support this feature, continue to build
10891 the two statements to avoid upsetting frontend_passes.c. */
10892 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
10893 "%L", &(*code)->loc);
10894
10895 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
10896
10897 if (comp)
10898 s = comp->ts.interface;
10899 else
10900 s = (*code)->expr1->symtree->n.sym;
10901
10902 if (s == NULL || !s->result->attr.pointer)
10903 {
10904 gfc_error ("The function result on the lhs of the assignment at "
10905 "%L must have the pointer attribute.",
10906 &(*code)->expr1->where);
10907 (*code)->op = EXEC_NOP;
10908 return false;
10909 }
10910
10911 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
10912
10913 /* get_temp_from_expression is set up for ordinary assignments. To that
10914 end, where array bounds are not known, arrays are made allocatable.
10915 Change the temporary to a pointer here. */
10916 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
10917 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
10918 tmp_ptr_expr->where = (*code)->loc;
10919
10920 this_code = build_assignment (EXEC_ASSIGN,
10921 tmp_ptr_expr, (*code)->expr2,
10922 NULL, NULL, (*code)->loc);
10923 this_code->next = (*code)->next;
10924 (*code)->next = this_code;
10925 (*code)->op = EXEC_POINTER_ASSIGN;
10926 (*code)->expr2 = (*code)->expr1;
10927 (*code)->expr1 = tmp_ptr_expr;
10928
10929 return true;
10930 }
10931
10932
10933 /* Deferred character length assignments from an operator expression
10934 require a temporary because the character length of the lhs can
10935 change in the course of the assignment. */
10936
10937 static bool
10938 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
10939 {
10940 gfc_expr *tmp_expr;
10941 gfc_code *this_code;
10942
10943 if (!((*code)->expr1->ts.type == BT_CHARACTER
10944 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
10945 && (*code)->expr2->expr_type == EXPR_OP))
10946 return false;
10947
10948 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
10949 return false;
10950
10951 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
10952 tmp_expr->where = (*code)->loc;
10953
10954 /* A new charlen is required to ensure that the variable string
10955 length is different to that of the original lhs. */
10956 tmp_expr->ts.u.cl = gfc_get_charlen();
10957 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
10958 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
10959 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
10960
10961 tmp_expr->symtree->n.sym->ts.deferred = 1;
10962
10963 this_code = build_assignment (EXEC_ASSIGN,
10964 (*code)->expr1,
10965 gfc_copy_expr (tmp_expr),
10966 NULL, NULL, (*code)->loc);
10967
10968 (*code)->expr1 = tmp_expr;
10969
10970 this_code->next = (*code)->next;
10971 (*code)->next = this_code;
10972
10973 return true;
10974 }
10975
10976
10977 /* Given a block of code, recursively resolve everything pointed to by this
10978 code block. */
10979
10980 void
10981 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
10982 {
10983 int omp_workshare_save;
10984 int forall_save, do_concurrent_save;
10985 code_stack frame;
10986 bool t;
10987
10988 frame.prev = cs_base;
10989 frame.head = code;
10990 cs_base = &frame;
10991
10992 find_reachable_labels (code);
10993
10994 for (; code; code = code->next)
10995 {
10996 frame.current = code;
10997 forall_save = forall_flag;
10998 do_concurrent_save = gfc_do_concurrent_flag;
10999
11000 if (code->op == EXEC_FORALL)
11001 {
11002 forall_flag = 1;
11003 gfc_resolve_forall (code, ns, forall_save);
11004 forall_flag = 2;
11005 }
11006 else if (code->block)
11007 {
11008 omp_workshare_save = -1;
11009 switch (code->op)
11010 {
11011 case EXEC_OACC_PARALLEL_LOOP:
11012 case EXEC_OACC_PARALLEL:
11013 case EXEC_OACC_KERNELS_LOOP:
11014 case EXEC_OACC_KERNELS:
11015 case EXEC_OACC_DATA:
11016 case EXEC_OACC_HOST_DATA:
11017 case EXEC_OACC_LOOP:
11018 gfc_resolve_oacc_blocks (code, ns);
11019 break;
11020 case EXEC_OMP_PARALLEL_WORKSHARE:
11021 omp_workshare_save = omp_workshare_flag;
11022 omp_workshare_flag = 1;
11023 gfc_resolve_omp_parallel_blocks (code, ns);
11024 break;
11025 case EXEC_OMP_PARALLEL:
11026 case EXEC_OMP_PARALLEL_DO:
11027 case EXEC_OMP_PARALLEL_DO_SIMD:
11028 case EXEC_OMP_PARALLEL_SECTIONS:
11029 case EXEC_OMP_TARGET_PARALLEL:
11030 case EXEC_OMP_TARGET_PARALLEL_DO:
11031 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11032 case EXEC_OMP_TARGET_TEAMS:
11033 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11034 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11035 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11036 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11037 case EXEC_OMP_TASK:
11038 case EXEC_OMP_TASKLOOP:
11039 case EXEC_OMP_TASKLOOP_SIMD:
11040 case EXEC_OMP_TEAMS:
11041 case EXEC_OMP_TEAMS_DISTRIBUTE:
11042 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11043 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11044 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11045 omp_workshare_save = omp_workshare_flag;
11046 omp_workshare_flag = 0;
11047 gfc_resolve_omp_parallel_blocks (code, ns);
11048 break;
11049 case EXEC_OMP_DISTRIBUTE:
11050 case EXEC_OMP_DISTRIBUTE_SIMD:
11051 case EXEC_OMP_DO:
11052 case EXEC_OMP_DO_SIMD:
11053 case EXEC_OMP_SIMD:
11054 case EXEC_OMP_TARGET_SIMD:
11055 gfc_resolve_omp_do_blocks (code, ns);
11056 break;
11057 case EXEC_SELECT_TYPE:
11058 /* Blocks are handled in resolve_select_type because we have
11059 to transform the SELECT TYPE into ASSOCIATE first. */
11060 break;
11061 case EXEC_DO_CONCURRENT:
11062 gfc_do_concurrent_flag = 1;
11063 gfc_resolve_blocks (code->block, ns);
11064 gfc_do_concurrent_flag = 2;
11065 break;
11066 case EXEC_OMP_WORKSHARE:
11067 omp_workshare_save = omp_workshare_flag;
11068 omp_workshare_flag = 1;
11069 /* FALL THROUGH */
11070 default:
11071 gfc_resolve_blocks (code->block, ns);
11072 break;
11073 }
11074
11075 if (omp_workshare_save != -1)
11076 omp_workshare_flag = omp_workshare_save;
11077 }
11078 start:
11079 t = true;
11080 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11081 t = gfc_resolve_expr (code->expr1);
11082 forall_flag = forall_save;
11083 gfc_do_concurrent_flag = do_concurrent_save;
11084
11085 if (!gfc_resolve_expr (code->expr2))
11086 t = false;
11087
11088 if (code->op == EXEC_ALLOCATE
11089 && !gfc_resolve_expr (code->expr3))
11090 t = false;
11091
11092 switch (code->op)
11093 {
11094 case EXEC_NOP:
11095 case EXEC_END_BLOCK:
11096 case EXEC_END_NESTED_BLOCK:
11097 case EXEC_CYCLE:
11098 case EXEC_PAUSE:
11099 case EXEC_STOP:
11100 case EXEC_ERROR_STOP:
11101 case EXEC_EXIT:
11102 case EXEC_CONTINUE:
11103 case EXEC_DT_END:
11104 case EXEC_ASSIGN_CALL:
11105 break;
11106
11107 case EXEC_CRITICAL:
11108 resolve_critical (code);
11109 break;
11110
11111 case EXEC_SYNC_ALL:
11112 case EXEC_SYNC_IMAGES:
11113 case EXEC_SYNC_MEMORY:
11114 resolve_sync (code);
11115 break;
11116
11117 case EXEC_LOCK:
11118 case EXEC_UNLOCK:
11119 case EXEC_EVENT_POST:
11120 case EXEC_EVENT_WAIT:
11121 resolve_lock_unlock_event (code);
11122 break;
11123
11124 case EXEC_FAIL_IMAGE:
11125 case EXEC_FORM_TEAM:
11126 case EXEC_CHANGE_TEAM:
11127 case EXEC_END_TEAM:
11128 case EXEC_SYNC_TEAM:
11129 break;
11130
11131 case EXEC_ENTRY:
11132 /* Keep track of which entry we are up to. */
11133 current_entry_id = code->ext.entry->id;
11134 break;
11135
11136 case EXEC_WHERE:
11137 resolve_where (code, NULL);
11138 break;
11139
11140 case EXEC_GOTO:
11141 if (code->expr1 != NULL)
11142 {
11143 if (code->expr1->ts.type != BT_INTEGER)
11144 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11145 "INTEGER variable", &code->expr1->where);
11146 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11147 gfc_error ("Variable %qs has not been assigned a target "
11148 "label at %L", code->expr1->symtree->n.sym->name,
11149 &code->expr1->where);
11150 }
11151 else
11152 resolve_branch (code->label1, code);
11153 break;
11154
11155 case EXEC_RETURN:
11156 if (code->expr1 != NULL
11157 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11158 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11159 "INTEGER return specifier", &code->expr1->where);
11160 break;
11161
11162 case EXEC_INIT_ASSIGN:
11163 case EXEC_END_PROCEDURE:
11164 break;
11165
11166 case EXEC_ASSIGN:
11167 if (!t)
11168 break;
11169
11170 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11171 the LHS. */
11172 if (code->expr1->expr_type == EXPR_FUNCTION
11173 && code->expr1->value.function.isym
11174 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11175 remove_caf_get_intrinsic (code->expr1);
11176
11177 /* If this is a pointer function in an lvalue variable context,
11178 the new code will have to be resolved afresh. This is also the
11179 case with an error, where the code is transformed into NOP to
11180 prevent ICEs downstream. */
11181 if (resolve_ptr_fcn_assign (&code, ns)
11182 || code->op == EXEC_NOP)
11183 goto start;
11184
11185 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11186 _("assignment")))
11187 break;
11188
11189 if (resolve_ordinary_assign (code, ns))
11190 {
11191 if (code->op == EXEC_COMPCALL)
11192 goto compcall;
11193 else
11194 goto call;
11195 }
11196
11197 /* Check for dependencies in deferred character length array
11198 assignments and generate a temporary, if necessary. */
11199 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11200 break;
11201
11202 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11203 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11204 && code->expr1->ts.u.derived
11205 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11206 generate_component_assignments (&code, ns);
11207
11208 break;
11209
11210 case EXEC_LABEL_ASSIGN:
11211 if (code->label1->defined == ST_LABEL_UNKNOWN)
11212 gfc_error ("Label %d referenced at %L is never defined",
11213 code->label1->value, &code->label1->where);
11214 if (t
11215 && (code->expr1->expr_type != EXPR_VARIABLE
11216 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11217 || code->expr1->symtree->n.sym->ts.kind
11218 != gfc_default_integer_kind
11219 || code->expr1->symtree->n.sym->as != NULL))
11220 gfc_error ("ASSIGN statement at %L requires a scalar "
11221 "default INTEGER variable", &code->expr1->where);
11222 break;
11223
11224 case EXEC_POINTER_ASSIGN:
11225 {
11226 gfc_expr* e;
11227
11228 if (!t)
11229 break;
11230
11231 /* This is both a variable definition and pointer assignment
11232 context, so check both of them. For rank remapping, a final
11233 array ref may be present on the LHS and fool gfc_expr_attr
11234 used in gfc_check_vardef_context. Remove it. */
11235 e = remove_last_array_ref (code->expr1);
11236 t = gfc_check_vardef_context (e, true, false, false,
11237 _("pointer assignment"));
11238 if (t)
11239 t = gfc_check_vardef_context (e, false, false, false,
11240 _("pointer assignment"));
11241 gfc_free_expr (e);
11242 if (!t)
11243 break;
11244
11245 gfc_check_pointer_assign (code->expr1, code->expr2);
11246
11247 /* Assigning a class object always is a regular assign. */
11248 if (code->expr2->ts.type == BT_CLASS
11249 && code->expr1->ts.type == BT_CLASS
11250 && !CLASS_DATA (code->expr2)->attr.dimension
11251 && !(gfc_expr_attr (code->expr1).proc_pointer
11252 && code->expr2->expr_type == EXPR_VARIABLE
11253 && code->expr2->symtree->n.sym->attr.flavor
11254 == FL_PROCEDURE))
11255 code->op = EXEC_ASSIGN;
11256 break;
11257 }
11258
11259 case EXEC_ARITHMETIC_IF:
11260 {
11261 gfc_expr *e = code->expr1;
11262
11263 gfc_resolve_expr (e);
11264 if (e->expr_type == EXPR_NULL)
11265 gfc_error ("Invalid NULL at %L", &e->where);
11266
11267 if (t && (e->rank > 0
11268 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11269 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11270 "REAL or INTEGER expression", &e->where);
11271
11272 resolve_branch (code->label1, code);
11273 resolve_branch (code->label2, code);
11274 resolve_branch (code->label3, code);
11275 }
11276 break;
11277
11278 case EXEC_IF:
11279 if (t && code->expr1 != NULL
11280 && (code->expr1->ts.type != BT_LOGICAL
11281 || code->expr1->rank != 0))
11282 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11283 &code->expr1->where);
11284 break;
11285
11286 case EXEC_CALL:
11287 call:
11288 resolve_call (code);
11289 break;
11290
11291 case EXEC_COMPCALL:
11292 compcall:
11293 resolve_typebound_subroutine (code);
11294 break;
11295
11296 case EXEC_CALL_PPC:
11297 resolve_ppc_call (code);
11298 break;
11299
11300 case EXEC_SELECT:
11301 /* Select is complicated. Also, a SELECT construct could be
11302 a transformed computed GOTO. */
11303 resolve_select (code, false);
11304 break;
11305
11306 case EXEC_SELECT_TYPE:
11307 resolve_select_type (code, ns);
11308 break;
11309
11310 case EXEC_BLOCK:
11311 resolve_block_construct (code);
11312 break;
11313
11314 case EXEC_DO:
11315 if (code->ext.iterator != NULL)
11316 {
11317 gfc_iterator *iter = code->ext.iterator;
11318 if (gfc_resolve_iterator (iter, true, false))
11319 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11320 true);
11321 }
11322 break;
11323
11324 case EXEC_DO_WHILE:
11325 if (code->expr1 == NULL)
11326 gfc_internal_error ("gfc_resolve_code(): No expression on "
11327 "DO WHILE");
11328 if (t
11329 && (code->expr1->rank != 0
11330 || code->expr1->ts.type != BT_LOGICAL))
11331 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11332 "a scalar LOGICAL expression", &code->expr1->where);
11333 break;
11334
11335 case EXEC_ALLOCATE:
11336 if (t)
11337 resolve_allocate_deallocate (code, "ALLOCATE");
11338
11339 break;
11340
11341 case EXEC_DEALLOCATE:
11342 if (t)
11343 resolve_allocate_deallocate (code, "DEALLOCATE");
11344
11345 break;
11346
11347 case EXEC_OPEN:
11348 if (!gfc_resolve_open (code->ext.open))
11349 break;
11350
11351 resolve_branch (code->ext.open->err, code);
11352 break;
11353
11354 case EXEC_CLOSE:
11355 if (!gfc_resolve_close (code->ext.close))
11356 break;
11357
11358 resolve_branch (code->ext.close->err, code);
11359 break;
11360
11361 case EXEC_BACKSPACE:
11362 case EXEC_ENDFILE:
11363 case EXEC_REWIND:
11364 case EXEC_FLUSH:
11365 if (!gfc_resolve_filepos (code->ext.filepos))
11366 break;
11367
11368 resolve_branch (code->ext.filepos->err, code);
11369 break;
11370
11371 case EXEC_INQUIRE:
11372 if (!gfc_resolve_inquire (code->ext.inquire))
11373 break;
11374
11375 resolve_branch (code->ext.inquire->err, code);
11376 break;
11377
11378 case EXEC_IOLENGTH:
11379 gcc_assert (code->ext.inquire != NULL);
11380 if (!gfc_resolve_inquire (code->ext.inquire))
11381 break;
11382
11383 resolve_branch (code->ext.inquire->err, code);
11384 break;
11385
11386 case EXEC_WAIT:
11387 if (!gfc_resolve_wait (code->ext.wait))
11388 break;
11389
11390 resolve_branch (code->ext.wait->err, code);
11391 resolve_branch (code->ext.wait->end, code);
11392 resolve_branch (code->ext.wait->eor, code);
11393 break;
11394
11395 case EXEC_READ:
11396 case EXEC_WRITE:
11397 if (!gfc_resolve_dt (code->ext.dt, &code->loc))
11398 break;
11399
11400 resolve_branch (code->ext.dt->err, code);
11401 resolve_branch (code->ext.dt->end, code);
11402 resolve_branch (code->ext.dt->eor, code);
11403 break;
11404
11405 case EXEC_TRANSFER:
11406 resolve_transfer (code);
11407 break;
11408
11409 case EXEC_DO_CONCURRENT:
11410 case EXEC_FORALL:
11411 resolve_forall_iterators (code->ext.forall_iterator);
11412
11413 if (code->expr1 != NULL
11414 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
11415 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
11416 "expression", &code->expr1->where);
11417 break;
11418
11419 case EXEC_OACC_PARALLEL_LOOP:
11420 case EXEC_OACC_PARALLEL:
11421 case EXEC_OACC_KERNELS_LOOP:
11422 case EXEC_OACC_KERNELS:
11423 case EXEC_OACC_DATA:
11424 case EXEC_OACC_HOST_DATA:
11425 case EXEC_OACC_LOOP:
11426 case EXEC_OACC_UPDATE:
11427 case EXEC_OACC_WAIT:
11428 case EXEC_OACC_CACHE:
11429 case EXEC_OACC_ENTER_DATA:
11430 case EXEC_OACC_EXIT_DATA:
11431 case EXEC_OACC_ATOMIC:
11432 case EXEC_OACC_DECLARE:
11433 gfc_resolve_oacc_directive (code, ns);
11434 break;
11435
11436 case EXEC_OMP_ATOMIC:
11437 case EXEC_OMP_BARRIER:
11438 case EXEC_OMP_CANCEL:
11439 case EXEC_OMP_CANCELLATION_POINT:
11440 case EXEC_OMP_CRITICAL:
11441 case EXEC_OMP_FLUSH:
11442 case EXEC_OMP_DISTRIBUTE:
11443 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
11444 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
11445 case EXEC_OMP_DISTRIBUTE_SIMD:
11446 case EXEC_OMP_DO:
11447 case EXEC_OMP_DO_SIMD:
11448 case EXEC_OMP_MASTER:
11449 case EXEC_OMP_ORDERED:
11450 case EXEC_OMP_SECTIONS:
11451 case EXEC_OMP_SIMD:
11452 case EXEC_OMP_SINGLE:
11453 case EXEC_OMP_TARGET:
11454 case EXEC_OMP_TARGET_DATA:
11455 case EXEC_OMP_TARGET_ENTER_DATA:
11456 case EXEC_OMP_TARGET_EXIT_DATA:
11457 case EXEC_OMP_TARGET_PARALLEL:
11458 case EXEC_OMP_TARGET_PARALLEL_DO:
11459 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11460 case EXEC_OMP_TARGET_SIMD:
11461 case EXEC_OMP_TARGET_TEAMS:
11462 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11463 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11464 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11465 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11466 case EXEC_OMP_TARGET_UPDATE:
11467 case EXEC_OMP_TASK:
11468 case EXEC_OMP_TASKGROUP:
11469 case EXEC_OMP_TASKLOOP:
11470 case EXEC_OMP_TASKLOOP_SIMD:
11471 case EXEC_OMP_TASKWAIT:
11472 case EXEC_OMP_TASKYIELD:
11473 case EXEC_OMP_TEAMS:
11474 case EXEC_OMP_TEAMS_DISTRIBUTE:
11475 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11476 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11477 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11478 case EXEC_OMP_WORKSHARE:
11479 gfc_resolve_omp_directive (code, ns);
11480 break;
11481
11482 case EXEC_OMP_PARALLEL:
11483 case EXEC_OMP_PARALLEL_DO:
11484 case EXEC_OMP_PARALLEL_DO_SIMD:
11485 case EXEC_OMP_PARALLEL_SECTIONS:
11486 case EXEC_OMP_PARALLEL_WORKSHARE:
11487 omp_workshare_save = omp_workshare_flag;
11488 omp_workshare_flag = 0;
11489 gfc_resolve_omp_directive (code, ns);
11490 omp_workshare_flag = omp_workshare_save;
11491 break;
11492
11493 default:
11494 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
11495 }
11496 }
11497
11498 cs_base = frame.prev;
11499 }
11500
11501
11502 /* Resolve initial values and make sure they are compatible with
11503 the variable. */
11504
11505 static void
11506 resolve_values (gfc_symbol *sym)
11507 {
11508 bool t;
11509
11510 if (sym->value == NULL)
11511 return;
11512
11513 if (sym->value->expr_type == EXPR_STRUCTURE)
11514 t= resolve_structure_cons (sym->value, 1);
11515 else
11516 t = gfc_resolve_expr (sym->value);
11517
11518 if (!t)
11519 return;
11520
11521 gfc_check_assign_symbol (sym, NULL, sym->value);
11522 }
11523
11524
11525 /* Verify any BIND(C) derived types in the namespace so we can report errors
11526 for them once, rather than for each variable declared of that type. */
11527
11528 static void
11529 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
11530 {
11531 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
11532 && derived_sym->attr.is_bind_c == 1)
11533 verify_bind_c_derived_type (derived_sym);
11534
11535 return;
11536 }
11537
11538
11539 /* Check the interfaces of DTIO procedures associated with derived
11540 type 'sym'. These procedures can either have typebound bindings or
11541 can appear in DTIO generic interfaces. */
11542
11543 static void
11544 gfc_verify_DTIO_procedures (gfc_symbol *sym)
11545 {
11546 if (!sym || sym->attr.flavor != FL_DERIVED)
11547 return;
11548
11549 gfc_check_dtio_interfaces (sym);
11550
11551 return;
11552 }
11553
11554 /* Verify that any binding labels used in a given namespace do not collide
11555 with the names or binding labels of any global symbols. Multiple INTERFACE
11556 for the same procedure are permitted. */
11557
11558 static void
11559 gfc_verify_binding_labels (gfc_symbol *sym)
11560 {
11561 gfc_gsymbol *gsym;
11562 const char *module;
11563
11564 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
11565 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
11566 return;
11567
11568 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
11569
11570 if (sym->module)
11571 module = sym->module;
11572 else if (sym->ns && sym->ns->proc_name
11573 && sym->ns->proc_name->attr.flavor == FL_MODULE)
11574 module = sym->ns->proc_name->name;
11575 else if (sym->ns && sym->ns->parent
11576 && sym->ns && sym->ns->parent->proc_name
11577 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
11578 module = sym->ns->parent->proc_name->name;
11579 else
11580 module = NULL;
11581
11582 if (!gsym
11583 || (!gsym->defined
11584 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
11585 {
11586 if (!gsym)
11587 gsym = gfc_get_gsymbol (sym->binding_label);
11588 gsym->where = sym->declared_at;
11589 gsym->sym_name = sym->name;
11590 gsym->binding_label = sym->binding_label;
11591 gsym->ns = sym->ns;
11592 gsym->mod_name = module;
11593 if (sym->attr.function)
11594 gsym->type = GSYM_FUNCTION;
11595 else if (sym->attr.subroutine)
11596 gsym->type = GSYM_SUBROUTINE;
11597 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
11598 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
11599 return;
11600 }
11601
11602 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
11603 {
11604 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
11605 "identifier as entity at %L", sym->name,
11606 sym->binding_label, &sym->declared_at, &gsym->where);
11607 /* Clear the binding label to prevent checking multiple times. */
11608 sym->binding_label = NULL;
11609
11610 }
11611 else if (sym->attr.flavor == FL_VARIABLE && module
11612 && (strcmp (module, gsym->mod_name) != 0
11613 || strcmp (sym->name, gsym->sym_name) != 0))
11614 {
11615 /* This can only happen if the variable is defined in a module - if it
11616 isn't the same module, reject it. */
11617 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
11618 "uses the same global identifier as entity at %L from module %qs",
11619 sym->name, module, sym->binding_label,
11620 &sym->declared_at, &gsym->where, gsym->mod_name);
11621 sym->binding_label = NULL;
11622 }
11623 else if ((sym->attr.function || sym->attr.subroutine)
11624 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
11625 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
11626 && sym != gsym->ns->proc_name
11627 && (module != gsym->mod_name
11628 || strcmp (gsym->sym_name, sym->name) != 0
11629 || (module && strcmp (module, gsym->mod_name) != 0)))
11630 {
11631 /* Print an error if the procedure is defined multiple times; we have to
11632 exclude references to the same procedure via module association or
11633 multiple checks for the same procedure. */
11634 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
11635 "global identifier as entity at %L", sym->name,
11636 sym->binding_label, &sym->declared_at, &gsym->where);
11637 sym->binding_label = NULL;
11638 }
11639 }
11640
11641
11642 /* Resolve an index expression. */
11643
11644 static bool
11645 resolve_index_expr (gfc_expr *e)
11646 {
11647 if (!gfc_resolve_expr (e))
11648 return false;
11649
11650 if (!gfc_simplify_expr (e, 0))
11651 return false;
11652
11653 if (!gfc_specification_expr (e))
11654 return false;
11655
11656 return true;
11657 }
11658
11659
11660 /* Resolve a charlen structure. */
11661
11662 static bool
11663 resolve_charlen (gfc_charlen *cl)
11664 {
11665 int k;
11666 bool saved_specification_expr;
11667
11668 if (cl->resolved)
11669 return true;
11670
11671 cl->resolved = 1;
11672 saved_specification_expr = specification_expr;
11673 specification_expr = true;
11674
11675 if (cl->length_from_typespec)
11676 {
11677 if (!gfc_resolve_expr (cl->length))
11678 {
11679 specification_expr = saved_specification_expr;
11680 return false;
11681 }
11682
11683 if (!gfc_simplify_expr (cl->length, 0))
11684 {
11685 specification_expr = saved_specification_expr;
11686 return false;
11687 }
11688
11689 /* cl->length has been resolved. It should have an integer type. */
11690 if (cl->length->ts.type != BT_INTEGER)
11691 {
11692 gfc_error ("Scalar INTEGER expression expected at %L",
11693 &cl->length->where);
11694 return false;
11695 }
11696 }
11697 else
11698 {
11699 if (!resolve_index_expr (cl->length))
11700 {
11701 specification_expr = saved_specification_expr;
11702 return false;
11703 }
11704 }
11705
11706 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
11707 a negative value, the length of character entities declared is zero. */
11708 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11709 && mpz_sgn (cl->length->value.integer) < 0)
11710 gfc_replace_expr (cl->length,
11711 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
11712
11713 /* Check that the character length is not too large. */
11714 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
11715 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11716 && cl->length->ts.type == BT_INTEGER
11717 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
11718 {
11719 gfc_error ("String length at %L is too large", &cl->length->where);
11720 specification_expr = saved_specification_expr;
11721 return false;
11722 }
11723
11724 specification_expr = saved_specification_expr;
11725 return true;
11726 }
11727
11728
11729 /* Test for non-constant shape arrays. */
11730
11731 static bool
11732 is_non_constant_shape_array (gfc_symbol *sym)
11733 {
11734 gfc_expr *e;
11735 int i;
11736 bool not_constant;
11737
11738 not_constant = false;
11739 if (sym->as != NULL)
11740 {
11741 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
11742 has not been simplified; parameter array references. Do the
11743 simplification now. */
11744 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
11745 {
11746 e = sym->as->lower[i];
11747 if (e && (!resolve_index_expr(e)
11748 || !gfc_is_constant_expr (e)))
11749 not_constant = true;
11750 e = sym->as->upper[i];
11751 if (e && (!resolve_index_expr(e)
11752 || !gfc_is_constant_expr (e)))
11753 not_constant = true;
11754 }
11755 }
11756 return not_constant;
11757 }
11758
11759 /* Given a symbol and an initialization expression, add code to initialize
11760 the symbol to the function entry. */
11761 static void
11762 build_init_assign (gfc_symbol *sym, gfc_expr *init)
11763 {
11764 gfc_expr *lval;
11765 gfc_code *init_st;
11766 gfc_namespace *ns = sym->ns;
11767
11768 /* Search for the function namespace if this is a contained
11769 function without an explicit result. */
11770 if (sym->attr.function && sym == sym->result
11771 && sym->name != sym->ns->proc_name->name)
11772 {
11773 ns = ns->contained;
11774 for (;ns; ns = ns->sibling)
11775 if (strcmp (ns->proc_name->name, sym->name) == 0)
11776 break;
11777 }
11778
11779 if (ns == NULL)
11780 {
11781 gfc_free_expr (init);
11782 return;
11783 }
11784
11785 /* Build an l-value expression for the result. */
11786 lval = gfc_lval_expr_from_sym (sym);
11787
11788 /* Add the code at scope entry. */
11789 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
11790 init_st->next = ns->code;
11791 ns->code = init_st;
11792
11793 /* Assign the default initializer to the l-value. */
11794 init_st->loc = sym->declared_at;
11795 init_st->expr1 = lval;
11796 init_st->expr2 = init;
11797 }
11798
11799
11800 /* Whether or not we can generate a default initializer for a symbol. */
11801
11802 static bool
11803 can_generate_init (gfc_symbol *sym)
11804 {
11805 symbol_attribute *a;
11806 if (!sym)
11807 return false;
11808 a = &sym->attr;
11809
11810 /* These symbols should never have a default initialization. */
11811 return !(
11812 a->allocatable
11813 || a->external
11814 || a->pointer
11815 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
11816 && (CLASS_DATA (sym)->attr.class_pointer
11817 || CLASS_DATA (sym)->attr.proc_pointer))
11818 || a->in_equivalence
11819 || a->in_common
11820 || a->data
11821 || sym->module
11822 || a->cray_pointee
11823 || a->cray_pointer
11824 || sym->assoc
11825 || (!a->referenced && !a->result)
11826 || (a->dummy && a->intent != INTENT_OUT)
11827 || (a->function && sym != sym->result)
11828 );
11829 }
11830
11831
11832 /* Assign the default initializer to a derived type variable or result. */
11833
11834 static void
11835 apply_default_init (gfc_symbol *sym)
11836 {
11837 gfc_expr *init = NULL;
11838
11839 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
11840 return;
11841
11842 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
11843 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
11844
11845 if (init == NULL && sym->ts.type != BT_CLASS)
11846 return;
11847
11848 build_init_assign (sym, init);
11849 sym->attr.referenced = 1;
11850 }
11851
11852
11853 /* Build an initializer for a local. Returns null if the symbol should not have
11854 a default initialization. */
11855
11856 static gfc_expr *
11857 build_default_init_expr (gfc_symbol *sym)
11858 {
11859 /* These symbols should never have a default initialization. */
11860 if (sym->attr.allocatable
11861 || sym->attr.external
11862 || sym->attr.dummy
11863 || sym->attr.pointer
11864 || sym->attr.in_equivalence
11865 || sym->attr.in_common
11866 || sym->attr.data
11867 || sym->module
11868 || sym->attr.cray_pointee
11869 || sym->attr.cray_pointer
11870 || sym->assoc)
11871 return NULL;
11872
11873 /* Get the appropriate init expression. */
11874 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
11875 }
11876
11877 /* Add an initialization expression to a local variable. */
11878 static void
11879 apply_default_init_local (gfc_symbol *sym)
11880 {
11881 gfc_expr *init = NULL;
11882
11883 /* The symbol should be a variable or a function return value. */
11884 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
11885 || (sym->attr.function && sym->result != sym))
11886 return;
11887
11888 /* Try to build the initializer expression. If we can't initialize
11889 this symbol, then init will be NULL. */
11890 init = build_default_init_expr (sym);
11891 if (init == NULL)
11892 return;
11893
11894 /* For saved variables, we don't want to add an initializer at function
11895 entry, so we just add a static initializer. Note that automatic variables
11896 are stack allocated even with -fno-automatic; we have also to exclude
11897 result variable, which are also nonstatic. */
11898 if (!sym->attr.automatic
11899 && (sym->attr.save || sym->ns->save_all
11900 || (flag_max_stack_var_size == 0 && !sym->attr.result
11901 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
11902 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
11903 {
11904 /* Don't clobber an existing initializer! */
11905 gcc_assert (sym->value == NULL);
11906 sym->value = init;
11907 return;
11908 }
11909
11910 build_init_assign (sym, init);
11911 }
11912
11913
11914 /* Resolution of common features of flavors variable and procedure. */
11915
11916 static bool
11917 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
11918 {
11919 gfc_array_spec *as;
11920
11921 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
11922 as = CLASS_DATA (sym)->as;
11923 else
11924 as = sym->as;
11925
11926 /* Constraints on deferred shape variable. */
11927 if (as == NULL || as->type != AS_DEFERRED)
11928 {
11929 bool pointer, allocatable, dimension;
11930
11931 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
11932 {
11933 pointer = CLASS_DATA (sym)->attr.class_pointer;
11934 allocatable = CLASS_DATA (sym)->attr.allocatable;
11935 dimension = CLASS_DATA (sym)->attr.dimension;
11936 }
11937 else
11938 {
11939 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
11940 allocatable = sym->attr.allocatable;
11941 dimension = sym->attr.dimension;
11942 }
11943
11944 if (allocatable)
11945 {
11946 if (dimension && as->type != AS_ASSUMED_RANK)
11947 {
11948 gfc_error ("Allocatable array %qs at %L must have a deferred "
11949 "shape or assumed rank", sym->name, &sym->declared_at);
11950 return false;
11951 }
11952 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
11953 "%qs at %L may not be ALLOCATABLE",
11954 sym->name, &sym->declared_at))
11955 return false;
11956 }
11957
11958 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
11959 {
11960 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
11961 "assumed rank", sym->name, &sym->declared_at);
11962 return false;
11963 }
11964 }
11965 else
11966 {
11967 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
11968 && sym->ts.type != BT_CLASS && !sym->assoc)
11969 {
11970 gfc_error ("Array %qs at %L cannot have a deferred shape",
11971 sym->name, &sym->declared_at);
11972 return false;
11973 }
11974 }
11975
11976 /* Constraints on polymorphic variables. */
11977 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
11978 {
11979 /* F03:C502. */
11980 if (sym->attr.class_ok
11981 && !sym->attr.select_type_temporary
11982 && !UNLIMITED_POLY (sym)
11983 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
11984 {
11985 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
11986 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
11987 &sym->declared_at);
11988 return false;
11989 }
11990
11991 /* F03:C509. */
11992 /* Assume that use associated symbols were checked in the module ns.
11993 Class-variables that are associate-names are also something special
11994 and excepted from the test. */
11995 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
11996 {
11997 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
11998 "or pointer", sym->name, &sym->declared_at);
11999 return false;
12000 }
12001 }
12002
12003 return true;
12004 }
12005
12006
12007 /* Additional checks for symbols with flavor variable and derived
12008 type. To be called from resolve_fl_variable. */
12009
12010 static bool
12011 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12012 {
12013 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12014
12015 /* Check to see if a derived type is blocked from being host
12016 associated by the presence of another class I symbol in the same
12017 namespace. 14.6.1.3 of the standard and the discussion on
12018 comp.lang.fortran. */
12019 if (sym->ns != sym->ts.u.derived->ns
12020 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12021 {
12022 gfc_symbol *s;
12023 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12024 if (s && s->attr.generic)
12025 s = gfc_find_dt_in_generic (s);
12026 if (s && !gfc_fl_struct (s->attr.flavor))
12027 {
12028 gfc_error ("The type %qs cannot be host associated at %L "
12029 "because it is blocked by an incompatible object "
12030 "of the same name declared at %L",
12031 sym->ts.u.derived->name, &sym->declared_at,
12032 &s->declared_at);
12033 return false;
12034 }
12035 }
12036
12037 /* 4th constraint in section 11.3: "If an object of a type for which
12038 component-initialization is specified (R429) appears in the
12039 specification-part of a module and does not have the ALLOCATABLE
12040 or POINTER attribute, the object shall have the SAVE attribute."
12041
12042 The check for initializers is performed with
12043 gfc_has_default_initializer because gfc_default_initializer generates
12044 a hidden default for allocatable components. */
12045 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12046 && sym->ns->proc_name->attr.flavor == FL_MODULE
12047 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12048 && !sym->attr.pointer && !sym->attr.allocatable
12049 && gfc_has_default_initializer (sym->ts.u.derived)
12050 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12051 "%qs at %L, needed due to the default "
12052 "initialization", sym->name, &sym->declared_at))
12053 return false;
12054
12055 /* Assign default initializer. */
12056 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12057 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12058 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12059
12060 return true;
12061 }
12062
12063
12064 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12065 except in the declaration of an entity or component that has the POINTER
12066 or ALLOCATABLE attribute. */
12067
12068 static bool
12069 deferred_requirements (gfc_symbol *sym)
12070 {
12071 if (sym->ts.deferred
12072 && !(sym->attr.pointer
12073 || sym->attr.allocatable
12074 || sym->attr.associate_var
12075 || sym->attr.omp_udr_artificial_var))
12076 {
12077 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12078 "requires either the POINTER or ALLOCATABLE attribute",
12079 sym->name, &sym->declared_at);
12080 return false;
12081 }
12082 return true;
12083 }
12084
12085
12086 /* Resolve symbols with flavor variable. */
12087
12088 static bool
12089 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12090 {
12091 int no_init_flag, automatic_flag;
12092 gfc_expr *e;
12093 const char *auto_save_msg;
12094 bool saved_specification_expr;
12095
12096 auto_save_msg = "Automatic object %qs at %L cannot have the "
12097 "SAVE attribute";
12098
12099 if (!resolve_fl_var_and_proc (sym, mp_flag))
12100 return false;
12101
12102 /* Set this flag to check that variables are parameters of all entries.
12103 This check is effected by the call to gfc_resolve_expr through
12104 is_non_constant_shape_array. */
12105 saved_specification_expr = specification_expr;
12106 specification_expr = true;
12107
12108 if (sym->ns->proc_name
12109 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12110 || sym->ns->proc_name->attr.is_main_program)
12111 && !sym->attr.use_assoc
12112 && !sym->attr.allocatable
12113 && !sym->attr.pointer
12114 && is_non_constant_shape_array (sym))
12115 {
12116 /* F08:C541. The shape of an array defined in a main program or module
12117 * needs to be constant. */
12118 gfc_error ("The module or main program array %qs at %L must "
12119 "have constant shape", sym->name, &sym->declared_at);
12120 specification_expr = saved_specification_expr;
12121 return false;
12122 }
12123
12124 /* Constraints on deferred type parameter. */
12125 if (!deferred_requirements (sym))
12126 return false;
12127
12128 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12129 {
12130 /* Make sure that character string variables with assumed length are
12131 dummy arguments. */
12132 e = sym->ts.u.cl->length;
12133 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12134 && !sym->ts.deferred && !sym->attr.select_type_temporary
12135 && !sym->attr.omp_udr_artificial_var)
12136 {
12137 gfc_error ("Entity with assumed character length at %L must be a "
12138 "dummy argument or a PARAMETER", &sym->declared_at);
12139 specification_expr = saved_specification_expr;
12140 return false;
12141 }
12142
12143 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12144 {
12145 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12146 specification_expr = saved_specification_expr;
12147 return false;
12148 }
12149
12150 if (!gfc_is_constant_expr (e)
12151 && !(e->expr_type == EXPR_VARIABLE
12152 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12153 {
12154 if (!sym->attr.use_assoc && sym->ns->proc_name
12155 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12156 || sym->ns->proc_name->attr.is_main_program))
12157 {
12158 gfc_error ("%qs at %L must have constant character length "
12159 "in this context", sym->name, &sym->declared_at);
12160 specification_expr = saved_specification_expr;
12161 return false;
12162 }
12163 if (sym->attr.in_common)
12164 {
12165 gfc_error ("COMMON variable %qs at %L must have constant "
12166 "character length", sym->name, &sym->declared_at);
12167 specification_expr = saved_specification_expr;
12168 return false;
12169 }
12170 }
12171 }
12172
12173 if (sym->value == NULL && sym->attr.referenced)
12174 apply_default_init_local (sym); /* Try to apply a default initialization. */
12175
12176 /* Determine if the symbol may not have an initializer. */
12177 no_init_flag = automatic_flag = 0;
12178 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12179 || sym->attr.intrinsic || sym->attr.result)
12180 no_init_flag = 1;
12181 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12182 && is_non_constant_shape_array (sym))
12183 {
12184 no_init_flag = automatic_flag = 1;
12185
12186 /* Also, they must not have the SAVE attribute.
12187 SAVE_IMPLICIT is checked below. */
12188 if (sym->as && sym->attr.codimension)
12189 {
12190 int corank = sym->as->corank;
12191 sym->as->corank = 0;
12192 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12193 sym->as->corank = corank;
12194 }
12195 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12196 {
12197 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12198 specification_expr = saved_specification_expr;
12199 return false;
12200 }
12201 }
12202
12203 /* Ensure that any initializer is simplified. */
12204 if (sym->value)
12205 gfc_simplify_expr (sym->value, 1);
12206
12207 /* Reject illegal initializers. */
12208 if (!sym->mark && sym->value)
12209 {
12210 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12211 && CLASS_DATA (sym)->attr.allocatable))
12212 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12213 sym->name, &sym->declared_at);
12214 else if (sym->attr.external)
12215 gfc_error ("External %qs at %L cannot have an initializer",
12216 sym->name, &sym->declared_at);
12217 else if (sym->attr.dummy
12218 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12219 gfc_error ("Dummy %qs at %L cannot have an initializer",
12220 sym->name, &sym->declared_at);
12221 else if (sym->attr.intrinsic)
12222 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12223 sym->name, &sym->declared_at);
12224 else if (sym->attr.result)
12225 gfc_error ("Function result %qs at %L cannot have an initializer",
12226 sym->name, &sym->declared_at);
12227 else if (automatic_flag)
12228 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12229 sym->name, &sym->declared_at);
12230 else
12231 goto no_init_error;
12232 specification_expr = saved_specification_expr;
12233 return false;
12234 }
12235
12236 no_init_error:
12237 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12238 {
12239 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12240 specification_expr = saved_specification_expr;
12241 return res;
12242 }
12243
12244 specification_expr = saved_specification_expr;
12245 return true;
12246 }
12247
12248
12249 /* Compare the dummy characteristics of a module procedure interface
12250 declaration with the corresponding declaration in a submodule. */
12251 static gfc_formal_arglist *new_formal;
12252 static char errmsg[200];
12253
12254 static void
12255 compare_fsyms (gfc_symbol *sym)
12256 {
12257 gfc_symbol *fsym;
12258
12259 if (sym == NULL || new_formal == NULL)
12260 return;
12261
12262 fsym = new_formal->sym;
12263
12264 if (sym == fsym)
12265 return;
12266
12267 if (strcmp (sym->name, fsym->name) == 0)
12268 {
12269 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12270 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12271 }
12272 }
12273
12274
12275 /* Resolve a procedure. */
12276
12277 static bool
12278 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12279 {
12280 gfc_formal_arglist *arg;
12281
12282 if (sym->attr.function
12283 && !resolve_fl_var_and_proc (sym, mp_flag))
12284 return false;
12285
12286 if (sym->ts.type == BT_CHARACTER)
12287 {
12288 gfc_charlen *cl = sym->ts.u.cl;
12289
12290 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12291 && !resolve_charlen (cl))
12292 return false;
12293
12294 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12295 && sym->attr.proc == PROC_ST_FUNCTION)
12296 {
12297 gfc_error ("Character-valued statement function %qs at %L must "
12298 "have constant length", sym->name, &sym->declared_at);
12299 return false;
12300 }
12301 }
12302
12303 /* Ensure that derived type for are not of a private type. Internal
12304 module procedures are excluded by 2.2.3.3 - i.e., they are not
12305 externally accessible and can access all the objects accessible in
12306 the host. */
12307 if (!(sym->ns->parent
12308 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12309 && gfc_check_symbol_access (sym))
12310 {
12311 gfc_interface *iface;
12312
12313 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12314 {
12315 if (arg->sym
12316 && arg->sym->ts.type == BT_DERIVED
12317 && !arg->sym->ts.u.derived->attr.use_assoc
12318 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12319 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
12320 "and cannot be a dummy argument"
12321 " of %qs, which is PUBLIC at %L",
12322 arg->sym->name, sym->name,
12323 &sym->declared_at))
12324 {
12325 /* Stop this message from recurring. */
12326 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12327 return false;
12328 }
12329 }
12330
12331 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12332 PRIVATE to the containing module. */
12333 for (iface = sym->generic; iface; iface = iface->next)
12334 {
12335 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
12336 {
12337 if (arg->sym
12338 && arg->sym->ts.type == BT_DERIVED
12339 && !arg->sym->ts.u.derived->attr.use_assoc
12340 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12341 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
12342 "PUBLIC interface %qs at %L "
12343 "takes dummy arguments of %qs which "
12344 "is PRIVATE", iface->sym->name,
12345 sym->name, &iface->sym->declared_at,
12346 gfc_typename(&arg->sym->ts)))
12347 {
12348 /* Stop this message from recurring. */
12349 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12350 return false;
12351 }
12352 }
12353 }
12354 }
12355
12356 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
12357 && !sym->attr.proc_pointer)
12358 {
12359 gfc_error ("Function %qs at %L cannot have an initializer",
12360 sym->name, &sym->declared_at);
12361 return false;
12362 }
12363
12364 /* An external symbol may not have an initializer because it is taken to be
12365 a procedure. Exception: Procedure Pointers. */
12366 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
12367 {
12368 gfc_error ("External object %qs at %L may not have an initializer",
12369 sym->name, &sym->declared_at);
12370 return false;
12371 }
12372
12373 /* An elemental function is required to return a scalar 12.7.1 */
12374 if (sym->attr.elemental && sym->attr.function && sym->as)
12375 {
12376 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
12377 "result", sym->name, &sym->declared_at);
12378 /* Reset so that the error only occurs once. */
12379 sym->attr.elemental = 0;
12380 return false;
12381 }
12382
12383 if (sym->attr.proc == PROC_ST_FUNCTION
12384 && (sym->attr.allocatable || sym->attr.pointer))
12385 {
12386 gfc_error ("Statement function %qs at %L may not have pointer or "
12387 "allocatable attribute", sym->name, &sym->declared_at);
12388 return false;
12389 }
12390
12391 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
12392 char-len-param shall not be array-valued, pointer-valued, recursive
12393 or pure. ....snip... A character value of * may only be used in the
12394 following ways: (i) Dummy arg of procedure - dummy associates with
12395 actual length; (ii) To declare a named constant; or (iii) External
12396 function - but length must be declared in calling scoping unit. */
12397 if (sym->attr.function
12398 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
12399 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
12400 {
12401 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
12402 || (sym->attr.recursive) || (sym->attr.pure))
12403 {
12404 if (sym->as && sym->as->rank)
12405 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12406 "array-valued", sym->name, &sym->declared_at);
12407
12408 if (sym->attr.pointer)
12409 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12410 "pointer-valued", sym->name, &sym->declared_at);
12411
12412 if (sym->attr.pure)
12413 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12414 "pure", sym->name, &sym->declared_at);
12415
12416 if (sym->attr.recursive)
12417 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12418 "recursive", sym->name, &sym->declared_at);
12419
12420 return false;
12421 }
12422
12423 /* Appendix B.2 of the standard. Contained functions give an
12424 error anyway. Deferred character length is an F2003 feature.
12425 Don't warn on intrinsic conversion functions, which start
12426 with two underscores. */
12427 if (!sym->attr.contained && !sym->ts.deferred
12428 && (sym->name[0] != '_' || sym->name[1] != '_'))
12429 gfc_notify_std (GFC_STD_F95_OBS,
12430 "CHARACTER(*) function %qs at %L",
12431 sym->name, &sym->declared_at);
12432 }
12433
12434 /* F2008, C1218. */
12435 if (sym->attr.elemental)
12436 {
12437 if (sym->attr.proc_pointer)
12438 {
12439 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
12440 sym->name, &sym->declared_at);
12441 return false;
12442 }
12443 if (sym->attr.dummy)
12444 {
12445 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
12446 sym->name, &sym->declared_at);
12447 return false;
12448 }
12449 }
12450
12451 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
12452 {
12453 gfc_formal_arglist *curr_arg;
12454 int has_non_interop_arg = 0;
12455
12456 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
12457 sym->common_block))
12458 {
12459 /* Clear these to prevent looking at them again if there was an
12460 error. */
12461 sym->attr.is_bind_c = 0;
12462 sym->attr.is_c_interop = 0;
12463 sym->ts.is_c_interop = 0;
12464 }
12465 else
12466 {
12467 /* So far, no errors have been found. */
12468 sym->attr.is_c_interop = 1;
12469 sym->ts.is_c_interop = 1;
12470 }
12471
12472 curr_arg = gfc_sym_get_dummy_args (sym);
12473 while (curr_arg != NULL)
12474 {
12475 /* Skip implicitly typed dummy args here. */
12476 if (curr_arg->sym->attr.implicit_type == 0)
12477 if (!gfc_verify_c_interop_param (curr_arg->sym))
12478 /* If something is found to fail, record the fact so we
12479 can mark the symbol for the procedure as not being
12480 BIND(C) to try and prevent multiple errors being
12481 reported. */
12482 has_non_interop_arg = 1;
12483
12484 curr_arg = curr_arg->next;
12485 }
12486
12487 /* See if any of the arguments were not interoperable and if so, clear
12488 the procedure symbol to prevent duplicate error messages. */
12489 if (has_non_interop_arg != 0)
12490 {
12491 sym->attr.is_c_interop = 0;
12492 sym->ts.is_c_interop = 0;
12493 sym->attr.is_bind_c = 0;
12494 }
12495 }
12496
12497 if (!sym->attr.proc_pointer)
12498 {
12499 if (sym->attr.save == SAVE_EXPLICIT)
12500 {
12501 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
12502 "in %qs at %L", sym->name, &sym->declared_at);
12503 return false;
12504 }
12505 if (sym->attr.intent)
12506 {
12507 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
12508 "in %qs at %L", sym->name, &sym->declared_at);
12509 return false;
12510 }
12511 if (sym->attr.subroutine && sym->attr.result)
12512 {
12513 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
12514 "in %qs at %L", sym->name, &sym->declared_at);
12515 return false;
12516 }
12517 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
12518 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
12519 || sym->attr.contained))
12520 {
12521 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
12522 "in %qs at %L", sym->name, &sym->declared_at);
12523 return false;
12524 }
12525 if (strcmp ("ppr@", sym->name) == 0)
12526 {
12527 gfc_error ("Procedure pointer result %qs at %L "
12528 "is missing the pointer attribute",
12529 sym->ns->proc_name->name, &sym->declared_at);
12530 return false;
12531 }
12532 }
12533
12534 /* Assume that a procedure whose body is not known has references
12535 to external arrays. */
12536 if (sym->attr.if_source != IFSRC_DECL)
12537 sym->attr.array_outer_dependency = 1;
12538
12539 /* Compare the characteristics of a module procedure with the
12540 interface declaration. Ideally this would be done with
12541 gfc_compare_interfaces but, at present, the formal interface
12542 cannot be copied to the ts.interface. */
12543 if (sym->attr.module_procedure
12544 && sym->attr.if_source == IFSRC_DECL)
12545 {
12546 gfc_symbol *iface;
12547 char name[2*GFC_MAX_SYMBOL_LEN + 1];
12548 char *module_name;
12549 char *submodule_name;
12550 strcpy (name, sym->ns->proc_name->name);
12551 module_name = strtok (name, ".");
12552 submodule_name = strtok (NULL, ".");
12553
12554 iface = sym->tlink;
12555 sym->tlink = NULL;
12556
12557 /* Make sure that the result uses the correct charlen for deferred
12558 length results. */
12559 if (iface && sym->result
12560 && iface->ts.type == BT_CHARACTER
12561 && iface->ts.deferred)
12562 sym->result->ts.u.cl = iface->ts.u.cl;
12563
12564 if (iface == NULL)
12565 goto check_formal;
12566
12567 /* Check the procedure characteristics. */
12568 if (sym->attr.elemental != iface->attr.elemental)
12569 {
12570 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
12571 "PROCEDURE at %L and its interface in %s",
12572 &sym->declared_at, module_name);
12573 return false;
12574 }
12575
12576 if (sym->attr.pure != iface->attr.pure)
12577 {
12578 gfc_error ("Mismatch in PURE attribute between MODULE "
12579 "PROCEDURE at %L and its interface in %s",
12580 &sym->declared_at, module_name);
12581 return false;
12582 }
12583
12584 if (sym->attr.recursive != iface->attr.recursive)
12585 {
12586 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
12587 "PROCEDURE at %L and its interface in %s",
12588 &sym->declared_at, module_name);
12589 return false;
12590 }
12591
12592 /* Check the result characteristics. */
12593 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
12594 {
12595 gfc_error ("%s between the MODULE PROCEDURE declaration "
12596 "in MODULE %qs and the declaration at %L in "
12597 "(SUB)MODULE %qs",
12598 errmsg, module_name, &sym->declared_at,
12599 submodule_name ? submodule_name : module_name);
12600 return false;
12601 }
12602
12603 check_formal:
12604 /* Check the characteristics of the formal arguments. */
12605 if (sym->formal && sym->formal_ns)
12606 {
12607 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
12608 {
12609 new_formal = arg;
12610 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
12611 }
12612 }
12613 }
12614 return true;
12615 }
12616
12617
12618 /* Resolve a list of finalizer procedures. That is, after they have hopefully
12619 been defined and we now know their defined arguments, check that they fulfill
12620 the requirements of the standard for procedures used as finalizers. */
12621
12622 static bool
12623 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
12624 {
12625 gfc_finalizer* list;
12626 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
12627 bool result = true;
12628 bool seen_scalar = false;
12629 gfc_symbol *vtab;
12630 gfc_component *c;
12631 gfc_symbol *parent = gfc_get_derived_super_type (derived);
12632
12633 if (parent)
12634 gfc_resolve_finalizers (parent, finalizable);
12635
12636 /* Ensure that derived-type components have a their finalizers resolved. */
12637 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
12638 for (c = derived->components; c; c = c->next)
12639 if (c->ts.type == BT_DERIVED
12640 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
12641 {
12642 bool has_final2 = false;
12643 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
12644 return false; /* Error. */
12645 has_final = has_final || has_final2;
12646 }
12647 /* Return early if not finalizable. */
12648 if (!has_final)
12649 {
12650 if (finalizable)
12651 *finalizable = false;
12652 return true;
12653 }
12654
12655 /* Walk over the list of finalizer-procedures, check them, and if any one
12656 does not fit in with the standard's definition, print an error and remove
12657 it from the list. */
12658 prev_link = &derived->f2k_derived->finalizers;
12659 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
12660 {
12661 gfc_formal_arglist *dummy_args;
12662 gfc_symbol* arg;
12663 gfc_finalizer* i;
12664 int my_rank;
12665
12666 /* Skip this finalizer if we already resolved it. */
12667 if (list->proc_tree)
12668 {
12669 if (list->proc_tree->n.sym->formal->sym->as == NULL
12670 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
12671 seen_scalar = true;
12672 prev_link = &(list->next);
12673 continue;
12674 }
12675
12676 /* Check this exists and is a SUBROUTINE. */
12677 if (!list->proc_sym->attr.subroutine)
12678 {
12679 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
12680 list->proc_sym->name, &list->where);
12681 goto error;
12682 }
12683
12684 /* We should have exactly one argument. */
12685 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
12686 if (!dummy_args || dummy_args->next)
12687 {
12688 gfc_error ("FINAL procedure at %L must have exactly one argument",
12689 &list->where);
12690 goto error;
12691 }
12692 arg = dummy_args->sym;
12693
12694 /* This argument must be of our type. */
12695 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
12696 {
12697 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
12698 &arg->declared_at, derived->name);
12699 goto error;
12700 }
12701
12702 /* It must neither be a pointer nor allocatable nor optional. */
12703 if (arg->attr.pointer)
12704 {
12705 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
12706 &arg->declared_at);
12707 goto error;
12708 }
12709 if (arg->attr.allocatable)
12710 {
12711 gfc_error ("Argument of FINAL procedure at %L must not be"
12712 " ALLOCATABLE", &arg->declared_at);
12713 goto error;
12714 }
12715 if (arg->attr.optional)
12716 {
12717 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
12718 &arg->declared_at);
12719 goto error;
12720 }
12721
12722 /* It must not be INTENT(OUT). */
12723 if (arg->attr.intent == INTENT_OUT)
12724 {
12725 gfc_error ("Argument of FINAL procedure at %L must not be"
12726 " INTENT(OUT)", &arg->declared_at);
12727 goto error;
12728 }
12729
12730 /* Warn if the procedure is non-scalar and not assumed shape. */
12731 if (warn_surprising && arg->as && arg->as->rank != 0
12732 && arg->as->type != AS_ASSUMED_SHAPE)
12733 gfc_warning (OPT_Wsurprising,
12734 "Non-scalar FINAL procedure at %L should have assumed"
12735 " shape argument", &arg->declared_at);
12736
12737 /* Check that it does not match in kind and rank with a FINAL procedure
12738 defined earlier. To really loop over the *earlier* declarations,
12739 we need to walk the tail of the list as new ones were pushed at the
12740 front. */
12741 /* TODO: Handle kind parameters once they are implemented. */
12742 my_rank = (arg->as ? arg->as->rank : 0);
12743 for (i = list->next; i; i = i->next)
12744 {
12745 gfc_formal_arglist *dummy_args;
12746
12747 /* Argument list might be empty; that is an error signalled earlier,
12748 but we nevertheless continued resolving. */
12749 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
12750 if (dummy_args)
12751 {
12752 gfc_symbol* i_arg = dummy_args->sym;
12753 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
12754 if (i_rank == my_rank)
12755 {
12756 gfc_error ("FINAL procedure %qs declared at %L has the same"
12757 " rank (%d) as %qs",
12758 list->proc_sym->name, &list->where, my_rank,
12759 i->proc_sym->name);
12760 goto error;
12761 }
12762 }
12763 }
12764
12765 /* Is this the/a scalar finalizer procedure? */
12766 if (my_rank == 0)
12767 seen_scalar = true;
12768
12769 /* Find the symtree for this procedure. */
12770 gcc_assert (!list->proc_tree);
12771 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
12772
12773 prev_link = &list->next;
12774 continue;
12775
12776 /* Remove wrong nodes immediately from the list so we don't risk any
12777 troubles in the future when they might fail later expectations. */
12778 error:
12779 i = list;
12780 *prev_link = list->next;
12781 gfc_free_finalizer (i);
12782 result = false;
12783 }
12784
12785 if (result == false)
12786 return false;
12787
12788 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
12789 were nodes in the list, must have been for arrays. It is surely a good
12790 idea to have a scalar version there if there's something to finalize. */
12791 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
12792 gfc_warning (OPT_Wsurprising,
12793 "Only array FINAL procedures declared for derived type %qs"
12794 " defined at %L, suggest also scalar one",
12795 derived->name, &derived->declared_at);
12796
12797 vtab = gfc_find_derived_vtab (derived);
12798 c = vtab->ts.u.derived->components->next->next->next->next->next;
12799 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
12800
12801 if (finalizable)
12802 *finalizable = true;
12803
12804 return true;
12805 }
12806
12807
12808 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
12809
12810 static bool
12811 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
12812 const char* generic_name, locus where)
12813 {
12814 gfc_symbol *sym1, *sym2;
12815 const char *pass1, *pass2;
12816 gfc_formal_arglist *dummy_args;
12817
12818 gcc_assert (t1->specific && t2->specific);
12819 gcc_assert (!t1->specific->is_generic);
12820 gcc_assert (!t2->specific->is_generic);
12821 gcc_assert (t1->is_operator == t2->is_operator);
12822
12823 sym1 = t1->specific->u.specific->n.sym;
12824 sym2 = t2->specific->u.specific->n.sym;
12825
12826 if (sym1 == sym2)
12827 return true;
12828
12829 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
12830 if (sym1->attr.subroutine != sym2->attr.subroutine
12831 || sym1->attr.function != sym2->attr.function)
12832 {
12833 gfc_error ("%qs and %qs can't be mixed FUNCTION/SUBROUTINE for"
12834 " GENERIC %qs at %L",
12835 sym1->name, sym2->name, generic_name, &where);
12836 return false;
12837 }
12838
12839 /* Determine PASS arguments. */
12840 if (t1->specific->nopass)
12841 pass1 = NULL;
12842 else if (t1->specific->pass_arg)
12843 pass1 = t1->specific->pass_arg;
12844 else
12845 {
12846 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
12847 if (dummy_args)
12848 pass1 = dummy_args->sym->name;
12849 else
12850 pass1 = NULL;
12851 }
12852 if (t2->specific->nopass)
12853 pass2 = NULL;
12854 else if (t2->specific->pass_arg)
12855 pass2 = t2->specific->pass_arg;
12856 else
12857 {
12858 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
12859 if (dummy_args)
12860 pass2 = dummy_args->sym->name;
12861 else
12862 pass2 = NULL;
12863 }
12864
12865 /* Compare the interfaces. */
12866 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
12867 NULL, 0, pass1, pass2))
12868 {
12869 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
12870 sym1->name, sym2->name, generic_name, &where);
12871 return false;
12872 }
12873
12874 return true;
12875 }
12876
12877
12878 /* Worker function for resolving a generic procedure binding; this is used to
12879 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
12880
12881 The difference between those cases is finding possible inherited bindings
12882 that are overridden, as one has to look for them in tb_sym_root,
12883 tb_uop_root or tb_op, respectively. Thus the caller must already find
12884 the super-type and set p->overridden correctly. */
12885
12886 static bool
12887 resolve_tb_generic_targets (gfc_symbol* super_type,
12888 gfc_typebound_proc* p, const char* name)
12889 {
12890 gfc_tbp_generic* target;
12891 gfc_symtree* first_target;
12892 gfc_symtree* inherited;
12893
12894 gcc_assert (p && p->is_generic);
12895
12896 /* Try to find the specific bindings for the symtrees in our target-list. */
12897 gcc_assert (p->u.generic);
12898 for (target = p->u.generic; target; target = target->next)
12899 if (!target->specific)
12900 {
12901 gfc_typebound_proc* overridden_tbp;
12902 gfc_tbp_generic* g;
12903 const char* target_name;
12904
12905 target_name = target->specific_st->name;
12906
12907 /* Defined for this type directly. */
12908 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
12909 {
12910 target->specific = target->specific_st->n.tb;
12911 goto specific_found;
12912 }
12913
12914 /* Look for an inherited specific binding. */
12915 if (super_type)
12916 {
12917 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
12918 true, NULL);
12919
12920 if (inherited)
12921 {
12922 gcc_assert (inherited->n.tb);
12923 target->specific = inherited->n.tb;
12924 goto specific_found;
12925 }
12926 }
12927
12928 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
12929 " at %L", target_name, name, &p->where);
12930 return false;
12931
12932 /* Once we've found the specific binding, check it is not ambiguous with
12933 other specifics already found or inherited for the same GENERIC. */
12934 specific_found:
12935 gcc_assert (target->specific);
12936
12937 /* This must really be a specific binding! */
12938 if (target->specific->is_generic)
12939 {
12940 gfc_error ("GENERIC %qs at %L must target a specific binding,"
12941 " %qs is GENERIC, too", name, &p->where, target_name);
12942 return false;
12943 }
12944
12945 /* Check those already resolved on this type directly. */
12946 for (g = p->u.generic; g; g = g->next)
12947 if (g != target && g->specific
12948 && !check_generic_tbp_ambiguity (target, g, name, p->where))
12949 return false;
12950
12951 /* Check for ambiguity with inherited specific targets. */
12952 for (overridden_tbp = p->overridden; overridden_tbp;
12953 overridden_tbp = overridden_tbp->overridden)
12954 if (overridden_tbp->is_generic)
12955 {
12956 for (g = overridden_tbp->u.generic; g; g = g->next)
12957 {
12958 gcc_assert (g->specific);
12959 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
12960 return false;
12961 }
12962 }
12963 }
12964
12965 /* If we attempt to "overwrite" a specific binding, this is an error. */
12966 if (p->overridden && !p->overridden->is_generic)
12967 {
12968 gfc_error ("GENERIC %qs at %L can't overwrite specific binding with"
12969 " the same name", name, &p->where);
12970 return false;
12971 }
12972
12973 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
12974 all must have the same attributes here. */
12975 first_target = p->u.generic->specific->u.specific;
12976 gcc_assert (first_target);
12977 p->subroutine = first_target->n.sym->attr.subroutine;
12978 p->function = first_target->n.sym->attr.function;
12979
12980 return true;
12981 }
12982
12983
12984 /* Resolve a GENERIC procedure binding for a derived type. */
12985
12986 static bool
12987 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
12988 {
12989 gfc_symbol* super_type;
12990
12991 /* Find the overridden binding if any. */
12992 st->n.tb->overridden = NULL;
12993 super_type = gfc_get_derived_super_type (derived);
12994 if (super_type)
12995 {
12996 gfc_symtree* overridden;
12997 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
12998 true, NULL);
12999
13000 if (overridden && overridden->n.tb)
13001 st->n.tb->overridden = overridden->n.tb;
13002 }
13003
13004 /* Resolve using worker function. */
13005 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13006 }
13007
13008
13009 /* Retrieve the target-procedure of an operator binding and do some checks in
13010 common for intrinsic and user-defined type-bound operators. */
13011
13012 static gfc_symbol*
13013 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13014 {
13015 gfc_symbol* target_proc;
13016
13017 gcc_assert (target->specific && !target->specific->is_generic);
13018 target_proc = target->specific->u.specific->n.sym;
13019 gcc_assert (target_proc);
13020
13021 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13022 if (target->specific->nopass)
13023 {
13024 gfc_error ("Type-bound operator at %L can't be NOPASS", &where);
13025 return NULL;
13026 }
13027
13028 return target_proc;
13029 }
13030
13031
13032 /* Resolve a type-bound intrinsic operator. */
13033
13034 static bool
13035 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13036 gfc_typebound_proc* p)
13037 {
13038 gfc_symbol* super_type;
13039 gfc_tbp_generic* target;
13040
13041 /* If there's already an error here, do nothing (but don't fail again). */
13042 if (p->error)
13043 return true;
13044
13045 /* Operators should always be GENERIC bindings. */
13046 gcc_assert (p->is_generic);
13047
13048 /* Look for an overridden binding. */
13049 super_type = gfc_get_derived_super_type (derived);
13050 if (super_type && super_type->f2k_derived)
13051 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13052 op, true, NULL);
13053 else
13054 p->overridden = NULL;
13055
13056 /* Resolve general GENERIC properties using worker function. */
13057 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13058 goto error;
13059
13060 /* Check the targets to be procedures of correct interface. */
13061 for (target = p->u.generic; target; target = target->next)
13062 {
13063 gfc_symbol* target_proc;
13064
13065 target_proc = get_checked_tb_operator_target (target, p->where);
13066 if (!target_proc)
13067 goto error;
13068
13069 if (!gfc_check_operator_interface (target_proc, op, p->where))
13070 goto error;
13071
13072 /* Add target to non-typebound operator list. */
13073 if (!target->specific->deferred && !derived->attr.use_assoc
13074 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13075 {
13076 gfc_interface *head, *intr;
13077
13078 /* Preempt 'gfc_check_new_interface' for submodules, where the
13079 mechanism for handling module procedures winds up resolving
13080 operator interfaces twice and would otherwise cause an error. */
13081 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13082 if (intr->sym == target_proc
13083 && target_proc->attr.used_in_submodule)
13084 return true;
13085
13086 if (!gfc_check_new_interface (derived->ns->op[op],
13087 target_proc, p->where))
13088 return false;
13089 head = derived->ns->op[op];
13090 intr = gfc_get_interface ();
13091 intr->sym = target_proc;
13092 intr->where = p->where;
13093 intr->next = head;
13094 derived->ns->op[op] = intr;
13095 }
13096 }
13097
13098 return true;
13099
13100 error:
13101 p->error = 1;
13102 return false;
13103 }
13104
13105
13106 /* Resolve a type-bound user operator (tree-walker callback). */
13107
13108 static gfc_symbol* resolve_bindings_derived;
13109 static bool resolve_bindings_result;
13110
13111 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13112
13113 static void
13114 resolve_typebound_user_op (gfc_symtree* stree)
13115 {
13116 gfc_symbol* super_type;
13117 gfc_tbp_generic* target;
13118
13119 gcc_assert (stree && stree->n.tb);
13120
13121 if (stree->n.tb->error)
13122 return;
13123
13124 /* Operators should always be GENERIC bindings. */
13125 gcc_assert (stree->n.tb->is_generic);
13126
13127 /* Find overridden procedure, if any. */
13128 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13129 if (super_type && super_type->f2k_derived)
13130 {
13131 gfc_symtree* overridden;
13132 overridden = gfc_find_typebound_user_op (super_type, NULL,
13133 stree->name, true, NULL);
13134
13135 if (overridden && overridden->n.tb)
13136 stree->n.tb->overridden = overridden->n.tb;
13137 }
13138 else
13139 stree->n.tb->overridden = NULL;
13140
13141 /* Resolve basically using worker function. */
13142 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13143 goto error;
13144
13145 /* Check the targets to be functions of correct interface. */
13146 for (target = stree->n.tb->u.generic; target; target = target->next)
13147 {
13148 gfc_symbol* target_proc;
13149
13150 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13151 if (!target_proc)
13152 goto error;
13153
13154 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13155 goto error;
13156 }
13157
13158 return;
13159
13160 error:
13161 resolve_bindings_result = false;
13162 stree->n.tb->error = 1;
13163 }
13164
13165
13166 /* Resolve the type-bound procedures for a derived type. */
13167
13168 static void
13169 resolve_typebound_procedure (gfc_symtree* stree)
13170 {
13171 gfc_symbol* proc;
13172 locus where;
13173 gfc_symbol* me_arg;
13174 gfc_symbol* super_type;
13175 gfc_component* comp;
13176
13177 gcc_assert (stree);
13178
13179 /* Undefined specific symbol from GENERIC target definition. */
13180 if (!stree->n.tb)
13181 return;
13182
13183 if (stree->n.tb->error)
13184 return;
13185
13186 /* If this is a GENERIC binding, use that routine. */
13187 if (stree->n.tb->is_generic)
13188 {
13189 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13190 goto error;
13191 return;
13192 }
13193
13194 /* Get the target-procedure to check it. */
13195 gcc_assert (!stree->n.tb->is_generic);
13196 gcc_assert (stree->n.tb->u.specific);
13197 proc = stree->n.tb->u.specific->n.sym;
13198 where = stree->n.tb->where;
13199
13200 /* Default access should already be resolved from the parser. */
13201 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13202
13203 if (stree->n.tb->deferred)
13204 {
13205 if (!check_proc_interface (proc, &where))
13206 goto error;
13207 }
13208 else
13209 {
13210 /* Check for F08:C465. */
13211 if ((!proc->attr.subroutine && !proc->attr.function)
13212 || (proc->attr.proc != PROC_MODULE
13213 && proc->attr.if_source != IFSRC_IFBODY)
13214 || proc->attr.abstract)
13215 {
13216 gfc_error ("%qs must be a module procedure or an external procedure with"
13217 " an explicit interface at %L", proc->name, &where);
13218 goto error;
13219 }
13220 }
13221
13222 stree->n.tb->subroutine = proc->attr.subroutine;
13223 stree->n.tb->function = proc->attr.function;
13224
13225 /* Find the super-type of the current derived type. We could do this once and
13226 store in a global if speed is needed, but as long as not I believe this is
13227 more readable and clearer. */
13228 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13229
13230 /* If PASS, resolve and check arguments if not already resolved / loaded
13231 from a .mod file. */
13232 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13233 {
13234 gfc_formal_arglist *dummy_args;
13235
13236 dummy_args = gfc_sym_get_dummy_args (proc);
13237 if (stree->n.tb->pass_arg)
13238 {
13239 gfc_formal_arglist *i;
13240
13241 /* If an explicit passing argument name is given, walk the arg-list
13242 and look for it. */
13243
13244 me_arg = NULL;
13245 stree->n.tb->pass_arg_num = 1;
13246 for (i = dummy_args; i; i = i->next)
13247 {
13248 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13249 {
13250 me_arg = i->sym;
13251 break;
13252 }
13253 ++stree->n.tb->pass_arg_num;
13254 }
13255
13256 if (!me_arg)
13257 {
13258 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13259 " argument %qs",
13260 proc->name, stree->n.tb->pass_arg, &where,
13261 stree->n.tb->pass_arg);
13262 goto error;
13263 }
13264 }
13265 else
13266 {
13267 /* Otherwise, take the first one; there should in fact be at least
13268 one. */
13269 stree->n.tb->pass_arg_num = 1;
13270 if (!dummy_args)
13271 {
13272 gfc_error ("Procedure %qs with PASS at %L must have at"
13273 " least one argument", proc->name, &where);
13274 goto error;
13275 }
13276 me_arg = dummy_args->sym;
13277 }
13278
13279 /* Now check that the argument-type matches and the passed-object
13280 dummy argument is generally fine. */
13281
13282 gcc_assert (me_arg);
13283
13284 if (me_arg->ts.type != BT_CLASS)
13285 {
13286 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13287 " at %L", proc->name, &where);
13288 goto error;
13289 }
13290
13291 if (CLASS_DATA (me_arg)->ts.u.derived
13292 != resolve_bindings_derived)
13293 {
13294 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13295 " the derived-type %qs", me_arg->name, proc->name,
13296 me_arg->name, &where, resolve_bindings_derived->name);
13297 goto error;
13298 }
13299
13300 gcc_assert (me_arg->ts.type == BT_CLASS);
13301 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
13302 {
13303 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13304 " scalar", proc->name, &where);
13305 goto error;
13306 }
13307 if (CLASS_DATA (me_arg)->attr.allocatable)
13308 {
13309 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13310 " be ALLOCATABLE", proc->name, &where);
13311 goto error;
13312 }
13313 if (CLASS_DATA (me_arg)->attr.class_pointer)
13314 {
13315 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13316 " be POINTER", proc->name, &where);
13317 goto error;
13318 }
13319 }
13320
13321 /* If we are extending some type, check that we don't override a procedure
13322 flagged NON_OVERRIDABLE. */
13323 stree->n.tb->overridden = NULL;
13324 if (super_type)
13325 {
13326 gfc_symtree* overridden;
13327 overridden = gfc_find_typebound_proc (super_type, NULL,
13328 stree->name, true, NULL);
13329
13330 if (overridden)
13331 {
13332 if (overridden->n.tb)
13333 stree->n.tb->overridden = overridden->n.tb;
13334
13335 if (!gfc_check_typebound_override (stree, overridden))
13336 goto error;
13337 }
13338 }
13339
13340 /* See if there's a name collision with a component directly in this type. */
13341 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
13342 if (!strcmp (comp->name, stree->name))
13343 {
13344 gfc_error ("Procedure %qs at %L has the same name as a component of"
13345 " %qs",
13346 stree->name, &where, resolve_bindings_derived->name);
13347 goto error;
13348 }
13349
13350 /* Try to find a name collision with an inherited component. */
13351 if (super_type && gfc_find_component (super_type, stree->name, true, true,
13352 NULL))
13353 {
13354 gfc_error ("Procedure %qs at %L has the same name as an inherited"
13355 " component of %qs",
13356 stree->name, &where, resolve_bindings_derived->name);
13357 goto error;
13358 }
13359
13360 stree->n.tb->error = 0;
13361 return;
13362
13363 error:
13364 resolve_bindings_result = false;
13365 stree->n.tb->error = 1;
13366 }
13367
13368
13369 static bool
13370 resolve_typebound_procedures (gfc_symbol* derived)
13371 {
13372 int op;
13373 gfc_symbol* super_type;
13374
13375 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
13376 return true;
13377
13378 super_type = gfc_get_derived_super_type (derived);
13379 if (super_type)
13380 resolve_symbol (super_type);
13381
13382 resolve_bindings_derived = derived;
13383 resolve_bindings_result = true;
13384
13385 if (derived->f2k_derived->tb_sym_root)
13386 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
13387 &resolve_typebound_procedure);
13388
13389 if (derived->f2k_derived->tb_uop_root)
13390 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
13391 &resolve_typebound_user_op);
13392
13393 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
13394 {
13395 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
13396 if (p && !resolve_typebound_intrinsic_op (derived,
13397 (gfc_intrinsic_op)op, p))
13398 resolve_bindings_result = false;
13399 }
13400
13401 return resolve_bindings_result;
13402 }
13403
13404
13405 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
13406 to give all identical derived types the same backend_decl. */
13407 static void
13408 add_dt_to_dt_list (gfc_symbol *derived)
13409 {
13410 gfc_dt_list *dt_list;
13411
13412 for (dt_list = gfc_derived_types; dt_list; dt_list = dt_list->next)
13413 if (derived == dt_list->derived)
13414 return;
13415
13416 dt_list = gfc_get_dt_list ();
13417 dt_list->next = gfc_derived_types;
13418 dt_list->derived = derived;
13419 gfc_derived_types = dt_list;
13420 }
13421
13422
13423 /* Ensure that a derived-type is really not abstract, meaning that every
13424 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
13425
13426 static bool
13427 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
13428 {
13429 if (!st)
13430 return true;
13431
13432 if (!ensure_not_abstract_walker (sub, st->left))
13433 return false;
13434 if (!ensure_not_abstract_walker (sub, st->right))
13435 return false;
13436
13437 if (st->n.tb && st->n.tb->deferred)
13438 {
13439 gfc_symtree* overriding;
13440 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
13441 if (!overriding)
13442 return false;
13443 gcc_assert (overriding->n.tb);
13444 if (overriding->n.tb->deferred)
13445 {
13446 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
13447 " %qs is DEFERRED and not overridden",
13448 sub->name, &sub->declared_at, st->name);
13449 return false;
13450 }
13451 }
13452
13453 return true;
13454 }
13455
13456 static bool
13457 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
13458 {
13459 /* The algorithm used here is to recursively travel up the ancestry of sub
13460 and for each ancestor-type, check all bindings. If any of them is
13461 DEFERRED, look it up starting from sub and see if the found (overriding)
13462 binding is not DEFERRED.
13463 This is not the most efficient way to do this, but it should be ok and is
13464 clearer than something sophisticated. */
13465
13466 gcc_assert (ancestor && !sub->attr.abstract);
13467
13468 if (!ancestor->attr.abstract)
13469 return true;
13470
13471 /* Walk bindings of this ancestor. */
13472 if (ancestor->f2k_derived)
13473 {
13474 bool t;
13475 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
13476 if (!t)
13477 return false;
13478 }
13479
13480 /* Find next ancestor type and recurse on it. */
13481 ancestor = gfc_get_derived_super_type (ancestor);
13482 if (ancestor)
13483 return ensure_not_abstract (sub, ancestor);
13484
13485 return true;
13486 }
13487
13488
13489 /* This check for typebound defined assignments is done recursively
13490 since the order in which derived types are resolved is not always in
13491 order of the declarations. */
13492
13493 static void
13494 check_defined_assignments (gfc_symbol *derived)
13495 {
13496 gfc_component *c;
13497
13498 for (c = derived->components; c; c = c->next)
13499 {
13500 if (!gfc_bt_struct (c->ts.type)
13501 || c->attr.pointer
13502 || c->attr.allocatable
13503 || c->attr.proc_pointer_comp
13504 || c->attr.class_pointer
13505 || c->attr.proc_pointer)
13506 continue;
13507
13508 if (c->ts.u.derived->attr.defined_assign_comp
13509 || (c->ts.u.derived->f2k_derived
13510 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
13511 {
13512 derived->attr.defined_assign_comp = 1;
13513 return;
13514 }
13515
13516 check_defined_assignments (c->ts.u.derived);
13517 if (c->ts.u.derived->attr.defined_assign_comp)
13518 {
13519 derived->attr.defined_assign_comp = 1;
13520 return;
13521 }
13522 }
13523 }
13524
13525
13526 /* Resolve a single component of a derived type or structure. */
13527
13528 static bool
13529 resolve_component (gfc_component *c, gfc_symbol *sym)
13530 {
13531 gfc_symbol *super_type;
13532
13533 if (c->attr.artificial)
13534 return true;
13535
13536 /* Do not allow vtype components to be resolved in nameless namespaces
13537 such as block data because the procedure pointers will cause ICEs
13538 and vtables are not needed in these contexts. */
13539 if (sym->attr.vtype && sym->attr.use_assoc
13540 && sym->ns->proc_name == NULL)
13541 return true;
13542
13543 /* F2008, C442. */
13544 if ((!sym->attr.is_class || c != sym->components)
13545 && c->attr.codimension
13546 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
13547 {
13548 gfc_error ("Coarray component %qs at %L must be allocatable with "
13549 "deferred shape", c->name, &c->loc);
13550 return false;
13551 }
13552
13553 /* F2008, C443. */
13554 if (c->attr.codimension && c->ts.type == BT_DERIVED
13555 && c->ts.u.derived->ts.is_iso_c)
13556 {
13557 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
13558 "shall not be a coarray", c->name, &c->loc);
13559 return false;
13560 }
13561
13562 /* F2008, C444. */
13563 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
13564 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
13565 || c->attr.allocatable))
13566 {
13567 gfc_error ("Component %qs at %L with coarray component "
13568 "shall be a nonpointer, nonallocatable scalar",
13569 c->name, &c->loc);
13570 return false;
13571 }
13572
13573 /* F2008, C448. */
13574 if (c->attr.contiguous && (!c->attr.dimension || !c->attr.pointer))
13575 {
13576 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
13577 "is not an array pointer", c->name, &c->loc);
13578 return false;
13579 }
13580
13581 /* F2003, 15.2.1 - length has to be one. */
13582 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
13583 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
13584 || !gfc_is_constant_expr (c->ts.u.cl->length)
13585 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
13586 {
13587 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
13588 c->name, &c->loc);
13589 return false;
13590 }
13591
13592 if (c->attr.proc_pointer && c->ts.interface)
13593 {
13594 gfc_symbol *ifc = c->ts.interface;
13595
13596 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
13597 {
13598 c->tb->error = 1;
13599 return false;
13600 }
13601
13602 if (ifc->attr.if_source || ifc->attr.intrinsic)
13603 {
13604 /* Resolve interface and copy attributes. */
13605 if (ifc->formal && !ifc->formal_ns)
13606 resolve_symbol (ifc);
13607 if (ifc->attr.intrinsic)
13608 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
13609
13610 if (ifc->result)
13611 {
13612 c->ts = ifc->result->ts;
13613 c->attr.allocatable = ifc->result->attr.allocatable;
13614 c->attr.pointer = ifc->result->attr.pointer;
13615 c->attr.dimension = ifc->result->attr.dimension;
13616 c->as = gfc_copy_array_spec (ifc->result->as);
13617 c->attr.class_ok = ifc->result->attr.class_ok;
13618 }
13619 else
13620 {
13621 c->ts = ifc->ts;
13622 c->attr.allocatable = ifc->attr.allocatable;
13623 c->attr.pointer = ifc->attr.pointer;
13624 c->attr.dimension = ifc->attr.dimension;
13625 c->as = gfc_copy_array_spec (ifc->as);
13626 c->attr.class_ok = ifc->attr.class_ok;
13627 }
13628 c->ts.interface = ifc;
13629 c->attr.function = ifc->attr.function;
13630 c->attr.subroutine = ifc->attr.subroutine;
13631
13632 c->attr.pure = ifc->attr.pure;
13633 c->attr.elemental = ifc->attr.elemental;
13634 c->attr.recursive = ifc->attr.recursive;
13635 c->attr.always_explicit = ifc->attr.always_explicit;
13636 c->attr.ext_attr |= ifc->attr.ext_attr;
13637 /* Copy char length. */
13638 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
13639 {
13640 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
13641 if (cl->length && !cl->resolved
13642 && !gfc_resolve_expr (cl->length))
13643 {
13644 c->tb->error = 1;
13645 return false;
13646 }
13647 c->ts.u.cl = cl;
13648 }
13649 }
13650 }
13651 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
13652 {
13653 /* Since PPCs are not implicitly typed, a PPC without an explicit
13654 interface must be a subroutine. */
13655 gfc_add_subroutine (&c->attr, c->name, &c->loc);
13656 }
13657
13658 /* Procedure pointer components: Check PASS arg. */
13659 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
13660 && !sym->attr.vtype)
13661 {
13662 gfc_symbol* me_arg;
13663
13664 if (c->tb->pass_arg)
13665 {
13666 gfc_formal_arglist* i;
13667
13668 /* If an explicit passing argument name is given, walk the arg-list
13669 and look for it. */
13670
13671 me_arg = NULL;
13672 c->tb->pass_arg_num = 1;
13673 for (i = c->ts.interface->formal; i; i = i->next)
13674 {
13675 if (!strcmp (i->sym->name, c->tb->pass_arg))
13676 {
13677 me_arg = i->sym;
13678 break;
13679 }
13680 c->tb->pass_arg_num++;
13681 }
13682
13683 if (!me_arg)
13684 {
13685 gfc_error ("Procedure pointer component %qs with PASS(%s) "
13686 "at %L has no argument %qs", c->name,
13687 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
13688 c->tb->error = 1;
13689 return false;
13690 }
13691 }
13692 else
13693 {
13694 /* Otherwise, take the first one; there should in fact be at least
13695 one. */
13696 c->tb->pass_arg_num = 1;
13697 if (!c->ts.interface->formal)
13698 {
13699 gfc_error ("Procedure pointer component %qs with PASS at %L "
13700 "must have at least one argument",
13701 c->name, &c->loc);
13702 c->tb->error = 1;
13703 return false;
13704 }
13705 me_arg = c->ts.interface->formal->sym;
13706 }
13707
13708 /* Now check that the argument-type matches. */
13709 gcc_assert (me_arg);
13710 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
13711 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
13712 || (me_arg->ts.type == BT_CLASS
13713 && CLASS_DATA (me_arg)->ts.u.derived != sym))
13714 {
13715 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13716 " the derived type %qs", me_arg->name, c->name,
13717 me_arg->name, &c->loc, sym->name);
13718 c->tb->error = 1;
13719 return false;
13720 }
13721
13722 /* Check for F03:C453. */
13723 if (CLASS_DATA (me_arg)->attr.dimension)
13724 {
13725 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13726 "must be scalar", me_arg->name, c->name, me_arg->name,
13727 &c->loc);
13728 c->tb->error = 1;
13729 return false;
13730 }
13731
13732 if (CLASS_DATA (me_arg)->attr.class_pointer)
13733 {
13734 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13735 "may not have the POINTER attribute", me_arg->name,
13736 c->name, me_arg->name, &c->loc);
13737 c->tb->error = 1;
13738 return false;
13739 }
13740
13741 if (CLASS_DATA (me_arg)->attr.allocatable)
13742 {
13743 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13744 "may not be ALLOCATABLE", me_arg->name, c->name,
13745 me_arg->name, &c->loc);
13746 c->tb->error = 1;
13747 return false;
13748 }
13749
13750 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
13751 {
13752 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13753 " at %L", c->name, &c->loc);
13754 return false;
13755 }
13756
13757 }
13758
13759 /* Check type-spec if this is not the parent-type component. */
13760 if (((sym->attr.is_class
13761 && (!sym->components->ts.u.derived->attr.extension
13762 || c != sym->components->ts.u.derived->components))
13763 || (!sym->attr.is_class
13764 && (!sym->attr.extension || c != sym->components)))
13765 && !sym->attr.vtype
13766 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
13767 return false;
13768
13769 super_type = gfc_get_derived_super_type (sym);
13770
13771 /* If this type is an extension, set the accessibility of the parent
13772 component. */
13773 if (super_type
13774 && ((sym->attr.is_class
13775 && c == sym->components->ts.u.derived->components)
13776 || (!sym->attr.is_class && c == sym->components))
13777 && strcmp (super_type->name, c->name) == 0)
13778 c->attr.access = super_type->attr.access;
13779
13780 /* If this type is an extension, see if this component has the same name
13781 as an inherited type-bound procedure. */
13782 if (super_type && !sym->attr.is_class
13783 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
13784 {
13785 gfc_error ("Component %qs of %qs at %L has the same name as an"
13786 " inherited type-bound procedure",
13787 c->name, sym->name, &c->loc);
13788 return false;
13789 }
13790
13791 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
13792 && !c->ts.deferred)
13793 {
13794 if (c->ts.u.cl->length == NULL
13795 || (!resolve_charlen(c->ts.u.cl))
13796 || !gfc_is_constant_expr (c->ts.u.cl->length))
13797 {
13798 gfc_error ("Character length of component %qs needs to "
13799 "be a constant specification expression at %L",
13800 c->name,
13801 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
13802 return false;
13803 }
13804 }
13805
13806 if (c->ts.type == BT_CHARACTER && c->ts.deferred
13807 && !c->attr.pointer && !c->attr.allocatable)
13808 {
13809 gfc_error ("Character component %qs of %qs at %L with deferred "
13810 "length must be a POINTER or ALLOCATABLE",
13811 c->name, sym->name, &c->loc);
13812 return false;
13813 }
13814
13815 /* Add the hidden deferred length field. */
13816 if (c->ts.type == BT_CHARACTER
13817 && (c->ts.deferred || c->attr.pdt_string)
13818 && !c->attr.function
13819 && !sym->attr.is_class)
13820 {
13821 char name[GFC_MAX_SYMBOL_LEN+9];
13822 gfc_component *strlen;
13823 sprintf (name, "_%s_length", c->name);
13824 strlen = gfc_find_component (sym, name, true, true, NULL);
13825 if (strlen == NULL)
13826 {
13827 if (!gfc_add_component (sym, name, &strlen))
13828 return false;
13829 strlen->ts.type = BT_INTEGER;
13830 strlen->ts.kind = gfc_charlen_int_kind;
13831 strlen->attr.access = ACCESS_PRIVATE;
13832 strlen->attr.artificial = 1;
13833 }
13834 }
13835
13836 if (c->ts.type == BT_DERIVED
13837 && sym->component_access != ACCESS_PRIVATE
13838 && gfc_check_symbol_access (sym)
13839 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
13840 && !c->ts.u.derived->attr.use_assoc
13841 && !gfc_check_symbol_access (c->ts.u.derived)
13842 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
13843 "PRIVATE type and cannot be a component of "
13844 "%qs, which is PUBLIC at %L", c->name,
13845 sym->name, &sym->declared_at))
13846 return false;
13847
13848 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
13849 {
13850 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
13851 "type %s", c->name, &c->loc, sym->name);
13852 return false;
13853 }
13854
13855 if (sym->attr.sequence)
13856 {
13857 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
13858 {
13859 gfc_error ("Component %s of SEQUENCE type declared at %L does "
13860 "not have the SEQUENCE attribute",
13861 c->ts.u.derived->name, &sym->declared_at);
13862 return false;
13863 }
13864 }
13865
13866 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
13867 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
13868 else if (c->ts.type == BT_CLASS && c->attr.class_ok
13869 && CLASS_DATA (c)->ts.u.derived->attr.generic)
13870 CLASS_DATA (c)->ts.u.derived
13871 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
13872
13873 if (!sym->attr.is_class && c->ts.type == BT_DERIVED && !sym->attr.vtype
13874 && c->attr.pointer && c->ts.u.derived->components == NULL
13875 && !c->ts.u.derived->attr.zero_comp)
13876 {
13877 gfc_error ("The pointer component %qs of %qs at %L is a type "
13878 "that has not been declared", c->name, sym->name,
13879 &c->loc);
13880 return false;
13881 }
13882
13883 if (c->ts.type == BT_CLASS && c->attr.class_ok
13884 && CLASS_DATA (c)->attr.class_pointer
13885 && CLASS_DATA (c)->ts.u.derived->components == NULL
13886 && !CLASS_DATA (c)->ts.u.derived->attr.zero_comp
13887 && !UNLIMITED_POLY (c))
13888 {
13889 gfc_error ("The pointer component %qs of %qs at %L is a type "
13890 "that has not been declared", c->name, sym->name,
13891 &c->loc);
13892 return false;
13893 }
13894
13895 /* If an allocatable component derived type is of the same type as
13896 the enclosing derived type, we need a vtable generating so that
13897 the __deallocate procedure is created. */
13898 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
13899 && c->ts.u.derived == sym && c->attr.allocatable == 1)
13900 gfc_find_vtab (&c->ts);
13901
13902 /* Ensure that all the derived type components are put on the
13903 derived type list; even in formal namespaces, where derived type
13904 pointer components might not have been declared. */
13905 if (c->ts.type == BT_DERIVED
13906 && c->ts.u.derived
13907 && c->ts.u.derived->components
13908 && c->attr.pointer
13909 && sym != c->ts.u.derived)
13910 add_dt_to_dt_list (c->ts.u.derived);
13911
13912 if (!gfc_resolve_array_spec (c->as,
13913 !(c->attr.pointer || c->attr.proc_pointer
13914 || c->attr.allocatable)))
13915 return false;
13916
13917 if (c->initializer && !sym->attr.vtype
13918 && !c->attr.pdt_kind && !c->attr.pdt_len
13919 && !gfc_check_assign_symbol (sym, c, c->initializer))
13920 return false;
13921
13922 return true;
13923 }
13924
13925
13926 /* Be nice about the locus for a structure expression - show the locus of the
13927 first non-null sub-expression if we can. */
13928
13929 static locus *
13930 cons_where (gfc_expr *struct_expr)
13931 {
13932 gfc_constructor *cons;
13933
13934 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
13935
13936 cons = gfc_constructor_first (struct_expr->value.constructor);
13937 for (; cons; cons = gfc_constructor_next (cons))
13938 {
13939 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
13940 return &cons->expr->where;
13941 }
13942
13943 return &struct_expr->where;
13944 }
13945
13946 /* Resolve the components of a structure type. Much less work than derived
13947 types. */
13948
13949 static bool
13950 resolve_fl_struct (gfc_symbol *sym)
13951 {
13952 gfc_component *c;
13953 gfc_expr *init = NULL;
13954 bool success;
13955
13956 /* Make sure UNIONs do not have overlapping initializers. */
13957 if (sym->attr.flavor == FL_UNION)
13958 {
13959 for (c = sym->components; c; c = c->next)
13960 {
13961 if (init && c->initializer)
13962 {
13963 gfc_error ("Conflicting initializers in union at %L and %L",
13964 cons_where (init), cons_where (c->initializer));
13965 gfc_free_expr (c->initializer);
13966 c->initializer = NULL;
13967 }
13968 if (init == NULL)
13969 init = c->initializer;
13970 }
13971 }
13972
13973 success = true;
13974 for (c = sym->components; c; c = c->next)
13975 if (!resolve_component (c, sym))
13976 success = false;
13977
13978 if (!success)
13979 return false;
13980
13981 if (sym->components)
13982 add_dt_to_dt_list (sym);
13983
13984 return true;
13985 }
13986
13987
13988 /* Resolve the components of a derived type. This does not have to wait until
13989 resolution stage, but can be done as soon as the dt declaration has been
13990 parsed. */
13991
13992 static bool
13993 resolve_fl_derived0 (gfc_symbol *sym)
13994 {
13995 gfc_symbol* super_type;
13996 gfc_component *c;
13997 gfc_formal_arglist *f;
13998 bool success;
13999
14000 if (sym->attr.unlimited_polymorphic)
14001 return true;
14002
14003 super_type = gfc_get_derived_super_type (sym);
14004
14005 /* F2008, C432. */
14006 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14007 {
14008 gfc_error ("As extending type %qs at %L has a coarray component, "
14009 "parent type %qs shall also have one", sym->name,
14010 &sym->declared_at, super_type->name);
14011 return false;
14012 }
14013
14014 /* Ensure the extended type gets resolved before we do. */
14015 if (super_type && !resolve_fl_derived0 (super_type))
14016 return false;
14017
14018 /* An ABSTRACT type must be extensible. */
14019 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14020 {
14021 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14022 sym->name, &sym->declared_at);
14023 return false;
14024 }
14025
14026 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14027 : sym->components;
14028
14029 success = true;
14030 for ( ; c != NULL; c = c->next)
14031 if (!resolve_component (c, sym))
14032 success = false;
14033
14034 if (!success)
14035 return false;
14036
14037 /* Now add the caf token field, where needed. */
14038 if (flag_coarray != GFC_FCOARRAY_NONE
14039 && !sym->attr.is_class && !sym->attr.vtype)
14040 {
14041 for (c = sym->components; c; c = c->next)
14042 if (!c->attr.dimension && !c->attr.codimension
14043 && (c->attr.allocatable || c->attr.pointer))
14044 {
14045 char name[GFC_MAX_SYMBOL_LEN+9];
14046 gfc_component *token;
14047 sprintf (name, "_caf_%s", c->name);
14048 token = gfc_find_component (sym, name, true, true, NULL);
14049 if (token == NULL)
14050 {
14051 if (!gfc_add_component (sym, name, &token))
14052 return false;
14053 token->ts.type = BT_VOID;
14054 token->ts.kind = gfc_default_integer_kind;
14055 token->attr.access = ACCESS_PRIVATE;
14056 token->attr.artificial = 1;
14057 token->attr.caf_token = 1;
14058 }
14059 }
14060 }
14061
14062 check_defined_assignments (sym);
14063
14064 if (!sym->attr.defined_assign_comp && super_type)
14065 sym->attr.defined_assign_comp
14066 = super_type->attr.defined_assign_comp;
14067
14068 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14069 all DEFERRED bindings are overridden. */
14070 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14071 && !sym->attr.is_class
14072 && !ensure_not_abstract (sym, super_type))
14073 return false;
14074
14075 /* Check that there is a component for every PDT parameter. */
14076 if (sym->attr.pdt_template)
14077 {
14078 for (f = sym->formal; f; f = f->next)
14079 {
14080 if (!f->sym)
14081 continue;
14082 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14083 if (c == NULL)
14084 {
14085 gfc_error ("Parameterized type %qs does not have a component "
14086 "corresponding to parameter %qs at %L", sym->name,
14087 f->sym->name, &sym->declared_at);
14088 break;
14089 }
14090 }
14091 }
14092
14093 /* Add derived type to the derived type list. */
14094 add_dt_to_dt_list (sym);
14095
14096 return true;
14097 }
14098
14099
14100 /* The following procedure does the full resolution of a derived type,
14101 including resolution of all type-bound procedures (if present). In contrast
14102 to 'resolve_fl_derived0' this can only be done after the module has been
14103 parsed completely. */
14104
14105 static bool
14106 resolve_fl_derived (gfc_symbol *sym)
14107 {
14108 gfc_symbol *gen_dt = NULL;
14109
14110 if (sym->attr.unlimited_polymorphic)
14111 return true;
14112
14113 if (!sym->attr.is_class)
14114 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14115 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14116 && (!gen_dt->generic->sym->attr.use_assoc
14117 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14118 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14119 "%qs at %L being the same name as derived "
14120 "type at %L", sym->name,
14121 gen_dt->generic->sym == sym
14122 ? gen_dt->generic->next->sym->name
14123 : gen_dt->generic->sym->name,
14124 gen_dt->generic->sym == sym
14125 ? &gen_dt->generic->next->sym->declared_at
14126 : &gen_dt->generic->sym->declared_at,
14127 &sym->declared_at))
14128 return false;
14129
14130 /* Resolve the finalizer procedures. */
14131 if (!gfc_resolve_finalizers (sym, NULL))
14132 return false;
14133
14134 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14135 {
14136 /* Fix up incomplete CLASS symbols. */
14137 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14138 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14139
14140 /* Nothing more to do for unlimited polymorphic entities. */
14141 if (data->ts.u.derived->attr.unlimited_polymorphic)
14142 return true;
14143 else if (vptr->ts.u.derived == NULL)
14144 {
14145 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14146 gcc_assert (vtab);
14147 vptr->ts.u.derived = vtab->ts.u.derived;
14148 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14149 return false;
14150 }
14151 }
14152
14153 if (!resolve_fl_derived0 (sym))
14154 return false;
14155
14156 /* Resolve the type-bound procedures. */
14157 if (!resolve_typebound_procedures (sym))
14158 return false;
14159
14160 /* Generate module vtables subject to their accessibility and their not
14161 being vtables or pdt templates. If this is not done class declarations
14162 in external procedures wind up with their own version and so SELECT TYPE
14163 fails because the vptrs do not have the same address. */
14164 if (gfc_option.allow_std & GFC_STD_F2003
14165 && sym->ns->proc_name
14166 && sym->ns->proc_name->attr.flavor == FL_MODULE
14167 && sym->attr.access != ACCESS_PRIVATE
14168 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14169 {
14170 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14171 gfc_set_sym_referenced (vtab);
14172 }
14173
14174 return true;
14175 }
14176
14177
14178 static bool
14179 resolve_fl_namelist (gfc_symbol *sym)
14180 {
14181 gfc_namelist *nl;
14182 gfc_symbol *nlsym;
14183
14184 for (nl = sym->namelist; nl; nl = nl->next)
14185 {
14186 /* Check again, the check in match only works if NAMELIST comes
14187 after the decl. */
14188 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14189 {
14190 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14191 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14192 return false;
14193 }
14194
14195 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14196 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14197 "with assumed shape in namelist %qs at %L",
14198 nl->sym->name, sym->name, &sym->declared_at))
14199 return false;
14200
14201 if (is_non_constant_shape_array (nl->sym)
14202 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14203 "with nonconstant shape in namelist %qs at %L",
14204 nl->sym->name, sym->name, &sym->declared_at))
14205 return false;
14206
14207 if (nl->sym->ts.type == BT_CHARACTER
14208 && (nl->sym->ts.u.cl->length == NULL
14209 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14210 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14211 "nonconstant character length in "
14212 "namelist %qs at %L", nl->sym->name,
14213 sym->name, &sym->declared_at))
14214 return false;
14215
14216 }
14217
14218 /* Reject PRIVATE objects in a PUBLIC namelist. */
14219 if (gfc_check_symbol_access (sym))
14220 {
14221 for (nl = sym->namelist; nl; nl = nl->next)
14222 {
14223 if (!nl->sym->attr.use_assoc
14224 && !is_sym_host_assoc (nl->sym, sym->ns)
14225 && !gfc_check_symbol_access (nl->sym))
14226 {
14227 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14228 "cannot be member of PUBLIC namelist %qs at %L",
14229 nl->sym->name, sym->name, &sym->declared_at);
14230 return false;
14231 }
14232
14233 if (nl->sym->ts.type == BT_DERIVED
14234 && (nl->sym->ts.u.derived->attr.alloc_comp
14235 || nl->sym->ts.u.derived->attr.pointer_comp))
14236 {
14237 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14238 "namelist %qs at %L with ALLOCATABLE "
14239 "or POINTER components", nl->sym->name,
14240 sym->name, &sym->declared_at))
14241 return false;
14242 return true;
14243 }
14244
14245 /* Types with private components that came here by USE-association. */
14246 if (nl->sym->ts.type == BT_DERIVED
14247 && derived_inaccessible (nl->sym->ts.u.derived))
14248 {
14249 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14250 "components and cannot be member of namelist %qs at %L",
14251 nl->sym->name, sym->name, &sym->declared_at);
14252 return false;
14253 }
14254
14255 /* Types with private components that are defined in the same module. */
14256 if (nl->sym->ts.type == BT_DERIVED
14257 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14258 && nl->sym->ts.u.derived->attr.private_comp)
14259 {
14260 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14261 "cannot be a member of PUBLIC namelist %qs at %L",
14262 nl->sym->name, sym->name, &sym->declared_at);
14263 return false;
14264 }
14265 }
14266 }
14267
14268
14269 /* 14.1.2 A module or internal procedure represent local entities
14270 of the same type as a namelist member and so are not allowed. */
14271 for (nl = sym->namelist; nl; nl = nl->next)
14272 {
14273 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
14274 continue;
14275
14276 if (nl->sym->attr.function && nl->sym == nl->sym->result)
14277 if ((nl->sym == sym->ns->proc_name)
14278 ||
14279 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
14280 continue;
14281
14282 nlsym = NULL;
14283 if (nl->sym->name)
14284 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
14285 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
14286 {
14287 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14288 "attribute in %qs at %L", nlsym->name,
14289 &sym->declared_at);
14290 return false;
14291 }
14292 }
14293
14294 if (async_io_dt)
14295 {
14296 for (nl = sym->namelist; nl; nl = nl->next)
14297 nl->sym->attr.asynchronous = 1;
14298 }
14299 return true;
14300 }
14301
14302
14303 static bool
14304 resolve_fl_parameter (gfc_symbol *sym)
14305 {
14306 /* A parameter array's shape needs to be constant. */
14307 if (sym->as != NULL
14308 && (sym->as->type == AS_DEFERRED
14309 || is_non_constant_shape_array (sym)))
14310 {
14311 gfc_error ("Parameter array %qs at %L cannot be automatic "
14312 "or of deferred shape", sym->name, &sym->declared_at);
14313 return false;
14314 }
14315
14316 /* Constraints on deferred type parameter. */
14317 if (!deferred_requirements (sym))
14318 return false;
14319
14320 /* Make sure a parameter that has been implicitly typed still
14321 matches the implicit type, since PARAMETER statements can precede
14322 IMPLICIT statements. */
14323 if (sym->attr.implicit_type
14324 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
14325 sym->ns)))
14326 {
14327 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
14328 "later IMPLICIT type", sym->name, &sym->declared_at);
14329 return false;
14330 }
14331
14332 /* Make sure the types of derived parameters are consistent. This
14333 type checking is deferred until resolution because the type may
14334 refer to a derived type from the host. */
14335 if (sym->ts.type == BT_DERIVED
14336 && !gfc_compare_types (&sym->ts, &sym->value->ts))
14337 {
14338 gfc_error ("Incompatible derived type in PARAMETER at %L",
14339 &sym->value->where);
14340 return false;
14341 }
14342
14343 /* F03:C509,C514. */
14344 if (sym->ts.type == BT_CLASS)
14345 {
14346 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
14347 sym->name, &sym->declared_at);
14348 return false;
14349 }
14350
14351 return true;
14352 }
14353
14354
14355 /* Called by resolve_symbol to check PDTs. */
14356
14357 static void
14358 resolve_pdt (gfc_symbol* sym)
14359 {
14360 gfc_symbol *derived = NULL;
14361 gfc_actual_arglist *param;
14362 gfc_component *c;
14363 bool const_len_exprs = true;
14364 bool assumed_len_exprs = false;
14365 symbol_attribute *attr;
14366
14367 if (sym->ts.type == BT_DERIVED)
14368 {
14369 derived = sym->ts.u.derived;
14370 attr = &(sym->attr);
14371 }
14372 else if (sym->ts.type == BT_CLASS)
14373 {
14374 derived = CLASS_DATA (sym)->ts.u.derived;
14375 attr = &(CLASS_DATA (sym)->attr);
14376 }
14377 else
14378 gcc_unreachable ();
14379
14380 gcc_assert (derived->attr.pdt_type);
14381
14382 for (param = sym->param_list; param; param = param->next)
14383 {
14384 c = gfc_find_component (derived, param->name, false, true, NULL);
14385 gcc_assert (c);
14386 if (c->attr.pdt_kind)
14387 continue;
14388
14389 if (param->expr && !gfc_is_constant_expr (param->expr)
14390 && c->attr.pdt_len)
14391 const_len_exprs = false;
14392 else if (param->spec_type == SPEC_ASSUMED)
14393 assumed_len_exprs = true;
14394
14395 if (param->spec_type == SPEC_DEFERRED
14396 && !attr->allocatable && !attr->pointer)
14397 gfc_error ("The object %qs at %L has a deferred LEN "
14398 "parameter %qs and is neither allocatable "
14399 "nor a pointer", sym->name, &sym->declared_at,
14400 param->name);
14401
14402 }
14403
14404 if (!const_len_exprs
14405 && (sym->ns->proc_name->attr.is_main_program
14406 || sym->ns->proc_name->attr.flavor == FL_MODULE
14407 || sym->attr.save != SAVE_NONE))
14408 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
14409 "SAVE attribute or be a variable declared in the "
14410 "main program, a module or a submodule(F08/C513)",
14411 sym->name, &sym->declared_at);
14412
14413 if (assumed_len_exprs && !(sym->attr.dummy
14414 || sym->attr.select_type_temporary || sym->attr.associate_var))
14415 gfc_error ("The object %qs at %L with ASSUMED type parameters "
14416 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
14417 sym->name, &sym->declared_at);
14418 }
14419
14420
14421 /* Do anything necessary to resolve a symbol. Right now, we just
14422 assume that an otherwise unknown symbol is a variable. This sort
14423 of thing commonly happens for symbols in module. */
14424
14425 static void
14426 resolve_symbol (gfc_symbol *sym)
14427 {
14428 int check_constant, mp_flag;
14429 gfc_symtree *symtree;
14430 gfc_symtree *this_symtree;
14431 gfc_namespace *ns;
14432 gfc_component *c;
14433 symbol_attribute class_attr;
14434 gfc_array_spec *as;
14435 bool saved_specification_expr;
14436
14437 if (sym->resolved)
14438 return;
14439 sym->resolved = 1;
14440
14441 /* No symbol will ever have union type; only components can be unions.
14442 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
14443 (just like derived type declaration symbols have flavor FL_DERIVED). */
14444 gcc_assert (sym->ts.type != BT_UNION);
14445
14446 /* Coarrayed polymorphic objects with allocatable or pointer components are
14447 yet unsupported for -fcoarray=lib. */
14448 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
14449 && sym->ts.u.derived && CLASS_DATA (sym)
14450 && CLASS_DATA (sym)->attr.codimension
14451 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
14452 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
14453 {
14454 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
14455 "type coarrays at %L are unsupported", &sym->declared_at);
14456 return;
14457 }
14458
14459 if (sym->attr.artificial)
14460 return;
14461
14462 if (sym->attr.unlimited_polymorphic)
14463 return;
14464
14465 if (sym->attr.flavor == FL_UNKNOWN
14466 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
14467 && !sym->attr.generic && !sym->attr.external
14468 && sym->attr.if_source == IFSRC_UNKNOWN
14469 && sym->ts.type == BT_UNKNOWN))
14470 {
14471
14472 /* If we find that a flavorless symbol is an interface in one of the
14473 parent namespaces, find its symtree in this namespace, free the
14474 symbol and set the symtree to point to the interface symbol. */
14475 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
14476 {
14477 symtree = gfc_find_symtree (ns->sym_root, sym->name);
14478 if (symtree && (symtree->n.sym->generic ||
14479 (symtree->n.sym->attr.flavor == FL_PROCEDURE
14480 && sym->ns->construct_entities)))
14481 {
14482 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
14483 sym->name);
14484 if (this_symtree->n.sym == sym)
14485 {
14486 symtree->n.sym->refs++;
14487 gfc_release_symbol (sym);
14488 this_symtree->n.sym = symtree->n.sym;
14489 return;
14490 }
14491 }
14492 }
14493
14494 /* Otherwise give it a flavor according to such attributes as
14495 it has. */
14496 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
14497 && sym->attr.intrinsic == 0)
14498 sym->attr.flavor = FL_VARIABLE;
14499 else if (sym->attr.flavor == FL_UNKNOWN)
14500 {
14501 sym->attr.flavor = FL_PROCEDURE;
14502 if (sym->attr.dimension)
14503 sym->attr.function = 1;
14504 }
14505 }
14506
14507 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
14508 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
14509
14510 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
14511 && !resolve_procedure_interface (sym))
14512 return;
14513
14514 if (sym->attr.is_protected && !sym->attr.proc_pointer
14515 && (sym->attr.procedure || sym->attr.external))
14516 {
14517 if (sym->attr.external)
14518 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
14519 "at %L", &sym->declared_at);
14520 else
14521 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
14522 "at %L", &sym->declared_at);
14523
14524 return;
14525 }
14526
14527 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
14528 return;
14529
14530 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
14531 && !resolve_fl_struct (sym))
14532 return;
14533
14534 /* Symbols that are module procedures with results (functions) have
14535 the types and array specification copied for type checking in
14536 procedures that call them, as well as for saving to a module
14537 file. These symbols can't stand the scrutiny that their results
14538 can. */
14539 mp_flag = (sym->result != NULL && sym->result != sym);
14540
14541 /* Make sure that the intrinsic is consistent with its internal
14542 representation. This needs to be done before assigning a default
14543 type to avoid spurious warnings. */
14544 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
14545 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
14546 return;
14547
14548 /* Resolve associate names. */
14549 if (sym->assoc)
14550 resolve_assoc_var (sym, true);
14551
14552 /* Assign default type to symbols that need one and don't have one. */
14553 if (sym->ts.type == BT_UNKNOWN)
14554 {
14555 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
14556 {
14557 gfc_set_default_type (sym, 1, NULL);
14558 }
14559
14560 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
14561 && !sym->attr.function && !sym->attr.subroutine
14562 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
14563 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
14564
14565 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14566 {
14567 /* The specific case of an external procedure should emit an error
14568 in the case that there is no implicit type. */
14569 if (!mp_flag)
14570 {
14571 if (!sym->attr.mixed_entry_master)
14572 gfc_set_default_type (sym, sym->attr.external, NULL);
14573 }
14574 else
14575 {
14576 /* Result may be in another namespace. */
14577 resolve_symbol (sym->result);
14578
14579 if (!sym->result->attr.proc_pointer)
14580 {
14581 sym->ts = sym->result->ts;
14582 sym->as = gfc_copy_array_spec (sym->result->as);
14583 sym->attr.dimension = sym->result->attr.dimension;
14584 sym->attr.pointer = sym->result->attr.pointer;
14585 sym->attr.allocatable = sym->result->attr.allocatable;
14586 sym->attr.contiguous = sym->result->attr.contiguous;
14587 }
14588 }
14589 }
14590 }
14591 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14592 {
14593 bool saved_specification_expr = specification_expr;
14594 specification_expr = true;
14595 gfc_resolve_array_spec (sym->result->as, false);
14596 specification_expr = saved_specification_expr;
14597 }
14598
14599 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
14600 {
14601 as = CLASS_DATA (sym)->as;
14602 class_attr = CLASS_DATA (sym)->attr;
14603 class_attr.pointer = class_attr.class_pointer;
14604 }
14605 else
14606 {
14607 class_attr = sym->attr;
14608 as = sym->as;
14609 }
14610
14611 /* F2008, C530. */
14612 if (sym->attr.contiguous
14613 && (!class_attr.dimension
14614 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
14615 && !class_attr.pointer)))
14616 {
14617 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
14618 "array pointer or an assumed-shape or assumed-rank array",
14619 sym->name, &sym->declared_at);
14620 return;
14621 }
14622
14623 /* Assumed size arrays and assumed shape arrays must be dummy
14624 arguments. Array-spec's of implied-shape should have been resolved to
14625 AS_EXPLICIT already. */
14626
14627 if (as)
14628 {
14629 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
14630 specification expression. */
14631 if (as->type == AS_IMPLIED_SHAPE)
14632 {
14633 int i;
14634 for (i=0; i<as->rank; i++)
14635 {
14636 if (as->lower[i] != NULL && as->upper[i] == NULL)
14637 {
14638 gfc_error ("Bad specification for assumed size array at %L",
14639 &as->lower[i]->where);
14640 return;
14641 }
14642 }
14643 gcc_unreachable();
14644 }
14645
14646 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
14647 || as->type == AS_ASSUMED_SHAPE)
14648 && !sym->attr.dummy && !sym->attr.select_type_temporary)
14649 {
14650 if (as->type == AS_ASSUMED_SIZE)
14651 gfc_error ("Assumed size array at %L must be a dummy argument",
14652 &sym->declared_at);
14653 else
14654 gfc_error ("Assumed shape array at %L must be a dummy argument",
14655 &sym->declared_at);
14656 return;
14657 }
14658 /* TS 29113, C535a. */
14659 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
14660 && !sym->attr.select_type_temporary)
14661 {
14662 gfc_error ("Assumed-rank array at %L must be a dummy argument",
14663 &sym->declared_at);
14664 return;
14665 }
14666 if (as->type == AS_ASSUMED_RANK
14667 && (sym->attr.codimension || sym->attr.value))
14668 {
14669 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
14670 "CODIMENSION attribute", &sym->declared_at);
14671 return;
14672 }
14673 }
14674
14675 /* Make sure symbols with known intent or optional are really dummy
14676 variable. Because of ENTRY statement, this has to be deferred
14677 until resolution time. */
14678
14679 if (!sym->attr.dummy
14680 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
14681 {
14682 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
14683 return;
14684 }
14685
14686 if (sym->attr.value && !sym->attr.dummy)
14687 {
14688 gfc_error ("%qs at %L cannot have the VALUE attribute because "
14689 "it is not a dummy argument", sym->name, &sym->declared_at);
14690 return;
14691 }
14692
14693 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
14694 {
14695 gfc_charlen *cl = sym->ts.u.cl;
14696 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
14697 {
14698 gfc_error ("Character dummy variable %qs at %L with VALUE "
14699 "attribute must have constant length",
14700 sym->name, &sym->declared_at);
14701 return;
14702 }
14703
14704 if (sym->ts.is_c_interop
14705 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
14706 {
14707 gfc_error ("C interoperable character dummy variable %qs at %L "
14708 "with VALUE attribute must have length one",
14709 sym->name, &sym->declared_at);
14710 return;
14711 }
14712 }
14713
14714 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
14715 && sym->ts.u.derived->attr.generic)
14716 {
14717 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
14718 if (!sym->ts.u.derived)
14719 {
14720 gfc_error ("The derived type %qs at %L is of type %qs, "
14721 "which has not been defined", sym->name,
14722 &sym->declared_at, sym->ts.u.derived->name);
14723 sym->ts.type = BT_UNKNOWN;
14724 return;
14725 }
14726 }
14727
14728 /* Use the same constraints as TYPE(*), except for the type check
14729 and that only scalars and assumed-size arrays are permitted. */
14730 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
14731 {
14732 if (!sym->attr.dummy)
14733 {
14734 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14735 "a dummy argument", sym->name, &sym->declared_at);
14736 return;
14737 }
14738
14739 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
14740 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
14741 && sym->ts.type != BT_COMPLEX)
14742 {
14743 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14744 "of type TYPE(*) or of an numeric intrinsic type",
14745 sym->name, &sym->declared_at);
14746 return;
14747 }
14748
14749 if (sym->attr.allocatable || sym->attr.codimension
14750 || sym->attr.pointer || sym->attr.value)
14751 {
14752 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14753 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
14754 "attribute", sym->name, &sym->declared_at);
14755 return;
14756 }
14757
14758 if (sym->attr.intent == INTENT_OUT)
14759 {
14760 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14761 "have the INTENT(OUT) attribute",
14762 sym->name, &sym->declared_at);
14763 return;
14764 }
14765 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
14766 {
14767 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
14768 "either be a scalar or an assumed-size array",
14769 sym->name, &sym->declared_at);
14770 return;
14771 }
14772
14773 /* Set the type to TYPE(*) and add a dimension(*) to ensure
14774 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
14775 packing. */
14776 sym->ts.type = BT_ASSUMED;
14777 sym->as = gfc_get_array_spec ();
14778 sym->as->type = AS_ASSUMED_SIZE;
14779 sym->as->rank = 1;
14780 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
14781 }
14782 else if (sym->ts.type == BT_ASSUMED)
14783 {
14784 /* TS 29113, C407a. */
14785 if (!sym->attr.dummy)
14786 {
14787 gfc_error ("Assumed type of variable %s at %L is only permitted "
14788 "for dummy variables", sym->name, &sym->declared_at);
14789 return;
14790 }
14791 if (sym->attr.allocatable || sym->attr.codimension
14792 || sym->attr.pointer || sym->attr.value)
14793 {
14794 gfc_error ("Assumed-type variable %s at %L may not have the "
14795 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
14796 sym->name, &sym->declared_at);
14797 return;
14798 }
14799 if (sym->attr.intent == INTENT_OUT)
14800 {
14801 gfc_error ("Assumed-type variable %s at %L may not have the "
14802 "INTENT(OUT) attribute",
14803 sym->name, &sym->declared_at);
14804 return;
14805 }
14806 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
14807 {
14808 gfc_error ("Assumed-type variable %s at %L shall not be an "
14809 "explicit-shape array", sym->name, &sym->declared_at);
14810 return;
14811 }
14812 }
14813
14814 /* If the symbol is marked as bind(c), that it is declared at module level
14815 scope and verify its type and kind. Do not do the latter for symbols
14816 that are implicitly typed because that is handled in
14817 gfc_set_default_type. Handle dummy arguments and procedure definitions
14818 separately. Also, anything that is use associated is not handled here
14819 but instead is handled in the module it is declared in. Finally, derived
14820 type definitions are allowed to be BIND(C) since that only implies that
14821 they're interoperable, and they are checked fully for interoperability
14822 when a variable is declared of that type. */
14823 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
14824 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
14825 && sym->attr.flavor != FL_DERIVED)
14826 {
14827 bool t = true;
14828
14829 /* First, make sure the variable is declared at the
14830 module-level scope (J3/04-007, Section 15.3). */
14831 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
14832 sym->attr.in_common == 0)
14833 {
14834 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
14835 "is neither a COMMON block nor declared at the "
14836 "module level scope", sym->name, &(sym->declared_at));
14837 t = false;
14838 }
14839 else if (sym->ts.type == BT_CHARACTER
14840 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
14841 || !gfc_is_constant_expr (sym->ts.u.cl->length)
14842 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
14843 {
14844 gfc_error ("BIND(C) Variable %qs at %L must have length one",
14845 sym->name, &sym->declared_at);
14846 t = false;
14847 }
14848 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
14849 {
14850 t = verify_com_block_vars_c_interop (sym->common_head);
14851 }
14852 else if (sym->attr.implicit_type == 0)
14853 {
14854 /* If type() declaration, we need to verify that the components
14855 of the given type are all C interoperable, etc. */
14856 if (sym->ts.type == BT_DERIVED &&
14857 sym->ts.u.derived->attr.is_c_interop != 1)
14858 {
14859 /* Make sure the user marked the derived type as BIND(C). If
14860 not, call the verify routine. This could print an error
14861 for the derived type more than once if multiple variables
14862 of that type are declared. */
14863 if (sym->ts.u.derived->attr.is_bind_c != 1)
14864 verify_bind_c_derived_type (sym->ts.u.derived);
14865 t = false;
14866 }
14867
14868 /* Verify the variable itself as C interoperable if it
14869 is BIND(C). It is not possible for this to succeed if
14870 the verify_bind_c_derived_type failed, so don't have to handle
14871 any error returned by verify_bind_c_derived_type. */
14872 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
14873 sym->common_block);
14874 }
14875
14876 if (!t)
14877 {
14878 /* clear the is_bind_c flag to prevent reporting errors more than
14879 once if something failed. */
14880 sym->attr.is_bind_c = 0;
14881 return;
14882 }
14883 }
14884
14885 /* If a derived type symbol has reached this point, without its
14886 type being declared, we have an error. Notice that most
14887 conditions that produce undefined derived types have already
14888 been dealt with. However, the likes of:
14889 implicit type(t) (t) ..... call foo (t) will get us here if
14890 the type is not declared in the scope of the implicit
14891 statement. Change the type to BT_UNKNOWN, both because it is so
14892 and to prevent an ICE. */
14893 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
14894 && sym->ts.u.derived->components == NULL
14895 && !sym->ts.u.derived->attr.zero_comp)
14896 {
14897 gfc_error ("The derived type %qs at %L is of type %qs, "
14898 "which has not been defined", sym->name,
14899 &sym->declared_at, sym->ts.u.derived->name);
14900 sym->ts.type = BT_UNKNOWN;
14901 return;
14902 }
14903
14904 /* Make sure that the derived type has been resolved and that the
14905 derived type is visible in the symbol's namespace, if it is a
14906 module function and is not PRIVATE. */
14907 if (sym->ts.type == BT_DERIVED
14908 && sym->ts.u.derived->attr.use_assoc
14909 && sym->ns->proc_name
14910 && sym->ns->proc_name->attr.flavor == FL_MODULE
14911 && !resolve_fl_derived (sym->ts.u.derived))
14912 return;
14913
14914 /* Unless the derived-type declaration is use associated, Fortran 95
14915 does not allow public entries of private derived types.
14916 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
14917 161 in 95-006r3. */
14918 if (sym->ts.type == BT_DERIVED
14919 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
14920 && !sym->ts.u.derived->attr.use_assoc
14921 && gfc_check_symbol_access (sym)
14922 && !gfc_check_symbol_access (sym->ts.u.derived)
14923 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
14924 "derived type %qs",
14925 (sym->attr.flavor == FL_PARAMETER)
14926 ? "parameter" : "variable",
14927 sym->name, &sym->declared_at,
14928 sym->ts.u.derived->name))
14929 return;
14930
14931 /* F2008, C1302. */
14932 if (sym->ts.type == BT_DERIVED
14933 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
14934 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
14935 || sym->ts.u.derived->attr.lock_comp)
14936 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
14937 {
14938 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
14939 "type LOCK_TYPE must be a coarray", sym->name,
14940 &sym->declared_at);
14941 return;
14942 }
14943
14944 /* TS18508, C702/C703. */
14945 if (sym->ts.type == BT_DERIVED
14946 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
14947 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
14948 || sym->ts.u.derived->attr.event_comp)
14949 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
14950 {
14951 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
14952 "type EVENT_TYPE must be a coarray", sym->name,
14953 &sym->declared_at);
14954 return;
14955 }
14956
14957 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
14958 default initialization is defined (5.1.2.4.4). */
14959 if (sym->ts.type == BT_DERIVED
14960 && sym->attr.dummy
14961 && sym->attr.intent == INTENT_OUT
14962 && sym->as
14963 && sym->as->type == AS_ASSUMED_SIZE)
14964 {
14965 for (c = sym->ts.u.derived->components; c; c = c->next)
14966 {
14967 if (c->initializer)
14968 {
14969 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
14970 "ASSUMED SIZE and so cannot have a default initializer",
14971 sym->name, &sym->declared_at);
14972 return;
14973 }
14974 }
14975 }
14976
14977 /* F2008, C542. */
14978 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
14979 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
14980 {
14981 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
14982 "INTENT(OUT)", sym->name, &sym->declared_at);
14983 return;
14984 }
14985
14986 /* TS18508. */
14987 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
14988 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
14989 {
14990 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
14991 "INTENT(OUT)", sym->name, &sym->declared_at);
14992 return;
14993 }
14994
14995 /* F2008, C525. */
14996 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
14997 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
14998 && CLASS_DATA (sym)->attr.coarray_comp))
14999 || class_attr.codimension)
15000 && (sym->attr.result || sym->result == sym))
15001 {
15002 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15003 "a coarray component", sym->name, &sym->declared_at);
15004 return;
15005 }
15006
15007 /* F2008, C524. */
15008 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15009 && sym->ts.u.derived->ts.is_iso_c)
15010 {
15011 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15012 "shall not be a coarray", sym->name, &sym->declared_at);
15013 return;
15014 }
15015
15016 /* F2008, C525. */
15017 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15018 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15019 && CLASS_DATA (sym)->attr.coarray_comp))
15020 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15021 || class_attr.allocatable))
15022 {
15023 gfc_error ("Variable %qs at %L with coarray component shall be a "
15024 "nonpointer, nonallocatable scalar, which is not a coarray",
15025 sym->name, &sym->declared_at);
15026 return;
15027 }
15028
15029 /* F2008, C526. The function-result case was handled above. */
15030 if (class_attr.codimension
15031 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15032 || sym->attr.select_type_temporary
15033 || sym->attr.associate_var
15034 || (sym->ns->save_all && !sym->attr.automatic)
15035 || sym->ns->proc_name->attr.flavor == FL_MODULE
15036 || sym->ns->proc_name->attr.is_main_program
15037 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15038 {
15039 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15040 "nor a dummy argument", sym->name, &sym->declared_at);
15041 return;
15042 }
15043 /* F2008, C528. */
15044 else if (class_attr.codimension && !sym->attr.select_type_temporary
15045 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15046 {
15047 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15048 "deferred shape", sym->name, &sym->declared_at);
15049 return;
15050 }
15051 else if (class_attr.codimension && class_attr.allocatable && as
15052 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15053 {
15054 gfc_error ("Allocatable coarray variable %qs at %L must have "
15055 "deferred shape", sym->name, &sym->declared_at);
15056 return;
15057 }
15058
15059 /* F2008, C541. */
15060 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15061 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15062 && CLASS_DATA (sym)->attr.coarray_comp))
15063 || (class_attr.codimension && class_attr.allocatable))
15064 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15065 {
15066 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15067 "allocatable coarray or have coarray components",
15068 sym->name, &sym->declared_at);
15069 return;
15070 }
15071
15072 if (class_attr.codimension && sym->attr.dummy
15073 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15074 {
15075 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15076 "procedure %qs", sym->name, &sym->declared_at,
15077 sym->ns->proc_name->name);
15078 return;
15079 }
15080
15081 if (sym->ts.type == BT_LOGICAL
15082 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15083 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15084 && sym->ns->proc_name->attr.is_bind_c)))
15085 {
15086 int i;
15087 for (i = 0; gfc_logical_kinds[i].kind; i++)
15088 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15089 break;
15090 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15091 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15092 "%L with non-C_Bool kind in BIND(C) procedure "
15093 "%qs", sym->name, &sym->declared_at,
15094 sym->ns->proc_name->name))
15095 return;
15096 else if (!gfc_logical_kinds[i].c_bool
15097 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15098 "%qs at %L with non-C_Bool kind in "
15099 "BIND(C) procedure %qs", sym->name,
15100 &sym->declared_at,
15101 sym->attr.function ? sym->name
15102 : sym->ns->proc_name->name))
15103 return;
15104 }
15105
15106 switch (sym->attr.flavor)
15107 {
15108 case FL_VARIABLE:
15109 if (!resolve_fl_variable (sym, mp_flag))
15110 return;
15111 break;
15112
15113 case FL_PROCEDURE:
15114 if (sym->formal && !sym->formal_ns)
15115 {
15116 /* Check that none of the arguments are a namelist. */
15117 gfc_formal_arglist *formal = sym->formal;
15118
15119 for (; formal; formal = formal->next)
15120 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15121 {
15122 gfc_error ("Namelist %qs can not be an argument to "
15123 "subroutine or function at %L",
15124 formal->sym->name, &sym->declared_at);
15125 return;
15126 }
15127 }
15128
15129 if (!resolve_fl_procedure (sym, mp_flag))
15130 return;
15131 break;
15132
15133 case FL_NAMELIST:
15134 if (!resolve_fl_namelist (sym))
15135 return;
15136 break;
15137
15138 case FL_PARAMETER:
15139 if (!resolve_fl_parameter (sym))
15140 return;
15141 break;
15142
15143 default:
15144 break;
15145 }
15146
15147 /* Resolve array specifier. Check as well some constraints
15148 on COMMON blocks. */
15149
15150 check_constant = sym->attr.in_common && !sym->attr.pointer;
15151
15152 /* Set the formal_arg_flag so that check_conflict will not throw
15153 an error for host associated variables in the specification
15154 expression for an array_valued function. */
15155 if (sym->attr.function && sym->as)
15156 formal_arg_flag = true;
15157
15158 saved_specification_expr = specification_expr;
15159 specification_expr = true;
15160 gfc_resolve_array_spec (sym->as, check_constant);
15161 specification_expr = saved_specification_expr;
15162
15163 formal_arg_flag = false;
15164
15165 /* Resolve formal namespaces. */
15166 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15167 && !sym->attr.contained && !sym->attr.intrinsic)
15168 gfc_resolve (sym->formal_ns);
15169
15170 /* Make sure the formal namespace is present. */
15171 if (sym->formal && !sym->formal_ns)
15172 {
15173 gfc_formal_arglist *formal = sym->formal;
15174 while (formal && !formal->sym)
15175 formal = formal->next;
15176
15177 if (formal)
15178 {
15179 sym->formal_ns = formal->sym->ns;
15180 if (sym->ns != formal->sym->ns)
15181 sym->formal_ns->refs++;
15182 }
15183 }
15184
15185 /* Check threadprivate restrictions. */
15186 if (sym->attr.threadprivate && !sym->attr.save
15187 && !(sym->ns->save_all && !sym->attr.automatic)
15188 && (!sym->attr.in_common
15189 && sym->module == NULL
15190 && (sym->ns->proc_name == NULL
15191 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15192 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15193
15194 /* Check omp declare target restrictions. */
15195 if (sym->attr.omp_declare_target
15196 && sym->attr.flavor == FL_VARIABLE
15197 && !sym->attr.save
15198 && !(sym->ns->save_all && !sym->attr.automatic)
15199 && (!sym->attr.in_common
15200 && sym->module == NULL
15201 && (sym->ns->proc_name == NULL
15202 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15203 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15204 sym->name, &sym->declared_at);
15205
15206 /* If we have come this far we can apply default-initializers, as
15207 described in 14.7.5, to those variables that have not already
15208 been assigned one. */
15209 if (sym->ts.type == BT_DERIVED
15210 && !sym->value
15211 && !sym->attr.allocatable
15212 && !sym->attr.alloc_comp)
15213 {
15214 symbol_attribute *a = &sym->attr;
15215
15216 if ((!a->save && !a->dummy && !a->pointer
15217 && !a->in_common && !a->use_assoc
15218 && a->referenced
15219 && !((a->function || a->result)
15220 && (!a->dimension
15221 || sym->ts.u.derived->attr.alloc_comp
15222 || sym->ts.u.derived->attr.pointer_comp))
15223 && !(a->function && sym != sym->result))
15224 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15225 apply_default_init (sym);
15226 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15227 && (sym->ts.u.derived->attr.alloc_comp
15228 || sym->ts.u.derived->attr.pointer_comp))
15229 /* Mark the result symbol to be referenced, when it has allocatable
15230 components. */
15231 sym->result->attr.referenced = 1;
15232 }
15233
15234 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15235 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15236 && !CLASS_DATA (sym)->attr.class_pointer
15237 && !CLASS_DATA (sym)->attr.allocatable)
15238 apply_default_init (sym);
15239
15240 /* If this symbol has a type-spec, check it. */
15241 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15242 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15243 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15244 return;
15245
15246 if (sym->param_list)
15247 resolve_pdt (sym);
15248 }
15249
15250
15251 /************* Resolve DATA statements *************/
15252
15253 static struct
15254 {
15255 gfc_data_value *vnode;
15256 mpz_t left;
15257 }
15258 values;
15259
15260
15261 /* Advance the values structure to point to the next value in the data list. */
15262
15263 static bool
15264 next_data_value (void)
15265 {
15266 while (mpz_cmp_ui (values.left, 0) == 0)
15267 {
15268
15269 if (values.vnode->next == NULL)
15270 return false;
15271
15272 values.vnode = values.vnode->next;
15273 mpz_set (values.left, values.vnode->repeat);
15274 }
15275
15276 return true;
15277 }
15278
15279
15280 static bool
15281 check_data_variable (gfc_data_variable *var, locus *where)
15282 {
15283 gfc_expr *e;
15284 mpz_t size;
15285 mpz_t offset;
15286 bool t;
15287 ar_type mark = AR_UNKNOWN;
15288 int i;
15289 mpz_t section_index[GFC_MAX_DIMENSIONS];
15290 gfc_ref *ref;
15291 gfc_array_ref *ar;
15292 gfc_symbol *sym;
15293 int has_pointer;
15294
15295 if (!gfc_resolve_expr (var->expr))
15296 return false;
15297
15298 ar = NULL;
15299 mpz_init_set_si (offset, 0);
15300 e = var->expr;
15301
15302 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
15303 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
15304 e = e->value.function.actual->expr;
15305
15306 if (e->expr_type != EXPR_VARIABLE)
15307 gfc_internal_error ("check_data_variable(): Bad expression");
15308
15309 sym = e->symtree->n.sym;
15310
15311 if (sym->ns->is_block_data && !sym->attr.in_common)
15312 {
15313 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15314 sym->name, &sym->declared_at);
15315 }
15316
15317 if (e->ref == NULL && sym->as)
15318 {
15319 gfc_error ("DATA array %qs at %L must be specified in a previous"
15320 " declaration", sym->name, where);
15321 return false;
15322 }
15323
15324 has_pointer = sym->attr.pointer;
15325
15326 if (gfc_is_coindexed (e))
15327 {
15328 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
15329 where);
15330 return false;
15331 }
15332
15333 for (ref = e->ref; ref; ref = ref->next)
15334 {
15335 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
15336 has_pointer = 1;
15337
15338 if (has_pointer
15339 && ref->type == REF_ARRAY
15340 && ref->u.ar.type != AR_FULL)
15341 {
15342 gfc_error ("DATA element %qs at %L is a pointer and so must "
15343 "be a full array", sym->name, where);
15344 return false;
15345 }
15346 }
15347
15348 if (e->rank == 0 || has_pointer)
15349 {
15350 mpz_init_set_ui (size, 1);
15351 ref = NULL;
15352 }
15353 else
15354 {
15355 ref = e->ref;
15356
15357 /* Find the array section reference. */
15358 for (ref = e->ref; ref; ref = ref->next)
15359 {
15360 if (ref->type != REF_ARRAY)
15361 continue;
15362 if (ref->u.ar.type == AR_ELEMENT)
15363 continue;
15364 break;
15365 }
15366 gcc_assert (ref);
15367
15368 /* Set marks according to the reference pattern. */
15369 switch (ref->u.ar.type)
15370 {
15371 case AR_FULL:
15372 mark = AR_FULL;
15373 break;
15374
15375 case AR_SECTION:
15376 ar = &ref->u.ar;
15377 /* Get the start position of array section. */
15378 gfc_get_section_index (ar, section_index, &offset);
15379 mark = AR_SECTION;
15380 break;
15381
15382 default:
15383 gcc_unreachable ();
15384 }
15385
15386 if (!gfc_array_size (e, &size))
15387 {
15388 gfc_error ("Nonconstant array section at %L in DATA statement",
15389 where);
15390 mpz_clear (offset);
15391 return false;
15392 }
15393 }
15394
15395 t = true;
15396
15397 while (mpz_cmp_ui (size, 0) > 0)
15398 {
15399 if (!next_data_value ())
15400 {
15401 gfc_error ("DATA statement at %L has more variables than values",
15402 where);
15403 t = false;
15404 break;
15405 }
15406
15407 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
15408 if (!t)
15409 break;
15410
15411 /* If we have more than one element left in the repeat count,
15412 and we have more than one element left in the target variable,
15413 then create a range assignment. */
15414 /* FIXME: Only done for full arrays for now, since array sections
15415 seem tricky. */
15416 if (mark == AR_FULL && ref && ref->next == NULL
15417 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
15418 {
15419 mpz_t range;
15420
15421 if (mpz_cmp (size, values.left) >= 0)
15422 {
15423 mpz_init_set (range, values.left);
15424 mpz_sub (size, size, values.left);
15425 mpz_set_ui (values.left, 0);
15426 }
15427 else
15428 {
15429 mpz_init_set (range, size);
15430 mpz_sub (values.left, values.left, size);
15431 mpz_set_ui (size, 0);
15432 }
15433
15434 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15435 offset, &range);
15436
15437 mpz_add (offset, offset, range);
15438 mpz_clear (range);
15439
15440 if (!t)
15441 break;
15442 }
15443
15444 /* Assign initial value to symbol. */
15445 else
15446 {
15447 mpz_sub_ui (values.left, values.left, 1);
15448 mpz_sub_ui (size, size, 1);
15449
15450 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15451 offset, NULL);
15452 if (!t)
15453 break;
15454
15455 if (mark == AR_FULL)
15456 mpz_add_ui (offset, offset, 1);
15457
15458 /* Modify the array section indexes and recalculate the offset
15459 for next element. */
15460 else if (mark == AR_SECTION)
15461 gfc_advance_section (section_index, ar, &offset);
15462 }
15463 }
15464
15465 if (mark == AR_SECTION)
15466 {
15467 for (i = 0; i < ar->dimen; i++)
15468 mpz_clear (section_index[i]);
15469 }
15470
15471 mpz_clear (size);
15472 mpz_clear (offset);
15473
15474 return t;
15475 }
15476
15477
15478 static bool traverse_data_var (gfc_data_variable *, locus *);
15479
15480 /* Iterate over a list of elements in a DATA statement. */
15481
15482 static bool
15483 traverse_data_list (gfc_data_variable *var, locus *where)
15484 {
15485 mpz_t trip;
15486 iterator_stack frame;
15487 gfc_expr *e, *start, *end, *step;
15488 bool retval = true;
15489
15490 mpz_init (frame.value);
15491 mpz_init (trip);
15492
15493 start = gfc_copy_expr (var->iter.start);
15494 end = gfc_copy_expr (var->iter.end);
15495 step = gfc_copy_expr (var->iter.step);
15496
15497 if (!gfc_simplify_expr (start, 1)
15498 || start->expr_type != EXPR_CONSTANT)
15499 {
15500 gfc_error ("start of implied-do loop at %L could not be "
15501 "simplified to a constant value", &start->where);
15502 retval = false;
15503 goto cleanup;
15504 }
15505 if (!gfc_simplify_expr (end, 1)
15506 || end->expr_type != EXPR_CONSTANT)
15507 {
15508 gfc_error ("end of implied-do loop at %L could not be "
15509 "simplified to a constant value", &start->where);
15510 retval = false;
15511 goto cleanup;
15512 }
15513 if (!gfc_simplify_expr (step, 1)
15514 || step->expr_type != EXPR_CONSTANT)
15515 {
15516 gfc_error ("step of implied-do loop at %L could not be "
15517 "simplified to a constant value", &start->where);
15518 retval = false;
15519 goto cleanup;
15520 }
15521
15522 mpz_set (trip, end->value.integer);
15523 mpz_sub (trip, trip, start->value.integer);
15524 mpz_add (trip, trip, step->value.integer);
15525
15526 mpz_div (trip, trip, step->value.integer);
15527
15528 mpz_set (frame.value, start->value.integer);
15529
15530 frame.prev = iter_stack;
15531 frame.variable = var->iter.var->symtree;
15532 iter_stack = &frame;
15533
15534 while (mpz_cmp_ui (trip, 0) > 0)
15535 {
15536 if (!traverse_data_var (var->list, where))
15537 {
15538 retval = false;
15539 goto cleanup;
15540 }
15541
15542 e = gfc_copy_expr (var->expr);
15543 if (!gfc_simplify_expr (e, 1))
15544 {
15545 gfc_free_expr (e);
15546 retval = false;
15547 goto cleanup;
15548 }
15549
15550 mpz_add (frame.value, frame.value, step->value.integer);
15551
15552 mpz_sub_ui (trip, trip, 1);
15553 }
15554
15555 cleanup:
15556 mpz_clear (frame.value);
15557 mpz_clear (trip);
15558
15559 gfc_free_expr (start);
15560 gfc_free_expr (end);
15561 gfc_free_expr (step);
15562
15563 iter_stack = frame.prev;
15564 return retval;
15565 }
15566
15567
15568 /* Type resolve variables in the variable list of a DATA statement. */
15569
15570 static bool
15571 traverse_data_var (gfc_data_variable *var, locus *where)
15572 {
15573 bool t;
15574
15575 for (; var; var = var->next)
15576 {
15577 if (var->expr == NULL)
15578 t = traverse_data_list (var, where);
15579 else
15580 t = check_data_variable (var, where);
15581
15582 if (!t)
15583 return false;
15584 }
15585
15586 return true;
15587 }
15588
15589
15590 /* Resolve the expressions and iterators associated with a data statement.
15591 This is separate from the assignment checking because data lists should
15592 only be resolved once. */
15593
15594 static bool
15595 resolve_data_variables (gfc_data_variable *d)
15596 {
15597 for (; d; d = d->next)
15598 {
15599 if (d->list == NULL)
15600 {
15601 if (!gfc_resolve_expr (d->expr))
15602 return false;
15603 }
15604 else
15605 {
15606 if (!gfc_resolve_iterator (&d->iter, false, true))
15607 return false;
15608
15609 if (!resolve_data_variables (d->list))
15610 return false;
15611 }
15612 }
15613
15614 return true;
15615 }
15616
15617
15618 /* Resolve a single DATA statement. We implement this by storing a pointer to
15619 the value list into static variables, and then recursively traversing the
15620 variables list, expanding iterators and such. */
15621
15622 static void
15623 resolve_data (gfc_data *d)
15624 {
15625
15626 if (!resolve_data_variables (d->var))
15627 return;
15628
15629 values.vnode = d->value;
15630 if (d->value == NULL)
15631 mpz_set_ui (values.left, 0);
15632 else
15633 mpz_set (values.left, d->value->repeat);
15634
15635 if (!traverse_data_var (d->var, &d->where))
15636 return;
15637
15638 /* At this point, we better not have any values left. */
15639
15640 if (next_data_value ())
15641 gfc_error ("DATA statement at %L has more values than variables",
15642 &d->where);
15643 }
15644
15645
15646 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
15647 accessed by host or use association, is a dummy argument to a pure function,
15648 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
15649 is storage associated with any such variable, shall not be used in the
15650 following contexts: (clients of this function). */
15651
15652 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
15653 procedure. Returns zero if assignment is OK, nonzero if there is a
15654 problem. */
15655 int
15656 gfc_impure_variable (gfc_symbol *sym)
15657 {
15658 gfc_symbol *proc;
15659 gfc_namespace *ns;
15660
15661 if (sym->attr.use_assoc || sym->attr.in_common)
15662 return 1;
15663
15664 /* Check if the symbol's ns is inside the pure procedure. */
15665 for (ns = gfc_current_ns; ns; ns = ns->parent)
15666 {
15667 if (ns == sym->ns)
15668 break;
15669 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
15670 return 1;
15671 }
15672
15673 proc = sym->ns->proc_name;
15674 if (sym->attr.dummy
15675 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
15676 || proc->attr.function))
15677 return 1;
15678
15679 /* TODO: Sort out what can be storage associated, if anything, and include
15680 it here. In principle equivalences should be scanned but it does not
15681 seem to be possible to storage associate an impure variable this way. */
15682 return 0;
15683 }
15684
15685
15686 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
15687 current namespace is inside a pure procedure. */
15688
15689 int
15690 gfc_pure (gfc_symbol *sym)
15691 {
15692 symbol_attribute attr;
15693 gfc_namespace *ns;
15694
15695 if (sym == NULL)
15696 {
15697 /* Check if the current namespace or one of its parents
15698 belongs to a pure procedure. */
15699 for (ns = gfc_current_ns; ns; ns = ns->parent)
15700 {
15701 sym = ns->proc_name;
15702 if (sym == NULL)
15703 return 0;
15704 attr = sym->attr;
15705 if (attr.flavor == FL_PROCEDURE && attr.pure)
15706 return 1;
15707 }
15708 return 0;
15709 }
15710
15711 attr = sym->attr;
15712
15713 return attr.flavor == FL_PROCEDURE && attr.pure;
15714 }
15715
15716
15717 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
15718 checks if the current namespace is implicitly pure. Note that this
15719 function returns false for a PURE procedure. */
15720
15721 int
15722 gfc_implicit_pure (gfc_symbol *sym)
15723 {
15724 gfc_namespace *ns;
15725
15726 if (sym == NULL)
15727 {
15728 /* Check if the current procedure is implicit_pure. Walk up
15729 the procedure list until we find a procedure. */
15730 for (ns = gfc_current_ns; ns; ns = ns->parent)
15731 {
15732 sym = ns->proc_name;
15733 if (sym == NULL)
15734 return 0;
15735
15736 if (sym->attr.flavor == FL_PROCEDURE)
15737 break;
15738 }
15739 }
15740
15741 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
15742 && !sym->attr.pure;
15743 }
15744
15745
15746 void
15747 gfc_unset_implicit_pure (gfc_symbol *sym)
15748 {
15749 gfc_namespace *ns;
15750
15751 if (sym == NULL)
15752 {
15753 /* Check if the current procedure is implicit_pure. Walk up
15754 the procedure list until we find a procedure. */
15755 for (ns = gfc_current_ns; ns; ns = ns->parent)
15756 {
15757 sym = ns->proc_name;
15758 if (sym == NULL)
15759 return;
15760
15761 if (sym->attr.flavor == FL_PROCEDURE)
15762 break;
15763 }
15764 }
15765
15766 if (sym->attr.flavor == FL_PROCEDURE)
15767 sym->attr.implicit_pure = 0;
15768 else
15769 sym->attr.pure = 0;
15770 }
15771
15772
15773 /* Test whether the current procedure is elemental or not. */
15774
15775 int
15776 gfc_elemental (gfc_symbol *sym)
15777 {
15778 symbol_attribute attr;
15779
15780 if (sym == NULL)
15781 sym = gfc_current_ns->proc_name;
15782 if (sym == NULL)
15783 return 0;
15784 attr = sym->attr;
15785
15786 return attr.flavor == FL_PROCEDURE && attr.elemental;
15787 }
15788
15789
15790 /* Warn about unused labels. */
15791
15792 static void
15793 warn_unused_fortran_label (gfc_st_label *label)
15794 {
15795 if (label == NULL)
15796 return;
15797
15798 warn_unused_fortran_label (label->left);
15799
15800 if (label->defined == ST_LABEL_UNKNOWN)
15801 return;
15802
15803 switch (label->referenced)
15804 {
15805 case ST_LABEL_UNKNOWN:
15806 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
15807 label->value, &label->where);
15808 break;
15809
15810 case ST_LABEL_BAD_TARGET:
15811 gfc_warning (OPT_Wunused_label,
15812 "Label %d at %L defined but cannot be used",
15813 label->value, &label->where);
15814 break;
15815
15816 default:
15817 break;
15818 }
15819
15820 warn_unused_fortran_label (label->right);
15821 }
15822
15823
15824 /* Returns the sequence type of a symbol or sequence. */
15825
15826 static seq_type
15827 sequence_type (gfc_typespec ts)
15828 {
15829 seq_type result;
15830 gfc_component *c;
15831
15832 switch (ts.type)
15833 {
15834 case BT_DERIVED:
15835
15836 if (ts.u.derived->components == NULL)
15837 return SEQ_NONDEFAULT;
15838
15839 result = sequence_type (ts.u.derived->components->ts);
15840 for (c = ts.u.derived->components->next; c; c = c->next)
15841 if (sequence_type (c->ts) != result)
15842 return SEQ_MIXED;
15843
15844 return result;
15845
15846 case BT_CHARACTER:
15847 if (ts.kind != gfc_default_character_kind)
15848 return SEQ_NONDEFAULT;
15849
15850 return SEQ_CHARACTER;
15851
15852 case BT_INTEGER:
15853 if (ts.kind != gfc_default_integer_kind)
15854 return SEQ_NONDEFAULT;
15855
15856 return SEQ_NUMERIC;
15857
15858 case BT_REAL:
15859 if (!(ts.kind == gfc_default_real_kind
15860 || ts.kind == gfc_default_double_kind))
15861 return SEQ_NONDEFAULT;
15862
15863 return SEQ_NUMERIC;
15864
15865 case BT_COMPLEX:
15866 if (ts.kind != gfc_default_complex_kind)
15867 return SEQ_NONDEFAULT;
15868
15869 return SEQ_NUMERIC;
15870
15871 case BT_LOGICAL:
15872 if (ts.kind != gfc_default_logical_kind)
15873 return SEQ_NONDEFAULT;
15874
15875 return SEQ_NUMERIC;
15876
15877 default:
15878 return SEQ_NONDEFAULT;
15879 }
15880 }
15881
15882
15883 /* Resolve derived type EQUIVALENCE object. */
15884
15885 static bool
15886 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
15887 {
15888 gfc_component *c = derived->components;
15889
15890 if (!derived)
15891 return true;
15892
15893 /* Shall not be an object of nonsequence derived type. */
15894 if (!derived->attr.sequence)
15895 {
15896 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
15897 "attribute to be an EQUIVALENCE object", sym->name,
15898 &e->where);
15899 return false;
15900 }
15901
15902 /* Shall not have allocatable components. */
15903 if (derived->attr.alloc_comp)
15904 {
15905 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
15906 "components to be an EQUIVALENCE object",sym->name,
15907 &e->where);
15908 return false;
15909 }
15910
15911 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
15912 {
15913 gfc_error ("Derived type variable %qs at %L with default "
15914 "initialization cannot be in EQUIVALENCE with a variable "
15915 "in COMMON", sym->name, &e->where);
15916 return false;
15917 }
15918
15919 for (; c ; c = c->next)
15920 {
15921 if (gfc_bt_struct (c->ts.type)
15922 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
15923 return false;
15924
15925 /* Shall not be an object of sequence derived type containing a pointer
15926 in the structure. */
15927 if (c->attr.pointer)
15928 {
15929 gfc_error ("Derived type variable %qs at %L with pointer "
15930 "component(s) cannot be an EQUIVALENCE object",
15931 sym->name, &e->where);
15932 return false;
15933 }
15934 }
15935 return true;
15936 }
15937
15938
15939 /* Resolve equivalence object.
15940 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
15941 an allocatable array, an object of nonsequence derived type, an object of
15942 sequence derived type containing a pointer at any level of component
15943 selection, an automatic object, a function name, an entry name, a result
15944 name, a named constant, a structure component, or a subobject of any of
15945 the preceding objects. A substring shall not have length zero. A
15946 derived type shall not have components with default initialization nor
15947 shall two objects of an equivalence group be initialized.
15948 Either all or none of the objects shall have an protected attribute.
15949 The simple constraints are done in symbol.c(check_conflict) and the rest
15950 are implemented here. */
15951
15952 static void
15953 resolve_equivalence (gfc_equiv *eq)
15954 {
15955 gfc_symbol *sym;
15956 gfc_symbol *first_sym;
15957 gfc_expr *e;
15958 gfc_ref *r;
15959 locus *last_where = NULL;
15960 seq_type eq_type, last_eq_type;
15961 gfc_typespec *last_ts;
15962 int object, cnt_protected;
15963 const char *msg;
15964
15965 last_ts = &eq->expr->symtree->n.sym->ts;
15966
15967 first_sym = eq->expr->symtree->n.sym;
15968
15969 cnt_protected = 0;
15970
15971 for (object = 1; eq; eq = eq->eq, object++)
15972 {
15973 e = eq->expr;
15974
15975 e->ts = e->symtree->n.sym->ts;
15976 /* match_varspec might not know yet if it is seeing
15977 array reference or substring reference, as it doesn't
15978 know the types. */
15979 if (e->ref && e->ref->type == REF_ARRAY)
15980 {
15981 gfc_ref *ref = e->ref;
15982 sym = e->symtree->n.sym;
15983
15984 if (sym->attr.dimension)
15985 {
15986 ref->u.ar.as = sym->as;
15987 ref = ref->next;
15988 }
15989
15990 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
15991 if (e->ts.type == BT_CHARACTER
15992 && ref
15993 && ref->type == REF_ARRAY
15994 && ref->u.ar.dimen == 1
15995 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
15996 && ref->u.ar.stride[0] == NULL)
15997 {
15998 gfc_expr *start = ref->u.ar.start[0];
15999 gfc_expr *end = ref->u.ar.end[0];
16000 void *mem = NULL;
16001
16002 /* Optimize away the (:) reference. */
16003 if (start == NULL && end == NULL)
16004 {
16005 if (e->ref == ref)
16006 e->ref = ref->next;
16007 else
16008 e->ref->next = ref->next;
16009 mem = ref;
16010 }
16011 else
16012 {
16013 ref->type = REF_SUBSTRING;
16014 if (start == NULL)
16015 start = gfc_get_int_expr (gfc_charlen_int_kind,
16016 NULL, 1);
16017 ref->u.ss.start = start;
16018 if (end == NULL && e->ts.u.cl)
16019 end = gfc_copy_expr (e->ts.u.cl->length);
16020 ref->u.ss.end = end;
16021 ref->u.ss.length = e->ts.u.cl;
16022 e->ts.u.cl = NULL;
16023 }
16024 ref = ref->next;
16025 free (mem);
16026 }
16027
16028 /* Any further ref is an error. */
16029 if (ref)
16030 {
16031 gcc_assert (ref->type == REF_ARRAY);
16032 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16033 &ref->u.ar.where);
16034 continue;
16035 }
16036 }
16037
16038 if (!gfc_resolve_expr (e))
16039 continue;
16040
16041 sym = e->symtree->n.sym;
16042
16043 if (sym->attr.is_protected)
16044 cnt_protected++;
16045 if (cnt_protected > 0 && cnt_protected != object)
16046 {
16047 gfc_error ("Either all or none of the objects in the "
16048 "EQUIVALENCE set at %L shall have the "
16049 "PROTECTED attribute",
16050 &e->where);
16051 break;
16052 }
16053
16054 /* Shall not equivalence common block variables in a PURE procedure. */
16055 if (sym->ns->proc_name
16056 && sym->ns->proc_name->attr.pure
16057 && sym->attr.in_common)
16058 {
16059 /* Need to check for symbols that may have entered the pure
16060 procedure via a USE statement. */
16061 bool saw_sym = false;
16062 if (sym->ns->use_stmts)
16063 {
16064 gfc_use_rename *r;
16065 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16066 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16067 }
16068 else
16069 saw_sym = true;
16070
16071 if (saw_sym)
16072 gfc_error ("COMMON block member %qs at %L cannot be an "
16073 "EQUIVALENCE object in the pure procedure %qs",
16074 sym->name, &e->where, sym->ns->proc_name->name);
16075 break;
16076 }
16077
16078 /* Shall not be a named constant. */
16079 if (e->expr_type == EXPR_CONSTANT)
16080 {
16081 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16082 "object", sym->name, &e->where);
16083 continue;
16084 }
16085
16086 if (e->ts.type == BT_DERIVED
16087 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16088 continue;
16089
16090 /* Check that the types correspond correctly:
16091 Note 5.28:
16092 A numeric sequence structure may be equivalenced to another sequence
16093 structure, an object of default integer type, default real type, double
16094 precision real type, default logical type such that components of the
16095 structure ultimately only become associated to objects of the same
16096 kind. A character sequence structure may be equivalenced to an object
16097 of default character kind or another character sequence structure.
16098 Other objects may be equivalenced only to objects of the same type and
16099 kind parameters. */
16100
16101 /* Identical types are unconditionally OK. */
16102 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16103 goto identical_types;
16104
16105 last_eq_type = sequence_type (*last_ts);
16106 eq_type = sequence_type (sym->ts);
16107
16108 /* Since the pair of objects is not of the same type, mixed or
16109 non-default sequences can be rejected. */
16110
16111 msg = "Sequence %s with mixed components in EQUIVALENCE "
16112 "statement at %L with different type objects";
16113 if ((object ==2
16114 && last_eq_type == SEQ_MIXED
16115 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16116 || (eq_type == SEQ_MIXED
16117 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16118 continue;
16119
16120 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16121 "statement at %L with objects of different type";
16122 if ((object ==2
16123 && last_eq_type == SEQ_NONDEFAULT
16124 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16125 || (eq_type == SEQ_NONDEFAULT
16126 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16127 continue;
16128
16129 msg ="Non-CHARACTER object %qs in default CHARACTER "
16130 "EQUIVALENCE statement at %L";
16131 if (last_eq_type == SEQ_CHARACTER
16132 && eq_type != SEQ_CHARACTER
16133 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16134 continue;
16135
16136 msg ="Non-NUMERIC object %qs in default NUMERIC "
16137 "EQUIVALENCE statement at %L";
16138 if (last_eq_type == SEQ_NUMERIC
16139 && eq_type != SEQ_NUMERIC
16140 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16141 continue;
16142
16143 identical_types:
16144 last_ts =&sym->ts;
16145 last_where = &e->where;
16146
16147 if (!e->ref)
16148 continue;
16149
16150 /* Shall not be an automatic array. */
16151 if (e->ref->type == REF_ARRAY
16152 && !gfc_resolve_array_spec (e->ref->u.ar.as, 1))
16153 {
16154 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16155 "an EQUIVALENCE object", sym->name, &e->where);
16156 continue;
16157 }
16158
16159 r = e->ref;
16160 while (r)
16161 {
16162 /* Shall not be a structure component. */
16163 if (r->type == REF_COMPONENT)
16164 {
16165 gfc_error ("Structure component %qs at %L cannot be an "
16166 "EQUIVALENCE object",
16167 r->u.c.component->name, &e->where);
16168 break;
16169 }
16170
16171 /* A substring shall not have length zero. */
16172 if (r->type == REF_SUBSTRING)
16173 {
16174 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16175 {
16176 gfc_error ("Substring at %L has length zero",
16177 &r->u.ss.start->where);
16178 break;
16179 }
16180 }
16181 r = r->next;
16182 }
16183 }
16184 }
16185
16186
16187 /* Function called by resolve_fntype to flag other symbol used in the
16188 length type parameter specification of function resuls. */
16189
16190 static bool
16191 flag_fn_result_spec (gfc_expr *expr,
16192 gfc_symbol *sym ATTRIBUTE_UNUSED,
16193 int *f ATTRIBUTE_UNUSED)
16194 {
16195 gfc_namespace *ns;
16196 gfc_symbol *s;
16197
16198 if (expr->expr_type == EXPR_VARIABLE)
16199 {
16200 s = expr->symtree->n.sym;
16201 for (ns = s->ns; ns; ns = ns->parent)
16202 if (!ns->parent)
16203 break;
16204
16205 if (!s->fn_result_spec
16206 && s->attr.flavor == FL_PARAMETER)
16207 {
16208 /* Function contained in a module.... */
16209 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16210 {
16211 gfc_symtree *st;
16212 s->fn_result_spec = 1;
16213 /* Make sure that this symbol is translated as a module
16214 variable. */
16215 st = gfc_get_unique_symtree (ns);
16216 st->n.sym = s;
16217 s->refs++;
16218 }
16219 /* ... which is use associated and called. */
16220 else if (s->attr.use_assoc || s->attr.used_in_submodule
16221 ||
16222 /* External function matched with an interface. */
16223 (s->ns->proc_name
16224 && ((s->ns == ns
16225 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16226 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16227 && s->ns->proc_name->attr.function))
16228 s->fn_result_spec = 1;
16229 }
16230 }
16231 return false;
16232 }
16233
16234
16235 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16236
16237 static void
16238 resolve_fntype (gfc_namespace *ns)
16239 {
16240 gfc_entry_list *el;
16241 gfc_symbol *sym;
16242
16243 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16244 return;
16245
16246 /* If there are any entries, ns->proc_name is the entry master
16247 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16248 if (ns->entries)
16249 sym = ns->entries->sym;
16250 else
16251 sym = ns->proc_name;
16252 if (sym->result == sym
16253 && sym->ts.type == BT_UNKNOWN
16254 && !gfc_set_default_type (sym, 0, NULL)
16255 && !sym->attr.untyped)
16256 {
16257 gfc_error ("Function %qs at %L has no IMPLICIT type",
16258 sym->name, &sym->declared_at);
16259 sym->attr.untyped = 1;
16260 }
16261
16262 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
16263 && !sym->attr.contained
16264 && !gfc_check_symbol_access (sym->ts.u.derived)
16265 && gfc_check_symbol_access (sym))
16266 {
16267 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
16268 "%L of PRIVATE type %qs", sym->name,
16269 &sym->declared_at, sym->ts.u.derived->name);
16270 }
16271
16272 if (ns->entries)
16273 for (el = ns->entries->next; el; el = el->next)
16274 {
16275 if (el->sym->result == el->sym
16276 && el->sym->ts.type == BT_UNKNOWN
16277 && !gfc_set_default_type (el->sym, 0, NULL)
16278 && !el->sym->attr.untyped)
16279 {
16280 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16281 el->sym->name, &el->sym->declared_at);
16282 el->sym->attr.untyped = 1;
16283 }
16284 }
16285
16286 if (sym->ts.type == BT_CHARACTER)
16287 gfc_traverse_expr (sym->ts.u.cl->length, NULL, flag_fn_result_spec, 0);
16288 }
16289
16290
16291 /* 12.3.2.1.1 Defined operators. */
16292
16293 static bool
16294 check_uop_procedure (gfc_symbol *sym, locus where)
16295 {
16296 gfc_formal_arglist *formal;
16297
16298 if (!sym->attr.function)
16299 {
16300 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16301 sym->name, &where);
16302 return false;
16303 }
16304
16305 if (sym->ts.type == BT_CHARACTER
16306 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
16307 && !(sym->result && ((sym->result->ts.u.cl
16308 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
16309 {
16310 gfc_error ("User operator procedure %qs at %L cannot be assumed "
16311 "character length", sym->name, &where);
16312 return false;
16313 }
16314
16315 formal = gfc_sym_get_dummy_args (sym);
16316 if (!formal || !formal->sym)
16317 {
16318 gfc_error ("User operator procedure %qs at %L must have at least "
16319 "one argument", sym->name, &where);
16320 return false;
16321 }
16322
16323 if (formal->sym->attr.intent != INTENT_IN)
16324 {
16325 gfc_error ("First argument of operator interface at %L must be "
16326 "INTENT(IN)", &where);
16327 return false;
16328 }
16329
16330 if (formal->sym->attr.optional)
16331 {
16332 gfc_error ("First argument of operator interface at %L cannot be "
16333 "optional", &where);
16334 return false;
16335 }
16336
16337 formal = formal->next;
16338 if (!formal || !formal->sym)
16339 return true;
16340
16341 if (formal->sym->attr.intent != INTENT_IN)
16342 {
16343 gfc_error ("Second argument of operator interface at %L must be "
16344 "INTENT(IN)", &where);
16345 return false;
16346 }
16347
16348 if (formal->sym->attr.optional)
16349 {
16350 gfc_error ("Second argument of operator interface at %L cannot be "
16351 "optional", &where);
16352 return false;
16353 }
16354
16355 if (formal->next)
16356 {
16357 gfc_error ("Operator interface at %L must have, at most, two "
16358 "arguments", &where);
16359 return false;
16360 }
16361
16362 return true;
16363 }
16364
16365 static void
16366 gfc_resolve_uops (gfc_symtree *symtree)
16367 {
16368 gfc_interface *itr;
16369
16370 if (symtree == NULL)
16371 return;
16372
16373 gfc_resolve_uops (symtree->left);
16374 gfc_resolve_uops (symtree->right);
16375
16376 for (itr = symtree->n.uop->op; itr; itr = itr->next)
16377 check_uop_procedure (itr->sym, itr->sym->declared_at);
16378 }
16379
16380
16381 /* Examine all of the expressions associated with a program unit,
16382 assign types to all intermediate expressions, make sure that all
16383 assignments are to compatible types and figure out which names
16384 refer to which functions or subroutines. It doesn't check code
16385 block, which is handled by gfc_resolve_code. */
16386
16387 static void
16388 resolve_types (gfc_namespace *ns)
16389 {
16390 gfc_namespace *n;
16391 gfc_charlen *cl;
16392 gfc_data *d;
16393 gfc_equiv *eq;
16394 gfc_namespace* old_ns = gfc_current_ns;
16395
16396 if (ns->types_resolved)
16397 return;
16398
16399 /* Check that all IMPLICIT types are ok. */
16400 if (!ns->seen_implicit_none)
16401 {
16402 unsigned letter;
16403 for (letter = 0; letter != GFC_LETTERS; ++letter)
16404 if (ns->set_flag[letter]
16405 && !resolve_typespec_used (&ns->default_type[letter],
16406 &ns->implicit_loc[letter], NULL))
16407 return;
16408 }
16409
16410 gfc_current_ns = ns;
16411
16412 resolve_entries (ns);
16413
16414 resolve_common_vars (&ns->blank_common, false);
16415 resolve_common_blocks (ns->common_root);
16416
16417 resolve_contained_functions (ns);
16418
16419 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
16420 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
16421 resolve_formal_arglist (ns->proc_name);
16422
16423 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
16424
16425 for (cl = ns->cl_list; cl; cl = cl->next)
16426 resolve_charlen (cl);
16427
16428 gfc_traverse_ns (ns, resolve_symbol);
16429
16430 resolve_fntype (ns);
16431
16432 for (n = ns->contained; n; n = n->sibling)
16433 {
16434 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
16435 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
16436 "also be PURE", n->proc_name->name,
16437 &n->proc_name->declared_at);
16438
16439 resolve_types (n);
16440 }
16441
16442 forall_flag = 0;
16443 gfc_do_concurrent_flag = 0;
16444 gfc_check_interfaces (ns);
16445
16446 gfc_traverse_ns (ns, resolve_values);
16447
16448 if (ns->save_all)
16449 gfc_save_all (ns);
16450
16451 iter_stack = NULL;
16452 for (d = ns->data; d; d = d->next)
16453 resolve_data (d);
16454
16455 iter_stack = NULL;
16456 gfc_traverse_ns (ns, gfc_formalize_init_value);
16457
16458 gfc_traverse_ns (ns, gfc_verify_binding_labels);
16459
16460 for (eq = ns->equiv; eq; eq = eq->next)
16461 resolve_equivalence (eq);
16462
16463 /* Warn about unused labels. */
16464 if (warn_unused_label)
16465 warn_unused_fortran_label (ns->st_labels);
16466
16467 gfc_resolve_uops (ns->uop_root);
16468
16469 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
16470
16471 gfc_resolve_omp_declare_simd (ns);
16472
16473 gfc_resolve_omp_udrs (ns->omp_udr_root);
16474
16475 ns->types_resolved = 1;
16476
16477 gfc_current_ns = old_ns;
16478 }
16479
16480
16481 /* Call gfc_resolve_code recursively. */
16482
16483 static void
16484 resolve_codes (gfc_namespace *ns)
16485 {
16486 gfc_namespace *n;
16487 bitmap_obstack old_obstack;
16488
16489 if (ns->resolved == 1)
16490 return;
16491
16492 for (n = ns->contained; n; n = n->sibling)
16493 resolve_codes (n);
16494
16495 gfc_current_ns = ns;
16496
16497 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
16498 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
16499 cs_base = NULL;
16500
16501 /* Set to an out of range value. */
16502 current_entry_id = -1;
16503
16504 old_obstack = labels_obstack;
16505 bitmap_obstack_initialize (&labels_obstack);
16506
16507 gfc_resolve_oacc_declare (ns);
16508 gfc_resolve_omp_local_vars (ns);
16509 gfc_resolve_code (ns->code, ns);
16510
16511 bitmap_obstack_release (&labels_obstack);
16512 labels_obstack = old_obstack;
16513 }
16514
16515
16516 /* This function is called after a complete program unit has been compiled.
16517 Its purpose is to examine all of the expressions associated with a program
16518 unit, assign types to all intermediate expressions, make sure that all
16519 assignments are to compatible types and figure out which names refer to
16520 which functions or subroutines. */
16521
16522 void
16523 gfc_resolve (gfc_namespace *ns)
16524 {
16525 gfc_namespace *old_ns;
16526 code_stack *old_cs_base;
16527 struct gfc_omp_saved_state old_omp_state;
16528
16529 if (ns->resolved)
16530 return;
16531
16532 ns->resolved = -1;
16533 old_ns = gfc_current_ns;
16534 old_cs_base = cs_base;
16535
16536 /* As gfc_resolve can be called during resolution of an OpenMP construct
16537 body, we should clear any state associated to it, so that say NS's
16538 DO loops are not interpreted as OpenMP loops. */
16539 if (!ns->construct_entities)
16540 gfc_omp_save_and_clear_state (&old_omp_state);
16541
16542 resolve_types (ns);
16543 component_assignment_level = 0;
16544 resolve_codes (ns);
16545
16546 gfc_current_ns = old_ns;
16547 cs_base = old_cs_base;
16548 ns->resolved = 1;
16549
16550 gfc_run_passes (ns);
16551
16552 if (!ns->construct_entities)
16553 gfc_omp_restore_state (&old_omp_state);
16554 }