re PR fortran/86248 (LEN_TRIM in specification expression causes link failure)
[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
3904 /* Resolve an operator expression node. This can involve replacing the
3905 operation with a user defined function call. */
3906
3907 static bool
3908 resolve_operator (gfc_expr *e)
3909 {
3910 gfc_expr *op1, *op2;
3911 char msg[200];
3912 bool dual_locus_error;
3913 bool t = true;
3914
3915 /* Resolve all subnodes-- give them types. */
3916
3917 switch (e->value.op.op)
3918 {
3919 default:
3920 if (!gfc_resolve_expr (e->value.op.op2))
3921 return false;
3922
3923 /* Fall through. */
3924
3925 case INTRINSIC_NOT:
3926 case INTRINSIC_UPLUS:
3927 case INTRINSIC_UMINUS:
3928 case INTRINSIC_PARENTHESES:
3929 if (!gfc_resolve_expr (e->value.op.op1))
3930 return false;
3931 if (e->value.op.op1
3932 && e->value.op.op1->ts.type == BT_BOZ && !e->value.op.op2)
3933 {
3934 gfc_error ("BOZ literal constant at %L cannot be an operand of "
3935 "unary operator %qs", &e->value.op.op1->where,
3936 gfc_op2string (e->value.op.op));
3937 return false;
3938 }
3939 break;
3940 }
3941
3942 /* Typecheck the new node. */
3943
3944 op1 = e->value.op.op1;
3945 op2 = e->value.op.op2;
3946 dual_locus_error = false;
3947
3948 /* op1 and op2 cannot both be BOZ. */
3949 if (op1 && op1->ts.type == BT_BOZ
3950 && op2 && op2->ts.type == BT_BOZ)
3951 {
3952 gfc_error ("Operands at %L and %L cannot appear as operands of "
3953 "binary operator %qs", &op1->where, &op2->where,
3954 gfc_op2string (e->value.op.op));
3955 return false;
3956 }
3957
3958 if ((op1 && op1->expr_type == EXPR_NULL)
3959 || (op2 && op2->expr_type == EXPR_NULL))
3960 {
3961 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
3962 goto bad_op;
3963 }
3964
3965 switch (e->value.op.op)
3966 {
3967 case INTRINSIC_UPLUS:
3968 case INTRINSIC_UMINUS:
3969 if (op1->ts.type == BT_INTEGER
3970 || op1->ts.type == BT_REAL
3971 || op1->ts.type == BT_COMPLEX)
3972 {
3973 e->ts = op1->ts;
3974 break;
3975 }
3976
3977 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
3978 gfc_op2string (e->value.op.op), gfc_typename (e));
3979 goto bad_op;
3980
3981 case INTRINSIC_PLUS:
3982 case INTRINSIC_MINUS:
3983 case INTRINSIC_TIMES:
3984 case INTRINSIC_DIVIDE:
3985 case INTRINSIC_POWER:
3986 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3987 {
3988 gfc_type_convert_binary (e, 1);
3989 break;
3990 }
3991
3992 if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
3993 sprintf (msg,
3994 _("Unexpected derived-type entities in binary intrinsic "
3995 "numeric operator %%<%s%%> at %%L"),
3996 gfc_op2string (e->value.op.op));
3997 else
3998 sprintf (msg,
3999 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
4000 gfc_op2string (e->value.op.op), gfc_typename (op1),
4001 gfc_typename (op2));
4002 goto bad_op;
4003
4004 case INTRINSIC_CONCAT:
4005 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4006 && op1->ts.kind == op2->ts.kind)
4007 {
4008 e->ts.type = BT_CHARACTER;
4009 e->ts.kind = op1->ts.kind;
4010 break;
4011 }
4012
4013 sprintf (msg,
4014 _("Operands of string concatenation operator at %%L are %s/%s"),
4015 gfc_typename (op1), gfc_typename (op2));
4016 goto bad_op;
4017
4018 case INTRINSIC_AND:
4019 case INTRINSIC_OR:
4020 case INTRINSIC_EQV:
4021 case INTRINSIC_NEQV:
4022 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4023 {
4024 e->ts.type = BT_LOGICAL;
4025 e->ts.kind = gfc_kind_max (op1, op2);
4026 if (op1->ts.kind < e->ts.kind)
4027 gfc_convert_type (op1, &e->ts, 2);
4028 else if (op2->ts.kind < e->ts.kind)
4029 gfc_convert_type (op2, &e->ts, 2);
4030
4031 if (flag_frontend_optimize &&
4032 (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
4033 {
4034 /* Warn about short-circuiting
4035 with impure function as second operand. */
4036 bool op2_f = false;
4037 gfc_expr_walker (&op2, impure_function_callback, &op2_f);
4038 }
4039 break;
4040 }
4041
4042 /* Logical ops on integers become bitwise ops with -fdec. */
4043 else if (flag_dec
4044 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
4045 {
4046 e->ts.type = BT_INTEGER;
4047 e->ts.kind = gfc_kind_max (op1, op2);
4048 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
4049 gfc_convert_type (op1, &e->ts, 1);
4050 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
4051 gfc_convert_type (op2, &e->ts, 1);
4052 e = logical_to_bitwise (e);
4053 goto simplify_op;
4054 }
4055
4056 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
4057 gfc_op2string (e->value.op.op), gfc_typename (op1),
4058 gfc_typename (op2));
4059
4060 goto bad_op;
4061
4062 case INTRINSIC_NOT:
4063 /* Logical ops on integers become bitwise ops with -fdec. */
4064 if (flag_dec && op1->ts.type == BT_INTEGER)
4065 {
4066 e->ts.type = BT_INTEGER;
4067 e->ts.kind = op1->ts.kind;
4068 e = logical_to_bitwise (e);
4069 goto simplify_op;
4070 }
4071
4072 if (op1->ts.type == BT_LOGICAL)
4073 {
4074 e->ts.type = BT_LOGICAL;
4075 e->ts.kind = op1->ts.kind;
4076 break;
4077 }
4078
4079 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
4080 gfc_typename (op1));
4081 goto bad_op;
4082
4083 case INTRINSIC_GT:
4084 case INTRINSIC_GT_OS:
4085 case INTRINSIC_GE:
4086 case INTRINSIC_GE_OS:
4087 case INTRINSIC_LT:
4088 case INTRINSIC_LT_OS:
4089 case INTRINSIC_LE:
4090 case INTRINSIC_LE_OS:
4091 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
4092 {
4093 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
4094 goto bad_op;
4095 }
4096
4097 /* Fall through. */
4098
4099 case INTRINSIC_EQ:
4100 case INTRINSIC_EQ_OS:
4101 case INTRINSIC_NE:
4102 case INTRINSIC_NE_OS:
4103 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4104 && op1->ts.kind == op2->ts.kind)
4105 {
4106 e->ts.type = BT_LOGICAL;
4107 e->ts.kind = gfc_default_logical_kind;
4108 break;
4109 }
4110
4111 /* If op1 is BOZ, then op2 is not!. Try to convert to type of op2. */
4112 if (op1->ts.type == BT_BOZ)
4113 {
4114 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4115 "an operand of a relational operator",
4116 &op1->where))
4117 return false;
4118
4119 if (op2->ts.type == BT_INTEGER && !gfc_boz2int (op1, op2->ts.kind))
4120 return false;
4121
4122 if (op2->ts.type == BT_REAL && !gfc_boz2real (op1, op2->ts.kind))
4123 return false;
4124 }
4125
4126 /* If op2 is BOZ, then op1 is not!. Try to convert to type of op2. */
4127 if (op2->ts.type == BT_BOZ)
4128 {
4129 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4130 "an operand of a relational operator",
4131 &op2->where))
4132 return false;
4133
4134 if (op1->ts.type == BT_INTEGER && !gfc_boz2int (op2, op1->ts.kind))
4135 return false;
4136
4137 if (op1->ts.type == BT_REAL && !gfc_boz2real (op2, op1->ts.kind))
4138 return false;
4139 }
4140
4141 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4142 {
4143 gfc_type_convert_binary (e, 1);
4144
4145 e->ts.type = BT_LOGICAL;
4146 e->ts.kind = gfc_default_logical_kind;
4147
4148 if (warn_compare_reals)
4149 {
4150 gfc_intrinsic_op op = e->value.op.op;
4151
4152 /* Type conversion has made sure that the types of op1 and op2
4153 agree, so it is only necessary to check the first one. */
4154 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
4155 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
4156 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
4157 {
4158 const char *msg;
4159
4160 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4161 msg = "Equality comparison for %s at %L";
4162 else
4163 msg = "Inequality comparison for %s at %L";
4164
4165 gfc_warning (OPT_Wcompare_reals, msg,
4166 gfc_typename (op1), &op1->where);
4167 }
4168 }
4169
4170 break;
4171 }
4172
4173 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4174 sprintf (msg,
4175 _("Logicals at %%L must be compared with %s instead of %s"),
4176 (e->value.op.op == INTRINSIC_EQ
4177 || e->value.op.op == INTRINSIC_EQ_OS)
4178 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4179 else
4180 sprintf (msg,
4181 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4182 gfc_op2string (e->value.op.op), gfc_typename (op1),
4183 gfc_typename (op2));
4184
4185 goto bad_op;
4186
4187 case INTRINSIC_USER:
4188 if (e->value.op.uop->op == NULL)
4189 {
4190 const char *name = e->value.op.uop->name;
4191 const char *guessed;
4192 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4193 if (guessed)
4194 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4195 name, guessed);
4196 else
4197 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4198 }
4199 else if (op2 == NULL)
4200 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4201 e->value.op.uop->name, gfc_typename (op1));
4202 else
4203 {
4204 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4205 e->value.op.uop->name, gfc_typename (op1),
4206 gfc_typename (op2));
4207 e->value.op.uop->op->sym->attr.referenced = 1;
4208 }
4209
4210 goto bad_op;
4211
4212 case INTRINSIC_PARENTHESES:
4213 e->ts = op1->ts;
4214 if (e->ts.type == BT_CHARACTER)
4215 e->ts.u.cl = op1->ts.u.cl;
4216 break;
4217
4218 default:
4219 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4220 }
4221
4222 /* Deal with arrayness of an operand through an operator. */
4223
4224 switch (e->value.op.op)
4225 {
4226 case INTRINSIC_PLUS:
4227 case INTRINSIC_MINUS:
4228 case INTRINSIC_TIMES:
4229 case INTRINSIC_DIVIDE:
4230 case INTRINSIC_POWER:
4231 case INTRINSIC_CONCAT:
4232 case INTRINSIC_AND:
4233 case INTRINSIC_OR:
4234 case INTRINSIC_EQV:
4235 case INTRINSIC_NEQV:
4236 case INTRINSIC_EQ:
4237 case INTRINSIC_EQ_OS:
4238 case INTRINSIC_NE:
4239 case INTRINSIC_NE_OS:
4240 case INTRINSIC_GT:
4241 case INTRINSIC_GT_OS:
4242 case INTRINSIC_GE:
4243 case INTRINSIC_GE_OS:
4244 case INTRINSIC_LT:
4245 case INTRINSIC_LT_OS:
4246 case INTRINSIC_LE:
4247 case INTRINSIC_LE_OS:
4248
4249 if (op1->rank == 0 && op2->rank == 0)
4250 e->rank = 0;
4251
4252 if (op1->rank == 0 && op2->rank != 0)
4253 {
4254 e->rank = op2->rank;
4255
4256 if (e->shape == NULL)
4257 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4258 }
4259
4260 if (op1->rank != 0 && op2->rank == 0)
4261 {
4262 e->rank = op1->rank;
4263
4264 if (e->shape == NULL)
4265 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4266 }
4267
4268 if (op1->rank != 0 && op2->rank != 0)
4269 {
4270 if (op1->rank == op2->rank)
4271 {
4272 e->rank = op1->rank;
4273 if (e->shape == NULL)
4274 {
4275 t = compare_shapes (op1, op2);
4276 if (!t)
4277 e->shape = NULL;
4278 else
4279 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4280 }
4281 }
4282 else
4283 {
4284 /* Allow higher level expressions to work. */
4285 e->rank = 0;
4286
4287 /* Try user-defined operators, and otherwise throw an error. */
4288 dual_locus_error = true;
4289 sprintf (msg,
4290 _("Inconsistent ranks for operator at %%L and %%L"));
4291 goto bad_op;
4292 }
4293 }
4294
4295 break;
4296
4297 case INTRINSIC_PARENTHESES:
4298 case INTRINSIC_NOT:
4299 case INTRINSIC_UPLUS:
4300 case INTRINSIC_UMINUS:
4301 /* Simply copy arrayness attribute */
4302 e->rank = op1->rank;
4303
4304 if (e->shape == NULL)
4305 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4306
4307 break;
4308
4309 default:
4310 break;
4311 }
4312
4313 simplify_op:
4314
4315 /* Attempt to simplify the expression. */
4316 if (t)
4317 {
4318 t = gfc_simplify_expr (e, 0);
4319 /* Some calls do not succeed in simplification and return false
4320 even though there is no error; e.g. variable references to
4321 PARAMETER arrays. */
4322 if (!gfc_is_constant_expr (e))
4323 t = true;
4324 }
4325 return t;
4326
4327 bad_op:
4328
4329 {
4330 match m = gfc_extend_expr (e);
4331 if (m == MATCH_YES)
4332 return true;
4333 if (m == MATCH_ERROR)
4334 return false;
4335 }
4336
4337 if (dual_locus_error)
4338 gfc_error (msg, &op1->where, &op2->where);
4339 else
4340 gfc_error (msg, &e->where);
4341
4342 return false;
4343 }
4344
4345
4346 /************** Array resolution subroutines **************/
4347
4348 enum compare_result
4349 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4350
4351 /* Compare two integer expressions. */
4352
4353 static compare_result
4354 compare_bound (gfc_expr *a, gfc_expr *b)
4355 {
4356 int i;
4357
4358 if (a == NULL || a->expr_type != EXPR_CONSTANT
4359 || b == NULL || b->expr_type != EXPR_CONSTANT)
4360 return CMP_UNKNOWN;
4361
4362 /* If either of the types isn't INTEGER, we must have
4363 raised an error earlier. */
4364
4365 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4366 return CMP_UNKNOWN;
4367
4368 i = mpz_cmp (a->value.integer, b->value.integer);
4369
4370 if (i < 0)
4371 return CMP_LT;
4372 if (i > 0)
4373 return CMP_GT;
4374 return CMP_EQ;
4375 }
4376
4377
4378 /* Compare an integer expression with an integer. */
4379
4380 static compare_result
4381 compare_bound_int (gfc_expr *a, int b)
4382 {
4383 int i;
4384
4385 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4386 return CMP_UNKNOWN;
4387
4388 if (a->ts.type != BT_INTEGER)
4389 gfc_internal_error ("compare_bound_int(): Bad expression");
4390
4391 i = mpz_cmp_si (a->value.integer, b);
4392
4393 if (i < 0)
4394 return CMP_LT;
4395 if (i > 0)
4396 return CMP_GT;
4397 return CMP_EQ;
4398 }
4399
4400
4401 /* Compare an integer expression with a mpz_t. */
4402
4403 static compare_result
4404 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4405 {
4406 int i;
4407
4408 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4409 return CMP_UNKNOWN;
4410
4411 if (a->ts.type != BT_INTEGER)
4412 gfc_internal_error ("compare_bound_int(): Bad expression");
4413
4414 i = mpz_cmp (a->value.integer, b);
4415
4416 if (i < 0)
4417 return CMP_LT;
4418 if (i > 0)
4419 return CMP_GT;
4420 return CMP_EQ;
4421 }
4422
4423
4424 /* Compute the last value of a sequence given by a triplet.
4425 Return 0 if it wasn't able to compute the last value, or if the
4426 sequence if empty, and 1 otherwise. */
4427
4428 static int
4429 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4430 gfc_expr *stride, mpz_t last)
4431 {
4432 mpz_t rem;
4433
4434 if (start == NULL || start->expr_type != EXPR_CONSTANT
4435 || end == NULL || end->expr_type != EXPR_CONSTANT
4436 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4437 return 0;
4438
4439 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4440 || (stride != NULL && stride->ts.type != BT_INTEGER))
4441 return 0;
4442
4443 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4444 {
4445 if (compare_bound (start, end) == CMP_GT)
4446 return 0;
4447 mpz_set (last, end->value.integer);
4448 return 1;
4449 }
4450
4451 if (compare_bound_int (stride, 0) == CMP_GT)
4452 {
4453 /* Stride is positive */
4454 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4455 return 0;
4456 }
4457 else
4458 {
4459 /* Stride is negative */
4460 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4461 return 0;
4462 }
4463
4464 mpz_init (rem);
4465 mpz_sub (rem, end->value.integer, start->value.integer);
4466 mpz_tdiv_r (rem, rem, stride->value.integer);
4467 mpz_sub (last, end->value.integer, rem);
4468 mpz_clear (rem);
4469
4470 return 1;
4471 }
4472
4473
4474 /* Compare a single dimension of an array reference to the array
4475 specification. */
4476
4477 static bool
4478 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4479 {
4480 mpz_t last_value;
4481
4482 if (ar->dimen_type[i] == DIMEN_STAR)
4483 {
4484 gcc_assert (ar->stride[i] == NULL);
4485 /* This implies [*] as [*:] and [*:3] are not possible. */
4486 if (ar->start[i] == NULL)
4487 {
4488 gcc_assert (ar->end[i] == NULL);
4489 return true;
4490 }
4491 }
4492
4493 /* Given start, end and stride values, calculate the minimum and
4494 maximum referenced indexes. */
4495
4496 switch (ar->dimen_type[i])
4497 {
4498 case DIMEN_VECTOR:
4499 case DIMEN_THIS_IMAGE:
4500 break;
4501
4502 case DIMEN_STAR:
4503 case DIMEN_ELEMENT:
4504 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4505 {
4506 if (i < as->rank)
4507 gfc_warning (0, "Array reference at %L is out of bounds "
4508 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4509 mpz_get_si (ar->start[i]->value.integer),
4510 mpz_get_si (as->lower[i]->value.integer), i+1);
4511 else
4512 gfc_warning (0, "Array reference at %L is out of bounds "
4513 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4514 mpz_get_si (ar->start[i]->value.integer),
4515 mpz_get_si (as->lower[i]->value.integer),
4516 i + 1 - as->rank);
4517 return true;
4518 }
4519 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4520 {
4521 if (i < as->rank)
4522 gfc_warning (0, "Array reference at %L is out of bounds "
4523 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4524 mpz_get_si (ar->start[i]->value.integer),
4525 mpz_get_si (as->upper[i]->value.integer), i+1);
4526 else
4527 gfc_warning (0, "Array reference at %L is out of bounds "
4528 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4529 mpz_get_si (ar->start[i]->value.integer),
4530 mpz_get_si (as->upper[i]->value.integer),
4531 i + 1 - as->rank);
4532 return true;
4533 }
4534
4535 break;
4536
4537 case DIMEN_RANGE:
4538 {
4539 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4540 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4541
4542 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4543
4544 /* Check for zero stride, which is not allowed. */
4545 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4546 {
4547 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4548 return false;
4549 }
4550
4551 /* if start == len || (stride > 0 && start < len)
4552 || (stride < 0 && start > len),
4553 then the array section contains at least one element. In this
4554 case, there is an out-of-bounds access if
4555 (start < lower || start > upper). */
4556 if (compare_bound (AR_START, AR_END) == CMP_EQ
4557 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4558 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4559 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4560 && comp_start_end == CMP_GT))
4561 {
4562 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4563 {
4564 gfc_warning (0, "Lower array reference at %L is out of bounds "
4565 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4566 mpz_get_si (AR_START->value.integer),
4567 mpz_get_si (as->lower[i]->value.integer), i+1);
4568 return true;
4569 }
4570 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4571 {
4572 gfc_warning (0, "Lower array reference at %L is out of bounds "
4573 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4574 mpz_get_si (AR_START->value.integer),
4575 mpz_get_si (as->upper[i]->value.integer), i+1);
4576 return true;
4577 }
4578 }
4579
4580 /* If we can compute the highest index of the array section,
4581 then it also has to be between lower and upper. */
4582 mpz_init (last_value);
4583 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4584 last_value))
4585 {
4586 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4587 {
4588 gfc_warning (0, "Upper array reference at %L is out of bounds "
4589 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4590 mpz_get_si (last_value),
4591 mpz_get_si (as->lower[i]->value.integer), i+1);
4592 mpz_clear (last_value);
4593 return true;
4594 }
4595 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4596 {
4597 gfc_warning (0, "Upper array reference at %L is out of bounds "
4598 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4599 mpz_get_si (last_value),
4600 mpz_get_si (as->upper[i]->value.integer), i+1);
4601 mpz_clear (last_value);
4602 return true;
4603 }
4604 }
4605 mpz_clear (last_value);
4606
4607 #undef AR_START
4608 #undef AR_END
4609 }
4610 break;
4611
4612 default:
4613 gfc_internal_error ("check_dimension(): Bad array reference");
4614 }
4615
4616 return true;
4617 }
4618
4619
4620 /* Compare an array reference with an array specification. */
4621
4622 static bool
4623 compare_spec_to_ref (gfc_array_ref *ar)
4624 {
4625 gfc_array_spec *as;
4626 int i;
4627
4628 as = ar->as;
4629 i = as->rank - 1;
4630 /* TODO: Full array sections are only allowed as actual parameters. */
4631 if (as->type == AS_ASSUMED_SIZE
4632 && (/*ar->type == AR_FULL
4633 ||*/ (ar->type == AR_SECTION
4634 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4635 {
4636 gfc_error ("Rightmost upper bound of assumed size array section "
4637 "not specified at %L", &ar->where);
4638 return false;
4639 }
4640
4641 if (ar->type == AR_FULL)
4642 return true;
4643
4644 if (as->rank != ar->dimen)
4645 {
4646 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4647 &ar->where, ar->dimen, as->rank);
4648 return false;
4649 }
4650
4651 /* ar->codimen == 0 is a local array. */
4652 if (as->corank != ar->codimen && ar->codimen != 0)
4653 {
4654 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4655 &ar->where, ar->codimen, as->corank);
4656 return false;
4657 }
4658
4659 for (i = 0; i < as->rank; i++)
4660 if (!check_dimension (i, ar, as))
4661 return false;
4662
4663 /* Local access has no coarray spec. */
4664 if (ar->codimen != 0)
4665 for (i = as->rank; i < as->rank + as->corank; i++)
4666 {
4667 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4668 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4669 {
4670 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4671 i + 1 - as->rank, &ar->where);
4672 return false;
4673 }
4674 if (!check_dimension (i, ar, as))
4675 return false;
4676 }
4677
4678 return true;
4679 }
4680
4681
4682 /* Resolve one part of an array index. */
4683
4684 static bool
4685 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4686 int force_index_integer_kind)
4687 {
4688 gfc_typespec ts;
4689
4690 if (index == NULL)
4691 return true;
4692
4693 if (!gfc_resolve_expr (index))
4694 return false;
4695
4696 if (check_scalar && index->rank != 0)
4697 {
4698 gfc_error ("Array index at %L must be scalar", &index->where);
4699 return false;
4700 }
4701
4702 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4703 {
4704 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4705 &index->where, gfc_basic_typename (index->ts.type));
4706 return false;
4707 }
4708
4709 if (index->ts.type == BT_REAL)
4710 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4711 &index->where))
4712 return false;
4713
4714 if ((index->ts.kind != gfc_index_integer_kind
4715 && force_index_integer_kind)
4716 || index->ts.type != BT_INTEGER)
4717 {
4718 gfc_clear_ts (&ts);
4719 ts.type = BT_INTEGER;
4720 ts.kind = gfc_index_integer_kind;
4721
4722 gfc_convert_type_warn (index, &ts, 2, 0);
4723 }
4724
4725 return true;
4726 }
4727
4728 /* Resolve one part of an array index. */
4729
4730 bool
4731 gfc_resolve_index (gfc_expr *index, int check_scalar)
4732 {
4733 return gfc_resolve_index_1 (index, check_scalar, 1);
4734 }
4735
4736 /* Resolve a dim argument to an intrinsic function. */
4737
4738 bool
4739 gfc_resolve_dim_arg (gfc_expr *dim)
4740 {
4741 if (dim == NULL)
4742 return true;
4743
4744 if (!gfc_resolve_expr (dim))
4745 return false;
4746
4747 if (dim->rank != 0)
4748 {
4749 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4750 return false;
4751
4752 }
4753
4754 if (dim->ts.type != BT_INTEGER)
4755 {
4756 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4757 return false;
4758 }
4759
4760 if (dim->ts.kind != gfc_index_integer_kind)
4761 {
4762 gfc_typespec ts;
4763
4764 gfc_clear_ts (&ts);
4765 ts.type = BT_INTEGER;
4766 ts.kind = gfc_index_integer_kind;
4767
4768 gfc_convert_type_warn (dim, &ts, 2, 0);
4769 }
4770
4771 return true;
4772 }
4773
4774 /* Given an expression that contains array references, update those array
4775 references to point to the right array specifications. While this is
4776 filled in during matching, this information is difficult to save and load
4777 in a module, so we take care of it here.
4778
4779 The idea here is that the original array reference comes from the
4780 base symbol. We traverse the list of reference structures, setting
4781 the stored reference to references. Component references can
4782 provide an additional array specification. */
4783
4784 static void
4785 find_array_spec (gfc_expr *e)
4786 {
4787 gfc_array_spec *as;
4788 gfc_component *c;
4789 gfc_ref *ref;
4790 bool class_as = false;
4791
4792 if (e->symtree->n.sym->ts.type == BT_CLASS)
4793 {
4794 as = CLASS_DATA (e->symtree->n.sym)->as;
4795 class_as = true;
4796 }
4797 else
4798 as = e->symtree->n.sym->as;
4799
4800 for (ref = e->ref; ref; ref = ref->next)
4801 switch (ref->type)
4802 {
4803 case REF_ARRAY:
4804 if (as == NULL)
4805 gfc_internal_error ("find_array_spec(): Missing spec");
4806
4807 ref->u.ar.as = as;
4808 as = NULL;
4809 break;
4810
4811 case REF_COMPONENT:
4812 c = ref->u.c.component;
4813 if (c->attr.dimension)
4814 {
4815 if (as != NULL && !(class_as && as == c->as))
4816 gfc_internal_error ("find_array_spec(): unused as(1)");
4817 as = c->as;
4818 }
4819
4820 break;
4821
4822 case REF_SUBSTRING:
4823 case REF_INQUIRY:
4824 break;
4825 }
4826
4827 if (as != NULL)
4828 gfc_internal_error ("find_array_spec(): unused as(2)");
4829 }
4830
4831
4832 /* Resolve an array reference. */
4833
4834 static bool
4835 resolve_array_ref (gfc_array_ref *ar)
4836 {
4837 int i, check_scalar;
4838 gfc_expr *e;
4839
4840 for (i = 0; i < ar->dimen + ar->codimen; i++)
4841 {
4842 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4843
4844 /* Do not force gfc_index_integer_kind for the start. We can
4845 do fine with any integer kind. This avoids temporary arrays
4846 created for indexing with a vector. */
4847 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4848 return false;
4849 if (!gfc_resolve_index (ar->end[i], check_scalar))
4850 return false;
4851 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4852 return false;
4853
4854 e = ar->start[i];
4855
4856 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4857 switch (e->rank)
4858 {
4859 case 0:
4860 ar->dimen_type[i] = DIMEN_ELEMENT;
4861 break;
4862
4863 case 1:
4864 ar->dimen_type[i] = DIMEN_VECTOR;
4865 if (e->expr_type == EXPR_VARIABLE
4866 && e->symtree->n.sym->ts.type == BT_DERIVED)
4867 ar->start[i] = gfc_get_parentheses (e);
4868 break;
4869
4870 default:
4871 gfc_error ("Array index at %L is an array of rank %d",
4872 &ar->c_where[i], e->rank);
4873 return false;
4874 }
4875
4876 /* Fill in the upper bound, which may be lower than the
4877 specified one for something like a(2:10:5), which is
4878 identical to a(2:7:5). Only relevant for strides not equal
4879 to one. Don't try a division by zero. */
4880 if (ar->dimen_type[i] == DIMEN_RANGE
4881 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4882 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4883 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4884 {
4885 mpz_t size, end;
4886
4887 if (gfc_ref_dimen_size (ar, i, &size, &end))
4888 {
4889 if (ar->end[i] == NULL)
4890 {
4891 ar->end[i] =
4892 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4893 &ar->where);
4894 mpz_set (ar->end[i]->value.integer, end);
4895 }
4896 else if (ar->end[i]->ts.type == BT_INTEGER
4897 && ar->end[i]->expr_type == EXPR_CONSTANT)
4898 {
4899 mpz_set (ar->end[i]->value.integer, end);
4900 }
4901 else
4902 gcc_unreachable ();
4903
4904 mpz_clear (size);
4905 mpz_clear (end);
4906 }
4907 }
4908 }
4909
4910 if (ar->type == AR_FULL)
4911 {
4912 if (ar->as->rank == 0)
4913 ar->type = AR_ELEMENT;
4914
4915 /* Make sure array is the same as array(:,:), this way
4916 we don't need to special case all the time. */
4917 ar->dimen = ar->as->rank;
4918 for (i = 0; i < ar->dimen; i++)
4919 {
4920 ar->dimen_type[i] = DIMEN_RANGE;
4921
4922 gcc_assert (ar->start[i] == NULL);
4923 gcc_assert (ar->end[i] == NULL);
4924 gcc_assert (ar->stride[i] == NULL);
4925 }
4926 }
4927
4928 /* If the reference type is unknown, figure out what kind it is. */
4929
4930 if (ar->type == AR_UNKNOWN)
4931 {
4932 ar->type = AR_ELEMENT;
4933 for (i = 0; i < ar->dimen; i++)
4934 if (ar->dimen_type[i] == DIMEN_RANGE
4935 || ar->dimen_type[i] == DIMEN_VECTOR)
4936 {
4937 ar->type = AR_SECTION;
4938 break;
4939 }
4940 }
4941
4942 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
4943 return false;
4944
4945 if (ar->as->corank && ar->codimen == 0)
4946 {
4947 int n;
4948 ar->codimen = ar->as->corank;
4949 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
4950 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
4951 }
4952
4953 return true;
4954 }
4955
4956
4957 static bool
4958 resolve_substring (gfc_ref *ref, bool *equal_length)
4959 {
4960 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
4961
4962 if (ref->u.ss.start != NULL)
4963 {
4964 if (!gfc_resolve_expr (ref->u.ss.start))
4965 return false;
4966
4967 if (ref->u.ss.start->ts.type != BT_INTEGER)
4968 {
4969 gfc_error ("Substring start index at %L must be of type INTEGER",
4970 &ref->u.ss.start->where);
4971 return false;
4972 }
4973
4974 if (ref->u.ss.start->rank != 0)
4975 {
4976 gfc_error ("Substring start index at %L must be scalar",
4977 &ref->u.ss.start->where);
4978 return false;
4979 }
4980
4981 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
4982 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4983 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4984 {
4985 gfc_error ("Substring start index at %L is less than one",
4986 &ref->u.ss.start->where);
4987 return false;
4988 }
4989 }
4990
4991 if (ref->u.ss.end != NULL)
4992 {
4993 if (!gfc_resolve_expr (ref->u.ss.end))
4994 return false;
4995
4996 if (ref->u.ss.end->ts.type != BT_INTEGER)
4997 {
4998 gfc_error ("Substring end index at %L must be of type INTEGER",
4999 &ref->u.ss.end->where);
5000 return false;
5001 }
5002
5003 if (ref->u.ss.end->rank != 0)
5004 {
5005 gfc_error ("Substring end index at %L must be scalar",
5006 &ref->u.ss.end->where);
5007 return false;
5008 }
5009
5010 if (ref->u.ss.length != NULL
5011 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
5012 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5013 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5014 {
5015 gfc_error ("Substring end index at %L exceeds the string length",
5016 &ref->u.ss.start->where);
5017 return false;
5018 }
5019
5020 if (compare_bound_mpz_t (ref->u.ss.end,
5021 gfc_integer_kinds[k].huge) == CMP_GT
5022 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5023 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5024 {
5025 gfc_error ("Substring end index at %L is too large",
5026 &ref->u.ss.end->where);
5027 return false;
5028 }
5029 /* If the substring has the same length as the original
5030 variable, the reference itself can be deleted. */
5031
5032 if (ref->u.ss.length != NULL
5033 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_EQ
5034 && compare_bound_int (ref->u.ss.start, 1) == CMP_EQ)
5035 *equal_length = true;
5036 }
5037
5038 return true;
5039 }
5040
5041
5042 /* This function supplies missing substring charlens. */
5043
5044 void
5045 gfc_resolve_substring_charlen (gfc_expr *e)
5046 {
5047 gfc_ref *char_ref;
5048 gfc_expr *start, *end;
5049 gfc_typespec *ts = NULL;
5050 mpz_t diff;
5051
5052 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
5053 {
5054 if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
5055 break;
5056 if (char_ref->type == REF_COMPONENT)
5057 ts = &char_ref->u.c.component->ts;
5058 }
5059
5060 if (!char_ref || char_ref->type == REF_INQUIRY)
5061 return;
5062
5063 gcc_assert (char_ref->next == NULL);
5064
5065 if (e->ts.u.cl)
5066 {
5067 if (e->ts.u.cl->length)
5068 gfc_free_expr (e->ts.u.cl->length);
5069 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
5070 return;
5071 }
5072
5073 e->ts.type = BT_CHARACTER;
5074 e->ts.kind = gfc_default_character_kind;
5075
5076 if (!e->ts.u.cl)
5077 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5078
5079 if (char_ref->u.ss.start)
5080 start = gfc_copy_expr (char_ref->u.ss.start);
5081 else
5082 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
5083
5084 if (char_ref->u.ss.end)
5085 end = gfc_copy_expr (char_ref->u.ss.end);
5086 else if (e->expr_type == EXPR_VARIABLE)
5087 {
5088 if (!ts)
5089 ts = &e->symtree->n.sym->ts;
5090 end = gfc_copy_expr (ts->u.cl->length);
5091 }
5092 else
5093 end = NULL;
5094
5095 if (!start || !end)
5096 {
5097 gfc_free_expr (start);
5098 gfc_free_expr (end);
5099 return;
5100 }
5101
5102 /* Length = (end - start + 1).
5103 Check first whether it has a constant length. */
5104 if (gfc_dep_difference (end, start, &diff))
5105 {
5106 gfc_expr *len = gfc_get_constant_expr (BT_INTEGER, gfc_charlen_int_kind,
5107 &e->where);
5108
5109 mpz_add_ui (len->value.integer, diff, 1);
5110 mpz_clear (diff);
5111 e->ts.u.cl->length = len;
5112 /* The check for length < 0 is handled below */
5113 }
5114 else
5115 {
5116 e->ts.u.cl->length = gfc_subtract (end, start);
5117 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
5118 gfc_get_int_expr (gfc_charlen_int_kind,
5119 NULL, 1));
5120 }
5121
5122 /* F2008, 6.4.1: Both the starting point and the ending point shall
5123 be within the range 1, 2, ..., n unless the starting point exceeds
5124 the ending point, in which case the substring has length zero. */
5125
5126 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
5127 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
5128
5129 e->ts.u.cl->length->ts.type = BT_INTEGER;
5130 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5131
5132 /* Make sure that the length is simplified. */
5133 gfc_simplify_expr (e->ts.u.cl->length, 1);
5134 gfc_resolve_expr (e->ts.u.cl->length);
5135 }
5136
5137
5138 /* Resolve subtype references. */
5139
5140 static bool
5141 resolve_ref (gfc_expr *expr)
5142 {
5143 int current_part_dimension, n_components, seen_part_dimension;
5144 gfc_ref *ref, **prev;
5145 bool equal_length;
5146
5147 for (ref = expr->ref; ref; ref = ref->next)
5148 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
5149 {
5150 find_array_spec (expr);
5151 break;
5152 }
5153
5154 for (prev = &expr->ref; *prev != NULL;
5155 prev = *prev == NULL ? prev : &(*prev)->next)
5156 switch ((*prev)->type)
5157 {
5158 case REF_ARRAY:
5159 if (!resolve_array_ref (&(*prev)->u.ar))
5160 return false;
5161 break;
5162
5163 case REF_COMPONENT:
5164 case REF_INQUIRY:
5165 break;
5166
5167 case REF_SUBSTRING:
5168 equal_length = false;
5169 if (!resolve_substring (*prev, &equal_length))
5170 return false;
5171
5172 if (expr->expr_type != EXPR_SUBSTRING && equal_length)
5173 {
5174 /* Remove the reference and move the charlen, if any. */
5175 ref = *prev;
5176 *prev = ref->next;
5177 ref->next = NULL;
5178 expr->ts.u.cl = ref->u.ss.length;
5179 ref->u.ss.length = NULL;
5180 gfc_free_ref_list (ref);
5181 }
5182 break;
5183 }
5184
5185 /* Check constraints on part references. */
5186
5187 current_part_dimension = 0;
5188 seen_part_dimension = 0;
5189 n_components = 0;
5190
5191 for (ref = expr->ref; ref; ref = ref->next)
5192 {
5193 switch (ref->type)
5194 {
5195 case REF_ARRAY:
5196 switch (ref->u.ar.type)
5197 {
5198 case AR_FULL:
5199 /* Coarray scalar. */
5200 if (ref->u.ar.as->rank == 0)
5201 {
5202 current_part_dimension = 0;
5203 break;
5204 }
5205 /* Fall through. */
5206 case AR_SECTION:
5207 current_part_dimension = 1;
5208 break;
5209
5210 case AR_ELEMENT:
5211 current_part_dimension = 0;
5212 break;
5213
5214 case AR_UNKNOWN:
5215 gfc_internal_error ("resolve_ref(): Bad array reference");
5216 }
5217
5218 break;
5219
5220 case REF_COMPONENT:
5221 if (current_part_dimension || seen_part_dimension)
5222 {
5223 /* F03:C614. */
5224 if (ref->u.c.component->attr.pointer
5225 || ref->u.c.component->attr.proc_pointer
5226 || (ref->u.c.component->ts.type == BT_CLASS
5227 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5228 {
5229 gfc_error ("Component to the right of a part reference "
5230 "with nonzero rank must not have the POINTER "
5231 "attribute at %L", &expr->where);
5232 return false;
5233 }
5234 else if (ref->u.c.component->attr.allocatable
5235 || (ref->u.c.component->ts.type == BT_CLASS
5236 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5237
5238 {
5239 gfc_error ("Component to the right of a part reference "
5240 "with nonzero rank must not have the ALLOCATABLE "
5241 "attribute at %L", &expr->where);
5242 return false;
5243 }
5244 }
5245
5246 n_components++;
5247 break;
5248
5249 case REF_SUBSTRING:
5250 case REF_INQUIRY:
5251 break;
5252 }
5253
5254 if (((ref->type == REF_COMPONENT && n_components > 1)
5255 || ref->next == NULL)
5256 && current_part_dimension
5257 && seen_part_dimension)
5258 {
5259 gfc_error ("Two or more part references with nonzero rank must "
5260 "not be specified at %L", &expr->where);
5261 return false;
5262 }
5263
5264 if (ref->type == REF_COMPONENT)
5265 {
5266 if (current_part_dimension)
5267 seen_part_dimension = 1;
5268
5269 /* reset to make sure */
5270 current_part_dimension = 0;
5271 }
5272 }
5273
5274 return true;
5275 }
5276
5277
5278 /* Given an expression, determine its shape. This is easier than it sounds.
5279 Leaves the shape array NULL if it is not possible to determine the shape. */
5280
5281 static void
5282 expression_shape (gfc_expr *e)
5283 {
5284 mpz_t array[GFC_MAX_DIMENSIONS];
5285 int i;
5286
5287 if (e->rank <= 0 || e->shape != NULL)
5288 return;
5289
5290 for (i = 0; i < e->rank; i++)
5291 if (!gfc_array_dimen_size (e, i, &array[i]))
5292 goto fail;
5293
5294 e->shape = gfc_get_shape (e->rank);
5295
5296 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5297
5298 return;
5299
5300 fail:
5301 for (i--; i >= 0; i--)
5302 mpz_clear (array[i]);
5303 }
5304
5305
5306 /* Given a variable expression node, compute the rank of the expression by
5307 examining the base symbol and any reference structures it may have. */
5308
5309 void
5310 expression_rank (gfc_expr *e)
5311 {
5312 gfc_ref *ref;
5313 int i, rank;
5314
5315 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5316 could lead to serious confusion... */
5317 gcc_assert (e->expr_type != EXPR_COMPCALL);
5318
5319 if (e->ref == NULL)
5320 {
5321 if (e->expr_type == EXPR_ARRAY)
5322 goto done;
5323 /* Constructors can have a rank different from one via RESHAPE(). */
5324
5325 if (e->symtree == NULL)
5326 {
5327 e->rank = 0;
5328 goto done;
5329 }
5330
5331 e->rank = (e->symtree->n.sym->as == NULL)
5332 ? 0 : e->symtree->n.sym->as->rank;
5333 goto done;
5334 }
5335
5336 rank = 0;
5337
5338 for (ref = e->ref; ref; ref = ref->next)
5339 {
5340 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5341 && ref->u.c.component->attr.function && !ref->next)
5342 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5343
5344 if (ref->type != REF_ARRAY)
5345 continue;
5346
5347 if (ref->u.ar.type == AR_FULL)
5348 {
5349 rank = ref->u.ar.as->rank;
5350 break;
5351 }
5352
5353 if (ref->u.ar.type == AR_SECTION)
5354 {
5355 /* Figure out the rank of the section. */
5356 if (rank != 0)
5357 gfc_internal_error ("expression_rank(): Two array specs");
5358
5359 for (i = 0; i < ref->u.ar.dimen; i++)
5360 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5361 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5362 rank++;
5363
5364 break;
5365 }
5366 }
5367
5368 e->rank = rank;
5369
5370 done:
5371 expression_shape (e);
5372 }
5373
5374
5375 static void
5376 add_caf_get_intrinsic (gfc_expr *e)
5377 {
5378 gfc_expr *wrapper, *tmp_expr;
5379 gfc_ref *ref;
5380 int n;
5381
5382 for (ref = e->ref; ref; ref = ref->next)
5383 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5384 break;
5385 if (ref == NULL)
5386 return;
5387
5388 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5389 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5390 return;
5391
5392 tmp_expr = XCNEW (gfc_expr);
5393 *tmp_expr = *e;
5394 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5395 "caf_get", tmp_expr->where, 1, tmp_expr);
5396 wrapper->ts = e->ts;
5397 wrapper->rank = e->rank;
5398 if (e->rank)
5399 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5400 *e = *wrapper;
5401 free (wrapper);
5402 }
5403
5404
5405 static void
5406 remove_caf_get_intrinsic (gfc_expr *e)
5407 {
5408 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5409 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5410 gfc_expr *e2 = e->value.function.actual->expr;
5411 e->value.function.actual->expr = NULL;
5412 gfc_free_actual_arglist (e->value.function.actual);
5413 gfc_free_shape (&e->shape, e->rank);
5414 *e = *e2;
5415 free (e2);
5416 }
5417
5418
5419 /* Resolve a variable expression. */
5420
5421 static bool
5422 resolve_variable (gfc_expr *e)
5423 {
5424 gfc_symbol *sym;
5425 bool t;
5426
5427 t = true;
5428
5429 if (e->symtree == NULL)
5430 return false;
5431 sym = e->symtree->n.sym;
5432
5433 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5434 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5435 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5436 {
5437 if (!actual_arg || inquiry_argument)
5438 {
5439 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5440 "be used as actual argument", sym->name, &e->where);
5441 return false;
5442 }
5443 }
5444 /* TS 29113, 407b. */
5445 else if (e->ts.type == BT_ASSUMED)
5446 {
5447 if (!actual_arg)
5448 {
5449 gfc_error ("Assumed-type variable %s at %L may only be used "
5450 "as actual argument", sym->name, &e->where);
5451 return false;
5452 }
5453 else if (inquiry_argument && !first_actual_arg)
5454 {
5455 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5456 for all inquiry functions in resolve_function; the reason is
5457 that the function-name resolution happens too late in that
5458 function. */
5459 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5460 "an inquiry function shall be the first argument",
5461 sym->name, &e->where);
5462 return false;
5463 }
5464 }
5465 /* TS 29113, C535b. */
5466 else if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5467 && CLASS_DATA (sym)->as
5468 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5469 || (sym->ts.type != BT_CLASS && sym->as
5470 && sym->as->type == AS_ASSUMED_RANK))
5471 && !sym->attr.select_rank_temporary)
5472 {
5473 if (!actual_arg
5474 && !(cs_base && cs_base->current
5475 && cs_base->current->op == EXEC_SELECT_RANK))
5476 {
5477 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5478 "actual argument", sym->name, &e->where);
5479 return false;
5480 }
5481 else if (inquiry_argument && !first_actual_arg)
5482 {
5483 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5484 for all inquiry functions in resolve_function; the reason is
5485 that the function-name resolution happens too late in that
5486 function. */
5487 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5488 "to an inquiry function shall be the first argument",
5489 sym->name, &e->where);
5490 return false;
5491 }
5492 }
5493
5494 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5495 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5496 && e->ref->next == NULL))
5497 {
5498 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5499 "a subobject reference", sym->name, &e->ref->u.ar.where);
5500 return false;
5501 }
5502 /* TS 29113, 407b. */
5503 else if (e->ts.type == BT_ASSUMED && e->ref
5504 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5505 && e->ref->next == NULL))
5506 {
5507 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5508 "reference", sym->name, &e->ref->u.ar.where);
5509 return false;
5510 }
5511
5512 /* TS 29113, C535b. */
5513 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5514 && CLASS_DATA (sym)->as
5515 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5516 || (sym->ts.type != BT_CLASS && sym->as
5517 && sym->as->type == AS_ASSUMED_RANK))
5518 && e->ref
5519 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5520 && e->ref->next == NULL))
5521 {
5522 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5523 "reference", sym->name, &e->ref->u.ar.where);
5524 return false;
5525 }
5526
5527 /* For variables that are used in an associate (target => object) where
5528 the object's basetype is array valued while the target is scalar,
5529 the ts' type of the component refs is still array valued, which
5530 can't be translated that way. */
5531 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5532 && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
5533 && CLASS_DATA (sym->assoc->target)->as)
5534 {
5535 gfc_ref *ref = e->ref;
5536 while (ref)
5537 {
5538 switch (ref->type)
5539 {
5540 case REF_COMPONENT:
5541 ref->u.c.sym = sym->ts.u.derived;
5542 /* Stop the loop. */
5543 ref = NULL;
5544 break;
5545 default:
5546 ref = ref->next;
5547 break;
5548 }
5549 }
5550 }
5551
5552 /* If this is an associate-name, it may be parsed with an array reference
5553 in error even though the target is scalar. Fail directly in this case.
5554 TODO Understand why class scalar expressions must be excluded. */
5555 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5556 {
5557 if (sym->ts.type == BT_CLASS)
5558 gfc_fix_class_refs (e);
5559 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5560 return false;
5561 else if (sym->attr.dimension && (!e->ref || e->ref->type != REF_ARRAY))
5562 {
5563 /* This can happen because the parser did not detect that the
5564 associate name is an array and the expression had no array
5565 part_ref. */
5566 gfc_ref *ref = gfc_get_ref ();
5567 ref->type = REF_ARRAY;
5568 ref->u.ar = *gfc_get_array_ref();
5569 ref->u.ar.type = AR_FULL;
5570 if (sym->as)
5571 {
5572 ref->u.ar.as = sym->as;
5573 ref->u.ar.dimen = sym->as->rank;
5574 }
5575 ref->next = e->ref;
5576 e->ref = ref;
5577
5578 }
5579 }
5580
5581 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5582 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5583
5584 /* On the other hand, the parser may not have known this is an array;
5585 in this case, we have to add a FULL reference. */
5586 if (sym->assoc && sym->attr.dimension && !e->ref)
5587 {
5588 e->ref = gfc_get_ref ();
5589 e->ref->type = REF_ARRAY;
5590 e->ref->u.ar.type = AR_FULL;
5591 e->ref->u.ar.dimen = 0;
5592 }
5593
5594 /* Like above, but for class types, where the checking whether an array
5595 ref is present is more complicated. Furthermore make sure not to add
5596 the full array ref to _vptr or _len refs. */
5597 if (sym->assoc && sym->ts.type == BT_CLASS
5598 && CLASS_DATA (sym)->attr.dimension
5599 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5600 {
5601 gfc_ref *ref, *newref;
5602
5603 newref = gfc_get_ref ();
5604 newref->type = REF_ARRAY;
5605 newref->u.ar.type = AR_FULL;
5606 newref->u.ar.dimen = 0;
5607 /* Because this is an associate var and the first ref either is a ref to
5608 the _data component or not, no traversal of the ref chain is
5609 needed. The array ref needs to be inserted after the _data ref,
5610 or when that is not present, which may happend for polymorphic
5611 types, then at the first position. */
5612 ref = e->ref;
5613 if (!ref)
5614 e->ref = newref;
5615 else if (ref->type == REF_COMPONENT
5616 && strcmp ("_data", ref->u.c.component->name) == 0)
5617 {
5618 if (!ref->next || ref->next->type != REF_ARRAY)
5619 {
5620 newref->next = ref->next;
5621 ref->next = newref;
5622 }
5623 else
5624 /* Array ref present already. */
5625 gfc_free_ref_list (newref);
5626 }
5627 else if (ref->type == REF_ARRAY)
5628 /* Array ref present already. */
5629 gfc_free_ref_list (newref);
5630 else
5631 {
5632 newref->next = ref;
5633 e->ref = newref;
5634 }
5635 }
5636
5637 if (e->ref && !resolve_ref (e))
5638 return false;
5639
5640 if (sym->attr.flavor == FL_PROCEDURE
5641 && (!sym->attr.function
5642 || (sym->attr.function && sym->result
5643 && sym->result->attr.proc_pointer
5644 && !sym->result->attr.function)))
5645 {
5646 e->ts.type = BT_PROCEDURE;
5647 goto resolve_procedure;
5648 }
5649
5650 if (sym->ts.type != BT_UNKNOWN)
5651 gfc_variable_attr (e, &e->ts);
5652 else if (sym->attr.flavor == FL_PROCEDURE
5653 && sym->attr.function && sym->result
5654 && sym->result->ts.type != BT_UNKNOWN
5655 && sym->result->attr.proc_pointer)
5656 e->ts = sym->result->ts;
5657 else
5658 {
5659 /* Must be a simple variable reference. */
5660 if (!gfc_set_default_type (sym, 1, sym->ns))
5661 return false;
5662 e->ts = sym->ts;
5663 }
5664
5665 if (check_assumed_size_reference (sym, e))
5666 return false;
5667
5668 /* Deal with forward references to entries during gfc_resolve_code, to
5669 satisfy, at least partially, 12.5.2.5. */
5670 if (gfc_current_ns->entries
5671 && current_entry_id == sym->entry_id
5672 && cs_base
5673 && cs_base->current
5674 && cs_base->current->op != EXEC_ENTRY)
5675 {
5676 gfc_entry_list *entry;
5677 gfc_formal_arglist *formal;
5678 int n;
5679 bool seen, saved_specification_expr;
5680
5681 /* If the symbol is a dummy... */
5682 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5683 {
5684 entry = gfc_current_ns->entries;
5685 seen = false;
5686
5687 /* ...test if the symbol is a parameter of previous entries. */
5688 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5689 for (formal = entry->sym->formal; formal; formal = formal->next)
5690 {
5691 if (formal->sym && sym->name == formal->sym->name)
5692 {
5693 seen = true;
5694 break;
5695 }
5696 }
5697
5698 /* If it has not been seen as a dummy, this is an error. */
5699 if (!seen)
5700 {
5701 if (specification_expr)
5702 gfc_error ("Variable %qs, used in a specification expression"
5703 ", is referenced at %L before the ENTRY statement "
5704 "in which it is a parameter",
5705 sym->name, &cs_base->current->loc);
5706 else
5707 gfc_error ("Variable %qs is used at %L before the ENTRY "
5708 "statement in which it is a parameter",
5709 sym->name, &cs_base->current->loc);
5710 t = false;
5711 }
5712 }
5713
5714 /* Now do the same check on the specification expressions. */
5715 saved_specification_expr = specification_expr;
5716 specification_expr = true;
5717 if (sym->ts.type == BT_CHARACTER
5718 && !gfc_resolve_expr (sym->ts.u.cl->length))
5719 t = false;
5720
5721 if (sym->as)
5722 for (n = 0; n < sym->as->rank; n++)
5723 {
5724 if (!gfc_resolve_expr (sym->as->lower[n]))
5725 t = false;
5726 if (!gfc_resolve_expr (sym->as->upper[n]))
5727 t = false;
5728 }
5729 specification_expr = saved_specification_expr;
5730
5731 if (t)
5732 /* Update the symbol's entry level. */
5733 sym->entry_id = current_entry_id + 1;
5734 }
5735
5736 /* If a symbol has been host_associated mark it. This is used latter,
5737 to identify if aliasing is possible via host association. */
5738 if (sym->attr.flavor == FL_VARIABLE
5739 && gfc_current_ns->parent
5740 && (gfc_current_ns->parent == sym->ns
5741 || (gfc_current_ns->parent->parent
5742 && gfc_current_ns->parent->parent == sym->ns)))
5743 sym->attr.host_assoc = 1;
5744
5745 if (gfc_current_ns->proc_name
5746 && sym->attr.dimension
5747 && (sym->ns != gfc_current_ns
5748 || sym->attr.use_assoc
5749 || sym->attr.in_common))
5750 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5751
5752 resolve_procedure:
5753 if (t && !resolve_procedure_expression (e))
5754 t = false;
5755
5756 /* F2008, C617 and C1229. */
5757 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5758 && gfc_is_coindexed (e))
5759 {
5760 gfc_ref *ref, *ref2 = NULL;
5761
5762 for (ref = e->ref; ref; ref = ref->next)
5763 {
5764 if (ref->type == REF_COMPONENT)
5765 ref2 = ref;
5766 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5767 break;
5768 }
5769
5770 for ( ; ref; ref = ref->next)
5771 if (ref->type == REF_COMPONENT)
5772 break;
5773
5774 /* Expression itself is not coindexed object. */
5775 if (ref && e->ts.type == BT_CLASS)
5776 {
5777 gfc_error ("Polymorphic subobject of coindexed object at %L",
5778 &e->where);
5779 t = false;
5780 }
5781
5782 /* Expression itself is coindexed object. */
5783 if (ref == NULL)
5784 {
5785 gfc_component *c;
5786 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5787 for ( ; c; c = c->next)
5788 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5789 {
5790 gfc_error ("Coindexed object with polymorphic allocatable "
5791 "subcomponent at %L", &e->where);
5792 t = false;
5793 break;
5794 }
5795 }
5796 }
5797
5798 if (t)
5799 expression_rank (e);
5800
5801 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5802 add_caf_get_intrinsic (e);
5803
5804 /* Simplify cases where access to a parameter array results in a
5805 single constant. Suppress errors since those will have been
5806 issued before, as warnings. */
5807 if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
5808 {
5809 gfc_push_suppress_errors ();
5810 gfc_simplify_expr (e, 1);
5811 gfc_pop_suppress_errors ();
5812 }
5813
5814 return t;
5815 }
5816
5817
5818 /* Checks to see that the correct symbol has been host associated.
5819 The only situation where this arises is that in which a twice
5820 contained function is parsed after the host association is made.
5821 Therefore, on detecting this, change the symbol in the expression
5822 and convert the array reference into an actual arglist if the old
5823 symbol is a variable. */
5824 static bool
5825 check_host_association (gfc_expr *e)
5826 {
5827 gfc_symbol *sym, *old_sym;
5828 gfc_symtree *st;
5829 int n;
5830 gfc_ref *ref;
5831 gfc_actual_arglist *arg, *tail = NULL;
5832 bool retval = e->expr_type == EXPR_FUNCTION;
5833
5834 /* If the expression is the result of substitution in
5835 interface.c(gfc_extend_expr) because there is no way in
5836 which the host association can be wrong. */
5837 if (e->symtree == NULL
5838 || e->symtree->n.sym == NULL
5839 || e->user_operator)
5840 return retval;
5841
5842 old_sym = e->symtree->n.sym;
5843
5844 if (gfc_current_ns->parent
5845 && old_sym->ns != gfc_current_ns)
5846 {
5847 /* Use the 'USE' name so that renamed module symbols are
5848 correctly handled. */
5849 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5850
5851 if (sym && old_sym != sym
5852 && sym->ts.type == old_sym->ts.type
5853 && sym->attr.flavor == FL_PROCEDURE
5854 && sym->attr.contained)
5855 {
5856 /* Clear the shape, since it might not be valid. */
5857 gfc_free_shape (&e->shape, e->rank);
5858
5859 /* Give the expression the right symtree! */
5860 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5861 gcc_assert (st != NULL);
5862
5863 if (old_sym->attr.flavor == FL_PROCEDURE
5864 || e->expr_type == EXPR_FUNCTION)
5865 {
5866 /* Original was function so point to the new symbol, since
5867 the actual argument list is already attached to the
5868 expression. */
5869 e->value.function.esym = NULL;
5870 e->symtree = st;
5871 }
5872 else
5873 {
5874 /* Original was variable so convert array references into
5875 an actual arglist. This does not need any checking now
5876 since resolve_function will take care of it. */
5877 e->value.function.actual = NULL;
5878 e->expr_type = EXPR_FUNCTION;
5879 e->symtree = st;
5880
5881 /* Ambiguity will not arise if the array reference is not
5882 the last reference. */
5883 for (ref = e->ref; ref; ref = ref->next)
5884 if (ref->type == REF_ARRAY && ref->next == NULL)
5885 break;
5886
5887 gcc_assert (ref->type == REF_ARRAY);
5888
5889 /* Grab the start expressions from the array ref and
5890 copy them into actual arguments. */
5891 for (n = 0; n < ref->u.ar.dimen; n++)
5892 {
5893 arg = gfc_get_actual_arglist ();
5894 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5895 if (e->value.function.actual == NULL)
5896 tail = e->value.function.actual = arg;
5897 else
5898 {
5899 tail->next = arg;
5900 tail = arg;
5901 }
5902 }
5903
5904 /* Dump the reference list and set the rank. */
5905 gfc_free_ref_list (e->ref);
5906 e->ref = NULL;
5907 e->rank = sym->as ? sym->as->rank : 0;
5908 }
5909
5910 gfc_resolve_expr (e);
5911 sym->refs++;
5912 }
5913 }
5914 /* This might have changed! */
5915 return e->expr_type == EXPR_FUNCTION;
5916 }
5917
5918
5919 static void
5920 gfc_resolve_character_operator (gfc_expr *e)
5921 {
5922 gfc_expr *op1 = e->value.op.op1;
5923 gfc_expr *op2 = e->value.op.op2;
5924 gfc_expr *e1 = NULL;
5925 gfc_expr *e2 = NULL;
5926
5927 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
5928
5929 if (op1->ts.u.cl && op1->ts.u.cl->length)
5930 e1 = gfc_copy_expr (op1->ts.u.cl->length);
5931 else if (op1->expr_type == EXPR_CONSTANT)
5932 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5933 op1->value.character.length);
5934
5935 if (op2->ts.u.cl && op2->ts.u.cl->length)
5936 e2 = gfc_copy_expr (op2->ts.u.cl->length);
5937 else if (op2->expr_type == EXPR_CONSTANT)
5938 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5939 op2->value.character.length);
5940
5941 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5942
5943 if (!e1 || !e2)
5944 {
5945 gfc_free_expr (e1);
5946 gfc_free_expr (e2);
5947
5948 return;
5949 }
5950
5951 e->ts.u.cl->length = gfc_add (e1, e2);
5952 e->ts.u.cl->length->ts.type = BT_INTEGER;
5953 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5954 gfc_simplify_expr (e->ts.u.cl->length, 0);
5955 gfc_resolve_expr (e->ts.u.cl->length);
5956
5957 return;
5958 }
5959
5960
5961 /* Ensure that an character expression has a charlen and, if possible, a
5962 length expression. */
5963
5964 static void
5965 fixup_charlen (gfc_expr *e)
5966 {
5967 /* The cases fall through so that changes in expression type and the need
5968 for multiple fixes are picked up. In all circumstances, a charlen should
5969 be available for the middle end to hang a backend_decl on. */
5970 switch (e->expr_type)
5971 {
5972 case EXPR_OP:
5973 gfc_resolve_character_operator (e);
5974 /* FALLTHRU */
5975
5976 case EXPR_ARRAY:
5977 if (e->expr_type == EXPR_ARRAY)
5978 gfc_resolve_character_array_constructor (e);
5979 /* FALLTHRU */
5980
5981 case EXPR_SUBSTRING:
5982 if (!e->ts.u.cl && e->ref)
5983 gfc_resolve_substring_charlen (e);
5984 /* FALLTHRU */
5985
5986 default:
5987 if (!e->ts.u.cl)
5988 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5989
5990 break;
5991 }
5992 }
5993
5994
5995 /* Update an actual argument to include the passed-object for type-bound
5996 procedures at the right position. */
5997
5998 static gfc_actual_arglist*
5999 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
6000 const char *name)
6001 {
6002 gcc_assert (argpos > 0);
6003
6004 if (argpos == 1)
6005 {
6006 gfc_actual_arglist* result;
6007
6008 result = gfc_get_actual_arglist ();
6009 result->expr = po;
6010 result->next = lst;
6011 if (name)
6012 result->name = name;
6013
6014 return result;
6015 }
6016
6017 if (lst)
6018 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
6019 else
6020 lst = update_arglist_pass (NULL, po, argpos - 1, name);
6021 return lst;
6022 }
6023
6024
6025 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
6026
6027 static gfc_expr*
6028 extract_compcall_passed_object (gfc_expr* e)
6029 {
6030 gfc_expr* po;
6031
6032 if (e->expr_type == EXPR_UNKNOWN)
6033 {
6034 gfc_error ("Error in typebound call at %L",
6035 &e->where);
6036 return NULL;
6037 }
6038
6039 gcc_assert (e->expr_type == EXPR_COMPCALL);
6040
6041 if (e->value.compcall.base_object)
6042 po = gfc_copy_expr (e->value.compcall.base_object);
6043 else
6044 {
6045 po = gfc_get_expr ();
6046 po->expr_type = EXPR_VARIABLE;
6047 po->symtree = e->symtree;
6048 po->ref = gfc_copy_ref (e->ref);
6049 po->where = e->where;
6050 }
6051
6052 if (!gfc_resolve_expr (po))
6053 return NULL;
6054
6055 return po;
6056 }
6057
6058
6059 /* Update the arglist of an EXPR_COMPCALL expression to include the
6060 passed-object. */
6061
6062 static bool
6063 update_compcall_arglist (gfc_expr* e)
6064 {
6065 gfc_expr* po;
6066 gfc_typebound_proc* tbp;
6067
6068 tbp = e->value.compcall.tbp;
6069
6070 if (tbp->error)
6071 return false;
6072
6073 po = extract_compcall_passed_object (e);
6074 if (!po)
6075 return false;
6076
6077 if (tbp->nopass || e->value.compcall.ignore_pass)
6078 {
6079 gfc_free_expr (po);
6080 return true;
6081 }
6082
6083 if (tbp->pass_arg_num <= 0)
6084 return false;
6085
6086 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6087 tbp->pass_arg_num,
6088 tbp->pass_arg);
6089
6090 return true;
6091 }
6092
6093
6094 /* Extract the passed object from a PPC call (a copy of it). */
6095
6096 static gfc_expr*
6097 extract_ppc_passed_object (gfc_expr *e)
6098 {
6099 gfc_expr *po;
6100 gfc_ref **ref;
6101
6102 po = gfc_get_expr ();
6103 po->expr_type = EXPR_VARIABLE;
6104 po->symtree = e->symtree;
6105 po->ref = gfc_copy_ref (e->ref);
6106 po->where = e->where;
6107
6108 /* Remove PPC reference. */
6109 ref = &po->ref;
6110 while ((*ref)->next)
6111 ref = &(*ref)->next;
6112 gfc_free_ref_list (*ref);
6113 *ref = NULL;
6114
6115 if (!gfc_resolve_expr (po))
6116 return NULL;
6117
6118 return po;
6119 }
6120
6121
6122 /* Update the actual arglist of a procedure pointer component to include the
6123 passed-object. */
6124
6125 static bool
6126 update_ppc_arglist (gfc_expr* e)
6127 {
6128 gfc_expr* po;
6129 gfc_component *ppc;
6130 gfc_typebound_proc* tb;
6131
6132 ppc = gfc_get_proc_ptr_comp (e);
6133 if (!ppc)
6134 return false;
6135
6136 tb = ppc->tb;
6137
6138 if (tb->error)
6139 return false;
6140 else if (tb->nopass)
6141 return true;
6142
6143 po = extract_ppc_passed_object (e);
6144 if (!po)
6145 return false;
6146
6147 /* F08:R739. */
6148 if (po->rank != 0)
6149 {
6150 gfc_error ("Passed-object at %L must be scalar", &e->where);
6151 return false;
6152 }
6153
6154 /* F08:C611. */
6155 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
6156 {
6157 gfc_error ("Base object for procedure-pointer component call at %L is of"
6158 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
6159 return false;
6160 }
6161
6162 gcc_assert (tb->pass_arg_num > 0);
6163 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6164 tb->pass_arg_num,
6165 tb->pass_arg);
6166
6167 return true;
6168 }
6169
6170
6171 /* Check that the object a TBP is called on is valid, i.e. it must not be
6172 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
6173
6174 static bool
6175 check_typebound_baseobject (gfc_expr* e)
6176 {
6177 gfc_expr* base;
6178 bool return_value = false;
6179
6180 base = extract_compcall_passed_object (e);
6181 if (!base)
6182 return false;
6183
6184 if (base->ts.type != BT_DERIVED && base->ts.type != BT_CLASS)
6185 {
6186 gfc_error ("Error in typebound call at %L", &e->where);
6187 goto cleanup;
6188 }
6189
6190 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
6191 return false;
6192
6193 /* F08:C611. */
6194 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
6195 {
6196 gfc_error ("Base object for type-bound procedure call at %L is of"
6197 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
6198 goto cleanup;
6199 }
6200
6201 /* F08:C1230. If the procedure called is NOPASS,
6202 the base object must be scalar. */
6203 if (e->value.compcall.tbp->nopass && base->rank != 0)
6204 {
6205 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
6206 " be scalar", &e->where);
6207 goto cleanup;
6208 }
6209
6210 return_value = true;
6211
6212 cleanup:
6213 gfc_free_expr (base);
6214 return return_value;
6215 }
6216
6217
6218 /* Resolve a call to a type-bound procedure, either function or subroutine,
6219 statically from the data in an EXPR_COMPCALL expression. The adapted
6220 arglist and the target-procedure symtree are returned. */
6221
6222 static bool
6223 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
6224 gfc_actual_arglist** actual)
6225 {
6226 gcc_assert (e->expr_type == EXPR_COMPCALL);
6227 gcc_assert (!e->value.compcall.tbp->is_generic);
6228
6229 /* Update the actual arglist for PASS. */
6230 if (!update_compcall_arglist (e))
6231 return false;
6232
6233 *actual = e->value.compcall.actual;
6234 *target = e->value.compcall.tbp->u.specific;
6235
6236 gfc_free_ref_list (e->ref);
6237 e->ref = NULL;
6238 e->value.compcall.actual = NULL;
6239
6240 /* If we find a deferred typebound procedure, check for derived types
6241 that an overriding typebound procedure has not been missed. */
6242 if (e->value.compcall.name
6243 && !e->value.compcall.tbp->non_overridable
6244 && e->value.compcall.base_object
6245 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6246 {
6247 gfc_symtree *st;
6248 gfc_symbol *derived;
6249
6250 /* Use the derived type of the base_object. */
6251 derived = e->value.compcall.base_object->ts.u.derived;
6252 st = NULL;
6253
6254 /* If necessary, go through the inheritance chain. */
6255 while (!st && derived)
6256 {
6257 /* Look for the typebound procedure 'name'. */
6258 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6259 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6260 e->value.compcall.name);
6261 if (!st)
6262 derived = gfc_get_derived_super_type (derived);
6263 }
6264
6265 /* Now find the specific name in the derived type namespace. */
6266 if (st && st->n.tb && st->n.tb->u.specific)
6267 gfc_find_sym_tree (st->n.tb->u.specific->name,
6268 derived->ns, 1, &st);
6269 if (st)
6270 *target = st;
6271 }
6272 return true;
6273 }
6274
6275
6276 /* Get the ultimate declared type from an expression. In addition,
6277 return the last class/derived type reference and the copy of the
6278 reference list. If check_types is set true, derived types are
6279 identified as well as class references. */
6280 static gfc_symbol*
6281 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6282 gfc_expr *e, bool check_types)
6283 {
6284 gfc_symbol *declared;
6285 gfc_ref *ref;
6286
6287 declared = NULL;
6288 if (class_ref)
6289 *class_ref = NULL;
6290 if (new_ref)
6291 *new_ref = gfc_copy_ref (e->ref);
6292
6293 for (ref = e->ref; ref; ref = ref->next)
6294 {
6295 if (ref->type != REF_COMPONENT)
6296 continue;
6297
6298 if ((ref->u.c.component->ts.type == BT_CLASS
6299 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6300 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6301 {
6302 declared = ref->u.c.component->ts.u.derived;
6303 if (class_ref)
6304 *class_ref = ref;
6305 }
6306 }
6307
6308 if (declared == NULL)
6309 declared = e->symtree->n.sym->ts.u.derived;
6310
6311 return declared;
6312 }
6313
6314
6315 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6316 which of the specific bindings (if any) matches the arglist and transform
6317 the expression into a call of that binding. */
6318
6319 static bool
6320 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6321 {
6322 gfc_typebound_proc* genproc;
6323 const char* genname;
6324 gfc_symtree *st;
6325 gfc_symbol *derived;
6326
6327 gcc_assert (e->expr_type == EXPR_COMPCALL);
6328 genname = e->value.compcall.name;
6329 genproc = e->value.compcall.tbp;
6330
6331 if (!genproc->is_generic)
6332 return true;
6333
6334 /* Try the bindings on this type and in the inheritance hierarchy. */
6335 for (; genproc; genproc = genproc->overridden)
6336 {
6337 gfc_tbp_generic* g;
6338
6339 gcc_assert (genproc->is_generic);
6340 for (g = genproc->u.generic; g; g = g->next)
6341 {
6342 gfc_symbol* target;
6343 gfc_actual_arglist* args;
6344 bool matches;
6345
6346 gcc_assert (g->specific);
6347
6348 if (g->specific->error)
6349 continue;
6350
6351 target = g->specific->u.specific->n.sym;
6352
6353 /* Get the right arglist by handling PASS/NOPASS. */
6354 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6355 if (!g->specific->nopass)
6356 {
6357 gfc_expr* po;
6358 po = extract_compcall_passed_object (e);
6359 if (!po)
6360 {
6361 gfc_free_actual_arglist (args);
6362 return false;
6363 }
6364
6365 gcc_assert (g->specific->pass_arg_num > 0);
6366 gcc_assert (!g->specific->error);
6367 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6368 g->specific->pass_arg);
6369 }
6370 resolve_actual_arglist (args, target->attr.proc,
6371 is_external_proc (target)
6372 && gfc_sym_get_dummy_args (target) == NULL);
6373
6374 /* Check if this arglist matches the formal. */
6375 matches = gfc_arglist_matches_symbol (&args, target);
6376
6377 /* Clean up and break out of the loop if we've found it. */
6378 gfc_free_actual_arglist (args);
6379 if (matches)
6380 {
6381 e->value.compcall.tbp = g->specific;
6382 genname = g->specific_st->name;
6383 /* Pass along the name for CLASS methods, where the vtab
6384 procedure pointer component has to be referenced. */
6385 if (name)
6386 *name = genname;
6387 goto success;
6388 }
6389 }
6390 }
6391
6392 /* Nothing matching found! */
6393 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6394 " %qs at %L", genname, &e->where);
6395 return false;
6396
6397 success:
6398 /* Make sure that we have the right specific instance for the name. */
6399 derived = get_declared_from_expr (NULL, NULL, e, true);
6400
6401 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6402 if (st)
6403 e->value.compcall.tbp = st->n.tb;
6404
6405 return true;
6406 }
6407
6408
6409 /* Resolve a call to a type-bound subroutine. */
6410
6411 static bool
6412 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6413 {
6414 gfc_actual_arglist* newactual;
6415 gfc_symtree* target;
6416
6417 /* Check that's really a SUBROUTINE. */
6418 if (!c->expr1->value.compcall.tbp->subroutine)
6419 {
6420 if (!c->expr1->value.compcall.tbp->is_generic
6421 && c->expr1->value.compcall.tbp->u.specific
6422 && c->expr1->value.compcall.tbp->u.specific->n.sym
6423 && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
6424 c->expr1->value.compcall.tbp->subroutine = 1;
6425 else
6426 {
6427 gfc_error ("%qs at %L should be a SUBROUTINE",
6428 c->expr1->value.compcall.name, &c->loc);
6429 return false;
6430 }
6431 }
6432
6433 if (!check_typebound_baseobject (c->expr1))
6434 return false;
6435
6436 /* Pass along the name for CLASS methods, where the vtab
6437 procedure pointer component has to be referenced. */
6438 if (name)
6439 *name = c->expr1->value.compcall.name;
6440
6441 if (!resolve_typebound_generic_call (c->expr1, name))
6442 return false;
6443
6444 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6445 if (overridable)
6446 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6447
6448 /* Transform into an ordinary EXEC_CALL for now. */
6449
6450 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6451 return false;
6452
6453 c->ext.actual = newactual;
6454 c->symtree = target;
6455 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6456
6457 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6458
6459 gfc_free_expr (c->expr1);
6460 c->expr1 = gfc_get_expr ();
6461 c->expr1->expr_type = EXPR_FUNCTION;
6462 c->expr1->symtree = target;
6463 c->expr1->where = c->loc;
6464
6465 return resolve_call (c);
6466 }
6467
6468
6469 /* Resolve a component-call expression. */
6470 static bool
6471 resolve_compcall (gfc_expr* e, const char **name)
6472 {
6473 gfc_actual_arglist* newactual;
6474 gfc_symtree* target;
6475
6476 /* Check that's really a FUNCTION. */
6477 if (!e->value.compcall.tbp->function)
6478 {
6479 gfc_error ("%qs at %L should be a FUNCTION",
6480 e->value.compcall.name, &e->where);
6481 return false;
6482 }
6483
6484
6485 /* These must not be assign-calls! */
6486 gcc_assert (!e->value.compcall.assign);
6487
6488 if (!check_typebound_baseobject (e))
6489 return false;
6490
6491 /* Pass along the name for CLASS methods, where the vtab
6492 procedure pointer component has to be referenced. */
6493 if (name)
6494 *name = e->value.compcall.name;
6495
6496 if (!resolve_typebound_generic_call (e, name))
6497 return false;
6498 gcc_assert (!e->value.compcall.tbp->is_generic);
6499
6500 /* Take the rank from the function's symbol. */
6501 if (e->value.compcall.tbp->u.specific->n.sym->as)
6502 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6503
6504 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6505 arglist to the TBP's binding target. */
6506
6507 if (!resolve_typebound_static (e, &target, &newactual))
6508 return false;
6509
6510 e->value.function.actual = newactual;
6511 e->value.function.name = NULL;
6512 e->value.function.esym = target->n.sym;
6513 e->value.function.isym = NULL;
6514 e->symtree = target;
6515 e->ts = target->n.sym->ts;
6516 e->expr_type = EXPR_FUNCTION;
6517
6518 /* Resolution is not necessary if this is a class subroutine; this
6519 function only has to identify the specific proc. Resolution of
6520 the call will be done next in resolve_typebound_call. */
6521 return gfc_resolve_expr (e);
6522 }
6523
6524
6525 static bool resolve_fl_derived (gfc_symbol *sym);
6526
6527
6528 /* Resolve a typebound function, or 'method'. First separate all
6529 the non-CLASS references by calling resolve_compcall directly. */
6530
6531 static bool
6532 resolve_typebound_function (gfc_expr* e)
6533 {
6534 gfc_symbol *declared;
6535 gfc_component *c;
6536 gfc_ref *new_ref;
6537 gfc_ref *class_ref;
6538 gfc_symtree *st;
6539 const char *name;
6540 gfc_typespec ts;
6541 gfc_expr *expr;
6542 bool overridable;
6543
6544 st = e->symtree;
6545
6546 /* Deal with typebound operators for CLASS objects. */
6547 expr = e->value.compcall.base_object;
6548 overridable = !e->value.compcall.tbp->non_overridable;
6549 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6550 {
6551 /* Since the typebound operators are generic, we have to ensure
6552 that any delays in resolution are corrected and that the vtab
6553 is present. */
6554 ts = expr->ts;
6555 declared = ts.u.derived;
6556 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6557 if (c->ts.u.derived == NULL)
6558 c->ts.u.derived = gfc_find_derived_vtab (declared);
6559
6560 if (!resolve_compcall (e, &name))
6561 return false;
6562
6563 /* Use the generic name if it is there. */
6564 name = name ? name : e->value.function.esym->name;
6565 e->symtree = expr->symtree;
6566 e->ref = gfc_copy_ref (expr->ref);
6567 get_declared_from_expr (&class_ref, NULL, e, false);
6568
6569 /* Trim away the extraneous references that emerge from nested
6570 use of interface.c (extend_expr). */
6571 if (class_ref && class_ref->next)
6572 {
6573 gfc_free_ref_list (class_ref->next);
6574 class_ref->next = NULL;
6575 }
6576 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6577 {
6578 gfc_free_ref_list (e->ref);
6579 e->ref = NULL;
6580 }
6581
6582 gfc_add_vptr_component (e);
6583 gfc_add_component_ref (e, name);
6584 e->value.function.esym = NULL;
6585 if (expr->expr_type != EXPR_VARIABLE)
6586 e->base_expr = expr;
6587 return true;
6588 }
6589
6590 if (st == NULL)
6591 return resolve_compcall (e, NULL);
6592
6593 if (!resolve_ref (e))
6594 return false;
6595
6596 /* Get the CLASS declared type. */
6597 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6598
6599 if (!resolve_fl_derived (declared))
6600 return false;
6601
6602 /* Weed out cases of the ultimate component being a derived type. */
6603 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6604 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6605 {
6606 gfc_free_ref_list (new_ref);
6607 return resolve_compcall (e, NULL);
6608 }
6609
6610 c = gfc_find_component (declared, "_data", true, true, NULL);
6611
6612 /* Treat the call as if it is a typebound procedure, in order to roll
6613 out the correct name for the specific function. */
6614 if (!resolve_compcall (e, &name))
6615 {
6616 gfc_free_ref_list (new_ref);
6617 return false;
6618 }
6619 ts = e->ts;
6620
6621 if (overridable)
6622 {
6623 /* Convert the expression to a procedure pointer component call. */
6624 e->value.function.esym = NULL;
6625 e->symtree = st;
6626
6627 if (new_ref)
6628 e->ref = new_ref;
6629
6630 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6631 gfc_add_vptr_component (e);
6632 gfc_add_component_ref (e, name);
6633
6634 /* Recover the typespec for the expression. This is really only
6635 necessary for generic procedures, where the additional call
6636 to gfc_add_component_ref seems to throw the collection of the
6637 correct typespec. */
6638 e->ts = ts;
6639 }
6640 else if (new_ref)
6641 gfc_free_ref_list (new_ref);
6642
6643 return true;
6644 }
6645
6646 /* Resolve a typebound subroutine, or 'method'. First separate all
6647 the non-CLASS references by calling resolve_typebound_call
6648 directly. */
6649
6650 static bool
6651 resolve_typebound_subroutine (gfc_code *code)
6652 {
6653 gfc_symbol *declared;
6654 gfc_component *c;
6655 gfc_ref *new_ref;
6656 gfc_ref *class_ref;
6657 gfc_symtree *st;
6658 const char *name;
6659 gfc_typespec ts;
6660 gfc_expr *expr;
6661 bool overridable;
6662
6663 st = code->expr1->symtree;
6664
6665 /* Deal with typebound operators for CLASS objects. */
6666 expr = code->expr1->value.compcall.base_object;
6667 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6668 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6669 {
6670 /* If the base_object is not a variable, the corresponding actual
6671 argument expression must be stored in e->base_expression so
6672 that the corresponding tree temporary can be used as the base
6673 object in gfc_conv_procedure_call. */
6674 if (expr->expr_type != EXPR_VARIABLE)
6675 {
6676 gfc_actual_arglist *args;
6677
6678 args= code->expr1->value.function.actual;
6679 for (; args; args = args->next)
6680 if (expr == args->expr)
6681 expr = args->expr;
6682 }
6683
6684 /* Since the typebound operators are generic, we have to ensure
6685 that any delays in resolution are corrected and that the vtab
6686 is present. */
6687 declared = expr->ts.u.derived;
6688 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6689 if (c->ts.u.derived == NULL)
6690 c->ts.u.derived = gfc_find_derived_vtab (declared);
6691
6692 if (!resolve_typebound_call (code, &name, NULL))
6693 return false;
6694
6695 /* Use the generic name if it is there. */
6696 name = name ? name : code->expr1->value.function.esym->name;
6697 code->expr1->symtree = expr->symtree;
6698 code->expr1->ref = gfc_copy_ref (expr->ref);
6699
6700 /* Trim away the extraneous references that emerge from nested
6701 use of interface.c (extend_expr). */
6702 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6703 if (class_ref && class_ref->next)
6704 {
6705 gfc_free_ref_list (class_ref->next);
6706 class_ref->next = NULL;
6707 }
6708 else if (code->expr1->ref && !class_ref)
6709 {
6710 gfc_free_ref_list (code->expr1->ref);
6711 code->expr1->ref = NULL;
6712 }
6713
6714 /* Now use the procedure in the vtable. */
6715 gfc_add_vptr_component (code->expr1);
6716 gfc_add_component_ref (code->expr1, name);
6717 code->expr1->value.function.esym = NULL;
6718 if (expr->expr_type != EXPR_VARIABLE)
6719 code->expr1->base_expr = expr;
6720 return true;
6721 }
6722
6723 if (st == NULL)
6724 return resolve_typebound_call (code, NULL, NULL);
6725
6726 if (!resolve_ref (code->expr1))
6727 return false;
6728
6729 /* Get the CLASS declared type. */
6730 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6731
6732 /* Weed out cases of the ultimate component being a derived type. */
6733 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6734 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6735 {
6736 gfc_free_ref_list (new_ref);
6737 return resolve_typebound_call (code, NULL, NULL);
6738 }
6739
6740 if (!resolve_typebound_call (code, &name, &overridable))
6741 {
6742 gfc_free_ref_list (new_ref);
6743 return false;
6744 }
6745 ts = code->expr1->ts;
6746
6747 if (overridable)
6748 {
6749 /* Convert the expression to a procedure pointer component call. */
6750 code->expr1->value.function.esym = NULL;
6751 code->expr1->symtree = st;
6752
6753 if (new_ref)
6754 code->expr1->ref = new_ref;
6755
6756 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6757 gfc_add_vptr_component (code->expr1);
6758 gfc_add_component_ref (code->expr1, name);
6759
6760 /* Recover the typespec for the expression. This is really only
6761 necessary for generic procedures, where the additional call
6762 to gfc_add_component_ref seems to throw the collection of the
6763 correct typespec. */
6764 code->expr1->ts = ts;
6765 }
6766 else if (new_ref)
6767 gfc_free_ref_list (new_ref);
6768
6769 return true;
6770 }
6771
6772
6773 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6774
6775 static bool
6776 resolve_ppc_call (gfc_code* c)
6777 {
6778 gfc_component *comp;
6779
6780 comp = gfc_get_proc_ptr_comp (c->expr1);
6781 gcc_assert (comp != NULL);
6782
6783 c->resolved_sym = c->expr1->symtree->n.sym;
6784 c->expr1->expr_type = EXPR_VARIABLE;
6785
6786 if (!comp->attr.subroutine)
6787 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6788
6789 if (!resolve_ref (c->expr1))
6790 return false;
6791
6792 if (!update_ppc_arglist (c->expr1))
6793 return false;
6794
6795 c->ext.actual = c->expr1->value.compcall.actual;
6796
6797 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6798 !(comp->ts.interface
6799 && comp->ts.interface->formal)))
6800 return false;
6801
6802 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6803 return false;
6804
6805 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6806
6807 return true;
6808 }
6809
6810
6811 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6812
6813 static bool
6814 resolve_expr_ppc (gfc_expr* e)
6815 {
6816 gfc_component *comp;
6817
6818 comp = gfc_get_proc_ptr_comp (e);
6819 gcc_assert (comp != NULL);
6820
6821 /* Convert to EXPR_FUNCTION. */
6822 e->expr_type = EXPR_FUNCTION;
6823 e->value.function.isym = NULL;
6824 e->value.function.actual = e->value.compcall.actual;
6825 e->ts = comp->ts;
6826 if (comp->as != NULL)
6827 e->rank = comp->as->rank;
6828
6829 if (!comp->attr.function)
6830 gfc_add_function (&comp->attr, comp->name, &e->where);
6831
6832 if (!resolve_ref (e))
6833 return false;
6834
6835 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6836 !(comp->ts.interface
6837 && comp->ts.interface->formal)))
6838 return false;
6839
6840 if (!update_ppc_arglist (e))
6841 return false;
6842
6843 if (!check_pure_function(e))
6844 return false;
6845
6846 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6847
6848 return true;
6849 }
6850
6851
6852 static bool
6853 gfc_is_expandable_expr (gfc_expr *e)
6854 {
6855 gfc_constructor *con;
6856
6857 if (e->expr_type == EXPR_ARRAY)
6858 {
6859 /* Traverse the constructor looking for variables that are flavor
6860 parameter. Parameters must be expanded since they are fully used at
6861 compile time. */
6862 con = gfc_constructor_first (e->value.constructor);
6863 for (; con; con = gfc_constructor_next (con))
6864 {
6865 if (con->expr->expr_type == EXPR_VARIABLE
6866 && con->expr->symtree
6867 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6868 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6869 return true;
6870 if (con->expr->expr_type == EXPR_ARRAY
6871 && gfc_is_expandable_expr (con->expr))
6872 return true;
6873 }
6874 }
6875
6876 return false;
6877 }
6878
6879
6880 /* Sometimes variables in specification expressions of the result
6881 of module procedures in submodules wind up not being the 'real'
6882 dummy. Find this, if possible, in the namespace of the first
6883 formal argument. */
6884
6885 static void
6886 fixup_unique_dummy (gfc_expr *e)
6887 {
6888 gfc_symtree *st = NULL;
6889 gfc_symbol *s = NULL;
6890
6891 if (e->symtree->n.sym->ns->proc_name
6892 && e->symtree->n.sym->ns->proc_name->formal)
6893 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6894
6895 if (s != NULL)
6896 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6897
6898 if (st != NULL
6899 && st->n.sym != NULL
6900 && st->n.sym->attr.dummy)
6901 e->symtree = st;
6902 }
6903
6904 /* Resolve an expression. That is, make sure that types of operands agree
6905 with their operators, intrinsic operators are converted to function calls
6906 for overloaded types and unresolved function references are resolved. */
6907
6908 bool
6909 gfc_resolve_expr (gfc_expr *e)
6910 {
6911 bool t;
6912 bool inquiry_save, actual_arg_save, first_actual_arg_save;
6913
6914 if (e == NULL || e->do_not_resolve_again)
6915 return true;
6916
6917 /* inquiry_argument only applies to variables. */
6918 inquiry_save = inquiry_argument;
6919 actual_arg_save = actual_arg;
6920 first_actual_arg_save = first_actual_arg;
6921
6922 if (e->expr_type != EXPR_VARIABLE)
6923 {
6924 inquiry_argument = false;
6925 actual_arg = false;
6926 first_actual_arg = false;
6927 }
6928 else if (e->symtree != NULL
6929 && *e->symtree->name == '@'
6930 && e->symtree->n.sym->attr.dummy)
6931 {
6932 /* Deal with submodule specification expressions that are not
6933 found to be referenced in module.c(read_cleanup). */
6934 fixup_unique_dummy (e);
6935 }
6936
6937 switch (e->expr_type)
6938 {
6939 case EXPR_OP:
6940 t = resolve_operator (e);
6941 break;
6942
6943 case EXPR_FUNCTION:
6944 case EXPR_VARIABLE:
6945
6946 if (check_host_association (e))
6947 t = resolve_function (e);
6948 else
6949 t = resolve_variable (e);
6950
6951 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
6952 && e->ref->type != REF_SUBSTRING)
6953 gfc_resolve_substring_charlen (e);
6954
6955 break;
6956
6957 case EXPR_COMPCALL:
6958 t = resolve_typebound_function (e);
6959 break;
6960
6961 case EXPR_SUBSTRING:
6962 t = resolve_ref (e);
6963 break;
6964
6965 case EXPR_CONSTANT:
6966 case EXPR_NULL:
6967 t = true;
6968 break;
6969
6970 case EXPR_PPC:
6971 t = resolve_expr_ppc (e);
6972 break;
6973
6974 case EXPR_ARRAY:
6975 t = false;
6976 if (!resolve_ref (e))
6977 break;
6978
6979 t = gfc_resolve_array_constructor (e);
6980 /* Also try to expand a constructor. */
6981 if (t)
6982 {
6983 expression_rank (e);
6984 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
6985 gfc_expand_constructor (e, false);
6986 }
6987
6988 /* This provides the opportunity for the length of constructors with
6989 character valued function elements to propagate the string length
6990 to the expression. */
6991 if (t && e->ts.type == BT_CHARACTER)
6992 {
6993 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
6994 here rather then add a duplicate test for it above. */
6995 gfc_expand_constructor (e, false);
6996 t = gfc_resolve_character_array_constructor (e);
6997 }
6998
6999 break;
7000
7001 case EXPR_STRUCTURE:
7002 t = resolve_ref (e);
7003 if (!t)
7004 break;
7005
7006 t = resolve_structure_cons (e, 0);
7007 if (!t)
7008 break;
7009
7010 t = gfc_simplify_expr (e, 0);
7011 break;
7012
7013 default:
7014 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
7015 }
7016
7017 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
7018 fixup_charlen (e);
7019
7020 inquiry_argument = inquiry_save;
7021 actual_arg = actual_arg_save;
7022 first_actual_arg = first_actual_arg_save;
7023
7024 /* For some reason, resolving these expressions a second time mangles
7025 the typespec of the expression itself. */
7026 if (t && e->expr_type == EXPR_VARIABLE
7027 && e->symtree->n.sym->attr.select_rank_temporary
7028 && UNLIMITED_POLY (e->symtree->n.sym))
7029 e->do_not_resolve_again = 1;
7030
7031 return t;
7032 }
7033
7034
7035 /* Resolve an expression from an iterator. They must be scalar and have
7036 INTEGER or (optionally) REAL type. */
7037
7038 static bool
7039 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
7040 const char *name_msgid)
7041 {
7042 if (!gfc_resolve_expr (expr))
7043 return false;
7044
7045 if (expr->rank != 0)
7046 {
7047 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
7048 return false;
7049 }
7050
7051 if (expr->ts.type != BT_INTEGER)
7052 {
7053 if (expr->ts.type == BT_REAL)
7054 {
7055 if (real_ok)
7056 return gfc_notify_std (GFC_STD_F95_DEL,
7057 "%s at %L must be integer",
7058 _(name_msgid), &expr->where);
7059 else
7060 {
7061 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
7062 &expr->where);
7063 return false;
7064 }
7065 }
7066 else
7067 {
7068 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
7069 return false;
7070 }
7071 }
7072 return true;
7073 }
7074
7075
7076 /* Resolve the expressions in an iterator structure. If REAL_OK is
7077 false allow only INTEGER type iterators, otherwise allow REAL types.
7078 Set own_scope to true for ac-implied-do and data-implied-do as those
7079 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
7080
7081 bool
7082 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
7083 {
7084 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
7085 return false;
7086
7087 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
7088 _("iterator variable")))
7089 return false;
7090
7091 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
7092 "Start expression in DO loop"))
7093 return false;
7094
7095 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
7096 "End expression in DO loop"))
7097 return false;
7098
7099 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
7100 "Step expression in DO loop"))
7101 return false;
7102
7103 /* Convert start, end, and step to the same type as var. */
7104 if (iter->start->ts.kind != iter->var->ts.kind
7105 || iter->start->ts.type != iter->var->ts.type)
7106 gfc_convert_type (iter->start, &iter->var->ts, 1);
7107
7108 if (iter->end->ts.kind != iter->var->ts.kind
7109 || iter->end->ts.type != iter->var->ts.type)
7110 gfc_convert_type (iter->end, &iter->var->ts, 1);
7111
7112 if (iter->step->ts.kind != iter->var->ts.kind
7113 || iter->step->ts.type != iter->var->ts.type)
7114 gfc_convert_type (iter->step, &iter->var->ts, 1);
7115
7116 if (iter->step->expr_type == EXPR_CONSTANT)
7117 {
7118 if ((iter->step->ts.type == BT_INTEGER
7119 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
7120 || (iter->step->ts.type == BT_REAL
7121 && mpfr_sgn (iter->step->value.real) == 0))
7122 {
7123 gfc_error ("Step expression in DO loop at %L cannot be zero",
7124 &iter->step->where);
7125 return false;
7126 }
7127 }
7128
7129 if (iter->start->expr_type == EXPR_CONSTANT
7130 && iter->end->expr_type == EXPR_CONSTANT
7131 && iter->step->expr_type == EXPR_CONSTANT)
7132 {
7133 int sgn, cmp;
7134 if (iter->start->ts.type == BT_INTEGER)
7135 {
7136 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
7137 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
7138 }
7139 else
7140 {
7141 sgn = mpfr_sgn (iter->step->value.real);
7142 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
7143 }
7144 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
7145 gfc_warning (OPT_Wzerotrip,
7146 "DO loop at %L will be executed zero times",
7147 &iter->step->where);
7148 }
7149
7150 if (iter->end->expr_type == EXPR_CONSTANT
7151 && iter->end->ts.type == BT_INTEGER
7152 && iter->step->expr_type == EXPR_CONSTANT
7153 && iter->step->ts.type == BT_INTEGER
7154 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
7155 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
7156 {
7157 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
7158 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
7159
7160 if (is_step_positive
7161 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
7162 gfc_warning (OPT_Wundefined_do_loop,
7163 "DO loop at %L is undefined as it overflows",
7164 &iter->step->where);
7165 else if (!is_step_positive
7166 && mpz_cmp (iter->end->value.integer,
7167 gfc_integer_kinds[k].min_int) == 0)
7168 gfc_warning (OPT_Wundefined_do_loop,
7169 "DO loop at %L is undefined as it underflows",
7170 &iter->step->where);
7171 }
7172
7173 return true;
7174 }
7175
7176
7177 /* Traversal function for find_forall_index. f == 2 signals that
7178 that variable itself is not to be checked - only the references. */
7179
7180 static bool
7181 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
7182 {
7183 if (expr->expr_type != EXPR_VARIABLE)
7184 return false;
7185
7186 /* A scalar assignment */
7187 if (!expr->ref || *f == 1)
7188 {
7189 if (expr->symtree->n.sym == sym)
7190 return true;
7191 else
7192 return false;
7193 }
7194
7195 if (*f == 2)
7196 *f = 1;
7197 return false;
7198 }
7199
7200
7201 /* Check whether the FORALL index appears in the expression or not.
7202 Returns true if SYM is found in EXPR. */
7203
7204 bool
7205 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
7206 {
7207 if (gfc_traverse_expr (expr, sym, forall_index, f))
7208 return true;
7209 else
7210 return false;
7211 }
7212
7213
7214 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
7215 to be a scalar INTEGER variable. The subscripts and stride are scalar
7216 INTEGERs, and if stride is a constant it must be nonzero.
7217 Furthermore "A subscript or stride in a forall-triplet-spec shall
7218 not contain a reference to any index-name in the
7219 forall-triplet-spec-list in which it appears." (7.5.4.1) */
7220
7221 static void
7222 resolve_forall_iterators (gfc_forall_iterator *it)
7223 {
7224 gfc_forall_iterator *iter, *iter2;
7225
7226 for (iter = it; iter; iter = iter->next)
7227 {
7228 if (gfc_resolve_expr (iter->var)
7229 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
7230 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
7231 &iter->var->where);
7232
7233 if (gfc_resolve_expr (iter->start)
7234 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
7235 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
7236 &iter->start->where);
7237 if (iter->var->ts.kind != iter->start->ts.kind)
7238 gfc_convert_type (iter->start, &iter->var->ts, 1);
7239
7240 if (gfc_resolve_expr (iter->end)
7241 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
7242 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
7243 &iter->end->where);
7244 if (iter->var->ts.kind != iter->end->ts.kind)
7245 gfc_convert_type (iter->end, &iter->var->ts, 1);
7246
7247 if (gfc_resolve_expr (iter->stride))
7248 {
7249 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7250 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7251 &iter->stride->where, "INTEGER");
7252
7253 if (iter->stride->expr_type == EXPR_CONSTANT
7254 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7255 gfc_error ("FORALL stride expression at %L cannot be zero",
7256 &iter->stride->where);
7257 }
7258 if (iter->var->ts.kind != iter->stride->ts.kind)
7259 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7260 }
7261
7262 for (iter = it; iter; iter = iter->next)
7263 for (iter2 = iter; iter2; iter2 = iter2->next)
7264 {
7265 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7266 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7267 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7268 gfc_error ("FORALL index %qs may not appear in triplet "
7269 "specification at %L", iter->var->symtree->name,
7270 &iter2->start->where);
7271 }
7272 }
7273
7274
7275 /* Given a pointer to a symbol that is a derived type, see if it's
7276 inaccessible, i.e. if it's defined in another module and the components are
7277 PRIVATE. The search is recursive if necessary. Returns zero if no
7278 inaccessible components are found, nonzero otherwise. */
7279
7280 static int
7281 derived_inaccessible (gfc_symbol *sym)
7282 {
7283 gfc_component *c;
7284
7285 if (sym->attr.use_assoc && sym->attr.private_comp)
7286 return 1;
7287
7288 for (c = sym->components; c; c = c->next)
7289 {
7290 /* Prevent an infinite loop through this function. */
7291 if (c->ts.type == BT_DERIVED && c->attr.pointer
7292 && sym == c->ts.u.derived)
7293 continue;
7294
7295 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7296 return 1;
7297 }
7298
7299 return 0;
7300 }
7301
7302
7303 /* Resolve the argument of a deallocate expression. The expression must be
7304 a pointer or a full array. */
7305
7306 static bool
7307 resolve_deallocate_expr (gfc_expr *e)
7308 {
7309 symbol_attribute attr;
7310 int allocatable, pointer;
7311 gfc_ref *ref;
7312 gfc_symbol *sym;
7313 gfc_component *c;
7314 bool unlimited;
7315
7316 if (!gfc_resolve_expr (e))
7317 return false;
7318
7319 if (e->expr_type != EXPR_VARIABLE)
7320 goto bad;
7321
7322 sym = e->symtree->n.sym;
7323 unlimited = UNLIMITED_POLY(sym);
7324
7325 if (sym->ts.type == BT_CLASS)
7326 {
7327 allocatable = CLASS_DATA (sym)->attr.allocatable;
7328 pointer = CLASS_DATA (sym)->attr.class_pointer;
7329 }
7330 else
7331 {
7332 allocatable = sym->attr.allocatable;
7333 pointer = sym->attr.pointer;
7334 }
7335 for (ref = e->ref; ref; ref = ref->next)
7336 {
7337 switch (ref->type)
7338 {
7339 case REF_ARRAY:
7340 if (ref->u.ar.type != AR_FULL
7341 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7342 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7343 allocatable = 0;
7344 break;
7345
7346 case REF_COMPONENT:
7347 c = ref->u.c.component;
7348 if (c->ts.type == BT_CLASS)
7349 {
7350 allocatable = CLASS_DATA (c)->attr.allocatable;
7351 pointer = CLASS_DATA (c)->attr.class_pointer;
7352 }
7353 else
7354 {
7355 allocatable = c->attr.allocatable;
7356 pointer = c->attr.pointer;
7357 }
7358 break;
7359
7360 case REF_SUBSTRING:
7361 case REF_INQUIRY:
7362 allocatable = 0;
7363 break;
7364 }
7365 }
7366
7367 attr = gfc_expr_attr (e);
7368
7369 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7370 {
7371 bad:
7372 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7373 &e->where);
7374 return false;
7375 }
7376
7377 /* F2008, C644. */
7378 if (gfc_is_coindexed (e))
7379 {
7380 gfc_error ("Coindexed allocatable object at %L", &e->where);
7381 return false;
7382 }
7383
7384 if (pointer
7385 && !gfc_check_vardef_context (e, true, true, false,
7386 _("DEALLOCATE object")))
7387 return false;
7388 if (!gfc_check_vardef_context (e, false, true, false,
7389 _("DEALLOCATE object")))
7390 return false;
7391
7392 return true;
7393 }
7394
7395
7396 /* Returns true if the expression e contains a reference to the symbol sym. */
7397 static bool
7398 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7399 {
7400 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7401 return true;
7402
7403 return false;
7404 }
7405
7406 bool
7407 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7408 {
7409 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7410 }
7411
7412
7413 /* Given the expression node e for an allocatable/pointer of derived type to be
7414 allocated, get the expression node to be initialized afterwards (needed for
7415 derived types with default initializers, and derived types with allocatable
7416 components that need nullification.) */
7417
7418 gfc_expr *
7419 gfc_expr_to_initialize (gfc_expr *e)
7420 {
7421 gfc_expr *result;
7422 gfc_ref *ref;
7423 int i;
7424
7425 result = gfc_copy_expr (e);
7426
7427 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7428 for (ref = result->ref; ref; ref = ref->next)
7429 if (ref->type == REF_ARRAY && ref->next == NULL)
7430 {
7431 if (ref->u.ar.dimen == 0
7432 && ref->u.ar.as && ref->u.ar.as->corank)
7433 return result;
7434
7435 ref->u.ar.type = AR_FULL;
7436
7437 for (i = 0; i < ref->u.ar.dimen; i++)
7438 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7439
7440 break;
7441 }
7442
7443 gfc_free_shape (&result->shape, result->rank);
7444
7445 /* Recalculate rank, shape, etc. */
7446 gfc_resolve_expr (result);
7447 return result;
7448 }
7449
7450
7451 /* If the last ref of an expression is an array ref, return a copy of the
7452 expression with that one removed. Otherwise, a copy of the original
7453 expression. This is used for allocate-expressions and pointer assignment
7454 LHS, where there may be an array specification that needs to be stripped
7455 off when using gfc_check_vardef_context. */
7456
7457 static gfc_expr*
7458 remove_last_array_ref (gfc_expr* e)
7459 {
7460 gfc_expr* e2;
7461 gfc_ref** r;
7462
7463 e2 = gfc_copy_expr (e);
7464 for (r = &e2->ref; *r; r = &(*r)->next)
7465 if ((*r)->type == REF_ARRAY && !(*r)->next)
7466 {
7467 gfc_free_ref_list (*r);
7468 *r = NULL;
7469 break;
7470 }
7471
7472 return e2;
7473 }
7474
7475
7476 /* Used in resolve_allocate_expr to check that a allocation-object and
7477 a source-expr are conformable. This does not catch all possible
7478 cases; in particular a runtime checking is needed. */
7479
7480 static bool
7481 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7482 {
7483 gfc_ref *tail;
7484 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7485
7486 /* First compare rank. */
7487 if ((tail && (!tail->u.ar.as || e1->rank != tail->u.ar.as->rank))
7488 || (!tail && e1->rank != e2->rank))
7489 {
7490 gfc_error ("Source-expr at %L must be scalar or have the "
7491 "same rank as the allocate-object at %L",
7492 &e1->where, &e2->where);
7493 return false;
7494 }
7495
7496 if (e1->shape)
7497 {
7498 int i;
7499 mpz_t s;
7500
7501 mpz_init (s);
7502
7503 for (i = 0; i < e1->rank; i++)
7504 {
7505 if (tail->u.ar.start[i] == NULL)
7506 break;
7507
7508 if (tail->u.ar.end[i])
7509 {
7510 mpz_set (s, tail->u.ar.end[i]->value.integer);
7511 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7512 mpz_add_ui (s, s, 1);
7513 }
7514 else
7515 {
7516 mpz_set (s, tail->u.ar.start[i]->value.integer);
7517 }
7518
7519 if (mpz_cmp (e1->shape[i], s) != 0)
7520 {
7521 gfc_error ("Source-expr at %L and allocate-object at %L must "
7522 "have the same shape", &e1->where, &e2->where);
7523 mpz_clear (s);
7524 return false;
7525 }
7526 }
7527
7528 mpz_clear (s);
7529 }
7530
7531 return true;
7532 }
7533
7534
7535 /* Resolve the expression in an ALLOCATE statement, doing the additional
7536 checks to see whether the expression is OK or not. The expression must
7537 have a trailing array reference that gives the size of the array. */
7538
7539 static bool
7540 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7541 {
7542 int i, pointer, allocatable, dimension, is_abstract;
7543 int codimension;
7544 bool coindexed;
7545 bool unlimited;
7546 symbol_attribute attr;
7547 gfc_ref *ref, *ref2;
7548 gfc_expr *e2;
7549 gfc_array_ref *ar;
7550 gfc_symbol *sym = NULL;
7551 gfc_alloc *a;
7552 gfc_component *c;
7553 bool t;
7554
7555 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7556 checking of coarrays. */
7557 for (ref = e->ref; ref; ref = ref->next)
7558 if (ref->next == NULL)
7559 break;
7560
7561 if (ref && ref->type == REF_ARRAY)
7562 ref->u.ar.in_allocate = true;
7563
7564 if (!gfc_resolve_expr (e))
7565 goto failure;
7566
7567 /* Make sure the expression is allocatable or a pointer. If it is
7568 pointer, the next-to-last reference must be a pointer. */
7569
7570 ref2 = NULL;
7571 if (e->symtree)
7572 sym = e->symtree->n.sym;
7573
7574 /* Check whether ultimate component is abstract and CLASS. */
7575 is_abstract = 0;
7576
7577 /* Is the allocate-object unlimited polymorphic? */
7578 unlimited = UNLIMITED_POLY(e);
7579
7580 if (e->expr_type != EXPR_VARIABLE)
7581 {
7582 allocatable = 0;
7583 attr = gfc_expr_attr (e);
7584 pointer = attr.pointer;
7585 dimension = attr.dimension;
7586 codimension = attr.codimension;
7587 }
7588 else
7589 {
7590 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7591 {
7592 allocatable = CLASS_DATA (sym)->attr.allocatable;
7593 pointer = CLASS_DATA (sym)->attr.class_pointer;
7594 dimension = CLASS_DATA (sym)->attr.dimension;
7595 codimension = CLASS_DATA (sym)->attr.codimension;
7596 is_abstract = CLASS_DATA (sym)->attr.abstract;
7597 }
7598 else
7599 {
7600 allocatable = sym->attr.allocatable;
7601 pointer = sym->attr.pointer;
7602 dimension = sym->attr.dimension;
7603 codimension = sym->attr.codimension;
7604 }
7605
7606 coindexed = false;
7607
7608 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7609 {
7610 switch (ref->type)
7611 {
7612 case REF_ARRAY:
7613 if (ref->u.ar.codimen > 0)
7614 {
7615 int n;
7616 for (n = ref->u.ar.dimen;
7617 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7618 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7619 {
7620 coindexed = true;
7621 break;
7622 }
7623 }
7624
7625 if (ref->next != NULL)
7626 pointer = 0;
7627 break;
7628
7629 case REF_COMPONENT:
7630 /* F2008, C644. */
7631 if (coindexed)
7632 {
7633 gfc_error ("Coindexed allocatable object at %L",
7634 &e->where);
7635 goto failure;
7636 }
7637
7638 c = ref->u.c.component;
7639 if (c->ts.type == BT_CLASS)
7640 {
7641 allocatable = CLASS_DATA (c)->attr.allocatable;
7642 pointer = CLASS_DATA (c)->attr.class_pointer;
7643 dimension = CLASS_DATA (c)->attr.dimension;
7644 codimension = CLASS_DATA (c)->attr.codimension;
7645 is_abstract = CLASS_DATA (c)->attr.abstract;
7646 }
7647 else
7648 {
7649 allocatable = c->attr.allocatable;
7650 pointer = c->attr.pointer;
7651 dimension = c->attr.dimension;
7652 codimension = c->attr.codimension;
7653 is_abstract = c->attr.abstract;
7654 }
7655 break;
7656
7657 case REF_SUBSTRING:
7658 case REF_INQUIRY:
7659 allocatable = 0;
7660 pointer = 0;
7661 break;
7662 }
7663 }
7664 }
7665
7666 /* Check for F08:C628. */
7667 if (allocatable == 0 && pointer == 0 && !unlimited)
7668 {
7669 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7670 &e->where);
7671 goto failure;
7672 }
7673
7674 /* Some checks for the SOURCE tag. */
7675 if (code->expr3)
7676 {
7677 /* Check F03:C631. */
7678 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7679 {
7680 gfc_error ("Type of entity at %L is type incompatible with "
7681 "source-expr at %L", &e->where, &code->expr3->where);
7682 goto failure;
7683 }
7684
7685 /* Check F03:C632 and restriction following Note 6.18. */
7686 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7687 goto failure;
7688
7689 /* Check F03:C633. */
7690 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7691 {
7692 gfc_error ("The allocate-object at %L and the source-expr at %L "
7693 "shall have the same kind type parameter",
7694 &e->where, &code->expr3->where);
7695 goto failure;
7696 }
7697
7698 /* Check F2008, C642. */
7699 if (code->expr3->ts.type == BT_DERIVED
7700 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7701 || (code->expr3->ts.u.derived->from_intmod
7702 == INTMOD_ISO_FORTRAN_ENV
7703 && code->expr3->ts.u.derived->intmod_sym_id
7704 == ISOFORTRAN_LOCK_TYPE)))
7705 {
7706 gfc_error ("The source-expr at %L shall neither be of type "
7707 "LOCK_TYPE nor have a LOCK_TYPE component if "
7708 "allocate-object at %L is a coarray",
7709 &code->expr3->where, &e->where);
7710 goto failure;
7711 }
7712
7713 /* Check TS18508, C702/C703. */
7714 if (code->expr3->ts.type == BT_DERIVED
7715 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7716 || (code->expr3->ts.u.derived->from_intmod
7717 == INTMOD_ISO_FORTRAN_ENV
7718 && code->expr3->ts.u.derived->intmod_sym_id
7719 == ISOFORTRAN_EVENT_TYPE)))
7720 {
7721 gfc_error ("The source-expr at %L shall neither be of type "
7722 "EVENT_TYPE nor have a EVENT_TYPE component if "
7723 "allocate-object at %L is a coarray",
7724 &code->expr3->where, &e->where);
7725 goto failure;
7726 }
7727 }
7728
7729 /* Check F08:C629. */
7730 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7731 && !code->expr3)
7732 {
7733 gcc_assert (e->ts.type == BT_CLASS);
7734 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7735 "type-spec or source-expr", sym->name, &e->where);
7736 goto failure;
7737 }
7738
7739 /* Check F08:C632. */
7740 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7741 && !UNLIMITED_POLY (e))
7742 {
7743 int cmp;
7744
7745 if (!e->ts.u.cl->length)
7746 goto failure;
7747
7748 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7749 code->ext.alloc.ts.u.cl->length);
7750 if (cmp == 1 || cmp == -1 || cmp == -3)
7751 {
7752 gfc_error ("Allocating %s at %L with type-spec requires the same "
7753 "character-length parameter as in the declaration",
7754 sym->name, &e->where);
7755 goto failure;
7756 }
7757 }
7758
7759 /* In the variable definition context checks, gfc_expr_attr is used
7760 on the expression. This is fooled by the array specification
7761 present in e, thus we have to eliminate that one temporarily. */
7762 e2 = remove_last_array_ref (e);
7763 t = true;
7764 if (t && pointer)
7765 t = gfc_check_vardef_context (e2, true, true, false,
7766 _("ALLOCATE object"));
7767 if (t)
7768 t = gfc_check_vardef_context (e2, false, true, false,
7769 _("ALLOCATE object"));
7770 gfc_free_expr (e2);
7771 if (!t)
7772 goto failure;
7773
7774 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7775 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7776 {
7777 /* For class arrays, the initialization with SOURCE is done
7778 using _copy and trans_call. It is convenient to exploit that
7779 when the allocated type is different from the declared type but
7780 no SOURCE exists by setting expr3. */
7781 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7782 }
7783 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7784 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7785 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7786 {
7787 /* We have to zero initialize the integer variable. */
7788 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7789 }
7790
7791 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7792 {
7793 /* Make sure the vtab symbol is present when
7794 the module variables are generated. */
7795 gfc_typespec ts = e->ts;
7796 if (code->expr3)
7797 ts = code->expr3->ts;
7798 else if (code->ext.alloc.ts.type == BT_DERIVED)
7799 ts = code->ext.alloc.ts;
7800
7801 /* Finding the vtab also publishes the type's symbol. Therefore this
7802 statement is necessary. */
7803 gfc_find_derived_vtab (ts.u.derived);
7804 }
7805 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7806 {
7807 /* Again, make sure the vtab symbol is present when
7808 the module variables are generated. */
7809 gfc_typespec *ts = NULL;
7810 if (code->expr3)
7811 ts = &code->expr3->ts;
7812 else
7813 ts = &code->ext.alloc.ts;
7814
7815 gcc_assert (ts);
7816
7817 /* Finding the vtab also publishes the type's symbol. Therefore this
7818 statement is necessary. */
7819 gfc_find_vtab (ts);
7820 }
7821
7822 if (dimension == 0 && codimension == 0)
7823 goto success;
7824
7825 /* Make sure the last reference node is an array specification. */
7826
7827 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7828 || (dimension && ref2->u.ar.dimen == 0))
7829 {
7830 /* F08:C633. */
7831 if (code->expr3)
7832 {
7833 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7834 "in ALLOCATE statement at %L", &e->where))
7835 goto failure;
7836 if (code->expr3->rank != 0)
7837 *array_alloc_wo_spec = true;
7838 else
7839 {
7840 gfc_error ("Array specification or array-valued SOURCE= "
7841 "expression required in ALLOCATE statement at %L",
7842 &e->where);
7843 goto failure;
7844 }
7845 }
7846 else
7847 {
7848 gfc_error ("Array specification required in ALLOCATE statement "
7849 "at %L", &e->where);
7850 goto failure;
7851 }
7852 }
7853
7854 /* Make sure that the array section reference makes sense in the
7855 context of an ALLOCATE specification. */
7856
7857 ar = &ref2->u.ar;
7858
7859 if (codimension)
7860 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7861 {
7862 switch (ar->dimen_type[i])
7863 {
7864 case DIMEN_THIS_IMAGE:
7865 gfc_error ("Coarray specification required in ALLOCATE statement "
7866 "at %L", &e->where);
7867 goto failure;
7868
7869 case DIMEN_RANGE:
7870 if (ar->start[i] == 0 || ar->end[i] == 0)
7871 {
7872 /* If ar->stride[i] is NULL, we issued a previous error. */
7873 if (ar->stride[i] == NULL)
7874 gfc_error ("Bad array specification in ALLOCATE statement "
7875 "at %L", &e->where);
7876 goto failure;
7877 }
7878 else if (gfc_dep_compare_expr (ar->start[i], ar->end[i]) == 1)
7879 {
7880 gfc_error ("Upper cobound is less than lower cobound at %L",
7881 &ar->start[i]->where);
7882 goto failure;
7883 }
7884 break;
7885
7886 case DIMEN_ELEMENT:
7887 if (ar->start[i]->expr_type == EXPR_CONSTANT)
7888 {
7889 gcc_assert (ar->start[i]->ts.type == BT_INTEGER);
7890 if (mpz_cmp_si (ar->start[i]->value.integer, 1) < 0)
7891 {
7892 gfc_error ("Upper cobound is less than lower cobound "
7893 "of 1 at %L", &ar->start[i]->where);
7894 goto failure;
7895 }
7896 }
7897 break;
7898
7899 case DIMEN_STAR:
7900 break;
7901
7902 default:
7903 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7904 &e->where);
7905 goto failure;
7906
7907 }
7908 }
7909 for (i = 0; i < ar->dimen; i++)
7910 {
7911 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
7912 goto check_symbols;
7913
7914 switch (ar->dimen_type[i])
7915 {
7916 case DIMEN_ELEMENT:
7917 break;
7918
7919 case DIMEN_RANGE:
7920 if (ar->start[i] != NULL
7921 && ar->end[i] != NULL
7922 && ar->stride[i] == NULL)
7923 break;
7924
7925 /* Fall through. */
7926
7927 case DIMEN_UNKNOWN:
7928 case DIMEN_VECTOR:
7929 case DIMEN_STAR:
7930 case DIMEN_THIS_IMAGE:
7931 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7932 &e->where);
7933 goto failure;
7934 }
7935
7936 check_symbols:
7937 for (a = code->ext.alloc.list; a; a = a->next)
7938 {
7939 sym = a->expr->symtree->n.sym;
7940
7941 /* TODO - check derived type components. */
7942 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
7943 continue;
7944
7945 if ((ar->start[i] != NULL
7946 && gfc_find_sym_in_expr (sym, ar->start[i]))
7947 || (ar->end[i] != NULL
7948 && gfc_find_sym_in_expr (sym, ar->end[i])))
7949 {
7950 gfc_error ("%qs must not appear in the array specification at "
7951 "%L in the same ALLOCATE statement where it is "
7952 "itself allocated", sym->name, &ar->where);
7953 goto failure;
7954 }
7955 }
7956 }
7957
7958 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
7959 {
7960 if (ar->dimen_type[i] == DIMEN_ELEMENT
7961 || ar->dimen_type[i] == DIMEN_RANGE)
7962 {
7963 if (i == (ar->dimen + ar->codimen - 1))
7964 {
7965 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
7966 "statement at %L", &e->where);
7967 goto failure;
7968 }
7969 continue;
7970 }
7971
7972 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
7973 && ar->stride[i] == NULL)
7974 break;
7975
7976 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
7977 &e->where);
7978 goto failure;
7979 }
7980
7981 success:
7982 return true;
7983
7984 failure:
7985 return false;
7986 }
7987
7988
7989 static void
7990 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
7991 {
7992 gfc_expr *stat, *errmsg, *pe, *qe;
7993 gfc_alloc *a, *p, *q;
7994
7995 stat = code->expr1;
7996 errmsg = code->expr2;
7997
7998 /* Check the stat variable. */
7999 if (stat)
8000 {
8001 gfc_check_vardef_context (stat, false, false, false,
8002 _("STAT variable"));
8003
8004 if ((stat->ts.type != BT_INTEGER
8005 && !(stat->ref && (stat->ref->type == REF_ARRAY
8006 || stat->ref->type == REF_COMPONENT)))
8007 || stat->rank > 0)
8008 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
8009 "variable", &stat->where);
8010
8011 for (p = code->ext.alloc.list; p; p = p->next)
8012 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
8013 {
8014 gfc_ref *ref1, *ref2;
8015 bool found = true;
8016
8017 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
8018 ref1 = ref1->next, ref2 = ref2->next)
8019 {
8020 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8021 continue;
8022 if (ref1->u.c.component->name != ref2->u.c.component->name)
8023 {
8024 found = false;
8025 break;
8026 }
8027 }
8028
8029 if (found)
8030 {
8031 gfc_error ("Stat-variable at %L shall not be %sd within "
8032 "the same %s statement", &stat->where, fcn, fcn);
8033 break;
8034 }
8035 }
8036 }
8037
8038 /* Check the errmsg variable. */
8039 if (errmsg)
8040 {
8041 if (!stat)
8042 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
8043 &errmsg->where);
8044
8045 gfc_check_vardef_context (errmsg, false, false, false,
8046 _("ERRMSG variable"));
8047
8048 /* F18:R928 alloc-opt is ERRMSG = errmsg-variable
8049 F18:R930 errmsg-variable is scalar-default-char-variable
8050 F18:R906 default-char-variable is variable
8051 F18:C906 default-char-variable shall be default character. */
8052 if ((errmsg->ts.type != BT_CHARACTER
8053 && !(errmsg->ref
8054 && (errmsg->ref->type == REF_ARRAY
8055 || errmsg->ref->type == REF_COMPONENT)))
8056 || errmsg->rank > 0
8057 || errmsg->ts.kind != gfc_default_character_kind)
8058 gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
8059 "variable", &errmsg->where);
8060
8061 for (p = code->ext.alloc.list; p; p = p->next)
8062 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
8063 {
8064 gfc_ref *ref1, *ref2;
8065 bool found = true;
8066
8067 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
8068 ref1 = ref1->next, ref2 = ref2->next)
8069 {
8070 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8071 continue;
8072 if (ref1->u.c.component->name != ref2->u.c.component->name)
8073 {
8074 found = false;
8075 break;
8076 }
8077 }
8078
8079 if (found)
8080 {
8081 gfc_error ("Errmsg-variable at %L shall not be %sd within "
8082 "the same %s statement", &errmsg->where, fcn, fcn);
8083 break;
8084 }
8085 }
8086 }
8087
8088 /* Check that an allocate-object appears only once in the statement. */
8089
8090 for (p = code->ext.alloc.list; p; p = p->next)
8091 {
8092 pe = p->expr;
8093 for (q = p->next; q; q = q->next)
8094 {
8095 qe = q->expr;
8096 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
8097 {
8098 /* This is a potential collision. */
8099 gfc_ref *pr = pe->ref;
8100 gfc_ref *qr = qe->ref;
8101
8102 /* Follow the references until
8103 a) They start to differ, in which case there is no error;
8104 you can deallocate a%b and a%c in a single statement
8105 b) Both of them stop, which is an error
8106 c) One of them stops, which is also an error. */
8107 while (1)
8108 {
8109 if (pr == NULL && qr == NULL)
8110 {
8111 gfc_error ("Allocate-object at %L also appears at %L",
8112 &pe->where, &qe->where);
8113 break;
8114 }
8115 else if (pr != NULL && qr == NULL)
8116 {
8117 gfc_error ("Allocate-object at %L is subobject of"
8118 " object at %L", &pe->where, &qe->where);
8119 break;
8120 }
8121 else if (pr == NULL && qr != NULL)
8122 {
8123 gfc_error ("Allocate-object at %L is subobject of"
8124 " object at %L", &qe->where, &pe->where);
8125 break;
8126 }
8127 /* Here, pr != NULL && qr != NULL */
8128 gcc_assert(pr->type == qr->type);
8129 if (pr->type == REF_ARRAY)
8130 {
8131 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
8132 which are legal. */
8133 gcc_assert (qr->type == REF_ARRAY);
8134
8135 if (pr->next && qr->next)
8136 {
8137 int i;
8138 gfc_array_ref *par = &(pr->u.ar);
8139 gfc_array_ref *qar = &(qr->u.ar);
8140
8141 for (i=0; i<par->dimen; i++)
8142 {
8143 if ((par->start[i] != NULL
8144 || qar->start[i] != NULL)
8145 && gfc_dep_compare_expr (par->start[i],
8146 qar->start[i]) != 0)
8147 goto break_label;
8148 }
8149 }
8150 }
8151 else
8152 {
8153 if (pr->u.c.component->name != qr->u.c.component->name)
8154 break;
8155 }
8156
8157 pr = pr->next;
8158 qr = qr->next;
8159 }
8160 break_label:
8161 ;
8162 }
8163 }
8164 }
8165
8166 if (strcmp (fcn, "ALLOCATE") == 0)
8167 {
8168 bool arr_alloc_wo_spec = false;
8169
8170 /* Resolving the expr3 in the loop over all objects to allocate would
8171 execute loop invariant code for each loop item. Therefore do it just
8172 once here. */
8173 if (code->expr3 && code->expr3->mold
8174 && code->expr3->ts.type == BT_DERIVED)
8175 {
8176 /* Default initialization via MOLD (non-polymorphic). */
8177 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
8178 if (rhs != NULL)
8179 {
8180 gfc_resolve_expr (rhs);
8181 gfc_free_expr (code->expr3);
8182 code->expr3 = rhs;
8183 }
8184 }
8185 for (a = code->ext.alloc.list; a; a = a->next)
8186 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
8187
8188 if (arr_alloc_wo_spec && code->expr3)
8189 {
8190 /* Mark the allocate to have to take the array specification
8191 from the expr3. */
8192 code->ext.alloc.arr_spec_from_expr3 = 1;
8193 }
8194 }
8195 else
8196 {
8197 for (a = code->ext.alloc.list; a; a = a->next)
8198 resolve_deallocate_expr (a->expr);
8199 }
8200 }
8201
8202
8203 /************ SELECT CASE resolution subroutines ************/
8204
8205 /* Callback function for our mergesort variant. Determines interval
8206 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
8207 op1 > op2. Assumes we're not dealing with the default case.
8208 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
8209 There are nine situations to check. */
8210
8211 static int
8212 compare_cases (const gfc_case *op1, const gfc_case *op2)
8213 {
8214 int retval;
8215
8216 if (op1->low == NULL) /* op1 = (:L) */
8217 {
8218 /* op2 = (:N), so overlap. */
8219 retval = 0;
8220 /* op2 = (M:) or (M:N), L < M */
8221 if (op2->low != NULL
8222 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8223 retval = -1;
8224 }
8225 else if (op1->high == NULL) /* op1 = (K:) */
8226 {
8227 /* op2 = (M:), so overlap. */
8228 retval = 0;
8229 /* op2 = (:N) or (M:N), K > N */
8230 if (op2->high != NULL
8231 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8232 retval = 1;
8233 }
8234 else /* op1 = (K:L) */
8235 {
8236 if (op2->low == NULL) /* op2 = (:N), K > N */
8237 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8238 ? 1 : 0;
8239 else if (op2->high == NULL) /* op2 = (M:), L < M */
8240 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8241 ? -1 : 0;
8242 else /* op2 = (M:N) */
8243 {
8244 retval = 0;
8245 /* L < M */
8246 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8247 retval = -1;
8248 /* K > N */
8249 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8250 retval = 1;
8251 }
8252 }
8253
8254 return retval;
8255 }
8256
8257
8258 /* Merge-sort a double linked case list, detecting overlap in the
8259 process. LIST is the head of the double linked case list before it
8260 is sorted. Returns the head of the sorted list if we don't see any
8261 overlap, or NULL otherwise. */
8262
8263 static gfc_case *
8264 check_case_overlap (gfc_case *list)
8265 {
8266 gfc_case *p, *q, *e, *tail;
8267 int insize, nmerges, psize, qsize, cmp, overlap_seen;
8268
8269 /* If the passed list was empty, return immediately. */
8270 if (!list)
8271 return NULL;
8272
8273 overlap_seen = 0;
8274 insize = 1;
8275
8276 /* Loop unconditionally. The only exit from this loop is a return
8277 statement, when we've finished sorting the case list. */
8278 for (;;)
8279 {
8280 p = list;
8281 list = NULL;
8282 tail = NULL;
8283
8284 /* Count the number of merges we do in this pass. */
8285 nmerges = 0;
8286
8287 /* Loop while there exists a merge to be done. */
8288 while (p)
8289 {
8290 int i;
8291
8292 /* Count this merge. */
8293 nmerges++;
8294
8295 /* Cut the list in two pieces by stepping INSIZE places
8296 forward in the list, starting from P. */
8297 psize = 0;
8298 q = p;
8299 for (i = 0; i < insize; i++)
8300 {
8301 psize++;
8302 q = q->right;
8303 if (!q)
8304 break;
8305 }
8306 qsize = insize;
8307
8308 /* Now we have two lists. Merge them! */
8309 while (psize > 0 || (qsize > 0 && q != NULL))
8310 {
8311 /* See from which the next case to merge comes from. */
8312 if (psize == 0)
8313 {
8314 /* P is empty so the next case must come from Q. */
8315 e = q;
8316 q = q->right;
8317 qsize--;
8318 }
8319 else if (qsize == 0 || q == NULL)
8320 {
8321 /* Q is empty. */
8322 e = p;
8323 p = p->right;
8324 psize--;
8325 }
8326 else
8327 {
8328 cmp = compare_cases (p, q);
8329 if (cmp < 0)
8330 {
8331 /* The whole case range for P is less than the
8332 one for Q. */
8333 e = p;
8334 p = p->right;
8335 psize--;
8336 }
8337 else if (cmp > 0)
8338 {
8339 /* The whole case range for Q is greater than
8340 the case range for P. */
8341 e = q;
8342 q = q->right;
8343 qsize--;
8344 }
8345 else
8346 {
8347 /* The cases overlap, or they are the same
8348 element in the list. Either way, we must
8349 issue an error and get the next case from P. */
8350 /* FIXME: Sort P and Q by line number. */
8351 gfc_error ("CASE label at %L overlaps with CASE "
8352 "label at %L", &p->where, &q->where);
8353 overlap_seen = 1;
8354 e = p;
8355 p = p->right;
8356 psize--;
8357 }
8358 }
8359
8360 /* Add the next element to the merged list. */
8361 if (tail)
8362 tail->right = e;
8363 else
8364 list = e;
8365 e->left = tail;
8366 tail = e;
8367 }
8368
8369 /* P has now stepped INSIZE places along, and so has Q. So
8370 they're the same. */
8371 p = q;
8372 }
8373 tail->right = NULL;
8374
8375 /* If we have done only one merge or none at all, we've
8376 finished sorting the cases. */
8377 if (nmerges <= 1)
8378 {
8379 if (!overlap_seen)
8380 return list;
8381 else
8382 return NULL;
8383 }
8384
8385 /* Otherwise repeat, merging lists twice the size. */
8386 insize *= 2;
8387 }
8388 }
8389
8390
8391 /* Check to see if an expression is suitable for use in a CASE statement.
8392 Makes sure that all case expressions are scalar constants of the same
8393 type. Return false if anything is wrong. */
8394
8395 static bool
8396 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8397 {
8398 if (e == NULL) return true;
8399
8400 if (e->ts.type != case_expr->ts.type)
8401 {
8402 gfc_error ("Expression in CASE statement at %L must be of type %s",
8403 &e->where, gfc_basic_typename (case_expr->ts.type));
8404 return false;
8405 }
8406
8407 /* C805 (R808) For a given case-construct, each case-value shall be of
8408 the same type as case-expr. For character type, length differences
8409 are allowed, but the kind type parameters shall be the same. */
8410
8411 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8412 {
8413 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8414 &e->where, case_expr->ts.kind);
8415 return false;
8416 }
8417
8418 /* Convert the case value kind to that of case expression kind,
8419 if needed */
8420
8421 if (e->ts.kind != case_expr->ts.kind)
8422 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8423
8424 if (e->rank != 0)
8425 {
8426 gfc_error ("Expression in CASE statement at %L must be scalar",
8427 &e->where);
8428 return false;
8429 }
8430
8431 return true;
8432 }
8433
8434
8435 /* Given a completely parsed select statement, we:
8436
8437 - Validate all expressions and code within the SELECT.
8438 - Make sure that the selection expression is not of the wrong type.
8439 - Make sure that no case ranges overlap.
8440 - Eliminate unreachable cases and unreachable code resulting from
8441 removing case labels.
8442
8443 The standard does allow unreachable cases, e.g. CASE (5:3). But
8444 they are a hassle for code generation, and to prevent that, we just
8445 cut them out here. This is not necessary for overlapping cases
8446 because they are illegal and we never even try to generate code.
8447
8448 We have the additional caveat that a SELECT construct could have
8449 been a computed GOTO in the source code. Fortunately we can fairly
8450 easily work around that here: The case_expr for a "real" SELECT CASE
8451 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8452 we have to do is make sure that the case_expr is a scalar integer
8453 expression. */
8454
8455 static void
8456 resolve_select (gfc_code *code, bool select_type)
8457 {
8458 gfc_code *body;
8459 gfc_expr *case_expr;
8460 gfc_case *cp, *default_case, *tail, *head;
8461 int seen_unreachable;
8462 int seen_logical;
8463 int ncases;
8464 bt type;
8465 bool t;
8466
8467 if (code->expr1 == NULL)
8468 {
8469 /* This was actually a computed GOTO statement. */
8470 case_expr = code->expr2;
8471 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8472 gfc_error ("Selection expression in computed GOTO statement "
8473 "at %L must be a scalar integer expression",
8474 &case_expr->where);
8475
8476 /* Further checking is not necessary because this SELECT was built
8477 by the compiler, so it should always be OK. Just move the
8478 case_expr from expr2 to expr so that we can handle computed
8479 GOTOs as normal SELECTs from here on. */
8480 code->expr1 = code->expr2;
8481 code->expr2 = NULL;
8482 return;
8483 }
8484
8485 case_expr = code->expr1;
8486 type = case_expr->ts.type;
8487
8488 /* F08:C830. */
8489 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8490 {
8491 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8492 &case_expr->where, gfc_typename (case_expr));
8493
8494 /* Punt. Going on here just produce more garbage error messages. */
8495 return;
8496 }
8497
8498 /* F08:R842. */
8499 if (!select_type && case_expr->rank != 0)
8500 {
8501 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8502 "expression", &case_expr->where);
8503
8504 /* Punt. */
8505 return;
8506 }
8507
8508 /* Raise a warning if an INTEGER case value exceeds the range of
8509 the case-expr. Later, all expressions will be promoted to the
8510 largest kind of all case-labels. */
8511
8512 if (type == BT_INTEGER)
8513 for (body = code->block; body; body = body->block)
8514 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8515 {
8516 if (cp->low
8517 && gfc_check_integer_range (cp->low->value.integer,
8518 case_expr->ts.kind) != ARITH_OK)
8519 gfc_warning (0, "Expression in CASE statement at %L is "
8520 "not in the range of %s", &cp->low->where,
8521 gfc_typename (case_expr));
8522
8523 if (cp->high
8524 && cp->low != cp->high
8525 && gfc_check_integer_range (cp->high->value.integer,
8526 case_expr->ts.kind) != ARITH_OK)
8527 gfc_warning (0, "Expression in CASE statement at %L is "
8528 "not in the range of %s", &cp->high->where,
8529 gfc_typename (case_expr));
8530 }
8531
8532 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8533 of the SELECT CASE expression and its CASE values. Walk the lists
8534 of case values, and if we find a mismatch, promote case_expr to
8535 the appropriate kind. */
8536
8537 if (type == BT_LOGICAL || type == BT_INTEGER)
8538 {
8539 for (body = code->block; body; body = body->block)
8540 {
8541 /* Walk the case label list. */
8542 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8543 {
8544 /* Intercept the DEFAULT case. It does not have a kind. */
8545 if (cp->low == NULL && cp->high == NULL)
8546 continue;
8547
8548 /* Unreachable case ranges are discarded, so ignore. */
8549 if (cp->low != NULL && cp->high != NULL
8550 && cp->low != cp->high
8551 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8552 continue;
8553
8554 if (cp->low != NULL
8555 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8556 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8557
8558 if (cp->high != NULL
8559 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8560 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8561 }
8562 }
8563 }
8564
8565 /* Assume there is no DEFAULT case. */
8566 default_case = NULL;
8567 head = tail = NULL;
8568 ncases = 0;
8569 seen_logical = 0;
8570
8571 for (body = code->block; body; body = body->block)
8572 {
8573 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8574 t = true;
8575 seen_unreachable = 0;
8576
8577 /* Walk the case label list, making sure that all case labels
8578 are legal. */
8579 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8580 {
8581 /* Count the number of cases in the whole construct. */
8582 ncases++;
8583
8584 /* Intercept the DEFAULT case. */
8585 if (cp->low == NULL && cp->high == NULL)
8586 {
8587 if (default_case != NULL)
8588 {
8589 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8590 "by a second DEFAULT CASE at %L",
8591 &default_case->where, &cp->where);
8592 t = false;
8593 break;
8594 }
8595 else
8596 {
8597 default_case = cp;
8598 continue;
8599 }
8600 }
8601
8602 /* Deal with single value cases and case ranges. Errors are
8603 issued from the validation function. */
8604 if (!validate_case_label_expr (cp->low, case_expr)
8605 || !validate_case_label_expr (cp->high, case_expr))
8606 {
8607 t = false;
8608 break;
8609 }
8610
8611 if (type == BT_LOGICAL
8612 && ((cp->low == NULL || cp->high == NULL)
8613 || cp->low != cp->high))
8614 {
8615 gfc_error ("Logical range in CASE statement at %L is not "
8616 "allowed", &cp->low->where);
8617 t = false;
8618 break;
8619 }
8620
8621 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8622 {
8623 int value;
8624 value = cp->low->value.logical == 0 ? 2 : 1;
8625 if (value & seen_logical)
8626 {
8627 gfc_error ("Constant logical value in CASE statement "
8628 "is repeated at %L",
8629 &cp->low->where);
8630 t = false;
8631 break;
8632 }
8633 seen_logical |= value;
8634 }
8635
8636 if (cp->low != NULL && cp->high != NULL
8637 && cp->low != cp->high
8638 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8639 {
8640 if (warn_surprising)
8641 gfc_warning (OPT_Wsurprising,
8642 "Range specification at %L can never be matched",
8643 &cp->where);
8644
8645 cp->unreachable = 1;
8646 seen_unreachable = 1;
8647 }
8648 else
8649 {
8650 /* If the case range can be matched, it can also overlap with
8651 other cases. To make sure it does not, we put it in a
8652 double linked list here. We sort that with a merge sort
8653 later on to detect any overlapping cases. */
8654 if (!head)
8655 {
8656 head = tail = cp;
8657 head->right = head->left = NULL;
8658 }
8659 else
8660 {
8661 tail->right = cp;
8662 tail->right->left = tail;
8663 tail = tail->right;
8664 tail->right = NULL;
8665 }
8666 }
8667 }
8668
8669 /* It there was a failure in the previous case label, give up
8670 for this case label list. Continue with the next block. */
8671 if (!t)
8672 continue;
8673
8674 /* See if any case labels that are unreachable have been seen.
8675 If so, we eliminate them. This is a bit of a kludge because
8676 the case lists for a single case statement (label) is a
8677 single forward linked lists. */
8678 if (seen_unreachable)
8679 {
8680 /* Advance until the first case in the list is reachable. */
8681 while (body->ext.block.case_list != NULL
8682 && body->ext.block.case_list->unreachable)
8683 {
8684 gfc_case *n = body->ext.block.case_list;
8685 body->ext.block.case_list = body->ext.block.case_list->next;
8686 n->next = NULL;
8687 gfc_free_case_list (n);
8688 }
8689
8690 /* Strip all other unreachable cases. */
8691 if (body->ext.block.case_list)
8692 {
8693 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8694 {
8695 if (cp->next->unreachable)
8696 {
8697 gfc_case *n = cp->next;
8698 cp->next = cp->next->next;
8699 n->next = NULL;
8700 gfc_free_case_list (n);
8701 }
8702 }
8703 }
8704 }
8705 }
8706
8707 /* See if there were overlapping cases. If the check returns NULL,
8708 there was overlap. In that case we don't do anything. If head
8709 is non-NULL, we prepend the DEFAULT case. The sorted list can
8710 then used during code generation for SELECT CASE constructs with
8711 a case expression of a CHARACTER type. */
8712 if (head)
8713 {
8714 head = check_case_overlap (head);
8715
8716 /* Prepend the default_case if it is there. */
8717 if (head != NULL && default_case)
8718 {
8719 default_case->left = NULL;
8720 default_case->right = head;
8721 head->left = default_case;
8722 }
8723 }
8724
8725 /* Eliminate dead blocks that may be the result if we've seen
8726 unreachable case labels for a block. */
8727 for (body = code; body && body->block; body = body->block)
8728 {
8729 if (body->block->ext.block.case_list == NULL)
8730 {
8731 /* Cut the unreachable block from the code chain. */
8732 gfc_code *c = body->block;
8733 body->block = c->block;
8734
8735 /* Kill the dead block, but not the blocks below it. */
8736 c->block = NULL;
8737 gfc_free_statements (c);
8738 }
8739 }
8740
8741 /* More than two cases is legal but insane for logical selects.
8742 Issue a warning for it. */
8743 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8744 gfc_warning (OPT_Wsurprising,
8745 "Logical SELECT CASE block at %L has more that two cases",
8746 &code->loc);
8747 }
8748
8749
8750 /* Check if a derived type is extensible. */
8751
8752 bool
8753 gfc_type_is_extensible (gfc_symbol *sym)
8754 {
8755 return !(sym->attr.is_bind_c || sym->attr.sequence
8756 || (sym->attr.is_class
8757 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8758 }
8759
8760
8761 static void
8762 resolve_types (gfc_namespace *ns);
8763
8764 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8765 correct as well as possibly the array-spec. */
8766
8767 static void
8768 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8769 {
8770 gfc_expr* target;
8771
8772 gcc_assert (sym->assoc);
8773 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8774
8775 /* If this is for SELECT TYPE, the target may not yet be set. In that
8776 case, return. Resolution will be called later manually again when
8777 this is done. */
8778 target = sym->assoc->target;
8779 if (!target)
8780 return;
8781 gcc_assert (!sym->assoc->dangling);
8782
8783 if (resolve_target && !gfc_resolve_expr (target))
8784 return;
8785
8786 /* For variable targets, we get some attributes from the target. */
8787 if (target->expr_type == EXPR_VARIABLE)
8788 {
8789 gfc_symbol* tsym;
8790
8791 gcc_assert (target->symtree);
8792 tsym = target->symtree->n.sym;
8793
8794 sym->attr.asynchronous = tsym->attr.asynchronous;
8795 sym->attr.volatile_ = tsym->attr.volatile_;
8796
8797 sym->attr.target = tsym->attr.target
8798 || gfc_expr_attr (target).pointer;
8799 if (is_subref_array (target))
8800 sym->attr.subref_array_pointer = 1;
8801 }
8802
8803 if (target->expr_type == EXPR_NULL)
8804 {
8805 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8806 return;
8807 }
8808 else if (target->ts.type == BT_UNKNOWN)
8809 {
8810 gfc_error ("Selector at %L has no type", &target->where);
8811 return;
8812 }
8813
8814 /* Get type if this was not already set. Note that it can be
8815 some other type than the target in case this is a SELECT TYPE
8816 selector! So we must not update when the type is already there. */
8817 if (sym->ts.type == BT_UNKNOWN)
8818 sym->ts = target->ts;
8819
8820 gcc_assert (sym->ts.type != BT_UNKNOWN);
8821
8822 /* See if this is a valid association-to-variable. */
8823 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8824 && !gfc_has_vector_subscript (target));
8825
8826 /* Finally resolve if this is an array or not. */
8827 if (sym->attr.dimension && target->rank == 0)
8828 {
8829 /* primary.c makes the assumption that a reference to an associate
8830 name followed by a left parenthesis is an array reference. */
8831 if (sym->ts.type != BT_CHARACTER)
8832 gfc_error ("Associate-name %qs at %L is used as array",
8833 sym->name, &sym->declared_at);
8834 sym->attr.dimension = 0;
8835 return;
8836 }
8837
8838
8839 /* We cannot deal with class selectors that need temporaries. */
8840 if (target->ts.type == BT_CLASS
8841 && gfc_ref_needs_temporary_p (target->ref))
8842 {
8843 gfc_error ("CLASS selector at %L needs a temporary which is not "
8844 "yet implemented", &target->where);
8845 return;
8846 }
8847
8848 if (target->ts.type == BT_CLASS)
8849 gfc_fix_class_refs (target);
8850
8851 if (target->rank != 0 && !sym->attr.select_rank_temporary)
8852 {
8853 gfc_array_spec *as;
8854 /* The rank may be incorrectly guessed at parsing, therefore make sure
8855 it is corrected now. */
8856 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8857 {
8858 if (!sym->as)
8859 sym->as = gfc_get_array_spec ();
8860 as = sym->as;
8861 as->rank = target->rank;
8862 as->type = AS_DEFERRED;
8863 as->corank = gfc_get_corank (target);
8864 sym->attr.dimension = 1;
8865 if (as->corank != 0)
8866 sym->attr.codimension = 1;
8867 }
8868 else if (sym->ts.type == BT_CLASS && (!CLASS_DATA (sym)->as || sym->assoc->rankguessed))
8869 {
8870 if (!CLASS_DATA (sym)->as)
8871 CLASS_DATA (sym)->as = gfc_get_array_spec ();
8872 as = CLASS_DATA (sym)->as;
8873 as->rank = target->rank;
8874 as->type = AS_DEFERRED;
8875 as->corank = gfc_get_corank (target);
8876 CLASS_DATA (sym)->attr.dimension = 1;
8877 if (as->corank != 0)
8878 CLASS_DATA (sym)->attr.codimension = 1;
8879 }
8880 }
8881 else if (!sym->attr.select_rank_temporary)
8882 {
8883 /* target's rank is 0, but the type of the sym is still array valued,
8884 which has to be corrected. */
8885 if (sym->ts.type == BT_CLASS
8886 && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
8887 {
8888 gfc_array_spec *as;
8889 symbol_attribute attr;
8890 /* The associated variable's type is still the array type
8891 correct this now. */
8892 gfc_typespec *ts = &target->ts;
8893 gfc_ref *ref;
8894 gfc_component *c;
8895 for (ref = target->ref; ref != NULL; ref = ref->next)
8896 {
8897 switch (ref->type)
8898 {
8899 case REF_COMPONENT:
8900 ts = &ref->u.c.component->ts;
8901 break;
8902 case REF_ARRAY:
8903 if (ts->type == BT_CLASS)
8904 ts = &ts->u.derived->components->ts;
8905 break;
8906 default:
8907 break;
8908 }
8909 }
8910 /* Create a scalar instance of the current class type. Because the
8911 rank of a class array goes into its name, the type has to be
8912 rebuild. The alternative of (re-)setting just the attributes
8913 and as in the current type, destroys the type also in other
8914 places. */
8915 as = NULL;
8916 sym->ts = *ts;
8917 sym->ts.type = BT_CLASS;
8918 attr = CLASS_DATA (sym)->attr;
8919 attr.class_ok = 0;
8920 attr.associate_var = 1;
8921 attr.dimension = attr.codimension = 0;
8922 attr.class_pointer = 1;
8923 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
8924 gcc_unreachable ();
8925 /* Make sure the _vptr is set. */
8926 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
8927 if (c->ts.u.derived == NULL)
8928 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
8929 CLASS_DATA (sym)->attr.pointer = 1;
8930 CLASS_DATA (sym)->attr.class_pointer = 1;
8931 gfc_set_sym_referenced (sym->ts.u.derived);
8932 gfc_commit_symbol (sym->ts.u.derived);
8933 /* _vptr now has the _vtab in it, change it to the _vtype. */
8934 if (c->ts.u.derived->attr.vtab)
8935 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
8936 c->ts.u.derived->ns->types_resolved = 0;
8937 resolve_types (c->ts.u.derived->ns);
8938 }
8939 }
8940
8941 /* Mark this as an associate variable. */
8942 sym->attr.associate_var = 1;
8943
8944 /* Fix up the type-spec for CHARACTER types. */
8945 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
8946 {
8947 if (!sym->ts.u.cl)
8948 sym->ts.u.cl = target->ts.u.cl;
8949
8950 if (sym->ts.deferred && target->expr_type == EXPR_VARIABLE
8951 && target->symtree->n.sym->attr.dummy
8952 && sym->ts.u.cl == target->ts.u.cl)
8953 {
8954 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
8955 sym->ts.deferred = 1;
8956 }
8957
8958 if (!sym->ts.u.cl->length
8959 && !sym->ts.deferred
8960 && target->expr_type == EXPR_CONSTANT)
8961 {
8962 sym->ts.u.cl->length =
8963 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
8964 target->value.character.length);
8965 }
8966 else if ((!sym->ts.u.cl->length
8967 || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
8968 && target->expr_type != EXPR_VARIABLE)
8969 {
8970 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
8971 sym->ts.deferred = 1;
8972
8973 /* This is reset in trans-stmt.c after the assignment
8974 of the target expression to the associate name. */
8975 sym->attr.allocatable = 1;
8976 }
8977 }
8978
8979 /* If the target is a good class object, so is the associate variable. */
8980 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
8981 sym->attr.class_ok = 1;
8982 }
8983
8984
8985 /* Ensure that SELECT TYPE expressions have the correct rank and a full
8986 array reference, where necessary. The symbols are artificial and so
8987 the dimension attribute and arrayspec can also be set. In addition,
8988 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
8989 This is corrected here as well.*/
8990
8991 static void
8992 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
8993 int rank, gfc_ref *ref)
8994 {
8995 gfc_ref *nref = (*expr1)->ref;
8996 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
8997 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
8998 (*expr1)->rank = rank;
8999 if (sym1->ts.type == BT_CLASS)
9000 {
9001 if ((*expr1)->ts.type != BT_CLASS)
9002 (*expr1)->ts = sym1->ts;
9003
9004 CLASS_DATA (sym1)->attr.dimension = 1;
9005 if (CLASS_DATA (sym1)->as == NULL && sym2)
9006 CLASS_DATA (sym1)->as
9007 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
9008 }
9009 else
9010 {
9011 sym1->attr.dimension = 1;
9012 if (sym1->as == NULL && sym2)
9013 sym1->as = gfc_copy_array_spec (sym2->as);
9014 }
9015
9016 for (; nref; nref = nref->next)
9017 if (nref->next == NULL)
9018 break;
9019
9020 if (ref && nref && nref->type != REF_ARRAY)
9021 nref->next = gfc_copy_ref (ref);
9022 else if (ref && !nref)
9023 (*expr1)->ref = gfc_copy_ref (ref);
9024 }
9025
9026
9027 static gfc_expr *
9028 build_loc_call (gfc_expr *sym_expr)
9029 {
9030 gfc_expr *loc_call;
9031 loc_call = gfc_get_expr ();
9032 loc_call->expr_type = EXPR_FUNCTION;
9033 gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
9034 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
9035 loc_call->symtree->n.sym->attr.intrinsic = 1;
9036 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
9037 gfc_commit_symbol (loc_call->symtree->n.sym);
9038 loc_call->ts.type = BT_INTEGER;
9039 loc_call->ts.kind = gfc_index_integer_kind;
9040 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
9041 loc_call->value.function.actual = gfc_get_actual_arglist ();
9042 loc_call->value.function.actual->expr = sym_expr;
9043 loc_call->where = sym_expr->where;
9044 return loc_call;
9045 }
9046
9047 /* Resolve a SELECT TYPE statement. */
9048
9049 static void
9050 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
9051 {
9052 gfc_symbol *selector_type;
9053 gfc_code *body, *new_st, *if_st, *tail;
9054 gfc_code *class_is = NULL, *default_case = NULL;
9055 gfc_case *c;
9056 gfc_symtree *st;
9057 char name[GFC_MAX_SYMBOL_LEN];
9058 gfc_namespace *ns;
9059 int error = 0;
9060 int rank = 0;
9061 gfc_ref* ref = NULL;
9062 gfc_expr *selector_expr = NULL;
9063
9064 ns = code->ext.block.ns;
9065 gfc_resolve (ns);
9066
9067 /* Check for F03:C813. */
9068 if (code->expr1->ts.type != BT_CLASS
9069 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
9070 {
9071 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
9072 "at %L", &code->loc);
9073 return;
9074 }
9075
9076 if (!code->expr1->symtree->n.sym->attr.class_ok)
9077 return;
9078
9079 if (code->expr2)
9080 {
9081 gfc_ref *ref2 = NULL;
9082 for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
9083 if (ref->type == REF_COMPONENT
9084 && ref->u.c.component->ts.type == BT_CLASS)
9085 ref2 = ref;
9086
9087 if (ref2)
9088 {
9089 if (code->expr1->symtree->n.sym->attr.untyped)
9090 code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
9091 selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
9092 }
9093 else
9094 {
9095 if (code->expr1->symtree->n.sym->attr.untyped)
9096 code->expr1->symtree->n.sym->ts = code->expr2->ts;
9097 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
9098 }
9099
9100 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
9101 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
9102
9103 /* F2008: C803 The selector expression must not be coindexed. */
9104 if (gfc_is_coindexed (code->expr2))
9105 {
9106 gfc_error ("Selector at %L must not be coindexed",
9107 &code->expr2->where);
9108 return;
9109 }
9110
9111 }
9112 else
9113 {
9114 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
9115
9116 if (gfc_is_coindexed (code->expr1))
9117 {
9118 gfc_error ("Selector at %L must not be coindexed",
9119 &code->expr1->where);
9120 return;
9121 }
9122 }
9123
9124 /* Loop over TYPE IS / CLASS IS cases. */
9125 for (body = code->block; body; body = body->block)
9126 {
9127 c = body->ext.block.case_list;
9128
9129 if (!error)
9130 {
9131 /* Check for repeated cases. */
9132 for (tail = code->block; tail; tail = tail->block)
9133 {
9134 gfc_case *d = tail->ext.block.case_list;
9135 if (tail == body)
9136 break;
9137
9138 if (c->ts.type == d->ts.type
9139 && ((c->ts.type == BT_DERIVED
9140 && c->ts.u.derived && d->ts.u.derived
9141 && !strcmp (c->ts.u.derived->name,
9142 d->ts.u.derived->name))
9143 || c->ts.type == BT_UNKNOWN
9144 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9145 && c->ts.kind == d->ts.kind)))
9146 {
9147 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
9148 &c->where, &d->where);
9149 return;
9150 }
9151 }
9152 }
9153
9154 /* Check F03:C815. */
9155 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9156 && !selector_type->attr.unlimited_polymorphic
9157 && !gfc_type_is_extensible (c->ts.u.derived))
9158 {
9159 gfc_error ("Derived type %qs at %L must be extensible",
9160 c->ts.u.derived->name, &c->where);
9161 error++;
9162 continue;
9163 }
9164
9165 /* Check F03:C816. */
9166 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
9167 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
9168 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
9169 {
9170 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9171 gfc_error ("Derived type %qs at %L must be an extension of %qs",
9172 c->ts.u.derived->name, &c->where, selector_type->name);
9173 else
9174 gfc_error ("Unexpected intrinsic type %qs at %L",
9175 gfc_basic_typename (c->ts.type), &c->where);
9176 error++;
9177 continue;
9178 }
9179
9180 /* Check F03:C814. */
9181 if (c->ts.type == BT_CHARACTER
9182 && (c->ts.u.cl->length != NULL || c->ts.deferred))
9183 {
9184 gfc_error ("The type-spec at %L shall specify that each length "
9185 "type parameter is assumed", &c->where);
9186 error++;
9187 continue;
9188 }
9189
9190 /* Intercept the DEFAULT case. */
9191 if (c->ts.type == BT_UNKNOWN)
9192 {
9193 /* Check F03:C818. */
9194 if (default_case)
9195 {
9196 gfc_error ("The DEFAULT CASE at %L cannot be followed "
9197 "by a second DEFAULT CASE at %L",
9198 &default_case->ext.block.case_list->where, &c->where);
9199 error++;
9200 continue;
9201 }
9202
9203 default_case = body;
9204 }
9205 }
9206
9207 if (error > 0)
9208 return;
9209
9210 /* Transform SELECT TYPE statement to BLOCK and associate selector to
9211 target if present. If there are any EXIT statements referring to the
9212 SELECT TYPE construct, this is no problem because the gfc_code
9213 reference stays the same and EXIT is equally possible from the BLOCK
9214 it is changed to. */
9215 code->op = EXEC_BLOCK;
9216 if (code->expr2)
9217 {
9218 gfc_association_list* assoc;
9219
9220 assoc = gfc_get_association_list ();
9221 assoc->st = code->expr1->symtree;
9222 assoc->target = gfc_copy_expr (code->expr2);
9223 assoc->target->where = code->expr2->where;
9224 /* assoc->variable will be set by resolve_assoc_var. */
9225
9226 code->ext.block.assoc = assoc;
9227 code->expr1->symtree->n.sym->assoc = assoc;
9228
9229 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9230 }
9231 else
9232 code->ext.block.assoc = NULL;
9233
9234 /* Ensure that the selector rank and arrayspec are available to
9235 correct expressions in which they might be missing. */
9236 if (code->expr2 && code->expr2->rank)
9237 {
9238 rank = code->expr2->rank;
9239 for (ref = code->expr2->ref; ref; ref = ref->next)
9240 if (ref->next == NULL)
9241 break;
9242 if (ref && ref->type == REF_ARRAY)
9243 ref = gfc_copy_ref (ref);
9244
9245 /* Fixup expr1 if necessary. */
9246 if (rank)
9247 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
9248 }
9249 else if (code->expr1->rank)
9250 {
9251 rank = code->expr1->rank;
9252 for (ref = code->expr1->ref; ref; ref = ref->next)
9253 if (ref->next == NULL)
9254 break;
9255 if (ref && ref->type == REF_ARRAY)
9256 ref = gfc_copy_ref (ref);
9257 }
9258
9259 /* Add EXEC_SELECT to switch on type. */
9260 new_st = gfc_get_code (code->op);
9261 new_st->expr1 = code->expr1;
9262 new_st->expr2 = code->expr2;
9263 new_st->block = code->block;
9264 code->expr1 = code->expr2 = NULL;
9265 code->block = NULL;
9266 if (!ns->code)
9267 ns->code = new_st;
9268 else
9269 ns->code->next = new_st;
9270 code = new_st;
9271 code->op = EXEC_SELECT_TYPE;
9272
9273 /* Use the intrinsic LOC function to generate an integer expression
9274 for the vtable of the selector. Note that the rank of the selector
9275 expression has to be set to zero. */
9276 gfc_add_vptr_component (code->expr1);
9277 code->expr1->rank = 0;
9278 code->expr1 = build_loc_call (code->expr1);
9279 selector_expr = code->expr1->value.function.actual->expr;
9280
9281 /* Loop over TYPE IS / CLASS IS cases. */
9282 for (body = code->block; body; body = body->block)
9283 {
9284 gfc_symbol *vtab;
9285 gfc_expr *e;
9286 c = body->ext.block.case_list;
9287
9288 /* Generate an index integer expression for address of the
9289 TYPE/CLASS vtable and store it in c->low. The hash expression
9290 is stored in c->high and is used to resolve intrinsic cases. */
9291 if (c->ts.type != BT_UNKNOWN)
9292 {
9293 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9294 {
9295 vtab = gfc_find_derived_vtab (c->ts.u.derived);
9296 gcc_assert (vtab);
9297 c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
9298 c->ts.u.derived->hash_value);
9299 }
9300 else
9301 {
9302 vtab = gfc_find_vtab (&c->ts);
9303 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
9304 e = CLASS_DATA (vtab)->initializer;
9305 c->high = gfc_copy_expr (e);
9306 if (c->high->ts.kind != gfc_integer_4_kind)
9307 {
9308 gfc_typespec ts;
9309 ts.kind = gfc_integer_4_kind;
9310 ts.type = BT_INTEGER;
9311 gfc_convert_type_warn (c->high, &ts, 2, 0);
9312 }
9313 }
9314
9315 e = gfc_lval_expr_from_sym (vtab);
9316 c->low = build_loc_call (e);
9317 }
9318 else
9319 continue;
9320
9321 /* Associate temporary to selector. This should only be done
9322 when this case is actually true, so build a new ASSOCIATE
9323 that does precisely this here (instead of using the
9324 'global' one). */
9325
9326 if (c->ts.type == BT_CLASS)
9327 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
9328 else if (c->ts.type == BT_DERIVED)
9329 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
9330 else if (c->ts.type == BT_CHARACTER)
9331 {
9332 HOST_WIDE_INT charlen = 0;
9333 if (c->ts.u.cl && c->ts.u.cl->length
9334 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9335 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9336 snprintf (name, sizeof (name),
9337 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9338 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9339 }
9340 else
9341 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9342 c->ts.kind);
9343
9344 st = gfc_find_symtree (ns->sym_root, name);
9345 gcc_assert (st->n.sym->assoc);
9346 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9347 st->n.sym->assoc->target->where = selector_expr->where;
9348 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9349 {
9350 gfc_add_data_component (st->n.sym->assoc->target);
9351 /* Fixup the target expression if necessary. */
9352 if (rank)
9353 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9354 }
9355
9356 new_st = gfc_get_code (EXEC_BLOCK);
9357 new_st->ext.block.ns = gfc_build_block_ns (ns);
9358 new_st->ext.block.ns->code = body->next;
9359 body->next = new_st;
9360
9361 /* Chain in the new list only if it is marked as dangling. Otherwise
9362 there is a CASE label overlap and this is already used. Just ignore,
9363 the error is diagnosed elsewhere. */
9364 if (st->n.sym->assoc->dangling)
9365 {
9366 new_st->ext.block.assoc = st->n.sym->assoc;
9367 st->n.sym->assoc->dangling = 0;
9368 }
9369
9370 resolve_assoc_var (st->n.sym, false);
9371 }
9372
9373 /* Take out CLASS IS cases for separate treatment. */
9374 body = code;
9375 while (body && body->block)
9376 {
9377 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9378 {
9379 /* Add to class_is list. */
9380 if (class_is == NULL)
9381 {
9382 class_is = body->block;
9383 tail = class_is;
9384 }
9385 else
9386 {
9387 for (tail = class_is; tail->block; tail = tail->block) ;
9388 tail->block = body->block;
9389 tail = tail->block;
9390 }
9391 /* Remove from EXEC_SELECT list. */
9392 body->block = body->block->block;
9393 tail->block = NULL;
9394 }
9395 else
9396 body = body->block;
9397 }
9398
9399 if (class_is)
9400 {
9401 gfc_symbol *vtab;
9402
9403 if (!default_case)
9404 {
9405 /* Add a default case to hold the CLASS IS cases. */
9406 for (tail = code; tail->block; tail = tail->block) ;
9407 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9408 tail = tail->block;
9409 tail->ext.block.case_list = gfc_get_case ();
9410 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9411 tail->next = NULL;
9412 default_case = tail;
9413 }
9414
9415 /* More than one CLASS IS block? */
9416 if (class_is->block)
9417 {
9418 gfc_code **c1,*c2;
9419 bool swapped;
9420 /* Sort CLASS IS blocks by extension level. */
9421 do
9422 {
9423 swapped = false;
9424 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9425 {
9426 c2 = (*c1)->block;
9427 /* F03:C817 (check for doubles). */
9428 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9429 == c2->ext.block.case_list->ts.u.derived->hash_value)
9430 {
9431 gfc_error ("Double CLASS IS block in SELECT TYPE "
9432 "statement at %L",
9433 &c2->ext.block.case_list->where);
9434 return;
9435 }
9436 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9437 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9438 {
9439 /* Swap. */
9440 (*c1)->block = c2->block;
9441 c2->block = *c1;
9442 *c1 = c2;
9443 swapped = true;
9444 }
9445 }
9446 }
9447 while (swapped);
9448 }
9449
9450 /* Generate IF chain. */
9451 if_st = gfc_get_code (EXEC_IF);
9452 new_st = if_st;
9453 for (body = class_is; body; body = body->block)
9454 {
9455 new_st->block = gfc_get_code (EXEC_IF);
9456 new_st = new_st->block;
9457 /* Set up IF condition: Call _gfortran_is_extension_of. */
9458 new_st->expr1 = gfc_get_expr ();
9459 new_st->expr1->expr_type = EXPR_FUNCTION;
9460 new_st->expr1->ts.type = BT_LOGICAL;
9461 new_st->expr1->ts.kind = 4;
9462 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9463 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9464 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9465 /* Set up arguments. */
9466 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9467 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9468 new_st->expr1->value.function.actual->expr->where = code->loc;
9469 new_st->expr1->where = code->loc;
9470 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9471 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9472 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9473 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9474 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9475 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9476 new_st->next = body->next;
9477 }
9478 if (default_case->next)
9479 {
9480 new_st->block = gfc_get_code (EXEC_IF);
9481 new_st = new_st->block;
9482 new_st->next = default_case->next;
9483 }
9484
9485 /* Replace CLASS DEFAULT code by the IF chain. */
9486 default_case->next = if_st;
9487 }
9488
9489 /* Resolve the internal code. This cannot be done earlier because
9490 it requires that the sym->assoc of selectors is set already. */
9491 gfc_current_ns = ns;
9492 gfc_resolve_blocks (code->block, gfc_current_ns);
9493 gfc_current_ns = old_ns;
9494
9495 if (ref)
9496 free (ref);
9497 }
9498
9499
9500 /* Resolve a SELECT RANK statement. */
9501
9502 static void
9503 resolve_select_rank (gfc_code *code, gfc_namespace *old_ns)
9504 {
9505 gfc_namespace *ns;
9506 gfc_code *body, *new_st, *tail;
9507 gfc_case *c;
9508 char tname[GFC_MAX_SYMBOL_LEN];
9509 char name[2 * GFC_MAX_SYMBOL_LEN];
9510 gfc_symtree *st;
9511 gfc_expr *selector_expr = NULL;
9512 int case_value;
9513 HOST_WIDE_INT charlen = 0;
9514
9515 ns = code->ext.block.ns;
9516 gfc_resolve (ns);
9517
9518 code->op = EXEC_BLOCK;
9519 if (code->expr2)
9520 {
9521 gfc_association_list* assoc;
9522
9523 assoc = gfc_get_association_list ();
9524 assoc->st = code->expr1->symtree;
9525 assoc->target = gfc_copy_expr (code->expr2);
9526 assoc->target->where = code->expr2->where;
9527 /* assoc->variable will be set by resolve_assoc_var. */
9528
9529 code->ext.block.assoc = assoc;
9530 code->expr1->symtree->n.sym->assoc = assoc;
9531
9532 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9533 }
9534 else
9535 code->ext.block.assoc = NULL;
9536
9537 /* Loop over RANK cases. Note that returning on the errors causes a
9538 cascade of further errors because the case blocks do not compile
9539 correctly. */
9540 for (body = code->block; body; body = body->block)
9541 {
9542 c = body->ext.block.case_list;
9543 if (c->low)
9544 case_value = (int) mpz_get_si (c->low->value.integer);
9545 else
9546 case_value = -2;
9547
9548 /* Check for repeated cases. */
9549 for (tail = code->block; tail; tail = tail->block)
9550 {
9551 gfc_case *d = tail->ext.block.case_list;
9552 int case_value2;
9553
9554 if (tail == body)
9555 break;
9556
9557 /* Check F2018: C1153. */
9558 if (!c->low && !d->low)
9559 gfc_error ("RANK DEFAULT at %L is repeated at %L",
9560 &c->where, &d->where);
9561
9562 if (!c->low || !d->low)
9563 continue;
9564
9565 /* Check F2018: C1153. */
9566 case_value2 = (int) mpz_get_si (d->low->value.integer);
9567 if ((case_value == case_value2) && case_value == -1)
9568 gfc_error ("RANK (*) at %L is repeated at %L",
9569 &c->where, &d->where);
9570 else if (case_value == case_value2)
9571 gfc_error ("RANK (%i) at %L is repeated at %L",
9572 case_value, &c->where, &d->where);
9573 }
9574
9575 if (!c->low)
9576 continue;
9577
9578 /* Check F2018: C1155. */
9579 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9580 || gfc_expr_attr (code->expr1).pointer))
9581 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9582 "allocatable selector at %L", &c->where, &code->expr1->where);
9583
9584 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9585 || gfc_expr_attr (code->expr1).pointer))
9586 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9587 "allocatable selector at %L", &c->where, &code->expr1->where);
9588 }
9589
9590 /* Add EXEC_SELECT to switch on rank. */
9591 new_st = gfc_get_code (code->op);
9592 new_st->expr1 = code->expr1;
9593 new_st->expr2 = code->expr2;
9594 new_st->block = code->block;
9595 code->expr1 = code->expr2 = NULL;
9596 code->block = NULL;
9597 if (!ns->code)
9598 ns->code = new_st;
9599 else
9600 ns->code->next = new_st;
9601 code = new_st;
9602 code->op = EXEC_SELECT_RANK;
9603
9604 selector_expr = code->expr1;
9605
9606 /* Loop over SELECT RANK cases. */
9607 for (body = code->block; body; body = body->block)
9608 {
9609 c = body->ext.block.case_list;
9610 int case_value;
9611
9612 /* Pass on the default case. */
9613 if (c->low == NULL)
9614 continue;
9615
9616 /* Associate temporary to selector. This should only be done
9617 when this case is actually true, so build a new ASSOCIATE
9618 that does precisely this here (instead of using the
9619 'global' one). */
9620 if (c->ts.type == BT_CHARACTER && c->ts.u.cl && c->ts.u.cl->length
9621 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9622 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9623
9624 if (c->ts.type == BT_CLASS)
9625 sprintf (tname, "class_%s", c->ts.u.derived->name);
9626 else if (c->ts.type == BT_DERIVED)
9627 sprintf (tname, "type_%s", c->ts.u.derived->name);
9628 else if (c->ts.type != BT_CHARACTER)
9629 sprintf (tname, "%s_%d", gfc_basic_typename (c->ts.type), c->ts.kind);
9630 else
9631 sprintf (tname, "%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9632 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9633
9634 case_value = (int) mpz_get_si (c->low->value.integer);
9635 if (case_value >= 0)
9636 sprintf (name, "__tmp_%s_rank_%d", tname, case_value);
9637 else
9638 sprintf (name, "__tmp_%s_rank_m%d", tname, -case_value);
9639
9640 st = gfc_find_symtree (ns->sym_root, name);
9641 gcc_assert (st->n.sym->assoc);
9642
9643 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9644 st->n.sym->assoc->target->where = selector_expr->where;
9645
9646 new_st = gfc_get_code (EXEC_BLOCK);
9647 new_st->ext.block.ns = gfc_build_block_ns (ns);
9648 new_st->ext.block.ns->code = body->next;
9649 body->next = new_st;
9650
9651 /* Chain in the new list only if it is marked as dangling. Otherwise
9652 there is a CASE label overlap and this is already used. Just ignore,
9653 the error is diagnosed elsewhere. */
9654 if (st->n.sym->assoc->dangling)
9655 {
9656 new_st->ext.block.assoc = st->n.sym->assoc;
9657 st->n.sym->assoc->dangling = 0;
9658 }
9659
9660 resolve_assoc_var (st->n.sym, false);
9661 }
9662
9663 gfc_current_ns = ns;
9664 gfc_resolve_blocks (code->block, gfc_current_ns);
9665 gfc_current_ns = old_ns;
9666 }
9667
9668
9669 /* Resolve a transfer statement. This is making sure that:
9670 -- a derived type being transferred has only non-pointer components
9671 -- a derived type being transferred doesn't have private components, unless
9672 it's being transferred from the module where the type was defined
9673 -- we're not trying to transfer a whole assumed size array. */
9674
9675 static void
9676 resolve_transfer (gfc_code *code)
9677 {
9678 gfc_symbol *sym, *derived;
9679 gfc_ref *ref;
9680 gfc_expr *exp;
9681 bool write = false;
9682 bool formatted = false;
9683 gfc_dt *dt = code->ext.dt;
9684 gfc_symbol *dtio_sub = NULL;
9685
9686 exp = code->expr1;
9687
9688 while (exp != NULL && exp->expr_type == EXPR_OP
9689 && exp->value.op.op == INTRINSIC_PARENTHESES)
9690 exp = exp->value.op.op1;
9691
9692 if (exp && exp->expr_type == EXPR_NULL
9693 && code->ext.dt)
9694 {
9695 gfc_error ("Invalid context for NULL () intrinsic at %L",
9696 &exp->where);
9697 return;
9698 }
9699
9700 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9701 && exp->expr_type != EXPR_FUNCTION
9702 && exp->expr_type != EXPR_STRUCTURE))
9703 return;
9704
9705 /* If we are reading, the variable will be changed. Note that
9706 code->ext.dt may be NULL if the TRANSFER is related to
9707 an INQUIRE statement -- but in this case, we are not reading, either. */
9708 if (dt && dt->dt_io_kind->value.iokind == M_READ
9709 && !gfc_check_vardef_context (exp, false, false, false,
9710 _("item in READ")))
9711 return;
9712
9713 const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
9714 || exp->expr_type == EXPR_FUNCTION
9715 ? &exp->ts : &exp->symtree->n.sym->ts;
9716
9717 /* Go to actual component transferred. */
9718 for (ref = exp->ref; ref; ref = ref->next)
9719 if (ref->type == REF_COMPONENT)
9720 ts = &ref->u.c.component->ts;
9721
9722 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9723 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9724 {
9725 derived = ts->u.derived;
9726
9727 /* Determine when to use the formatted DTIO procedure. */
9728 if (dt && (dt->format_expr || dt->format_label))
9729 formatted = true;
9730
9731 write = dt->dt_io_kind->value.iokind == M_WRITE
9732 || dt->dt_io_kind->value.iokind == M_PRINT;
9733 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9734
9735 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9736 {
9737 dt->udtio = exp;
9738 sym = exp->symtree->n.sym->ns->proc_name;
9739 /* Check to see if this is a nested DTIO call, with the
9740 dummy as the io-list object. */
9741 if (sym && sym == dtio_sub && sym->formal
9742 && sym->formal->sym == exp->symtree->n.sym
9743 && exp->ref == NULL)
9744 {
9745 if (!sym->attr.recursive)
9746 {
9747 gfc_error ("DTIO %s procedure at %L must be recursive",
9748 sym->name, &sym->declared_at);
9749 return;
9750 }
9751 }
9752 }
9753 }
9754
9755 if (ts->type == BT_CLASS && dtio_sub == NULL)
9756 {
9757 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9758 "it is processed by a defined input/output procedure",
9759 &code->loc);
9760 return;
9761 }
9762
9763 if (ts->type == BT_DERIVED)
9764 {
9765 /* Check that transferred derived type doesn't contain POINTER
9766 components unless it is processed by a defined input/output
9767 procedure". */
9768 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9769 {
9770 gfc_error ("Data transfer element at %L cannot have POINTER "
9771 "components unless it is processed by a defined "
9772 "input/output procedure", &code->loc);
9773 return;
9774 }
9775
9776 /* F08:C935. */
9777 if (ts->u.derived->attr.proc_pointer_comp)
9778 {
9779 gfc_error ("Data transfer element at %L cannot have "
9780 "procedure pointer components", &code->loc);
9781 return;
9782 }
9783
9784 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9785 {
9786 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9787 "components unless it is processed by a defined "
9788 "input/output procedure", &code->loc);
9789 return;
9790 }
9791
9792 /* C_PTR and C_FUNPTR have private components which means they cannot
9793 be printed. However, if -std=gnu and not -pedantic, allow
9794 the component to be printed to help debugging. */
9795 if (ts->u.derived->ts.f90_type == BT_VOID)
9796 {
9797 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9798 "cannot have PRIVATE components", &code->loc))
9799 return;
9800 }
9801 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9802 {
9803 gfc_error ("Data transfer element at %L cannot have "
9804 "PRIVATE components unless it is processed by "
9805 "a defined input/output procedure", &code->loc);
9806 return;
9807 }
9808 }
9809
9810 if (exp->expr_type == EXPR_STRUCTURE)
9811 return;
9812
9813 sym = exp->symtree->n.sym;
9814
9815 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9816 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9817 {
9818 gfc_error ("Data transfer element at %L cannot be a full reference to "
9819 "an assumed-size array", &code->loc);
9820 return;
9821 }
9822
9823 if (async_io_dt && exp->expr_type == EXPR_VARIABLE)
9824 exp->symtree->n.sym->attr.asynchronous = 1;
9825 }
9826
9827
9828 /*********** Toplevel code resolution subroutines ***********/
9829
9830 /* Find the set of labels that are reachable from this block. We also
9831 record the last statement in each block. */
9832
9833 static void
9834 find_reachable_labels (gfc_code *block)
9835 {
9836 gfc_code *c;
9837
9838 if (!block)
9839 return;
9840
9841 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9842
9843 /* Collect labels in this block. We don't keep those corresponding
9844 to END {IF|SELECT}, these are checked in resolve_branch by going
9845 up through the code_stack. */
9846 for (c = block; c; c = c->next)
9847 {
9848 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9849 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9850 }
9851
9852 /* Merge with labels from parent block. */
9853 if (cs_base->prev)
9854 {
9855 gcc_assert (cs_base->prev->reachable_labels);
9856 bitmap_ior_into (cs_base->reachable_labels,
9857 cs_base->prev->reachable_labels);
9858 }
9859 }
9860
9861
9862 static void
9863 resolve_lock_unlock_event (gfc_code *code)
9864 {
9865 if (code->expr1->expr_type == EXPR_FUNCTION
9866 && code->expr1->value.function.isym
9867 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9868 remove_caf_get_intrinsic (code->expr1);
9869
9870 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9871 && (code->expr1->ts.type != BT_DERIVED
9872 || code->expr1->expr_type != EXPR_VARIABLE
9873 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
9874 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
9875 || code->expr1->rank != 0
9876 || (!gfc_is_coarray (code->expr1) &&
9877 !gfc_is_coindexed (code->expr1))))
9878 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9879 &code->expr1->where);
9880 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
9881 && (code->expr1->ts.type != BT_DERIVED
9882 || code->expr1->expr_type != EXPR_VARIABLE
9883 || code->expr1->ts.u.derived->from_intmod
9884 != INTMOD_ISO_FORTRAN_ENV
9885 || code->expr1->ts.u.derived->intmod_sym_id
9886 != ISOFORTRAN_EVENT_TYPE
9887 || code->expr1->rank != 0))
9888 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9889 &code->expr1->where);
9890 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
9891 && !gfc_is_coindexed (code->expr1))
9892 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9893 &code->expr1->where);
9894 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
9895 gfc_error ("Event variable argument at %L must be a coarray but not "
9896 "coindexed", &code->expr1->where);
9897
9898 /* Check STAT. */
9899 if (code->expr2
9900 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9901 || code->expr2->expr_type != EXPR_VARIABLE))
9902 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9903 &code->expr2->where);
9904
9905 if (code->expr2
9906 && !gfc_check_vardef_context (code->expr2, false, false, false,
9907 _("STAT variable")))
9908 return;
9909
9910 /* Check ERRMSG. */
9911 if (code->expr3
9912 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9913 || code->expr3->expr_type != EXPR_VARIABLE))
9914 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9915 &code->expr3->where);
9916
9917 if (code->expr3
9918 && !gfc_check_vardef_context (code->expr3, false, false, false,
9919 _("ERRMSG variable")))
9920 return;
9921
9922 /* Check for LOCK the ACQUIRED_LOCK. */
9923 if (code->op != EXEC_EVENT_WAIT && code->expr4
9924 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
9925 || code->expr4->expr_type != EXPR_VARIABLE))
9926 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
9927 "variable", &code->expr4->where);
9928
9929 if (code->op != EXEC_EVENT_WAIT && code->expr4
9930 && !gfc_check_vardef_context (code->expr4, false, false, false,
9931 _("ACQUIRED_LOCK variable")))
9932 return;
9933
9934 /* Check for EVENT WAIT the UNTIL_COUNT. */
9935 if (code->op == EXEC_EVENT_WAIT && code->expr4)
9936 {
9937 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
9938 || code->expr4->rank != 0)
9939 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
9940 "expression", &code->expr4->where);
9941 }
9942 }
9943
9944
9945 static void
9946 resolve_critical (gfc_code *code)
9947 {
9948 gfc_symtree *symtree;
9949 gfc_symbol *lock_type;
9950 char name[GFC_MAX_SYMBOL_LEN];
9951 static int serial = 0;
9952
9953 if (flag_coarray != GFC_FCOARRAY_LIB)
9954 return;
9955
9956 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
9957 GFC_PREFIX ("lock_type"));
9958 if (symtree)
9959 lock_type = symtree->n.sym;
9960 else
9961 {
9962 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
9963 false) != 0)
9964 gcc_unreachable ();
9965 lock_type = symtree->n.sym;
9966 lock_type->attr.flavor = FL_DERIVED;
9967 lock_type->attr.zero_comp = 1;
9968 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
9969 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
9970 }
9971
9972 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
9973 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
9974 gcc_unreachable ();
9975
9976 code->resolved_sym = symtree->n.sym;
9977 symtree->n.sym->attr.flavor = FL_VARIABLE;
9978 symtree->n.sym->attr.referenced = 1;
9979 symtree->n.sym->attr.artificial = 1;
9980 symtree->n.sym->attr.codimension = 1;
9981 symtree->n.sym->ts.type = BT_DERIVED;
9982 symtree->n.sym->ts.u.derived = lock_type;
9983 symtree->n.sym->as = gfc_get_array_spec ();
9984 symtree->n.sym->as->corank = 1;
9985 symtree->n.sym->as->type = AS_EXPLICIT;
9986 symtree->n.sym->as->cotype = AS_EXPLICIT;
9987 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
9988 NULL, 1);
9989 gfc_commit_symbols();
9990 }
9991
9992
9993 static void
9994 resolve_sync (gfc_code *code)
9995 {
9996 /* Check imageset. The * case matches expr1 == NULL. */
9997 if (code->expr1)
9998 {
9999 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
10000 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
10001 "INTEGER expression", &code->expr1->where);
10002 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
10003 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
10004 gfc_error ("Imageset argument at %L must between 1 and num_images()",
10005 &code->expr1->where);
10006 else if (code->expr1->expr_type == EXPR_ARRAY
10007 && gfc_simplify_expr (code->expr1, 0))
10008 {
10009 gfc_constructor *cons;
10010 cons = gfc_constructor_first (code->expr1->value.constructor);
10011 for (; cons; cons = gfc_constructor_next (cons))
10012 if (cons->expr->expr_type == EXPR_CONSTANT
10013 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
10014 gfc_error ("Imageset argument at %L must between 1 and "
10015 "num_images()", &cons->expr->where);
10016 }
10017 }
10018
10019 /* Check STAT. */
10020 gfc_resolve_expr (code->expr2);
10021 if (code->expr2
10022 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
10023 || code->expr2->expr_type != EXPR_VARIABLE))
10024 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
10025 &code->expr2->where);
10026
10027 /* Check ERRMSG. */
10028 gfc_resolve_expr (code->expr3);
10029 if (code->expr3
10030 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
10031 || code->expr3->expr_type != EXPR_VARIABLE))
10032 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
10033 &code->expr3->where);
10034 }
10035
10036
10037 /* Given a branch to a label, see if the branch is conforming.
10038 The code node describes where the branch is located. */
10039
10040 static void
10041 resolve_branch (gfc_st_label *label, gfc_code *code)
10042 {
10043 code_stack *stack;
10044
10045 if (label == NULL)
10046 return;
10047
10048 /* Step one: is this a valid branching target? */
10049
10050 if (label->defined == ST_LABEL_UNKNOWN)
10051 {
10052 gfc_error ("Label %d referenced at %L is never defined", label->value,
10053 &code->loc);
10054 return;
10055 }
10056
10057 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
10058 {
10059 gfc_error ("Statement at %L is not a valid branch target statement "
10060 "for the branch statement at %L", &label->where, &code->loc);
10061 return;
10062 }
10063
10064 /* Step two: make sure this branch is not a branch to itself ;-) */
10065
10066 if (code->here == label)
10067 {
10068 gfc_warning (0,
10069 "Branch at %L may result in an infinite loop", &code->loc);
10070 return;
10071 }
10072
10073 /* Step three: See if the label is in the same block as the
10074 branching statement. The hard work has been done by setting up
10075 the bitmap reachable_labels. */
10076
10077 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
10078 {
10079 /* Check now whether there is a CRITICAL construct; if so, check
10080 whether the label is still visible outside of the CRITICAL block,
10081 which is invalid. */
10082 for (stack = cs_base; stack; stack = stack->prev)
10083 {
10084 if (stack->current->op == EXEC_CRITICAL
10085 && bitmap_bit_p (stack->reachable_labels, label->value))
10086 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
10087 "label at %L", &code->loc, &label->where);
10088 else if (stack->current->op == EXEC_DO_CONCURRENT
10089 && bitmap_bit_p (stack->reachable_labels, label->value))
10090 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
10091 "for label at %L", &code->loc, &label->where);
10092 }
10093
10094 return;
10095 }
10096
10097 /* Step four: If we haven't found the label in the bitmap, it may
10098 still be the label of the END of the enclosing block, in which
10099 case we find it by going up the code_stack. */
10100
10101 for (stack = cs_base; stack; stack = stack->prev)
10102 {
10103 if (stack->current->next && stack->current->next->here == label)
10104 break;
10105 if (stack->current->op == EXEC_CRITICAL)
10106 {
10107 /* Note: A label at END CRITICAL does not leave the CRITICAL
10108 construct as END CRITICAL is still part of it. */
10109 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
10110 " at %L", &code->loc, &label->where);
10111 return;
10112 }
10113 else if (stack->current->op == EXEC_DO_CONCURRENT)
10114 {
10115 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
10116 "label at %L", &code->loc, &label->where);
10117 return;
10118 }
10119 }
10120
10121 if (stack)
10122 {
10123 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
10124 return;
10125 }
10126
10127 /* The label is not in an enclosing block, so illegal. This was
10128 allowed in Fortran 66, so we allow it as extension. No
10129 further checks are necessary in this case. */
10130 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
10131 "as the GOTO statement at %L", &label->where,
10132 &code->loc);
10133 return;
10134 }
10135
10136
10137 /* Check whether EXPR1 has the same shape as EXPR2. */
10138
10139 static bool
10140 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
10141 {
10142 mpz_t shape[GFC_MAX_DIMENSIONS];
10143 mpz_t shape2[GFC_MAX_DIMENSIONS];
10144 bool result = false;
10145 int i;
10146
10147 /* Compare the rank. */
10148 if (expr1->rank != expr2->rank)
10149 return result;
10150
10151 /* Compare the size of each dimension. */
10152 for (i=0; i<expr1->rank; i++)
10153 {
10154 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
10155 goto ignore;
10156
10157 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
10158 goto ignore;
10159
10160 if (mpz_cmp (shape[i], shape2[i]))
10161 goto over;
10162 }
10163
10164 /* When either of the two expression is an assumed size array, we
10165 ignore the comparison of dimension sizes. */
10166 ignore:
10167 result = true;
10168
10169 over:
10170 gfc_clear_shape (shape, i);
10171 gfc_clear_shape (shape2, i);
10172 return result;
10173 }
10174
10175
10176 /* Check whether a WHERE assignment target or a WHERE mask expression
10177 has the same shape as the outmost WHERE mask expression. */
10178
10179 static void
10180 resolve_where (gfc_code *code, gfc_expr *mask)
10181 {
10182 gfc_code *cblock;
10183 gfc_code *cnext;
10184 gfc_expr *e = NULL;
10185
10186 cblock = code->block;
10187
10188 /* Store the first WHERE mask-expr of the WHERE statement or construct.
10189 In case of nested WHERE, only the outmost one is stored. */
10190 if (mask == NULL) /* outmost WHERE */
10191 e = cblock->expr1;
10192 else /* inner WHERE */
10193 e = mask;
10194
10195 while (cblock)
10196 {
10197 if (cblock->expr1)
10198 {
10199 /* Check if the mask-expr has a consistent shape with the
10200 outmost WHERE mask-expr. */
10201 if (!resolve_where_shape (cblock->expr1, e))
10202 gfc_error ("WHERE mask at %L has inconsistent shape",
10203 &cblock->expr1->where);
10204 }
10205
10206 /* the assignment statement of a WHERE statement, or the first
10207 statement in where-body-construct of a WHERE construct */
10208 cnext = cblock->next;
10209 while (cnext)
10210 {
10211 switch (cnext->op)
10212 {
10213 /* WHERE assignment statement */
10214 case EXEC_ASSIGN:
10215
10216 /* Check shape consistent for WHERE assignment target. */
10217 if (e && !resolve_where_shape (cnext->expr1, e))
10218 gfc_error ("WHERE assignment target at %L has "
10219 "inconsistent shape", &cnext->expr1->where);
10220 break;
10221
10222
10223 case EXEC_ASSIGN_CALL:
10224 resolve_call (cnext);
10225 if (!cnext->resolved_sym->attr.elemental)
10226 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10227 &cnext->ext.actual->expr->where);
10228 break;
10229
10230 /* WHERE or WHERE construct is part of a where-body-construct */
10231 case EXEC_WHERE:
10232 resolve_where (cnext, e);
10233 break;
10234
10235 default:
10236 gfc_error ("Unsupported statement inside WHERE at %L",
10237 &cnext->loc);
10238 }
10239 /* the next statement within the same where-body-construct */
10240 cnext = cnext->next;
10241 }
10242 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10243 cblock = cblock->block;
10244 }
10245 }
10246
10247
10248 /* Resolve assignment in FORALL construct.
10249 NVAR is the number of FORALL index variables, and VAR_EXPR records the
10250 FORALL index variables. */
10251
10252 static void
10253 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
10254 {
10255 int n;
10256
10257 for (n = 0; n < nvar; n++)
10258 {
10259 gfc_symbol *forall_index;
10260
10261 forall_index = var_expr[n]->symtree->n.sym;
10262
10263 /* Check whether the assignment target is one of the FORALL index
10264 variable. */
10265 if ((code->expr1->expr_type == EXPR_VARIABLE)
10266 && (code->expr1->symtree->n.sym == forall_index))
10267 gfc_error ("Assignment to a FORALL index variable at %L",
10268 &code->expr1->where);
10269 else
10270 {
10271 /* If one of the FORALL index variables doesn't appear in the
10272 assignment variable, then there could be a many-to-one
10273 assignment. Emit a warning rather than an error because the
10274 mask could be resolving this problem. */
10275 if (!find_forall_index (code->expr1, forall_index, 0))
10276 gfc_warning (0, "The FORALL with index %qs is not used on the "
10277 "left side of the assignment at %L and so might "
10278 "cause multiple assignment to this object",
10279 var_expr[n]->symtree->name, &code->expr1->where);
10280 }
10281 }
10282 }
10283
10284
10285 /* Resolve WHERE statement in FORALL construct. */
10286
10287 static void
10288 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
10289 gfc_expr **var_expr)
10290 {
10291 gfc_code *cblock;
10292 gfc_code *cnext;
10293
10294 cblock = code->block;
10295 while (cblock)
10296 {
10297 /* the assignment statement of a WHERE statement, or the first
10298 statement in where-body-construct of a WHERE construct */
10299 cnext = cblock->next;
10300 while (cnext)
10301 {
10302 switch (cnext->op)
10303 {
10304 /* WHERE assignment statement */
10305 case EXEC_ASSIGN:
10306 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
10307 break;
10308
10309 /* WHERE operator assignment statement */
10310 case EXEC_ASSIGN_CALL:
10311 resolve_call (cnext);
10312 if (!cnext->resolved_sym->attr.elemental)
10313 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10314 &cnext->ext.actual->expr->where);
10315 break;
10316
10317 /* WHERE or WHERE construct is part of a where-body-construct */
10318 case EXEC_WHERE:
10319 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
10320 break;
10321
10322 default:
10323 gfc_error ("Unsupported statement inside WHERE at %L",
10324 &cnext->loc);
10325 }
10326 /* the next statement within the same where-body-construct */
10327 cnext = cnext->next;
10328 }
10329 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10330 cblock = cblock->block;
10331 }
10332 }
10333
10334
10335 /* Traverse the FORALL body to check whether the following errors exist:
10336 1. For assignment, check if a many-to-one assignment happens.
10337 2. For WHERE statement, check the WHERE body to see if there is any
10338 many-to-one assignment. */
10339
10340 static void
10341 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
10342 {
10343 gfc_code *c;
10344
10345 c = code->block->next;
10346 while (c)
10347 {
10348 switch (c->op)
10349 {
10350 case EXEC_ASSIGN:
10351 case EXEC_POINTER_ASSIGN:
10352 gfc_resolve_assign_in_forall (c, nvar, var_expr);
10353 break;
10354
10355 case EXEC_ASSIGN_CALL:
10356 resolve_call (c);
10357 break;
10358
10359 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
10360 there is no need to handle it here. */
10361 case EXEC_FORALL:
10362 break;
10363 case EXEC_WHERE:
10364 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
10365 break;
10366 default:
10367 break;
10368 }
10369 /* The next statement in the FORALL body. */
10370 c = c->next;
10371 }
10372 }
10373
10374
10375 /* Counts the number of iterators needed inside a forall construct, including
10376 nested forall constructs. This is used to allocate the needed memory
10377 in gfc_resolve_forall. */
10378
10379 static int
10380 gfc_count_forall_iterators (gfc_code *code)
10381 {
10382 int max_iters, sub_iters, current_iters;
10383 gfc_forall_iterator *fa;
10384
10385 gcc_assert(code->op == EXEC_FORALL);
10386 max_iters = 0;
10387 current_iters = 0;
10388
10389 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10390 current_iters ++;
10391
10392 code = code->block->next;
10393
10394 while (code)
10395 {
10396 if (code->op == EXEC_FORALL)
10397 {
10398 sub_iters = gfc_count_forall_iterators (code);
10399 if (sub_iters > max_iters)
10400 max_iters = sub_iters;
10401 }
10402 code = code->next;
10403 }
10404
10405 return current_iters + max_iters;
10406 }
10407
10408
10409 /* Given a FORALL construct, first resolve the FORALL iterator, then call
10410 gfc_resolve_forall_body to resolve the FORALL body. */
10411
10412 static void
10413 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
10414 {
10415 static gfc_expr **var_expr;
10416 static int total_var = 0;
10417 static int nvar = 0;
10418 int i, old_nvar, tmp;
10419 gfc_forall_iterator *fa;
10420
10421 old_nvar = nvar;
10422
10423 if (!gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
10424 return;
10425
10426 /* Start to resolve a FORALL construct */
10427 if (forall_save == 0)
10428 {
10429 /* Count the total number of FORALL indices in the nested FORALL
10430 construct in order to allocate the VAR_EXPR with proper size. */
10431 total_var = gfc_count_forall_iterators (code);
10432
10433 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
10434 var_expr = XCNEWVEC (gfc_expr *, total_var);
10435 }
10436
10437 /* The information about FORALL iterator, including FORALL indices start, end
10438 and stride. An outer FORALL indice cannot appear in start, end or stride. */
10439 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10440 {
10441 /* Fortran 20008: C738 (R753). */
10442 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
10443 {
10444 gfc_error ("FORALL index-name at %L must be a scalar variable "
10445 "of type integer", &fa->var->where);
10446 continue;
10447 }
10448
10449 /* Check if any outer FORALL index name is the same as the current
10450 one. */
10451 for (i = 0; i < nvar; i++)
10452 {
10453 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
10454 gfc_error ("An outer FORALL construct already has an index "
10455 "with this name %L", &fa->var->where);
10456 }
10457
10458 /* Record the current FORALL index. */
10459 var_expr[nvar] = gfc_copy_expr (fa->var);
10460
10461 nvar++;
10462
10463 /* No memory leak. */
10464 gcc_assert (nvar <= total_var);
10465 }
10466
10467 /* Resolve the FORALL body. */
10468 gfc_resolve_forall_body (code, nvar, var_expr);
10469
10470 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
10471 gfc_resolve_blocks (code->block, ns);
10472
10473 tmp = nvar;
10474 nvar = old_nvar;
10475 /* Free only the VAR_EXPRs allocated in this frame. */
10476 for (i = nvar; i < tmp; i++)
10477 gfc_free_expr (var_expr[i]);
10478
10479 if (nvar == 0)
10480 {
10481 /* We are in the outermost FORALL construct. */
10482 gcc_assert (forall_save == 0);
10483
10484 /* VAR_EXPR is not needed any more. */
10485 free (var_expr);
10486 total_var = 0;
10487 }
10488 }
10489
10490
10491 /* Resolve a BLOCK construct statement. */
10492
10493 static void
10494 resolve_block_construct (gfc_code* code)
10495 {
10496 /* Resolve the BLOCK's namespace. */
10497 gfc_resolve (code->ext.block.ns);
10498
10499 /* For an ASSOCIATE block, the associations (and their targets) are already
10500 resolved during resolve_symbol. */
10501 }
10502
10503
10504 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
10505 DO code nodes. */
10506
10507 void
10508 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10509 {
10510 bool t;
10511
10512 for (; b; b = b->block)
10513 {
10514 t = gfc_resolve_expr (b->expr1);
10515 if (!gfc_resolve_expr (b->expr2))
10516 t = false;
10517
10518 switch (b->op)
10519 {
10520 case EXEC_IF:
10521 if (t && b->expr1 != NULL
10522 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10523 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10524 &b->expr1->where);
10525 break;
10526
10527 case EXEC_WHERE:
10528 if (t
10529 && b->expr1 != NULL
10530 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10531 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10532 &b->expr1->where);
10533 break;
10534
10535 case EXEC_GOTO:
10536 resolve_branch (b->label1, b);
10537 break;
10538
10539 case EXEC_BLOCK:
10540 resolve_block_construct (b);
10541 break;
10542
10543 case EXEC_SELECT:
10544 case EXEC_SELECT_TYPE:
10545 case EXEC_SELECT_RANK:
10546 case EXEC_FORALL:
10547 case EXEC_DO:
10548 case EXEC_DO_WHILE:
10549 case EXEC_DO_CONCURRENT:
10550 case EXEC_CRITICAL:
10551 case EXEC_READ:
10552 case EXEC_WRITE:
10553 case EXEC_IOLENGTH:
10554 case EXEC_WAIT:
10555 break;
10556
10557 case EXEC_OMP_ATOMIC:
10558 case EXEC_OACC_ATOMIC:
10559 {
10560 gfc_omp_atomic_op aop
10561 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10562
10563 /* Verify this before calling gfc_resolve_code, which might
10564 change it. */
10565 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10566 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10567 && b->next->next == NULL)
10568 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10569 && b->next->next != NULL
10570 && b->next->next->op == EXEC_ASSIGN
10571 && b->next->next->next == NULL));
10572 }
10573 break;
10574
10575 case EXEC_OACC_PARALLEL_LOOP:
10576 case EXEC_OACC_PARALLEL:
10577 case EXEC_OACC_KERNELS_LOOP:
10578 case EXEC_OACC_KERNELS:
10579 case EXEC_OACC_DATA:
10580 case EXEC_OACC_HOST_DATA:
10581 case EXEC_OACC_LOOP:
10582 case EXEC_OACC_UPDATE:
10583 case EXEC_OACC_WAIT:
10584 case EXEC_OACC_CACHE:
10585 case EXEC_OACC_ENTER_DATA:
10586 case EXEC_OACC_EXIT_DATA:
10587 case EXEC_OACC_ROUTINE:
10588 case EXEC_OMP_CRITICAL:
10589 case EXEC_OMP_DISTRIBUTE:
10590 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10591 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10592 case EXEC_OMP_DISTRIBUTE_SIMD:
10593 case EXEC_OMP_DO:
10594 case EXEC_OMP_DO_SIMD:
10595 case EXEC_OMP_MASTER:
10596 case EXEC_OMP_ORDERED:
10597 case EXEC_OMP_PARALLEL:
10598 case EXEC_OMP_PARALLEL_DO:
10599 case EXEC_OMP_PARALLEL_DO_SIMD:
10600 case EXEC_OMP_PARALLEL_SECTIONS:
10601 case EXEC_OMP_PARALLEL_WORKSHARE:
10602 case EXEC_OMP_SECTIONS:
10603 case EXEC_OMP_SIMD:
10604 case EXEC_OMP_SINGLE:
10605 case EXEC_OMP_TARGET:
10606 case EXEC_OMP_TARGET_DATA:
10607 case EXEC_OMP_TARGET_ENTER_DATA:
10608 case EXEC_OMP_TARGET_EXIT_DATA:
10609 case EXEC_OMP_TARGET_PARALLEL:
10610 case EXEC_OMP_TARGET_PARALLEL_DO:
10611 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10612 case EXEC_OMP_TARGET_SIMD:
10613 case EXEC_OMP_TARGET_TEAMS:
10614 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10615 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10616 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10617 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10618 case EXEC_OMP_TARGET_UPDATE:
10619 case EXEC_OMP_TASK:
10620 case EXEC_OMP_TASKGROUP:
10621 case EXEC_OMP_TASKLOOP:
10622 case EXEC_OMP_TASKLOOP_SIMD:
10623 case EXEC_OMP_TASKWAIT:
10624 case EXEC_OMP_TASKYIELD:
10625 case EXEC_OMP_TEAMS:
10626 case EXEC_OMP_TEAMS_DISTRIBUTE:
10627 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10628 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10629 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10630 case EXEC_OMP_WORKSHARE:
10631 break;
10632
10633 default:
10634 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10635 }
10636
10637 gfc_resolve_code (b->next, ns);
10638 }
10639 }
10640
10641
10642 /* Does everything to resolve an ordinary assignment. Returns true
10643 if this is an interface assignment. */
10644 static bool
10645 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10646 {
10647 bool rval = false;
10648 gfc_expr *lhs;
10649 gfc_expr *rhs;
10650 int n;
10651 gfc_ref *ref;
10652 symbol_attribute attr;
10653
10654 if (gfc_extend_assign (code, ns))
10655 {
10656 gfc_expr** rhsptr;
10657
10658 if (code->op == EXEC_ASSIGN_CALL)
10659 {
10660 lhs = code->ext.actual->expr;
10661 rhsptr = &code->ext.actual->next->expr;
10662 }
10663 else
10664 {
10665 gfc_actual_arglist* args;
10666 gfc_typebound_proc* tbp;
10667
10668 gcc_assert (code->op == EXEC_COMPCALL);
10669
10670 args = code->expr1->value.compcall.actual;
10671 lhs = args->expr;
10672 rhsptr = &args->next->expr;
10673
10674 tbp = code->expr1->value.compcall.tbp;
10675 gcc_assert (!tbp->is_generic);
10676 }
10677
10678 /* Make a temporary rhs when there is a default initializer
10679 and rhs is the same symbol as the lhs. */
10680 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10681 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10682 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10683 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10684 *rhsptr = gfc_get_parentheses (*rhsptr);
10685
10686 return true;
10687 }
10688
10689 lhs = code->expr1;
10690 rhs = code->expr2;
10691
10692 /* Handle the case of a BOZ literal on the RHS. */
10693 if (rhs->ts.type == BT_BOZ)
10694 {
10695 if (gfc_invalid_boz ("BOZ literal constant at %L is neither a DATA "
10696 "statement value nor an actual argument of "
10697 "INT/REAL/DBLE/CMPLX intrinsic subprogram",
10698 &rhs->where))
10699 return false;
10700
10701 switch (lhs->ts.type)
10702 {
10703 case BT_INTEGER:
10704 if (!gfc_boz2int (rhs, lhs->ts.kind))
10705 return false;
10706 break;
10707 case BT_REAL:
10708 if (!gfc_boz2real (rhs, lhs->ts.kind))
10709 return false;
10710 break;
10711 default:
10712 gfc_error ("Invalid use of BOZ literal constant at %L", &rhs->where);
10713 return false;
10714 }
10715 }
10716
10717 if (lhs->ts.type == BT_CHARACTER && warn_character_truncation)
10718 {
10719 HOST_WIDE_INT llen = 0, rlen = 0;
10720 if (lhs->ts.u.cl != NULL
10721 && lhs->ts.u.cl->length != NULL
10722 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10723 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10724
10725 if (rhs->expr_type == EXPR_CONSTANT)
10726 rlen = rhs->value.character.length;
10727
10728 else if (rhs->ts.u.cl != NULL
10729 && rhs->ts.u.cl->length != NULL
10730 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10731 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10732
10733 if (rlen && llen && rlen > llen)
10734 gfc_warning_now (OPT_Wcharacter_truncation,
10735 "CHARACTER expression will be truncated "
10736 "in assignment (%ld/%ld) at %L",
10737 (long) llen, (long) rlen, &code->loc);
10738 }
10739
10740 /* Ensure that a vector index expression for the lvalue is evaluated
10741 to a temporary if the lvalue symbol is referenced in it. */
10742 if (lhs->rank)
10743 {
10744 for (ref = lhs->ref; ref; ref= ref->next)
10745 if (ref->type == REF_ARRAY)
10746 {
10747 for (n = 0; n < ref->u.ar.dimen; n++)
10748 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10749 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10750 ref->u.ar.start[n]))
10751 ref->u.ar.start[n]
10752 = gfc_get_parentheses (ref->u.ar.start[n]);
10753 }
10754 }
10755
10756 if (gfc_pure (NULL))
10757 {
10758 if (lhs->ts.type == BT_DERIVED
10759 && lhs->expr_type == EXPR_VARIABLE
10760 && lhs->ts.u.derived->attr.pointer_comp
10761 && rhs->expr_type == EXPR_VARIABLE
10762 && (gfc_impure_variable (rhs->symtree->n.sym)
10763 || gfc_is_coindexed (rhs)))
10764 {
10765 /* F2008, C1283. */
10766 if (gfc_is_coindexed (rhs))
10767 gfc_error ("Coindexed expression at %L is assigned to "
10768 "a derived type variable with a POINTER "
10769 "component in a PURE procedure",
10770 &rhs->where);
10771 else
10772 /* F2008, C1283 (4). */
10773 gfc_error ("In a pure subprogram an INTENT(IN) dummy argument "
10774 "shall not be used as the expr at %L of an intrinsic "
10775 "assignment statement in which the variable is of a "
10776 "derived type if the derived type has a pointer "
10777 "component at any level of component selection.",
10778 &rhs->where);
10779 return rval;
10780 }
10781
10782 /* Fortran 2008, C1283. */
10783 if (gfc_is_coindexed (lhs))
10784 {
10785 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10786 "procedure", &rhs->where);
10787 return rval;
10788 }
10789 }
10790
10791 if (gfc_implicit_pure (NULL))
10792 {
10793 if (lhs->expr_type == EXPR_VARIABLE
10794 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10795 && lhs->symtree->n.sym->ns != gfc_current_ns)
10796 gfc_unset_implicit_pure (NULL);
10797
10798 if (lhs->ts.type == BT_DERIVED
10799 && lhs->expr_type == EXPR_VARIABLE
10800 && lhs->ts.u.derived->attr.pointer_comp
10801 && rhs->expr_type == EXPR_VARIABLE
10802 && (gfc_impure_variable (rhs->symtree->n.sym)
10803 || gfc_is_coindexed (rhs)))
10804 gfc_unset_implicit_pure (NULL);
10805
10806 /* Fortran 2008, C1283. */
10807 if (gfc_is_coindexed (lhs))
10808 gfc_unset_implicit_pure (NULL);
10809 }
10810
10811 /* F2008, 7.2.1.2. */
10812 attr = gfc_expr_attr (lhs);
10813 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10814 {
10815 if (attr.codimension)
10816 {
10817 gfc_error ("Assignment to polymorphic coarray at %L is not "
10818 "permitted", &lhs->where);
10819 return false;
10820 }
10821 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10822 "polymorphic variable at %L", &lhs->where))
10823 return false;
10824 if (!flag_realloc_lhs)
10825 {
10826 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10827 "requires %<-frealloc-lhs%>", &lhs->where);
10828 return false;
10829 }
10830 }
10831 else if (lhs->ts.type == BT_CLASS)
10832 {
10833 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10834 "assignment at %L - check that there is a matching specific "
10835 "subroutine for '=' operator", &lhs->where);
10836 return false;
10837 }
10838
10839 bool lhs_coindexed = gfc_is_coindexed (lhs);
10840
10841 /* F2008, Section 7.2.1.2. */
10842 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10843 {
10844 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10845 "component in assignment at %L", &lhs->where);
10846 return false;
10847 }
10848
10849 /* Assign the 'data' of a class object to a derived type. */
10850 if (lhs->ts.type == BT_DERIVED
10851 && rhs->ts.type == BT_CLASS
10852 && rhs->expr_type != EXPR_ARRAY)
10853 gfc_add_data_component (rhs);
10854
10855 /* Make sure there is a vtable and, in particular, a _copy for the
10856 rhs type. */
10857 if (UNLIMITED_POLY (lhs) && lhs->rank && rhs->ts.type != BT_CLASS)
10858 gfc_find_vtab (&rhs->ts);
10859
10860 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
10861 && (lhs_coindexed
10862 || (code->expr2->expr_type == EXPR_FUNCTION
10863 && code->expr2->value.function.isym
10864 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
10865 && (code->expr1->rank == 0 || code->expr2->rank != 0)
10866 && !gfc_expr_attr (rhs).allocatable
10867 && !gfc_has_vector_subscript (rhs)));
10868
10869 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
10870
10871 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10872 Additionally, insert this code when the RHS is a CAF as we then use the
10873 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10874 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10875 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10876 path. */
10877 if (caf_convert_to_send)
10878 {
10879 if (code->expr2->expr_type == EXPR_FUNCTION
10880 && code->expr2->value.function.isym
10881 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
10882 remove_caf_get_intrinsic (code->expr2);
10883 code->op = EXEC_CALL;
10884 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
10885 code->resolved_sym = code->symtree->n.sym;
10886 code->resolved_sym->attr.flavor = FL_PROCEDURE;
10887 code->resolved_sym->attr.intrinsic = 1;
10888 code->resolved_sym->attr.subroutine = 1;
10889 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
10890 gfc_commit_symbol (code->resolved_sym);
10891 code->ext.actual = gfc_get_actual_arglist ();
10892 code->ext.actual->expr = lhs;
10893 code->ext.actual->next = gfc_get_actual_arglist ();
10894 code->ext.actual->next->expr = rhs;
10895 code->expr1 = NULL;
10896 code->expr2 = NULL;
10897 }
10898
10899 return false;
10900 }
10901
10902
10903 /* Add a component reference onto an expression. */
10904
10905 static void
10906 add_comp_ref (gfc_expr *e, gfc_component *c)
10907 {
10908 gfc_ref **ref;
10909 ref = &(e->ref);
10910 while (*ref)
10911 ref = &((*ref)->next);
10912 *ref = gfc_get_ref ();
10913 (*ref)->type = REF_COMPONENT;
10914 (*ref)->u.c.sym = e->ts.u.derived;
10915 (*ref)->u.c.component = c;
10916 e->ts = c->ts;
10917
10918 /* Add a full array ref, as necessary. */
10919 if (c->as)
10920 {
10921 gfc_add_full_array_ref (e, c->as);
10922 e->rank = c->as->rank;
10923 }
10924 }
10925
10926
10927 /* Build an assignment. Keep the argument 'op' for future use, so that
10928 pointer assignments can be made. */
10929
10930 static gfc_code *
10931 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
10932 gfc_component *comp1, gfc_component *comp2, locus loc)
10933 {
10934 gfc_code *this_code;
10935
10936 this_code = gfc_get_code (op);
10937 this_code->next = NULL;
10938 this_code->expr1 = gfc_copy_expr (expr1);
10939 this_code->expr2 = gfc_copy_expr (expr2);
10940 this_code->loc = loc;
10941 if (comp1 && comp2)
10942 {
10943 add_comp_ref (this_code->expr1, comp1);
10944 add_comp_ref (this_code->expr2, comp2);
10945 }
10946
10947 return this_code;
10948 }
10949
10950
10951 /* Makes a temporary variable expression based on the characteristics of
10952 a given variable expression. */
10953
10954 static gfc_expr*
10955 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
10956 {
10957 static int serial = 0;
10958 char name[GFC_MAX_SYMBOL_LEN];
10959 gfc_symtree *tmp;
10960 gfc_array_spec *as;
10961 gfc_array_ref *aref;
10962 gfc_ref *ref;
10963
10964 sprintf (name, GFC_PREFIX("DA%d"), serial++);
10965 gfc_get_sym_tree (name, ns, &tmp, false);
10966 gfc_add_type (tmp->n.sym, &e->ts, NULL);
10967
10968 if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
10969 tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
10970 NULL,
10971 e->value.character.length);
10972
10973 as = NULL;
10974 ref = NULL;
10975 aref = NULL;
10976
10977 /* Obtain the arrayspec for the temporary. */
10978 if (e->rank && e->expr_type != EXPR_ARRAY
10979 && e->expr_type != EXPR_FUNCTION
10980 && e->expr_type != EXPR_OP)
10981 {
10982 aref = gfc_find_array_ref (e);
10983 if (e->expr_type == EXPR_VARIABLE
10984 && e->symtree->n.sym->as == aref->as)
10985 as = aref->as;
10986 else
10987 {
10988 for (ref = e->ref; ref; ref = ref->next)
10989 if (ref->type == REF_COMPONENT
10990 && ref->u.c.component->as == aref->as)
10991 {
10992 as = aref->as;
10993 break;
10994 }
10995 }
10996 }
10997
10998 /* Add the attributes and the arrayspec to the temporary. */
10999 tmp->n.sym->attr = gfc_expr_attr (e);
11000 tmp->n.sym->attr.function = 0;
11001 tmp->n.sym->attr.result = 0;
11002 tmp->n.sym->attr.flavor = FL_VARIABLE;
11003 tmp->n.sym->attr.dummy = 0;
11004 tmp->n.sym->attr.intent = INTENT_UNKNOWN;
11005
11006 if (as)
11007 {
11008 tmp->n.sym->as = gfc_copy_array_spec (as);
11009 if (!ref)
11010 ref = e->ref;
11011 if (as->type == AS_DEFERRED)
11012 tmp->n.sym->attr.allocatable = 1;
11013 }
11014 else if (e->rank && (e->expr_type == EXPR_ARRAY
11015 || e->expr_type == EXPR_FUNCTION
11016 || e->expr_type == EXPR_OP))
11017 {
11018 tmp->n.sym->as = gfc_get_array_spec ();
11019 tmp->n.sym->as->type = AS_DEFERRED;
11020 tmp->n.sym->as->rank = e->rank;
11021 tmp->n.sym->attr.allocatable = 1;
11022 tmp->n.sym->attr.dimension = 1;
11023 }
11024 else
11025 tmp->n.sym->attr.dimension = 0;
11026
11027 gfc_set_sym_referenced (tmp->n.sym);
11028 gfc_commit_symbol (tmp->n.sym);
11029 e = gfc_lval_expr_from_sym (tmp->n.sym);
11030
11031 /* Should the lhs be a section, use its array ref for the
11032 temporary expression. */
11033 if (aref && aref->type != AR_FULL)
11034 {
11035 gfc_free_ref_list (e->ref);
11036 e->ref = gfc_copy_ref (ref);
11037 }
11038 return e;
11039 }
11040
11041
11042 /* Add one line of code to the code chain, making sure that 'head' and
11043 'tail' are appropriately updated. */
11044
11045 static void
11046 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
11047 {
11048 gcc_assert (this_code);
11049 if (*head == NULL)
11050 *head = *tail = *this_code;
11051 else
11052 *tail = gfc_append_code (*tail, *this_code);
11053 *this_code = NULL;
11054 }
11055
11056
11057 /* Counts the potential number of part array references that would
11058 result from resolution of typebound defined assignments. */
11059
11060 static int
11061 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
11062 {
11063 gfc_component *c;
11064 int c_depth = 0, t_depth;
11065
11066 for (c= derived->components; c; c = c->next)
11067 {
11068 if ((!gfc_bt_struct (c->ts.type)
11069 || c->attr.pointer
11070 || c->attr.allocatable
11071 || c->attr.proc_pointer_comp
11072 || c->attr.class_pointer
11073 || c->attr.proc_pointer)
11074 && !c->attr.defined_assign_comp)
11075 continue;
11076
11077 if (c->as && c_depth == 0)
11078 c_depth = 1;
11079
11080 if (c->ts.u.derived->attr.defined_assign_comp)
11081 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
11082 c->as ? 1 : 0);
11083 else
11084 t_depth = 0;
11085
11086 c_depth = t_depth > c_depth ? t_depth : c_depth;
11087 }
11088 return depth + c_depth;
11089 }
11090
11091
11092 /* Implement 7.2.1.3 of the F08 standard:
11093 "An intrinsic assignment where the variable is of derived type is
11094 performed as if each component of the variable were assigned from the
11095 corresponding component of expr using pointer assignment (7.2.2) for
11096 each pointer component, defined assignment for each nonpointer
11097 nonallocatable component of a type that has a type-bound defined
11098 assignment consistent with the component, intrinsic assignment for
11099 each other nonpointer nonallocatable component, ..."
11100
11101 The pointer assignments are taken care of by the intrinsic
11102 assignment of the structure itself. This function recursively adds
11103 defined assignments where required. The recursion is accomplished
11104 by calling gfc_resolve_code.
11105
11106 When the lhs in a defined assignment has intent INOUT, we need a
11107 temporary for the lhs. In pseudo-code:
11108
11109 ! Only call function lhs once.
11110 if (lhs is not a constant or an variable)
11111 temp_x = expr2
11112 expr2 => temp_x
11113 ! Do the intrinsic assignment
11114 expr1 = expr2
11115 ! Now do the defined assignments
11116 do over components with typebound defined assignment [%cmp]
11117 #if one component's assignment procedure is INOUT
11118 t1 = expr1
11119 #if expr2 non-variable
11120 temp_x = expr2
11121 expr2 => temp_x
11122 # endif
11123 expr1 = expr2
11124 # for each cmp
11125 t1%cmp {defined=} expr2%cmp
11126 expr1%cmp = t1%cmp
11127 #else
11128 expr1 = expr2
11129
11130 # for each cmp
11131 expr1%cmp {defined=} expr2%cmp
11132 #endif
11133 */
11134
11135 /* The temporary assignments have to be put on top of the additional
11136 code to avoid the result being changed by the intrinsic assignment.
11137 */
11138 static int component_assignment_level = 0;
11139 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
11140
11141 static void
11142 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
11143 {
11144 gfc_component *comp1, *comp2;
11145 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
11146 gfc_expr *t1;
11147 int error_count, depth;
11148
11149 gfc_get_errors (NULL, &error_count);
11150
11151 /* Filter out continuing processing after an error. */
11152 if (error_count
11153 || (*code)->expr1->ts.type != BT_DERIVED
11154 || (*code)->expr2->ts.type != BT_DERIVED)
11155 return;
11156
11157 /* TODO: Handle more than one part array reference in assignments. */
11158 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
11159 (*code)->expr1->rank ? 1 : 0);
11160 if (depth > 1)
11161 {
11162 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
11163 "done because multiple part array references would "
11164 "occur in intermediate expressions.", &(*code)->loc);
11165 return;
11166 }
11167
11168 component_assignment_level++;
11169
11170 /* Create a temporary so that functions get called only once. */
11171 if ((*code)->expr2->expr_type != EXPR_VARIABLE
11172 && (*code)->expr2->expr_type != EXPR_CONSTANT)
11173 {
11174 gfc_expr *tmp_expr;
11175
11176 /* Assign the rhs to the temporary. */
11177 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11178 this_code = build_assignment (EXEC_ASSIGN,
11179 tmp_expr, (*code)->expr2,
11180 NULL, NULL, (*code)->loc);
11181 /* Add the code and substitute the rhs expression. */
11182 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
11183 gfc_free_expr ((*code)->expr2);
11184 (*code)->expr2 = tmp_expr;
11185 }
11186
11187 /* Do the intrinsic assignment. This is not needed if the lhs is one
11188 of the temporaries generated here, since the intrinsic assignment
11189 to the final result already does this. */
11190 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
11191 {
11192 this_code = build_assignment (EXEC_ASSIGN,
11193 (*code)->expr1, (*code)->expr2,
11194 NULL, NULL, (*code)->loc);
11195 add_code_to_chain (&this_code, &head, &tail);
11196 }
11197
11198 comp1 = (*code)->expr1->ts.u.derived->components;
11199 comp2 = (*code)->expr2->ts.u.derived->components;
11200
11201 t1 = NULL;
11202 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
11203 {
11204 bool inout = false;
11205
11206 /* The intrinsic assignment does the right thing for pointers
11207 of all kinds and allocatable components. */
11208 if (!gfc_bt_struct (comp1->ts.type)
11209 || comp1->attr.pointer
11210 || comp1->attr.allocatable
11211 || comp1->attr.proc_pointer_comp
11212 || comp1->attr.class_pointer
11213 || comp1->attr.proc_pointer)
11214 continue;
11215
11216 /* Make an assigment for this component. */
11217 this_code = build_assignment (EXEC_ASSIGN,
11218 (*code)->expr1, (*code)->expr2,
11219 comp1, comp2, (*code)->loc);
11220
11221 /* Convert the assignment if there is a defined assignment for
11222 this type. Otherwise, using the call from gfc_resolve_code,
11223 recurse into its components. */
11224 gfc_resolve_code (this_code, ns);
11225
11226 if (this_code->op == EXEC_ASSIGN_CALL)
11227 {
11228 gfc_formal_arglist *dummy_args;
11229 gfc_symbol *rsym;
11230 /* Check that there is a typebound defined assignment. If not,
11231 then this must be a module defined assignment. We cannot
11232 use the defined_assign_comp attribute here because it must
11233 be this derived type that has the defined assignment and not
11234 a parent type. */
11235 if (!(comp1->ts.u.derived->f2k_derived
11236 && comp1->ts.u.derived->f2k_derived
11237 ->tb_op[INTRINSIC_ASSIGN]))
11238 {
11239 gfc_free_statements (this_code);
11240 this_code = NULL;
11241 continue;
11242 }
11243
11244 /* If the first argument of the subroutine has intent INOUT
11245 a temporary must be generated and used instead. */
11246 rsym = this_code->resolved_sym;
11247 dummy_args = gfc_sym_get_dummy_args (rsym);
11248 if (dummy_args
11249 && dummy_args->sym->attr.intent == INTENT_INOUT)
11250 {
11251 gfc_code *temp_code;
11252 inout = true;
11253
11254 /* Build the temporary required for the assignment and put
11255 it at the head of the generated code. */
11256 if (!t1)
11257 {
11258 t1 = get_temp_from_expr ((*code)->expr1, ns);
11259 temp_code = build_assignment (EXEC_ASSIGN,
11260 t1, (*code)->expr1,
11261 NULL, NULL, (*code)->loc);
11262
11263 /* For allocatable LHS, check whether it is allocated. Note
11264 that allocatable components with defined assignment are
11265 not yet support. See PR 57696. */
11266 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
11267 {
11268 gfc_code *block;
11269 gfc_expr *e =
11270 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11271 block = gfc_get_code (EXEC_IF);
11272 block->block = gfc_get_code (EXEC_IF);
11273 block->block->expr1
11274 = gfc_build_intrinsic_call (ns,
11275 GFC_ISYM_ALLOCATED, "allocated",
11276 (*code)->loc, 1, e);
11277 block->block->next = temp_code;
11278 temp_code = block;
11279 }
11280 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
11281 }
11282
11283 /* Replace the first actual arg with the component of the
11284 temporary. */
11285 gfc_free_expr (this_code->ext.actual->expr);
11286 this_code->ext.actual->expr = gfc_copy_expr (t1);
11287 add_comp_ref (this_code->ext.actual->expr, comp1);
11288
11289 /* If the LHS variable is allocatable and wasn't allocated and
11290 the temporary is allocatable, pointer assign the address of
11291 the freshly allocated LHS to the temporary. */
11292 if ((*code)->expr1->symtree->n.sym->attr.allocatable
11293 && gfc_expr_attr ((*code)->expr1).allocatable)
11294 {
11295 gfc_code *block;
11296 gfc_expr *cond;
11297
11298 cond = gfc_get_expr ();
11299 cond->ts.type = BT_LOGICAL;
11300 cond->ts.kind = gfc_default_logical_kind;
11301 cond->expr_type = EXPR_OP;
11302 cond->where = (*code)->loc;
11303 cond->value.op.op = INTRINSIC_NOT;
11304 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
11305 GFC_ISYM_ALLOCATED, "allocated",
11306 (*code)->loc, 1, gfc_copy_expr (t1));
11307 block = gfc_get_code (EXEC_IF);
11308 block->block = gfc_get_code (EXEC_IF);
11309 block->block->expr1 = cond;
11310 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11311 t1, (*code)->expr1,
11312 NULL, NULL, (*code)->loc);
11313 add_code_to_chain (&block, &head, &tail);
11314 }
11315 }
11316 }
11317 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
11318 {
11319 /* Don't add intrinsic assignments since they are already
11320 effected by the intrinsic assignment of the structure. */
11321 gfc_free_statements (this_code);
11322 this_code = NULL;
11323 continue;
11324 }
11325
11326 add_code_to_chain (&this_code, &head, &tail);
11327
11328 if (t1 && inout)
11329 {
11330 /* Transfer the value to the final result. */
11331 this_code = build_assignment (EXEC_ASSIGN,
11332 (*code)->expr1, t1,
11333 comp1, comp2, (*code)->loc);
11334 add_code_to_chain (&this_code, &head, &tail);
11335 }
11336 }
11337
11338 /* Put the temporary assignments at the top of the generated code. */
11339 if (tmp_head && component_assignment_level == 1)
11340 {
11341 gfc_append_code (tmp_head, head);
11342 head = tmp_head;
11343 tmp_head = tmp_tail = NULL;
11344 }
11345
11346 // If we did a pointer assignment - thus, we need to ensure that the LHS is
11347 // not accidentally deallocated. Hence, nullify t1.
11348 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
11349 && gfc_expr_attr ((*code)->expr1).allocatable)
11350 {
11351 gfc_code *block;
11352 gfc_expr *cond;
11353 gfc_expr *e;
11354
11355 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11356 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
11357 (*code)->loc, 2, gfc_copy_expr (t1), e);
11358 block = gfc_get_code (EXEC_IF);
11359 block->block = gfc_get_code (EXEC_IF);
11360 block->block->expr1 = cond;
11361 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11362 t1, gfc_get_null_expr (&(*code)->loc),
11363 NULL, NULL, (*code)->loc);
11364 gfc_append_code (tail, block);
11365 tail = block;
11366 }
11367
11368 /* Now attach the remaining code chain to the input code. Step on
11369 to the end of the new code since resolution is complete. */
11370 gcc_assert ((*code)->op == EXEC_ASSIGN);
11371 tail->next = (*code)->next;
11372 /* Overwrite 'code' because this would place the intrinsic assignment
11373 before the temporary for the lhs is created. */
11374 gfc_free_expr ((*code)->expr1);
11375 gfc_free_expr ((*code)->expr2);
11376 **code = *head;
11377 if (head != tail)
11378 free (head);
11379 *code = tail;
11380
11381 component_assignment_level--;
11382 }
11383
11384
11385 /* F2008: Pointer function assignments are of the form:
11386 ptr_fcn (args) = expr
11387 This function breaks these assignments into two statements:
11388 temporary_pointer => ptr_fcn(args)
11389 temporary_pointer = expr */
11390
11391 static bool
11392 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
11393 {
11394 gfc_expr *tmp_ptr_expr;
11395 gfc_code *this_code;
11396 gfc_component *comp;
11397 gfc_symbol *s;
11398
11399 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
11400 return false;
11401
11402 /* Even if standard does not support this feature, continue to build
11403 the two statements to avoid upsetting frontend_passes.c. */
11404 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
11405 "%L", &(*code)->loc);
11406
11407 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
11408
11409 if (comp)
11410 s = comp->ts.interface;
11411 else
11412 s = (*code)->expr1->symtree->n.sym;
11413
11414 if (s == NULL || !s->result->attr.pointer)
11415 {
11416 gfc_error ("The function result on the lhs of the assignment at "
11417 "%L must have the pointer attribute.",
11418 &(*code)->expr1->where);
11419 (*code)->op = EXEC_NOP;
11420 return false;
11421 }
11422
11423 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
11424
11425 /* get_temp_from_expression is set up for ordinary assignments. To that
11426 end, where array bounds are not known, arrays are made allocatable.
11427 Change the temporary to a pointer here. */
11428 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
11429 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
11430 tmp_ptr_expr->where = (*code)->loc;
11431
11432 this_code = build_assignment (EXEC_ASSIGN,
11433 tmp_ptr_expr, (*code)->expr2,
11434 NULL, NULL, (*code)->loc);
11435 this_code->next = (*code)->next;
11436 (*code)->next = this_code;
11437 (*code)->op = EXEC_POINTER_ASSIGN;
11438 (*code)->expr2 = (*code)->expr1;
11439 (*code)->expr1 = tmp_ptr_expr;
11440
11441 return true;
11442 }
11443
11444
11445 /* Deferred character length assignments from an operator expression
11446 require a temporary because the character length of the lhs can
11447 change in the course of the assignment. */
11448
11449 static bool
11450 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
11451 {
11452 gfc_expr *tmp_expr;
11453 gfc_code *this_code;
11454
11455 if (!((*code)->expr1->ts.type == BT_CHARACTER
11456 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
11457 && (*code)->expr2->expr_type == EXPR_OP))
11458 return false;
11459
11460 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
11461 return false;
11462
11463 if (gfc_expr_attr ((*code)->expr1).pointer)
11464 return false;
11465
11466 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11467 tmp_expr->where = (*code)->loc;
11468
11469 /* A new charlen is required to ensure that the variable string
11470 length is different to that of the original lhs. */
11471 tmp_expr->ts.u.cl = gfc_get_charlen();
11472 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
11473 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
11474 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
11475
11476 tmp_expr->symtree->n.sym->ts.deferred = 1;
11477
11478 this_code = build_assignment (EXEC_ASSIGN,
11479 (*code)->expr1,
11480 gfc_copy_expr (tmp_expr),
11481 NULL, NULL, (*code)->loc);
11482
11483 (*code)->expr1 = tmp_expr;
11484
11485 this_code->next = (*code)->next;
11486 (*code)->next = this_code;
11487
11488 return true;
11489 }
11490
11491
11492 /* Given a block of code, recursively resolve everything pointed to by this
11493 code block. */
11494
11495 void
11496 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
11497 {
11498 int omp_workshare_save;
11499 int forall_save, do_concurrent_save;
11500 code_stack frame;
11501 bool t;
11502
11503 frame.prev = cs_base;
11504 frame.head = code;
11505 cs_base = &frame;
11506
11507 find_reachable_labels (code);
11508
11509 for (; code; code = code->next)
11510 {
11511 frame.current = code;
11512 forall_save = forall_flag;
11513 do_concurrent_save = gfc_do_concurrent_flag;
11514
11515 if (code->op == EXEC_FORALL)
11516 {
11517 forall_flag = 1;
11518 gfc_resolve_forall (code, ns, forall_save);
11519 forall_flag = 2;
11520 }
11521 else if (code->block)
11522 {
11523 omp_workshare_save = -1;
11524 switch (code->op)
11525 {
11526 case EXEC_OACC_PARALLEL_LOOP:
11527 case EXEC_OACC_PARALLEL:
11528 case EXEC_OACC_KERNELS_LOOP:
11529 case EXEC_OACC_KERNELS:
11530 case EXEC_OACC_DATA:
11531 case EXEC_OACC_HOST_DATA:
11532 case EXEC_OACC_LOOP:
11533 gfc_resolve_oacc_blocks (code, ns);
11534 break;
11535 case EXEC_OMP_PARALLEL_WORKSHARE:
11536 omp_workshare_save = omp_workshare_flag;
11537 omp_workshare_flag = 1;
11538 gfc_resolve_omp_parallel_blocks (code, ns);
11539 break;
11540 case EXEC_OMP_PARALLEL:
11541 case EXEC_OMP_PARALLEL_DO:
11542 case EXEC_OMP_PARALLEL_DO_SIMD:
11543 case EXEC_OMP_PARALLEL_SECTIONS:
11544 case EXEC_OMP_TARGET_PARALLEL:
11545 case EXEC_OMP_TARGET_PARALLEL_DO:
11546 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11547 case EXEC_OMP_TARGET_TEAMS:
11548 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11549 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11550 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11551 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11552 case EXEC_OMP_TASK:
11553 case EXEC_OMP_TASKLOOP:
11554 case EXEC_OMP_TASKLOOP_SIMD:
11555 case EXEC_OMP_TEAMS:
11556 case EXEC_OMP_TEAMS_DISTRIBUTE:
11557 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11558 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11559 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11560 omp_workshare_save = omp_workshare_flag;
11561 omp_workshare_flag = 0;
11562 gfc_resolve_omp_parallel_blocks (code, ns);
11563 break;
11564 case EXEC_OMP_DISTRIBUTE:
11565 case EXEC_OMP_DISTRIBUTE_SIMD:
11566 case EXEC_OMP_DO:
11567 case EXEC_OMP_DO_SIMD:
11568 case EXEC_OMP_SIMD:
11569 case EXEC_OMP_TARGET_SIMD:
11570 gfc_resolve_omp_do_blocks (code, ns);
11571 break;
11572 case EXEC_SELECT_TYPE:
11573 /* Blocks are handled in resolve_select_type because we have
11574 to transform the SELECT TYPE into ASSOCIATE first. */
11575 break;
11576 case EXEC_DO_CONCURRENT:
11577 gfc_do_concurrent_flag = 1;
11578 gfc_resolve_blocks (code->block, ns);
11579 gfc_do_concurrent_flag = 2;
11580 break;
11581 case EXEC_OMP_WORKSHARE:
11582 omp_workshare_save = omp_workshare_flag;
11583 omp_workshare_flag = 1;
11584 /* FALL THROUGH */
11585 default:
11586 gfc_resolve_blocks (code->block, ns);
11587 break;
11588 }
11589
11590 if (omp_workshare_save != -1)
11591 omp_workshare_flag = omp_workshare_save;
11592 }
11593 start:
11594 t = true;
11595 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11596 t = gfc_resolve_expr (code->expr1);
11597 forall_flag = forall_save;
11598 gfc_do_concurrent_flag = do_concurrent_save;
11599
11600 if (!gfc_resolve_expr (code->expr2))
11601 t = false;
11602
11603 if (code->op == EXEC_ALLOCATE
11604 && !gfc_resolve_expr (code->expr3))
11605 t = false;
11606
11607 switch (code->op)
11608 {
11609 case EXEC_NOP:
11610 case EXEC_END_BLOCK:
11611 case EXEC_END_NESTED_BLOCK:
11612 case EXEC_CYCLE:
11613 case EXEC_PAUSE:
11614 case EXEC_STOP:
11615 case EXEC_ERROR_STOP:
11616 case EXEC_EXIT:
11617 case EXEC_CONTINUE:
11618 case EXEC_DT_END:
11619 case EXEC_ASSIGN_CALL:
11620 break;
11621
11622 case EXEC_CRITICAL:
11623 resolve_critical (code);
11624 break;
11625
11626 case EXEC_SYNC_ALL:
11627 case EXEC_SYNC_IMAGES:
11628 case EXEC_SYNC_MEMORY:
11629 resolve_sync (code);
11630 break;
11631
11632 case EXEC_LOCK:
11633 case EXEC_UNLOCK:
11634 case EXEC_EVENT_POST:
11635 case EXEC_EVENT_WAIT:
11636 resolve_lock_unlock_event (code);
11637 break;
11638
11639 case EXEC_FAIL_IMAGE:
11640 case EXEC_FORM_TEAM:
11641 case EXEC_CHANGE_TEAM:
11642 case EXEC_END_TEAM:
11643 case EXEC_SYNC_TEAM:
11644 break;
11645
11646 case EXEC_ENTRY:
11647 /* Keep track of which entry we are up to. */
11648 current_entry_id = code->ext.entry->id;
11649 break;
11650
11651 case EXEC_WHERE:
11652 resolve_where (code, NULL);
11653 break;
11654
11655 case EXEC_GOTO:
11656 if (code->expr1 != NULL)
11657 {
11658 if (code->expr1->ts.type != BT_INTEGER)
11659 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11660 "INTEGER variable", &code->expr1->where);
11661 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11662 gfc_error ("Variable %qs has not been assigned a target "
11663 "label at %L", code->expr1->symtree->n.sym->name,
11664 &code->expr1->where);
11665 }
11666 else
11667 resolve_branch (code->label1, code);
11668 break;
11669
11670 case EXEC_RETURN:
11671 if (code->expr1 != NULL
11672 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11673 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11674 "INTEGER return specifier", &code->expr1->where);
11675 break;
11676
11677 case EXEC_INIT_ASSIGN:
11678 case EXEC_END_PROCEDURE:
11679 break;
11680
11681 case EXEC_ASSIGN:
11682 if (!t)
11683 break;
11684
11685 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11686 the LHS. */
11687 if (code->expr1->expr_type == EXPR_FUNCTION
11688 && code->expr1->value.function.isym
11689 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11690 remove_caf_get_intrinsic (code->expr1);
11691
11692 /* If this is a pointer function in an lvalue variable context,
11693 the new code will have to be resolved afresh. This is also the
11694 case with an error, where the code is transformed into NOP to
11695 prevent ICEs downstream. */
11696 if (resolve_ptr_fcn_assign (&code, ns)
11697 || code->op == EXEC_NOP)
11698 goto start;
11699
11700 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11701 _("assignment")))
11702 break;
11703
11704 if (resolve_ordinary_assign (code, ns))
11705 {
11706 if (code->op == EXEC_COMPCALL)
11707 goto compcall;
11708 else
11709 goto call;
11710 }
11711
11712 /* Check for dependencies in deferred character length array
11713 assignments and generate a temporary, if necessary. */
11714 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11715 break;
11716
11717 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11718 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11719 && code->expr1->ts.u.derived
11720 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11721 generate_component_assignments (&code, ns);
11722
11723 break;
11724
11725 case EXEC_LABEL_ASSIGN:
11726 if (code->label1->defined == ST_LABEL_UNKNOWN)
11727 gfc_error ("Label %d referenced at %L is never defined",
11728 code->label1->value, &code->label1->where);
11729 if (t
11730 && (code->expr1->expr_type != EXPR_VARIABLE
11731 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11732 || code->expr1->symtree->n.sym->ts.kind
11733 != gfc_default_integer_kind
11734 || code->expr1->symtree->n.sym->as != NULL))
11735 gfc_error ("ASSIGN statement at %L requires a scalar "
11736 "default INTEGER variable", &code->expr1->where);
11737 break;
11738
11739 case EXEC_POINTER_ASSIGN:
11740 {
11741 gfc_expr* e;
11742
11743 if (!t)
11744 break;
11745
11746 /* This is both a variable definition and pointer assignment
11747 context, so check both of them. For rank remapping, a final
11748 array ref may be present on the LHS and fool gfc_expr_attr
11749 used in gfc_check_vardef_context. Remove it. */
11750 e = remove_last_array_ref (code->expr1);
11751 t = gfc_check_vardef_context (e, true, false, false,
11752 _("pointer assignment"));
11753 if (t)
11754 t = gfc_check_vardef_context (e, false, false, false,
11755 _("pointer assignment"));
11756 gfc_free_expr (e);
11757
11758 t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
11759
11760 if (!t)
11761 break;
11762
11763 /* Assigning a class object always is a regular assign. */
11764 if (code->expr2->ts.type == BT_CLASS
11765 && code->expr1->ts.type == BT_CLASS
11766 && !CLASS_DATA (code->expr2)->attr.dimension
11767 && !(gfc_expr_attr (code->expr1).proc_pointer
11768 && code->expr2->expr_type == EXPR_VARIABLE
11769 && code->expr2->symtree->n.sym->attr.flavor
11770 == FL_PROCEDURE))
11771 code->op = EXEC_ASSIGN;
11772 break;
11773 }
11774
11775 case EXEC_ARITHMETIC_IF:
11776 {
11777 gfc_expr *e = code->expr1;
11778
11779 gfc_resolve_expr (e);
11780 if (e->expr_type == EXPR_NULL)
11781 gfc_error ("Invalid NULL at %L", &e->where);
11782
11783 if (t && (e->rank > 0
11784 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11785 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11786 "REAL or INTEGER expression", &e->where);
11787
11788 resolve_branch (code->label1, code);
11789 resolve_branch (code->label2, code);
11790 resolve_branch (code->label3, code);
11791 }
11792 break;
11793
11794 case EXEC_IF:
11795 if (t && code->expr1 != NULL
11796 && (code->expr1->ts.type != BT_LOGICAL
11797 || code->expr1->rank != 0))
11798 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11799 &code->expr1->where);
11800 break;
11801
11802 case EXEC_CALL:
11803 call:
11804 resolve_call (code);
11805 break;
11806
11807 case EXEC_COMPCALL:
11808 compcall:
11809 resolve_typebound_subroutine (code);
11810 break;
11811
11812 case EXEC_CALL_PPC:
11813 resolve_ppc_call (code);
11814 break;
11815
11816 case EXEC_SELECT:
11817 /* Select is complicated. Also, a SELECT construct could be
11818 a transformed computed GOTO. */
11819 resolve_select (code, false);
11820 break;
11821
11822 case EXEC_SELECT_TYPE:
11823 resolve_select_type (code, ns);
11824 break;
11825
11826 case EXEC_SELECT_RANK:
11827 resolve_select_rank (code, ns);
11828 break;
11829
11830 case EXEC_BLOCK:
11831 resolve_block_construct (code);
11832 break;
11833
11834 case EXEC_DO:
11835 if (code->ext.iterator != NULL)
11836 {
11837 gfc_iterator *iter = code->ext.iterator;
11838 if (gfc_resolve_iterator (iter, true, false))
11839 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11840 true);
11841 }
11842 break;
11843
11844 case EXEC_DO_WHILE:
11845 if (code->expr1 == NULL)
11846 gfc_internal_error ("gfc_resolve_code(): No expression on "
11847 "DO WHILE");
11848 if (t
11849 && (code->expr1->rank != 0
11850 || code->expr1->ts.type != BT_LOGICAL))
11851 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11852 "a scalar LOGICAL expression", &code->expr1->where);
11853 break;
11854
11855 case EXEC_ALLOCATE:
11856 if (t)
11857 resolve_allocate_deallocate (code, "ALLOCATE");
11858
11859 break;
11860
11861 case EXEC_DEALLOCATE:
11862 if (t)
11863 resolve_allocate_deallocate (code, "DEALLOCATE");
11864
11865 break;
11866
11867 case EXEC_OPEN:
11868 if (!gfc_resolve_open (code->ext.open))
11869 break;
11870
11871 resolve_branch (code->ext.open->err, code);
11872 break;
11873
11874 case EXEC_CLOSE:
11875 if (!gfc_resolve_close (code->ext.close))
11876 break;
11877
11878 resolve_branch (code->ext.close->err, code);
11879 break;
11880
11881 case EXEC_BACKSPACE:
11882 case EXEC_ENDFILE:
11883 case EXEC_REWIND:
11884 case EXEC_FLUSH:
11885 if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
11886 break;
11887
11888 resolve_branch (code->ext.filepos->err, code);
11889 break;
11890
11891 case EXEC_INQUIRE:
11892 if (!gfc_resolve_inquire (code->ext.inquire))
11893 break;
11894
11895 resolve_branch (code->ext.inquire->err, code);
11896 break;
11897
11898 case EXEC_IOLENGTH:
11899 gcc_assert (code->ext.inquire != NULL);
11900 if (!gfc_resolve_inquire (code->ext.inquire))
11901 break;
11902
11903 resolve_branch (code->ext.inquire->err, code);
11904 break;
11905
11906 case EXEC_WAIT:
11907 if (!gfc_resolve_wait (code->ext.wait))
11908 break;
11909
11910 resolve_branch (code->ext.wait->err, code);
11911 resolve_branch (code->ext.wait->end, code);
11912 resolve_branch (code->ext.wait->eor, code);
11913 break;
11914
11915 case EXEC_READ:
11916 case EXEC_WRITE:
11917 if (!gfc_resolve_dt (code->ext.dt, &code->loc))
11918 break;
11919
11920 resolve_branch (code->ext.dt->err, code);
11921 resolve_branch (code->ext.dt->end, code);
11922 resolve_branch (code->ext.dt->eor, code);
11923 break;
11924
11925 case EXEC_TRANSFER:
11926 resolve_transfer (code);
11927 break;
11928
11929 case EXEC_DO_CONCURRENT:
11930 case EXEC_FORALL:
11931 resolve_forall_iterators (code->ext.forall_iterator);
11932
11933 if (code->expr1 != NULL
11934 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
11935 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
11936 "expression", &code->expr1->where);
11937 break;
11938
11939 case EXEC_OACC_PARALLEL_LOOP:
11940 case EXEC_OACC_PARALLEL:
11941 case EXEC_OACC_KERNELS_LOOP:
11942 case EXEC_OACC_KERNELS:
11943 case EXEC_OACC_DATA:
11944 case EXEC_OACC_HOST_DATA:
11945 case EXEC_OACC_LOOP:
11946 case EXEC_OACC_UPDATE:
11947 case EXEC_OACC_WAIT:
11948 case EXEC_OACC_CACHE:
11949 case EXEC_OACC_ENTER_DATA:
11950 case EXEC_OACC_EXIT_DATA:
11951 case EXEC_OACC_ATOMIC:
11952 case EXEC_OACC_DECLARE:
11953 gfc_resolve_oacc_directive (code, ns);
11954 break;
11955
11956 case EXEC_OMP_ATOMIC:
11957 case EXEC_OMP_BARRIER:
11958 case EXEC_OMP_CANCEL:
11959 case EXEC_OMP_CANCELLATION_POINT:
11960 case EXEC_OMP_CRITICAL:
11961 case EXEC_OMP_FLUSH:
11962 case EXEC_OMP_DISTRIBUTE:
11963 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
11964 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
11965 case EXEC_OMP_DISTRIBUTE_SIMD:
11966 case EXEC_OMP_DO:
11967 case EXEC_OMP_DO_SIMD:
11968 case EXEC_OMP_MASTER:
11969 case EXEC_OMP_ORDERED:
11970 case EXEC_OMP_SECTIONS:
11971 case EXEC_OMP_SIMD:
11972 case EXEC_OMP_SINGLE:
11973 case EXEC_OMP_TARGET:
11974 case EXEC_OMP_TARGET_DATA:
11975 case EXEC_OMP_TARGET_ENTER_DATA:
11976 case EXEC_OMP_TARGET_EXIT_DATA:
11977 case EXEC_OMP_TARGET_PARALLEL:
11978 case EXEC_OMP_TARGET_PARALLEL_DO:
11979 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11980 case EXEC_OMP_TARGET_SIMD:
11981 case EXEC_OMP_TARGET_TEAMS:
11982 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11983 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11984 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11985 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11986 case EXEC_OMP_TARGET_UPDATE:
11987 case EXEC_OMP_TASK:
11988 case EXEC_OMP_TASKGROUP:
11989 case EXEC_OMP_TASKLOOP:
11990 case EXEC_OMP_TASKLOOP_SIMD:
11991 case EXEC_OMP_TASKWAIT:
11992 case EXEC_OMP_TASKYIELD:
11993 case EXEC_OMP_TEAMS:
11994 case EXEC_OMP_TEAMS_DISTRIBUTE:
11995 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11996 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11997 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11998 case EXEC_OMP_WORKSHARE:
11999 gfc_resolve_omp_directive (code, ns);
12000 break;
12001
12002 case EXEC_OMP_PARALLEL:
12003 case EXEC_OMP_PARALLEL_DO:
12004 case EXEC_OMP_PARALLEL_DO_SIMD:
12005 case EXEC_OMP_PARALLEL_SECTIONS:
12006 case EXEC_OMP_PARALLEL_WORKSHARE:
12007 omp_workshare_save = omp_workshare_flag;
12008 omp_workshare_flag = 0;
12009 gfc_resolve_omp_directive (code, ns);
12010 omp_workshare_flag = omp_workshare_save;
12011 break;
12012
12013 default:
12014 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
12015 }
12016 }
12017
12018 cs_base = frame.prev;
12019 }
12020
12021
12022 /* Resolve initial values and make sure they are compatible with
12023 the variable. */
12024
12025 static void
12026 resolve_values (gfc_symbol *sym)
12027 {
12028 bool t;
12029
12030 if (sym->value == NULL)
12031 return;
12032
12033 if (sym->value->expr_type == EXPR_STRUCTURE)
12034 t= resolve_structure_cons (sym->value, 1);
12035 else
12036 t = gfc_resolve_expr (sym->value);
12037
12038 if (!t)
12039 return;
12040
12041 gfc_check_assign_symbol (sym, NULL, sym->value);
12042 }
12043
12044
12045 /* Verify any BIND(C) derived types in the namespace so we can report errors
12046 for them once, rather than for each variable declared of that type. */
12047
12048 static void
12049 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
12050 {
12051 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
12052 && derived_sym->attr.is_bind_c == 1)
12053 verify_bind_c_derived_type (derived_sym);
12054
12055 return;
12056 }
12057
12058
12059 /* Check the interfaces of DTIO procedures associated with derived
12060 type 'sym'. These procedures can either have typebound bindings or
12061 can appear in DTIO generic interfaces. */
12062
12063 static void
12064 gfc_verify_DTIO_procedures (gfc_symbol *sym)
12065 {
12066 if (!sym || sym->attr.flavor != FL_DERIVED)
12067 return;
12068
12069 gfc_check_dtio_interfaces (sym);
12070
12071 return;
12072 }
12073
12074 /* Verify that any binding labels used in a given namespace do not collide
12075 with the names or binding labels of any global symbols. Multiple INTERFACE
12076 for the same procedure are permitted. */
12077
12078 static void
12079 gfc_verify_binding_labels (gfc_symbol *sym)
12080 {
12081 gfc_gsymbol *gsym;
12082 const char *module;
12083
12084 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
12085 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
12086 return;
12087
12088 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
12089
12090 if (sym->module)
12091 module = sym->module;
12092 else if (sym->ns && sym->ns->proc_name
12093 && sym->ns->proc_name->attr.flavor == FL_MODULE)
12094 module = sym->ns->proc_name->name;
12095 else if (sym->ns && sym->ns->parent
12096 && sym->ns && sym->ns->parent->proc_name
12097 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12098 module = sym->ns->parent->proc_name->name;
12099 else
12100 module = NULL;
12101
12102 if (!gsym
12103 || (!gsym->defined
12104 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
12105 {
12106 if (!gsym)
12107 gsym = gfc_get_gsymbol (sym->binding_label, true);
12108 gsym->where = sym->declared_at;
12109 gsym->sym_name = sym->name;
12110 gsym->binding_label = sym->binding_label;
12111 gsym->ns = sym->ns;
12112 gsym->mod_name = module;
12113 if (sym->attr.function)
12114 gsym->type = GSYM_FUNCTION;
12115 else if (sym->attr.subroutine)
12116 gsym->type = GSYM_SUBROUTINE;
12117 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
12118 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
12119 return;
12120 }
12121
12122 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
12123 {
12124 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
12125 "identifier as entity at %L", sym->name,
12126 sym->binding_label, &sym->declared_at, &gsym->where);
12127 /* Clear the binding label to prevent checking multiple times. */
12128 sym->binding_label = NULL;
12129 return;
12130 }
12131
12132 if (sym->attr.flavor == FL_VARIABLE && module
12133 && (strcmp (module, gsym->mod_name) != 0
12134 || strcmp (sym->name, gsym->sym_name) != 0))
12135 {
12136 /* This can only happen if the variable is defined in a module - if it
12137 isn't the same module, reject it. */
12138 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
12139 "uses the same global identifier as entity at %L from module %qs",
12140 sym->name, module, sym->binding_label,
12141 &sym->declared_at, &gsym->where, gsym->mod_name);
12142 sym->binding_label = NULL;
12143 return;
12144 }
12145
12146 if ((sym->attr.function || sym->attr.subroutine)
12147 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
12148 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
12149 && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
12150 && (module != gsym->mod_name
12151 || strcmp (gsym->sym_name, sym->name) != 0
12152 || (module && strcmp (module, gsym->mod_name) != 0)))
12153 {
12154 /* Print an error if the procedure is defined multiple times; we have to
12155 exclude references to the same procedure via module association or
12156 multiple checks for the same procedure. */
12157 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
12158 "global identifier as entity at %L", sym->name,
12159 sym->binding_label, &sym->declared_at, &gsym->where);
12160 sym->binding_label = NULL;
12161 }
12162 }
12163
12164
12165 /* Resolve an index expression. */
12166
12167 static bool
12168 resolve_index_expr (gfc_expr *e)
12169 {
12170 if (!gfc_resolve_expr (e))
12171 return false;
12172
12173 if (!gfc_simplify_expr (e, 0))
12174 return false;
12175
12176 if (!gfc_specification_expr (e))
12177 return false;
12178
12179 return true;
12180 }
12181
12182
12183 /* Resolve a charlen structure. */
12184
12185 static bool
12186 resolve_charlen (gfc_charlen *cl)
12187 {
12188 int k;
12189 bool saved_specification_expr;
12190
12191 if (cl->resolved)
12192 return true;
12193
12194 cl->resolved = 1;
12195 saved_specification_expr = specification_expr;
12196 specification_expr = true;
12197
12198 if (cl->length_from_typespec)
12199 {
12200 if (!gfc_resolve_expr (cl->length))
12201 {
12202 specification_expr = saved_specification_expr;
12203 return false;
12204 }
12205
12206 if (!gfc_simplify_expr (cl->length, 0))
12207 {
12208 specification_expr = saved_specification_expr;
12209 return false;
12210 }
12211
12212 /* cl->length has been resolved. It should have an integer type. */
12213 if (cl->length->ts.type != BT_INTEGER)
12214 {
12215 gfc_error ("Scalar INTEGER expression expected at %L",
12216 &cl->length->where);
12217 return false;
12218 }
12219 }
12220 else
12221 {
12222 if (!resolve_index_expr (cl->length))
12223 {
12224 specification_expr = saved_specification_expr;
12225 return false;
12226 }
12227 }
12228
12229 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
12230 a negative value, the length of character entities declared is zero. */
12231 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12232 && mpz_sgn (cl->length->value.integer) < 0)
12233 gfc_replace_expr (cl->length,
12234 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
12235
12236 /* Check that the character length is not too large. */
12237 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
12238 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12239 && cl->length->ts.type == BT_INTEGER
12240 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
12241 {
12242 gfc_error ("String length at %L is too large", &cl->length->where);
12243 specification_expr = saved_specification_expr;
12244 return false;
12245 }
12246
12247 specification_expr = saved_specification_expr;
12248 return true;
12249 }
12250
12251
12252 /* Test for non-constant shape arrays. */
12253
12254 static bool
12255 is_non_constant_shape_array (gfc_symbol *sym)
12256 {
12257 gfc_expr *e;
12258 int i;
12259 bool not_constant;
12260
12261 not_constant = false;
12262 if (sym->as != NULL)
12263 {
12264 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
12265 has not been simplified; parameter array references. Do the
12266 simplification now. */
12267 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
12268 {
12269 if (i == GFC_MAX_DIMENSIONS)
12270 break;
12271
12272 e = sym->as->lower[i];
12273 if (e && (!resolve_index_expr(e)
12274 || !gfc_is_constant_expr (e)))
12275 not_constant = true;
12276 e = sym->as->upper[i];
12277 if (e && (!resolve_index_expr(e)
12278 || !gfc_is_constant_expr (e)))
12279 not_constant = true;
12280 }
12281 }
12282 return not_constant;
12283 }
12284
12285 /* Given a symbol and an initialization expression, add code to initialize
12286 the symbol to the function entry. */
12287 static void
12288 build_init_assign (gfc_symbol *sym, gfc_expr *init)
12289 {
12290 gfc_expr *lval;
12291 gfc_code *init_st;
12292 gfc_namespace *ns = sym->ns;
12293
12294 /* Search for the function namespace if this is a contained
12295 function without an explicit result. */
12296 if (sym->attr.function && sym == sym->result
12297 && sym->name != sym->ns->proc_name->name)
12298 {
12299 ns = ns->contained;
12300 for (;ns; ns = ns->sibling)
12301 if (strcmp (ns->proc_name->name, sym->name) == 0)
12302 break;
12303 }
12304
12305 if (ns == NULL)
12306 {
12307 gfc_free_expr (init);
12308 return;
12309 }
12310
12311 /* Build an l-value expression for the result. */
12312 lval = gfc_lval_expr_from_sym (sym);
12313
12314 /* Add the code at scope entry. */
12315 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
12316 init_st->next = ns->code;
12317 ns->code = init_st;
12318
12319 /* Assign the default initializer to the l-value. */
12320 init_st->loc = sym->declared_at;
12321 init_st->expr1 = lval;
12322 init_st->expr2 = init;
12323 }
12324
12325
12326 /* Whether or not we can generate a default initializer for a symbol. */
12327
12328 static bool
12329 can_generate_init (gfc_symbol *sym)
12330 {
12331 symbol_attribute *a;
12332 if (!sym)
12333 return false;
12334 a = &sym->attr;
12335
12336 /* These symbols should never have a default initialization. */
12337 return !(
12338 a->allocatable
12339 || a->external
12340 || a->pointer
12341 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
12342 && (CLASS_DATA (sym)->attr.class_pointer
12343 || CLASS_DATA (sym)->attr.proc_pointer))
12344 || a->in_equivalence
12345 || a->in_common
12346 || a->data
12347 || sym->module
12348 || a->cray_pointee
12349 || a->cray_pointer
12350 || sym->assoc
12351 || (!a->referenced && !a->result)
12352 || (a->dummy && a->intent != INTENT_OUT)
12353 || (a->function && sym != sym->result)
12354 );
12355 }
12356
12357
12358 /* Assign the default initializer to a derived type variable or result. */
12359
12360 static void
12361 apply_default_init (gfc_symbol *sym)
12362 {
12363 gfc_expr *init = NULL;
12364
12365 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12366 return;
12367
12368 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
12369 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12370
12371 if (init == NULL && sym->ts.type != BT_CLASS)
12372 return;
12373
12374 build_init_assign (sym, init);
12375 sym->attr.referenced = 1;
12376 }
12377
12378
12379 /* Build an initializer for a local. Returns null if the symbol should not have
12380 a default initialization. */
12381
12382 static gfc_expr *
12383 build_default_init_expr (gfc_symbol *sym)
12384 {
12385 /* These symbols should never have a default initialization. */
12386 if (sym->attr.allocatable
12387 || sym->attr.external
12388 || sym->attr.dummy
12389 || sym->attr.pointer
12390 || sym->attr.in_equivalence
12391 || sym->attr.in_common
12392 || sym->attr.data
12393 || sym->module
12394 || sym->attr.cray_pointee
12395 || sym->attr.cray_pointer
12396 || sym->assoc)
12397 return NULL;
12398
12399 /* Get the appropriate init expression. */
12400 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
12401 }
12402
12403 /* Add an initialization expression to a local variable. */
12404 static void
12405 apply_default_init_local (gfc_symbol *sym)
12406 {
12407 gfc_expr *init = NULL;
12408
12409 /* The symbol should be a variable or a function return value. */
12410 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12411 || (sym->attr.function && sym->result != sym))
12412 return;
12413
12414 /* Try to build the initializer expression. If we can't initialize
12415 this symbol, then init will be NULL. */
12416 init = build_default_init_expr (sym);
12417 if (init == NULL)
12418 return;
12419
12420 /* For saved variables, we don't want to add an initializer at function
12421 entry, so we just add a static initializer. Note that automatic variables
12422 are stack allocated even with -fno-automatic; we have also to exclude
12423 result variable, which are also nonstatic. */
12424 if (!sym->attr.automatic
12425 && (sym->attr.save || sym->ns->save_all
12426 || (flag_max_stack_var_size == 0 && !sym->attr.result
12427 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
12428 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
12429 {
12430 /* Don't clobber an existing initializer! */
12431 gcc_assert (sym->value == NULL);
12432 sym->value = init;
12433 return;
12434 }
12435
12436 build_init_assign (sym, init);
12437 }
12438
12439
12440 /* Resolution of common features of flavors variable and procedure. */
12441
12442 static bool
12443 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
12444 {
12445 gfc_array_spec *as;
12446
12447 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12448 as = CLASS_DATA (sym)->as;
12449 else
12450 as = sym->as;
12451
12452 /* Constraints on deferred shape variable. */
12453 if (as == NULL || as->type != AS_DEFERRED)
12454 {
12455 bool pointer, allocatable, dimension;
12456
12457 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12458 {
12459 pointer = CLASS_DATA (sym)->attr.class_pointer;
12460 allocatable = CLASS_DATA (sym)->attr.allocatable;
12461 dimension = CLASS_DATA (sym)->attr.dimension;
12462 }
12463 else
12464 {
12465 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
12466 allocatable = sym->attr.allocatable;
12467 dimension = sym->attr.dimension;
12468 }
12469
12470 if (allocatable)
12471 {
12472 if (dimension && as->type != AS_ASSUMED_RANK)
12473 {
12474 gfc_error ("Allocatable array %qs at %L must have a deferred "
12475 "shape or assumed rank", sym->name, &sym->declared_at);
12476 return false;
12477 }
12478 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
12479 "%qs at %L may not be ALLOCATABLE",
12480 sym->name, &sym->declared_at))
12481 return false;
12482 }
12483
12484 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
12485 {
12486 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
12487 "assumed rank", sym->name, &sym->declared_at);
12488 return false;
12489 }
12490 }
12491 else
12492 {
12493 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
12494 && sym->ts.type != BT_CLASS && !sym->assoc)
12495 {
12496 gfc_error ("Array %qs at %L cannot have a deferred shape",
12497 sym->name, &sym->declared_at);
12498 return false;
12499 }
12500 }
12501
12502 /* Constraints on polymorphic variables. */
12503 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
12504 {
12505 /* F03:C502. */
12506 if (sym->attr.class_ok
12507 && !sym->attr.select_type_temporary
12508 && !UNLIMITED_POLY (sym)
12509 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
12510 {
12511 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
12512 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
12513 &sym->declared_at);
12514 return false;
12515 }
12516
12517 /* F03:C509. */
12518 /* Assume that use associated symbols were checked in the module ns.
12519 Class-variables that are associate-names are also something special
12520 and excepted from the test. */
12521 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
12522 {
12523 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
12524 "or pointer", sym->name, &sym->declared_at);
12525 return false;
12526 }
12527 }
12528
12529 return true;
12530 }
12531
12532
12533 /* Additional checks for symbols with flavor variable and derived
12534 type. To be called from resolve_fl_variable. */
12535
12536 static bool
12537 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12538 {
12539 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12540
12541 /* Check to see if a derived type is blocked from being host
12542 associated by the presence of another class I symbol in the same
12543 namespace. 14.6.1.3 of the standard and the discussion on
12544 comp.lang.fortran. */
12545 if (sym->ns != sym->ts.u.derived->ns
12546 && !sym->ts.u.derived->attr.use_assoc
12547 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12548 {
12549 gfc_symbol *s;
12550 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12551 if (s && s->attr.generic)
12552 s = gfc_find_dt_in_generic (s);
12553 if (s && !gfc_fl_struct (s->attr.flavor))
12554 {
12555 gfc_error ("The type %qs cannot be host associated at %L "
12556 "because it is blocked by an incompatible object "
12557 "of the same name declared at %L",
12558 sym->ts.u.derived->name, &sym->declared_at,
12559 &s->declared_at);
12560 return false;
12561 }
12562 }
12563
12564 /* 4th constraint in section 11.3: "If an object of a type for which
12565 component-initialization is specified (R429) appears in the
12566 specification-part of a module and does not have the ALLOCATABLE
12567 or POINTER attribute, the object shall have the SAVE attribute."
12568
12569 The check for initializers is performed with
12570 gfc_has_default_initializer because gfc_default_initializer generates
12571 a hidden default for allocatable components. */
12572 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12573 && sym->ns->proc_name->attr.flavor == FL_MODULE
12574 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12575 && !sym->attr.pointer && !sym->attr.allocatable
12576 && gfc_has_default_initializer (sym->ts.u.derived)
12577 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12578 "%qs at %L, needed due to the default "
12579 "initialization", sym->name, &sym->declared_at))
12580 return false;
12581
12582 /* Assign default initializer. */
12583 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12584 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12585 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12586
12587 return true;
12588 }
12589
12590
12591 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12592 except in the declaration of an entity or component that has the POINTER
12593 or ALLOCATABLE attribute. */
12594
12595 static bool
12596 deferred_requirements (gfc_symbol *sym)
12597 {
12598 if (sym->ts.deferred
12599 && !(sym->attr.pointer
12600 || sym->attr.allocatable
12601 || sym->attr.associate_var
12602 || sym->attr.omp_udr_artificial_var))
12603 {
12604 /* If a function has a result variable, only check the variable. */
12605 if (sym->result && sym->name != sym->result->name)
12606 return true;
12607
12608 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12609 "requires either the POINTER or ALLOCATABLE attribute",
12610 sym->name, &sym->declared_at);
12611 return false;
12612 }
12613 return true;
12614 }
12615
12616
12617 /* Resolve symbols with flavor variable. */
12618
12619 static bool
12620 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12621 {
12622 const char *auto_save_msg = "Automatic object %qs at %L cannot have the "
12623 "SAVE attribute";
12624
12625 if (!resolve_fl_var_and_proc (sym, mp_flag))
12626 return false;
12627
12628 /* Set this flag to check that variables are parameters of all entries.
12629 This check is effected by the call to gfc_resolve_expr through
12630 is_non_constant_shape_array. */
12631 bool saved_specification_expr = specification_expr;
12632 specification_expr = true;
12633
12634 if (sym->ns->proc_name
12635 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12636 || sym->ns->proc_name->attr.is_main_program)
12637 && !sym->attr.use_assoc
12638 && !sym->attr.allocatable
12639 && !sym->attr.pointer
12640 && is_non_constant_shape_array (sym))
12641 {
12642 /* F08:C541. The shape of an array defined in a main program or module
12643 * needs to be constant. */
12644 gfc_error ("The module or main program array %qs at %L must "
12645 "have constant shape", sym->name, &sym->declared_at);
12646 specification_expr = saved_specification_expr;
12647 return false;
12648 }
12649
12650 /* Constraints on deferred type parameter. */
12651 if (!deferred_requirements (sym))
12652 return false;
12653
12654 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12655 {
12656 /* Make sure that character string variables with assumed length are
12657 dummy arguments. */
12658 gfc_expr *e = NULL;
12659
12660 if (sym->ts.u.cl)
12661 e = sym->ts.u.cl->length;
12662 else
12663 return false;
12664
12665 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12666 && !sym->ts.deferred && !sym->attr.select_type_temporary
12667 && !sym->attr.omp_udr_artificial_var)
12668 {
12669 gfc_error ("Entity with assumed character length at %L must be a "
12670 "dummy argument or a PARAMETER", &sym->declared_at);
12671 specification_expr = saved_specification_expr;
12672 return false;
12673 }
12674
12675 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12676 {
12677 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12678 specification_expr = saved_specification_expr;
12679 return false;
12680 }
12681
12682 if (!gfc_is_constant_expr (e)
12683 && !(e->expr_type == EXPR_VARIABLE
12684 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12685 {
12686 if (!sym->attr.use_assoc && sym->ns->proc_name
12687 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12688 || sym->ns->proc_name->attr.is_main_program))
12689 {
12690 gfc_error ("%qs at %L must have constant character length "
12691 "in this context", sym->name, &sym->declared_at);
12692 specification_expr = saved_specification_expr;
12693 return false;
12694 }
12695 if (sym->attr.in_common)
12696 {
12697 gfc_error ("COMMON variable %qs at %L must have constant "
12698 "character length", sym->name, &sym->declared_at);
12699 specification_expr = saved_specification_expr;
12700 return false;
12701 }
12702 }
12703 }
12704
12705 if (sym->value == NULL && sym->attr.referenced)
12706 apply_default_init_local (sym); /* Try to apply a default initialization. */
12707
12708 /* Determine if the symbol may not have an initializer. */
12709 int no_init_flag = 0, automatic_flag = 0;
12710 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12711 || sym->attr.intrinsic || sym->attr.result)
12712 no_init_flag = 1;
12713 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12714 && is_non_constant_shape_array (sym))
12715 {
12716 no_init_flag = automatic_flag = 1;
12717
12718 /* Also, they must not have the SAVE attribute.
12719 SAVE_IMPLICIT is checked below. */
12720 if (sym->as && sym->attr.codimension)
12721 {
12722 int corank = sym->as->corank;
12723 sym->as->corank = 0;
12724 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12725 sym->as->corank = corank;
12726 }
12727 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12728 {
12729 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12730 specification_expr = saved_specification_expr;
12731 return false;
12732 }
12733 }
12734
12735 /* Ensure that any initializer is simplified. */
12736 if (sym->value)
12737 gfc_simplify_expr (sym->value, 1);
12738
12739 /* Reject illegal initializers. */
12740 if (!sym->mark && sym->value)
12741 {
12742 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12743 && CLASS_DATA (sym)->attr.allocatable))
12744 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12745 sym->name, &sym->declared_at);
12746 else if (sym->attr.external)
12747 gfc_error ("External %qs at %L cannot have an initializer",
12748 sym->name, &sym->declared_at);
12749 else if (sym->attr.dummy
12750 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12751 gfc_error ("Dummy %qs at %L cannot have an initializer",
12752 sym->name, &sym->declared_at);
12753 else if (sym->attr.intrinsic)
12754 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12755 sym->name, &sym->declared_at);
12756 else if (sym->attr.result)
12757 gfc_error ("Function result %qs at %L cannot have an initializer",
12758 sym->name, &sym->declared_at);
12759 else if (automatic_flag)
12760 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12761 sym->name, &sym->declared_at);
12762 else
12763 goto no_init_error;
12764 specification_expr = saved_specification_expr;
12765 return false;
12766 }
12767
12768 no_init_error:
12769 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12770 {
12771 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12772 specification_expr = saved_specification_expr;
12773 return res;
12774 }
12775
12776 specification_expr = saved_specification_expr;
12777 return true;
12778 }
12779
12780
12781 /* Compare the dummy characteristics of a module procedure interface
12782 declaration with the corresponding declaration in a submodule. */
12783 static gfc_formal_arglist *new_formal;
12784 static char errmsg[200];
12785
12786 static void
12787 compare_fsyms (gfc_symbol *sym)
12788 {
12789 gfc_symbol *fsym;
12790
12791 if (sym == NULL || new_formal == NULL)
12792 return;
12793
12794 fsym = new_formal->sym;
12795
12796 if (sym == fsym)
12797 return;
12798
12799 if (strcmp (sym->name, fsym->name) == 0)
12800 {
12801 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12802 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12803 }
12804 }
12805
12806
12807 /* Resolve a procedure. */
12808
12809 static bool
12810 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12811 {
12812 gfc_formal_arglist *arg;
12813
12814 if (sym->attr.function
12815 && !resolve_fl_var_and_proc (sym, mp_flag))
12816 return false;
12817
12818 /* Constraints on deferred type parameter. */
12819 if (!deferred_requirements (sym))
12820 return false;
12821
12822 if (sym->ts.type == BT_CHARACTER)
12823 {
12824 gfc_charlen *cl = sym->ts.u.cl;
12825
12826 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12827 && !resolve_charlen (cl))
12828 return false;
12829
12830 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12831 && sym->attr.proc == PROC_ST_FUNCTION)
12832 {
12833 gfc_error ("Character-valued statement function %qs at %L must "
12834 "have constant length", sym->name, &sym->declared_at);
12835 return false;
12836 }
12837 }
12838
12839 /* Ensure that derived type for are not of a private type. Internal
12840 module procedures are excluded by 2.2.3.3 - i.e., they are not
12841 externally accessible and can access all the objects accessible in
12842 the host. */
12843 if (!(sym->ns->parent && sym->ns->parent->proc_name
12844 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12845 && gfc_check_symbol_access (sym))
12846 {
12847 gfc_interface *iface;
12848
12849 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12850 {
12851 if (arg->sym
12852 && arg->sym->ts.type == BT_DERIVED
12853 && !arg->sym->ts.u.derived->attr.use_assoc
12854 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12855 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
12856 "and cannot be a dummy argument"
12857 " of %qs, which is PUBLIC at %L",
12858 arg->sym->name, sym->name,
12859 &sym->declared_at))
12860 {
12861 /* Stop this message from recurring. */
12862 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12863 return false;
12864 }
12865 }
12866
12867 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12868 PRIVATE to the containing module. */
12869 for (iface = sym->generic; iface; iface = iface->next)
12870 {
12871 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
12872 {
12873 if (arg->sym
12874 && arg->sym->ts.type == BT_DERIVED
12875 && !arg->sym->ts.u.derived->attr.use_assoc
12876 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12877 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
12878 "PUBLIC interface %qs at %L "
12879 "takes dummy arguments of %qs which "
12880 "is PRIVATE", iface->sym->name,
12881 sym->name, &iface->sym->declared_at,
12882 gfc_typename(&arg->sym->ts)))
12883 {
12884 /* Stop this message from recurring. */
12885 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12886 return false;
12887 }
12888 }
12889 }
12890 }
12891
12892 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
12893 && !sym->attr.proc_pointer)
12894 {
12895 gfc_error ("Function %qs at %L cannot have an initializer",
12896 sym->name, &sym->declared_at);
12897
12898 /* Make sure no second error is issued for this. */
12899 sym->value->error = 1;
12900 return false;
12901 }
12902
12903 /* An external symbol may not have an initializer because it is taken to be
12904 a procedure. Exception: Procedure Pointers. */
12905 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
12906 {
12907 gfc_error ("External object %qs at %L may not have an initializer",
12908 sym->name, &sym->declared_at);
12909 return false;
12910 }
12911
12912 /* An elemental function is required to return a scalar 12.7.1 */
12913 if (sym->attr.elemental && sym->attr.function
12914 && (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)))
12915 {
12916 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
12917 "result", sym->name, &sym->declared_at);
12918 /* Reset so that the error only occurs once. */
12919 sym->attr.elemental = 0;
12920 return false;
12921 }
12922
12923 if (sym->attr.proc == PROC_ST_FUNCTION
12924 && (sym->attr.allocatable || sym->attr.pointer))
12925 {
12926 gfc_error ("Statement function %qs at %L may not have pointer or "
12927 "allocatable attribute", sym->name, &sym->declared_at);
12928 return false;
12929 }
12930
12931 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
12932 char-len-param shall not be array-valued, pointer-valued, recursive
12933 or pure. ....snip... A character value of * may only be used in the
12934 following ways: (i) Dummy arg of procedure - dummy associates with
12935 actual length; (ii) To declare a named constant; or (iii) External
12936 function - but length must be declared in calling scoping unit. */
12937 if (sym->attr.function
12938 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
12939 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
12940 {
12941 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
12942 || (sym->attr.recursive) || (sym->attr.pure))
12943 {
12944 if (sym->as && sym->as->rank)
12945 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12946 "array-valued", sym->name, &sym->declared_at);
12947
12948 if (sym->attr.pointer)
12949 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12950 "pointer-valued", sym->name, &sym->declared_at);
12951
12952 if (sym->attr.pure)
12953 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12954 "pure", sym->name, &sym->declared_at);
12955
12956 if (sym->attr.recursive)
12957 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12958 "recursive", sym->name, &sym->declared_at);
12959
12960 return false;
12961 }
12962
12963 /* Appendix B.2 of the standard. Contained functions give an
12964 error anyway. Deferred character length is an F2003 feature.
12965 Don't warn on intrinsic conversion functions, which start
12966 with two underscores. */
12967 if (!sym->attr.contained && !sym->ts.deferred
12968 && (sym->name[0] != '_' || sym->name[1] != '_'))
12969 gfc_notify_std (GFC_STD_F95_OBS,
12970 "CHARACTER(*) function %qs at %L",
12971 sym->name, &sym->declared_at);
12972 }
12973
12974 /* F2008, C1218. */
12975 if (sym->attr.elemental)
12976 {
12977 if (sym->attr.proc_pointer)
12978 {
12979 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
12980 sym->name, &sym->declared_at);
12981 return false;
12982 }
12983 if (sym->attr.dummy)
12984 {
12985 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
12986 sym->name, &sym->declared_at);
12987 return false;
12988 }
12989 }
12990
12991 /* F2018, C15100: "The result of an elemental function shall be scalar,
12992 and shall not have the POINTER or ALLOCATABLE attribute." The scalar
12993 pointer is tested and caught elsewhere. */
12994 if (sym->attr.elemental && sym->result
12995 && (sym->result->attr.allocatable || sym->result->attr.pointer))
12996 {
12997 gfc_error ("Function result variable %qs at %L of elemental "
12998 "function %qs shall not have an ALLOCATABLE or POINTER "
12999 "attribute", sym->result->name,
13000 &sym->result->declared_at, sym->name);
13001 return false;
13002 }
13003
13004 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
13005 {
13006 gfc_formal_arglist *curr_arg;
13007 int has_non_interop_arg = 0;
13008
13009 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
13010 sym->common_block))
13011 {
13012 /* Clear these to prevent looking at them again if there was an
13013 error. */
13014 sym->attr.is_bind_c = 0;
13015 sym->attr.is_c_interop = 0;
13016 sym->ts.is_c_interop = 0;
13017 }
13018 else
13019 {
13020 /* So far, no errors have been found. */
13021 sym->attr.is_c_interop = 1;
13022 sym->ts.is_c_interop = 1;
13023 }
13024
13025 curr_arg = gfc_sym_get_dummy_args (sym);
13026 while (curr_arg != NULL)
13027 {
13028 /* Skip implicitly typed dummy args here. */
13029 if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
13030 if (!gfc_verify_c_interop_param (curr_arg->sym))
13031 /* If something is found to fail, record the fact so we
13032 can mark the symbol for the procedure as not being
13033 BIND(C) to try and prevent multiple errors being
13034 reported. */
13035 has_non_interop_arg = 1;
13036
13037 curr_arg = curr_arg->next;
13038 }
13039
13040 /* See if any of the arguments were not interoperable and if so, clear
13041 the procedure symbol to prevent duplicate error messages. */
13042 if (has_non_interop_arg != 0)
13043 {
13044 sym->attr.is_c_interop = 0;
13045 sym->ts.is_c_interop = 0;
13046 sym->attr.is_bind_c = 0;
13047 }
13048 }
13049
13050 if (!sym->attr.proc_pointer)
13051 {
13052 if (sym->attr.save == SAVE_EXPLICIT)
13053 {
13054 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
13055 "in %qs at %L", sym->name, &sym->declared_at);
13056 return false;
13057 }
13058 if (sym->attr.intent)
13059 {
13060 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
13061 "in %qs at %L", sym->name, &sym->declared_at);
13062 return false;
13063 }
13064 if (sym->attr.subroutine && sym->attr.result)
13065 {
13066 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
13067 "in %qs at %L", sym->name, &sym->declared_at);
13068 return false;
13069 }
13070 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
13071 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
13072 || sym->attr.contained))
13073 {
13074 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
13075 "in %qs at %L", sym->name, &sym->declared_at);
13076 return false;
13077 }
13078 if (strcmp ("ppr@", sym->name) == 0)
13079 {
13080 gfc_error ("Procedure pointer result %qs at %L "
13081 "is missing the pointer attribute",
13082 sym->ns->proc_name->name, &sym->declared_at);
13083 return false;
13084 }
13085 }
13086
13087 /* Assume that a procedure whose body is not known has references
13088 to external arrays. */
13089 if (sym->attr.if_source != IFSRC_DECL)
13090 sym->attr.array_outer_dependency = 1;
13091
13092 /* Compare the characteristics of a module procedure with the
13093 interface declaration. Ideally this would be done with
13094 gfc_compare_interfaces but, at present, the formal interface
13095 cannot be copied to the ts.interface. */
13096 if (sym->attr.module_procedure
13097 && sym->attr.if_source == IFSRC_DECL)
13098 {
13099 gfc_symbol *iface;
13100 char name[2*GFC_MAX_SYMBOL_LEN + 1];
13101 char *module_name;
13102 char *submodule_name;
13103 strcpy (name, sym->ns->proc_name->name);
13104 module_name = strtok (name, ".");
13105 submodule_name = strtok (NULL, ".");
13106
13107 iface = sym->tlink;
13108 sym->tlink = NULL;
13109
13110 /* Make sure that the result uses the correct charlen for deferred
13111 length results. */
13112 if (iface && sym->result
13113 && iface->ts.type == BT_CHARACTER
13114 && iface->ts.deferred)
13115 sym->result->ts.u.cl = iface->ts.u.cl;
13116
13117 if (iface == NULL)
13118 goto check_formal;
13119
13120 /* Check the procedure characteristics. */
13121 if (sym->attr.elemental != iface->attr.elemental)
13122 {
13123 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
13124 "PROCEDURE at %L and its interface in %s",
13125 &sym->declared_at, module_name);
13126 return false;
13127 }
13128
13129 if (sym->attr.pure != iface->attr.pure)
13130 {
13131 gfc_error ("Mismatch in PURE attribute between MODULE "
13132 "PROCEDURE at %L and its interface in %s",
13133 &sym->declared_at, module_name);
13134 return false;
13135 }
13136
13137 if (sym->attr.recursive != iface->attr.recursive)
13138 {
13139 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
13140 "PROCEDURE at %L and its interface in %s",
13141 &sym->declared_at, module_name);
13142 return false;
13143 }
13144
13145 /* Check the result characteristics. */
13146 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
13147 {
13148 gfc_error ("%s between the MODULE PROCEDURE declaration "
13149 "in MODULE %qs and the declaration at %L in "
13150 "(SUB)MODULE %qs",
13151 errmsg, module_name, &sym->declared_at,
13152 submodule_name ? submodule_name : module_name);
13153 return false;
13154 }
13155
13156 check_formal:
13157 /* Check the characteristics of the formal arguments. */
13158 if (sym->formal && sym->formal_ns)
13159 {
13160 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
13161 {
13162 new_formal = arg;
13163 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
13164 }
13165 }
13166 }
13167 return true;
13168 }
13169
13170
13171 /* Resolve a list of finalizer procedures. That is, after they have hopefully
13172 been defined and we now know their defined arguments, check that they fulfill
13173 the requirements of the standard for procedures used as finalizers. */
13174
13175 static bool
13176 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
13177 {
13178 gfc_finalizer* list;
13179 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
13180 bool result = true;
13181 bool seen_scalar = false;
13182 gfc_symbol *vtab;
13183 gfc_component *c;
13184 gfc_symbol *parent = gfc_get_derived_super_type (derived);
13185
13186 if (parent)
13187 gfc_resolve_finalizers (parent, finalizable);
13188
13189 /* Ensure that derived-type components have a their finalizers resolved. */
13190 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
13191 for (c = derived->components; c; c = c->next)
13192 if (c->ts.type == BT_DERIVED
13193 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
13194 {
13195 bool has_final2 = false;
13196 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
13197 return false; /* Error. */
13198 has_final = has_final || has_final2;
13199 }
13200 /* Return early if not finalizable. */
13201 if (!has_final)
13202 {
13203 if (finalizable)
13204 *finalizable = false;
13205 return true;
13206 }
13207
13208 /* Walk over the list of finalizer-procedures, check them, and if any one
13209 does not fit in with the standard's definition, print an error and remove
13210 it from the list. */
13211 prev_link = &derived->f2k_derived->finalizers;
13212 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
13213 {
13214 gfc_formal_arglist *dummy_args;
13215 gfc_symbol* arg;
13216 gfc_finalizer* i;
13217 int my_rank;
13218
13219 /* Skip this finalizer if we already resolved it. */
13220 if (list->proc_tree)
13221 {
13222 if (list->proc_tree->n.sym->formal->sym->as == NULL
13223 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
13224 seen_scalar = true;
13225 prev_link = &(list->next);
13226 continue;
13227 }
13228
13229 /* Check this exists and is a SUBROUTINE. */
13230 if (!list->proc_sym->attr.subroutine)
13231 {
13232 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
13233 list->proc_sym->name, &list->where);
13234 goto error;
13235 }
13236
13237 /* We should have exactly one argument. */
13238 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
13239 if (!dummy_args || dummy_args->next)
13240 {
13241 gfc_error ("FINAL procedure at %L must have exactly one argument",
13242 &list->where);
13243 goto error;
13244 }
13245 arg = dummy_args->sym;
13246
13247 /* This argument must be of our type. */
13248 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
13249 {
13250 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
13251 &arg->declared_at, derived->name);
13252 goto error;
13253 }
13254
13255 /* It must neither be a pointer nor allocatable nor optional. */
13256 if (arg->attr.pointer)
13257 {
13258 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
13259 &arg->declared_at);
13260 goto error;
13261 }
13262 if (arg->attr.allocatable)
13263 {
13264 gfc_error ("Argument of FINAL procedure at %L must not be"
13265 " ALLOCATABLE", &arg->declared_at);
13266 goto error;
13267 }
13268 if (arg->attr.optional)
13269 {
13270 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
13271 &arg->declared_at);
13272 goto error;
13273 }
13274
13275 /* It must not be INTENT(OUT). */
13276 if (arg->attr.intent == INTENT_OUT)
13277 {
13278 gfc_error ("Argument of FINAL procedure at %L must not be"
13279 " INTENT(OUT)", &arg->declared_at);
13280 goto error;
13281 }
13282
13283 /* Warn if the procedure is non-scalar and not assumed shape. */
13284 if (warn_surprising && arg->as && arg->as->rank != 0
13285 && arg->as->type != AS_ASSUMED_SHAPE)
13286 gfc_warning (OPT_Wsurprising,
13287 "Non-scalar FINAL procedure at %L should have assumed"
13288 " shape argument", &arg->declared_at);
13289
13290 /* Check that it does not match in kind and rank with a FINAL procedure
13291 defined earlier. To really loop over the *earlier* declarations,
13292 we need to walk the tail of the list as new ones were pushed at the
13293 front. */
13294 /* TODO: Handle kind parameters once they are implemented. */
13295 my_rank = (arg->as ? arg->as->rank : 0);
13296 for (i = list->next; i; i = i->next)
13297 {
13298 gfc_formal_arglist *dummy_args;
13299
13300 /* Argument list might be empty; that is an error signalled earlier,
13301 but we nevertheless continued resolving. */
13302 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
13303 if (dummy_args)
13304 {
13305 gfc_symbol* i_arg = dummy_args->sym;
13306 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
13307 if (i_rank == my_rank)
13308 {
13309 gfc_error ("FINAL procedure %qs declared at %L has the same"
13310 " rank (%d) as %qs",
13311 list->proc_sym->name, &list->where, my_rank,
13312 i->proc_sym->name);
13313 goto error;
13314 }
13315 }
13316 }
13317
13318 /* Is this the/a scalar finalizer procedure? */
13319 if (my_rank == 0)
13320 seen_scalar = true;
13321
13322 /* Find the symtree for this procedure. */
13323 gcc_assert (!list->proc_tree);
13324 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
13325
13326 prev_link = &list->next;
13327 continue;
13328
13329 /* Remove wrong nodes immediately from the list so we don't risk any
13330 troubles in the future when they might fail later expectations. */
13331 error:
13332 i = list;
13333 *prev_link = list->next;
13334 gfc_free_finalizer (i);
13335 result = false;
13336 }
13337
13338 if (result == false)
13339 return false;
13340
13341 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
13342 were nodes in the list, must have been for arrays. It is surely a good
13343 idea to have a scalar version there if there's something to finalize. */
13344 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
13345 gfc_warning (OPT_Wsurprising,
13346 "Only array FINAL procedures declared for derived type %qs"
13347 " defined at %L, suggest also scalar one",
13348 derived->name, &derived->declared_at);
13349
13350 vtab = gfc_find_derived_vtab (derived);
13351 c = vtab->ts.u.derived->components->next->next->next->next->next;
13352 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
13353
13354 if (finalizable)
13355 *finalizable = true;
13356
13357 return true;
13358 }
13359
13360
13361 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
13362
13363 static bool
13364 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
13365 const char* generic_name, locus where)
13366 {
13367 gfc_symbol *sym1, *sym2;
13368 const char *pass1, *pass2;
13369 gfc_formal_arglist *dummy_args;
13370
13371 gcc_assert (t1->specific && t2->specific);
13372 gcc_assert (!t1->specific->is_generic);
13373 gcc_assert (!t2->specific->is_generic);
13374 gcc_assert (t1->is_operator == t2->is_operator);
13375
13376 sym1 = t1->specific->u.specific->n.sym;
13377 sym2 = t2->specific->u.specific->n.sym;
13378
13379 if (sym1 == sym2)
13380 return true;
13381
13382 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
13383 if (sym1->attr.subroutine != sym2->attr.subroutine
13384 || sym1->attr.function != sym2->attr.function)
13385 {
13386 gfc_error ("%qs and %qs cannot be mixed FUNCTION/SUBROUTINE for"
13387 " GENERIC %qs at %L",
13388 sym1->name, sym2->name, generic_name, &where);
13389 return false;
13390 }
13391
13392 /* Determine PASS arguments. */
13393 if (t1->specific->nopass)
13394 pass1 = NULL;
13395 else if (t1->specific->pass_arg)
13396 pass1 = t1->specific->pass_arg;
13397 else
13398 {
13399 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
13400 if (dummy_args)
13401 pass1 = dummy_args->sym->name;
13402 else
13403 pass1 = NULL;
13404 }
13405 if (t2->specific->nopass)
13406 pass2 = NULL;
13407 else if (t2->specific->pass_arg)
13408 pass2 = t2->specific->pass_arg;
13409 else
13410 {
13411 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
13412 if (dummy_args)
13413 pass2 = dummy_args->sym->name;
13414 else
13415 pass2 = NULL;
13416 }
13417
13418 /* Compare the interfaces. */
13419 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
13420 NULL, 0, pass1, pass2))
13421 {
13422 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
13423 sym1->name, sym2->name, generic_name, &where);
13424 return false;
13425 }
13426
13427 return true;
13428 }
13429
13430
13431 /* Worker function for resolving a generic procedure binding; this is used to
13432 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
13433
13434 The difference between those cases is finding possible inherited bindings
13435 that are overridden, as one has to look for them in tb_sym_root,
13436 tb_uop_root or tb_op, respectively. Thus the caller must already find
13437 the super-type and set p->overridden correctly. */
13438
13439 static bool
13440 resolve_tb_generic_targets (gfc_symbol* super_type,
13441 gfc_typebound_proc* p, const char* name)
13442 {
13443 gfc_tbp_generic* target;
13444 gfc_symtree* first_target;
13445 gfc_symtree* inherited;
13446
13447 gcc_assert (p && p->is_generic);
13448
13449 /* Try to find the specific bindings for the symtrees in our target-list. */
13450 gcc_assert (p->u.generic);
13451 for (target = p->u.generic; target; target = target->next)
13452 if (!target->specific)
13453 {
13454 gfc_typebound_proc* overridden_tbp;
13455 gfc_tbp_generic* g;
13456 const char* target_name;
13457
13458 target_name = target->specific_st->name;
13459
13460 /* Defined for this type directly. */
13461 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
13462 {
13463 target->specific = target->specific_st->n.tb;
13464 goto specific_found;
13465 }
13466
13467 /* Look for an inherited specific binding. */
13468 if (super_type)
13469 {
13470 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
13471 true, NULL);
13472
13473 if (inherited)
13474 {
13475 gcc_assert (inherited->n.tb);
13476 target->specific = inherited->n.tb;
13477 goto specific_found;
13478 }
13479 }
13480
13481 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
13482 " at %L", target_name, name, &p->where);
13483 return false;
13484
13485 /* Once we've found the specific binding, check it is not ambiguous with
13486 other specifics already found or inherited for the same GENERIC. */
13487 specific_found:
13488 gcc_assert (target->specific);
13489
13490 /* This must really be a specific binding! */
13491 if (target->specific->is_generic)
13492 {
13493 gfc_error ("GENERIC %qs at %L must target a specific binding,"
13494 " %qs is GENERIC, too", name, &p->where, target_name);
13495 return false;
13496 }
13497
13498 /* Check those already resolved on this type directly. */
13499 for (g = p->u.generic; g; g = g->next)
13500 if (g != target && g->specific
13501 && !check_generic_tbp_ambiguity (target, g, name, p->where))
13502 return false;
13503
13504 /* Check for ambiguity with inherited specific targets. */
13505 for (overridden_tbp = p->overridden; overridden_tbp;
13506 overridden_tbp = overridden_tbp->overridden)
13507 if (overridden_tbp->is_generic)
13508 {
13509 for (g = overridden_tbp->u.generic; g; g = g->next)
13510 {
13511 gcc_assert (g->specific);
13512 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
13513 return false;
13514 }
13515 }
13516 }
13517
13518 /* If we attempt to "overwrite" a specific binding, this is an error. */
13519 if (p->overridden && !p->overridden->is_generic)
13520 {
13521 gfc_error ("GENERIC %qs at %L cannot overwrite specific binding with"
13522 " the same name", name, &p->where);
13523 return false;
13524 }
13525
13526 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
13527 all must have the same attributes here. */
13528 first_target = p->u.generic->specific->u.specific;
13529 gcc_assert (first_target);
13530 p->subroutine = first_target->n.sym->attr.subroutine;
13531 p->function = first_target->n.sym->attr.function;
13532
13533 return true;
13534 }
13535
13536
13537 /* Resolve a GENERIC procedure binding for a derived type. */
13538
13539 static bool
13540 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
13541 {
13542 gfc_symbol* super_type;
13543
13544 /* Find the overridden binding if any. */
13545 st->n.tb->overridden = NULL;
13546 super_type = gfc_get_derived_super_type (derived);
13547 if (super_type)
13548 {
13549 gfc_symtree* overridden;
13550 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
13551 true, NULL);
13552
13553 if (overridden && overridden->n.tb)
13554 st->n.tb->overridden = overridden->n.tb;
13555 }
13556
13557 /* Resolve using worker function. */
13558 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13559 }
13560
13561
13562 /* Retrieve the target-procedure of an operator binding and do some checks in
13563 common for intrinsic and user-defined type-bound operators. */
13564
13565 static gfc_symbol*
13566 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13567 {
13568 gfc_symbol* target_proc;
13569
13570 gcc_assert (target->specific && !target->specific->is_generic);
13571 target_proc = target->specific->u.specific->n.sym;
13572 gcc_assert (target_proc);
13573
13574 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13575 if (target->specific->nopass)
13576 {
13577 gfc_error ("Type-bound operator at %L cannot be NOPASS", &where);
13578 return NULL;
13579 }
13580
13581 return target_proc;
13582 }
13583
13584
13585 /* Resolve a type-bound intrinsic operator. */
13586
13587 static bool
13588 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13589 gfc_typebound_proc* p)
13590 {
13591 gfc_symbol* super_type;
13592 gfc_tbp_generic* target;
13593
13594 /* If there's already an error here, do nothing (but don't fail again). */
13595 if (p->error)
13596 return true;
13597
13598 /* Operators should always be GENERIC bindings. */
13599 gcc_assert (p->is_generic);
13600
13601 /* Look for an overridden binding. */
13602 super_type = gfc_get_derived_super_type (derived);
13603 if (super_type && super_type->f2k_derived)
13604 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13605 op, true, NULL);
13606 else
13607 p->overridden = NULL;
13608
13609 /* Resolve general GENERIC properties using worker function. */
13610 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13611 goto error;
13612
13613 /* Check the targets to be procedures of correct interface. */
13614 for (target = p->u.generic; target; target = target->next)
13615 {
13616 gfc_symbol* target_proc;
13617
13618 target_proc = get_checked_tb_operator_target (target, p->where);
13619 if (!target_proc)
13620 goto error;
13621
13622 if (!gfc_check_operator_interface (target_proc, op, p->where))
13623 goto error;
13624
13625 /* Add target to non-typebound operator list. */
13626 if (!target->specific->deferred && !derived->attr.use_assoc
13627 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13628 {
13629 gfc_interface *head, *intr;
13630
13631 /* Preempt 'gfc_check_new_interface' for submodules, where the
13632 mechanism for handling module procedures winds up resolving
13633 operator interfaces twice and would otherwise cause an error. */
13634 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13635 if (intr->sym == target_proc
13636 && target_proc->attr.used_in_submodule)
13637 return true;
13638
13639 if (!gfc_check_new_interface (derived->ns->op[op],
13640 target_proc, p->where))
13641 return false;
13642 head = derived->ns->op[op];
13643 intr = gfc_get_interface ();
13644 intr->sym = target_proc;
13645 intr->where = p->where;
13646 intr->next = head;
13647 derived->ns->op[op] = intr;
13648 }
13649 }
13650
13651 return true;
13652
13653 error:
13654 p->error = 1;
13655 return false;
13656 }
13657
13658
13659 /* Resolve a type-bound user operator (tree-walker callback). */
13660
13661 static gfc_symbol* resolve_bindings_derived;
13662 static bool resolve_bindings_result;
13663
13664 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13665
13666 static void
13667 resolve_typebound_user_op (gfc_symtree* stree)
13668 {
13669 gfc_symbol* super_type;
13670 gfc_tbp_generic* target;
13671
13672 gcc_assert (stree && stree->n.tb);
13673
13674 if (stree->n.tb->error)
13675 return;
13676
13677 /* Operators should always be GENERIC bindings. */
13678 gcc_assert (stree->n.tb->is_generic);
13679
13680 /* Find overridden procedure, if any. */
13681 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13682 if (super_type && super_type->f2k_derived)
13683 {
13684 gfc_symtree* overridden;
13685 overridden = gfc_find_typebound_user_op (super_type, NULL,
13686 stree->name, true, NULL);
13687
13688 if (overridden && overridden->n.tb)
13689 stree->n.tb->overridden = overridden->n.tb;
13690 }
13691 else
13692 stree->n.tb->overridden = NULL;
13693
13694 /* Resolve basically using worker function. */
13695 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13696 goto error;
13697
13698 /* Check the targets to be functions of correct interface. */
13699 for (target = stree->n.tb->u.generic; target; target = target->next)
13700 {
13701 gfc_symbol* target_proc;
13702
13703 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13704 if (!target_proc)
13705 goto error;
13706
13707 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13708 goto error;
13709 }
13710
13711 return;
13712
13713 error:
13714 resolve_bindings_result = false;
13715 stree->n.tb->error = 1;
13716 }
13717
13718
13719 /* Resolve the type-bound procedures for a derived type. */
13720
13721 static void
13722 resolve_typebound_procedure (gfc_symtree* stree)
13723 {
13724 gfc_symbol* proc;
13725 locus where;
13726 gfc_symbol* me_arg;
13727 gfc_symbol* super_type;
13728 gfc_component* comp;
13729
13730 gcc_assert (stree);
13731
13732 /* Undefined specific symbol from GENERIC target definition. */
13733 if (!stree->n.tb)
13734 return;
13735
13736 if (stree->n.tb->error)
13737 return;
13738
13739 /* If this is a GENERIC binding, use that routine. */
13740 if (stree->n.tb->is_generic)
13741 {
13742 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13743 goto error;
13744 return;
13745 }
13746
13747 /* Get the target-procedure to check it. */
13748 gcc_assert (!stree->n.tb->is_generic);
13749 gcc_assert (stree->n.tb->u.specific);
13750 proc = stree->n.tb->u.specific->n.sym;
13751 where = stree->n.tb->where;
13752
13753 /* Default access should already be resolved from the parser. */
13754 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13755
13756 if (stree->n.tb->deferred)
13757 {
13758 if (!check_proc_interface (proc, &where))
13759 goto error;
13760 }
13761 else
13762 {
13763 /* If proc has not been resolved at this point, proc->name may
13764 actually be a USE associated entity. See PR fortran/89647. */
13765 if (!proc->resolved
13766 && proc->attr.function == 0 && proc->attr.subroutine == 0)
13767 {
13768 gfc_symbol *tmp;
13769 gfc_find_symbol (proc->name, gfc_current_ns->parent, 1, &tmp);
13770 if (tmp && tmp->attr.use_assoc)
13771 {
13772 proc->module = tmp->module;
13773 proc->attr.proc = tmp->attr.proc;
13774 proc->attr.function = tmp->attr.function;
13775 proc->attr.subroutine = tmp->attr.subroutine;
13776 proc->attr.use_assoc = tmp->attr.use_assoc;
13777 proc->ts = tmp->ts;
13778 proc->result = tmp->result;
13779 }
13780 }
13781
13782 /* Check for F08:C465. */
13783 if ((!proc->attr.subroutine && !proc->attr.function)
13784 || (proc->attr.proc != PROC_MODULE
13785 && proc->attr.if_source != IFSRC_IFBODY)
13786 || proc->attr.abstract)
13787 {
13788 gfc_error ("%qs must be a module procedure or an external "
13789 "procedure with an explicit interface at %L",
13790 proc->name, &where);
13791 goto error;
13792 }
13793 }
13794
13795 stree->n.tb->subroutine = proc->attr.subroutine;
13796 stree->n.tb->function = proc->attr.function;
13797
13798 /* Find the super-type of the current derived type. We could do this once and
13799 store in a global if speed is needed, but as long as not I believe this is
13800 more readable and clearer. */
13801 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13802
13803 /* If PASS, resolve and check arguments if not already resolved / loaded
13804 from a .mod file. */
13805 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13806 {
13807 gfc_formal_arglist *dummy_args;
13808
13809 dummy_args = gfc_sym_get_dummy_args (proc);
13810 if (stree->n.tb->pass_arg)
13811 {
13812 gfc_formal_arglist *i;
13813
13814 /* If an explicit passing argument name is given, walk the arg-list
13815 and look for it. */
13816
13817 me_arg = NULL;
13818 stree->n.tb->pass_arg_num = 1;
13819 for (i = dummy_args; i; i = i->next)
13820 {
13821 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13822 {
13823 me_arg = i->sym;
13824 break;
13825 }
13826 ++stree->n.tb->pass_arg_num;
13827 }
13828
13829 if (!me_arg)
13830 {
13831 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13832 " argument %qs",
13833 proc->name, stree->n.tb->pass_arg, &where,
13834 stree->n.tb->pass_arg);
13835 goto error;
13836 }
13837 }
13838 else
13839 {
13840 /* Otherwise, take the first one; there should in fact be at least
13841 one. */
13842 stree->n.tb->pass_arg_num = 1;
13843 if (!dummy_args)
13844 {
13845 gfc_error ("Procedure %qs with PASS at %L must have at"
13846 " least one argument", proc->name, &where);
13847 goto error;
13848 }
13849 me_arg = dummy_args->sym;
13850 }
13851
13852 /* Now check that the argument-type matches and the passed-object
13853 dummy argument is generally fine. */
13854
13855 gcc_assert (me_arg);
13856
13857 if (me_arg->ts.type != BT_CLASS)
13858 {
13859 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13860 " at %L", proc->name, &where);
13861 goto error;
13862 }
13863
13864 if (CLASS_DATA (me_arg)->ts.u.derived
13865 != resolve_bindings_derived)
13866 {
13867 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13868 " the derived-type %qs", me_arg->name, proc->name,
13869 me_arg->name, &where, resolve_bindings_derived->name);
13870 goto error;
13871 }
13872
13873 gcc_assert (me_arg->ts.type == BT_CLASS);
13874 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
13875 {
13876 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13877 " scalar", proc->name, &where);
13878 goto error;
13879 }
13880 if (CLASS_DATA (me_arg)->attr.allocatable)
13881 {
13882 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13883 " be ALLOCATABLE", proc->name, &where);
13884 goto error;
13885 }
13886 if (CLASS_DATA (me_arg)->attr.class_pointer)
13887 {
13888 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13889 " be POINTER", proc->name, &where);
13890 goto error;
13891 }
13892 }
13893
13894 /* If we are extending some type, check that we don't override a procedure
13895 flagged NON_OVERRIDABLE. */
13896 stree->n.tb->overridden = NULL;
13897 if (super_type)
13898 {
13899 gfc_symtree* overridden;
13900 overridden = gfc_find_typebound_proc (super_type, NULL,
13901 stree->name, true, NULL);
13902
13903 if (overridden)
13904 {
13905 if (overridden->n.tb)
13906 stree->n.tb->overridden = overridden->n.tb;
13907
13908 if (!gfc_check_typebound_override (stree, overridden))
13909 goto error;
13910 }
13911 }
13912
13913 /* See if there's a name collision with a component directly in this type. */
13914 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
13915 if (!strcmp (comp->name, stree->name))
13916 {
13917 gfc_error ("Procedure %qs at %L has the same name as a component of"
13918 " %qs",
13919 stree->name, &where, resolve_bindings_derived->name);
13920 goto error;
13921 }
13922
13923 /* Try to find a name collision with an inherited component. */
13924 if (super_type && gfc_find_component (super_type, stree->name, true, true,
13925 NULL))
13926 {
13927 gfc_error ("Procedure %qs at %L has the same name as an inherited"
13928 " component of %qs",
13929 stree->name, &where, resolve_bindings_derived->name);
13930 goto error;
13931 }
13932
13933 stree->n.tb->error = 0;
13934 return;
13935
13936 error:
13937 resolve_bindings_result = false;
13938 stree->n.tb->error = 1;
13939 }
13940
13941
13942 static bool
13943 resolve_typebound_procedures (gfc_symbol* derived)
13944 {
13945 int op;
13946 gfc_symbol* super_type;
13947
13948 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
13949 return true;
13950
13951 super_type = gfc_get_derived_super_type (derived);
13952 if (super_type)
13953 resolve_symbol (super_type);
13954
13955 resolve_bindings_derived = derived;
13956 resolve_bindings_result = true;
13957
13958 if (derived->f2k_derived->tb_sym_root)
13959 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
13960 &resolve_typebound_procedure);
13961
13962 if (derived->f2k_derived->tb_uop_root)
13963 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
13964 &resolve_typebound_user_op);
13965
13966 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
13967 {
13968 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
13969 if (p && !resolve_typebound_intrinsic_op (derived,
13970 (gfc_intrinsic_op)op, p))
13971 resolve_bindings_result = false;
13972 }
13973
13974 return resolve_bindings_result;
13975 }
13976
13977
13978 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
13979 to give all identical derived types the same backend_decl. */
13980 static void
13981 add_dt_to_dt_list (gfc_symbol *derived)
13982 {
13983 if (!derived->dt_next)
13984 {
13985 if (gfc_derived_types)
13986 {
13987 derived->dt_next = gfc_derived_types->dt_next;
13988 gfc_derived_types->dt_next = derived;
13989 }
13990 else
13991 {
13992 derived->dt_next = derived;
13993 }
13994 gfc_derived_types = derived;
13995 }
13996 }
13997
13998
13999 /* Ensure that a derived-type is really not abstract, meaning that every
14000 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
14001
14002 static bool
14003 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
14004 {
14005 if (!st)
14006 return true;
14007
14008 if (!ensure_not_abstract_walker (sub, st->left))
14009 return false;
14010 if (!ensure_not_abstract_walker (sub, st->right))
14011 return false;
14012
14013 if (st->n.tb && st->n.tb->deferred)
14014 {
14015 gfc_symtree* overriding;
14016 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
14017 if (!overriding)
14018 return false;
14019 gcc_assert (overriding->n.tb);
14020 if (overriding->n.tb->deferred)
14021 {
14022 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
14023 " %qs is DEFERRED and not overridden",
14024 sub->name, &sub->declared_at, st->name);
14025 return false;
14026 }
14027 }
14028
14029 return true;
14030 }
14031
14032 static bool
14033 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
14034 {
14035 /* The algorithm used here is to recursively travel up the ancestry of sub
14036 and for each ancestor-type, check all bindings. If any of them is
14037 DEFERRED, look it up starting from sub and see if the found (overriding)
14038 binding is not DEFERRED.
14039 This is not the most efficient way to do this, but it should be ok and is
14040 clearer than something sophisticated. */
14041
14042 gcc_assert (ancestor && !sub->attr.abstract);
14043
14044 if (!ancestor->attr.abstract)
14045 return true;
14046
14047 /* Walk bindings of this ancestor. */
14048 if (ancestor->f2k_derived)
14049 {
14050 bool t;
14051 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
14052 if (!t)
14053 return false;
14054 }
14055
14056 /* Find next ancestor type and recurse on it. */
14057 ancestor = gfc_get_derived_super_type (ancestor);
14058 if (ancestor)
14059 return ensure_not_abstract (sub, ancestor);
14060
14061 return true;
14062 }
14063
14064
14065 /* This check for typebound defined assignments is done recursively
14066 since the order in which derived types are resolved is not always in
14067 order of the declarations. */
14068
14069 static void
14070 check_defined_assignments (gfc_symbol *derived)
14071 {
14072 gfc_component *c;
14073
14074 for (c = derived->components; c; c = c->next)
14075 {
14076 if (!gfc_bt_struct (c->ts.type)
14077 || c->attr.pointer
14078 || c->attr.allocatable
14079 || c->attr.proc_pointer_comp
14080 || c->attr.class_pointer
14081 || c->attr.proc_pointer)
14082 continue;
14083
14084 if (c->ts.u.derived->attr.defined_assign_comp
14085 || (c->ts.u.derived->f2k_derived
14086 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
14087 {
14088 derived->attr.defined_assign_comp = 1;
14089 return;
14090 }
14091
14092 check_defined_assignments (c->ts.u.derived);
14093 if (c->ts.u.derived->attr.defined_assign_comp)
14094 {
14095 derived->attr.defined_assign_comp = 1;
14096 return;
14097 }
14098 }
14099 }
14100
14101
14102 /* Resolve a single component of a derived type or structure. */
14103
14104 static bool
14105 resolve_component (gfc_component *c, gfc_symbol *sym)
14106 {
14107 gfc_symbol *super_type;
14108 symbol_attribute *attr;
14109
14110 if (c->attr.artificial)
14111 return true;
14112
14113 /* Do not allow vtype components to be resolved in nameless namespaces
14114 such as block data because the procedure pointers will cause ICEs
14115 and vtables are not needed in these contexts. */
14116 if (sym->attr.vtype && sym->attr.use_assoc
14117 && sym->ns->proc_name == NULL)
14118 return true;
14119
14120 /* F2008, C442. */
14121 if ((!sym->attr.is_class || c != sym->components)
14122 && c->attr.codimension
14123 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
14124 {
14125 gfc_error ("Coarray component %qs at %L must be allocatable with "
14126 "deferred shape", c->name, &c->loc);
14127 return false;
14128 }
14129
14130 /* F2008, C443. */
14131 if (c->attr.codimension && c->ts.type == BT_DERIVED
14132 && c->ts.u.derived->ts.is_iso_c)
14133 {
14134 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
14135 "shall not be a coarray", c->name, &c->loc);
14136 return false;
14137 }
14138
14139 /* F2008, C444. */
14140 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
14141 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
14142 || c->attr.allocatable))
14143 {
14144 gfc_error ("Component %qs at %L with coarray component "
14145 "shall be a nonpointer, nonallocatable scalar",
14146 c->name, &c->loc);
14147 return false;
14148 }
14149
14150 /* F2008, C448. */
14151 if (c->ts.type == BT_CLASS)
14152 {
14153 if (CLASS_DATA (c))
14154 {
14155 attr = &(CLASS_DATA (c)->attr);
14156
14157 /* Fix up contiguous attribute. */
14158 if (c->attr.contiguous)
14159 attr->contiguous = 1;
14160 }
14161 else
14162 attr = NULL;
14163 }
14164 else
14165 attr = &c->attr;
14166
14167 if (attr && attr->contiguous && (!attr->dimension || !attr->pointer))
14168 {
14169 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
14170 "is not an array pointer", c->name, &c->loc);
14171 return false;
14172 }
14173
14174 /* F2003, 15.2.1 - length has to be one. */
14175 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
14176 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
14177 || !gfc_is_constant_expr (c->ts.u.cl->length)
14178 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
14179 {
14180 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
14181 c->name, &c->loc);
14182 return false;
14183 }
14184
14185 if (c->attr.proc_pointer && c->ts.interface)
14186 {
14187 gfc_symbol *ifc = c->ts.interface;
14188
14189 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
14190 {
14191 c->tb->error = 1;
14192 return false;
14193 }
14194
14195 if (ifc->attr.if_source || ifc->attr.intrinsic)
14196 {
14197 /* Resolve interface and copy attributes. */
14198 if (ifc->formal && !ifc->formal_ns)
14199 resolve_symbol (ifc);
14200 if (ifc->attr.intrinsic)
14201 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
14202
14203 if (ifc->result)
14204 {
14205 c->ts = ifc->result->ts;
14206 c->attr.allocatable = ifc->result->attr.allocatable;
14207 c->attr.pointer = ifc->result->attr.pointer;
14208 c->attr.dimension = ifc->result->attr.dimension;
14209 c->as = gfc_copy_array_spec (ifc->result->as);
14210 c->attr.class_ok = ifc->result->attr.class_ok;
14211 }
14212 else
14213 {
14214 c->ts = ifc->ts;
14215 c->attr.allocatable = ifc->attr.allocatable;
14216 c->attr.pointer = ifc->attr.pointer;
14217 c->attr.dimension = ifc->attr.dimension;
14218 c->as = gfc_copy_array_spec (ifc->as);
14219 c->attr.class_ok = ifc->attr.class_ok;
14220 }
14221 c->ts.interface = ifc;
14222 c->attr.function = ifc->attr.function;
14223 c->attr.subroutine = ifc->attr.subroutine;
14224
14225 c->attr.pure = ifc->attr.pure;
14226 c->attr.elemental = ifc->attr.elemental;
14227 c->attr.recursive = ifc->attr.recursive;
14228 c->attr.always_explicit = ifc->attr.always_explicit;
14229 c->attr.ext_attr |= ifc->attr.ext_attr;
14230 /* Copy char length. */
14231 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
14232 {
14233 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
14234 if (cl->length && !cl->resolved
14235 && !gfc_resolve_expr (cl->length))
14236 {
14237 c->tb->error = 1;
14238 return false;
14239 }
14240 c->ts.u.cl = cl;
14241 }
14242 }
14243 }
14244 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
14245 {
14246 /* Since PPCs are not implicitly typed, a PPC without an explicit
14247 interface must be a subroutine. */
14248 gfc_add_subroutine (&c->attr, c->name, &c->loc);
14249 }
14250
14251 /* Procedure pointer components: Check PASS arg. */
14252 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
14253 && !sym->attr.vtype)
14254 {
14255 gfc_symbol* me_arg;
14256
14257 if (c->tb->pass_arg)
14258 {
14259 gfc_formal_arglist* i;
14260
14261 /* If an explicit passing argument name is given, walk the arg-list
14262 and look for it. */
14263
14264 me_arg = NULL;
14265 c->tb->pass_arg_num = 1;
14266 for (i = c->ts.interface->formal; i; i = i->next)
14267 {
14268 if (!strcmp (i->sym->name, c->tb->pass_arg))
14269 {
14270 me_arg = i->sym;
14271 break;
14272 }
14273 c->tb->pass_arg_num++;
14274 }
14275
14276 if (!me_arg)
14277 {
14278 gfc_error ("Procedure pointer component %qs with PASS(%s) "
14279 "at %L has no argument %qs", c->name,
14280 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
14281 c->tb->error = 1;
14282 return false;
14283 }
14284 }
14285 else
14286 {
14287 /* Otherwise, take the first one; there should in fact be at least
14288 one. */
14289 c->tb->pass_arg_num = 1;
14290 if (!c->ts.interface->formal)
14291 {
14292 gfc_error ("Procedure pointer component %qs with PASS at %L "
14293 "must have at least one argument",
14294 c->name, &c->loc);
14295 c->tb->error = 1;
14296 return false;
14297 }
14298 me_arg = c->ts.interface->formal->sym;
14299 }
14300
14301 /* Now check that the argument-type matches. */
14302 gcc_assert (me_arg);
14303 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
14304 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
14305 || (me_arg->ts.type == BT_CLASS
14306 && CLASS_DATA (me_arg)->ts.u.derived != sym))
14307 {
14308 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14309 " the derived type %qs", me_arg->name, c->name,
14310 me_arg->name, &c->loc, sym->name);
14311 c->tb->error = 1;
14312 return false;
14313 }
14314
14315 /* Check for F03:C453. */
14316 if (CLASS_DATA (me_arg)->attr.dimension)
14317 {
14318 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14319 "must be scalar", me_arg->name, c->name, me_arg->name,
14320 &c->loc);
14321 c->tb->error = 1;
14322 return false;
14323 }
14324
14325 if (CLASS_DATA (me_arg)->attr.class_pointer)
14326 {
14327 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14328 "may not have the POINTER attribute", me_arg->name,
14329 c->name, me_arg->name, &c->loc);
14330 c->tb->error = 1;
14331 return false;
14332 }
14333
14334 if (CLASS_DATA (me_arg)->attr.allocatable)
14335 {
14336 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14337 "may not be ALLOCATABLE", me_arg->name, c->name,
14338 me_arg->name, &c->loc);
14339 c->tb->error = 1;
14340 return false;
14341 }
14342
14343 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
14344 {
14345 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14346 " at %L", c->name, &c->loc);
14347 return false;
14348 }
14349
14350 }
14351
14352 /* Check type-spec if this is not the parent-type component. */
14353 if (((sym->attr.is_class
14354 && (!sym->components->ts.u.derived->attr.extension
14355 || c != sym->components->ts.u.derived->components))
14356 || (!sym->attr.is_class
14357 && (!sym->attr.extension || c != sym->components)))
14358 && !sym->attr.vtype
14359 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
14360 return false;
14361
14362 super_type = gfc_get_derived_super_type (sym);
14363
14364 /* If this type is an extension, set the accessibility of the parent
14365 component. */
14366 if (super_type
14367 && ((sym->attr.is_class
14368 && c == sym->components->ts.u.derived->components)
14369 || (!sym->attr.is_class && c == sym->components))
14370 && strcmp (super_type->name, c->name) == 0)
14371 c->attr.access = super_type->attr.access;
14372
14373 /* If this type is an extension, see if this component has the same name
14374 as an inherited type-bound procedure. */
14375 if (super_type && !sym->attr.is_class
14376 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
14377 {
14378 gfc_error ("Component %qs of %qs at %L has the same name as an"
14379 " inherited type-bound procedure",
14380 c->name, sym->name, &c->loc);
14381 return false;
14382 }
14383
14384 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
14385 && !c->ts.deferred)
14386 {
14387 if (c->ts.u.cl->length == NULL
14388 || (!resolve_charlen(c->ts.u.cl))
14389 || !gfc_is_constant_expr (c->ts.u.cl->length))
14390 {
14391 gfc_error ("Character length of component %qs needs to "
14392 "be a constant specification expression at %L",
14393 c->name,
14394 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
14395 return false;
14396 }
14397 }
14398
14399 if (c->ts.type == BT_CHARACTER && c->ts.deferred
14400 && !c->attr.pointer && !c->attr.allocatable)
14401 {
14402 gfc_error ("Character component %qs of %qs at %L with deferred "
14403 "length must be a POINTER or ALLOCATABLE",
14404 c->name, sym->name, &c->loc);
14405 return false;
14406 }
14407
14408 /* Add the hidden deferred length field. */
14409 if (c->ts.type == BT_CHARACTER
14410 && (c->ts.deferred || c->attr.pdt_string)
14411 && !c->attr.function
14412 && !sym->attr.is_class)
14413 {
14414 char name[GFC_MAX_SYMBOL_LEN+9];
14415 gfc_component *strlen;
14416 sprintf (name, "_%s_length", c->name);
14417 strlen = gfc_find_component (sym, name, true, true, NULL);
14418 if (strlen == NULL)
14419 {
14420 if (!gfc_add_component (sym, name, &strlen))
14421 return false;
14422 strlen->ts.type = BT_INTEGER;
14423 strlen->ts.kind = gfc_charlen_int_kind;
14424 strlen->attr.access = ACCESS_PRIVATE;
14425 strlen->attr.artificial = 1;
14426 }
14427 }
14428
14429 if (c->ts.type == BT_DERIVED
14430 && sym->component_access != ACCESS_PRIVATE
14431 && gfc_check_symbol_access (sym)
14432 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
14433 && !c->ts.u.derived->attr.use_assoc
14434 && !gfc_check_symbol_access (c->ts.u.derived)
14435 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
14436 "PRIVATE type and cannot be a component of "
14437 "%qs, which is PUBLIC at %L", c->name,
14438 sym->name, &sym->declared_at))
14439 return false;
14440
14441 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
14442 {
14443 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
14444 "type %s", c->name, &c->loc, sym->name);
14445 return false;
14446 }
14447
14448 if (sym->attr.sequence)
14449 {
14450 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
14451 {
14452 gfc_error ("Component %s of SEQUENCE type declared at %L does "
14453 "not have the SEQUENCE attribute",
14454 c->ts.u.derived->name, &sym->declared_at);
14455 return false;
14456 }
14457 }
14458
14459 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
14460 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
14461 else if (c->ts.type == BT_CLASS && c->attr.class_ok
14462 && CLASS_DATA (c)->ts.u.derived->attr.generic)
14463 CLASS_DATA (c)->ts.u.derived
14464 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
14465
14466 /* If an allocatable component derived type is of the same type as
14467 the enclosing derived type, we need a vtable generating so that
14468 the __deallocate procedure is created. */
14469 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
14470 && c->ts.u.derived == sym && c->attr.allocatable == 1)
14471 gfc_find_vtab (&c->ts);
14472
14473 /* Ensure that all the derived type components are put on the
14474 derived type list; even in formal namespaces, where derived type
14475 pointer components might not have been declared. */
14476 if (c->ts.type == BT_DERIVED
14477 && c->ts.u.derived
14478 && c->ts.u.derived->components
14479 && c->attr.pointer
14480 && sym != c->ts.u.derived)
14481 add_dt_to_dt_list (c->ts.u.derived);
14482
14483 if (!gfc_resolve_array_spec (c->as,
14484 !(c->attr.pointer || c->attr.proc_pointer
14485 || c->attr.allocatable)))
14486 return false;
14487
14488 if (c->initializer && !sym->attr.vtype
14489 && !c->attr.pdt_kind && !c->attr.pdt_len
14490 && !gfc_check_assign_symbol (sym, c, c->initializer))
14491 return false;
14492
14493 return true;
14494 }
14495
14496
14497 /* Be nice about the locus for a structure expression - show the locus of the
14498 first non-null sub-expression if we can. */
14499
14500 static locus *
14501 cons_where (gfc_expr *struct_expr)
14502 {
14503 gfc_constructor *cons;
14504
14505 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
14506
14507 cons = gfc_constructor_first (struct_expr->value.constructor);
14508 for (; cons; cons = gfc_constructor_next (cons))
14509 {
14510 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
14511 return &cons->expr->where;
14512 }
14513
14514 return &struct_expr->where;
14515 }
14516
14517 /* Resolve the components of a structure type. Much less work than derived
14518 types. */
14519
14520 static bool
14521 resolve_fl_struct (gfc_symbol *sym)
14522 {
14523 gfc_component *c;
14524 gfc_expr *init = NULL;
14525 bool success;
14526
14527 /* Make sure UNIONs do not have overlapping initializers. */
14528 if (sym->attr.flavor == FL_UNION)
14529 {
14530 for (c = sym->components; c; c = c->next)
14531 {
14532 if (init && c->initializer)
14533 {
14534 gfc_error ("Conflicting initializers in union at %L and %L",
14535 cons_where (init), cons_where (c->initializer));
14536 gfc_free_expr (c->initializer);
14537 c->initializer = NULL;
14538 }
14539 if (init == NULL)
14540 init = c->initializer;
14541 }
14542 }
14543
14544 success = true;
14545 for (c = sym->components; c; c = c->next)
14546 if (!resolve_component (c, sym))
14547 success = false;
14548
14549 if (!success)
14550 return false;
14551
14552 if (sym->components)
14553 add_dt_to_dt_list (sym);
14554
14555 return true;
14556 }
14557
14558
14559 /* Resolve the components of a derived type. This does not have to wait until
14560 resolution stage, but can be done as soon as the dt declaration has been
14561 parsed. */
14562
14563 static bool
14564 resolve_fl_derived0 (gfc_symbol *sym)
14565 {
14566 gfc_symbol* super_type;
14567 gfc_component *c;
14568 gfc_formal_arglist *f;
14569 bool success;
14570
14571 if (sym->attr.unlimited_polymorphic)
14572 return true;
14573
14574 super_type = gfc_get_derived_super_type (sym);
14575
14576 /* F2008, C432. */
14577 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14578 {
14579 gfc_error ("As extending type %qs at %L has a coarray component, "
14580 "parent type %qs shall also have one", sym->name,
14581 &sym->declared_at, super_type->name);
14582 return false;
14583 }
14584
14585 /* Ensure the extended type gets resolved before we do. */
14586 if (super_type && !resolve_fl_derived0 (super_type))
14587 return false;
14588
14589 /* An ABSTRACT type must be extensible. */
14590 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14591 {
14592 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14593 sym->name, &sym->declared_at);
14594 return false;
14595 }
14596
14597 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14598 : sym->components;
14599
14600 success = true;
14601 for ( ; c != NULL; c = c->next)
14602 if (!resolve_component (c, sym))
14603 success = false;
14604
14605 if (!success)
14606 return false;
14607
14608 /* Now add the caf token field, where needed. */
14609 if (flag_coarray != GFC_FCOARRAY_NONE
14610 && !sym->attr.is_class && !sym->attr.vtype)
14611 {
14612 for (c = sym->components; c; c = c->next)
14613 if (!c->attr.dimension && !c->attr.codimension
14614 && (c->attr.allocatable || c->attr.pointer))
14615 {
14616 char name[GFC_MAX_SYMBOL_LEN+9];
14617 gfc_component *token;
14618 sprintf (name, "_caf_%s", c->name);
14619 token = gfc_find_component (sym, name, true, true, NULL);
14620 if (token == NULL)
14621 {
14622 if (!gfc_add_component (sym, name, &token))
14623 return false;
14624 token->ts.type = BT_VOID;
14625 token->ts.kind = gfc_default_integer_kind;
14626 token->attr.access = ACCESS_PRIVATE;
14627 token->attr.artificial = 1;
14628 token->attr.caf_token = 1;
14629 }
14630 }
14631 }
14632
14633 check_defined_assignments (sym);
14634
14635 if (!sym->attr.defined_assign_comp && super_type)
14636 sym->attr.defined_assign_comp
14637 = super_type->attr.defined_assign_comp;
14638
14639 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14640 all DEFERRED bindings are overridden. */
14641 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14642 && !sym->attr.is_class
14643 && !ensure_not_abstract (sym, super_type))
14644 return false;
14645
14646 /* Check that there is a component for every PDT parameter. */
14647 if (sym->attr.pdt_template)
14648 {
14649 for (f = sym->formal; f; f = f->next)
14650 {
14651 if (!f->sym)
14652 continue;
14653 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14654 if (c == NULL)
14655 {
14656 gfc_error ("Parameterized type %qs does not have a component "
14657 "corresponding to parameter %qs at %L", sym->name,
14658 f->sym->name, &sym->declared_at);
14659 break;
14660 }
14661 }
14662 }
14663
14664 /* Add derived type to the derived type list. */
14665 add_dt_to_dt_list (sym);
14666
14667 return true;
14668 }
14669
14670
14671 /* The following procedure does the full resolution of a derived type,
14672 including resolution of all type-bound procedures (if present). In contrast
14673 to 'resolve_fl_derived0' this can only be done after the module has been
14674 parsed completely. */
14675
14676 static bool
14677 resolve_fl_derived (gfc_symbol *sym)
14678 {
14679 gfc_symbol *gen_dt = NULL;
14680
14681 if (sym->attr.unlimited_polymorphic)
14682 return true;
14683
14684 if (!sym->attr.is_class)
14685 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14686 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14687 && (!gen_dt->generic->sym->attr.use_assoc
14688 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14689 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14690 "%qs at %L being the same name as derived "
14691 "type at %L", sym->name,
14692 gen_dt->generic->sym == sym
14693 ? gen_dt->generic->next->sym->name
14694 : gen_dt->generic->sym->name,
14695 gen_dt->generic->sym == sym
14696 ? &gen_dt->generic->next->sym->declared_at
14697 : &gen_dt->generic->sym->declared_at,
14698 &sym->declared_at))
14699 return false;
14700
14701 if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
14702 {
14703 gfc_error ("Derived type %qs at %L has not been declared",
14704 sym->name, &sym->declared_at);
14705 return false;
14706 }
14707
14708 /* Resolve the finalizer procedures. */
14709 if (!gfc_resolve_finalizers (sym, NULL))
14710 return false;
14711
14712 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14713 {
14714 /* Fix up incomplete CLASS symbols. */
14715 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14716 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14717
14718 /* Nothing more to do for unlimited polymorphic entities. */
14719 if (data->ts.u.derived->attr.unlimited_polymorphic)
14720 return true;
14721 else if (vptr->ts.u.derived == NULL)
14722 {
14723 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14724 gcc_assert (vtab);
14725 vptr->ts.u.derived = vtab->ts.u.derived;
14726 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14727 return false;
14728 }
14729 }
14730
14731 if (!resolve_fl_derived0 (sym))
14732 return false;
14733
14734 /* Resolve the type-bound procedures. */
14735 if (!resolve_typebound_procedures (sym))
14736 return false;
14737
14738 /* Generate module vtables subject to their accessibility and their not
14739 being vtables or pdt templates. If this is not done class declarations
14740 in external procedures wind up with their own version and so SELECT TYPE
14741 fails because the vptrs do not have the same address. */
14742 if (gfc_option.allow_std & GFC_STD_F2003
14743 && sym->ns->proc_name
14744 && sym->ns->proc_name->attr.flavor == FL_MODULE
14745 && sym->attr.access != ACCESS_PRIVATE
14746 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14747 {
14748 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14749 gfc_set_sym_referenced (vtab);
14750 }
14751
14752 return true;
14753 }
14754
14755
14756 static bool
14757 resolve_fl_namelist (gfc_symbol *sym)
14758 {
14759 gfc_namelist *nl;
14760 gfc_symbol *nlsym;
14761
14762 for (nl = sym->namelist; nl; nl = nl->next)
14763 {
14764 /* Check again, the check in match only works if NAMELIST comes
14765 after the decl. */
14766 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14767 {
14768 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14769 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14770 return false;
14771 }
14772
14773 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14774 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14775 "with assumed shape in namelist %qs at %L",
14776 nl->sym->name, sym->name, &sym->declared_at))
14777 return false;
14778
14779 if (is_non_constant_shape_array (nl->sym)
14780 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14781 "with nonconstant shape in namelist %qs at %L",
14782 nl->sym->name, sym->name, &sym->declared_at))
14783 return false;
14784
14785 if (nl->sym->ts.type == BT_CHARACTER
14786 && (nl->sym->ts.u.cl->length == NULL
14787 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14788 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14789 "nonconstant character length in "
14790 "namelist %qs at %L", nl->sym->name,
14791 sym->name, &sym->declared_at))
14792 return false;
14793
14794 }
14795
14796 /* Reject PRIVATE objects in a PUBLIC namelist. */
14797 if (gfc_check_symbol_access (sym))
14798 {
14799 for (nl = sym->namelist; nl; nl = nl->next)
14800 {
14801 if (!nl->sym->attr.use_assoc
14802 && !is_sym_host_assoc (nl->sym, sym->ns)
14803 && !gfc_check_symbol_access (nl->sym))
14804 {
14805 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14806 "cannot be member of PUBLIC namelist %qs at %L",
14807 nl->sym->name, sym->name, &sym->declared_at);
14808 return false;
14809 }
14810
14811 if (nl->sym->ts.type == BT_DERIVED
14812 && (nl->sym->ts.u.derived->attr.alloc_comp
14813 || nl->sym->ts.u.derived->attr.pointer_comp))
14814 {
14815 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14816 "namelist %qs at %L with ALLOCATABLE "
14817 "or POINTER components", nl->sym->name,
14818 sym->name, &sym->declared_at))
14819 return false;
14820 return true;
14821 }
14822
14823 /* Types with private components that came here by USE-association. */
14824 if (nl->sym->ts.type == BT_DERIVED
14825 && derived_inaccessible (nl->sym->ts.u.derived))
14826 {
14827 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14828 "components and cannot be member of namelist %qs at %L",
14829 nl->sym->name, sym->name, &sym->declared_at);
14830 return false;
14831 }
14832
14833 /* Types with private components that are defined in the same module. */
14834 if (nl->sym->ts.type == BT_DERIVED
14835 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14836 && nl->sym->ts.u.derived->attr.private_comp)
14837 {
14838 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14839 "cannot be a member of PUBLIC namelist %qs at %L",
14840 nl->sym->name, sym->name, &sym->declared_at);
14841 return false;
14842 }
14843 }
14844 }
14845
14846
14847 /* 14.1.2 A module or internal procedure represent local entities
14848 of the same type as a namelist member and so are not allowed. */
14849 for (nl = sym->namelist; nl; nl = nl->next)
14850 {
14851 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
14852 continue;
14853
14854 if (nl->sym->attr.function && nl->sym == nl->sym->result)
14855 if ((nl->sym == sym->ns->proc_name)
14856 ||
14857 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
14858 continue;
14859
14860 nlsym = NULL;
14861 if (nl->sym->name)
14862 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
14863 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
14864 {
14865 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14866 "attribute in %qs at %L", nlsym->name,
14867 &sym->declared_at);
14868 return false;
14869 }
14870 }
14871
14872 if (async_io_dt)
14873 {
14874 for (nl = sym->namelist; nl; nl = nl->next)
14875 nl->sym->attr.asynchronous = 1;
14876 }
14877 return true;
14878 }
14879
14880
14881 static bool
14882 resolve_fl_parameter (gfc_symbol *sym)
14883 {
14884 /* A parameter array's shape needs to be constant. */
14885 if (sym->as != NULL
14886 && (sym->as->type == AS_DEFERRED
14887 || is_non_constant_shape_array (sym)))
14888 {
14889 gfc_error ("Parameter array %qs at %L cannot be automatic "
14890 "or of deferred shape", sym->name, &sym->declared_at);
14891 return false;
14892 }
14893
14894 /* Constraints on deferred type parameter. */
14895 if (!deferred_requirements (sym))
14896 return false;
14897
14898 /* Make sure a parameter that has been implicitly typed still
14899 matches the implicit type, since PARAMETER statements can precede
14900 IMPLICIT statements. */
14901 if (sym->attr.implicit_type
14902 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
14903 sym->ns)))
14904 {
14905 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
14906 "later IMPLICIT type", sym->name, &sym->declared_at);
14907 return false;
14908 }
14909
14910 /* Make sure the types of derived parameters are consistent. This
14911 type checking is deferred until resolution because the type may
14912 refer to a derived type from the host. */
14913 if (sym->ts.type == BT_DERIVED
14914 && !gfc_compare_types (&sym->ts, &sym->value->ts))
14915 {
14916 gfc_error ("Incompatible derived type in PARAMETER at %L",
14917 &sym->value->where);
14918 return false;
14919 }
14920
14921 /* F03:C509,C514. */
14922 if (sym->ts.type == BT_CLASS)
14923 {
14924 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
14925 sym->name, &sym->declared_at);
14926 return false;
14927 }
14928
14929 return true;
14930 }
14931
14932
14933 /* Called by resolve_symbol to check PDTs. */
14934
14935 static void
14936 resolve_pdt (gfc_symbol* sym)
14937 {
14938 gfc_symbol *derived = NULL;
14939 gfc_actual_arglist *param;
14940 gfc_component *c;
14941 bool const_len_exprs = true;
14942 bool assumed_len_exprs = false;
14943 symbol_attribute *attr;
14944
14945 if (sym->ts.type == BT_DERIVED)
14946 {
14947 derived = sym->ts.u.derived;
14948 attr = &(sym->attr);
14949 }
14950 else if (sym->ts.type == BT_CLASS)
14951 {
14952 derived = CLASS_DATA (sym)->ts.u.derived;
14953 attr = &(CLASS_DATA (sym)->attr);
14954 }
14955 else
14956 gcc_unreachable ();
14957
14958 gcc_assert (derived->attr.pdt_type);
14959
14960 for (param = sym->param_list; param; param = param->next)
14961 {
14962 c = gfc_find_component (derived, param->name, false, true, NULL);
14963 gcc_assert (c);
14964 if (c->attr.pdt_kind)
14965 continue;
14966
14967 if (param->expr && !gfc_is_constant_expr (param->expr)
14968 && c->attr.pdt_len)
14969 const_len_exprs = false;
14970 else if (param->spec_type == SPEC_ASSUMED)
14971 assumed_len_exprs = true;
14972
14973 if (param->spec_type == SPEC_DEFERRED
14974 && !attr->allocatable && !attr->pointer)
14975 gfc_error ("The object %qs at %L has a deferred LEN "
14976 "parameter %qs and is neither allocatable "
14977 "nor a pointer", sym->name, &sym->declared_at,
14978 param->name);
14979
14980 }
14981
14982 if (!const_len_exprs
14983 && (sym->ns->proc_name->attr.is_main_program
14984 || sym->ns->proc_name->attr.flavor == FL_MODULE
14985 || sym->attr.save != SAVE_NONE))
14986 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
14987 "SAVE attribute or be a variable declared in the "
14988 "main program, a module or a submodule(F08/C513)",
14989 sym->name, &sym->declared_at);
14990
14991 if (assumed_len_exprs && !(sym->attr.dummy
14992 || sym->attr.select_type_temporary || sym->attr.associate_var))
14993 gfc_error ("The object %qs at %L with ASSUMED type parameters "
14994 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
14995 sym->name, &sym->declared_at);
14996 }
14997
14998
14999 /* Do anything necessary to resolve a symbol. Right now, we just
15000 assume that an otherwise unknown symbol is a variable. This sort
15001 of thing commonly happens for symbols in module. */
15002
15003 static void
15004 resolve_symbol (gfc_symbol *sym)
15005 {
15006 int check_constant, mp_flag;
15007 gfc_symtree *symtree;
15008 gfc_symtree *this_symtree;
15009 gfc_namespace *ns;
15010 gfc_component *c;
15011 symbol_attribute class_attr;
15012 gfc_array_spec *as;
15013 bool saved_specification_expr;
15014
15015 if (sym->resolved)
15016 return;
15017 sym->resolved = 1;
15018
15019 /* No symbol will ever have union type; only components can be unions.
15020 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
15021 (just like derived type declaration symbols have flavor FL_DERIVED). */
15022 gcc_assert (sym->ts.type != BT_UNION);
15023
15024 /* Coarrayed polymorphic objects with allocatable or pointer components are
15025 yet unsupported for -fcoarray=lib. */
15026 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
15027 && sym->ts.u.derived && CLASS_DATA (sym)
15028 && CLASS_DATA (sym)->attr.codimension
15029 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
15030 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
15031 {
15032 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
15033 "type coarrays at %L are unsupported", &sym->declared_at);
15034 return;
15035 }
15036
15037 if (sym->attr.artificial)
15038 return;
15039
15040 if (sym->attr.unlimited_polymorphic)
15041 return;
15042
15043 if (sym->attr.flavor == FL_UNKNOWN
15044 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
15045 && !sym->attr.generic && !sym->attr.external
15046 && sym->attr.if_source == IFSRC_UNKNOWN
15047 && sym->ts.type == BT_UNKNOWN))
15048 {
15049
15050 /* If we find that a flavorless symbol is an interface in one of the
15051 parent namespaces, find its symtree in this namespace, free the
15052 symbol and set the symtree to point to the interface symbol. */
15053 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
15054 {
15055 symtree = gfc_find_symtree (ns->sym_root, sym->name);
15056 if (symtree && (symtree->n.sym->generic ||
15057 (symtree->n.sym->attr.flavor == FL_PROCEDURE
15058 && sym->ns->construct_entities)))
15059 {
15060 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
15061 sym->name);
15062 if (this_symtree->n.sym == sym)
15063 {
15064 symtree->n.sym->refs++;
15065 gfc_release_symbol (sym);
15066 this_symtree->n.sym = symtree->n.sym;
15067 return;
15068 }
15069 }
15070 }
15071
15072 /* Otherwise give it a flavor according to such attributes as
15073 it has. */
15074 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
15075 && sym->attr.intrinsic == 0)
15076 sym->attr.flavor = FL_VARIABLE;
15077 else if (sym->attr.flavor == FL_UNKNOWN)
15078 {
15079 sym->attr.flavor = FL_PROCEDURE;
15080 if (sym->attr.dimension)
15081 sym->attr.function = 1;
15082 }
15083 }
15084
15085 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
15086 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
15087
15088 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
15089 && !resolve_procedure_interface (sym))
15090 return;
15091
15092 if (sym->attr.is_protected && !sym->attr.proc_pointer
15093 && (sym->attr.procedure || sym->attr.external))
15094 {
15095 if (sym->attr.external)
15096 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
15097 "at %L", &sym->declared_at);
15098 else
15099 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
15100 "at %L", &sym->declared_at);
15101
15102 return;
15103 }
15104
15105 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
15106 return;
15107
15108 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
15109 && !resolve_fl_struct (sym))
15110 return;
15111
15112 /* Symbols that are module procedures with results (functions) have
15113 the types and array specification copied for type checking in
15114 procedures that call them, as well as for saving to a module
15115 file. These symbols can't stand the scrutiny that their results
15116 can. */
15117 mp_flag = (sym->result != NULL && sym->result != sym);
15118
15119 /* Make sure that the intrinsic is consistent with its internal
15120 representation. This needs to be done before assigning a default
15121 type to avoid spurious warnings. */
15122 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
15123 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
15124 return;
15125
15126 /* Resolve associate names. */
15127 if (sym->assoc)
15128 resolve_assoc_var (sym, true);
15129
15130 /* Assign default type to symbols that need one and don't have one. */
15131 if (sym->ts.type == BT_UNKNOWN)
15132 {
15133 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
15134 {
15135 gfc_set_default_type (sym, 1, NULL);
15136 }
15137
15138 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
15139 && !sym->attr.function && !sym->attr.subroutine
15140 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
15141 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
15142
15143 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15144 {
15145 /* The specific case of an external procedure should emit an error
15146 in the case that there is no implicit type. */
15147 if (!mp_flag)
15148 {
15149 if (!sym->attr.mixed_entry_master)
15150 gfc_set_default_type (sym, sym->attr.external, NULL);
15151 }
15152 else
15153 {
15154 /* Result may be in another namespace. */
15155 resolve_symbol (sym->result);
15156
15157 if (!sym->result->attr.proc_pointer)
15158 {
15159 sym->ts = sym->result->ts;
15160 sym->as = gfc_copy_array_spec (sym->result->as);
15161 sym->attr.dimension = sym->result->attr.dimension;
15162 sym->attr.pointer = sym->result->attr.pointer;
15163 sym->attr.allocatable = sym->result->attr.allocatable;
15164 sym->attr.contiguous = sym->result->attr.contiguous;
15165 }
15166 }
15167 }
15168 }
15169 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15170 {
15171 bool saved_specification_expr = specification_expr;
15172 specification_expr = true;
15173 gfc_resolve_array_spec (sym->result->as, false);
15174 specification_expr = saved_specification_expr;
15175 }
15176
15177 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
15178 {
15179 as = CLASS_DATA (sym)->as;
15180 class_attr = CLASS_DATA (sym)->attr;
15181 class_attr.pointer = class_attr.class_pointer;
15182 }
15183 else
15184 {
15185 class_attr = sym->attr;
15186 as = sym->as;
15187 }
15188
15189 /* F2008, C530. */
15190 if (sym->attr.contiguous
15191 && (!class_attr.dimension
15192 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
15193 && !class_attr.pointer)))
15194 {
15195 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
15196 "array pointer or an assumed-shape or assumed-rank array",
15197 sym->name, &sym->declared_at);
15198 return;
15199 }
15200
15201 /* Assumed size arrays and assumed shape arrays must be dummy
15202 arguments. Array-spec's of implied-shape should have been resolved to
15203 AS_EXPLICIT already. */
15204
15205 if (as)
15206 {
15207 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
15208 specification expression. */
15209 if (as->type == AS_IMPLIED_SHAPE)
15210 {
15211 int i;
15212 for (i=0; i<as->rank; i++)
15213 {
15214 if (as->lower[i] != NULL && as->upper[i] == NULL)
15215 {
15216 gfc_error ("Bad specification for assumed size array at %L",
15217 &as->lower[i]->where);
15218 return;
15219 }
15220 }
15221 gcc_unreachable();
15222 }
15223
15224 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
15225 || as->type == AS_ASSUMED_SHAPE)
15226 && !sym->attr.dummy && !sym->attr.select_type_temporary)
15227 {
15228 if (as->type == AS_ASSUMED_SIZE)
15229 gfc_error ("Assumed size array at %L must be a dummy argument",
15230 &sym->declared_at);
15231 else
15232 gfc_error ("Assumed shape array at %L must be a dummy argument",
15233 &sym->declared_at);
15234 return;
15235 }
15236 /* TS 29113, C535a. */
15237 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
15238 && !sym->attr.select_type_temporary
15239 && !(cs_base && cs_base->current
15240 && cs_base->current->op == EXEC_SELECT_RANK))
15241 {
15242 gfc_error ("Assumed-rank array at %L must be a dummy argument",
15243 &sym->declared_at);
15244 return;
15245 }
15246 if (as->type == AS_ASSUMED_RANK
15247 && (sym->attr.codimension || sym->attr.value))
15248 {
15249 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
15250 "CODIMENSION attribute", &sym->declared_at);
15251 return;
15252 }
15253 }
15254
15255 /* Make sure symbols with known intent or optional are really dummy
15256 variable. Because of ENTRY statement, this has to be deferred
15257 until resolution time. */
15258
15259 if (!sym->attr.dummy
15260 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
15261 {
15262 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
15263 return;
15264 }
15265
15266 if (sym->attr.value && !sym->attr.dummy)
15267 {
15268 gfc_error ("%qs at %L cannot have the VALUE attribute because "
15269 "it is not a dummy argument", sym->name, &sym->declared_at);
15270 return;
15271 }
15272
15273 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
15274 {
15275 gfc_charlen *cl = sym->ts.u.cl;
15276 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
15277 {
15278 gfc_error ("Character dummy variable %qs at %L with VALUE "
15279 "attribute must have constant length",
15280 sym->name, &sym->declared_at);
15281 return;
15282 }
15283
15284 if (sym->ts.is_c_interop
15285 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
15286 {
15287 gfc_error ("C interoperable character dummy variable %qs at %L "
15288 "with VALUE attribute must have length one",
15289 sym->name, &sym->declared_at);
15290 return;
15291 }
15292 }
15293
15294 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15295 && sym->ts.u.derived->attr.generic)
15296 {
15297 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
15298 if (!sym->ts.u.derived)
15299 {
15300 gfc_error ("The derived type %qs at %L is of type %qs, "
15301 "which has not been defined", sym->name,
15302 &sym->declared_at, sym->ts.u.derived->name);
15303 sym->ts.type = BT_UNKNOWN;
15304 return;
15305 }
15306 }
15307
15308 /* Use the same constraints as TYPE(*), except for the type check
15309 and that only scalars and assumed-size arrays are permitted. */
15310 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
15311 {
15312 if (!sym->attr.dummy)
15313 {
15314 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15315 "a dummy argument", sym->name, &sym->declared_at);
15316 return;
15317 }
15318
15319 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
15320 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
15321 && sym->ts.type != BT_COMPLEX)
15322 {
15323 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15324 "of type TYPE(*) or of an numeric intrinsic type",
15325 sym->name, &sym->declared_at);
15326 return;
15327 }
15328
15329 if (sym->attr.allocatable || sym->attr.codimension
15330 || sym->attr.pointer || sym->attr.value)
15331 {
15332 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15333 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
15334 "attribute", sym->name, &sym->declared_at);
15335 return;
15336 }
15337
15338 if (sym->attr.intent == INTENT_OUT)
15339 {
15340 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15341 "have the INTENT(OUT) attribute",
15342 sym->name, &sym->declared_at);
15343 return;
15344 }
15345 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
15346 {
15347 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
15348 "either be a scalar or an assumed-size array",
15349 sym->name, &sym->declared_at);
15350 return;
15351 }
15352
15353 /* Set the type to TYPE(*) and add a dimension(*) to ensure
15354 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
15355 packing. */
15356 sym->ts.type = BT_ASSUMED;
15357 sym->as = gfc_get_array_spec ();
15358 sym->as->type = AS_ASSUMED_SIZE;
15359 sym->as->rank = 1;
15360 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
15361 }
15362 else if (sym->ts.type == BT_ASSUMED)
15363 {
15364 /* TS 29113, C407a. */
15365 if (!sym->attr.dummy)
15366 {
15367 gfc_error ("Assumed type of variable %s at %L is only permitted "
15368 "for dummy variables", sym->name, &sym->declared_at);
15369 return;
15370 }
15371 if (sym->attr.allocatable || sym->attr.codimension
15372 || sym->attr.pointer || sym->attr.value)
15373 {
15374 gfc_error ("Assumed-type variable %s at %L may not have the "
15375 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
15376 sym->name, &sym->declared_at);
15377 return;
15378 }
15379 if (sym->attr.intent == INTENT_OUT)
15380 {
15381 gfc_error ("Assumed-type variable %s at %L may not have the "
15382 "INTENT(OUT) attribute",
15383 sym->name, &sym->declared_at);
15384 return;
15385 }
15386 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
15387 {
15388 gfc_error ("Assumed-type variable %s at %L shall not be an "
15389 "explicit-shape array", sym->name, &sym->declared_at);
15390 return;
15391 }
15392 }
15393
15394 /* If the symbol is marked as bind(c), that it is declared at module level
15395 scope and verify its type and kind. Do not do the latter for symbols
15396 that are implicitly typed because that is handled in
15397 gfc_set_default_type. Handle dummy arguments and procedure definitions
15398 separately. Also, anything that is use associated is not handled here
15399 but instead is handled in the module it is declared in. Finally, derived
15400 type definitions are allowed to be BIND(C) since that only implies that
15401 they're interoperable, and they are checked fully for interoperability
15402 when a variable is declared of that type. */
15403 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
15404 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
15405 && sym->attr.flavor != FL_DERIVED)
15406 {
15407 bool t = true;
15408
15409 /* First, make sure the variable is declared at the
15410 module-level scope (J3/04-007, Section 15.3). */
15411 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
15412 sym->attr.in_common == 0)
15413 {
15414 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
15415 "is neither a COMMON block nor declared at the "
15416 "module level scope", sym->name, &(sym->declared_at));
15417 t = false;
15418 }
15419 else if (sym->ts.type == BT_CHARACTER
15420 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
15421 || !gfc_is_constant_expr (sym->ts.u.cl->length)
15422 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
15423 {
15424 gfc_error ("BIND(C) Variable %qs at %L must have length one",
15425 sym->name, &sym->declared_at);
15426 t = false;
15427 }
15428 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
15429 {
15430 t = verify_com_block_vars_c_interop (sym->common_head);
15431 }
15432 else if (sym->attr.implicit_type == 0)
15433 {
15434 /* If type() declaration, we need to verify that the components
15435 of the given type are all C interoperable, etc. */
15436 if (sym->ts.type == BT_DERIVED &&
15437 sym->ts.u.derived->attr.is_c_interop != 1)
15438 {
15439 /* Make sure the user marked the derived type as BIND(C). If
15440 not, call the verify routine. This could print an error
15441 for the derived type more than once if multiple variables
15442 of that type are declared. */
15443 if (sym->ts.u.derived->attr.is_bind_c != 1)
15444 verify_bind_c_derived_type (sym->ts.u.derived);
15445 t = false;
15446 }
15447
15448 /* Verify the variable itself as C interoperable if it
15449 is BIND(C). It is not possible for this to succeed if
15450 the verify_bind_c_derived_type failed, so don't have to handle
15451 any error returned by verify_bind_c_derived_type. */
15452 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
15453 sym->common_block);
15454 }
15455
15456 if (!t)
15457 {
15458 /* clear the is_bind_c flag to prevent reporting errors more than
15459 once if something failed. */
15460 sym->attr.is_bind_c = 0;
15461 return;
15462 }
15463 }
15464
15465 /* If a derived type symbol has reached this point, without its
15466 type being declared, we have an error. Notice that most
15467 conditions that produce undefined derived types have already
15468 been dealt with. However, the likes of:
15469 implicit type(t) (t) ..... call foo (t) will get us here if
15470 the type is not declared in the scope of the implicit
15471 statement. Change the type to BT_UNKNOWN, both because it is so
15472 and to prevent an ICE. */
15473 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15474 && sym->ts.u.derived->components == NULL
15475 && !sym->ts.u.derived->attr.zero_comp)
15476 {
15477 gfc_error ("The derived type %qs at %L is of type %qs, "
15478 "which has not been defined", sym->name,
15479 &sym->declared_at, sym->ts.u.derived->name);
15480 sym->ts.type = BT_UNKNOWN;
15481 return;
15482 }
15483
15484 /* Make sure that the derived type has been resolved and that the
15485 derived type is visible in the symbol's namespace, if it is a
15486 module function and is not PRIVATE. */
15487 if (sym->ts.type == BT_DERIVED
15488 && sym->ts.u.derived->attr.use_assoc
15489 && sym->ns->proc_name
15490 && sym->ns->proc_name->attr.flavor == FL_MODULE
15491 && !resolve_fl_derived (sym->ts.u.derived))
15492 return;
15493
15494 /* Unless the derived-type declaration is use associated, Fortran 95
15495 does not allow public entries of private derived types.
15496 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
15497 161 in 95-006r3. */
15498 if (sym->ts.type == BT_DERIVED
15499 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
15500 && !sym->ts.u.derived->attr.use_assoc
15501 && gfc_check_symbol_access (sym)
15502 && !gfc_check_symbol_access (sym->ts.u.derived)
15503 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
15504 "derived type %qs",
15505 (sym->attr.flavor == FL_PARAMETER)
15506 ? "parameter" : "variable",
15507 sym->name, &sym->declared_at,
15508 sym->ts.u.derived->name))
15509 return;
15510
15511 /* F2008, C1302. */
15512 if (sym->ts.type == BT_DERIVED
15513 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15514 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
15515 || sym->ts.u.derived->attr.lock_comp)
15516 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15517 {
15518 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
15519 "type LOCK_TYPE must be a coarray", sym->name,
15520 &sym->declared_at);
15521 return;
15522 }
15523
15524 /* TS18508, C702/C703. */
15525 if (sym->ts.type == BT_DERIVED
15526 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15527 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
15528 || sym->ts.u.derived->attr.event_comp)
15529 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15530 {
15531 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
15532 "type EVENT_TYPE must be a coarray", sym->name,
15533 &sym->declared_at);
15534 return;
15535 }
15536
15537 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
15538 default initialization is defined (5.1.2.4.4). */
15539 if (sym->ts.type == BT_DERIVED
15540 && sym->attr.dummy
15541 && sym->attr.intent == INTENT_OUT
15542 && sym->as
15543 && sym->as->type == AS_ASSUMED_SIZE)
15544 {
15545 for (c = sym->ts.u.derived->components; c; c = c->next)
15546 {
15547 if (c->initializer)
15548 {
15549 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
15550 "ASSUMED SIZE and so cannot have a default initializer",
15551 sym->name, &sym->declared_at);
15552 return;
15553 }
15554 }
15555 }
15556
15557 /* F2008, C542. */
15558 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15559 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
15560 {
15561 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
15562 "INTENT(OUT)", sym->name, &sym->declared_at);
15563 return;
15564 }
15565
15566 /* TS18508. */
15567 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15568 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
15569 {
15570 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
15571 "INTENT(OUT)", sym->name, &sym->declared_at);
15572 return;
15573 }
15574
15575 /* F2008, C525. */
15576 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15577 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15578 && CLASS_DATA (sym)->attr.coarray_comp))
15579 || class_attr.codimension)
15580 && (sym->attr.result || sym->result == sym))
15581 {
15582 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15583 "a coarray component", sym->name, &sym->declared_at);
15584 return;
15585 }
15586
15587 /* F2008, C524. */
15588 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15589 && sym->ts.u.derived->ts.is_iso_c)
15590 {
15591 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15592 "shall not be a coarray", sym->name, &sym->declared_at);
15593 return;
15594 }
15595
15596 /* F2008, C525. */
15597 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15598 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15599 && CLASS_DATA (sym)->attr.coarray_comp))
15600 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15601 || class_attr.allocatable))
15602 {
15603 gfc_error ("Variable %qs at %L with coarray component shall be a "
15604 "nonpointer, nonallocatable scalar, which is not a coarray",
15605 sym->name, &sym->declared_at);
15606 return;
15607 }
15608
15609 /* F2008, C526. The function-result case was handled above. */
15610 if (class_attr.codimension
15611 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15612 || sym->attr.select_type_temporary
15613 || sym->attr.associate_var
15614 || (sym->ns->save_all && !sym->attr.automatic)
15615 || sym->ns->proc_name->attr.flavor == FL_MODULE
15616 || sym->ns->proc_name->attr.is_main_program
15617 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15618 {
15619 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15620 "nor a dummy argument", sym->name, &sym->declared_at);
15621 return;
15622 }
15623 /* F2008, C528. */
15624 else if (class_attr.codimension && !sym->attr.select_type_temporary
15625 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15626 {
15627 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15628 "deferred shape", sym->name, &sym->declared_at);
15629 return;
15630 }
15631 else if (class_attr.codimension && class_attr.allocatable && as
15632 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15633 {
15634 gfc_error ("Allocatable coarray variable %qs at %L must have "
15635 "deferred shape", sym->name, &sym->declared_at);
15636 return;
15637 }
15638
15639 /* F2008, C541. */
15640 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15641 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15642 && CLASS_DATA (sym)->attr.coarray_comp))
15643 || (class_attr.codimension && class_attr.allocatable))
15644 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15645 {
15646 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15647 "allocatable coarray or have coarray components",
15648 sym->name, &sym->declared_at);
15649 return;
15650 }
15651
15652 if (class_attr.codimension && sym->attr.dummy
15653 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15654 {
15655 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15656 "procedure %qs", sym->name, &sym->declared_at,
15657 sym->ns->proc_name->name);
15658 return;
15659 }
15660
15661 if (sym->ts.type == BT_LOGICAL
15662 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15663 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15664 && sym->ns->proc_name->attr.is_bind_c)))
15665 {
15666 int i;
15667 for (i = 0; gfc_logical_kinds[i].kind; i++)
15668 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15669 break;
15670 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15671 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15672 "%L with non-C_Bool kind in BIND(C) procedure "
15673 "%qs", sym->name, &sym->declared_at,
15674 sym->ns->proc_name->name))
15675 return;
15676 else if (!gfc_logical_kinds[i].c_bool
15677 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15678 "%qs at %L with non-C_Bool kind in "
15679 "BIND(C) procedure %qs", sym->name,
15680 &sym->declared_at,
15681 sym->attr.function ? sym->name
15682 : sym->ns->proc_name->name))
15683 return;
15684 }
15685
15686 switch (sym->attr.flavor)
15687 {
15688 case FL_VARIABLE:
15689 if (!resolve_fl_variable (sym, mp_flag))
15690 return;
15691 break;
15692
15693 case FL_PROCEDURE:
15694 if (sym->formal && !sym->formal_ns)
15695 {
15696 /* Check that none of the arguments are a namelist. */
15697 gfc_formal_arglist *formal = sym->formal;
15698
15699 for (; formal; formal = formal->next)
15700 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15701 {
15702 gfc_error ("Namelist %qs cannot be an argument to "
15703 "subroutine or function at %L",
15704 formal->sym->name, &sym->declared_at);
15705 return;
15706 }
15707 }
15708
15709 if (!resolve_fl_procedure (sym, mp_flag))
15710 return;
15711 break;
15712
15713 case FL_NAMELIST:
15714 if (!resolve_fl_namelist (sym))
15715 return;
15716 break;
15717
15718 case FL_PARAMETER:
15719 if (!resolve_fl_parameter (sym))
15720 return;
15721 break;
15722
15723 default:
15724 break;
15725 }
15726
15727 /* Resolve array specifier. Check as well some constraints
15728 on COMMON blocks. */
15729
15730 check_constant = sym->attr.in_common && !sym->attr.pointer;
15731
15732 /* Set the formal_arg_flag so that check_conflict will not throw
15733 an error for host associated variables in the specification
15734 expression for an array_valued function. */
15735 if ((sym->attr.function || sym->attr.result) && sym->as)
15736 formal_arg_flag = true;
15737
15738 saved_specification_expr = specification_expr;
15739 specification_expr = true;
15740 gfc_resolve_array_spec (sym->as, check_constant);
15741 specification_expr = saved_specification_expr;
15742
15743 formal_arg_flag = false;
15744
15745 /* Resolve formal namespaces. */
15746 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15747 && !sym->attr.contained && !sym->attr.intrinsic)
15748 gfc_resolve (sym->formal_ns);
15749
15750 /* Make sure the formal namespace is present. */
15751 if (sym->formal && !sym->formal_ns)
15752 {
15753 gfc_formal_arglist *formal = sym->formal;
15754 while (formal && !formal->sym)
15755 formal = formal->next;
15756
15757 if (formal)
15758 {
15759 sym->formal_ns = formal->sym->ns;
15760 if (sym->ns != formal->sym->ns)
15761 sym->formal_ns->refs++;
15762 }
15763 }
15764
15765 /* Check threadprivate restrictions. */
15766 if (sym->attr.threadprivate && !sym->attr.save
15767 && !(sym->ns->save_all && !sym->attr.automatic)
15768 && (!sym->attr.in_common
15769 && sym->module == NULL
15770 && (sym->ns->proc_name == NULL
15771 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15772 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15773
15774 /* Check omp declare target restrictions. */
15775 if (sym->attr.omp_declare_target
15776 && sym->attr.flavor == FL_VARIABLE
15777 && !sym->attr.save
15778 && !(sym->ns->save_all && !sym->attr.automatic)
15779 && (!sym->attr.in_common
15780 && sym->module == NULL
15781 && (sym->ns->proc_name == NULL
15782 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15783 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15784 sym->name, &sym->declared_at);
15785
15786 /* If we have come this far we can apply default-initializers, as
15787 described in 14.7.5, to those variables that have not already
15788 been assigned one. */
15789 if (sym->ts.type == BT_DERIVED
15790 && !sym->value
15791 && !sym->attr.allocatable
15792 && !sym->attr.alloc_comp)
15793 {
15794 symbol_attribute *a = &sym->attr;
15795
15796 if ((!a->save && !a->dummy && !a->pointer
15797 && !a->in_common && !a->use_assoc
15798 && a->referenced
15799 && !((a->function || a->result)
15800 && (!a->dimension
15801 || sym->ts.u.derived->attr.alloc_comp
15802 || sym->ts.u.derived->attr.pointer_comp))
15803 && !(a->function && sym != sym->result))
15804 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15805 apply_default_init (sym);
15806 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15807 && (sym->ts.u.derived->attr.alloc_comp
15808 || sym->ts.u.derived->attr.pointer_comp))
15809 /* Mark the result symbol to be referenced, when it has allocatable
15810 components. */
15811 sym->result->attr.referenced = 1;
15812 }
15813
15814 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15815 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15816 && !CLASS_DATA (sym)->attr.class_pointer
15817 && !CLASS_DATA (sym)->attr.allocatable)
15818 apply_default_init (sym);
15819
15820 /* If this symbol has a type-spec, check it. */
15821 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15822 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15823 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15824 return;
15825
15826 if (sym->param_list)
15827 resolve_pdt (sym);
15828 }
15829
15830
15831 /************* Resolve DATA statements *************/
15832
15833 static struct
15834 {
15835 gfc_data_value *vnode;
15836 mpz_t left;
15837 }
15838 values;
15839
15840
15841 /* Advance the values structure to point to the next value in the data list. */
15842
15843 static bool
15844 next_data_value (void)
15845 {
15846 while (mpz_cmp_ui (values.left, 0) == 0)
15847 {
15848
15849 if (values.vnode->next == NULL)
15850 return false;
15851
15852 values.vnode = values.vnode->next;
15853 mpz_set (values.left, values.vnode->repeat);
15854 }
15855
15856 return true;
15857 }
15858
15859
15860 static bool
15861 check_data_variable (gfc_data_variable *var, locus *where)
15862 {
15863 gfc_expr *e;
15864 mpz_t size;
15865 mpz_t offset;
15866 bool t;
15867 ar_type mark = AR_UNKNOWN;
15868 int i;
15869 mpz_t section_index[GFC_MAX_DIMENSIONS];
15870 gfc_ref *ref;
15871 gfc_array_ref *ar;
15872 gfc_symbol *sym;
15873 int has_pointer;
15874
15875 if (!gfc_resolve_expr (var->expr))
15876 return false;
15877
15878 ar = NULL;
15879 mpz_init_set_si (offset, 0);
15880 e = var->expr;
15881
15882 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
15883 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
15884 e = e->value.function.actual->expr;
15885
15886 if (e->expr_type != EXPR_VARIABLE)
15887 {
15888 gfc_error ("Expecting definable entity near %L", where);
15889 return false;
15890 }
15891
15892 sym = e->symtree->n.sym;
15893
15894 if (sym->ns->is_block_data && !sym->attr.in_common)
15895 {
15896 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15897 sym->name, &sym->declared_at);
15898 return false;
15899 }
15900
15901 if (e->ref == NULL && sym->as)
15902 {
15903 gfc_error ("DATA array %qs at %L must be specified in a previous"
15904 " declaration", sym->name, where);
15905 return false;
15906 }
15907
15908 if (gfc_is_coindexed (e))
15909 {
15910 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
15911 where);
15912 return false;
15913 }
15914
15915 has_pointer = sym->attr.pointer;
15916
15917 for (ref = e->ref; ref; ref = ref->next)
15918 {
15919 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
15920 has_pointer = 1;
15921
15922 if (has_pointer)
15923 {
15924 if (ref->type == REF_ARRAY && ref->u.ar.type != AR_FULL)
15925 {
15926 gfc_error ("DATA element %qs at %L is a pointer and so must "
15927 "be a full array", sym->name, where);
15928 return false;
15929 }
15930
15931 if (values.vnode->expr->expr_type == EXPR_CONSTANT)
15932 {
15933 gfc_error ("DATA object near %L has the pointer attribute "
15934 "and the corresponding DATA value is not a valid "
15935 "initial-data-target", where);
15936 return false;
15937 }
15938 }
15939 }
15940
15941 if (e->rank == 0 || has_pointer)
15942 {
15943 mpz_init_set_ui (size, 1);
15944 ref = NULL;
15945 }
15946 else
15947 {
15948 ref = e->ref;
15949
15950 /* Find the array section reference. */
15951 for (ref = e->ref; ref; ref = ref->next)
15952 {
15953 if (ref->type != REF_ARRAY)
15954 continue;
15955 if (ref->u.ar.type == AR_ELEMENT)
15956 continue;
15957 break;
15958 }
15959 gcc_assert (ref);
15960
15961 /* Set marks according to the reference pattern. */
15962 switch (ref->u.ar.type)
15963 {
15964 case AR_FULL:
15965 mark = AR_FULL;
15966 break;
15967
15968 case AR_SECTION:
15969 ar = &ref->u.ar;
15970 /* Get the start position of array section. */
15971 gfc_get_section_index (ar, section_index, &offset);
15972 mark = AR_SECTION;
15973 break;
15974
15975 default:
15976 gcc_unreachable ();
15977 }
15978
15979 if (!gfc_array_size (e, &size))
15980 {
15981 gfc_error ("Nonconstant array section at %L in DATA statement",
15982 where);
15983 mpz_clear (offset);
15984 return false;
15985 }
15986 }
15987
15988 t = true;
15989
15990 while (mpz_cmp_ui (size, 0) > 0)
15991 {
15992 if (!next_data_value ())
15993 {
15994 gfc_error ("DATA statement at %L has more variables than values",
15995 where);
15996 t = false;
15997 break;
15998 }
15999
16000 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
16001 if (!t)
16002 break;
16003
16004 /* If we have more than one element left in the repeat count,
16005 and we have more than one element left in the target variable,
16006 then create a range assignment. */
16007 /* FIXME: Only done for full arrays for now, since array sections
16008 seem tricky. */
16009 if (mark == AR_FULL && ref && ref->next == NULL
16010 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
16011 {
16012 mpz_t range;
16013
16014 if (mpz_cmp (size, values.left) >= 0)
16015 {
16016 mpz_init_set (range, values.left);
16017 mpz_sub (size, size, values.left);
16018 mpz_set_ui (values.left, 0);
16019 }
16020 else
16021 {
16022 mpz_init_set (range, size);
16023 mpz_sub (values.left, values.left, size);
16024 mpz_set_ui (size, 0);
16025 }
16026
16027 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16028 offset, &range);
16029
16030 mpz_add (offset, offset, range);
16031 mpz_clear (range);
16032
16033 if (!t)
16034 break;
16035 }
16036
16037 /* Assign initial value to symbol. */
16038 else
16039 {
16040 mpz_sub_ui (values.left, values.left, 1);
16041 mpz_sub_ui (size, size, 1);
16042
16043 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16044 offset, NULL);
16045 if (!t)
16046 break;
16047
16048 if (mark == AR_FULL)
16049 mpz_add_ui (offset, offset, 1);
16050
16051 /* Modify the array section indexes and recalculate the offset
16052 for next element. */
16053 else if (mark == AR_SECTION)
16054 gfc_advance_section (section_index, ar, &offset);
16055 }
16056 }
16057
16058 if (mark == AR_SECTION)
16059 {
16060 for (i = 0; i < ar->dimen; i++)
16061 mpz_clear (section_index[i]);
16062 }
16063
16064 mpz_clear (size);
16065 mpz_clear (offset);
16066
16067 return t;
16068 }
16069
16070
16071 static bool traverse_data_var (gfc_data_variable *, locus *);
16072
16073 /* Iterate over a list of elements in a DATA statement. */
16074
16075 static bool
16076 traverse_data_list (gfc_data_variable *var, locus *where)
16077 {
16078 mpz_t trip;
16079 iterator_stack frame;
16080 gfc_expr *e, *start, *end, *step;
16081 bool retval = true;
16082
16083 mpz_init (frame.value);
16084 mpz_init (trip);
16085
16086 start = gfc_copy_expr (var->iter.start);
16087 end = gfc_copy_expr (var->iter.end);
16088 step = gfc_copy_expr (var->iter.step);
16089
16090 if (!gfc_simplify_expr (start, 1)
16091 || start->expr_type != EXPR_CONSTANT)
16092 {
16093 gfc_error ("start of implied-do loop at %L could not be "
16094 "simplified to a constant value", &start->where);
16095 retval = false;
16096 goto cleanup;
16097 }
16098 if (!gfc_simplify_expr (end, 1)
16099 || end->expr_type != EXPR_CONSTANT)
16100 {
16101 gfc_error ("end of implied-do loop at %L could not be "
16102 "simplified to a constant value", &start->where);
16103 retval = false;
16104 goto cleanup;
16105 }
16106 if (!gfc_simplify_expr (step, 1)
16107 || step->expr_type != EXPR_CONSTANT)
16108 {
16109 gfc_error ("step of implied-do loop at %L could not be "
16110 "simplified to a constant value", &start->where);
16111 retval = false;
16112 goto cleanup;
16113 }
16114
16115 mpz_set (trip, end->value.integer);
16116 mpz_sub (trip, trip, start->value.integer);
16117 mpz_add (trip, trip, step->value.integer);
16118
16119 mpz_div (trip, trip, step->value.integer);
16120
16121 mpz_set (frame.value, start->value.integer);
16122
16123 frame.prev = iter_stack;
16124 frame.variable = var->iter.var->symtree;
16125 iter_stack = &frame;
16126
16127 while (mpz_cmp_ui (trip, 0) > 0)
16128 {
16129 if (!traverse_data_var (var->list, where))
16130 {
16131 retval = false;
16132 goto cleanup;
16133 }
16134
16135 e = gfc_copy_expr (var->expr);
16136 if (!gfc_simplify_expr (e, 1))
16137 {
16138 gfc_free_expr (e);
16139 retval = false;
16140 goto cleanup;
16141 }
16142
16143 mpz_add (frame.value, frame.value, step->value.integer);
16144
16145 mpz_sub_ui (trip, trip, 1);
16146 }
16147
16148 cleanup:
16149 mpz_clear (frame.value);
16150 mpz_clear (trip);
16151
16152 gfc_free_expr (start);
16153 gfc_free_expr (end);
16154 gfc_free_expr (step);
16155
16156 iter_stack = frame.prev;
16157 return retval;
16158 }
16159
16160
16161 /* Type resolve variables in the variable list of a DATA statement. */
16162
16163 static bool
16164 traverse_data_var (gfc_data_variable *var, locus *where)
16165 {
16166 bool t;
16167
16168 for (; var; var = var->next)
16169 {
16170 if (var->expr == NULL)
16171 t = traverse_data_list (var, where);
16172 else
16173 t = check_data_variable (var, where);
16174
16175 if (!t)
16176 return false;
16177 }
16178
16179 return true;
16180 }
16181
16182
16183 /* Resolve the expressions and iterators associated with a data statement.
16184 This is separate from the assignment checking because data lists should
16185 only be resolved once. */
16186
16187 static bool
16188 resolve_data_variables (gfc_data_variable *d)
16189 {
16190 for (; d; d = d->next)
16191 {
16192 if (d->list == NULL)
16193 {
16194 if (!gfc_resolve_expr (d->expr))
16195 return false;
16196 }
16197 else
16198 {
16199 if (!gfc_resolve_iterator (&d->iter, false, true))
16200 return false;
16201
16202 if (!resolve_data_variables (d->list))
16203 return false;
16204 }
16205 }
16206
16207 return true;
16208 }
16209
16210
16211 /* Resolve a single DATA statement. We implement this by storing a pointer to
16212 the value list into static variables, and then recursively traversing the
16213 variables list, expanding iterators and such. */
16214
16215 static void
16216 resolve_data (gfc_data *d)
16217 {
16218
16219 if (!resolve_data_variables (d->var))
16220 return;
16221
16222 values.vnode = d->value;
16223 if (d->value == NULL)
16224 mpz_set_ui (values.left, 0);
16225 else
16226 mpz_set (values.left, d->value->repeat);
16227
16228 if (!traverse_data_var (d->var, &d->where))
16229 return;
16230
16231 /* At this point, we better not have any values left. */
16232
16233 if (next_data_value ())
16234 gfc_error ("DATA statement at %L has more values than variables",
16235 &d->where);
16236 }
16237
16238
16239 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
16240 accessed by host or use association, is a dummy argument to a pure function,
16241 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
16242 is storage associated with any such variable, shall not be used in the
16243 following contexts: (clients of this function). */
16244
16245 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
16246 procedure. Returns zero if assignment is OK, nonzero if there is a
16247 problem. */
16248 int
16249 gfc_impure_variable (gfc_symbol *sym)
16250 {
16251 gfc_symbol *proc;
16252 gfc_namespace *ns;
16253
16254 if (sym->attr.use_assoc || sym->attr.in_common)
16255 return 1;
16256
16257 /* Check if the symbol's ns is inside the pure procedure. */
16258 for (ns = gfc_current_ns; ns; ns = ns->parent)
16259 {
16260 if (ns == sym->ns)
16261 break;
16262 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
16263 return 1;
16264 }
16265
16266 proc = sym->ns->proc_name;
16267 if (sym->attr.dummy
16268 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
16269 || proc->attr.function))
16270 return 1;
16271
16272 /* TODO: Sort out what can be storage associated, if anything, and include
16273 it here. In principle equivalences should be scanned but it does not
16274 seem to be possible to storage associate an impure variable this way. */
16275 return 0;
16276 }
16277
16278
16279 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
16280 current namespace is inside a pure procedure. */
16281
16282 int
16283 gfc_pure (gfc_symbol *sym)
16284 {
16285 symbol_attribute attr;
16286 gfc_namespace *ns;
16287
16288 if (sym == NULL)
16289 {
16290 /* Check if the current namespace or one of its parents
16291 belongs to a pure procedure. */
16292 for (ns = gfc_current_ns; ns; ns = ns->parent)
16293 {
16294 sym = ns->proc_name;
16295 if (sym == NULL)
16296 return 0;
16297 attr = sym->attr;
16298 if (attr.flavor == FL_PROCEDURE && attr.pure)
16299 return 1;
16300 }
16301 return 0;
16302 }
16303
16304 attr = sym->attr;
16305
16306 return attr.flavor == FL_PROCEDURE && attr.pure;
16307 }
16308
16309
16310 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
16311 checks if the current namespace is implicitly pure. Note that this
16312 function returns false for a PURE procedure. */
16313
16314 int
16315 gfc_implicit_pure (gfc_symbol *sym)
16316 {
16317 gfc_namespace *ns;
16318
16319 if (sym == NULL)
16320 {
16321 /* Check if the current procedure is implicit_pure. Walk up
16322 the procedure list until we find a procedure. */
16323 for (ns = gfc_current_ns; ns; ns = ns->parent)
16324 {
16325 sym = ns->proc_name;
16326 if (sym == NULL)
16327 return 0;
16328
16329 if (sym->attr.flavor == FL_PROCEDURE)
16330 break;
16331 }
16332 }
16333
16334 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
16335 && !sym->attr.pure;
16336 }
16337
16338
16339 void
16340 gfc_unset_implicit_pure (gfc_symbol *sym)
16341 {
16342 gfc_namespace *ns;
16343
16344 if (sym == NULL)
16345 {
16346 /* Check if the current procedure is implicit_pure. Walk up
16347 the procedure list until we find a procedure. */
16348 for (ns = gfc_current_ns; ns; ns = ns->parent)
16349 {
16350 sym = ns->proc_name;
16351 if (sym == NULL)
16352 return;
16353
16354 if (sym->attr.flavor == FL_PROCEDURE)
16355 break;
16356 }
16357 }
16358
16359 if (sym->attr.flavor == FL_PROCEDURE)
16360 sym->attr.implicit_pure = 0;
16361 else
16362 sym->attr.pure = 0;
16363 }
16364
16365
16366 /* Test whether the current procedure is elemental or not. */
16367
16368 int
16369 gfc_elemental (gfc_symbol *sym)
16370 {
16371 symbol_attribute attr;
16372
16373 if (sym == NULL)
16374 sym = gfc_current_ns->proc_name;
16375 if (sym == NULL)
16376 return 0;
16377 attr = sym->attr;
16378
16379 return attr.flavor == FL_PROCEDURE && attr.elemental;
16380 }
16381
16382
16383 /* Warn about unused labels. */
16384
16385 static void
16386 warn_unused_fortran_label (gfc_st_label *label)
16387 {
16388 if (label == NULL)
16389 return;
16390
16391 warn_unused_fortran_label (label->left);
16392
16393 if (label->defined == ST_LABEL_UNKNOWN)
16394 return;
16395
16396 switch (label->referenced)
16397 {
16398 case ST_LABEL_UNKNOWN:
16399 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
16400 label->value, &label->where);
16401 break;
16402
16403 case ST_LABEL_BAD_TARGET:
16404 gfc_warning (OPT_Wunused_label,
16405 "Label %d at %L defined but cannot be used",
16406 label->value, &label->where);
16407 break;
16408
16409 default:
16410 break;
16411 }
16412
16413 warn_unused_fortran_label (label->right);
16414 }
16415
16416
16417 /* Returns the sequence type of a symbol or sequence. */
16418
16419 static seq_type
16420 sequence_type (gfc_typespec ts)
16421 {
16422 seq_type result;
16423 gfc_component *c;
16424
16425 switch (ts.type)
16426 {
16427 case BT_DERIVED:
16428
16429 if (ts.u.derived->components == NULL)
16430 return SEQ_NONDEFAULT;
16431
16432 result = sequence_type (ts.u.derived->components->ts);
16433 for (c = ts.u.derived->components->next; c; c = c->next)
16434 if (sequence_type (c->ts) != result)
16435 return SEQ_MIXED;
16436
16437 return result;
16438
16439 case BT_CHARACTER:
16440 if (ts.kind != gfc_default_character_kind)
16441 return SEQ_NONDEFAULT;
16442
16443 return SEQ_CHARACTER;
16444
16445 case BT_INTEGER:
16446 if (ts.kind != gfc_default_integer_kind)
16447 return SEQ_NONDEFAULT;
16448
16449 return SEQ_NUMERIC;
16450
16451 case BT_REAL:
16452 if (!(ts.kind == gfc_default_real_kind
16453 || ts.kind == gfc_default_double_kind))
16454 return SEQ_NONDEFAULT;
16455
16456 return SEQ_NUMERIC;
16457
16458 case BT_COMPLEX:
16459 if (ts.kind != gfc_default_complex_kind)
16460 return SEQ_NONDEFAULT;
16461
16462 return SEQ_NUMERIC;
16463
16464 case BT_LOGICAL:
16465 if (ts.kind != gfc_default_logical_kind)
16466 return SEQ_NONDEFAULT;
16467
16468 return SEQ_NUMERIC;
16469
16470 default:
16471 return SEQ_NONDEFAULT;
16472 }
16473 }
16474
16475
16476 /* Resolve derived type EQUIVALENCE object. */
16477
16478 static bool
16479 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
16480 {
16481 gfc_component *c = derived->components;
16482
16483 if (!derived)
16484 return true;
16485
16486 /* Shall not be an object of nonsequence derived type. */
16487 if (!derived->attr.sequence)
16488 {
16489 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
16490 "attribute to be an EQUIVALENCE object", sym->name,
16491 &e->where);
16492 return false;
16493 }
16494
16495 /* Shall not have allocatable components. */
16496 if (derived->attr.alloc_comp)
16497 {
16498 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
16499 "components to be an EQUIVALENCE object",sym->name,
16500 &e->where);
16501 return false;
16502 }
16503
16504 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
16505 {
16506 gfc_error ("Derived type variable %qs at %L with default "
16507 "initialization cannot be in EQUIVALENCE with a variable "
16508 "in COMMON", sym->name, &e->where);
16509 return false;
16510 }
16511
16512 for (; c ; c = c->next)
16513 {
16514 if (gfc_bt_struct (c->ts.type)
16515 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
16516 return false;
16517
16518 /* Shall not be an object of sequence derived type containing a pointer
16519 in the structure. */
16520 if (c->attr.pointer)
16521 {
16522 gfc_error ("Derived type variable %qs at %L with pointer "
16523 "component(s) cannot be an EQUIVALENCE object",
16524 sym->name, &e->where);
16525 return false;
16526 }
16527 }
16528 return true;
16529 }
16530
16531
16532 /* Resolve equivalence object.
16533 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
16534 an allocatable array, an object of nonsequence derived type, an object of
16535 sequence derived type containing a pointer at any level of component
16536 selection, an automatic object, a function name, an entry name, a result
16537 name, a named constant, a structure component, or a subobject of any of
16538 the preceding objects. A substring shall not have length zero. A
16539 derived type shall not have components with default initialization nor
16540 shall two objects of an equivalence group be initialized.
16541 Either all or none of the objects shall have an protected attribute.
16542 The simple constraints are done in symbol.c(check_conflict) and the rest
16543 are implemented here. */
16544
16545 static void
16546 resolve_equivalence (gfc_equiv *eq)
16547 {
16548 gfc_symbol *sym;
16549 gfc_symbol *first_sym;
16550 gfc_expr *e;
16551 gfc_ref *r;
16552 locus *last_where = NULL;
16553 seq_type eq_type, last_eq_type;
16554 gfc_typespec *last_ts;
16555 int object, cnt_protected;
16556 const char *msg;
16557
16558 last_ts = &eq->expr->symtree->n.sym->ts;
16559
16560 first_sym = eq->expr->symtree->n.sym;
16561
16562 cnt_protected = 0;
16563
16564 for (object = 1; eq; eq = eq->eq, object++)
16565 {
16566 e = eq->expr;
16567
16568 e->ts = e->symtree->n.sym->ts;
16569 /* match_varspec might not know yet if it is seeing
16570 array reference or substring reference, as it doesn't
16571 know the types. */
16572 if (e->ref && e->ref->type == REF_ARRAY)
16573 {
16574 gfc_ref *ref = e->ref;
16575 sym = e->symtree->n.sym;
16576
16577 if (sym->attr.dimension)
16578 {
16579 ref->u.ar.as = sym->as;
16580 ref = ref->next;
16581 }
16582
16583 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
16584 if (e->ts.type == BT_CHARACTER
16585 && ref
16586 && ref->type == REF_ARRAY
16587 && ref->u.ar.dimen == 1
16588 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
16589 && ref->u.ar.stride[0] == NULL)
16590 {
16591 gfc_expr *start = ref->u.ar.start[0];
16592 gfc_expr *end = ref->u.ar.end[0];
16593 void *mem = NULL;
16594
16595 /* Optimize away the (:) reference. */
16596 if (start == NULL && end == NULL)
16597 {
16598 if (e->ref == ref)
16599 e->ref = ref->next;
16600 else
16601 e->ref->next = ref->next;
16602 mem = ref;
16603 }
16604 else
16605 {
16606 ref->type = REF_SUBSTRING;
16607 if (start == NULL)
16608 start = gfc_get_int_expr (gfc_charlen_int_kind,
16609 NULL, 1);
16610 ref->u.ss.start = start;
16611 if (end == NULL && e->ts.u.cl)
16612 end = gfc_copy_expr (e->ts.u.cl->length);
16613 ref->u.ss.end = end;
16614 ref->u.ss.length = e->ts.u.cl;
16615 e->ts.u.cl = NULL;
16616 }
16617 ref = ref->next;
16618 free (mem);
16619 }
16620
16621 /* Any further ref is an error. */
16622 if (ref)
16623 {
16624 gcc_assert (ref->type == REF_ARRAY);
16625 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16626 &ref->u.ar.where);
16627 continue;
16628 }
16629 }
16630
16631 if (!gfc_resolve_expr (e))
16632 continue;
16633
16634 sym = e->symtree->n.sym;
16635
16636 if (sym->attr.is_protected)
16637 cnt_protected++;
16638 if (cnt_protected > 0 && cnt_protected != object)
16639 {
16640 gfc_error ("Either all or none of the objects in the "
16641 "EQUIVALENCE set at %L shall have the "
16642 "PROTECTED attribute",
16643 &e->where);
16644 break;
16645 }
16646
16647 /* Shall not equivalence common block variables in a PURE procedure. */
16648 if (sym->ns->proc_name
16649 && sym->ns->proc_name->attr.pure
16650 && sym->attr.in_common)
16651 {
16652 /* Need to check for symbols that may have entered the pure
16653 procedure via a USE statement. */
16654 bool saw_sym = false;
16655 if (sym->ns->use_stmts)
16656 {
16657 gfc_use_rename *r;
16658 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16659 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16660 }
16661 else
16662 saw_sym = true;
16663
16664 if (saw_sym)
16665 gfc_error ("COMMON block member %qs at %L cannot be an "
16666 "EQUIVALENCE object in the pure procedure %qs",
16667 sym->name, &e->where, sym->ns->proc_name->name);
16668 break;
16669 }
16670
16671 /* Shall not be a named constant. */
16672 if (e->expr_type == EXPR_CONSTANT)
16673 {
16674 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16675 "object", sym->name, &e->where);
16676 continue;
16677 }
16678
16679 if (e->ts.type == BT_DERIVED
16680 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16681 continue;
16682
16683 /* Check that the types correspond correctly:
16684 Note 5.28:
16685 A numeric sequence structure may be equivalenced to another sequence
16686 structure, an object of default integer type, default real type, double
16687 precision real type, default logical type such that components of the
16688 structure ultimately only become associated to objects of the same
16689 kind. A character sequence structure may be equivalenced to an object
16690 of default character kind or another character sequence structure.
16691 Other objects may be equivalenced only to objects of the same type and
16692 kind parameters. */
16693
16694 /* Identical types are unconditionally OK. */
16695 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16696 goto identical_types;
16697
16698 last_eq_type = sequence_type (*last_ts);
16699 eq_type = sequence_type (sym->ts);
16700
16701 /* Since the pair of objects is not of the same type, mixed or
16702 non-default sequences can be rejected. */
16703
16704 msg = "Sequence %s with mixed components in EQUIVALENCE "
16705 "statement at %L with different type objects";
16706 if ((object ==2
16707 && last_eq_type == SEQ_MIXED
16708 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16709 || (eq_type == SEQ_MIXED
16710 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16711 continue;
16712
16713 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16714 "statement at %L with objects of different type";
16715 if ((object ==2
16716 && last_eq_type == SEQ_NONDEFAULT
16717 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16718 || (eq_type == SEQ_NONDEFAULT
16719 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16720 continue;
16721
16722 msg ="Non-CHARACTER object %qs in default CHARACTER "
16723 "EQUIVALENCE statement at %L";
16724 if (last_eq_type == SEQ_CHARACTER
16725 && eq_type != SEQ_CHARACTER
16726 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16727 continue;
16728
16729 msg ="Non-NUMERIC object %qs in default NUMERIC "
16730 "EQUIVALENCE statement at %L";
16731 if (last_eq_type == SEQ_NUMERIC
16732 && eq_type != SEQ_NUMERIC
16733 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16734 continue;
16735
16736 identical_types:
16737 last_ts =&sym->ts;
16738 last_where = &e->where;
16739
16740 if (!e->ref)
16741 continue;
16742
16743 /* Shall not be an automatic array. */
16744 if (e->ref->type == REF_ARRAY
16745 && !gfc_resolve_array_spec (e->ref->u.ar.as, 1))
16746 {
16747 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16748 "an EQUIVALENCE object", sym->name, &e->where);
16749 continue;
16750 }
16751
16752 r = e->ref;
16753 while (r)
16754 {
16755 /* Shall not be a structure component. */
16756 if (r->type == REF_COMPONENT)
16757 {
16758 gfc_error ("Structure component %qs at %L cannot be an "
16759 "EQUIVALENCE object",
16760 r->u.c.component->name, &e->where);
16761 break;
16762 }
16763
16764 /* A substring shall not have length zero. */
16765 if (r->type == REF_SUBSTRING)
16766 {
16767 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16768 {
16769 gfc_error ("Substring at %L has length zero",
16770 &r->u.ss.start->where);
16771 break;
16772 }
16773 }
16774 r = r->next;
16775 }
16776 }
16777 }
16778
16779
16780 /* Function called by resolve_fntype to flag other symbols used in the
16781 length type parameter specification of function results. */
16782
16783 static bool
16784 flag_fn_result_spec (gfc_expr *expr,
16785 gfc_symbol *sym,
16786 int *f ATTRIBUTE_UNUSED)
16787 {
16788 gfc_namespace *ns;
16789 gfc_symbol *s;
16790
16791 if (expr->expr_type == EXPR_VARIABLE)
16792 {
16793 s = expr->symtree->n.sym;
16794 for (ns = s->ns; ns; ns = ns->parent)
16795 if (!ns->parent)
16796 break;
16797
16798 if (sym == s)
16799 {
16800 gfc_error ("Self reference in character length expression "
16801 "for %qs at %L", sym->name, &expr->where);
16802 return true;
16803 }
16804
16805 if (!s->fn_result_spec
16806 && s->attr.flavor == FL_PARAMETER)
16807 {
16808 /* Function contained in a module.... */
16809 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16810 {
16811 gfc_symtree *st;
16812 s->fn_result_spec = 1;
16813 /* Make sure that this symbol is translated as a module
16814 variable. */
16815 st = gfc_get_unique_symtree (ns);
16816 st->n.sym = s;
16817 s->refs++;
16818 }
16819 /* ... which is use associated and called. */
16820 else if (s->attr.use_assoc || s->attr.used_in_submodule
16821 ||
16822 /* External function matched with an interface. */
16823 (s->ns->proc_name
16824 && ((s->ns == ns
16825 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16826 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16827 && s->ns->proc_name->attr.function))
16828 s->fn_result_spec = 1;
16829 }
16830 }
16831 return false;
16832 }
16833
16834
16835 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16836
16837 static void
16838 resolve_fntype (gfc_namespace *ns)
16839 {
16840 gfc_entry_list *el;
16841 gfc_symbol *sym;
16842
16843 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16844 return;
16845
16846 /* If there are any entries, ns->proc_name is the entry master
16847 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16848 if (ns->entries)
16849 sym = ns->entries->sym;
16850 else
16851 sym = ns->proc_name;
16852 if (sym->result == sym
16853 && sym->ts.type == BT_UNKNOWN
16854 && !gfc_set_default_type (sym, 0, NULL)
16855 && !sym->attr.untyped)
16856 {
16857 gfc_error ("Function %qs at %L has no IMPLICIT type",
16858 sym->name, &sym->declared_at);
16859 sym->attr.untyped = 1;
16860 }
16861
16862 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
16863 && !sym->attr.contained
16864 && !gfc_check_symbol_access (sym->ts.u.derived)
16865 && gfc_check_symbol_access (sym))
16866 {
16867 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
16868 "%L of PRIVATE type %qs", sym->name,
16869 &sym->declared_at, sym->ts.u.derived->name);
16870 }
16871
16872 if (ns->entries)
16873 for (el = ns->entries->next; el; el = el->next)
16874 {
16875 if (el->sym->result == el->sym
16876 && el->sym->ts.type == BT_UNKNOWN
16877 && !gfc_set_default_type (el->sym, 0, NULL)
16878 && !el->sym->attr.untyped)
16879 {
16880 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16881 el->sym->name, &el->sym->declared_at);
16882 el->sym->attr.untyped = 1;
16883 }
16884 }
16885
16886 if (sym->ts.type == BT_CHARACTER)
16887 gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
16888 }
16889
16890
16891 /* 12.3.2.1.1 Defined operators. */
16892
16893 static bool
16894 check_uop_procedure (gfc_symbol *sym, locus where)
16895 {
16896 gfc_formal_arglist *formal;
16897
16898 if (!sym->attr.function)
16899 {
16900 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16901 sym->name, &where);
16902 return false;
16903 }
16904
16905 if (sym->ts.type == BT_CHARACTER
16906 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
16907 && !(sym->result && ((sym->result->ts.u.cl
16908 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
16909 {
16910 gfc_error ("User operator procedure %qs at %L cannot be assumed "
16911 "character length", sym->name, &where);
16912 return false;
16913 }
16914
16915 formal = gfc_sym_get_dummy_args (sym);
16916 if (!formal || !formal->sym)
16917 {
16918 gfc_error ("User operator procedure %qs at %L must have at least "
16919 "one argument", sym->name, &where);
16920 return false;
16921 }
16922
16923 if (formal->sym->attr.intent != INTENT_IN)
16924 {
16925 gfc_error ("First argument of operator interface at %L must be "
16926 "INTENT(IN)", &where);
16927 return false;
16928 }
16929
16930 if (formal->sym->attr.optional)
16931 {
16932 gfc_error ("First argument of operator interface at %L cannot be "
16933 "optional", &where);
16934 return false;
16935 }
16936
16937 formal = formal->next;
16938 if (!formal || !formal->sym)
16939 return true;
16940
16941 if (formal->sym->attr.intent != INTENT_IN)
16942 {
16943 gfc_error ("Second argument of operator interface at %L must be "
16944 "INTENT(IN)", &where);
16945 return false;
16946 }
16947
16948 if (formal->sym->attr.optional)
16949 {
16950 gfc_error ("Second argument of operator interface at %L cannot be "
16951 "optional", &where);
16952 return false;
16953 }
16954
16955 if (formal->next)
16956 {
16957 gfc_error ("Operator interface at %L must have, at most, two "
16958 "arguments", &where);
16959 return false;
16960 }
16961
16962 return true;
16963 }
16964
16965 static void
16966 gfc_resolve_uops (gfc_symtree *symtree)
16967 {
16968 gfc_interface *itr;
16969
16970 if (symtree == NULL)
16971 return;
16972
16973 gfc_resolve_uops (symtree->left);
16974 gfc_resolve_uops (symtree->right);
16975
16976 for (itr = symtree->n.uop->op; itr; itr = itr->next)
16977 check_uop_procedure (itr->sym, itr->sym->declared_at);
16978 }
16979
16980
16981 /* Examine all of the expressions associated with a program unit,
16982 assign types to all intermediate expressions, make sure that all
16983 assignments are to compatible types and figure out which names
16984 refer to which functions or subroutines. It doesn't check code
16985 block, which is handled by gfc_resolve_code. */
16986
16987 static void
16988 resolve_types (gfc_namespace *ns)
16989 {
16990 gfc_namespace *n;
16991 gfc_charlen *cl;
16992 gfc_data *d;
16993 gfc_equiv *eq;
16994 gfc_namespace* old_ns = gfc_current_ns;
16995
16996 if (ns->types_resolved)
16997 return;
16998
16999 /* Check that all IMPLICIT types are ok. */
17000 if (!ns->seen_implicit_none)
17001 {
17002 unsigned letter;
17003 for (letter = 0; letter != GFC_LETTERS; ++letter)
17004 if (ns->set_flag[letter]
17005 && !resolve_typespec_used (&ns->default_type[letter],
17006 &ns->implicit_loc[letter], NULL))
17007 return;
17008 }
17009
17010 gfc_current_ns = ns;
17011
17012 resolve_entries (ns);
17013
17014 resolve_common_vars (&ns->blank_common, false);
17015 resolve_common_blocks (ns->common_root);
17016
17017 resolve_contained_functions (ns);
17018
17019 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
17020 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
17021 resolve_formal_arglist (ns->proc_name);
17022
17023 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
17024
17025 for (cl = ns->cl_list; cl; cl = cl->next)
17026 resolve_charlen (cl);
17027
17028 gfc_traverse_ns (ns, resolve_symbol);
17029
17030 resolve_fntype (ns);
17031
17032 for (n = ns->contained; n; n = n->sibling)
17033 {
17034 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
17035 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
17036 "also be PURE", n->proc_name->name,
17037 &n->proc_name->declared_at);
17038
17039 resolve_types (n);
17040 }
17041
17042 forall_flag = 0;
17043 gfc_do_concurrent_flag = 0;
17044 gfc_check_interfaces (ns);
17045
17046 gfc_traverse_ns (ns, resolve_values);
17047
17048 if (ns->save_all || !flag_automatic)
17049 gfc_save_all (ns);
17050
17051 iter_stack = NULL;
17052 for (d = ns->data; d; d = d->next)
17053 resolve_data (d);
17054
17055 iter_stack = NULL;
17056 gfc_traverse_ns (ns, gfc_formalize_init_value);
17057
17058 gfc_traverse_ns (ns, gfc_verify_binding_labels);
17059
17060 for (eq = ns->equiv; eq; eq = eq->next)
17061 resolve_equivalence (eq);
17062
17063 /* Warn about unused labels. */
17064 if (warn_unused_label)
17065 warn_unused_fortran_label (ns->st_labels);
17066
17067 gfc_resolve_uops (ns->uop_root);
17068
17069 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
17070
17071 gfc_resolve_omp_declare_simd (ns);
17072
17073 gfc_resolve_omp_udrs (ns->omp_udr_root);
17074
17075 ns->types_resolved = 1;
17076
17077 gfc_current_ns = old_ns;
17078 }
17079
17080
17081 /* Call gfc_resolve_code recursively. */
17082
17083 static void
17084 resolve_codes (gfc_namespace *ns)
17085 {
17086 gfc_namespace *n;
17087 bitmap_obstack old_obstack;
17088
17089 if (ns->resolved == 1)
17090 return;
17091
17092 for (n = ns->contained; n; n = n->sibling)
17093 resolve_codes (n);
17094
17095 gfc_current_ns = ns;
17096
17097 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
17098 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
17099 cs_base = NULL;
17100
17101 /* Set to an out of range value. */
17102 current_entry_id = -1;
17103
17104 old_obstack = labels_obstack;
17105 bitmap_obstack_initialize (&labels_obstack);
17106
17107 gfc_resolve_oacc_declare (ns);
17108 gfc_resolve_oacc_routines (ns);
17109 gfc_resolve_omp_local_vars (ns);
17110 gfc_resolve_code (ns->code, ns);
17111
17112 bitmap_obstack_release (&labels_obstack);
17113 labels_obstack = old_obstack;
17114 }
17115
17116
17117 /* This function is called after a complete program unit has been compiled.
17118 Its purpose is to examine all of the expressions associated with a program
17119 unit, assign types to all intermediate expressions, make sure that all
17120 assignments are to compatible types and figure out which names refer to
17121 which functions or subroutines. */
17122
17123 void
17124 gfc_resolve (gfc_namespace *ns)
17125 {
17126 gfc_namespace *old_ns;
17127 code_stack *old_cs_base;
17128 struct gfc_omp_saved_state old_omp_state;
17129
17130 if (ns->resolved)
17131 return;
17132
17133 ns->resolved = -1;
17134 old_ns = gfc_current_ns;
17135 old_cs_base = cs_base;
17136
17137 /* As gfc_resolve can be called during resolution of an OpenMP construct
17138 body, we should clear any state associated to it, so that say NS's
17139 DO loops are not interpreted as OpenMP loops. */
17140 if (!ns->construct_entities)
17141 gfc_omp_save_and_clear_state (&old_omp_state);
17142
17143 resolve_types (ns);
17144 component_assignment_level = 0;
17145 resolve_codes (ns);
17146
17147 gfc_current_ns = old_ns;
17148 cs_base = old_cs_base;
17149 ns->resolved = 1;
17150
17151 gfc_run_passes (ns);
17152
17153 if (!ns->construct_entities)
17154 gfc_omp_restore_state (&old_omp_state);
17155 }