Error on Associate with a program.
[gcc.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "options.h"
25 #include "bitmap.h"
26 #include "gfortran.h"
27 #include "arith.h" /* For gfc_compare_expr(). */
28 #include "dependency.h"
29 #include "data.h"
30 #include "target-memory.h" /* for gfc_simplify_transfer */
31 #include "constructor.h"
32
33 /* Types used in equivalence statements. */
34
35 enum seq_type
36 {
37 SEQ_NONDEFAULT, SEQ_NUMERIC, SEQ_CHARACTER, SEQ_MIXED
38 };
39
40 /* Stack to keep track of the nesting of blocks as we move through the
41 code. See resolve_branch() and gfc_resolve_code(). */
42
43 typedef struct code_stack
44 {
45 struct gfc_code *head, *current;
46 struct code_stack *prev;
47
48 /* This bitmap keeps track of the targets valid for a branch from
49 inside this block except for END {IF|SELECT}s of enclosing
50 blocks. */
51 bitmap reachable_labels;
52 }
53 code_stack;
54
55 static code_stack *cs_base = NULL;
56
57
58 /* Nonzero if we're inside a FORALL or DO CONCURRENT block. */
59
60 static int forall_flag;
61 int gfc_do_concurrent_flag;
62
63 /* True when we are resolving an expression that is an actual argument to
64 a procedure. */
65 static bool actual_arg = false;
66 /* True when we are resolving an expression that is the first actual argument
67 to a procedure. */
68 static bool first_actual_arg = false;
69
70
71 /* Nonzero if we're inside a OpenMP WORKSHARE or PARALLEL WORKSHARE block. */
72
73 static int omp_workshare_flag;
74
75 /* True if we are processing a formal arglist. The corresponding function
76 resets the flag each time that it is read. */
77 static bool formal_arg_flag = false;
78
79 /* True if we are resolving a specification expression. */
80 static bool specification_expr = false;
81
82 /* The id of the last entry seen. */
83 static int current_entry_id;
84
85 /* We use bitmaps to determine if a branch target is valid. */
86 static bitmap_obstack labels_obstack;
87
88 /* True when simplifying a EXPR_VARIABLE argument to an inquiry function. */
89 static bool inquiry_argument = false;
90
91
92 bool
93 gfc_is_formal_arg (void)
94 {
95 return formal_arg_flag;
96 }
97
98 /* Is the symbol host associated? */
99 static bool
100 is_sym_host_assoc (gfc_symbol *sym, gfc_namespace *ns)
101 {
102 for (ns = ns->parent; ns; ns = ns->parent)
103 {
104 if (sym->ns == ns)
105 return true;
106 }
107
108 return false;
109 }
110
111 /* Ensure a typespec used is valid; for instance, TYPE(t) is invalid if t is
112 an ABSTRACT derived-type. If where is not NULL, an error message with that
113 locus is printed, optionally using name. */
114
115 static bool
116 resolve_typespec_used (gfc_typespec* ts, locus* where, const char* name)
117 {
118 if (ts->type == BT_DERIVED && ts->u.derived->attr.abstract)
119 {
120 if (where)
121 {
122 if (name)
123 gfc_error ("%qs at %L is of the ABSTRACT type %qs",
124 name, where, ts->u.derived->name);
125 else
126 gfc_error ("ABSTRACT type %qs used at %L",
127 ts->u.derived->name, where);
128 }
129
130 return false;
131 }
132
133 return true;
134 }
135
136
137 static bool
138 check_proc_interface (gfc_symbol *ifc, locus *where)
139 {
140 /* Several checks for F08:C1216. */
141 if (ifc->attr.procedure)
142 {
143 gfc_error ("Interface %qs at %L is declared "
144 "in a later PROCEDURE statement", ifc->name, where);
145 return false;
146 }
147 if (ifc->generic)
148 {
149 /* For generic interfaces, check if there is
150 a specific procedure with the same name. */
151 gfc_interface *gen = ifc->generic;
152 while (gen && strcmp (gen->sym->name, ifc->name) != 0)
153 gen = gen->next;
154 if (!gen)
155 {
156 gfc_error ("Interface %qs at %L may not be generic",
157 ifc->name, where);
158 return false;
159 }
160 }
161 if (ifc->attr.proc == PROC_ST_FUNCTION)
162 {
163 gfc_error ("Interface %qs at %L may not be a statement function",
164 ifc->name, where);
165 return false;
166 }
167 if (gfc_is_intrinsic (ifc, 0, ifc->declared_at)
168 || gfc_is_intrinsic (ifc, 1, ifc->declared_at))
169 ifc->attr.intrinsic = 1;
170 if (ifc->attr.intrinsic && !gfc_intrinsic_actual_ok (ifc->name, 0))
171 {
172 gfc_error ("Intrinsic procedure %qs not allowed in "
173 "PROCEDURE statement at %L", ifc->name, where);
174 return false;
175 }
176 if (!ifc->attr.if_source && !ifc->attr.intrinsic && ifc->name[0] != '\0')
177 {
178 gfc_error ("Interface %qs at %L must be explicit", ifc->name, where);
179 return false;
180 }
181 return true;
182 }
183
184
185 static void resolve_symbol (gfc_symbol *sym);
186
187
188 /* Resolve the interface for a PROCEDURE declaration or procedure pointer. */
189
190 static bool
191 resolve_procedure_interface (gfc_symbol *sym)
192 {
193 gfc_symbol *ifc = sym->ts.interface;
194
195 if (!ifc)
196 return true;
197
198 if (ifc == sym)
199 {
200 gfc_error ("PROCEDURE %qs at %L may not be used as its own interface",
201 sym->name, &sym->declared_at);
202 return false;
203 }
204 if (!check_proc_interface (ifc, &sym->declared_at))
205 return false;
206
207 if (ifc->attr.if_source || ifc->attr.intrinsic)
208 {
209 /* Resolve interface and copy attributes. */
210 resolve_symbol (ifc);
211 if (ifc->attr.intrinsic)
212 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
213
214 if (ifc->result)
215 {
216 sym->ts = ifc->result->ts;
217 sym->attr.allocatable = ifc->result->attr.allocatable;
218 sym->attr.pointer = ifc->result->attr.pointer;
219 sym->attr.dimension = ifc->result->attr.dimension;
220 sym->attr.class_ok = ifc->result->attr.class_ok;
221 sym->as = gfc_copy_array_spec (ifc->result->as);
222 sym->result = sym;
223 }
224 else
225 {
226 sym->ts = ifc->ts;
227 sym->attr.allocatable = ifc->attr.allocatable;
228 sym->attr.pointer = ifc->attr.pointer;
229 sym->attr.dimension = ifc->attr.dimension;
230 sym->attr.class_ok = ifc->attr.class_ok;
231 sym->as = gfc_copy_array_spec (ifc->as);
232 }
233 sym->ts.interface = ifc;
234 sym->attr.function = ifc->attr.function;
235 sym->attr.subroutine = ifc->attr.subroutine;
236
237 sym->attr.pure = ifc->attr.pure;
238 sym->attr.elemental = ifc->attr.elemental;
239 sym->attr.contiguous = ifc->attr.contiguous;
240 sym->attr.recursive = ifc->attr.recursive;
241 sym->attr.always_explicit = ifc->attr.always_explicit;
242 sym->attr.ext_attr |= ifc->attr.ext_attr;
243 sym->attr.is_bind_c = ifc->attr.is_bind_c;
244 /* Copy char length. */
245 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
246 {
247 sym->ts.u.cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
248 if (sym->ts.u.cl->length && !sym->ts.u.cl->resolved
249 && !gfc_resolve_expr (sym->ts.u.cl->length))
250 return false;
251 }
252 }
253
254 return true;
255 }
256
257
258 /* Resolve types of formal argument lists. These have to be done early so that
259 the formal argument lists of module procedures can be copied to the
260 containing module before the individual procedures are resolved
261 individually. We also resolve argument lists of procedures in interface
262 blocks because they are self-contained scoping units.
263
264 Since a dummy argument cannot be a non-dummy procedure, the only
265 resort left for untyped names are the IMPLICIT types. */
266
267 static void
268 resolve_formal_arglist (gfc_symbol *proc)
269 {
270 gfc_formal_arglist *f;
271 gfc_symbol *sym;
272 bool saved_specification_expr;
273 int i;
274
275 if (proc->result != NULL)
276 sym = proc->result;
277 else
278 sym = proc;
279
280 if (gfc_elemental (proc)
281 || sym->attr.pointer || sym->attr.allocatable
282 || (sym->as && sym->as->rank != 0))
283 {
284 proc->attr.always_explicit = 1;
285 sym->attr.always_explicit = 1;
286 }
287
288 formal_arg_flag = true;
289
290 for (f = proc->formal; f; f = f->next)
291 {
292 gfc_array_spec *as;
293
294 sym = f->sym;
295
296 if (sym == NULL)
297 {
298 /* Alternate return placeholder. */
299 if (gfc_elemental (proc))
300 gfc_error ("Alternate return specifier in elemental subroutine "
301 "%qs at %L is not allowed", proc->name,
302 &proc->declared_at);
303 if (proc->attr.function)
304 gfc_error ("Alternate return specifier in function "
305 "%qs at %L is not allowed", proc->name,
306 &proc->declared_at);
307 continue;
308 }
309 else if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
310 && !resolve_procedure_interface (sym))
311 return;
312
313 if (strcmp (proc->name, sym->name) == 0)
314 {
315 gfc_error ("Self-referential argument "
316 "%qs at %L is not allowed", sym->name,
317 &proc->declared_at);
318 return;
319 }
320
321 if (sym->attr.if_source != IFSRC_UNKNOWN)
322 resolve_formal_arglist (sym);
323
324 if (sym->attr.subroutine || sym->attr.external)
325 {
326 if (sym->attr.flavor == FL_UNKNOWN)
327 gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, &sym->declared_at);
328 }
329 else
330 {
331 if (sym->ts.type == BT_UNKNOWN && !proc->attr.intrinsic
332 && (!sym->attr.function || sym->result == sym))
333 gfc_set_default_type (sym, 1, sym->ns);
334 }
335
336 as = sym->ts.type == BT_CLASS && sym->attr.class_ok
337 ? CLASS_DATA (sym)->as : sym->as;
338
339 saved_specification_expr = specification_expr;
340 specification_expr = true;
341 gfc_resolve_array_spec (as, 0);
342 specification_expr = saved_specification_expr;
343
344 /* We can't tell if an array with dimension (:) is assumed or deferred
345 shape until we know if it has the pointer or allocatable attributes.
346 */
347 if (as && as->rank > 0 && as->type == AS_DEFERRED
348 && ((sym->ts.type != BT_CLASS
349 && !(sym->attr.pointer || sym->attr.allocatable))
350 || (sym->ts.type == BT_CLASS
351 && !(CLASS_DATA (sym)->attr.class_pointer
352 || CLASS_DATA (sym)->attr.allocatable)))
353 && sym->attr.flavor != FL_PROCEDURE)
354 {
355 as->type = AS_ASSUMED_SHAPE;
356 for (i = 0; i < as->rank; i++)
357 as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
358 }
359
360 if ((as && as->rank > 0 && as->type == AS_ASSUMED_SHAPE)
361 || (as && as->type == AS_ASSUMED_RANK)
362 || sym->attr.pointer || sym->attr.allocatable || sym->attr.target
363 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
364 && (CLASS_DATA (sym)->attr.class_pointer
365 || CLASS_DATA (sym)->attr.allocatable
366 || CLASS_DATA (sym)->attr.target))
367 || sym->attr.optional)
368 {
369 proc->attr.always_explicit = 1;
370 if (proc->result)
371 proc->result->attr.always_explicit = 1;
372 }
373
374 /* If the flavor is unknown at this point, it has to be a variable.
375 A procedure specification would have already set the type. */
376
377 if (sym->attr.flavor == FL_UNKNOWN)
378 gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, &sym->declared_at);
379
380 if (gfc_pure (proc))
381 {
382 if (sym->attr.flavor == FL_PROCEDURE)
383 {
384 /* F08:C1279. */
385 if (!gfc_pure (sym))
386 {
387 gfc_error ("Dummy procedure %qs of PURE procedure at %L must "
388 "also be PURE", sym->name, &sym->declared_at);
389 continue;
390 }
391 }
392 else if (!sym->attr.pointer)
393 {
394 if (proc->attr.function && sym->attr.intent != INTENT_IN)
395 {
396 if (sym->attr.value)
397 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
398 " of pure function %qs at %L with VALUE "
399 "attribute but without INTENT(IN)",
400 sym->name, proc->name, &sym->declared_at);
401 else
402 gfc_error ("Argument %qs of pure function %qs at %L must "
403 "be INTENT(IN) or VALUE", sym->name, proc->name,
404 &sym->declared_at);
405 }
406
407 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN)
408 {
409 if (sym->attr.value)
410 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
411 " of pure subroutine %qs at %L with VALUE "
412 "attribute but without INTENT", sym->name,
413 proc->name, &sym->declared_at);
414 else
415 gfc_error ("Argument %qs of pure subroutine %qs at %L "
416 "must have its INTENT specified or have the "
417 "VALUE attribute", sym->name, proc->name,
418 &sym->declared_at);
419 }
420 }
421
422 /* F08:C1278a. */
423 if (sym->ts.type == BT_CLASS && sym->attr.intent == INTENT_OUT)
424 {
425 gfc_error ("INTENT(OUT) argument %qs of pure procedure %qs at %L"
426 " may not be polymorphic", sym->name, proc->name,
427 &sym->declared_at);
428 continue;
429 }
430 }
431
432 if (proc->attr.implicit_pure)
433 {
434 if (sym->attr.flavor == FL_PROCEDURE)
435 {
436 if (!gfc_pure (sym))
437 proc->attr.implicit_pure = 0;
438 }
439 else if (!sym->attr.pointer)
440 {
441 if (proc->attr.function && sym->attr.intent != INTENT_IN
442 && !sym->value)
443 proc->attr.implicit_pure = 0;
444
445 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN
446 && !sym->value)
447 proc->attr.implicit_pure = 0;
448 }
449 }
450
451 if (gfc_elemental (proc))
452 {
453 /* F08:C1289. */
454 if (sym->attr.codimension
455 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
456 && CLASS_DATA (sym)->attr.codimension))
457 {
458 gfc_error ("Coarray dummy argument %qs at %L to elemental "
459 "procedure", sym->name, &sym->declared_at);
460 continue;
461 }
462
463 if (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
464 && CLASS_DATA (sym)->as))
465 {
466 gfc_error ("Argument %qs of elemental procedure at %L must "
467 "be scalar", sym->name, &sym->declared_at);
468 continue;
469 }
470
471 if (sym->attr.allocatable
472 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
473 && CLASS_DATA (sym)->attr.allocatable))
474 {
475 gfc_error ("Argument %qs of elemental procedure at %L cannot "
476 "have the ALLOCATABLE attribute", sym->name,
477 &sym->declared_at);
478 continue;
479 }
480
481 if (sym->attr.pointer
482 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
483 && CLASS_DATA (sym)->attr.class_pointer))
484 {
485 gfc_error ("Argument %qs of elemental procedure at %L cannot "
486 "have the POINTER attribute", sym->name,
487 &sym->declared_at);
488 continue;
489 }
490
491 if (sym->attr.flavor == FL_PROCEDURE)
492 {
493 gfc_error ("Dummy procedure %qs not allowed in elemental "
494 "procedure %qs at %L", sym->name, proc->name,
495 &sym->declared_at);
496 continue;
497 }
498
499 /* Fortran 2008 Corrigendum 1, C1290a. */
500 if (sym->attr.intent == INTENT_UNKNOWN && !sym->attr.value)
501 {
502 gfc_error ("Argument %qs of elemental procedure %qs at %L must "
503 "have its INTENT specified or have the VALUE "
504 "attribute", sym->name, proc->name,
505 &sym->declared_at);
506 continue;
507 }
508 }
509
510 /* Each dummy shall be specified to be scalar. */
511 if (proc->attr.proc == PROC_ST_FUNCTION)
512 {
513 if (sym->as != NULL)
514 {
515 /* F03:C1263 (R1238) The function-name and each dummy-arg-name
516 shall be specified, explicitly or implicitly, to be scalar. */
517 gfc_error ("Argument '%s' of statement function '%s' at %L "
518 "must be scalar", sym->name, proc->name,
519 &proc->declared_at);
520 continue;
521 }
522
523 if (sym->ts.type == BT_CHARACTER)
524 {
525 gfc_charlen *cl = sym->ts.u.cl;
526 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
527 {
528 gfc_error ("Character-valued argument %qs of statement "
529 "function at %L must have constant length",
530 sym->name, &sym->declared_at);
531 continue;
532 }
533 }
534 }
535 }
536 formal_arg_flag = false;
537 }
538
539
540 /* Work function called when searching for symbols that have argument lists
541 associated with them. */
542
543 static void
544 find_arglists (gfc_symbol *sym)
545 {
546 if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns
547 || gfc_fl_struct (sym->attr.flavor) || sym->attr.intrinsic)
548 return;
549
550 resolve_formal_arglist (sym);
551 }
552
553
554 /* Given a namespace, resolve all formal argument lists within the namespace.
555 */
556
557 static void
558 resolve_formal_arglists (gfc_namespace *ns)
559 {
560 if (ns == NULL)
561 return;
562
563 gfc_traverse_ns (ns, find_arglists);
564 }
565
566
567 static void
568 resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
569 {
570 bool t;
571
572 if (sym && sym->attr.flavor == FL_PROCEDURE
573 && sym->ns->parent
574 && sym->ns->parent->proc_name
575 && sym->ns->parent->proc_name->attr.flavor == FL_PROCEDURE
576 && !strcmp (sym->name, sym->ns->parent->proc_name->name))
577 gfc_error ("Contained procedure %qs at %L has the same name as its "
578 "encompassing procedure", sym->name, &sym->declared_at);
579
580 /* If this namespace is not a function or an entry master function,
581 ignore it. */
582 if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
583 || sym->attr.entry_master)
584 return;
585
586 if (!sym->result)
587 return;
588
589 /* Try to find out of what the return type is. */
590 if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
591 {
592 t = gfc_set_default_type (sym->result, 0, ns);
593
594 if (!t && !sym->result->attr.untyped)
595 {
596 if (sym->result == sym)
597 gfc_error ("Contained function %qs at %L has no IMPLICIT type",
598 sym->name, &sym->declared_at);
599 else if (!sym->result->attr.proc_pointer)
600 gfc_error ("Result %qs of contained function %qs at %L has "
601 "no IMPLICIT type", sym->result->name, sym->name,
602 &sym->result->declared_at);
603 sym->result->attr.untyped = 1;
604 }
605 }
606
607 /* Fortran 2008 Draft Standard, page 535, C418, on type-param-value
608 type, lists the only ways a character length value of * can be used:
609 dummy arguments of procedures, named constants, function results and
610 in allocate statements if the allocate_object is an assumed length dummy
611 in external functions. Internal function results and results of module
612 procedures are not on this list, ergo, not permitted. */
613
614 if (sym->result->ts.type == BT_CHARACTER)
615 {
616 gfc_charlen *cl = sym->result->ts.u.cl;
617 if ((!cl || !cl->length) && !sym->result->ts.deferred)
618 {
619 /* See if this is a module-procedure and adapt error message
620 accordingly. */
621 bool module_proc;
622 gcc_assert (ns->parent && ns->parent->proc_name);
623 module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
624
625 gfc_error (module_proc
626 ? G_("Character-valued module procedure %qs at %L"
627 " must not be assumed length")
628 : G_("Character-valued internal function %qs at %L"
629 " must not be assumed length"),
630 sym->name, &sym->declared_at);
631 }
632 }
633 }
634
635
636 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
637 introduce duplicates. */
638
639 static void
640 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
641 {
642 gfc_formal_arglist *f, *new_arglist;
643 gfc_symbol *new_sym;
644
645 for (; new_args != NULL; new_args = new_args->next)
646 {
647 new_sym = new_args->sym;
648 /* See if this arg is already in the formal argument list. */
649 for (f = proc->formal; f; f = f->next)
650 {
651 if (new_sym == f->sym)
652 break;
653 }
654
655 if (f)
656 continue;
657
658 /* Add a new argument. Argument order is not important. */
659 new_arglist = gfc_get_formal_arglist ();
660 new_arglist->sym = new_sym;
661 new_arglist->next = proc->formal;
662 proc->formal = new_arglist;
663 }
664 }
665
666
667 /* Flag the arguments that are not present in all entries. */
668
669 static void
670 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
671 {
672 gfc_formal_arglist *f, *head;
673 head = new_args;
674
675 for (f = proc->formal; f; f = f->next)
676 {
677 if (f->sym == NULL)
678 continue;
679
680 for (new_args = head; new_args; new_args = new_args->next)
681 {
682 if (new_args->sym == f->sym)
683 break;
684 }
685
686 if (new_args)
687 continue;
688
689 f->sym->attr.not_always_present = 1;
690 }
691 }
692
693
694 /* Resolve alternate entry points. If a symbol has multiple entry points we
695 create a new master symbol for the main routine, and turn the existing
696 symbol into an entry point. */
697
698 static void
699 resolve_entries (gfc_namespace *ns)
700 {
701 gfc_namespace *old_ns;
702 gfc_code *c;
703 gfc_symbol *proc;
704 gfc_entry_list *el;
705 char name[GFC_MAX_SYMBOL_LEN + 1];
706 static int master_count = 0;
707
708 if (ns->proc_name == NULL)
709 return;
710
711 /* No need to do anything if this procedure doesn't have alternate entry
712 points. */
713 if (!ns->entries)
714 return;
715
716 /* We may already have resolved alternate entry points. */
717 if (ns->proc_name->attr.entry_master)
718 return;
719
720 /* If this isn't a procedure something has gone horribly wrong. */
721 gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
722
723 /* Remember the current namespace. */
724 old_ns = gfc_current_ns;
725
726 gfc_current_ns = ns;
727
728 /* Add the main entry point to the list of entry points. */
729 el = gfc_get_entry_list ();
730 el->sym = ns->proc_name;
731 el->id = 0;
732 el->next = ns->entries;
733 ns->entries = el;
734 ns->proc_name->attr.entry = 1;
735
736 /* If it is a module function, it needs to be in the right namespace
737 so that gfc_get_fake_result_decl can gather up the results. The
738 need for this arose in get_proc_name, where these beasts were
739 left in their own namespace, to keep prior references linked to
740 the entry declaration.*/
741 if (ns->proc_name->attr.function
742 && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
743 el->sym->ns = ns;
744
745 /* Do the same for entries where the master is not a module
746 procedure. These are retained in the module namespace because
747 of the module procedure declaration. */
748 for (el = el->next; el; el = el->next)
749 if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
750 && el->sym->attr.mod_proc)
751 el->sym->ns = ns;
752 el = ns->entries;
753
754 /* Add an entry statement for it. */
755 c = gfc_get_code (EXEC_ENTRY);
756 c->ext.entry = el;
757 c->next = ns->code;
758 ns->code = c;
759
760 /* Create a new symbol for the master function. */
761 /* Give the internal function a unique name (within this file).
762 Also include the function name so the user has some hope of figuring
763 out what is going on. */
764 snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
765 master_count++, ns->proc_name->name);
766 gfc_get_ha_symbol (name, &proc);
767 gcc_assert (proc != NULL);
768
769 gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
770 if (ns->proc_name->attr.subroutine)
771 gfc_add_subroutine (&proc->attr, proc->name, NULL);
772 else
773 {
774 gfc_symbol *sym;
775 gfc_typespec *ts, *fts;
776 gfc_array_spec *as, *fas;
777 gfc_add_function (&proc->attr, proc->name, NULL);
778 proc->result = proc;
779 fas = ns->entries->sym->as;
780 fas = fas ? fas : ns->entries->sym->result->as;
781 fts = &ns->entries->sym->result->ts;
782 if (fts->type == BT_UNKNOWN)
783 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
784 for (el = ns->entries->next; el; el = el->next)
785 {
786 ts = &el->sym->result->ts;
787 as = el->sym->as;
788 as = as ? as : el->sym->result->as;
789 if (ts->type == BT_UNKNOWN)
790 ts = gfc_get_default_type (el->sym->result->name, NULL);
791
792 if (! gfc_compare_types (ts, fts)
793 || (el->sym->result->attr.dimension
794 != ns->entries->sym->result->attr.dimension)
795 || (el->sym->result->attr.pointer
796 != ns->entries->sym->result->attr.pointer))
797 break;
798 else if (as && fas && ns->entries->sym->result != el->sym->result
799 && gfc_compare_array_spec (as, fas) == 0)
800 gfc_error ("Function %s at %L has entries with mismatched "
801 "array specifications", ns->entries->sym->name,
802 &ns->entries->sym->declared_at);
803 /* The characteristics need to match and thus both need to have
804 the same string length, i.e. both len=*, or both len=4.
805 Having both len=<variable> is also possible, but difficult to
806 check at compile time. */
807 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
808 && (((ts->u.cl->length && !fts->u.cl->length)
809 ||(!ts->u.cl->length && fts->u.cl->length))
810 || (ts->u.cl->length
811 && ts->u.cl->length->expr_type
812 != fts->u.cl->length->expr_type)
813 || (ts->u.cl->length
814 && ts->u.cl->length->expr_type == EXPR_CONSTANT
815 && mpz_cmp (ts->u.cl->length->value.integer,
816 fts->u.cl->length->value.integer) != 0)))
817 gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
818 "entries returning variables of different "
819 "string lengths", ns->entries->sym->name,
820 &ns->entries->sym->declared_at);
821 }
822
823 if (el == NULL)
824 {
825 sym = ns->entries->sym->result;
826 /* All result types the same. */
827 proc->ts = *fts;
828 if (sym->attr.dimension)
829 gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
830 if (sym->attr.pointer)
831 gfc_add_pointer (&proc->attr, NULL);
832 }
833 else
834 {
835 /* Otherwise the result will be passed through a union by
836 reference. */
837 proc->attr.mixed_entry_master = 1;
838 for (el = ns->entries; el; el = el->next)
839 {
840 sym = el->sym->result;
841 if (sym->attr.dimension)
842 {
843 if (el == ns->entries)
844 gfc_error ("FUNCTION result %s cannot be an array in "
845 "FUNCTION %s at %L", sym->name,
846 ns->entries->sym->name, &sym->declared_at);
847 else
848 gfc_error ("ENTRY result %s cannot be an array in "
849 "FUNCTION %s at %L", sym->name,
850 ns->entries->sym->name, &sym->declared_at);
851 }
852 else if (sym->attr.pointer)
853 {
854 if (el == ns->entries)
855 gfc_error ("FUNCTION result %s cannot be a POINTER in "
856 "FUNCTION %s at %L", sym->name,
857 ns->entries->sym->name, &sym->declared_at);
858 else
859 gfc_error ("ENTRY result %s cannot be a POINTER in "
860 "FUNCTION %s at %L", sym->name,
861 ns->entries->sym->name, &sym->declared_at);
862 }
863 else
864 {
865 ts = &sym->ts;
866 if (ts->type == BT_UNKNOWN)
867 ts = gfc_get_default_type (sym->name, NULL);
868 switch (ts->type)
869 {
870 case BT_INTEGER:
871 if (ts->kind == gfc_default_integer_kind)
872 sym = NULL;
873 break;
874 case BT_REAL:
875 if (ts->kind == gfc_default_real_kind
876 || ts->kind == gfc_default_double_kind)
877 sym = NULL;
878 break;
879 case BT_COMPLEX:
880 if (ts->kind == gfc_default_complex_kind)
881 sym = NULL;
882 break;
883 case BT_LOGICAL:
884 if (ts->kind == gfc_default_logical_kind)
885 sym = NULL;
886 break;
887 case BT_UNKNOWN:
888 /* We will issue error elsewhere. */
889 sym = NULL;
890 break;
891 default:
892 break;
893 }
894 if (sym)
895 {
896 if (el == ns->entries)
897 gfc_error ("FUNCTION result %s cannot be of type %s "
898 "in FUNCTION %s at %L", sym->name,
899 gfc_typename (ts), ns->entries->sym->name,
900 &sym->declared_at);
901 else
902 gfc_error ("ENTRY result %s cannot be of type %s "
903 "in FUNCTION %s at %L", sym->name,
904 gfc_typename (ts), ns->entries->sym->name,
905 &sym->declared_at);
906 }
907 }
908 }
909 }
910 }
911 proc->attr.access = ACCESS_PRIVATE;
912 proc->attr.entry_master = 1;
913
914 /* Merge all the entry point arguments. */
915 for (el = ns->entries; el; el = el->next)
916 merge_argument_lists (proc, el->sym->formal);
917
918 /* Check the master formal arguments for any that are not
919 present in all entry points. */
920 for (el = ns->entries; el; el = el->next)
921 check_argument_lists (proc, el->sym->formal);
922
923 /* Use the master function for the function body. */
924 ns->proc_name = proc;
925
926 /* Finalize the new symbols. */
927 gfc_commit_symbols ();
928
929 /* Restore the original namespace. */
930 gfc_current_ns = old_ns;
931 }
932
933
934 /* Resolve common variables. */
935 static void
936 resolve_common_vars (gfc_common_head *common_block, bool named_common)
937 {
938 gfc_symbol *csym = common_block->head;
939
940 for (; csym; csym = csym->common_next)
941 {
942 /* gfc_add_in_common may have been called before, but the reported errors
943 have been ignored to continue parsing.
944 We do the checks again here. */
945 if (!csym->attr.use_assoc)
946 {
947 gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
948 gfc_notify_std (GFC_STD_F2018_OBS, "COMMON block at %L",
949 &common_block->where);
950 }
951
952 if (csym->value || csym->attr.data)
953 {
954 if (!csym->ns->is_block_data)
955 gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
956 "but only in BLOCK DATA initialization is "
957 "allowed", csym->name, &csym->declared_at);
958 else if (!named_common)
959 gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
960 "in a blank COMMON but initialization is only "
961 "allowed in named common blocks", csym->name,
962 &csym->declared_at);
963 }
964
965 if (UNLIMITED_POLY (csym))
966 gfc_error_now ("%qs in cannot appear in COMMON at %L "
967 "[F2008:C5100]", csym->name, &csym->declared_at);
968
969 if (csym->ts.type != BT_DERIVED)
970 continue;
971
972 if (!(csym->ts.u.derived->attr.sequence
973 || csym->ts.u.derived->attr.is_bind_c))
974 gfc_error_now ("Derived type variable %qs in COMMON at %L "
975 "has neither the SEQUENCE nor the BIND(C) "
976 "attribute", csym->name, &csym->declared_at);
977 if (csym->ts.u.derived->attr.alloc_comp)
978 gfc_error_now ("Derived type variable %qs in COMMON at %L "
979 "has an ultimate component that is "
980 "allocatable", csym->name, &csym->declared_at);
981 if (gfc_has_default_initializer (csym->ts.u.derived))
982 gfc_error_now ("Derived type variable %qs in COMMON at %L "
983 "may not have default initializer", csym->name,
984 &csym->declared_at);
985
986 if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
987 gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
988 }
989 }
990
991 /* Resolve common blocks. */
992 static void
993 resolve_common_blocks (gfc_symtree *common_root)
994 {
995 gfc_symbol *sym;
996 gfc_gsymbol * gsym;
997
998 if (common_root == NULL)
999 return;
1000
1001 if (common_root->left)
1002 resolve_common_blocks (common_root->left);
1003 if (common_root->right)
1004 resolve_common_blocks (common_root->right);
1005
1006 resolve_common_vars (common_root->n.common, true);
1007
1008 /* The common name is a global name - in Fortran 2003 also if it has a
1009 C binding name, since Fortran 2008 only the C binding name is a global
1010 identifier. */
1011 if (!common_root->n.common->binding_label
1012 || gfc_notification_std (GFC_STD_F2008))
1013 {
1014 gsym = gfc_find_gsymbol (gfc_gsym_root,
1015 common_root->n.common->name);
1016
1017 if (gsym && gfc_notification_std (GFC_STD_F2008)
1018 && gsym->type == GSYM_COMMON
1019 && ((common_root->n.common->binding_label
1020 && (!gsym->binding_label
1021 || strcmp (common_root->n.common->binding_label,
1022 gsym->binding_label) != 0))
1023 || (!common_root->n.common->binding_label
1024 && gsym->binding_label)))
1025 {
1026 gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
1027 "identifier and must thus have the same binding name "
1028 "as the same-named COMMON block at %L: %s vs %s",
1029 common_root->n.common->name, &common_root->n.common->where,
1030 &gsym->where,
1031 common_root->n.common->binding_label
1032 ? common_root->n.common->binding_label : "(blank)",
1033 gsym->binding_label ? gsym->binding_label : "(blank)");
1034 return;
1035 }
1036
1037 if (gsym && gsym->type != GSYM_COMMON
1038 && !common_root->n.common->binding_label)
1039 {
1040 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1041 "as entity at %L",
1042 common_root->n.common->name, &common_root->n.common->where,
1043 &gsym->where);
1044 return;
1045 }
1046 if (gsym && gsym->type != GSYM_COMMON)
1047 {
1048 gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
1049 "%L sharing the identifier with global non-COMMON-block "
1050 "entity at %L", common_root->n.common->name,
1051 &common_root->n.common->where, &gsym->where);
1052 return;
1053 }
1054 if (!gsym)
1055 {
1056 gsym = gfc_get_gsymbol (common_root->n.common->name, false);
1057 gsym->type = GSYM_COMMON;
1058 gsym->where = common_root->n.common->where;
1059 gsym->defined = 1;
1060 }
1061 gsym->used = 1;
1062 }
1063
1064 if (common_root->n.common->binding_label)
1065 {
1066 gsym = gfc_find_gsymbol (gfc_gsym_root,
1067 common_root->n.common->binding_label);
1068 if (gsym && gsym->type != GSYM_COMMON)
1069 {
1070 gfc_error ("COMMON block at %L with binding label %qs uses the same "
1071 "global identifier as entity at %L",
1072 &common_root->n.common->where,
1073 common_root->n.common->binding_label, &gsym->where);
1074 return;
1075 }
1076 if (!gsym)
1077 {
1078 gsym = gfc_get_gsymbol (common_root->n.common->binding_label, true);
1079 gsym->type = GSYM_COMMON;
1080 gsym->where = common_root->n.common->where;
1081 gsym->defined = 1;
1082 }
1083 gsym->used = 1;
1084 }
1085
1086 gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
1087 if (sym == NULL)
1088 return;
1089
1090 if (sym->attr.flavor == FL_PARAMETER)
1091 gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
1092 sym->name, &common_root->n.common->where, &sym->declared_at);
1093
1094 if (sym->attr.external)
1095 gfc_error ("COMMON block %qs at %L cannot have the EXTERNAL attribute",
1096 sym->name, &common_root->n.common->where);
1097
1098 if (sym->attr.intrinsic)
1099 gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
1100 sym->name, &common_root->n.common->where);
1101 else if (sym->attr.result
1102 || gfc_is_function_return_value (sym, gfc_current_ns))
1103 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1104 "that is also a function result", sym->name,
1105 &common_root->n.common->where);
1106 else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
1107 && sym->attr.proc != PROC_ST_FUNCTION)
1108 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1109 "that is also a global procedure", sym->name,
1110 &common_root->n.common->where);
1111 }
1112
1113
1114 /* Resolve contained function types. Because contained functions can call one
1115 another, they have to be worked out before any of the contained procedures
1116 can be resolved.
1117
1118 The good news is that if a function doesn't already have a type, the only
1119 way it can get one is through an IMPLICIT type or a RESULT variable, because
1120 by definition contained functions are contained namespace they're contained
1121 in, not in a sibling or parent namespace. */
1122
1123 static void
1124 resolve_contained_functions (gfc_namespace *ns)
1125 {
1126 gfc_namespace *child;
1127 gfc_entry_list *el;
1128
1129 resolve_formal_arglists (ns);
1130
1131 for (child = ns->contained; child; child = child->sibling)
1132 {
1133 /* Resolve alternate entry points first. */
1134 resolve_entries (child);
1135
1136 /* Then check function return types. */
1137 resolve_contained_fntype (child->proc_name, child);
1138 for (el = child->entries; el; el = el->next)
1139 resolve_contained_fntype (el->sym, child);
1140 }
1141 }
1142
1143
1144
1145 /* A Parameterized Derived Type constructor must contain values for
1146 the PDT KIND parameters or they must have a default initializer.
1147 Go through the constructor picking out the KIND expressions,
1148 storing them in 'param_list' and then call gfc_get_pdt_instance
1149 to obtain the PDT instance. */
1150
1151 static gfc_actual_arglist *param_list, *param_tail, *param;
1152
1153 static bool
1154 get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
1155 {
1156 param = gfc_get_actual_arglist ();
1157 if (!param_list)
1158 param_list = param_tail = param;
1159 else
1160 {
1161 param_tail->next = param;
1162 param_tail = param_tail->next;
1163 }
1164
1165 param_tail->name = c->name;
1166 if (expr)
1167 param_tail->expr = gfc_copy_expr (expr);
1168 else if (c->initializer)
1169 param_tail->expr = gfc_copy_expr (c->initializer);
1170 else
1171 {
1172 param_tail->spec_type = SPEC_ASSUMED;
1173 if (c->attr.pdt_kind)
1174 {
1175 gfc_error ("The KIND parameter %qs in the PDT constructor "
1176 "at %C has no value", param->name);
1177 return false;
1178 }
1179 }
1180
1181 return true;
1182 }
1183
1184 static bool
1185 get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
1186 gfc_symbol *derived)
1187 {
1188 gfc_constructor *cons = NULL;
1189 gfc_component *comp;
1190 bool t = true;
1191
1192 if (expr && expr->expr_type == EXPR_STRUCTURE)
1193 cons = gfc_constructor_first (expr->value.constructor);
1194 else if (constr)
1195 cons = *constr;
1196 gcc_assert (cons);
1197
1198 comp = derived->components;
1199
1200 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1201 {
1202 if (cons->expr
1203 && cons->expr->expr_type == EXPR_STRUCTURE
1204 && comp->ts.type == BT_DERIVED)
1205 {
1206 t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
1207 if (!t)
1208 return t;
1209 }
1210 else if (comp->ts.type == BT_DERIVED)
1211 {
1212 t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
1213 if (!t)
1214 return t;
1215 }
1216 else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
1217 && derived->attr.pdt_template)
1218 {
1219 t = get_pdt_spec_expr (comp, cons->expr);
1220 if (!t)
1221 return t;
1222 }
1223 }
1224 return t;
1225 }
1226
1227
1228 static bool resolve_fl_derived0 (gfc_symbol *sym);
1229 static bool resolve_fl_struct (gfc_symbol *sym);
1230
1231
1232 /* Resolve all of the elements of a structure constructor and make sure that
1233 the types are correct. The 'init' flag indicates that the given
1234 constructor is an initializer. */
1235
1236 static bool
1237 resolve_structure_cons (gfc_expr *expr, int init)
1238 {
1239 gfc_constructor *cons;
1240 gfc_component *comp;
1241 bool t;
1242 symbol_attribute a;
1243
1244 t = true;
1245
1246 if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
1247 {
1248 if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
1249 resolve_fl_derived0 (expr->ts.u.derived);
1250 else
1251 resolve_fl_struct (expr->ts.u.derived);
1252
1253 /* If this is a Parameterized Derived Type template, find the
1254 instance corresponding to the PDT kind parameters. */
1255 if (expr->ts.u.derived->attr.pdt_template)
1256 {
1257 param_list = NULL;
1258 t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
1259 if (!t)
1260 return t;
1261 gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
1262
1263 expr->param_list = gfc_copy_actual_arglist (param_list);
1264
1265 if (param_list)
1266 gfc_free_actual_arglist (param_list);
1267
1268 if (!expr->ts.u.derived->attr.pdt_type)
1269 return false;
1270 }
1271 }
1272
1273 cons = gfc_constructor_first (expr->value.constructor);
1274
1275 /* A constructor may have references if it is the result of substituting a
1276 parameter variable. In this case we just pull out the component we
1277 want. */
1278 if (expr->ref)
1279 comp = expr->ref->u.c.sym->components;
1280 else
1281 comp = expr->ts.u.derived->components;
1282
1283 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1284 {
1285 int rank;
1286
1287 if (!cons->expr)
1288 continue;
1289
1290 /* Unions use an EXPR_NULL contrived expression to tell the translation
1291 phase to generate an initializer of the appropriate length.
1292 Ignore it here. */
1293 if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
1294 continue;
1295
1296 if (!gfc_resolve_expr (cons->expr))
1297 {
1298 t = false;
1299 continue;
1300 }
1301
1302 rank = comp->as ? comp->as->rank : 0;
1303 if (comp->ts.type == BT_CLASS
1304 && !comp->ts.u.derived->attr.unlimited_polymorphic
1305 && CLASS_DATA (comp)->as)
1306 rank = CLASS_DATA (comp)->as->rank;
1307
1308 if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
1309 && (comp->attr.allocatable || cons->expr->rank))
1310 {
1311 gfc_error ("The rank of the element in the structure "
1312 "constructor at %L does not match that of the "
1313 "component (%d/%d)", &cons->expr->where,
1314 cons->expr->rank, rank);
1315 t = false;
1316 }
1317
1318 /* If we don't have the right type, try to convert it. */
1319
1320 if (!comp->attr.proc_pointer &&
1321 !gfc_compare_types (&cons->expr->ts, &comp->ts))
1322 {
1323 if (strcmp (comp->name, "_extends") == 0)
1324 {
1325 /* Can afford to be brutal with the _extends initializer.
1326 The derived type can get lost because it is PRIVATE
1327 but it is not usage constrained by the standard. */
1328 cons->expr->ts = comp->ts;
1329 }
1330 else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
1331 {
1332 gfc_error ("The element in the structure constructor at %L, "
1333 "for pointer component %qs, is %s but should be %s",
1334 &cons->expr->where, comp->name,
1335 gfc_basic_typename (cons->expr->ts.type),
1336 gfc_basic_typename (comp->ts.type));
1337 t = false;
1338 }
1339 else
1340 {
1341 bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
1342 if (t)
1343 t = t2;
1344 }
1345 }
1346
1347 /* For strings, the length of the constructor should be the same as
1348 the one of the structure, ensure this if the lengths are known at
1349 compile time and when we are dealing with PARAMETER or structure
1350 constructors. */
1351 if (cons->expr->ts.type == BT_CHARACTER && comp->ts.u.cl
1352 && comp->ts.u.cl->length
1353 && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
1354 && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
1355 && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
1356 && cons->expr->rank != 0
1357 && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
1358 comp->ts.u.cl->length->value.integer) != 0)
1359 {
1360 if (cons->expr->expr_type == EXPR_VARIABLE
1361 && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
1362 {
1363 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1364 to make use of the gfc_resolve_character_array_constructor
1365 machinery. The expression is later simplified away to
1366 an array of string literals. */
1367 gfc_expr *para = cons->expr;
1368 cons->expr = gfc_get_expr ();
1369 cons->expr->ts = para->ts;
1370 cons->expr->where = para->where;
1371 cons->expr->expr_type = EXPR_ARRAY;
1372 cons->expr->rank = para->rank;
1373 cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
1374 gfc_constructor_append_expr (&cons->expr->value.constructor,
1375 para, &cons->expr->where);
1376 }
1377
1378 if (cons->expr->expr_type == EXPR_ARRAY)
1379 {
1380 /* Rely on the cleanup of the namespace to deal correctly with
1381 the old charlen. (There was a block here that attempted to
1382 remove the charlen but broke the chain in so doing.) */
1383 cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1384 cons->expr->ts.u.cl->length_from_typespec = true;
1385 cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
1386 gfc_resolve_character_array_constructor (cons->expr);
1387 }
1388 }
1389
1390 if (cons->expr->expr_type == EXPR_NULL
1391 && !(comp->attr.pointer || comp->attr.allocatable
1392 || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
1393 || (comp->ts.type == BT_CLASS
1394 && (CLASS_DATA (comp)->attr.class_pointer
1395 || CLASS_DATA (comp)->attr.allocatable))))
1396 {
1397 t = false;
1398 gfc_error ("The NULL in the structure constructor at %L is "
1399 "being applied to component %qs, which is neither "
1400 "a POINTER nor ALLOCATABLE", &cons->expr->where,
1401 comp->name);
1402 }
1403
1404 if (comp->attr.proc_pointer && comp->ts.interface)
1405 {
1406 /* Check procedure pointer interface. */
1407 gfc_symbol *s2 = NULL;
1408 gfc_component *c2;
1409 const char *name;
1410 char err[200];
1411
1412 c2 = gfc_get_proc_ptr_comp (cons->expr);
1413 if (c2)
1414 {
1415 s2 = c2->ts.interface;
1416 name = c2->name;
1417 }
1418 else if (cons->expr->expr_type == EXPR_FUNCTION)
1419 {
1420 s2 = cons->expr->symtree->n.sym->result;
1421 name = cons->expr->symtree->n.sym->result->name;
1422 }
1423 else if (cons->expr->expr_type != EXPR_NULL)
1424 {
1425 s2 = cons->expr->symtree->n.sym;
1426 name = cons->expr->symtree->n.sym->name;
1427 }
1428
1429 if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
1430 err, sizeof (err), NULL, NULL))
1431 {
1432 gfc_error_opt (0, "Interface mismatch for procedure-pointer "
1433 "component %qs in structure constructor at %L:"
1434 " %s", comp->name, &cons->expr->where, err);
1435 return false;
1436 }
1437 }
1438
1439 if (!comp->attr.pointer || comp->attr.proc_pointer
1440 || cons->expr->expr_type == EXPR_NULL)
1441 continue;
1442
1443 a = gfc_expr_attr (cons->expr);
1444
1445 if (!a.pointer && !a.target)
1446 {
1447 t = false;
1448 gfc_error ("The element in the structure constructor at %L, "
1449 "for pointer component %qs should be a POINTER or "
1450 "a TARGET", &cons->expr->where, comp->name);
1451 }
1452
1453 if (init)
1454 {
1455 /* F08:C461. Additional checks for pointer initialization. */
1456 if (a.allocatable)
1457 {
1458 t = false;
1459 gfc_error ("Pointer initialization target at %L "
1460 "must not be ALLOCATABLE", &cons->expr->where);
1461 }
1462 if (!a.save)
1463 {
1464 t = false;
1465 gfc_error ("Pointer initialization target at %L "
1466 "must have the SAVE attribute", &cons->expr->where);
1467 }
1468 }
1469
1470 /* F2003, C1272 (3). */
1471 bool impure = cons->expr->expr_type == EXPR_VARIABLE
1472 && (gfc_impure_variable (cons->expr->symtree->n.sym)
1473 || gfc_is_coindexed (cons->expr));
1474 if (impure && gfc_pure (NULL))
1475 {
1476 t = false;
1477 gfc_error ("Invalid expression in the structure constructor for "
1478 "pointer component %qs at %L in PURE procedure",
1479 comp->name, &cons->expr->where);
1480 }
1481
1482 if (impure)
1483 gfc_unset_implicit_pure (NULL);
1484 }
1485
1486 return t;
1487 }
1488
1489
1490 /****************** Expression name resolution ******************/
1491
1492 /* Returns 0 if a symbol was not declared with a type or
1493 attribute declaration statement, nonzero otherwise. */
1494
1495 static int
1496 was_declared (gfc_symbol *sym)
1497 {
1498 symbol_attribute a;
1499
1500 a = sym->attr;
1501
1502 if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
1503 return 1;
1504
1505 if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
1506 || a.optional || a.pointer || a.save || a.target || a.volatile_
1507 || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
1508 || a.asynchronous || a.codimension)
1509 return 1;
1510
1511 return 0;
1512 }
1513
1514
1515 /* Determine if a symbol is generic or not. */
1516
1517 static int
1518 generic_sym (gfc_symbol *sym)
1519 {
1520 gfc_symbol *s;
1521
1522 if (sym->attr.generic ||
1523 (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
1524 return 1;
1525
1526 if (was_declared (sym) || sym->ns->parent == NULL)
1527 return 0;
1528
1529 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1530
1531 if (s != NULL)
1532 {
1533 if (s == sym)
1534 return 0;
1535 else
1536 return generic_sym (s);
1537 }
1538
1539 return 0;
1540 }
1541
1542
1543 /* Determine if a symbol is specific or not. */
1544
1545 static int
1546 specific_sym (gfc_symbol *sym)
1547 {
1548 gfc_symbol *s;
1549
1550 if (sym->attr.if_source == IFSRC_IFBODY
1551 || sym->attr.proc == PROC_MODULE
1552 || sym->attr.proc == PROC_INTERNAL
1553 || sym->attr.proc == PROC_ST_FUNCTION
1554 || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1555 || sym->attr.external)
1556 return 1;
1557
1558 if (was_declared (sym) || sym->ns->parent == NULL)
1559 return 0;
1560
1561 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1562
1563 return (s == NULL) ? 0 : specific_sym (s);
1564 }
1565
1566
1567 /* Figure out if the procedure is specific, generic or unknown. */
1568
1569 enum proc_type
1570 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
1571
1572 static proc_type
1573 procedure_kind (gfc_symbol *sym)
1574 {
1575 if (generic_sym (sym))
1576 return PTYPE_GENERIC;
1577
1578 if (specific_sym (sym))
1579 return PTYPE_SPECIFIC;
1580
1581 return PTYPE_UNKNOWN;
1582 }
1583
1584 /* Check references to assumed size arrays. The flag need_full_assumed_size
1585 is nonzero when matching actual arguments. */
1586
1587 static int need_full_assumed_size = 0;
1588
1589 static bool
1590 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1591 {
1592 if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1593 return false;
1594
1595 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1596 What should it be? */
1597 if (e->ref && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1598 && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1599 && (e->ref->u.ar.type == AR_FULL))
1600 {
1601 gfc_error ("The upper bound in the last dimension must "
1602 "appear in the reference to the assumed size "
1603 "array %qs at %L", sym->name, &e->where);
1604 return true;
1605 }
1606 return false;
1607 }
1608
1609
1610 /* Look for bad assumed size array references in argument expressions
1611 of elemental and array valued intrinsic procedures. Since this is
1612 called from procedure resolution functions, it only recurses at
1613 operators. */
1614
1615 static bool
1616 resolve_assumed_size_actual (gfc_expr *e)
1617 {
1618 if (e == NULL)
1619 return false;
1620
1621 switch (e->expr_type)
1622 {
1623 case EXPR_VARIABLE:
1624 if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1625 return true;
1626 break;
1627
1628 case EXPR_OP:
1629 if (resolve_assumed_size_actual (e->value.op.op1)
1630 || resolve_assumed_size_actual (e->value.op.op2))
1631 return true;
1632 break;
1633
1634 default:
1635 break;
1636 }
1637 return false;
1638 }
1639
1640
1641 /* Check a generic procedure, passed as an actual argument, to see if
1642 there is a matching specific name. If none, it is an error, and if
1643 more than one, the reference is ambiguous. */
1644 static int
1645 count_specific_procs (gfc_expr *e)
1646 {
1647 int n;
1648 gfc_interface *p;
1649 gfc_symbol *sym;
1650
1651 n = 0;
1652 sym = e->symtree->n.sym;
1653
1654 for (p = sym->generic; p; p = p->next)
1655 if (strcmp (sym->name, p->sym->name) == 0)
1656 {
1657 e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1658 sym->name);
1659 n++;
1660 }
1661
1662 if (n > 1)
1663 gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
1664 &e->where);
1665
1666 if (n == 0)
1667 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1668 "argument at %L", sym->name, &e->where);
1669
1670 return n;
1671 }
1672
1673
1674 /* See if a call to sym could possibly be a not allowed RECURSION because of
1675 a missing RECURSIVE declaration. This means that either sym is the current
1676 context itself, or sym is the parent of a contained procedure calling its
1677 non-RECURSIVE containing procedure.
1678 This also works if sym is an ENTRY. */
1679
1680 static bool
1681 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1682 {
1683 gfc_symbol* proc_sym;
1684 gfc_symbol* context_proc;
1685 gfc_namespace* real_context;
1686
1687 if (sym->attr.flavor == FL_PROGRAM
1688 || gfc_fl_struct (sym->attr.flavor))
1689 return false;
1690
1691 /* If we've got an ENTRY, find real procedure. */
1692 if (sym->attr.entry && sym->ns->entries)
1693 proc_sym = sym->ns->entries->sym;
1694 else
1695 proc_sym = sym;
1696
1697 /* If sym is RECURSIVE, all is well of course. */
1698 if (proc_sym->attr.recursive || flag_recursive)
1699 return false;
1700
1701 /* Find the context procedure's "real" symbol if it has entries.
1702 We look for a procedure symbol, so recurse on the parents if we don't
1703 find one (like in case of a BLOCK construct). */
1704 for (real_context = context; ; real_context = real_context->parent)
1705 {
1706 /* We should find something, eventually! */
1707 gcc_assert (real_context);
1708
1709 context_proc = (real_context->entries ? real_context->entries->sym
1710 : real_context->proc_name);
1711
1712 /* In some special cases, there may not be a proc_name, like for this
1713 invalid code:
1714 real(bad_kind()) function foo () ...
1715 when checking the call to bad_kind ().
1716 In these cases, we simply return here and assume that the
1717 call is ok. */
1718 if (!context_proc)
1719 return false;
1720
1721 if (context_proc->attr.flavor != FL_LABEL)
1722 break;
1723 }
1724
1725 /* A call from sym's body to itself is recursion, of course. */
1726 if (context_proc == proc_sym)
1727 return true;
1728
1729 /* The same is true if context is a contained procedure and sym the
1730 containing one. */
1731 if (context_proc->attr.contained)
1732 {
1733 gfc_symbol* parent_proc;
1734
1735 gcc_assert (context->parent);
1736 parent_proc = (context->parent->entries ? context->parent->entries->sym
1737 : context->parent->proc_name);
1738
1739 if (parent_proc == proc_sym)
1740 return true;
1741 }
1742
1743 return false;
1744 }
1745
1746
1747 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1748 its typespec and formal argument list. */
1749
1750 bool
1751 gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
1752 {
1753 gfc_intrinsic_sym* isym = NULL;
1754 const char* symstd;
1755
1756 if (sym->formal)
1757 return true;
1758
1759 /* Already resolved. */
1760 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1761 return true;
1762
1763 /* We already know this one is an intrinsic, so we don't call
1764 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1765 gfc_find_subroutine directly to check whether it is a function or
1766 subroutine. */
1767
1768 if (sym->intmod_sym_id && sym->attr.subroutine)
1769 {
1770 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1771 isym = gfc_intrinsic_subroutine_by_id (id);
1772 }
1773 else if (sym->intmod_sym_id)
1774 {
1775 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1776 isym = gfc_intrinsic_function_by_id (id);
1777 }
1778 else if (!sym->attr.subroutine)
1779 isym = gfc_find_function (sym->name);
1780
1781 if (isym && !sym->attr.subroutine)
1782 {
1783 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1784 && !sym->attr.implicit_type)
1785 gfc_warning (OPT_Wsurprising,
1786 "Type specified for intrinsic function %qs at %L is"
1787 " ignored", sym->name, &sym->declared_at);
1788
1789 if (!sym->attr.function &&
1790 !gfc_add_function(&sym->attr, sym->name, loc))
1791 return false;
1792
1793 sym->ts = isym->ts;
1794 }
1795 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1796 {
1797 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1798 {
1799 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1800 " specifier", sym->name, &sym->declared_at);
1801 return false;
1802 }
1803
1804 if (!sym->attr.subroutine &&
1805 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1806 return false;
1807 }
1808 else
1809 {
1810 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1811 &sym->declared_at);
1812 return false;
1813 }
1814
1815 gfc_copy_formal_args_intr (sym, isym, NULL);
1816
1817 sym->attr.pure = isym->pure;
1818 sym->attr.elemental = isym->elemental;
1819
1820 /* Check it is actually available in the standard settings. */
1821 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1822 {
1823 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1824 "available in the current standard settings but %s. Use "
1825 "an appropriate %<-std=*%> option or enable "
1826 "%<-fall-intrinsics%> in order to use it.",
1827 sym->name, &sym->declared_at, symstd);
1828 return false;
1829 }
1830
1831 return true;
1832 }
1833
1834
1835 /* Resolve a procedure expression, like passing it to a called procedure or as
1836 RHS for a procedure pointer assignment. */
1837
1838 static bool
1839 resolve_procedure_expression (gfc_expr* expr)
1840 {
1841 gfc_symbol* sym;
1842
1843 if (expr->expr_type != EXPR_VARIABLE)
1844 return true;
1845 gcc_assert (expr->symtree);
1846
1847 sym = expr->symtree->n.sym;
1848
1849 if (sym->attr.intrinsic)
1850 gfc_resolve_intrinsic (sym, &expr->where);
1851
1852 if (sym->attr.flavor != FL_PROCEDURE
1853 || (sym->attr.function && sym->result == sym))
1854 return true;
1855
1856 /* A non-RECURSIVE procedure that is used as procedure expression within its
1857 own body is in danger of being called recursively. */
1858 if (is_illegal_recursion (sym, gfc_current_ns))
1859 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1860 " itself recursively. Declare it RECURSIVE or use"
1861 " %<-frecursive%>", sym->name, &expr->where);
1862
1863 return true;
1864 }
1865
1866
1867 /* Check that name is not a derived type. */
1868
1869 static bool
1870 is_dt_name (const char *name)
1871 {
1872 gfc_symbol *dt_list, *dt_first;
1873
1874 dt_list = dt_first = gfc_derived_types;
1875 for (; dt_list; dt_list = dt_list->dt_next)
1876 {
1877 if (strcmp(dt_list->name, name) == 0)
1878 return true;
1879 if (dt_first == dt_list->dt_next)
1880 break;
1881 }
1882 return false;
1883 }
1884
1885
1886 /* Resolve an actual argument list. Most of the time, this is just
1887 resolving the expressions in the list.
1888 The exception is that we sometimes have to decide whether arguments
1889 that look like procedure arguments are really simple variable
1890 references. */
1891
1892 static bool
1893 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1894 bool no_formal_args)
1895 {
1896 gfc_symbol *sym;
1897 gfc_symtree *parent_st;
1898 gfc_expr *e;
1899 gfc_component *comp;
1900 int save_need_full_assumed_size;
1901 bool return_value = false;
1902 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1903
1904 actual_arg = true;
1905 first_actual_arg = true;
1906
1907 for (; arg; arg = arg->next)
1908 {
1909 e = arg->expr;
1910 if (e == NULL)
1911 {
1912 /* Check the label is a valid branching target. */
1913 if (arg->label)
1914 {
1915 if (arg->label->defined == ST_LABEL_UNKNOWN)
1916 {
1917 gfc_error ("Label %d referenced at %L is never defined",
1918 arg->label->value, &arg->label->where);
1919 goto cleanup;
1920 }
1921 }
1922 first_actual_arg = false;
1923 continue;
1924 }
1925
1926 if (e->expr_type == EXPR_VARIABLE
1927 && e->symtree->n.sym->attr.generic
1928 && no_formal_args
1929 && count_specific_procs (e) != 1)
1930 goto cleanup;
1931
1932 if (e->ts.type != BT_PROCEDURE)
1933 {
1934 save_need_full_assumed_size = need_full_assumed_size;
1935 if (e->expr_type != EXPR_VARIABLE)
1936 need_full_assumed_size = 0;
1937 if (!gfc_resolve_expr (e))
1938 goto cleanup;
1939 need_full_assumed_size = save_need_full_assumed_size;
1940 goto argument_list;
1941 }
1942
1943 /* See if the expression node should really be a variable reference. */
1944
1945 sym = e->symtree->n.sym;
1946
1947 if (sym->attr.flavor == FL_PROCEDURE && is_dt_name (sym->name))
1948 {
1949 gfc_error ("Derived type %qs is used as an actual "
1950 "argument at %L", sym->name, &e->where);
1951 goto cleanup;
1952 }
1953
1954 if (sym->attr.flavor == FL_PROCEDURE
1955 || sym->attr.intrinsic
1956 || sym->attr.external)
1957 {
1958 int actual_ok;
1959
1960 /* If a procedure is not already determined to be something else
1961 check if it is intrinsic. */
1962 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1963 sym->attr.intrinsic = 1;
1964
1965 if (sym->attr.proc == PROC_ST_FUNCTION)
1966 {
1967 gfc_error ("Statement function %qs at %L is not allowed as an "
1968 "actual argument", sym->name, &e->where);
1969 }
1970
1971 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1972 sym->attr.subroutine);
1973 if (sym->attr.intrinsic && actual_ok == 0)
1974 {
1975 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1976 "actual argument", sym->name, &e->where);
1977 }
1978
1979 if (sym->attr.contained && !sym->attr.use_assoc
1980 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1981 {
1982 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1983 " used as actual argument at %L",
1984 sym->name, &e->where))
1985 goto cleanup;
1986 }
1987
1988 if (sym->attr.elemental && !sym->attr.intrinsic)
1989 {
1990 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1991 "allowed as an actual argument at %L", sym->name,
1992 &e->where);
1993 }
1994
1995 /* Check if a generic interface has a specific procedure
1996 with the same name before emitting an error. */
1997 if (sym->attr.generic && count_specific_procs (e) != 1)
1998 goto cleanup;
1999
2000 /* Just in case a specific was found for the expression. */
2001 sym = e->symtree->n.sym;
2002
2003 /* If the symbol is the function that names the current (or
2004 parent) scope, then we really have a variable reference. */
2005
2006 if (gfc_is_function_return_value (sym, sym->ns))
2007 goto got_variable;
2008
2009 /* If all else fails, see if we have a specific intrinsic. */
2010 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
2011 {
2012 gfc_intrinsic_sym *isym;
2013
2014 isym = gfc_find_function (sym->name);
2015 if (isym == NULL || !isym->specific)
2016 {
2017 gfc_error ("Unable to find a specific INTRINSIC procedure "
2018 "for the reference %qs at %L", sym->name,
2019 &e->where);
2020 goto cleanup;
2021 }
2022 sym->ts = isym->ts;
2023 sym->attr.intrinsic = 1;
2024 sym->attr.function = 1;
2025 }
2026
2027 if (!gfc_resolve_expr (e))
2028 goto cleanup;
2029 goto argument_list;
2030 }
2031
2032 /* See if the name is a module procedure in a parent unit. */
2033
2034 if (was_declared (sym) || sym->ns->parent == NULL)
2035 goto got_variable;
2036
2037 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2038 {
2039 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2040 goto cleanup;
2041 }
2042
2043 if (parent_st == NULL)
2044 goto got_variable;
2045
2046 sym = parent_st->n.sym;
2047 e->symtree = parent_st; /* Point to the right thing. */
2048
2049 if (sym->attr.flavor == FL_PROCEDURE
2050 || sym->attr.intrinsic
2051 || sym->attr.external)
2052 {
2053 if (!gfc_resolve_expr (e))
2054 goto cleanup;
2055 goto argument_list;
2056 }
2057
2058 got_variable:
2059 e->expr_type = EXPR_VARIABLE;
2060 e->ts = sym->ts;
2061 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2062 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2063 && CLASS_DATA (sym)->as))
2064 {
2065 e->rank = sym->ts.type == BT_CLASS
2066 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2067 e->ref = gfc_get_ref ();
2068 e->ref->type = REF_ARRAY;
2069 e->ref->u.ar.type = AR_FULL;
2070 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2071 ? CLASS_DATA (sym)->as : sym->as;
2072 }
2073
2074 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2075 primary.c (match_actual_arg). If above code determines that it
2076 is a variable instead, it needs to be resolved as it was not
2077 done at the beginning of this function. */
2078 save_need_full_assumed_size = need_full_assumed_size;
2079 if (e->expr_type != EXPR_VARIABLE)
2080 need_full_assumed_size = 0;
2081 if (!gfc_resolve_expr (e))
2082 goto cleanup;
2083 need_full_assumed_size = save_need_full_assumed_size;
2084
2085 argument_list:
2086 /* Check argument list functions %VAL, %LOC and %REF. There is
2087 nothing to do for %REF. */
2088 if (arg->name && arg->name[0] == '%')
2089 {
2090 if (strcmp ("%VAL", arg->name) == 0)
2091 {
2092 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2093 {
2094 gfc_error ("By-value argument at %L is not of numeric "
2095 "type", &e->where);
2096 goto cleanup;
2097 }
2098
2099 if (e->rank)
2100 {
2101 gfc_error ("By-value argument at %L cannot be an array or "
2102 "an array section", &e->where);
2103 goto cleanup;
2104 }
2105
2106 /* Intrinsics are still PROC_UNKNOWN here. However,
2107 since same file external procedures are not resolvable
2108 in gfortran, it is a good deal easier to leave them to
2109 intrinsic.c. */
2110 if (ptype != PROC_UNKNOWN
2111 && ptype != PROC_DUMMY
2112 && ptype != PROC_EXTERNAL
2113 && ptype != PROC_MODULE)
2114 {
2115 gfc_error ("By-value argument at %L is not allowed "
2116 "in this context", &e->where);
2117 goto cleanup;
2118 }
2119 }
2120
2121 /* Statement functions have already been excluded above. */
2122 else if (strcmp ("%LOC", arg->name) == 0
2123 && e->ts.type == BT_PROCEDURE)
2124 {
2125 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2126 {
2127 gfc_error ("Passing internal procedure at %L by location "
2128 "not allowed", &e->where);
2129 goto cleanup;
2130 }
2131 }
2132 }
2133
2134 comp = gfc_get_proc_ptr_comp(e);
2135 if (e->expr_type == EXPR_VARIABLE
2136 && comp && comp->attr.elemental)
2137 {
2138 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2139 "allowed as an actual argument at %L", comp->name,
2140 &e->where);
2141 }
2142
2143 /* Fortran 2008, C1237. */
2144 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2145 && gfc_has_ultimate_pointer (e))
2146 {
2147 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2148 "component", &e->where);
2149 goto cleanup;
2150 }
2151
2152 first_actual_arg = false;
2153 }
2154
2155 return_value = true;
2156
2157 cleanup:
2158 actual_arg = actual_arg_sav;
2159 first_actual_arg = first_actual_arg_sav;
2160
2161 return return_value;
2162 }
2163
2164
2165 /* Do the checks of the actual argument list that are specific to elemental
2166 procedures. If called with c == NULL, we have a function, otherwise if
2167 expr == NULL, we have a subroutine. */
2168
2169 static bool
2170 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2171 {
2172 gfc_actual_arglist *arg0;
2173 gfc_actual_arglist *arg;
2174 gfc_symbol *esym = NULL;
2175 gfc_intrinsic_sym *isym = NULL;
2176 gfc_expr *e = NULL;
2177 gfc_intrinsic_arg *iformal = NULL;
2178 gfc_formal_arglist *eformal = NULL;
2179 bool formal_optional = false;
2180 bool set_by_optional = false;
2181 int i;
2182 int rank = 0;
2183
2184 /* Is this an elemental procedure? */
2185 if (expr && expr->value.function.actual != NULL)
2186 {
2187 if (expr->value.function.esym != NULL
2188 && expr->value.function.esym->attr.elemental)
2189 {
2190 arg0 = expr->value.function.actual;
2191 esym = expr->value.function.esym;
2192 }
2193 else if (expr->value.function.isym != NULL
2194 && expr->value.function.isym->elemental)
2195 {
2196 arg0 = expr->value.function.actual;
2197 isym = expr->value.function.isym;
2198 }
2199 else
2200 return true;
2201 }
2202 else if (c && c->ext.actual != NULL)
2203 {
2204 arg0 = c->ext.actual;
2205
2206 if (c->resolved_sym)
2207 esym = c->resolved_sym;
2208 else
2209 esym = c->symtree->n.sym;
2210 gcc_assert (esym);
2211
2212 if (!esym->attr.elemental)
2213 return true;
2214 }
2215 else
2216 return true;
2217
2218 /* The rank of an elemental is the rank of its array argument(s). */
2219 for (arg = arg0; arg; arg = arg->next)
2220 {
2221 if (arg->expr != NULL && arg->expr->rank != 0)
2222 {
2223 rank = arg->expr->rank;
2224 if (arg->expr->expr_type == EXPR_VARIABLE
2225 && arg->expr->symtree->n.sym->attr.optional)
2226 set_by_optional = true;
2227
2228 /* Function specific; set the result rank and shape. */
2229 if (expr)
2230 {
2231 expr->rank = rank;
2232 if (!expr->shape && arg->expr->shape)
2233 {
2234 expr->shape = gfc_get_shape (rank);
2235 for (i = 0; i < rank; i++)
2236 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2237 }
2238 }
2239 break;
2240 }
2241 }
2242
2243 /* If it is an array, it shall not be supplied as an actual argument
2244 to an elemental procedure unless an array of the same rank is supplied
2245 as an actual argument corresponding to a nonoptional dummy argument of
2246 that elemental procedure(12.4.1.5). */
2247 formal_optional = false;
2248 if (isym)
2249 iformal = isym->formal;
2250 else
2251 eformal = esym->formal;
2252
2253 for (arg = arg0; arg; arg = arg->next)
2254 {
2255 if (eformal)
2256 {
2257 if (eformal->sym && eformal->sym->attr.optional)
2258 formal_optional = true;
2259 eformal = eformal->next;
2260 }
2261 else if (isym && iformal)
2262 {
2263 if (iformal->optional)
2264 formal_optional = true;
2265 iformal = iformal->next;
2266 }
2267 else if (isym)
2268 formal_optional = true;
2269
2270 if (pedantic && arg->expr != NULL
2271 && arg->expr->expr_type == EXPR_VARIABLE
2272 && arg->expr->symtree->n.sym->attr.optional
2273 && formal_optional
2274 && arg->expr->rank
2275 && (set_by_optional || arg->expr->rank != rank)
2276 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2277 {
2278 gfc_warning (OPT_Wpedantic,
2279 "%qs at %L is an array and OPTIONAL; IF IT IS "
2280 "MISSING, it cannot be the actual argument of an "
2281 "ELEMENTAL procedure unless there is a non-optional "
2282 "argument with the same rank (12.4.1.5)",
2283 arg->expr->symtree->n.sym->name, &arg->expr->where);
2284 }
2285 }
2286
2287 for (arg = arg0; arg; arg = arg->next)
2288 {
2289 if (arg->expr == NULL || arg->expr->rank == 0)
2290 continue;
2291
2292 /* Being elemental, the last upper bound of an assumed size array
2293 argument must be present. */
2294 if (resolve_assumed_size_actual (arg->expr))
2295 return false;
2296
2297 /* Elemental procedure's array actual arguments must conform. */
2298 if (e != NULL)
2299 {
2300 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2301 return false;
2302 }
2303 else
2304 e = arg->expr;
2305 }
2306
2307 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2308 is an array, the intent inout/out variable needs to be also an array. */
2309 if (rank > 0 && esym && expr == NULL)
2310 for (eformal = esym->formal, arg = arg0; arg && eformal;
2311 arg = arg->next, eformal = eformal->next)
2312 if ((eformal->sym->attr.intent == INTENT_OUT
2313 || eformal->sym->attr.intent == INTENT_INOUT)
2314 && arg->expr && arg->expr->rank == 0)
2315 {
2316 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2317 "ELEMENTAL subroutine %qs is a scalar, but another "
2318 "actual argument is an array", &arg->expr->where,
2319 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2320 : "INOUT", eformal->sym->name, esym->name);
2321 return false;
2322 }
2323 return true;
2324 }
2325
2326
2327 /* This function does the checking of references to global procedures
2328 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2329 77 and 95 standards. It checks for a gsymbol for the name, making
2330 one if it does not already exist. If it already exists, then the
2331 reference being resolved must correspond to the type of gsymbol.
2332 Otherwise, the new symbol is equipped with the attributes of the
2333 reference. The corresponding code that is called in creating
2334 global entities is parse.c.
2335
2336 In addition, for all but -std=legacy, the gsymbols are used to
2337 check the interfaces of external procedures from the same file.
2338 The namespace of the gsymbol is resolved and then, once this is
2339 done the interface is checked. */
2340
2341
2342 static bool
2343 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2344 {
2345 if (!gsym_ns->proc_name->attr.recursive)
2346 return true;
2347
2348 if (sym->ns == gsym_ns)
2349 return false;
2350
2351 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2352 return false;
2353
2354 return true;
2355 }
2356
2357 static bool
2358 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2359 {
2360 if (gsym_ns->entries)
2361 {
2362 gfc_entry_list *entry = gsym_ns->entries;
2363
2364 for (; entry; entry = entry->next)
2365 {
2366 if (strcmp (sym->name, entry->sym->name) == 0)
2367 {
2368 if (strcmp (gsym_ns->proc_name->name,
2369 sym->ns->proc_name->name) == 0)
2370 return false;
2371
2372 if (sym->ns->parent
2373 && strcmp (gsym_ns->proc_name->name,
2374 sym->ns->parent->proc_name->name) == 0)
2375 return false;
2376 }
2377 }
2378 }
2379 return true;
2380 }
2381
2382
2383 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2384
2385 bool
2386 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2387 {
2388 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2389
2390 for ( ; arg; arg = arg->next)
2391 {
2392 if (!arg->sym)
2393 continue;
2394
2395 if (arg->sym->attr.allocatable) /* (2a) */
2396 {
2397 strncpy (errmsg, _("allocatable argument"), err_len);
2398 return true;
2399 }
2400 else if (arg->sym->attr.asynchronous)
2401 {
2402 strncpy (errmsg, _("asynchronous argument"), err_len);
2403 return true;
2404 }
2405 else if (arg->sym->attr.optional)
2406 {
2407 strncpy (errmsg, _("optional argument"), err_len);
2408 return true;
2409 }
2410 else if (arg->sym->attr.pointer)
2411 {
2412 strncpy (errmsg, _("pointer argument"), err_len);
2413 return true;
2414 }
2415 else if (arg->sym->attr.target)
2416 {
2417 strncpy (errmsg, _("target argument"), err_len);
2418 return true;
2419 }
2420 else if (arg->sym->attr.value)
2421 {
2422 strncpy (errmsg, _("value argument"), err_len);
2423 return true;
2424 }
2425 else if (arg->sym->attr.volatile_)
2426 {
2427 strncpy (errmsg, _("volatile argument"), err_len);
2428 return true;
2429 }
2430 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2431 {
2432 strncpy (errmsg, _("assumed-shape argument"), err_len);
2433 return true;
2434 }
2435 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2436 {
2437 strncpy (errmsg, _("assumed-rank argument"), err_len);
2438 return true;
2439 }
2440 else if (arg->sym->attr.codimension) /* (2c) */
2441 {
2442 strncpy (errmsg, _("coarray argument"), err_len);
2443 return true;
2444 }
2445 else if (false) /* (2d) TODO: parametrized derived type */
2446 {
2447 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2448 return true;
2449 }
2450 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2451 {
2452 strncpy (errmsg, _("polymorphic argument"), err_len);
2453 return true;
2454 }
2455 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2456 {
2457 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2458 return true;
2459 }
2460 else if (arg->sym->ts.type == BT_ASSUMED)
2461 {
2462 /* As assumed-type is unlimited polymorphic (cf. above).
2463 See also TS 29113, Note 6.1. */
2464 strncpy (errmsg, _("assumed-type argument"), err_len);
2465 return true;
2466 }
2467 }
2468
2469 if (sym->attr.function)
2470 {
2471 gfc_symbol *res = sym->result ? sym->result : sym;
2472
2473 if (res->attr.dimension) /* (3a) */
2474 {
2475 strncpy (errmsg, _("array result"), err_len);
2476 return true;
2477 }
2478 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2479 {
2480 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2481 return true;
2482 }
2483 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2484 && res->ts.u.cl->length
2485 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2486 {
2487 strncpy (errmsg, _("result with non-constant character length"), err_len);
2488 return true;
2489 }
2490 }
2491
2492 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2493 {
2494 strncpy (errmsg, _("elemental procedure"), err_len);
2495 return true;
2496 }
2497 else if (sym->attr.is_bind_c) /* (5) */
2498 {
2499 strncpy (errmsg, _("bind(c) procedure"), err_len);
2500 return true;
2501 }
2502
2503 return false;
2504 }
2505
2506
2507 static void
2508 resolve_global_procedure (gfc_symbol *sym, locus *where, int sub)
2509 {
2510 gfc_gsymbol * gsym;
2511 gfc_namespace *ns;
2512 enum gfc_symbol_type type;
2513 char reason[200];
2514
2515 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2516
2517 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name,
2518 sym->binding_label != NULL);
2519
2520 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2521 gfc_global_used (gsym, where);
2522
2523 if ((sym->attr.if_source == IFSRC_UNKNOWN
2524 || sym->attr.if_source == IFSRC_IFBODY)
2525 && gsym->type != GSYM_UNKNOWN
2526 && !gsym->binding_label
2527 && gsym->ns
2528 && gsym->ns->proc_name
2529 && not_in_recursive (sym, gsym->ns)
2530 && not_entry_self_reference (sym, gsym->ns))
2531 {
2532 gfc_symbol *def_sym;
2533 def_sym = gsym->ns->proc_name;
2534
2535 if (gsym->ns->resolved != -1)
2536 {
2537
2538 /* Resolve the gsymbol namespace if needed. */
2539 if (!gsym->ns->resolved)
2540 {
2541 gfc_symbol *old_dt_list;
2542
2543 /* Stash away derived types so that the backend_decls
2544 do not get mixed up. */
2545 old_dt_list = gfc_derived_types;
2546 gfc_derived_types = NULL;
2547
2548 gfc_resolve (gsym->ns);
2549
2550 /* Store the new derived types with the global namespace. */
2551 if (gfc_derived_types)
2552 gsym->ns->derived_types = gfc_derived_types;
2553
2554 /* Restore the derived types of this namespace. */
2555 gfc_derived_types = old_dt_list;
2556 }
2557
2558 /* Make sure that translation for the gsymbol occurs before
2559 the procedure currently being resolved. */
2560 ns = gfc_global_ns_list;
2561 for (; ns && ns != gsym->ns; ns = ns->sibling)
2562 {
2563 if (ns->sibling == gsym->ns)
2564 {
2565 ns->sibling = gsym->ns->sibling;
2566 gsym->ns->sibling = gfc_global_ns_list;
2567 gfc_global_ns_list = gsym->ns;
2568 break;
2569 }
2570 }
2571
2572 /* This can happen if a binding name has been specified. */
2573 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2574 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2575
2576 if (def_sym->attr.entry_master || def_sym->attr.entry)
2577 {
2578 gfc_entry_list *entry;
2579 for (entry = gsym->ns->entries; entry; entry = entry->next)
2580 if (strcmp (entry->sym->name, sym->name) == 0)
2581 {
2582 def_sym = entry->sym;
2583 break;
2584 }
2585 }
2586 }
2587
2588 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2589 {
2590 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2591 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2592 gfc_typename (&def_sym->ts));
2593 goto done;
2594 }
2595
2596 if (sym->attr.if_source == IFSRC_UNKNOWN
2597 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2598 {
2599 gfc_error ("Explicit interface required for %qs at %L: %s",
2600 sym->name, &sym->declared_at, reason);
2601 goto done;
2602 }
2603
2604 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU))
2605 /* Turn erros into warnings with -std=gnu and -std=legacy. */
2606 gfc_errors_to_warnings (true);
2607
2608 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2609 reason, sizeof(reason), NULL, NULL))
2610 {
2611 gfc_error_opt (0, "Interface mismatch in global procedure %qs at %L:"
2612 " %s", sym->name, &sym->declared_at, reason);
2613 goto done;
2614 }
2615 }
2616
2617 done:
2618 gfc_errors_to_warnings (false);
2619
2620 if (gsym->type == GSYM_UNKNOWN)
2621 {
2622 gsym->type = type;
2623 gsym->where = *where;
2624 }
2625
2626 gsym->used = 1;
2627 }
2628
2629
2630 /************* Function resolution *************/
2631
2632 /* Resolve a function call known to be generic.
2633 Section 14.1.2.4.1. */
2634
2635 static match
2636 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2637 {
2638 gfc_symbol *s;
2639
2640 if (sym->attr.generic)
2641 {
2642 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2643 if (s != NULL)
2644 {
2645 expr->value.function.name = s->name;
2646 expr->value.function.esym = s;
2647
2648 if (s->ts.type != BT_UNKNOWN)
2649 expr->ts = s->ts;
2650 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2651 expr->ts = s->result->ts;
2652
2653 if (s->as != NULL)
2654 expr->rank = s->as->rank;
2655 else if (s->result != NULL && s->result->as != NULL)
2656 expr->rank = s->result->as->rank;
2657
2658 gfc_set_sym_referenced (expr->value.function.esym);
2659
2660 return MATCH_YES;
2661 }
2662
2663 /* TODO: Need to search for elemental references in generic
2664 interface. */
2665 }
2666
2667 if (sym->attr.intrinsic)
2668 return gfc_intrinsic_func_interface (expr, 0);
2669
2670 return MATCH_NO;
2671 }
2672
2673
2674 static bool
2675 resolve_generic_f (gfc_expr *expr)
2676 {
2677 gfc_symbol *sym;
2678 match m;
2679 gfc_interface *intr = NULL;
2680
2681 sym = expr->symtree->n.sym;
2682
2683 for (;;)
2684 {
2685 m = resolve_generic_f0 (expr, sym);
2686 if (m == MATCH_YES)
2687 return true;
2688 else if (m == MATCH_ERROR)
2689 return false;
2690
2691 generic:
2692 if (!intr)
2693 for (intr = sym->generic; intr; intr = intr->next)
2694 if (gfc_fl_struct (intr->sym->attr.flavor))
2695 break;
2696
2697 if (sym->ns->parent == NULL)
2698 break;
2699 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2700
2701 if (sym == NULL)
2702 break;
2703 if (!generic_sym (sym))
2704 goto generic;
2705 }
2706
2707 /* Last ditch attempt. See if the reference is to an intrinsic
2708 that possesses a matching interface. 14.1.2.4 */
2709 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2710 {
2711 if (gfc_init_expr_flag)
2712 gfc_error ("Function %qs in initialization expression at %L "
2713 "must be an intrinsic function",
2714 expr->symtree->n.sym->name, &expr->where);
2715 else
2716 gfc_error ("There is no specific function for the generic %qs "
2717 "at %L", expr->symtree->n.sym->name, &expr->where);
2718 return false;
2719 }
2720
2721 if (intr)
2722 {
2723 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2724 NULL, false))
2725 return false;
2726 if (!gfc_use_derived (expr->ts.u.derived))
2727 return false;
2728 return resolve_structure_cons (expr, 0);
2729 }
2730
2731 m = gfc_intrinsic_func_interface (expr, 0);
2732 if (m == MATCH_YES)
2733 return true;
2734
2735 if (m == MATCH_NO)
2736 gfc_error ("Generic function %qs at %L is not consistent with a "
2737 "specific intrinsic interface", expr->symtree->n.sym->name,
2738 &expr->where);
2739
2740 return false;
2741 }
2742
2743
2744 /* Resolve a function call known to be specific. */
2745
2746 static match
2747 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2748 {
2749 match m;
2750
2751 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2752 {
2753 if (sym->attr.dummy)
2754 {
2755 sym->attr.proc = PROC_DUMMY;
2756 goto found;
2757 }
2758
2759 sym->attr.proc = PROC_EXTERNAL;
2760 goto found;
2761 }
2762
2763 if (sym->attr.proc == PROC_MODULE
2764 || sym->attr.proc == PROC_ST_FUNCTION
2765 || sym->attr.proc == PROC_INTERNAL)
2766 goto found;
2767
2768 if (sym->attr.intrinsic)
2769 {
2770 m = gfc_intrinsic_func_interface (expr, 1);
2771 if (m == MATCH_YES)
2772 return MATCH_YES;
2773 if (m == MATCH_NO)
2774 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2775 "with an intrinsic", sym->name, &expr->where);
2776
2777 return MATCH_ERROR;
2778 }
2779
2780 return MATCH_NO;
2781
2782 found:
2783 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2784
2785 if (sym->result)
2786 expr->ts = sym->result->ts;
2787 else
2788 expr->ts = sym->ts;
2789 expr->value.function.name = sym->name;
2790 expr->value.function.esym = sym;
2791 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2792 error(s). */
2793 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2794 return MATCH_ERROR;
2795 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2796 expr->rank = CLASS_DATA (sym)->as->rank;
2797 else if (sym->as != NULL)
2798 expr->rank = sym->as->rank;
2799
2800 return MATCH_YES;
2801 }
2802
2803
2804 static bool
2805 resolve_specific_f (gfc_expr *expr)
2806 {
2807 gfc_symbol *sym;
2808 match m;
2809
2810 sym = expr->symtree->n.sym;
2811
2812 for (;;)
2813 {
2814 m = resolve_specific_f0 (sym, expr);
2815 if (m == MATCH_YES)
2816 return true;
2817 if (m == MATCH_ERROR)
2818 return false;
2819
2820 if (sym->ns->parent == NULL)
2821 break;
2822
2823 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2824
2825 if (sym == NULL)
2826 break;
2827 }
2828
2829 gfc_error ("Unable to resolve the specific function %qs at %L",
2830 expr->symtree->n.sym->name, &expr->where);
2831
2832 return true;
2833 }
2834
2835 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2836 candidates in CANDIDATES_LEN. */
2837
2838 static void
2839 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2840 char **&candidates,
2841 size_t &candidates_len)
2842 {
2843 gfc_symtree *p;
2844
2845 if (sym == NULL)
2846 return;
2847 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2848 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2849 vec_push (candidates, candidates_len, sym->name);
2850
2851 p = sym->left;
2852 if (p)
2853 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2854
2855 p = sym->right;
2856 if (p)
2857 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2858 }
2859
2860
2861 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2862
2863 const char*
2864 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2865 {
2866 char **candidates = NULL;
2867 size_t candidates_len = 0;
2868 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2869 return gfc_closest_fuzzy_match (fn, candidates);
2870 }
2871
2872
2873 /* Resolve a procedure call not known to be generic nor specific. */
2874
2875 static bool
2876 resolve_unknown_f (gfc_expr *expr)
2877 {
2878 gfc_symbol *sym;
2879 gfc_typespec *ts;
2880
2881 sym = expr->symtree->n.sym;
2882
2883 if (sym->attr.dummy)
2884 {
2885 sym->attr.proc = PROC_DUMMY;
2886 expr->value.function.name = sym->name;
2887 goto set_type;
2888 }
2889
2890 /* See if we have an intrinsic function reference. */
2891
2892 if (gfc_is_intrinsic (sym, 0, expr->where))
2893 {
2894 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2895 return true;
2896 return false;
2897 }
2898
2899 /* The reference is to an external name. */
2900
2901 sym->attr.proc = PROC_EXTERNAL;
2902 expr->value.function.name = sym->name;
2903 expr->value.function.esym = expr->symtree->n.sym;
2904
2905 if (sym->as != NULL)
2906 expr->rank = sym->as->rank;
2907
2908 /* Type of the expression is either the type of the symbol or the
2909 default type of the symbol. */
2910
2911 set_type:
2912 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2913
2914 if (sym->ts.type != BT_UNKNOWN)
2915 expr->ts = sym->ts;
2916 else
2917 {
2918 ts = gfc_get_default_type (sym->name, sym->ns);
2919
2920 if (ts->type == BT_UNKNOWN)
2921 {
2922 const char *guessed
2923 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2924 if (guessed)
2925 gfc_error ("Function %qs at %L has no IMPLICIT type"
2926 "; did you mean %qs?",
2927 sym->name, &expr->where, guessed);
2928 else
2929 gfc_error ("Function %qs at %L has no IMPLICIT type",
2930 sym->name, &expr->where);
2931 return false;
2932 }
2933 else
2934 expr->ts = *ts;
2935 }
2936
2937 return true;
2938 }
2939
2940
2941 /* Return true, if the symbol is an external procedure. */
2942 static bool
2943 is_external_proc (gfc_symbol *sym)
2944 {
2945 if (!sym->attr.dummy && !sym->attr.contained
2946 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2947 && sym->attr.proc != PROC_ST_FUNCTION
2948 && !sym->attr.proc_pointer
2949 && !sym->attr.use_assoc
2950 && sym->name)
2951 return true;
2952
2953 return false;
2954 }
2955
2956
2957 /* Figure out if a function reference is pure or not. Also set the name
2958 of the function for a potential error message. Return nonzero if the
2959 function is PURE, zero if not. */
2960 static int
2961 pure_stmt_function (gfc_expr *, gfc_symbol *);
2962
2963 int
2964 gfc_pure_function (gfc_expr *e, const char **name)
2965 {
2966 int pure;
2967 gfc_component *comp;
2968
2969 *name = NULL;
2970
2971 if (e->symtree != NULL
2972 && e->symtree->n.sym != NULL
2973 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2974 return pure_stmt_function (e, e->symtree->n.sym);
2975
2976 comp = gfc_get_proc_ptr_comp (e);
2977 if (comp)
2978 {
2979 pure = gfc_pure (comp->ts.interface);
2980 *name = comp->name;
2981 }
2982 else if (e->value.function.esym)
2983 {
2984 pure = gfc_pure (e->value.function.esym);
2985 *name = e->value.function.esym->name;
2986 }
2987 else if (e->value.function.isym)
2988 {
2989 pure = e->value.function.isym->pure
2990 || e->value.function.isym->elemental;
2991 *name = e->value.function.isym->name;
2992 }
2993 else
2994 {
2995 /* Implicit functions are not pure. */
2996 pure = 0;
2997 *name = e->value.function.name;
2998 }
2999
3000 return pure;
3001 }
3002
3003
3004 /* Check if the expression is a reference to an implicitly pure function. */
3005
3006 int
3007 gfc_implicit_pure_function (gfc_expr *e)
3008 {
3009 gfc_component *comp = gfc_get_proc_ptr_comp (e);
3010 if (comp)
3011 return gfc_implicit_pure (comp->ts.interface);
3012 else if (e->value.function.esym)
3013 return gfc_implicit_pure (e->value.function.esym);
3014 else
3015 return 0;
3016 }
3017
3018
3019 static bool
3020 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
3021 int *f ATTRIBUTE_UNUSED)
3022 {
3023 const char *name;
3024
3025 /* Don't bother recursing into other statement functions
3026 since they will be checked individually for purity. */
3027 if (e->expr_type != EXPR_FUNCTION
3028 || !e->symtree
3029 || e->symtree->n.sym == sym
3030 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
3031 return false;
3032
3033 return gfc_pure_function (e, &name) ? false : true;
3034 }
3035
3036
3037 static int
3038 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
3039 {
3040 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
3041 }
3042
3043
3044 /* Check if an impure function is allowed in the current context. */
3045
3046 static bool check_pure_function (gfc_expr *e)
3047 {
3048 const char *name = NULL;
3049 if (!gfc_pure_function (e, &name) && name)
3050 {
3051 if (forall_flag)
3052 {
3053 gfc_error ("Reference to impure function %qs at %L inside a "
3054 "FORALL %s", name, &e->where,
3055 forall_flag == 2 ? "mask" : "block");
3056 return false;
3057 }
3058 else if (gfc_do_concurrent_flag)
3059 {
3060 gfc_error ("Reference to impure function %qs at %L inside a "
3061 "DO CONCURRENT %s", name, &e->where,
3062 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3063 return false;
3064 }
3065 else if (gfc_pure (NULL))
3066 {
3067 gfc_error ("Reference to impure function %qs at %L "
3068 "within a PURE procedure", name, &e->where);
3069 return false;
3070 }
3071 if (!gfc_implicit_pure_function (e))
3072 gfc_unset_implicit_pure (NULL);
3073 }
3074 return true;
3075 }
3076
3077
3078 /* Update current procedure's array_outer_dependency flag, considering
3079 a call to procedure SYM. */
3080
3081 static void
3082 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3083 {
3084 /* Check to see if this is a sibling function that has not yet
3085 been resolved. */
3086 gfc_namespace *sibling = gfc_current_ns->sibling;
3087 for (; sibling; sibling = sibling->sibling)
3088 {
3089 if (sibling->proc_name == sym)
3090 {
3091 gfc_resolve (sibling);
3092 break;
3093 }
3094 }
3095
3096 /* If SYM has references to outer arrays, so has the procedure calling
3097 SYM. If SYM is a procedure pointer, we can assume the worst. */
3098 if ((sym->attr.array_outer_dependency || sym->attr.proc_pointer)
3099 && gfc_current_ns->proc_name)
3100 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3101 }
3102
3103
3104 /* Resolve a function call, which means resolving the arguments, then figuring
3105 out which entity the name refers to. */
3106
3107 static bool
3108 resolve_function (gfc_expr *expr)
3109 {
3110 gfc_actual_arglist *arg;
3111 gfc_symbol *sym;
3112 bool t;
3113 int temp;
3114 procedure_type p = PROC_INTRINSIC;
3115 bool no_formal_args;
3116
3117 sym = NULL;
3118 if (expr->symtree)
3119 sym = expr->symtree->n.sym;
3120
3121 /* If this is a procedure pointer component, it has already been resolved. */
3122 if (gfc_is_proc_ptr_comp (expr))
3123 return true;
3124
3125 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3126 another caf_get. */
3127 if (sym && sym->attr.intrinsic
3128 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3129 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3130 return true;
3131
3132 if (sym && sym->attr.intrinsic
3133 && !gfc_resolve_intrinsic (sym, &expr->where))
3134 return false;
3135
3136 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3137 {
3138 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3139 return false;
3140 }
3141
3142 /* If this is a deferred TBP with an abstract interface (which may
3143 of course be referenced), expr->value.function.esym will be set. */
3144 if (sym && sym->attr.abstract && !expr->value.function.esym)
3145 {
3146 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3147 sym->name, &expr->where);
3148 return false;
3149 }
3150
3151 /* If this is a deferred TBP with an abstract interface, its result
3152 cannot be an assumed length character (F2003: C418). */
3153 if (sym && sym->attr.abstract && sym->attr.function
3154 && sym->result->ts.u.cl
3155 && sym->result->ts.u.cl->length == NULL
3156 && !sym->result->ts.deferred)
3157 {
3158 gfc_error ("ABSTRACT INTERFACE %qs at %L must not have an assumed "
3159 "character length result (F2008: C418)", sym->name,
3160 &sym->declared_at);
3161 return false;
3162 }
3163
3164 /* Switch off assumed size checking and do this again for certain kinds
3165 of procedure, once the procedure itself is resolved. */
3166 need_full_assumed_size++;
3167
3168 if (expr->symtree && expr->symtree->n.sym)
3169 p = expr->symtree->n.sym->attr.proc;
3170
3171 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3172 inquiry_argument = true;
3173 no_formal_args = sym && is_external_proc (sym)
3174 && gfc_sym_get_dummy_args (sym) == NULL;
3175
3176 if (!resolve_actual_arglist (expr->value.function.actual,
3177 p, no_formal_args))
3178 {
3179 inquiry_argument = false;
3180 return false;
3181 }
3182
3183 inquiry_argument = false;
3184
3185 /* Resume assumed_size checking. */
3186 need_full_assumed_size--;
3187
3188 /* If the procedure is external, check for usage. */
3189 if (sym && is_external_proc (sym))
3190 resolve_global_procedure (sym, &expr->where, 0);
3191
3192 if (sym && sym->ts.type == BT_CHARACTER
3193 && sym->ts.u.cl
3194 && sym->ts.u.cl->length == NULL
3195 && !sym->attr.dummy
3196 && !sym->ts.deferred
3197 && expr->value.function.esym == NULL
3198 && !sym->attr.contained)
3199 {
3200 /* Internal procedures are taken care of in resolve_contained_fntype. */
3201 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3202 "be used at %L since it is not a dummy argument",
3203 sym->name, &expr->where);
3204 return false;
3205 }
3206
3207 /* See if function is already resolved. */
3208
3209 if (expr->value.function.name != NULL
3210 || expr->value.function.isym != NULL)
3211 {
3212 if (expr->ts.type == BT_UNKNOWN)
3213 expr->ts = sym->ts;
3214 t = true;
3215 }
3216 else
3217 {
3218 /* Apply the rules of section 14.1.2. */
3219
3220 switch (procedure_kind (sym))
3221 {
3222 case PTYPE_GENERIC:
3223 t = resolve_generic_f (expr);
3224 break;
3225
3226 case PTYPE_SPECIFIC:
3227 t = resolve_specific_f (expr);
3228 break;
3229
3230 case PTYPE_UNKNOWN:
3231 t = resolve_unknown_f (expr);
3232 break;
3233
3234 default:
3235 gfc_internal_error ("resolve_function(): bad function type");
3236 }
3237 }
3238
3239 /* If the expression is still a function (it might have simplified),
3240 then we check to see if we are calling an elemental function. */
3241
3242 if (expr->expr_type != EXPR_FUNCTION)
3243 return t;
3244
3245 /* Walk the argument list looking for invalid BOZ. */
3246 for (arg = expr->value.function.actual; arg; arg = arg->next)
3247 if (arg->expr && arg->expr->ts.type == BT_BOZ)
3248 {
3249 gfc_error ("A BOZ literal constant at %L cannot appear as an "
3250 "actual argument in a function reference",
3251 &arg->expr->where);
3252 return false;
3253 }
3254
3255 temp = need_full_assumed_size;
3256 need_full_assumed_size = 0;
3257
3258 if (!resolve_elemental_actual (expr, NULL))
3259 return false;
3260
3261 if (omp_workshare_flag
3262 && expr->value.function.esym
3263 && ! gfc_elemental (expr->value.function.esym))
3264 {
3265 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3266 "in WORKSHARE construct", expr->value.function.esym->name,
3267 &expr->where);
3268 t = false;
3269 }
3270
3271 #define GENERIC_ID expr->value.function.isym->id
3272 else if (expr->value.function.actual != NULL
3273 && expr->value.function.isym != NULL
3274 && GENERIC_ID != GFC_ISYM_LBOUND
3275 && GENERIC_ID != GFC_ISYM_LCOBOUND
3276 && GENERIC_ID != GFC_ISYM_UCOBOUND
3277 && GENERIC_ID != GFC_ISYM_LEN
3278 && GENERIC_ID != GFC_ISYM_LOC
3279 && GENERIC_ID != GFC_ISYM_C_LOC
3280 && GENERIC_ID != GFC_ISYM_PRESENT)
3281 {
3282 /* Array intrinsics must also have the last upper bound of an
3283 assumed size array argument. UBOUND and SIZE have to be
3284 excluded from the check if the second argument is anything
3285 than a constant. */
3286
3287 for (arg = expr->value.function.actual; arg; arg = arg->next)
3288 {
3289 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3290 && arg == expr->value.function.actual
3291 && arg->next != NULL && arg->next->expr)
3292 {
3293 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3294 break;
3295
3296 if (arg->next->name && strcmp (arg->next->name, "kind") == 0)
3297 break;
3298
3299 if ((int)mpz_get_si (arg->next->expr->value.integer)
3300 < arg->expr->rank)
3301 break;
3302 }
3303
3304 if (arg->expr != NULL
3305 && arg->expr->rank > 0
3306 && resolve_assumed_size_actual (arg->expr))
3307 return false;
3308 }
3309 }
3310 #undef GENERIC_ID
3311
3312 need_full_assumed_size = temp;
3313
3314 if (!check_pure_function(expr))
3315 t = false;
3316
3317 /* Functions without the RECURSIVE attribution are not allowed to
3318 * call themselves. */
3319 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3320 {
3321 gfc_symbol *esym;
3322 esym = expr->value.function.esym;
3323
3324 if (is_illegal_recursion (esym, gfc_current_ns))
3325 {
3326 if (esym->attr.entry && esym->ns->entries)
3327 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3328 " function %qs is not RECURSIVE",
3329 esym->name, &expr->where, esym->ns->entries->sym->name);
3330 else
3331 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3332 " is not RECURSIVE", esym->name, &expr->where);
3333
3334 t = false;
3335 }
3336 }
3337
3338 /* Character lengths of use associated functions may contains references to
3339 symbols not referenced from the current program unit otherwise. Make sure
3340 those symbols are marked as referenced. */
3341
3342 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3343 && expr->value.function.esym->attr.use_assoc)
3344 {
3345 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3346 }
3347
3348 /* Make sure that the expression has a typespec that works. */
3349 if (expr->ts.type == BT_UNKNOWN)
3350 {
3351 if (expr->symtree->n.sym->result
3352 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3353 && !expr->symtree->n.sym->result->attr.proc_pointer)
3354 expr->ts = expr->symtree->n.sym->result->ts;
3355 }
3356
3357 if (!expr->ref && !expr->value.function.isym)
3358 {
3359 if (expr->value.function.esym)
3360 update_current_proc_array_outer_dependency (expr->value.function.esym);
3361 else
3362 update_current_proc_array_outer_dependency (sym);
3363 }
3364 else if (expr->ref)
3365 /* typebound procedure: Assume the worst. */
3366 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3367
3368 return t;
3369 }
3370
3371
3372 /************* Subroutine resolution *************/
3373
3374 static bool
3375 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3376 {
3377 if (gfc_pure (sym))
3378 return true;
3379
3380 if (forall_flag)
3381 {
3382 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3383 name, loc);
3384 return false;
3385 }
3386 else if (gfc_do_concurrent_flag)
3387 {
3388 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3389 "PURE", name, loc);
3390 return false;
3391 }
3392 else if (gfc_pure (NULL))
3393 {
3394 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3395 return false;
3396 }
3397
3398 gfc_unset_implicit_pure (NULL);
3399 return true;
3400 }
3401
3402
3403 static match
3404 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3405 {
3406 gfc_symbol *s;
3407
3408 if (sym->attr.generic)
3409 {
3410 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3411 if (s != NULL)
3412 {
3413 c->resolved_sym = s;
3414 if (!pure_subroutine (s, s->name, &c->loc))
3415 return MATCH_ERROR;
3416 return MATCH_YES;
3417 }
3418
3419 /* TODO: Need to search for elemental references in generic interface. */
3420 }
3421
3422 if (sym->attr.intrinsic)
3423 return gfc_intrinsic_sub_interface (c, 0);
3424
3425 return MATCH_NO;
3426 }
3427
3428
3429 static bool
3430 resolve_generic_s (gfc_code *c)
3431 {
3432 gfc_symbol *sym;
3433 match m;
3434
3435 sym = c->symtree->n.sym;
3436
3437 for (;;)
3438 {
3439 m = resolve_generic_s0 (c, sym);
3440 if (m == MATCH_YES)
3441 return true;
3442 else if (m == MATCH_ERROR)
3443 return false;
3444
3445 generic:
3446 if (sym->ns->parent == NULL)
3447 break;
3448 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3449
3450 if (sym == NULL)
3451 break;
3452 if (!generic_sym (sym))
3453 goto generic;
3454 }
3455
3456 /* Last ditch attempt. See if the reference is to an intrinsic
3457 that possesses a matching interface. 14.1.2.4 */
3458 sym = c->symtree->n.sym;
3459
3460 if (!gfc_is_intrinsic (sym, 1, c->loc))
3461 {
3462 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3463 sym->name, &c->loc);
3464 return false;
3465 }
3466
3467 m = gfc_intrinsic_sub_interface (c, 0);
3468 if (m == MATCH_YES)
3469 return true;
3470 if (m == MATCH_NO)
3471 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3472 "intrinsic subroutine interface", sym->name, &c->loc);
3473
3474 return false;
3475 }
3476
3477
3478 /* Resolve a subroutine call known to be specific. */
3479
3480 static match
3481 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3482 {
3483 match m;
3484
3485 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3486 {
3487 if (sym->attr.dummy)
3488 {
3489 sym->attr.proc = PROC_DUMMY;
3490 goto found;
3491 }
3492
3493 sym->attr.proc = PROC_EXTERNAL;
3494 goto found;
3495 }
3496
3497 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3498 goto found;
3499
3500 if (sym->attr.intrinsic)
3501 {
3502 m = gfc_intrinsic_sub_interface (c, 1);
3503 if (m == MATCH_YES)
3504 return MATCH_YES;
3505 if (m == MATCH_NO)
3506 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3507 "with an intrinsic", sym->name, &c->loc);
3508
3509 return MATCH_ERROR;
3510 }
3511
3512 return MATCH_NO;
3513
3514 found:
3515 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3516
3517 c->resolved_sym = sym;
3518 if (!pure_subroutine (sym, sym->name, &c->loc))
3519 return MATCH_ERROR;
3520
3521 return MATCH_YES;
3522 }
3523
3524
3525 static bool
3526 resolve_specific_s (gfc_code *c)
3527 {
3528 gfc_symbol *sym;
3529 match m;
3530
3531 sym = c->symtree->n.sym;
3532
3533 for (;;)
3534 {
3535 m = resolve_specific_s0 (c, sym);
3536 if (m == MATCH_YES)
3537 return true;
3538 if (m == MATCH_ERROR)
3539 return false;
3540
3541 if (sym->ns->parent == NULL)
3542 break;
3543
3544 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3545
3546 if (sym == NULL)
3547 break;
3548 }
3549
3550 sym = c->symtree->n.sym;
3551 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3552 sym->name, &c->loc);
3553
3554 return false;
3555 }
3556
3557
3558 /* Resolve a subroutine call not known to be generic nor specific. */
3559
3560 static bool
3561 resolve_unknown_s (gfc_code *c)
3562 {
3563 gfc_symbol *sym;
3564
3565 sym = c->symtree->n.sym;
3566
3567 if (sym->attr.dummy)
3568 {
3569 sym->attr.proc = PROC_DUMMY;
3570 goto found;
3571 }
3572
3573 /* See if we have an intrinsic function reference. */
3574
3575 if (gfc_is_intrinsic (sym, 1, c->loc))
3576 {
3577 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3578 return true;
3579 return false;
3580 }
3581
3582 /* The reference is to an external name. */
3583
3584 found:
3585 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3586
3587 c->resolved_sym = sym;
3588
3589 return pure_subroutine (sym, sym->name, &c->loc);
3590 }
3591
3592
3593 /* Resolve a subroutine call. Although it was tempting to use the same code
3594 for functions, subroutines and functions are stored differently and this
3595 makes things awkward. */
3596
3597 static bool
3598 resolve_call (gfc_code *c)
3599 {
3600 bool t;
3601 procedure_type ptype = PROC_INTRINSIC;
3602 gfc_symbol *csym, *sym;
3603 bool no_formal_args;
3604
3605 csym = c->symtree ? c->symtree->n.sym : NULL;
3606
3607 if (csym && csym->ts.type != BT_UNKNOWN)
3608 {
3609 gfc_error ("%qs at %L has a type, which is not consistent with "
3610 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3611 return false;
3612 }
3613
3614 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3615 {
3616 gfc_symtree *st;
3617 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3618 sym = st ? st->n.sym : NULL;
3619 if (sym && csym != sym
3620 && sym->ns == gfc_current_ns
3621 && sym->attr.flavor == FL_PROCEDURE
3622 && sym->attr.contained)
3623 {
3624 sym->refs++;
3625 if (csym->attr.generic)
3626 c->symtree->n.sym = sym;
3627 else
3628 c->symtree = st;
3629 csym = c->symtree->n.sym;
3630 }
3631 }
3632
3633 /* If this ia a deferred TBP, c->expr1 will be set. */
3634 if (!c->expr1 && csym)
3635 {
3636 if (csym->attr.abstract)
3637 {
3638 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3639 csym->name, &c->loc);
3640 return false;
3641 }
3642
3643 /* Subroutines without the RECURSIVE attribution are not allowed to
3644 call themselves. */
3645 if (is_illegal_recursion (csym, gfc_current_ns))
3646 {
3647 if (csym->attr.entry && csym->ns->entries)
3648 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3649 "as subroutine %qs is not RECURSIVE",
3650 csym->name, &c->loc, csym->ns->entries->sym->name);
3651 else
3652 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3653 "as it is not RECURSIVE", csym->name, &c->loc);
3654
3655 t = false;
3656 }
3657 }
3658
3659 /* Switch off assumed size checking and do this again for certain kinds
3660 of procedure, once the procedure itself is resolved. */
3661 need_full_assumed_size++;
3662
3663 if (csym)
3664 ptype = csym->attr.proc;
3665
3666 no_formal_args = csym && is_external_proc (csym)
3667 && gfc_sym_get_dummy_args (csym) == NULL;
3668 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3669 return false;
3670
3671 /* Resume assumed_size checking. */
3672 need_full_assumed_size--;
3673
3674 /* If external, check for usage. */
3675 if (csym && is_external_proc (csym))
3676 resolve_global_procedure (csym, &c->loc, 1);
3677
3678 t = true;
3679 if (c->resolved_sym == NULL)
3680 {
3681 c->resolved_isym = NULL;
3682 switch (procedure_kind (csym))
3683 {
3684 case PTYPE_GENERIC:
3685 t = resolve_generic_s (c);
3686 break;
3687
3688 case PTYPE_SPECIFIC:
3689 t = resolve_specific_s (c);
3690 break;
3691
3692 case PTYPE_UNKNOWN:
3693 t = resolve_unknown_s (c);
3694 break;
3695
3696 default:
3697 gfc_internal_error ("resolve_subroutine(): bad function type");
3698 }
3699 }
3700
3701 /* Some checks of elemental subroutine actual arguments. */
3702 if (!resolve_elemental_actual (NULL, c))
3703 return false;
3704
3705 if (!c->expr1)
3706 update_current_proc_array_outer_dependency (csym);
3707 else
3708 /* Typebound procedure: Assume the worst. */
3709 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3710
3711 return t;
3712 }
3713
3714
3715 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3716 op1->shape and op2->shape are non-NULL return true if their shapes
3717 match. If both op1->shape and op2->shape are non-NULL return false
3718 if their shapes do not match. If either op1->shape or op2->shape is
3719 NULL, return true. */
3720
3721 static bool
3722 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3723 {
3724 bool t;
3725 int i;
3726
3727 t = true;
3728
3729 if (op1->shape != NULL && op2->shape != NULL)
3730 {
3731 for (i = 0; i < op1->rank; i++)
3732 {
3733 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3734 {
3735 gfc_error ("Shapes for operands at %L and %L are not conformable",
3736 &op1->where, &op2->where);
3737 t = false;
3738 break;
3739 }
3740 }
3741 }
3742
3743 return t;
3744 }
3745
3746 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3747 For example A .AND. B becomes IAND(A, B). */
3748 static gfc_expr *
3749 logical_to_bitwise (gfc_expr *e)
3750 {
3751 gfc_expr *tmp, *op1, *op2;
3752 gfc_isym_id isym;
3753 gfc_actual_arglist *args = NULL;
3754
3755 gcc_assert (e->expr_type == EXPR_OP);
3756
3757 isym = GFC_ISYM_NONE;
3758 op1 = e->value.op.op1;
3759 op2 = e->value.op.op2;
3760
3761 switch (e->value.op.op)
3762 {
3763 case INTRINSIC_NOT:
3764 isym = GFC_ISYM_NOT;
3765 break;
3766 case INTRINSIC_AND:
3767 isym = GFC_ISYM_IAND;
3768 break;
3769 case INTRINSIC_OR:
3770 isym = GFC_ISYM_IOR;
3771 break;
3772 case INTRINSIC_NEQV:
3773 isym = GFC_ISYM_IEOR;
3774 break;
3775 case INTRINSIC_EQV:
3776 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3777 Change the old expression to NEQV, which will get replaced by IEOR,
3778 and wrap it in NOT. */
3779 tmp = gfc_copy_expr (e);
3780 tmp->value.op.op = INTRINSIC_NEQV;
3781 tmp = logical_to_bitwise (tmp);
3782 isym = GFC_ISYM_NOT;
3783 op1 = tmp;
3784 op2 = NULL;
3785 break;
3786 default:
3787 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3788 }
3789
3790 /* Inherit the original operation's operands as arguments. */
3791 args = gfc_get_actual_arglist ();
3792 args->expr = op1;
3793 if (op2)
3794 {
3795 args->next = gfc_get_actual_arglist ();
3796 args->next->expr = op2;
3797 }
3798
3799 /* Convert the expression to a function call. */
3800 e->expr_type = EXPR_FUNCTION;
3801 e->value.function.actual = args;
3802 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3803 e->value.function.name = e->value.function.isym->name;
3804 e->value.function.esym = NULL;
3805
3806 /* Make up a pre-resolved function call symtree if we need to. */
3807 if (!e->symtree || !e->symtree->n.sym)
3808 {
3809 gfc_symbol *sym;
3810 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3811 sym = e->symtree->n.sym;
3812 sym->result = sym;
3813 sym->attr.flavor = FL_PROCEDURE;
3814 sym->attr.function = 1;
3815 sym->attr.elemental = 1;
3816 sym->attr.pure = 1;
3817 sym->attr.referenced = 1;
3818 gfc_intrinsic_symbol (sym);
3819 gfc_commit_symbol (sym);
3820 }
3821
3822 args->name = e->value.function.isym->formal->name;
3823 if (e->value.function.isym->formal->next)
3824 args->next->name = e->value.function.isym->formal->next->name;
3825
3826 return e;
3827 }
3828
3829 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3830 candidates in CANDIDATES_LEN. */
3831 static void
3832 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3833 char **&candidates,
3834 size_t &candidates_len)
3835 {
3836 gfc_symtree *p;
3837
3838 if (uop == NULL)
3839 return;
3840
3841 /* Not sure how to properly filter here. Use all for a start.
3842 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3843 these as i suppose they don't make terribly sense. */
3844
3845 if (uop->n.uop->op != NULL)
3846 vec_push (candidates, candidates_len, uop->name);
3847
3848 p = uop->left;
3849 if (p)
3850 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3851
3852 p = uop->right;
3853 if (p)
3854 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3855 }
3856
3857 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3858
3859 static const char*
3860 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3861 {
3862 char **candidates = NULL;
3863 size_t candidates_len = 0;
3864 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3865 return gfc_closest_fuzzy_match (op, candidates);
3866 }
3867
3868
3869 /* Callback finding an impure function as an operand to an .and. or
3870 .or. expression. Remember the last function warned about to
3871 avoid double warnings when recursing. */
3872
3873 static int
3874 impure_function_callback (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED,
3875 void *data)
3876 {
3877 gfc_expr *f = *e;
3878 const char *name;
3879 static gfc_expr *last = NULL;
3880 bool *found = (bool *) data;
3881
3882 if (f->expr_type == EXPR_FUNCTION)
3883 {
3884 *found = 1;
3885 if (f != last && !gfc_pure_function (f, &name)
3886 && !gfc_implicit_pure_function (f))
3887 {
3888 if (name)
3889 gfc_warning (OPT_Wfunction_elimination,
3890 "Impure function %qs at %L might not be evaluated",
3891 name, &f->where);
3892 else
3893 gfc_warning (OPT_Wfunction_elimination,
3894 "Impure function at %L might not be evaluated",
3895 &f->where);
3896 }
3897 last = f;
3898 }
3899
3900 return 0;
3901 }
3902
3903 /* Return true if TYPE is character based, false otherwise. */
3904
3905 static int
3906 is_character_based (bt type)
3907 {
3908 return type == BT_CHARACTER || type == BT_HOLLERITH;
3909 }
3910
3911
3912 /* If expression is a hollerith, convert it to character and issue a warning
3913 for the conversion. */
3914
3915 static void
3916 convert_hollerith_to_character (gfc_expr *e)
3917 {
3918 if (e->ts.type == BT_HOLLERITH)
3919 {
3920 gfc_typespec t;
3921 gfc_clear_ts (&t);
3922 t.type = BT_CHARACTER;
3923 t.kind = e->ts.kind;
3924 gfc_convert_type_warn (e, &t, 2, 1);
3925 }
3926 }
3927
3928 /* Convert to numeric and issue a warning for the conversion. */
3929
3930 static void
3931 convert_to_numeric (gfc_expr *a, gfc_expr *b)
3932 {
3933 gfc_typespec t;
3934 gfc_clear_ts (&t);
3935 t.type = b->ts.type;
3936 t.kind = b->ts.kind;
3937 gfc_convert_type_warn (a, &t, 2, 1);
3938 }
3939
3940 /* Resolve an operator expression node. This can involve replacing the
3941 operation with a user defined function call. */
3942
3943 static bool
3944 resolve_operator (gfc_expr *e)
3945 {
3946 gfc_expr *op1, *op2;
3947 char msg[200];
3948 bool dual_locus_error;
3949 bool t = true;
3950
3951 /* Resolve all subnodes-- give them types. */
3952
3953 switch (e->value.op.op)
3954 {
3955 default:
3956 if (!gfc_resolve_expr (e->value.op.op2))
3957 return false;
3958
3959 /* Fall through. */
3960
3961 case INTRINSIC_NOT:
3962 case INTRINSIC_UPLUS:
3963 case INTRINSIC_UMINUS:
3964 case INTRINSIC_PARENTHESES:
3965 if (!gfc_resolve_expr (e->value.op.op1))
3966 return false;
3967 if (e->value.op.op1
3968 && e->value.op.op1->ts.type == BT_BOZ && !e->value.op.op2)
3969 {
3970 gfc_error ("BOZ literal constant at %L cannot be an operand of "
3971 "unary operator %qs", &e->value.op.op1->where,
3972 gfc_op2string (e->value.op.op));
3973 return false;
3974 }
3975 break;
3976 }
3977
3978 /* Typecheck the new node. */
3979
3980 op1 = e->value.op.op1;
3981 op2 = e->value.op.op2;
3982 dual_locus_error = false;
3983
3984 /* op1 and op2 cannot both be BOZ. */
3985 if (op1 && op1->ts.type == BT_BOZ
3986 && op2 && op2->ts.type == BT_BOZ)
3987 {
3988 gfc_error ("Operands at %L and %L cannot appear as operands of "
3989 "binary operator %qs", &op1->where, &op2->where,
3990 gfc_op2string (e->value.op.op));
3991 return false;
3992 }
3993
3994 if ((op1 && op1->expr_type == EXPR_NULL)
3995 || (op2 && op2->expr_type == EXPR_NULL))
3996 {
3997 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
3998 goto bad_op;
3999 }
4000
4001 switch (e->value.op.op)
4002 {
4003 case INTRINSIC_UPLUS:
4004 case INTRINSIC_UMINUS:
4005 if (op1->ts.type == BT_INTEGER
4006 || op1->ts.type == BT_REAL
4007 || op1->ts.type == BT_COMPLEX)
4008 {
4009 e->ts = op1->ts;
4010 break;
4011 }
4012
4013 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
4014 gfc_op2string (e->value.op.op), gfc_typename (e));
4015 goto bad_op;
4016
4017 case INTRINSIC_PLUS:
4018 case INTRINSIC_MINUS:
4019 case INTRINSIC_TIMES:
4020 case INTRINSIC_DIVIDE:
4021 case INTRINSIC_POWER:
4022 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4023 {
4024 gfc_type_convert_binary (e, 1);
4025 break;
4026 }
4027
4028 if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
4029 sprintf (msg,
4030 _("Unexpected derived-type entities in binary intrinsic "
4031 "numeric operator %%<%s%%> at %%L"),
4032 gfc_op2string (e->value.op.op));
4033 else
4034 sprintf (msg,
4035 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
4036 gfc_op2string (e->value.op.op), gfc_typename (op1),
4037 gfc_typename (op2));
4038 goto bad_op;
4039
4040 case INTRINSIC_CONCAT:
4041 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4042 && op1->ts.kind == op2->ts.kind)
4043 {
4044 e->ts.type = BT_CHARACTER;
4045 e->ts.kind = op1->ts.kind;
4046 break;
4047 }
4048
4049 sprintf (msg,
4050 _("Operands of string concatenation operator at %%L are %s/%s"),
4051 gfc_typename (op1), gfc_typename (op2));
4052 goto bad_op;
4053
4054 case INTRINSIC_AND:
4055 case INTRINSIC_OR:
4056 case INTRINSIC_EQV:
4057 case INTRINSIC_NEQV:
4058 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4059 {
4060 e->ts.type = BT_LOGICAL;
4061 e->ts.kind = gfc_kind_max (op1, op2);
4062 if (op1->ts.kind < e->ts.kind)
4063 gfc_convert_type (op1, &e->ts, 2);
4064 else if (op2->ts.kind < e->ts.kind)
4065 gfc_convert_type (op2, &e->ts, 2);
4066
4067 if (flag_frontend_optimize &&
4068 (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
4069 {
4070 /* Warn about short-circuiting
4071 with impure function as second operand. */
4072 bool op2_f = false;
4073 gfc_expr_walker (&op2, impure_function_callback, &op2_f);
4074 }
4075 break;
4076 }
4077
4078 /* Logical ops on integers become bitwise ops with -fdec. */
4079 else if (flag_dec
4080 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
4081 {
4082 e->ts.type = BT_INTEGER;
4083 e->ts.kind = gfc_kind_max (op1, op2);
4084 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
4085 gfc_convert_type (op1, &e->ts, 1);
4086 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
4087 gfc_convert_type (op2, &e->ts, 1);
4088 e = logical_to_bitwise (e);
4089 goto simplify_op;
4090 }
4091
4092 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
4093 gfc_op2string (e->value.op.op), gfc_typename (op1),
4094 gfc_typename (op2));
4095
4096 goto bad_op;
4097
4098 case INTRINSIC_NOT:
4099 /* Logical ops on integers become bitwise ops with -fdec. */
4100 if (flag_dec && op1->ts.type == BT_INTEGER)
4101 {
4102 e->ts.type = BT_INTEGER;
4103 e->ts.kind = op1->ts.kind;
4104 e = logical_to_bitwise (e);
4105 goto simplify_op;
4106 }
4107
4108 if (op1->ts.type == BT_LOGICAL)
4109 {
4110 e->ts.type = BT_LOGICAL;
4111 e->ts.kind = op1->ts.kind;
4112 break;
4113 }
4114
4115 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
4116 gfc_typename (op1));
4117 goto bad_op;
4118
4119 case INTRINSIC_GT:
4120 case INTRINSIC_GT_OS:
4121 case INTRINSIC_GE:
4122 case INTRINSIC_GE_OS:
4123 case INTRINSIC_LT:
4124 case INTRINSIC_LT_OS:
4125 case INTRINSIC_LE:
4126 case INTRINSIC_LE_OS:
4127 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
4128 {
4129 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
4130 goto bad_op;
4131 }
4132
4133 /* Fall through. */
4134
4135 case INTRINSIC_EQ:
4136 case INTRINSIC_EQ_OS:
4137 case INTRINSIC_NE:
4138 case INTRINSIC_NE_OS:
4139
4140 if (flag_dec
4141 && is_character_based (op1->ts.type)
4142 && is_character_based (op2->ts.type))
4143 {
4144 convert_hollerith_to_character (op1);
4145 convert_hollerith_to_character (op2);
4146 }
4147
4148 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4149 && op1->ts.kind == op2->ts.kind)
4150 {
4151 e->ts.type = BT_LOGICAL;
4152 e->ts.kind = gfc_default_logical_kind;
4153 break;
4154 }
4155
4156 /* If op1 is BOZ, then op2 is not!. Try to convert to type of op2. */
4157 if (op1->ts.type == BT_BOZ)
4158 {
4159 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4160 "an operand of a relational operator",
4161 &op1->where))
4162 return false;
4163
4164 if (op2->ts.type == BT_INTEGER && !gfc_boz2int (op1, op2->ts.kind))
4165 return false;
4166
4167 if (op2->ts.type == BT_REAL && !gfc_boz2real (op1, op2->ts.kind))
4168 return false;
4169 }
4170
4171 /* If op2 is BOZ, then op1 is not!. Try to convert to type of op2. */
4172 if (op2->ts.type == BT_BOZ)
4173 {
4174 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4175 "an operand of a relational operator",
4176 &op2->where))
4177 return false;
4178
4179 if (op1->ts.type == BT_INTEGER && !gfc_boz2int (op2, op1->ts.kind))
4180 return false;
4181
4182 if (op1->ts.type == BT_REAL && !gfc_boz2real (op2, op1->ts.kind))
4183 return false;
4184 }
4185 if (flag_dec
4186 && op1->ts.type == BT_HOLLERITH && gfc_numeric_ts (&op2->ts))
4187 convert_to_numeric (op1, op2);
4188
4189 if (flag_dec
4190 && gfc_numeric_ts (&op1->ts) && op2->ts.type == BT_HOLLERITH)
4191 convert_to_numeric (op2, op1);
4192
4193 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4194 {
4195 gfc_type_convert_binary (e, 1);
4196
4197 e->ts.type = BT_LOGICAL;
4198 e->ts.kind = gfc_default_logical_kind;
4199
4200 if (warn_compare_reals)
4201 {
4202 gfc_intrinsic_op op = e->value.op.op;
4203
4204 /* Type conversion has made sure that the types of op1 and op2
4205 agree, so it is only necessary to check the first one. */
4206 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
4207 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
4208 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
4209 {
4210 const char *msg;
4211
4212 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4213 msg = "Equality comparison for %s at %L";
4214 else
4215 msg = "Inequality comparison for %s at %L";
4216
4217 gfc_warning (OPT_Wcompare_reals, msg,
4218 gfc_typename (op1), &op1->where);
4219 }
4220 }
4221
4222 break;
4223 }
4224
4225 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4226 sprintf (msg,
4227 _("Logicals at %%L must be compared with %s instead of %s"),
4228 (e->value.op.op == INTRINSIC_EQ
4229 || e->value.op.op == INTRINSIC_EQ_OS)
4230 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4231 else
4232 sprintf (msg,
4233 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4234 gfc_op2string (e->value.op.op), gfc_typename (op1),
4235 gfc_typename (op2));
4236
4237 goto bad_op;
4238
4239 case INTRINSIC_USER:
4240 if (e->value.op.uop->op == NULL)
4241 {
4242 const char *name = e->value.op.uop->name;
4243 const char *guessed;
4244 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4245 if (guessed)
4246 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4247 name, guessed);
4248 else
4249 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4250 }
4251 else if (op2 == NULL)
4252 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4253 e->value.op.uop->name, gfc_typename (op1));
4254 else
4255 {
4256 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4257 e->value.op.uop->name, gfc_typename (op1),
4258 gfc_typename (op2));
4259 e->value.op.uop->op->sym->attr.referenced = 1;
4260 }
4261
4262 goto bad_op;
4263
4264 case INTRINSIC_PARENTHESES:
4265 e->ts = op1->ts;
4266 if (e->ts.type == BT_CHARACTER)
4267 e->ts.u.cl = op1->ts.u.cl;
4268 break;
4269
4270 default:
4271 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4272 }
4273
4274 /* Deal with arrayness of an operand through an operator. */
4275
4276 switch (e->value.op.op)
4277 {
4278 case INTRINSIC_PLUS:
4279 case INTRINSIC_MINUS:
4280 case INTRINSIC_TIMES:
4281 case INTRINSIC_DIVIDE:
4282 case INTRINSIC_POWER:
4283 case INTRINSIC_CONCAT:
4284 case INTRINSIC_AND:
4285 case INTRINSIC_OR:
4286 case INTRINSIC_EQV:
4287 case INTRINSIC_NEQV:
4288 case INTRINSIC_EQ:
4289 case INTRINSIC_EQ_OS:
4290 case INTRINSIC_NE:
4291 case INTRINSIC_NE_OS:
4292 case INTRINSIC_GT:
4293 case INTRINSIC_GT_OS:
4294 case INTRINSIC_GE:
4295 case INTRINSIC_GE_OS:
4296 case INTRINSIC_LT:
4297 case INTRINSIC_LT_OS:
4298 case INTRINSIC_LE:
4299 case INTRINSIC_LE_OS:
4300
4301 if (op1->rank == 0 && op2->rank == 0)
4302 e->rank = 0;
4303
4304 if (op1->rank == 0 && op2->rank != 0)
4305 {
4306 e->rank = op2->rank;
4307
4308 if (e->shape == NULL)
4309 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4310 }
4311
4312 if (op1->rank != 0 && op2->rank == 0)
4313 {
4314 e->rank = op1->rank;
4315
4316 if (e->shape == NULL)
4317 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4318 }
4319
4320 if (op1->rank != 0 && op2->rank != 0)
4321 {
4322 if (op1->rank == op2->rank)
4323 {
4324 e->rank = op1->rank;
4325 if (e->shape == NULL)
4326 {
4327 t = compare_shapes (op1, op2);
4328 if (!t)
4329 e->shape = NULL;
4330 else
4331 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4332 }
4333 }
4334 else
4335 {
4336 /* Allow higher level expressions to work. */
4337 e->rank = 0;
4338
4339 /* Try user-defined operators, and otherwise throw an error. */
4340 dual_locus_error = true;
4341 sprintf (msg,
4342 _("Inconsistent ranks for operator at %%L and %%L"));
4343 goto bad_op;
4344 }
4345 }
4346
4347 break;
4348
4349 case INTRINSIC_PARENTHESES:
4350 case INTRINSIC_NOT:
4351 case INTRINSIC_UPLUS:
4352 case INTRINSIC_UMINUS:
4353 /* Simply copy arrayness attribute */
4354 e->rank = op1->rank;
4355
4356 if (e->shape == NULL)
4357 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4358
4359 break;
4360
4361 default:
4362 break;
4363 }
4364
4365 simplify_op:
4366
4367 /* Attempt to simplify the expression. */
4368 if (t)
4369 {
4370 t = gfc_simplify_expr (e, 0);
4371 /* Some calls do not succeed in simplification and return false
4372 even though there is no error; e.g. variable references to
4373 PARAMETER arrays. */
4374 if (!gfc_is_constant_expr (e))
4375 t = true;
4376 }
4377 return t;
4378
4379 bad_op:
4380
4381 {
4382 match m = gfc_extend_expr (e);
4383 if (m == MATCH_YES)
4384 return true;
4385 if (m == MATCH_ERROR)
4386 return false;
4387 }
4388
4389 if (dual_locus_error)
4390 gfc_error (msg, &op1->where, &op2->where);
4391 else
4392 gfc_error (msg, &e->where);
4393
4394 return false;
4395 }
4396
4397
4398 /************** Array resolution subroutines **************/
4399
4400 enum compare_result
4401 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4402
4403 /* Compare two integer expressions. */
4404
4405 static compare_result
4406 compare_bound (gfc_expr *a, gfc_expr *b)
4407 {
4408 int i;
4409
4410 if (a == NULL || a->expr_type != EXPR_CONSTANT
4411 || b == NULL || b->expr_type != EXPR_CONSTANT)
4412 return CMP_UNKNOWN;
4413
4414 /* If either of the types isn't INTEGER, we must have
4415 raised an error earlier. */
4416
4417 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4418 return CMP_UNKNOWN;
4419
4420 i = mpz_cmp (a->value.integer, b->value.integer);
4421
4422 if (i < 0)
4423 return CMP_LT;
4424 if (i > 0)
4425 return CMP_GT;
4426 return CMP_EQ;
4427 }
4428
4429
4430 /* Compare an integer expression with an integer. */
4431
4432 static compare_result
4433 compare_bound_int (gfc_expr *a, int b)
4434 {
4435 int i;
4436
4437 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4438 return CMP_UNKNOWN;
4439
4440 if (a->ts.type != BT_INTEGER)
4441 gfc_internal_error ("compare_bound_int(): Bad expression");
4442
4443 i = mpz_cmp_si (a->value.integer, b);
4444
4445 if (i < 0)
4446 return CMP_LT;
4447 if (i > 0)
4448 return CMP_GT;
4449 return CMP_EQ;
4450 }
4451
4452
4453 /* Compare an integer expression with a mpz_t. */
4454
4455 static compare_result
4456 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4457 {
4458 int i;
4459
4460 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4461 return CMP_UNKNOWN;
4462
4463 if (a->ts.type != BT_INTEGER)
4464 gfc_internal_error ("compare_bound_int(): Bad expression");
4465
4466 i = mpz_cmp (a->value.integer, b);
4467
4468 if (i < 0)
4469 return CMP_LT;
4470 if (i > 0)
4471 return CMP_GT;
4472 return CMP_EQ;
4473 }
4474
4475
4476 /* Compute the last value of a sequence given by a triplet.
4477 Return 0 if it wasn't able to compute the last value, or if the
4478 sequence if empty, and 1 otherwise. */
4479
4480 static int
4481 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4482 gfc_expr *stride, mpz_t last)
4483 {
4484 mpz_t rem;
4485
4486 if (start == NULL || start->expr_type != EXPR_CONSTANT
4487 || end == NULL || end->expr_type != EXPR_CONSTANT
4488 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4489 return 0;
4490
4491 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4492 || (stride != NULL && stride->ts.type != BT_INTEGER))
4493 return 0;
4494
4495 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4496 {
4497 if (compare_bound (start, end) == CMP_GT)
4498 return 0;
4499 mpz_set (last, end->value.integer);
4500 return 1;
4501 }
4502
4503 if (compare_bound_int (stride, 0) == CMP_GT)
4504 {
4505 /* Stride is positive */
4506 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4507 return 0;
4508 }
4509 else
4510 {
4511 /* Stride is negative */
4512 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4513 return 0;
4514 }
4515
4516 mpz_init (rem);
4517 mpz_sub (rem, end->value.integer, start->value.integer);
4518 mpz_tdiv_r (rem, rem, stride->value.integer);
4519 mpz_sub (last, end->value.integer, rem);
4520 mpz_clear (rem);
4521
4522 return 1;
4523 }
4524
4525
4526 /* Compare a single dimension of an array reference to the array
4527 specification. */
4528
4529 static bool
4530 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4531 {
4532 mpz_t last_value;
4533
4534 if (ar->dimen_type[i] == DIMEN_STAR)
4535 {
4536 gcc_assert (ar->stride[i] == NULL);
4537 /* This implies [*] as [*:] and [*:3] are not possible. */
4538 if (ar->start[i] == NULL)
4539 {
4540 gcc_assert (ar->end[i] == NULL);
4541 return true;
4542 }
4543 }
4544
4545 /* Given start, end and stride values, calculate the minimum and
4546 maximum referenced indexes. */
4547
4548 switch (ar->dimen_type[i])
4549 {
4550 case DIMEN_VECTOR:
4551 case DIMEN_THIS_IMAGE:
4552 break;
4553
4554 case DIMEN_STAR:
4555 case DIMEN_ELEMENT:
4556 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4557 {
4558 if (i < as->rank)
4559 gfc_warning (0, "Array reference at %L is out of bounds "
4560 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4561 mpz_get_si (ar->start[i]->value.integer),
4562 mpz_get_si (as->lower[i]->value.integer), i+1);
4563 else
4564 gfc_warning (0, "Array reference at %L is out of bounds "
4565 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4566 mpz_get_si (ar->start[i]->value.integer),
4567 mpz_get_si (as->lower[i]->value.integer),
4568 i + 1 - as->rank);
4569 return true;
4570 }
4571 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4572 {
4573 if (i < as->rank)
4574 gfc_warning (0, "Array reference at %L is out of bounds "
4575 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4576 mpz_get_si (ar->start[i]->value.integer),
4577 mpz_get_si (as->upper[i]->value.integer), i+1);
4578 else
4579 gfc_warning (0, "Array reference at %L is out of bounds "
4580 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4581 mpz_get_si (ar->start[i]->value.integer),
4582 mpz_get_si (as->upper[i]->value.integer),
4583 i + 1 - as->rank);
4584 return true;
4585 }
4586
4587 break;
4588
4589 case DIMEN_RANGE:
4590 {
4591 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4592 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4593
4594 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4595
4596 /* Check for zero stride, which is not allowed. */
4597 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4598 {
4599 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4600 return false;
4601 }
4602
4603 /* if start == len || (stride > 0 && start < len)
4604 || (stride < 0 && start > len),
4605 then the array section contains at least one element. In this
4606 case, there is an out-of-bounds access if
4607 (start < lower || start > upper). */
4608 if (compare_bound (AR_START, AR_END) == CMP_EQ
4609 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4610 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4611 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4612 && comp_start_end == CMP_GT))
4613 {
4614 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4615 {
4616 gfc_warning (0, "Lower array reference at %L is out of bounds "
4617 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4618 mpz_get_si (AR_START->value.integer),
4619 mpz_get_si (as->lower[i]->value.integer), i+1);
4620 return true;
4621 }
4622 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4623 {
4624 gfc_warning (0, "Lower array reference at %L is out of bounds "
4625 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4626 mpz_get_si (AR_START->value.integer),
4627 mpz_get_si (as->upper[i]->value.integer), i+1);
4628 return true;
4629 }
4630 }
4631
4632 /* If we can compute the highest index of the array section,
4633 then it also has to be between lower and upper. */
4634 mpz_init (last_value);
4635 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4636 last_value))
4637 {
4638 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4639 {
4640 gfc_warning (0, "Upper array reference at %L is out of bounds "
4641 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4642 mpz_get_si (last_value),
4643 mpz_get_si (as->lower[i]->value.integer), i+1);
4644 mpz_clear (last_value);
4645 return true;
4646 }
4647 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4648 {
4649 gfc_warning (0, "Upper array reference at %L is out of bounds "
4650 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4651 mpz_get_si (last_value),
4652 mpz_get_si (as->upper[i]->value.integer), i+1);
4653 mpz_clear (last_value);
4654 return true;
4655 }
4656 }
4657 mpz_clear (last_value);
4658
4659 #undef AR_START
4660 #undef AR_END
4661 }
4662 break;
4663
4664 default:
4665 gfc_internal_error ("check_dimension(): Bad array reference");
4666 }
4667
4668 return true;
4669 }
4670
4671
4672 /* Compare an array reference with an array specification. */
4673
4674 static bool
4675 compare_spec_to_ref (gfc_array_ref *ar)
4676 {
4677 gfc_array_spec *as;
4678 int i;
4679
4680 as = ar->as;
4681 i = as->rank - 1;
4682 /* TODO: Full array sections are only allowed as actual parameters. */
4683 if (as->type == AS_ASSUMED_SIZE
4684 && (/*ar->type == AR_FULL
4685 ||*/ (ar->type == AR_SECTION
4686 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4687 {
4688 gfc_error ("Rightmost upper bound of assumed size array section "
4689 "not specified at %L", &ar->where);
4690 return false;
4691 }
4692
4693 if (ar->type == AR_FULL)
4694 return true;
4695
4696 if (as->rank != ar->dimen)
4697 {
4698 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4699 &ar->where, ar->dimen, as->rank);
4700 return false;
4701 }
4702
4703 /* ar->codimen == 0 is a local array. */
4704 if (as->corank != ar->codimen && ar->codimen != 0)
4705 {
4706 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4707 &ar->where, ar->codimen, as->corank);
4708 return false;
4709 }
4710
4711 for (i = 0; i < as->rank; i++)
4712 if (!check_dimension (i, ar, as))
4713 return false;
4714
4715 /* Local access has no coarray spec. */
4716 if (ar->codimen != 0)
4717 for (i = as->rank; i < as->rank + as->corank; i++)
4718 {
4719 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4720 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4721 {
4722 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4723 i + 1 - as->rank, &ar->where);
4724 return false;
4725 }
4726 if (!check_dimension (i, ar, as))
4727 return false;
4728 }
4729
4730 return true;
4731 }
4732
4733
4734 /* Resolve one part of an array index. */
4735
4736 static bool
4737 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4738 int force_index_integer_kind)
4739 {
4740 gfc_typespec ts;
4741
4742 if (index == NULL)
4743 return true;
4744
4745 if (!gfc_resolve_expr (index))
4746 return false;
4747
4748 if (check_scalar && index->rank != 0)
4749 {
4750 gfc_error ("Array index at %L must be scalar", &index->where);
4751 return false;
4752 }
4753
4754 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4755 {
4756 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4757 &index->where, gfc_basic_typename (index->ts.type));
4758 return false;
4759 }
4760
4761 if (index->ts.type == BT_REAL)
4762 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4763 &index->where))
4764 return false;
4765
4766 if ((index->ts.kind != gfc_index_integer_kind
4767 && force_index_integer_kind)
4768 || index->ts.type != BT_INTEGER)
4769 {
4770 gfc_clear_ts (&ts);
4771 ts.type = BT_INTEGER;
4772 ts.kind = gfc_index_integer_kind;
4773
4774 gfc_convert_type_warn (index, &ts, 2, 0);
4775 }
4776
4777 return true;
4778 }
4779
4780 /* Resolve one part of an array index. */
4781
4782 bool
4783 gfc_resolve_index (gfc_expr *index, int check_scalar)
4784 {
4785 return gfc_resolve_index_1 (index, check_scalar, 1);
4786 }
4787
4788 /* Resolve a dim argument to an intrinsic function. */
4789
4790 bool
4791 gfc_resolve_dim_arg (gfc_expr *dim)
4792 {
4793 if (dim == NULL)
4794 return true;
4795
4796 if (!gfc_resolve_expr (dim))
4797 return false;
4798
4799 if (dim->rank != 0)
4800 {
4801 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4802 return false;
4803
4804 }
4805
4806 if (dim->ts.type != BT_INTEGER)
4807 {
4808 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4809 return false;
4810 }
4811
4812 if (dim->ts.kind != gfc_index_integer_kind)
4813 {
4814 gfc_typespec ts;
4815
4816 gfc_clear_ts (&ts);
4817 ts.type = BT_INTEGER;
4818 ts.kind = gfc_index_integer_kind;
4819
4820 gfc_convert_type_warn (dim, &ts, 2, 0);
4821 }
4822
4823 return true;
4824 }
4825
4826 /* Given an expression that contains array references, update those array
4827 references to point to the right array specifications. While this is
4828 filled in during matching, this information is difficult to save and load
4829 in a module, so we take care of it here.
4830
4831 The idea here is that the original array reference comes from the
4832 base symbol. We traverse the list of reference structures, setting
4833 the stored reference to references. Component references can
4834 provide an additional array specification. */
4835
4836 static void
4837 find_array_spec (gfc_expr *e)
4838 {
4839 gfc_array_spec *as;
4840 gfc_component *c;
4841 gfc_ref *ref;
4842 bool class_as = false;
4843
4844 if (e->symtree->n.sym->ts.type == BT_CLASS)
4845 {
4846 as = CLASS_DATA (e->symtree->n.sym)->as;
4847 class_as = true;
4848 }
4849 else
4850 as = e->symtree->n.sym->as;
4851
4852 for (ref = e->ref; ref; ref = ref->next)
4853 switch (ref->type)
4854 {
4855 case REF_ARRAY:
4856 if (as == NULL)
4857 gfc_internal_error ("find_array_spec(): Missing spec");
4858
4859 ref->u.ar.as = as;
4860 as = NULL;
4861 break;
4862
4863 case REF_COMPONENT:
4864 c = ref->u.c.component;
4865 if (c->attr.dimension)
4866 {
4867 if (as != NULL && !(class_as && as == c->as))
4868 gfc_internal_error ("find_array_spec(): unused as(1)");
4869 as = c->as;
4870 }
4871
4872 break;
4873
4874 case REF_SUBSTRING:
4875 case REF_INQUIRY:
4876 break;
4877 }
4878
4879 if (as != NULL)
4880 gfc_internal_error ("find_array_spec(): unused as(2)");
4881 }
4882
4883
4884 /* Resolve an array reference. */
4885
4886 static bool
4887 resolve_array_ref (gfc_array_ref *ar)
4888 {
4889 int i, check_scalar;
4890 gfc_expr *e;
4891
4892 for (i = 0; i < ar->dimen + ar->codimen; i++)
4893 {
4894 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4895
4896 /* Do not force gfc_index_integer_kind for the start. We can
4897 do fine with any integer kind. This avoids temporary arrays
4898 created for indexing with a vector. */
4899 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4900 return false;
4901 if (!gfc_resolve_index (ar->end[i], check_scalar))
4902 return false;
4903 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4904 return false;
4905
4906 e = ar->start[i];
4907
4908 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4909 switch (e->rank)
4910 {
4911 case 0:
4912 ar->dimen_type[i] = DIMEN_ELEMENT;
4913 break;
4914
4915 case 1:
4916 ar->dimen_type[i] = DIMEN_VECTOR;
4917 if (e->expr_type == EXPR_VARIABLE
4918 && e->symtree->n.sym->ts.type == BT_DERIVED)
4919 ar->start[i] = gfc_get_parentheses (e);
4920 break;
4921
4922 default:
4923 gfc_error ("Array index at %L is an array of rank %d",
4924 &ar->c_where[i], e->rank);
4925 return false;
4926 }
4927
4928 /* Fill in the upper bound, which may be lower than the
4929 specified one for something like a(2:10:5), which is
4930 identical to a(2:7:5). Only relevant for strides not equal
4931 to one. Don't try a division by zero. */
4932 if (ar->dimen_type[i] == DIMEN_RANGE
4933 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4934 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4935 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4936 {
4937 mpz_t size, end;
4938
4939 if (gfc_ref_dimen_size (ar, i, &size, &end))
4940 {
4941 if (ar->end[i] == NULL)
4942 {
4943 ar->end[i] =
4944 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4945 &ar->where);
4946 mpz_set (ar->end[i]->value.integer, end);
4947 }
4948 else if (ar->end[i]->ts.type == BT_INTEGER
4949 && ar->end[i]->expr_type == EXPR_CONSTANT)
4950 {
4951 mpz_set (ar->end[i]->value.integer, end);
4952 }
4953 else
4954 gcc_unreachable ();
4955
4956 mpz_clear (size);
4957 mpz_clear (end);
4958 }
4959 }
4960 }
4961
4962 if (ar->type == AR_FULL)
4963 {
4964 if (ar->as->rank == 0)
4965 ar->type = AR_ELEMENT;
4966
4967 /* Make sure array is the same as array(:,:), this way
4968 we don't need to special case all the time. */
4969 ar->dimen = ar->as->rank;
4970 for (i = 0; i < ar->dimen; i++)
4971 {
4972 ar->dimen_type[i] = DIMEN_RANGE;
4973
4974 gcc_assert (ar->start[i] == NULL);
4975 gcc_assert (ar->end[i] == NULL);
4976 gcc_assert (ar->stride[i] == NULL);
4977 }
4978 }
4979
4980 /* If the reference type is unknown, figure out what kind it is. */
4981
4982 if (ar->type == AR_UNKNOWN)
4983 {
4984 ar->type = AR_ELEMENT;
4985 for (i = 0; i < ar->dimen; i++)
4986 if (ar->dimen_type[i] == DIMEN_RANGE
4987 || ar->dimen_type[i] == DIMEN_VECTOR)
4988 {
4989 ar->type = AR_SECTION;
4990 break;
4991 }
4992 }
4993
4994 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
4995 return false;
4996
4997 if (ar->as->corank && ar->codimen == 0)
4998 {
4999 int n;
5000 ar->codimen = ar->as->corank;
5001 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
5002 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
5003 }
5004
5005 return true;
5006 }
5007
5008
5009 static bool
5010 resolve_substring (gfc_ref *ref, bool *equal_length)
5011 {
5012 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
5013
5014 if (ref->u.ss.start != NULL)
5015 {
5016 if (!gfc_resolve_expr (ref->u.ss.start))
5017 return false;
5018
5019 if (ref->u.ss.start->ts.type != BT_INTEGER)
5020 {
5021 gfc_error ("Substring start index at %L must be of type INTEGER",
5022 &ref->u.ss.start->where);
5023 return false;
5024 }
5025
5026 if (ref->u.ss.start->rank != 0)
5027 {
5028 gfc_error ("Substring start index at %L must be scalar",
5029 &ref->u.ss.start->where);
5030 return false;
5031 }
5032
5033 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
5034 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5035 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5036 {
5037 gfc_error ("Substring start index at %L is less than one",
5038 &ref->u.ss.start->where);
5039 return false;
5040 }
5041 }
5042
5043 if (ref->u.ss.end != NULL)
5044 {
5045 if (!gfc_resolve_expr (ref->u.ss.end))
5046 return false;
5047
5048 if (ref->u.ss.end->ts.type != BT_INTEGER)
5049 {
5050 gfc_error ("Substring end index at %L must be of type INTEGER",
5051 &ref->u.ss.end->where);
5052 return false;
5053 }
5054
5055 if (ref->u.ss.end->rank != 0)
5056 {
5057 gfc_error ("Substring end index at %L must be scalar",
5058 &ref->u.ss.end->where);
5059 return false;
5060 }
5061
5062 if (ref->u.ss.length != NULL
5063 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
5064 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5065 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5066 {
5067 gfc_error ("Substring end index at %L exceeds the string length",
5068 &ref->u.ss.start->where);
5069 return false;
5070 }
5071
5072 if (compare_bound_mpz_t (ref->u.ss.end,
5073 gfc_integer_kinds[k].huge) == CMP_GT
5074 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5075 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5076 {
5077 gfc_error ("Substring end index at %L is too large",
5078 &ref->u.ss.end->where);
5079 return false;
5080 }
5081 /* If the substring has the same length as the original
5082 variable, the reference itself can be deleted. */
5083
5084 if (ref->u.ss.length != NULL
5085 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_EQ
5086 && compare_bound_int (ref->u.ss.start, 1) == CMP_EQ)
5087 *equal_length = true;
5088 }
5089
5090 return true;
5091 }
5092
5093
5094 /* This function supplies missing substring charlens. */
5095
5096 void
5097 gfc_resolve_substring_charlen (gfc_expr *e)
5098 {
5099 gfc_ref *char_ref;
5100 gfc_expr *start, *end;
5101 gfc_typespec *ts = NULL;
5102 mpz_t diff;
5103
5104 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
5105 {
5106 if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
5107 break;
5108 if (char_ref->type == REF_COMPONENT)
5109 ts = &char_ref->u.c.component->ts;
5110 }
5111
5112 if (!char_ref || char_ref->type == REF_INQUIRY)
5113 return;
5114
5115 gcc_assert (char_ref->next == NULL);
5116
5117 if (e->ts.u.cl)
5118 {
5119 if (e->ts.u.cl->length)
5120 gfc_free_expr (e->ts.u.cl->length);
5121 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
5122 return;
5123 }
5124
5125 e->ts.type = BT_CHARACTER;
5126 e->ts.kind = gfc_default_character_kind;
5127
5128 if (!e->ts.u.cl)
5129 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5130
5131 if (char_ref->u.ss.start)
5132 start = gfc_copy_expr (char_ref->u.ss.start);
5133 else
5134 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
5135
5136 if (char_ref->u.ss.end)
5137 end = gfc_copy_expr (char_ref->u.ss.end);
5138 else if (e->expr_type == EXPR_VARIABLE)
5139 {
5140 if (!ts)
5141 ts = &e->symtree->n.sym->ts;
5142 end = gfc_copy_expr (ts->u.cl->length);
5143 }
5144 else
5145 end = NULL;
5146
5147 if (!start || !end)
5148 {
5149 gfc_free_expr (start);
5150 gfc_free_expr (end);
5151 return;
5152 }
5153
5154 /* Length = (end - start + 1).
5155 Check first whether it has a constant length. */
5156 if (gfc_dep_difference (end, start, &diff))
5157 {
5158 gfc_expr *len = gfc_get_constant_expr (BT_INTEGER, gfc_charlen_int_kind,
5159 &e->where);
5160
5161 mpz_add_ui (len->value.integer, diff, 1);
5162 mpz_clear (diff);
5163 e->ts.u.cl->length = len;
5164 /* The check for length < 0 is handled below */
5165 }
5166 else
5167 {
5168 e->ts.u.cl->length = gfc_subtract (end, start);
5169 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
5170 gfc_get_int_expr (gfc_charlen_int_kind,
5171 NULL, 1));
5172 }
5173
5174 /* F2008, 6.4.1: Both the starting point and the ending point shall
5175 be within the range 1, 2, ..., n unless the starting point exceeds
5176 the ending point, in which case the substring has length zero. */
5177
5178 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
5179 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
5180
5181 e->ts.u.cl->length->ts.type = BT_INTEGER;
5182 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5183
5184 /* Make sure that the length is simplified. */
5185 gfc_simplify_expr (e->ts.u.cl->length, 1);
5186 gfc_resolve_expr (e->ts.u.cl->length);
5187 }
5188
5189
5190 /* Resolve subtype references. */
5191
5192 static bool
5193 resolve_ref (gfc_expr *expr)
5194 {
5195 int current_part_dimension, n_components, seen_part_dimension;
5196 gfc_ref *ref, **prev;
5197 bool equal_length;
5198
5199 for (ref = expr->ref; ref; ref = ref->next)
5200 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
5201 {
5202 find_array_spec (expr);
5203 break;
5204 }
5205
5206 for (prev = &expr->ref; *prev != NULL;
5207 prev = *prev == NULL ? prev : &(*prev)->next)
5208 switch ((*prev)->type)
5209 {
5210 case REF_ARRAY:
5211 if (!resolve_array_ref (&(*prev)->u.ar))
5212 return false;
5213 break;
5214
5215 case REF_COMPONENT:
5216 case REF_INQUIRY:
5217 break;
5218
5219 case REF_SUBSTRING:
5220 equal_length = false;
5221 if (!resolve_substring (*prev, &equal_length))
5222 return false;
5223
5224 if (expr->expr_type != EXPR_SUBSTRING && equal_length)
5225 {
5226 /* Remove the reference and move the charlen, if any. */
5227 ref = *prev;
5228 *prev = ref->next;
5229 ref->next = NULL;
5230 expr->ts.u.cl = ref->u.ss.length;
5231 ref->u.ss.length = NULL;
5232 gfc_free_ref_list (ref);
5233 }
5234 break;
5235 }
5236
5237 /* Check constraints on part references. */
5238
5239 current_part_dimension = 0;
5240 seen_part_dimension = 0;
5241 n_components = 0;
5242
5243 for (ref = expr->ref; ref; ref = ref->next)
5244 {
5245 switch (ref->type)
5246 {
5247 case REF_ARRAY:
5248 switch (ref->u.ar.type)
5249 {
5250 case AR_FULL:
5251 /* Coarray scalar. */
5252 if (ref->u.ar.as->rank == 0)
5253 {
5254 current_part_dimension = 0;
5255 break;
5256 }
5257 /* Fall through. */
5258 case AR_SECTION:
5259 current_part_dimension = 1;
5260 break;
5261
5262 case AR_ELEMENT:
5263 current_part_dimension = 0;
5264 break;
5265
5266 case AR_UNKNOWN:
5267 gfc_internal_error ("resolve_ref(): Bad array reference");
5268 }
5269
5270 break;
5271
5272 case REF_COMPONENT:
5273 if (current_part_dimension || seen_part_dimension)
5274 {
5275 /* F03:C614. */
5276 if (ref->u.c.component->attr.pointer
5277 || ref->u.c.component->attr.proc_pointer
5278 || (ref->u.c.component->ts.type == BT_CLASS
5279 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5280 {
5281 gfc_error ("Component to the right of a part reference "
5282 "with nonzero rank must not have the POINTER "
5283 "attribute at %L", &expr->where);
5284 return false;
5285 }
5286 else if (ref->u.c.component->attr.allocatable
5287 || (ref->u.c.component->ts.type == BT_CLASS
5288 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5289
5290 {
5291 gfc_error ("Component to the right of a part reference "
5292 "with nonzero rank must not have the ALLOCATABLE "
5293 "attribute at %L", &expr->where);
5294 return false;
5295 }
5296 }
5297
5298 n_components++;
5299 break;
5300
5301 case REF_SUBSTRING:
5302 case REF_INQUIRY:
5303 break;
5304 }
5305
5306 if (((ref->type == REF_COMPONENT && n_components > 1)
5307 || ref->next == NULL)
5308 && current_part_dimension
5309 && seen_part_dimension)
5310 {
5311 gfc_error ("Two or more part references with nonzero rank must "
5312 "not be specified at %L", &expr->where);
5313 return false;
5314 }
5315
5316 if (ref->type == REF_COMPONENT)
5317 {
5318 if (current_part_dimension)
5319 seen_part_dimension = 1;
5320
5321 /* reset to make sure */
5322 current_part_dimension = 0;
5323 }
5324 }
5325
5326 return true;
5327 }
5328
5329
5330 /* Given an expression, determine its shape. This is easier than it sounds.
5331 Leaves the shape array NULL if it is not possible to determine the shape. */
5332
5333 static void
5334 expression_shape (gfc_expr *e)
5335 {
5336 mpz_t array[GFC_MAX_DIMENSIONS];
5337 int i;
5338
5339 if (e->rank <= 0 || e->shape != NULL)
5340 return;
5341
5342 for (i = 0; i < e->rank; i++)
5343 if (!gfc_array_dimen_size (e, i, &array[i]))
5344 goto fail;
5345
5346 e->shape = gfc_get_shape (e->rank);
5347
5348 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5349
5350 return;
5351
5352 fail:
5353 for (i--; i >= 0; i--)
5354 mpz_clear (array[i]);
5355 }
5356
5357
5358 /* Given a variable expression node, compute the rank of the expression by
5359 examining the base symbol and any reference structures it may have. */
5360
5361 void
5362 expression_rank (gfc_expr *e)
5363 {
5364 gfc_ref *ref;
5365 int i, rank;
5366
5367 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5368 could lead to serious confusion... */
5369 gcc_assert (e->expr_type != EXPR_COMPCALL);
5370
5371 if (e->ref == NULL)
5372 {
5373 if (e->expr_type == EXPR_ARRAY)
5374 goto done;
5375 /* Constructors can have a rank different from one via RESHAPE(). */
5376
5377 if (e->symtree == NULL)
5378 {
5379 e->rank = 0;
5380 goto done;
5381 }
5382
5383 e->rank = (e->symtree->n.sym->as == NULL)
5384 ? 0 : e->symtree->n.sym->as->rank;
5385 goto done;
5386 }
5387
5388 rank = 0;
5389
5390 for (ref = e->ref; ref; ref = ref->next)
5391 {
5392 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5393 && ref->u.c.component->attr.function && !ref->next)
5394 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5395
5396 if (ref->type != REF_ARRAY)
5397 continue;
5398
5399 if (ref->u.ar.type == AR_FULL)
5400 {
5401 rank = ref->u.ar.as->rank;
5402 break;
5403 }
5404
5405 if (ref->u.ar.type == AR_SECTION)
5406 {
5407 /* Figure out the rank of the section. */
5408 if (rank != 0)
5409 gfc_internal_error ("expression_rank(): Two array specs");
5410
5411 for (i = 0; i < ref->u.ar.dimen; i++)
5412 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5413 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5414 rank++;
5415
5416 break;
5417 }
5418 }
5419
5420 e->rank = rank;
5421
5422 done:
5423 expression_shape (e);
5424 }
5425
5426
5427 static void
5428 add_caf_get_intrinsic (gfc_expr *e)
5429 {
5430 gfc_expr *wrapper, *tmp_expr;
5431 gfc_ref *ref;
5432 int n;
5433
5434 for (ref = e->ref; ref; ref = ref->next)
5435 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5436 break;
5437 if (ref == NULL)
5438 return;
5439
5440 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5441 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5442 return;
5443
5444 tmp_expr = XCNEW (gfc_expr);
5445 *tmp_expr = *e;
5446 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5447 "caf_get", tmp_expr->where, 1, tmp_expr);
5448 wrapper->ts = e->ts;
5449 wrapper->rank = e->rank;
5450 if (e->rank)
5451 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5452 *e = *wrapper;
5453 free (wrapper);
5454 }
5455
5456
5457 static void
5458 remove_caf_get_intrinsic (gfc_expr *e)
5459 {
5460 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5461 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5462 gfc_expr *e2 = e->value.function.actual->expr;
5463 e->value.function.actual->expr = NULL;
5464 gfc_free_actual_arglist (e->value.function.actual);
5465 gfc_free_shape (&e->shape, e->rank);
5466 *e = *e2;
5467 free (e2);
5468 }
5469
5470
5471 /* Resolve a variable expression. */
5472
5473 static bool
5474 resolve_variable (gfc_expr *e)
5475 {
5476 gfc_symbol *sym;
5477 bool t;
5478
5479 t = true;
5480
5481 if (e->symtree == NULL)
5482 return false;
5483 sym = e->symtree->n.sym;
5484
5485 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5486 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5487 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5488 {
5489 if (!actual_arg || inquiry_argument)
5490 {
5491 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5492 "be used as actual argument", sym->name, &e->where);
5493 return false;
5494 }
5495 }
5496 /* TS 29113, 407b. */
5497 else if (e->ts.type == BT_ASSUMED)
5498 {
5499 if (!actual_arg)
5500 {
5501 gfc_error ("Assumed-type variable %s at %L may only be used "
5502 "as actual argument", sym->name, &e->where);
5503 return false;
5504 }
5505 else if (inquiry_argument && !first_actual_arg)
5506 {
5507 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5508 for all inquiry functions in resolve_function; the reason is
5509 that the function-name resolution happens too late in that
5510 function. */
5511 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5512 "an inquiry function shall be the first argument",
5513 sym->name, &e->where);
5514 return false;
5515 }
5516 }
5517 /* TS 29113, C535b. */
5518 else if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5519 && CLASS_DATA (sym)->as
5520 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5521 || (sym->ts.type != BT_CLASS && sym->as
5522 && sym->as->type == AS_ASSUMED_RANK))
5523 && !sym->attr.select_rank_temporary)
5524 {
5525 if (!actual_arg
5526 && !(cs_base && cs_base->current
5527 && cs_base->current->op == EXEC_SELECT_RANK))
5528 {
5529 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5530 "actual argument", sym->name, &e->where);
5531 return false;
5532 }
5533 else if (inquiry_argument && !first_actual_arg)
5534 {
5535 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5536 for all inquiry functions in resolve_function; the reason is
5537 that the function-name resolution happens too late in that
5538 function. */
5539 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5540 "to an inquiry function shall be the first argument",
5541 sym->name, &e->where);
5542 return false;
5543 }
5544 }
5545
5546 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5547 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5548 && e->ref->next == NULL))
5549 {
5550 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5551 "a subobject reference", sym->name, &e->ref->u.ar.where);
5552 return false;
5553 }
5554 /* TS 29113, 407b. */
5555 else if (e->ts.type == BT_ASSUMED && e->ref
5556 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5557 && e->ref->next == NULL))
5558 {
5559 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5560 "reference", sym->name, &e->ref->u.ar.where);
5561 return false;
5562 }
5563
5564 /* TS 29113, C535b. */
5565 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5566 && CLASS_DATA (sym)->as
5567 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5568 || (sym->ts.type != BT_CLASS && sym->as
5569 && sym->as->type == AS_ASSUMED_RANK))
5570 && e->ref
5571 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5572 && e->ref->next == NULL))
5573 {
5574 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5575 "reference", sym->name, &e->ref->u.ar.where);
5576 return false;
5577 }
5578
5579 /* For variables that are used in an associate (target => object) where
5580 the object's basetype is array valued while the target is scalar,
5581 the ts' type of the component refs is still array valued, which
5582 can't be translated that way. */
5583 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5584 && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
5585 && CLASS_DATA (sym->assoc->target)->as)
5586 {
5587 gfc_ref *ref = e->ref;
5588 while (ref)
5589 {
5590 switch (ref->type)
5591 {
5592 case REF_COMPONENT:
5593 ref->u.c.sym = sym->ts.u.derived;
5594 /* Stop the loop. */
5595 ref = NULL;
5596 break;
5597 default:
5598 ref = ref->next;
5599 break;
5600 }
5601 }
5602 }
5603
5604 /* If this is an associate-name, it may be parsed with an array reference
5605 in error even though the target is scalar. Fail directly in this case.
5606 TODO Understand why class scalar expressions must be excluded. */
5607 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5608 {
5609 if (sym->ts.type == BT_CLASS)
5610 gfc_fix_class_refs (e);
5611 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5612 return false;
5613 else if (sym->attr.dimension && (!e->ref || e->ref->type != REF_ARRAY))
5614 {
5615 /* This can happen because the parser did not detect that the
5616 associate name is an array and the expression had no array
5617 part_ref. */
5618 gfc_ref *ref = gfc_get_ref ();
5619 ref->type = REF_ARRAY;
5620 ref->u.ar = *gfc_get_array_ref();
5621 ref->u.ar.type = AR_FULL;
5622 if (sym->as)
5623 {
5624 ref->u.ar.as = sym->as;
5625 ref->u.ar.dimen = sym->as->rank;
5626 }
5627 ref->next = e->ref;
5628 e->ref = ref;
5629
5630 }
5631 }
5632
5633 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5634 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5635
5636 /* On the other hand, the parser may not have known this is an array;
5637 in this case, we have to add a FULL reference. */
5638 if (sym->assoc && sym->attr.dimension && !e->ref)
5639 {
5640 e->ref = gfc_get_ref ();
5641 e->ref->type = REF_ARRAY;
5642 e->ref->u.ar.type = AR_FULL;
5643 e->ref->u.ar.dimen = 0;
5644 }
5645
5646 /* Like above, but for class types, where the checking whether an array
5647 ref is present is more complicated. Furthermore make sure not to add
5648 the full array ref to _vptr or _len refs. */
5649 if (sym->assoc && sym->ts.type == BT_CLASS
5650 && CLASS_DATA (sym)->attr.dimension
5651 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5652 {
5653 gfc_ref *ref, *newref;
5654
5655 newref = gfc_get_ref ();
5656 newref->type = REF_ARRAY;
5657 newref->u.ar.type = AR_FULL;
5658 newref->u.ar.dimen = 0;
5659 /* Because this is an associate var and the first ref either is a ref to
5660 the _data component or not, no traversal of the ref chain is
5661 needed. The array ref needs to be inserted after the _data ref,
5662 or when that is not present, which may happend for polymorphic
5663 types, then at the first position. */
5664 ref = e->ref;
5665 if (!ref)
5666 e->ref = newref;
5667 else if (ref->type == REF_COMPONENT
5668 && strcmp ("_data", ref->u.c.component->name) == 0)
5669 {
5670 if (!ref->next || ref->next->type != REF_ARRAY)
5671 {
5672 newref->next = ref->next;
5673 ref->next = newref;
5674 }
5675 else
5676 /* Array ref present already. */
5677 gfc_free_ref_list (newref);
5678 }
5679 else if (ref->type == REF_ARRAY)
5680 /* Array ref present already. */
5681 gfc_free_ref_list (newref);
5682 else
5683 {
5684 newref->next = ref;
5685 e->ref = newref;
5686 }
5687 }
5688
5689 if (e->ref && !resolve_ref (e))
5690 return false;
5691
5692 if (sym->attr.flavor == FL_PROCEDURE
5693 && (!sym->attr.function
5694 || (sym->attr.function && sym->result
5695 && sym->result->attr.proc_pointer
5696 && !sym->result->attr.function)))
5697 {
5698 e->ts.type = BT_PROCEDURE;
5699 goto resolve_procedure;
5700 }
5701
5702 if (sym->ts.type != BT_UNKNOWN)
5703 gfc_variable_attr (e, &e->ts);
5704 else if (sym->attr.flavor == FL_PROCEDURE
5705 && sym->attr.function && sym->result
5706 && sym->result->ts.type != BT_UNKNOWN
5707 && sym->result->attr.proc_pointer)
5708 e->ts = sym->result->ts;
5709 else
5710 {
5711 /* Must be a simple variable reference. */
5712 if (!gfc_set_default_type (sym, 1, sym->ns))
5713 return false;
5714 e->ts = sym->ts;
5715 }
5716
5717 if (check_assumed_size_reference (sym, e))
5718 return false;
5719
5720 /* Deal with forward references to entries during gfc_resolve_code, to
5721 satisfy, at least partially, 12.5.2.5. */
5722 if (gfc_current_ns->entries
5723 && current_entry_id == sym->entry_id
5724 && cs_base
5725 && cs_base->current
5726 && cs_base->current->op != EXEC_ENTRY)
5727 {
5728 gfc_entry_list *entry;
5729 gfc_formal_arglist *formal;
5730 int n;
5731 bool seen, saved_specification_expr;
5732
5733 /* If the symbol is a dummy... */
5734 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5735 {
5736 entry = gfc_current_ns->entries;
5737 seen = false;
5738
5739 /* ...test if the symbol is a parameter of previous entries. */
5740 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5741 for (formal = entry->sym->formal; formal; formal = formal->next)
5742 {
5743 if (formal->sym && sym->name == formal->sym->name)
5744 {
5745 seen = true;
5746 break;
5747 }
5748 }
5749
5750 /* If it has not been seen as a dummy, this is an error. */
5751 if (!seen)
5752 {
5753 if (specification_expr)
5754 gfc_error ("Variable %qs, used in a specification expression"
5755 ", is referenced at %L before the ENTRY statement "
5756 "in which it is a parameter",
5757 sym->name, &cs_base->current->loc);
5758 else
5759 gfc_error ("Variable %qs is used at %L before the ENTRY "
5760 "statement in which it is a parameter",
5761 sym->name, &cs_base->current->loc);
5762 t = false;
5763 }
5764 }
5765
5766 /* Now do the same check on the specification expressions. */
5767 saved_specification_expr = specification_expr;
5768 specification_expr = true;
5769 if (sym->ts.type == BT_CHARACTER
5770 && !gfc_resolve_expr (sym->ts.u.cl->length))
5771 t = false;
5772
5773 if (sym->as)
5774 for (n = 0; n < sym->as->rank; n++)
5775 {
5776 if (!gfc_resolve_expr (sym->as->lower[n]))
5777 t = false;
5778 if (!gfc_resolve_expr (sym->as->upper[n]))
5779 t = false;
5780 }
5781 specification_expr = saved_specification_expr;
5782
5783 if (t)
5784 /* Update the symbol's entry level. */
5785 sym->entry_id = current_entry_id + 1;
5786 }
5787
5788 /* If a symbol has been host_associated mark it. This is used latter,
5789 to identify if aliasing is possible via host association. */
5790 if (sym->attr.flavor == FL_VARIABLE
5791 && gfc_current_ns->parent
5792 && (gfc_current_ns->parent == sym->ns
5793 || (gfc_current_ns->parent->parent
5794 && gfc_current_ns->parent->parent == sym->ns)))
5795 sym->attr.host_assoc = 1;
5796
5797 if (gfc_current_ns->proc_name
5798 && sym->attr.dimension
5799 && (sym->ns != gfc_current_ns
5800 || sym->attr.use_assoc
5801 || sym->attr.in_common))
5802 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5803
5804 resolve_procedure:
5805 if (t && !resolve_procedure_expression (e))
5806 t = false;
5807
5808 /* F2008, C617 and C1229. */
5809 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5810 && gfc_is_coindexed (e))
5811 {
5812 gfc_ref *ref, *ref2 = NULL;
5813
5814 for (ref = e->ref; ref; ref = ref->next)
5815 {
5816 if (ref->type == REF_COMPONENT)
5817 ref2 = ref;
5818 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5819 break;
5820 }
5821
5822 for ( ; ref; ref = ref->next)
5823 if (ref->type == REF_COMPONENT)
5824 break;
5825
5826 /* Expression itself is not coindexed object. */
5827 if (ref && e->ts.type == BT_CLASS)
5828 {
5829 gfc_error ("Polymorphic subobject of coindexed object at %L",
5830 &e->where);
5831 t = false;
5832 }
5833
5834 /* Expression itself is coindexed object. */
5835 if (ref == NULL)
5836 {
5837 gfc_component *c;
5838 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5839 for ( ; c; c = c->next)
5840 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5841 {
5842 gfc_error ("Coindexed object with polymorphic allocatable "
5843 "subcomponent at %L", &e->where);
5844 t = false;
5845 break;
5846 }
5847 }
5848 }
5849
5850 if (t)
5851 expression_rank (e);
5852
5853 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5854 add_caf_get_intrinsic (e);
5855
5856 /* Simplify cases where access to a parameter array results in a
5857 single constant. Suppress errors since those will have been
5858 issued before, as warnings. */
5859 if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
5860 {
5861 gfc_push_suppress_errors ();
5862 gfc_simplify_expr (e, 1);
5863 gfc_pop_suppress_errors ();
5864 }
5865
5866 return t;
5867 }
5868
5869
5870 /* Checks to see that the correct symbol has been host associated.
5871 The only situation where this arises is that in which a twice
5872 contained function is parsed after the host association is made.
5873 Therefore, on detecting this, change the symbol in the expression
5874 and convert the array reference into an actual arglist if the old
5875 symbol is a variable. */
5876 static bool
5877 check_host_association (gfc_expr *e)
5878 {
5879 gfc_symbol *sym, *old_sym;
5880 gfc_symtree *st;
5881 int n;
5882 gfc_ref *ref;
5883 gfc_actual_arglist *arg, *tail = NULL;
5884 bool retval = e->expr_type == EXPR_FUNCTION;
5885
5886 /* If the expression is the result of substitution in
5887 interface.c(gfc_extend_expr) because there is no way in
5888 which the host association can be wrong. */
5889 if (e->symtree == NULL
5890 || e->symtree->n.sym == NULL
5891 || e->user_operator)
5892 return retval;
5893
5894 old_sym = e->symtree->n.sym;
5895
5896 if (gfc_current_ns->parent
5897 && old_sym->ns != gfc_current_ns)
5898 {
5899 /* Use the 'USE' name so that renamed module symbols are
5900 correctly handled. */
5901 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5902
5903 if (sym && old_sym != sym
5904 && sym->ts.type == old_sym->ts.type
5905 && sym->attr.flavor == FL_PROCEDURE
5906 && sym->attr.contained)
5907 {
5908 /* Clear the shape, since it might not be valid. */
5909 gfc_free_shape (&e->shape, e->rank);
5910
5911 /* Give the expression the right symtree! */
5912 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5913 gcc_assert (st != NULL);
5914
5915 if (old_sym->attr.flavor == FL_PROCEDURE
5916 || e->expr_type == EXPR_FUNCTION)
5917 {
5918 /* Original was function so point to the new symbol, since
5919 the actual argument list is already attached to the
5920 expression. */
5921 e->value.function.esym = NULL;
5922 e->symtree = st;
5923 }
5924 else
5925 {
5926 /* Original was variable so convert array references into
5927 an actual arglist. This does not need any checking now
5928 since resolve_function will take care of it. */
5929 e->value.function.actual = NULL;
5930 e->expr_type = EXPR_FUNCTION;
5931 e->symtree = st;
5932
5933 /* Ambiguity will not arise if the array reference is not
5934 the last reference. */
5935 for (ref = e->ref; ref; ref = ref->next)
5936 if (ref->type == REF_ARRAY && ref->next == NULL)
5937 break;
5938
5939 gcc_assert (ref->type == REF_ARRAY);
5940
5941 /* Grab the start expressions from the array ref and
5942 copy them into actual arguments. */
5943 for (n = 0; n < ref->u.ar.dimen; n++)
5944 {
5945 arg = gfc_get_actual_arglist ();
5946 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5947 if (e->value.function.actual == NULL)
5948 tail = e->value.function.actual = arg;
5949 else
5950 {
5951 tail->next = arg;
5952 tail = arg;
5953 }
5954 }
5955
5956 /* Dump the reference list and set the rank. */
5957 gfc_free_ref_list (e->ref);
5958 e->ref = NULL;
5959 e->rank = sym->as ? sym->as->rank : 0;
5960 }
5961
5962 gfc_resolve_expr (e);
5963 sym->refs++;
5964 }
5965 }
5966 /* This might have changed! */
5967 return e->expr_type == EXPR_FUNCTION;
5968 }
5969
5970
5971 static void
5972 gfc_resolve_character_operator (gfc_expr *e)
5973 {
5974 gfc_expr *op1 = e->value.op.op1;
5975 gfc_expr *op2 = e->value.op.op2;
5976 gfc_expr *e1 = NULL;
5977 gfc_expr *e2 = NULL;
5978
5979 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
5980
5981 if (op1->ts.u.cl && op1->ts.u.cl->length)
5982 e1 = gfc_copy_expr (op1->ts.u.cl->length);
5983 else if (op1->expr_type == EXPR_CONSTANT)
5984 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5985 op1->value.character.length);
5986
5987 if (op2->ts.u.cl && op2->ts.u.cl->length)
5988 e2 = gfc_copy_expr (op2->ts.u.cl->length);
5989 else if (op2->expr_type == EXPR_CONSTANT)
5990 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5991 op2->value.character.length);
5992
5993 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5994
5995 if (!e1 || !e2)
5996 {
5997 gfc_free_expr (e1);
5998 gfc_free_expr (e2);
5999
6000 return;
6001 }
6002
6003 e->ts.u.cl->length = gfc_add (e1, e2);
6004 e->ts.u.cl->length->ts.type = BT_INTEGER;
6005 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
6006 gfc_simplify_expr (e->ts.u.cl->length, 0);
6007 gfc_resolve_expr (e->ts.u.cl->length);
6008
6009 return;
6010 }
6011
6012
6013 /* Ensure that an character expression has a charlen and, if possible, a
6014 length expression. */
6015
6016 static void
6017 fixup_charlen (gfc_expr *e)
6018 {
6019 /* The cases fall through so that changes in expression type and the need
6020 for multiple fixes are picked up. In all circumstances, a charlen should
6021 be available for the middle end to hang a backend_decl on. */
6022 switch (e->expr_type)
6023 {
6024 case EXPR_OP:
6025 gfc_resolve_character_operator (e);
6026 /* FALLTHRU */
6027
6028 case EXPR_ARRAY:
6029 if (e->expr_type == EXPR_ARRAY)
6030 gfc_resolve_character_array_constructor (e);
6031 /* FALLTHRU */
6032
6033 case EXPR_SUBSTRING:
6034 if (!e->ts.u.cl && e->ref)
6035 gfc_resolve_substring_charlen (e);
6036 /* FALLTHRU */
6037
6038 default:
6039 if (!e->ts.u.cl)
6040 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
6041
6042 break;
6043 }
6044 }
6045
6046
6047 /* Update an actual argument to include the passed-object for type-bound
6048 procedures at the right position. */
6049
6050 static gfc_actual_arglist*
6051 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
6052 const char *name)
6053 {
6054 gcc_assert (argpos > 0);
6055
6056 if (argpos == 1)
6057 {
6058 gfc_actual_arglist* result;
6059
6060 result = gfc_get_actual_arglist ();
6061 result->expr = po;
6062 result->next = lst;
6063 if (name)
6064 result->name = name;
6065
6066 return result;
6067 }
6068
6069 if (lst)
6070 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
6071 else
6072 lst = update_arglist_pass (NULL, po, argpos - 1, name);
6073 return lst;
6074 }
6075
6076
6077 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
6078
6079 static gfc_expr*
6080 extract_compcall_passed_object (gfc_expr* e)
6081 {
6082 gfc_expr* po;
6083
6084 if (e->expr_type == EXPR_UNKNOWN)
6085 {
6086 gfc_error ("Error in typebound call at %L",
6087 &e->where);
6088 return NULL;
6089 }
6090
6091 gcc_assert (e->expr_type == EXPR_COMPCALL);
6092
6093 if (e->value.compcall.base_object)
6094 po = gfc_copy_expr (e->value.compcall.base_object);
6095 else
6096 {
6097 po = gfc_get_expr ();
6098 po->expr_type = EXPR_VARIABLE;
6099 po->symtree = e->symtree;
6100 po->ref = gfc_copy_ref (e->ref);
6101 po->where = e->where;
6102 }
6103
6104 if (!gfc_resolve_expr (po))
6105 return NULL;
6106
6107 return po;
6108 }
6109
6110
6111 /* Update the arglist of an EXPR_COMPCALL expression to include the
6112 passed-object. */
6113
6114 static bool
6115 update_compcall_arglist (gfc_expr* e)
6116 {
6117 gfc_expr* po;
6118 gfc_typebound_proc* tbp;
6119
6120 tbp = e->value.compcall.tbp;
6121
6122 if (tbp->error)
6123 return false;
6124
6125 po = extract_compcall_passed_object (e);
6126 if (!po)
6127 return false;
6128
6129 if (tbp->nopass || e->value.compcall.ignore_pass)
6130 {
6131 gfc_free_expr (po);
6132 return true;
6133 }
6134
6135 if (tbp->pass_arg_num <= 0)
6136 return false;
6137
6138 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6139 tbp->pass_arg_num,
6140 tbp->pass_arg);
6141
6142 return true;
6143 }
6144
6145
6146 /* Extract the passed object from a PPC call (a copy of it). */
6147
6148 static gfc_expr*
6149 extract_ppc_passed_object (gfc_expr *e)
6150 {
6151 gfc_expr *po;
6152 gfc_ref **ref;
6153
6154 po = gfc_get_expr ();
6155 po->expr_type = EXPR_VARIABLE;
6156 po->symtree = e->symtree;
6157 po->ref = gfc_copy_ref (e->ref);
6158 po->where = e->where;
6159
6160 /* Remove PPC reference. */
6161 ref = &po->ref;
6162 while ((*ref)->next)
6163 ref = &(*ref)->next;
6164 gfc_free_ref_list (*ref);
6165 *ref = NULL;
6166
6167 if (!gfc_resolve_expr (po))
6168 return NULL;
6169
6170 return po;
6171 }
6172
6173
6174 /* Update the actual arglist of a procedure pointer component to include the
6175 passed-object. */
6176
6177 static bool
6178 update_ppc_arglist (gfc_expr* e)
6179 {
6180 gfc_expr* po;
6181 gfc_component *ppc;
6182 gfc_typebound_proc* tb;
6183
6184 ppc = gfc_get_proc_ptr_comp (e);
6185 if (!ppc)
6186 return false;
6187
6188 tb = ppc->tb;
6189
6190 if (tb->error)
6191 return false;
6192 else if (tb->nopass)
6193 return true;
6194
6195 po = extract_ppc_passed_object (e);
6196 if (!po)
6197 return false;
6198
6199 /* F08:R739. */
6200 if (po->rank != 0)
6201 {
6202 gfc_error ("Passed-object at %L must be scalar", &e->where);
6203 return false;
6204 }
6205
6206 /* F08:C611. */
6207 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
6208 {
6209 gfc_error ("Base object for procedure-pointer component call at %L is of"
6210 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
6211 return false;
6212 }
6213
6214 gcc_assert (tb->pass_arg_num > 0);
6215 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6216 tb->pass_arg_num,
6217 tb->pass_arg);
6218
6219 return true;
6220 }
6221
6222
6223 /* Check that the object a TBP is called on is valid, i.e. it must not be
6224 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
6225
6226 static bool
6227 check_typebound_baseobject (gfc_expr* e)
6228 {
6229 gfc_expr* base;
6230 bool return_value = false;
6231
6232 base = extract_compcall_passed_object (e);
6233 if (!base)
6234 return false;
6235
6236 if (base->ts.type != BT_DERIVED && base->ts.type != BT_CLASS)
6237 {
6238 gfc_error ("Error in typebound call at %L", &e->where);
6239 goto cleanup;
6240 }
6241
6242 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
6243 return false;
6244
6245 /* F08:C611. */
6246 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
6247 {
6248 gfc_error ("Base object for type-bound procedure call at %L is of"
6249 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
6250 goto cleanup;
6251 }
6252
6253 /* F08:C1230. If the procedure called is NOPASS,
6254 the base object must be scalar. */
6255 if (e->value.compcall.tbp->nopass && base->rank != 0)
6256 {
6257 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
6258 " be scalar", &e->where);
6259 goto cleanup;
6260 }
6261
6262 return_value = true;
6263
6264 cleanup:
6265 gfc_free_expr (base);
6266 return return_value;
6267 }
6268
6269
6270 /* Resolve a call to a type-bound procedure, either function or subroutine,
6271 statically from the data in an EXPR_COMPCALL expression. The adapted
6272 arglist and the target-procedure symtree are returned. */
6273
6274 static bool
6275 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
6276 gfc_actual_arglist** actual)
6277 {
6278 gcc_assert (e->expr_type == EXPR_COMPCALL);
6279 gcc_assert (!e->value.compcall.tbp->is_generic);
6280
6281 /* Update the actual arglist for PASS. */
6282 if (!update_compcall_arglist (e))
6283 return false;
6284
6285 *actual = e->value.compcall.actual;
6286 *target = e->value.compcall.tbp->u.specific;
6287
6288 gfc_free_ref_list (e->ref);
6289 e->ref = NULL;
6290 e->value.compcall.actual = NULL;
6291
6292 /* If we find a deferred typebound procedure, check for derived types
6293 that an overriding typebound procedure has not been missed. */
6294 if (e->value.compcall.name
6295 && !e->value.compcall.tbp->non_overridable
6296 && e->value.compcall.base_object
6297 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6298 {
6299 gfc_symtree *st;
6300 gfc_symbol *derived;
6301
6302 /* Use the derived type of the base_object. */
6303 derived = e->value.compcall.base_object->ts.u.derived;
6304 st = NULL;
6305
6306 /* If necessary, go through the inheritance chain. */
6307 while (!st && derived)
6308 {
6309 /* Look for the typebound procedure 'name'. */
6310 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6311 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6312 e->value.compcall.name);
6313 if (!st)
6314 derived = gfc_get_derived_super_type (derived);
6315 }
6316
6317 /* Now find the specific name in the derived type namespace. */
6318 if (st && st->n.tb && st->n.tb->u.specific)
6319 gfc_find_sym_tree (st->n.tb->u.specific->name,
6320 derived->ns, 1, &st);
6321 if (st)
6322 *target = st;
6323 }
6324 return true;
6325 }
6326
6327
6328 /* Get the ultimate declared type from an expression. In addition,
6329 return the last class/derived type reference and the copy of the
6330 reference list. If check_types is set true, derived types are
6331 identified as well as class references. */
6332 static gfc_symbol*
6333 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6334 gfc_expr *e, bool check_types)
6335 {
6336 gfc_symbol *declared;
6337 gfc_ref *ref;
6338
6339 declared = NULL;
6340 if (class_ref)
6341 *class_ref = NULL;
6342 if (new_ref)
6343 *new_ref = gfc_copy_ref (e->ref);
6344
6345 for (ref = e->ref; ref; ref = ref->next)
6346 {
6347 if (ref->type != REF_COMPONENT)
6348 continue;
6349
6350 if ((ref->u.c.component->ts.type == BT_CLASS
6351 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6352 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6353 {
6354 declared = ref->u.c.component->ts.u.derived;
6355 if (class_ref)
6356 *class_ref = ref;
6357 }
6358 }
6359
6360 if (declared == NULL)
6361 declared = e->symtree->n.sym->ts.u.derived;
6362
6363 return declared;
6364 }
6365
6366
6367 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6368 which of the specific bindings (if any) matches the arglist and transform
6369 the expression into a call of that binding. */
6370
6371 static bool
6372 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6373 {
6374 gfc_typebound_proc* genproc;
6375 const char* genname;
6376 gfc_symtree *st;
6377 gfc_symbol *derived;
6378
6379 gcc_assert (e->expr_type == EXPR_COMPCALL);
6380 genname = e->value.compcall.name;
6381 genproc = e->value.compcall.tbp;
6382
6383 if (!genproc->is_generic)
6384 return true;
6385
6386 /* Try the bindings on this type and in the inheritance hierarchy. */
6387 for (; genproc; genproc = genproc->overridden)
6388 {
6389 gfc_tbp_generic* g;
6390
6391 gcc_assert (genproc->is_generic);
6392 for (g = genproc->u.generic; g; g = g->next)
6393 {
6394 gfc_symbol* target;
6395 gfc_actual_arglist* args;
6396 bool matches;
6397
6398 gcc_assert (g->specific);
6399
6400 if (g->specific->error)
6401 continue;
6402
6403 target = g->specific->u.specific->n.sym;
6404
6405 /* Get the right arglist by handling PASS/NOPASS. */
6406 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6407 if (!g->specific->nopass)
6408 {
6409 gfc_expr* po;
6410 po = extract_compcall_passed_object (e);
6411 if (!po)
6412 {
6413 gfc_free_actual_arglist (args);
6414 return false;
6415 }
6416
6417 gcc_assert (g->specific->pass_arg_num > 0);
6418 gcc_assert (!g->specific->error);
6419 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6420 g->specific->pass_arg);
6421 }
6422 resolve_actual_arglist (args, target->attr.proc,
6423 is_external_proc (target)
6424 && gfc_sym_get_dummy_args (target) == NULL);
6425
6426 /* Check if this arglist matches the formal. */
6427 matches = gfc_arglist_matches_symbol (&args, target);
6428
6429 /* Clean up and break out of the loop if we've found it. */
6430 gfc_free_actual_arglist (args);
6431 if (matches)
6432 {
6433 e->value.compcall.tbp = g->specific;
6434 genname = g->specific_st->name;
6435 /* Pass along the name for CLASS methods, where the vtab
6436 procedure pointer component has to be referenced. */
6437 if (name)
6438 *name = genname;
6439 goto success;
6440 }
6441 }
6442 }
6443
6444 /* Nothing matching found! */
6445 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6446 " %qs at %L", genname, &e->where);
6447 return false;
6448
6449 success:
6450 /* Make sure that we have the right specific instance for the name. */
6451 derived = get_declared_from_expr (NULL, NULL, e, true);
6452
6453 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6454 if (st)
6455 e->value.compcall.tbp = st->n.tb;
6456
6457 return true;
6458 }
6459
6460
6461 /* Resolve a call to a type-bound subroutine. */
6462
6463 static bool
6464 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6465 {
6466 gfc_actual_arglist* newactual;
6467 gfc_symtree* target;
6468
6469 /* Check that's really a SUBROUTINE. */
6470 if (!c->expr1->value.compcall.tbp->subroutine)
6471 {
6472 if (!c->expr1->value.compcall.tbp->is_generic
6473 && c->expr1->value.compcall.tbp->u.specific
6474 && c->expr1->value.compcall.tbp->u.specific->n.sym
6475 && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
6476 c->expr1->value.compcall.tbp->subroutine = 1;
6477 else
6478 {
6479 gfc_error ("%qs at %L should be a SUBROUTINE",
6480 c->expr1->value.compcall.name, &c->loc);
6481 return false;
6482 }
6483 }
6484
6485 if (!check_typebound_baseobject (c->expr1))
6486 return false;
6487
6488 /* Pass along the name for CLASS methods, where the vtab
6489 procedure pointer component has to be referenced. */
6490 if (name)
6491 *name = c->expr1->value.compcall.name;
6492
6493 if (!resolve_typebound_generic_call (c->expr1, name))
6494 return false;
6495
6496 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6497 if (overridable)
6498 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6499
6500 /* Transform into an ordinary EXEC_CALL for now. */
6501
6502 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6503 return false;
6504
6505 c->ext.actual = newactual;
6506 c->symtree = target;
6507 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6508
6509 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6510
6511 gfc_free_expr (c->expr1);
6512 c->expr1 = gfc_get_expr ();
6513 c->expr1->expr_type = EXPR_FUNCTION;
6514 c->expr1->symtree = target;
6515 c->expr1->where = c->loc;
6516
6517 return resolve_call (c);
6518 }
6519
6520
6521 /* Resolve a component-call expression. */
6522 static bool
6523 resolve_compcall (gfc_expr* e, const char **name)
6524 {
6525 gfc_actual_arglist* newactual;
6526 gfc_symtree* target;
6527
6528 /* Check that's really a FUNCTION. */
6529 if (!e->value.compcall.tbp->function)
6530 {
6531 gfc_error ("%qs at %L should be a FUNCTION",
6532 e->value.compcall.name, &e->where);
6533 return false;
6534 }
6535
6536
6537 /* These must not be assign-calls! */
6538 gcc_assert (!e->value.compcall.assign);
6539
6540 if (!check_typebound_baseobject (e))
6541 return false;
6542
6543 /* Pass along the name for CLASS methods, where the vtab
6544 procedure pointer component has to be referenced. */
6545 if (name)
6546 *name = e->value.compcall.name;
6547
6548 if (!resolve_typebound_generic_call (e, name))
6549 return false;
6550 gcc_assert (!e->value.compcall.tbp->is_generic);
6551
6552 /* Take the rank from the function's symbol. */
6553 if (e->value.compcall.tbp->u.specific->n.sym->as)
6554 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6555
6556 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6557 arglist to the TBP's binding target. */
6558
6559 if (!resolve_typebound_static (e, &target, &newactual))
6560 return false;
6561
6562 e->value.function.actual = newactual;
6563 e->value.function.name = NULL;
6564 e->value.function.esym = target->n.sym;
6565 e->value.function.isym = NULL;
6566 e->symtree = target;
6567 e->ts = target->n.sym->ts;
6568 e->expr_type = EXPR_FUNCTION;
6569
6570 /* Resolution is not necessary if this is a class subroutine; this
6571 function only has to identify the specific proc. Resolution of
6572 the call will be done next in resolve_typebound_call. */
6573 return gfc_resolve_expr (e);
6574 }
6575
6576
6577 static bool resolve_fl_derived (gfc_symbol *sym);
6578
6579
6580 /* Resolve a typebound function, or 'method'. First separate all
6581 the non-CLASS references by calling resolve_compcall directly. */
6582
6583 static bool
6584 resolve_typebound_function (gfc_expr* e)
6585 {
6586 gfc_symbol *declared;
6587 gfc_component *c;
6588 gfc_ref *new_ref;
6589 gfc_ref *class_ref;
6590 gfc_symtree *st;
6591 const char *name;
6592 gfc_typespec ts;
6593 gfc_expr *expr;
6594 bool overridable;
6595
6596 st = e->symtree;
6597
6598 /* Deal with typebound operators for CLASS objects. */
6599 expr = e->value.compcall.base_object;
6600 overridable = !e->value.compcall.tbp->non_overridable;
6601 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6602 {
6603 /* Since the typebound operators are generic, we have to ensure
6604 that any delays in resolution are corrected and that the vtab
6605 is present. */
6606 ts = expr->ts;
6607 declared = ts.u.derived;
6608 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6609 if (c->ts.u.derived == NULL)
6610 c->ts.u.derived = gfc_find_derived_vtab (declared);
6611
6612 if (!resolve_compcall (e, &name))
6613 return false;
6614
6615 /* Use the generic name if it is there. */
6616 name = name ? name : e->value.function.esym->name;
6617 e->symtree = expr->symtree;
6618 e->ref = gfc_copy_ref (expr->ref);
6619 get_declared_from_expr (&class_ref, NULL, e, false);
6620
6621 /* Trim away the extraneous references that emerge from nested
6622 use of interface.c (extend_expr). */
6623 if (class_ref && class_ref->next)
6624 {
6625 gfc_free_ref_list (class_ref->next);
6626 class_ref->next = NULL;
6627 }
6628 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6629 {
6630 gfc_free_ref_list (e->ref);
6631 e->ref = NULL;
6632 }
6633
6634 gfc_add_vptr_component (e);
6635 gfc_add_component_ref (e, name);
6636 e->value.function.esym = NULL;
6637 if (expr->expr_type != EXPR_VARIABLE)
6638 e->base_expr = expr;
6639 return true;
6640 }
6641
6642 if (st == NULL)
6643 return resolve_compcall (e, NULL);
6644
6645 if (!resolve_ref (e))
6646 return false;
6647
6648 /* Get the CLASS declared type. */
6649 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6650
6651 if (!resolve_fl_derived (declared))
6652 return false;
6653
6654 /* Weed out cases of the ultimate component being a derived type. */
6655 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6656 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6657 {
6658 gfc_free_ref_list (new_ref);
6659 return resolve_compcall (e, NULL);
6660 }
6661
6662 c = gfc_find_component (declared, "_data", true, true, NULL);
6663
6664 /* Treat the call as if it is a typebound procedure, in order to roll
6665 out the correct name for the specific function. */
6666 if (!resolve_compcall (e, &name))
6667 {
6668 gfc_free_ref_list (new_ref);
6669 return false;
6670 }
6671 ts = e->ts;
6672
6673 if (overridable)
6674 {
6675 /* Convert the expression to a procedure pointer component call. */
6676 e->value.function.esym = NULL;
6677 e->symtree = st;
6678
6679 if (new_ref)
6680 e->ref = new_ref;
6681
6682 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6683 gfc_add_vptr_component (e);
6684 gfc_add_component_ref (e, name);
6685
6686 /* Recover the typespec for the expression. This is really only
6687 necessary for generic procedures, where the additional call
6688 to gfc_add_component_ref seems to throw the collection of the
6689 correct typespec. */
6690 e->ts = ts;
6691 }
6692 else if (new_ref)
6693 gfc_free_ref_list (new_ref);
6694
6695 return true;
6696 }
6697
6698 /* Resolve a typebound subroutine, or 'method'. First separate all
6699 the non-CLASS references by calling resolve_typebound_call
6700 directly. */
6701
6702 static bool
6703 resolve_typebound_subroutine (gfc_code *code)
6704 {
6705 gfc_symbol *declared;
6706 gfc_component *c;
6707 gfc_ref *new_ref;
6708 gfc_ref *class_ref;
6709 gfc_symtree *st;
6710 const char *name;
6711 gfc_typespec ts;
6712 gfc_expr *expr;
6713 bool overridable;
6714
6715 st = code->expr1->symtree;
6716
6717 /* Deal with typebound operators for CLASS objects. */
6718 expr = code->expr1->value.compcall.base_object;
6719 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6720 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6721 {
6722 /* If the base_object is not a variable, the corresponding actual
6723 argument expression must be stored in e->base_expression so
6724 that the corresponding tree temporary can be used as the base
6725 object in gfc_conv_procedure_call. */
6726 if (expr->expr_type != EXPR_VARIABLE)
6727 {
6728 gfc_actual_arglist *args;
6729
6730 args= code->expr1->value.function.actual;
6731 for (; args; args = args->next)
6732 if (expr == args->expr)
6733 expr = args->expr;
6734 }
6735
6736 /* Since the typebound operators are generic, we have to ensure
6737 that any delays in resolution are corrected and that the vtab
6738 is present. */
6739 declared = expr->ts.u.derived;
6740 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6741 if (c->ts.u.derived == NULL)
6742 c->ts.u.derived = gfc_find_derived_vtab (declared);
6743
6744 if (!resolve_typebound_call (code, &name, NULL))
6745 return false;
6746
6747 /* Use the generic name if it is there. */
6748 name = name ? name : code->expr1->value.function.esym->name;
6749 code->expr1->symtree = expr->symtree;
6750 code->expr1->ref = gfc_copy_ref (expr->ref);
6751
6752 /* Trim away the extraneous references that emerge from nested
6753 use of interface.c (extend_expr). */
6754 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6755 if (class_ref && class_ref->next)
6756 {
6757 gfc_free_ref_list (class_ref->next);
6758 class_ref->next = NULL;
6759 }
6760 else if (code->expr1->ref && !class_ref)
6761 {
6762 gfc_free_ref_list (code->expr1->ref);
6763 code->expr1->ref = NULL;
6764 }
6765
6766 /* Now use the procedure in the vtable. */
6767 gfc_add_vptr_component (code->expr1);
6768 gfc_add_component_ref (code->expr1, name);
6769 code->expr1->value.function.esym = NULL;
6770 if (expr->expr_type != EXPR_VARIABLE)
6771 code->expr1->base_expr = expr;
6772 return true;
6773 }
6774
6775 if (st == NULL)
6776 return resolve_typebound_call (code, NULL, NULL);
6777
6778 if (!resolve_ref (code->expr1))
6779 return false;
6780
6781 /* Get the CLASS declared type. */
6782 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6783
6784 /* Weed out cases of the ultimate component being a derived type. */
6785 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6786 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6787 {
6788 gfc_free_ref_list (new_ref);
6789 return resolve_typebound_call (code, NULL, NULL);
6790 }
6791
6792 if (!resolve_typebound_call (code, &name, &overridable))
6793 {
6794 gfc_free_ref_list (new_ref);
6795 return false;
6796 }
6797 ts = code->expr1->ts;
6798
6799 if (overridable)
6800 {
6801 /* Convert the expression to a procedure pointer component call. */
6802 code->expr1->value.function.esym = NULL;
6803 code->expr1->symtree = st;
6804
6805 if (new_ref)
6806 code->expr1->ref = new_ref;
6807
6808 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6809 gfc_add_vptr_component (code->expr1);
6810 gfc_add_component_ref (code->expr1, name);
6811
6812 /* Recover the typespec for the expression. This is really only
6813 necessary for generic procedures, where the additional call
6814 to gfc_add_component_ref seems to throw the collection of the
6815 correct typespec. */
6816 code->expr1->ts = ts;
6817 }
6818 else if (new_ref)
6819 gfc_free_ref_list (new_ref);
6820
6821 return true;
6822 }
6823
6824
6825 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6826
6827 static bool
6828 resolve_ppc_call (gfc_code* c)
6829 {
6830 gfc_component *comp;
6831
6832 comp = gfc_get_proc_ptr_comp (c->expr1);
6833 gcc_assert (comp != NULL);
6834
6835 c->resolved_sym = c->expr1->symtree->n.sym;
6836 c->expr1->expr_type = EXPR_VARIABLE;
6837
6838 if (!comp->attr.subroutine)
6839 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6840
6841 if (!resolve_ref (c->expr1))
6842 return false;
6843
6844 if (!update_ppc_arglist (c->expr1))
6845 return false;
6846
6847 c->ext.actual = c->expr1->value.compcall.actual;
6848
6849 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6850 !(comp->ts.interface
6851 && comp->ts.interface->formal)))
6852 return false;
6853
6854 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6855 return false;
6856
6857 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6858
6859 return true;
6860 }
6861
6862
6863 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6864
6865 static bool
6866 resolve_expr_ppc (gfc_expr* e)
6867 {
6868 gfc_component *comp;
6869
6870 comp = gfc_get_proc_ptr_comp (e);
6871 gcc_assert (comp != NULL);
6872
6873 /* Convert to EXPR_FUNCTION. */
6874 e->expr_type = EXPR_FUNCTION;
6875 e->value.function.isym = NULL;
6876 e->value.function.actual = e->value.compcall.actual;
6877 e->ts = comp->ts;
6878 if (comp->as != NULL)
6879 e->rank = comp->as->rank;
6880
6881 if (!comp->attr.function)
6882 gfc_add_function (&comp->attr, comp->name, &e->where);
6883
6884 if (!resolve_ref (e))
6885 return false;
6886
6887 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6888 !(comp->ts.interface
6889 && comp->ts.interface->formal)))
6890 return false;
6891
6892 if (!update_ppc_arglist (e))
6893 return false;
6894
6895 if (!check_pure_function(e))
6896 return false;
6897
6898 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6899
6900 return true;
6901 }
6902
6903
6904 static bool
6905 gfc_is_expandable_expr (gfc_expr *e)
6906 {
6907 gfc_constructor *con;
6908
6909 if (e->expr_type == EXPR_ARRAY)
6910 {
6911 /* Traverse the constructor looking for variables that are flavor
6912 parameter. Parameters must be expanded since they are fully used at
6913 compile time. */
6914 con = gfc_constructor_first (e->value.constructor);
6915 for (; con; con = gfc_constructor_next (con))
6916 {
6917 if (con->expr->expr_type == EXPR_VARIABLE
6918 && con->expr->symtree
6919 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6920 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6921 return true;
6922 if (con->expr->expr_type == EXPR_ARRAY
6923 && gfc_is_expandable_expr (con->expr))
6924 return true;
6925 }
6926 }
6927
6928 return false;
6929 }
6930
6931
6932 /* Sometimes variables in specification expressions of the result
6933 of module procedures in submodules wind up not being the 'real'
6934 dummy. Find this, if possible, in the namespace of the first
6935 formal argument. */
6936
6937 static void
6938 fixup_unique_dummy (gfc_expr *e)
6939 {
6940 gfc_symtree *st = NULL;
6941 gfc_symbol *s = NULL;
6942
6943 if (e->symtree->n.sym->ns->proc_name
6944 && e->symtree->n.sym->ns->proc_name->formal)
6945 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6946
6947 if (s != NULL)
6948 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6949
6950 if (st != NULL
6951 && st->n.sym != NULL
6952 && st->n.sym->attr.dummy)
6953 e->symtree = st;
6954 }
6955
6956 /* Resolve an expression. That is, make sure that types of operands agree
6957 with their operators, intrinsic operators are converted to function calls
6958 for overloaded types and unresolved function references are resolved. */
6959
6960 bool
6961 gfc_resolve_expr (gfc_expr *e)
6962 {
6963 bool t;
6964 bool inquiry_save, actual_arg_save, first_actual_arg_save;
6965
6966 if (e == NULL || e->do_not_resolve_again)
6967 return true;
6968
6969 /* inquiry_argument only applies to variables. */
6970 inquiry_save = inquiry_argument;
6971 actual_arg_save = actual_arg;
6972 first_actual_arg_save = first_actual_arg;
6973
6974 if (e->expr_type != EXPR_VARIABLE)
6975 {
6976 inquiry_argument = false;
6977 actual_arg = false;
6978 first_actual_arg = false;
6979 }
6980 else if (e->symtree != NULL
6981 && *e->symtree->name == '@'
6982 && e->symtree->n.sym->attr.dummy)
6983 {
6984 /* Deal with submodule specification expressions that are not
6985 found to be referenced in module.c(read_cleanup). */
6986 fixup_unique_dummy (e);
6987 }
6988
6989 switch (e->expr_type)
6990 {
6991 case EXPR_OP:
6992 t = resolve_operator (e);
6993 break;
6994
6995 case EXPR_FUNCTION:
6996 case EXPR_VARIABLE:
6997
6998 if (check_host_association (e))
6999 t = resolve_function (e);
7000 else
7001 t = resolve_variable (e);
7002
7003 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
7004 && e->ref->type != REF_SUBSTRING)
7005 gfc_resolve_substring_charlen (e);
7006
7007 break;
7008
7009 case EXPR_COMPCALL:
7010 t = resolve_typebound_function (e);
7011 break;
7012
7013 case EXPR_SUBSTRING:
7014 t = resolve_ref (e);
7015 break;
7016
7017 case EXPR_CONSTANT:
7018 case EXPR_NULL:
7019 t = true;
7020 break;
7021
7022 case EXPR_PPC:
7023 t = resolve_expr_ppc (e);
7024 break;
7025
7026 case EXPR_ARRAY:
7027 t = false;
7028 if (!resolve_ref (e))
7029 break;
7030
7031 t = gfc_resolve_array_constructor (e);
7032 /* Also try to expand a constructor. */
7033 if (t)
7034 {
7035 expression_rank (e);
7036 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
7037 gfc_expand_constructor (e, false);
7038 }
7039
7040 /* This provides the opportunity for the length of constructors with
7041 character valued function elements to propagate the string length
7042 to the expression. */
7043 if (t && e->ts.type == BT_CHARACTER)
7044 {
7045 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
7046 here rather then add a duplicate test for it above. */
7047 gfc_expand_constructor (e, false);
7048 t = gfc_resolve_character_array_constructor (e);
7049 }
7050
7051 break;
7052
7053 case EXPR_STRUCTURE:
7054 t = resolve_ref (e);
7055 if (!t)
7056 break;
7057
7058 t = resolve_structure_cons (e, 0);
7059 if (!t)
7060 break;
7061
7062 t = gfc_simplify_expr (e, 0);
7063 break;
7064
7065 default:
7066 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
7067 }
7068
7069 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
7070 fixup_charlen (e);
7071
7072 inquiry_argument = inquiry_save;
7073 actual_arg = actual_arg_save;
7074 first_actual_arg = first_actual_arg_save;
7075
7076 /* For some reason, resolving these expressions a second time mangles
7077 the typespec of the expression itself. */
7078 if (t && e->expr_type == EXPR_VARIABLE
7079 && e->symtree->n.sym->attr.select_rank_temporary
7080 && UNLIMITED_POLY (e->symtree->n.sym))
7081 e->do_not_resolve_again = 1;
7082
7083 return t;
7084 }
7085
7086
7087 /* Resolve an expression from an iterator. They must be scalar and have
7088 INTEGER or (optionally) REAL type. */
7089
7090 static bool
7091 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
7092 const char *name_msgid)
7093 {
7094 if (!gfc_resolve_expr (expr))
7095 return false;
7096
7097 if (expr->rank != 0)
7098 {
7099 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
7100 return false;
7101 }
7102
7103 if (expr->ts.type != BT_INTEGER)
7104 {
7105 if (expr->ts.type == BT_REAL)
7106 {
7107 if (real_ok)
7108 return gfc_notify_std (GFC_STD_F95_DEL,
7109 "%s at %L must be integer",
7110 _(name_msgid), &expr->where);
7111 else
7112 {
7113 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
7114 &expr->where);
7115 return false;
7116 }
7117 }
7118 else
7119 {
7120 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
7121 return false;
7122 }
7123 }
7124 return true;
7125 }
7126
7127
7128 /* Resolve the expressions in an iterator structure. If REAL_OK is
7129 false allow only INTEGER type iterators, otherwise allow REAL types.
7130 Set own_scope to true for ac-implied-do and data-implied-do as those
7131 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
7132
7133 bool
7134 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
7135 {
7136 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
7137 return false;
7138
7139 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
7140 _("iterator variable")))
7141 return false;
7142
7143 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
7144 "Start expression in DO loop"))
7145 return false;
7146
7147 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
7148 "End expression in DO loop"))
7149 return false;
7150
7151 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
7152 "Step expression in DO loop"))
7153 return false;
7154
7155 /* Convert start, end, and step to the same type as var. */
7156 if (iter->start->ts.kind != iter->var->ts.kind
7157 || iter->start->ts.type != iter->var->ts.type)
7158 gfc_convert_type (iter->start, &iter->var->ts, 1);
7159
7160 if (iter->end->ts.kind != iter->var->ts.kind
7161 || iter->end->ts.type != iter->var->ts.type)
7162 gfc_convert_type (iter->end, &iter->var->ts, 1);
7163
7164 if (iter->step->ts.kind != iter->var->ts.kind
7165 || iter->step->ts.type != iter->var->ts.type)
7166 gfc_convert_type (iter->step, &iter->var->ts, 1);
7167
7168 if (iter->step->expr_type == EXPR_CONSTANT)
7169 {
7170 if ((iter->step->ts.type == BT_INTEGER
7171 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
7172 || (iter->step->ts.type == BT_REAL
7173 && mpfr_sgn (iter->step->value.real) == 0))
7174 {
7175 gfc_error ("Step expression in DO loop at %L cannot be zero",
7176 &iter->step->where);
7177 return false;
7178 }
7179 }
7180
7181 if (iter->start->expr_type == EXPR_CONSTANT
7182 && iter->end->expr_type == EXPR_CONSTANT
7183 && iter->step->expr_type == EXPR_CONSTANT)
7184 {
7185 int sgn, cmp;
7186 if (iter->start->ts.type == BT_INTEGER)
7187 {
7188 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
7189 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
7190 }
7191 else
7192 {
7193 sgn = mpfr_sgn (iter->step->value.real);
7194 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
7195 }
7196 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
7197 gfc_warning (OPT_Wzerotrip,
7198 "DO loop at %L will be executed zero times",
7199 &iter->step->where);
7200 }
7201
7202 if (iter->end->expr_type == EXPR_CONSTANT
7203 && iter->end->ts.type == BT_INTEGER
7204 && iter->step->expr_type == EXPR_CONSTANT
7205 && iter->step->ts.type == BT_INTEGER
7206 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
7207 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
7208 {
7209 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
7210 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
7211
7212 if (is_step_positive
7213 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
7214 gfc_warning (OPT_Wundefined_do_loop,
7215 "DO loop at %L is undefined as it overflows",
7216 &iter->step->where);
7217 else if (!is_step_positive
7218 && mpz_cmp (iter->end->value.integer,
7219 gfc_integer_kinds[k].min_int) == 0)
7220 gfc_warning (OPT_Wundefined_do_loop,
7221 "DO loop at %L is undefined as it underflows",
7222 &iter->step->where);
7223 }
7224
7225 return true;
7226 }
7227
7228
7229 /* Traversal function for find_forall_index. f == 2 signals that
7230 that variable itself is not to be checked - only the references. */
7231
7232 static bool
7233 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
7234 {
7235 if (expr->expr_type != EXPR_VARIABLE)
7236 return false;
7237
7238 /* A scalar assignment */
7239 if (!expr->ref || *f == 1)
7240 {
7241 if (expr->symtree->n.sym == sym)
7242 return true;
7243 else
7244 return false;
7245 }
7246
7247 if (*f == 2)
7248 *f = 1;
7249 return false;
7250 }
7251
7252
7253 /* Check whether the FORALL index appears in the expression or not.
7254 Returns true if SYM is found in EXPR. */
7255
7256 bool
7257 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
7258 {
7259 if (gfc_traverse_expr (expr, sym, forall_index, f))
7260 return true;
7261 else
7262 return false;
7263 }
7264
7265
7266 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
7267 to be a scalar INTEGER variable. The subscripts and stride are scalar
7268 INTEGERs, and if stride is a constant it must be nonzero.
7269 Furthermore "A subscript or stride in a forall-triplet-spec shall
7270 not contain a reference to any index-name in the
7271 forall-triplet-spec-list in which it appears." (7.5.4.1) */
7272
7273 static void
7274 resolve_forall_iterators (gfc_forall_iterator *it)
7275 {
7276 gfc_forall_iterator *iter, *iter2;
7277
7278 for (iter = it; iter; iter = iter->next)
7279 {
7280 if (gfc_resolve_expr (iter->var)
7281 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
7282 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
7283 &iter->var->where);
7284
7285 if (gfc_resolve_expr (iter->start)
7286 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
7287 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
7288 &iter->start->where);
7289 if (iter->var->ts.kind != iter->start->ts.kind)
7290 gfc_convert_type (iter->start, &iter->var->ts, 1);
7291
7292 if (gfc_resolve_expr (iter->end)
7293 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
7294 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
7295 &iter->end->where);
7296 if (iter->var->ts.kind != iter->end->ts.kind)
7297 gfc_convert_type (iter->end, &iter->var->ts, 1);
7298
7299 if (gfc_resolve_expr (iter->stride))
7300 {
7301 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7302 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7303 &iter->stride->where, "INTEGER");
7304
7305 if (iter->stride->expr_type == EXPR_CONSTANT
7306 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7307 gfc_error ("FORALL stride expression at %L cannot be zero",
7308 &iter->stride->where);
7309 }
7310 if (iter->var->ts.kind != iter->stride->ts.kind)
7311 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7312 }
7313
7314 for (iter = it; iter; iter = iter->next)
7315 for (iter2 = iter; iter2; iter2 = iter2->next)
7316 {
7317 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7318 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7319 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7320 gfc_error ("FORALL index %qs may not appear in triplet "
7321 "specification at %L", iter->var->symtree->name,
7322 &iter2->start->where);
7323 }
7324 }
7325
7326
7327 /* Given a pointer to a symbol that is a derived type, see if it's
7328 inaccessible, i.e. if it's defined in another module and the components are
7329 PRIVATE. The search is recursive if necessary. Returns zero if no
7330 inaccessible components are found, nonzero otherwise. */
7331
7332 static int
7333 derived_inaccessible (gfc_symbol *sym)
7334 {
7335 gfc_component *c;
7336
7337 if (sym->attr.use_assoc && sym->attr.private_comp)
7338 return 1;
7339
7340 for (c = sym->components; c; c = c->next)
7341 {
7342 /* Prevent an infinite loop through this function. */
7343 if (c->ts.type == BT_DERIVED && c->attr.pointer
7344 && sym == c->ts.u.derived)
7345 continue;
7346
7347 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7348 return 1;
7349 }
7350
7351 return 0;
7352 }
7353
7354
7355 /* Resolve the argument of a deallocate expression. The expression must be
7356 a pointer or a full array. */
7357
7358 static bool
7359 resolve_deallocate_expr (gfc_expr *e)
7360 {
7361 symbol_attribute attr;
7362 int allocatable, pointer;
7363 gfc_ref *ref;
7364 gfc_symbol *sym;
7365 gfc_component *c;
7366 bool unlimited;
7367
7368 if (!gfc_resolve_expr (e))
7369 return false;
7370
7371 if (e->expr_type != EXPR_VARIABLE)
7372 goto bad;
7373
7374 sym = e->symtree->n.sym;
7375 unlimited = UNLIMITED_POLY(sym);
7376
7377 if (sym->ts.type == BT_CLASS)
7378 {
7379 allocatable = CLASS_DATA (sym)->attr.allocatable;
7380 pointer = CLASS_DATA (sym)->attr.class_pointer;
7381 }
7382 else
7383 {
7384 allocatable = sym->attr.allocatable;
7385 pointer = sym->attr.pointer;
7386 }
7387 for (ref = e->ref; ref; ref = ref->next)
7388 {
7389 switch (ref->type)
7390 {
7391 case REF_ARRAY:
7392 if (ref->u.ar.type != AR_FULL
7393 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7394 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7395 allocatable = 0;
7396 break;
7397
7398 case REF_COMPONENT:
7399 c = ref->u.c.component;
7400 if (c->ts.type == BT_CLASS)
7401 {
7402 allocatable = CLASS_DATA (c)->attr.allocatable;
7403 pointer = CLASS_DATA (c)->attr.class_pointer;
7404 }
7405 else
7406 {
7407 allocatable = c->attr.allocatable;
7408 pointer = c->attr.pointer;
7409 }
7410 break;
7411
7412 case REF_SUBSTRING:
7413 case REF_INQUIRY:
7414 allocatable = 0;
7415 break;
7416 }
7417 }
7418
7419 attr = gfc_expr_attr (e);
7420
7421 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7422 {
7423 bad:
7424 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7425 &e->where);
7426 return false;
7427 }
7428
7429 /* F2008, C644. */
7430 if (gfc_is_coindexed (e))
7431 {
7432 gfc_error ("Coindexed allocatable object at %L", &e->where);
7433 return false;
7434 }
7435
7436 if (pointer
7437 && !gfc_check_vardef_context (e, true, true, false,
7438 _("DEALLOCATE object")))
7439 return false;
7440 if (!gfc_check_vardef_context (e, false, true, false,
7441 _("DEALLOCATE object")))
7442 return false;
7443
7444 return true;
7445 }
7446
7447
7448 /* Returns true if the expression e contains a reference to the symbol sym. */
7449 static bool
7450 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7451 {
7452 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7453 return true;
7454
7455 return false;
7456 }
7457
7458 bool
7459 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7460 {
7461 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7462 }
7463
7464
7465 /* Given the expression node e for an allocatable/pointer of derived type to be
7466 allocated, get the expression node to be initialized afterwards (needed for
7467 derived types with default initializers, and derived types with allocatable
7468 components that need nullification.) */
7469
7470 gfc_expr *
7471 gfc_expr_to_initialize (gfc_expr *e)
7472 {
7473 gfc_expr *result;
7474 gfc_ref *ref;
7475 int i;
7476
7477 result = gfc_copy_expr (e);
7478
7479 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7480 for (ref = result->ref; ref; ref = ref->next)
7481 if (ref->type == REF_ARRAY && ref->next == NULL)
7482 {
7483 if (ref->u.ar.dimen == 0
7484 && ref->u.ar.as && ref->u.ar.as->corank)
7485 return result;
7486
7487 ref->u.ar.type = AR_FULL;
7488
7489 for (i = 0; i < ref->u.ar.dimen; i++)
7490 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7491
7492 break;
7493 }
7494
7495 gfc_free_shape (&result->shape, result->rank);
7496
7497 /* Recalculate rank, shape, etc. */
7498 gfc_resolve_expr (result);
7499 return result;
7500 }
7501
7502
7503 /* If the last ref of an expression is an array ref, return a copy of the
7504 expression with that one removed. Otherwise, a copy of the original
7505 expression. This is used for allocate-expressions and pointer assignment
7506 LHS, where there may be an array specification that needs to be stripped
7507 off when using gfc_check_vardef_context. */
7508
7509 static gfc_expr*
7510 remove_last_array_ref (gfc_expr* e)
7511 {
7512 gfc_expr* e2;
7513 gfc_ref** r;
7514
7515 e2 = gfc_copy_expr (e);
7516 for (r = &e2->ref; *r; r = &(*r)->next)
7517 if ((*r)->type == REF_ARRAY && !(*r)->next)
7518 {
7519 gfc_free_ref_list (*r);
7520 *r = NULL;
7521 break;
7522 }
7523
7524 return e2;
7525 }
7526
7527
7528 /* Used in resolve_allocate_expr to check that a allocation-object and
7529 a source-expr are conformable. This does not catch all possible
7530 cases; in particular a runtime checking is needed. */
7531
7532 static bool
7533 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7534 {
7535 gfc_ref *tail;
7536 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7537
7538 /* First compare rank. */
7539 if ((tail && (!tail->u.ar.as || e1->rank != tail->u.ar.as->rank))
7540 || (!tail && e1->rank != e2->rank))
7541 {
7542 gfc_error ("Source-expr at %L must be scalar or have the "
7543 "same rank as the allocate-object at %L",
7544 &e1->where, &e2->where);
7545 return false;
7546 }
7547
7548 if (e1->shape)
7549 {
7550 int i;
7551 mpz_t s;
7552
7553 mpz_init (s);
7554
7555 for (i = 0; i < e1->rank; i++)
7556 {
7557 if (tail->u.ar.start[i] == NULL)
7558 break;
7559
7560 if (tail->u.ar.end[i])
7561 {
7562 mpz_set (s, tail->u.ar.end[i]->value.integer);
7563 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7564 mpz_add_ui (s, s, 1);
7565 }
7566 else
7567 {
7568 mpz_set (s, tail->u.ar.start[i]->value.integer);
7569 }
7570
7571 if (mpz_cmp (e1->shape[i], s) != 0)
7572 {
7573 gfc_error ("Source-expr at %L and allocate-object at %L must "
7574 "have the same shape", &e1->where, &e2->where);
7575 mpz_clear (s);
7576 return false;
7577 }
7578 }
7579
7580 mpz_clear (s);
7581 }
7582
7583 return true;
7584 }
7585
7586
7587 /* Resolve the expression in an ALLOCATE statement, doing the additional
7588 checks to see whether the expression is OK or not. The expression must
7589 have a trailing array reference that gives the size of the array. */
7590
7591 static bool
7592 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7593 {
7594 int i, pointer, allocatable, dimension, is_abstract;
7595 int codimension;
7596 bool coindexed;
7597 bool unlimited;
7598 symbol_attribute attr;
7599 gfc_ref *ref, *ref2;
7600 gfc_expr *e2;
7601 gfc_array_ref *ar;
7602 gfc_symbol *sym = NULL;
7603 gfc_alloc *a;
7604 gfc_component *c;
7605 bool t;
7606
7607 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7608 checking of coarrays. */
7609 for (ref = e->ref; ref; ref = ref->next)
7610 if (ref->next == NULL)
7611 break;
7612
7613 if (ref && ref->type == REF_ARRAY)
7614 ref->u.ar.in_allocate = true;
7615
7616 if (!gfc_resolve_expr (e))
7617 goto failure;
7618
7619 /* Make sure the expression is allocatable or a pointer. If it is
7620 pointer, the next-to-last reference must be a pointer. */
7621
7622 ref2 = NULL;
7623 if (e->symtree)
7624 sym = e->symtree->n.sym;
7625
7626 /* Check whether ultimate component is abstract and CLASS. */
7627 is_abstract = 0;
7628
7629 /* Is the allocate-object unlimited polymorphic? */
7630 unlimited = UNLIMITED_POLY(e);
7631
7632 if (e->expr_type != EXPR_VARIABLE)
7633 {
7634 allocatable = 0;
7635 attr = gfc_expr_attr (e);
7636 pointer = attr.pointer;
7637 dimension = attr.dimension;
7638 codimension = attr.codimension;
7639 }
7640 else
7641 {
7642 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7643 {
7644 allocatable = CLASS_DATA (sym)->attr.allocatable;
7645 pointer = CLASS_DATA (sym)->attr.class_pointer;
7646 dimension = CLASS_DATA (sym)->attr.dimension;
7647 codimension = CLASS_DATA (sym)->attr.codimension;
7648 is_abstract = CLASS_DATA (sym)->attr.abstract;
7649 }
7650 else
7651 {
7652 allocatable = sym->attr.allocatable;
7653 pointer = sym->attr.pointer;
7654 dimension = sym->attr.dimension;
7655 codimension = sym->attr.codimension;
7656 }
7657
7658 coindexed = false;
7659
7660 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7661 {
7662 switch (ref->type)
7663 {
7664 case REF_ARRAY:
7665 if (ref->u.ar.codimen > 0)
7666 {
7667 int n;
7668 for (n = ref->u.ar.dimen;
7669 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7670 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7671 {
7672 coindexed = true;
7673 break;
7674 }
7675 }
7676
7677 if (ref->next != NULL)
7678 pointer = 0;
7679 break;
7680
7681 case REF_COMPONENT:
7682 /* F2008, C644. */
7683 if (coindexed)
7684 {
7685 gfc_error ("Coindexed allocatable object at %L",
7686 &e->where);
7687 goto failure;
7688 }
7689
7690 c = ref->u.c.component;
7691 if (c->ts.type == BT_CLASS)
7692 {
7693 allocatable = CLASS_DATA (c)->attr.allocatable;
7694 pointer = CLASS_DATA (c)->attr.class_pointer;
7695 dimension = CLASS_DATA (c)->attr.dimension;
7696 codimension = CLASS_DATA (c)->attr.codimension;
7697 is_abstract = CLASS_DATA (c)->attr.abstract;
7698 }
7699 else
7700 {
7701 allocatable = c->attr.allocatable;
7702 pointer = c->attr.pointer;
7703 dimension = c->attr.dimension;
7704 codimension = c->attr.codimension;
7705 is_abstract = c->attr.abstract;
7706 }
7707 break;
7708
7709 case REF_SUBSTRING:
7710 case REF_INQUIRY:
7711 allocatable = 0;
7712 pointer = 0;
7713 break;
7714 }
7715 }
7716 }
7717
7718 /* Check for F08:C628. */
7719 if (allocatable == 0 && pointer == 0 && !unlimited)
7720 {
7721 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7722 &e->where);
7723 goto failure;
7724 }
7725
7726 /* Some checks for the SOURCE tag. */
7727 if (code->expr3)
7728 {
7729 /* Check F03:C631. */
7730 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7731 {
7732 gfc_error ("Type of entity at %L is type incompatible with "
7733 "source-expr at %L", &e->where, &code->expr3->where);
7734 goto failure;
7735 }
7736
7737 /* Check F03:C632 and restriction following Note 6.18. */
7738 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7739 goto failure;
7740
7741 /* Check F03:C633. */
7742 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7743 {
7744 gfc_error ("The allocate-object at %L and the source-expr at %L "
7745 "shall have the same kind type parameter",
7746 &e->where, &code->expr3->where);
7747 goto failure;
7748 }
7749
7750 /* Check F2008, C642. */
7751 if (code->expr3->ts.type == BT_DERIVED
7752 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7753 || (code->expr3->ts.u.derived->from_intmod
7754 == INTMOD_ISO_FORTRAN_ENV
7755 && code->expr3->ts.u.derived->intmod_sym_id
7756 == ISOFORTRAN_LOCK_TYPE)))
7757 {
7758 gfc_error ("The source-expr at %L shall neither be of type "
7759 "LOCK_TYPE nor have a LOCK_TYPE component if "
7760 "allocate-object at %L is a coarray",
7761 &code->expr3->where, &e->where);
7762 goto failure;
7763 }
7764
7765 /* Check TS18508, C702/C703. */
7766 if (code->expr3->ts.type == BT_DERIVED
7767 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7768 || (code->expr3->ts.u.derived->from_intmod
7769 == INTMOD_ISO_FORTRAN_ENV
7770 && code->expr3->ts.u.derived->intmod_sym_id
7771 == ISOFORTRAN_EVENT_TYPE)))
7772 {
7773 gfc_error ("The source-expr at %L shall neither be of type "
7774 "EVENT_TYPE nor have a EVENT_TYPE component if "
7775 "allocate-object at %L is a coarray",
7776 &code->expr3->where, &e->where);
7777 goto failure;
7778 }
7779 }
7780
7781 /* Check F08:C629. */
7782 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7783 && !code->expr3)
7784 {
7785 gcc_assert (e->ts.type == BT_CLASS);
7786 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7787 "type-spec or source-expr", sym->name, &e->where);
7788 goto failure;
7789 }
7790
7791 /* Check F08:C632. */
7792 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7793 && !UNLIMITED_POLY (e))
7794 {
7795 int cmp;
7796
7797 if (!e->ts.u.cl->length)
7798 goto failure;
7799
7800 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7801 code->ext.alloc.ts.u.cl->length);
7802 if (cmp == 1 || cmp == -1 || cmp == -3)
7803 {
7804 gfc_error ("Allocating %s at %L with type-spec requires the same "
7805 "character-length parameter as in the declaration",
7806 sym->name, &e->where);
7807 goto failure;
7808 }
7809 }
7810
7811 /* In the variable definition context checks, gfc_expr_attr is used
7812 on the expression. This is fooled by the array specification
7813 present in e, thus we have to eliminate that one temporarily. */
7814 e2 = remove_last_array_ref (e);
7815 t = true;
7816 if (t && pointer)
7817 t = gfc_check_vardef_context (e2, true, true, false,
7818 _("ALLOCATE object"));
7819 if (t)
7820 t = gfc_check_vardef_context (e2, false, true, false,
7821 _("ALLOCATE object"));
7822 gfc_free_expr (e2);
7823 if (!t)
7824 goto failure;
7825
7826 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7827 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7828 {
7829 /* For class arrays, the initialization with SOURCE is done
7830 using _copy and trans_call. It is convenient to exploit that
7831 when the allocated type is different from the declared type but
7832 no SOURCE exists by setting expr3. */
7833 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7834 }
7835 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7836 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7837 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7838 {
7839 /* We have to zero initialize the integer variable. */
7840 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7841 }
7842
7843 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7844 {
7845 /* Make sure the vtab symbol is present when
7846 the module variables are generated. */
7847 gfc_typespec ts = e->ts;
7848 if (code->expr3)
7849 ts = code->expr3->ts;
7850 else if (code->ext.alloc.ts.type == BT_DERIVED)
7851 ts = code->ext.alloc.ts;
7852
7853 /* Finding the vtab also publishes the type's symbol. Therefore this
7854 statement is necessary. */
7855 gfc_find_derived_vtab (ts.u.derived);
7856 }
7857 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7858 {
7859 /* Again, make sure the vtab symbol is present when
7860 the module variables are generated. */
7861 gfc_typespec *ts = NULL;
7862 if (code->expr3)
7863 ts = &code->expr3->ts;
7864 else
7865 ts = &code->ext.alloc.ts;
7866
7867 gcc_assert (ts);
7868
7869 /* Finding the vtab also publishes the type's symbol. Therefore this
7870 statement is necessary. */
7871 gfc_find_vtab (ts);
7872 }
7873
7874 if (dimension == 0 && codimension == 0)
7875 goto success;
7876
7877 /* Make sure the last reference node is an array specification. */
7878
7879 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7880 || (dimension && ref2->u.ar.dimen == 0))
7881 {
7882 /* F08:C633. */
7883 if (code->expr3)
7884 {
7885 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7886 "in ALLOCATE statement at %L", &e->where))
7887 goto failure;
7888 if (code->expr3->rank != 0)
7889 *array_alloc_wo_spec = true;
7890 else
7891 {
7892 gfc_error ("Array specification or array-valued SOURCE= "
7893 "expression required in ALLOCATE statement at %L",
7894 &e->where);
7895 goto failure;
7896 }
7897 }
7898 else
7899 {
7900 gfc_error ("Array specification required in ALLOCATE statement "
7901 "at %L", &e->where);
7902 goto failure;
7903 }
7904 }
7905
7906 /* Make sure that the array section reference makes sense in the
7907 context of an ALLOCATE specification. */
7908
7909 ar = &ref2->u.ar;
7910
7911 if (codimension)
7912 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7913 {
7914 switch (ar->dimen_type[i])
7915 {
7916 case DIMEN_THIS_IMAGE:
7917 gfc_error ("Coarray specification required in ALLOCATE statement "
7918 "at %L", &e->where);
7919 goto failure;
7920
7921 case DIMEN_RANGE:
7922 if (ar->start[i] == 0 || ar->end[i] == 0)
7923 {
7924 /* If ar->stride[i] is NULL, we issued a previous error. */
7925 if (ar->stride[i] == NULL)
7926 gfc_error ("Bad array specification in ALLOCATE statement "
7927 "at %L", &e->where);
7928 goto failure;
7929 }
7930 else if (gfc_dep_compare_expr (ar->start[i], ar->end[i]) == 1)
7931 {
7932 gfc_error ("Upper cobound is less than lower cobound at %L",
7933 &ar->start[i]->where);
7934 goto failure;
7935 }
7936 break;
7937
7938 case DIMEN_ELEMENT:
7939 if (ar->start[i]->expr_type == EXPR_CONSTANT)
7940 {
7941 gcc_assert (ar->start[i]->ts.type == BT_INTEGER);
7942 if (mpz_cmp_si (ar->start[i]->value.integer, 1) < 0)
7943 {
7944 gfc_error ("Upper cobound is less than lower cobound "
7945 "of 1 at %L", &ar->start[i]->where);
7946 goto failure;
7947 }
7948 }
7949 break;
7950
7951 case DIMEN_STAR:
7952 break;
7953
7954 default:
7955 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7956 &e->where);
7957 goto failure;
7958
7959 }
7960 }
7961 for (i = 0; i < ar->dimen; i++)
7962 {
7963 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
7964 goto check_symbols;
7965
7966 switch (ar->dimen_type[i])
7967 {
7968 case DIMEN_ELEMENT:
7969 break;
7970
7971 case DIMEN_RANGE:
7972 if (ar->start[i] != NULL
7973 && ar->end[i] != NULL
7974 && ar->stride[i] == NULL)
7975 break;
7976
7977 /* Fall through. */
7978
7979 case DIMEN_UNKNOWN:
7980 case DIMEN_VECTOR:
7981 case DIMEN_STAR:
7982 case DIMEN_THIS_IMAGE:
7983 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7984 &e->where);
7985 goto failure;
7986 }
7987
7988 check_symbols:
7989 for (a = code->ext.alloc.list; a; a = a->next)
7990 {
7991 sym = a->expr->symtree->n.sym;
7992
7993 /* TODO - check derived type components. */
7994 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
7995 continue;
7996
7997 if ((ar->start[i] != NULL
7998 && gfc_find_sym_in_expr (sym, ar->start[i]))
7999 || (ar->end[i] != NULL
8000 && gfc_find_sym_in_expr (sym, ar->end[i])))
8001 {
8002 gfc_error ("%qs must not appear in the array specification at "
8003 "%L in the same ALLOCATE statement where it is "
8004 "itself allocated", sym->name, &ar->where);
8005 goto failure;
8006 }
8007 }
8008 }
8009
8010 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
8011 {
8012 if (ar->dimen_type[i] == DIMEN_ELEMENT
8013 || ar->dimen_type[i] == DIMEN_RANGE)
8014 {
8015 if (i == (ar->dimen + ar->codimen - 1))
8016 {
8017 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
8018 "statement at %L", &e->where);
8019 goto failure;
8020 }
8021 continue;
8022 }
8023
8024 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
8025 && ar->stride[i] == NULL)
8026 break;
8027
8028 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
8029 &e->where);
8030 goto failure;
8031 }
8032
8033 success:
8034 return true;
8035
8036 failure:
8037 return false;
8038 }
8039
8040
8041 static void
8042 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
8043 {
8044 gfc_expr *stat, *errmsg, *pe, *qe;
8045 gfc_alloc *a, *p, *q;
8046
8047 stat = code->expr1;
8048 errmsg = code->expr2;
8049
8050 /* Check the stat variable. */
8051 if (stat)
8052 {
8053 gfc_check_vardef_context (stat, false, false, false,
8054 _("STAT variable"));
8055
8056 if ((stat->ts.type != BT_INTEGER
8057 && !(stat->ref && (stat->ref->type == REF_ARRAY
8058 || stat->ref->type == REF_COMPONENT)))
8059 || stat->rank > 0)
8060 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
8061 "variable", &stat->where);
8062
8063 for (p = code->ext.alloc.list; p; p = p->next)
8064 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
8065 {
8066 gfc_ref *ref1, *ref2;
8067 bool found = true;
8068
8069 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
8070 ref1 = ref1->next, ref2 = ref2->next)
8071 {
8072 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8073 continue;
8074 if (ref1->u.c.component->name != ref2->u.c.component->name)
8075 {
8076 found = false;
8077 break;
8078 }
8079 }
8080
8081 if (found)
8082 {
8083 gfc_error ("Stat-variable at %L shall not be %sd within "
8084 "the same %s statement", &stat->where, fcn, fcn);
8085 break;
8086 }
8087 }
8088 }
8089
8090 /* Check the errmsg variable. */
8091 if (errmsg)
8092 {
8093 if (!stat)
8094 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
8095 &errmsg->where);
8096
8097 gfc_check_vardef_context (errmsg, false, false, false,
8098 _("ERRMSG variable"));
8099
8100 /* F18:R928 alloc-opt is ERRMSG = errmsg-variable
8101 F18:R930 errmsg-variable is scalar-default-char-variable
8102 F18:R906 default-char-variable is variable
8103 F18:C906 default-char-variable shall be default character. */
8104 if ((errmsg->ts.type != BT_CHARACTER
8105 && !(errmsg->ref
8106 && (errmsg->ref->type == REF_ARRAY
8107 || errmsg->ref->type == REF_COMPONENT)))
8108 || errmsg->rank > 0
8109 || errmsg->ts.kind != gfc_default_character_kind)
8110 gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
8111 "variable", &errmsg->where);
8112
8113 for (p = code->ext.alloc.list; p; p = p->next)
8114 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
8115 {
8116 gfc_ref *ref1, *ref2;
8117 bool found = true;
8118
8119 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
8120 ref1 = ref1->next, ref2 = ref2->next)
8121 {
8122 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8123 continue;
8124 if (ref1->u.c.component->name != ref2->u.c.component->name)
8125 {
8126 found = false;
8127 break;
8128 }
8129 }
8130
8131 if (found)
8132 {
8133 gfc_error ("Errmsg-variable at %L shall not be %sd within "
8134 "the same %s statement", &errmsg->where, fcn, fcn);
8135 break;
8136 }
8137 }
8138 }
8139
8140 /* Check that an allocate-object appears only once in the statement. */
8141
8142 for (p = code->ext.alloc.list; p; p = p->next)
8143 {
8144 pe = p->expr;
8145 for (q = p->next; q; q = q->next)
8146 {
8147 qe = q->expr;
8148 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
8149 {
8150 /* This is a potential collision. */
8151 gfc_ref *pr = pe->ref;
8152 gfc_ref *qr = qe->ref;
8153
8154 /* Follow the references until
8155 a) They start to differ, in which case there is no error;
8156 you can deallocate a%b and a%c in a single statement
8157 b) Both of them stop, which is an error
8158 c) One of them stops, which is also an error. */
8159 while (1)
8160 {
8161 if (pr == NULL && qr == NULL)
8162 {
8163 gfc_error ("Allocate-object at %L also appears at %L",
8164 &pe->where, &qe->where);
8165 break;
8166 }
8167 else if (pr != NULL && qr == NULL)
8168 {
8169 gfc_error ("Allocate-object at %L is subobject of"
8170 " object at %L", &pe->where, &qe->where);
8171 break;
8172 }
8173 else if (pr == NULL && qr != NULL)
8174 {
8175 gfc_error ("Allocate-object at %L is subobject of"
8176 " object at %L", &qe->where, &pe->where);
8177 break;
8178 }
8179 /* Here, pr != NULL && qr != NULL */
8180 gcc_assert(pr->type == qr->type);
8181 if (pr->type == REF_ARRAY)
8182 {
8183 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
8184 which are legal. */
8185 gcc_assert (qr->type == REF_ARRAY);
8186
8187 if (pr->next && qr->next)
8188 {
8189 int i;
8190 gfc_array_ref *par = &(pr->u.ar);
8191 gfc_array_ref *qar = &(qr->u.ar);
8192
8193 for (i=0; i<par->dimen; i++)
8194 {
8195 if ((par->start[i] != NULL
8196 || qar->start[i] != NULL)
8197 && gfc_dep_compare_expr (par->start[i],
8198 qar->start[i]) != 0)
8199 goto break_label;
8200 }
8201 }
8202 }
8203 else
8204 {
8205 if (pr->u.c.component->name != qr->u.c.component->name)
8206 break;
8207 }
8208
8209 pr = pr->next;
8210 qr = qr->next;
8211 }
8212 break_label:
8213 ;
8214 }
8215 }
8216 }
8217
8218 if (strcmp (fcn, "ALLOCATE") == 0)
8219 {
8220 bool arr_alloc_wo_spec = false;
8221
8222 /* Resolving the expr3 in the loop over all objects to allocate would
8223 execute loop invariant code for each loop item. Therefore do it just
8224 once here. */
8225 if (code->expr3 && code->expr3->mold
8226 && code->expr3->ts.type == BT_DERIVED)
8227 {
8228 /* Default initialization via MOLD (non-polymorphic). */
8229 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
8230 if (rhs != NULL)
8231 {
8232 gfc_resolve_expr (rhs);
8233 gfc_free_expr (code->expr3);
8234 code->expr3 = rhs;
8235 }
8236 }
8237 for (a = code->ext.alloc.list; a; a = a->next)
8238 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
8239
8240 if (arr_alloc_wo_spec && code->expr3)
8241 {
8242 /* Mark the allocate to have to take the array specification
8243 from the expr3. */
8244 code->ext.alloc.arr_spec_from_expr3 = 1;
8245 }
8246 }
8247 else
8248 {
8249 for (a = code->ext.alloc.list; a; a = a->next)
8250 resolve_deallocate_expr (a->expr);
8251 }
8252 }
8253
8254
8255 /************ SELECT CASE resolution subroutines ************/
8256
8257 /* Callback function for our mergesort variant. Determines interval
8258 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
8259 op1 > op2. Assumes we're not dealing with the default case.
8260 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
8261 There are nine situations to check. */
8262
8263 static int
8264 compare_cases (const gfc_case *op1, const gfc_case *op2)
8265 {
8266 int retval;
8267
8268 if (op1->low == NULL) /* op1 = (:L) */
8269 {
8270 /* op2 = (:N), so overlap. */
8271 retval = 0;
8272 /* op2 = (M:) or (M:N), L < M */
8273 if (op2->low != NULL
8274 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8275 retval = -1;
8276 }
8277 else if (op1->high == NULL) /* op1 = (K:) */
8278 {
8279 /* op2 = (M:), so overlap. */
8280 retval = 0;
8281 /* op2 = (:N) or (M:N), K > N */
8282 if (op2->high != NULL
8283 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8284 retval = 1;
8285 }
8286 else /* op1 = (K:L) */
8287 {
8288 if (op2->low == NULL) /* op2 = (:N), K > N */
8289 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8290 ? 1 : 0;
8291 else if (op2->high == NULL) /* op2 = (M:), L < M */
8292 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8293 ? -1 : 0;
8294 else /* op2 = (M:N) */
8295 {
8296 retval = 0;
8297 /* L < M */
8298 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8299 retval = -1;
8300 /* K > N */
8301 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8302 retval = 1;
8303 }
8304 }
8305
8306 return retval;
8307 }
8308
8309
8310 /* Merge-sort a double linked case list, detecting overlap in the
8311 process. LIST is the head of the double linked case list before it
8312 is sorted. Returns the head of the sorted list if we don't see any
8313 overlap, or NULL otherwise. */
8314
8315 static gfc_case *
8316 check_case_overlap (gfc_case *list)
8317 {
8318 gfc_case *p, *q, *e, *tail;
8319 int insize, nmerges, psize, qsize, cmp, overlap_seen;
8320
8321 /* If the passed list was empty, return immediately. */
8322 if (!list)
8323 return NULL;
8324
8325 overlap_seen = 0;
8326 insize = 1;
8327
8328 /* Loop unconditionally. The only exit from this loop is a return
8329 statement, when we've finished sorting the case list. */
8330 for (;;)
8331 {
8332 p = list;
8333 list = NULL;
8334 tail = NULL;
8335
8336 /* Count the number of merges we do in this pass. */
8337 nmerges = 0;
8338
8339 /* Loop while there exists a merge to be done. */
8340 while (p)
8341 {
8342 int i;
8343
8344 /* Count this merge. */
8345 nmerges++;
8346
8347 /* Cut the list in two pieces by stepping INSIZE places
8348 forward in the list, starting from P. */
8349 psize = 0;
8350 q = p;
8351 for (i = 0; i < insize; i++)
8352 {
8353 psize++;
8354 q = q->right;
8355 if (!q)
8356 break;
8357 }
8358 qsize = insize;
8359
8360 /* Now we have two lists. Merge them! */
8361 while (psize > 0 || (qsize > 0 && q != NULL))
8362 {
8363 /* See from which the next case to merge comes from. */
8364 if (psize == 0)
8365 {
8366 /* P is empty so the next case must come from Q. */
8367 e = q;
8368 q = q->right;
8369 qsize--;
8370 }
8371 else if (qsize == 0 || q == NULL)
8372 {
8373 /* Q is empty. */
8374 e = p;
8375 p = p->right;
8376 psize--;
8377 }
8378 else
8379 {
8380 cmp = compare_cases (p, q);
8381 if (cmp < 0)
8382 {
8383 /* The whole case range for P is less than the
8384 one for Q. */
8385 e = p;
8386 p = p->right;
8387 psize--;
8388 }
8389 else if (cmp > 0)
8390 {
8391 /* The whole case range for Q is greater than
8392 the case range for P. */
8393 e = q;
8394 q = q->right;
8395 qsize--;
8396 }
8397 else
8398 {
8399 /* The cases overlap, or they are the same
8400 element in the list. Either way, we must
8401 issue an error and get the next case from P. */
8402 /* FIXME: Sort P and Q by line number. */
8403 gfc_error ("CASE label at %L overlaps with CASE "
8404 "label at %L", &p->where, &q->where);
8405 overlap_seen = 1;
8406 e = p;
8407 p = p->right;
8408 psize--;
8409 }
8410 }
8411
8412 /* Add the next element to the merged list. */
8413 if (tail)
8414 tail->right = e;
8415 else
8416 list = e;
8417 e->left = tail;
8418 tail = e;
8419 }
8420
8421 /* P has now stepped INSIZE places along, and so has Q. So
8422 they're the same. */
8423 p = q;
8424 }
8425 tail->right = NULL;
8426
8427 /* If we have done only one merge or none at all, we've
8428 finished sorting the cases. */
8429 if (nmerges <= 1)
8430 {
8431 if (!overlap_seen)
8432 return list;
8433 else
8434 return NULL;
8435 }
8436
8437 /* Otherwise repeat, merging lists twice the size. */
8438 insize *= 2;
8439 }
8440 }
8441
8442
8443 /* Check to see if an expression is suitable for use in a CASE statement.
8444 Makes sure that all case expressions are scalar constants of the same
8445 type. Return false if anything is wrong. */
8446
8447 static bool
8448 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8449 {
8450 if (e == NULL) return true;
8451
8452 if (e->ts.type != case_expr->ts.type)
8453 {
8454 gfc_error ("Expression in CASE statement at %L must be of type %s",
8455 &e->where, gfc_basic_typename (case_expr->ts.type));
8456 return false;
8457 }
8458
8459 /* C805 (R808) For a given case-construct, each case-value shall be of
8460 the same type as case-expr. For character type, length differences
8461 are allowed, but the kind type parameters shall be the same. */
8462
8463 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8464 {
8465 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8466 &e->where, case_expr->ts.kind);
8467 return false;
8468 }
8469
8470 /* Convert the case value kind to that of case expression kind,
8471 if needed */
8472
8473 if (e->ts.kind != case_expr->ts.kind)
8474 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8475
8476 if (e->rank != 0)
8477 {
8478 gfc_error ("Expression in CASE statement at %L must be scalar",
8479 &e->where);
8480 return false;
8481 }
8482
8483 return true;
8484 }
8485
8486
8487 /* Given a completely parsed select statement, we:
8488
8489 - Validate all expressions and code within the SELECT.
8490 - Make sure that the selection expression is not of the wrong type.
8491 - Make sure that no case ranges overlap.
8492 - Eliminate unreachable cases and unreachable code resulting from
8493 removing case labels.
8494
8495 The standard does allow unreachable cases, e.g. CASE (5:3). But
8496 they are a hassle for code generation, and to prevent that, we just
8497 cut them out here. This is not necessary for overlapping cases
8498 because they are illegal and we never even try to generate code.
8499
8500 We have the additional caveat that a SELECT construct could have
8501 been a computed GOTO in the source code. Fortunately we can fairly
8502 easily work around that here: The case_expr for a "real" SELECT CASE
8503 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8504 we have to do is make sure that the case_expr is a scalar integer
8505 expression. */
8506
8507 static void
8508 resolve_select (gfc_code *code, bool select_type)
8509 {
8510 gfc_code *body;
8511 gfc_expr *case_expr;
8512 gfc_case *cp, *default_case, *tail, *head;
8513 int seen_unreachable;
8514 int seen_logical;
8515 int ncases;
8516 bt type;
8517 bool t;
8518
8519 if (code->expr1 == NULL)
8520 {
8521 /* This was actually a computed GOTO statement. */
8522 case_expr = code->expr2;
8523 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8524 gfc_error ("Selection expression in computed GOTO statement "
8525 "at %L must be a scalar integer expression",
8526 &case_expr->where);
8527
8528 /* Further checking is not necessary because this SELECT was built
8529 by the compiler, so it should always be OK. Just move the
8530 case_expr from expr2 to expr so that we can handle computed
8531 GOTOs as normal SELECTs from here on. */
8532 code->expr1 = code->expr2;
8533 code->expr2 = NULL;
8534 return;
8535 }
8536
8537 case_expr = code->expr1;
8538 type = case_expr->ts.type;
8539
8540 /* F08:C830. */
8541 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8542 {
8543 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8544 &case_expr->where, gfc_typename (case_expr));
8545
8546 /* Punt. Going on here just produce more garbage error messages. */
8547 return;
8548 }
8549
8550 /* F08:R842. */
8551 if (!select_type && case_expr->rank != 0)
8552 {
8553 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8554 "expression", &case_expr->where);
8555
8556 /* Punt. */
8557 return;
8558 }
8559
8560 /* Raise a warning if an INTEGER case value exceeds the range of
8561 the case-expr. Later, all expressions will be promoted to the
8562 largest kind of all case-labels. */
8563
8564 if (type == BT_INTEGER)
8565 for (body = code->block; body; body = body->block)
8566 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8567 {
8568 if (cp->low
8569 && gfc_check_integer_range (cp->low->value.integer,
8570 case_expr->ts.kind) != ARITH_OK)
8571 gfc_warning (0, "Expression in CASE statement at %L is "
8572 "not in the range of %s", &cp->low->where,
8573 gfc_typename (case_expr));
8574
8575 if (cp->high
8576 && cp->low != cp->high
8577 && gfc_check_integer_range (cp->high->value.integer,
8578 case_expr->ts.kind) != ARITH_OK)
8579 gfc_warning (0, "Expression in CASE statement at %L is "
8580 "not in the range of %s", &cp->high->where,
8581 gfc_typename (case_expr));
8582 }
8583
8584 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8585 of the SELECT CASE expression and its CASE values. Walk the lists
8586 of case values, and if we find a mismatch, promote case_expr to
8587 the appropriate kind. */
8588
8589 if (type == BT_LOGICAL || type == BT_INTEGER)
8590 {
8591 for (body = code->block; body; body = body->block)
8592 {
8593 /* Walk the case label list. */
8594 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8595 {
8596 /* Intercept the DEFAULT case. It does not have a kind. */
8597 if (cp->low == NULL && cp->high == NULL)
8598 continue;
8599
8600 /* Unreachable case ranges are discarded, so ignore. */
8601 if (cp->low != NULL && cp->high != NULL
8602 && cp->low != cp->high
8603 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8604 continue;
8605
8606 if (cp->low != NULL
8607 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8608 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8609
8610 if (cp->high != NULL
8611 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8612 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8613 }
8614 }
8615 }
8616
8617 /* Assume there is no DEFAULT case. */
8618 default_case = NULL;
8619 head = tail = NULL;
8620 ncases = 0;
8621 seen_logical = 0;
8622
8623 for (body = code->block; body; body = body->block)
8624 {
8625 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8626 t = true;
8627 seen_unreachable = 0;
8628
8629 /* Walk the case label list, making sure that all case labels
8630 are legal. */
8631 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8632 {
8633 /* Count the number of cases in the whole construct. */
8634 ncases++;
8635
8636 /* Intercept the DEFAULT case. */
8637 if (cp->low == NULL && cp->high == NULL)
8638 {
8639 if (default_case != NULL)
8640 {
8641 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8642 "by a second DEFAULT CASE at %L",
8643 &default_case->where, &cp->where);
8644 t = false;
8645 break;
8646 }
8647 else
8648 {
8649 default_case = cp;
8650 continue;
8651 }
8652 }
8653
8654 /* Deal with single value cases and case ranges. Errors are
8655 issued from the validation function. */
8656 if (!validate_case_label_expr (cp->low, case_expr)
8657 || !validate_case_label_expr (cp->high, case_expr))
8658 {
8659 t = false;
8660 break;
8661 }
8662
8663 if (type == BT_LOGICAL
8664 && ((cp->low == NULL || cp->high == NULL)
8665 || cp->low != cp->high))
8666 {
8667 gfc_error ("Logical range in CASE statement at %L is not "
8668 "allowed", &cp->low->where);
8669 t = false;
8670 break;
8671 }
8672
8673 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8674 {
8675 int value;
8676 value = cp->low->value.logical == 0 ? 2 : 1;
8677 if (value & seen_logical)
8678 {
8679 gfc_error ("Constant logical value in CASE statement "
8680 "is repeated at %L",
8681 &cp->low->where);
8682 t = false;
8683 break;
8684 }
8685 seen_logical |= value;
8686 }
8687
8688 if (cp->low != NULL && cp->high != NULL
8689 && cp->low != cp->high
8690 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8691 {
8692 if (warn_surprising)
8693 gfc_warning (OPT_Wsurprising,
8694 "Range specification at %L can never be matched",
8695 &cp->where);
8696
8697 cp->unreachable = 1;
8698 seen_unreachable = 1;
8699 }
8700 else
8701 {
8702 /* If the case range can be matched, it can also overlap with
8703 other cases. To make sure it does not, we put it in a
8704 double linked list here. We sort that with a merge sort
8705 later on to detect any overlapping cases. */
8706 if (!head)
8707 {
8708 head = tail = cp;
8709 head->right = head->left = NULL;
8710 }
8711 else
8712 {
8713 tail->right = cp;
8714 tail->right->left = tail;
8715 tail = tail->right;
8716 tail->right = NULL;
8717 }
8718 }
8719 }
8720
8721 /* It there was a failure in the previous case label, give up
8722 for this case label list. Continue with the next block. */
8723 if (!t)
8724 continue;
8725
8726 /* See if any case labels that are unreachable have been seen.
8727 If so, we eliminate them. This is a bit of a kludge because
8728 the case lists for a single case statement (label) is a
8729 single forward linked lists. */
8730 if (seen_unreachable)
8731 {
8732 /* Advance until the first case in the list is reachable. */
8733 while (body->ext.block.case_list != NULL
8734 && body->ext.block.case_list->unreachable)
8735 {
8736 gfc_case *n = body->ext.block.case_list;
8737 body->ext.block.case_list = body->ext.block.case_list->next;
8738 n->next = NULL;
8739 gfc_free_case_list (n);
8740 }
8741
8742 /* Strip all other unreachable cases. */
8743 if (body->ext.block.case_list)
8744 {
8745 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8746 {
8747 if (cp->next->unreachable)
8748 {
8749 gfc_case *n = cp->next;
8750 cp->next = cp->next->next;
8751 n->next = NULL;
8752 gfc_free_case_list (n);
8753 }
8754 }
8755 }
8756 }
8757 }
8758
8759 /* See if there were overlapping cases. If the check returns NULL,
8760 there was overlap. In that case we don't do anything. If head
8761 is non-NULL, we prepend the DEFAULT case. The sorted list can
8762 then used during code generation for SELECT CASE constructs with
8763 a case expression of a CHARACTER type. */
8764 if (head)
8765 {
8766 head = check_case_overlap (head);
8767
8768 /* Prepend the default_case if it is there. */
8769 if (head != NULL && default_case)
8770 {
8771 default_case->left = NULL;
8772 default_case->right = head;
8773 head->left = default_case;
8774 }
8775 }
8776
8777 /* Eliminate dead blocks that may be the result if we've seen
8778 unreachable case labels for a block. */
8779 for (body = code; body && body->block; body = body->block)
8780 {
8781 if (body->block->ext.block.case_list == NULL)
8782 {
8783 /* Cut the unreachable block from the code chain. */
8784 gfc_code *c = body->block;
8785 body->block = c->block;
8786
8787 /* Kill the dead block, but not the blocks below it. */
8788 c->block = NULL;
8789 gfc_free_statements (c);
8790 }
8791 }
8792
8793 /* More than two cases is legal but insane for logical selects.
8794 Issue a warning for it. */
8795 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8796 gfc_warning (OPT_Wsurprising,
8797 "Logical SELECT CASE block at %L has more that two cases",
8798 &code->loc);
8799 }
8800
8801
8802 /* Check if a derived type is extensible. */
8803
8804 bool
8805 gfc_type_is_extensible (gfc_symbol *sym)
8806 {
8807 return !(sym->attr.is_bind_c || sym->attr.sequence
8808 || (sym->attr.is_class
8809 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8810 }
8811
8812
8813 static void
8814 resolve_types (gfc_namespace *ns);
8815
8816 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8817 correct as well as possibly the array-spec. */
8818
8819 static void
8820 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8821 {
8822 gfc_expr* target;
8823
8824 gcc_assert (sym->assoc);
8825 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8826
8827 /* If this is for SELECT TYPE, the target may not yet be set. In that
8828 case, return. Resolution will be called later manually again when
8829 this is done. */
8830 target = sym->assoc->target;
8831 if (!target)
8832 return;
8833 gcc_assert (!sym->assoc->dangling);
8834
8835 if (resolve_target && !gfc_resolve_expr (target))
8836 return;
8837
8838 /* For variable targets, we get some attributes from the target. */
8839 if (target->expr_type == EXPR_VARIABLE)
8840 {
8841 gfc_symbol* tsym;
8842
8843 gcc_assert (target->symtree);
8844 tsym = target->symtree->n.sym;
8845 if (tsym->attr.flavor == FL_PROGRAM)
8846 {
8847 gfc_error ("Associating entity %qs at %L is a PROGRAM",
8848 tsym->name, &target->where);
8849 return;
8850 }
8851
8852 sym->attr.asynchronous = tsym->attr.asynchronous;
8853 sym->attr.volatile_ = tsym->attr.volatile_;
8854
8855 sym->attr.target = tsym->attr.target
8856 || gfc_expr_attr (target).pointer;
8857 if (is_subref_array (target))
8858 sym->attr.subref_array_pointer = 1;
8859 }
8860
8861 if (target->expr_type == EXPR_NULL)
8862 {
8863 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8864 return;
8865 }
8866 else if (target->ts.type == BT_UNKNOWN)
8867 {
8868 gfc_error ("Selector at %L has no type", &target->where);
8869 return;
8870 }
8871
8872 /* Get type if this was not already set. Note that it can be
8873 some other type than the target in case this is a SELECT TYPE
8874 selector! So we must not update when the type is already there. */
8875 if (sym->ts.type == BT_UNKNOWN)
8876 sym->ts = target->ts;
8877
8878 gcc_assert (sym->ts.type != BT_UNKNOWN);
8879
8880 /* See if this is a valid association-to-variable. */
8881 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8882 && !gfc_has_vector_subscript (target));
8883
8884 /* Finally resolve if this is an array or not. */
8885 if (sym->attr.dimension && target->rank == 0)
8886 {
8887 /* primary.c makes the assumption that a reference to an associate
8888 name followed by a left parenthesis is an array reference. */
8889 if (sym->ts.type != BT_CHARACTER)
8890 gfc_error ("Associate-name %qs at %L is used as array",
8891 sym->name, &sym->declared_at);
8892 sym->attr.dimension = 0;
8893 return;
8894 }
8895
8896
8897 /* We cannot deal with class selectors that need temporaries. */
8898 if (target->ts.type == BT_CLASS
8899 && gfc_ref_needs_temporary_p (target->ref))
8900 {
8901 gfc_error ("CLASS selector at %L needs a temporary which is not "
8902 "yet implemented", &target->where);
8903 return;
8904 }
8905
8906 if (target->ts.type == BT_CLASS)
8907 gfc_fix_class_refs (target);
8908
8909 if (target->rank != 0 && !sym->attr.select_rank_temporary)
8910 {
8911 gfc_array_spec *as;
8912 /* The rank may be incorrectly guessed at parsing, therefore make sure
8913 it is corrected now. */
8914 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8915 {
8916 if (!sym->as)
8917 sym->as = gfc_get_array_spec ();
8918 as = sym->as;
8919 as->rank = target->rank;
8920 as->type = AS_DEFERRED;
8921 as->corank = gfc_get_corank (target);
8922 sym->attr.dimension = 1;
8923 if (as->corank != 0)
8924 sym->attr.codimension = 1;
8925 }
8926 else if (sym->ts.type == BT_CLASS && (!CLASS_DATA (sym)->as || sym->assoc->rankguessed))
8927 {
8928 if (!CLASS_DATA (sym)->as)
8929 CLASS_DATA (sym)->as = gfc_get_array_spec ();
8930 as = CLASS_DATA (sym)->as;
8931 as->rank = target->rank;
8932 as->type = AS_DEFERRED;
8933 as->corank = gfc_get_corank (target);
8934 CLASS_DATA (sym)->attr.dimension = 1;
8935 if (as->corank != 0)
8936 CLASS_DATA (sym)->attr.codimension = 1;
8937 }
8938 }
8939 else if (!sym->attr.select_rank_temporary)
8940 {
8941 /* target's rank is 0, but the type of the sym is still array valued,
8942 which has to be corrected. */
8943 if (sym->ts.type == BT_CLASS
8944 && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
8945 {
8946 gfc_array_spec *as;
8947 symbol_attribute attr;
8948 /* The associated variable's type is still the array type
8949 correct this now. */
8950 gfc_typespec *ts = &target->ts;
8951 gfc_ref *ref;
8952 gfc_component *c;
8953 for (ref = target->ref; ref != NULL; ref = ref->next)
8954 {
8955 switch (ref->type)
8956 {
8957 case REF_COMPONENT:
8958 ts = &ref->u.c.component->ts;
8959 break;
8960 case REF_ARRAY:
8961 if (ts->type == BT_CLASS)
8962 ts = &ts->u.derived->components->ts;
8963 break;
8964 default:
8965 break;
8966 }
8967 }
8968 /* Create a scalar instance of the current class type. Because the
8969 rank of a class array goes into its name, the type has to be
8970 rebuild. The alternative of (re-)setting just the attributes
8971 and as in the current type, destroys the type also in other
8972 places. */
8973 as = NULL;
8974 sym->ts = *ts;
8975 sym->ts.type = BT_CLASS;
8976 attr = CLASS_DATA (sym)->attr;
8977 attr.class_ok = 0;
8978 attr.associate_var = 1;
8979 attr.dimension = attr.codimension = 0;
8980 attr.class_pointer = 1;
8981 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
8982 gcc_unreachable ();
8983 /* Make sure the _vptr is set. */
8984 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
8985 if (c->ts.u.derived == NULL)
8986 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
8987 CLASS_DATA (sym)->attr.pointer = 1;
8988 CLASS_DATA (sym)->attr.class_pointer = 1;
8989 gfc_set_sym_referenced (sym->ts.u.derived);
8990 gfc_commit_symbol (sym->ts.u.derived);
8991 /* _vptr now has the _vtab in it, change it to the _vtype. */
8992 if (c->ts.u.derived->attr.vtab)
8993 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
8994 c->ts.u.derived->ns->types_resolved = 0;
8995 resolve_types (c->ts.u.derived->ns);
8996 }
8997 }
8998
8999 /* Mark this as an associate variable. */
9000 sym->attr.associate_var = 1;
9001
9002 /* Fix up the type-spec for CHARACTER types. */
9003 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
9004 {
9005 if (!sym->ts.u.cl)
9006 sym->ts.u.cl = target->ts.u.cl;
9007
9008 if (sym->ts.deferred && target->expr_type == EXPR_VARIABLE
9009 && target->symtree->n.sym->attr.dummy
9010 && sym->ts.u.cl == target->ts.u.cl)
9011 {
9012 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9013 sym->ts.deferred = 1;
9014 }
9015
9016 if (!sym->ts.u.cl->length
9017 && !sym->ts.deferred
9018 && target->expr_type == EXPR_CONSTANT)
9019 {
9020 sym->ts.u.cl->length =
9021 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
9022 target->value.character.length);
9023 }
9024 else if ((!sym->ts.u.cl->length
9025 || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
9026 && target->expr_type != EXPR_VARIABLE)
9027 {
9028 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9029 sym->ts.deferred = 1;
9030
9031 /* This is reset in trans-stmt.c after the assignment
9032 of the target expression to the associate name. */
9033 sym->attr.allocatable = 1;
9034 }
9035 }
9036
9037 /* If the target is a good class object, so is the associate variable. */
9038 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
9039 sym->attr.class_ok = 1;
9040 }
9041
9042
9043 /* Ensure that SELECT TYPE expressions have the correct rank and a full
9044 array reference, where necessary. The symbols are artificial and so
9045 the dimension attribute and arrayspec can also be set. In addition,
9046 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
9047 This is corrected here as well.*/
9048
9049 static void
9050 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
9051 int rank, gfc_ref *ref)
9052 {
9053 gfc_ref *nref = (*expr1)->ref;
9054 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
9055 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
9056 (*expr1)->rank = rank;
9057 if (sym1->ts.type == BT_CLASS)
9058 {
9059 if ((*expr1)->ts.type != BT_CLASS)
9060 (*expr1)->ts = sym1->ts;
9061
9062 CLASS_DATA (sym1)->attr.dimension = 1;
9063 if (CLASS_DATA (sym1)->as == NULL && sym2)
9064 CLASS_DATA (sym1)->as
9065 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
9066 }
9067 else
9068 {
9069 sym1->attr.dimension = 1;
9070 if (sym1->as == NULL && sym2)
9071 sym1->as = gfc_copy_array_spec (sym2->as);
9072 }
9073
9074 for (; nref; nref = nref->next)
9075 if (nref->next == NULL)
9076 break;
9077
9078 if (ref && nref && nref->type != REF_ARRAY)
9079 nref->next = gfc_copy_ref (ref);
9080 else if (ref && !nref)
9081 (*expr1)->ref = gfc_copy_ref (ref);
9082 }
9083
9084
9085 static gfc_expr *
9086 build_loc_call (gfc_expr *sym_expr)
9087 {
9088 gfc_expr *loc_call;
9089 loc_call = gfc_get_expr ();
9090 loc_call->expr_type = EXPR_FUNCTION;
9091 gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
9092 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
9093 loc_call->symtree->n.sym->attr.intrinsic = 1;
9094 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
9095 gfc_commit_symbol (loc_call->symtree->n.sym);
9096 loc_call->ts.type = BT_INTEGER;
9097 loc_call->ts.kind = gfc_index_integer_kind;
9098 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
9099 loc_call->value.function.actual = gfc_get_actual_arglist ();
9100 loc_call->value.function.actual->expr = sym_expr;
9101 loc_call->where = sym_expr->where;
9102 return loc_call;
9103 }
9104
9105 /* Resolve a SELECT TYPE statement. */
9106
9107 static void
9108 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
9109 {
9110 gfc_symbol *selector_type;
9111 gfc_code *body, *new_st, *if_st, *tail;
9112 gfc_code *class_is = NULL, *default_case = NULL;
9113 gfc_case *c;
9114 gfc_symtree *st;
9115 char name[GFC_MAX_SYMBOL_LEN];
9116 gfc_namespace *ns;
9117 int error = 0;
9118 int rank = 0;
9119 gfc_ref* ref = NULL;
9120 gfc_expr *selector_expr = NULL;
9121
9122 ns = code->ext.block.ns;
9123 gfc_resolve (ns);
9124
9125 /* Check for F03:C813. */
9126 if (code->expr1->ts.type != BT_CLASS
9127 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
9128 {
9129 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
9130 "at %L", &code->loc);
9131 return;
9132 }
9133
9134 if (!code->expr1->symtree->n.sym->attr.class_ok)
9135 return;
9136
9137 if (code->expr2)
9138 {
9139 gfc_ref *ref2 = NULL;
9140 for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
9141 if (ref->type == REF_COMPONENT
9142 && ref->u.c.component->ts.type == BT_CLASS)
9143 ref2 = ref;
9144
9145 if (ref2)
9146 {
9147 if (code->expr1->symtree->n.sym->attr.untyped)
9148 code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
9149 selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
9150 }
9151 else
9152 {
9153 if (code->expr1->symtree->n.sym->attr.untyped)
9154 code->expr1->symtree->n.sym->ts = code->expr2->ts;
9155 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
9156 }
9157
9158 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
9159 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
9160
9161 /* F2008: C803 The selector expression must not be coindexed. */
9162 if (gfc_is_coindexed (code->expr2))
9163 {
9164 gfc_error ("Selector at %L must not be coindexed",
9165 &code->expr2->where);
9166 return;
9167 }
9168
9169 }
9170 else
9171 {
9172 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
9173
9174 if (gfc_is_coindexed (code->expr1))
9175 {
9176 gfc_error ("Selector at %L must not be coindexed",
9177 &code->expr1->where);
9178 return;
9179 }
9180 }
9181
9182 /* Loop over TYPE IS / CLASS IS cases. */
9183 for (body = code->block; body; body = body->block)
9184 {
9185 c = body->ext.block.case_list;
9186
9187 if (!error)
9188 {
9189 /* Check for repeated cases. */
9190 for (tail = code->block; tail; tail = tail->block)
9191 {
9192 gfc_case *d = tail->ext.block.case_list;
9193 if (tail == body)
9194 break;
9195
9196 if (c->ts.type == d->ts.type
9197 && ((c->ts.type == BT_DERIVED
9198 && c->ts.u.derived && d->ts.u.derived
9199 && !strcmp (c->ts.u.derived->name,
9200 d->ts.u.derived->name))
9201 || c->ts.type == BT_UNKNOWN
9202 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9203 && c->ts.kind == d->ts.kind)))
9204 {
9205 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
9206 &c->where, &d->where);
9207 return;
9208 }
9209 }
9210 }
9211
9212 /* Check F03:C815. */
9213 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9214 && !selector_type->attr.unlimited_polymorphic
9215 && !gfc_type_is_extensible (c->ts.u.derived))
9216 {
9217 gfc_error ("Derived type %qs at %L must be extensible",
9218 c->ts.u.derived->name, &c->where);
9219 error++;
9220 continue;
9221 }
9222
9223 /* Check F03:C816. */
9224 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
9225 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
9226 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
9227 {
9228 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9229 gfc_error ("Derived type %qs at %L must be an extension of %qs",
9230 c->ts.u.derived->name, &c->where, selector_type->name);
9231 else
9232 gfc_error ("Unexpected intrinsic type %qs at %L",
9233 gfc_basic_typename (c->ts.type), &c->where);
9234 error++;
9235 continue;
9236 }
9237
9238 /* Check F03:C814. */
9239 if (c->ts.type == BT_CHARACTER
9240 && (c->ts.u.cl->length != NULL || c->ts.deferred))
9241 {
9242 gfc_error ("The type-spec at %L shall specify that each length "
9243 "type parameter is assumed", &c->where);
9244 error++;
9245 continue;
9246 }
9247
9248 /* Intercept the DEFAULT case. */
9249 if (c->ts.type == BT_UNKNOWN)
9250 {
9251 /* Check F03:C818. */
9252 if (default_case)
9253 {
9254 gfc_error ("The DEFAULT CASE at %L cannot be followed "
9255 "by a second DEFAULT CASE at %L",
9256 &default_case->ext.block.case_list->where, &c->where);
9257 error++;
9258 continue;
9259 }
9260
9261 default_case = body;
9262 }
9263 }
9264
9265 if (error > 0)
9266 return;
9267
9268 /* Transform SELECT TYPE statement to BLOCK and associate selector to
9269 target if present. If there are any EXIT statements referring to the
9270 SELECT TYPE construct, this is no problem because the gfc_code
9271 reference stays the same and EXIT is equally possible from the BLOCK
9272 it is changed to. */
9273 code->op = EXEC_BLOCK;
9274 if (code->expr2)
9275 {
9276 gfc_association_list* assoc;
9277
9278 assoc = gfc_get_association_list ();
9279 assoc->st = code->expr1->symtree;
9280 assoc->target = gfc_copy_expr (code->expr2);
9281 assoc->target->where = code->expr2->where;
9282 /* assoc->variable will be set by resolve_assoc_var. */
9283
9284 code->ext.block.assoc = assoc;
9285 code->expr1->symtree->n.sym->assoc = assoc;
9286
9287 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9288 }
9289 else
9290 code->ext.block.assoc = NULL;
9291
9292 /* Ensure that the selector rank and arrayspec are available to
9293 correct expressions in which they might be missing. */
9294 if (code->expr2 && code->expr2->rank)
9295 {
9296 rank = code->expr2->rank;
9297 for (ref = code->expr2->ref; ref; ref = ref->next)
9298 if (ref->next == NULL)
9299 break;
9300 if (ref && ref->type == REF_ARRAY)
9301 ref = gfc_copy_ref (ref);
9302
9303 /* Fixup expr1 if necessary. */
9304 if (rank)
9305 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
9306 }
9307 else if (code->expr1->rank)
9308 {
9309 rank = code->expr1->rank;
9310 for (ref = code->expr1->ref; ref; ref = ref->next)
9311 if (ref->next == NULL)
9312 break;
9313 if (ref && ref->type == REF_ARRAY)
9314 ref = gfc_copy_ref (ref);
9315 }
9316
9317 /* Add EXEC_SELECT to switch on type. */
9318 new_st = gfc_get_code (code->op);
9319 new_st->expr1 = code->expr1;
9320 new_st->expr2 = code->expr2;
9321 new_st->block = code->block;
9322 code->expr1 = code->expr2 = NULL;
9323 code->block = NULL;
9324 if (!ns->code)
9325 ns->code = new_st;
9326 else
9327 ns->code->next = new_st;
9328 code = new_st;
9329 code->op = EXEC_SELECT_TYPE;
9330
9331 /* Use the intrinsic LOC function to generate an integer expression
9332 for the vtable of the selector. Note that the rank of the selector
9333 expression has to be set to zero. */
9334 gfc_add_vptr_component (code->expr1);
9335 code->expr1->rank = 0;
9336 code->expr1 = build_loc_call (code->expr1);
9337 selector_expr = code->expr1->value.function.actual->expr;
9338
9339 /* Loop over TYPE IS / CLASS IS cases. */
9340 for (body = code->block; body; body = body->block)
9341 {
9342 gfc_symbol *vtab;
9343 gfc_expr *e;
9344 c = body->ext.block.case_list;
9345
9346 /* Generate an index integer expression for address of the
9347 TYPE/CLASS vtable and store it in c->low. The hash expression
9348 is stored in c->high and is used to resolve intrinsic cases. */
9349 if (c->ts.type != BT_UNKNOWN)
9350 {
9351 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9352 {
9353 vtab = gfc_find_derived_vtab (c->ts.u.derived);
9354 gcc_assert (vtab);
9355 c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
9356 c->ts.u.derived->hash_value);
9357 }
9358 else
9359 {
9360 vtab = gfc_find_vtab (&c->ts);
9361 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
9362 e = CLASS_DATA (vtab)->initializer;
9363 c->high = gfc_copy_expr (e);
9364 if (c->high->ts.kind != gfc_integer_4_kind)
9365 {
9366 gfc_typespec ts;
9367 ts.kind = gfc_integer_4_kind;
9368 ts.type = BT_INTEGER;
9369 gfc_convert_type_warn (c->high, &ts, 2, 0);
9370 }
9371 }
9372
9373 e = gfc_lval_expr_from_sym (vtab);
9374 c->low = build_loc_call (e);
9375 }
9376 else
9377 continue;
9378
9379 /* Associate temporary to selector. This should only be done
9380 when this case is actually true, so build a new ASSOCIATE
9381 that does precisely this here (instead of using the
9382 'global' one). */
9383
9384 if (c->ts.type == BT_CLASS)
9385 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
9386 else if (c->ts.type == BT_DERIVED)
9387 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
9388 else if (c->ts.type == BT_CHARACTER)
9389 {
9390 HOST_WIDE_INT charlen = 0;
9391 if (c->ts.u.cl && c->ts.u.cl->length
9392 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9393 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9394 snprintf (name, sizeof (name),
9395 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9396 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9397 }
9398 else
9399 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9400 c->ts.kind);
9401
9402 st = gfc_find_symtree (ns->sym_root, name);
9403 gcc_assert (st->n.sym->assoc);
9404 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9405 st->n.sym->assoc->target->where = selector_expr->where;
9406 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9407 {
9408 gfc_add_data_component (st->n.sym->assoc->target);
9409 /* Fixup the target expression if necessary. */
9410 if (rank)
9411 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9412 }
9413
9414 new_st = gfc_get_code (EXEC_BLOCK);
9415 new_st->ext.block.ns = gfc_build_block_ns (ns);
9416 new_st->ext.block.ns->code = body->next;
9417 body->next = new_st;
9418
9419 /* Chain in the new list only if it is marked as dangling. Otherwise
9420 there is a CASE label overlap and this is already used. Just ignore,
9421 the error is diagnosed elsewhere. */
9422 if (st->n.sym->assoc->dangling)
9423 {
9424 new_st->ext.block.assoc = st->n.sym->assoc;
9425 st->n.sym->assoc->dangling = 0;
9426 }
9427
9428 resolve_assoc_var (st->n.sym, false);
9429 }
9430
9431 /* Take out CLASS IS cases for separate treatment. */
9432 body = code;
9433 while (body && body->block)
9434 {
9435 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9436 {
9437 /* Add to class_is list. */
9438 if (class_is == NULL)
9439 {
9440 class_is = body->block;
9441 tail = class_is;
9442 }
9443 else
9444 {
9445 for (tail = class_is; tail->block; tail = tail->block) ;
9446 tail->block = body->block;
9447 tail = tail->block;
9448 }
9449 /* Remove from EXEC_SELECT list. */
9450 body->block = body->block->block;
9451 tail->block = NULL;
9452 }
9453 else
9454 body = body->block;
9455 }
9456
9457 if (class_is)
9458 {
9459 gfc_symbol *vtab;
9460
9461 if (!default_case)
9462 {
9463 /* Add a default case to hold the CLASS IS cases. */
9464 for (tail = code; tail->block; tail = tail->block) ;
9465 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9466 tail = tail->block;
9467 tail->ext.block.case_list = gfc_get_case ();
9468 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9469 tail->next = NULL;
9470 default_case = tail;
9471 }
9472
9473 /* More than one CLASS IS block? */
9474 if (class_is->block)
9475 {
9476 gfc_code **c1,*c2;
9477 bool swapped;
9478 /* Sort CLASS IS blocks by extension level. */
9479 do
9480 {
9481 swapped = false;
9482 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9483 {
9484 c2 = (*c1)->block;
9485 /* F03:C817 (check for doubles). */
9486 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9487 == c2->ext.block.case_list->ts.u.derived->hash_value)
9488 {
9489 gfc_error ("Double CLASS IS block in SELECT TYPE "
9490 "statement at %L",
9491 &c2->ext.block.case_list->where);
9492 return;
9493 }
9494 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9495 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9496 {
9497 /* Swap. */
9498 (*c1)->block = c2->block;
9499 c2->block = *c1;
9500 *c1 = c2;
9501 swapped = true;
9502 }
9503 }
9504 }
9505 while (swapped);
9506 }
9507
9508 /* Generate IF chain. */
9509 if_st = gfc_get_code (EXEC_IF);
9510 new_st = if_st;
9511 for (body = class_is; body; body = body->block)
9512 {
9513 new_st->block = gfc_get_code (EXEC_IF);
9514 new_st = new_st->block;
9515 /* Set up IF condition: Call _gfortran_is_extension_of. */
9516 new_st->expr1 = gfc_get_expr ();
9517 new_st->expr1->expr_type = EXPR_FUNCTION;
9518 new_st->expr1->ts.type = BT_LOGICAL;
9519 new_st->expr1->ts.kind = 4;
9520 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9521 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9522 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9523 /* Set up arguments. */
9524 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9525 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9526 new_st->expr1->value.function.actual->expr->where = code->loc;
9527 new_st->expr1->where = code->loc;
9528 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9529 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9530 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9531 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9532 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9533 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9534 new_st->next = body->next;
9535 }
9536 if (default_case->next)
9537 {
9538 new_st->block = gfc_get_code (EXEC_IF);
9539 new_st = new_st->block;
9540 new_st->next = default_case->next;
9541 }
9542
9543 /* Replace CLASS DEFAULT code by the IF chain. */
9544 default_case->next = if_st;
9545 }
9546
9547 /* Resolve the internal code. This cannot be done earlier because
9548 it requires that the sym->assoc of selectors is set already. */
9549 gfc_current_ns = ns;
9550 gfc_resolve_blocks (code->block, gfc_current_ns);
9551 gfc_current_ns = old_ns;
9552
9553 if (ref)
9554 free (ref);
9555 }
9556
9557
9558 /* Resolve a SELECT RANK statement. */
9559
9560 static void
9561 resolve_select_rank (gfc_code *code, gfc_namespace *old_ns)
9562 {
9563 gfc_namespace *ns;
9564 gfc_code *body, *new_st, *tail;
9565 gfc_case *c;
9566 char tname[GFC_MAX_SYMBOL_LEN];
9567 char name[2 * GFC_MAX_SYMBOL_LEN];
9568 gfc_symtree *st;
9569 gfc_expr *selector_expr = NULL;
9570 int case_value;
9571 HOST_WIDE_INT charlen = 0;
9572
9573 ns = code->ext.block.ns;
9574 gfc_resolve (ns);
9575
9576 code->op = EXEC_BLOCK;
9577 if (code->expr2)
9578 {
9579 gfc_association_list* assoc;
9580
9581 assoc = gfc_get_association_list ();
9582 assoc->st = code->expr1->symtree;
9583 assoc->target = gfc_copy_expr (code->expr2);
9584 assoc->target->where = code->expr2->where;
9585 /* assoc->variable will be set by resolve_assoc_var. */
9586
9587 code->ext.block.assoc = assoc;
9588 code->expr1->symtree->n.sym->assoc = assoc;
9589
9590 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9591 }
9592 else
9593 code->ext.block.assoc = NULL;
9594
9595 /* Loop over RANK cases. Note that returning on the errors causes a
9596 cascade of further errors because the case blocks do not compile
9597 correctly. */
9598 for (body = code->block; body; body = body->block)
9599 {
9600 c = body->ext.block.case_list;
9601 if (c->low)
9602 case_value = (int) mpz_get_si (c->low->value.integer);
9603 else
9604 case_value = -2;
9605
9606 /* Check for repeated cases. */
9607 for (tail = code->block; tail; tail = tail->block)
9608 {
9609 gfc_case *d = tail->ext.block.case_list;
9610 int case_value2;
9611
9612 if (tail == body)
9613 break;
9614
9615 /* Check F2018: C1153. */
9616 if (!c->low && !d->low)
9617 gfc_error ("RANK DEFAULT at %L is repeated at %L",
9618 &c->where, &d->where);
9619
9620 if (!c->low || !d->low)
9621 continue;
9622
9623 /* Check F2018: C1153. */
9624 case_value2 = (int) mpz_get_si (d->low->value.integer);
9625 if ((case_value == case_value2) && case_value == -1)
9626 gfc_error ("RANK (*) at %L is repeated at %L",
9627 &c->where, &d->where);
9628 else if (case_value == case_value2)
9629 gfc_error ("RANK (%i) at %L is repeated at %L",
9630 case_value, &c->where, &d->where);
9631 }
9632
9633 if (!c->low)
9634 continue;
9635
9636 /* Check F2018: C1155. */
9637 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9638 || gfc_expr_attr (code->expr1).pointer))
9639 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9640 "allocatable selector at %L", &c->where, &code->expr1->where);
9641
9642 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9643 || gfc_expr_attr (code->expr1).pointer))
9644 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9645 "allocatable selector at %L", &c->where, &code->expr1->where);
9646 }
9647
9648 /* Add EXEC_SELECT to switch on rank. */
9649 new_st = gfc_get_code (code->op);
9650 new_st->expr1 = code->expr1;
9651 new_st->expr2 = code->expr2;
9652 new_st->block = code->block;
9653 code->expr1 = code->expr2 = NULL;
9654 code->block = NULL;
9655 if (!ns->code)
9656 ns->code = new_st;
9657 else
9658 ns->code->next = new_st;
9659 code = new_st;
9660 code->op = EXEC_SELECT_RANK;
9661
9662 selector_expr = code->expr1;
9663
9664 /* Loop over SELECT RANK cases. */
9665 for (body = code->block; body; body = body->block)
9666 {
9667 c = body->ext.block.case_list;
9668 int case_value;
9669
9670 /* Pass on the default case. */
9671 if (c->low == NULL)
9672 continue;
9673
9674 /* Associate temporary to selector. This should only be done
9675 when this case is actually true, so build a new ASSOCIATE
9676 that does precisely this here (instead of using the
9677 'global' one). */
9678 if (c->ts.type == BT_CHARACTER && c->ts.u.cl && c->ts.u.cl->length
9679 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9680 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9681
9682 if (c->ts.type == BT_CLASS)
9683 sprintf (tname, "class_%s", c->ts.u.derived->name);
9684 else if (c->ts.type == BT_DERIVED)
9685 sprintf (tname, "type_%s", c->ts.u.derived->name);
9686 else if (c->ts.type != BT_CHARACTER)
9687 sprintf (tname, "%s_%d", gfc_basic_typename (c->ts.type), c->ts.kind);
9688 else
9689 sprintf (tname, "%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9690 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9691
9692 case_value = (int) mpz_get_si (c->low->value.integer);
9693 if (case_value >= 0)
9694 sprintf (name, "__tmp_%s_rank_%d", tname, case_value);
9695 else
9696 sprintf (name, "__tmp_%s_rank_m%d", tname, -case_value);
9697
9698 st = gfc_find_symtree (ns->sym_root, name);
9699 gcc_assert (st->n.sym->assoc);
9700
9701 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9702 st->n.sym->assoc->target->where = selector_expr->where;
9703
9704 new_st = gfc_get_code (EXEC_BLOCK);
9705 new_st->ext.block.ns = gfc_build_block_ns (ns);
9706 new_st->ext.block.ns->code = body->next;
9707 body->next = new_st;
9708
9709 /* Chain in the new list only if it is marked as dangling. Otherwise
9710 there is a CASE label overlap and this is already used. Just ignore,
9711 the error is diagnosed elsewhere. */
9712 if (st->n.sym->assoc->dangling)
9713 {
9714 new_st->ext.block.assoc = st->n.sym->assoc;
9715 st->n.sym->assoc->dangling = 0;
9716 }
9717
9718 resolve_assoc_var (st->n.sym, false);
9719 }
9720
9721 gfc_current_ns = ns;
9722 gfc_resolve_blocks (code->block, gfc_current_ns);
9723 gfc_current_ns = old_ns;
9724 }
9725
9726
9727 /* Resolve a transfer statement. This is making sure that:
9728 -- a derived type being transferred has only non-pointer components
9729 -- a derived type being transferred doesn't have private components, unless
9730 it's being transferred from the module where the type was defined
9731 -- we're not trying to transfer a whole assumed size array. */
9732
9733 static void
9734 resolve_transfer (gfc_code *code)
9735 {
9736 gfc_symbol *sym, *derived;
9737 gfc_ref *ref;
9738 gfc_expr *exp;
9739 bool write = false;
9740 bool formatted = false;
9741 gfc_dt *dt = code->ext.dt;
9742 gfc_symbol *dtio_sub = NULL;
9743
9744 exp = code->expr1;
9745
9746 while (exp != NULL && exp->expr_type == EXPR_OP
9747 && exp->value.op.op == INTRINSIC_PARENTHESES)
9748 exp = exp->value.op.op1;
9749
9750 if (exp && exp->expr_type == EXPR_NULL
9751 && code->ext.dt)
9752 {
9753 gfc_error ("Invalid context for NULL () intrinsic at %L",
9754 &exp->where);
9755 return;
9756 }
9757
9758 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9759 && exp->expr_type != EXPR_FUNCTION
9760 && exp->expr_type != EXPR_STRUCTURE))
9761 return;
9762
9763 /* If we are reading, the variable will be changed. Note that
9764 code->ext.dt may be NULL if the TRANSFER is related to
9765 an INQUIRE statement -- but in this case, we are not reading, either. */
9766 if (dt && dt->dt_io_kind->value.iokind == M_READ
9767 && !gfc_check_vardef_context (exp, false, false, false,
9768 _("item in READ")))
9769 return;
9770
9771 const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
9772 || exp->expr_type == EXPR_FUNCTION
9773 ? &exp->ts : &exp->symtree->n.sym->ts;
9774
9775 /* Go to actual component transferred. */
9776 for (ref = exp->ref; ref; ref = ref->next)
9777 if (ref->type == REF_COMPONENT)
9778 ts = &ref->u.c.component->ts;
9779
9780 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9781 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9782 {
9783 derived = ts->u.derived;
9784
9785 /* Determine when to use the formatted DTIO procedure. */
9786 if (dt && (dt->format_expr || dt->format_label))
9787 formatted = true;
9788
9789 write = dt->dt_io_kind->value.iokind == M_WRITE
9790 || dt->dt_io_kind->value.iokind == M_PRINT;
9791 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9792
9793 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9794 {
9795 dt->udtio = exp;
9796 sym = exp->symtree->n.sym->ns->proc_name;
9797 /* Check to see if this is a nested DTIO call, with the
9798 dummy as the io-list object. */
9799 if (sym && sym == dtio_sub && sym->formal
9800 && sym->formal->sym == exp->symtree->n.sym
9801 && exp->ref == NULL)
9802 {
9803 if (!sym->attr.recursive)
9804 {
9805 gfc_error ("DTIO %s procedure at %L must be recursive",
9806 sym->name, &sym->declared_at);
9807 return;
9808 }
9809 }
9810 }
9811 }
9812
9813 if (ts->type == BT_CLASS && dtio_sub == NULL)
9814 {
9815 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9816 "it is processed by a defined input/output procedure",
9817 &code->loc);
9818 return;
9819 }
9820
9821 if (ts->type == BT_DERIVED)
9822 {
9823 /* Check that transferred derived type doesn't contain POINTER
9824 components unless it is processed by a defined input/output
9825 procedure". */
9826 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9827 {
9828 gfc_error ("Data transfer element at %L cannot have POINTER "
9829 "components unless it is processed by a defined "
9830 "input/output procedure", &code->loc);
9831 return;
9832 }
9833
9834 /* F08:C935. */
9835 if (ts->u.derived->attr.proc_pointer_comp)
9836 {
9837 gfc_error ("Data transfer element at %L cannot have "
9838 "procedure pointer components", &code->loc);
9839 return;
9840 }
9841
9842 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9843 {
9844 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9845 "components unless it is processed by a defined "
9846 "input/output procedure", &code->loc);
9847 return;
9848 }
9849
9850 /* C_PTR and C_FUNPTR have private components which means they cannot
9851 be printed. However, if -std=gnu and not -pedantic, allow
9852 the component to be printed to help debugging. */
9853 if (ts->u.derived->ts.f90_type == BT_VOID)
9854 {
9855 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9856 "cannot have PRIVATE components", &code->loc))
9857 return;
9858 }
9859 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9860 {
9861 gfc_error ("Data transfer element at %L cannot have "
9862 "PRIVATE components unless it is processed by "
9863 "a defined input/output procedure", &code->loc);
9864 return;
9865 }
9866 }
9867
9868 if (exp->expr_type == EXPR_STRUCTURE)
9869 return;
9870
9871 sym = exp->symtree->n.sym;
9872
9873 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9874 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9875 {
9876 gfc_error ("Data transfer element at %L cannot be a full reference to "
9877 "an assumed-size array", &code->loc);
9878 return;
9879 }
9880
9881 if (async_io_dt && exp->expr_type == EXPR_VARIABLE)
9882 exp->symtree->n.sym->attr.asynchronous = 1;
9883 }
9884
9885
9886 /*********** Toplevel code resolution subroutines ***********/
9887
9888 /* Find the set of labels that are reachable from this block. We also
9889 record the last statement in each block. */
9890
9891 static void
9892 find_reachable_labels (gfc_code *block)
9893 {
9894 gfc_code *c;
9895
9896 if (!block)
9897 return;
9898
9899 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9900
9901 /* Collect labels in this block. We don't keep those corresponding
9902 to END {IF|SELECT}, these are checked in resolve_branch by going
9903 up through the code_stack. */
9904 for (c = block; c; c = c->next)
9905 {
9906 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9907 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9908 }
9909
9910 /* Merge with labels from parent block. */
9911 if (cs_base->prev)
9912 {
9913 gcc_assert (cs_base->prev->reachable_labels);
9914 bitmap_ior_into (cs_base->reachable_labels,
9915 cs_base->prev->reachable_labels);
9916 }
9917 }
9918
9919
9920 static void
9921 resolve_lock_unlock_event (gfc_code *code)
9922 {
9923 if (code->expr1->expr_type == EXPR_FUNCTION
9924 && code->expr1->value.function.isym
9925 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9926 remove_caf_get_intrinsic (code->expr1);
9927
9928 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9929 && (code->expr1->ts.type != BT_DERIVED
9930 || code->expr1->expr_type != EXPR_VARIABLE
9931 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
9932 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
9933 || code->expr1->rank != 0
9934 || (!gfc_is_coarray (code->expr1) &&
9935 !gfc_is_coindexed (code->expr1))))
9936 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9937 &code->expr1->where);
9938 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
9939 && (code->expr1->ts.type != BT_DERIVED
9940 || code->expr1->expr_type != EXPR_VARIABLE
9941 || code->expr1->ts.u.derived->from_intmod
9942 != INTMOD_ISO_FORTRAN_ENV
9943 || code->expr1->ts.u.derived->intmod_sym_id
9944 != ISOFORTRAN_EVENT_TYPE
9945 || code->expr1->rank != 0))
9946 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9947 &code->expr1->where);
9948 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
9949 && !gfc_is_coindexed (code->expr1))
9950 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9951 &code->expr1->where);
9952 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
9953 gfc_error ("Event variable argument at %L must be a coarray but not "
9954 "coindexed", &code->expr1->where);
9955
9956 /* Check STAT. */
9957 if (code->expr2
9958 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9959 || code->expr2->expr_type != EXPR_VARIABLE))
9960 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9961 &code->expr2->where);
9962
9963 if (code->expr2
9964 && !gfc_check_vardef_context (code->expr2, false, false, false,
9965 _("STAT variable")))
9966 return;
9967
9968 /* Check ERRMSG. */
9969 if (code->expr3
9970 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9971 || code->expr3->expr_type != EXPR_VARIABLE))
9972 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9973 &code->expr3->where);
9974
9975 if (code->expr3
9976 && !gfc_check_vardef_context (code->expr3, false, false, false,
9977 _("ERRMSG variable")))
9978 return;
9979
9980 /* Check for LOCK the ACQUIRED_LOCK. */
9981 if (code->op != EXEC_EVENT_WAIT && code->expr4
9982 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
9983 || code->expr4->expr_type != EXPR_VARIABLE))
9984 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
9985 "variable", &code->expr4->where);
9986
9987 if (code->op != EXEC_EVENT_WAIT && code->expr4
9988 && !gfc_check_vardef_context (code->expr4, false, false, false,
9989 _("ACQUIRED_LOCK variable")))
9990 return;
9991
9992 /* Check for EVENT WAIT the UNTIL_COUNT. */
9993 if (code->op == EXEC_EVENT_WAIT && code->expr4)
9994 {
9995 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
9996 || code->expr4->rank != 0)
9997 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
9998 "expression", &code->expr4->where);
9999 }
10000 }
10001
10002
10003 static void
10004 resolve_critical (gfc_code *code)
10005 {
10006 gfc_symtree *symtree;
10007 gfc_symbol *lock_type;
10008 char name[GFC_MAX_SYMBOL_LEN];
10009 static int serial = 0;
10010
10011 if (flag_coarray != GFC_FCOARRAY_LIB)
10012 return;
10013
10014 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
10015 GFC_PREFIX ("lock_type"));
10016 if (symtree)
10017 lock_type = symtree->n.sym;
10018 else
10019 {
10020 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
10021 false) != 0)
10022 gcc_unreachable ();
10023 lock_type = symtree->n.sym;
10024 lock_type->attr.flavor = FL_DERIVED;
10025 lock_type->attr.zero_comp = 1;
10026 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
10027 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
10028 }
10029
10030 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
10031 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
10032 gcc_unreachable ();
10033
10034 code->resolved_sym = symtree->n.sym;
10035 symtree->n.sym->attr.flavor = FL_VARIABLE;
10036 symtree->n.sym->attr.referenced = 1;
10037 symtree->n.sym->attr.artificial = 1;
10038 symtree->n.sym->attr.codimension = 1;
10039 symtree->n.sym->ts.type = BT_DERIVED;
10040 symtree->n.sym->ts.u.derived = lock_type;
10041 symtree->n.sym->as = gfc_get_array_spec ();
10042 symtree->n.sym->as->corank = 1;
10043 symtree->n.sym->as->type = AS_EXPLICIT;
10044 symtree->n.sym->as->cotype = AS_EXPLICIT;
10045 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
10046 NULL, 1);
10047 gfc_commit_symbols();
10048 }
10049
10050
10051 static void
10052 resolve_sync (gfc_code *code)
10053 {
10054 /* Check imageset. The * case matches expr1 == NULL. */
10055 if (code->expr1)
10056 {
10057 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
10058 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
10059 "INTEGER expression", &code->expr1->where);
10060 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
10061 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
10062 gfc_error ("Imageset argument at %L must between 1 and num_images()",
10063 &code->expr1->where);
10064 else if (code->expr1->expr_type == EXPR_ARRAY
10065 && gfc_simplify_expr (code->expr1, 0))
10066 {
10067 gfc_constructor *cons;
10068 cons = gfc_constructor_first (code->expr1->value.constructor);
10069 for (; cons; cons = gfc_constructor_next (cons))
10070 if (cons->expr->expr_type == EXPR_CONSTANT
10071 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
10072 gfc_error ("Imageset argument at %L must between 1 and "
10073 "num_images()", &cons->expr->where);
10074 }
10075 }
10076
10077 /* Check STAT. */
10078 gfc_resolve_expr (code->expr2);
10079 if (code->expr2
10080 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
10081 || code->expr2->expr_type != EXPR_VARIABLE))
10082 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
10083 &code->expr2->where);
10084
10085 /* Check ERRMSG. */
10086 gfc_resolve_expr (code->expr3);
10087 if (code->expr3
10088 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
10089 || code->expr3->expr_type != EXPR_VARIABLE))
10090 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
10091 &code->expr3->where);
10092 }
10093
10094
10095 /* Given a branch to a label, see if the branch is conforming.
10096 The code node describes where the branch is located. */
10097
10098 static void
10099 resolve_branch (gfc_st_label *label, gfc_code *code)
10100 {
10101 code_stack *stack;
10102
10103 if (label == NULL)
10104 return;
10105
10106 /* Step one: is this a valid branching target? */
10107
10108 if (label->defined == ST_LABEL_UNKNOWN)
10109 {
10110 gfc_error ("Label %d referenced at %L is never defined", label->value,
10111 &code->loc);
10112 return;
10113 }
10114
10115 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
10116 {
10117 gfc_error ("Statement at %L is not a valid branch target statement "
10118 "for the branch statement at %L", &label->where, &code->loc);
10119 return;
10120 }
10121
10122 /* Step two: make sure this branch is not a branch to itself ;-) */
10123
10124 if (code->here == label)
10125 {
10126 gfc_warning (0,
10127 "Branch at %L may result in an infinite loop", &code->loc);
10128 return;
10129 }
10130
10131 /* Step three: See if the label is in the same block as the
10132 branching statement. The hard work has been done by setting up
10133 the bitmap reachable_labels. */
10134
10135 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
10136 {
10137 /* Check now whether there is a CRITICAL construct; if so, check
10138 whether the label is still visible outside of the CRITICAL block,
10139 which is invalid. */
10140 for (stack = cs_base; stack; stack = stack->prev)
10141 {
10142 if (stack->current->op == EXEC_CRITICAL
10143 && bitmap_bit_p (stack->reachable_labels, label->value))
10144 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
10145 "label at %L", &code->loc, &label->where);
10146 else if (stack->current->op == EXEC_DO_CONCURRENT
10147 && bitmap_bit_p (stack->reachable_labels, label->value))
10148 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
10149 "for label at %L", &code->loc, &label->where);
10150 }
10151
10152 return;
10153 }
10154
10155 /* Step four: If we haven't found the label in the bitmap, it may
10156 still be the label of the END of the enclosing block, in which
10157 case we find it by going up the code_stack. */
10158
10159 for (stack = cs_base; stack; stack = stack->prev)
10160 {
10161 if (stack->current->next && stack->current->next->here == label)
10162 break;
10163 if (stack->current->op == EXEC_CRITICAL)
10164 {
10165 /* Note: A label at END CRITICAL does not leave the CRITICAL
10166 construct as END CRITICAL is still part of it. */
10167 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
10168 " at %L", &code->loc, &label->where);
10169 return;
10170 }
10171 else if (stack->current->op == EXEC_DO_CONCURRENT)
10172 {
10173 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
10174 "label at %L", &code->loc, &label->where);
10175 return;
10176 }
10177 }
10178
10179 if (stack)
10180 {
10181 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
10182 return;
10183 }
10184
10185 /* The label is not in an enclosing block, so illegal. This was
10186 allowed in Fortran 66, so we allow it as extension. No
10187 further checks are necessary in this case. */
10188 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
10189 "as the GOTO statement at %L", &label->where,
10190 &code->loc);
10191 return;
10192 }
10193
10194
10195 /* Check whether EXPR1 has the same shape as EXPR2. */
10196
10197 static bool
10198 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
10199 {
10200 mpz_t shape[GFC_MAX_DIMENSIONS];
10201 mpz_t shape2[GFC_MAX_DIMENSIONS];
10202 bool result = false;
10203 int i;
10204
10205 /* Compare the rank. */
10206 if (expr1->rank != expr2->rank)
10207 return result;
10208
10209 /* Compare the size of each dimension. */
10210 for (i=0; i<expr1->rank; i++)
10211 {
10212 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
10213 goto ignore;
10214
10215 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
10216 goto ignore;
10217
10218 if (mpz_cmp (shape[i], shape2[i]))
10219 goto over;
10220 }
10221
10222 /* When either of the two expression is an assumed size array, we
10223 ignore the comparison of dimension sizes. */
10224 ignore:
10225 result = true;
10226
10227 over:
10228 gfc_clear_shape (shape, i);
10229 gfc_clear_shape (shape2, i);
10230 return result;
10231 }
10232
10233
10234 /* Check whether a WHERE assignment target or a WHERE mask expression
10235 has the same shape as the outmost WHERE mask expression. */
10236
10237 static void
10238 resolve_where (gfc_code *code, gfc_expr *mask)
10239 {
10240 gfc_code *cblock;
10241 gfc_code *cnext;
10242 gfc_expr *e = NULL;
10243
10244 cblock = code->block;
10245
10246 /* Store the first WHERE mask-expr of the WHERE statement or construct.
10247 In case of nested WHERE, only the outmost one is stored. */
10248 if (mask == NULL) /* outmost WHERE */
10249 e = cblock->expr1;
10250 else /* inner WHERE */
10251 e = mask;
10252
10253 while (cblock)
10254 {
10255 if (cblock->expr1)
10256 {
10257 /* Check if the mask-expr has a consistent shape with the
10258 outmost WHERE mask-expr. */
10259 if (!resolve_where_shape (cblock->expr1, e))
10260 gfc_error ("WHERE mask at %L has inconsistent shape",
10261 &cblock->expr1->where);
10262 }
10263
10264 /* the assignment statement of a WHERE statement, or the first
10265 statement in where-body-construct of a WHERE construct */
10266 cnext = cblock->next;
10267 while (cnext)
10268 {
10269 switch (cnext->op)
10270 {
10271 /* WHERE assignment statement */
10272 case EXEC_ASSIGN:
10273
10274 /* Check shape consistent for WHERE assignment target. */
10275 if (e && !resolve_where_shape (cnext->expr1, e))
10276 gfc_error ("WHERE assignment target at %L has "
10277 "inconsistent shape", &cnext->expr1->where);
10278 break;
10279
10280
10281 case EXEC_ASSIGN_CALL:
10282 resolve_call (cnext);
10283 if (!cnext->resolved_sym->attr.elemental)
10284 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10285 &cnext->ext.actual->expr->where);
10286 break;
10287
10288 /* WHERE or WHERE construct is part of a where-body-construct */
10289 case EXEC_WHERE:
10290 resolve_where (cnext, e);
10291 break;
10292
10293 default:
10294 gfc_error ("Unsupported statement inside WHERE at %L",
10295 &cnext->loc);
10296 }
10297 /* the next statement within the same where-body-construct */
10298 cnext = cnext->next;
10299 }
10300 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10301 cblock = cblock->block;
10302 }
10303 }
10304
10305
10306 /* Resolve assignment in FORALL construct.
10307 NVAR is the number of FORALL index variables, and VAR_EXPR records the
10308 FORALL index variables. */
10309
10310 static void
10311 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
10312 {
10313 int n;
10314
10315 for (n = 0; n < nvar; n++)
10316 {
10317 gfc_symbol *forall_index;
10318
10319 forall_index = var_expr[n]->symtree->n.sym;
10320
10321 /* Check whether the assignment target is one of the FORALL index
10322 variable. */
10323 if ((code->expr1->expr_type == EXPR_VARIABLE)
10324 && (code->expr1->symtree->n.sym == forall_index))
10325 gfc_error ("Assignment to a FORALL index variable at %L",
10326 &code->expr1->where);
10327 else
10328 {
10329 /* If one of the FORALL index variables doesn't appear in the
10330 assignment variable, then there could be a many-to-one
10331 assignment. Emit a warning rather than an error because the
10332 mask could be resolving this problem. */
10333 if (!find_forall_index (code->expr1, forall_index, 0))
10334 gfc_warning (0, "The FORALL with index %qs is not used on the "
10335 "left side of the assignment at %L and so might "
10336 "cause multiple assignment to this object",
10337 var_expr[n]->symtree->name, &code->expr1->where);
10338 }
10339 }
10340 }
10341
10342
10343 /* Resolve WHERE statement in FORALL construct. */
10344
10345 static void
10346 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
10347 gfc_expr **var_expr)
10348 {
10349 gfc_code *cblock;
10350 gfc_code *cnext;
10351
10352 cblock = code->block;
10353 while (cblock)
10354 {
10355 /* the assignment statement of a WHERE statement, or the first
10356 statement in where-body-construct of a WHERE construct */
10357 cnext = cblock->next;
10358 while (cnext)
10359 {
10360 switch (cnext->op)
10361 {
10362 /* WHERE assignment statement */
10363 case EXEC_ASSIGN:
10364 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
10365 break;
10366
10367 /* WHERE operator assignment statement */
10368 case EXEC_ASSIGN_CALL:
10369 resolve_call (cnext);
10370 if (!cnext->resolved_sym->attr.elemental)
10371 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10372 &cnext->ext.actual->expr->where);
10373 break;
10374
10375 /* WHERE or WHERE construct is part of a where-body-construct */
10376 case EXEC_WHERE:
10377 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
10378 break;
10379
10380 default:
10381 gfc_error ("Unsupported statement inside WHERE at %L",
10382 &cnext->loc);
10383 }
10384 /* the next statement within the same where-body-construct */
10385 cnext = cnext->next;
10386 }
10387 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10388 cblock = cblock->block;
10389 }
10390 }
10391
10392
10393 /* Traverse the FORALL body to check whether the following errors exist:
10394 1. For assignment, check if a many-to-one assignment happens.
10395 2. For WHERE statement, check the WHERE body to see if there is any
10396 many-to-one assignment. */
10397
10398 static void
10399 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
10400 {
10401 gfc_code *c;
10402
10403 c = code->block->next;
10404 while (c)
10405 {
10406 switch (c->op)
10407 {
10408 case EXEC_ASSIGN:
10409 case EXEC_POINTER_ASSIGN:
10410 gfc_resolve_assign_in_forall (c, nvar, var_expr);
10411 break;
10412
10413 case EXEC_ASSIGN_CALL:
10414 resolve_call (c);
10415 break;
10416
10417 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
10418 there is no need to handle it here. */
10419 case EXEC_FORALL:
10420 break;
10421 case EXEC_WHERE:
10422 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
10423 break;
10424 default:
10425 break;
10426 }
10427 /* The next statement in the FORALL body. */
10428 c = c->next;
10429 }
10430 }
10431
10432
10433 /* Counts the number of iterators needed inside a forall construct, including
10434 nested forall constructs. This is used to allocate the needed memory
10435 in gfc_resolve_forall. */
10436
10437 static int
10438 gfc_count_forall_iterators (gfc_code *code)
10439 {
10440 int max_iters, sub_iters, current_iters;
10441 gfc_forall_iterator *fa;
10442
10443 gcc_assert(code->op == EXEC_FORALL);
10444 max_iters = 0;
10445 current_iters = 0;
10446
10447 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10448 current_iters ++;
10449
10450 code = code->block->next;
10451
10452 while (code)
10453 {
10454 if (code->op == EXEC_FORALL)
10455 {
10456 sub_iters = gfc_count_forall_iterators (code);
10457 if (sub_iters > max_iters)
10458 max_iters = sub_iters;
10459 }
10460 code = code->next;
10461 }
10462
10463 return current_iters + max_iters;
10464 }
10465
10466
10467 /* Given a FORALL construct, first resolve the FORALL iterator, then call
10468 gfc_resolve_forall_body to resolve the FORALL body. */
10469
10470 static void
10471 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
10472 {
10473 static gfc_expr **var_expr;
10474 static int total_var = 0;
10475 static int nvar = 0;
10476 int i, old_nvar, tmp;
10477 gfc_forall_iterator *fa;
10478
10479 old_nvar = nvar;
10480
10481 if (!gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
10482 return;
10483
10484 /* Start to resolve a FORALL construct */
10485 if (forall_save == 0)
10486 {
10487 /* Count the total number of FORALL indices in the nested FORALL
10488 construct in order to allocate the VAR_EXPR with proper size. */
10489 total_var = gfc_count_forall_iterators (code);
10490
10491 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
10492 var_expr = XCNEWVEC (gfc_expr *, total_var);
10493 }
10494
10495 /* The information about FORALL iterator, including FORALL indices start, end
10496 and stride. An outer FORALL indice cannot appear in start, end or stride. */
10497 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10498 {
10499 /* Fortran 20008: C738 (R753). */
10500 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
10501 {
10502 gfc_error ("FORALL index-name at %L must be a scalar variable "
10503 "of type integer", &fa->var->where);
10504 continue;
10505 }
10506
10507 /* Check if any outer FORALL index name is the same as the current
10508 one. */
10509 for (i = 0; i < nvar; i++)
10510 {
10511 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
10512 gfc_error ("An outer FORALL construct already has an index "
10513 "with this name %L", &fa->var->where);
10514 }
10515
10516 /* Record the current FORALL index. */
10517 var_expr[nvar] = gfc_copy_expr (fa->var);
10518
10519 nvar++;
10520
10521 /* No memory leak. */
10522 gcc_assert (nvar <= total_var);
10523 }
10524
10525 /* Resolve the FORALL body. */
10526 gfc_resolve_forall_body (code, nvar, var_expr);
10527
10528 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
10529 gfc_resolve_blocks (code->block, ns);
10530
10531 tmp = nvar;
10532 nvar = old_nvar;
10533 /* Free only the VAR_EXPRs allocated in this frame. */
10534 for (i = nvar; i < tmp; i++)
10535 gfc_free_expr (var_expr[i]);
10536
10537 if (nvar == 0)
10538 {
10539 /* We are in the outermost FORALL construct. */
10540 gcc_assert (forall_save == 0);
10541
10542 /* VAR_EXPR is not needed any more. */
10543 free (var_expr);
10544 total_var = 0;
10545 }
10546 }
10547
10548
10549 /* Resolve a BLOCK construct statement. */
10550
10551 static void
10552 resolve_block_construct (gfc_code* code)
10553 {
10554 /* Resolve the BLOCK's namespace. */
10555 gfc_resolve (code->ext.block.ns);
10556
10557 /* For an ASSOCIATE block, the associations (and their targets) are already
10558 resolved during resolve_symbol. */
10559 }
10560
10561
10562 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
10563 DO code nodes. */
10564
10565 void
10566 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10567 {
10568 bool t;
10569
10570 for (; b; b = b->block)
10571 {
10572 t = gfc_resolve_expr (b->expr1);
10573 if (!gfc_resolve_expr (b->expr2))
10574 t = false;
10575
10576 switch (b->op)
10577 {
10578 case EXEC_IF:
10579 if (t && b->expr1 != NULL
10580 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10581 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10582 &b->expr1->where);
10583 break;
10584
10585 case EXEC_WHERE:
10586 if (t
10587 && b->expr1 != NULL
10588 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10589 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10590 &b->expr1->where);
10591 break;
10592
10593 case EXEC_GOTO:
10594 resolve_branch (b->label1, b);
10595 break;
10596
10597 case EXEC_BLOCK:
10598 resolve_block_construct (b);
10599 break;
10600
10601 case EXEC_SELECT:
10602 case EXEC_SELECT_TYPE:
10603 case EXEC_SELECT_RANK:
10604 case EXEC_FORALL:
10605 case EXEC_DO:
10606 case EXEC_DO_WHILE:
10607 case EXEC_DO_CONCURRENT:
10608 case EXEC_CRITICAL:
10609 case EXEC_READ:
10610 case EXEC_WRITE:
10611 case EXEC_IOLENGTH:
10612 case EXEC_WAIT:
10613 break;
10614
10615 case EXEC_OMP_ATOMIC:
10616 case EXEC_OACC_ATOMIC:
10617 {
10618 gfc_omp_atomic_op aop
10619 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10620
10621 /* Verify this before calling gfc_resolve_code, which might
10622 change it. */
10623 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10624 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10625 && b->next->next == NULL)
10626 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10627 && b->next->next != NULL
10628 && b->next->next->op == EXEC_ASSIGN
10629 && b->next->next->next == NULL));
10630 }
10631 break;
10632
10633 case EXEC_OACC_PARALLEL_LOOP:
10634 case EXEC_OACC_PARALLEL:
10635 case EXEC_OACC_KERNELS_LOOP:
10636 case EXEC_OACC_KERNELS:
10637 case EXEC_OACC_SERIAL_LOOP:
10638 case EXEC_OACC_SERIAL:
10639 case EXEC_OACC_DATA:
10640 case EXEC_OACC_HOST_DATA:
10641 case EXEC_OACC_LOOP:
10642 case EXEC_OACC_UPDATE:
10643 case EXEC_OACC_WAIT:
10644 case EXEC_OACC_CACHE:
10645 case EXEC_OACC_ENTER_DATA:
10646 case EXEC_OACC_EXIT_DATA:
10647 case EXEC_OACC_ROUTINE:
10648 case EXEC_OMP_CRITICAL:
10649 case EXEC_OMP_DISTRIBUTE:
10650 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10651 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10652 case EXEC_OMP_DISTRIBUTE_SIMD:
10653 case EXEC_OMP_DO:
10654 case EXEC_OMP_DO_SIMD:
10655 case EXEC_OMP_MASTER:
10656 case EXEC_OMP_ORDERED:
10657 case EXEC_OMP_PARALLEL:
10658 case EXEC_OMP_PARALLEL_DO:
10659 case EXEC_OMP_PARALLEL_DO_SIMD:
10660 case EXEC_OMP_PARALLEL_SECTIONS:
10661 case EXEC_OMP_PARALLEL_WORKSHARE:
10662 case EXEC_OMP_SECTIONS:
10663 case EXEC_OMP_SIMD:
10664 case EXEC_OMP_SINGLE:
10665 case EXEC_OMP_TARGET:
10666 case EXEC_OMP_TARGET_DATA:
10667 case EXEC_OMP_TARGET_ENTER_DATA:
10668 case EXEC_OMP_TARGET_EXIT_DATA:
10669 case EXEC_OMP_TARGET_PARALLEL:
10670 case EXEC_OMP_TARGET_PARALLEL_DO:
10671 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10672 case EXEC_OMP_TARGET_SIMD:
10673 case EXEC_OMP_TARGET_TEAMS:
10674 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10675 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10676 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10677 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10678 case EXEC_OMP_TARGET_UPDATE:
10679 case EXEC_OMP_TASK:
10680 case EXEC_OMP_TASKGROUP:
10681 case EXEC_OMP_TASKLOOP:
10682 case EXEC_OMP_TASKLOOP_SIMD:
10683 case EXEC_OMP_TASKWAIT:
10684 case EXEC_OMP_TASKYIELD:
10685 case EXEC_OMP_TEAMS:
10686 case EXEC_OMP_TEAMS_DISTRIBUTE:
10687 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10688 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10689 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10690 case EXEC_OMP_WORKSHARE:
10691 break;
10692
10693 default:
10694 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10695 }
10696
10697 gfc_resolve_code (b->next, ns);
10698 }
10699 }
10700
10701
10702 /* Does everything to resolve an ordinary assignment. Returns true
10703 if this is an interface assignment. */
10704 static bool
10705 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10706 {
10707 bool rval = false;
10708 gfc_expr *lhs;
10709 gfc_expr *rhs;
10710 int n;
10711 gfc_ref *ref;
10712 symbol_attribute attr;
10713
10714 if (gfc_extend_assign (code, ns))
10715 {
10716 gfc_expr** rhsptr;
10717
10718 if (code->op == EXEC_ASSIGN_CALL)
10719 {
10720 lhs = code->ext.actual->expr;
10721 rhsptr = &code->ext.actual->next->expr;
10722 }
10723 else
10724 {
10725 gfc_actual_arglist* args;
10726 gfc_typebound_proc* tbp;
10727
10728 gcc_assert (code->op == EXEC_COMPCALL);
10729
10730 args = code->expr1->value.compcall.actual;
10731 lhs = args->expr;
10732 rhsptr = &args->next->expr;
10733
10734 tbp = code->expr1->value.compcall.tbp;
10735 gcc_assert (!tbp->is_generic);
10736 }
10737
10738 /* Make a temporary rhs when there is a default initializer
10739 and rhs is the same symbol as the lhs. */
10740 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10741 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10742 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10743 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10744 *rhsptr = gfc_get_parentheses (*rhsptr);
10745
10746 return true;
10747 }
10748
10749 lhs = code->expr1;
10750 rhs = code->expr2;
10751
10752 if ((gfc_numeric_ts (&lhs->ts) || lhs->ts.type == BT_LOGICAL)
10753 && rhs->ts.type == BT_CHARACTER
10754 && (rhs->expr_type != EXPR_CONSTANT || !flag_dec_char_conversions))
10755 {
10756 /* Use of -fdec-char-conversions allows assignment of character data
10757 to non-character variables. This not permited for nonconstant
10758 strings. */
10759 gfc_error ("Cannot convert %s to %s at %L", gfc_typename (rhs),
10760 gfc_typename (lhs), &rhs->where);
10761 return false;
10762 }
10763
10764 /* Handle the case of a BOZ literal on the RHS. */
10765 if (rhs->ts.type == BT_BOZ)
10766 {
10767 if (gfc_invalid_boz ("BOZ literal constant at %L is neither a DATA "
10768 "statement value nor an actual argument of "
10769 "INT/REAL/DBLE/CMPLX intrinsic subprogram",
10770 &rhs->where))
10771 return false;
10772
10773 switch (lhs->ts.type)
10774 {
10775 case BT_INTEGER:
10776 if (!gfc_boz2int (rhs, lhs->ts.kind))
10777 return false;
10778 break;
10779 case BT_REAL:
10780 if (!gfc_boz2real (rhs, lhs->ts.kind))
10781 return false;
10782 break;
10783 default:
10784 gfc_error ("Invalid use of BOZ literal constant at %L", &rhs->where);
10785 return false;
10786 }
10787 }
10788
10789 if (lhs->ts.type == BT_CHARACTER && warn_character_truncation)
10790 {
10791 HOST_WIDE_INT llen = 0, rlen = 0;
10792 if (lhs->ts.u.cl != NULL
10793 && lhs->ts.u.cl->length != NULL
10794 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10795 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10796
10797 if (rhs->expr_type == EXPR_CONSTANT)
10798 rlen = rhs->value.character.length;
10799
10800 else if (rhs->ts.u.cl != NULL
10801 && rhs->ts.u.cl->length != NULL
10802 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10803 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10804
10805 if (rlen && llen && rlen > llen)
10806 gfc_warning_now (OPT_Wcharacter_truncation,
10807 "CHARACTER expression will be truncated "
10808 "in assignment (%ld/%ld) at %L",
10809 (long) llen, (long) rlen, &code->loc);
10810 }
10811
10812 /* Ensure that a vector index expression for the lvalue is evaluated
10813 to a temporary if the lvalue symbol is referenced in it. */
10814 if (lhs->rank)
10815 {
10816 for (ref = lhs->ref; ref; ref= ref->next)
10817 if (ref->type == REF_ARRAY)
10818 {
10819 for (n = 0; n < ref->u.ar.dimen; n++)
10820 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10821 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10822 ref->u.ar.start[n]))
10823 ref->u.ar.start[n]
10824 = gfc_get_parentheses (ref->u.ar.start[n]);
10825 }
10826 }
10827
10828 if (gfc_pure (NULL))
10829 {
10830 if (lhs->ts.type == BT_DERIVED
10831 && lhs->expr_type == EXPR_VARIABLE
10832 && lhs->ts.u.derived->attr.pointer_comp
10833 && rhs->expr_type == EXPR_VARIABLE
10834 && (gfc_impure_variable (rhs->symtree->n.sym)
10835 || gfc_is_coindexed (rhs)))
10836 {
10837 /* F2008, C1283. */
10838 if (gfc_is_coindexed (rhs))
10839 gfc_error ("Coindexed expression at %L is assigned to "
10840 "a derived type variable with a POINTER "
10841 "component in a PURE procedure",
10842 &rhs->where);
10843 else
10844 /* F2008, C1283 (4). */
10845 gfc_error ("In a pure subprogram an INTENT(IN) dummy argument "
10846 "shall not be used as the expr at %L of an intrinsic "
10847 "assignment statement in which the variable is of a "
10848 "derived type if the derived type has a pointer "
10849 "component at any level of component selection.",
10850 &rhs->where);
10851 return rval;
10852 }
10853
10854 /* Fortran 2008, C1283. */
10855 if (gfc_is_coindexed (lhs))
10856 {
10857 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10858 "procedure", &rhs->where);
10859 return rval;
10860 }
10861 }
10862
10863 if (gfc_implicit_pure (NULL))
10864 {
10865 if (lhs->expr_type == EXPR_VARIABLE
10866 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10867 && lhs->symtree->n.sym->ns != gfc_current_ns)
10868 gfc_unset_implicit_pure (NULL);
10869
10870 if (lhs->ts.type == BT_DERIVED
10871 && lhs->expr_type == EXPR_VARIABLE
10872 && lhs->ts.u.derived->attr.pointer_comp
10873 && rhs->expr_type == EXPR_VARIABLE
10874 && (gfc_impure_variable (rhs->symtree->n.sym)
10875 || gfc_is_coindexed (rhs)))
10876 gfc_unset_implicit_pure (NULL);
10877
10878 /* Fortran 2008, C1283. */
10879 if (gfc_is_coindexed (lhs))
10880 gfc_unset_implicit_pure (NULL);
10881 }
10882
10883 /* F2008, 7.2.1.2. */
10884 attr = gfc_expr_attr (lhs);
10885 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10886 {
10887 if (attr.codimension)
10888 {
10889 gfc_error ("Assignment to polymorphic coarray at %L is not "
10890 "permitted", &lhs->where);
10891 return false;
10892 }
10893 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10894 "polymorphic variable at %L", &lhs->where))
10895 return false;
10896 if (!flag_realloc_lhs)
10897 {
10898 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10899 "requires %<-frealloc-lhs%>", &lhs->where);
10900 return false;
10901 }
10902 }
10903 else if (lhs->ts.type == BT_CLASS)
10904 {
10905 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10906 "assignment at %L - check that there is a matching specific "
10907 "subroutine for '=' operator", &lhs->where);
10908 return false;
10909 }
10910
10911 bool lhs_coindexed = gfc_is_coindexed (lhs);
10912
10913 /* F2008, Section 7.2.1.2. */
10914 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10915 {
10916 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10917 "component in assignment at %L", &lhs->where);
10918 return false;
10919 }
10920
10921 /* Assign the 'data' of a class object to a derived type. */
10922 if (lhs->ts.type == BT_DERIVED
10923 && rhs->ts.type == BT_CLASS
10924 && rhs->expr_type != EXPR_ARRAY)
10925 gfc_add_data_component (rhs);
10926
10927 /* Make sure there is a vtable and, in particular, a _copy for the
10928 rhs type. */
10929 if (UNLIMITED_POLY (lhs) && lhs->rank && rhs->ts.type != BT_CLASS)
10930 gfc_find_vtab (&rhs->ts);
10931
10932 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
10933 && (lhs_coindexed
10934 || (code->expr2->expr_type == EXPR_FUNCTION
10935 && code->expr2->value.function.isym
10936 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
10937 && (code->expr1->rank == 0 || code->expr2->rank != 0)
10938 && !gfc_expr_attr (rhs).allocatable
10939 && !gfc_has_vector_subscript (rhs)));
10940
10941 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
10942
10943 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10944 Additionally, insert this code when the RHS is a CAF as we then use the
10945 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10946 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10947 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10948 path. */
10949 if (caf_convert_to_send)
10950 {
10951 if (code->expr2->expr_type == EXPR_FUNCTION
10952 && code->expr2->value.function.isym
10953 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
10954 remove_caf_get_intrinsic (code->expr2);
10955 code->op = EXEC_CALL;
10956 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
10957 code->resolved_sym = code->symtree->n.sym;
10958 code->resolved_sym->attr.flavor = FL_PROCEDURE;
10959 code->resolved_sym->attr.intrinsic = 1;
10960 code->resolved_sym->attr.subroutine = 1;
10961 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
10962 gfc_commit_symbol (code->resolved_sym);
10963 code->ext.actual = gfc_get_actual_arglist ();
10964 code->ext.actual->expr = lhs;
10965 code->ext.actual->next = gfc_get_actual_arglist ();
10966 code->ext.actual->next->expr = rhs;
10967 code->expr1 = NULL;
10968 code->expr2 = NULL;
10969 }
10970
10971 return false;
10972 }
10973
10974
10975 /* Add a component reference onto an expression. */
10976
10977 static void
10978 add_comp_ref (gfc_expr *e, gfc_component *c)
10979 {
10980 gfc_ref **ref;
10981 ref = &(e->ref);
10982 while (*ref)
10983 ref = &((*ref)->next);
10984 *ref = gfc_get_ref ();
10985 (*ref)->type = REF_COMPONENT;
10986 (*ref)->u.c.sym = e->ts.u.derived;
10987 (*ref)->u.c.component = c;
10988 e->ts = c->ts;
10989
10990 /* Add a full array ref, as necessary. */
10991 if (c->as)
10992 {
10993 gfc_add_full_array_ref (e, c->as);
10994 e->rank = c->as->rank;
10995 }
10996 }
10997
10998
10999 /* Build an assignment. Keep the argument 'op' for future use, so that
11000 pointer assignments can be made. */
11001
11002 static gfc_code *
11003 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
11004 gfc_component *comp1, gfc_component *comp2, locus loc)
11005 {
11006 gfc_code *this_code;
11007
11008 this_code = gfc_get_code (op);
11009 this_code->next = NULL;
11010 this_code->expr1 = gfc_copy_expr (expr1);
11011 this_code->expr2 = gfc_copy_expr (expr2);
11012 this_code->loc = loc;
11013 if (comp1 && comp2)
11014 {
11015 add_comp_ref (this_code->expr1, comp1);
11016 add_comp_ref (this_code->expr2, comp2);
11017 }
11018
11019 return this_code;
11020 }
11021
11022
11023 /* Makes a temporary variable expression based on the characteristics of
11024 a given variable expression. */
11025
11026 static gfc_expr*
11027 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
11028 {
11029 static int serial = 0;
11030 char name[GFC_MAX_SYMBOL_LEN];
11031 gfc_symtree *tmp;
11032 gfc_array_spec *as;
11033 gfc_array_ref *aref;
11034 gfc_ref *ref;
11035
11036 sprintf (name, GFC_PREFIX("DA%d"), serial++);
11037 gfc_get_sym_tree (name, ns, &tmp, false);
11038 gfc_add_type (tmp->n.sym, &e->ts, NULL);
11039
11040 if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
11041 tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
11042 NULL,
11043 e->value.character.length);
11044
11045 as = NULL;
11046 ref = NULL;
11047 aref = NULL;
11048
11049 /* Obtain the arrayspec for the temporary. */
11050 if (e->rank && e->expr_type != EXPR_ARRAY
11051 && e->expr_type != EXPR_FUNCTION
11052 && e->expr_type != EXPR_OP)
11053 {
11054 aref = gfc_find_array_ref (e);
11055 if (e->expr_type == EXPR_VARIABLE
11056 && e->symtree->n.sym->as == aref->as)
11057 as = aref->as;
11058 else
11059 {
11060 for (ref = e->ref; ref; ref = ref->next)
11061 if (ref->type == REF_COMPONENT
11062 && ref->u.c.component->as == aref->as)
11063 {
11064 as = aref->as;
11065 break;
11066 }
11067 }
11068 }
11069
11070 /* Add the attributes and the arrayspec to the temporary. */
11071 tmp->n.sym->attr = gfc_expr_attr (e);
11072 tmp->n.sym->attr.function = 0;
11073 tmp->n.sym->attr.result = 0;
11074 tmp->n.sym->attr.flavor = FL_VARIABLE;
11075 tmp->n.sym->attr.dummy = 0;
11076 tmp->n.sym->attr.intent = INTENT_UNKNOWN;
11077
11078 if (as)
11079 {
11080 tmp->n.sym->as = gfc_copy_array_spec (as);
11081 if (!ref)
11082 ref = e->ref;
11083 if (as->type == AS_DEFERRED)
11084 tmp->n.sym->attr.allocatable = 1;
11085 }
11086 else if (e->rank && (e->expr_type == EXPR_ARRAY
11087 || e->expr_type == EXPR_FUNCTION
11088 || e->expr_type == EXPR_OP))
11089 {
11090 tmp->n.sym->as = gfc_get_array_spec ();
11091 tmp->n.sym->as->type = AS_DEFERRED;
11092 tmp->n.sym->as->rank = e->rank;
11093 tmp->n.sym->attr.allocatable = 1;
11094 tmp->n.sym->attr.dimension = 1;
11095 }
11096 else
11097 tmp->n.sym->attr.dimension = 0;
11098
11099 gfc_set_sym_referenced (tmp->n.sym);
11100 gfc_commit_symbol (tmp->n.sym);
11101 e = gfc_lval_expr_from_sym (tmp->n.sym);
11102
11103 /* Should the lhs be a section, use its array ref for the
11104 temporary expression. */
11105 if (aref && aref->type != AR_FULL)
11106 {
11107 gfc_free_ref_list (e->ref);
11108 e->ref = gfc_copy_ref (ref);
11109 }
11110 return e;
11111 }
11112
11113
11114 /* Add one line of code to the code chain, making sure that 'head' and
11115 'tail' are appropriately updated. */
11116
11117 static void
11118 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
11119 {
11120 gcc_assert (this_code);
11121 if (*head == NULL)
11122 *head = *tail = *this_code;
11123 else
11124 *tail = gfc_append_code (*tail, *this_code);
11125 *this_code = NULL;
11126 }
11127
11128
11129 /* Counts the potential number of part array references that would
11130 result from resolution of typebound defined assignments. */
11131
11132 static int
11133 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
11134 {
11135 gfc_component *c;
11136 int c_depth = 0, t_depth;
11137
11138 for (c= derived->components; c; c = c->next)
11139 {
11140 if ((!gfc_bt_struct (c->ts.type)
11141 || c->attr.pointer
11142 || c->attr.allocatable
11143 || c->attr.proc_pointer_comp
11144 || c->attr.class_pointer
11145 || c->attr.proc_pointer)
11146 && !c->attr.defined_assign_comp)
11147 continue;
11148
11149 if (c->as && c_depth == 0)
11150 c_depth = 1;
11151
11152 if (c->ts.u.derived->attr.defined_assign_comp)
11153 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
11154 c->as ? 1 : 0);
11155 else
11156 t_depth = 0;
11157
11158 c_depth = t_depth > c_depth ? t_depth : c_depth;
11159 }
11160 return depth + c_depth;
11161 }
11162
11163
11164 /* Implement 7.2.1.3 of the F08 standard:
11165 "An intrinsic assignment where the variable is of derived type is
11166 performed as if each component of the variable were assigned from the
11167 corresponding component of expr using pointer assignment (7.2.2) for
11168 each pointer component, defined assignment for each nonpointer
11169 nonallocatable component of a type that has a type-bound defined
11170 assignment consistent with the component, intrinsic assignment for
11171 each other nonpointer nonallocatable component, ..."
11172
11173 The pointer assignments are taken care of by the intrinsic
11174 assignment of the structure itself. This function recursively adds
11175 defined assignments where required. The recursion is accomplished
11176 by calling gfc_resolve_code.
11177
11178 When the lhs in a defined assignment has intent INOUT, we need a
11179 temporary for the lhs. In pseudo-code:
11180
11181 ! Only call function lhs once.
11182 if (lhs is not a constant or an variable)
11183 temp_x = expr2
11184 expr2 => temp_x
11185 ! Do the intrinsic assignment
11186 expr1 = expr2
11187 ! Now do the defined assignments
11188 do over components with typebound defined assignment [%cmp]
11189 #if one component's assignment procedure is INOUT
11190 t1 = expr1
11191 #if expr2 non-variable
11192 temp_x = expr2
11193 expr2 => temp_x
11194 # endif
11195 expr1 = expr2
11196 # for each cmp
11197 t1%cmp {defined=} expr2%cmp
11198 expr1%cmp = t1%cmp
11199 #else
11200 expr1 = expr2
11201
11202 # for each cmp
11203 expr1%cmp {defined=} expr2%cmp
11204 #endif
11205 */
11206
11207 /* The temporary assignments have to be put on top of the additional
11208 code to avoid the result being changed by the intrinsic assignment.
11209 */
11210 static int component_assignment_level = 0;
11211 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
11212
11213 static void
11214 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
11215 {
11216 gfc_component *comp1, *comp2;
11217 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
11218 gfc_expr *t1;
11219 int error_count, depth;
11220
11221 gfc_get_errors (NULL, &error_count);
11222
11223 /* Filter out continuing processing after an error. */
11224 if (error_count
11225 || (*code)->expr1->ts.type != BT_DERIVED
11226 || (*code)->expr2->ts.type != BT_DERIVED)
11227 return;
11228
11229 /* TODO: Handle more than one part array reference in assignments. */
11230 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
11231 (*code)->expr1->rank ? 1 : 0);
11232 if (depth > 1)
11233 {
11234 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
11235 "done because multiple part array references would "
11236 "occur in intermediate expressions.", &(*code)->loc);
11237 return;
11238 }
11239
11240 component_assignment_level++;
11241
11242 /* Create a temporary so that functions get called only once. */
11243 if ((*code)->expr2->expr_type != EXPR_VARIABLE
11244 && (*code)->expr2->expr_type != EXPR_CONSTANT)
11245 {
11246 gfc_expr *tmp_expr;
11247
11248 /* Assign the rhs to the temporary. */
11249 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11250 this_code = build_assignment (EXEC_ASSIGN,
11251 tmp_expr, (*code)->expr2,
11252 NULL, NULL, (*code)->loc);
11253 /* Add the code and substitute the rhs expression. */
11254 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
11255 gfc_free_expr ((*code)->expr2);
11256 (*code)->expr2 = tmp_expr;
11257 }
11258
11259 /* Do the intrinsic assignment. This is not needed if the lhs is one
11260 of the temporaries generated here, since the intrinsic assignment
11261 to the final result already does this. */
11262 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
11263 {
11264 this_code = build_assignment (EXEC_ASSIGN,
11265 (*code)->expr1, (*code)->expr2,
11266 NULL, NULL, (*code)->loc);
11267 add_code_to_chain (&this_code, &head, &tail);
11268 }
11269
11270 comp1 = (*code)->expr1->ts.u.derived->components;
11271 comp2 = (*code)->expr2->ts.u.derived->components;
11272
11273 t1 = NULL;
11274 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
11275 {
11276 bool inout = false;
11277
11278 /* The intrinsic assignment does the right thing for pointers
11279 of all kinds and allocatable components. */
11280 if (!gfc_bt_struct (comp1->ts.type)
11281 || comp1->attr.pointer
11282 || comp1->attr.allocatable
11283 || comp1->attr.proc_pointer_comp
11284 || comp1->attr.class_pointer
11285 || comp1->attr.proc_pointer)
11286 continue;
11287
11288 /* Make an assigment for this component. */
11289 this_code = build_assignment (EXEC_ASSIGN,
11290 (*code)->expr1, (*code)->expr2,
11291 comp1, comp2, (*code)->loc);
11292
11293 /* Convert the assignment if there is a defined assignment for
11294 this type. Otherwise, using the call from gfc_resolve_code,
11295 recurse into its components. */
11296 gfc_resolve_code (this_code, ns);
11297
11298 if (this_code->op == EXEC_ASSIGN_CALL)
11299 {
11300 gfc_formal_arglist *dummy_args;
11301 gfc_symbol *rsym;
11302 /* Check that there is a typebound defined assignment. If not,
11303 then this must be a module defined assignment. We cannot
11304 use the defined_assign_comp attribute here because it must
11305 be this derived type that has the defined assignment and not
11306 a parent type. */
11307 if (!(comp1->ts.u.derived->f2k_derived
11308 && comp1->ts.u.derived->f2k_derived
11309 ->tb_op[INTRINSIC_ASSIGN]))
11310 {
11311 gfc_free_statements (this_code);
11312 this_code = NULL;
11313 continue;
11314 }
11315
11316 /* If the first argument of the subroutine has intent INOUT
11317 a temporary must be generated and used instead. */
11318 rsym = this_code->resolved_sym;
11319 dummy_args = gfc_sym_get_dummy_args (rsym);
11320 if (dummy_args
11321 && dummy_args->sym->attr.intent == INTENT_INOUT)
11322 {
11323 gfc_code *temp_code;
11324 inout = true;
11325
11326 /* Build the temporary required for the assignment and put
11327 it at the head of the generated code. */
11328 if (!t1)
11329 {
11330 t1 = get_temp_from_expr ((*code)->expr1, ns);
11331 temp_code = build_assignment (EXEC_ASSIGN,
11332 t1, (*code)->expr1,
11333 NULL, NULL, (*code)->loc);
11334
11335 /* For allocatable LHS, check whether it is allocated. Note
11336 that allocatable components with defined assignment are
11337 not yet support. See PR 57696. */
11338 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
11339 {
11340 gfc_code *block;
11341 gfc_expr *e =
11342 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11343 block = gfc_get_code (EXEC_IF);
11344 block->block = gfc_get_code (EXEC_IF);
11345 block->block->expr1
11346 = gfc_build_intrinsic_call (ns,
11347 GFC_ISYM_ALLOCATED, "allocated",
11348 (*code)->loc, 1, e);
11349 block->block->next = temp_code;
11350 temp_code = block;
11351 }
11352 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
11353 }
11354
11355 /* Replace the first actual arg with the component of the
11356 temporary. */
11357 gfc_free_expr (this_code->ext.actual->expr);
11358 this_code->ext.actual->expr = gfc_copy_expr (t1);
11359 add_comp_ref (this_code->ext.actual->expr, comp1);
11360
11361 /* If the LHS variable is allocatable and wasn't allocated and
11362 the temporary is allocatable, pointer assign the address of
11363 the freshly allocated LHS to the temporary. */
11364 if ((*code)->expr1->symtree->n.sym->attr.allocatable
11365 && gfc_expr_attr ((*code)->expr1).allocatable)
11366 {
11367 gfc_code *block;
11368 gfc_expr *cond;
11369
11370 cond = gfc_get_expr ();
11371 cond->ts.type = BT_LOGICAL;
11372 cond->ts.kind = gfc_default_logical_kind;
11373 cond->expr_type = EXPR_OP;
11374 cond->where = (*code)->loc;
11375 cond->value.op.op = INTRINSIC_NOT;
11376 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
11377 GFC_ISYM_ALLOCATED, "allocated",
11378 (*code)->loc, 1, gfc_copy_expr (t1));
11379 block = gfc_get_code (EXEC_IF);
11380 block->block = gfc_get_code (EXEC_IF);
11381 block->block->expr1 = cond;
11382 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11383 t1, (*code)->expr1,
11384 NULL, NULL, (*code)->loc);
11385 add_code_to_chain (&block, &head, &tail);
11386 }
11387 }
11388 }
11389 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
11390 {
11391 /* Don't add intrinsic assignments since they are already
11392 effected by the intrinsic assignment of the structure. */
11393 gfc_free_statements (this_code);
11394 this_code = NULL;
11395 continue;
11396 }
11397
11398 add_code_to_chain (&this_code, &head, &tail);
11399
11400 if (t1 && inout)
11401 {
11402 /* Transfer the value to the final result. */
11403 this_code = build_assignment (EXEC_ASSIGN,
11404 (*code)->expr1, t1,
11405 comp1, comp2, (*code)->loc);
11406 add_code_to_chain (&this_code, &head, &tail);
11407 }
11408 }
11409
11410 /* Put the temporary assignments at the top of the generated code. */
11411 if (tmp_head && component_assignment_level == 1)
11412 {
11413 gfc_append_code (tmp_head, head);
11414 head = tmp_head;
11415 tmp_head = tmp_tail = NULL;
11416 }
11417
11418 // If we did a pointer assignment - thus, we need to ensure that the LHS is
11419 // not accidentally deallocated. Hence, nullify t1.
11420 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
11421 && gfc_expr_attr ((*code)->expr1).allocatable)
11422 {
11423 gfc_code *block;
11424 gfc_expr *cond;
11425 gfc_expr *e;
11426
11427 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11428 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
11429 (*code)->loc, 2, gfc_copy_expr (t1), e);
11430 block = gfc_get_code (EXEC_IF);
11431 block->block = gfc_get_code (EXEC_IF);
11432 block->block->expr1 = cond;
11433 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11434 t1, gfc_get_null_expr (&(*code)->loc),
11435 NULL, NULL, (*code)->loc);
11436 gfc_append_code (tail, block);
11437 tail = block;
11438 }
11439
11440 /* Now attach the remaining code chain to the input code. Step on
11441 to the end of the new code since resolution is complete. */
11442 gcc_assert ((*code)->op == EXEC_ASSIGN);
11443 tail->next = (*code)->next;
11444 /* Overwrite 'code' because this would place the intrinsic assignment
11445 before the temporary for the lhs is created. */
11446 gfc_free_expr ((*code)->expr1);
11447 gfc_free_expr ((*code)->expr2);
11448 **code = *head;
11449 if (head != tail)
11450 free (head);
11451 *code = tail;
11452
11453 component_assignment_level--;
11454 }
11455
11456
11457 /* F2008: Pointer function assignments are of the form:
11458 ptr_fcn (args) = expr
11459 This function breaks these assignments into two statements:
11460 temporary_pointer => ptr_fcn(args)
11461 temporary_pointer = expr */
11462
11463 static bool
11464 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
11465 {
11466 gfc_expr *tmp_ptr_expr;
11467 gfc_code *this_code;
11468 gfc_component *comp;
11469 gfc_symbol *s;
11470
11471 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
11472 return false;
11473
11474 /* Even if standard does not support this feature, continue to build
11475 the two statements to avoid upsetting frontend_passes.c. */
11476 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
11477 "%L", &(*code)->loc);
11478
11479 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
11480
11481 if (comp)
11482 s = comp->ts.interface;
11483 else
11484 s = (*code)->expr1->symtree->n.sym;
11485
11486 if (s == NULL || !s->result->attr.pointer)
11487 {
11488 gfc_error ("The function result on the lhs of the assignment at "
11489 "%L must have the pointer attribute.",
11490 &(*code)->expr1->where);
11491 (*code)->op = EXEC_NOP;
11492 return false;
11493 }
11494
11495 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
11496
11497 /* get_temp_from_expression is set up for ordinary assignments. To that
11498 end, where array bounds are not known, arrays are made allocatable.
11499 Change the temporary to a pointer here. */
11500 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
11501 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
11502 tmp_ptr_expr->where = (*code)->loc;
11503
11504 this_code = build_assignment (EXEC_ASSIGN,
11505 tmp_ptr_expr, (*code)->expr2,
11506 NULL, NULL, (*code)->loc);
11507 this_code->next = (*code)->next;
11508 (*code)->next = this_code;
11509 (*code)->op = EXEC_POINTER_ASSIGN;
11510 (*code)->expr2 = (*code)->expr1;
11511 (*code)->expr1 = tmp_ptr_expr;
11512
11513 return true;
11514 }
11515
11516
11517 /* Deferred character length assignments from an operator expression
11518 require a temporary because the character length of the lhs can
11519 change in the course of the assignment. */
11520
11521 static bool
11522 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
11523 {
11524 gfc_expr *tmp_expr;
11525 gfc_code *this_code;
11526
11527 if (!((*code)->expr1->ts.type == BT_CHARACTER
11528 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
11529 && (*code)->expr2->expr_type == EXPR_OP))
11530 return false;
11531
11532 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
11533 return false;
11534
11535 if (gfc_expr_attr ((*code)->expr1).pointer)
11536 return false;
11537
11538 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11539 tmp_expr->where = (*code)->loc;
11540
11541 /* A new charlen is required to ensure that the variable string
11542 length is different to that of the original lhs. */
11543 tmp_expr->ts.u.cl = gfc_get_charlen();
11544 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
11545 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
11546 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
11547
11548 tmp_expr->symtree->n.sym->ts.deferred = 1;
11549
11550 this_code = build_assignment (EXEC_ASSIGN,
11551 (*code)->expr1,
11552 gfc_copy_expr (tmp_expr),
11553 NULL, NULL, (*code)->loc);
11554
11555 (*code)->expr1 = tmp_expr;
11556
11557 this_code->next = (*code)->next;
11558 (*code)->next = this_code;
11559
11560 return true;
11561 }
11562
11563
11564 /* Given a block of code, recursively resolve everything pointed to by this
11565 code block. */
11566
11567 void
11568 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
11569 {
11570 int omp_workshare_save;
11571 int forall_save, do_concurrent_save;
11572 code_stack frame;
11573 bool t;
11574
11575 frame.prev = cs_base;
11576 frame.head = code;
11577 cs_base = &frame;
11578
11579 find_reachable_labels (code);
11580
11581 for (; code; code = code->next)
11582 {
11583 frame.current = code;
11584 forall_save = forall_flag;
11585 do_concurrent_save = gfc_do_concurrent_flag;
11586
11587 if (code->op == EXEC_FORALL)
11588 {
11589 forall_flag = 1;
11590 gfc_resolve_forall (code, ns, forall_save);
11591 forall_flag = 2;
11592 }
11593 else if (code->block)
11594 {
11595 omp_workshare_save = -1;
11596 switch (code->op)
11597 {
11598 case EXEC_OACC_PARALLEL_LOOP:
11599 case EXEC_OACC_PARALLEL:
11600 case EXEC_OACC_KERNELS_LOOP:
11601 case EXEC_OACC_KERNELS:
11602 case EXEC_OACC_SERIAL_LOOP:
11603 case EXEC_OACC_SERIAL:
11604 case EXEC_OACC_DATA:
11605 case EXEC_OACC_HOST_DATA:
11606 case EXEC_OACC_LOOP:
11607 gfc_resolve_oacc_blocks (code, ns);
11608 break;
11609 case EXEC_OMP_PARALLEL_WORKSHARE:
11610 omp_workshare_save = omp_workshare_flag;
11611 omp_workshare_flag = 1;
11612 gfc_resolve_omp_parallel_blocks (code, ns);
11613 break;
11614 case EXEC_OMP_PARALLEL:
11615 case EXEC_OMP_PARALLEL_DO:
11616 case EXEC_OMP_PARALLEL_DO_SIMD:
11617 case EXEC_OMP_PARALLEL_SECTIONS:
11618 case EXEC_OMP_TARGET_PARALLEL:
11619 case EXEC_OMP_TARGET_PARALLEL_DO:
11620 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11621 case EXEC_OMP_TARGET_TEAMS:
11622 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11623 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11624 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11625 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11626 case EXEC_OMP_TASK:
11627 case EXEC_OMP_TASKLOOP:
11628 case EXEC_OMP_TASKLOOP_SIMD:
11629 case EXEC_OMP_TEAMS:
11630 case EXEC_OMP_TEAMS_DISTRIBUTE:
11631 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11632 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11633 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11634 omp_workshare_save = omp_workshare_flag;
11635 omp_workshare_flag = 0;
11636 gfc_resolve_omp_parallel_blocks (code, ns);
11637 break;
11638 case EXEC_OMP_DISTRIBUTE:
11639 case EXEC_OMP_DISTRIBUTE_SIMD:
11640 case EXEC_OMP_DO:
11641 case EXEC_OMP_DO_SIMD:
11642 case EXEC_OMP_SIMD:
11643 case EXEC_OMP_TARGET_SIMD:
11644 gfc_resolve_omp_do_blocks (code, ns);
11645 break;
11646 case EXEC_SELECT_TYPE:
11647 /* Blocks are handled in resolve_select_type because we have
11648 to transform the SELECT TYPE into ASSOCIATE first. */
11649 break;
11650 case EXEC_DO_CONCURRENT:
11651 gfc_do_concurrent_flag = 1;
11652 gfc_resolve_blocks (code->block, ns);
11653 gfc_do_concurrent_flag = 2;
11654 break;
11655 case EXEC_OMP_WORKSHARE:
11656 omp_workshare_save = omp_workshare_flag;
11657 omp_workshare_flag = 1;
11658 /* FALL THROUGH */
11659 default:
11660 gfc_resolve_blocks (code->block, ns);
11661 break;
11662 }
11663
11664 if (omp_workshare_save != -1)
11665 omp_workshare_flag = omp_workshare_save;
11666 }
11667 start:
11668 t = true;
11669 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11670 t = gfc_resolve_expr (code->expr1);
11671 forall_flag = forall_save;
11672 gfc_do_concurrent_flag = do_concurrent_save;
11673
11674 if (!gfc_resolve_expr (code->expr2))
11675 t = false;
11676
11677 if (code->op == EXEC_ALLOCATE
11678 && !gfc_resolve_expr (code->expr3))
11679 t = false;
11680
11681 switch (code->op)
11682 {
11683 case EXEC_NOP:
11684 case EXEC_END_BLOCK:
11685 case EXEC_END_NESTED_BLOCK:
11686 case EXEC_CYCLE:
11687 case EXEC_PAUSE:
11688 case EXEC_STOP:
11689 case EXEC_ERROR_STOP:
11690 case EXEC_EXIT:
11691 case EXEC_CONTINUE:
11692 case EXEC_DT_END:
11693 case EXEC_ASSIGN_CALL:
11694 break;
11695
11696 case EXEC_CRITICAL:
11697 resolve_critical (code);
11698 break;
11699
11700 case EXEC_SYNC_ALL:
11701 case EXEC_SYNC_IMAGES:
11702 case EXEC_SYNC_MEMORY:
11703 resolve_sync (code);
11704 break;
11705
11706 case EXEC_LOCK:
11707 case EXEC_UNLOCK:
11708 case EXEC_EVENT_POST:
11709 case EXEC_EVENT_WAIT:
11710 resolve_lock_unlock_event (code);
11711 break;
11712
11713 case EXEC_FAIL_IMAGE:
11714 case EXEC_FORM_TEAM:
11715 case EXEC_CHANGE_TEAM:
11716 case EXEC_END_TEAM:
11717 case EXEC_SYNC_TEAM:
11718 break;
11719
11720 case EXEC_ENTRY:
11721 /* Keep track of which entry we are up to. */
11722 current_entry_id = code->ext.entry->id;
11723 break;
11724
11725 case EXEC_WHERE:
11726 resolve_where (code, NULL);
11727 break;
11728
11729 case EXEC_GOTO:
11730 if (code->expr1 != NULL)
11731 {
11732 if (code->expr1->ts.type != BT_INTEGER)
11733 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11734 "INTEGER variable", &code->expr1->where);
11735 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11736 gfc_error ("Variable %qs has not been assigned a target "
11737 "label at %L", code->expr1->symtree->n.sym->name,
11738 &code->expr1->where);
11739 }
11740 else
11741 resolve_branch (code->label1, code);
11742 break;
11743
11744 case EXEC_RETURN:
11745 if (code->expr1 != NULL
11746 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11747 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11748 "INTEGER return specifier", &code->expr1->where);
11749 break;
11750
11751 case EXEC_INIT_ASSIGN:
11752 case EXEC_END_PROCEDURE:
11753 break;
11754
11755 case EXEC_ASSIGN:
11756 if (!t)
11757 break;
11758
11759 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11760 the LHS. */
11761 if (code->expr1->expr_type == EXPR_FUNCTION
11762 && code->expr1->value.function.isym
11763 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11764 remove_caf_get_intrinsic (code->expr1);
11765
11766 /* If this is a pointer function in an lvalue variable context,
11767 the new code will have to be resolved afresh. This is also the
11768 case with an error, where the code is transformed into NOP to
11769 prevent ICEs downstream. */
11770 if (resolve_ptr_fcn_assign (&code, ns)
11771 || code->op == EXEC_NOP)
11772 goto start;
11773
11774 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11775 _("assignment")))
11776 break;
11777
11778 if (resolve_ordinary_assign (code, ns))
11779 {
11780 if (code->op == EXEC_COMPCALL)
11781 goto compcall;
11782 else
11783 goto call;
11784 }
11785
11786 /* Check for dependencies in deferred character length array
11787 assignments and generate a temporary, if necessary. */
11788 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11789 break;
11790
11791 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11792 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11793 && code->expr1->ts.u.derived
11794 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11795 generate_component_assignments (&code, ns);
11796
11797 break;
11798
11799 case EXEC_LABEL_ASSIGN:
11800 if (code->label1->defined == ST_LABEL_UNKNOWN)
11801 gfc_error ("Label %d referenced at %L is never defined",
11802 code->label1->value, &code->label1->where);
11803 if (t
11804 && (code->expr1->expr_type != EXPR_VARIABLE
11805 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11806 || code->expr1->symtree->n.sym->ts.kind
11807 != gfc_default_integer_kind
11808 || code->expr1->symtree->n.sym->as != NULL))
11809 gfc_error ("ASSIGN statement at %L requires a scalar "
11810 "default INTEGER variable", &code->expr1->where);
11811 break;
11812
11813 case EXEC_POINTER_ASSIGN:
11814 {
11815 gfc_expr* e;
11816
11817 if (!t)
11818 break;
11819
11820 /* This is both a variable definition and pointer assignment
11821 context, so check both of them. For rank remapping, a final
11822 array ref may be present on the LHS and fool gfc_expr_attr
11823 used in gfc_check_vardef_context. Remove it. */
11824 e = remove_last_array_ref (code->expr1);
11825 t = gfc_check_vardef_context (e, true, false, false,
11826 _("pointer assignment"));
11827 if (t)
11828 t = gfc_check_vardef_context (e, false, false, false,
11829 _("pointer assignment"));
11830 gfc_free_expr (e);
11831
11832 t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
11833
11834 if (!t)
11835 break;
11836
11837 /* Assigning a class object always is a regular assign. */
11838 if (code->expr2->ts.type == BT_CLASS
11839 && code->expr1->ts.type == BT_CLASS
11840 && !CLASS_DATA (code->expr2)->attr.dimension
11841 && !(gfc_expr_attr (code->expr1).proc_pointer
11842 && code->expr2->expr_type == EXPR_VARIABLE
11843 && code->expr2->symtree->n.sym->attr.flavor
11844 == FL_PROCEDURE))
11845 code->op = EXEC_ASSIGN;
11846 break;
11847 }
11848
11849 case EXEC_ARITHMETIC_IF:
11850 {
11851 gfc_expr *e = code->expr1;
11852
11853 gfc_resolve_expr (e);
11854 if (e->expr_type == EXPR_NULL)
11855 gfc_error ("Invalid NULL at %L", &e->where);
11856
11857 if (t && (e->rank > 0
11858 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11859 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11860 "REAL or INTEGER expression", &e->where);
11861
11862 resolve_branch (code->label1, code);
11863 resolve_branch (code->label2, code);
11864 resolve_branch (code->label3, code);
11865 }
11866 break;
11867
11868 case EXEC_IF:
11869 if (t && code->expr1 != NULL
11870 && (code->expr1->ts.type != BT_LOGICAL
11871 || code->expr1->rank != 0))
11872 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11873 &code->expr1->where);
11874 break;
11875
11876 case EXEC_CALL:
11877 call:
11878 resolve_call (code);
11879 break;
11880
11881 case EXEC_COMPCALL:
11882 compcall:
11883 resolve_typebound_subroutine (code);
11884 break;
11885
11886 case EXEC_CALL_PPC:
11887 resolve_ppc_call (code);
11888 break;
11889
11890 case EXEC_SELECT:
11891 /* Select is complicated. Also, a SELECT construct could be
11892 a transformed computed GOTO. */
11893 resolve_select (code, false);
11894 break;
11895
11896 case EXEC_SELECT_TYPE:
11897 resolve_select_type (code, ns);
11898 break;
11899
11900 case EXEC_SELECT_RANK:
11901 resolve_select_rank (code, ns);
11902 break;
11903
11904 case EXEC_BLOCK:
11905 resolve_block_construct (code);
11906 break;
11907
11908 case EXEC_DO:
11909 if (code->ext.iterator != NULL)
11910 {
11911 gfc_iterator *iter = code->ext.iterator;
11912 if (gfc_resolve_iterator (iter, true, false))
11913 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11914 true);
11915 }
11916 break;
11917
11918 case EXEC_DO_WHILE:
11919 if (code->expr1 == NULL)
11920 gfc_internal_error ("gfc_resolve_code(): No expression on "
11921 "DO WHILE");
11922 if (t
11923 && (code->expr1->rank != 0
11924 || code->expr1->ts.type != BT_LOGICAL))
11925 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11926 "a scalar LOGICAL expression", &code->expr1->where);
11927 break;
11928
11929 case EXEC_ALLOCATE:
11930 if (t)
11931 resolve_allocate_deallocate (code, "ALLOCATE");
11932
11933 break;
11934
11935 case EXEC_DEALLOCATE:
11936 if (t)
11937 resolve_allocate_deallocate (code, "DEALLOCATE");
11938
11939 break;
11940
11941 case EXEC_OPEN:
11942 if (!gfc_resolve_open (code->ext.open))
11943 break;
11944
11945 resolve_branch (code->ext.open->err, code);
11946 break;
11947
11948 case EXEC_CLOSE:
11949 if (!gfc_resolve_close (code->ext.close))
11950 break;
11951
11952 resolve_branch (code->ext.close->err, code);
11953 break;
11954
11955 case EXEC_BACKSPACE:
11956 case EXEC_ENDFILE:
11957 case EXEC_REWIND:
11958 case EXEC_FLUSH:
11959 if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
11960 break;
11961
11962 resolve_branch (code->ext.filepos->err, code);
11963 break;
11964
11965 case EXEC_INQUIRE:
11966 if (!gfc_resolve_inquire (code->ext.inquire))
11967 break;
11968
11969 resolve_branch (code->ext.inquire->err, code);
11970 break;
11971
11972 case EXEC_IOLENGTH:
11973 gcc_assert (code->ext.inquire != NULL);
11974 if (!gfc_resolve_inquire (code->ext.inquire))
11975 break;
11976
11977 resolve_branch (code->ext.inquire->err, code);
11978 break;
11979
11980 case EXEC_WAIT:
11981 if (!gfc_resolve_wait (code->ext.wait))
11982 break;
11983
11984 resolve_branch (code->ext.wait->err, code);
11985 resolve_branch (code->ext.wait->end, code);
11986 resolve_branch (code->ext.wait->eor, code);
11987 break;
11988
11989 case EXEC_READ:
11990 case EXEC_WRITE:
11991 if (!gfc_resolve_dt (code->ext.dt, &code->loc))
11992 break;
11993
11994 resolve_branch (code->ext.dt->err, code);
11995 resolve_branch (code->ext.dt->end, code);
11996 resolve_branch (code->ext.dt->eor, code);
11997 break;
11998
11999 case EXEC_TRANSFER:
12000 resolve_transfer (code);
12001 break;
12002
12003 case EXEC_DO_CONCURRENT:
12004 case EXEC_FORALL:
12005 resolve_forall_iterators (code->ext.forall_iterator);
12006
12007 if (code->expr1 != NULL
12008 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
12009 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
12010 "expression", &code->expr1->where);
12011 break;
12012
12013 case EXEC_OACC_PARALLEL_LOOP:
12014 case EXEC_OACC_PARALLEL:
12015 case EXEC_OACC_KERNELS_LOOP:
12016 case EXEC_OACC_KERNELS:
12017 case EXEC_OACC_SERIAL_LOOP:
12018 case EXEC_OACC_SERIAL:
12019 case EXEC_OACC_DATA:
12020 case EXEC_OACC_HOST_DATA:
12021 case EXEC_OACC_LOOP:
12022 case EXEC_OACC_UPDATE:
12023 case EXEC_OACC_WAIT:
12024 case EXEC_OACC_CACHE:
12025 case EXEC_OACC_ENTER_DATA:
12026 case EXEC_OACC_EXIT_DATA:
12027 case EXEC_OACC_ATOMIC:
12028 case EXEC_OACC_DECLARE:
12029 gfc_resolve_oacc_directive (code, ns);
12030 break;
12031
12032 case EXEC_OMP_ATOMIC:
12033 case EXEC_OMP_BARRIER:
12034 case EXEC_OMP_CANCEL:
12035 case EXEC_OMP_CANCELLATION_POINT:
12036 case EXEC_OMP_CRITICAL:
12037 case EXEC_OMP_FLUSH:
12038 case EXEC_OMP_DISTRIBUTE:
12039 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
12040 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
12041 case EXEC_OMP_DISTRIBUTE_SIMD:
12042 case EXEC_OMP_DO:
12043 case EXEC_OMP_DO_SIMD:
12044 case EXEC_OMP_MASTER:
12045 case EXEC_OMP_ORDERED:
12046 case EXEC_OMP_SECTIONS:
12047 case EXEC_OMP_SIMD:
12048 case EXEC_OMP_SINGLE:
12049 case EXEC_OMP_TARGET:
12050 case EXEC_OMP_TARGET_DATA:
12051 case EXEC_OMP_TARGET_ENTER_DATA:
12052 case EXEC_OMP_TARGET_EXIT_DATA:
12053 case EXEC_OMP_TARGET_PARALLEL:
12054 case EXEC_OMP_TARGET_PARALLEL_DO:
12055 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
12056 case EXEC_OMP_TARGET_SIMD:
12057 case EXEC_OMP_TARGET_TEAMS:
12058 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
12059 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
12060 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12061 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
12062 case EXEC_OMP_TARGET_UPDATE:
12063 case EXEC_OMP_TASK:
12064 case EXEC_OMP_TASKGROUP:
12065 case EXEC_OMP_TASKLOOP:
12066 case EXEC_OMP_TASKLOOP_SIMD:
12067 case EXEC_OMP_TASKWAIT:
12068 case EXEC_OMP_TASKYIELD:
12069 case EXEC_OMP_TEAMS:
12070 case EXEC_OMP_TEAMS_DISTRIBUTE:
12071 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
12072 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12073 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
12074 case EXEC_OMP_WORKSHARE:
12075 gfc_resolve_omp_directive (code, ns);
12076 break;
12077
12078 case EXEC_OMP_PARALLEL:
12079 case EXEC_OMP_PARALLEL_DO:
12080 case EXEC_OMP_PARALLEL_DO_SIMD:
12081 case EXEC_OMP_PARALLEL_SECTIONS:
12082 case EXEC_OMP_PARALLEL_WORKSHARE:
12083 omp_workshare_save = omp_workshare_flag;
12084 omp_workshare_flag = 0;
12085 gfc_resolve_omp_directive (code, ns);
12086 omp_workshare_flag = omp_workshare_save;
12087 break;
12088
12089 default:
12090 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
12091 }
12092 }
12093
12094 cs_base = frame.prev;
12095 }
12096
12097
12098 /* Resolve initial values and make sure they are compatible with
12099 the variable. */
12100
12101 static void
12102 resolve_values (gfc_symbol *sym)
12103 {
12104 bool t;
12105
12106 if (sym->value == NULL)
12107 return;
12108
12109 if (sym->value->expr_type == EXPR_STRUCTURE)
12110 t= resolve_structure_cons (sym->value, 1);
12111 else
12112 t = gfc_resolve_expr (sym->value);
12113
12114 if (!t)
12115 return;
12116
12117 gfc_check_assign_symbol (sym, NULL, sym->value);
12118 }
12119
12120
12121 /* Verify any BIND(C) derived types in the namespace so we can report errors
12122 for them once, rather than for each variable declared of that type. */
12123
12124 static void
12125 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
12126 {
12127 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
12128 && derived_sym->attr.is_bind_c == 1)
12129 verify_bind_c_derived_type (derived_sym);
12130
12131 return;
12132 }
12133
12134
12135 /* Check the interfaces of DTIO procedures associated with derived
12136 type 'sym'. These procedures can either have typebound bindings or
12137 can appear in DTIO generic interfaces. */
12138
12139 static void
12140 gfc_verify_DTIO_procedures (gfc_symbol *sym)
12141 {
12142 if (!sym || sym->attr.flavor != FL_DERIVED)
12143 return;
12144
12145 gfc_check_dtio_interfaces (sym);
12146
12147 return;
12148 }
12149
12150 /* Verify that any binding labels used in a given namespace do not collide
12151 with the names or binding labels of any global symbols. Multiple INTERFACE
12152 for the same procedure are permitted. */
12153
12154 static void
12155 gfc_verify_binding_labels (gfc_symbol *sym)
12156 {
12157 gfc_gsymbol *gsym;
12158 const char *module;
12159
12160 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
12161 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
12162 return;
12163
12164 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
12165
12166 if (sym->module)
12167 module = sym->module;
12168 else if (sym->ns && sym->ns->proc_name
12169 && sym->ns->proc_name->attr.flavor == FL_MODULE)
12170 module = sym->ns->proc_name->name;
12171 else if (sym->ns && sym->ns->parent
12172 && sym->ns && sym->ns->parent->proc_name
12173 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12174 module = sym->ns->parent->proc_name->name;
12175 else
12176 module = NULL;
12177
12178 if (!gsym
12179 || (!gsym->defined
12180 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
12181 {
12182 if (!gsym)
12183 gsym = gfc_get_gsymbol (sym->binding_label, true);
12184 gsym->where = sym->declared_at;
12185 gsym->sym_name = sym->name;
12186 gsym->binding_label = sym->binding_label;
12187 gsym->ns = sym->ns;
12188 gsym->mod_name = module;
12189 if (sym->attr.function)
12190 gsym->type = GSYM_FUNCTION;
12191 else if (sym->attr.subroutine)
12192 gsym->type = GSYM_SUBROUTINE;
12193 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
12194 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
12195 return;
12196 }
12197
12198 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
12199 {
12200 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
12201 "identifier as entity at %L", sym->name,
12202 sym->binding_label, &sym->declared_at, &gsym->where);
12203 /* Clear the binding label to prevent checking multiple times. */
12204 sym->binding_label = NULL;
12205 return;
12206 }
12207
12208 if (sym->attr.flavor == FL_VARIABLE && module
12209 && (strcmp (module, gsym->mod_name) != 0
12210 || strcmp (sym->name, gsym->sym_name) != 0))
12211 {
12212 /* This can only happen if the variable is defined in a module - if it
12213 isn't the same module, reject it. */
12214 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
12215 "uses the same global identifier as entity at %L from module %qs",
12216 sym->name, module, sym->binding_label,
12217 &sym->declared_at, &gsym->where, gsym->mod_name);
12218 sym->binding_label = NULL;
12219 return;
12220 }
12221
12222 if ((sym->attr.function || sym->attr.subroutine)
12223 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
12224 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
12225 && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
12226 && (module != gsym->mod_name
12227 || strcmp (gsym->sym_name, sym->name) != 0
12228 || (module && strcmp (module, gsym->mod_name) != 0)))
12229 {
12230 /* Print an error if the procedure is defined multiple times; we have to
12231 exclude references to the same procedure via module association or
12232 multiple checks for the same procedure. */
12233 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
12234 "global identifier as entity at %L", sym->name,
12235 sym->binding_label, &sym->declared_at, &gsym->where);
12236 sym->binding_label = NULL;
12237 }
12238 }
12239
12240
12241 /* Resolve an index expression. */
12242
12243 static bool
12244 resolve_index_expr (gfc_expr *e)
12245 {
12246 if (!gfc_resolve_expr (e))
12247 return false;
12248
12249 if (!gfc_simplify_expr (e, 0))
12250 return false;
12251
12252 if (!gfc_specification_expr (e))
12253 return false;
12254
12255 return true;
12256 }
12257
12258
12259 /* Resolve a charlen structure. */
12260
12261 static bool
12262 resolve_charlen (gfc_charlen *cl)
12263 {
12264 int k;
12265 bool saved_specification_expr;
12266
12267 if (cl->resolved)
12268 return true;
12269
12270 cl->resolved = 1;
12271 saved_specification_expr = specification_expr;
12272 specification_expr = true;
12273
12274 if (cl->length_from_typespec)
12275 {
12276 if (!gfc_resolve_expr (cl->length))
12277 {
12278 specification_expr = saved_specification_expr;
12279 return false;
12280 }
12281
12282 if (!gfc_simplify_expr (cl->length, 0))
12283 {
12284 specification_expr = saved_specification_expr;
12285 return false;
12286 }
12287
12288 /* cl->length has been resolved. It should have an integer type. */
12289 if (cl->length->ts.type != BT_INTEGER)
12290 {
12291 gfc_error ("Scalar INTEGER expression expected at %L",
12292 &cl->length->where);
12293 return false;
12294 }
12295 }
12296 else
12297 {
12298 if (!resolve_index_expr (cl->length))
12299 {
12300 specification_expr = saved_specification_expr;
12301 return false;
12302 }
12303 }
12304
12305 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
12306 a negative value, the length of character entities declared is zero. */
12307 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12308 && mpz_sgn (cl->length->value.integer) < 0)
12309 gfc_replace_expr (cl->length,
12310 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
12311
12312 /* Check that the character length is not too large. */
12313 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
12314 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12315 && cl->length->ts.type == BT_INTEGER
12316 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
12317 {
12318 gfc_error ("String length at %L is too large", &cl->length->where);
12319 specification_expr = saved_specification_expr;
12320 return false;
12321 }
12322
12323 specification_expr = saved_specification_expr;
12324 return true;
12325 }
12326
12327
12328 /* Test for non-constant shape arrays. */
12329
12330 static bool
12331 is_non_constant_shape_array (gfc_symbol *sym)
12332 {
12333 gfc_expr *e;
12334 int i;
12335 bool not_constant;
12336
12337 not_constant = false;
12338 if (sym->as != NULL)
12339 {
12340 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
12341 has not been simplified; parameter array references. Do the
12342 simplification now. */
12343 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
12344 {
12345 if (i == GFC_MAX_DIMENSIONS)
12346 break;
12347
12348 e = sym->as->lower[i];
12349 if (e && (!resolve_index_expr(e)
12350 || !gfc_is_constant_expr (e)))
12351 not_constant = true;
12352 e = sym->as->upper[i];
12353 if (e && (!resolve_index_expr(e)
12354 || !gfc_is_constant_expr (e)))
12355 not_constant = true;
12356 }
12357 }
12358 return not_constant;
12359 }
12360
12361 /* Given a symbol and an initialization expression, add code to initialize
12362 the symbol to the function entry. */
12363 static void
12364 build_init_assign (gfc_symbol *sym, gfc_expr *init)
12365 {
12366 gfc_expr *lval;
12367 gfc_code *init_st;
12368 gfc_namespace *ns = sym->ns;
12369
12370 /* Search for the function namespace if this is a contained
12371 function without an explicit result. */
12372 if (sym->attr.function && sym == sym->result
12373 && sym->name != sym->ns->proc_name->name)
12374 {
12375 ns = ns->contained;
12376 for (;ns; ns = ns->sibling)
12377 if (strcmp (ns->proc_name->name, sym->name) == 0)
12378 break;
12379 }
12380
12381 if (ns == NULL)
12382 {
12383 gfc_free_expr (init);
12384 return;
12385 }
12386
12387 /* Build an l-value expression for the result. */
12388 lval = gfc_lval_expr_from_sym (sym);
12389
12390 /* Add the code at scope entry. */
12391 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
12392 init_st->next = ns->code;
12393 ns->code = init_st;
12394
12395 /* Assign the default initializer to the l-value. */
12396 init_st->loc = sym->declared_at;
12397 init_st->expr1 = lval;
12398 init_st->expr2 = init;
12399 }
12400
12401
12402 /* Whether or not we can generate a default initializer for a symbol. */
12403
12404 static bool
12405 can_generate_init (gfc_symbol *sym)
12406 {
12407 symbol_attribute *a;
12408 if (!sym)
12409 return false;
12410 a = &sym->attr;
12411
12412 /* These symbols should never have a default initialization. */
12413 return !(
12414 a->allocatable
12415 || a->external
12416 || a->pointer
12417 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
12418 && (CLASS_DATA (sym)->attr.class_pointer
12419 || CLASS_DATA (sym)->attr.proc_pointer))
12420 || a->in_equivalence
12421 || a->in_common
12422 || a->data
12423 || sym->module
12424 || a->cray_pointee
12425 || a->cray_pointer
12426 || sym->assoc
12427 || (!a->referenced && !a->result)
12428 || (a->dummy && a->intent != INTENT_OUT)
12429 || (a->function && sym != sym->result)
12430 );
12431 }
12432
12433
12434 /* Assign the default initializer to a derived type variable or result. */
12435
12436 static void
12437 apply_default_init (gfc_symbol *sym)
12438 {
12439 gfc_expr *init = NULL;
12440
12441 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12442 return;
12443
12444 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
12445 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12446
12447 if (init == NULL && sym->ts.type != BT_CLASS)
12448 return;
12449
12450 build_init_assign (sym, init);
12451 sym->attr.referenced = 1;
12452 }
12453
12454
12455 /* Build an initializer for a local. Returns null if the symbol should not have
12456 a default initialization. */
12457
12458 static gfc_expr *
12459 build_default_init_expr (gfc_symbol *sym)
12460 {
12461 /* These symbols should never have a default initialization. */
12462 if (sym->attr.allocatable
12463 || sym->attr.external
12464 || sym->attr.dummy
12465 || sym->attr.pointer
12466 || sym->attr.in_equivalence
12467 || sym->attr.in_common
12468 || sym->attr.data
12469 || sym->module
12470 || sym->attr.cray_pointee
12471 || sym->attr.cray_pointer
12472 || sym->assoc)
12473 return NULL;
12474
12475 /* Get the appropriate init expression. */
12476 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
12477 }
12478
12479 /* Add an initialization expression to a local variable. */
12480 static void
12481 apply_default_init_local (gfc_symbol *sym)
12482 {
12483 gfc_expr *init = NULL;
12484
12485 /* The symbol should be a variable or a function return value. */
12486 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12487 || (sym->attr.function && sym->result != sym))
12488 return;
12489
12490 /* Try to build the initializer expression. If we can't initialize
12491 this symbol, then init will be NULL. */
12492 init = build_default_init_expr (sym);
12493 if (init == NULL)
12494 return;
12495
12496 /* For saved variables, we don't want to add an initializer at function
12497 entry, so we just add a static initializer. Note that automatic variables
12498 are stack allocated even with -fno-automatic; we have also to exclude
12499 result variable, which are also nonstatic. */
12500 if (!sym->attr.automatic
12501 && (sym->attr.save || sym->ns->save_all
12502 || (flag_max_stack_var_size == 0 && !sym->attr.result
12503 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
12504 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
12505 {
12506 /* Don't clobber an existing initializer! */
12507 gcc_assert (sym->value == NULL);
12508 sym->value = init;
12509 return;
12510 }
12511
12512 build_init_assign (sym, init);
12513 }
12514
12515
12516 /* Resolution of common features of flavors variable and procedure. */
12517
12518 static bool
12519 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
12520 {
12521 gfc_array_spec *as;
12522
12523 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12524 as = CLASS_DATA (sym)->as;
12525 else
12526 as = sym->as;
12527
12528 /* Constraints on deferred shape variable. */
12529 if (as == NULL || as->type != AS_DEFERRED)
12530 {
12531 bool pointer, allocatable, dimension;
12532
12533 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12534 {
12535 pointer = CLASS_DATA (sym)->attr.class_pointer;
12536 allocatable = CLASS_DATA (sym)->attr.allocatable;
12537 dimension = CLASS_DATA (sym)->attr.dimension;
12538 }
12539 else
12540 {
12541 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
12542 allocatable = sym->attr.allocatable;
12543 dimension = sym->attr.dimension;
12544 }
12545
12546 if (allocatable)
12547 {
12548 if (dimension && as->type != AS_ASSUMED_RANK)
12549 {
12550 gfc_error ("Allocatable array %qs at %L must have a deferred "
12551 "shape or assumed rank", sym->name, &sym->declared_at);
12552 return false;
12553 }
12554 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
12555 "%qs at %L may not be ALLOCATABLE",
12556 sym->name, &sym->declared_at))
12557 return false;
12558 }
12559
12560 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
12561 {
12562 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
12563 "assumed rank", sym->name, &sym->declared_at);
12564 return false;
12565 }
12566 }
12567 else
12568 {
12569 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
12570 && sym->ts.type != BT_CLASS && !sym->assoc)
12571 {
12572 gfc_error ("Array %qs at %L cannot have a deferred shape",
12573 sym->name, &sym->declared_at);
12574 return false;
12575 }
12576 }
12577
12578 /* Constraints on polymorphic variables. */
12579 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
12580 {
12581 /* F03:C502. */
12582 if (sym->attr.class_ok
12583 && !sym->attr.select_type_temporary
12584 && !UNLIMITED_POLY (sym)
12585 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
12586 {
12587 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
12588 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
12589 &sym->declared_at);
12590 return false;
12591 }
12592
12593 /* F03:C509. */
12594 /* Assume that use associated symbols were checked in the module ns.
12595 Class-variables that are associate-names are also something special
12596 and excepted from the test. */
12597 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
12598 {
12599 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
12600 "or pointer", sym->name, &sym->declared_at);
12601 return false;
12602 }
12603 }
12604
12605 return true;
12606 }
12607
12608
12609 /* Additional checks for symbols with flavor variable and derived
12610 type. To be called from resolve_fl_variable. */
12611
12612 static bool
12613 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12614 {
12615 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12616
12617 /* Check to see if a derived type is blocked from being host
12618 associated by the presence of another class I symbol in the same
12619 namespace. 14.6.1.3 of the standard and the discussion on
12620 comp.lang.fortran. */
12621 if (sym->ns != sym->ts.u.derived->ns
12622 && !sym->ts.u.derived->attr.use_assoc
12623 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12624 {
12625 gfc_symbol *s;
12626 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12627 if (s && s->attr.generic)
12628 s = gfc_find_dt_in_generic (s);
12629 if (s && !gfc_fl_struct (s->attr.flavor))
12630 {
12631 gfc_error ("The type %qs cannot be host associated at %L "
12632 "because it is blocked by an incompatible object "
12633 "of the same name declared at %L",
12634 sym->ts.u.derived->name, &sym->declared_at,
12635 &s->declared_at);
12636 return false;
12637 }
12638 }
12639
12640 /* 4th constraint in section 11.3: "If an object of a type for which
12641 component-initialization is specified (R429) appears in the
12642 specification-part of a module and does not have the ALLOCATABLE
12643 or POINTER attribute, the object shall have the SAVE attribute."
12644
12645 The check for initializers is performed with
12646 gfc_has_default_initializer because gfc_default_initializer generates
12647 a hidden default for allocatable components. */
12648 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12649 && sym->ns->proc_name->attr.flavor == FL_MODULE
12650 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12651 && !sym->attr.pointer && !sym->attr.allocatable
12652 && gfc_has_default_initializer (sym->ts.u.derived)
12653 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12654 "%qs at %L, needed due to the default "
12655 "initialization", sym->name, &sym->declared_at))
12656 return false;
12657
12658 /* Assign default initializer. */
12659 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12660 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12661 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12662
12663 return true;
12664 }
12665
12666
12667 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12668 except in the declaration of an entity or component that has the POINTER
12669 or ALLOCATABLE attribute. */
12670
12671 static bool
12672 deferred_requirements (gfc_symbol *sym)
12673 {
12674 if (sym->ts.deferred
12675 && !(sym->attr.pointer
12676 || sym->attr.allocatable
12677 || sym->attr.associate_var
12678 || sym->attr.omp_udr_artificial_var))
12679 {
12680 /* If a function has a result variable, only check the variable. */
12681 if (sym->result && sym->name != sym->result->name)
12682 return true;
12683
12684 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12685 "requires either the POINTER or ALLOCATABLE attribute",
12686 sym->name, &sym->declared_at);
12687 return false;
12688 }
12689 return true;
12690 }
12691
12692
12693 /* Resolve symbols with flavor variable. */
12694
12695 static bool
12696 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12697 {
12698 const char *auto_save_msg = "Automatic object %qs at %L cannot have the "
12699 "SAVE attribute";
12700
12701 if (!resolve_fl_var_and_proc (sym, mp_flag))
12702 return false;
12703
12704 /* Set this flag to check that variables are parameters of all entries.
12705 This check is effected by the call to gfc_resolve_expr through
12706 is_non_constant_shape_array. */
12707 bool saved_specification_expr = specification_expr;
12708 specification_expr = true;
12709
12710 if (sym->ns->proc_name
12711 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12712 || sym->ns->proc_name->attr.is_main_program)
12713 && !sym->attr.use_assoc
12714 && !sym->attr.allocatable
12715 && !sym->attr.pointer
12716 && is_non_constant_shape_array (sym))
12717 {
12718 /* F08:C541. The shape of an array defined in a main program or module
12719 * needs to be constant. */
12720 gfc_error ("The module or main program array %qs at %L must "
12721 "have constant shape", sym->name, &sym->declared_at);
12722 specification_expr = saved_specification_expr;
12723 return false;
12724 }
12725
12726 /* Constraints on deferred type parameter. */
12727 if (!deferred_requirements (sym))
12728 return false;
12729
12730 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12731 {
12732 /* Make sure that character string variables with assumed length are
12733 dummy arguments. */
12734 gfc_expr *e = NULL;
12735
12736 if (sym->ts.u.cl)
12737 e = sym->ts.u.cl->length;
12738 else
12739 return false;
12740
12741 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12742 && !sym->ts.deferred && !sym->attr.select_type_temporary
12743 && !sym->attr.omp_udr_artificial_var)
12744 {
12745 gfc_error ("Entity with assumed character length at %L must be a "
12746 "dummy argument or a PARAMETER", &sym->declared_at);
12747 specification_expr = saved_specification_expr;
12748 return false;
12749 }
12750
12751 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12752 {
12753 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12754 specification_expr = saved_specification_expr;
12755 return false;
12756 }
12757
12758 if (!gfc_is_constant_expr (e)
12759 && !(e->expr_type == EXPR_VARIABLE
12760 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12761 {
12762 if (!sym->attr.use_assoc && sym->ns->proc_name
12763 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12764 || sym->ns->proc_name->attr.is_main_program))
12765 {
12766 gfc_error ("%qs at %L must have constant character length "
12767 "in this context", sym->name, &sym->declared_at);
12768 specification_expr = saved_specification_expr;
12769 return false;
12770 }
12771 if (sym->attr.in_common)
12772 {
12773 gfc_error ("COMMON variable %qs at %L must have constant "
12774 "character length", sym->name, &sym->declared_at);
12775 specification_expr = saved_specification_expr;
12776 return false;
12777 }
12778 }
12779 }
12780
12781 if (sym->value == NULL && sym->attr.referenced)
12782 apply_default_init_local (sym); /* Try to apply a default initialization. */
12783
12784 /* Determine if the symbol may not have an initializer. */
12785 int no_init_flag = 0, automatic_flag = 0;
12786 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12787 || sym->attr.intrinsic || sym->attr.result)
12788 no_init_flag = 1;
12789 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12790 && is_non_constant_shape_array (sym))
12791 {
12792 no_init_flag = automatic_flag = 1;
12793
12794 /* Also, they must not have the SAVE attribute.
12795 SAVE_IMPLICIT is checked below. */
12796 if (sym->as && sym->attr.codimension)
12797 {
12798 int corank = sym->as->corank;
12799 sym->as->corank = 0;
12800 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12801 sym->as->corank = corank;
12802 }
12803 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12804 {
12805 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12806 specification_expr = saved_specification_expr;
12807 return false;
12808 }
12809 }
12810
12811 /* Ensure that any initializer is simplified. */
12812 if (sym->value)
12813 gfc_simplify_expr (sym->value, 1);
12814
12815 /* Reject illegal initializers. */
12816 if (!sym->mark && sym->value)
12817 {
12818 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12819 && CLASS_DATA (sym)->attr.allocatable))
12820 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12821 sym->name, &sym->declared_at);
12822 else if (sym->attr.external)
12823 gfc_error ("External %qs at %L cannot have an initializer",
12824 sym->name, &sym->declared_at);
12825 else if (sym->attr.dummy
12826 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12827 gfc_error ("Dummy %qs at %L cannot have an initializer",
12828 sym->name, &sym->declared_at);
12829 else if (sym->attr.intrinsic)
12830 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12831 sym->name, &sym->declared_at);
12832 else if (sym->attr.result)
12833 gfc_error ("Function result %qs at %L cannot have an initializer",
12834 sym->name, &sym->declared_at);
12835 else if (automatic_flag)
12836 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12837 sym->name, &sym->declared_at);
12838 else
12839 goto no_init_error;
12840 specification_expr = saved_specification_expr;
12841 return false;
12842 }
12843
12844 no_init_error:
12845 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12846 {
12847 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12848 specification_expr = saved_specification_expr;
12849 return res;
12850 }
12851
12852 specification_expr = saved_specification_expr;
12853 return true;
12854 }
12855
12856
12857 /* Compare the dummy characteristics of a module procedure interface
12858 declaration with the corresponding declaration in a submodule. */
12859 static gfc_formal_arglist *new_formal;
12860 static char errmsg[200];
12861
12862 static void
12863 compare_fsyms (gfc_symbol *sym)
12864 {
12865 gfc_symbol *fsym;
12866
12867 if (sym == NULL || new_formal == NULL)
12868 return;
12869
12870 fsym = new_formal->sym;
12871
12872 if (sym == fsym)
12873 return;
12874
12875 if (strcmp (sym->name, fsym->name) == 0)
12876 {
12877 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12878 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12879 }
12880 }
12881
12882
12883 /* Resolve a procedure. */
12884
12885 static bool
12886 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12887 {
12888 gfc_formal_arglist *arg;
12889
12890 if (sym->attr.function
12891 && !resolve_fl_var_and_proc (sym, mp_flag))
12892 return false;
12893
12894 /* Constraints on deferred type parameter. */
12895 if (!deferred_requirements (sym))
12896 return false;
12897
12898 if (sym->ts.type == BT_CHARACTER)
12899 {
12900 gfc_charlen *cl = sym->ts.u.cl;
12901
12902 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12903 && !resolve_charlen (cl))
12904 return false;
12905
12906 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12907 && sym->attr.proc == PROC_ST_FUNCTION)
12908 {
12909 gfc_error ("Character-valued statement function %qs at %L must "
12910 "have constant length", sym->name, &sym->declared_at);
12911 return false;
12912 }
12913 }
12914
12915 /* Ensure that derived type for are not of a private type. Internal
12916 module procedures are excluded by 2.2.3.3 - i.e., they are not
12917 externally accessible and can access all the objects accessible in
12918 the host. */
12919 if (!(sym->ns->parent && sym->ns->parent->proc_name
12920 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12921 && gfc_check_symbol_access (sym))
12922 {
12923 gfc_interface *iface;
12924
12925 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12926 {
12927 if (arg->sym
12928 && arg->sym->ts.type == BT_DERIVED
12929 && !arg->sym->ts.u.derived->attr.use_assoc
12930 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12931 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
12932 "and cannot be a dummy argument"
12933 " of %qs, which is PUBLIC at %L",
12934 arg->sym->name, sym->name,
12935 &sym->declared_at))
12936 {
12937 /* Stop this message from recurring. */
12938 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12939 return false;
12940 }
12941 }
12942
12943 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12944 PRIVATE to the containing module. */
12945 for (iface = sym->generic; iface; iface = iface->next)
12946 {
12947 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
12948 {
12949 if (arg->sym
12950 && arg->sym->ts.type == BT_DERIVED
12951 && !arg->sym->ts.u.derived->attr.use_assoc
12952 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12953 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
12954 "PUBLIC interface %qs at %L "
12955 "takes dummy arguments of %qs which "
12956 "is PRIVATE", iface->sym->name,
12957 sym->name, &iface->sym->declared_at,
12958 gfc_typename(&arg->sym->ts)))
12959 {
12960 /* Stop this message from recurring. */
12961 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12962 return false;
12963 }
12964 }
12965 }
12966 }
12967
12968 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
12969 && !sym->attr.proc_pointer)
12970 {
12971 gfc_error ("Function %qs at %L cannot have an initializer",
12972 sym->name, &sym->declared_at);
12973
12974 /* Make sure no second error is issued for this. */
12975 sym->value->error = 1;
12976 return false;
12977 }
12978
12979 /* An external symbol may not have an initializer because it is taken to be
12980 a procedure. Exception: Procedure Pointers. */
12981 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
12982 {
12983 gfc_error ("External object %qs at %L may not have an initializer",
12984 sym->name, &sym->declared_at);
12985 return false;
12986 }
12987
12988 /* An elemental function is required to return a scalar 12.7.1 */
12989 if (sym->attr.elemental && sym->attr.function
12990 && (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)))
12991 {
12992 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
12993 "result", sym->name, &sym->declared_at);
12994 /* Reset so that the error only occurs once. */
12995 sym->attr.elemental = 0;
12996 return false;
12997 }
12998
12999 if (sym->attr.proc == PROC_ST_FUNCTION
13000 && (sym->attr.allocatable || sym->attr.pointer))
13001 {
13002 gfc_error ("Statement function %qs at %L may not have pointer or "
13003 "allocatable attribute", sym->name, &sym->declared_at);
13004 return false;
13005 }
13006
13007 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
13008 char-len-param shall not be array-valued, pointer-valued, recursive
13009 or pure. ....snip... A character value of * may only be used in the
13010 following ways: (i) Dummy arg of procedure - dummy associates with
13011 actual length; (ii) To declare a named constant; or (iii) External
13012 function - but length must be declared in calling scoping unit. */
13013 if (sym->attr.function
13014 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
13015 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
13016 {
13017 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
13018 || (sym->attr.recursive) || (sym->attr.pure))
13019 {
13020 if (sym->as && sym->as->rank)
13021 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13022 "array-valued", sym->name, &sym->declared_at);
13023
13024 if (sym->attr.pointer)
13025 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13026 "pointer-valued", sym->name, &sym->declared_at);
13027
13028 if (sym->attr.pure)
13029 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13030 "pure", sym->name, &sym->declared_at);
13031
13032 if (sym->attr.recursive)
13033 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13034 "recursive", sym->name, &sym->declared_at);
13035
13036 return false;
13037 }
13038
13039 /* Appendix B.2 of the standard. Contained functions give an
13040 error anyway. Deferred character length is an F2003 feature.
13041 Don't warn on intrinsic conversion functions, which start
13042 with two underscores. */
13043 if (!sym->attr.contained && !sym->ts.deferred
13044 && (sym->name[0] != '_' || sym->name[1] != '_'))
13045 gfc_notify_std (GFC_STD_F95_OBS,
13046 "CHARACTER(*) function %qs at %L",
13047 sym->name, &sym->declared_at);
13048 }
13049
13050 /* F2008, C1218. */
13051 if (sym->attr.elemental)
13052 {
13053 if (sym->attr.proc_pointer)
13054 {
13055 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
13056 sym->name, &sym->declared_at);
13057 return false;
13058 }
13059 if (sym->attr.dummy)
13060 {
13061 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
13062 sym->name, &sym->declared_at);
13063 return false;
13064 }
13065 }
13066
13067 /* F2018, C15100: "The result of an elemental function shall be scalar,
13068 and shall not have the POINTER or ALLOCATABLE attribute." The scalar
13069 pointer is tested and caught elsewhere. */
13070 if (sym->attr.elemental && sym->result
13071 && (sym->result->attr.allocatable || sym->result->attr.pointer))
13072 {
13073 gfc_error ("Function result variable %qs at %L of elemental "
13074 "function %qs shall not have an ALLOCATABLE or POINTER "
13075 "attribute", sym->result->name,
13076 &sym->result->declared_at, sym->name);
13077 return false;
13078 }
13079
13080 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
13081 {
13082 gfc_formal_arglist *curr_arg;
13083 int has_non_interop_arg = 0;
13084
13085 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
13086 sym->common_block))
13087 {
13088 /* Clear these to prevent looking at them again if there was an
13089 error. */
13090 sym->attr.is_bind_c = 0;
13091 sym->attr.is_c_interop = 0;
13092 sym->ts.is_c_interop = 0;
13093 }
13094 else
13095 {
13096 /* So far, no errors have been found. */
13097 sym->attr.is_c_interop = 1;
13098 sym->ts.is_c_interop = 1;
13099 }
13100
13101 curr_arg = gfc_sym_get_dummy_args (sym);
13102 while (curr_arg != NULL)
13103 {
13104 /* Skip implicitly typed dummy args here. */
13105 if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
13106 if (!gfc_verify_c_interop_param (curr_arg->sym))
13107 /* If something is found to fail, record the fact so we
13108 can mark the symbol for the procedure as not being
13109 BIND(C) to try and prevent multiple errors being
13110 reported. */
13111 has_non_interop_arg = 1;
13112
13113 curr_arg = curr_arg->next;
13114 }
13115
13116 /* See if any of the arguments were not interoperable and if so, clear
13117 the procedure symbol to prevent duplicate error messages. */
13118 if (has_non_interop_arg != 0)
13119 {
13120 sym->attr.is_c_interop = 0;
13121 sym->ts.is_c_interop = 0;
13122 sym->attr.is_bind_c = 0;
13123 }
13124 }
13125
13126 if (!sym->attr.proc_pointer)
13127 {
13128 if (sym->attr.save == SAVE_EXPLICIT)
13129 {
13130 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
13131 "in %qs at %L", sym->name, &sym->declared_at);
13132 return false;
13133 }
13134 if (sym->attr.intent)
13135 {
13136 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
13137 "in %qs at %L", sym->name, &sym->declared_at);
13138 return false;
13139 }
13140 if (sym->attr.subroutine && sym->attr.result)
13141 {
13142 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
13143 "in %qs at %L", sym->name, &sym->declared_at);
13144 return false;
13145 }
13146 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
13147 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
13148 || sym->attr.contained))
13149 {
13150 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
13151 "in %qs at %L", sym->name, &sym->declared_at);
13152 return false;
13153 }
13154 if (strcmp ("ppr@", sym->name) == 0)
13155 {
13156 gfc_error ("Procedure pointer result %qs at %L "
13157 "is missing the pointer attribute",
13158 sym->ns->proc_name->name, &sym->declared_at);
13159 return false;
13160 }
13161 }
13162
13163 /* Assume that a procedure whose body is not known has references
13164 to external arrays. */
13165 if (sym->attr.if_source != IFSRC_DECL)
13166 sym->attr.array_outer_dependency = 1;
13167
13168 /* Compare the characteristics of a module procedure with the
13169 interface declaration. Ideally this would be done with
13170 gfc_compare_interfaces but, at present, the formal interface
13171 cannot be copied to the ts.interface. */
13172 if (sym->attr.module_procedure
13173 && sym->attr.if_source == IFSRC_DECL)
13174 {
13175 gfc_symbol *iface;
13176 char name[2*GFC_MAX_SYMBOL_LEN + 1];
13177 char *module_name;
13178 char *submodule_name;
13179 strcpy (name, sym->ns->proc_name->name);
13180 module_name = strtok (name, ".");
13181 submodule_name = strtok (NULL, ".");
13182
13183 iface = sym->tlink;
13184 sym->tlink = NULL;
13185
13186 /* Make sure that the result uses the correct charlen for deferred
13187 length results. */
13188 if (iface && sym->result
13189 && iface->ts.type == BT_CHARACTER
13190 && iface->ts.deferred)
13191 sym->result->ts.u.cl = iface->ts.u.cl;
13192
13193 if (iface == NULL)
13194 goto check_formal;
13195
13196 /* Check the procedure characteristics. */
13197 if (sym->attr.elemental != iface->attr.elemental)
13198 {
13199 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
13200 "PROCEDURE at %L and its interface in %s",
13201 &sym->declared_at, module_name);
13202 return false;
13203 }
13204
13205 if (sym->attr.pure != iface->attr.pure)
13206 {
13207 gfc_error ("Mismatch in PURE attribute between MODULE "
13208 "PROCEDURE at %L and its interface in %s",
13209 &sym->declared_at, module_name);
13210 return false;
13211 }
13212
13213 if (sym->attr.recursive != iface->attr.recursive)
13214 {
13215 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
13216 "PROCEDURE at %L and its interface in %s",
13217 &sym->declared_at, module_name);
13218 return false;
13219 }
13220
13221 /* Check the result characteristics. */
13222 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
13223 {
13224 gfc_error ("%s between the MODULE PROCEDURE declaration "
13225 "in MODULE %qs and the declaration at %L in "
13226 "(SUB)MODULE %qs",
13227 errmsg, module_name, &sym->declared_at,
13228 submodule_name ? submodule_name : module_name);
13229 return false;
13230 }
13231
13232 check_formal:
13233 /* Check the characteristics of the formal arguments. */
13234 if (sym->formal && sym->formal_ns)
13235 {
13236 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
13237 {
13238 new_formal = arg;
13239 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
13240 }
13241 }
13242 }
13243 return true;
13244 }
13245
13246
13247 /* Resolve a list of finalizer procedures. That is, after they have hopefully
13248 been defined and we now know their defined arguments, check that they fulfill
13249 the requirements of the standard for procedures used as finalizers. */
13250
13251 static bool
13252 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
13253 {
13254 gfc_finalizer* list;
13255 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
13256 bool result = true;
13257 bool seen_scalar = false;
13258 gfc_symbol *vtab;
13259 gfc_component *c;
13260 gfc_symbol *parent = gfc_get_derived_super_type (derived);
13261
13262 if (parent)
13263 gfc_resolve_finalizers (parent, finalizable);
13264
13265 /* Ensure that derived-type components have a their finalizers resolved. */
13266 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
13267 for (c = derived->components; c; c = c->next)
13268 if (c->ts.type == BT_DERIVED
13269 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
13270 {
13271 bool has_final2 = false;
13272 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
13273 return false; /* Error. */
13274 has_final = has_final || has_final2;
13275 }
13276 /* Return early if not finalizable. */
13277 if (!has_final)
13278 {
13279 if (finalizable)
13280 *finalizable = false;
13281 return true;
13282 }
13283
13284 /* Walk over the list of finalizer-procedures, check them, and if any one
13285 does not fit in with the standard's definition, print an error and remove
13286 it from the list. */
13287 prev_link = &derived->f2k_derived->finalizers;
13288 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
13289 {
13290 gfc_formal_arglist *dummy_args;
13291 gfc_symbol* arg;
13292 gfc_finalizer* i;
13293 int my_rank;
13294
13295 /* Skip this finalizer if we already resolved it. */
13296 if (list->proc_tree)
13297 {
13298 if (list->proc_tree->n.sym->formal->sym->as == NULL
13299 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
13300 seen_scalar = true;
13301 prev_link = &(list->next);
13302 continue;
13303 }
13304
13305 /* Check this exists and is a SUBROUTINE. */
13306 if (!list->proc_sym->attr.subroutine)
13307 {
13308 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
13309 list->proc_sym->name, &list->where);
13310 goto error;
13311 }
13312
13313 /* We should have exactly one argument. */
13314 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
13315 if (!dummy_args || dummy_args->next)
13316 {
13317 gfc_error ("FINAL procedure at %L must have exactly one argument",
13318 &list->where);
13319 goto error;
13320 }
13321 arg = dummy_args->sym;
13322
13323 /* This argument must be of our type. */
13324 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
13325 {
13326 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
13327 &arg->declared_at, derived->name);
13328 goto error;
13329 }
13330
13331 /* It must neither be a pointer nor allocatable nor optional. */
13332 if (arg->attr.pointer)
13333 {
13334 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
13335 &arg->declared_at);
13336 goto error;
13337 }
13338 if (arg->attr.allocatable)
13339 {
13340 gfc_error ("Argument of FINAL procedure at %L must not be"
13341 " ALLOCATABLE", &arg->declared_at);
13342 goto error;
13343 }
13344 if (arg->attr.optional)
13345 {
13346 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
13347 &arg->declared_at);
13348 goto error;
13349 }
13350
13351 /* It must not be INTENT(OUT). */
13352 if (arg->attr.intent == INTENT_OUT)
13353 {
13354 gfc_error ("Argument of FINAL procedure at %L must not be"
13355 " INTENT(OUT)", &arg->declared_at);
13356 goto error;
13357 }
13358
13359 /* Warn if the procedure is non-scalar and not assumed shape. */
13360 if (warn_surprising && arg->as && arg->as->rank != 0
13361 && arg->as->type != AS_ASSUMED_SHAPE)
13362 gfc_warning (OPT_Wsurprising,
13363 "Non-scalar FINAL procedure at %L should have assumed"
13364 " shape argument", &arg->declared_at);
13365
13366 /* Check that it does not match in kind and rank with a FINAL procedure
13367 defined earlier. To really loop over the *earlier* declarations,
13368 we need to walk the tail of the list as new ones were pushed at the
13369 front. */
13370 /* TODO: Handle kind parameters once they are implemented. */
13371 my_rank = (arg->as ? arg->as->rank : 0);
13372 for (i = list->next; i; i = i->next)
13373 {
13374 gfc_formal_arglist *dummy_args;
13375
13376 /* Argument list might be empty; that is an error signalled earlier,
13377 but we nevertheless continued resolving. */
13378 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
13379 if (dummy_args)
13380 {
13381 gfc_symbol* i_arg = dummy_args->sym;
13382 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
13383 if (i_rank == my_rank)
13384 {
13385 gfc_error ("FINAL procedure %qs declared at %L has the same"
13386 " rank (%d) as %qs",
13387 list->proc_sym->name, &list->where, my_rank,
13388 i->proc_sym->name);
13389 goto error;
13390 }
13391 }
13392 }
13393
13394 /* Is this the/a scalar finalizer procedure? */
13395 if (my_rank == 0)
13396 seen_scalar = true;
13397
13398 /* Find the symtree for this procedure. */
13399 gcc_assert (!list->proc_tree);
13400 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
13401
13402 prev_link = &list->next;
13403 continue;
13404
13405 /* Remove wrong nodes immediately from the list so we don't risk any
13406 troubles in the future when they might fail later expectations. */
13407 error:
13408 i = list;
13409 *prev_link = list->next;
13410 gfc_free_finalizer (i);
13411 result = false;
13412 }
13413
13414 if (result == false)
13415 return false;
13416
13417 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
13418 were nodes in the list, must have been for arrays. It is surely a good
13419 idea to have a scalar version there if there's something to finalize. */
13420 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
13421 gfc_warning (OPT_Wsurprising,
13422 "Only array FINAL procedures declared for derived type %qs"
13423 " defined at %L, suggest also scalar one",
13424 derived->name, &derived->declared_at);
13425
13426 vtab = gfc_find_derived_vtab (derived);
13427 c = vtab->ts.u.derived->components->next->next->next->next->next;
13428 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
13429
13430 if (finalizable)
13431 *finalizable = true;
13432
13433 return true;
13434 }
13435
13436
13437 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
13438
13439 static bool
13440 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
13441 const char* generic_name, locus where)
13442 {
13443 gfc_symbol *sym1, *sym2;
13444 const char *pass1, *pass2;
13445 gfc_formal_arglist *dummy_args;
13446
13447 gcc_assert (t1->specific && t2->specific);
13448 gcc_assert (!t1->specific->is_generic);
13449 gcc_assert (!t2->specific->is_generic);
13450 gcc_assert (t1->is_operator == t2->is_operator);
13451
13452 sym1 = t1->specific->u.specific->n.sym;
13453 sym2 = t2->specific->u.specific->n.sym;
13454
13455 if (sym1 == sym2)
13456 return true;
13457
13458 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
13459 if (sym1->attr.subroutine != sym2->attr.subroutine
13460 || sym1->attr.function != sym2->attr.function)
13461 {
13462 gfc_error ("%qs and %qs cannot be mixed FUNCTION/SUBROUTINE for"
13463 " GENERIC %qs at %L",
13464 sym1->name, sym2->name, generic_name, &where);
13465 return false;
13466 }
13467
13468 /* Determine PASS arguments. */
13469 if (t1->specific->nopass)
13470 pass1 = NULL;
13471 else if (t1->specific->pass_arg)
13472 pass1 = t1->specific->pass_arg;
13473 else
13474 {
13475 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
13476 if (dummy_args)
13477 pass1 = dummy_args->sym->name;
13478 else
13479 pass1 = NULL;
13480 }
13481 if (t2->specific->nopass)
13482 pass2 = NULL;
13483 else if (t2->specific->pass_arg)
13484 pass2 = t2->specific->pass_arg;
13485 else
13486 {
13487 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
13488 if (dummy_args)
13489 pass2 = dummy_args->sym->name;
13490 else
13491 pass2 = NULL;
13492 }
13493
13494 /* Compare the interfaces. */
13495 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
13496 NULL, 0, pass1, pass2))
13497 {
13498 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
13499 sym1->name, sym2->name, generic_name, &where);
13500 return false;
13501 }
13502
13503 return true;
13504 }
13505
13506
13507 /* Worker function for resolving a generic procedure binding; this is used to
13508 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
13509
13510 The difference between those cases is finding possible inherited bindings
13511 that are overridden, as one has to look for them in tb_sym_root,
13512 tb_uop_root or tb_op, respectively. Thus the caller must already find
13513 the super-type and set p->overridden correctly. */
13514
13515 static bool
13516 resolve_tb_generic_targets (gfc_symbol* super_type,
13517 gfc_typebound_proc* p, const char* name)
13518 {
13519 gfc_tbp_generic* target;
13520 gfc_symtree* first_target;
13521 gfc_symtree* inherited;
13522
13523 gcc_assert (p && p->is_generic);
13524
13525 /* Try to find the specific bindings for the symtrees in our target-list. */
13526 gcc_assert (p->u.generic);
13527 for (target = p->u.generic; target; target = target->next)
13528 if (!target->specific)
13529 {
13530 gfc_typebound_proc* overridden_tbp;
13531 gfc_tbp_generic* g;
13532 const char* target_name;
13533
13534 target_name = target->specific_st->name;
13535
13536 /* Defined for this type directly. */
13537 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
13538 {
13539 target->specific = target->specific_st->n.tb;
13540 goto specific_found;
13541 }
13542
13543 /* Look for an inherited specific binding. */
13544 if (super_type)
13545 {
13546 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
13547 true, NULL);
13548
13549 if (inherited)
13550 {
13551 gcc_assert (inherited->n.tb);
13552 target->specific = inherited->n.tb;
13553 goto specific_found;
13554 }
13555 }
13556
13557 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
13558 " at %L", target_name, name, &p->where);
13559 return false;
13560
13561 /* Once we've found the specific binding, check it is not ambiguous with
13562 other specifics already found or inherited for the same GENERIC. */
13563 specific_found:
13564 gcc_assert (target->specific);
13565
13566 /* This must really be a specific binding! */
13567 if (target->specific->is_generic)
13568 {
13569 gfc_error ("GENERIC %qs at %L must target a specific binding,"
13570 " %qs is GENERIC, too", name, &p->where, target_name);
13571 return false;
13572 }
13573
13574 /* Check those already resolved on this type directly. */
13575 for (g = p->u.generic; g; g = g->next)
13576 if (g != target && g->specific
13577 && !check_generic_tbp_ambiguity (target, g, name, p->where))
13578 return false;
13579
13580 /* Check for ambiguity with inherited specific targets. */
13581 for (overridden_tbp = p->overridden; overridden_tbp;
13582 overridden_tbp = overridden_tbp->overridden)
13583 if (overridden_tbp->is_generic)
13584 {
13585 for (g = overridden_tbp->u.generic; g; g = g->next)
13586 {
13587 gcc_assert (g->specific);
13588 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
13589 return false;
13590 }
13591 }
13592 }
13593
13594 /* If we attempt to "overwrite" a specific binding, this is an error. */
13595 if (p->overridden && !p->overridden->is_generic)
13596 {
13597 gfc_error ("GENERIC %qs at %L cannot overwrite specific binding with"
13598 " the same name", name, &p->where);
13599 return false;
13600 }
13601
13602 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
13603 all must have the same attributes here. */
13604 first_target = p->u.generic->specific->u.specific;
13605 gcc_assert (first_target);
13606 p->subroutine = first_target->n.sym->attr.subroutine;
13607 p->function = first_target->n.sym->attr.function;
13608
13609 return true;
13610 }
13611
13612
13613 /* Resolve a GENERIC procedure binding for a derived type. */
13614
13615 static bool
13616 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
13617 {
13618 gfc_symbol* super_type;
13619
13620 /* Find the overridden binding if any. */
13621 st->n.tb->overridden = NULL;
13622 super_type = gfc_get_derived_super_type (derived);
13623 if (super_type)
13624 {
13625 gfc_symtree* overridden;
13626 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
13627 true, NULL);
13628
13629 if (overridden && overridden->n.tb)
13630 st->n.tb->overridden = overridden->n.tb;
13631 }
13632
13633 /* Resolve using worker function. */
13634 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13635 }
13636
13637
13638 /* Retrieve the target-procedure of an operator binding and do some checks in
13639 common for intrinsic and user-defined type-bound operators. */
13640
13641 static gfc_symbol*
13642 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13643 {
13644 gfc_symbol* target_proc;
13645
13646 gcc_assert (target->specific && !target->specific->is_generic);
13647 target_proc = target->specific->u.specific->n.sym;
13648 gcc_assert (target_proc);
13649
13650 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13651 if (target->specific->nopass)
13652 {
13653 gfc_error ("Type-bound operator at %L cannot be NOPASS", &where);
13654 return NULL;
13655 }
13656
13657 return target_proc;
13658 }
13659
13660
13661 /* Resolve a type-bound intrinsic operator. */
13662
13663 static bool
13664 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13665 gfc_typebound_proc* p)
13666 {
13667 gfc_symbol* super_type;
13668 gfc_tbp_generic* target;
13669
13670 /* If there's already an error here, do nothing (but don't fail again). */
13671 if (p->error)
13672 return true;
13673
13674 /* Operators should always be GENERIC bindings. */
13675 gcc_assert (p->is_generic);
13676
13677 /* Look for an overridden binding. */
13678 super_type = gfc_get_derived_super_type (derived);
13679 if (super_type && super_type->f2k_derived)
13680 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13681 op, true, NULL);
13682 else
13683 p->overridden = NULL;
13684
13685 /* Resolve general GENERIC properties using worker function. */
13686 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13687 goto error;
13688
13689 /* Check the targets to be procedures of correct interface. */
13690 for (target = p->u.generic; target; target = target->next)
13691 {
13692 gfc_symbol* target_proc;
13693
13694 target_proc = get_checked_tb_operator_target (target, p->where);
13695 if (!target_proc)
13696 goto error;
13697
13698 if (!gfc_check_operator_interface (target_proc, op, p->where))
13699 goto error;
13700
13701 /* Add target to non-typebound operator list. */
13702 if (!target->specific->deferred && !derived->attr.use_assoc
13703 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13704 {
13705 gfc_interface *head, *intr;
13706
13707 /* Preempt 'gfc_check_new_interface' for submodules, where the
13708 mechanism for handling module procedures winds up resolving
13709 operator interfaces twice and would otherwise cause an error. */
13710 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13711 if (intr->sym == target_proc
13712 && target_proc->attr.used_in_submodule)
13713 return true;
13714
13715 if (!gfc_check_new_interface (derived->ns->op[op],
13716 target_proc, p->where))
13717 return false;
13718 head = derived->ns->op[op];
13719 intr = gfc_get_interface ();
13720 intr->sym = target_proc;
13721 intr->where = p->where;
13722 intr->next = head;
13723 derived->ns->op[op] = intr;
13724 }
13725 }
13726
13727 return true;
13728
13729 error:
13730 p->error = 1;
13731 return false;
13732 }
13733
13734
13735 /* Resolve a type-bound user operator (tree-walker callback). */
13736
13737 static gfc_symbol* resolve_bindings_derived;
13738 static bool resolve_bindings_result;
13739
13740 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13741
13742 static void
13743 resolve_typebound_user_op (gfc_symtree* stree)
13744 {
13745 gfc_symbol* super_type;
13746 gfc_tbp_generic* target;
13747
13748 gcc_assert (stree && stree->n.tb);
13749
13750 if (stree->n.tb->error)
13751 return;
13752
13753 /* Operators should always be GENERIC bindings. */
13754 gcc_assert (stree->n.tb->is_generic);
13755
13756 /* Find overridden procedure, if any. */
13757 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13758 if (super_type && super_type->f2k_derived)
13759 {
13760 gfc_symtree* overridden;
13761 overridden = gfc_find_typebound_user_op (super_type, NULL,
13762 stree->name, true, NULL);
13763
13764 if (overridden && overridden->n.tb)
13765 stree->n.tb->overridden = overridden->n.tb;
13766 }
13767 else
13768 stree->n.tb->overridden = NULL;
13769
13770 /* Resolve basically using worker function. */
13771 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13772 goto error;
13773
13774 /* Check the targets to be functions of correct interface. */
13775 for (target = stree->n.tb->u.generic; target; target = target->next)
13776 {
13777 gfc_symbol* target_proc;
13778
13779 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13780 if (!target_proc)
13781 goto error;
13782
13783 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13784 goto error;
13785 }
13786
13787 return;
13788
13789 error:
13790 resolve_bindings_result = false;
13791 stree->n.tb->error = 1;
13792 }
13793
13794
13795 /* Resolve the type-bound procedures for a derived type. */
13796
13797 static void
13798 resolve_typebound_procedure (gfc_symtree* stree)
13799 {
13800 gfc_symbol* proc;
13801 locus where;
13802 gfc_symbol* me_arg;
13803 gfc_symbol* super_type;
13804 gfc_component* comp;
13805
13806 gcc_assert (stree);
13807
13808 /* Undefined specific symbol from GENERIC target definition. */
13809 if (!stree->n.tb)
13810 return;
13811
13812 if (stree->n.tb->error)
13813 return;
13814
13815 /* If this is a GENERIC binding, use that routine. */
13816 if (stree->n.tb->is_generic)
13817 {
13818 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13819 goto error;
13820 return;
13821 }
13822
13823 /* Get the target-procedure to check it. */
13824 gcc_assert (!stree->n.tb->is_generic);
13825 gcc_assert (stree->n.tb->u.specific);
13826 proc = stree->n.tb->u.specific->n.sym;
13827 where = stree->n.tb->where;
13828
13829 /* Default access should already be resolved from the parser. */
13830 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13831
13832 if (stree->n.tb->deferred)
13833 {
13834 if (!check_proc_interface (proc, &where))
13835 goto error;
13836 }
13837 else
13838 {
13839 /* If proc has not been resolved at this point, proc->name may
13840 actually be a USE associated entity. See PR fortran/89647. */
13841 if (!proc->resolved
13842 && proc->attr.function == 0 && proc->attr.subroutine == 0)
13843 {
13844 gfc_symbol *tmp;
13845 gfc_find_symbol (proc->name, gfc_current_ns->parent, 1, &tmp);
13846 if (tmp && tmp->attr.use_assoc)
13847 {
13848 proc->module = tmp->module;
13849 proc->attr.proc = tmp->attr.proc;
13850 proc->attr.function = tmp->attr.function;
13851 proc->attr.subroutine = tmp->attr.subroutine;
13852 proc->attr.use_assoc = tmp->attr.use_assoc;
13853 proc->ts = tmp->ts;
13854 proc->result = tmp->result;
13855 }
13856 }
13857
13858 /* Check for F08:C465. */
13859 if ((!proc->attr.subroutine && !proc->attr.function)
13860 || (proc->attr.proc != PROC_MODULE
13861 && proc->attr.if_source != IFSRC_IFBODY)
13862 || proc->attr.abstract)
13863 {
13864 gfc_error ("%qs must be a module procedure or an external "
13865 "procedure with an explicit interface at %L",
13866 proc->name, &where);
13867 goto error;
13868 }
13869 }
13870
13871 stree->n.tb->subroutine = proc->attr.subroutine;
13872 stree->n.tb->function = proc->attr.function;
13873
13874 /* Find the super-type of the current derived type. We could do this once and
13875 store in a global if speed is needed, but as long as not I believe this is
13876 more readable and clearer. */
13877 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13878
13879 /* If PASS, resolve and check arguments if not already resolved / loaded
13880 from a .mod file. */
13881 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13882 {
13883 gfc_formal_arglist *dummy_args;
13884
13885 dummy_args = gfc_sym_get_dummy_args (proc);
13886 if (stree->n.tb->pass_arg)
13887 {
13888 gfc_formal_arglist *i;
13889
13890 /* If an explicit passing argument name is given, walk the arg-list
13891 and look for it. */
13892
13893 me_arg = NULL;
13894 stree->n.tb->pass_arg_num = 1;
13895 for (i = dummy_args; i; i = i->next)
13896 {
13897 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13898 {
13899 me_arg = i->sym;
13900 break;
13901 }
13902 ++stree->n.tb->pass_arg_num;
13903 }
13904
13905 if (!me_arg)
13906 {
13907 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13908 " argument %qs",
13909 proc->name, stree->n.tb->pass_arg, &where,
13910 stree->n.tb->pass_arg);
13911 goto error;
13912 }
13913 }
13914 else
13915 {
13916 /* Otherwise, take the first one; there should in fact be at least
13917 one. */
13918 stree->n.tb->pass_arg_num = 1;
13919 if (!dummy_args)
13920 {
13921 gfc_error ("Procedure %qs with PASS at %L must have at"
13922 " least one argument", proc->name, &where);
13923 goto error;
13924 }
13925 me_arg = dummy_args->sym;
13926 }
13927
13928 /* Now check that the argument-type matches and the passed-object
13929 dummy argument is generally fine. */
13930
13931 gcc_assert (me_arg);
13932
13933 if (me_arg->ts.type != BT_CLASS)
13934 {
13935 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13936 " at %L", proc->name, &where);
13937 goto error;
13938 }
13939
13940 if (CLASS_DATA (me_arg)->ts.u.derived
13941 != resolve_bindings_derived)
13942 {
13943 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13944 " the derived-type %qs", me_arg->name, proc->name,
13945 me_arg->name, &where, resolve_bindings_derived->name);
13946 goto error;
13947 }
13948
13949 gcc_assert (me_arg->ts.type == BT_CLASS);
13950 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
13951 {
13952 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13953 " scalar", proc->name, &where);
13954 goto error;
13955 }
13956 if (CLASS_DATA (me_arg)->attr.allocatable)
13957 {
13958 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13959 " be ALLOCATABLE", proc->name, &where);
13960 goto error;
13961 }
13962 if (CLASS_DATA (me_arg)->attr.class_pointer)
13963 {
13964 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13965 " be POINTER", proc->name, &where);
13966 goto error;
13967 }
13968 }
13969
13970 /* If we are extending some type, check that we don't override a procedure
13971 flagged NON_OVERRIDABLE. */
13972 stree->n.tb->overridden = NULL;
13973 if (super_type)
13974 {
13975 gfc_symtree* overridden;
13976 overridden = gfc_find_typebound_proc (super_type, NULL,
13977 stree->name, true, NULL);
13978
13979 if (overridden)
13980 {
13981 if (overridden->n.tb)
13982 stree->n.tb->overridden = overridden->n.tb;
13983
13984 if (!gfc_check_typebound_override (stree, overridden))
13985 goto error;
13986 }
13987 }
13988
13989 /* See if there's a name collision with a component directly in this type. */
13990 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
13991 if (!strcmp (comp->name, stree->name))
13992 {
13993 gfc_error ("Procedure %qs at %L has the same name as a component of"
13994 " %qs",
13995 stree->name, &where, resolve_bindings_derived->name);
13996 goto error;
13997 }
13998
13999 /* Try to find a name collision with an inherited component. */
14000 if (super_type && gfc_find_component (super_type, stree->name, true, true,
14001 NULL))
14002 {
14003 gfc_error ("Procedure %qs at %L has the same name as an inherited"
14004 " component of %qs",
14005 stree->name, &where, resolve_bindings_derived->name);
14006 goto error;
14007 }
14008
14009 stree->n.tb->error = 0;
14010 return;
14011
14012 error:
14013 resolve_bindings_result = false;
14014 stree->n.tb->error = 1;
14015 }
14016
14017
14018 static bool
14019 resolve_typebound_procedures (gfc_symbol* derived)
14020 {
14021 int op;
14022 gfc_symbol* super_type;
14023
14024 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
14025 return true;
14026
14027 super_type = gfc_get_derived_super_type (derived);
14028 if (super_type)
14029 resolve_symbol (super_type);
14030
14031 resolve_bindings_derived = derived;
14032 resolve_bindings_result = true;
14033
14034 if (derived->f2k_derived->tb_sym_root)
14035 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
14036 &resolve_typebound_procedure);
14037
14038 if (derived->f2k_derived->tb_uop_root)
14039 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
14040 &resolve_typebound_user_op);
14041
14042 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
14043 {
14044 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
14045 if (p && !resolve_typebound_intrinsic_op (derived,
14046 (gfc_intrinsic_op)op, p))
14047 resolve_bindings_result = false;
14048 }
14049
14050 return resolve_bindings_result;
14051 }
14052
14053
14054 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
14055 to give all identical derived types the same backend_decl. */
14056 static void
14057 add_dt_to_dt_list (gfc_symbol *derived)
14058 {
14059 if (!derived->dt_next)
14060 {
14061 if (gfc_derived_types)
14062 {
14063 derived->dt_next = gfc_derived_types->dt_next;
14064 gfc_derived_types->dt_next = derived;
14065 }
14066 else
14067 {
14068 derived->dt_next = derived;
14069 }
14070 gfc_derived_types = derived;
14071 }
14072 }
14073
14074
14075 /* Ensure that a derived-type is really not abstract, meaning that every
14076 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
14077
14078 static bool
14079 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
14080 {
14081 if (!st)
14082 return true;
14083
14084 if (!ensure_not_abstract_walker (sub, st->left))
14085 return false;
14086 if (!ensure_not_abstract_walker (sub, st->right))
14087 return false;
14088
14089 if (st->n.tb && st->n.tb->deferred)
14090 {
14091 gfc_symtree* overriding;
14092 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
14093 if (!overriding)
14094 return false;
14095 gcc_assert (overriding->n.tb);
14096 if (overriding->n.tb->deferred)
14097 {
14098 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
14099 " %qs is DEFERRED and not overridden",
14100 sub->name, &sub->declared_at, st->name);
14101 return false;
14102 }
14103 }
14104
14105 return true;
14106 }
14107
14108 static bool
14109 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
14110 {
14111 /* The algorithm used here is to recursively travel up the ancestry of sub
14112 and for each ancestor-type, check all bindings. If any of them is
14113 DEFERRED, look it up starting from sub and see if the found (overriding)
14114 binding is not DEFERRED.
14115 This is not the most efficient way to do this, but it should be ok and is
14116 clearer than something sophisticated. */
14117
14118 gcc_assert (ancestor && !sub->attr.abstract);
14119
14120 if (!ancestor->attr.abstract)
14121 return true;
14122
14123 /* Walk bindings of this ancestor. */
14124 if (ancestor->f2k_derived)
14125 {
14126 bool t;
14127 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
14128 if (!t)
14129 return false;
14130 }
14131
14132 /* Find next ancestor type and recurse on it. */
14133 ancestor = gfc_get_derived_super_type (ancestor);
14134 if (ancestor)
14135 return ensure_not_abstract (sub, ancestor);
14136
14137 return true;
14138 }
14139
14140
14141 /* This check for typebound defined assignments is done recursively
14142 since the order in which derived types are resolved is not always in
14143 order of the declarations. */
14144
14145 static void
14146 check_defined_assignments (gfc_symbol *derived)
14147 {
14148 gfc_component *c;
14149
14150 for (c = derived->components; c; c = c->next)
14151 {
14152 if (!gfc_bt_struct (c->ts.type)
14153 || c->attr.pointer
14154 || c->attr.allocatable
14155 || c->attr.proc_pointer_comp
14156 || c->attr.class_pointer
14157 || c->attr.proc_pointer)
14158 continue;
14159
14160 if (c->ts.u.derived->attr.defined_assign_comp
14161 || (c->ts.u.derived->f2k_derived
14162 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
14163 {
14164 derived->attr.defined_assign_comp = 1;
14165 return;
14166 }
14167
14168 check_defined_assignments (c->ts.u.derived);
14169 if (c->ts.u.derived->attr.defined_assign_comp)
14170 {
14171 derived->attr.defined_assign_comp = 1;
14172 return;
14173 }
14174 }
14175 }
14176
14177
14178 /* Resolve a single component of a derived type or structure. */
14179
14180 static bool
14181 resolve_component (gfc_component *c, gfc_symbol *sym)
14182 {
14183 gfc_symbol *super_type;
14184 symbol_attribute *attr;
14185
14186 if (c->attr.artificial)
14187 return true;
14188
14189 /* Do not allow vtype components to be resolved in nameless namespaces
14190 such as block data because the procedure pointers will cause ICEs
14191 and vtables are not needed in these contexts. */
14192 if (sym->attr.vtype && sym->attr.use_assoc
14193 && sym->ns->proc_name == NULL)
14194 return true;
14195
14196 /* F2008, C442. */
14197 if ((!sym->attr.is_class || c != sym->components)
14198 && c->attr.codimension
14199 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
14200 {
14201 gfc_error ("Coarray component %qs at %L must be allocatable with "
14202 "deferred shape", c->name, &c->loc);
14203 return false;
14204 }
14205
14206 /* F2008, C443. */
14207 if (c->attr.codimension && c->ts.type == BT_DERIVED
14208 && c->ts.u.derived->ts.is_iso_c)
14209 {
14210 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
14211 "shall not be a coarray", c->name, &c->loc);
14212 return false;
14213 }
14214
14215 /* F2008, C444. */
14216 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
14217 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
14218 || c->attr.allocatable))
14219 {
14220 gfc_error ("Component %qs at %L with coarray component "
14221 "shall be a nonpointer, nonallocatable scalar",
14222 c->name, &c->loc);
14223 return false;
14224 }
14225
14226 /* F2008, C448. */
14227 if (c->ts.type == BT_CLASS)
14228 {
14229 if (CLASS_DATA (c))
14230 {
14231 attr = &(CLASS_DATA (c)->attr);
14232
14233 /* Fix up contiguous attribute. */
14234 if (c->attr.contiguous)
14235 attr->contiguous = 1;
14236 }
14237 else
14238 attr = NULL;
14239 }
14240 else
14241 attr = &c->attr;
14242
14243 if (attr && attr->contiguous && (!attr->dimension || !attr->pointer))
14244 {
14245 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
14246 "is not an array pointer", c->name, &c->loc);
14247 return false;
14248 }
14249
14250 /* F2003, 15.2.1 - length has to be one. */
14251 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
14252 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
14253 || !gfc_is_constant_expr (c->ts.u.cl->length)
14254 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
14255 {
14256 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
14257 c->name, &c->loc);
14258 return false;
14259 }
14260
14261 if (c->attr.proc_pointer && c->ts.interface)
14262 {
14263 gfc_symbol *ifc = c->ts.interface;
14264
14265 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
14266 {
14267 c->tb->error = 1;
14268 return false;
14269 }
14270
14271 if (ifc->attr.if_source || ifc->attr.intrinsic)
14272 {
14273 /* Resolve interface and copy attributes. */
14274 if (ifc->formal && !ifc->formal_ns)
14275 resolve_symbol (ifc);
14276 if (ifc->attr.intrinsic)
14277 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
14278
14279 if (ifc->result)
14280 {
14281 c->ts = ifc->result->ts;
14282 c->attr.allocatable = ifc->result->attr.allocatable;
14283 c->attr.pointer = ifc->result->attr.pointer;
14284 c->attr.dimension = ifc->result->attr.dimension;
14285 c->as = gfc_copy_array_spec (ifc->result->as);
14286 c->attr.class_ok = ifc->result->attr.class_ok;
14287 }
14288 else
14289 {
14290 c->ts = ifc->ts;
14291 c->attr.allocatable = ifc->attr.allocatable;
14292 c->attr.pointer = ifc->attr.pointer;
14293 c->attr.dimension = ifc->attr.dimension;
14294 c->as = gfc_copy_array_spec (ifc->as);
14295 c->attr.class_ok = ifc->attr.class_ok;
14296 }
14297 c->ts.interface = ifc;
14298 c->attr.function = ifc->attr.function;
14299 c->attr.subroutine = ifc->attr.subroutine;
14300
14301 c->attr.pure = ifc->attr.pure;
14302 c->attr.elemental = ifc->attr.elemental;
14303 c->attr.recursive = ifc->attr.recursive;
14304 c->attr.always_explicit = ifc->attr.always_explicit;
14305 c->attr.ext_attr |= ifc->attr.ext_attr;
14306 /* Copy char length. */
14307 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
14308 {
14309 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
14310 if (cl->length && !cl->resolved
14311 && !gfc_resolve_expr (cl->length))
14312 {
14313 c->tb->error = 1;
14314 return false;
14315 }
14316 c->ts.u.cl = cl;
14317 }
14318 }
14319 }
14320 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
14321 {
14322 /* Since PPCs are not implicitly typed, a PPC without an explicit
14323 interface must be a subroutine. */
14324 gfc_add_subroutine (&c->attr, c->name, &c->loc);
14325 }
14326
14327 /* Procedure pointer components: Check PASS arg. */
14328 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
14329 && !sym->attr.vtype)
14330 {
14331 gfc_symbol* me_arg;
14332
14333 if (c->tb->pass_arg)
14334 {
14335 gfc_formal_arglist* i;
14336
14337 /* If an explicit passing argument name is given, walk the arg-list
14338 and look for it. */
14339
14340 me_arg = NULL;
14341 c->tb->pass_arg_num = 1;
14342 for (i = c->ts.interface->formal; i; i = i->next)
14343 {
14344 if (!strcmp (i->sym->name, c->tb->pass_arg))
14345 {
14346 me_arg = i->sym;
14347 break;
14348 }
14349 c->tb->pass_arg_num++;
14350 }
14351
14352 if (!me_arg)
14353 {
14354 gfc_error ("Procedure pointer component %qs with PASS(%s) "
14355 "at %L has no argument %qs", c->name,
14356 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
14357 c->tb->error = 1;
14358 return false;
14359 }
14360 }
14361 else
14362 {
14363 /* Otherwise, take the first one; there should in fact be at least
14364 one. */
14365 c->tb->pass_arg_num = 1;
14366 if (!c->ts.interface->formal)
14367 {
14368 gfc_error ("Procedure pointer component %qs with PASS at %L "
14369 "must have at least one argument",
14370 c->name, &c->loc);
14371 c->tb->error = 1;
14372 return false;
14373 }
14374 me_arg = c->ts.interface->formal->sym;
14375 }
14376
14377 /* Now check that the argument-type matches. */
14378 gcc_assert (me_arg);
14379 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
14380 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
14381 || (me_arg->ts.type == BT_CLASS
14382 && CLASS_DATA (me_arg)->ts.u.derived != sym))
14383 {
14384 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14385 " the derived type %qs", me_arg->name, c->name,
14386 me_arg->name, &c->loc, sym->name);
14387 c->tb->error = 1;
14388 return false;
14389 }
14390
14391 /* Check for F03:C453. */
14392 if (CLASS_DATA (me_arg)->attr.dimension)
14393 {
14394 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14395 "must be scalar", me_arg->name, c->name, me_arg->name,
14396 &c->loc);
14397 c->tb->error = 1;
14398 return false;
14399 }
14400
14401 if (CLASS_DATA (me_arg)->attr.class_pointer)
14402 {
14403 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14404 "may not have the POINTER attribute", me_arg->name,
14405 c->name, me_arg->name, &c->loc);
14406 c->tb->error = 1;
14407 return false;
14408 }
14409
14410 if (CLASS_DATA (me_arg)->attr.allocatable)
14411 {
14412 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14413 "may not be ALLOCATABLE", me_arg->name, c->name,
14414 me_arg->name, &c->loc);
14415 c->tb->error = 1;
14416 return false;
14417 }
14418
14419 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
14420 {
14421 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14422 " at %L", c->name, &c->loc);
14423 return false;
14424 }
14425
14426 }
14427
14428 /* Check type-spec if this is not the parent-type component. */
14429 if (((sym->attr.is_class
14430 && (!sym->components->ts.u.derived->attr.extension
14431 || c != sym->components->ts.u.derived->components))
14432 || (!sym->attr.is_class
14433 && (!sym->attr.extension || c != sym->components)))
14434 && !sym->attr.vtype
14435 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
14436 return false;
14437
14438 super_type = gfc_get_derived_super_type (sym);
14439
14440 /* If this type is an extension, set the accessibility of the parent
14441 component. */
14442 if (super_type
14443 && ((sym->attr.is_class
14444 && c == sym->components->ts.u.derived->components)
14445 || (!sym->attr.is_class && c == sym->components))
14446 && strcmp (super_type->name, c->name) == 0)
14447 c->attr.access = super_type->attr.access;
14448
14449 /* If this type is an extension, see if this component has the same name
14450 as an inherited type-bound procedure. */
14451 if (super_type && !sym->attr.is_class
14452 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
14453 {
14454 gfc_error ("Component %qs of %qs at %L has the same name as an"
14455 " inherited type-bound procedure",
14456 c->name, sym->name, &c->loc);
14457 return false;
14458 }
14459
14460 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
14461 && !c->ts.deferred)
14462 {
14463 if (c->ts.u.cl->length == NULL
14464 || (!resolve_charlen(c->ts.u.cl))
14465 || !gfc_is_constant_expr (c->ts.u.cl->length))
14466 {
14467 gfc_error ("Character length of component %qs needs to "
14468 "be a constant specification expression at %L",
14469 c->name,
14470 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
14471 return false;
14472 }
14473 }
14474
14475 if (c->ts.type == BT_CHARACTER && c->ts.deferred
14476 && !c->attr.pointer && !c->attr.allocatable)
14477 {
14478 gfc_error ("Character component %qs of %qs at %L with deferred "
14479 "length must be a POINTER or ALLOCATABLE",
14480 c->name, sym->name, &c->loc);
14481 return false;
14482 }
14483
14484 /* Add the hidden deferred length field. */
14485 if (c->ts.type == BT_CHARACTER
14486 && (c->ts.deferred || c->attr.pdt_string)
14487 && !c->attr.function
14488 && !sym->attr.is_class)
14489 {
14490 char name[GFC_MAX_SYMBOL_LEN+9];
14491 gfc_component *strlen;
14492 sprintf (name, "_%s_length", c->name);
14493 strlen = gfc_find_component (sym, name, true, true, NULL);
14494 if (strlen == NULL)
14495 {
14496 if (!gfc_add_component (sym, name, &strlen))
14497 return false;
14498 strlen->ts.type = BT_INTEGER;
14499 strlen->ts.kind = gfc_charlen_int_kind;
14500 strlen->attr.access = ACCESS_PRIVATE;
14501 strlen->attr.artificial = 1;
14502 }
14503 }
14504
14505 if (c->ts.type == BT_DERIVED
14506 && sym->component_access != ACCESS_PRIVATE
14507 && gfc_check_symbol_access (sym)
14508 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
14509 && !c->ts.u.derived->attr.use_assoc
14510 && !gfc_check_symbol_access (c->ts.u.derived)
14511 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
14512 "PRIVATE type and cannot be a component of "
14513 "%qs, which is PUBLIC at %L", c->name,
14514 sym->name, &sym->declared_at))
14515 return false;
14516
14517 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
14518 {
14519 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
14520 "type %s", c->name, &c->loc, sym->name);
14521 return false;
14522 }
14523
14524 if (sym->attr.sequence)
14525 {
14526 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
14527 {
14528 gfc_error ("Component %s of SEQUENCE type declared at %L does "
14529 "not have the SEQUENCE attribute",
14530 c->ts.u.derived->name, &sym->declared_at);
14531 return false;
14532 }
14533 }
14534
14535 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
14536 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
14537 else if (c->ts.type == BT_CLASS && c->attr.class_ok
14538 && CLASS_DATA (c)->ts.u.derived->attr.generic)
14539 CLASS_DATA (c)->ts.u.derived
14540 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
14541
14542 /* If an allocatable component derived type is of the same type as
14543 the enclosing derived type, we need a vtable generating so that
14544 the __deallocate procedure is created. */
14545 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
14546 && c->ts.u.derived == sym && c->attr.allocatable == 1)
14547 gfc_find_vtab (&c->ts);
14548
14549 /* Ensure that all the derived type components are put on the
14550 derived type list; even in formal namespaces, where derived type
14551 pointer components might not have been declared. */
14552 if (c->ts.type == BT_DERIVED
14553 && c->ts.u.derived
14554 && c->ts.u.derived->components
14555 && c->attr.pointer
14556 && sym != c->ts.u.derived)
14557 add_dt_to_dt_list (c->ts.u.derived);
14558
14559 if (!gfc_resolve_array_spec (c->as,
14560 !(c->attr.pointer || c->attr.proc_pointer
14561 || c->attr.allocatable)))
14562 return false;
14563
14564 if (c->initializer && !sym->attr.vtype
14565 && !c->attr.pdt_kind && !c->attr.pdt_len
14566 && !gfc_check_assign_symbol (sym, c, c->initializer))
14567 return false;
14568
14569 return true;
14570 }
14571
14572
14573 /* Be nice about the locus for a structure expression - show the locus of the
14574 first non-null sub-expression if we can. */
14575
14576 static locus *
14577 cons_where (gfc_expr *struct_expr)
14578 {
14579 gfc_constructor *cons;
14580
14581 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
14582
14583 cons = gfc_constructor_first (struct_expr->value.constructor);
14584 for (; cons; cons = gfc_constructor_next (cons))
14585 {
14586 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
14587 return &cons->expr->where;
14588 }
14589
14590 return &struct_expr->where;
14591 }
14592
14593 /* Resolve the components of a structure type. Much less work than derived
14594 types. */
14595
14596 static bool
14597 resolve_fl_struct (gfc_symbol *sym)
14598 {
14599 gfc_component *c;
14600 gfc_expr *init = NULL;
14601 bool success;
14602
14603 /* Make sure UNIONs do not have overlapping initializers. */
14604 if (sym->attr.flavor == FL_UNION)
14605 {
14606 for (c = sym->components; c; c = c->next)
14607 {
14608 if (init && c->initializer)
14609 {
14610 gfc_error ("Conflicting initializers in union at %L and %L",
14611 cons_where (init), cons_where (c->initializer));
14612 gfc_free_expr (c->initializer);
14613 c->initializer = NULL;
14614 }
14615 if (init == NULL)
14616 init = c->initializer;
14617 }
14618 }
14619
14620 success = true;
14621 for (c = sym->components; c; c = c->next)
14622 if (!resolve_component (c, sym))
14623 success = false;
14624
14625 if (!success)
14626 return false;
14627
14628 if (sym->components)
14629 add_dt_to_dt_list (sym);
14630
14631 return true;
14632 }
14633
14634
14635 /* Resolve the components of a derived type. This does not have to wait until
14636 resolution stage, but can be done as soon as the dt declaration has been
14637 parsed. */
14638
14639 static bool
14640 resolve_fl_derived0 (gfc_symbol *sym)
14641 {
14642 gfc_symbol* super_type;
14643 gfc_component *c;
14644 gfc_formal_arglist *f;
14645 bool success;
14646
14647 if (sym->attr.unlimited_polymorphic)
14648 return true;
14649
14650 super_type = gfc_get_derived_super_type (sym);
14651
14652 /* F2008, C432. */
14653 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14654 {
14655 gfc_error ("As extending type %qs at %L has a coarray component, "
14656 "parent type %qs shall also have one", sym->name,
14657 &sym->declared_at, super_type->name);
14658 return false;
14659 }
14660
14661 /* Ensure the extended type gets resolved before we do. */
14662 if (super_type && !resolve_fl_derived0 (super_type))
14663 return false;
14664
14665 /* An ABSTRACT type must be extensible. */
14666 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14667 {
14668 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14669 sym->name, &sym->declared_at);
14670 return false;
14671 }
14672
14673 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14674 : sym->components;
14675
14676 success = true;
14677 for ( ; c != NULL; c = c->next)
14678 if (!resolve_component (c, sym))
14679 success = false;
14680
14681 if (!success)
14682 return false;
14683
14684 /* Now add the caf token field, where needed. */
14685 if (flag_coarray != GFC_FCOARRAY_NONE
14686 && !sym->attr.is_class && !sym->attr.vtype)
14687 {
14688 for (c = sym->components; c; c = c->next)
14689 if (!c->attr.dimension && !c->attr.codimension
14690 && (c->attr.allocatable || c->attr.pointer))
14691 {
14692 char name[GFC_MAX_SYMBOL_LEN+9];
14693 gfc_component *token;
14694 sprintf (name, "_caf_%s", c->name);
14695 token = gfc_find_component (sym, name, true, true, NULL);
14696 if (token == NULL)
14697 {
14698 if (!gfc_add_component (sym, name, &token))
14699 return false;
14700 token->ts.type = BT_VOID;
14701 token->ts.kind = gfc_default_integer_kind;
14702 token->attr.access = ACCESS_PRIVATE;
14703 token->attr.artificial = 1;
14704 token->attr.caf_token = 1;
14705 }
14706 }
14707 }
14708
14709 check_defined_assignments (sym);
14710
14711 if (!sym->attr.defined_assign_comp && super_type)
14712 sym->attr.defined_assign_comp
14713 = super_type->attr.defined_assign_comp;
14714
14715 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14716 all DEFERRED bindings are overridden. */
14717 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14718 && !sym->attr.is_class
14719 && !ensure_not_abstract (sym, super_type))
14720 return false;
14721
14722 /* Check that there is a component for every PDT parameter. */
14723 if (sym->attr.pdt_template)
14724 {
14725 for (f = sym->formal; f; f = f->next)
14726 {
14727 if (!f->sym)
14728 continue;
14729 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14730 if (c == NULL)
14731 {
14732 gfc_error ("Parameterized type %qs does not have a component "
14733 "corresponding to parameter %qs at %L", sym->name,
14734 f->sym->name, &sym->declared_at);
14735 break;
14736 }
14737 }
14738 }
14739
14740 /* Add derived type to the derived type list. */
14741 add_dt_to_dt_list (sym);
14742
14743 return true;
14744 }
14745
14746
14747 /* The following procedure does the full resolution of a derived type,
14748 including resolution of all type-bound procedures (if present). In contrast
14749 to 'resolve_fl_derived0' this can only be done after the module has been
14750 parsed completely. */
14751
14752 static bool
14753 resolve_fl_derived (gfc_symbol *sym)
14754 {
14755 gfc_symbol *gen_dt = NULL;
14756
14757 if (sym->attr.unlimited_polymorphic)
14758 return true;
14759
14760 if (!sym->attr.is_class)
14761 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14762 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14763 && (!gen_dt->generic->sym->attr.use_assoc
14764 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14765 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14766 "%qs at %L being the same name as derived "
14767 "type at %L", sym->name,
14768 gen_dt->generic->sym == sym
14769 ? gen_dt->generic->next->sym->name
14770 : gen_dt->generic->sym->name,
14771 gen_dt->generic->sym == sym
14772 ? &gen_dt->generic->next->sym->declared_at
14773 : &gen_dt->generic->sym->declared_at,
14774 &sym->declared_at))
14775 return false;
14776
14777 if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
14778 {
14779 gfc_error ("Derived type %qs at %L has not been declared",
14780 sym->name, &sym->declared_at);
14781 return false;
14782 }
14783
14784 /* Resolve the finalizer procedures. */
14785 if (!gfc_resolve_finalizers (sym, NULL))
14786 return false;
14787
14788 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14789 {
14790 /* Fix up incomplete CLASS symbols. */
14791 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14792 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14793
14794 /* Nothing more to do for unlimited polymorphic entities. */
14795 if (data->ts.u.derived->attr.unlimited_polymorphic)
14796 return true;
14797 else if (vptr->ts.u.derived == NULL)
14798 {
14799 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14800 gcc_assert (vtab);
14801 vptr->ts.u.derived = vtab->ts.u.derived;
14802 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14803 return false;
14804 }
14805 }
14806
14807 if (!resolve_fl_derived0 (sym))
14808 return false;
14809
14810 /* Resolve the type-bound procedures. */
14811 if (!resolve_typebound_procedures (sym))
14812 return false;
14813
14814 /* Generate module vtables subject to their accessibility and their not
14815 being vtables or pdt templates. If this is not done class declarations
14816 in external procedures wind up with their own version and so SELECT TYPE
14817 fails because the vptrs do not have the same address. */
14818 if (gfc_option.allow_std & GFC_STD_F2003
14819 && sym->ns->proc_name
14820 && sym->ns->proc_name->attr.flavor == FL_MODULE
14821 && sym->attr.access != ACCESS_PRIVATE
14822 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14823 {
14824 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14825 gfc_set_sym_referenced (vtab);
14826 }
14827
14828 return true;
14829 }
14830
14831
14832 static bool
14833 resolve_fl_namelist (gfc_symbol *sym)
14834 {
14835 gfc_namelist *nl;
14836 gfc_symbol *nlsym;
14837
14838 for (nl = sym->namelist; nl; nl = nl->next)
14839 {
14840 /* Check again, the check in match only works if NAMELIST comes
14841 after the decl. */
14842 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14843 {
14844 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14845 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14846 return false;
14847 }
14848
14849 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14850 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14851 "with assumed shape in namelist %qs at %L",
14852 nl->sym->name, sym->name, &sym->declared_at))
14853 return false;
14854
14855 if (is_non_constant_shape_array (nl->sym)
14856 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14857 "with nonconstant shape in namelist %qs at %L",
14858 nl->sym->name, sym->name, &sym->declared_at))
14859 return false;
14860
14861 if (nl->sym->ts.type == BT_CHARACTER
14862 && (nl->sym->ts.u.cl->length == NULL
14863 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14864 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14865 "nonconstant character length in "
14866 "namelist %qs at %L", nl->sym->name,
14867 sym->name, &sym->declared_at))
14868 return false;
14869
14870 }
14871
14872 /* Reject PRIVATE objects in a PUBLIC namelist. */
14873 if (gfc_check_symbol_access (sym))
14874 {
14875 for (nl = sym->namelist; nl; nl = nl->next)
14876 {
14877 if (!nl->sym->attr.use_assoc
14878 && !is_sym_host_assoc (nl->sym, sym->ns)
14879 && !gfc_check_symbol_access (nl->sym))
14880 {
14881 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14882 "cannot be member of PUBLIC namelist %qs at %L",
14883 nl->sym->name, sym->name, &sym->declared_at);
14884 return false;
14885 }
14886
14887 if (nl->sym->ts.type == BT_DERIVED
14888 && (nl->sym->ts.u.derived->attr.alloc_comp
14889 || nl->sym->ts.u.derived->attr.pointer_comp))
14890 {
14891 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14892 "namelist %qs at %L with ALLOCATABLE "
14893 "or POINTER components", nl->sym->name,
14894 sym->name, &sym->declared_at))
14895 return false;
14896 return true;
14897 }
14898
14899 /* Types with private components that came here by USE-association. */
14900 if (nl->sym->ts.type == BT_DERIVED
14901 && derived_inaccessible (nl->sym->ts.u.derived))
14902 {
14903 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14904 "components and cannot be member of namelist %qs at %L",
14905 nl->sym->name, sym->name, &sym->declared_at);
14906 return false;
14907 }
14908
14909 /* Types with private components that are defined in the same module. */
14910 if (nl->sym->ts.type == BT_DERIVED
14911 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14912 && nl->sym->ts.u.derived->attr.private_comp)
14913 {
14914 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14915 "cannot be a member of PUBLIC namelist %qs at %L",
14916 nl->sym->name, sym->name, &sym->declared_at);
14917 return false;
14918 }
14919 }
14920 }
14921
14922
14923 /* 14.1.2 A module or internal procedure represent local entities
14924 of the same type as a namelist member and so are not allowed. */
14925 for (nl = sym->namelist; nl; nl = nl->next)
14926 {
14927 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
14928 continue;
14929
14930 if (nl->sym->attr.function && nl->sym == nl->sym->result)
14931 if ((nl->sym == sym->ns->proc_name)
14932 ||
14933 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
14934 continue;
14935
14936 nlsym = NULL;
14937 if (nl->sym->name)
14938 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
14939 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
14940 {
14941 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14942 "attribute in %qs at %L", nlsym->name,
14943 &sym->declared_at);
14944 return false;
14945 }
14946 }
14947
14948 if (async_io_dt)
14949 {
14950 for (nl = sym->namelist; nl; nl = nl->next)
14951 nl->sym->attr.asynchronous = 1;
14952 }
14953 return true;
14954 }
14955
14956
14957 static bool
14958 resolve_fl_parameter (gfc_symbol *sym)
14959 {
14960 /* A parameter array's shape needs to be constant. */
14961 if (sym->as != NULL
14962 && (sym->as->type == AS_DEFERRED
14963 || is_non_constant_shape_array (sym)))
14964 {
14965 gfc_error ("Parameter array %qs at %L cannot be automatic "
14966 "or of deferred shape", sym->name, &sym->declared_at);
14967 return false;
14968 }
14969
14970 /* Constraints on deferred type parameter. */
14971 if (!deferred_requirements (sym))
14972 return false;
14973
14974 /* Make sure a parameter that has been implicitly typed still
14975 matches the implicit type, since PARAMETER statements can precede
14976 IMPLICIT statements. */
14977 if (sym->attr.implicit_type
14978 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
14979 sym->ns)))
14980 {
14981 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
14982 "later IMPLICIT type", sym->name, &sym->declared_at);
14983 return false;
14984 }
14985
14986 /* Make sure the types of derived parameters are consistent. This
14987 type checking is deferred until resolution because the type may
14988 refer to a derived type from the host. */
14989 if (sym->ts.type == BT_DERIVED
14990 && !gfc_compare_types (&sym->ts, &sym->value->ts))
14991 {
14992 gfc_error ("Incompatible derived type in PARAMETER at %L",
14993 &sym->value->where);
14994 return false;
14995 }
14996
14997 /* F03:C509,C514. */
14998 if (sym->ts.type == BT_CLASS)
14999 {
15000 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
15001 sym->name, &sym->declared_at);
15002 return false;
15003 }
15004
15005 return true;
15006 }
15007
15008
15009 /* Called by resolve_symbol to check PDTs. */
15010
15011 static void
15012 resolve_pdt (gfc_symbol* sym)
15013 {
15014 gfc_symbol *derived = NULL;
15015 gfc_actual_arglist *param;
15016 gfc_component *c;
15017 bool const_len_exprs = true;
15018 bool assumed_len_exprs = false;
15019 symbol_attribute *attr;
15020
15021 if (sym->ts.type == BT_DERIVED)
15022 {
15023 derived = sym->ts.u.derived;
15024 attr = &(sym->attr);
15025 }
15026 else if (sym->ts.type == BT_CLASS)
15027 {
15028 derived = CLASS_DATA (sym)->ts.u.derived;
15029 attr = &(CLASS_DATA (sym)->attr);
15030 }
15031 else
15032 gcc_unreachable ();
15033
15034 gcc_assert (derived->attr.pdt_type);
15035
15036 for (param = sym->param_list; param; param = param->next)
15037 {
15038 c = gfc_find_component (derived, param->name, false, true, NULL);
15039 gcc_assert (c);
15040 if (c->attr.pdt_kind)
15041 continue;
15042
15043 if (param->expr && !gfc_is_constant_expr (param->expr)
15044 && c->attr.pdt_len)
15045 const_len_exprs = false;
15046 else if (param->spec_type == SPEC_ASSUMED)
15047 assumed_len_exprs = true;
15048
15049 if (param->spec_type == SPEC_DEFERRED
15050 && !attr->allocatable && !attr->pointer)
15051 gfc_error ("The object %qs at %L has a deferred LEN "
15052 "parameter %qs and is neither allocatable "
15053 "nor a pointer", sym->name, &sym->declared_at,
15054 param->name);
15055
15056 }
15057
15058 if (!const_len_exprs
15059 && (sym->ns->proc_name->attr.is_main_program
15060 || sym->ns->proc_name->attr.flavor == FL_MODULE
15061 || sym->attr.save != SAVE_NONE))
15062 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
15063 "SAVE attribute or be a variable declared in the "
15064 "main program, a module or a submodule(F08/C513)",
15065 sym->name, &sym->declared_at);
15066
15067 if (assumed_len_exprs && !(sym->attr.dummy
15068 || sym->attr.select_type_temporary || sym->attr.associate_var))
15069 gfc_error ("The object %qs at %L with ASSUMED type parameters "
15070 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
15071 sym->name, &sym->declared_at);
15072 }
15073
15074
15075 /* Do anything necessary to resolve a symbol. Right now, we just
15076 assume that an otherwise unknown symbol is a variable. This sort
15077 of thing commonly happens for symbols in module. */
15078
15079 static void
15080 resolve_symbol (gfc_symbol *sym)
15081 {
15082 int check_constant, mp_flag;
15083 gfc_symtree *symtree;
15084 gfc_symtree *this_symtree;
15085 gfc_namespace *ns;
15086 gfc_component *c;
15087 symbol_attribute class_attr;
15088 gfc_array_spec *as;
15089 bool saved_specification_expr;
15090
15091 if (sym->resolved)
15092 return;
15093 sym->resolved = 1;
15094
15095 /* No symbol will ever have union type; only components can be unions.
15096 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
15097 (just like derived type declaration symbols have flavor FL_DERIVED). */
15098 gcc_assert (sym->ts.type != BT_UNION);
15099
15100 /* Coarrayed polymorphic objects with allocatable or pointer components are
15101 yet unsupported for -fcoarray=lib. */
15102 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
15103 && sym->ts.u.derived && CLASS_DATA (sym)
15104 && CLASS_DATA (sym)->attr.codimension
15105 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
15106 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
15107 {
15108 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
15109 "type coarrays at %L are unsupported", &sym->declared_at);
15110 return;
15111 }
15112
15113 if (sym->attr.artificial)
15114 return;
15115
15116 if (sym->attr.unlimited_polymorphic)
15117 return;
15118
15119 if (sym->attr.flavor == FL_UNKNOWN
15120 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
15121 && !sym->attr.generic && !sym->attr.external
15122 && sym->attr.if_source == IFSRC_UNKNOWN
15123 && sym->ts.type == BT_UNKNOWN))
15124 {
15125
15126 /* If we find that a flavorless symbol is an interface in one of the
15127 parent namespaces, find its symtree in this namespace, free the
15128 symbol and set the symtree to point to the interface symbol. */
15129 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
15130 {
15131 symtree = gfc_find_symtree (ns->sym_root, sym->name);
15132 if (symtree && (symtree->n.sym->generic ||
15133 (symtree->n.sym->attr.flavor == FL_PROCEDURE
15134 && sym->ns->construct_entities)))
15135 {
15136 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
15137 sym->name);
15138 if (this_symtree->n.sym == sym)
15139 {
15140 symtree->n.sym->refs++;
15141 gfc_release_symbol (sym);
15142 this_symtree->n.sym = symtree->n.sym;
15143 return;
15144 }
15145 }
15146 }
15147
15148 /* Otherwise give it a flavor according to such attributes as
15149 it has. */
15150 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
15151 && sym->attr.intrinsic == 0)
15152 sym->attr.flavor = FL_VARIABLE;
15153 else if (sym->attr.flavor == FL_UNKNOWN)
15154 {
15155 sym->attr.flavor = FL_PROCEDURE;
15156 if (sym->attr.dimension)
15157 sym->attr.function = 1;
15158 }
15159 }
15160
15161 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
15162 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
15163
15164 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
15165 && !resolve_procedure_interface (sym))
15166 return;
15167
15168 if (sym->attr.is_protected && !sym->attr.proc_pointer
15169 && (sym->attr.procedure || sym->attr.external))
15170 {
15171 if (sym->attr.external)
15172 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
15173 "at %L", &sym->declared_at);
15174 else
15175 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
15176 "at %L", &sym->declared_at);
15177
15178 return;
15179 }
15180
15181 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
15182 return;
15183
15184 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
15185 && !resolve_fl_struct (sym))
15186 return;
15187
15188 /* Symbols that are module procedures with results (functions) have
15189 the types and array specification copied for type checking in
15190 procedures that call them, as well as for saving to a module
15191 file. These symbols can't stand the scrutiny that their results
15192 can. */
15193 mp_flag = (sym->result != NULL && sym->result != sym);
15194
15195 /* Make sure that the intrinsic is consistent with its internal
15196 representation. This needs to be done before assigning a default
15197 type to avoid spurious warnings. */
15198 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
15199 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
15200 return;
15201
15202 /* Resolve associate names. */
15203 if (sym->assoc)
15204 resolve_assoc_var (sym, true);
15205
15206 /* Assign default type to symbols that need one and don't have one. */
15207 if (sym->ts.type == BT_UNKNOWN)
15208 {
15209 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
15210 {
15211 gfc_set_default_type (sym, 1, NULL);
15212 }
15213
15214 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
15215 && !sym->attr.function && !sym->attr.subroutine
15216 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
15217 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
15218
15219 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15220 {
15221 /* The specific case of an external procedure should emit an error
15222 in the case that there is no implicit type. */
15223 if (!mp_flag)
15224 {
15225 if (!sym->attr.mixed_entry_master)
15226 gfc_set_default_type (sym, sym->attr.external, NULL);
15227 }
15228 else
15229 {
15230 /* Result may be in another namespace. */
15231 resolve_symbol (sym->result);
15232
15233 if (!sym->result->attr.proc_pointer)
15234 {
15235 sym->ts = sym->result->ts;
15236 sym->as = gfc_copy_array_spec (sym->result->as);
15237 sym->attr.dimension = sym->result->attr.dimension;
15238 sym->attr.pointer = sym->result->attr.pointer;
15239 sym->attr.allocatable = sym->result->attr.allocatable;
15240 sym->attr.contiguous = sym->result->attr.contiguous;
15241 }
15242 }
15243 }
15244 }
15245 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15246 {
15247 bool saved_specification_expr = specification_expr;
15248 specification_expr = true;
15249 gfc_resolve_array_spec (sym->result->as, false);
15250 specification_expr = saved_specification_expr;
15251 }
15252
15253 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
15254 {
15255 as = CLASS_DATA (sym)->as;
15256 class_attr = CLASS_DATA (sym)->attr;
15257 class_attr.pointer = class_attr.class_pointer;
15258 }
15259 else
15260 {
15261 class_attr = sym->attr;
15262 as = sym->as;
15263 }
15264
15265 /* F2008, C530. */
15266 if (sym->attr.contiguous
15267 && (!class_attr.dimension
15268 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
15269 && !class_attr.pointer)))
15270 {
15271 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
15272 "array pointer or an assumed-shape or assumed-rank array",
15273 sym->name, &sym->declared_at);
15274 return;
15275 }
15276
15277 /* Assumed size arrays and assumed shape arrays must be dummy
15278 arguments. Array-spec's of implied-shape should have been resolved to
15279 AS_EXPLICIT already. */
15280
15281 if (as)
15282 {
15283 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
15284 specification expression. */
15285 if (as->type == AS_IMPLIED_SHAPE)
15286 {
15287 int i;
15288 for (i=0; i<as->rank; i++)
15289 {
15290 if (as->lower[i] != NULL && as->upper[i] == NULL)
15291 {
15292 gfc_error ("Bad specification for assumed size array at %L",
15293 &as->lower[i]->where);
15294 return;
15295 }
15296 }
15297 gcc_unreachable();
15298 }
15299
15300 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
15301 || as->type == AS_ASSUMED_SHAPE)
15302 && !sym->attr.dummy && !sym->attr.select_type_temporary)
15303 {
15304 if (as->type == AS_ASSUMED_SIZE)
15305 gfc_error ("Assumed size array at %L must be a dummy argument",
15306 &sym->declared_at);
15307 else
15308 gfc_error ("Assumed shape array at %L must be a dummy argument",
15309 &sym->declared_at);
15310 return;
15311 }
15312 /* TS 29113, C535a. */
15313 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
15314 && !sym->attr.select_type_temporary
15315 && !(cs_base && cs_base->current
15316 && cs_base->current->op == EXEC_SELECT_RANK))
15317 {
15318 gfc_error ("Assumed-rank array at %L must be a dummy argument",
15319 &sym->declared_at);
15320 return;
15321 }
15322 if (as->type == AS_ASSUMED_RANK
15323 && (sym->attr.codimension || sym->attr.value))
15324 {
15325 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
15326 "CODIMENSION attribute", &sym->declared_at);
15327 return;
15328 }
15329 }
15330
15331 /* Make sure symbols with known intent or optional are really dummy
15332 variable. Because of ENTRY statement, this has to be deferred
15333 until resolution time. */
15334
15335 if (!sym->attr.dummy
15336 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
15337 {
15338 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
15339 return;
15340 }
15341
15342 if (sym->attr.value && !sym->attr.dummy)
15343 {
15344 gfc_error ("%qs at %L cannot have the VALUE attribute because "
15345 "it is not a dummy argument", sym->name, &sym->declared_at);
15346 return;
15347 }
15348
15349 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
15350 {
15351 gfc_charlen *cl = sym->ts.u.cl;
15352 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
15353 {
15354 gfc_error ("Character dummy variable %qs at %L with VALUE "
15355 "attribute must have constant length",
15356 sym->name, &sym->declared_at);
15357 return;
15358 }
15359
15360 if (sym->ts.is_c_interop
15361 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
15362 {
15363 gfc_error ("C interoperable character dummy variable %qs at %L "
15364 "with VALUE attribute must have length one",
15365 sym->name, &sym->declared_at);
15366 return;
15367 }
15368 }
15369
15370 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15371 && sym->ts.u.derived->attr.generic)
15372 {
15373 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
15374 if (!sym->ts.u.derived)
15375 {
15376 gfc_error ("The derived type %qs at %L is of type %qs, "
15377 "which has not been defined", sym->name,
15378 &sym->declared_at, sym->ts.u.derived->name);
15379 sym->ts.type = BT_UNKNOWN;
15380 return;
15381 }
15382 }
15383
15384 /* Use the same constraints as TYPE(*), except for the type check
15385 and that only scalars and assumed-size arrays are permitted. */
15386 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
15387 {
15388 if (!sym->attr.dummy)
15389 {
15390 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15391 "a dummy argument", sym->name, &sym->declared_at);
15392 return;
15393 }
15394
15395 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
15396 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
15397 && sym->ts.type != BT_COMPLEX)
15398 {
15399 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15400 "of type TYPE(*) or of an numeric intrinsic type",
15401 sym->name, &sym->declared_at);
15402 return;
15403 }
15404
15405 if (sym->attr.allocatable || sym->attr.codimension
15406 || sym->attr.pointer || sym->attr.value)
15407 {
15408 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15409 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
15410 "attribute", sym->name, &sym->declared_at);
15411 return;
15412 }
15413
15414 if (sym->attr.intent == INTENT_OUT)
15415 {
15416 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15417 "have the INTENT(OUT) attribute",
15418 sym->name, &sym->declared_at);
15419 return;
15420 }
15421 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
15422 {
15423 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
15424 "either be a scalar or an assumed-size array",
15425 sym->name, &sym->declared_at);
15426 return;
15427 }
15428
15429 /* Set the type to TYPE(*) and add a dimension(*) to ensure
15430 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
15431 packing. */
15432 sym->ts.type = BT_ASSUMED;
15433 sym->as = gfc_get_array_spec ();
15434 sym->as->type = AS_ASSUMED_SIZE;
15435 sym->as->rank = 1;
15436 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
15437 }
15438 else if (sym->ts.type == BT_ASSUMED)
15439 {
15440 /* TS 29113, C407a. */
15441 if (!sym->attr.dummy)
15442 {
15443 gfc_error ("Assumed type of variable %s at %L is only permitted "
15444 "for dummy variables", sym->name, &sym->declared_at);
15445 return;
15446 }
15447 if (sym->attr.allocatable || sym->attr.codimension
15448 || sym->attr.pointer || sym->attr.value)
15449 {
15450 gfc_error ("Assumed-type variable %s at %L may not have the "
15451 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
15452 sym->name, &sym->declared_at);
15453 return;
15454 }
15455 if (sym->attr.intent == INTENT_OUT)
15456 {
15457 gfc_error ("Assumed-type variable %s at %L may not have the "
15458 "INTENT(OUT) attribute",
15459 sym->name, &sym->declared_at);
15460 return;
15461 }
15462 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
15463 {
15464 gfc_error ("Assumed-type variable %s at %L shall not be an "
15465 "explicit-shape array", sym->name, &sym->declared_at);
15466 return;
15467 }
15468 }
15469
15470 /* If the symbol is marked as bind(c), that it is declared at module level
15471 scope and verify its type and kind. Do not do the latter for symbols
15472 that are implicitly typed because that is handled in
15473 gfc_set_default_type. Handle dummy arguments and procedure definitions
15474 separately. Also, anything that is use associated is not handled here
15475 but instead is handled in the module it is declared in. Finally, derived
15476 type definitions are allowed to be BIND(C) since that only implies that
15477 they're interoperable, and they are checked fully for interoperability
15478 when a variable is declared of that type. */
15479 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
15480 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
15481 && sym->attr.flavor != FL_DERIVED)
15482 {
15483 bool t = true;
15484
15485 /* First, make sure the variable is declared at the
15486 module-level scope (J3/04-007, Section 15.3). */
15487 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
15488 sym->attr.in_common == 0)
15489 {
15490 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
15491 "is neither a COMMON block nor declared at the "
15492 "module level scope", sym->name, &(sym->declared_at));
15493 t = false;
15494 }
15495 else if (sym->ts.type == BT_CHARACTER
15496 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
15497 || !gfc_is_constant_expr (sym->ts.u.cl->length)
15498 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
15499 {
15500 gfc_error ("BIND(C) Variable %qs at %L must have length one",
15501 sym->name, &sym->declared_at);
15502 t = false;
15503 }
15504 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
15505 {
15506 t = verify_com_block_vars_c_interop (sym->common_head);
15507 }
15508 else if (sym->attr.implicit_type == 0)
15509 {
15510 /* If type() declaration, we need to verify that the components
15511 of the given type are all C interoperable, etc. */
15512 if (sym->ts.type == BT_DERIVED &&
15513 sym->ts.u.derived->attr.is_c_interop != 1)
15514 {
15515 /* Make sure the user marked the derived type as BIND(C). If
15516 not, call the verify routine. This could print an error
15517 for the derived type more than once if multiple variables
15518 of that type are declared. */
15519 if (sym->ts.u.derived->attr.is_bind_c != 1)
15520 verify_bind_c_derived_type (sym->ts.u.derived);
15521 t = false;
15522 }
15523
15524 /* Verify the variable itself as C interoperable if it
15525 is BIND(C). It is not possible for this to succeed if
15526 the verify_bind_c_derived_type failed, so don't have to handle
15527 any error returned by verify_bind_c_derived_type. */
15528 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
15529 sym->common_block);
15530 }
15531
15532 if (!t)
15533 {
15534 /* clear the is_bind_c flag to prevent reporting errors more than
15535 once if something failed. */
15536 sym->attr.is_bind_c = 0;
15537 return;
15538 }
15539 }
15540
15541 /* If a derived type symbol has reached this point, without its
15542 type being declared, we have an error. Notice that most
15543 conditions that produce undefined derived types have already
15544 been dealt with. However, the likes of:
15545 implicit type(t) (t) ..... call foo (t) will get us here if
15546 the type is not declared in the scope of the implicit
15547 statement. Change the type to BT_UNKNOWN, both because it is so
15548 and to prevent an ICE. */
15549 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15550 && sym->ts.u.derived->components == NULL
15551 && !sym->ts.u.derived->attr.zero_comp)
15552 {
15553 gfc_error ("The derived type %qs at %L is of type %qs, "
15554 "which has not been defined", sym->name,
15555 &sym->declared_at, sym->ts.u.derived->name);
15556 sym->ts.type = BT_UNKNOWN;
15557 return;
15558 }
15559
15560 /* Make sure that the derived type has been resolved and that the
15561 derived type is visible in the symbol's namespace, if it is a
15562 module function and is not PRIVATE. */
15563 if (sym->ts.type == BT_DERIVED
15564 && sym->ts.u.derived->attr.use_assoc
15565 && sym->ns->proc_name
15566 && sym->ns->proc_name->attr.flavor == FL_MODULE
15567 && !resolve_fl_derived (sym->ts.u.derived))
15568 return;
15569
15570 /* Unless the derived-type declaration is use associated, Fortran 95
15571 does not allow public entries of private derived types.
15572 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
15573 161 in 95-006r3. */
15574 if (sym->ts.type == BT_DERIVED
15575 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
15576 && !sym->ts.u.derived->attr.use_assoc
15577 && gfc_check_symbol_access (sym)
15578 && !gfc_check_symbol_access (sym->ts.u.derived)
15579 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
15580 "derived type %qs",
15581 (sym->attr.flavor == FL_PARAMETER)
15582 ? "parameter" : "variable",
15583 sym->name, &sym->declared_at,
15584 sym->ts.u.derived->name))
15585 return;
15586
15587 /* F2008, C1302. */
15588 if (sym->ts.type == BT_DERIVED
15589 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15590 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
15591 || sym->ts.u.derived->attr.lock_comp)
15592 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15593 {
15594 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
15595 "type LOCK_TYPE must be a coarray", sym->name,
15596 &sym->declared_at);
15597 return;
15598 }
15599
15600 /* TS18508, C702/C703. */
15601 if (sym->ts.type == BT_DERIVED
15602 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15603 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
15604 || sym->ts.u.derived->attr.event_comp)
15605 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15606 {
15607 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
15608 "type EVENT_TYPE must be a coarray", sym->name,
15609 &sym->declared_at);
15610 return;
15611 }
15612
15613 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
15614 default initialization is defined (5.1.2.4.4). */
15615 if (sym->ts.type == BT_DERIVED
15616 && sym->attr.dummy
15617 && sym->attr.intent == INTENT_OUT
15618 && sym->as
15619 && sym->as->type == AS_ASSUMED_SIZE)
15620 {
15621 for (c = sym->ts.u.derived->components; c; c = c->next)
15622 {
15623 if (c->initializer)
15624 {
15625 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
15626 "ASSUMED SIZE and so cannot have a default initializer",
15627 sym->name, &sym->declared_at);
15628 return;
15629 }
15630 }
15631 }
15632
15633 /* F2008, C542. */
15634 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15635 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
15636 {
15637 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
15638 "INTENT(OUT)", sym->name, &sym->declared_at);
15639 return;
15640 }
15641
15642 /* TS18508. */
15643 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15644 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
15645 {
15646 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
15647 "INTENT(OUT)", sym->name, &sym->declared_at);
15648 return;
15649 }
15650
15651 /* F2008, C525. */
15652 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15653 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15654 && CLASS_DATA (sym)->attr.coarray_comp))
15655 || class_attr.codimension)
15656 && (sym->attr.result || sym->result == sym))
15657 {
15658 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15659 "a coarray component", sym->name, &sym->declared_at);
15660 return;
15661 }
15662
15663 /* F2008, C524. */
15664 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15665 && sym->ts.u.derived->ts.is_iso_c)
15666 {
15667 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15668 "shall not be a coarray", sym->name, &sym->declared_at);
15669 return;
15670 }
15671
15672 /* F2008, C525. */
15673 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15674 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15675 && CLASS_DATA (sym)->attr.coarray_comp))
15676 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15677 || class_attr.allocatable))
15678 {
15679 gfc_error ("Variable %qs at %L with coarray component shall be a "
15680 "nonpointer, nonallocatable scalar, which is not a coarray",
15681 sym->name, &sym->declared_at);
15682 return;
15683 }
15684
15685 /* F2008, C526. The function-result case was handled above. */
15686 if (class_attr.codimension
15687 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15688 || sym->attr.select_type_temporary
15689 || sym->attr.associate_var
15690 || (sym->ns->save_all && !sym->attr.automatic)
15691 || sym->ns->proc_name->attr.flavor == FL_MODULE
15692 || sym->ns->proc_name->attr.is_main_program
15693 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15694 {
15695 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15696 "nor a dummy argument", sym->name, &sym->declared_at);
15697 return;
15698 }
15699 /* F2008, C528. */
15700 else if (class_attr.codimension && !sym->attr.select_type_temporary
15701 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15702 {
15703 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15704 "deferred shape", sym->name, &sym->declared_at);
15705 return;
15706 }
15707 else if (class_attr.codimension && class_attr.allocatable && as
15708 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15709 {
15710 gfc_error ("Allocatable coarray variable %qs at %L must have "
15711 "deferred shape", sym->name, &sym->declared_at);
15712 return;
15713 }
15714
15715 /* F2008, C541. */
15716 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15717 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15718 && CLASS_DATA (sym)->attr.coarray_comp))
15719 || (class_attr.codimension && class_attr.allocatable))
15720 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15721 {
15722 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15723 "allocatable coarray or have coarray components",
15724 sym->name, &sym->declared_at);
15725 return;
15726 }
15727
15728 if (class_attr.codimension && sym->attr.dummy
15729 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15730 {
15731 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15732 "procedure %qs", sym->name, &sym->declared_at,
15733 sym->ns->proc_name->name);
15734 return;
15735 }
15736
15737 if (sym->ts.type == BT_LOGICAL
15738 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15739 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15740 && sym->ns->proc_name->attr.is_bind_c)))
15741 {
15742 int i;
15743 for (i = 0; gfc_logical_kinds[i].kind; i++)
15744 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15745 break;
15746 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15747 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15748 "%L with non-C_Bool kind in BIND(C) procedure "
15749 "%qs", sym->name, &sym->declared_at,
15750 sym->ns->proc_name->name))
15751 return;
15752 else if (!gfc_logical_kinds[i].c_bool
15753 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15754 "%qs at %L with non-C_Bool kind in "
15755 "BIND(C) procedure %qs", sym->name,
15756 &sym->declared_at,
15757 sym->attr.function ? sym->name
15758 : sym->ns->proc_name->name))
15759 return;
15760 }
15761
15762 switch (sym->attr.flavor)
15763 {
15764 case FL_VARIABLE:
15765 if (!resolve_fl_variable (sym, mp_flag))
15766 return;
15767 break;
15768
15769 case FL_PROCEDURE:
15770 if (sym->formal && !sym->formal_ns)
15771 {
15772 /* Check that none of the arguments are a namelist. */
15773 gfc_formal_arglist *formal = sym->formal;
15774
15775 for (; formal; formal = formal->next)
15776 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15777 {
15778 gfc_error ("Namelist %qs cannot be an argument to "
15779 "subroutine or function at %L",
15780 formal->sym->name, &sym->declared_at);
15781 return;
15782 }
15783 }
15784
15785 if (!resolve_fl_procedure (sym, mp_flag))
15786 return;
15787 break;
15788
15789 case FL_NAMELIST:
15790 if (!resolve_fl_namelist (sym))
15791 return;
15792 break;
15793
15794 case FL_PARAMETER:
15795 if (!resolve_fl_parameter (sym))
15796 return;
15797 break;
15798
15799 default:
15800 break;
15801 }
15802
15803 /* Resolve array specifier. Check as well some constraints
15804 on COMMON blocks. */
15805
15806 check_constant = sym->attr.in_common && !sym->attr.pointer;
15807
15808 /* Set the formal_arg_flag so that check_conflict will not throw
15809 an error for host associated variables in the specification
15810 expression for an array_valued function. */
15811 if ((sym->attr.function || sym->attr.result) && sym->as)
15812 formal_arg_flag = true;
15813
15814 saved_specification_expr = specification_expr;
15815 specification_expr = true;
15816 gfc_resolve_array_spec (sym->as, check_constant);
15817 specification_expr = saved_specification_expr;
15818
15819 formal_arg_flag = false;
15820
15821 /* Resolve formal namespaces. */
15822 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15823 && !sym->attr.contained && !sym->attr.intrinsic)
15824 gfc_resolve (sym->formal_ns);
15825
15826 /* Make sure the formal namespace is present. */
15827 if (sym->formal && !sym->formal_ns)
15828 {
15829 gfc_formal_arglist *formal = sym->formal;
15830 while (formal && !formal->sym)
15831 formal = formal->next;
15832
15833 if (formal)
15834 {
15835 sym->formal_ns = formal->sym->ns;
15836 if (sym->ns != formal->sym->ns)
15837 sym->formal_ns->refs++;
15838 }
15839 }
15840
15841 /* Check threadprivate restrictions. */
15842 if (sym->attr.threadprivate && !sym->attr.save
15843 && !(sym->ns->save_all && !sym->attr.automatic)
15844 && (!sym->attr.in_common
15845 && sym->module == NULL
15846 && (sym->ns->proc_name == NULL
15847 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15848 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15849
15850 /* Check omp declare target restrictions. */
15851 if (sym->attr.omp_declare_target
15852 && sym->attr.flavor == FL_VARIABLE
15853 && !sym->attr.save
15854 && !(sym->ns->save_all && !sym->attr.automatic)
15855 && (!sym->attr.in_common
15856 && sym->module == NULL
15857 && (sym->ns->proc_name == NULL
15858 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15859 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15860 sym->name, &sym->declared_at);
15861
15862 /* If we have come this far we can apply default-initializers, as
15863 described in 14.7.5, to those variables that have not already
15864 been assigned one. */
15865 if (sym->ts.type == BT_DERIVED
15866 && !sym->value
15867 && !sym->attr.allocatable
15868 && !sym->attr.alloc_comp)
15869 {
15870 symbol_attribute *a = &sym->attr;
15871
15872 if ((!a->save && !a->dummy && !a->pointer
15873 && !a->in_common && !a->use_assoc
15874 && a->referenced
15875 && !((a->function || a->result)
15876 && (!a->dimension
15877 || sym->ts.u.derived->attr.alloc_comp
15878 || sym->ts.u.derived->attr.pointer_comp))
15879 && !(a->function && sym != sym->result))
15880 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15881 apply_default_init (sym);
15882 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15883 && (sym->ts.u.derived->attr.alloc_comp
15884 || sym->ts.u.derived->attr.pointer_comp))
15885 /* Mark the result symbol to be referenced, when it has allocatable
15886 components. */
15887 sym->result->attr.referenced = 1;
15888 }
15889
15890 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15891 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15892 && !CLASS_DATA (sym)->attr.class_pointer
15893 && !CLASS_DATA (sym)->attr.allocatable)
15894 apply_default_init (sym);
15895
15896 /* If this symbol has a type-spec, check it. */
15897 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15898 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15899 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15900 return;
15901
15902 if (sym->param_list)
15903 resolve_pdt (sym);
15904 }
15905
15906
15907 /************* Resolve DATA statements *************/
15908
15909 static struct
15910 {
15911 gfc_data_value *vnode;
15912 mpz_t left;
15913 }
15914 values;
15915
15916
15917 /* Advance the values structure to point to the next value in the data list. */
15918
15919 static bool
15920 next_data_value (void)
15921 {
15922 while (mpz_cmp_ui (values.left, 0) == 0)
15923 {
15924
15925 if (values.vnode->next == NULL)
15926 return false;
15927
15928 values.vnode = values.vnode->next;
15929 mpz_set (values.left, values.vnode->repeat);
15930 }
15931
15932 return true;
15933 }
15934
15935
15936 static bool
15937 check_data_variable (gfc_data_variable *var, locus *where)
15938 {
15939 gfc_expr *e;
15940 mpz_t size;
15941 mpz_t offset;
15942 bool t;
15943 ar_type mark = AR_UNKNOWN;
15944 int i;
15945 mpz_t section_index[GFC_MAX_DIMENSIONS];
15946 gfc_ref *ref;
15947 gfc_array_ref *ar;
15948 gfc_symbol *sym;
15949 int has_pointer;
15950
15951 if (!gfc_resolve_expr (var->expr))
15952 return false;
15953
15954 ar = NULL;
15955 mpz_init_set_si (offset, 0);
15956 e = var->expr;
15957
15958 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
15959 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
15960 e = e->value.function.actual->expr;
15961
15962 if (e->expr_type != EXPR_VARIABLE)
15963 {
15964 gfc_error ("Expecting definable entity near %L", where);
15965 return false;
15966 }
15967
15968 sym = e->symtree->n.sym;
15969
15970 if (sym->ns->is_block_data && !sym->attr.in_common)
15971 {
15972 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15973 sym->name, &sym->declared_at);
15974 return false;
15975 }
15976
15977 if (e->ref == NULL && sym->as)
15978 {
15979 gfc_error ("DATA array %qs at %L must be specified in a previous"
15980 " declaration", sym->name, where);
15981 return false;
15982 }
15983
15984 if (gfc_is_coindexed (e))
15985 {
15986 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
15987 where);
15988 return false;
15989 }
15990
15991 has_pointer = sym->attr.pointer;
15992
15993 for (ref = e->ref; ref; ref = ref->next)
15994 {
15995 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
15996 has_pointer = 1;
15997
15998 if (has_pointer)
15999 {
16000 if (ref->type == REF_ARRAY && ref->u.ar.type != AR_FULL)
16001 {
16002 gfc_error ("DATA element %qs at %L is a pointer and so must "
16003 "be a full array", sym->name, where);
16004 return false;
16005 }
16006
16007 if (values.vnode->expr->expr_type == EXPR_CONSTANT)
16008 {
16009 gfc_error ("DATA object near %L has the pointer attribute "
16010 "and the corresponding DATA value is not a valid "
16011 "initial-data-target", where);
16012 return false;
16013 }
16014 }
16015 }
16016
16017 if (e->rank == 0 || has_pointer)
16018 {
16019 mpz_init_set_ui (size, 1);
16020 ref = NULL;
16021 }
16022 else
16023 {
16024 ref = e->ref;
16025
16026 /* Find the array section reference. */
16027 for (ref = e->ref; ref; ref = ref->next)
16028 {
16029 if (ref->type != REF_ARRAY)
16030 continue;
16031 if (ref->u.ar.type == AR_ELEMENT)
16032 continue;
16033 break;
16034 }
16035 gcc_assert (ref);
16036
16037 /* Set marks according to the reference pattern. */
16038 switch (ref->u.ar.type)
16039 {
16040 case AR_FULL:
16041 mark = AR_FULL;
16042 break;
16043
16044 case AR_SECTION:
16045 ar = &ref->u.ar;
16046 /* Get the start position of array section. */
16047 gfc_get_section_index (ar, section_index, &offset);
16048 mark = AR_SECTION;
16049 break;
16050
16051 default:
16052 gcc_unreachable ();
16053 }
16054
16055 if (!gfc_array_size (e, &size))
16056 {
16057 gfc_error ("Nonconstant array section at %L in DATA statement",
16058 where);
16059 mpz_clear (offset);
16060 return false;
16061 }
16062 }
16063
16064 t = true;
16065
16066 while (mpz_cmp_ui (size, 0) > 0)
16067 {
16068 if (!next_data_value ())
16069 {
16070 gfc_error ("DATA statement at %L has more variables than values",
16071 where);
16072 t = false;
16073 break;
16074 }
16075
16076 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
16077 if (!t)
16078 break;
16079
16080 /* If we have more than one element left in the repeat count,
16081 and we have more than one element left in the target variable,
16082 then create a range assignment. */
16083 /* FIXME: Only done for full arrays for now, since array sections
16084 seem tricky. */
16085 if (mark == AR_FULL && ref && ref->next == NULL
16086 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
16087 {
16088 mpz_t range;
16089
16090 if (mpz_cmp (size, values.left) >= 0)
16091 {
16092 mpz_init_set (range, values.left);
16093 mpz_sub (size, size, values.left);
16094 mpz_set_ui (values.left, 0);
16095 }
16096 else
16097 {
16098 mpz_init_set (range, size);
16099 mpz_sub (values.left, values.left, size);
16100 mpz_set_ui (size, 0);
16101 }
16102
16103 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16104 offset, &range);
16105
16106 mpz_add (offset, offset, range);
16107 mpz_clear (range);
16108
16109 if (!t)
16110 break;
16111 }
16112
16113 /* Assign initial value to symbol. */
16114 else
16115 {
16116 mpz_sub_ui (values.left, values.left, 1);
16117 mpz_sub_ui (size, size, 1);
16118
16119 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16120 offset, NULL);
16121 if (!t)
16122 break;
16123
16124 if (mark == AR_FULL)
16125 mpz_add_ui (offset, offset, 1);
16126
16127 /* Modify the array section indexes and recalculate the offset
16128 for next element. */
16129 else if (mark == AR_SECTION)
16130 gfc_advance_section (section_index, ar, &offset);
16131 }
16132 }
16133
16134 if (mark == AR_SECTION)
16135 {
16136 for (i = 0; i < ar->dimen; i++)
16137 mpz_clear (section_index[i]);
16138 }
16139
16140 mpz_clear (size);
16141 mpz_clear (offset);
16142
16143 return t;
16144 }
16145
16146
16147 static bool traverse_data_var (gfc_data_variable *, locus *);
16148
16149 /* Iterate over a list of elements in a DATA statement. */
16150
16151 static bool
16152 traverse_data_list (gfc_data_variable *var, locus *where)
16153 {
16154 mpz_t trip;
16155 iterator_stack frame;
16156 gfc_expr *e, *start, *end, *step;
16157 bool retval = true;
16158
16159 mpz_init (frame.value);
16160 mpz_init (trip);
16161
16162 start = gfc_copy_expr (var->iter.start);
16163 end = gfc_copy_expr (var->iter.end);
16164 step = gfc_copy_expr (var->iter.step);
16165
16166 if (!gfc_simplify_expr (start, 1)
16167 || start->expr_type != EXPR_CONSTANT)
16168 {
16169 gfc_error ("start of implied-do loop at %L could not be "
16170 "simplified to a constant value", &start->where);
16171 retval = false;
16172 goto cleanup;
16173 }
16174 if (!gfc_simplify_expr (end, 1)
16175 || end->expr_type != EXPR_CONSTANT)
16176 {
16177 gfc_error ("end of implied-do loop at %L could not be "
16178 "simplified to a constant value", &start->where);
16179 retval = false;
16180 goto cleanup;
16181 }
16182 if (!gfc_simplify_expr (step, 1)
16183 || step->expr_type != EXPR_CONSTANT)
16184 {
16185 gfc_error ("step of implied-do loop at %L could not be "
16186 "simplified to a constant value", &start->where);
16187 retval = false;
16188 goto cleanup;
16189 }
16190
16191 mpz_set (trip, end->value.integer);
16192 mpz_sub (trip, trip, start->value.integer);
16193 mpz_add (trip, trip, step->value.integer);
16194
16195 mpz_div (trip, trip, step->value.integer);
16196
16197 mpz_set (frame.value, start->value.integer);
16198
16199 frame.prev = iter_stack;
16200 frame.variable = var->iter.var->symtree;
16201 iter_stack = &frame;
16202
16203 while (mpz_cmp_ui (trip, 0) > 0)
16204 {
16205 if (!traverse_data_var (var->list, where))
16206 {
16207 retval = false;
16208 goto cleanup;
16209 }
16210
16211 e = gfc_copy_expr (var->expr);
16212 if (!gfc_simplify_expr (e, 1))
16213 {
16214 gfc_free_expr (e);
16215 retval = false;
16216 goto cleanup;
16217 }
16218
16219 mpz_add (frame.value, frame.value, step->value.integer);
16220
16221 mpz_sub_ui (trip, trip, 1);
16222 }
16223
16224 cleanup:
16225 mpz_clear (frame.value);
16226 mpz_clear (trip);
16227
16228 gfc_free_expr (start);
16229 gfc_free_expr (end);
16230 gfc_free_expr (step);
16231
16232 iter_stack = frame.prev;
16233 return retval;
16234 }
16235
16236
16237 /* Type resolve variables in the variable list of a DATA statement. */
16238
16239 static bool
16240 traverse_data_var (gfc_data_variable *var, locus *where)
16241 {
16242 bool t;
16243
16244 for (; var; var = var->next)
16245 {
16246 if (var->expr == NULL)
16247 t = traverse_data_list (var, where);
16248 else
16249 t = check_data_variable (var, where);
16250
16251 if (!t)
16252 return false;
16253 }
16254
16255 return true;
16256 }
16257
16258
16259 /* Resolve the expressions and iterators associated with a data statement.
16260 This is separate from the assignment checking because data lists should
16261 only be resolved once. */
16262
16263 static bool
16264 resolve_data_variables (gfc_data_variable *d)
16265 {
16266 for (; d; d = d->next)
16267 {
16268 if (d->list == NULL)
16269 {
16270 if (!gfc_resolve_expr (d->expr))
16271 return false;
16272 }
16273 else
16274 {
16275 if (!gfc_resolve_iterator (&d->iter, false, true))
16276 return false;
16277
16278 if (!resolve_data_variables (d->list))
16279 return false;
16280 }
16281 }
16282
16283 return true;
16284 }
16285
16286
16287 /* Resolve a single DATA statement. We implement this by storing a pointer to
16288 the value list into static variables, and then recursively traversing the
16289 variables list, expanding iterators and such. */
16290
16291 static void
16292 resolve_data (gfc_data *d)
16293 {
16294
16295 if (!resolve_data_variables (d->var))
16296 return;
16297
16298 values.vnode = d->value;
16299 if (d->value == NULL)
16300 mpz_set_ui (values.left, 0);
16301 else
16302 mpz_set (values.left, d->value->repeat);
16303
16304 if (!traverse_data_var (d->var, &d->where))
16305 return;
16306
16307 /* At this point, we better not have any values left. */
16308
16309 if (next_data_value ())
16310 gfc_error ("DATA statement at %L has more values than variables",
16311 &d->where);
16312 }
16313
16314
16315 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
16316 accessed by host or use association, is a dummy argument to a pure function,
16317 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
16318 is storage associated with any such variable, shall not be used in the
16319 following contexts: (clients of this function). */
16320
16321 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
16322 procedure. Returns zero if assignment is OK, nonzero if there is a
16323 problem. */
16324 int
16325 gfc_impure_variable (gfc_symbol *sym)
16326 {
16327 gfc_symbol *proc;
16328 gfc_namespace *ns;
16329
16330 if (sym->attr.use_assoc || sym->attr.in_common)
16331 return 1;
16332
16333 /* Check if the symbol's ns is inside the pure procedure. */
16334 for (ns = gfc_current_ns; ns; ns = ns->parent)
16335 {
16336 if (ns == sym->ns)
16337 break;
16338 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
16339 return 1;
16340 }
16341
16342 proc = sym->ns->proc_name;
16343 if (sym->attr.dummy
16344 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
16345 || proc->attr.function))
16346 return 1;
16347
16348 /* TODO: Sort out what can be storage associated, if anything, and include
16349 it here. In principle equivalences should be scanned but it does not
16350 seem to be possible to storage associate an impure variable this way. */
16351 return 0;
16352 }
16353
16354
16355 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
16356 current namespace is inside a pure procedure. */
16357
16358 int
16359 gfc_pure (gfc_symbol *sym)
16360 {
16361 symbol_attribute attr;
16362 gfc_namespace *ns;
16363
16364 if (sym == NULL)
16365 {
16366 /* Check if the current namespace or one of its parents
16367 belongs to a pure procedure. */
16368 for (ns = gfc_current_ns; ns; ns = ns->parent)
16369 {
16370 sym = ns->proc_name;
16371 if (sym == NULL)
16372 return 0;
16373 attr = sym->attr;
16374 if (attr.flavor == FL_PROCEDURE && attr.pure)
16375 return 1;
16376 }
16377 return 0;
16378 }
16379
16380 attr = sym->attr;
16381
16382 return attr.flavor == FL_PROCEDURE && attr.pure;
16383 }
16384
16385
16386 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
16387 checks if the current namespace is implicitly pure. Note that this
16388 function returns false for a PURE procedure. */
16389
16390 int
16391 gfc_implicit_pure (gfc_symbol *sym)
16392 {
16393 gfc_namespace *ns;
16394
16395 if (sym == NULL)
16396 {
16397 /* Check if the current procedure is implicit_pure. Walk up
16398 the procedure list until we find a procedure. */
16399 for (ns = gfc_current_ns; ns; ns = ns->parent)
16400 {
16401 sym = ns->proc_name;
16402 if (sym == NULL)
16403 return 0;
16404
16405 if (sym->attr.flavor == FL_PROCEDURE)
16406 break;
16407 }
16408 }
16409
16410 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
16411 && !sym->attr.pure;
16412 }
16413
16414
16415 void
16416 gfc_unset_implicit_pure (gfc_symbol *sym)
16417 {
16418 gfc_namespace *ns;
16419
16420 if (sym == NULL)
16421 {
16422 /* Check if the current procedure is implicit_pure. Walk up
16423 the procedure list until we find a procedure. */
16424 for (ns = gfc_current_ns; ns; ns = ns->parent)
16425 {
16426 sym = ns->proc_name;
16427 if (sym == NULL)
16428 return;
16429
16430 if (sym->attr.flavor == FL_PROCEDURE)
16431 break;
16432 }
16433 }
16434
16435 if (sym->attr.flavor == FL_PROCEDURE)
16436 sym->attr.implicit_pure = 0;
16437 else
16438 sym->attr.pure = 0;
16439 }
16440
16441
16442 /* Test whether the current procedure is elemental or not. */
16443
16444 int
16445 gfc_elemental (gfc_symbol *sym)
16446 {
16447 symbol_attribute attr;
16448
16449 if (sym == NULL)
16450 sym = gfc_current_ns->proc_name;
16451 if (sym == NULL)
16452 return 0;
16453 attr = sym->attr;
16454
16455 return attr.flavor == FL_PROCEDURE && attr.elemental;
16456 }
16457
16458
16459 /* Warn about unused labels. */
16460
16461 static void
16462 warn_unused_fortran_label (gfc_st_label *label)
16463 {
16464 if (label == NULL)
16465 return;
16466
16467 warn_unused_fortran_label (label->left);
16468
16469 if (label->defined == ST_LABEL_UNKNOWN)
16470 return;
16471
16472 switch (label->referenced)
16473 {
16474 case ST_LABEL_UNKNOWN:
16475 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
16476 label->value, &label->where);
16477 break;
16478
16479 case ST_LABEL_BAD_TARGET:
16480 gfc_warning (OPT_Wunused_label,
16481 "Label %d at %L defined but cannot be used",
16482 label->value, &label->where);
16483 break;
16484
16485 default:
16486 break;
16487 }
16488
16489 warn_unused_fortran_label (label->right);
16490 }
16491
16492
16493 /* Returns the sequence type of a symbol or sequence. */
16494
16495 static seq_type
16496 sequence_type (gfc_typespec ts)
16497 {
16498 seq_type result;
16499 gfc_component *c;
16500
16501 switch (ts.type)
16502 {
16503 case BT_DERIVED:
16504
16505 if (ts.u.derived->components == NULL)
16506 return SEQ_NONDEFAULT;
16507
16508 result = sequence_type (ts.u.derived->components->ts);
16509 for (c = ts.u.derived->components->next; c; c = c->next)
16510 if (sequence_type (c->ts) != result)
16511 return SEQ_MIXED;
16512
16513 return result;
16514
16515 case BT_CHARACTER:
16516 if (ts.kind != gfc_default_character_kind)
16517 return SEQ_NONDEFAULT;
16518
16519 return SEQ_CHARACTER;
16520
16521 case BT_INTEGER:
16522 if (ts.kind != gfc_default_integer_kind)
16523 return SEQ_NONDEFAULT;
16524
16525 return SEQ_NUMERIC;
16526
16527 case BT_REAL:
16528 if (!(ts.kind == gfc_default_real_kind
16529 || ts.kind == gfc_default_double_kind))
16530 return SEQ_NONDEFAULT;
16531
16532 return SEQ_NUMERIC;
16533
16534 case BT_COMPLEX:
16535 if (ts.kind != gfc_default_complex_kind)
16536 return SEQ_NONDEFAULT;
16537
16538 return SEQ_NUMERIC;
16539
16540 case BT_LOGICAL:
16541 if (ts.kind != gfc_default_logical_kind)
16542 return SEQ_NONDEFAULT;
16543
16544 return SEQ_NUMERIC;
16545
16546 default:
16547 return SEQ_NONDEFAULT;
16548 }
16549 }
16550
16551
16552 /* Resolve derived type EQUIVALENCE object. */
16553
16554 static bool
16555 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
16556 {
16557 gfc_component *c = derived->components;
16558
16559 if (!derived)
16560 return true;
16561
16562 /* Shall not be an object of nonsequence derived type. */
16563 if (!derived->attr.sequence)
16564 {
16565 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
16566 "attribute to be an EQUIVALENCE object", sym->name,
16567 &e->where);
16568 return false;
16569 }
16570
16571 /* Shall not have allocatable components. */
16572 if (derived->attr.alloc_comp)
16573 {
16574 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
16575 "components to be an EQUIVALENCE object",sym->name,
16576 &e->where);
16577 return false;
16578 }
16579
16580 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
16581 {
16582 gfc_error ("Derived type variable %qs at %L with default "
16583 "initialization cannot be in EQUIVALENCE with a variable "
16584 "in COMMON", sym->name, &e->where);
16585 return false;
16586 }
16587
16588 for (; c ; c = c->next)
16589 {
16590 if (gfc_bt_struct (c->ts.type)
16591 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
16592 return false;
16593
16594 /* Shall not be an object of sequence derived type containing a pointer
16595 in the structure. */
16596 if (c->attr.pointer)
16597 {
16598 gfc_error ("Derived type variable %qs at %L with pointer "
16599 "component(s) cannot be an EQUIVALENCE object",
16600 sym->name, &e->where);
16601 return false;
16602 }
16603 }
16604 return true;
16605 }
16606
16607
16608 /* Resolve equivalence object.
16609 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
16610 an allocatable array, an object of nonsequence derived type, an object of
16611 sequence derived type containing a pointer at any level of component
16612 selection, an automatic object, a function name, an entry name, a result
16613 name, a named constant, a structure component, or a subobject of any of
16614 the preceding objects. A substring shall not have length zero. A
16615 derived type shall not have components with default initialization nor
16616 shall two objects of an equivalence group be initialized.
16617 Either all or none of the objects shall have an protected attribute.
16618 The simple constraints are done in symbol.c(check_conflict) and the rest
16619 are implemented here. */
16620
16621 static void
16622 resolve_equivalence (gfc_equiv *eq)
16623 {
16624 gfc_symbol *sym;
16625 gfc_symbol *first_sym;
16626 gfc_expr *e;
16627 gfc_ref *r;
16628 locus *last_where = NULL;
16629 seq_type eq_type, last_eq_type;
16630 gfc_typespec *last_ts;
16631 int object, cnt_protected;
16632 const char *msg;
16633
16634 last_ts = &eq->expr->symtree->n.sym->ts;
16635
16636 first_sym = eq->expr->symtree->n.sym;
16637
16638 cnt_protected = 0;
16639
16640 for (object = 1; eq; eq = eq->eq, object++)
16641 {
16642 e = eq->expr;
16643
16644 e->ts = e->symtree->n.sym->ts;
16645 /* match_varspec might not know yet if it is seeing
16646 array reference or substring reference, as it doesn't
16647 know the types. */
16648 if (e->ref && e->ref->type == REF_ARRAY)
16649 {
16650 gfc_ref *ref = e->ref;
16651 sym = e->symtree->n.sym;
16652
16653 if (sym->attr.dimension)
16654 {
16655 ref->u.ar.as = sym->as;
16656 ref = ref->next;
16657 }
16658
16659 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
16660 if (e->ts.type == BT_CHARACTER
16661 && ref
16662 && ref->type == REF_ARRAY
16663 && ref->u.ar.dimen == 1
16664 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
16665 && ref->u.ar.stride[0] == NULL)
16666 {
16667 gfc_expr *start = ref->u.ar.start[0];
16668 gfc_expr *end = ref->u.ar.end[0];
16669 void *mem = NULL;
16670
16671 /* Optimize away the (:) reference. */
16672 if (start == NULL && end == NULL)
16673 {
16674 if (e->ref == ref)
16675 e->ref = ref->next;
16676 else
16677 e->ref->next = ref->next;
16678 mem = ref;
16679 }
16680 else
16681 {
16682 ref->type = REF_SUBSTRING;
16683 if (start == NULL)
16684 start = gfc_get_int_expr (gfc_charlen_int_kind,
16685 NULL, 1);
16686 ref->u.ss.start = start;
16687 if (end == NULL && e->ts.u.cl)
16688 end = gfc_copy_expr (e->ts.u.cl->length);
16689 ref->u.ss.end = end;
16690 ref->u.ss.length = e->ts.u.cl;
16691 e->ts.u.cl = NULL;
16692 }
16693 ref = ref->next;
16694 free (mem);
16695 }
16696
16697 /* Any further ref is an error. */
16698 if (ref)
16699 {
16700 gcc_assert (ref->type == REF_ARRAY);
16701 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16702 &ref->u.ar.where);
16703 continue;
16704 }
16705 }
16706
16707 if (!gfc_resolve_expr (e))
16708 continue;
16709
16710 sym = e->symtree->n.sym;
16711
16712 if (sym->attr.is_protected)
16713 cnt_protected++;
16714 if (cnt_protected > 0 && cnt_protected != object)
16715 {
16716 gfc_error ("Either all or none of the objects in the "
16717 "EQUIVALENCE set at %L shall have the "
16718 "PROTECTED attribute",
16719 &e->where);
16720 break;
16721 }
16722
16723 /* Shall not equivalence common block variables in a PURE procedure. */
16724 if (sym->ns->proc_name
16725 && sym->ns->proc_name->attr.pure
16726 && sym->attr.in_common)
16727 {
16728 /* Need to check for symbols that may have entered the pure
16729 procedure via a USE statement. */
16730 bool saw_sym = false;
16731 if (sym->ns->use_stmts)
16732 {
16733 gfc_use_rename *r;
16734 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16735 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16736 }
16737 else
16738 saw_sym = true;
16739
16740 if (saw_sym)
16741 gfc_error ("COMMON block member %qs at %L cannot be an "
16742 "EQUIVALENCE object in the pure procedure %qs",
16743 sym->name, &e->where, sym->ns->proc_name->name);
16744 break;
16745 }
16746
16747 /* Shall not be a named constant. */
16748 if (e->expr_type == EXPR_CONSTANT)
16749 {
16750 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16751 "object", sym->name, &e->where);
16752 continue;
16753 }
16754
16755 if (e->ts.type == BT_DERIVED
16756 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16757 continue;
16758
16759 /* Check that the types correspond correctly:
16760 Note 5.28:
16761 A numeric sequence structure may be equivalenced to another sequence
16762 structure, an object of default integer type, default real type, double
16763 precision real type, default logical type such that components of the
16764 structure ultimately only become associated to objects of the same
16765 kind. A character sequence structure may be equivalenced to an object
16766 of default character kind or another character sequence structure.
16767 Other objects may be equivalenced only to objects of the same type and
16768 kind parameters. */
16769
16770 /* Identical types are unconditionally OK. */
16771 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16772 goto identical_types;
16773
16774 last_eq_type = sequence_type (*last_ts);
16775 eq_type = sequence_type (sym->ts);
16776
16777 /* Since the pair of objects is not of the same type, mixed or
16778 non-default sequences can be rejected. */
16779
16780 msg = "Sequence %s with mixed components in EQUIVALENCE "
16781 "statement at %L with different type objects";
16782 if ((object ==2
16783 && last_eq_type == SEQ_MIXED
16784 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16785 || (eq_type == SEQ_MIXED
16786 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16787 continue;
16788
16789 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16790 "statement at %L with objects of different type";
16791 if ((object ==2
16792 && last_eq_type == SEQ_NONDEFAULT
16793 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16794 || (eq_type == SEQ_NONDEFAULT
16795 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16796 continue;
16797
16798 msg ="Non-CHARACTER object %qs in default CHARACTER "
16799 "EQUIVALENCE statement at %L";
16800 if (last_eq_type == SEQ_CHARACTER
16801 && eq_type != SEQ_CHARACTER
16802 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16803 continue;
16804
16805 msg ="Non-NUMERIC object %qs in default NUMERIC "
16806 "EQUIVALENCE statement at %L";
16807 if (last_eq_type == SEQ_NUMERIC
16808 && eq_type != SEQ_NUMERIC
16809 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16810 continue;
16811
16812 identical_types:
16813 last_ts =&sym->ts;
16814 last_where = &e->where;
16815
16816 if (!e->ref)
16817 continue;
16818
16819 /* Shall not be an automatic array. */
16820 if (e->ref->type == REF_ARRAY
16821 && !gfc_resolve_array_spec (e->ref->u.ar.as, 1))
16822 {
16823 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16824 "an EQUIVALENCE object", sym->name, &e->where);
16825 continue;
16826 }
16827
16828 r = e->ref;
16829 while (r)
16830 {
16831 /* Shall not be a structure component. */
16832 if (r->type == REF_COMPONENT)
16833 {
16834 gfc_error ("Structure component %qs at %L cannot be an "
16835 "EQUIVALENCE object",
16836 r->u.c.component->name, &e->where);
16837 break;
16838 }
16839
16840 /* A substring shall not have length zero. */
16841 if (r->type == REF_SUBSTRING)
16842 {
16843 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16844 {
16845 gfc_error ("Substring at %L has length zero",
16846 &r->u.ss.start->where);
16847 break;
16848 }
16849 }
16850 r = r->next;
16851 }
16852 }
16853 }
16854
16855
16856 /* Function called by resolve_fntype to flag other symbols used in the
16857 length type parameter specification of function results. */
16858
16859 static bool
16860 flag_fn_result_spec (gfc_expr *expr,
16861 gfc_symbol *sym,
16862 int *f ATTRIBUTE_UNUSED)
16863 {
16864 gfc_namespace *ns;
16865 gfc_symbol *s;
16866
16867 if (expr->expr_type == EXPR_VARIABLE)
16868 {
16869 s = expr->symtree->n.sym;
16870 for (ns = s->ns; ns; ns = ns->parent)
16871 if (!ns->parent)
16872 break;
16873
16874 if (sym == s)
16875 {
16876 gfc_error ("Self reference in character length expression "
16877 "for %qs at %L", sym->name, &expr->where);
16878 return true;
16879 }
16880
16881 if (!s->fn_result_spec
16882 && s->attr.flavor == FL_PARAMETER)
16883 {
16884 /* Function contained in a module.... */
16885 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16886 {
16887 gfc_symtree *st;
16888 s->fn_result_spec = 1;
16889 /* Make sure that this symbol is translated as a module
16890 variable. */
16891 st = gfc_get_unique_symtree (ns);
16892 st->n.sym = s;
16893 s->refs++;
16894 }
16895 /* ... which is use associated and called. */
16896 else if (s->attr.use_assoc || s->attr.used_in_submodule
16897 ||
16898 /* External function matched with an interface. */
16899 (s->ns->proc_name
16900 && ((s->ns == ns
16901 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16902 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16903 && s->ns->proc_name->attr.function))
16904 s->fn_result_spec = 1;
16905 }
16906 }
16907 return false;
16908 }
16909
16910
16911 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16912
16913 static void
16914 resolve_fntype (gfc_namespace *ns)
16915 {
16916 gfc_entry_list *el;
16917 gfc_symbol *sym;
16918
16919 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16920 return;
16921
16922 /* If there are any entries, ns->proc_name is the entry master
16923 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16924 if (ns->entries)
16925 sym = ns->entries->sym;
16926 else
16927 sym = ns->proc_name;
16928 if (sym->result == sym
16929 && sym->ts.type == BT_UNKNOWN
16930 && !gfc_set_default_type (sym, 0, NULL)
16931 && !sym->attr.untyped)
16932 {
16933 gfc_error ("Function %qs at %L has no IMPLICIT type",
16934 sym->name, &sym->declared_at);
16935 sym->attr.untyped = 1;
16936 }
16937
16938 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
16939 && !sym->attr.contained
16940 && !gfc_check_symbol_access (sym->ts.u.derived)
16941 && gfc_check_symbol_access (sym))
16942 {
16943 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
16944 "%L of PRIVATE type %qs", sym->name,
16945 &sym->declared_at, sym->ts.u.derived->name);
16946 }
16947
16948 if (ns->entries)
16949 for (el = ns->entries->next; el; el = el->next)
16950 {
16951 if (el->sym->result == el->sym
16952 && el->sym->ts.type == BT_UNKNOWN
16953 && !gfc_set_default_type (el->sym, 0, NULL)
16954 && !el->sym->attr.untyped)
16955 {
16956 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16957 el->sym->name, &el->sym->declared_at);
16958 el->sym->attr.untyped = 1;
16959 }
16960 }
16961
16962 if (sym->ts.type == BT_CHARACTER)
16963 gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
16964 }
16965
16966
16967 /* 12.3.2.1.1 Defined operators. */
16968
16969 static bool
16970 check_uop_procedure (gfc_symbol *sym, locus where)
16971 {
16972 gfc_formal_arglist *formal;
16973
16974 if (!sym->attr.function)
16975 {
16976 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16977 sym->name, &where);
16978 return false;
16979 }
16980
16981 if (sym->ts.type == BT_CHARACTER
16982 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
16983 && !(sym->result && ((sym->result->ts.u.cl
16984 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
16985 {
16986 gfc_error ("User operator procedure %qs at %L cannot be assumed "
16987 "character length", sym->name, &where);
16988 return false;
16989 }
16990
16991 formal = gfc_sym_get_dummy_args (sym);
16992 if (!formal || !formal->sym)
16993 {
16994 gfc_error ("User operator procedure %qs at %L must have at least "
16995 "one argument", sym->name, &where);
16996 return false;
16997 }
16998
16999 if (formal->sym->attr.intent != INTENT_IN)
17000 {
17001 gfc_error ("First argument of operator interface at %L must be "
17002 "INTENT(IN)", &where);
17003 return false;
17004 }
17005
17006 if (formal->sym->attr.optional)
17007 {
17008 gfc_error ("First argument of operator interface at %L cannot be "
17009 "optional", &where);
17010 return false;
17011 }
17012
17013 formal = formal->next;
17014 if (!formal || !formal->sym)
17015 return true;
17016
17017 if (formal->sym->attr.intent != INTENT_IN)
17018 {
17019 gfc_error ("Second argument of operator interface at %L must be "
17020 "INTENT(IN)", &where);
17021 return false;
17022 }
17023
17024 if (formal->sym->attr.optional)
17025 {
17026 gfc_error ("Second argument of operator interface at %L cannot be "
17027 "optional", &where);
17028 return false;
17029 }
17030
17031 if (formal->next)
17032 {
17033 gfc_error ("Operator interface at %L must have, at most, two "
17034 "arguments", &where);
17035 return false;
17036 }
17037
17038 return true;
17039 }
17040
17041 static void
17042 gfc_resolve_uops (gfc_symtree *symtree)
17043 {
17044 gfc_interface *itr;
17045
17046 if (symtree == NULL)
17047 return;
17048
17049 gfc_resolve_uops (symtree->left);
17050 gfc_resolve_uops (symtree->right);
17051
17052 for (itr = symtree->n.uop->op; itr; itr = itr->next)
17053 check_uop_procedure (itr->sym, itr->sym->declared_at);
17054 }
17055
17056
17057 /* Examine all of the expressions associated with a program unit,
17058 assign types to all intermediate expressions, make sure that all
17059 assignments are to compatible types and figure out which names
17060 refer to which functions or subroutines. It doesn't check code
17061 block, which is handled by gfc_resolve_code. */
17062
17063 static void
17064 resolve_types (gfc_namespace *ns)
17065 {
17066 gfc_namespace *n;
17067 gfc_charlen *cl;
17068 gfc_data *d;
17069 gfc_equiv *eq;
17070 gfc_namespace* old_ns = gfc_current_ns;
17071
17072 if (ns->types_resolved)
17073 return;
17074
17075 /* Check that all IMPLICIT types are ok. */
17076 if (!ns->seen_implicit_none)
17077 {
17078 unsigned letter;
17079 for (letter = 0; letter != GFC_LETTERS; ++letter)
17080 if (ns->set_flag[letter]
17081 && !resolve_typespec_used (&ns->default_type[letter],
17082 &ns->implicit_loc[letter], NULL))
17083 return;
17084 }
17085
17086 gfc_current_ns = ns;
17087
17088 resolve_entries (ns);
17089
17090 resolve_common_vars (&ns->blank_common, false);
17091 resolve_common_blocks (ns->common_root);
17092
17093 resolve_contained_functions (ns);
17094
17095 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
17096 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
17097 resolve_formal_arglist (ns->proc_name);
17098
17099 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
17100
17101 for (cl = ns->cl_list; cl; cl = cl->next)
17102 resolve_charlen (cl);
17103
17104 gfc_traverse_ns (ns, resolve_symbol);
17105
17106 resolve_fntype (ns);
17107
17108 for (n = ns->contained; n; n = n->sibling)
17109 {
17110 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
17111 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
17112 "also be PURE", n->proc_name->name,
17113 &n->proc_name->declared_at);
17114
17115 resolve_types (n);
17116 }
17117
17118 forall_flag = 0;
17119 gfc_do_concurrent_flag = 0;
17120 gfc_check_interfaces (ns);
17121
17122 gfc_traverse_ns (ns, resolve_values);
17123
17124 if (ns->save_all || !flag_automatic)
17125 gfc_save_all (ns);
17126
17127 iter_stack = NULL;
17128 for (d = ns->data; d; d = d->next)
17129 resolve_data (d);
17130
17131 iter_stack = NULL;
17132 gfc_traverse_ns (ns, gfc_formalize_init_value);
17133
17134 gfc_traverse_ns (ns, gfc_verify_binding_labels);
17135
17136 for (eq = ns->equiv; eq; eq = eq->next)
17137 resolve_equivalence (eq);
17138
17139 /* Warn about unused labels. */
17140 if (warn_unused_label)
17141 warn_unused_fortran_label (ns->st_labels);
17142
17143 gfc_resolve_uops (ns->uop_root);
17144
17145 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
17146
17147 gfc_resolve_omp_declare_simd (ns);
17148
17149 gfc_resolve_omp_udrs (ns->omp_udr_root);
17150
17151 ns->types_resolved = 1;
17152
17153 gfc_current_ns = old_ns;
17154 }
17155
17156
17157 /* Call gfc_resolve_code recursively. */
17158
17159 static void
17160 resolve_codes (gfc_namespace *ns)
17161 {
17162 gfc_namespace *n;
17163 bitmap_obstack old_obstack;
17164
17165 if (ns->resolved == 1)
17166 return;
17167
17168 for (n = ns->contained; n; n = n->sibling)
17169 resolve_codes (n);
17170
17171 gfc_current_ns = ns;
17172
17173 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
17174 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
17175 cs_base = NULL;
17176
17177 /* Set to an out of range value. */
17178 current_entry_id = -1;
17179
17180 old_obstack = labels_obstack;
17181 bitmap_obstack_initialize (&labels_obstack);
17182
17183 gfc_resolve_oacc_declare (ns);
17184 gfc_resolve_oacc_routines (ns);
17185 gfc_resolve_omp_local_vars (ns);
17186 gfc_resolve_code (ns->code, ns);
17187
17188 bitmap_obstack_release (&labels_obstack);
17189 labels_obstack = old_obstack;
17190 }
17191
17192
17193 /* This function is called after a complete program unit has been compiled.
17194 Its purpose is to examine all of the expressions associated with a program
17195 unit, assign types to all intermediate expressions, make sure that all
17196 assignments are to compatible types and figure out which names refer to
17197 which functions or subroutines. */
17198
17199 void
17200 gfc_resolve (gfc_namespace *ns)
17201 {
17202 gfc_namespace *old_ns;
17203 code_stack *old_cs_base;
17204 struct gfc_omp_saved_state old_omp_state;
17205
17206 if (ns->resolved)
17207 return;
17208
17209 ns->resolved = -1;
17210 old_ns = gfc_current_ns;
17211 old_cs_base = cs_base;
17212
17213 /* As gfc_resolve can be called during resolution of an OpenMP construct
17214 body, we should clear any state associated to it, so that say NS's
17215 DO loops are not interpreted as OpenMP loops. */
17216 if (!ns->construct_entities)
17217 gfc_omp_save_and_clear_state (&old_omp_state);
17218
17219 resolve_types (ns);
17220 component_assignment_level = 0;
17221 resolve_codes (ns);
17222
17223 gfc_current_ns = old_ns;
17224 cs_base = old_cs_base;
17225 ns->resolved = 1;
17226
17227 gfc_run_passes (ns);
17228
17229 if (!ns->construct_entities)
17230 gfc_omp_restore_state (&old_omp_state);
17231 }