Fortran : Spurious warning message with -Wsurprising PR59107
[gcc.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2020 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 void
268 gfc_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 gfc_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 gfc_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->resolve_symbol_called >= 2)
1757 return true;
1758
1759 sym->resolve_symbol_called = 2;
1760
1761 /* Already resolved. */
1762 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1763 return true;
1764
1765 /* We already know this one is an intrinsic, so we don't call
1766 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1767 gfc_find_subroutine directly to check whether it is a function or
1768 subroutine. */
1769
1770 if (sym->intmod_sym_id && sym->attr.subroutine)
1771 {
1772 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1773 isym = gfc_intrinsic_subroutine_by_id (id);
1774 }
1775 else if (sym->intmod_sym_id)
1776 {
1777 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1778 isym = gfc_intrinsic_function_by_id (id);
1779 }
1780 else if (!sym->attr.subroutine)
1781 isym = gfc_find_function (sym->name);
1782
1783 if (isym && !sym->attr.subroutine)
1784 {
1785 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1786 && !sym->attr.implicit_type)
1787 gfc_warning (OPT_Wsurprising,
1788 "Type specified for intrinsic function %qs at %L is"
1789 " ignored", sym->name, &sym->declared_at);
1790
1791 if (!sym->attr.function &&
1792 !gfc_add_function(&sym->attr, sym->name, loc))
1793 return false;
1794
1795 sym->ts = isym->ts;
1796 }
1797 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1798 {
1799 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1800 {
1801 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1802 " specifier", sym->name, &sym->declared_at);
1803 return false;
1804 }
1805
1806 if (!sym->attr.subroutine &&
1807 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1808 return false;
1809 }
1810 else
1811 {
1812 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1813 &sym->declared_at);
1814 return false;
1815 }
1816
1817 gfc_copy_formal_args_intr (sym, isym, NULL);
1818
1819 sym->attr.pure = isym->pure;
1820 sym->attr.elemental = isym->elemental;
1821
1822 /* Check it is actually available in the standard settings. */
1823 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1824 {
1825 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1826 "available in the current standard settings but %s. Use "
1827 "an appropriate %<-std=*%> option or enable "
1828 "%<-fall-intrinsics%> in order to use it.",
1829 sym->name, &sym->declared_at, symstd);
1830 return false;
1831 }
1832
1833 return true;
1834 }
1835
1836
1837 /* Resolve a procedure expression, like passing it to a called procedure or as
1838 RHS for a procedure pointer assignment. */
1839
1840 static bool
1841 resolve_procedure_expression (gfc_expr* expr)
1842 {
1843 gfc_symbol* sym;
1844
1845 if (expr->expr_type != EXPR_VARIABLE)
1846 return true;
1847 gcc_assert (expr->symtree);
1848
1849 sym = expr->symtree->n.sym;
1850
1851 if (sym->attr.intrinsic)
1852 gfc_resolve_intrinsic (sym, &expr->where);
1853
1854 if (sym->attr.flavor != FL_PROCEDURE
1855 || (sym->attr.function && sym->result == sym))
1856 return true;
1857
1858 /* A non-RECURSIVE procedure that is used as procedure expression within its
1859 own body is in danger of being called recursively. */
1860 if (is_illegal_recursion (sym, gfc_current_ns))
1861 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1862 " itself recursively. Declare it RECURSIVE or use"
1863 " %<-frecursive%>", sym->name, &expr->where);
1864
1865 return true;
1866 }
1867
1868
1869 /* Check that name is not a derived type. */
1870
1871 static bool
1872 is_dt_name (const char *name)
1873 {
1874 gfc_symbol *dt_list, *dt_first;
1875
1876 dt_list = dt_first = gfc_derived_types;
1877 for (; dt_list; dt_list = dt_list->dt_next)
1878 {
1879 if (strcmp(dt_list->name, name) == 0)
1880 return true;
1881 if (dt_first == dt_list->dt_next)
1882 break;
1883 }
1884 return false;
1885 }
1886
1887
1888 /* Resolve an actual argument list. Most of the time, this is just
1889 resolving the expressions in the list.
1890 The exception is that we sometimes have to decide whether arguments
1891 that look like procedure arguments are really simple variable
1892 references. */
1893
1894 static bool
1895 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1896 bool no_formal_args)
1897 {
1898 gfc_symbol *sym;
1899 gfc_symtree *parent_st;
1900 gfc_expr *e;
1901 gfc_component *comp;
1902 int save_need_full_assumed_size;
1903 bool return_value = false;
1904 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1905
1906 actual_arg = true;
1907 first_actual_arg = true;
1908
1909 for (; arg; arg = arg->next)
1910 {
1911 e = arg->expr;
1912 if (e == NULL)
1913 {
1914 /* Check the label is a valid branching target. */
1915 if (arg->label)
1916 {
1917 if (arg->label->defined == ST_LABEL_UNKNOWN)
1918 {
1919 gfc_error ("Label %d referenced at %L is never defined",
1920 arg->label->value, &arg->label->where);
1921 goto cleanup;
1922 }
1923 }
1924 first_actual_arg = false;
1925 continue;
1926 }
1927
1928 if (e->expr_type == EXPR_VARIABLE
1929 && e->symtree->n.sym->attr.generic
1930 && no_formal_args
1931 && count_specific_procs (e) != 1)
1932 goto cleanup;
1933
1934 if (e->ts.type != BT_PROCEDURE)
1935 {
1936 save_need_full_assumed_size = need_full_assumed_size;
1937 if (e->expr_type != EXPR_VARIABLE)
1938 need_full_assumed_size = 0;
1939 if (!gfc_resolve_expr (e))
1940 goto cleanup;
1941 need_full_assumed_size = save_need_full_assumed_size;
1942 goto argument_list;
1943 }
1944
1945 /* See if the expression node should really be a variable reference. */
1946
1947 sym = e->symtree->n.sym;
1948
1949 if (sym->attr.flavor == FL_PROCEDURE && is_dt_name (sym->name))
1950 {
1951 gfc_error ("Derived type %qs is used as an actual "
1952 "argument at %L", sym->name, &e->where);
1953 goto cleanup;
1954 }
1955
1956 if (sym->attr.flavor == FL_PROCEDURE
1957 || sym->attr.intrinsic
1958 || sym->attr.external)
1959 {
1960 int actual_ok;
1961
1962 /* If a procedure is not already determined to be something else
1963 check if it is intrinsic. */
1964 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1965 sym->attr.intrinsic = 1;
1966
1967 if (sym->attr.proc == PROC_ST_FUNCTION)
1968 {
1969 gfc_error ("Statement function %qs at %L is not allowed as an "
1970 "actual argument", sym->name, &e->where);
1971 }
1972
1973 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1974 sym->attr.subroutine);
1975 if (sym->attr.intrinsic && actual_ok == 0)
1976 {
1977 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1978 "actual argument", sym->name, &e->where);
1979 }
1980
1981 if (sym->attr.contained && !sym->attr.use_assoc
1982 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1983 {
1984 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1985 " used as actual argument at %L",
1986 sym->name, &e->where))
1987 goto cleanup;
1988 }
1989
1990 if (sym->attr.elemental && !sym->attr.intrinsic)
1991 {
1992 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1993 "allowed as an actual argument at %L", sym->name,
1994 &e->where);
1995 }
1996
1997 /* Check if a generic interface has a specific procedure
1998 with the same name before emitting an error. */
1999 if (sym->attr.generic && count_specific_procs (e) != 1)
2000 goto cleanup;
2001
2002 /* Just in case a specific was found for the expression. */
2003 sym = e->symtree->n.sym;
2004
2005 /* If the symbol is the function that names the current (or
2006 parent) scope, then we really have a variable reference. */
2007
2008 if (gfc_is_function_return_value (sym, sym->ns))
2009 goto got_variable;
2010
2011 /* If all else fails, see if we have a specific intrinsic. */
2012 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
2013 {
2014 gfc_intrinsic_sym *isym;
2015
2016 isym = gfc_find_function (sym->name);
2017 if (isym == NULL || !isym->specific)
2018 {
2019 gfc_error ("Unable to find a specific INTRINSIC procedure "
2020 "for the reference %qs at %L", sym->name,
2021 &e->where);
2022 goto cleanup;
2023 }
2024 sym->ts = isym->ts;
2025 sym->attr.intrinsic = 1;
2026 sym->attr.function = 1;
2027 }
2028
2029 if (!gfc_resolve_expr (e))
2030 goto cleanup;
2031 goto argument_list;
2032 }
2033
2034 /* See if the name is a module procedure in a parent unit. */
2035
2036 if (was_declared (sym) || sym->ns->parent == NULL)
2037 goto got_variable;
2038
2039 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2040 {
2041 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2042 goto cleanup;
2043 }
2044
2045 if (parent_st == NULL)
2046 goto got_variable;
2047
2048 sym = parent_st->n.sym;
2049 e->symtree = parent_st; /* Point to the right thing. */
2050
2051 if (sym->attr.flavor == FL_PROCEDURE
2052 || sym->attr.intrinsic
2053 || sym->attr.external)
2054 {
2055 if (!gfc_resolve_expr (e))
2056 goto cleanup;
2057 goto argument_list;
2058 }
2059
2060 got_variable:
2061 e->expr_type = EXPR_VARIABLE;
2062 e->ts = sym->ts;
2063 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2064 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2065 && CLASS_DATA (sym)->as))
2066 {
2067 e->rank = sym->ts.type == BT_CLASS
2068 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2069 e->ref = gfc_get_ref ();
2070 e->ref->type = REF_ARRAY;
2071 e->ref->u.ar.type = AR_FULL;
2072 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2073 ? CLASS_DATA (sym)->as : sym->as;
2074 }
2075
2076 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2077 primary.c (match_actual_arg). If above code determines that it
2078 is a variable instead, it needs to be resolved as it was not
2079 done at the beginning of this function. */
2080 save_need_full_assumed_size = need_full_assumed_size;
2081 if (e->expr_type != EXPR_VARIABLE)
2082 need_full_assumed_size = 0;
2083 if (!gfc_resolve_expr (e))
2084 goto cleanup;
2085 need_full_assumed_size = save_need_full_assumed_size;
2086
2087 argument_list:
2088 /* Check argument list functions %VAL, %LOC and %REF. There is
2089 nothing to do for %REF. */
2090 if (arg->name && arg->name[0] == '%')
2091 {
2092 if (strcmp ("%VAL", arg->name) == 0)
2093 {
2094 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2095 {
2096 gfc_error ("By-value argument at %L is not of numeric "
2097 "type", &e->where);
2098 goto cleanup;
2099 }
2100
2101 if (e->rank)
2102 {
2103 gfc_error ("By-value argument at %L cannot be an array or "
2104 "an array section", &e->where);
2105 goto cleanup;
2106 }
2107
2108 /* Intrinsics are still PROC_UNKNOWN here. However,
2109 since same file external procedures are not resolvable
2110 in gfortran, it is a good deal easier to leave them to
2111 intrinsic.c. */
2112 if (ptype != PROC_UNKNOWN
2113 && ptype != PROC_DUMMY
2114 && ptype != PROC_EXTERNAL
2115 && ptype != PROC_MODULE)
2116 {
2117 gfc_error ("By-value argument at %L is not allowed "
2118 "in this context", &e->where);
2119 goto cleanup;
2120 }
2121 }
2122
2123 /* Statement functions have already been excluded above. */
2124 else if (strcmp ("%LOC", arg->name) == 0
2125 && e->ts.type == BT_PROCEDURE)
2126 {
2127 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2128 {
2129 gfc_error ("Passing internal procedure at %L by location "
2130 "not allowed", &e->where);
2131 goto cleanup;
2132 }
2133 }
2134 }
2135
2136 comp = gfc_get_proc_ptr_comp(e);
2137 if (e->expr_type == EXPR_VARIABLE
2138 && comp && comp->attr.elemental)
2139 {
2140 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2141 "allowed as an actual argument at %L", comp->name,
2142 &e->where);
2143 }
2144
2145 /* Fortran 2008, C1237. */
2146 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2147 && gfc_has_ultimate_pointer (e))
2148 {
2149 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2150 "component", &e->where);
2151 goto cleanup;
2152 }
2153
2154 first_actual_arg = false;
2155 }
2156
2157 return_value = true;
2158
2159 cleanup:
2160 actual_arg = actual_arg_sav;
2161 first_actual_arg = first_actual_arg_sav;
2162
2163 return return_value;
2164 }
2165
2166
2167 /* Do the checks of the actual argument list that are specific to elemental
2168 procedures. If called with c == NULL, we have a function, otherwise if
2169 expr == NULL, we have a subroutine. */
2170
2171 static bool
2172 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2173 {
2174 gfc_actual_arglist *arg0;
2175 gfc_actual_arglist *arg;
2176 gfc_symbol *esym = NULL;
2177 gfc_intrinsic_sym *isym = NULL;
2178 gfc_expr *e = NULL;
2179 gfc_intrinsic_arg *iformal = NULL;
2180 gfc_formal_arglist *eformal = NULL;
2181 bool formal_optional = false;
2182 bool set_by_optional = false;
2183 int i;
2184 int rank = 0;
2185
2186 /* Is this an elemental procedure? */
2187 if (expr && expr->value.function.actual != NULL)
2188 {
2189 if (expr->value.function.esym != NULL
2190 && expr->value.function.esym->attr.elemental)
2191 {
2192 arg0 = expr->value.function.actual;
2193 esym = expr->value.function.esym;
2194 }
2195 else if (expr->value.function.isym != NULL
2196 && expr->value.function.isym->elemental)
2197 {
2198 arg0 = expr->value.function.actual;
2199 isym = expr->value.function.isym;
2200 }
2201 else
2202 return true;
2203 }
2204 else if (c && c->ext.actual != NULL)
2205 {
2206 arg0 = c->ext.actual;
2207
2208 if (c->resolved_sym)
2209 esym = c->resolved_sym;
2210 else
2211 esym = c->symtree->n.sym;
2212 gcc_assert (esym);
2213
2214 if (!esym->attr.elemental)
2215 return true;
2216 }
2217 else
2218 return true;
2219
2220 /* The rank of an elemental is the rank of its array argument(s). */
2221 for (arg = arg0; arg; arg = arg->next)
2222 {
2223 if (arg->expr != NULL && arg->expr->rank != 0)
2224 {
2225 rank = arg->expr->rank;
2226 if (arg->expr->expr_type == EXPR_VARIABLE
2227 && arg->expr->symtree->n.sym->attr.optional)
2228 set_by_optional = true;
2229
2230 /* Function specific; set the result rank and shape. */
2231 if (expr)
2232 {
2233 expr->rank = rank;
2234 if (!expr->shape && arg->expr->shape)
2235 {
2236 expr->shape = gfc_get_shape (rank);
2237 for (i = 0; i < rank; i++)
2238 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2239 }
2240 }
2241 break;
2242 }
2243 }
2244
2245 /* If it is an array, it shall not be supplied as an actual argument
2246 to an elemental procedure unless an array of the same rank is supplied
2247 as an actual argument corresponding to a nonoptional dummy argument of
2248 that elemental procedure(12.4.1.5). */
2249 formal_optional = false;
2250 if (isym)
2251 iformal = isym->formal;
2252 else
2253 eformal = esym->formal;
2254
2255 for (arg = arg0; arg; arg = arg->next)
2256 {
2257 if (eformal)
2258 {
2259 if (eformal->sym && eformal->sym->attr.optional)
2260 formal_optional = true;
2261 eformal = eformal->next;
2262 }
2263 else if (isym && iformal)
2264 {
2265 if (iformal->optional)
2266 formal_optional = true;
2267 iformal = iformal->next;
2268 }
2269 else if (isym)
2270 formal_optional = true;
2271
2272 if (pedantic && arg->expr != NULL
2273 && arg->expr->expr_type == EXPR_VARIABLE
2274 && arg->expr->symtree->n.sym->attr.optional
2275 && formal_optional
2276 && arg->expr->rank
2277 && (set_by_optional || arg->expr->rank != rank)
2278 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2279 {
2280 gfc_warning (OPT_Wpedantic,
2281 "%qs at %L is an array and OPTIONAL; IF IT IS "
2282 "MISSING, it cannot be the actual argument of an "
2283 "ELEMENTAL procedure unless there is a non-optional "
2284 "argument with the same rank (12.4.1.5)",
2285 arg->expr->symtree->n.sym->name, &arg->expr->where);
2286 }
2287 }
2288
2289 for (arg = arg0; arg; arg = arg->next)
2290 {
2291 if (arg->expr == NULL || arg->expr->rank == 0)
2292 continue;
2293
2294 /* Being elemental, the last upper bound of an assumed size array
2295 argument must be present. */
2296 if (resolve_assumed_size_actual (arg->expr))
2297 return false;
2298
2299 /* Elemental procedure's array actual arguments must conform. */
2300 if (e != NULL)
2301 {
2302 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2303 return false;
2304 }
2305 else
2306 e = arg->expr;
2307 }
2308
2309 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2310 is an array, the intent inout/out variable needs to be also an array. */
2311 if (rank > 0 && esym && expr == NULL)
2312 for (eformal = esym->formal, arg = arg0; arg && eformal;
2313 arg = arg->next, eformal = eformal->next)
2314 if ((eformal->sym->attr.intent == INTENT_OUT
2315 || eformal->sym->attr.intent == INTENT_INOUT)
2316 && arg->expr && arg->expr->rank == 0)
2317 {
2318 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2319 "ELEMENTAL subroutine %qs is a scalar, but another "
2320 "actual argument is an array", &arg->expr->where,
2321 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2322 : "INOUT", eformal->sym->name, esym->name);
2323 return false;
2324 }
2325 return true;
2326 }
2327
2328
2329 /* This function does the checking of references to global procedures
2330 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2331 77 and 95 standards. It checks for a gsymbol for the name, making
2332 one if it does not already exist. If it already exists, then the
2333 reference being resolved must correspond to the type of gsymbol.
2334 Otherwise, the new symbol is equipped with the attributes of the
2335 reference. The corresponding code that is called in creating
2336 global entities is parse.c.
2337
2338 In addition, for all but -std=legacy, the gsymbols are used to
2339 check the interfaces of external procedures from the same file.
2340 The namespace of the gsymbol is resolved and then, once this is
2341 done the interface is checked. */
2342
2343
2344 static bool
2345 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2346 {
2347 if (!gsym_ns->proc_name->attr.recursive)
2348 return true;
2349
2350 if (sym->ns == gsym_ns)
2351 return false;
2352
2353 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2354 return false;
2355
2356 return true;
2357 }
2358
2359 static bool
2360 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2361 {
2362 if (gsym_ns->entries)
2363 {
2364 gfc_entry_list *entry = gsym_ns->entries;
2365
2366 for (; entry; entry = entry->next)
2367 {
2368 if (strcmp (sym->name, entry->sym->name) == 0)
2369 {
2370 if (strcmp (gsym_ns->proc_name->name,
2371 sym->ns->proc_name->name) == 0)
2372 return false;
2373
2374 if (sym->ns->parent
2375 && strcmp (gsym_ns->proc_name->name,
2376 sym->ns->parent->proc_name->name) == 0)
2377 return false;
2378 }
2379 }
2380 }
2381 return true;
2382 }
2383
2384
2385 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2386
2387 bool
2388 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2389 {
2390 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2391
2392 for ( ; arg; arg = arg->next)
2393 {
2394 if (!arg->sym)
2395 continue;
2396
2397 if (arg->sym->attr.allocatable) /* (2a) */
2398 {
2399 strncpy (errmsg, _("allocatable argument"), err_len);
2400 return true;
2401 }
2402 else if (arg->sym->attr.asynchronous)
2403 {
2404 strncpy (errmsg, _("asynchronous argument"), err_len);
2405 return true;
2406 }
2407 else if (arg->sym->attr.optional)
2408 {
2409 strncpy (errmsg, _("optional argument"), err_len);
2410 return true;
2411 }
2412 else if (arg->sym->attr.pointer)
2413 {
2414 strncpy (errmsg, _("pointer argument"), err_len);
2415 return true;
2416 }
2417 else if (arg->sym->attr.target)
2418 {
2419 strncpy (errmsg, _("target argument"), err_len);
2420 return true;
2421 }
2422 else if (arg->sym->attr.value)
2423 {
2424 strncpy (errmsg, _("value argument"), err_len);
2425 return true;
2426 }
2427 else if (arg->sym->attr.volatile_)
2428 {
2429 strncpy (errmsg, _("volatile argument"), err_len);
2430 return true;
2431 }
2432 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2433 {
2434 strncpy (errmsg, _("assumed-shape argument"), err_len);
2435 return true;
2436 }
2437 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2438 {
2439 strncpy (errmsg, _("assumed-rank argument"), err_len);
2440 return true;
2441 }
2442 else if (arg->sym->attr.codimension) /* (2c) */
2443 {
2444 strncpy (errmsg, _("coarray argument"), err_len);
2445 return true;
2446 }
2447 else if (false) /* (2d) TODO: parametrized derived type */
2448 {
2449 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2450 return true;
2451 }
2452 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2453 {
2454 strncpy (errmsg, _("polymorphic argument"), err_len);
2455 return true;
2456 }
2457 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2458 {
2459 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2460 return true;
2461 }
2462 else if (arg->sym->ts.type == BT_ASSUMED)
2463 {
2464 /* As assumed-type is unlimited polymorphic (cf. above).
2465 See also TS 29113, Note 6.1. */
2466 strncpy (errmsg, _("assumed-type argument"), err_len);
2467 return true;
2468 }
2469 }
2470
2471 if (sym->attr.function)
2472 {
2473 gfc_symbol *res = sym->result ? sym->result : sym;
2474
2475 if (res->attr.dimension) /* (3a) */
2476 {
2477 strncpy (errmsg, _("array result"), err_len);
2478 return true;
2479 }
2480 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2481 {
2482 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2483 return true;
2484 }
2485 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2486 && res->ts.u.cl->length
2487 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2488 {
2489 strncpy (errmsg, _("result with non-constant character length"), err_len);
2490 return true;
2491 }
2492 }
2493
2494 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2495 {
2496 strncpy (errmsg, _("elemental procedure"), err_len);
2497 return true;
2498 }
2499 else if (sym->attr.is_bind_c) /* (5) */
2500 {
2501 strncpy (errmsg, _("bind(c) procedure"), err_len);
2502 return true;
2503 }
2504
2505 return false;
2506 }
2507
2508
2509 static void
2510 resolve_global_procedure (gfc_symbol *sym, locus *where, int sub)
2511 {
2512 gfc_gsymbol * gsym;
2513 gfc_namespace *ns;
2514 enum gfc_symbol_type type;
2515 char reason[200];
2516
2517 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2518
2519 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name,
2520 sym->binding_label != NULL);
2521
2522 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2523 gfc_global_used (gsym, where);
2524
2525 if ((sym->attr.if_source == IFSRC_UNKNOWN
2526 || sym->attr.if_source == IFSRC_IFBODY)
2527 && gsym->type != GSYM_UNKNOWN
2528 && !gsym->binding_label
2529 && gsym->ns
2530 && gsym->ns->proc_name
2531 && not_in_recursive (sym, gsym->ns)
2532 && not_entry_self_reference (sym, gsym->ns))
2533 {
2534 gfc_symbol *def_sym;
2535 def_sym = gsym->ns->proc_name;
2536
2537 if (gsym->ns->resolved != -1)
2538 {
2539
2540 /* Resolve the gsymbol namespace if needed. */
2541 if (!gsym->ns->resolved)
2542 {
2543 gfc_symbol *old_dt_list;
2544
2545 /* Stash away derived types so that the backend_decls
2546 do not get mixed up. */
2547 old_dt_list = gfc_derived_types;
2548 gfc_derived_types = NULL;
2549
2550 gfc_resolve (gsym->ns);
2551
2552 /* Store the new derived types with the global namespace. */
2553 if (gfc_derived_types)
2554 gsym->ns->derived_types = gfc_derived_types;
2555
2556 /* Restore the derived types of this namespace. */
2557 gfc_derived_types = old_dt_list;
2558 }
2559
2560 /* Make sure that translation for the gsymbol occurs before
2561 the procedure currently being resolved. */
2562 ns = gfc_global_ns_list;
2563 for (; ns && ns != gsym->ns; ns = ns->sibling)
2564 {
2565 if (ns->sibling == gsym->ns)
2566 {
2567 ns->sibling = gsym->ns->sibling;
2568 gsym->ns->sibling = gfc_global_ns_list;
2569 gfc_global_ns_list = gsym->ns;
2570 break;
2571 }
2572 }
2573
2574 /* This can happen if a binding name has been specified. */
2575 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2576 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2577
2578 if (def_sym->attr.entry_master || def_sym->attr.entry)
2579 {
2580 gfc_entry_list *entry;
2581 for (entry = gsym->ns->entries; entry; entry = entry->next)
2582 if (strcmp (entry->sym->name, sym->name) == 0)
2583 {
2584 def_sym = entry->sym;
2585 break;
2586 }
2587 }
2588 }
2589
2590 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2591 {
2592 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2593 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2594 gfc_typename (&def_sym->ts));
2595 goto done;
2596 }
2597
2598 if (sym->attr.if_source == IFSRC_UNKNOWN
2599 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2600 {
2601 gfc_error ("Explicit interface required for %qs at %L: %s",
2602 sym->name, &sym->declared_at, reason);
2603 goto done;
2604 }
2605
2606 bool bad_result_characteristics;
2607 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2608 reason, sizeof(reason), NULL, NULL,
2609 &bad_result_characteristics))
2610 {
2611 /* Turn erros into warnings with -std=gnu and -std=legacy,
2612 unless a function returns a wrong type, which can lead
2613 to all kinds of ICEs and wrong code. */
2614
2615 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU)
2616 && !bad_result_characteristics)
2617 gfc_errors_to_warnings (true);
2618
2619 gfc_error ("Interface mismatch in global procedure %qs at %L: %s",
2620 sym->name, &sym->declared_at, reason);
2621 gfc_errors_to_warnings (false);
2622 goto done;
2623 }
2624 }
2625
2626 done:
2627
2628 if (gsym->type == GSYM_UNKNOWN)
2629 {
2630 gsym->type = type;
2631 gsym->where = *where;
2632 }
2633
2634 gsym->used = 1;
2635 }
2636
2637
2638 /************* Function resolution *************/
2639
2640 /* Resolve a function call known to be generic.
2641 Section 14.1.2.4.1. */
2642
2643 static match
2644 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2645 {
2646 gfc_symbol *s;
2647
2648 if (sym->attr.generic)
2649 {
2650 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2651 if (s != NULL)
2652 {
2653 expr->value.function.name = s->name;
2654 expr->value.function.esym = s;
2655
2656 if (s->ts.type != BT_UNKNOWN)
2657 expr->ts = s->ts;
2658 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2659 expr->ts = s->result->ts;
2660
2661 if (s->as != NULL)
2662 expr->rank = s->as->rank;
2663 else if (s->result != NULL && s->result->as != NULL)
2664 expr->rank = s->result->as->rank;
2665
2666 gfc_set_sym_referenced (expr->value.function.esym);
2667
2668 return MATCH_YES;
2669 }
2670
2671 /* TODO: Need to search for elemental references in generic
2672 interface. */
2673 }
2674
2675 if (sym->attr.intrinsic)
2676 return gfc_intrinsic_func_interface (expr, 0);
2677
2678 return MATCH_NO;
2679 }
2680
2681
2682 static bool
2683 resolve_generic_f (gfc_expr *expr)
2684 {
2685 gfc_symbol *sym;
2686 match m;
2687 gfc_interface *intr = NULL;
2688
2689 sym = expr->symtree->n.sym;
2690
2691 for (;;)
2692 {
2693 m = resolve_generic_f0 (expr, sym);
2694 if (m == MATCH_YES)
2695 return true;
2696 else if (m == MATCH_ERROR)
2697 return false;
2698
2699 generic:
2700 if (!intr)
2701 for (intr = sym->generic; intr; intr = intr->next)
2702 if (gfc_fl_struct (intr->sym->attr.flavor))
2703 break;
2704
2705 if (sym->ns->parent == NULL)
2706 break;
2707 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2708
2709 if (sym == NULL)
2710 break;
2711 if (!generic_sym (sym))
2712 goto generic;
2713 }
2714
2715 /* Last ditch attempt. See if the reference is to an intrinsic
2716 that possesses a matching interface. 14.1.2.4 */
2717 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2718 {
2719 if (gfc_init_expr_flag)
2720 gfc_error ("Function %qs in initialization expression at %L "
2721 "must be an intrinsic function",
2722 expr->symtree->n.sym->name, &expr->where);
2723 else
2724 gfc_error ("There is no specific function for the generic %qs "
2725 "at %L", expr->symtree->n.sym->name, &expr->where);
2726 return false;
2727 }
2728
2729 if (intr)
2730 {
2731 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2732 NULL, false))
2733 return false;
2734 if (!gfc_use_derived (expr->ts.u.derived))
2735 return false;
2736 return resolve_structure_cons (expr, 0);
2737 }
2738
2739 m = gfc_intrinsic_func_interface (expr, 0);
2740 if (m == MATCH_YES)
2741 return true;
2742
2743 if (m == MATCH_NO)
2744 gfc_error ("Generic function %qs at %L is not consistent with a "
2745 "specific intrinsic interface", expr->symtree->n.sym->name,
2746 &expr->where);
2747
2748 return false;
2749 }
2750
2751
2752 /* Resolve a function call known to be specific. */
2753
2754 static match
2755 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2756 {
2757 match m;
2758
2759 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2760 {
2761 if (sym->attr.dummy)
2762 {
2763 sym->attr.proc = PROC_DUMMY;
2764 goto found;
2765 }
2766
2767 sym->attr.proc = PROC_EXTERNAL;
2768 goto found;
2769 }
2770
2771 if (sym->attr.proc == PROC_MODULE
2772 || sym->attr.proc == PROC_ST_FUNCTION
2773 || sym->attr.proc == PROC_INTERNAL)
2774 goto found;
2775
2776 if (sym->attr.intrinsic)
2777 {
2778 m = gfc_intrinsic_func_interface (expr, 1);
2779 if (m == MATCH_YES)
2780 return MATCH_YES;
2781 if (m == MATCH_NO)
2782 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2783 "with an intrinsic", sym->name, &expr->where);
2784
2785 return MATCH_ERROR;
2786 }
2787
2788 return MATCH_NO;
2789
2790 found:
2791 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2792
2793 if (sym->result)
2794 expr->ts = sym->result->ts;
2795 else
2796 expr->ts = sym->ts;
2797 expr->value.function.name = sym->name;
2798 expr->value.function.esym = sym;
2799 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2800 error(s). */
2801 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2802 return MATCH_ERROR;
2803 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2804 expr->rank = CLASS_DATA (sym)->as->rank;
2805 else if (sym->as != NULL)
2806 expr->rank = sym->as->rank;
2807
2808 return MATCH_YES;
2809 }
2810
2811
2812 static bool
2813 resolve_specific_f (gfc_expr *expr)
2814 {
2815 gfc_symbol *sym;
2816 match m;
2817
2818 sym = expr->symtree->n.sym;
2819
2820 for (;;)
2821 {
2822 m = resolve_specific_f0 (sym, expr);
2823 if (m == MATCH_YES)
2824 return true;
2825 if (m == MATCH_ERROR)
2826 return false;
2827
2828 if (sym->ns->parent == NULL)
2829 break;
2830
2831 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2832
2833 if (sym == NULL)
2834 break;
2835 }
2836
2837 gfc_error ("Unable to resolve the specific function %qs at %L",
2838 expr->symtree->n.sym->name, &expr->where);
2839
2840 return true;
2841 }
2842
2843 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2844 candidates in CANDIDATES_LEN. */
2845
2846 static void
2847 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2848 char **&candidates,
2849 size_t &candidates_len)
2850 {
2851 gfc_symtree *p;
2852
2853 if (sym == NULL)
2854 return;
2855 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2856 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2857 vec_push (candidates, candidates_len, sym->name);
2858
2859 p = sym->left;
2860 if (p)
2861 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2862
2863 p = sym->right;
2864 if (p)
2865 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2866 }
2867
2868
2869 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2870
2871 const char*
2872 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2873 {
2874 char **candidates = NULL;
2875 size_t candidates_len = 0;
2876 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2877 return gfc_closest_fuzzy_match (fn, candidates);
2878 }
2879
2880
2881 /* Resolve a procedure call not known to be generic nor specific. */
2882
2883 static bool
2884 resolve_unknown_f (gfc_expr *expr)
2885 {
2886 gfc_symbol *sym;
2887 gfc_typespec *ts;
2888
2889 sym = expr->symtree->n.sym;
2890
2891 if (sym->attr.dummy)
2892 {
2893 sym->attr.proc = PROC_DUMMY;
2894 expr->value.function.name = sym->name;
2895 goto set_type;
2896 }
2897
2898 /* See if we have an intrinsic function reference. */
2899
2900 if (gfc_is_intrinsic (sym, 0, expr->where))
2901 {
2902 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2903 return true;
2904 return false;
2905 }
2906
2907 /* The reference is to an external name. */
2908
2909 sym->attr.proc = PROC_EXTERNAL;
2910 expr->value.function.name = sym->name;
2911 expr->value.function.esym = expr->symtree->n.sym;
2912
2913 if (sym->as != NULL)
2914 expr->rank = sym->as->rank;
2915
2916 /* Type of the expression is either the type of the symbol or the
2917 default type of the symbol. */
2918
2919 set_type:
2920 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2921
2922 if (sym->ts.type != BT_UNKNOWN)
2923 expr->ts = sym->ts;
2924 else
2925 {
2926 ts = gfc_get_default_type (sym->name, sym->ns);
2927
2928 if (ts->type == BT_UNKNOWN)
2929 {
2930 const char *guessed
2931 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2932 if (guessed)
2933 gfc_error ("Function %qs at %L has no IMPLICIT type"
2934 "; did you mean %qs?",
2935 sym->name, &expr->where, guessed);
2936 else
2937 gfc_error ("Function %qs at %L has no IMPLICIT type",
2938 sym->name, &expr->where);
2939 return false;
2940 }
2941 else
2942 expr->ts = *ts;
2943 }
2944
2945 return true;
2946 }
2947
2948
2949 /* Return true, if the symbol is an external procedure. */
2950 static bool
2951 is_external_proc (gfc_symbol *sym)
2952 {
2953 if (!sym->attr.dummy && !sym->attr.contained
2954 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2955 && sym->attr.proc != PROC_ST_FUNCTION
2956 && !sym->attr.proc_pointer
2957 && !sym->attr.use_assoc
2958 && sym->name)
2959 return true;
2960
2961 return false;
2962 }
2963
2964
2965 /* Figure out if a function reference is pure or not. Also set the name
2966 of the function for a potential error message. Return nonzero if the
2967 function is PURE, zero if not. */
2968 static int
2969 pure_stmt_function (gfc_expr *, gfc_symbol *);
2970
2971 int
2972 gfc_pure_function (gfc_expr *e, const char **name)
2973 {
2974 int pure;
2975 gfc_component *comp;
2976
2977 *name = NULL;
2978
2979 if (e->symtree != NULL
2980 && e->symtree->n.sym != NULL
2981 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2982 return pure_stmt_function (e, e->symtree->n.sym);
2983
2984 comp = gfc_get_proc_ptr_comp (e);
2985 if (comp)
2986 {
2987 pure = gfc_pure (comp->ts.interface);
2988 *name = comp->name;
2989 }
2990 else if (e->value.function.esym)
2991 {
2992 pure = gfc_pure (e->value.function.esym);
2993 *name = e->value.function.esym->name;
2994 }
2995 else if (e->value.function.isym)
2996 {
2997 pure = e->value.function.isym->pure
2998 || e->value.function.isym->elemental;
2999 *name = e->value.function.isym->name;
3000 }
3001 else
3002 {
3003 /* Implicit functions are not pure. */
3004 pure = 0;
3005 *name = e->value.function.name;
3006 }
3007
3008 return pure;
3009 }
3010
3011
3012 /* Check if the expression is a reference to an implicitly pure function. */
3013
3014 int
3015 gfc_implicit_pure_function (gfc_expr *e)
3016 {
3017 gfc_component *comp = gfc_get_proc_ptr_comp (e);
3018 if (comp)
3019 return gfc_implicit_pure (comp->ts.interface);
3020 else if (e->value.function.esym)
3021 return gfc_implicit_pure (e->value.function.esym);
3022 else
3023 return 0;
3024 }
3025
3026
3027 static bool
3028 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
3029 int *f ATTRIBUTE_UNUSED)
3030 {
3031 const char *name;
3032
3033 /* Don't bother recursing into other statement functions
3034 since they will be checked individually for purity. */
3035 if (e->expr_type != EXPR_FUNCTION
3036 || !e->symtree
3037 || e->symtree->n.sym == sym
3038 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
3039 return false;
3040
3041 return gfc_pure_function (e, &name) ? false : true;
3042 }
3043
3044
3045 static int
3046 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
3047 {
3048 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
3049 }
3050
3051
3052 /* Check if an impure function is allowed in the current context. */
3053
3054 static bool check_pure_function (gfc_expr *e)
3055 {
3056 const char *name = NULL;
3057 if (!gfc_pure_function (e, &name) && name)
3058 {
3059 if (forall_flag)
3060 {
3061 gfc_error ("Reference to impure function %qs at %L inside a "
3062 "FORALL %s", name, &e->where,
3063 forall_flag == 2 ? "mask" : "block");
3064 return false;
3065 }
3066 else if (gfc_do_concurrent_flag)
3067 {
3068 gfc_error ("Reference to impure function %qs at %L inside a "
3069 "DO CONCURRENT %s", name, &e->where,
3070 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3071 return false;
3072 }
3073 else if (gfc_pure (NULL))
3074 {
3075 gfc_error ("Reference to impure function %qs at %L "
3076 "within a PURE procedure", name, &e->where);
3077 return false;
3078 }
3079 if (!gfc_implicit_pure_function (e))
3080 gfc_unset_implicit_pure (NULL);
3081 }
3082 return true;
3083 }
3084
3085
3086 /* Update current procedure's array_outer_dependency flag, considering
3087 a call to procedure SYM. */
3088
3089 static void
3090 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3091 {
3092 /* Check to see if this is a sibling function that has not yet
3093 been resolved. */
3094 gfc_namespace *sibling = gfc_current_ns->sibling;
3095 for (; sibling; sibling = sibling->sibling)
3096 {
3097 if (sibling->proc_name == sym)
3098 {
3099 gfc_resolve (sibling);
3100 break;
3101 }
3102 }
3103
3104 /* If SYM has references to outer arrays, so has the procedure calling
3105 SYM. If SYM is a procedure pointer, we can assume the worst. */
3106 if ((sym->attr.array_outer_dependency || sym->attr.proc_pointer)
3107 && gfc_current_ns->proc_name)
3108 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3109 }
3110
3111
3112 /* Resolve a function call, which means resolving the arguments, then figuring
3113 out which entity the name refers to. */
3114
3115 static bool
3116 resolve_function (gfc_expr *expr)
3117 {
3118 gfc_actual_arglist *arg;
3119 gfc_symbol *sym;
3120 bool t;
3121 int temp;
3122 procedure_type p = PROC_INTRINSIC;
3123 bool no_formal_args;
3124
3125 sym = NULL;
3126 if (expr->symtree)
3127 sym = expr->symtree->n.sym;
3128
3129 /* If this is a procedure pointer component, it has already been resolved. */
3130 if (gfc_is_proc_ptr_comp (expr))
3131 return true;
3132
3133 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3134 another caf_get. */
3135 if (sym && sym->attr.intrinsic
3136 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3137 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3138 return true;
3139
3140 if (expr->ref)
3141 {
3142 gfc_error ("Unexpected junk after %qs at %L", expr->symtree->n.sym->name,
3143 &expr->where);
3144 return false;
3145 }
3146
3147 if (sym && sym->attr.intrinsic
3148 && !gfc_resolve_intrinsic (sym, &expr->where))
3149 return false;
3150
3151 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3152 {
3153 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3154 return false;
3155 }
3156
3157 /* If this is a deferred TBP with an abstract interface (which may
3158 of course be referenced), expr->value.function.esym will be set. */
3159 if (sym && sym->attr.abstract && !expr->value.function.esym)
3160 {
3161 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3162 sym->name, &expr->where);
3163 return false;
3164 }
3165
3166 /* If this is a deferred TBP with an abstract interface, its result
3167 cannot be an assumed length character (F2003: C418). */
3168 if (sym && sym->attr.abstract && sym->attr.function
3169 && sym->result->ts.u.cl
3170 && sym->result->ts.u.cl->length == NULL
3171 && !sym->result->ts.deferred)
3172 {
3173 gfc_error ("ABSTRACT INTERFACE %qs at %L must not have an assumed "
3174 "character length result (F2008: C418)", sym->name,
3175 &sym->declared_at);
3176 return false;
3177 }
3178
3179 /* Switch off assumed size checking and do this again for certain kinds
3180 of procedure, once the procedure itself is resolved. */
3181 need_full_assumed_size++;
3182
3183 if (expr->symtree && expr->symtree->n.sym)
3184 p = expr->symtree->n.sym->attr.proc;
3185
3186 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3187 inquiry_argument = true;
3188 no_formal_args = sym && is_external_proc (sym)
3189 && gfc_sym_get_dummy_args (sym) == NULL;
3190
3191 if (!resolve_actual_arglist (expr->value.function.actual,
3192 p, no_formal_args))
3193 {
3194 inquiry_argument = false;
3195 return false;
3196 }
3197
3198 inquiry_argument = false;
3199
3200 /* Resume assumed_size checking. */
3201 need_full_assumed_size--;
3202
3203 /* If the procedure is external, check for usage. */
3204 if (sym && is_external_proc (sym))
3205 resolve_global_procedure (sym, &expr->where, 0);
3206
3207 if (sym && sym->ts.type == BT_CHARACTER
3208 && sym->ts.u.cl
3209 && sym->ts.u.cl->length == NULL
3210 && !sym->attr.dummy
3211 && !sym->ts.deferred
3212 && expr->value.function.esym == NULL
3213 && !sym->attr.contained)
3214 {
3215 /* Internal procedures are taken care of in resolve_contained_fntype. */
3216 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3217 "be used at %L since it is not a dummy argument",
3218 sym->name, &expr->where);
3219 return false;
3220 }
3221
3222 /* See if function is already resolved. */
3223
3224 if (expr->value.function.name != NULL
3225 || expr->value.function.isym != NULL)
3226 {
3227 if (expr->ts.type == BT_UNKNOWN)
3228 expr->ts = sym->ts;
3229 t = true;
3230 }
3231 else
3232 {
3233 /* Apply the rules of section 14.1.2. */
3234
3235 switch (procedure_kind (sym))
3236 {
3237 case PTYPE_GENERIC:
3238 t = resolve_generic_f (expr);
3239 break;
3240
3241 case PTYPE_SPECIFIC:
3242 t = resolve_specific_f (expr);
3243 break;
3244
3245 case PTYPE_UNKNOWN:
3246 t = resolve_unknown_f (expr);
3247 break;
3248
3249 default:
3250 gfc_internal_error ("resolve_function(): bad function type");
3251 }
3252 }
3253
3254 /* If the expression is still a function (it might have simplified),
3255 then we check to see if we are calling an elemental function. */
3256
3257 if (expr->expr_type != EXPR_FUNCTION)
3258 return t;
3259
3260 /* Walk the argument list looking for invalid BOZ. */
3261 for (arg = expr->value.function.actual; arg; arg = arg->next)
3262 if (arg->expr && arg->expr->ts.type == BT_BOZ)
3263 {
3264 gfc_error ("A BOZ literal constant at %L cannot appear as an "
3265 "actual argument in a function reference",
3266 &arg->expr->where);
3267 return false;
3268 }
3269
3270 temp = need_full_assumed_size;
3271 need_full_assumed_size = 0;
3272
3273 if (!resolve_elemental_actual (expr, NULL))
3274 return false;
3275
3276 if (omp_workshare_flag
3277 && expr->value.function.esym
3278 && ! gfc_elemental (expr->value.function.esym))
3279 {
3280 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3281 "in WORKSHARE construct", expr->value.function.esym->name,
3282 &expr->where);
3283 t = false;
3284 }
3285
3286 #define GENERIC_ID expr->value.function.isym->id
3287 else if (expr->value.function.actual != NULL
3288 && expr->value.function.isym != NULL
3289 && GENERIC_ID != GFC_ISYM_LBOUND
3290 && GENERIC_ID != GFC_ISYM_LCOBOUND
3291 && GENERIC_ID != GFC_ISYM_UCOBOUND
3292 && GENERIC_ID != GFC_ISYM_LEN
3293 && GENERIC_ID != GFC_ISYM_LOC
3294 && GENERIC_ID != GFC_ISYM_C_LOC
3295 && GENERIC_ID != GFC_ISYM_PRESENT)
3296 {
3297 /* Array intrinsics must also have the last upper bound of an
3298 assumed size array argument. UBOUND and SIZE have to be
3299 excluded from the check if the second argument is anything
3300 than a constant. */
3301
3302 for (arg = expr->value.function.actual; arg; arg = arg->next)
3303 {
3304 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3305 && arg == expr->value.function.actual
3306 && arg->next != NULL && arg->next->expr)
3307 {
3308 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3309 break;
3310
3311 if (arg->next->name && strcmp (arg->next->name, "kind") == 0)
3312 break;
3313
3314 if ((int)mpz_get_si (arg->next->expr->value.integer)
3315 < arg->expr->rank)
3316 break;
3317 }
3318
3319 if (arg->expr != NULL
3320 && arg->expr->rank > 0
3321 && resolve_assumed_size_actual (arg->expr))
3322 return false;
3323 }
3324 }
3325 #undef GENERIC_ID
3326
3327 need_full_assumed_size = temp;
3328
3329 if (!check_pure_function(expr))
3330 t = false;
3331
3332 /* Functions without the RECURSIVE attribution are not allowed to
3333 * call themselves. */
3334 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3335 {
3336 gfc_symbol *esym;
3337 esym = expr->value.function.esym;
3338
3339 if (is_illegal_recursion (esym, gfc_current_ns))
3340 {
3341 if (esym->attr.entry && esym->ns->entries)
3342 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3343 " function %qs is not RECURSIVE",
3344 esym->name, &expr->where, esym->ns->entries->sym->name);
3345 else
3346 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3347 " is not RECURSIVE", esym->name, &expr->where);
3348
3349 t = false;
3350 }
3351 }
3352
3353 /* Character lengths of use associated functions may contains references to
3354 symbols not referenced from the current program unit otherwise. Make sure
3355 those symbols are marked as referenced. */
3356
3357 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3358 && expr->value.function.esym->attr.use_assoc)
3359 {
3360 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3361 }
3362
3363 /* Make sure that the expression has a typespec that works. */
3364 if (expr->ts.type == BT_UNKNOWN)
3365 {
3366 if (expr->symtree->n.sym->result
3367 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3368 && !expr->symtree->n.sym->result->attr.proc_pointer)
3369 expr->ts = expr->symtree->n.sym->result->ts;
3370 }
3371
3372 if (!expr->ref && !expr->value.function.isym)
3373 {
3374 if (expr->value.function.esym)
3375 update_current_proc_array_outer_dependency (expr->value.function.esym);
3376 else
3377 update_current_proc_array_outer_dependency (sym);
3378 }
3379 else if (expr->ref)
3380 /* typebound procedure: Assume the worst. */
3381 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3382
3383 return t;
3384 }
3385
3386
3387 /************* Subroutine resolution *************/
3388
3389 static bool
3390 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3391 {
3392 if (gfc_pure (sym))
3393 return true;
3394
3395 if (forall_flag)
3396 {
3397 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3398 name, loc);
3399 return false;
3400 }
3401 else if (gfc_do_concurrent_flag)
3402 {
3403 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3404 "PURE", name, loc);
3405 return false;
3406 }
3407 else if (gfc_pure (NULL))
3408 {
3409 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3410 return false;
3411 }
3412
3413 gfc_unset_implicit_pure (NULL);
3414 return true;
3415 }
3416
3417
3418 static match
3419 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3420 {
3421 gfc_symbol *s;
3422
3423 if (sym->attr.generic)
3424 {
3425 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3426 if (s != NULL)
3427 {
3428 c->resolved_sym = s;
3429 if (!pure_subroutine (s, s->name, &c->loc))
3430 return MATCH_ERROR;
3431 return MATCH_YES;
3432 }
3433
3434 /* TODO: Need to search for elemental references in generic interface. */
3435 }
3436
3437 if (sym->attr.intrinsic)
3438 return gfc_intrinsic_sub_interface (c, 0);
3439
3440 return MATCH_NO;
3441 }
3442
3443
3444 static bool
3445 resolve_generic_s (gfc_code *c)
3446 {
3447 gfc_symbol *sym;
3448 match m;
3449
3450 sym = c->symtree->n.sym;
3451
3452 for (;;)
3453 {
3454 m = resolve_generic_s0 (c, sym);
3455 if (m == MATCH_YES)
3456 return true;
3457 else if (m == MATCH_ERROR)
3458 return false;
3459
3460 generic:
3461 if (sym->ns->parent == NULL)
3462 break;
3463 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3464
3465 if (sym == NULL)
3466 break;
3467 if (!generic_sym (sym))
3468 goto generic;
3469 }
3470
3471 /* Last ditch attempt. See if the reference is to an intrinsic
3472 that possesses a matching interface. 14.1.2.4 */
3473 sym = c->symtree->n.sym;
3474
3475 if (!gfc_is_intrinsic (sym, 1, c->loc))
3476 {
3477 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3478 sym->name, &c->loc);
3479 return false;
3480 }
3481
3482 m = gfc_intrinsic_sub_interface (c, 0);
3483 if (m == MATCH_YES)
3484 return true;
3485 if (m == MATCH_NO)
3486 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3487 "intrinsic subroutine interface", sym->name, &c->loc);
3488
3489 return false;
3490 }
3491
3492
3493 /* Resolve a subroutine call known to be specific. */
3494
3495 static match
3496 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3497 {
3498 match m;
3499
3500 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3501 {
3502 if (sym->attr.dummy)
3503 {
3504 sym->attr.proc = PROC_DUMMY;
3505 goto found;
3506 }
3507
3508 sym->attr.proc = PROC_EXTERNAL;
3509 goto found;
3510 }
3511
3512 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3513 goto found;
3514
3515 if (sym->attr.intrinsic)
3516 {
3517 m = gfc_intrinsic_sub_interface (c, 1);
3518 if (m == MATCH_YES)
3519 return MATCH_YES;
3520 if (m == MATCH_NO)
3521 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3522 "with an intrinsic", sym->name, &c->loc);
3523
3524 return MATCH_ERROR;
3525 }
3526
3527 return MATCH_NO;
3528
3529 found:
3530 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3531
3532 c->resolved_sym = sym;
3533 if (!pure_subroutine (sym, sym->name, &c->loc))
3534 return MATCH_ERROR;
3535
3536 return MATCH_YES;
3537 }
3538
3539
3540 static bool
3541 resolve_specific_s (gfc_code *c)
3542 {
3543 gfc_symbol *sym;
3544 match m;
3545
3546 sym = c->symtree->n.sym;
3547
3548 for (;;)
3549 {
3550 m = resolve_specific_s0 (c, sym);
3551 if (m == MATCH_YES)
3552 return true;
3553 if (m == MATCH_ERROR)
3554 return false;
3555
3556 if (sym->ns->parent == NULL)
3557 break;
3558
3559 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3560
3561 if (sym == NULL)
3562 break;
3563 }
3564
3565 sym = c->symtree->n.sym;
3566 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3567 sym->name, &c->loc);
3568
3569 return false;
3570 }
3571
3572
3573 /* Resolve a subroutine call not known to be generic nor specific. */
3574
3575 static bool
3576 resolve_unknown_s (gfc_code *c)
3577 {
3578 gfc_symbol *sym;
3579
3580 sym = c->symtree->n.sym;
3581
3582 if (sym->attr.dummy)
3583 {
3584 sym->attr.proc = PROC_DUMMY;
3585 goto found;
3586 }
3587
3588 /* See if we have an intrinsic function reference. */
3589
3590 if (gfc_is_intrinsic (sym, 1, c->loc))
3591 {
3592 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3593 return true;
3594 return false;
3595 }
3596
3597 /* The reference is to an external name. */
3598
3599 found:
3600 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3601
3602 c->resolved_sym = sym;
3603
3604 return pure_subroutine (sym, sym->name, &c->loc);
3605 }
3606
3607
3608 /* Resolve a subroutine call. Although it was tempting to use the same code
3609 for functions, subroutines and functions are stored differently and this
3610 makes things awkward. */
3611
3612 static bool
3613 resolve_call (gfc_code *c)
3614 {
3615 bool t;
3616 procedure_type ptype = PROC_INTRINSIC;
3617 gfc_symbol *csym, *sym;
3618 bool no_formal_args;
3619
3620 csym = c->symtree ? c->symtree->n.sym : NULL;
3621
3622 if (csym && csym->ts.type != BT_UNKNOWN)
3623 {
3624 gfc_error ("%qs at %L has a type, which is not consistent with "
3625 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3626 return false;
3627 }
3628
3629 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3630 {
3631 gfc_symtree *st;
3632 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3633 sym = st ? st->n.sym : NULL;
3634 if (sym && csym != sym
3635 && sym->ns == gfc_current_ns
3636 && sym->attr.flavor == FL_PROCEDURE
3637 && sym->attr.contained)
3638 {
3639 sym->refs++;
3640 if (csym->attr.generic)
3641 c->symtree->n.sym = sym;
3642 else
3643 c->symtree = st;
3644 csym = c->symtree->n.sym;
3645 }
3646 }
3647
3648 /* If this ia a deferred TBP, c->expr1 will be set. */
3649 if (!c->expr1 && csym)
3650 {
3651 if (csym->attr.abstract)
3652 {
3653 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3654 csym->name, &c->loc);
3655 return false;
3656 }
3657
3658 /* Subroutines without the RECURSIVE attribution are not allowed to
3659 call themselves. */
3660 if (is_illegal_recursion (csym, gfc_current_ns))
3661 {
3662 if (csym->attr.entry && csym->ns->entries)
3663 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3664 "as subroutine %qs is not RECURSIVE",
3665 csym->name, &c->loc, csym->ns->entries->sym->name);
3666 else
3667 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3668 "as it is not RECURSIVE", csym->name, &c->loc);
3669
3670 t = false;
3671 }
3672 }
3673
3674 /* Switch off assumed size checking and do this again for certain kinds
3675 of procedure, once the procedure itself is resolved. */
3676 need_full_assumed_size++;
3677
3678 if (csym)
3679 ptype = csym->attr.proc;
3680
3681 no_formal_args = csym && is_external_proc (csym)
3682 && gfc_sym_get_dummy_args (csym) == NULL;
3683 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3684 return false;
3685
3686 /* Resume assumed_size checking. */
3687 need_full_assumed_size--;
3688
3689 /* If external, check for usage. */
3690 if (csym && is_external_proc (csym))
3691 resolve_global_procedure (csym, &c->loc, 1);
3692
3693 t = true;
3694 if (c->resolved_sym == NULL)
3695 {
3696 c->resolved_isym = NULL;
3697 switch (procedure_kind (csym))
3698 {
3699 case PTYPE_GENERIC:
3700 t = resolve_generic_s (c);
3701 break;
3702
3703 case PTYPE_SPECIFIC:
3704 t = resolve_specific_s (c);
3705 break;
3706
3707 case PTYPE_UNKNOWN:
3708 t = resolve_unknown_s (c);
3709 break;
3710
3711 default:
3712 gfc_internal_error ("resolve_subroutine(): bad function type");
3713 }
3714 }
3715
3716 /* Some checks of elemental subroutine actual arguments. */
3717 if (!resolve_elemental_actual (NULL, c))
3718 return false;
3719
3720 if (!c->expr1)
3721 update_current_proc_array_outer_dependency (csym);
3722 else
3723 /* Typebound procedure: Assume the worst. */
3724 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3725
3726 return t;
3727 }
3728
3729
3730 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3731 op1->shape and op2->shape are non-NULL return true if their shapes
3732 match. If both op1->shape and op2->shape are non-NULL return false
3733 if their shapes do not match. If either op1->shape or op2->shape is
3734 NULL, return true. */
3735
3736 static bool
3737 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3738 {
3739 bool t;
3740 int i;
3741
3742 t = true;
3743
3744 if (op1->shape != NULL && op2->shape != NULL)
3745 {
3746 for (i = 0; i < op1->rank; i++)
3747 {
3748 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3749 {
3750 gfc_error ("Shapes for operands at %L and %L are not conformable",
3751 &op1->where, &op2->where);
3752 t = false;
3753 break;
3754 }
3755 }
3756 }
3757
3758 return t;
3759 }
3760
3761 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3762 For example A .AND. B becomes IAND(A, B). */
3763 static gfc_expr *
3764 logical_to_bitwise (gfc_expr *e)
3765 {
3766 gfc_expr *tmp, *op1, *op2;
3767 gfc_isym_id isym;
3768 gfc_actual_arglist *args = NULL;
3769
3770 gcc_assert (e->expr_type == EXPR_OP);
3771
3772 isym = GFC_ISYM_NONE;
3773 op1 = e->value.op.op1;
3774 op2 = e->value.op.op2;
3775
3776 switch (e->value.op.op)
3777 {
3778 case INTRINSIC_NOT:
3779 isym = GFC_ISYM_NOT;
3780 break;
3781 case INTRINSIC_AND:
3782 isym = GFC_ISYM_IAND;
3783 break;
3784 case INTRINSIC_OR:
3785 isym = GFC_ISYM_IOR;
3786 break;
3787 case INTRINSIC_NEQV:
3788 isym = GFC_ISYM_IEOR;
3789 break;
3790 case INTRINSIC_EQV:
3791 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3792 Change the old expression to NEQV, which will get replaced by IEOR,
3793 and wrap it in NOT. */
3794 tmp = gfc_copy_expr (e);
3795 tmp->value.op.op = INTRINSIC_NEQV;
3796 tmp = logical_to_bitwise (tmp);
3797 isym = GFC_ISYM_NOT;
3798 op1 = tmp;
3799 op2 = NULL;
3800 break;
3801 default:
3802 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3803 }
3804
3805 /* Inherit the original operation's operands as arguments. */
3806 args = gfc_get_actual_arglist ();
3807 args->expr = op1;
3808 if (op2)
3809 {
3810 args->next = gfc_get_actual_arglist ();
3811 args->next->expr = op2;
3812 }
3813
3814 /* Convert the expression to a function call. */
3815 e->expr_type = EXPR_FUNCTION;
3816 e->value.function.actual = args;
3817 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3818 e->value.function.name = e->value.function.isym->name;
3819 e->value.function.esym = NULL;
3820
3821 /* Make up a pre-resolved function call symtree if we need to. */
3822 if (!e->symtree || !e->symtree->n.sym)
3823 {
3824 gfc_symbol *sym;
3825 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3826 sym = e->symtree->n.sym;
3827 sym->result = sym;
3828 sym->attr.flavor = FL_PROCEDURE;
3829 sym->attr.function = 1;
3830 sym->attr.elemental = 1;
3831 sym->attr.pure = 1;
3832 sym->attr.referenced = 1;
3833 gfc_intrinsic_symbol (sym);
3834 gfc_commit_symbol (sym);
3835 }
3836
3837 args->name = e->value.function.isym->formal->name;
3838 if (e->value.function.isym->formal->next)
3839 args->next->name = e->value.function.isym->formal->next->name;
3840
3841 return e;
3842 }
3843
3844 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3845 candidates in CANDIDATES_LEN. */
3846 static void
3847 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3848 char **&candidates,
3849 size_t &candidates_len)
3850 {
3851 gfc_symtree *p;
3852
3853 if (uop == NULL)
3854 return;
3855
3856 /* Not sure how to properly filter here. Use all for a start.
3857 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3858 these as i suppose they don't make terribly sense. */
3859
3860 if (uop->n.uop->op != NULL)
3861 vec_push (candidates, candidates_len, uop->name);
3862
3863 p = uop->left;
3864 if (p)
3865 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3866
3867 p = uop->right;
3868 if (p)
3869 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3870 }
3871
3872 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3873
3874 static const char*
3875 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3876 {
3877 char **candidates = NULL;
3878 size_t candidates_len = 0;
3879 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3880 return gfc_closest_fuzzy_match (op, candidates);
3881 }
3882
3883
3884 /* Callback finding an impure function as an operand to an .and. or
3885 .or. expression. Remember the last function warned about to
3886 avoid double warnings when recursing. */
3887
3888 static int
3889 impure_function_callback (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED,
3890 void *data)
3891 {
3892 gfc_expr *f = *e;
3893 const char *name;
3894 static gfc_expr *last = NULL;
3895 bool *found = (bool *) data;
3896
3897 if (f->expr_type == EXPR_FUNCTION)
3898 {
3899 *found = 1;
3900 if (f != last && !gfc_pure_function (f, &name)
3901 && !gfc_implicit_pure_function (f))
3902 {
3903 if (name)
3904 gfc_warning (OPT_Wfunction_elimination,
3905 "Impure function %qs at %L might not be evaluated",
3906 name, &f->where);
3907 else
3908 gfc_warning (OPT_Wfunction_elimination,
3909 "Impure function at %L might not be evaluated",
3910 &f->where);
3911 }
3912 last = f;
3913 }
3914
3915 return 0;
3916 }
3917
3918 /* Return true if TYPE is character based, false otherwise. */
3919
3920 static int
3921 is_character_based (bt type)
3922 {
3923 return type == BT_CHARACTER || type == BT_HOLLERITH;
3924 }
3925
3926
3927 /* If expression is a hollerith, convert it to character and issue a warning
3928 for the conversion. */
3929
3930 static void
3931 convert_hollerith_to_character (gfc_expr *e)
3932 {
3933 if (e->ts.type == BT_HOLLERITH)
3934 {
3935 gfc_typespec t;
3936 gfc_clear_ts (&t);
3937 t.type = BT_CHARACTER;
3938 t.kind = e->ts.kind;
3939 gfc_convert_type_warn (e, &t, 2, 1);
3940 }
3941 }
3942
3943 /* Convert to numeric and issue a warning for the conversion. */
3944
3945 static void
3946 convert_to_numeric (gfc_expr *a, gfc_expr *b)
3947 {
3948 gfc_typespec t;
3949 gfc_clear_ts (&t);
3950 t.type = b->ts.type;
3951 t.kind = b->ts.kind;
3952 gfc_convert_type_warn (a, &t, 2, 1);
3953 }
3954
3955 /* Resolve an operator expression node. This can involve replacing the
3956 operation with a user defined function call. */
3957
3958 static bool
3959 resolve_operator (gfc_expr *e)
3960 {
3961 gfc_expr *op1, *op2;
3962 char msg[200];
3963 bool dual_locus_error;
3964 bool t = true;
3965
3966 /* Resolve all subnodes-- give them types. */
3967
3968 switch (e->value.op.op)
3969 {
3970 default:
3971 if (!gfc_resolve_expr (e->value.op.op2))
3972 return false;
3973
3974 /* Fall through. */
3975
3976 case INTRINSIC_NOT:
3977 case INTRINSIC_UPLUS:
3978 case INTRINSIC_UMINUS:
3979 case INTRINSIC_PARENTHESES:
3980 if (!gfc_resolve_expr (e->value.op.op1))
3981 return false;
3982 if (e->value.op.op1
3983 && e->value.op.op1->ts.type == BT_BOZ && !e->value.op.op2)
3984 {
3985 gfc_error ("BOZ literal constant at %L cannot be an operand of "
3986 "unary operator %qs", &e->value.op.op1->where,
3987 gfc_op2string (e->value.op.op));
3988 return false;
3989 }
3990 break;
3991 }
3992
3993 /* Typecheck the new node. */
3994
3995 op1 = e->value.op.op1;
3996 op2 = e->value.op.op2;
3997 if (op1 == NULL && op2 == NULL)
3998 return false;
3999
4000 dual_locus_error = false;
4001
4002 /* op1 and op2 cannot both be BOZ. */
4003 if (op1 && op1->ts.type == BT_BOZ
4004 && op2 && op2->ts.type == BT_BOZ)
4005 {
4006 gfc_error ("Operands at %L and %L cannot appear as operands of "
4007 "binary operator %qs", &op1->where, &op2->where,
4008 gfc_op2string (e->value.op.op));
4009 return false;
4010 }
4011
4012 if ((op1 && op1->expr_type == EXPR_NULL)
4013 || (op2 && op2->expr_type == EXPR_NULL))
4014 {
4015 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
4016 goto bad_op;
4017 }
4018
4019 switch (e->value.op.op)
4020 {
4021 case INTRINSIC_UPLUS:
4022 case INTRINSIC_UMINUS:
4023 if (op1->ts.type == BT_INTEGER
4024 || op1->ts.type == BT_REAL
4025 || op1->ts.type == BT_COMPLEX)
4026 {
4027 e->ts = op1->ts;
4028 break;
4029 }
4030
4031 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
4032 gfc_op2string (e->value.op.op), gfc_typename (e));
4033 goto bad_op;
4034
4035 case INTRINSIC_PLUS:
4036 case INTRINSIC_MINUS:
4037 case INTRINSIC_TIMES:
4038 case INTRINSIC_DIVIDE:
4039 case INTRINSIC_POWER:
4040 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4041 {
4042 gfc_type_convert_binary (e, 1);
4043 break;
4044 }
4045
4046 if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
4047 sprintf (msg,
4048 _("Unexpected derived-type entities in binary intrinsic "
4049 "numeric operator %%<%s%%> at %%L"),
4050 gfc_op2string (e->value.op.op));
4051 else
4052 sprintf (msg,
4053 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
4054 gfc_op2string (e->value.op.op), gfc_typename (op1),
4055 gfc_typename (op2));
4056 goto bad_op;
4057
4058 case INTRINSIC_CONCAT:
4059 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4060 && op1->ts.kind == op2->ts.kind)
4061 {
4062 e->ts.type = BT_CHARACTER;
4063 e->ts.kind = op1->ts.kind;
4064 break;
4065 }
4066
4067 sprintf (msg,
4068 _("Operands of string concatenation operator at %%L are %s/%s"),
4069 gfc_typename (op1), gfc_typename (op2));
4070 goto bad_op;
4071
4072 case INTRINSIC_AND:
4073 case INTRINSIC_OR:
4074 case INTRINSIC_EQV:
4075 case INTRINSIC_NEQV:
4076 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4077 {
4078 e->ts.type = BT_LOGICAL;
4079 e->ts.kind = gfc_kind_max (op1, op2);
4080 if (op1->ts.kind < e->ts.kind)
4081 gfc_convert_type (op1, &e->ts, 2);
4082 else if (op2->ts.kind < e->ts.kind)
4083 gfc_convert_type (op2, &e->ts, 2);
4084
4085 if (flag_frontend_optimize &&
4086 (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
4087 {
4088 /* Warn about short-circuiting
4089 with impure function as second operand. */
4090 bool op2_f = false;
4091 gfc_expr_walker (&op2, impure_function_callback, &op2_f);
4092 }
4093 break;
4094 }
4095
4096 /* Logical ops on integers become bitwise ops with -fdec. */
4097 else if (flag_dec
4098 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
4099 {
4100 e->ts.type = BT_INTEGER;
4101 e->ts.kind = gfc_kind_max (op1, op2);
4102 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
4103 gfc_convert_type (op1, &e->ts, 1);
4104 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
4105 gfc_convert_type (op2, &e->ts, 1);
4106 e = logical_to_bitwise (e);
4107 goto simplify_op;
4108 }
4109
4110 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
4111 gfc_op2string (e->value.op.op), gfc_typename (op1),
4112 gfc_typename (op2));
4113
4114 goto bad_op;
4115
4116 case INTRINSIC_NOT:
4117 /* Logical ops on integers become bitwise ops with -fdec. */
4118 if (flag_dec && op1->ts.type == BT_INTEGER)
4119 {
4120 e->ts.type = BT_INTEGER;
4121 e->ts.kind = op1->ts.kind;
4122 e = logical_to_bitwise (e);
4123 goto simplify_op;
4124 }
4125
4126 if (op1->ts.type == BT_LOGICAL)
4127 {
4128 e->ts.type = BT_LOGICAL;
4129 e->ts.kind = op1->ts.kind;
4130 break;
4131 }
4132
4133 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
4134 gfc_typename (op1));
4135 goto bad_op;
4136
4137 case INTRINSIC_GT:
4138 case INTRINSIC_GT_OS:
4139 case INTRINSIC_GE:
4140 case INTRINSIC_GE_OS:
4141 case INTRINSIC_LT:
4142 case INTRINSIC_LT_OS:
4143 case INTRINSIC_LE:
4144 case INTRINSIC_LE_OS:
4145 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
4146 {
4147 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
4148 goto bad_op;
4149 }
4150
4151 /* Fall through. */
4152
4153 case INTRINSIC_EQ:
4154 case INTRINSIC_EQ_OS:
4155 case INTRINSIC_NE:
4156 case INTRINSIC_NE_OS:
4157
4158 if (flag_dec
4159 && is_character_based (op1->ts.type)
4160 && is_character_based (op2->ts.type))
4161 {
4162 convert_hollerith_to_character (op1);
4163 convert_hollerith_to_character (op2);
4164 }
4165
4166 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4167 && op1->ts.kind == op2->ts.kind)
4168 {
4169 e->ts.type = BT_LOGICAL;
4170 e->ts.kind = gfc_default_logical_kind;
4171 break;
4172 }
4173
4174 /* If op1 is BOZ, then op2 is not!. Try to convert to type of op2. */
4175 if (op1->ts.type == BT_BOZ)
4176 {
4177 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4178 "an operand of a relational operator",
4179 &op1->where))
4180 return false;
4181
4182 if (op2->ts.type == BT_INTEGER && !gfc_boz2int (op1, op2->ts.kind))
4183 return false;
4184
4185 if (op2->ts.type == BT_REAL && !gfc_boz2real (op1, op2->ts.kind))
4186 return false;
4187 }
4188
4189 /* If op2 is BOZ, then op1 is not!. Try to convert to type of op2. */
4190 if (op2->ts.type == BT_BOZ)
4191 {
4192 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4193 "an operand of a relational operator",
4194 &op2->where))
4195 return false;
4196
4197 if (op1->ts.type == BT_INTEGER && !gfc_boz2int (op2, op1->ts.kind))
4198 return false;
4199
4200 if (op1->ts.type == BT_REAL && !gfc_boz2real (op2, op1->ts.kind))
4201 return false;
4202 }
4203 if (flag_dec
4204 && op1->ts.type == BT_HOLLERITH && gfc_numeric_ts (&op2->ts))
4205 convert_to_numeric (op1, op2);
4206
4207 if (flag_dec
4208 && gfc_numeric_ts (&op1->ts) && op2->ts.type == BT_HOLLERITH)
4209 convert_to_numeric (op2, op1);
4210
4211 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4212 {
4213 gfc_type_convert_binary (e, 1);
4214
4215 e->ts.type = BT_LOGICAL;
4216 e->ts.kind = gfc_default_logical_kind;
4217
4218 if (warn_compare_reals)
4219 {
4220 gfc_intrinsic_op op = e->value.op.op;
4221
4222 /* Type conversion has made sure that the types of op1 and op2
4223 agree, so it is only necessary to check the first one. */
4224 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
4225 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
4226 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
4227 {
4228 const char *msg;
4229
4230 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4231 msg = "Equality comparison for %s at %L";
4232 else
4233 msg = "Inequality comparison for %s at %L";
4234
4235 gfc_warning (OPT_Wcompare_reals, msg,
4236 gfc_typename (op1), &op1->where);
4237 }
4238 }
4239
4240 break;
4241 }
4242
4243 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4244 sprintf (msg,
4245 _("Logicals at %%L must be compared with %s instead of %s"),
4246 (e->value.op.op == INTRINSIC_EQ
4247 || e->value.op.op == INTRINSIC_EQ_OS)
4248 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4249 else
4250 sprintf (msg,
4251 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4252 gfc_op2string (e->value.op.op), gfc_typename (op1),
4253 gfc_typename (op2));
4254
4255 goto bad_op;
4256
4257 case INTRINSIC_USER:
4258 if (e->value.op.uop->op == NULL)
4259 {
4260 const char *name = e->value.op.uop->name;
4261 const char *guessed;
4262 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4263 if (guessed)
4264 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4265 name, guessed);
4266 else
4267 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4268 }
4269 else if (op2 == NULL)
4270 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4271 e->value.op.uop->name, gfc_typename (op1));
4272 else
4273 {
4274 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4275 e->value.op.uop->name, gfc_typename (op1),
4276 gfc_typename (op2));
4277 e->value.op.uop->op->sym->attr.referenced = 1;
4278 }
4279
4280 goto bad_op;
4281
4282 case INTRINSIC_PARENTHESES:
4283 e->ts = op1->ts;
4284 if (e->ts.type == BT_CHARACTER)
4285 e->ts.u.cl = op1->ts.u.cl;
4286 break;
4287
4288 default:
4289 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4290 }
4291
4292 /* Deal with arrayness of an operand through an operator. */
4293
4294 switch (e->value.op.op)
4295 {
4296 case INTRINSIC_PLUS:
4297 case INTRINSIC_MINUS:
4298 case INTRINSIC_TIMES:
4299 case INTRINSIC_DIVIDE:
4300 case INTRINSIC_POWER:
4301 case INTRINSIC_CONCAT:
4302 case INTRINSIC_AND:
4303 case INTRINSIC_OR:
4304 case INTRINSIC_EQV:
4305 case INTRINSIC_NEQV:
4306 case INTRINSIC_EQ:
4307 case INTRINSIC_EQ_OS:
4308 case INTRINSIC_NE:
4309 case INTRINSIC_NE_OS:
4310 case INTRINSIC_GT:
4311 case INTRINSIC_GT_OS:
4312 case INTRINSIC_GE:
4313 case INTRINSIC_GE_OS:
4314 case INTRINSIC_LT:
4315 case INTRINSIC_LT_OS:
4316 case INTRINSIC_LE:
4317 case INTRINSIC_LE_OS:
4318
4319 if (op1->rank == 0 && op2->rank == 0)
4320 e->rank = 0;
4321
4322 if (op1->rank == 0 && op2->rank != 0)
4323 {
4324 e->rank = op2->rank;
4325
4326 if (e->shape == NULL)
4327 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4328 }
4329
4330 if (op1->rank != 0 && op2->rank == 0)
4331 {
4332 e->rank = op1->rank;
4333
4334 if (e->shape == NULL)
4335 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4336 }
4337
4338 if (op1->rank != 0 && op2->rank != 0)
4339 {
4340 if (op1->rank == op2->rank)
4341 {
4342 e->rank = op1->rank;
4343 if (e->shape == NULL)
4344 {
4345 t = compare_shapes (op1, op2);
4346 if (!t)
4347 e->shape = NULL;
4348 else
4349 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4350 }
4351 }
4352 else
4353 {
4354 /* Allow higher level expressions to work. */
4355 e->rank = 0;
4356
4357 /* Try user-defined operators, and otherwise throw an error. */
4358 dual_locus_error = true;
4359 sprintf (msg,
4360 _("Inconsistent ranks for operator at %%L and %%L"));
4361 goto bad_op;
4362 }
4363 }
4364
4365 break;
4366
4367 case INTRINSIC_PARENTHESES:
4368 case INTRINSIC_NOT:
4369 case INTRINSIC_UPLUS:
4370 case INTRINSIC_UMINUS:
4371 /* Simply copy arrayness attribute */
4372 e->rank = op1->rank;
4373
4374 if (e->shape == NULL)
4375 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4376
4377 break;
4378
4379 default:
4380 break;
4381 }
4382
4383 simplify_op:
4384
4385 /* Attempt to simplify the expression. */
4386 if (t)
4387 {
4388 t = gfc_simplify_expr (e, 0);
4389 /* Some calls do not succeed in simplification and return false
4390 even though there is no error; e.g. variable references to
4391 PARAMETER arrays. */
4392 if (!gfc_is_constant_expr (e))
4393 t = true;
4394 }
4395 return t;
4396
4397 bad_op:
4398
4399 {
4400 match m = gfc_extend_expr (e);
4401 if (m == MATCH_YES)
4402 return true;
4403 if (m == MATCH_ERROR)
4404 return false;
4405 }
4406
4407 if (dual_locus_error)
4408 gfc_error (msg, &op1->where, &op2->where);
4409 else
4410 gfc_error (msg, &e->where);
4411
4412 return false;
4413 }
4414
4415
4416 /************** Array resolution subroutines **************/
4417
4418 enum compare_result
4419 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4420
4421 /* Compare two integer expressions. */
4422
4423 static compare_result
4424 compare_bound (gfc_expr *a, gfc_expr *b)
4425 {
4426 int i;
4427
4428 if (a == NULL || a->expr_type != EXPR_CONSTANT
4429 || b == NULL || b->expr_type != EXPR_CONSTANT)
4430 return CMP_UNKNOWN;
4431
4432 /* If either of the types isn't INTEGER, we must have
4433 raised an error earlier. */
4434
4435 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4436 return CMP_UNKNOWN;
4437
4438 i = mpz_cmp (a->value.integer, b->value.integer);
4439
4440 if (i < 0)
4441 return CMP_LT;
4442 if (i > 0)
4443 return CMP_GT;
4444 return CMP_EQ;
4445 }
4446
4447
4448 /* Compare an integer expression with an integer. */
4449
4450 static compare_result
4451 compare_bound_int (gfc_expr *a, int b)
4452 {
4453 int i;
4454
4455 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4456 return CMP_UNKNOWN;
4457
4458 if (a->ts.type != BT_INTEGER)
4459 gfc_internal_error ("compare_bound_int(): Bad expression");
4460
4461 i = mpz_cmp_si (a->value.integer, b);
4462
4463 if (i < 0)
4464 return CMP_LT;
4465 if (i > 0)
4466 return CMP_GT;
4467 return CMP_EQ;
4468 }
4469
4470
4471 /* Compare an integer expression with a mpz_t. */
4472
4473 static compare_result
4474 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4475 {
4476 int i;
4477
4478 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4479 return CMP_UNKNOWN;
4480
4481 if (a->ts.type != BT_INTEGER)
4482 gfc_internal_error ("compare_bound_int(): Bad expression");
4483
4484 i = mpz_cmp (a->value.integer, b);
4485
4486 if (i < 0)
4487 return CMP_LT;
4488 if (i > 0)
4489 return CMP_GT;
4490 return CMP_EQ;
4491 }
4492
4493
4494 /* Compute the last value of a sequence given by a triplet.
4495 Return 0 if it wasn't able to compute the last value, or if the
4496 sequence if empty, and 1 otherwise. */
4497
4498 static int
4499 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4500 gfc_expr *stride, mpz_t last)
4501 {
4502 mpz_t rem;
4503
4504 if (start == NULL || start->expr_type != EXPR_CONSTANT
4505 || end == NULL || end->expr_type != EXPR_CONSTANT
4506 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4507 return 0;
4508
4509 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4510 || (stride != NULL && stride->ts.type != BT_INTEGER))
4511 return 0;
4512
4513 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4514 {
4515 if (compare_bound (start, end) == CMP_GT)
4516 return 0;
4517 mpz_set (last, end->value.integer);
4518 return 1;
4519 }
4520
4521 if (compare_bound_int (stride, 0) == CMP_GT)
4522 {
4523 /* Stride is positive */
4524 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4525 return 0;
4526 }
4527 else
4528 {
4529 /* Stride is negative */
4530 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4531 return 0;
4532 }
4533
4534 mpz_init (rem);
4535 mpz_sub (rem, end->value.integer, start->value.integer);
4536 mpz_tdiv_r (rem, rem, stride->value.integer);
4537 mpz_sub (last, end->value.integer, rem);
4538 mpz_clear (rem);
4539
4540 return 1;
4541 }
4542
4543
4544 /* Compare a single dimension of an array reference to the array
4545 specification. */
4546
4547 static bool
4548 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4549 {
4550 mpz_t last_value;
4551
4552 if (ar->dimen_type[i] == DIMEN_STAR)
4553 {
4554 gcc_assert (ar->stride[i] == NULL);
4555 /* This implies [*] as [*:] and [*:3] are not possible. */
4556 if (ar->start[i] == NULL)
4557 {
4558 gcc_assert (ar->end[i] == NULL);
4559 return true;
4560 }
4561 }
4562
4563 /* Given start, end and stride values, calculate the minimum and
4564 maximum referenced indexes. */
4565
4566 switch (ar->dimen_type[i])
4567 {
4568 case DIMEN_VECTOR:
4569 case DIMEN_THIS_IMAGE:
4570 break;
4571
4572 case DIMEN_STAR:
4573 case DIMEN_ELEMENT:
4574 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4575 {
4576 if (i < as->rank)
4577 gfc_warning (0, "Array reference at %L is out of bounds "
4578 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4579 mpz_get_si (ar->start[i]->value.integer),
4580 mpz_get_si (as->lower[i]->value.integer), i+1);
4581 else
4582 gfc_warning (0, "Array reference at %L is out of bounds "
4583 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4584 mpz_get_si (ar->start[i]->value.integer),
4585 mpz_get_si (as->lower[i]->value.integer),
4586 i + 1 - as->rank);
4587 return true;
4588 }
4589 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4590 {
4591 if (i < as->rank)
4592 gfc_warning (0, "Array reference at %L is out of bounds "
4593 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4594 mpz_get_si (ar->start[i]->value.integer),
4595 mpz_get_si (as->upper[i]->value.integer), i+1);
4596 else
4597 gfc_warning (0, "Array reference at %L is out of bounds "
4598 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4599 mpz_get_si (ar->start[i]->value.integer),
4600 mpz_get_si (as->upper[i]->value.integer),
4601 i + 1 - as->rank);
4602 return true;
4603 }
4604
4605 break;
4606
4607 case DIMEN_RANGE:
4608 {
4609 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4610 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4611
4612 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4613
4614 /* Check for zero stride, which is not allowed. */
4615 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4616 {
4617 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4618 return false;
4619 }
4620
4621 /* if start == len || (stride > 0 && start < len)
4622 || (stride < 0 && start > len),
4623 then the array section contains at least one element. In this
4624 case, there is an out-of-bounds access if
4625 (start < lower || start > upper). */
4626 if (compare_bound (AR_START, AR_END) == CMP_EQ
4627 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4628 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4629 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4630 && comp_start_end == CMP_GT))
4631 {
4632 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4633 {
4634 gfc_warning (0, "Lower array reference at %L is out of bounds "
4635 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4636 mpz_get_si (AR_START->value.integer),
4637 mpz_get_si (as->lower[i]->value.integer), i+1);
4638 return true;
4639 }
4640 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4641 {
4642 gfc_warning (0, "Lower array reference at %L is out of bounds "
4643 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4644 mpz_get_si (AR_START->value.integer),
4645 mpz_get_si (as->upper[i]->value.integer), i+1);
4646 return true;
4647 }
4648 }
4649
4650 /* If we can compute the highest index of the array section,
4651 then it also has to be between lower and upper. */
4652 mpz_init (last_value);
4653 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4654 last_value))
4655 {
4656 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4657 {
4658 gfc_warning (0, "Upper array reference at %L is out of bounds "
4659 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4660 mpz_get_si (last_value),
4661 mpz_get_si (as->lower[i]->value.integer), i+1);
4662 mpz_clear (last_value);
4663 return true;
4664 }
4665 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4666 {
4667 gfc_warning (0, "Upper array reference at %L is out of bounds "
4668 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4669 mpz_get_si (last_value),
4670 mpz_get_si (as->upper[i]->value.integer), i+1);
4671 mpz_clear (last_value);
4672 return true;
4673 }
4674 }
4675 mpz_clear (last_value);
4676
4677 #undef AR_START
4678 #undef AR_END
4679 }
4680 break;
4681
4682 default:
4683 gfc_internal_error ("check_dimension(): Bad array reference");
4684 }
4685
4686 return true;
4687 }
4688
4689
4690 /* Compare an array reference with an array specification. */
4691
4692 static bool
4693 compare_spec_to_ref (gfc_array_ref *ar)
4694 {
4695 gfc_array_spec *as;
4696 int i;
4697
4698 as = ar->as;
4699 i = as->rank - 1;
4700 /* TODO: Full array sections are only allowed as actual parameters. */
4701 if (as->type == AS_ASSUMED_SIZE
4702 && (/*ar->type == AR_FULL
4703 ||*/ (ar->type == AR_SECTION
4704 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4705 {
4706 gfc_error ("Rightmost upper bound of assumed size array section "
4707 "not specified at %L", &ar->where);
4708 return false;
4709 }
4710
4711 if (ar->type == AR_FULL)
4712 return true;
4713
4714 if (as->rank != ar->dimen)
4715 {
4716 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4717 &ar->where, ar->dimen, as->rank);
4718 return false;
4719 }
4720
4721 /* ar->codimen == 0 is a local array. */
4722 if (as->corank != ar->codimen && ar->codimen != 0)
4723 {
4724 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4725 &ar->where, ar->codimen, as->corank);
4726 return false;
4727 }
4728
4729 for (i = 0; i < as->rank; i++)
4730 if (!check_dimension (i, ar, as))
4731 return false;
4732
4733 /* Local access has no coarray spec. */
4734 if (ar->codimen != 0)
4735 for (i = as->rank; i < as->rank + as->corank; i++)
4736 {
4737 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4738 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4739 {
4740 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4741 i + 1 - as->rank, &ar->where);
4742 return false;
4743 }
4744 if (!check_dimension (i, ar, as))
4745 return false;
4746 }
4747
4748 return true;
4749 }
4750
4751
4752 /* Resolve one part of an array index. */
4753
4754 static bool
4755 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4756 int force_index_integer_kind)
4757 {
4758 gfc_typespec ts;
4759
4760 if (index == NULL)
4761 return true;
4762
4763 if (!gfc_resolve_expr (index))
4764 return false;
4765
4766 if (check_scalar && index->rank != 0)
4767 {
4768 gfc_error ("Array index at %L must be scalar", &index->where);
4769 return false;
4770 }
4771
4772 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4773 {
4774 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4775 &index->where, gfc_basic_typename (index->ts.type));
4776 return false;
4777 }
4778
4779 if (index->ts.type == BT_REAL)
4780 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4781 &index->where))
4782 return false;
4783
4784 if ((index->ts.kind != gfc_index_integer_kind
4785 && force_index_integer_kind)
4786 || index->ts.type != BT_INTEGER)
4787 {
4788 gfc_clear_ts (&ts);
4789 ts.type = BT_INTEGER;
4790 ts.kind = gfc_index_integer_kind;
4791
4792 gfc_convert_type_warn (index, &ts, 2, 0);
4793 }
4794
4795 return true;
4796 }
4797
4798 /* Resolve one part of an array index. */
4799
4800 bool
4801 gfc_resolve_index (gfc_expr *index, int check_scalar)
4802 {
4803 return gfc_resolve_index_1 (index, check_scalar, 1);
4804 }
4805
4806 /* Resolve a dim argument to an intrinsic function. */
4807
4808 bool
4809 gfc_resolve_dim_arg (gfc_expr *dim)
4810 {
4811 if (dim == NULL)
4812 return true;
4813
4814 if (!gfc_resolve_expr (dim))
4815 return false;
4816
4817 if (dim->rank != 0)
4818 {
4819 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4820 return false;
4821
4822 }
4823
4824 if (dim->ts.type != BT_INTEGER)
4825 {
4826 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4827 return false;
4828 }
4829
4830 if (dim->ts.kind != gfc_index_integer_kind)
4831 {
4832 gfc_typespec ts;
4833
4834 gfc_clear_ts (&ts);
4835 ts.type = BT_INTEGER;
4836 ts.kind = gfc_index_integer_kind;
4837
4838 gfc_convert_type_warn (dim, &ts, 2, 0);
4839 }
4840
4841 return true;
4842 }
4843
4844 /* Given an expression that contains array references, update those array
4845 references to point to the right array specifications. While this is
4846 filled in during matching, this information is difficult to save and load
4847 in a module, so we take care of it here.
4848
4849 The idea here is that the original array reference comes from the
4850 base symbol. We traverse the list of reference structures, setting
4851 the stored reference to references. Component references can
4852 provide an additional array specification. */
4853
4854 static void
4855 find_array_spec (gfc_expr *e)
4856 {
4857 gfc_array_spec *as;
4858 gfc_component *c;
4859 gfc_ref *ref;
4860 bool class_as = false;
4861
4862 if (e->symtree->n.sym->ts.type == BT_CLASS)
4863 {
4864 as = CLASS_DATA (e->symtree->n.sym)->as;
4865 class_as = true;
4866 }
4867 else
4868 as = e->symtree->n.sym->as;
4869
4870 for (ref = e->ref; ref; ref = ref->next)
4871 switch (ref->type)
4872 {
4873 case REF_ARRAY:
4874 if (as == NULL)
4875 gfc_internal_error ("find_array_spec(): Missing spec");
4876
4877 ref->u.ar.as = as;
4878 as = NULL;
4879 break;
4880
4881 case REF_COMPONENT:
4882 c = ref->u.c.component;
4883 if (c->attr.dimension)
4884 {
4885 if (as != NULL && !(class_as && as == c->as))
4886 gfc_internal_error ("find_array_spec(): unused as(1)");
4887 as = c->as;
4888 }
4889
4890 break;
4891
4892 case REF_SUBSTRING:
4893 case REF_INQUIRY:
4894 break;
4895 }
4896
4897 if (as != NULL)
4898 gfc_internal_error ("find_array_spec(): unused as(2)");
4899 }
4900
4901
4902 /* Resolve an array reference. */
4903
4904 static bool
4905 resolve_array_ref (gfc_array_ref *ar)
4906 {
4907 int i, check_scalar;
4908 gfc_expr *e;
4909
4910 for (i = 0; i < ar->dimen + ar->codimen; i++)
4911 {
4912 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4913
4914 /* Do not force gfc_index_integer_kind for the start. We can
4915 do fine with any integer kind. This avoids temporary arrays
4916 created for indexing with a vector. */
4917 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4918 return false;
4919 if (!gfc_resolve_index (ar->end[i], check_scalar))
4920 return false;
4921 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4922 return false;
4923
4924 e = ar->start[i];
4925
4926 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4927 switch (e->rank)
4928 {
4929 case 0:
4930 ar->dimen_type[i] = DIMEN_ELEMENT;
4931 break;
4932
4933 case 1:
4934 ar->dimen_type[i] = DIMEN_VECTOR;
4935 if (e->expr_type == EXPR_VARIABLE
4936 && e->symtree->n.sym->ts.type == BT_DERIVED)
4937 ar->start[i] = gfc_get_parentheses (e);
4938 break;
4939
4940 default:
4941 gfc_error ("Array index at %L is an array of rank %d",
4942 &ar->c_where[i], e->rank);
4943 return false;
4944 }
4945
4946 /* Fill in the upper bound, which may be lower than the
4947 specified one for something like a(2:10:5), which is
4948 identical to a(2:7:5). Only relevant for strides not equal
4949 to one. Don't try a division by zero. */
4950 if (ar->dimen_type[i] == DIMEN_RANGE
4951 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4952 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4953 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4954 {
4955 mpz_t size, end;
4956
4957 if (gfc_ref_dimen_size (ar, i, &size, &end))
4958 {
4959 if (ar->end[i] == NULL)
4960 {
4961 ar->end[i] =
4962 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4963 &ar->where);
4964 mpz_set (ar->end[i]->value.integer, end);
4965 }
4966 else if (ar->end[i]->ts.type == BT_INTEGER
4967 && ar->end[i]->expr_type == EXPR_CONSTANT)
4968 {
4969 mpz_set (ar->end[i]->value.integer, end);
4970 }
4971 else
4972 gcc_unreachable ();
4973
4974 mpz_clear (size);
4975 mpz_clear (end);
4976 }
4977 }
4978 }
4979
4980 if (ar->type == AR_FULL)
4981 {
4982 if (ar->as->rank == 0)
4983 ar->type = AR_ELEMENT;
4984
4985 /* Make sure array is the same as array(:,:), this way
4986 we don't need to special case all the time. */
4987 ar->dimen = ar->as->rank;
4988 for (i = 0; i < ar->dimen; i++)
4989 {
4990 ar->dimen_type[i] = DIMEN_RANGE;
4991
4992 gcc_assert (ar->start[i] == NULL);
4993 gcc_assert (ar->end[i] == NULL);
4994 gcc_assert (ar->stride[i] == NULL);
4995 }
4996 }
4997
4998 /* If the reference type is unknown, figure out what kind it is. */
4999
5000 if (ar->type == AR_UNKNOWN)
5001 {
5002 ar->type = AR_ELEMENT;
5003 for (i = 0; i < ar->dimen; i++)
5004 if (ar->dimen_type[i] == DIMEN_RANGE
5005 || ar->dimen_type[i] == DIMEN_VECTOR)
5006 {
5007 ar->type = AR_SECTION;
5008 break;
5009 }
5010 }
5011
5012 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
5013 return false;
5014
5015 if (ar->as->corank && ar->codimen == 0)
5016 {
5017 int n;
5018 ar->codimen = ar->as->corank;
5019 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
5020 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
5021 }
5022
5023 return true;
5024 }
5025
5026
5027 static bool
5028 resolve_substring (gfc_ref *ref, bool *equal_length)
5029 {
5030 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
5031
5032 if (ref->u.ss.start != NULL)
5033 {
5034 if (!gfc_resolve_expr (ref->u.ss.start))
5035 return false;
5036
5037 if (ref->u.ss.start->ts.type != BT_INTEGER)
5038 {
5039 gfc_error ("Substring start index at %L must be of type INTEGER",
5040 &ref->u.ss.start->where);
5041 return false;
5042 }
5043
5044 if (ref->u.ss.start->rank != 0)
5045 {
5046 gfc_error ("Substring start index at %L must be scalar",
5047 &ref->u.ss.start->where);
5048 return false;
5049 }
5050
5051 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
5052 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5053 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5054 {
5055 gfc_error ("Substring start index at %L is less than one",
5056 &ref->u.ss.start->where);
5057 return false;
5058 }
5059 }
5060
5061 if (ref->u.ss.end != NULL)
5062 {
5063 if (!gfc_resolve_expr (ref->u.ss.end))
5064 return false;
5065
5066 if (ref->u.ss.end->ts.type != BT_INTEGER)
5067 {
5068 gfc_error ("Substring end index at %L must be of type INTEGER",
5069 &ref->u.ss.end->where);
5070 return false;
5071 }
5072
5073 if (ref->u.ss.end->rank != 0)
5074 {
5075 gfc_error ("Substring end index at %L must be scalar",
5076 &ref->u.ss.end->where);
5077 return false;
5078 }
5079
5080 if (ref->u.ss.length != NULL
5081 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
5082 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5083 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5084 {
5085 gfc_error ("Substring end index at %L exceeds the string length",
5086 &ref->u.ss.start->where);
5087 return false;
5088 }
5089
5090 if (compare_bound_mpz_t (ref->u.ss.end,
5091 gfc_integer_kinds[k].huge) == CMP_GT
5092 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5093 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5094 {
5095 gfc_error ("Substring end index at %L is too large",
5096 &ref->u.ss.end->where);
5097 return false;
5098 }
5099 /* If the substring has the same length as the original
5100 variable, the reference itself can be deleted. */
5101
5102 if (ref->u.ss.length != NULL
5103 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_EQ
5104 && compare_bound_int (ref->u.ss.start, 1) == CMP_EQ)
5105 *equal_length = true;
5106 }
5107
5108 return true;
5109 }
5110
5111
5112 /* This function supplies missing substring charlens. */
5113
5114 void
5115 gfc_resolve_substring_charlen (gfc_expr *e)
5116 {
5117 gfc_ref *char_ref;
5118 gfc_expr *start, *end;
5119 gfc_typespec *ts = NULL;
5120 mpz_t diff;
5121
5122 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
5123 {
5124 if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
5125 break;
5126 if (char_ref->type == REF_COMPONENT)
5127 ts = &char_ref->u.c.component->ts;
5128 }
5129
5130 if (!char_ref || char_ref->type == REF_INQUIRY)
5131 return;
5132
5133 gcc_assert (char_ref->next == NULL);
5134
5135 if (e->ts.u.cl)
5136 {
5137 if (e->ts.u.cl->length)
5138 gfc_free_expr (e->ts.u.cl->length);
5139 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
5140 return;
5141 }
5142
5143 e->ts.type = BT_CHARACTER;
5144 e->ts.kind = gfc_default_character_kind;
5145
5146 if (!e->ts.u.cl)
5147 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5148
5149 if (char_ref->u.ss.start)
5150 start = gfc_copy_expr (char_ref->u.ss.start);
5151 else
5152 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
5153
5154 if (char_ref->u.ss.end)
5155 end = gfc_copy_expr (char_ref->u.ss.end);
5156 else if (e->expr_type == EXPR_VARIABLE)
5157 {
5158 if (!ts)
5159 ts = &e->symtree->n.sym->ts;
5160 end = gfc_copy_expr (ts->u.cl->length);
5161 }
5162 else
5163 end = NULL;
5164
5165 if (!start || !end)
5166 {
5167 gfc_free_expr (start);
5168 gfc_free_expr (end);
5169 return;
5170 }
5171
5172 /* Length = (end - start + 1).
5173 Check first whether it has a constant length. */
5174 if (gfc_dep_difference (end, start, &diff))
5175 {
5176 gfc_expr *len = gfc_get_constant_expr (BT_INTEGER, gfc_charlen_int_kind,
5177 &e->where);
5178
5179 mpz_add_ui (len->value.integer, diff, 1);
5180 mpz_clear (diff);
5181 e->ts.u.cl->length = len;
5182 /* The check for length < 0 is handled below */
5183 }
5184 else
5185 {
5186 e->ts.u.cl->length = gfc_subtract (end, start);
5187 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
5188 gfc_get_int_expr (gfc_charlen_int_kind,
5189 NULL, 1));
5190 }
5191
5192 /* F2008, 6.4.1: Both the starting point and the ending point shall
5193 be within the range 1, 2, ..., n unless the starting point exceeds
5194 the ending point, in which case the substring has length zero. */
5195
5196 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
5197 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
5198
5199 e->ts.u.cl->length->ts.type = BT_INTEGER;
5200 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5201
5202 /* Make sure that the length is simplified. */
5203 gfc_simplify_expr (e->ts.u.cl->length, 1);
5204 gfc_resolve_expr (e->ts.u.cl->length);
5205 }
5206
5207
5208 /* Resolve subtype references. */
5209
5210 bool
5211 gfc_resolve_ref (gfc_expr *expr)
5212 {
5213 int current_part_dimension, n_components, seen_part_dimension, dim;
5214 gfc_ref *ref, **prev, *array_ref;
5215 bool equal_length;
5216
5217 for (ref = expr->ref; ref; ref = ref->next)
5218 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
5219 {
5220 find_array_spec (expr);
5221 break;
5222 }
5223
5224 for (prev = &expr->ref; *prev != NULL;
5225 prev = *prev == NULL ? prev : &(*prev)->next)
5226 switch ((*prev)->type)
5227 {
5228 case REF_ARRAY:
5229 if (!resolve_array_ref (&(*prev)->u.ar))
5230 return false;
5231 break;
5232
5233 case REF_COMPONENT:
5234 case REF_INQUIRY:
5235 break;
5236
5237 case REF_SUBSTRING:
5238 equal_length = false;
5239 if (!resolve_substring (*prev, &equal_length))
5240 return false;
5241
5242 if (expr->expr_type != EXPR_SUBSTRING && equal_length)
5243 {
5244 /* Remove the reference and move the charlen, if any. */
5245 ref = *prev;
5246 *prev = ref->next;
5247 ref->next = NULL;
5248 expr->ts.u.cl = ref->u.ss.length;
5249 ref->u.ss.length = NULL;
5250 gfc_free_ref_list (ref);
5251 }
5252 break;
5253 }
5254
5255 /* Check constraints on part references. */
5256
5257 current_part_dimension = 0;
5258 seen_part_dimension = 0;
5259 n_components = 0;
5260 array_ref = NULL;
5261
5262 for (ref = expr->ref; ref; ref = ref->next)
5263 {
5264 switch (ref->type)
5265 {
5266 case REF_ARRAY:
5267 array_ref = ref;
5268 switch (ref->u.ar.type)
5269 {
5270 case AR_FULL:
5271 /* Coarray scalar. */
5272 if (ref->u.ar.as->rank == 0)
5273 {
5274 current_part_dimension = 0;
5275 break;
5276 }
5277 /* Fall through. */
5278 case AR_SECTION:
5279 current_part_dimension = 1;
5280 break;
5281
5282 case AR_ELEMENT:
5283 array_ref = NULL;
5284 current_part_dimension = 0;
5285 break;
5286
5287 case AR_UNKNOWN:
5288 gfc_internal_error ("resolve_ref(): Bad array reference");
5289 }
5290
5291 break;
5292
5293 case REF_COMPONENT:
5294 if (current_part_dimension || seen_part_dimension)
5295 {
5296 /* F03:C614. */
5297 if (ref->u.c.component->attr.pointer
5298 || ref->u.c.component->attr.proc_pointer
5299 || (ref->u.c.component->ts.type == BT_CLASS
5300 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5301 {
5302 gfc_error ("Component to the right of a part reference "
5303 "with nonzero rank must not have the POINTER "
5304 "attribute at %L", &expr->where);
5305 return false;
5306 }
5307 else if (ref->u.c.component->attr.allocatable
5308 || (ref->u.c.component->ts.type == BT_CLASS
5309 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5310
5311 {
5312 gfc_error ("Component to the right of a part reference "
5313 "with nonzero rank must not have the ALLOCATABLE "
5314 "attribute at %L", &expr->where);
5315 return false;
5316 }
5317 }
5318
5319 n_components++;
5320 break;
5321
5322 case REF_SUBSTRING:
5323 break;
5324
5325 case REF_INQUIRY:
5326 /* Implement requirement in note 9.7 of F2018 that the result of the
5327 LEN inquiry be a scalar. */
5328 if (ref->u.i == INQUIRY_LEN && array_ref && expr->ts.deferred)
5329 {
5330 array_ref->u.ar.type = AR_ELEMENT;
5331 expr->rank = 0;
5332 /* INQUIRY_LEN is not evaluated from the rest of the expr
5333 but directly from the string length. This means that setting
5334 the array indices to one does not matter but might trigger
5335 a runtime bounds error. Suppress the check. */
5336 expr->no_bounds_check = 1;
5337 for (dim = 0; dim < array_ref->u.ar.dimen; dim++)
5338 {
5339 array_ref->u.ar.dimen_type[dim] = DIMEN_ELEMENT;
5340 if (array_ref->u.ar.start[dim])
5341 gfc_free_expr (array_ref->u.ar.start[dim]);
5342 array_ref->u.ar.start[dim]
5343 = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
5344 if (array_ref->u.ar.end[dim])
5345 gfc_free_expr (array_ref->u.ar.end[dim]);
5346 if (array_ref->u.ar.stride[dim])
5347 gfc_free_expr (array_ref->u.ar.stride[dim]);
5348 }
5349 }
5350 break;
5351 }
5352
5353 if (((ref->type == REF_COMPONENT && n_components > 1)
5354 || ref->next == NULL)
5355 && current_part_dimension
5356 && seen_part_dimension)
5357 {
5358 gfc_error ("Two or more part references with nonzero rank must "
5359 "not be specified at %L", &expr->where);
5360 return false;
5361 }
5362
5363 if (ref->type == REF_COMPONENT)
5364 {
5365 if (current_part_dimension)
5366 seen_part_dimension = 1;
5367
5368 /* reset to make sure */
5369 current_part_dimension = 0;
5370 }
5371 }
5372
5373 return true;
5374 }
5375
5376
5377 /* Given an expression, determine its shape. This is easier than it sounds.
5378 Leaves the shape array NULL if it is not possible to determine the shape. */
5379
5380 static void
5381 expression_shape (gfc_expr *e)
5382 {
5383 mpz_t array[GFC_MAX_DIMENSIONS];
5384 int i;
5385
5386 if (e->rank <= 0 || e->shape != NULL)
5387 return;
5388
5389 for (i = 0; i < e->rank; i++)
5390 if (!gfc_array_dimen_size (e, i, &array[i]))
5391 goto fail;
5392
5393 e->shape = gfc_get_shape (e->rank);
5394
5395 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5396
5397 return;
5398
5399 fail:
5400 for (i--; i >= 0; i--)
5401 mpz_clear (array[i]);
5402 }
5403
5404
5405 /* Given a variable expression node, compute the rank of the expression by
5406 examining the base symbol and any reference structures it may have. */
5407
5408 void
5409 gfc_expression_rank (gfc_expr *e)
5410 {
5411 gfc_ref *ref;
5412 int i, rank;
5413
5414 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5415 could lead to serious confusion... */
5416 gcc_assert (e->expr_type != EXPR_COMPCALL);
5417
5418 if (e->ref == NULL)
5419 {
5420 if (e->expr_type == EXPR_ARRAY)
5421 goto done;
5422 /* Constructors can have a rank different from one via RESHAPE(). */
5423
5424 e->rank = ((e->symtree == NULL || e->symtree->n.sym->as == NULL)
5425 ? 0 : e->symtree->n.sym->as->rank);
5426 goto done;
5427 }
5428
5429 rank = 0;
5430
5431 for (ref = e->ref; ref; ref = ref->next)
5432 {
5433 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5434 && ref->u.c.component->attr.function && !ref->next)
5435 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5436
5437 if (ref->type != REF_ARRAY)
5438 continue;
5439
5440 if (ref->u.ar.type == AR_FULL)
5441 {
5442 rank = ref->u.ar.as->rank;
5443 break;
5444 }
5445
5446 if (ref->u.ar.type == AR_SECTION)
5447 {
5448 /* Figure out the rank of the section. */
5449 if (rank != 0)
5450 gfc_internal_error ("gfc_expression_rank(): Two array specs");
5451
5452 for (i = 0; i < ref->u.ar.dimen; i++)
5453 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5454 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5455 rank++;
5456
5457 break;
5458 }
5459 }
5460
5461 e->rank = rank;
5462
5463 done:
5464 expression_shape (e);
5465 }
5466
5467
5468 static void
5469 add_caf_get_intrinsic (gfc_expr *e)
5470 {
5471 gfc_expr *wrapper, *tmp_expr;
5472 gfc_ref *ref;
5473 int n;
5474
5475 for (ref = e->ref; ref; ref = ref->next)
5476 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5477 break;
5478 if (ref == NULL)
5479 return;
5480
5481 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5482 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5483 return;
5484
5485 tmp_expr = XCNEW (gfc_expr);
5486 *tmp_expr = *e;
5487 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5488 "caf_get", tmp_expr->where, 1, tmp_expr);
5489 wrapper->ts = e->ts;
5490 wrapper->rank = e->rank;
5491 if (e->rank)
5492 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5493 *e = *wrapper;
5494 free (wrapper);
5495 }
5496
5497
5498 static void
5499 remove_caf_get_intrinsic (gfc_expr *e)
5500 {
5501 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5502 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5503 gfc_expr *e2 = e->value.function.actual->expr;
5504 e->value.function.actual->expr = NULL;
5505 gfc_free_actual_arglist (e->value.function.actual);
5506 gfc_free_shape (&e->shape, e->rank);
5507 *e = *e2;
5508 free (e2);
5509 }
5510
5511
5512 /* Resolve a variable expression. */
5513
5514 static bool
5515 resolve_variable (gfc_expr *e)
5516 {
5517 gfc_symbol *sym;
5518 bool t;
5519
5520 t = true;
5521
5522 if (e->symtree == NULL)
5523 return false;
5524 sym = e->symtree->n.sym;
5525
5526 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5527 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5528 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5529 {
5530 if (!actual_arg || inquiry_argument)
5531 {
5532 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5533 "be used as actual argument", sym->name, &e->where);
5534 return false;
5535 }
5536 }
5537 /* TS 29113, 407b. */
5538 else if (e->ts.type == BT_ASSUMED)
5539 {
5540 if (!actual_arg)
5541 {
5542 gfc_error ("Assumed-type variable %s at %L may only be used "
5543 "as actual argument", sym->name, &e->where);
5544 return false;
5545 }
5546 else if (inquiry_argument && !first_actual_arg)
5547 {
5548 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5549 for all inquiry functions in resolve_function; the reason is
5550 that the function-name resolution happens too late in that
5551 function. */
5552 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5553 "an inquiry function shall be the first argument",
5554 sym->name, &e->where);
5555 return false;
5556 }
5557 }
5558 /* TS 29113, C535b. */
5559 else if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5560 && CLASS_DATA (sym)->as
5561 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5562 || (sym->ts.type != BT_CLASS && sym->as
5563 && sym->as->type == AS_ASSUMED_RANK))
5564 && !sym->attr.select_rank_temporary)
5565 {
5566 if (!actual_arg
5567 && !(cs_base && cs_base->current
5568 && cs_base->current->op == EXEC_SELECT_RANK))
5569 {
5570 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5571 "actual argument", sym->name, &e->where);
5572 return false;
5573 }
5574 else if (inquiry_argument && !first_actual_arg)
5575 {
5576 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5577 for all inquiry functions in resolve_function; the reason is
5578 that the function-name resolution happens too late in that
5579 function. */
5580 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5581 "to an inquiry function shall be the first argument",
5582 sym->name, &e->where);
5583 return false;
5584 }
5585 }
5586
5587 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5588 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5589 && e->ref->next == NULL))
5590 {
5591 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5592 "a subobject reference", sym->name, &e->ref->u.ar.where);
5593 return false;
5594 }
5595 /* TS 29113, 407b. */
5596 else if (e->ts.type == BT_ASSUMED && e->ref
5597 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5598 && e->ref->next == NULL))
5599 {
5600 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5601 "reference", sym->name, &e->ref->u.ar.where);
5602 return false;
5603 }
5604
5605 /* TS 29113, C535b. */
5606 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5607 && CLASS_DATA (sym)->as
5608 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5609 || (sym->ts.type != BT_CLASS && sym->as
5610 && sym->as->type == AS_ASSUMED_RANK))
5611 && e->ref
5612 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5613 && e->ref->next == NULL))
5614 {
5615 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5616 "reference", sym->name, &e->ref->u.ar.where);
5617 return false;
5618 }
5619
5620 /* For variables that are used in an associate (target => object) where
5621 the object's basetype is array valued while the target is scalar,
5622 the ts' type of the component refs is still array valued, which
5623 can't be translated that way. */
5624 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5625 && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
5626 && CLASS_DATA (sym->assoc->target)->as)
5627 {
5628 gfc_ref *ref = e->ref;
5629 while (ref)
5630 {
5631 switch (ref->type)
5632 {
5633 case REF_COMPONENT:
5634 ref->u.c.sym = sym->ts.u.derived;
5635 /* Stop the loop. */
5636 ref = NULL;
5637 break;
5638 default:
5639 ref = ref->next;
5640 break;
5641 }
5642 }
5643 }
5644
5645 /* If this is an associate-name, it may be parsed with an array reference
5646 in error even though the target is scalar. Fail directly in this case.
5647 TODO Understand why class scalar expressions must be excluded. */
5648 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5649 {
5650 if (sym->ts.type == BT_CLASS)
5651 gfc_fix_class_refs (e);
5652 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5653 return false;
5654 else if (sym->attr.dimension && (!e->ref || e->ref->type != REF_ARRAY))
5655 {
5656 /* This can happen because the parser did not detect that the
5657 associate name is an array and the expression had no array
5658 part_ref. */
5659 gfc_ref *ref = gfc_get_ref ();
5660 ref->type = REF_ARRAY;
5661 ref->u.ar = *gfc_get_array_ref();
5662 ref->u.ar.type = AR_FULL;
5663 if (sym->as)
5664 {
5665 ref->u.ar.as = sym->as;
5666 ref->u.ar.dimen = sym->as->rank;
5667 }
5668 ref->next = e->ref;
5669 e->ref = ref;
5670
5671 }
5672 }
5673
5674 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5675 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5676
5677 /* On the other hand, the parser may not have known this is an array;
5678 in this case, we have to add a FULL reference. */
5679 if (sym->assoc && sym->attr.dimension && !e->ref)
5680 {
5681 e->ref = gfc_get_ref ();
5682 e->ref->type = REF_ARRAY;
5683 e->ref->u.ar.type = AR_FULL;
5684 e->ref->u.ar.dimen = 0;
5685 }
5686
5687 /* Like above, but for class types, where the checking whether an array
5688 ref is present is more complicated. Furthermore make sure not to add
5689 the full array ref to _vptr or _len refs. */
5690 if (sym->assoc && sym->ts.type == BT_CLASS
5691 && CLASS_DATA (sym)->attr.dimension
5692 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5693 {
5694 gfc_ref *ref, *newref;
5695
5696 newref = gfc_get_ref ();
5697 newref->type = REF_ARRAY;
5698 newref->u.ar.type = AR_FULL;
5699 newref->u.ar.dimen = 0;
5700 /* Because this is an associate var and the first ref either is a ref to
5701 the _data component or not, no traversal of the ref chain is
5702 needed. The array ref needs to be inserted after the _data ref,
5703 or when that is not present, which may happend for polymorphic
5704 types, then at the first position. */
5705 ref = e->ref;
5706 if (!ref)
5707 e->ref = newref;
5708 else if (ref->type == REF_COMPONENT
5709 && strcmp ("_data", ref->u.c.component->name) == 0)
5710 {
5711 if (!ref->next || ref->next->type != REF_ARRAY)
5712 {
5713 newref->next = ref->next;
5714 ref->next = newref;
5715 }
5716 else
5717 /* Array ref present already. */
5718 gfc_free_ref_list (newref);
5719 }
5720 else if (ref->type == REF_ARRAY)
5721 /* Array ref present already. */
5722 gfc_free_ref_list (newref);
5723 else
5724 {
5725 newref->next = ref;
5726 e->ref = newref;
5727 }
5728 }
5729
5730 if (e->ref && !gfc_resolve_ref (e))
5731 return false;
5732
5733 if (sym->attr.flavor == FL_PROCEDURE
5734 && (!sym->attr.function
5735 || (sym->attr.function && sym->result
5736 && sym->result->attr.proc_pointer
5737 && !sym->result->attr.function)))
5738 {
5739 e->ts.type = BT_PROCEDURE;
5740 goto resolve_procedure;
5741 }
5742
5743 if (sym->ts.type != BT_UNKNOWN)
5744 gfc_variable_attr (e, &e->ts);
5745 else if (sym->attr.flavor == FL_PROCEDURE
5746 && sym->attr.function && sym->result
5747 && sym->result->ts.type != BT_UNKNOWN
5748 && sym->result->attr.proc_pointer)
5749 e->ts = sym->result->ts;
5750 else
5751 {
5752 /* Must be a simple variable reference. */
5753 if (!gfc_set_default_type (sym, 1, sym->ns))
5754 return false;
5755 e->ts = sym->ts;
5756 }
5757
5758 if (check_assumed_size_reference (sym, e))
5759 return false;
5760
5761 /* Deal with forward references to entries during gfc_resolve_code, to
5762 satisfy, at least partially, 12.5.2.5. */
5763 if (gfc_current_ns->entries
5764 && current_entry_id == sym->entry_id
5765 && cs_base
5766 && cs_base->current
5767 && cs_base->current->op != EXEC_ENTRY)
5768 {
5769 gfc_entry_list *entry;
5770 gfc_formal_arglist *formal;
5771 int n;
5772 bool seen, saved_specification_expr;
5773
5774 /* If the symbol is a dummy... */
5775 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5776 {
5777 entry = gfc_current_ns->entries;
5778 seen = false;
5779
5780 /* ...test if the symbol is a parameter of previous entries. */
5781 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5782 for (formal = entry->sym->formal; formal; formal = formal->next)
5783 {
5784 if (formal->sym && sym->name == formal->sym->name)
5785 {
5786 seen = true;
5787 break;
5788 }
5789 }
5790
5791 /* If it has not been seen as a dummy, this is an error. */
5792 if (!seen)
5793 {
5794 if (specification_expr)
5795 gfc_error ("Variable %qs, used in a specification expression"
5796 ", is referenced at %L before the ENTRY statement "
5797 "in which it is a parameter",
5798 sym->name, &cs_base->current->loc);
5799 else
5800 gfc_error ("Variable %qs is used at %L before the ENTRY "
5801 "statement in which it is a parameter",
5802 sym->name, &cs_base->current->loc);
5803 t = false;
5804 }
5805 }
5806
5807 /* Now do the same check on the specification expressions. */
5808 saved_specification_expr = specification_expr;
5809 specification_expr = true;
5810 if (sym->ts.type == BT_CHARACTER
5811 && !gfc_resolve_expr (sym->ts.u.cl->length))
5812 t = false;
5813
5814 if (sym->as)
5815 for (n = 0; n < sym->as->rank; n++)
5816 {
5817 if (!gfc_resolve_expr (sym->as->lower[n]))
5818 t = false;
5819 if (!gfc_resolve_expr (sym->as->upper[n]))
5820 t = false;
5821 }
5822 specification_expr = saved_specification_expr;
5823
5824 if (t)
5825 /* Update the symbol's entry level. */
5826 sym->entry_id = current_entry_id + 1;
5827 }
5828
5829 /* If a symbol has been host_associated mark it. This is used latter,
5830 to identify if aliasing is possible via host association. */
5831 if (sym->attr.flavor == FL_VARIABLE
5832 && gfc_current_ns->parent
5833 && (gfc_current_ns->parent == sym->ns
5834 || (gfc_current_ns->parent->parent
5835 && gfc_current_ns->parent->parent == sym->ns)))
5836 sym->attr.host_assoc = 1;
5837
5838 if (gfc_current_ns->proc_name
5839 && sym->attr.dimension
5840 && (sym->ns != gfc_current_ns
5841 || sym->attr.use_assoc
5842 || sym->attr.in_common))
5843 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5844
5845 resolve_procedure:
5846 if (t && !resolve_procedure_expression (e))
5847 t = false;
5848
5849 /* F2008, C617 and C1229. */
5850 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5851 && gfc_is_coindexed (e))
5852 {
5853 gfc_ref *ref, *ref2 = NULL;
5854
5855 for (ref = e->ref; ref; ref = ref->next)
5856 {
5857 if (ref->type == REF_COMPONENT)
5858 ref2 = ref;
5859 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5860 break;
5861 }
5862
5863 for ( ; ref; ref = ref->next)
5864 if (ref->type == REF_COMPONENT)
5865 break;
5866
5867 /* Expression itself is not coindexed object. */
5868 if (ref && e->ts.type == BT_CLASS)
5869 {
5870 gfc_error ("Polymorphic subobject of coindexed object at %L",
5871 &e->where);
5872 t = false;
5873 }
5874
5875 /* Expression itself is coindexed object. */
5876 if (ref == NULL)
5877 {
5878 gfc_component *c;
5879 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5880 for ( ; c; c = c->next)
5881 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5882 {
5883 gfc_error ("Coindexed object with polymorphic allocatable "
5884 "subcomponent at %L", &e->where);
5885 t = false;
5886 break;
5887 }
5888 }
5889 }
5890
5891 if (t)
5892 gfc_expression_rank (e);
5893
5894 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5895 add_caf_get_intrinsic (e);
5896
5897 /* Simplify cases where access to a parameter array results in a
5898 single constant. Suppress errors since those will have been
5899 issued before, as warnings. */
5900 if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
5901 {
5902 gfc_push_suppress_errors ();
5903 gfc_simplify_expr (e, 1);
5904 gfc_pop_suppress_errors ();
5905 }
5906
5907 return t;
5908 }
5909
5910
5911 /* Checks to see that the correct symbol has been host associated.
5912 The only situation where this arises is that in which a twice
5913 contained function is parsed after the host association is made.
5914 Therefore, on detecting this, change the symbol in the expression
5915 and convert the array reference into an actual arglist if the old
5916 symbol is a variable. */
5917 static bool
5918 check_host_association (gfc_expr *e)
5919 {
5920 gfc_symbol *sym, *old_sym;
5921 gfc_symtree *st;
5922 int n;
5923 gfc_ref *ref;
5924 gfc_actual_arglist *arg, *tail = NULL;
5925 bool retval = e->expr_type == EXPR_FUNCTION;
5926
5927 /* If the expression is the result of substitution in
5928 interface.c(gfc_extend_expr) because there is no way in
5929 which the host association can be wrong. */
5930 if (e->symtree == NULL
5931 || e->symtree->n.sym == NULL
5932 || e->user_operator)
5933 return retval;
5934
5935 old_sym = e->symtree->n.sym;
5936
5937 if (gfc_current_ns->parent
5938 && old_sym->ns != gfc_current_ns)
5939 {
5940 /* Use the 'USE' name so that renamed module symbols are
5941 correctly handled. */
5942 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5943
5944 if (sym && old_sym != sym
5945 && sym->ts.type == old_sym->ts.type
5946 && sym->attr.flavor == FL_PROCEDURE
5947 && sym->attr.contained)
5948 {
5949 /* Clear the shape, since it might not be valid. */
5950 gfc_free_shape (&e->shape, e->rank);
5951
5952 /* Give the expression the right symtree! */
5953 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5954 gcc_assert (st != NULL);
5955
5956 if (old_sym->attr.flavor == FL_PROCEDURE
5957 || e->expr_type == EXPR_FUNCTION)
5958 {
5959 /* Original was function so point to the new symbol, since
5960 the actual argument list is already attached to the
5961 expression. */
5962 e->value.function.esym = NULL;
5963 e->symtree = st;
5964 }
5965 else
5966 {
5967 /* Original was variable so convert array references into
5968 an actual arglist. This does not need any checking now
5969 since resolve_function will take care of it. */
5970 e->value.function.actual = NULL;
5971 e->expr_type = EXPR_FUNCTION;
5972 e->symtree = st;
5973
5974 /* Ambiguity will not arise if the array reference is not
5975 the last reference. */
5976 for (ref = e->ref; ref; ref = ref->next)
5977 if (ref->type == REF_ARRAY && ref->next == NULL)
5978 break;
5979
5980 gcc_assert (ref->type == REF_ARRAY);
5981
5982 /* Grab the start expressions from the array ref and
5983 copy them into actual arguments. */
5984 for (n = 0; n < ref->u.ar.dimen; n++)
5985 {
5986 arg = gfc_get_actual_arglist ();
5987 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5988 if (e->value.function.actual == NULL)
5989 tail = e->value.function.actual = arg;
5990 else
5991 {
5992 tail->next = arg;
5993 tail = arg;
5994 }
5995 }
5996
5997 /* Dump the reference list and set the rank. */
5998 gfc_free_ref_list (e->ref);
5999 e->ref = NULL;
6000 e->rank = sym->as ? sym->as->rank : 0;
6001 }
6002
6003 gfc_resolve_expr (e);
6004 sym->refs++;
6005 }
6006 }
6007 /* This might have changed! */
6008 return e->expr_type == EXPR_FUNCTION;
6009 }
6010
6011
6012 static void
6013 gfc_resolve_character_operator (gfc_expr *e)
6014 {
6015 gfc_expr *op1 = e->value.op.op1;
6016 gfc_expr *op2 = e->value.op.op2;
6017 gfc_expr *e1 = NULL;
6018 gfc_expr *e2 = NULL;
6019
6020 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
6021
6022 if (op1->ts.u.cl && op1->ts.u.cl->length)
6023 e1 = gfc_copy_expr (op1->ts.u.cl->length);
6024 else if (op1->expr_type == EXPR_CONSTANT)
6025 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
6026 op1->value.character.length);
6027
6028 if (op2->ts.u.cl && op2->ts.u.cl->length)
6029 e2 = gfc_copy_expr (op2->ts.u.cl->length);
6030 else if (op2->expr_type == EXPR_CONSTANT)
6031 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
6032 op2->value.character.length);
6033
6034 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
6035
6036 if (!e1 || !e2)
6037 {
6038 gfc_free_expr (e1);
6039 gfc_free_expr (e2);
6040
6041 return;
6042 }
6043
6044 e->ts.u.cl->length = gfc_add (e1, e2);
6045 e->ts.u.cl->length->ts.type = BT_INTEGER;
6046 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
6047 gfc_simplify_expr (e->ts.u.cl->length, 0);
6048 gfc_resolve_expr (e->ts.u.cl->length);
6049
6050 return;
6051 }
6052
6053
6054 /* Ensure that an character expression has a charlen and, if possible, a
6055 length expression. */
6056
6057 static void
6058 fixup_charlen (gfc_expr *e)
6059 {
6060 /* The cases fall through so that changes in expression type and the need
6061 for multiple fixes are picked up. In all circumstances, a charlen should
6062 be available for the middle end to hang a backend_decl on. */
6063 switch (e->expr_type)
6064 {
6065 case EXPR_OP:
6066 gfc_resolve_character_operator (e);
6067 /* FALLTHRU */
6068
6069 case EXPR_ARRAY:
6070 if (e->expr_type == EXPR_ARRAY)
6071 gfc_resolve_character_array_constructor (e);
6072 /* FALLTHRU */
6073
6074 case EXPR_SUBSTRING:
6075 if (!e->ts.u.cl && e->ref)
6076 gfc_resolve_substring_charlen (e);
6077 /* FALLTHRU */
6078
6079 default:
6080 if (!e->ts.u.cl)
6081 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
6082
6083 break;
6084 }
6085 }
6086
6087
6088 /* Update an actual argument to include the passed-object for type-bound
6089 procedures at the right position. */
6090
6091 static gfc_actual_arglist*
6092 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
6093 const char *name)
6094 {
6095 gcc_assert (argpos > 0);
6096
6097 if (argpos == 1)
6098 {
6099 gfc_actual_arglist* result;
6100
6101 result = gfc_get_actual_arglist ();
6102 result->expr = po;
6103 result->next = lst;
6104 if (name)
6105 result->name = name;
6106
6107 return result;
6108 }
6109
6110 if (lst)
6111 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
6112 else
6113 lst = update_arglist_pass (NULL, po, argpos - 1, name);
6114 return lst;
6115 }
6116
6117
6118 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
6119
6120 static gfc_expr*
6121 extract_compcall_passed_object (gfc_expr* e)
6122 {
6123 gfc_expr* po;
6124
6125 if (e->expr_type == EXPR_UNKNOWN)
6126 {
6127 gfc_error ("Error in typebound call at %L",
6128 &e->where);
6129 return NULL;
6130 }
6131
6132 gcc_assert (e->expr_type == EXPR_COMPCALL);
6133
6134 if (e->value.compcall.base_object)
6135 po = gfc_copy_expr (e->value.compcall.base_object);
6136 else
6137 {
6138 po = gfc_get_expr ();
6139 po->expr_type = EXPR_VARIABLE;
6140 po->symtree = e->symtree;
6141 po->ref = gfc_copy_ref (e->ref);
6142 po->where = e->where;
6143 }
6144
6145 if (!gfc_resolve_expr (po))
6146 return NULL;
6147
6148 return po;
6149 }
6150
6151
6152 /* Update the arglist of an EXPR_COMPCALL expression to include the
6153 passed-object. */
6154
6155 static bool
6156 update_compcall_arglist (gfc_expr* e)
6157 {
6158 gfc_expr* po;
6159 gfc_typebound_proc* tbp;
6160
6161 tbp = e->value.compcall.tbp;
6162
6163 if (tbp->error)
6164 return false;
6165
6166 po = extract_compcall_passed_object (e);
6167 if (!po)
6168 return false;
6169
6170 if (tbp->nopass || e->value.compcall.ignore_pass)
6171 {
6172 gfc_free_expr (po);
6173 return true;
6174 }
6175
6176 if (tbp->pass_arg_num <= 0)
6177 return false;
6178
6179 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6180 tbp->pass_arg_num,
6181 tbp->pass_arg);
6182
6183 return true;
6184 }
6185
6186
6187 /* Extract the passed object from a PPC call (a copy of it). */
6188
6189 static gfc_expr*
6190 extract_ppc_passed_object (gfc_expr *e)
6191 {
6192 gfc_expr *po;
6193 gfc_ref **ref;
6194
6195 po = gfc_get_expr ();
6196 po->expr_type = EXPR_VARIABLE;
6197 po->symtree = e->symtree;
6198 po->ref = gfc_copy_ref (e->ref);
6199 po->where = e->where;
6200
6201 /* Remove PPC reference. */
6202 ref = &po->ref;
6203 while ((*ref)->next)
6204 ref = &(*ref)->next;
6205 gfc_free_ref_list (*ref);
6206 *ref = NULL;
6207
6208 if (!gfc_resolve_expr (po))
6209 return NULL;
6210
6211 return po;
6212 }
6213
6214
6215 /* Update the actual arglist of a procedure pointer component to include the
6216 passed-object. */
6217
6218 static bool
6219 update_ppc_arglist (gfc_expr* e)
6220 {
6221 gfc_expr* po;
6222 gfc_component *ppc;
6223 gfc_typebound_proc* tb;
6224
6225 ppc = gfc_get_proc_ptr_comp (e);
6226 if (!ppc)
6227 return false;
6228
6229 tb = ppc->tb;
6230
6231 if (tb->error)
6232 return false;
6233 else if (tb->nopass)
6234 return true;
6235
6236 po = extract_ppc_passed_object (e);
6237 if (!po)
6238 return false;
6239
6240 /* F08:R739. */
6241 if (po->rank != 0)
6242 {
6243 gfc_error ("Passed-object at %L must be scalar", &e->where);
6244 return false;
6245 }
6246
6247 /* F08:C611. */
6248 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
6249 {
6250 gfc_error ("Base object for procedure-pointer component call at %L is of"
6251 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
6252 return false;
6253 }
6254
6255 gcc_assert (tb->pass_arg_num > 0);
6256 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6257 tb->pass_arg_num,
6258 tb->pass_arg);
6259
6260 return true;
6261 }
6262
6263
6264 /* Check that the object a TBP is called on is valid, i.e. it must not be
6265 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
6266
6267 static bool
6268 check_typebound_baseobject (gfc_expr* e)
6269 {
6270 gfc_expr* base;
6271 bool return_value = false;
6272
6273 base = extract_compcall_passed_object (e);
6274 if (!base)
6275 return false;
6276
6277 if (base->ts.type != BT_DERIVED && base->ts.type != BT_CLASS)
6278 {
6279 gfc_error ("Error in typebound call at %L", &e->where);
6280 goto cleanup;
6281 }
6282
6283 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
6284 return false;
6285
6286 /* F08:C611. */
6287 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
6288 {
6289 gfc_error ("Base object for type-bound procedure call at %L is of"
6290 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
6291 goto cleanup;
6292 }
6293
6294 /* F08:C1230. If the procedure called is NOPASS,
6295 the base object must be scalar. */
6296 if (e->value.compcall.tbp->nopass && base->rank != 0)
6297 {
6298 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
6299 " be scalar", &e->where);
6300 goto cleanup;
6301 }
6302
6303 return_value = true;
6304
6305 cleanup:
6306 gfc_free_expr (base);
6307 return return_value;
6308 }
6309
6310
6311 /* Resolve a call to a type-bound procedure, either function or subroutine,
6312 statically from the data in an EXPR_COMPCALL expression. The adapted
6313 arglist and the target-procedure symtree are returned. */
6314
6315 static bool
6316 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
6317 gfc_actual_arglist** actual)
6318 {
6319 gcc_assert (e->expr_type == EXPR_COMPCALL);
6320 gcc_assert (!e->value.compcall.tbp->is_generic);
6321
6322 /* Update the actual arglist for PASS. */
6323 if (!update_compcall_arglist (e))
6324 return false;
6325
6326 *actual = e->value.compcall.actual;
6327 *target = e->value.compcall.tbp->u.specific;
6328
6329 gfc_free_ref_list (e->ref);
6330 e->ref = NULL;
6331 e->value.compcall.actual = NULL;
6332
6333 /* If we find a deferred typebound procedure, check for derived types
6334 that an overriding typebound procedure has not been missed. */
6335 if (e->value.compcall.name
6336 && !e->value.compcall.tbp->non_overridable
6337 && e->value.compcall.base_object
6338 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6339 {
6340 gfc_symtree *st;
6341 gfc_symbol *derived;
6342
6343 /* Use the derived type of the base_object. */
6344 derived = e->value.compcall.base_object->ts.u.derived;
6345 st = NULL;
6346
6347 /* If necessary, go through the inheritance chain. */
6348 while (!st && derived)
6349 {
6350 /* Look for the typebound procedure 'name'. */
6351 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6352 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6353 e->value.compcall.name);
6354 if (!st)
6355 derived = gfc_get_derived_super_type (derived);
6356 }
6357
6358 /* Now find the specific name in the derived type namespace. */
6359 if (st && st->n.tb && st->n.tb->u.specific)
6360 gfc_find_sym_tree (st->n.tb->u.specific->name,
6361 derived->ns, 1, &st);
6362 if (st)
6363 *target = st;
6364 }
6365 return true;
6366 }
6367
6368
6369 /* Get the ultimate declared type from an expression. In addition,
6370 return the last class/derived type reference and the copy of the
6371 reference list. If check_types is set true, derived types are
6372 identified as well as class references. */
6373 static gfc_symbol*
6374 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6375 gfc_expr *e, bool check_types)
6376 {
6377 gfc_symbol *declared;
6378 gfc_ref *ref;
6379
6380 declared = NULL;
6381 if (class_ref)
6382 *class_ref = NULL;
6383 if (new_ref)
6384 *new_ref = gfc_copy_ref (e->ref);
6385
6386 for (ref = e->ref; ref; ref = ref->next)
6387 {
6388 if (ref->type != REF_COMPONENT)
6389 continue;
6390
6391 if ((ref->u.c.component->ts.type == BT_CLASS
6392 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6393 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6394 {
6395 declared = ref->u.c.component->ts.u.derived;
6396 if (class_ref)
6397 *class_ref = ref;
6398 }
6399 }
6400
6401 if (declared == NULL)
6402 declared = e->symtree->n.sym->ts.u.derived;
6403
6404 return declared;
6405 }
6406
6407
6408 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6409 which of the specific bindings (if any) matches the arglist and transform
6410 the expression into a call of that binding. */
6411
6412 static bool
6413 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6414 {
6415 gfc_typebound_proc* genproc;
6416 const char* genname;
6417 gfc_symtree *st;
6418 gfc_symbol *derived;
6419
6420 gcc_assert (e->expr_type == EXPR_COMPCALL);
6421 genname = e->value.compcall.name;
6422 genproc = e->value.compcall.tbp;
6423
6424 if (!genproc->is_generic)
6425 return true;
6426
6427 /* Try the bindings on this type and in the inheritance hierarchy. */
6428 for (; genproc; genproc = genproc->overridden)
6429 {
6430 gfc_tbp_generic* g;
6431
6432 gcc_assert (genproc->is_generic);
6433 for (g = genproc->u.generic; g; g = g->next)
6434 {
6435 gfc_symbol* target;
6436 gfc_actual_arglist* args;
6437 bool matches;
6438
6439 gcc_assert (g->specific);
6440
6441 if (g->specific->error)
6442 continue;
6443
6444 target = g->specific->u.specific->n.sym;
6445
6446 /* Get the right arglist by handling PASS/NOPASS. */
6447 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6448 if (!g->specific->nopass)
6449 {
6450 gfc_expr* po;
6451 po = extract_compcall_passed_object (e);
6452 if (!po)
6453 {
6454 gfc_free_actual_arglist (args);
6455 return false;
6456 }
6457
6458 gcc_assert (g->specific->pass_arg_num > 0);
6459 gcc_assert (!g->specific->error);
6460 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6461 g->specific->pass_arg);
6462 }
6463 resolve_actual_arglist (args, target->attr.proc,
6464 is_external_proc (target)
6465 && gfc_sym_get_dummy_args (target) == NULL);
6466
6467 /* Check if this arglist matches the formal. */
6468 matches = gfc_arglist_matches_symbol (&args, target);
6469
6470 /* Clean up and break out of the loop if we've found it. */
6471 gfc_free_actual_arglist (args);
6472 if (matches)
6473 {
6474 e->value.compcall.tbp = g->specific;
6475 genname = g->specific_st->name;
6476 /* Pass along the name for CLASS methods, where the vtab
6477 procedure pointer component has to be referenced. */
6478 if (name)
6479 *name = genname;
6480 goto success;
6481 }
6482 }
6483 }
6484
6485 /* Nothing matching found! */
6486 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6487 " %qs at %L", genname, &e->where);
6488 return false;
6489
6490 success:
6491 /* Make sure that we have the right specific instance for the name. */
6492 derived = get_declared_from_expr (NULL, NULL, e, true);
6493
6494 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6495 if (st)
6496 e->value.compcall.tbp = st->n.tb;
6497
6498 return true;
6499 }
6500
6501
6502 /* Resolve a call to a type-bound subroutine. */
6503
6504 static bool
6505 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6506 {
6507 gfc_actual_arglist* newactual;
6508 gfc_symtree* target;
6509
6510 /* Check that's really a SUBROUTINE. */
6511 if (!c->expr1->value.compcall.tbp->subroutine)
6512 {
6513 if (!c->expr1->value.compcall.tbp->is_generic
6514 && c->expr1->value.compcall.tbp->u.specific
6515 && c->expr1->value.compcall.tbp->u.specific->n.sym
6516 && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
6517 c->expr1->value.compcall.tbp->subroutine = 1;
6518 else
6519 {
6520 gfc_error ("%qs at %L should be a SUBROUTINE",
6521 c->expr1->value.compcall.name, &c->loc);
6522 return false;
6523 }
6524 }
6525
6526 if (!check_typebound_baseobject (c->expr1))
6527 return false;
6528
6529 /* Pass along the name for CLASS methods, where the vtab
6530 procedure pointer component has to be referenced. */
6531 if (name)
6532 *name = c->expr1->value.compcall.name;
6533
6534 if (!resolve_typebound_generic_call (c->expr1, name))
6535 return false;
6536
6537 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6538 if (overridable)
6539 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6540
6541 /* Transform into an ordinary EXEC_CALL for now. */
6542
6543 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6544 return false;
6545
6546 c->ext.actual = newactual;
6547 c->symtree = target;
6548 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6549
6550 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6551
6552 gfc_free_expr (c->expr1);
6553 c->expr1 = gfc_get_expr ();
6554 c->expr1->expr_type = EXPR_FUNCTION;
6555 c->expr1->symtree = target;
6556 c->expr1->where = c->loc;
6557
6558 return resolve_call (c);
6559 }
6560
6561
6562 /* Resolve a component-call expression. */
6563 static bool
6564 resolve_compcall (gfc_expr* e, const char **name)
6565 {
6566 gfc_actual_arglist* newactual;
6567 gfc_symtree* target;
6568
6569 /* Check that's really a FUNCTION. */
6570 if (!e->value.compcall.tbp->function)
6571 {
6572 gfc_error ("%qs at %L should be a FUNCTION",
6573 e->value.compcall.name, &e->where);
6574 return false;
6575 }
6576
6577
6578 /* These must not be assign-calls! */
6579 gcc_assert (!e->value.compcall.assign);
6580
6581 if (!check_typebound_baseobject (e))
6582 return false;
6583
6584 /* Pass along the name for CLASS methods, where the vtab
6585 procedure pointer component has to be referenced. */
6586 if (name)
6587 *name = e->value.compcall.name;
6588
6589 if (!resolve_typebound_generic_call (e, name))
6590 return false;
6591 gcc_assert (!e->value.compcall.tbp->is_generic);
6592
6593 /* Take the rank from the function's symbol. */
6594 if (e->value.compcall.tbp->u.specific->n.sym->as)
6595 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6596
6597 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6598 arglist to the TBP's binding target. */
6599
6600 if (!resolve_typebound_static (e, &target, &newactual))
6601 return false;
6602
6603 e->value.function.actual = newactual;
6604 e->value.function.name = NULL;
6605 e->value.function.esym = target->n.sym;
6606 e->value.function.isym = NULL;
6607 e->symtree = target;
6608 e->ts = target->n.sym->ts;
6609 e->expr_type = EXPR_FUNCTION;
6610
6611 /* Resolution is not necessary if this is a class subroutine; this
6612 function only has to identify the specific proc. Resolution of
6613 the call will be done next in resolve_typebound_call. */
6614 return gfc_resolve_expr (e);
6615 }
6616
6617
6618 static bool resolve_fl_derived (gfc_symbol *sym);
6619
6620
6621 /* Resolve a typebound function, or 'method'. First separate all
6622 the non-CLASS references by calling resolve_compcall directly. */
6623
6624 static bool
6625 resolve_typebound_function (gfc_expr* e)
6626 {
6627 gfc_symbol *declared;
6628 gfc_component *c;
6629 gfc_ref *new_ref;
6630 gfc_ref *class_ref;
6631 gfc_symtree *st;
6632 const char *name;
6633 gfc_typespec ts;
6634 gfc_expr *expr;
6635 bool overridable;
6636
6637 st = e->symtree;
6638
6639 /* Deal with typebound operators for CLASS objects. */
6640 expr = e->value.compcall.base_object;
6641 overridable = !e->value.compcall.tbp->non_overridable;
6642 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6643 {
6644 /* Since the typebound operators are generic, we have to ensure
6645 that any delays in resolution are corrected and that the vtab
6646 is present. */
6647 ts = expr->ts;
6648 declared = ts.u.derived;
6649 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6650 if (c->ts.u.derived == NULL)
6651 c->ts.u.derived = gfc_find_derived_vtab (declared);
6652
6653 if (!resolve_compcall (e, &name))
6654 return false;
6655
6656 /* Use the generic name if it is there. */
6657 name = name ? name : e->value.function.esym->name;
6658 e->symtree = expr->symtree;
6659 e->ref = gfc_copy_ref (expr->ref);
6660 get_declared_from_expr (&class_ref, NULL, e, false);
6661
6662 /* Trim away the extraneous references that emerge from nested
6663 use of interface.c (extend_expr). */
6664 if (class_ref && class_ref->next)
6665 {
6666 gfc_free_ref_list (class_ref->next);
6667 class_ref->next = NULL;
6668 }
6669 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6670 {
6671 gfc_free_ref_list (e->ref);
6672 e->ref = NULL;
6673 }
6674
6675 gfc_add_vptr_component (e);
6676 gfc_add_component_ref (e, name);
6677 e->value.function.esym = NULL;
6678 if (expr->expr_type != EXPR_VARIABLE)
6679 e->base_expr = expr;
6680 return true;
6681 }
6682
6683 if (st == NULL)
6684 return resolve_compcall (e, NULL);
6685
6686 if (!gfc_resolve_ref (e))
6687 return false;
6688
6689 /* Get the CLASS declared type. */
6690 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6691
6692 if (!resolve_fl_derived (declared))
6693 return false;
6694
6695 /* Weed out cases of the ultimate component being a derived type. */
6696 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6697 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6698 {
6699 gfc_free_ref_list (new_ref);
6700 return resolve_compcall (e, NULL);
6701 }
6702
6703 c = gfc_find_component (declared, "_data", true, true, NULL);
6704
6705 /* Treat the call as if it is a typebound procedure, in order to roll
6706 out the correct name for the specific function. */
6707 if (!resolve_compcall (e, &name))
6708 {
6709 gfc_free_ref_list (new_ref);
6710 return false;
6711 }
6712 ts = e->ts;
6713
6714 if (overridable)
6715 {
6716 /* Convert the expression to a procedure pointer component call. */
6717 e->value.function.esym = NULL;
6718 e->symtree = st;
6719
6720 if (new_ref)
6721 e->ref = new_ref;
6722
6723 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6724 gfc_add_vptr_component (e);
6725 gfc_add_component_ref (e, name);
6726
6727 /* Recover the typespec for the expression. This is really only
6728 necessary for generic procedures, where the additional call
6729 to gfc_add_component_ref seems to throw the collection of the
6730 correct typespec. */
6731 e->ts = ts;
6732 }
6733 else if (new_ref)
6734 gfc_free_ref_list (new_ref);
6735
6736 return true;
6737 }
6738
6739 /* Resolve a typebound subroutine, or 'method'. First separate all
6740 the non-CLASS references by calling resolve_typebound_call
6741 directly. */
6742
6743 static bool
6744 resolve_typebound_subroutine (gfc_code *code)
6745 {
6746 gfc_symbol *declared;
6747 gfc_component *c;
6748 gfc_ref *new_ref;
6749 gfc_ref *class_ref;
6750 gfc_symtree *st;
6751 const char *name;
6752 gfc_typespec ts;
6753 gfc_expr *expr;
6754 bool overridable;
6755
6756 st = code->expr1->symtree;
6757
6758 /* Deal with typebound operators for CLASS objects. */
6759 expr = code->expr1->value.compcall.base_object;
6760 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6761 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6762 {
6763 /* If the base_object is not a variable, the corresponding actual
6764 argument expression must be stored in e->base_expression so
6765 that the corresponding tree temporary can be used as the base
6766 object in gfc_conv_procedure_call. */
6767 if (expr->expr_type != EXPR_VARIABLE)
6768 {
6769 gfc_actual_arglist *args;
6770
6771 args= code->expr1->value.function.actual;
6772 for (; args; args = args->next)
6773 if (expr == args->expr)
6774 expr = args->expr;
6775 }
6776
6777 /* Since the typebound operators are generic, we have to ensure
6778 that any delays in resolution are corrected and that the vtab
6779 is present. */
6780 declared = expr->ts.u.derived;
6781 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6782 if (c->ts.u.derived == NULL)
6783 c->ts.u.derived = gfc_find_derived_vtab (declared);
6784
6785 if (!resolve_typebound_call (code, &name, NULL))
6786 return false;
6787
6788 /* Use the generic name if it is there. */
6789 name = name ? name : code->expr1->value.function.esym->name;
6790 code->expr1->symtree = expr->symtree;
6791 code->expr1->ref = gfc_copy_ref (expr->ref);
6792
6793 /* Trim away the extraneous references that emerge from nested
6794 use of interface.c (extend_expr). */
6795 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6796 if (class_ref && class_ref->next)
6797 {
6798 gfc_free_ref_list (class_ref->next);
6799 class_ref->next = NULL;
6800 }
6801 else if (code->expr1->ref && !class_ref)
6802 {
6803 gfc_free_ref_list (code->expr1->ref);
6804 code->expr1->ref = NULL;
6805 }
6806
6807 /* Now use the procedure in the vtable. */
6808 gfc_add_vptr_component (code->expr1);
6809 gfc_add_component_ref (code->expr1, name);
6810 code->expr1->value.function.esym = NULL;
6811 if (expr->expr_type != EXPR_VARIABLE)
6812 code->expr1->base_expr = expr;
6813 return true;
6814 }
6815
6816 if (st == NULL)
6817 return resolve_typebound_call (code, NULL, NULL);
6818
6819 if (!gfc_resolve_ref (code->expr1))
6820 return false;
6821
6822 /* Get the CLASS declared type. */
6823 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6824
6825 /* Weed out cases of the ultimate component being a derived type. */
6826 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6827 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6828 {
6829 gfc_free_ref_list (new_ref);
6830 return resolve_typebound_call (code, NULL, NULL);
6831 }
6832
6833 if (!resolve_typebound_call (code, &name, &overridable))
6834 {
6835 gfc_free_ref_list (new_ref);
6836 return false;
6837 }
6838 ts = code->expr1->ts;
6839
6840 if (overridable)
6841 {
6842 /* Convert the expression to a procedure pointer component call. */
6843 code->expr1->value.function.esym = NULL;
6844 code->expr1->symtree = st;
6845
6846 if (new_ref)
6847 code->expr1->ref = new_ref;
6848
6849 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6850 gfc_add_vptr_component (code->expr1);
6851 gfc_add_component_ref (code->expr1, name);
6852
6853 /* Recover the typespec for the expression. This is really only
6854 necessary for generic procedures, where the additional call
6855 to gfc_add_component_ref seems to throw the collection of the
6856 correct typespec. */
6857 code->expr1->ts = ts;
6858 }
6859 else if (new_ref)
6860 gfc_free_ref_list (new_ref);
6861
6862 return true;
6863 }
6864
6865
6866 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6867
6868 static bool
6869 resolve_ppc_call (gfc_code* c)
6870 {
6871 gfc_component *comp;
6872
6873 comp = gfc_get_proc_ptr_comp (c->expr1);
6874 gcc_assert (comp != NULL);
6875
6876 c->resolved_sym = c->expr1->symtree->n.sym;
6877 c->expr1->expr_type = EXPR_VARIABLE;
6878
6879 if (!comp->attr.subroutine)
6880 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6881
6882 if (!gfc_resolve_ref (c->expr1))
6883 return false;
6884
6885 if (!update_ppc_arglist (c->expr1))
6886 return false;
6887
6888 c->ext.actual = c->expr1->value.compcall.actual;
6889
6890 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6891 !(comp->ts.interface
6892 && comp->ts.interface->formal)))
6893 return false;
6894
6895 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6896 return false;
6897
6898 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6899
6900 return true;
6901 }
6902
6903
6904 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6905
6906 static bool
6907 resolve_expr_ppc (gfc_expr* e)
6908 {
6909 gfc_component *comp;
6910
6911 comp = gfc_get_proc_ptr_comp (e);
6912 gcc_assert (comp != NULL);
6913
6914 /* Convert to EXPR_FUNCTION. */
6915 e->expr_type = EXPR_FUNCTION;
6916 e->value.function.isym = NULL;
6917 e->value.function.actual = e->value.compcall.actual;
6918 e->ts = comp->ts;
6919 if (comp->as != NULL)
6920 e->rank = comp->as->rank;
6921
6922 if (!comp->attr.function)
6923 gfc_add_function (&comp->attr, comp->name, &e->where);
6924
6925 if (!gfc_resolve_ref (e))
6926 return false;
6927
6928 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6929 !(comp->ts.interface
6930 && comp->ts.interface->formal)))
6931 return false;
6932
6933 if (!update_ppc_arglist (e))
6934 return false;
6935
6936 if (!check_pure_function(e))
6937 return false;
6938
6939 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6940
6941 return true;
6942 }
6943
6944
6945 static bool
6946 gfc_is_expandable_expr (gfc_expr *e)
6947 {
6948 gfc_constructor *con;
6949
6950 if (e->expr_type == EXPR_ARRAY)
6951 {
6952 /* Traverse the constructor looking for variables that are flavor
6953 parameter. Parameters must be expanded since they are fully used at
6954 compile time. */
6955 con = gfc_constructor_first (e->value.constructor);
6956 for (; con; con = gfc_constructor_next (con))
6957 {
6958 if (con->expr->expr_type == EXPR_VARIABLE
6959 && con->expr->symtree
6960 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6961 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6962 return true;
6963 if (con->expr->expr_type == EXPR_ARRAY
6964 && gfc_is_expandable_expr (con->expr))
6965 return true;
6966 }
6967 }
6968
6969 return false;
6970 }
6971
6972
6973 /* Sometimes variables in specification expressions of the result
6974 of module procedures in submodules wind up not being the 'real'
6975 dummy. Find this, if possible, in the namespace of the first
6976 formal argument. */
6977
6978 static void
6979 fixup_unique_dummy (gfc_expr *e)
6980 {
6981 gfc_symtree *st = NULL;
6982 gfc_symbol *s = NULL;
6983
6984 if (e->symtree->n.sym->ns->proc_name
6985 && e->symtree->n.sym->ns->proc_name->formal)
6986 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6987
6988 if (s != NULL)
6989 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6990
6991 if (st != NULL
6992 && st->n.sym != NULL
6993 && st->n.sym->attr.dummy)
6994 e->symtree = st;
6995 }
6996
6997 /* Resolve an expression. That is, make sure that types of operands agree
6998 with their operators, intrinsic operators are converted to function calls
6999 for overloaded types and unresolved function references are resolved. */
7000
7001 bool
7002 gfc_resolve_expr (gfc_expr *e)
7003 {
7004 bool t;
7005 bool inquiry_save, actual_arg_save, first_actual_arg_save;
7006
7007 if (e == NULL || e->do_not_resolve_again)
7008 return true;
7009
7010 /* inquiry_argument only applies to variables. */
7011 inquiry_save = inquiry_argument;
7012 actual_arg_save = actual_arg;
7013 first_actual_arg_save = first_actual_arg;
7014
7015 if (e->expr_type != EXPR_VARIABLE)
7016 {
7017 inquiry_argument = false;
7018 actual_arg = false;
7019 first_actual_arg = false;
7020 }
7021 else if (e->symtree != NULL
7022 && *e->symtree->name == '@'
7023 && e->symtree->n.sym->attr.dummy)
7024 {
7025 /* Deal with submodule specification expressions that are not
7026 found to be referenced in module.c(read_cleanup). */
7027 fixup_unique_dummy (e);
7028 }
7029
7030 switch (e->expr_type)
7031 {
7032 case EXPR_OP:
7033 t = resolve_operator (e);
7034 break;
7035
7036 case EXPR_FUNCTION:
7037 case EXPR_VARIABLE:
7038
7039 if (check_host_association (e))
7040 t = resolve_function (e);
7041 else
7042 t = resolve_variable (e);
7043
7044 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
7045 && e->ref->type != REF_SUBSTRING)
7046 gfc_resolve_substring_charlen (e);
7047
7048 break;
7049
7050 case EXPR_COMPCALL:
7051 t = resolve_typebound_function (e);
7052 break;
7053
7054 case EXPR_SUBSTRING:
7055 t = gfc_resolve_ref (e);
7056 break;
7057
7058 case EXPR_CONSTANT:
7059 case EXPR_NULL:
7060 t = true;
7061 break;
7062
7063 case EXPR_PPC:
7064 t = resolve_expr_ppc (e);
7065 break;
7066
7067 case EXPR_ARRAY:
7068 t = false;
7069 if (!gfc_resolve_ref (e))
7070 break;
7071
7072 t = gfc_resolve_array_constructor (e);
7073 /* Also try to expand a constructor. */
7074 if (t)
7075 {
7076 gfc_expression_rank (e);
7077 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
7078 gfc_expand_constructor (e, false);
7079 }
7080
7081 /* This provides the opportunity for the length of constructors with
7082 character valued function elements to propagate the string length
7083 to the expression. */
7084 if (t && e->ts.type == BT_CHARACTER)
7085 {
7086 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
7087 here rather then add a duplicate test for it above. */
7088 gfc_expand_constructor (e, false);
7089 t = gfc_resolve_character_array_constructor (e);
7090 }
7091
7092 break;
7093
7094 case EXPR_STRUCTURE:
7095 t = gfc_resolve_ref (e);
7096 if (!t)
7097 break;
7098
7099 t = resolve_structure_cons (e, 0);
7100 if (!t)
7101 break;
7102
7103 t = gfc_simplify_expr (e, 0);
7104 break;
7105
7106 default:
7107 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
7108 }
7109
7110 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
7111 fixup_charlen (e);
7112
7113 inquiry_argument = inquiry_save;
7114 actual_arg = actual_arg_save;
7115 first_actual_arg = first_actual_arg_save;
7116
7117 /* For some reason, resolving these expressions a second time mangles
7118 the typespec of the expression itself. */
7119 if (t && e->expr_type == EXPR_VARIABLE
7120 && e->symtree->n.sym->attr.select_rank_temporary
7121 && UNLIMITED_POLY (e->symtree->n.sym))
7122 e->do_not_resolve_again = 1;
7123
7124 return t;
7125 }
7126
7127
7128 /* Resolve an expression from an iterator. They must be scalar and have
7129 INTEGER or (optionally) REAL type. */
7130
7131 static bool
7132 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
7133 const char *name_msgid)
7134 {
7135 if (!gfc_resolve_expr (expr))
7136 return false;
7137
7138 if (expr->rank != 0)
7139 {
7140 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
7141 return false;
7142 }
7143
7144 if (expr->ts.type != BT_INTEGER)
7145 {
7146 if (expr->ts.type == BT_REAL)
7147 {
7148 if (real_ok)
7149 return gfc_notify_std (GFC_STD_F95_DEL,
7150 "%s at %L must be integer",
7151 _(name_msgid), &expr->where);
7152 else
7153 {
7154 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
7155 &expr->where);
7156 return false;
7157 }
7158 }
7159 else
7160 {
7161 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
7162 return false;
7163 }
7164 }
7165 return true;
7166 }
7167
7168
7169 /* Resolve the expressions in an iterator structure. If REAL_OK is
7170 false allow only INTEGER type iterators, otherwise allow REAL types.
7171 Set own_scope to true for ac-implied-do and data-implied-do as those
7172 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
7173
7174 bool
7175 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
7176 {
7177 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
7178 return false;
7179
7180 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
7181 _("iterator variable")))
7182 return false;
7183
7184 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
7185 "Start expression in DO loop"))
7186 return false;
7187
7188 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
7189 "End expression in DO loop"))
7190 return false;
7191
7192 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
7193 "Step expression in DO loop"))
7194 return false;
7195
7196 /* Convert start, end, and step to the same type as var. */
7197 if (iter->start->ts.kind != iter->var->ts.kind
7198 || iter->start->ts.type != iter->var->ts.type)
7199 gfc_convert_type (iter->start, &iter->var->ts, 1);
7200
7201 if (iter->end->ts.kind != iter->var->ts.kind
7202 || iter->end->ts.type != iter->var->ts.type)
7203 gfc_convert_type (iter->end, &iter->var->ts, 1);
7204
7205 if (iter->step->ts.kind != iter->var->ts.kind
7206 || iter->step->ts.type != iter->var->ts.type)
7207 gfc_convert_type (iter->step, &iter->var->ts, 1);
7208
7209 if (iter->step->expr_type == EXPR_CONSTANT)
7210 {
7211 if ((iter->step->ts.type == BT_INTEGER
7212 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
7213 || (iter->step->ts.type == BT_REAL
7214 && mpfr_sgn (iter->step->value.real) == 0))
7215 {
7216 gfc_error ("Step expression in DO loop at %L cannot be zero",
7217 &iter->step->where);
7218 return false;
7219 }
7220 }
7221
7222 if (iter->start->expr_type == EXPR_CONSTANT
7223 && iter->end->expr_type == EXPR_CONSTANT
7224 && iter->step->expr_type == EXPR_CONSTANT)
7225 {
7226 int sgn, cmp;
7227 if (iter->start->ts.type == BT_INTEGER)
7228 {
7229 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
7230 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
7231 }
7232 else
7233 {
7234 sgn = mpfr_sgn (iter->step->value.real);
7235 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
7236 }
7237 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
7238 gfc_warning (OPT_Wzerotrip,
7239 "DO loop at %L will be executed zero times",
7240 &iter->step->where);
7241 }
7242
7243 if (iter->end->expr_type == EXPR_CONSTANT
7244 && iter->end->ts.type == BT_INTEGER
7245 && iter->step->expr_type == EXPR_CONSTANT
7246 && iter->step->ts.type == BT_INTEGER
7247 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
7248 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
7249 {
7250 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
7251 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
7252
7253 if (is_step_positive
7254 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
7255 gfc_warning (OPT_Wundefined_do_loop,
7256 "DO loop at %L is undefined as it overflows",
7257 &iter->step->where);
7258 else if (!is_step_positive
7259 && mpz_cmp (iter->end->value.integer,
7260 gfc_integer_kinds[k].min_int) == 0)
7261 gfc_warning (OPT_Wundefined_do_loop,
7262 "DO loop at %L is undefined as it underflows",
7263 &iter->step->where);
7264 }
7265
7266 return true;
7267 }
7268
7269
7270 /* Traversal function for find_forall_index. f == 2 signals that
7271 that variable itself is not to be checked - only the references. */
7272
7273 static bool
7274 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
7275 {
7276 if (expr->expr_type != EXPR_VARIABLE)
7277 return false;
7278
7279 /* A scalar assignment */
7280 if (!expr->ref || *f == 1)
7281 {
7282 if (expr->symtree->n.sym == sym)
7283 return true;
7284 else
7285 return false;
7286 }
7287
7288 if (*f == 2)
7289 *f = 1;
7290 return false;
7291 }
7292
7293
7294 /* Check whether the FORALL index appears in the expression or not.
7295 Returns true if SYM is found in EXPR. */
7296
7297 bool
7298 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
7299 {
7300 if (gfc_traverse_expr (expr, sym, forall_index, f))
7301 return true;
7302 else
7303 return false;
7304 }
7305
7306
7307 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
7308 to be a scalar INTEGER variable. The subscripts and stride are scalar
7309 INTEGERs, and if stride is a constant it must be nonzero.
7310 Furthermore "A subscript or stride in a forall-triplet-spec shall
7311 not contain a reference to any index-name in the
7312 forall-triplet-spec-list in which it appears." (7.5.4.1) */
7313
7314 static void
7315 resolve_forall_iterators (gfc_forall_iterator *it)
7316 {
7317 gfc_forall_iterator *iter, *iter2;
7318
7319 for (iter = it; iter; iter = iter->next)
7320 {
7321 if (gfc_resolve_expr (iter->var)
7322 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
7323 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
7324 &iter->var->where);
7325
7326 if (gfc_resolve_expr (iter->start)
7327 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
7328 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
7329 &iter->start->where);
7330 if (iter->var->ts.kind != iter->start->ts.kind)
7331 gfc_convert_type (iter->start, &iter->var->ts, 1);
7332
7333 if (gfc_resolve_expr (iter->end)
7334 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
7335 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
7336 &iter->end->where);
7337 if (iter->var->ts.kind != iter->end->ts.kind)
7338 gfc_convert_type (iter->end, &iter->var->ts, 1);
7339
7340 if (gfc_resolve_expr (iter->stride))
7341 {
7342 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7343 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7344 &iter->stride->where, "INTEGER");
7345
7346 if (iter->stride->expr_type == EXPR_CONSTANT
7347 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7348 gfc_error ("FORALL stride expression at %L cannot be zero",
7349 &iter->stride->where);
7350 }
7351 if (iter->var->ts.kind != iter->stride->ts.kind)
7352 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7353 }
7354
7355 for (iter = it; iter; iter = iter->next)
7356 for (iter2 = iter; iter2; iter2 = iter2->next)
7357 {
7358 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7359 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7360 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7361 gfc_error ("FORALL index %qs may not appear in triplet "
7362 "specification at %L", iter->var->symtree->name,
7363 &iter2->start->where);
7364 }
7365 }
7366
7367
7368 /* Given a pointer to a symbol that is a derived type, see if it's
7369 inaccessible, i.e. if it's defined in another module and the components are
7370 PRIVATE. The search is recursive if necessary. Returns zero if no
7371 inaccessible components are found, nonzero otherwise. */
7372
7373 static int
7374 derived_inaccessible (gfc_symbol *sym)
7375 {
7376 gfc_component *c;
7377
7378 if (sym->attr.use_assoc && sym->attr.private_comp)
7379 return 1;
7380
7381 for (c = sym->components; c; c = c->next)
7382 {
7383 /* Prevent an infinite loop through this function. */
7384 if (c->ts.type == BT_DERIVED && c->attr.pointer
7385 && sym == c->ts.u.derived)
7386 continue;
7387
7388 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7389 return 1;
7390 }
7391
7392 return 0;
7393 }
7394
7395
7396 /* Resolve the argument of a deallocate expression. The expression must be
7397 a pointer or a full array. */
7398
7399 static bool
7400 resolve_deallocate_expr (gfc_expr *e)
7401 {
7402 symbol_attribute attr;
7403 int allocatable, pointer;
7404 gfc_ref *ref;
7405 gfc_symbol *sym;
7406 gfc_component *c;
7407 bool unlimited;
7408
7409 if (!gfc_resolve_expr (e))
7410 return false;
7411
7412 if (e->expr_type != EXPR_VARIABLE)
7413 goto bad;
7414
7415 sym = e->symtree->n.sym;
7416 unlimited = UNLIMITED_POLY(sym);
7417
7418 if (sym->ts.type == BT_CLASS)
7419 {
7420 allocatable = CLASS_DATA (sym)->attr.allocatable;
7421 pointer = CLASS_DATA (sym)->attr.class_pointer;
7422 }
7423 else
7424 {
7425 allocatable = sym->attr.allocatable;
7426 pointer = sym->attr.pointer;
7427 }
7428 for (ref = e->ref; ref; ref = ref->next)
7429 {
7430 switch (ref->type)
7431 {
7432 case REF_ARRAY:
7433 if (ref->u.ar.type != AR_FULL
7434 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7435 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7436 allocatable = 0;
7437 break;
7438
7439 case REF_COMPONENT:
7440 c = ref->u.c.component;
7441 if (c->ts.type == BT_CLASS)
7442 {
7443 allocatable = CLASS_DATA (c)->attr.allocatable;
7444 pointer = CLASS_DATA (c)->attr.class_pointer;
7445 }
7446 else
7447 {
7448 allocatable = c->attr.allocatable;
7449 pointer = c->attr.pointer;
7450 }
7451 break;
7452
7453 case REF_SUBSTRING:
7454 case REF_INQUIRY:
7455 allocatable = 0;
7456 break;
7457 }
7458 }
7459
7460 attr = gfc_expr_attr (e);
7461
7462 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7463 {
7464 bad:
7465 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7466 &e->where);
7467 return false;
7468 }
7469
7470 /* F2008, C644. */
7471 if (gfc_is_coindexed (e))
7472 {
7473 gfc_error ("Coindexed allocatable object at %L", &e->where);
7474 return false;
7475 }
7476
7477 if (pointer
7478 && !gfc_check_vardef_context (e, true, true, false,
7479 _("DEALLOCATE object")))
7480 return false;
7481 if (!gfc_check_vardef_context (e, false, true, false,
7482 _("DEALLOCATE object")))
7483 return false;
7484
7485 return true;
7486 }
7487
7488
7489 /* Returns true if the expression e contains a reference to the symbol sym. */
7490 static bool
7491 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7492 {
7493 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7494 return true;
7495
7496 return false;
7497 }
7498
7499 bool
7500 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7501 {
7502 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7503 }
7504
7505
7506 /* Given the expression node e for an allocatable/pointer of derived type to be
7507 allocated, get the expression node to be initialized afterwards (needed for
7508 derived types with default initializers, and derived types with allocatable
7509 components that need nullification.) */
7510
7511 gfc_expr *
7512 gfc_expr_to_initialize (gfc_expr *e)
7513 {
7514 gfc_expr *result;
7515 gfc_ref *ref;
7516 int i;
7517
7518 result = gfc_copy_expr (e);
7519
7520 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7521 for (ref = result->ref; ref; ref = ref->next)
7522 if (ref->type == REF_ARRAY && ref->next == NULL)
7523 {
7524 if (ref->u.ar.dimen == 0
7525 && ref->u.ar.as && ref->u.ar.as->corank)
7526 return result;
7527
7528 ref->u.ar.type = AR_FULL;
7529
7530 for (i = 0; i < ref->u.ar.dimen; i++)
7531 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7532
7533 break;
7534 }
7535
7536 gfc_free_shape (&result->shape, result->rank);
7537
7538 /* Recalculate rank, shape, etc. */
7539 gfc_resolve_expr (result);
7540 return result;
7541 }
7542
7543
7544 /* If the last ref of an expression is an array ref, return a copy of the
7545 expression with that one removed. Otherwise, a copy of the original
7546 expression. This is used for allocate-expressions and pointer assignment
7547 LHS, where there may be an array specification that needs to be stripped
7548 off when using gfc_check_vardef_context. */
7549
7550 static gfc_expr*
7551 remove_last_array_ref (gfc_expr* e)
7552 {
7553 gfc_expr* e2;
7554 gfc_ref** r;
7555
7556 e2 = gfc_copy_expr (e);
7557 for (r = &e2->ref; *r; r = &(*r)->next)
7558 if ((*r)->type == REF_ARRAY && !(*r)->next)
7559 {
7560 gfc_free_ref_list (*r);
7561 *r = NULL;
7562 break;
7563 }
7564
7565 return e2;
7566 }
7567
7568
7569 /* Used in resolve_allocate_expr to check that a allocation-object and
7570 a source-expr are conformable. This does not catch all possible
7571 cases; in particular a runtime checking is needed. */
7572
7573 static bool
7574 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7575 {
7576 gfc_ref *tail;
7577 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7578
7579 /* First compare rank. */
7580 if ((tail && (!tail->u.ar.as || e1->rank != tail->u.ar.as->rank))
7581 || (!tail && e1->rank != e2->rank))
7582 {
7583 gfc_error ("Source-expr at %L must be scalar or have the "
7584 "same rank as the allocate-object at %L",
7585 &e1->where, &e2->where);
7586 return false;
7587 }
7588
7589 if (e1->shape)
7590 {
7591 int i;
7592 mpz_t s;
7593
7594 mpz_init (s);
7595
7596 for (i = 0; i < e1->rank; i++)
7597 {
7598 if (tail->u.ar.start[i] == NULL)
7599 break;
7600
7601 if (tail->u.ar.end[i])
7602 {
7603 mpz_set (s, tail->u.ar.end[i]->value.integer);
7604 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7605 mpz_add_ui (s, s, 1);
7606 }
7607 else
7608 {
7609 mpz_set (s, tail->u.ar.start[i]->value.integer);
7610 }
7611
7612 if (mpz_cmp (e1->shape[i], s) != 0)
7613 {
7614 gfc_error ("Source-expr at %L and allocate-object at %L must "
7615 "have the same shape", &e1->where, &e2->where);
7616 mpz_clear (s);
7617 return false;
7618 }
7619 }
7620
7621 mpz_clear (s);
7622 }
7623
7624 return true;
7625 }
7626
7627
7628 /* Resolve the expression in an ALLOCATE statement, doing the additional
7629 checks to see whether the expression is OK or not. The expression must
7630 have a trailing array reference that gives the size of the array. */
7631
7632 static bool
7633 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7634 {
7635 int i, pointer, allocatable, dimension, is_abstract;
7636 int codimension;
7637 bool coindexed;
7638 bool unlimited;
7639 symbol_attribute attr;
7640 gfc_ref *ref, *ref2;
7641 gfc_expr *e2;
7642 gfc_array_ref *ar;
7643 gfc_symbol *sym = NULL;
7644 gfc_alloc *a;
7645 gfc_component *c;
7646 bool t;
7647
7648 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7649 checking of coarrays. */
7650 for (ref = e->ref; ref; ref = ref->next)
7651 if (ref->next == NULL)
7652 break;
7653
7654 if (ref && ref->type == REF_ARRAY)
7655 ref->u.ar.in_allocate = true;
7656
7657 if (!gfc_resolve_expr (e))
7658 goto failure;
7659
7660 /* Make sure the expression is allocatable or a pointer. If it is
7661 pointer, the next-to-last reference must be a pointer. */
7662
7663 ref2 = NULL;
7664 if (e->symtree)
7665 sym = e->symtree->n.sym;
7666
7667 /* Check whether ultimate component is abstract and CLASS. */
7668 is_abstract = 0;
7669
7670 /* Is the allocate-object unlimited polymorphic? */
7671 unlimited = UNLIMITED_POLY(e);
7672
7673 if (e->expr_type != EXPR_VARIABLE)
7674 {
7675 allocatable = 0;
7676 attr = gfc_expr_attr (e);
7677 pointer = attr.pointer;
7678 dimension = attr.dimension;
7679 codimension = attr.codimension;
7680 }
7681 else
7682 {
7683 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7684 {
7685 allocatable = CLASS_DATA (sym)->attr.allocatable;
7686 pointer = CLASS_DATA (sym)->attr.class_pointer;
7687 dimension = CLASS_DATA (sym)->attr.dimension;
7688 codimension = CLASS_DATA (sym)->attr.codimension;
7689 is_abstract = CLASS_DATA (sym)->attr.abstract;
7690 }
7691 else
7692 {
7693 allocatable = sym->attr.allocatable;
7694 pointer = sym->attr.pointer;
7695 dimension = sym->attr.dimension;
7696 codimension = sym->attr.codimension;
7697 }
7698
7699 coindexed = false;
7700
7701 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7702 {
7703 switch (ref->type)
7704 {
7705 case REF_ARRAY:
7706 if (ref->u.ar.codimen > 0)
7707 {
7708 int n;
7709 for (n = ref->u.ar.dimen;
7710 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7711 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7712 {
7713 coindexed = true;
7714 break;
7715 }
7716 }
7717
7718 if (ref->next != NULL)
7719 pointer = 0;
7720 break;
7721
7722 case REF_COMPONENT:
7723 /* F2008, C644. */
7724 if (coindexed)
7725 {
7726 gfc_error ("Coindexed allocatable object at %L",
7727 &e->where);
7728 goto failure;
7729 }
7730
7731 c = ref->u.c.component;
7732 if (c->ts.type == BT_CLASS)
7733 {
7734 allocatable = CLASS_DATA (c)->attr.allocatable;
7735 pointer = CLASS_DATA (c)->attr.class_pointer;
7736 dimension = CLASS_DATA (c)->attr.dimension;
7737 codimension = CLASS_DATA (c)->attr.codimension;
7738 is_abstract = CLASS_DATA (c)->attr.abstract;
7739 }
7740 else
7741 {
7742 allocatable = c->attr.allocatable;
7743 pointer = c->attr.pointer;
7744 dimension = c->attr.dimension;
7745 codimension = c->attr.codimension;
7746 is_abstract = c->attr.abstract;
7747 }
7748 break;
7749
7750 case REF_SUBSTRING:
7751 case REF_INQUIRY:
7752 allocatable = 0;
7753 pointer = 0;
7754 break;
7755 }
7756 }
7757 }
7758
7759 /* Check for F08:C628. */
7760 if (allocatable == 0 && pointer == 0 && !unlimited)
7761 {
7762 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7763 &e->where);
7764 goto failure;
7765 }
7766
7767 /* Some checks for the SOURCE tag. */
7768 if (code->expr3)
7769 {
7770 /* Check F03:C631. */
7771 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7772 {
7773 gfc_error ("Type of entity at %L is type incompatible with "
7774 "source-expr at %L", &e->where, &code->expr3->where);
7775 goto failure;
7776 }
7777
7778 /* Check F03:C632 and restriction following Note 6.18. */
7779 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7780 goto failure;
7781
7782 /* Check F03:C633. */
7783 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7784 {
7785 gfc_error ("The allocate-object at %L and the source-expr at %L "
7786 "shall have the same kind type parameter",
7787 &e->where, &code->expr3->where);
7788 goto failure;
7789 }
7790
7791 /* Check F2008, C642. */
7792 if (code->expr3->ts.type == BT_DERIVED
7793 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7794 || (code->expr3->ts.u.derived->from_intmod
7795 == INTMOD_ISO_FORTRAN_ENV
7796 && code->expr3->ts.u.derived->intmod_sym_id
7797 == ISOFORTRAN_LOCK_TYPE)))
7798 {
7799 gfc_error ("The source-expr at %L shall neither be of type "
7800 "LOCK_TYPE nor have a LOCK_TYPE component if "
7801 "allocate-object at %L is a coarray",
7802 &code->expr3->where, &e->where);
7803 goto failure;
7804 }
7805
7806 /* Check TS18508, C702/C703. */
7807 if (code->expr3->ts.type == BT_DERIVED
7808 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7809 || (code->expr3->ts.u.derived->from_intmod
7810 == INTMOD_ISO_FORTRAN_ENV
7811 && code->expr3->ts.u.derived->intmod_sym_id
7812 == ISOFORTRAN_EVENT_TYPE)))
7813 {
7814 gfc_error ("The source-expr at %L shall neither be of type "
7815 "EVENT_TYPE nor have a EVENT_TYPE component if "
7816 "allocate-object at %L is a coarray",
7817 &code->expr3->where, &e->where);
7818 goto failure;
7819 }
7820 }
7821
7822 /* Check F08:C629. */
7823 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7824 && !code->expr3)
7825 {
7826 gcc_assert (e->ts.type == BT_CLASS);
7827 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7828 "type-spec or source-expr", sym->name, &e->where);
7829 goto failure;
7830 }
7831
7832 /* Check F08:C632. */
7833 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7834 && !UNLIMITED_POLY (e))
7835 {
7836 int cmp;
7837
7838 if (!e->ts.u.cl->length)
7839 goto failure;
7840
7841 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7842 code->ext.alloc.ts.u.cl->length);
7843 if (cmp == 1 || cmp == -1 || cmp == -3)
7844 {
7845 gfc_error ("Allocating %s at %L with type-spec requires the same "
7846 "character-length parameter as in the declaration",
7847 sym->name, &e->where);
7848 goto failure;
7849 }
7850 }
7851
7852 /* In the variable definition context checks, gfc_expr_attr is used
7853 on the expression. This is fooled by the array specification
7854 present in e, thus we have to eliminate that one temporarily. */
7855 e2 = remove_last_array_ref (e);
7856 t = true;
7857 if (t && pointer)
7858 t = gfc_check_vardef_context (e2, true, true, false,
7859 _("ALLOCATE object"));
7860 if (t)
7861 t = gfc_check_vardef_context (e2, false, true, false,
7862 _("ALLOCATE object"));
7863 gfc_free_expr (e2);
7864 if (!t)
7865 goto failure;
7866
7867 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7868 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7869 {
7870 /* For class arrays, the initialization with SOURCE is done
7871 using _copy and trans_call. It is convenient to exploit that
7872 when the allocated type is different from the declared type but
7873 no SOURCE exists by setting expr3. */
7874 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7875 }
7876 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7877 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7878 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7879 {
7880 /* We have to zero initialize the integer variable. */
7881 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7882 }
7883
7884 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7885 {
7886 /* Make sure the vtab symbol is present when
7887 the module variables are generated. */
7888 gfc_typespec ts = e->ts;
7889 if (code->expr3)
7890 ts = code->expr3->ts;
7891 else if (code->ext.alloc.ts.type == BT_DERIVED)
7892 ts = code->ext.alloc.ts;
7893
7894 /* Finding the vtab also publishes the type's symbol. Therefore this
7895 statement is necessary. */
7896 gfc_find_derived_vtab (ts.u.derived);
7897 }
7898 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7899 {
7900 /* Again, make sure the vtab symbol is present when
7901 the module variables are generated. */
7902 gfc_typespec *ts = NULL;
7903 if (code->expr3)
7904 ts = &code->expr3->ts;
7905 else
7906 ts = &code->ext.alloc.ts;
7907
7908 gcc_assert (ts);
7909
7910 /* Finding the vtab also publishes the type's symbol. Therefore this
7911 statement is necessary. */
7912 gfc_find_vtab (ts);
7913 }
7914
7915 if (dimension == 0 && codimension == 0)
7916 goto success;
7917
7918 /* Make sure the last reference node is an array specification. */
7919
7920 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7921 || (dimension && ref2->u.ar.dimen == 0))
7922 {
7923 /* F08:C633. */
7924 if (code->expr3)
7925 {
7926 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7927 "in ALLOCATE statement at %L", &e->where))
7928 goto failure;
7929 if (code->expr3->rank != 0)
7930 *array_alloc_wo_spec = true;
7931 else
7932 {
7933 gfc_error ("Array specification or array-valued SOURCE= "
7934 "expression required in ALLOCATE statement at %L",
7935 &e->where);
7936 goto failure;
7937 }
7938 }
7939 else
7940 {
7941 gfc_error ("Array specification required in ALLOCATE statement "
7942 "at %L", &e->where);
7943 goto failure;
7944 }
7945 }
7946
7947 /* Make sure that the array section reference makes sense in the
7948 context of an ALLOCATE specification. */
7949
7950 ar = &ref2->u.ar;
7951
7952 if (codimension)
7953 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7954 {
7955 switch (ar->dimen_type[i])
7956 {
7957 case DIMEN_THIS_IMAGE:
7958 gfc_error ("Coarray specification required in ALLOCATE statement "
7959 "at %L", &e->where);
7960 goto failure;
7961
7962 case DIMEN_RANGE:
7963 if (ar->start[i] == 0 || ar->end[i] == 0)
7964 {
7965 /* If ar->stride[i] is NULL, we issued a previous error. */
7966 if (ar->stride[i] == NULL)
7967 gfc_error ("Bad array specification in ALLOCATE statement "
7968 "at %L", &e->where);
7969 goto failure;
7970 }
7971 else if (gfc_dep_compare_expr (ar->start[i], ar->end[i]) == 1)
7972 {
7973 gfc_error ("Upper cobound is less than lower cobound at %L",
7974 &ar->start[i]->where);
7975 goto failure;
7976 }
7977 break;
7978
7979 case DIMEN_ELEMENT:
7980 if (ar->start[i]->expr_type == EXPR_CONSTANT)
7981 {
7982 gcc_assert (ar->start[i]->ts.type == BT_INTEGER);
7983 if (mpz_cmp_si (ar->start[i]->value.integer, 1) < 0)
7984 {
7985 gfc_error ("Upper cobound is less than lower cobound "
7986 "of 1 at %L", &ar->start[i]->where);
7987 goto failure;
7988 }
7989 }
7990 break;
7991
7992 case DIMEN_STAR:
7993 break;
7994
7995 default:
7996 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7997 &e->where);
7998 goto failure;
7999
8000 }
8001 }
8002 for (i = 0; i < ar->dimen; i++)
8003 {
8004 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
8005 goto check_symbols;
8006
8007 switch (ar->dimen_type[i])
8008 {
8009 case DIMEN_ELEMENT:
8010 break;
8011
8012 case DIMEN_RANGE:
8013 if (ar->start[i] != NULL
8014 && ar->end[i] != NULL
8015 && ar->stride[i] == NULL)
8016 break;
8017
8018 /* Fall through. */
8019
8020 case DIMEN_UNKNOWN:
8021 case DIMEN_VECTOR:
8022 case DIMEN_STAR:
8023 case DIMEN_THIS_IMAGE:
8024 gfc_error ("Bad array specification in ALLOCATE statement at %L",
8025 &e->where);
8026 goto failure;
8027 }
8028
8029 check_symbols:
8030 for (a = code->ext.alloc.list; a; a = a->next)
8031 {
8032 sym = a->expr->symtree->n.sym;
8033
8034 /* TODO - check derived type components. */
8035 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
8036 continue;
8037
8038 if ((ar->start[i] != NULL
8039 && gfc_find_sym_in_expr (sym, ar->start[i]))
8040 || (ar->end[i] != NULL
8041 && gfc_find_sym_in_expr (sym, ar->end[i])))
8042 {
8043 gfc_error ("%qs must not appear in the array specification at "
8044 "%L in the same ALLOCATE statement where it is "
8045 "itself allocated", sym->name, &ar->where);
8046 goto failure;
8047 }
8048 }
8049 }
8050
8051 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
8052 {
8053 if (ar->dimen_type[i] == DIMEN_ELEMENT
8054 || ar->dimen_type[i] == DIMEN_RANGE)
8055 {
8056 if (i == (ar->dimen + ar->codimen - 1))
8057 {
8058 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
8059 "statement at %L", &e->where);
8060 goto failure;
8061 }
8062 continue;
8063 }
8064
8065 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
8066 && ar->stride[i] == NULL)
8067 break;
8068
8069 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
8070 &e->where);
8071 goto failure;
8072 }
8073
8074 success:
8075 return true;
8076
8077 failure:
8078 return false;
8079 }
8080
8081
8082 static void
8083 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
8084 {
8085 gfc_expr *stat, *errmsg, *pe, *qe;
8086 gfc_alloc *a, *p, *q;
8087
8088 stat = code->expr1;
8089 errmsg = code->expr2;
8090
8091 /* Check the stat variable. */
8092 if (stat)
8093 {
8094 gfc_check_vardef_context (stat, false, false, false,
8095 _("STAT variable"));
8096
8097 if ((stat->ts.type != BT_INTEGER
8098 && !(stat->ref && (stat->ref->type == REF_ARRAY
8099 || stat->ref->type == REF_COMPONENT)))
8100 || stat->rank > 0)
8101 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
8102 "variable", &stat->where);
8103
8104 for (p = code->ext.alloc.list; p; p = p->next)
8105 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
8106 {
8107 gfc_ref *ref1, *ref2;
8108 bool found = true;
8109
8110 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
8111 ref1 = ref1->next, ref2 = ref2->next)
8112 {
8113 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8114 continue;
8115 if (ref1->u.c.component->name != ref2->u.c.component->name)
8116 {
8117 found = false;
8118 break;
8119 }
8120 }
8121
8122 if (found)
8123 {
8124 gfc_error ("Stat-variable at %L shall not be %sd within "
8125 "the same %s statement", &stat->where, fcn, fcn);
8126 break;
8127 }
8128 }
8129 }
8130
8131 /* Check the errmsg variable. */
8132 if (errmsg)
8133 {
8134 if (!stat)
8135 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
8136 &errmsg->where);
8137
8138 gfc_check_vardef_context (errmsg, false, false, false,
8139 _("ERRMSG variable"));
8140
8141 /* F18:R928 alloc-opt is ERRMSG = errmsg-variable
8142 F18:R930 errmsg-variable is scalar-default-char-variable
8143 F18:R906 default-char-variable is variable
8144 F18:C906 default-char-variable shall be default character. */
8145 if ((errmsg->ts.type != BT_CHARACTER
8146 && !(errmsg->ref
8147 && (errmsg->ref->type == REF_ARRAY
8148 || errmsg->ref->type == REF_COMPONENT)))
8149 || errmsg->rank > 0
8150 || errmsg->ts.kind != gfc_default_character_kind)
8151 gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
8152 "variable", &errmsg->where);
8153
8154 for (p = code->ext.alloc.list; p; p = p->next)
8155 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
8156 {
8157 gfc_ref *ref1, *ref2;
8158 bool found = true;
8159
8160 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
8161 ref1 = ref1->next, ref2 = ref2->next)
8162 {
8163 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8164 continue;
8165 if (ref1->u.c.component->name != ref2->u.c.component->name)
8166 {
8167 found = false;
8168 break;
8169 }
8170 }
8171
8172 if (found)
8173 {
8174 gfc_error ("Errmsg-variable at %L shall not be %sd within "
8175 "the same %s statement", &errmsg->where, fcn, fcn);
8176 break;
8177 }
8178 }
8179 }
8180
8181 /* Check that an allocate-object appears only once in the statement. */
8182
8183 for (p = code->ext.alloc.list; p; p = p->next)
8184 {
8185 pe = p->expr;
8186 for (q = p->next; q; q = q->next)
8187 {
8188 qe = q->expr;
8189 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
8190 {
8191 /* This is a potential collision. */
8192 gfc_ref *pr = pe->ref;
8193 gfc_ref *qr = qe->ref;
8194
8195 /* Follow the references until
8196 a) They start to differ, in which case there is no error;
8197 you can deallocate a%b and a%c in a single statement
8198 b) Both of them stop, which is an error
8199 c) One of them stops, which is also an error. */
8200 while (1)
8201 {
8202 if (pr == NULL && qr == NULL)
8203 {
8204 gfc_error ("Allocate-object at %L also appears at %L",
8205 &pe->where, &qe->where);
8206 break;
8207 }
8208 else if (pr != NULL && qr == NULL)
8209 {
8210 gfc_error ("Allocate-object at %L is subobject of"
8211 " object at %L", &pe->where, &qe->where);
8212 break;
8213 }
8214 else if (pr == NULL && qr != NULL)
8215 {
8216 gfc_error ("Allocate-object at %L is subobject of"
8217 " object at %L", &qe->where, &pe->where);
8218 break;
8219 }
8220 /* Here, pr != NULL && qr != NULL */
8221 gcc_assert(pr->type == qr->type);
8222 if (pr->type == REF_ARRAY)
8223 {
8224 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
8225 which are legal. */
8226 gcc_assert (qr->type == REF_ARRAY);
8227
8228 if (pr->next && qr->next)
8229 {
8230 int i;
8231 gfc_array_ref *par = &(pr->u.ar);
8232 gfc_array_ref *qar = &(qr->u.ar);
8233
8234 for (i=0; i<par->dimen; i++)
8235 {
8236 if ((par->start[i] != NULL
8237 || qar->start[i] != NULL)
8238 && gfc_dep_compare_expr (par->start[i],
8239 qar->start[i]) != 0)
8240 goto break_label;
8241 }
8242 }
8243 }
8244 else
8245 {
8246 if (pr->u.c.component->name != qr->u.c.component->name)
8247 break;
8248 }
8249
8250 pr = pr->next;
8251 qr = qr->next;
8252 }
8253 break_label:
8254 ;
8255 }
8256 }
8257 }
8258
8259 if (strcmp (fcn, "ALLOCATE") == 0)
8260 {
8261 bool arr_alloc_wo_spec = false;
8262
8263 /* Resolving the expr3 in the loop over all objects to allocate would
8264 execute loop invariant code for each loop item. Therefore do it just
8265 once here. */
8266 if (code->expr3 && code->expr3->mold
8267 && code->expr3->ts.type == BT_DERIVED)
8268 {
8269 /* Default initialization via MOLD (non-polymorphic). */
8270 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
8271 if (rhs != NULL)
8272 {
8273 gfc_resolve_expr (rhs);
8274 gfc_free_expr (code->expr3);
8275 code->expr3 = rhs;
8276 }
8277 }
8278 for (a = code->ext.alloc.list; a; a = a->next)
8279 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
8280
8281 if (arr_alloc_wo_spec && code->expr3)
8282 {
8283 /* Mark the allocate to have to take the array specification
8284 from the expr3. */
8285 code->ext.alloc.arr_spec_from_expr3 = 1;
8286 }
8287 }
8288 else
8289 {
8290 for (a = code->ext.alloc.list; a; a = a->next)
8291 resolve_deallocate_expr (a->expr);
8292 }
8293 }
8294
8295
8296 /************ SELECT CASE resolution subroutines ************/
8297
8298 /* Callback function for our mergesort variant. Determines interval
8299 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
8300 op1 > op2. Assumes we're not dealing with the default case.
8301 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
8302 There are nine situations to check. */
8303
8304 static int
8305 compare_cases (const gfc_case *op1, const gfc_case *op2)
8306 {
8307 int retval;
8308
8309 if (op1->low == NULL) /* op1 = (:L) */
8310 {
8311 /* op2 = (:N), so overlap. */
8312 retval = 0;
8313 /* op2 = (M:) or (M:N), L < M */
8314 if (op2->low != NULL
8315 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8316 retval = -1;
8317 }
8318 else if (op1->high == NULL) /* op1 = (K:) */
8319 {
8320 /* op2 = (M:), so overlap. */
8321 retval = 0;
8322 /* op2 = (:N) or (M:N), K > N */
8323 if (op2->high != NULL
8324 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8325 retval = 1;
8326 }
8327 else /* op1 = (K:L) */
8328 {
8329 if (op2->low == NULL) /* op2 = (:N), K > N */
8330 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8331 ? 1 : 0;
8332 else if (op2->high == NULL) /* op2 = (M:), L < M */
8333 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8334 ? -1 : 0;
8335 else /* op2 = (M:N) */
8336 {
8337 retval = 0;
8338 /* L < M */
8339 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8340 retval = -1;
8341 /* K > N */
8342 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8343 retval = 1;
8344 }
8345 }
8346
8347 return retval;
8348 }
8349
8350
8351 /* Merge-sort a double linked case list, detecting overlap in the
8352 process. LIST is the head of the double linked case list before it
8353 is sorted. Returns the head of the sorted list if we don't see any
8354 overlap, or NULL otherwise. */
8355
8356 static gfc_case *
8357 check_case_overlap (gfc_case *list)
8358 {
8359 gfc_case *p, *q, *e, *tail;
8360 int insize, nmerges, psize, qsize, cmp, overlap_seen;
8361
8362 /* If the passed list was empty, return immediately. */
8363 if (!list)
8364 return NULL;
8365
8366 overlap_seen = 0;
8367 insize = 1;
8368
8369 /* Loop unconditionally. The only exit from this loop is a return
8370 statement, when we've finished sorting the case list. */
8371 for (;;)
8372 {
8373 p = list;
8374 list = NULL;
8375 tail = NULL;
8376
8377 /* Count the number of merges we do in this pass. */
8378 nmerges = 0;
8379
8380 /* Loop while there exists a merge to be done. */
8381 while (p)
8382 {
8383 int i;
8384
8385 /* Count this merge. */
8386 nmerges++;
8387
8388 /* Cut the list in two pieces by stepping INSIZE places
8389 forward in the list, starting from P. */
8390 psize = 0;
8391 q = p;
8392 for (i = 0; i < insize; i++)
8393 {
8394 psize++;
8395 q = q->right;
8396 if (!q)
8397 break;
8398 }
8399 qsize = insize;
8400
8401 /* Now we have two lists. Merge them! */
8402 while (psize > 0 || (qsize > 0 && q != NULL))
8403 {
8404 /* See from which the next case to merge comes from. */
8405 if (psize == 0)
8406 {
8407 /* P is empty so the next case must come from Q. */
8408 e = q;
8409 q = q->right;
8410 qsize--;
8411 }
8412 else if (qsize == 0 || q == NULL)
8413 {
8414 /* Q is empty. */
8415 e = p;
8416 p = p->right;
8417 psize--;
8418 }
8419 else
8420 {
8421 cmp = compare_cases (p, q);
8422 if (cmp < 0)
8423 {
8424 /* The whole case range for P is less than the
8425 one for Q. */
8426 e = p;
8427 p = p->right;
8428 psize--;
8429 }
8430 else if (cmp > 0)
8431 {
8432 /* The whole case range for Q is greater than
8433 the case range for P. */
8434 e = q;
8435 q = q->right;
8436 qsize--;
8437 }
8438 else
8439 {
8440 /* The cases overlap, or they are the same
8441 element in the list. Either way, we must
8442 issue an error and get the next case from P. */
8443 /* FIXME: Sort P and Q by line number. */
8444 gfc_error ("CASE label at %L overlaps with CASE "
8445 "label at %L", &p->where, &q->where);
8446 overlap_seen = 1;
8447 e = p;
8448 p = p->right;
8449 psize--;
8450 }
8451 }
8452
8453 /* Add the next element to the merged list. */
8454 if (tail)
8455 tail->right = e;
8456 else
8457 list = e;
8458 e->left = tail;
8459 tail = e;
8460 }
8461
8462 /* P has now stepped INSIZE places along, and so has Q. So
8463 they're the same. */
8464 p = q;
8465 }
8466 tail->right = NULL;
8467
8468 /* If we have done only one merge or none at all, we've
8469 finished sorting the cases. */
8470 if (nmerges <= 1)
8471 {
8472 if (!overlap_seen)
8473 return list;
8474 else
8475 return NULL;
8476 }
8477
8478 /* Otherwise repeat, merging lists twice the size. */
8479 insize *= 2;
8480 }
8481 }
8482
8483
8484 /* Check to see if an expression is suitable for use in a CASE statement.
8485 Makes sure that all case expressions are scalar constants of the same
8486 type. Return false if anything is wrong. */
8487
8488 static bool
8489 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8490 {
8491 if (e == NULL) return true;
8492
8493 if (e->ts.type != case_expr->ts.type)
8494 {
8495 gfc_error ("Expression in CASE statement at %L must be of type %s",
8496 &e->where, gfc_basic_typename (case_expr->ts.type));
8497 return false;
8498 }
8499
8500 /* C805 (R808) For a given case-construct, each case-value shall be of
8501 the same type as case-expr. For character type, length differences
8502 are allowed, but the kind type parameters shall be the same. */
8503
8504 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8505 {
8506 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8507 &e->where, case_expr->ts.kind);
8508 return false;
8509 }
8510
8511 /* Convert the case value kind to that of case expression kind,
8512 if needed */
8513
8514 if (e->ts.kind != case_expr->ts.kind)
8515 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8516
8517 if (e->rank != 0)
8518 {
8519 gfc_error ("Expression in CASE statement at %L must be scalar",
8520 &e->where);
8521 return false;
8522 }
8523
8524 return true;
8525 }
8526
8527
8528 /* Given a completely parsed select statement, we:
8529
8530 - Validate all expressions and code within the SELECT.
8531 - Make sure that the selection expression is not of the wrong type.
8532 - Make sure that no case ranges overlap.
8533 - Eliminate unreachable cases and unreachable code resulting from
8534 removing case labels.
8535
8536 The standard does allow unreachable cases, e.g. CASE (5:3). But
8537 they are a hassle for code generation, and to prevent that, we just
8538 cut them out here. This is not necessary for overlapping cases
8539 because they are illegal and we never even try to generate code.
8540
8541 We have the additional caveat that a SELECT construct could have
8542 been a computed GOTO in the source code. Fortunately we can fairly
8543 easily work around that here: The case_expr for a "real" SELECT CASE
8544 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8545 we have to do is make sure that the case_expr is a scalar integer
8546 expression. */
8547
8548 static void
8549 resolve_select (gfc_code *code, bool select_type)
8550 {
8551 gfc_code *body;
8552 gfc_expr *case_expr;
8553 gfc_case *cp, *default_case, *tail, *head;
8554 int seen_unreachable;
8555 int seen_logical;
8556 int ncases;
8557 bt type;
8558 bool t;
8559
8560 if (code->expr1 == NULL)
8561 {
8562 /* This was actually a computed GOTO statement. */
8563 case_expr = code->expr2;
8564 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8565 gfc_error ("Selection expression in computed GOTO statement "
8566 "at %L must be a scalar integer expression",
8567 &case_expr->where);
8568
8569 /* Further checking is not necessary because this SELECT was built
8570 by the compiler, so it should always be OK. Just move the
8571 case_expr from expr2 to expr so that we can handle computed
8572 GOTOs as normal SELECTs from here on. */
8573 code->expr1 = code->expr2;
8574 code->expr2 = NULL;
8575 return;
8576 }
8577
8578 case_expr = code->expr1;
8579 type = case_expr->ts.type;
8580
8581 /* F08:C830. */
8582 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8583 {
8584 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8585 &case_expr->where, gfc_typename (case_expr));
8586
8587 /* Punt. Going on here just produce more garbage error messages. */
8588 return;
8589 }
8590
8591 /* F08:R842. */
8592 if (!select_type && case_expr->rank != 0)
8593 {
8594 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8595 "expression", &case_expr->where);
8596
8597 /* Punt. */
8598 return;
8599 }
8600
8601 /* Raise a warning if an INTEGER case value exceeds the range of
8602 the case-expr. Later, all expressions will be promoted to the
8603 largest kind of all case-labels. */
8604
8605 if (type == BT_INTEGER)
8606 for (body = code->block; body; body = body->block)
8607 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8608 {
8609 if (cp->low
8610 && gfc_check_integer_range (cp->low->value.integer,
8611 case_expr->ts.kind) != ARITH_OK)
8612 gfc_warning (0, "Expression in CASE statement at %L is "
8613 "not in the range of %s", &cp->low->where,
8614 gfc_typename (case_expr));
8615
8616 if (cp->high
8617 && cp->low != cp->high
8618 && gfc_check_integer_range (cp->high->value.integer,
8619 case_expr->ts.kind) != ARITH_OK)
8620 gfc_warning (0, "Expression in CASE statement at %L is "
8621 "not in the range of %s", &cp->high->where,
8622 gfc_typename (case_expr));
8623 }
8624
8625 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8626 of the SELECT CASE expression and its CASE values. Walk the lists
8627 of case values, and if we find a mismatch, promote case_expr to
8628 the appropriate kind. */
8629
8630 if (type == BT_LOGICAL || type == BT_INTEGER)
8631 {
8632 for (body = code->block; body; body = body->block)
8633 {
8634 /* Walk the case label list. */
8635 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8636 {
8637 /* Intercept the DEFAULT case. It does not have a kind. */
8638 if (cp->low == NULL && cp->high == NULL)
8639 continue;
8640
8641 /* Unreachable case ranges are discarded, so ignore. */
8642 if (cp->low != NULL && cp->high != NULL
8643 && cp->low != cp->high
8644 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8645 continue;
8646
8647 if (cp->low != NULL
8648 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8649 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8650
8651 if (cp->high != NULL
8652 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8653 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8654 }
8655 }
8656 }
8657
8658 /* Assume there is no DEFAULT case. */
8659 default_case = NULL;
8660 head = tail = NULL;
8661 ncases = 0;
8662 seen_logical = 0;
8663
8664 for (body = code->block; body; body = body->block)
8665 {
8666 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8667 t = true;
8668 seen_unreachable = 0;
8669
8670 /* Walk the case label list, making sure that all case labels
8671 are legal. */
8672 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8673 {
8674 /* Count the number of cases in the whole construct. */
8675 ncases++;
8676
8677 /* Intercept the DEFAULT case. */
8678 if (cp->low == NULL && cp->high == NULL)
8679 {
8680 if (default_case != NULL)
8681 {
8682 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8683 "by a second DEFAULT CASE at %L",
8684 &default_case->where, &cp->where);
8685 t = false;
8686 break;
8687 }
8688 else
8689 {
8690 default_case = cp;
8691 continue;
8692 }
8693 }
8694
8695 /* Deal with single value cases and case ranges. Errors are
8696 issued from the validation function. */
8697 if (!validate_case_label_expr (cp->low, case_expr)
8698 || !validate_case_label_expr (cp->high, case_expr))
8699 {
8700 t = false;
8701 break;
8702 }
8703
8704 if (type == BT_LOGICAL
8705 && ((cp->low == NULL || cp->high == NULL)
8706 || cp->low != cp->high))
8707 {
8708 gfc_error ("Logical range in CASE statement at %L is not "
8709 "allowed", &cp->low->where);
8710 t = false;
8711 break;
8712 }
8713
8714 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8715 {
8716 int value;
8717 value = cp->low->value.logical == 0 ? 2 : 1;
8718 if (value & seen_logical)
8719 {
8720 gfc_error ("Constant logical value in CASE statement "
8721 "is repeated at %L",
8722 &cp->low->where);
8723 t = false;
8724 break;
8725 }
8726 seen_logical |= value;
8727 }
8728
8729 if (cp->low != NULL && cp->high != NULL
8730 && cp->low != cp->high
8731 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8732 {
8733 if (warn_surprising)
8734 gfc_warning (OPT_Wsurprising,
8735 "Range specification at %L can never be matched",
8736 &cp->where);
8737
8738 cp->unreachable = 1;
8739 seen_unreachable = 1;
8740 }
8741 else
8742 {
8743 /* If the case range can be matched, it can also overlap with
8744 other cases. To make sure it does not, we put it in a
8745 double linked list here. We sort that with a merge sort
8746 later on to detect any overlapping cases. */
8747 if (!head)
8748 {
8749 head = tail = cp;
8750 head->right = head->left = NULL;
8751 }
8752 else
8753 {
8754 tail->right = cp;
8755 tail->right->left = tail;
8756 tail = tail->right;
8757 tail->right = NULL;
8758 }
8759 }
8760 }
8761
8762 /* It there was a failure in the previous case label, give up
8763 for this case label list. Continue with the next block. */
8764 if (!t)
8765 continue;
8766
8767 /* See if any case labels that are unreachable have been seen.
8768 If so, we eliminate them. This is a bit of a kludge because
8769 the case lists for a single case statement (label) is a
8770 single forward linked lists. */
8771 if (seen_unreachable)
8772 {
8773 /* Advance until the first case in the list is reachable. */
8774 while (body->ext.block.case_list != NULL
8775 && body->ext.block.case_list->unreachable)
8776 {
8777 gfc_case *n = body->ext.block.case_list;
8778 body->ext.block.case_list = body->ext.block.case_list->next;
8779 n->next = NULL;
8780 gfc_free_case_list (n);
8781 }
8782
8783 /* Strip all other unreachable cases. */
8784 if (body->ext.block.case_list)
8785 {
8786 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8787 {
8788 if (cp->next->unreachable)
8789 {
8790 gfc_case *n = cp->next;
8791 cp->next = cp->next->next;
8792 n->next = NULL;
8793 gfc_free_case_list (n);
8794 }
8795 }
8796 }
8797 }
8798 }
8799
8800 /* See if there were overlapping cases. If the check returns NULL,
8801 there was overlap. In that case we don't do anything. If head
8802 is non-NULL, we prepend the DEFAULT case. The sorted list can
8803 then used during code generation for SELECT CASE constructs with
8804 a case expression of a CHARACTER type. */
8805 if (head)
8806 {
8807 head = check_case_overlap (head);
8808
8809 /* Prepend the default_case if it is there. */
8810 if (head != NULL && default_case)
8811 {
8812 default_case->left = NULL;
8813 default_case->right = head;
8814 head->left = default_case;
8815 }
8816 }
8817
8818 /* Eliminate dead blocks that may be the result if we've seen
8819 unreachable case labels for a block. */
8820 for (body = code; body && body->block; body = body->block)
8821 {
8822 if (body->block->ext.block.case_list == NULL)
8823 {
8824 /* Cut the unreachable block from the code chain. */
8825 gfc_code *c = body->block;
8826 body->block = c->block;
8827
8828 /* Kill the dead block, but not the blocks below it. */
8829 c->block = NULL;
8830 gfc_free_statements (c);
8831 }
8832 }
8833
8834 /* More than two cases is legal but insane for logical selects.
8835 Issue a warning for it. */
8836 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8837 gfc_warning (OPT_Wsurprising,
8838 "Logical SELECT CASE block at %L has more that two cases",
8839 &code->loc);
8840 }
8841
8842
8843 /* Check if a derived type is extensible. */
8844
8845 bool
8846 gfc_type_is_extensible (gfc_symbol *sym)
8847 {
8848 return !(sym->attr.is_bind_c || sym->attr.sequence
8849 || (sym->attr.is_class
8850 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8851 }
8852
8853
8854 static void
8855 resolve_types (gfc_namespace *ns);
8856
8857 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8858 correct as well as possibly the array-spec. */
8859
8860 static void
8861 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8862 {
8863 gfc_expr* target;
8864
8865 gcc_assert (sym->assoc);
8866 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8867
8868 /* If this is for SELECT TYPE, the target may not yet be set. In that
8869 case, return. Resolution will be called later manually again when
8870 this is done. */
8871 target = sym->assoc->target;
8872 if (!target)
8873 return;
8874 gcc_assert (!sym->assoc->dangling);
8875
8876 if (resolve_target && !gfc_resolve_expr (target))
8877 return;
8878
8879 /* For variable targets, we get some attributes from the target. */
8880 if (target->expr_type == EXPR_VARIABLE)
8881 {
8882 gfc_symbol *tsym, *dsym;
8883
8884 gcc_assert (target->symtree);
8885 tsym = target->symtree->n.sym;
8886
8887 if (gfc_expr_attr (target).proc_pointer)
8888 {
8889 gfc_error ("Associating entity %qs at %L is a procedure pointer",
8890 tsym->name, &target->where);
8891 return;
8892 }
8893
8894 if (tsym->attr.flavor == FL_PROCEDURE && tsym->generic
8895 && (dsym = gfc_find_dt_in_generic (tsym)) != NULL
8896 && dsym->attr.flavor == FL_DERIVED)
8897 {
8898 gfc_error ("Derived type %qs cannot be used as a variable at %L",
8899 tsym->name, &target->where);
8900 return;
8901 }
8902
8903 if (tsym->attr.flavor == FL_PROCEDURE)
8904 {
8905 bool is_error = true;
8906 if (tsym->attr.function && tsym->result == tsym)
8907 for (gfc_namespace *ns = sym->ns; ns; ns = ns->parent)
8908 if (tsym == ns->proc_name)
8909 {
8910 is_error = false;
8911 break;
8912 }
8913 if (is_error)
8914 {
8915 gfc_error ("Associating entity %qs at %L is a procedure name",
8916 tsym->name, &target->where);
8917 return;
8918 }
8919 }
8920
8921 sym->attr.asynchronous = tsym->attr.asynchronous;
8922 sym->attr.volatile_ = tsym->attr.volatile_;
8923
8924 sym->attr.target = tsym->attr.target
8925 || gfc_expr_attr (target).pointer;
8926 if (is_subref_array (target))
8927 sym->attr.subref_array_pointer = 1;
8928 }
8929 else if (target->ts.type == BT_PROCEDURE)
8930 {
8931 gfc_error ("Associating selector-expression at %L yields a procedure",
8932 &target->where);
8933 return;
8934 }
8935
8936 if (target->expr_type == EXPR_NULL)
8937 {
8938 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8939 return;
8940 }
8941 else if (target->ts.type == BT_UNKNOWN)
8942 {
8943 gfc_error ("Selector at %L has no type", &target->where);
8944 return;
8945 }
8946
8947 /* Get type if this was not already set. Note that it can be
8948 some other type than the target in case this is a SELECT TYPE
8949 selector! So we must not update when the type is already there. */
8950 if (sym->ts.type == BT_UNKNOWN)
8951 sym->ts = target->ts;
8952
8953 gcc_assert (sym->ts.type != BT_UNKNOWN);
8954
8955 /* See if this is a valid association-to-variable. */
8956 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8957 && !gfc_has_vector_subscript (target));
8958
8959 /* Finally resolve if this is an array or not. */
8960 if (sym->attr.dimension && target->rank == 0)
8961 {
8962 /* primary.c makes the assumption that a reference to an associate
8963 name followed by a left parenthesis is an array reference. */
8964 if (sym->ts.type != BT_CHARACTER)
8965 gfc_error ("Associate-name %qs at %L is used as array",
8966 sym->name, &sym->declared_at);
8967 sym->attr.dimension = 0;
8968 return;
8969 }
8970
8971
8972 /* We cannot deal with class selectors that need temporaries. */
8973 if (target->ts.type == BT_CLASS
8974 && gfc_ref_needs_temporary_p (target->ref))
8975 {
8976 gfc_error ("CLASS selector at %L needs a temporary which is not "
8977 "yet implemented", &target->where);
8978 return;
8979 }
8980
8981 if (target->ts.type == BT_CLASS)
8982 gfc_fix_class_refs (target);
8983
8984 if (target->rank != 0 && !sym->attr.select_rank_temporary)
8985 {
8986 gfc_array_spec *as;
8987 /* The rank may be incorrectly guessed at parsing, therefore make sure
8988 it is corrected now. */
8989 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8990 {
8991 if (!sym->as)
8992 sym->as = gfc_get_array_spec ();
8993 as = sym->as;
8994 as->rank = target->rank;
8995 as->type = AS_DEFERRED;
8996 as->corank = gfc_get_corank (target);
8997 sym->attr.dimension = 1;
8998 if (as->corank != 0)
8999 sym->attr.codimension = 1;
9000 }
9001 else if (sym->ts.type == BT_CLASS && (!CLASS_DATA (sym)->as || sym->assoc->rankguessed))
9002 {
9003 if (!CLASS_DATA (sym)->as)
9004 CLASS_DATA (sym)->as = gfc_get_array_spec ();
9005 as = CLASS_DATA (sym)->as;
9006 as->rank = target->rank;
9007 as->type = AS_DEFERRED;
9008 as->corank = gfc_get_corank (target);
9009 CLASS_DATA (sym)->attr.dimension = 1;
9010 if (as->corank != 0)
9011 CLASS_DATA (sym)->attr.codimension = 1;
9012 }
9013 }
9014 else if (!sym->attr.select_rank_temporary)
9015 {
9016 /* target's rank is 0, but the type of the sym is still array valued,
9017 which has to be corrected. */
9018 if (sym->ts.type == BT_CLASS
9019 && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
9020 {
9021 gfc_array_spec *as;
9022 symbol_attribute attr;
9023 /* The associated variable's type is still the array type
9024 correct this now. */
9025 gfc_typespec *ts = &target->ts;
9026 gfc_ref *ref;
9027 gfc_component *c;
9028 for (ref = target->ref; ref != NULL; ref = ref->next)
9029 {
9030 switch (ref->type)
9031 {
9032 case REF_COMPONENT:
9033 ts = &ref->u.c.component->ts;
9034 break;
9035 case REF_ARRAY:
9036 if (ts->type == BT_CLASS)
9037 ts = &ts->u.derived->components->ts;
9038 break;
9039 default:
9040 break;
9041 }
9042 }
9043 /* Create a scalar instance of the current class type. Because the
9044 rank of a class array goes into its name, the type has to be
9045 rebuild. The alternative of (re-)setting just the attributes
9046 and as in the current type, destroys the type also in other
9047 places. */
9048 as = NULL;
9049 sym->ts = *ts;
9050 sym->ts.type = BT_CLASS;
9051 attr = CLASS_DATA (sym)->attr;
9052 attr.class_ok = 0;
9053 attr.associate_var = 1;
9054 attr.dimension = attr.codimension = 0;
9055 attr.class_pointer = 1;
9056 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
9057 gcc_unreachable ();
9058 /* Make sure the _vptr is set. */
9059 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
9060 if (c->ts.u.derived == NULL)
9061 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
9062 CLASS_DATA (sym)->attr.pointer = 1;
9063 CLASS_DATA (sym)->attr.class_pointer = 1;
9064 gfc_set_sym_referenced (sym->ts.u.derived);
9065 gfc_commit_symbol (sym->ts.u.derived);
9066 /* _vptr now has the _vtab in it, change it to the _vtype. */
9067 if (c->ts.u.derived->attr.vtab)
9068 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
9069 c->ts.u.derived->ns->types_resolved = 0;
9070 resolve_types (c->ts.u.derived->ns);
9071 }
9072 }
9073
9074 /* Mark this as an associate variable. */
9075 sym->attr.associate_var = 1;
9076
9077 /* Fix up the type-spec for CHARACTER types. */
9078 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
9079 {
9080 if (!sym->ts.u.cl)
9081 sym->ts.u.cl = target->ts.u.cl;
9082
9083 if (sym->ts.deferred && target->expr_type == EXPR_VARIABLE
9084 && target->symtree->n.sym->attr.dummy
9085 && sym->ts.u.cl == target->ts.u.cl)
9086 {
9087 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9088 sym->ts.deferred = 1;
9089 }
9090
9091 if (!sym->ts.u.cl->length
9092 && !sym->ts.deferred
9093 && target->expr_type == EXPR_CONSTANT)
9094 {
9095 sym->ts.u.cl->length =
9096 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
9097 target->value.character.length);
9098 }
9099 else if ((!sym->ts.u.cl->length
9100 || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
9101 && target->expr_type != EXPR_VARIABLE)
9102 {
9103 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9104 sym->ts.deferred = 1;
9105
9106 /* This is reset in trans-stmt.c after the assignment
9107 of the target expression to the associate name. */
9108 sym->attr.allocatable = 1;
9109 }
9110 }
9111
9112 /* If the target is a good class object, so is the associate variable. */
9113 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
9114 sym->attr.class_ok = 1;
9115 }
9116
9117
9118 /* Ensure that SELECT TYPE expressions have the correct rank and a full
9119 array reference, where necessary. The symbols are artificial and so
9120 the dimension attribute and arrayspec can also be set. In addition,
9121 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
9122 This is corrected here as well.*/
9123
9124 static void
9125 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
9126 int rank, gfc_ref *ref)
9127 {
9128 gfc_ref *nref = (*expr1)->ref;
9129 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
9130 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
9131 (*expr1)->rank = rank;
9132 if (sym1->ts.type == BT_CLASS)
9133 {
9134 if ((*expr1)->ts.type != BT_CLASS)
9135 (*expr1)->ts = sym1->ts;
9136
9137 CLASS_DATA (sym1)->attr.dimension = 1;
9138 if (CLASS_DATA (sym1)->as == NULL && sym2)
9139 CLASS_DATA (sym1)->as
9140 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
9141 }
9142 else
9143 {
9144 sym1->attr.dimension = 1;
9145 if (sym1->as == NULL && sym2)
9146 sym1->as = gfc_copy_array_spec (sym2->as);
9147 }
9148
9149 for (; nref; nref = nref->next)
9150 if (nref->next == NULL)
9151 break;
9152
9153 if (ref && nref && nref->type != REF_ARRAY)
9154 nref->next = gfc_copy_ref (ref);
9155 else if (ref && !nref)
9156 (*expr1)->ref = gfc_copy_ref (ref);
9157 }
9158
9159
9160 static gfc_expr *
9161 build_loc_call (gfc_expr *sym_expr)
9162 {
9163 gfc_expr *loc_call;
9164 loc_call = gfc_get_expr ();
9165 loc_call->expr_type = EXPR_FUNCTION;
9166 gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
9167 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
9168 loc_call->symtree->n.sym->attr.intrinsic = 1;
9169 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
9170 gfc_commit_symbol (loc_call->symtree->n.sym);
9171 loc_call->ts.type = BT_INTEGER;
9172 loc_call->ts.kind = gfc_index_integer_kind;
9173 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
9174 loc_call->value.function.actual = gfc_get_actual_arglist ();
9175 loc_call->value.function.actual->expr = sym_expr;
9176 loc_call->where = sym_expr->where;
9177 return loc_call;
9178 }
9179
9180 /* Resolve a SELECT TYPE statement. */
9181
9182 static void
9183 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
9184 {
9185 gfc_symbol *selector_type;
9186 gfc_code *body, *new_st, *if_st, *tail;
9187 gfc_code *class_is = NULL, *default_case = NULL;
9188 gfc_case *c;
9189 gfc_symtree *st;
9190 char name[GFC_MAX_SYMBOL_LEN];
9191 gfc_namespace *ns;
9192 int error = 0;
9193 int rank = 0;
9194 gfc_ref* ref = NULL;
9195 gfc_expr *selector_expr = NULL;
9196
9197 ns = code->ext.block.ns;
9198 gfc_resolve (ns);
9199
9200 /* Check for F03:C813. */
9201 if (code->expr1->ts.type != BT_CLASS
9202 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
9203 {
9204 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
9205 "at %L", &code->loc);
9206 return;
9207 }
9208
9209 if (!code->expr1->symtree->n.sym->attr.class_ok)
9210 return;
9211
9212 if (code->expr2)
9213 {
9214 gfc_ref *ref2 = NULL;
9215 for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
9216 if (ref->type == REF_COMPONENT
9217 && ref->u.c.component->ts.type == BT_CLASS)
9218 ref2 = ref;
9219
9220 if (ref2)
9221 {
9222 if (code->expr1->symtree->n.sym->attr.untyped)
9223 code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
9224 selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
9225 }
9226 else
9227 {
9228 if (code->expr1->symtree->n.sym->attr.untyped)
9229 code->expr1->symtree->n.sym->ts = code->expr2->ts;
9230 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
9231 }
9232
9233 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
9234 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
9235
9236 /* F2008: C803 The selector expression must not be coindexed. */
9237 if (gfc_is_coindexed (code->expr2))
9238 {
9239 gfc_error ("Selector at %L must not be coindexed",
9240 &code->expr2->where);
9241 return;
9242 }
9243
9244 }
9245 else
9246 {
9247 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
9248
9249 if (gfc_is_coindexed (code->expr1))
9250 {
9251 gfc_error ("Selector at %L must not be coindexed",
9252 &code->expr1->where);
9253 return;
9254 }
9255 }
9256
9257 /* Loop over TYPE IS / CLASS IS cases. */
9258 for (body = code->block; body; body = body->block)
9259 {
9260 c = body->ext.block.case_list;
9261
9262 if (!error)
9263 {
9264 /* Check for repeated cases. */
9265 for (tail = code->block; tail; tail = tail->block)
9266 {
9267 gfc_case *d = tail->ext.block.case_list;
9268 if (tail == body)
9269 break;
9270
9271 if (c->ts.type == d->ts.type
9272 && ((c->ts.type == BT_DERIVED
9273 && c->ts.u.derived && d->ts.u.derived
9274 && !strcmp (c->ts.u.derived->name,
9275 d->ts.u.derived->name))
9276 || c->ts.type == BT_UNKNOWN
9277 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9278 && c->ts.kind == d->ts.kind)))
9279 {
9280 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
9281 &c->where, &d->where);
9282 return;
9283 }
9284 }
9285 }
9286
9287 /* Check F03:C815. */
9288 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9289 && !selector_type->attr.unlimited_polymorphic
9290 && !gfc_type_is_extensible (c->ts.u.derived))
9291 {
9292 gfc_error ("Derived type %qs at %L must be extensible",
9293 c->ts.u.derived->name, &c->where);
9294 error++;
9295 continue;
9296 }
9297
9298 /* Check F03:C816. */
9299 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
9300 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
9301 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
9302 {
9303 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9304 gfc_error ("Derived type %qs at %L must be an extension of %qs",
9305 c->ts.u.derived->name, &c->where, selector_type->name);
9306 else
9307 gfc_error ("Unexpected intrinsic type %qs at %L",
9308 gfc_basic_typename (c->ts.type), &c->where);
9309 error++;
9310 continue;
9311 }
9312
9313 /* Check F03:C814. */
9314 if (c->ts.type == BT_CHARACTER
9315 && (c->ts.u.cl->length != NULL || c->ts.deferred))
9316 {
9317 gfc_error ("The type-spec at %L shall specify that each length "
9318 "type parameter is assumed", &c->where);
9319 error++;
9320 continue;
9321 }
9322
9323 /* Intercept the DEFAULT case. */
9324 if (c->ts.type == BT_UNKNOWN)
9325 {
9326 /* Check F03:C818. */
9327 if (default_case)
9328 {
9329 gfc_error ("The DEFAULT CASE at %L cannot be followed "
9330 "by a second DEFAULT CASE at %L",
9331 &default_case->ext.block.case_list->where, &c->where);
9332 error++;
9333 continue;
9334 }
9335
9336 default_case = body;
9337 }
9338 }
9339
9340 if (error > 0)
9341 return;
9342
9343 /* Transform SELECT TYPE statement to BLOCK and associate selector to
9344 target if present. If there are any EXIT statements referring to the
9345 SELECT TYPE construct, this is no problem because the gfc_code
9346 reference stays the same and EXIT is equally possible from the BLOCK
9347 it is changed to. */
9348 code->op = EXEC_BLOCK;
9349 if (code->expr2)
9350 {
9351 gfc_association_list* assoc;
9352
9353 assoc = gfc_get_association_list ();
9354 assoc->st = code->expr1->symtree;
9355 assoc->target = gfc_copy_expr (code->expr2);
9356 assoc->target->where = code->expr2->where;
9357 /* assoc->variable will be set by resolve_assoc_var. */
9358
9359 code->ext.block.assoc = assoc;
9360 code->expr1->symtree->n.sym->assoc = assoc;
9361
9362 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9363 }
9364 else
9365 code->ext.block.assoc = NULL;
9366
9367 /* Ensure that the selector rank and arrayspec are available to
9368 correct expressions in which they might be missing. */
9369 if (code->expr2 && code->expr2->rank)
9370 {
9371 rank = code->expr2->rank;
9372 for (ref = code->expr2->ref; ref; ref = ref->next)
9373 if (ref->next == NULL)
9374 break;
9375 if (ref && ref->type == REF_ARRAY)
9376 ref = gfc_copy_ref (ref);
9377
9378 /* Fixup expr1 if necessary. */
9379 if (rank)
9380 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
9381 }
9382 else if (code->expr1->rank)
9383 {
9384 rank = code->expr1->rank;
9385 for (ref = code->expr1->ref; ref; ref = ref->next)
9386 if (ref->next == NULL)
9387 break;
9388 if (ref && ref->type == REF_ARRAY)
9389 ref = gfc_copy_ref (ref);
9390 }
9391
9392 /* Add EXEC_SELECT to switch on type. */
9393 new_st = gfc_get_code (code->op);
9394 new_st->expr1 = code->expr1;
9395 new_st->expr2 = code->expr2;
9396 new_st->block = code->block;
9397 code->expr1 = code->expr2 = NULL;
9398 code->block = NULL;
9399 if (!ns->code)
9400 ns->code = new_st;
9401 else
9402 ns->code->next = new_st;
9403 code = new_st;
9404 code->op = EXEC_SELECT_TYPE;
9405
9406 /* Use the intrinsic LOC function to generate an integer expression
9407 for the vtable of the selector. Note that the rank of the selector
9408 expression has to be set to zero. */
9409 gfc_add_vptr_component (code->expr1);
9410 code->expr1->rank = 0;
9411 code->expr1 = build_loc_call (code->expr1);
9412 selector_expr = code->expr1->value.function.actual->expr;
9413
9414 /* Loop over TYPE IS / CLASS IS cases. */
9415 for (body = code->block; body; body = body->block)
9416 {
9417 gfc_symbol *vtab;
9418 gfc_expr *e;
9419 c = body->ext.block.case_list;
9420
9421 /* Generate an index integer expression for address of the
9422 TYPE/CLASS vtable and store it in c->low. The hash expression
9423 is stored in c->high and is used to resolve intrinsic cases. */
9424 if (c->ts.type != BT_UNKNOWN)
9425 {
9426 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9427 {
9428 vtab = gfc_find_derived_vtab (c->ts.u.derived);
9429 gcc_assert (vtab);
9430 c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
9431 c->ts.u.derived->hash_value);
9432 }
9433 else
9434 {
9435 vtab = gfc_find_vtab (&c->ts);
9436 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
9437 e = CLASS_DATA (vtab)->initializer;
9438 c->high = gfc_copy_expr (e);
9439 if (c->high->ts.kind != gfc_integer_4_kind)
9440 {
9441 gfc_typespec ts;
9442 ts.kind = gfc_integer_4_kind;
9443 ts.type = BT_INTEGER;
9444 gfc_convert_type_warn (c->high, &ts, 2, 0);
9445 }
9446 }
9447
9448 e = gfc_lval_expr_from_sym (vtab);
9449 c->low = build_loc_call (e);
9450 }
9451 else
9452 continue;
9453
9454 /* Associate temporary to selector. This should only be done
9455 when this case is actually true, so build a new ASSOCIATE
9456 that does precisely this here (instead of using the
9457 'global' one). */
9458
9459 if (c->ts.type == BT_CLASS)
9460 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
9461 else if (c->ts.type == BT_DERIVED)
9462 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
9463 else if (c->ts.type == BT_CHARACTER)
9464 {
9465 HOST_WIDE_INT charlen = 0;
9466 if (c->ts.u.cl && c->ts.u.cl->length
9467 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9468 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9469 snprintf (name, sizeof (name),
9470 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9471 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9472 }
9473 else
9474 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9475 c->ts.kind);
9476
9477 st = gfc_find_symtree (ns->sym_root, name);
9478 gcc_assert (st->n.sym->assoc);
9479 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9480 st->n.sym->assoc->target->where = selector_expr->where;
9481 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9482 {
9483 gfc_add_data_component (st->n.sym->assoc->target);
9484 /* Fixup the target expression if necessary. */
9485 if (rank)
9486 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9487 }
9488
9489 new_st = gfc_get_code (EXEC_BLOCK);
9490 new_st->ext.block.ns = gfc_build_block_ns (ns);
9491 new_st->ext.block.ns->code = body->next;
9492 body->next = new_st;
9493
9494 /* Chain in the new list only if it is marked as dangling. Otherwise
9495 there is a CASE label overlap and this is already used. Just ignore,
9496 the error is diagnosed elsewhere. */
9497 if (st->n.sym->assoc->dangling)
9498 {
9499 new_st->ext.block.assoc = st->n.sym->assoc;
9500 st->n.sym->assoc->dangling = 0;
9501 }
9502
9503 resolve_assoc_var (st->n.sym, false);
9504 }
9505
9506 /* Take out CLASS IS cases for separate treatment. */
9507 body = code;
9508 while (body && body->block)
9509 {
9510 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9511 {
9512 /* Add to class_is list. */
9513 if (class_is == NULL)
9514 {
9515 class_is = body->block;
9516 tail = class_is;
9517 }
9518 else
9519 {
9520 for (tail = class_is; tail->block; tail = tail->block) ;
9521 tail->block = body->block;
9522 tail = tail->block;
9523 }
9524 /* Remove from EXEC_SELECT list. */
9525 body->block = body->block->block;
9526 tail->block = NULL;
9527 }
9528 else
9529 body = body->block;
9530 }
9531
9532 if (class_is)
9533 {
9534 gfc_symbol *vtab;
9535
9536 if (!default_case)
9537 {
9538 /* Add a default case to hold the CLASS IS cases. */
9539 for (tail = code; tail->block; tail = tail->block) ;
9540 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9541 tail = tail->block;
9542 tail->ext.block.case_list = gfc_get_case ();
9543 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9544 tail->next = NULL;
9545 default_case = tail;
9546 }
9547
9548 /* More than one CLASS IS block? */
9549 if (class_is->block)
9550 {
9551 gfc_code **c1,*c2;
9552 bool swapped;
9553 /* Sort CLASS IS blocks by extension level. */
9554 do
9555 {
9556 swapped = false;
9557 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9558 {
9559 c2 = (*c1)->block;
9560 /* F03:C817 (check for doubles). */
9561 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9562 == c2->ext.block.case_list->ts.u.derived->hash_value)
9563 {
9564 gfc_error ("Double CLASS IS block in SELECT TYPE "
9565 "statement at %L",
9566 &c2->ext.block.case_list->where);
9567 return;
9568 }
9569 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9570 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9571 {
9572 /* Swap. */
9573 (*c1)->block = c2->block;
9574 c2->block = *c1;
9575 *c1 = c2;
9576 swapped = true;
9577 }
9578 }
9579 }
9580 while (swapped);
9581 }
9582
9583 /* Generate IF chain. */
9584 if_st = gfc_get_code (EXEC_IF);
9585 new_st = if_st;
9586 for (body = class_is; body; body = body->block)
9587 {
9588 new_st->block = gfc_get_code (EXEC_IF);
9589 new_st = new_st->block;
9590 /* Set up IF condition: Call _gfortran_is_extension_of. */
9591 new_st->expr1 = gfc_get_expr ();
9592 new_st->expr1->expr_type = EXPR_FUNCTION;
9593 new_st->expr1->ts.type = BT_LOGICAL;
9594 new_st->expr1->ts.kind = 4;
9595 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9596 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9597 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9598 /* Set up arguments. */
9599 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9600 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9601 new_st->expr1->value.function.actual->expr->where = code->loc;
9602 new_st->expr1->where = code->loc;
9603 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9604 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9605 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9606 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9607 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9608 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9609 new_st->next = body->next;
9610 }
9611 if (default_case->next)
9612 {
9613 new_st->block = gfc_get_code (EXEC_IF);
9614 new_st = new_st->block;
9615 new_st->next = default_case->next;
9616 }
9617
9618 /* Replace CLASS DEFAULT code by the IF chain. */
9619 default_case->next = if_st;
9620 }
9621
9622 /* Resolve the internal code. This cannot be done earlier because
9623 it requires that the sym->assoc of selectors is set already. */
9624 gfc_current_ns = ns;
9625 gfc_resolve_blocks (code->block, gfc_current_ns);
9626 gfc_current_ns = old_ns;
9627
9628 if (ref)
9629 free (ref);
9630 }
9631
9632
9633 /* Resolve a SELECT RANK statement. */
9634
9635 static void
9636 resolve_select_rank (gfc_code *code, gfc_namespace *old_ns)
9637 {
9638 gfc_namespace *ns;
9639 gfc_code *body, *new_st, *tail;
9640 gfc_case *c;
9641 char tname[GFC_MAX_SYMBOL_LEN];
9642 char name[2 * GFC_MAX_SYMBOL_LEN];
9643 gfc_symtree *st;
9644 gfc_expr *selector_expr = NULL;
9645 int case_value;
9646 HOST_WIDE_INT charlen = 0;
9647
9648 ns = code->ext.block.ns;
9649 gfc_resolve (ns);
9650
9651 code->op = EXEC_BLOCK;
9652 if (code->expr2)
9653 {
9654 gfc_association_list* assoc;
9655
9656 assoc = gfc_get_association_list ();
9657 assoc->st = code->expr1->symtree;
9658 assoc->target = gfc_copy_expr (code->expr2);
9659 assoc->target->where = code->expr2->where;
9660 /* assoc->variable will be set by resolve_assoc_var. */
9661
9662 code->ext.block.assoc = assoc;
9663 code->expr1->symtree->n.sym->assoc = assoc;
9664
9665 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9666 }
9667 else
9668 code->ext.block.assoc = NULL;
9669
9670 /* Loop over RANK cases. Note that returning on the errors causes a
9671 cascade of further errors because the case blocks do not compile
9672 correctly. */
9673 for (body = code->block; body; body = body->block)
9674 {
9675 c = body->ext.block.case_list;
9676 if (c->low)
9677 case_value = (int) mpz_get_si (c->low->value.integer);
9678 else
9679 case_value = -2;
9680
9681 /* Check for repeated cases. */
9682 for (tail = code->block; tail; tail = tail->block)
9683 {
9684 gfc_case *d = tail->ext.block.case_list;
9685 int case_value2;
9686
9687 if (tail == body)
9688 break;
9689
9690 /* Check F2018: C1153. */
9691 if (!c->low && !d->low)
9692 gfc_error ("RANK DEFAULT at %L is repeated at %L",
9693 &c->where, &d->where);
9694
9695 if (!c->low || !d->low)
9696 continue;
9697
9698 /* Check F2018: C1153. */
9699 case_value2 = (int) mpz_get_si (d->low->value.integer);
9700 if ((case_value == case_value2) && case_value == -1)
9701 gfc_error ("RANK (*) at %L is repeated at %L",
9702 &c->where, &d->where);
9703 else if (case_value == case_value2)
9704 gfc_error ("RANK (%i) at %L is repeated at %L",
9705 case_value, &c->where, &d->where);
9706 }
9707
9708 if (!c->low)
9709 continue;
9710
9711 /* Check F2018: C1155. */
9712 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9713 || gfc_expr_attr (code->expr1).pointer))
9714 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9715 "allocatable selector at %L", &c->where, &code->expr1->where);
9716
9717 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9718 || gfc_expr_attr (code->expr1).pointer))
9719 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9720 "allocatable selector at %L", &c->where, &code->expr1->where);
9721 }
9722
9723 /* Add EXEC_SELECT to switch on rank. */
9724 new_st = gfc_get_code (code->op);
9725 new_st->expr1 = code->expr1;
9726 new_st->expr2 = code->expr2;
9727 new_st->block = code->block;
9728 code->expr1 = code->expr2 = NULL;
9729 code->block = NULL;
9730 if (!ns->code)
9731 ns->code = new_st;
9732 else
9733 ns->code->next = new_st;
9734 code = new_st;
9735 code->op = EXEC_SELECT_RANK;
9736
9737 selector_expr = code->expr1;
9738
9739 /* Loop over SELECT RANK cases. */
9740 for (body = code->block; body; body = body->block)
9741 {
9742 c = body->ext.block.case_list;
9743 int case_value;
9744
9745 /* Pass on the default case. */
9746 if (c->low == NULL)
9747 continue;
9748
9749 /* Associate temporary to selector. This should only be done
9750 when this case is actually true, so build a new ASSOCIATE
9751 that does precisely this here (instead of using the
9752 'global' one). */
9753 if (c->ts.type == BT_CHARACTER && c->ts.u.cl && c->ts.u.cl->length
9754 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9755 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9756
9757 if (c->ts.type == BT_CLASS)
9758 sprintf (tname, "class_%s", c->ts.u.derived->name);
9759 else if (c->ts.type == BT_DERIVED)
9760 sprintf (tname, "type_%s", c->ts.u.derived->name);
9761 else if (c->ts.type != BT_CHARACTER)
9762 sprintf (tname, "%s_%d", gfc_basic_typename (c->ts.type), c->ts.kind);
9763 else
9764 sprintf (tname, "%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9765 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9766
9767 case_value = (int) mpz_get_si (c->low->value.integer);
9768 if (case_value >= 0)
9769 sprintf (name, "__tmp_%s_rank_%d", tname, case_value);
9770 else
9771 sprintf (name, "__tmp_%s_rank_m%d", tname, -case_value);
9772
9773 st = gfc_find_symtree (ns->sym_root, name);
9774 gcc_assert (st->n.sym->assoc);
9775
9776 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9777 st->n.sym->assoc->target->where = selector_expr->where;
9778
9779 new_st = gfc_get_code (EXEC_BLOCK);
9780 new_st->ext.block.ns = gfc_build_block_ns (ns);
9781 new_st->ext.block.ns->code = body->next;
9782 body->next = new_st;
9783
9784 /* Chain in the new list only if it is marked as dangling. Otherwise
9785 there is a CASE label overlap and this is already used. Just ignore,
9786 the error is diagnosed elsewhere. */
9787 if (st->n.sym->assoc->dangling)
9788 {
9789 new_st->ext.block.assoc = st->n.sym->assoc;
9790 st->n.sym->assoc->dangling = 0;
9791 }
9792
9793 resolve_assoc_var (st->n.sym, false);
9794 }
9795
9796 gfc_current_ns = ns;
9797 gfc_resolve_blocks (code->block, gfc_current_ns);
9798 gfc_current_ns = old_ns;
9799 }
9800
9801
9802 /* Resolve a transfer statement. This is making sure that:
9803 -- a derived type being transferred has only non-pointer components
9804 -- a derived type being transferred doesn't have private components, unless
9805 it's being transferred from the module where the type was defined
9806 -- we're not trying to transfer a whole assumed size array. */
9807
9808 static void
9809 resolve_transfer (gfc_code *code)
9810 {
9811 gfc_symbol *sym, *derived;
9812 gfc_ref *ref;
9813 gfc_expr *exp;
9814 bool write = false;
9815 bool formatted = false;
9816 gfc_dt *dt = code->ext.dt;
9817 gfc_symbol *dtio_sub = NULL;
9818
9819 exp = code->expr1;
9820
9821 while (exp != NULL && exp->expr_type == EXPR_OP
9822 && exp->value.op.op == INTRINSIC_PARENTHESES)
9823 exp = exp->value.op.op1;
9824
9825 if (exp && exp->expr_type == EXPR_NULL
9826 && code->ext.dt)
9827 {
9828 gfc_error ("Invalid context for NULL () intrinsic at %L",
9829 &exp->where);
9830 return;
9831 }
9832
9833 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9834 && exp->expr_type != EXPR_FUNCTION
9835 && exp->expr_type != EXPR_STRUCTURE))
9836 return;
9837
9838 /* If we are reading, the variable will be changed. Note that
9839 code->ext.dt may be NULL if the TRANSFER is related to
9840 an INQUIRE statement -- but in this case, we are not reading, either. */
9841 if (dt && dt->dt_io_kind->value.iokind == M_READ
9842 && !gfc_check_vardef_context (exp, false, false, false,
9843 _("item in READ")))
9844 return;
9845
9846 const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
9847 || exp->expr_type == EXPR_FUNCTION
9848 ? &exp->ts : &exp->symtree->n.sym->ts;
9849
9850 /* Go to actual component transferred. */
9851 for (ref = exp->ref; ref; ref = ref->next)
9852 if (ref->type == REF_COMPONENT)
9853 ts = &ref->u.c.component->ts;
9854
9855 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9856 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9857 {
9858 derived = ts->u.derived;
9859
9860 /* Determine when to use the formatted DTIO procedure. */
9861 if (dt && (dt->format_expr || dt->format_label))
9862 formatted = true;
9863
9864 write = dt->dt_io_kind->value.iokind == M_WRITE
9865 || dt->dt_io_kind->value.iokind == M_PRINT;
9866 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9867
9868 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9869 {
9870 dt->udtio = exp;
9871 sym = exp->symtree->n.sym->ns->proc_name;
9872 /* Check to see if this is a nested DTIO call, with the
9873 dummy as the io-list object. */
9874 if (sym && sym == dtio_sub && sym->formal
9875 && sym->formal->sym == exp->symtree->n.sym
9876 && exp->ref == NULL)
9877 {
9878 if (!sym->attr.recursive)
9879 {
9880 gfc_error ("DTIO %s procedure at %L must be recursive",
9881 sym->name, &sym->declared_at);
9882 return;
9883 }
9884 }
9885 }
9886 }
9887
9888 if (ts->type == BT_CLASS && dtio_sub == NULL)
9889 {
9890 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9891 "it is processed by a defined input/output procedure",
9892 &code->loc);
9893 return;
9894 }
9895
9896 if (ts->type == BT_DERIVED)
9897 {
9898 /* Check that transferred derived type doesn't contain POINTER
9899 components unless it is processed by a defined input/output
9900 procedure". */
9901 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9902 {
9903 gfc_error ("Data transfer element at %L cannot have POINTER "
9904 "components unless it is processed by a defined "
9905 "input/output procedure", &code->loc);
9906 return;
9907 }
9908
9909 /* F08:C935. */
9910 if (ts->u.derived->attr.proc_pointer_comp)
9911 {
9912 gfc_error ("Data transfer element at %L cannot have "
9913 "procedure pointer components", &code->loc);
9914 return;
9915 }
9916
9917 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9918 {
9919 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9920 "components unless it is processed by a defined "
9921 "input/output procedure", &code->loc);
9922 return;
9923 }
9924
9925 /* C_PTR and C_FUNPTR have private components which means they cannot
9926 be printed. However, if -std=gnu and not -pedantic, allow
9927 the component to be printed to help debugging. */
9928 if (ts->u.derived->ts.f90_type == BT_VOID)
9929 {
9930 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9931 "cannot have PRIVATE components", &code->loc))
9932 return;
9933 }
9934 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9935 {
9936 gfc_error ("Data transfer element at %L cannot have "
9937 "PRIVATE components unless it is processed by "
9938 "a defined input/output procedure", &code->loc);
9939 return;
9940 }
9941 }
9942
9943 if (exp->expr_type == EXPR_STRUCTURE)
9944 return;
9945
9946 sym = exp->symtree->n.sym;
9947
9948 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9949 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9950 {
9951 gfc_error ("Data transfer element at %L cannot be a full reference to "
9952 "an assumed-size array", &code->loc);
9953 return;
9954 }
9955 }
9956
9957
9958 /*********** Toplevel code resolution subroutines ***********/
9959
9960 /* Find the set of labels that are reachable from this block. We also
9961 record the last statement in each block. */
9962
9963 static void
9964 find_reachable_labels (gfc_code *block)
9965 {
9966 gfc_code *c;
9967
9968 if (!block)
9969 return;
9970
9971 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9972
9973 /* Collect labels in this block. We don't keep those corresponding
9974 to END {IF|SELECT}, these are checked in resolve_branch by going
9975 up through the code_stack. */
9976 for (c = block; c; c = c->next)
9977 {
9978 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9979 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9980 }
9981
9982 /* Merge with labels from parent block. */
9983 if (cs_base->prev)
9984 {
9985 gcc_assert (cs_base->prev->reachable_labels);
9986 bitmap_ior_into (cs_base->reachable_labels,
9987 cs_base->prev->reachable_labels);
9988 }
9989 }
9990
9991
9992 static void
9993 resolve_lock_unlock_event (gfc_code *code)
9994 {
9995 if (code->expr1->expr_type == EXPR_FUNCTION
9996 && code->expr1->value.function.isym
9997 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9998 remove_caf_get_intrinsic (code->expr1);
9999
10000 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
10001 && (code->expr1->ts.type != BT_DERIVED
10002 || code->expr1->expr_type != EXPR_VARIABLE
10003 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
10004 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
10005 || code->expr1->rank != 0
10006 || (!gfc_is_coarray (code->expr1) &&
10007 !gfc_is_coindexed (code->expr1))))
10008 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
10009 &code->expr1->where);
10010 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
10011 && (code->expr1->ts.type != BT_DERIVED
10012 || code->expr1->expr_type != EXPR_VARIABLE
10013 || code->expr1->ts.u.derived->from_intmod
10014 != INTMOD_ISO_FORTRAN_ENV
10015 || code->expr1->ts.u.derived->intmod_sym_id
10016 != ISOFORTRAN_EVENT_TYPE
10017 || code->expr1->rank != 0))
10018 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
10019 &code->expr1->where);
10020 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
10021 && !gfc_is_coindexed (code->expr1))
10022 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
10023 &code->expr1->where);
10024 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
10025 gfc_error ("Event variable argument at %L must be a coarray but not "
10026 "coindexed", &code->expr1->where);
10027
10028 /* Check STAT. */
10029 if (code->expr2
10030 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
10031 || code->expr2->expr_type != EXPR_VARIABLE))
10032 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
10033 &code->expr2->where);
10034
10035 if (code->expr2
10036 && !gfc_check_vardef_context (code->expr2, false, false, false,
10037 _("STAT variable")))
10038 return;
10039
10040 /* Check ERRMSG. */
10041 if (code->expr3
10042 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
10043 || code->expr3->expr_type != EXPR_VARIABLE))
10044 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
10045 &code->expr3->where);
10046
10047 if (code->expr3
10048 && !gfc_check_vardef_context (code->expr3, false, false, false,
10049 _("ERRMSG variable")))
10050 return;
10051
10052 /* Check for LOCK the ACQUIRED_LOCK. */
10053 if (code->op != EXEC_EVENT_WAIT && code->expr4
10054 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
10055 || code->expr4->expr_type != EXPR_VARIABLE))
10056 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
10057 "variable", &code->expr4->where);
10058
10059 if (code->op != EXEC_EVENT_WAIT && code->expr4
10060 && !gfc_check_vardef_context (code->expr4, false, false, false,
10061 _("ACQUIRED_LOCK variable")))
10062 return;
10063
10064 /* Check for EVENT WAIT the UNTIL_COUNT. */
10065 if (code->op == EXEC_EVENT_WAIT && code->expr4)
10066 {
10067 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
10068 || code->expr4->rank != 0)
10069 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
10070 "expression", &code->expr4->where);
10071 }
10072 }
10073
10074
10075 static void
10076 resolve_critical (gfc_code *code)
10077 {
10078 gfc_symtree *symtree;
10079 gfc_symbol *lock_type;
10080 char name[GFC_MAX_SYMBOL_LEN];
10081 static int serial = 0;
10082
10083 if (flag_coarray != GFC_FCOARRAY_LIB)
10084 return;
10085
10086 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
10087 GFC_PREFIX ("lock_type"));
10088 if (symtree)
10089 lock_type = symtree->n.sym;
10090 else
10091 {
10092 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
10093 false) != 0)
10094 gcc_unreachable ();
10095 lock_type = symtree->n.sym;
10096 lock_type->attr.flavor = FL_DERIVED;
10097 lock_type->attr.zero_comp = 1;
10098 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
10099 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
10100 }
10101
10102 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
10103 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
10104 gcc_unreachable ();
10105
10106 code->resolved_sym = symtree->n.sym;
10107 symtree->n.sym->attr.flavor = FL_VARIABLE;
10108 symtree->n.sym->attr.referenced = 1;
10109 symtree->n.sym->attr.artificial = 1;
10110 symtree->n.sym->attr.codimension = 1;
10111 symtree->n.sym->ts.type = BT_DERIVED;
10112 symtree->n.sym->ts.u.derived = lock_type;
10113 symtree->n.sym->as = gfc_get_array_spec ();
10114 symtree->n.sym->as->corank = 1;
10115 symtree->n.sym->as->type = AS_EXPLICIT;
10116 symtree->n.sym->as->cotype = AS_EXPLICIT;
10117 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
10118 NULL, 1);
10119 gfc_commit_symbols();
10120 }
10121
10122
10123 static void
10124 resolve_sync (gfc_code *code)
10125 {
10126 /* Check imageset. The * case matches expr1 == NULL. */
10127 if (code->expr1)
10128 {
10129 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
10130 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
10131 "INTEGER expression", &code->expr1->where);
10132 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
10133 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
10134 gfc_error ("Imageset argument at %L must between 1 and num_images()",
10135 &code->expr1->where);
10136 else if (code->expr1->expr_type == EXPR_ARRAY
10137 && gfc_simplify_expr (code->expr1, 0))
10138 {
10139 gfc_constructor *cons;
10140 cons = gfc_constructor_first (code->expr1->value.constructor);
10141 for (; cons; cons = gfc_constructor_next (cons))
10142 if (cons->expr->expr_type == EXPR_CONSTANT
10143 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
10144 gfc_error ("Imageset argument at %L must between 1 and "
10145 "num_images()", &cons->expr->where);
10146 }
10147 }
10148
10149 /* Check STAT. */
10150 gfc_resolve_expr (code->expr2);
10151 if (code->expr2
10152 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
10153 || code->expr2->expr_type != EXPR_VARIABLE))
10154 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
10155 &code->expr2->where);
10156
10157 /* Check ERRMSG. */
10158 gfc_resolve_expr (code->expr3);
10159 if (code->expr3
10160 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
10161 || code->expr3->expr_type != EXPR_VARIABLE))
10162 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
10163 &code->expr3->where);
10164 }
10165
10166
10167 /* Given a branch to a label, see if the branch is conforming.
10168 The code node describes where the branch is located. */
10169
10170 static void
10171 resolve_branch (gfc_st_label *label, gfc_code *code)
10172 {
10173 code_stack *stack;
10174
10175 if (label == NULL)
10176 return;
10177
10178 /* Step one: is this a valid branching target? */
10179
10180 if (label->defined == ST_LABEL_UNKNOWN)
10181 {
10182 gfc_error ("Label %d referenced at %L is never defined", label->value,
10183 &code->loc);
10184 return;
10185 }
10186
10187 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
10188 {
10189 gfc_error ("Statement at %L is not a valid branch target statement "
10190 "for the branch statement at %L", &label->where, &code->loc);
10191 return;
10192 }
10193
10194 /* Step two: make sure this branch is not a branch to itself ;-) */
10195
10196 if (code->here == label)
10197 {
10198 gfc_warning (0,
10199 "Branch at %L may result in an infinite loop", &code->loc);
10200 return;
10201 }
10202
10203 /* Step three: See if the label is in the same block as the
10204 branching statement. The hard work has been done by setting up
10205 the bitmap reachable_labels. */
10206
10207 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
10208 {
10209 /* Check now whether there is a CRITICAL construct; if so, check
10210 whether the label is still visible outside of the CRITICAL block,
10211 which is invalid. */
10212 for (stack = cs_base; stack; stack = stack->prev)
10213 {
10214 if (stack->current->op == EXEC_CRITICAL
10215 && bitmap_bit_p (stack->reachable_labels, label->value))
10216 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
10217 "label at %L", &code->loc, &label->where);
10218 else if (stack->current->op == EXEC_DO_CONCURRENT
10219 && bitmap_bit_p (stack->reachable_labels, label->value))
10220 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
10221 "for label at %L", &code->loc, &label->where);
10222 }
10223
10224 return;
10225 }
10226
10227 /* Step four: If we haven't found the label in the bitmap, it may
10228 still be the label of the END of the enclosing block, in which
10229 case we find it by going up the code_stack. */
10230
10231 for (stack = cs_base; stack; stack = stack->prev)
10232 {
10233 if (stack->current->next && stack->current->next->here == label)
10234 break;
10235 if (stack->current->op == EXEC_CRITICAL)
10236 {
10237 /* Note: A label at END CRITICAL does not leave the CRITICAL
10238 construct as END CRITICAL is still part of it. */
10239 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
10240 " at %L", &code->loc, &label->where);
10241 return;
10242 }
10243 else if (stack->current->op == EXEC_DO_CONCURRENT)
10244 {
10245 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
10246 "label at %L", &code->loc, &label->where);
10247 return;
10248 }
10249 }
10250
10251 if (stack)
10252 {
10253 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
10254 return;
10255 }
10256
10257 /* The label is not in an enclosing block, so illegal. This was
10258 allowed in Fortran 66, so we allow it as extension. No
10259 further checks are necessary in this case. */
10260 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
10261 "as the GOTO statement at %L", &label->where,
10262 &code->loc);
10263 return;
10264 }
10265
10266
10267 /* Check whether EXPR1 has the same shape as EXPR2. */
10268
10269 static bool
10270 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
10271 {
10272 mpz_t shape[GFC_MAX_DIMENSIONS];
10273 mpz_t shape2[GFC_MAX_DIMENSIONS];
10274 bool result = false;
10275 int i;
10276
10277 /* Compare the rank. */
10278 if (expr1->rank != expr2->rank)
10279 return result;
10280
10281 /* Compare the size of each dimension. */
10282 for (i=0; i<expr1->rank; i++)
10283 {
10284 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
10285 goto ignore;
10286
10287 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
10288 goto ignore;
10289
10290 if (mpz_cmp (shape[i], shape2[i]))
10291 goto over;
10292 }
10293
10294 /* When either of the two expression is an assumed size array, we
10295 ignore the comparison of dimension sizes. */
10296 ignore:
10297 result = true;
10298
10299 over:
10300 gfc_clear_shape (shape, i);
10301 gfc_clear_shape (shape2, i);
10302 return result;
10303 }
10304
10305
10306 /* Check whether a WHERE assignment target or a WHERE mask expression
10307 has the same shape as the outmost WHERE mask expression. */
10308
10309 static void
10310 resolve_where (gfc_code *code, gfc_expr *mask)
10311 {
10312 gfc_code *cblock;
10313 gfc_code *cnext;
10314 gfc_expr *e = NULL;
10315
10316 cblock = code->block;
10317
10318 /* Store the first WHERE mask-expr of the WHERE statement or construct.
10319 In case of nested WHERE, only the outmost one is stored. */
10320 if (mask == NULL) /* outmost WHERE */
10321 e = cblock->expr1;
10322 else /* inner WHERE */
10323 e = mask;
10324
10325 while (cblock)
10326 {
10327 if (cblock->expr1)
10328 {
10329 /* Check if the mask-expr has a consistent shape with the
10330 outmost WHERE mask-expr. */
10331 if (!resolve_where_shape (cblock->expr1, e))
10332 gfc_error ("WHERE mask at %L has inconsistent shape",
10333 &cblock->expr1->where);
10334 }
10335
10336 /* the assignment statement of a WHERE statement, or the first
10337 statement in where-body-construct of a WHERE construct */
10338 cnext = cblock->next;
10339 while (cnext)
10340 {
10341 switch (cnext->op)
10342 {
10343 /* WHERE assignment statement */
10344 case EXEC_ASSIGN:
10345
10346 /* Check shape consistent for WHERE assignment target. */
10347 if (e && !resolve_where_shape (cnext->expr1, e))
10348 gfc_error ("WHERE assignment target at %L has "
10349 "inconsistent shape", &cnext->expr1->where);
10350 break;
10351
10352
10353 case EXEC_ASSIGN_CALL:
10354 resolve_call (cnext);
10355 if (!cnext->resolved_sym->attr.elemental)
10356 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10357 &cnext->ext.actual->expr->where);
10358 break;
10359
10360 /* WHERE or WHERE construct is part of a where-body-construct */
10361 case EXEC_WHERE:
10362 resolve_where (cnext, e);
10363 break;
10364
10365 default:
10366 gfc_error ("Unsupported statement inside WHERE at %L",
10367 &cnext->loc);
10368 }
10369 /* the next statement within the same where-body-construct */
10370 cnext = cnext->next;
10371 }
10372 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10373 cblock = cblock->block;
10374 }
10375 }
10376
10377
10378 /* Resolve assignment in FORALL construct.
10379 NVAR is the number of FORALL index variables, and VAR_EXPR records the
10380 FORALL index variables. */
10381
10382 static void
10383 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
10384 {
10385 int n;
10386
10387 for (n = 0; n < nvar; n++)
10388 {
10389 gfc_symbol *forall_index;
10390
10391 forall_index = var_expr[n]->symtree->n.sym;
10392
10393 /* Check whether the assignment target is one of the FORALL index
10394 variable. */
10395 if ((code->expr1->expr_type == EXPR_VARIABLE)
10396 && (code->expr1->symtree->n.sym == forall_index))
10397 gfc_error ("Assignment to a FORALL index variable at %L",
10398 &code->expr1->where);
10399 else
10400 {
10401 /* If one of the FORALL index variables doesn't appear in the
10402 assignment variable, then there could be a many-to-one
10403 assignment. Emit a warning rather than an error because the
10404 mask could be resolving this problem. */
10405 if (!find_forall_index (code->expr1, forall_index, 0))
10406 gfc_warning (0, "The FORALL with index %qs is not used on the "
10407 "left side of the assignment at %L and so might "
10408 "cause multiple assignment to this object",
10409 var_expr[n]->symtree->name, &code->expr1->where);
10410 }
10411 }
10412 }
10413
10414
10415 /* Resolve WHERE statement in FORALL construct. */
10416
10417 static void
10418 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
10419 gfc_expr **var_expr)
10420 {
10421 gfc_code *cblock;
10422 gfc_code *cnext;
10423
10424 cblock = code->block;
10425 while (cblock)
10426 {
10427 /* the assignment statement of a WHERE statement, or the first
10428 statement in where-body-construct of a WHERE construct */
10429 cnext = cblock->next;
10430 while (cnext)
10431 {
10432 switch (cnext->op)
10433 {
10434 /* WHERE assignment statement */
10435 case EXEC_ASSIGN:
10436 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
10437 break;
10438
10439 /* WHERE operator assignment statement */
10440 case EXEC_ASSIGN_CALL:
10441 resolve_call (cnext);
10442 if (!cnext->resolved_sym->attr.elemental)
10443 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10444 &cnext->ext.actual->expr->where);
10445 break;
10446
10447 /* WHERE or WHERE construct is part of a where-body-construct */
10448 case EXEC_WHERE:
10449 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
10450 break;
10451
10452 default:
10453 gfc_error ("Unsupported statement inside WHERE at %L",
10454 &cnext->loc);
10455 }
10456 /* the next statement within the same where-body-construct */
10457 cnext = cnext->next;
10458 }
10459 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10460 cblock = cblock->block;
10461 }
10462 }
10463
10464
10465 /* Traverse the FORALL body to check whether the following errors exist:
10466 1. For assignment, check if a many-to-one assignment happens.
10467 2. For WHERE statement, check the WHERE body to see if there is any
10468 many-to-one assignment. */
10469
10470 static void
10471 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
10472 {
10473 gfc_code *c;
10474
10475 c = code->block->next;
10476 while (c)
10477 {
10478 switch (c->op)
10479 {
10480 case EXEC_ASSIGN:
10481 case EXEC_POINTER_ASSIGN:
10482 gfc_resolve_assign_in_forall (c, nvar, var_expr);
10483 break;
10484
10485 case EXEC_ASSIGN_CALL:
10486 resolve_call (c);
10487 break;
10488
10489 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
10490 there is no need to handle it here. */
10491 case EXEC_FORALL:
10492 break;
10493 case EXEC_WHERE:
10494 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
10495 break;
10496 default:
10497 break;
10498 }
10499 /* The next statement in the FORALL body. */
10500 c = c->next;
10501 }
10502 }
10503
10504
10505 /* Counts the number of iterators needed inside a forall construct, including
10506 nested forall constructs. This is used to allocate the needed memory
10507 in gfc_resolve_forall. */
10508
10509 static int
10510 gfc_count_forall_iterators (gfc_code *code)
10511 {
10512 int max_iters, sub_iters, current_iters;
10513 gfc_forall_iterator *fa;
10514
10515 gcc_assert(code->op == EXEC_FORALL);
10516 max_iters = 0;
10517 current_iters = 0;
10518
10519 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10520 current_iters ++;
10521
10522 code = code->block->next;
10523
10524 while (code)
10525 {
10526 if (code->op == EXEC_FORALL)
10527 {
10528 sub_iters = gfc_count_forall_iterators (code);
10529 if (sub_iters > max_iters)
10530 max_iters = sub_iters;
10531 }
10532 code = code->next;
10533 }
10534
10535 return current_iters + max_iters;
10536 }
10537
10538
10539 /* Given a FORALL construct, first resolve the FORALL iterator, then call
10540 gfc_resolve_forall_body to resolve the FORALL body. */
10541
10542 static void
10543 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
10544 {
10545 static gfc_expr **var_expr;
10546 static int total_var = 0;
10547 static int nvar = 0;
10548 int i, old_nvar, tmp;
10549 gfc_forall_iterator *fa;
10550
10551 old_nvar = nvar;
10552
10553 if (!gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
10554 return;
10555
10556 /* Start to resolve a FORALL construct */
10557 if (forall_save == 0)
10558 {
10559 /* Count the total number of FORALL indices in the nested FORALL
10560 construct in order to allocate the VAR_EXPR with proper size. */
10561 total_var = gfc_count_forall_iterators (code);
10562
10563 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
10564 var_expr = XCNEWVEC (gfc_expr *, total_var);
10565 }
10566
10567 /* The information about FORALL iterator, including FORALL indices start, end
10568 and stride. An outer FORALL indice cannot appear in start, end or stride. */
10569 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10570 {
10571 /* Fortran 20008: C738 (R753). */
10572 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
10573 {
10574 gfc_error ("FORALL index-name at %L must be a scalar variable "
10575 "of type integer", &fa->var->where);
10576 continue;
10577 }
10578
10579 /* Check if any outer FORALL index name is the same as the current
10580 one. */
10581 for (i = 0; i < nvar; i++)
10582 {
10583 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
10584 gfc_error ("An outer FORALL construct already has an index "
10585 "with this name %L", &fa->var->where);
10586 }
10587
10588 /* Record the current FORALL index. */
10589 var_expr[nvar] = gfc_copy_expr (fa->var);
10590
10591 nvar++;
10592
10593 /* No memory leak. */
10594 gcc_assert (nvar <= total_var);
10595 }
10596
10597 /* Resolve the FORALL body. */
10598 gfc_resolve_forall_body (code, nvar, var_expr);
10599
10600 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
10601 gfc_resolve_blocks (code->block, ns);
10602
10603 tmp = nvar;
10604 nvar = old_nvar;
10605 /* Free only the VAR_EXPRs allocated in this frame. */
10606 for (i = nvar; i < tmp; i++)
10607 gfc_free_expr (var_expr[i]);
10608
10609 if (nvar == 0)
10610 {
10611 /* We are in the outermost FORALL construct. */
10612 gcc_assert (forall_save == 0);
10613
10614 /* VAR_EXPR is not needed any more. */
10615 free (var_expr);
10616 total_var = 0;
10617 }
10618 }
10619
10620
10621 /* Resolve a BLOCK construct statement. */
10622
10623 static void
10624 resolve_block_construct (gfc_code* code)
10625 {
10626 /* Resolve the BLOCK's namespace. */
10627 gfc_resolve (code->ext.block.ns);
10628
10629 /* For an ASSOCIATE block, the associations (and their targets) are already
10630 resolved during resolve_symbol. */
10631 }
10632
10633
10634 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
10635 DO code nodes. */
10636
10637 void
10638 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10639 {
10640 bool t;
10641
10642 for (; b; b = b->block)
10643 {
10644 t = gfc_resolve_expr (b->expr1);
10645 if (!gfc_resolve_expr (b->expr2))
10646 t = false;
10647
10648 switch (b->op)
10649 {
10650 case EXEC_IF:
10651 if (t && b->expr1 != NULL
10652 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10653 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10654 &b->expr1->where);
10655 break;
10656
10657 case EXEC_WHERE:
10658 if (t
10659 && b->expr1 != NULL
10660 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10661 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10662 &b->expr1->where);
10663 break;
10664
10665 case EXEC_GOTO:
10666 resolve_branch (b->label1, b);
10667 break;
10668
10669 case EXEC_BLOCK:
10670 resolve_block_construct (b);
10671 break;
10672
10673 case EXEC_SELECT:
10674 case EXEC_SELECT_TYPE:
10675 case EXEC_SELECT_RANK:
10676 case EXEC_FORALL:
10677 case EXEC_DO:
10678 case EXEC_DO_WHILE:
10679 case EXEC_DO_CONCURRENT:
10680 case EXEC_CRITICAL:
10681 case EXEC_READ:
10682 case EXEC_WRITE:
10683 case EXEC_IOLENGTH:
10684 case EXEC_WAIT:
10685 break;
10686
10687 case EXEC_OMP_ATOMIC:
10688 case EXEC_OACC_ATOMIC:
10689 {
10690 gfc_omp_atomic_op aop
10691 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10692
10693 /* Verify this before calling gfc_resolve_code, which might
10694 change it. */
10695 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10696 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10697 && b->next->next == NULL)
10698 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10699 && b->next->next != NULL
10700 && b->next->next->op == EXEC_ASSIGN
10701 && b->next->next->next == NULL));
10702 }
10703 break;
10704
10705 case EXEC_OACC_PARALLEL_LOOP:
10706 case EXEC_OACC_PARALLEL:
10707 case EXEC_OACC_KERNELS_LOOP:
10708 case EXEC_OACC_KERNELS:
10709 case EXEC_OACC_SERIAL_LOOP:
10710 case EXEC_OACC_SERIAL:
10711 case EXEC_OACC_DATA:
10712 case EXEC_OACC_HOST_DATA:
10713 case EXEC_OACC_LOOP:
10714 case EXEC_OACC_UPDATE:
10715 case EXEC_OACC_WAIT:
10716 case EXEC_OACC_CACHE:
10717 case EXEC_OACC_ENTER_DATA:
10718 case EXEC_OACC_EXIT_DATA:
10719 case EXEC_OACC_ROUTINE:
10720 case EXEC_OMP_CRITICAL:
10721 case EXEC_OMP_DISTRIBUTE:
10722 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10723 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10724 case EXEC_OMP_DISTRIBUTE_SIMD:
10725 case EXEC_OMP_DO:
10726 case EXEC_OMP_DO_SIMD:
10727 case EXEC_OMP_MASTER:
10728 case EXEC_OMP_ORDERED:
10729 case EXEC_OMP_PARALLEL:
10730 case EXEC_OMP_PARALLEL_DO:
10731 case EXEC_OMP_PARALLEL_DO_SIMD:
10732 case EXEC_OMP_PARALLEL_SECTIONS:
10733 case EXEC_OMP_PARALLEL_WORKSHARE:
10734 case EXEC_OMP_SECTIONS:
10735 case EXEC_OMP_SIMD:
10736 case EXEC_OMP_SINGLE:
10737 case EXEC_OMP_TARGET:
10738 case EXEC_OMP_TARGET_DATA:
10739 case EXEC_OMP_TARGET_ENTER_DATA:
10740 case EXEC_OMP_TARGET_EXIT_DATA:
10741 case EXEC_OMP_TARGET_PARALLEL:
10742 case EXEC_OMP_TARGET_PARALLEL_DO:
10743 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10744 case EXEC_OMP_TARGET_SIMD:
10745 case EXEC_OMP_TARGET_TEAMS:
10746 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10747 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10748 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10749 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10750 case EXEC_OMP_TARGET_UPDATE:
10751 case EXEC_OMP_TASK:
10752 case EXEC_OMP_TASKGROUP:
10753 case EXEC_OMP_TASKLOOP:
10754 case EXEC_OMP_TASKLOOP_SIMD:
10755 case EXEC_OMP_TASKWAIT:
10756 case EXEC_OMP_TASKYIELD:
10757 case EXEC_OMP_TEAMS:
10758 case EXEC_OMP_TEAMS_DISTRIBUTE:
10759 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10760 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10761 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10762 case EXEC_OMP_WORKSHARE:
10763 break;
10764
10765 default:
10766 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10767 }
10768
10769 gfc_resolve_code (b->next, ns);
10770 }
10771 }
10772
10773
10774 /* Does everything to resolve an ordinary assignment. Returns true
10775 if this is an interface assignment. */
10776 static bool
10777 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10778 {
10779 bool rval = false;
10780 gfc_expr *lhs;
10781 gfc_expr *rhs;
10782 int n;
10783 gfc_ref *ref;
10784 symbol_attribute attr;
10785
10786 if (gfc_extend_assign (code, ns))
10787 {
10788 gfc_expr** rhsptr;
10789
10790 if (code->op == EXEC_ASSIGN_CALL)
10791 {
10792 lhs = code->ext.actual->expr;
10793 rhsptr = &code->ext.actual->next->expr;
10794 }
10795 else
10796 {
10797 gfc_actual_arglist* args;
10798 gfc_typebound_proc* tbp;
10799
10800 gcc_assert (code->op == EXEC_COMPCALL);
10801
10802 args = code->expr1->value.compcall.actual;
10803 lhs = args->expr;
10804 rhsptr = &args->next->expr;
10805
10806 tbp = code->expr1->value.compcall.tbp;
10807 gcc_assert (!tbp->is_generic);
10808 }
10809
10810 /* Make a temporary rhs when there is a default initializer
10811 and rhs is the same symbol as the lhs. */
10812 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10813 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10814 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10815 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10816 *rhsptr = gfc_get_parentheses (*rhsptr);
10817
10818 return true;
10819 }
10820
10821 lhs = code->expr1;
10822 rhs = code->expr2;
10823
10824 if ((gfc_numeric_ts (&lhs->ts) || lhs->ts.type == BT_LOGICAL)
10825 && rhs->ts.type == BT_CHARACTER
10826 && (rhs->expr_type != EXPR_CONSTANT || !flag_dec_char_conversions))
10827 {
10828 /* Use of -fdec-char-conversions allows assignment of character data
10829 to non-character variables. This not permited for nonconstant
10830 strings. */
10831 gfc_error ("Cannot convert %s to %s at %L", gfc_typename (rhs),
10832 gfc_typename (lhs), &rhs->where);
10833 return false;
10834 }
10835
10836 /* Handle the case of a BOZ literal on the RHS. */
10837 if (rhs->ts.type == BT_BOZ)
10838 {
10839 if (gfc_invalid_boz ("BOZ literal constant at %L is neither a DATA "
10840 "statement value nor an actual argument of "
10841 "INT/REAL/DBLE/CMPLX intrinsic subprogram",
10842 &rhs->where))
10843 return false;
10844
10845 switch (lhs->ts.type)
10846 {
10847 case BT_INTEGER:
10848 if (!gfc_boz2int (rhs, lhs->ts.kind))
10849 return false;
10850 break;
10851 case BT_REAL:
10852 if (!gfc_boz2real (rhs, lhs->ts.kind))
10853 return false;
10854 break;
10855 default:
10856 gfc_error ("Invalid use of BOZ literal constant at %L", &rhs->where);
10857 return false;
10858 }
10859 }
10860
10861 if (lhs->ts.type == BT_CHARACTER && warn_character_truncation)
10862 {
10863 HOST_WIDE_INT llen = 0, rlen = 0;
10864 if (lhs->ts.u.cl != NULL
10865 && lhs->ts.u.cl->length != NULL
10866 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10867 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10868
10869 if (rhs->expr_type == EXPR_CONSTANT)
10870 rlen = rhs->value.character.length;
10871
10872 else if (rhs->ts.u.cl != NULL
10873 && rhs->ts.u.cl->length != NULL
10874 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10875 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10876
10877 if (rlen && llen && rlen > llen)
10878 gfc_warning_now (OPT_Wcharacter_truncation,
10879 "CHARACTER expression will be truncated "
10880 "in assignment (%ld/%ld) at %L",
10881 (long) llen, (long) rlen, &code->loc);
10882 }
10883
10884 /* Ensure that a vector index expression for the lvalue is evaluated
10885 to a temporary if the lvalue symbol is referenced in it. */
10886 if (lhs->rank)
10887 {
10888 for (ref = lhs->ref; ref; ref= ref->next)
10889 if (ref->type == REF_ARRAY)
10890 {
10891 for (n = 0; n < ref->u.ar.dimen; n++)
10892 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10893 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10894 ref->u.ar.start[n]))
10895 ref->u.ar.start[n]
10896 = gfc_get_parentheses (ref->u.ar.start[n]);
10897 }
10898 }
10899
10900 if (gfc_pure (NULL))
10901 {
10902 if (lhs->ts.type == BT_DERIVED
10903 && lhs->expr_type == EXPR_VARIABLE
10904 && lhs->ts.u.derived->attr.pointer_comp
10905 && rhs->expr_type == EXPR_VARIABLE
10906 && (gfc_impure_variable (rhs->symtree->n.sym)
10907 || gfc_is_coindexed (rhs)))
10908 {
10909 /* F2008, C1283. */
10910 if (gfc_is_coindexed (rhs))
10911 gfc_error ("Coindexed expression at %L is assigned to "
10912 "a derived type variable with a POINTER "
10913 "component in a PURE procedure",
10914 &rhs->where);
10915 else
10916 /* F2008, C1283 (4). */
10917 gfc_error ("In a pure subprogram an INTENT(IN) dummy argument "
10918 "shall not be used as the expr at %L of an intrinsic "
10919 "assignment statement in which the variable is of a "
10920 "derived type if the derived type has a pointer "
10921 "component at any level of component selection.",
10922 &rhs->where);
10923 return rval;
10924 }
10925
10926 /* Fortran 2008, C1283. */
10927 if (gfc_is_coindexed (lhs))
10928 {
10929 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10930 "procedure", &rhs->where);
10931 return rval;
10932 }
10933 }
10934
10935 if (gfc_implicit_pure (NULL))
10936 {
10937 if (lhs->expr_type == EXPR_VARIABLE
10938 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10939 && lhs->symtree->n.sym->ns != gfc_current_ns)
10940 gfc_unset_implicit_pure (NULL);
10941
10942 if (lhs->ts.type == BT_DERIVED
10943 && lhs->expr_type == EXPR_VARIABLE
10944 && lhs->ts.u.derived->attr.pointer_comp
10945 && rhs->expr_type == EXPR_VARIABLE
10946 && (gfc_impure_variable (rhs->symtree->n.sym)
10947 || gfc_is_coindexed (rhs)))
10948 gfc_unset_implicit_pure (NULL);
10949
10950 /* Fortran 2008, C1283. */
10951 if (gfc_is_coindexed (lhs))
10952 gfc_unset_implicit_pure (NULL);
10953 }
10954
10955 /* F2008, 7.2.1.2. */
10956 attr = gfc_expr_attr (lhs);
10957 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10958 {
10959 if (attr.codimension)
10960 {
10961 gfc_error ("Assignment to polymorphic coarray at %L is not "
10962 "permitted", &lhs->where);
10963 return false;
10964 }
10965 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10966 "polymorphic variable at %L", &lhs->where))
10967 return false;
10968 if (!flag_realloc_lhs)
10969 {
10970 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10971 "requires %<-frealloc-lhs%>", &lhs->where);
10972 return false;
10973 }
10974 }
10975 else if (lhs->ts.type == BT_CLASS)
10976 {
10977 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10978 "assignment at %L - check that there is a matching specific "
10979 "subroutine for '=' operator", &lhs->where);
10980 return false;
10981 }
10982
10983 bool lhs_coindexed = gfc_is_coindexed (lhs);
10984
10985 /* F2008, Section 7.2.1.2. */
10986 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10987 {
10988 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10989 "component in assignment at %L", &lhs->where);
10990 return false;
10991 }
10992
10993 /* Assign the 'data' of a class object to a derived type. */
10994 if (lhs->ts.type == BT_DERIVED
10995 && rhs->ts.type == BT_CLASS
10996 && rhs->expr_type != EXPR_ARRAY)
10997 gfc_add_data_component (rhs);
10998
10999 /* Make sure there is a vtable and, in particular, a _copy for the
11000 rhs type. */
11001 if (UNLIMITED_POLY (lhs) && lhs->rank && rhs->ts.type != BT_CLASS)
11002 gfc_find_vtab (&rhs->ts);
11003
11004 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
11005 && (lhs_coindexed
11006 || (code->expr2->expr_type == EXPR_FUNCTION
11007 && code->expr2->value.function.isym
11008 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
11009 && (code->expr1->rank == 0 || code->expr2->rank != 0)
11010 && !gfc_expr_attr (rhs).allocatable
11011 && !gfc_has_vector_subscript (rhs)));
11012
11013 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
11014
11015 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
11016 Additionally, insert this code when the RHS is a CAF as we then use the
11017 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
11018 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
11019 noncoindexed array and the RHS is a coindexed scalar, use the normal code
11020 path. */
11021 if (caf_convert_to_send)
11022 {
11023 if (code->expr2->expr_type == EXPR_FUNCTION
11024 && code->expr2->value.function.isym
11025 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
11026 remove_caf_get_intrinsic (code->expr2);
11027 code->op = EXEC_CALL;
11028 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
11029 code->resolved_sym = code->symtree->n.sym;
11030 code->resolved_sym->attr.flavor = FL_PROCEDURE;
11031 code->resolved_sym->attr.intrinsic = 1;
11032 code->resolved_sym->attr.subroutine = 1;
11033 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
11034 gfc_commit_symbol (code->resolved_sym);
11035 code->ext.actual = gfc_get_actual_arglist ();
11036 code->ext.actual->expr = lhs;
11037 code->ext.actual->next = gfc_get_actual_arglist ();
11038 code->ext.actual->next->expr = rhs;
11039 code->expr1 = NULL;
11040 code->expr2 = NULL;
11041 }
11042
11043 return false;
11044 }
11045
11046
11047 /* Add a component reference onto an expression. */
11048
11049 static void
11050 add_comp_ref (gfc_expr *e, gfc_component *c)
11051 {
11052 gfc_ref **ref;
11053 ref = &(e->ref);
11054 while (*ref)
11055 ref = &((*ref)->next);
11056 *ref = gfc_get_ref ();
11057 (*ref)->type = REF_COMPONENT;
11058 (*ref)->u.c.sym = e->ts.u.derived;
11059 (*ref)->u.c.component = c;
11060 e->ts = c->ts;
11061
11062 /* Add a full array ref, as necessary. */
11063 if (c->as)
11064 {
11065 gfc_add_full_array_ref (e, c->as);
11066 e->rank = c->as->rank;
11067 }
11068 }
11069
11070
11071 /* Build an assignment. Keep the argument 'op' for future use, so that
11072 pointer assignments can be made. */
11073
11074 static gfc_code *
11075 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
11076 gfc_component *comp1, gfc_component *comp2, locus loc)
11077 {
11078 gfc_code *this_code;
11079
11080 this_code = gfc_get_code (op);
11081 this_code->next = NULL;
11082 this_code->expr1 = gfc_copy_expr (expr1);
11083 this_code->expr2 = gfc_copy_expr (expr2);
11084 this_code->loc = loc;
11085 if (comp1 && comp2)
11086 {
11087 add_comp_ref (this_code->expr1, comp1);
11088 add_comp_ref (this_code->expr2, comp2);
11089 }
11090
11091 return this_code;
11092 }
11093
11094
11095 /* Makes a temporary variable expression based on the characteristics of
11096 a given variable expression. */
11097
11098 static gfc_expr*
11099 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
11100 {
11101 static int serial = 0;
11102 char name[GFC_MAX_SYMBOL_LEN];
11103 gfc_symtree *tmp;
11104 gfc_array_spec *as;
11105 gfc_array_ref *aref;
11106 gfc_ref *ref;
11107
11108 sprintf (name, GFC_PREFIX("DA%d"), serial++);
11109 gfc_get_sym_tree (name, ns, &tmp, false);
11110 gfc_add_type (tmp->n.sym, &e->ts, NULL);
11111
11112 if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
11113 tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
11114 NULL,
11115 e->value.character.length);
11116
11117 as = NULL;
11118 ref = NULL;
11119 aref = NULL;
11120
11121 /* Obtain the arrayspec for the temporary. */
11122 if (e->rank && e->expr_type != EXPR_ARRAY
11123 && e->expr_type != EXPR_FUNCTION
11124 && e->expr_type != EXPR_OP)
11125 {
11126 aref = gfc_find_array_ref (e);
11127 if (e->expr_type == EXPR_VARIABLE
11128 && e->symtree->n.sym->as == aref->as)
11129 as = aref->as;
11130 else
11131 {
11132 for (ref = e->ref; ref; ref = ref->next)
11133 if (ref->type == REF_COMPONENT
11134 && ref->u.c.component->as == aref->as)
11135 {
11136 as = aref->as;
11137 break;
11138 }
11139 }
11140 }
11141
11142 /* Add the attributes and the arrayspec to the temporary. */
11143 tmp->n.sym->attr = gfc_expr_attr (e);
11144 tmp->n.sym->attr.function = 0;
11145 tmp->n.sym->attr.result = 0;
11146 tmp->n.sym->attr.flavor = FL_VARIABLE;
11147 tmp->n.sym->attr.dummy = 0;
11148 tmp->n.sym->attr.intent = INTENT_UNKNOWN;
11149
11150 if (as)
11151 {
11152 tmp->n.sym->as = gfc_copy_array_spec (as);
11153 if (!ref)
11154 ref = e->ref;
11155 if (as->type == AS_DEFERRED)
11156 tmp->n.sym->attr.allocatable = 1;
11157 }
11158 else if (e->rank && (e->expr_type == EXPR_ARRAY
11159 || e->expr_type == EXPR_FUNCTION
11160 || e->expr_type == EXPR_OP))
11161 {
11162 tmp->n.sym->as = gfc_get_array_spec ();
11163 tmp->n.sym->as->type = AS_DEFERRED;
11164 tmp->n.sym->as->rank = e->rank;
11165 tmp->n.sym->attr.allocatable = 1;
11166 tmp->n.sym->attr.dimension = 1;
11167 }
11168 else
11169 tmp->n.sym->attr.dimension = 0;
11170
11171 gfc_set_sym_referenced (tmp->n.sym);
11172 gfc_commit_symbol (tmp->n.sym);
11173 e = gfc_lval_expr_from_sym (tmp->n.sym);
11174
11175 /* Should the lhs be a section, use its array ref for the
11176 temporary expression. */
11177 if (aref && aref->type != AR_FULL)
11178 {
11179 gfc_free_ref_list (e->ref);
11180 e->ref = gfc_copy_ref (ref);
11181 }
11182 return e;
11183 }
11184
11185
11186 /* Add one line of code to the code chain, making sure that 'head' and
11187 'tail' are appropriately updated. */
11188
11189 static void
11190 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
11191 {
11192 gcc_assert (this_code);
11193 if (*head == NULL)
11194 *head = *tail = *this_code;
11195 else
11196 *tail = gfc_append_code (*tail, *this_code);
11197 *this_code = NULL;
11198 }
11199
11200
11201 /* Counts the potential number of part array references that would
11202 result from resolution of typebound defined assignments. */
11203
11204 static int
11205 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
11206 {
11207 gfc_component *c;
11208 int c_depth = 0, t_depth;
11209
11210 for (c= derived->components; c; c = c->next)
11211 {
11212 if ((!gfc_bt_struct (c->ts.type)
11213 || c->attr.pointer
11214 || c->attr.allocatable
11215 || c->attr.proc_pointer_comp
11216 || c->attr.class_pointer
11217 || c->attr.proc_pointer)
11218 && !c->attr.defined_assign_comp)
11219 continue;
11220
11221 if (c->as && c_depth == 0)
11222 c_depth = 1;
11223
11224 if (c->ts.u.derived->attr.defined_assign_comp)
11225 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
11226 c->as ? 1 : 0);
11227 else
11228 t_depth = 0;
11229
11230 c_depth = t_depth > c_depth ? t_depth : c_depth;
11231 }
11232 return depth + c_depth;
11233 }
11234
11235
11236 /* Implement 7.2.1.3 of the F08 standard:
11237 "An intrinsic assignment where the variable is of derived type is
11238 performed as if each component of the variable were assigned from the
11239 corresponding component of expr using pointer assignment (7.2.2) for
11240 each pointer component, defined assignment for each nonpointer
11241 nonallocatable component of a type that has a type-bound defined
11242 assignment consistent with the component, intrinsic assignment for
11243 each other nonpointer nonallocatable component, ..."
11244
11245 The pointer assignments are taken care of by the intrinsic
11246 assignment of the structure itself. This function recursively adds
11247 defined assignments where required. The recursion is accomplished
11248 by calling gfc_resolve_code.
11249
11250 When the lhs in a defined assignment has intent INOUT, we need a
11251 temporary for the lhs. In pseudo-code:
11252
11253 ! Only call function lhs once.
11254 if (lhs is not a constant or an variable)
11255 temp_x = expr2
11256 expr2 => temp_x
11257 ! Do the intrinsic assignment
11258 expr1 = expr2
11259 ! Now do the defined assignments
11260 do over components with typebound defined assignment [%cmp]
11261 #if one component's assignment procedure is INOUT
11262 t1 = expr1
11263 #if expr2 non-variable
11264 temp_x = expr2
11265 expr2 => temp_x
11266 # endif
11267 expr1 = expr2
11268 # for each cmp
11269 t1%cmp {defined=} expr2%cmp
11270 expr1%cmp = t1%cmp
11271 #else
11272 expr1 = expr2
11273
11274 # for each cmp
11275 expr1%cmp {defined=} expr2%cmp
11276 #endif
11277 */
11278
11279 /* The temporary assignments have to be put on top of the additional
11280 code to avoid the result being changed by the intrinsic assignment.
11281 */
11282 static int component_assignment_level = 0;
11283 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
11284
11285 static void
11286 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
11287 {
11288 gfc_component *comp1, *comp2;
11289 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
11290 gfc_expr *t1;
11291 int error_count, depth;
11292
11293 gfc_get_errors (NULL, &error_count);
11294
11295 /* Filter out continuing processing after an error. */
11296 if (error_count
11297 || (*code)->expr1->ts.type != BT_DERIVED
11298 || (*code)->expr2->ts.type != BT_DERIVED)
11299 return;
11300
11301 /* TODO: Handle more than one part array reference in assignments. */
11302 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
11303 (*code)->expr1->rank ? 1 : 0);
11304 if (depth > 1)
11305 {
11306 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
11307 "done because multiple part array references would "
11308 "occur in intermediate expressions.", &(*code)->loc);
11309 return;
11310 }
11311
11312 component_assignment_level++;
11313
11314 /* Create a temporary so that functions get called only once. */
11315 if ((*code)->expr2->expr_type != EXPR_VARIABLE
11316 && (*code)->expr2->expr_type != EXPR_CONSTANT)
11317 {
11318 gfc_expr *tmp_expr;
11319
11320 /* Assign the rhs to the temporary. */
11321 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11322 this_code = build_assignment (EXEC_ASSIGN,
11323 tmp_expr, (*code)->expr2,
11324 NULL, NULL, (*code)->loc);
11325 /* Add the code and substitute the rhs expression. */
11326 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
11327 gfc_free_expr ((*code)->expr2);
11328 (*code)->expr2 = tmp_expr;
11329 }
11330
11331 /* Do the intrinsic assignment. This is not needed if the lhs is one
11332 of the temporaries generated here, since the intrinsic assignment
11333 to the final result already does this. */
11334 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
11335 {
11336 this_code = build_assignment (EXEC_ASSIGN,
11337 (*code)->expr1, (*code)->expr2,
11338 NULL, NULL, (*code)->loc);
11339 add_code_to_chain (&this_code, &head, &tail);
11340 }
11341
11342 comp1 = (*code)->expr1->ts.u.derived->components;
11343 comp2 = (*code)->expr2->ts.u.derived->components;
11344
11345 t1 = NULL;
11346 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
11347 {
11348 bool inout = false;
11349
11350 /* The intrinsic assignment does the right thing for pointers
11351 of all kinds and allocatable components. */
11352 if (!gfc_bt_struct (comp1->ts.type)
11353 || comp1->attr.pointer
11354 || comp1->attr.allocatable
11355 || comp1->attr.proc_pointer_comp
11356 || comp1->attr.class_pointer
11357 || comp1->attr.proc_pointer)
11358 continue;
11359
11360 /* Make an assigment for this component. */
11361 this_code = build_assignment (EXEC_ASSIGN,
11362 (*code)->expr1, (*code)->expr2,
11363 comp1, comp2, (*code)->loc);
11364
11365 /* Convert the assignment if there is a defined assignment for
11366 this type. Otherwise, using the call from gfc_resolve_code,
11367 recurse into its components. */
11368 gfc_resolve_code (this_code, ns);
11369
11370 if (this_code->op == EXEC_ASSIGN_CALL)
11371 {
11372 gfc_formal_arglist *dummy_args;
11373 gfc_symbol *rsym;
11374 /* Check that there is a typebound defined assignment. If not,
11375 then this must be a module defined assignment. We cannot
11376 use the defined_assign_comp attribute here because it must
11377 be this derived type that has the defined assignment and not
11378 a parent type. */
11379 if (!(comp1->ts.u.derived->f2k_derived
11380 && comp1->ts.u.derived->f2k_derived
11381 ->tb_op[INTRINSIC_ASSIGN]))
11382 {
11383 gfc_free_statements (this_code);
11384 this_code = NULL;
11385 continue;
11386 }
11387
11388 /* If the first argument of the subroutine has intent INOUT
11389 a temporary must be generated and used instead. */
11390 rsym = this_code->resolved_sym;
11391 dummy_args = gfc_sym_get_dummy_args (rsym);
11392 if (dummy_args
11393 && dummy_args->sym->attr.intent == INTENT_INOUT)
11394 {
11395 gfc_code *temp_code;
11396 inout = true;
11397
11398 /* Build the temporary required for the assignment and put
11399 it at the head of the generated code. */
11400 if (!t1)
11401 {
11402 t1 = get_temp_from_expr ((*code)->expr1, ns);
11403 temp_code = build_assignment (EXEC_ASSIGN,
11404 t1, (*code)->expr1,
11405 NULL, NULL, (*code)->loc);
11406
11407 /* For allocatable LHS, check whether it is allocated. Note
11408 that allocatable components with defined assignment are
11409 not yet support. See PR 57696. */
11410 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
11411 {
11412 gfc_code *block;
11413 gfc_expr *e =
11414 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11415 block = gfc_get_code (EXEC_IF);
11416 block->block = gfc_get_code (EXEC_IF);
11417 block->block->expr1
11418 = gfc_build_intrinsic_call (ns,
11419 GFC_ISYM_ALLOCATED, "allocated",
11420 (*code)->loc, 1, e);
11421 block->block->next = temp_code;
11422 temp_code = block;
11423 }
11424 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
11425 }
11426
11427 /* Replace the first actual arg with the component of the
11428 temporary. */
11429 gfc_free_expr (this_code->ext.actual->expr);
11430 this_code->ext.actual->expr = gfc_copy_expr (t1);
11431 add_comp_ref (this_code->ext.actual->expr, comp1);
11432
11433 /* If the LHS variable is allocatable and wasn't allocated and
11434 the temporary is allocatable, pointer assign the address of
11435 the freshly allocated LHS to the temporary. */
11436 if ((*code)->expr1->symtree->n.sym->attr.allocatable
11437 && gfc_expr_attr ((*code)->expr1).allocatable)
11438 {
11439 gfc_code *block;
11440 gfc_expr *cond;
11441
11442 cond = gfc_get_expr ();
11443 cond->ts.type = BT_LOGICAL;
11444 cond->ts.kind = gfc_default_logical_kind;
11445 cond->expr_type = EXPR_OP;
11446 cond->where = (*code)->loc;
11447 cond->value.op.op = INTRINSIC_NOT;
11448 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
11449 GFC_ISYM_ALLOCATED, "allocated",
11450 (*code)->loc, 1, gfc_copy_expr (t1));
11451 block = gfc_get_code (EXEC_IF);
11452 block->block = gfc_get_code (EXEC_IF);
11453 block->block->expr1 = cond;
11454 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11455 t1, (*code)->expr1,
11456 NULL, NULL, (*code)->loc);
11457 add_code_to_chain (&block, &head, &tail);
11458 }
11459 }
11460 }
11461 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
11462 {
11463 /* Don't add intrinsic assignments since they are already
11464 effected by the intrinsic assignment of the structure. */
11465 gfc_free_statements (this_code);
11466 this_code = NULL;
11467 continue;
11468 }
11469
11470 add_code_to_chain (&this_code, &head, &tail);
11471
11472 if (t1 && inout)
11473 {
11474 /* Transfer the value to the final result. */
11475 this_code = build_assignment (EXEC_ASSIGN,
11476 (*code)->expr1, t1,
11477 comp1, comp2, (*code)->loc);
11478 add_code_to_chain (&this_code, &head, &tail);
11479 }
11480 }
11481
11482 /* Put the temporary assignments at the top of the generated code. */
11483 if (tmp_head && component_assignment_level == 1)
11484 {
11485 gfc_append_code (tmp_head, head);
11486 head = tmp_head;
11487 tmp_head = tmp_tail = NULL;
11488 }
11489
11490 // If we did a pointer assignment - thus, we need to ensure that the LHS is
11491 // not accidentally deallocated. Hence, nullify t1.
11492 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
11493 && gfc_expr_attr ((*code)->expr1).allocatable)
11494 {
11495 gfc_code *block;
11496 gfc_expr *cond;
11497 gfc_expr *e;
11498
11499 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11500 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
11501 (*code)->loc, 2, gfc_copy_expr (t1), e);
11502 block = gfc_get_code (EXEC_IF);
11503 block->block = gfc_get_code (EXEC_IF);
11504 block->block->expr1 = cond;
11505 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11506 t1, gfc_get_null_expr (&(*code)->loc),
11507 NULL, NULL, (*code)->loc);
11508 gfc_append_code (tail, block);
11509 tail = block;
11510 }
11511
11512 /* Now attach the remaining code chain to the input code. Step on
11513 to the end of the new code since resolution is complete. */
11514 gcc_assert ((*code)->op == EXEC_ASSIGN);
11515 tail->next = (*code)->next;
11516 /* Overwrite 'code' because this would place the intrinsic assignment
11517 before the temporary for the lhs is created. */
11518 gfc_free_expr ((*code)->expr1);
11519 gfc_free_expr ((*code)->expr2);
11520 **code = *head;
11521 if (head != tail)
11522 free (head);
11523 *code = tail;
11524
11525 component_assignment_level--;
11526 }
11527
11528
11529 /* F2008: Pointer function assignments are of the form:
11530 ptr_fcn (args) = expr
11531 This function breaks these assignments into two statements:
11532 temporary_pointer => ptr_fcn(args)
11533 temporary_pointer = expr */
11534
11535 static bool
11536 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
11537 {
11538 gfc_expr *tmp_ptr_expr;
11539 gfc_code *this_code;
11540 gfc_component *comp;
11541 gfc_symbol *s;
11542
11543 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
11544 return false;
11545
11546 /* Even if standard does not support this feature, continue to build
11547 the two statements to avoid upsetting frontend_passes.c. */
11548 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
11549 "%L", &(*code)->loc);
11550
11551 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
11552
11553 if (comp)
11554 s = comp->ts.interface;
11555 else
11556 s = (*code)->expr1->symtree->n.sym;
11557
11558 if (s == NULL || !s->result->attr.pointer)
11559 {
11560 gfc_error ("The function result on the lhs of the assignment at "
11561 "%L must have the pointer attribute.",
11562 &(*code)->expr1->where);
11563 (*code)->op = EXEC_NOP;
11564 return false;
11565 }
11566
11567 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
11568
11569 /* get_temp_from_expression is set up for ordinary assignments. To that
11570 end, where array bounds are not known, arrays are made allocatable.
11571 Change the temporary to a pointer here. */
11572 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
11573 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
11574 tmp_ptr_expr->where = (*code)->loc;
11575
11576 this_code = build_assignment (EXEC_ASSIGN,
11577 tmp_ptr_expr, (*code)->expr2,
11578 NULL, NULL, (*code)->loc);
11579 this_code->next = (*code)->next;
11580 (*code)->next = this_code;
11581 (*code)->op = EXEC_POINTER_ASSIGN;
11582 (*code)->expr2 = (*code)->expr1;
11583 (*code)->expr1 = tmp_ptr_expr;
11584
11585 return true;
11586 }
11587
11588
11589 /* Deferred character length assignments from an operator expression
11590 require a temporary because the character length of the lhs can
11591 change in the course of the assignment. */
11592
11593 static bool
11594 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
11595 {
11596 gfc_expr *tmp_expr;
11597 gfc_code *this_code;
11598
11599 if (!((*code)->expr1->ts.type == BT_CHARACTER
11600 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
11601 && (*code)->expr2->expr_type == EXPR_OP))
11602 return false;
11603
11604 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
11605 return false;
11606
11607 if (gfc_expr_attr ((*code)->expr1).pointer)
11608 return false;
11609
11610 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11611 tmp_expr->where = (*code)->loc;
11612
11613 /* A new charlen is required to ensure that the variable string
11614 length is different to that of the original lhs. */
11615 tmp_expr->ts.u.cl = gfc_get_charlen();
11616 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
11617 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
11618 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
11619
11620 tmp_expr->symtree->n.sym->ts.deferred = 1;
11621
11622 this_code = build_assignment (EXEC_ASSIGN,
11623 (*code)->expr1,
11624 gfc_copy_expr (tmp_expr),
11625 NULL, NULL, (*code)->loc);
11626
11627 (*code)->expr1 = tmp_expr;
11628
11629 this_code->next = (*code)->next;
11630 (*code)->next = this_code;
11631
11632 return true;
11633 }
11634
11635
11636 /* Given a block of code, recursively resolve everything pointed to by this
11637 code block. */
11638
11639 void
11640 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
11641 {
11642 int omp_workshare_save;
11643 int forall_save, do_concurrent_save;
11644 code_stack frame;
11645 bool t;
11646
11647 frame.prev = cs_base;
11648 frame.head = code;
11649 cs_base = &frame;
11650
11651 find_reachable_labels (code);
11652
11653 for (; code; code = code->next)
11654 {
11655 frame.current = code;
11656 forall_save = forall_flag;
11657 do_concurrent_save = gfc_do_concurrent_flag;
11658
11659 if (code->op == EXEC_FORALL)
11660 {
11661 forall_flag = 1;
11662 gfc_resolve_forall (code, ns, forall_save);
11663 forall_flag = 2;
11664 }
11665 else if (code->block)
11666 {
11667 omp_workshare_save = -1;
11668 switch (code->op)
11669 {
11670 case EXEC_OACC_PARALLEL_LOOP:
11671 case EXEC_OACC_PARALLEL:
11672 case EXEC_OACC_KERNELS_LOOP:
11673 case EXEC_OACC_KERNELS:
11674 case EXEC_OACC_SERIAL_LOOP:
11675 case EXEC_OACC_SERIAL:
11676 case EXEC_OACC_DATA:
11677 case EXEC_OACC_HOST_DATA:
11678 case EXEC_OACC_LOOP:
11679 gfc_resolve_oacc_blocks (code, ns);
11680 break;
11681 case EXEC_OMP_PARALLEL_WORKSHARE:
11682 omp_workshare_save = omp_workshare_flag;
11683 omp_workshare_flag = 1;
11684 gfc_resolve_omp_parallel_blocks (code, ns);
11685 break;
11686 case EXEC_OMP_PARALLEL:
11687 case EXEC_OMP_PARALLEL_DO:
11688 case EXEC_OMP_PARALLEL_DO_SIMD:
11689 case EXEC_OMP_PARALLEL_SECTIONS:
11690 case EXEC_OMP_TARGET_PARALLEL:
11691 case EXEC_OMP_TARGET_PARALLEL_DO:
11692 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11693 case EXEC_OMP_TARGET_TEAMS:
11694 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11695 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11696 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11697 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11698 case EXEC_OMP_TASK:
11699 case EXEC_OMP_TASKLOOP:
11700 case EXEC_OMP_TASKLOOP_SIMD:
11701 case EXEC_OMP_TEAMS:
11702 case EXEC_OMP_TEAMS_DISTRIBUTE:
11703 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11704 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11705 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11706 omp_workshare_save = omp_workshare_flag;
11707 omp_workshare_flag = 0;
11708 gfc_resolve_omp_parallel_blocks (code, ns);
11709 break;
11710 case EXEC_OMP_DISTRIBUTE:
11711 case EXEC_OMP_DISTRIBUTE_SIMD:
11712 case EXEC_OMP_DO:
11713 case EXEC_OMP_DO_SIMD:
11714 case EXEC_OMP_SIMD:
11715 case EXEC_OMP_TARGET_SIMD:
11716 gfc_resolve_omp_do_blocks (code, ns);
11717 break;
11718 case EXEC_SELECT_TYPE:
11719 /* Blocks are handled in resolve_select_type because we have
11720 to transform the SELECT TYPE into ASSOCIATE first. */
11721 break;
11722 case EXEC_DO_CONCURRENT:
11723 gfc_do_concurrent_flag = 1;
11724 gfc_resolve_blocks (code->block, ns);
11725 gfc_do_concurrent_flag = 2;
11726 break;
11727 case EXEC_OMP_WORKSHARE:
11728 omp_workshare_save = omp_workshare_flag;
11729 omp_workshare_flag = 1;
11730 /* FALL THROUGH */
11731 default:
11732 gfc_resolve_blocks (code->block, ns);
11733 break;
11734 }
11735
11736 if (omp_workshare_save != -1)
11737 omp_workshare_flag = omp_workshare_save;
11738 }
11739 start:
11740 t = true;
11741 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11742 t = gfc_resolve_expr (code->expr1);
11743 forall_flag = forall_save;
11744 gfc_do_concurrent_flag = do_concurrent_save;
11745
11746 if (!gfc_resolve_expr (code->expr2))
11747 t = false;
11748
11749 if (code->op == EXEC_ALLOCATE
11750 && !gfc_resolve_expr (code->expr3))
11751 t = false;
11752
11753 switch (code->op)
11754 {
11755 case EXEC_NOP:
11756 case EXEC_END_BLOCK:
11757 case EXEC_END_NESTED_BLOCK:
11758 case EXEC_CYCLE:
11759 case EXEC_PAUSE:
11760 case EXEC_STOP:
11761 case EXEC_ERROR_STOP:
11762 case EXEC_EXIT:
11763 case EXEC_CONTINUE:
11764 case EXEC_DT_END:
11765 case EXEC_ASSIGN_CALL:
11766 break;
11767
11768 case EXEC_CRITICAL:
11769 resolve_critical (code);
11770 break;
11771
11772 case EXEC_SYNC_ALL:
11773 case EXEC_SYNC_IMAGES:
11774 case EXEC_SYNC_MEMORY:
11775 resolve_sync (code);
11776 break;
11777
11778 case EXEC_LOCK:
11779 case EXEC_UNLOCK:
11780 case EXEC_EVENT_POST:
11781 case EXEC_EVENT_WAIT:
11782 resolve_lock_unlock_event (code);
11783 break;
11784
11785 case EXEC_FAIL_IMAGE:
11786 case EXEC_FORM_TEAM:
11787 case EXEC_CHANGE_TEAM:
11788 case EXEC_END_TEAM:
11789 case EXEC_SYNC_TEAM:
11790 break;
11791
11792 case EXEC_ENTRY:
11793 /* Keep track of which entry we are up to. */
11794 current_entry_id = code->ext.entry->id;
11795 break;
11796
11797 case EXEC_WHERE:
11798 resolve_where (code, NULL);
11799 break;
11800
11801 case EXEC_GOTO:
11802 if (code->expr1 != NULL)
11803 {
11804 if (code->expr1->ts.type != BT_INTEGER)
11805 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11806 "INTEGER variable", &code->expr1->where);
11807 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11808 gfc_error ("Variable %qs has not been assigned a target "
11809 "label at %L", code->expr1->symtree->n.sym->name,
11810 &code->expr1->where);
11811 }
11812 else
11813 resolve_branch (code->label1, code);
11814 break;
11815
11816 case EXEC_RETURN:
11817 if (code->expr1 != NULL
11818 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11819 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11820 "INTEGER return specifier", &code->expr1->where);
11821 break;
11822
11823 case EXEC_INIT_ASSIGN:
11824 case EXEC_END_PROCEDURE:
11825 break;
11826
11827 case EXEC_ASSIGN:
11828 if (!t)
11829 break;
11830
11831 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11832 the LHS. */
11833 if (code->expr1->expr_type == EXPR_FUNCTION
11834 && code->expr1->value.function.isym
11835 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11836 remove_caf_get_intrinsic (code->expr1);
11837
11838 /* If this is a pointer function in an lvalue variable context,
11839 the new code will have to be resolved afresh. This is also the
11840 case with an error, where the code is transformed into NOP to
11841 prevent ICEs downstream. */
11842 if (resolve_ptr_fcn_assign (&code, ns)
11843 || code->op == EXEC_NOP)
11844 goto start;
11845
11846 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11847 _("assignment")))
11848 break;
11849
11850 if (resolve_ordinary_assign (code, ns))
11851 {
11852 if (code->op == EXEC_COMPCALL)
11853 goto compcall;
11854 else
11855 goto call;
11856 }
11857
11858 /* Check for dependencies in deferred character length array
11859 assignments and generate a temporary, if necessary. */
11860 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11861 break;
11862
11863 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11864 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11865 && code->expr1->ts.u.derived
11866 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11867 generate_component_assignments (&code, ns);
11868
11869 break;
11870
11871 case EXEC_LABEL_ASSIGN:
11872 if (code->label1->defined == ST_LABEL_UNKNOWN)
11873 gfc_error ("Label %d referenced at %L is never defined",
11874 code->label1->value, &code->label1->where);
11875 if (t
11876 && (code->expr1->expr_type != EXPR_VARIABLE
11877 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11878 || code->expr1->symtree->n.sym->ts.kind
11879 != gfc_default_integer_kind
11880 || code->expr1->symtree->n.sym->as != NULL))
11881 gfc_error ("ASSIGN statement at %L requires a scalar "
11882 "default INTEGER variable", &code->expr1->where);
11883 break;
11884
11885 case EXEC_POINTER_ASSIGN:
11886 {
11887 gfc_expr* e;
11888
11889 if (!t)
11890 break;
11891
11892 /* This is both a variable definition and pointer assignment
11893 context, so check both of them. For rank remapping, a final
11894 array ref may be present on the LHS and fool gfc_expr_attr
11895 used in gfc_check_vardef_context. Remove it. */
11896 e = remove_last_array_ref (code->expr1);
11897 t = gfc_check_vardef_context (e, true, false, false,
11898 _("pointer assignment"));
11899 if (t)
11900 t = gfc_check_vardef_context (e, false, false, false,
11901 _("pointer assignment"));
11902 gfc_free_expr (e);
11903
11904 t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
11905
11906 if (!t)
11907 break;
11908
11909 /* Assigning a class object always is a regular assign. */
11910 if (code->expr2->ts.type == BT_CLASS
11911 && code->expr1->ts.type == BT_CLASS
11912 && !CLASS_DATA (code->expr2)->attr.dimension
11913 && !(gfc_expr_attr (code->expr1).proc_pointer
11914 && code->expr2->expr_type == EXPR_VARIABLE
11915 && code->expr2->symtree->n.sym->attr.flavor
11916 == FL_PROCEDURE))
11917 code->op = EXEC_ASSIGN;
11918 break;
11919 }
11920
11921 case EXEC_ARITHMETIC_IF:
11922 {
11923 gfc_expr *e = code->expr1;
11924
11925 gfc_resolve_expr (e);
11926 if (e->expr_type == EXPR_NULL)
11927 gfc_error ("Invalid NULL at %L", &e->where);
11928
11929 if (t && (e->rank > 0
11930 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11931 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11932 "REAL or INTEGER expression", &e->where);
11933
11934 resolve_branch (code->label1, code);
11935 resolve_branch (code->label2, code);
11936 resolve_branch (code->label3, code);
11937 }
11938 break;
11939
11940 case EXEC_IF:
11941 if (t && code->expr1 != NULL
11942 && (code->expr1->ts.type != BT_LOGICAL
11943 || code->expr1->rank != 0))
11944 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11945 &code->expr1->where);
11946 break;
11947
11948 case EXEC_CALL:
11949 call:
11950 resolve_call (code);
11951 break;
11952
11953 case EXEC_COMPCALL:
11954 compcall:
11955 resolve_typebound_subroutine (code);
11956 break;
11957
11958 case EXEC_CALL_PPC:
11959 resolve_ppc_call (code);
11960 break;
11961
11962 case EXEC_SELECT:
11963 /* Select is complicated. Also, a SELECT construct could be
11964 a transformed computed GOTO. */
11965 resolve_select (code, false);
11966 break;
11967
11968 case EXEC_SELECT_TYPE:
11969 resolve_select_type (code, ns);
11970 break;
11971
11972 case EXEC_SELECT_RANK:
11973 resolve_select_rank (code, ns);
11974 break;
11975
11976 case EXEC_BLOCK:
11977 resolve_block_construct (code);
11978 break;
11979
11980 case EXEC_DO:
11981 if (code->ext.iterator != NULL)
11982 {
11983 gfc_iterator *iter = code->ext.iterator;
11984 if (gfc_resolve_iterator (iter, true, false))
11985 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11986 true);
11987 }
11988 break;
11989
11990 case EXEC_DO_WHILE:
11991 if (code->expr1 == NULL)
11992 gfc_internal_error ("gfc_resolve_code(): No expression on "
11993 "DO WHILE");
11994 if (t
11995 && (code->expr1->rank != 0
11996 || code->expr1->ts.type != BT_LOGICAL))
11997 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11998 "a scalar LOGICAL expression", &code->expr1->where);
11999 break;
12000
12001 case EXEC_ALLOCATE:
12002 if (t)
12003 resolve_allocate_deallocate (code, "ALLOCATE");
12004
12005 break;
12006
12007 case EXEC_DEALLOCATE:
12008 if (t)
12009 resolve_allocate_deallocate (code, "DEALLOCATE");
12010
12011 break;
12012
12013 case EXEC_OPEN:
12014 if (!gfc_resolve_open (code->ext.open, &code->loc))
12015 break;
12016
12017 resolve_branch (code->ext.open->err, code);
12018 break;
12019
12020 case EXEC_CLOSE:
12021 if (!gfc_resolve_close (code->ext.close, &code->loc))
12022 break;
12023
12024 resolve_branch (code->ext.close->err, code);
12025 break;
12026
12027 case EXEC_BACKSPACE:
12028 case EXEC_ENDFILE:
12029 case EXEC_REWIND:
12030 case EXEC_FLUSH:
12031 if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
12032 break;
12033
12034 resolve_branch (code->ext.filepos->err, code);
12035 break;
12036
12037 case EXEC_INQUIRE:
12038 if (!gfc_resolve_inquire (code->ext.inquire))
12039 break;
12040
12041 resolve_branch (code->ext.inquire->err, code);
12042 break;
12043
12044 case EXEC_IOLENGTH:
12045 gcc_assert (code->ext.inquire != NULL);
12046 if (!gfc_resolve_inquire (code->ext.inquire))
12047 break;
12048
12049 resolve_branch (code->ext.inquire->err, code);
12050 break;
12051
12052 case EXEC_WAIT:
12053 if (!gfc_resolve_wait (code->ext.wait))
12054 break;
12055
12056 resolve_branch (code->ext.wait->err, code);
12057 resolve_branch (code->ext.wait->end, code);
12058 resolve_branch (code->ext.wait->eor, code);
12059 break;
12060
12061 case EXEC_READ:
12062 case EXEC_WRITE:
12063 if (!gfc_resolve_dt (code, code->ext.dt, &code->loc))
12064 break;
12065
12066 resolve_branch (code->ext.dt->err, code);
12067 resolve_branch (code->ext.dt->end, code);
12068 resolve_branch (code->ext.dt->eor, code);
12069 break;
12070
12071 case EXEC_TRANSFER:
12072 resolve_transfer (code);
12073 break;
12074
12075 case EXEC_DO_CONCURRENT:
12076 case EXEC_FORALL:
12077 resolve_forall_iterators (code->ext.forall_iterator);
12078
12079 if (code->expr1 != NULL
12080 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
12081 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
12082 "expression", &code->expr1->where);
12083 break;
12084
12085 case EXEC_OACC_PARALLEL_LOOP:
12086 case EXEC_OACC_PARALLEL:
12087 case EXEC_OACC_KERNELS_LOOP:
12088 case EXEC_OACC_KERNELS:
12089 case EXEC_OACC_SERIAL_LOOP:
12090 case EXEC_OACC_SERIAL:
12091 case EXEC_OACC_DATA:
12092 case EXEC_OACC_HOST_DATA:
12093 case EXEC_OACC_LOOP:
12094 case EXEC_OACC_UPDATE:
12095 case EXEC_OACC_WAIT:
12096 case EXEC_OACC_CACHE:
12097 case EXEC_OACC_ENTER_DATA:
12098 case EXEC_OACC_EXIT_DATA:
12099 case EXEC_OACC_ATOMIC:
12100 case EXEC_OACC_DECLARE:
12101 gfc_resolve_oacc_directive (code, ns);
12102 break;
12103
12104 case EXEC_OMP_ATOMIC:
12105 case EXEC_OMP_BARRIER:
12106 case EXEC_OMP_CANCEL:
12107 case EXEC_OMP_CANCELLATION_POINT:
12108 case EXEC_OMP_CRITICAL:
12109 case EXEC_OMP_FLUSH:
12110 case EXEC_OMP_DISTRIBUTE:
12111 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
12112 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
12113 case EXEC_OMP_DISTRIBUTE_SIMD:
12114 case EXEC_OMP_DO:
12115 case EXEC_OMP_DO_SIMD:
12116 case EXEC_OMP_MASTER:
12117 case EXEC_OMP_ORDERED:
12118 case EXEC_OMP_SECTIONS:
12119 case EXEC_OMP_SIMD:
12120 case EXEC_OMP_SINGLE:
12121 case EXEC_OMP_TARGET:
12122 case EXEC_OMP_TARGET_DATA:
12123 case EXEC_OMP_TARGET_ENTER_DATA:
12124 case EXEC_OMP_TARGET_EXIT_DATA:
12125 case EXEC_OMP_TARGET_PARALLEL:
12126 case EXEC_OMP_TARGET_PARALLEL_DO:
12127 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
12128 case EXEC_OMP_TARGET_SIMD:
12129 case EXEC_OMP_TARGET_TEAMS:
12130 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
12131 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
12132 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12133 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
12134 case EXEC_OMP_TARGET_UPDATE:
12135 case EXEC_OMP_TASK:
12136 case EXEC_OMP_TASKGROUP:
12137 case EXEC_OMP_TASKLOOP:
12138 case EXEC_OMP_TASKLOOP_SIMD:
12139 case EXEC_OMP_TASKWAIT:
12140 case EXEC_OMP_TASKYIELD:
12141 case EXEC_OMP_TEAMS:
12142 case EXEC_OMP_TEAMS_DISTRIBUTE:
12143 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
12144 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12145 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
12146 case EXEC_OMP_WORKSHARE:
12147 gfc_resolve_omp_directive (code, ns);
12148 break;
12149
12150 case EXEC_OMP_PARALLEL:
12151 case EXEC_OMP_PARALLEL_DO:
12152 case EXEC_OMP_PARALLEL_DO_SIMD:
12153 case EXEC_OMP_PARALLEL_SECTIONS:
12154 case EXEC_OMP_PARALLEL_WORKSHARE:
12155 omp_workshare_save = omp_workshare_flag;
12156 omp_workshare_flag = 0;
12157 gfc_resolve_omp_directive (code, ns);
12158 omp_workshare_flag = omp_workshare_save;
12159 break;
12160
12161 default:
12162 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
12163 }
12164 }
12165
12166 cs_base = frame.prev;
12167 }
12168
12169
12170 /* Resolve initial values and make sure they are compatible with
12171 the variable. */
12172
12173 static void
12174 resolve_values (gfc_symbol *sym)
12175 {
12176 bool t;
12177
12178 if (sym->value == NULL)
12179 return;
12180
12181 if (sym->value->expr_type == EXPR_STRUCTURE)
12182 t= resolve_structure_cons (sym->value, 1);
12183 else
12184 t = gfc_resolve_expr (sym->value);
12185
12186 if (!t)
12187 return;
12188
12189 gfc_check_assign_symbol (sym, NULL, sym->value);
12190 }
12191
12192
12193 /* Verify any BIND(C) derived types in the namespace so we can report errors
12194 for them once, rather than for each variable declared of that type. */
12195
12196 static void
12197 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
12198 {
12199 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
12200 && derived_sym->attr.is_bind_c == 1)
12201 verify_bind_c_derived_type (derived_sym);
12202
12203 return;
12204 }
12205
12206
12207 /* Check the interfaces of DTIO procedures associated with derived
12208 type 'sym'. These procedures can either have typebound bindings or
12209 can appear in DTIO generic interfaces. */
12210
12211 static void
12212 gfc_verify_DTIO_procedures (gfc_symbol *sym)
12213 {
12214 if (!sym || sym->attr.flavor != FL_DERIVED)
12215 return;
12216
12217 gfc_check_dtio_interfaces (sym);
12218
12219 return;
12220 }
12221
12222 /* Verify that any binding labels used in a given namespace do not collide
12223 with the names or binding labels of any global symbols. Multiple INTERFACE
12224 for the same procedure are permitted. */
12225
12226 static void
12227 gfc_verify_binding_labels (gfc_symbol *sym)
12228 {
12229 gfc_gsymbol *gsym;
12230 const char *module;
12231
12232 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
12233 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
12234 return;
12235
12236 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
12237
12238 if (sym->module)
12239 module = sym->module;
12240 else if (sym->ns && sym->ns->proc_name
12241 && sym->ns->proc_name->attr.flavor == FL_MODULE)
12242 module = sym->ns->proc_name->name;
12243 else if (sym->ns && sym->ns->parent
12244 && sym->ns && sym->ns->parent->proc_name
12245 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12246 module = sym->ns->parent->proc_name->name;
12247 else
12248 module = NULL;
12249
12250 if (!gsym
12251 || (!gsym->defined
12252 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
12253 {
12254 if (!gsym)
12255 gsym = gfc_get_gsymbol (sym->binding_label, true);
12256 gsym->where = sym->declared_at;
12257 gsym->sym_name = sym->name;
12258 gsym->binding_label = sym->binding_label;
12259 gsym->ns = sym->ns;
12260 gsym->mod_name = module;
12261 if (sym->attr.function)
12262 gsym->type = GSYM_FUNCTION;
12263 else if (sym->attr.subroutine)
12264 gsym->type = GSYM_SUBROUTINE;
12265 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
12266 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
12267 return;
12268 }
12269
12270 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
12271 {
12272 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
12273 "identifier as entity at %L", sym->name,
12274 sym->binding_label, &sym->declared_at, &gsym->where);
12275 /* Clear the binding label to prevent checking multiple times. */
12276 sym->binding_label = NULL;
12277 return;
12278 }
12279
12280 if (sym->attr.flavor == FL_VARIABLE && module
12281 && (strcmp (module, gsym->mod_name) != 0
12282 || strcmp (sym->name, gsym->sym_name) != 0))
12283 {
12284 /* This can only happen if the variable is defined in a module - if it
12285 isn't the same module, reject it. */
12286 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
12287 "uses the same global identifier as entity at %L from module %qs",
12288 sym->name, module, sym->binding_label,
12289 &sym->declared_at, &gsym->where, gsym->mod_name);
12290 sym->binding_label = NULL;
12291 return;
12292 }
12293
12294 if ((sym->attr.function || sym->attr.subroutine)
12295 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
12296 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
12297 && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
12298 && (module != gsym->mod_name
12299 || strcmp (gsym->sym_name, sym->name) != 0
12300 || (module && strcmp (module, gsym->mod_name) != 0)))
12301 {
12302 /* Print an error if the procedure is defined multiple times; we have to
12303 exclude references to the same procedure via module association or
12304 multiple checks for the same procedure. */
12305 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
12306 "global identifier as entity at %L", sym->name,
12307 sym->binding_label, &sym->declared_at, &gsym->where);
12308 sym->binding_label = NULL;
12309 }
12310 }
12311
12312
12313 /* Resolve an index expression. */
12314
12315 static bool
12316 resolve_index_expr (gfc_expr *e)
12317 {
12318 if (!gfc_resolve_expr (e))
12319 return false;
12320
12321 if (!gfc_simplify_expr (e, 0))
12322 return false;
12323
12324 if (!gfc_specification_expr (e))
12325 return false;
12326
12327 return true;
12328 }
12329
12330
12331 /* Resolve a charlen structure. */
12332
12333 static bool
12334 resolve_charlen (gfc_charlen *cl)
12335 {
12336 int k;
12337 bool saved_specification_expr;
12338
12339 if (cl->resolved)
12340 return true;
12341
12342 cl->resolved = 1;
12343 saved_specification_expr = specification_expr;
12344 specification_expr = true;
12345
12346 if (cl->length_from_typespec)
12347 {
12348 if (!gfc_resolve_expr (cl->length))
12349 {
12350 specification_expr = saved_specification_expr;
12351 return false;
12352 }
12353
12354 if (!gfc_simplify_expr (cl->length, 0))
12355 {
12356 specification_expr = saved_specification_expr;
12357 return false;
12358 }
12359
12360 /* cl->length has been resolved. It should have an integer type. */
12361 if (cl->length->ts.type != BT_INTEGER)
12362 {
12363 gfc_error ("Scalar INTEGER expression expected at %L",
12364 &cl->length->where);
12365 return false;
12366 }
12367 }
12368 else
12369 {
12370 if (!resolve_index_expr (cl->length))
12371 {
12372 specification_expr = saved_specification_expr;
12373 return false;
12374 }
12375 }
12376
12377 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
12378 a negative value, the length of character entities declared is zero. */
12379 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12380 && mpz_sgn (cl->length->value.integer) < 0)
12381 gfc_replace_expr (cl->length,
12382 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
12383
12384 /* Check that the character length is not too large. */
12385 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
12386 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12387 && cl->length->ts.type == BT_INTEGER
12388 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
12389 {
12390 gfc_error ("String length at %L is too large", &cl->length->where);
12391 specification_expr = saved_specification_expr;
12392 return false;
12393 }
12394
12395 specification_expr = saved_specification_expr;
12396 return true;
12397 }
12398
12399
12400 /* Test for non-constant shape arrays. */
12401
12402 static bool
12403 is_non_constant_shape_array (gfc_symbol *sym)
12404 {
12405 gfc_expr *e;
12406 int i;
12407 bool not_constant;
12408
12409 not_constant = false;
12410 if (sym->as != NULL)
12411 {
12412 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
12413 has not been simplified; parameter array references. Do the
12414 simplification now. */
12415 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
12416 {
12417 if (i == GFC_MAX_DIMENSIONS)
12418 break;
12419
12420 e = sym->as->lower[i];
12421 if (e && (!resolve_index_expr(e)
12422 || !gfc_is_constant_expr (e)))
12423 not_constant = true;
12424 e = sym->as->upper[i];
12425 if (e && (!resolve_index_expr(e)
12426 || !gfc_is_constant_expr (e)))
12427 not_constant = true;
12428 }
12429 }
12430 return not_constant;
12431 }
12432
12433 /* Given a symbol and an initialization expression, add code to initialize
12434 the symbol to the function entry. */
12435 static void
12436 build_init_assign (gfc_symbol *sym, gfc_expr *init)
12437 {
12438 gfc_expr *lval;
12439 gfc_code *init_st;
12440 gfc_namespace *ns = sym->ns;
12441
12442 /* Search for the function namespace if this is a contained
12443 function without an explicit result. */
12444 if (sym->attr.function && sym == sym->result
12445 && sym->name != sym->ns->proc_name->name)
12446 {
12447 ns = ns->contained;
12448 for (;ns; ns = ns->sibling)
12449 if (strcmp (ns->proc_name->name, sym->name) == 0)
12450 break;
12451 }
12452
12453 if (ns == NULL)
12454 {
12455 gfc_free_expr (init);
12456 return;
12457 }
12458
12459 /* Build an l-value expression for the result. */
12460 lval = gfc_lval_expr_from_sym (sym);
12461
12462 /* Add the code at scope entry. */
12463 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
12464 init_st->next = ns->code;
12465 ns->code = init_st;
12466
12467 /* Assign the default initializer to the l-value. */
12468 init_st->loc = sym->declared_at;
12469 init_st->expr1 = lval;
12470 init_st->expr2 = init;
12471 }
12472
12473
12474 /* Whether or not we can generate a default initializer for a symbol. */
12475
12476 static bool
12477 can_generate_init (gfc_symbol *sym)
12478 {
12479 symbol_attribute *a;
12480 if (!sym)
12481 return false;
12482 a = &sym->attr;
12483
12484 /* These symbols should never have a default initialization. */
12485 return !(
12486 a->allocatable
12487 || a->external
12488 || a->pointer
12489 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
12490 && (CLASS_DATA (sym)->attr.class_pointer
12491 || CLASS_DATA (sym)->attr.proc_pointer))
12492 || a->in_equivalence
12493 || a->in_common
12494 || a->data
12495 || sym->module
12496 || a->cray_pointee
12497 || a->cray_pointer
12498 || sym->assoc
12499 || (!a->referenced && !a->result)
12500 || (a->dummy && a->intent != INTENT_OUT)
12501 || (a->function && sym != sym->result)
12502 );
12503 }
12504
12505
12506 /* Assign the default initializer to a derived type variable or result. */
12507
12508 static void
12509 apply_default_init (gfc_symbol *sym)
12510 {
12511 gfc_expr *init = NULL;
12512
12513 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12514 return;
12515
12516 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
12517 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12518
12519 if (init == NULL && sym->ts.type != BT_CLASS)
12520 return;
12521
12522 build_init_assign (sym, init);
12523 sym->attr.referenced = 1;
12524 }
12525
12526
12527 /* Build an initializer for a local. Returns null if the symbol should not have
12528 a default initialization. */
12529
12530 static gfc_expr *
12531 build_default_init_expr (gfc_symbol *sym)
12532 {
12533 /* These symbols should never have a default initialization. */
12534 if (sym->attr.allocatable
12535 || sym->attr.external
12536 || sym->attr.dummy
12537 || sym->attr.pointer
12538 || sym->attr.in_equivalence
12539 || sym->attr.in_common
12540 || sym->attr.data
12541 || sym->module
12542 || sym->attr.cray_pointee
12543 || sym->attr.cray_pointer
12544 || sym->assoc)
12545 return NULL;
12546
12547 /* Get the appropriate init expression. */
12548 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
12549 }
12550
12551 /* Add an initialization expression to a local variable. */
12552 static void
12553 apply_default_init_local (gfc_symbol *sym)
12554 {
12555 gfc_expr *init = NULL;
12556
12557 /* The symbol should be a variable or a function return value. */
12558 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12559 || (sym->attr.function && sym->result != sym))
12560 return;
12561
12562 /* Try to build the initializer expression. If we can't initialize
12563 this symbol, then init will be NULL. */
12564 init = build_default_init_expr (sym);
12565 if (init == NULL)
12566 return;
12567
12568 /* For saved variables, we don't want to add an initializer at function
12569 entry, so we just add a static initializer. Note that automatic variables
12570 are stack allocated even with -fno-automatic; we have also to exclude
12571 result variable, which are also nonstatic. */
12572 if (!sym->attr.automatic
12573 && (sym->attr.save || sym->ns->save_all
12574 || (flag_max_stack_var_size == 0 && !sym->attr.result
12575 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
12576 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
12577 {
12578 /* Don't clobber an existing initializer! */
12579 gcc_assert (sym->value == NULL);
12580 sym->value = init;
12581 return;
12582 }
12583
12584 build_init_assign (sym, init);
12585 }
12586
12587
12588 /* Resolution of common features of flavors variable and procedure. */
12589
12590 static bool
12591 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
12592 {
12593 gfc_array_spec *as;
12594
12595 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12596 as = CLASS_DATA (sym)->as;
12597 else
12598 as = sym->as;
12599
12600 /* Constraints on deferred shape variable. */
12601 if (as == NULL || as->type != AS_DEFERRED)
12602 {
12603 bool pointer, allocatable, dimension;
12604
12605 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12606 {
12607 pointer = CLASS_DATA (sym)->attr.class_pointer;
12608 allocatable = CLASS_DATA (sym)->attr.allocatable;
12609 dimension = CLASS_DATA (sym)->attr.dimension;
12610 }
12611 else
12612 {
12613 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
12614 allocatable = sym->attr.allocatable;
12615 dimension = sym->attr.dimension;
12616 }
12617
12618 if (allocatable)
12619 {
12620 if (dimension && as->type != AS_ASSUMED_RANK)
12621 {
12622 gfc_error ("Allocatable array %qs at %L must have a deferred "
12623 "shape or assumed rank", sym->name, &sym->declared_at);
12624 return false;
12625 }
12626 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
12627 "%qs at %L may not be ALLOCATABLE",
12628 sym->name, &sym->declared_at))
12629 return false;
12630 }
12631
12632 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
12633 {
12634 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
12635 "assumed rank", sym->name, &sym->declared_at);
12636 sym->error = 1;
12637 return false;
12638 }
12639 }
12640 else
12641 {
12642 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
12643 && sym->ts.type != BT_CLASS && !sym->assoc)
12644 {
12645 gfc_error ("Array %qs at %L cannot have a deferred shape",
12646 sym->name, &sym->declared_at);
12647 return false;
12648 }
12649 }
12650
12651 /* Constraints on polymorphic variables. */
12652 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
12653 {
12654 /* F03:C502. */
12655 if (sym->attr.class_ok
12656 && !sym->attr.select_type_temporary
12657 && !UNLIMITED_POLY (sym)
12658 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
12659 {
12660 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
12661 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
12662 &sym->declared_at);
12663 return false;
12664 }
12665
12666 /* F03:C509. */
12667 /* Assume that use associated symbols were checked in the module ns.
12668 Class-variables that are associate-names are also something special
12669 and excepted from the test. */
12670 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
12671 {
12672 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
12673 "or pointer", sym->name, &sym->declared_at);
12674 return false;
12675 }
12676 }
12677
12678 return true;
12679 }
12680
12681
12682 /* Additional checks for symbols with flavor variable and derived
12683 type. To be called from resolve_fl_variable. */
12684
12685 static bool
12686 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12687 {
12688 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12689
12690 /* Check to see if a derived type is blocked from being host
12691 associated by the presence of another class I symbol in the same
12692 namespace. 14.6.1.3 of the standard and the discussion on
12693 comp.lang.fortran. */
12694 if (sym->ns != sym->ts.u.derived->ns
12695 && !sym->ts.u.derived->attr.use_assoc
12696 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12697 {
12698 gfc_symbol *s;
12699 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12700 if (s && s->attr.generic)
12701 s = gfc_find_dt_in_generic (s);
12702 if (s && !gfc_fl_struct (s->attr.flavor))
12703 {
12704 gfc_error ("The type %qs cannot be host associated at %L "
12705 "because it is blocked by an incompatible object "
12706 "of the same name declared at %L",
12707 sym->ts.u.derived->name, &sym->declared_at,
12708 &s->declared_at);
12709 return false;
12710 }
12711 }
12712
12713 /* 4th constraint in section 11.3: "If an object of a type for which
12714 component-initialization is specified (R429) appears in the
12715 specification-part of a module and does not have the ALLOCATABLE
12716 or POINTER attribute, the object shall have the SAVE attribute."
12717
12718 The check for initializers is performed with
12719 gfc_has_default_initializer because gfc_default_initializer generates
12720 a hidden default for allocatable components. */
12721 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12722 && sym->ns->proc_name->attr.flavor == FL_MODULE
12723 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12724 && !sym->attr.pointer && !sym->attr.allocatable
12725 && gfc_has_default_initializer (sym->ts.u.derived)
12726 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12727 "%qs at %L, needed due to the default "
12728 "initialization", sym->name, &sym->declared_at))
12729 return false;
12730
12731 /* Assign default initializer. */
12732 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12733 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12734 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12735
12736 return true;
12737 }
12738
12739
12740 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12741 except in the declaration of an entity or component that has the POINTER
12742 or ALLOCATABLE attribute. */
12743
12744 static bool
12745 deferred_requirements (gfc_symbol *sym)
12746 {
12747 if (sym->ts.deferred
12748 && !(sym->attr.pointer
12749 || sym->attr.allocatable
12750 || sym->attr.associate_var
12751 || sym->attr.omp_udr_artificial_var))
12752 {
12753 /* If a function has a result variable, only check the variable. */
12754 if (sym->result && sym->name != sym->result->name)
12755 return true;
12756
12757 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12758 "requires either the POINTER or ALLOCATABLE attribute",
12759 sym->name, &sym->declared_at);
12760 return false;
12761 }
12762 return true;
12763 }
12764
12765
12766 /* Resolve symbols with flavor variable. */
12767
12768 static bool
12769 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12770 {
12771 const char *auto_save_msg = "Automatic object %qs at %L cannot have the "
12772 "SAVE attribute";
12773
12774 if (!resolve_fl_var_and_proc (sym, mp_flag))
12775 return false;
12776
12777 /* Set this flag to check that variables are parameters of all entries.
12778 This check is effected by the call to gfc_resolve_expr through
12779 is_non_constant_shape_array. */
12780 bool saved_specification_expr = specification_expr;
12781 specification_expr = true;
12782
12783 if (sym->ns->proc_name
12784 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12785 || sym->ns->proc_name->attr.is_main_program)
12786 && !sym->attr.use_assoc
12787 && !sym->attr.allocatable
12788 && !sym->attr.pointer
12789 && is_non_constant_shape_array (sym))
12790 {
12791 /* F08:C541. The shape of an array defined in a main program or module
12792 * needs to be constant. */
12793 gfc_error ("The module or main program array %qs at %L must "
12794 "have constant shape", sym->name, &sym->declared_at);
12795 specification_expr = saved_specification_expr;
12796 return false;
12797 }
12798
12799 /* Constraints on deferred type parameter. */
12800 if (!deferred_requirements (sym))
12801 return false;
12802
12803 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12804 {
12805 /* Make sure that character string variables with assumed length are
12806 dummy arguments. */
12807 gfc_expr *e = NULL;
12808
12809 if (sym->ts.u.cl)
12810 e = sym->ts.u.cl->length;
12811 else
12812 return false;
12813
12814 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12815 && !sym->ts.deferred && !sym->attr.select_type_temporary
12816 && !sym->attr.omp_udr_artificial_var)
12817 {
12818 gfc_error ("Entity with assumed character length at %L must be a "
12819 "dummy argument or a PARAMETER", &sym->declared_at);
12820 specification_expr = saved_specification_expr;
12821 return false;
12822 }
12823
12824 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12825 {
12826 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12827 specification_expr = saved_specification_expr;
12828 return false;
12829 }
12830
12831 if (!gfc_is_constant_expr (e)
12832 && !(e->expr_type == EXPR_VARIABLE
12833 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12834 {
12835 if (!sym->attr.use_assoc && sym->ns->proc_name
12836 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12837 || sym->ns->proc_name->attr.is_main_program))
12838 {
12839 gfc_error ("%qs at %L must have constant character length "
12840 "in this context", sym->name, &sym->declared_at);
12841 specification_expr = saved_specification_expr;
12842 return false;
12843 }
12844 if (sym->attr.in_common)
12845 {
12846 gfc_error ("COMMON variable %qs at %L must have constant "
12847 "character length", sym->name, &sym->declared_at);
12848 specification_expr = saved_specification_expr;
12849 return false;
12850 }
12851 }
12852 }
12853
12854 if (sym->value == NULL && sym->attr.referenced)
12855 apply_default_init_local (sym); /* Try to apply a default initialization. */
12856
12857 /* Determine if the symbol may not have an initializer. */
12858 int no_init_flag = 0, automatic_flag = 0;
12859 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12860 || sym->attr.intrinsic || sym->attr.result)
12861 no_init_flag = 1;
12862 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12863 && is_non_constant_shape_array (sym))
12864 {
12865 no_init_flag = automatic_flag = 1;
12866
12867 /* Also, they must not have the SAVE attribute.
12868 SAVE_IMPLICIT is checked below. */
12869 if (sym->as && sym->attr.codimension)
12870 {
12871 int corank = sym->as->corank;
12872 sym->as->corank = 0;
12873 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12874 sym->as->corank = corank;
12875 }
12876 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12877 {
12878 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12879 specification_expr = saved_specification_expr;
12880 return false;
12881 }
12882 }
12883
12884 /* Ensure that any initializer is simplified. */
12885 if (sym->value)
12886 gfc_simplify_expr (sym->value, 1);
12887
12888 /* Reject illegal initializers. */
12889 if (!sym->mark && sym->value)
12890 {
12891 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12892 && CLASS_DATA (sym)->attr.allocatable))
12893 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12894 sym->name, &sym->declared_at);
12895 else if (sym->attr.external)
12896 gfc_error ("External %qs at %L cannot have an initializer",
12897 sym->name, &sym->declared_at);
12898 else if (sym->attr.dummy
12899 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12900 gfc_error ("Dummy %qs at %L cannot have an initializer",
12901 sym->name, &sym->declared_at);
12902 else if (sym->attr.intrinsic)
12903 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12904 sym->name, &sym->declared_at);
12905 else if (sym->attr.result)
12906 gfc_error ("Function result %qs at %L cannot have an initializer",
12907 sym->name, &sym->declared_at);
12908 else if (automatic_flag)
12909 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12910 sym->name, &sym->declared_at);
12911 else
12912 goto no_init_error;
12913 specification_expr = saved_specification_expr;
12914 return false;
12915 }
12916
12917 no_init_error:
12918 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12919 {
12920 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12921 specification_expr = saved_specification_expr;
12922 return res;
12923 }
12924
12925 specification_expr = saved_specification_expr;
12926 return true;
12927 }
12928
12929
12930 /* Compare the dummy characteristics of a module procedure interface
12931 declaration with the corresponding declaration in a submodule. */
12932 static gfc_formal_arglist *new_formal;
12933 static char errmsg[200];
12934
12935 static void
12936 compare_fsyms (gfc_symbol *sym)
12937 {
12938 gfc_symbol *fsym;
12939
12940 if (sym == NULL || new_formal == NULL)
12941 return;
12942
12943 fsym = new_formal->sym;
12944
12945 if (sym == fsym)
12946 return;
12947
12948 if (strcmp (sym->name, fsym->name) == 0)
12949 {
12950 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12951 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12952 }
12953 }
12954
12955
12956 /* Resolve a procedure. */
12957
12958 static bool
12959 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12960 {
12961 gfc_formal_arglist *arg;
12962
12963 if (sym->attr.function
12964 && !resolve_fl_var_and_proc (sym, mp_flag))
12965 return false;
12966
12967 /* Constraints on deferred type parameter. */
12968 if (!deferred_requirements (sym))
12969 return false;
12970
12971 if (sym->ts.type == BT_CHARACTER)
12972 {
12973 gfc_charlen *cl = sym->ts.u.cl;
12974
12975 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12976 && !resolve_charlen (cl))
12977 return false;
12978
12979 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12980 && sym->attr.proc == PROC_ST_FUNCTION)
12981 {
12982 gfc_error ("Character-valued statement function %qs at %L must "
12983 "have constant length", sym->name, &sym->declared_at);
12984 return false;
12985 }
12986 }
12987
12988 /* Ensure that derived type for are not of a private type. Internal
12989 module procedures are excluded by 2.2.3.3 - i.e., they are not
12990 externally accessible and can access all the objects accessible in
12991 the host. */
12992 if (!(sym->ns->parent && sym->ns->parent->proc_name
12993 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12994 && gfc_check_symbol_access (sym))
12995 {
12996 gfc_interface *iface;
12997
12998 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12999 {
13000 if (arg->sym
13001 && arg->sym->ts.type == BT_DERIVED
13002 && !arg->sym->ts.u.derived->attr.use_assoc
13003 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
13004 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
13005 "and cannot be a dummy argument"
13006 " of %qs, which is PUBLIC at %L",
13007 arg->sym->name, sym->name,
13008 &sym->declared_at))
13009 {
13010 /* Stop this message from recurring. */
13011 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
13012 return false;
13013 }
13014 }
13015
13016 /* PUBLIC interfaces may expose PRIVATE procedures that take types
13017 PRIVATE to the containing module. */
13018 for (iface = sym->generic; iface; iface = iface->next)
13019 {
13020 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
13021 {
13022 if (arg->sym
13023 && arg->sym->ts.type == BT_DERIVED
13024 && !arg->sym->ts.u.derived->attr.use_assoc
13025 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
13026 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
13027 "PUBLIC interface %qs at %L "
13028 "takes dummy arguments of %qs which "
13029 "is PRIVATE", iface->sym->name,
13030 sym->name, &iface->sym->declared_at,
13031 gfc_typename(&arg->sym->ts)))
13032 {
13033 /* Stop this message from recurring. */
13034 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
13035 return false;
13036 }
13037 }
13038 }
13039 }
13040
13041 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
13042 && !sym->attr.proc_pointer)
13043 {
13044 gfc_error ("Function %qs at %L cannot have an initializer",
13045 sym->name, &sym->declared_at);
13046
13047 /* Make sure no second error is issued for this. */
13048 sym->value->error = 1;
13049 return false;
13050 }
13051
13052 /* An external symbol may not have an initializer because it is taken to be
13053 a procedure. Exception: Procedure Pointers. */
13054 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
13055 {
13056 gfc_error ("External object %qs at %L may not have an initializer",
13057 sym->name, &sym->declared_at);
13058 return false;
13059 }
13060
13061 /* An elemental function is required to return a scalar 12.7.1 */
13062 if (sym->attr.elemental && sym->attr.function
13063 && (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)))
13064 {
13065 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
13066 "result", sym->name, &sym->declared_at);
13067 /* Reset so that the error only occurs once. */
13068 sym->attr.elemental = 0;
13069 return false;
13070 }
13071
13072 if (sym->attr.proc == PROC_ST_FUNCTION
13073 && (sym->attr.allocatable || sym->attr.pointer))
13074 {
13075 gfc_error ("Statement function %qs at %L may not have pointer or "
13076 "allocatable attribute", sym->name, &sym->declared_at);
13077 return false;
13078 }
13079
13080 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
13081 char-len-param shall not be array-valued, pointer-valued, recursive
13082 or pure. ....snip... A character value of * may only be used in the
13083 following ways: (i) Dummy arg of procedure - dummy associates with
13084 actual length; (ii) To declare a named constant; or (iii) External
13085 function - but length must be declared in calling scoping unit. */
13086 if (sym->attr.function
13087 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
13088 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
13089 {
13090 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
13091 || (sym->attr.recursive) || (sym->attr.pure))
13092 {
13093 if (sym->as && sym->as->rank)
13094 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13095 "array-valued", sym->name, &sym->declared_at);
13096
13097 if (sym->attr.pointer)
13098 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13099 "pointer-valued", sym->name, &sym->declared_at);
13100
13101 if (sym->attr.pure)
13102 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13103 "pure", sym->name, &sym->declared_at);
13104
13105 if (sym->attr.recursive)
13106 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13107 "recursive", sym->name, &sym->declared_at);
13108
13109 return false;
13110 }
13111
13112 /* Appendix B.2 of the standard. Contained functions give an
13113 error anyway. Deferred character length is an F2003 feature.
13114 Don't warn on intrinsic conversion functions, which start
13115 with two underscores. */
13116 if (!sym->attr.contained && !sym->ts.deferred
13117 && (sym->name[0] != '_' || sym->name[1] != '_'))
13118 gfc_notify_std (GFC_STD_F95_OBS,
13119 "CHARACTER(*) function %qs at %L",
13120 sym->name, &sym->declared_at);
13121 }
13122
13123 /* F2008, C1218. */
13124 if (sym->attr.elemental)
13125 {
13126 if (sym->attr.proc_pointer)
13127 {
13128 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
13129 sym->name, &sym->declared_at);
13130 return false;
13131 }
13132 if (sym->attr.dummy)
13133 {
13134 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
13135 sym->name, &sym->declared_at);
13136 return false;
13137 }
13138 }
13139
13140 /* F2018, C15100: "The result of an elemental function shall be scalar,
13141 and shall not have the POINTER or ALLOCATABLE attribute." The scalar
13142 pointer is tested and caught elsewhere. */
13143 if (sym->attr.elemental && sym->result
13144 && (sym->result->attr.allocatable || sym->result->attr.pointer))
13145 {
13146 gfc_error ("Function result variable %qs at %L of elemental "
13147 "function %qs shall not have an ALLOCATABLE or POINTER "
13148 "attribute", sym->result->name,
13149 &sym->result->declared_at, sym->name);
13150 return false;
13151 }
13152
13153 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
13154 {
13155 gfc_formal_arglist *curr_arg;
13156 int has_non_interop_arg = 0;
13157
13158 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
13159 sym->common_block))
13160 {
13161 /* Clear these to prevent looking at them again if there was an
13162 error. */
13163 sym->attr.is_bind_c = 0;
13164 sym->attr.is_c_interop = 0;
13165 sym->ts.is_c_interop = 0;
13166 }
13167 else
13168 {
13169 /* So far, no errors have been found. */
13170 sym->attr.is_c_interop = 1;
13171 sym->ts.is_c_interop = 1;
13172 }
13173
13174 curr_arg = gfc_sym_get_dummy_args (sym);
13175 while (curr_arg != NULL)
13176 {
13177 /* Skip implicitly typed dummy args here. */
13178 if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
13179 if (!gfc_verify_c_interop_param (curr_arg->sym))
13180 /* If something is found to fail, record the fact so we
13181 can mark the symbol for the procedure as not being
13182 BIND(C) to try and prevent multiple errors being
13183 reported. */
13184 has_non_interop_arg = 1;
13185
13186 curr_arg = curr_arg->next;
13187 }
13188
13189 /* See if any of the arguments were not interoperable and if so, clear
13190 the procedure symbol to prevent duplicate error messages. */
13191 if (has_non_interop_arg != 0)
13192 {
13193 sym->attr.is_c_interop = 0;
13194 sym->ts.is_c_interop = 0;
13195 sym->attr.is_bind_c = 0;
13196 }
13197 }
13198
13199 if (!sym->attr.proc_pointer)
13200 {
13201 if (sym->attr.save == SAVE_EXPLICIT)
13202 {
13203 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
13204 "in %qs at %L", sym->name, &sym->declared_at);
13205 return false;
13206 }
13207 if (sym->attr.intent)
13208 {
13209 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
13210 "in %qs at %L", sym->name, &sym->declared_at);
13211 return false;
13212 }
13213 if (sym->attr.subroutine && sym->attr.result)
13214 {
13215 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
13216 "in %qs at %L", sym->name, &sym->declared_at);
13217 return false;
13218 }
13219 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
13220 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
13221 || sym->attr.contained))
13222 {
13223 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
13224 "in %qs at %L", sym->name, &sym->declared_at);
13225 return false;
13226 }
13227 if (strcmp ("ppr@", sym->name) == 0)
13228 {
13229 gfc_error ("Procedure pointer result %qs at %L "
13230 "is missing the pointer attribute",
13231 sym->ns->proc_name->name, &sym->declared_at);
13232 return false;
13233 }
13234 }
13235
13236 /* Assume that a procedure whose body is not known has references
13237 to external arrays. */
13238 if (sym->attr.if_source != IFSRC_DECL)
13239 sym->attr.array_outer_dependency = 1;
13240
13241 /* Compare the characteristics of a module procedure with the
13242 interface declaration. Ideally this would be done with
13243 gfc_compare_interfaces but, at present, the formal interface
13244 cannot be copied to the ts.interface. */
13245 if (sym->attr.module_procedure
13246 && sym->attr.if_source == IFSRC_DECL)
13247 {
13248 gfc_symbol *iface;
13249 char name[2*GFC_MAX_SYMBOL_LEN + 1];
13250 char *module_name;
13251 char *submodule_name;
13252 strcpy (name, sym->ns->proc_name->name);
13253 module_name = strtok (name, ".");
13254 submodule_name = strtok (NULL, ".");
13255
13256 iface = sym->tlink;
13257 sym->tlink = NULL;
13258
13259 /* Make sure that the result uses the correct charlen for deferred
13260 length results. */
13261 if (iface && sym->result
13262 && iface->ts.type == BT_CHARACTER
13263 && iface->ts.deferred)
13264 sym->result->ts.u.cl = iface->ts.u.cl;
13265
13266 if (iface == NULL)
13267 goto check_formal;
13268
13269 /* Check the procedure characteristics. */
13270 if (sym->attr.elemental != iface->attr.elemental)
13271 {
13272 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
13273 "PROCEDURE at %L and its interface in %s",
13274 &sym->declared_at, module_name);
13275 return false;
13276 }
13277
13278 if (sym->attr.pure != iface->attr.pure)
13279 {
13280 gfc_error ("Mismatch in PURE attribute between MODULE "
13281 "PROCEDURE at %L and its interface in %s",
13282 &sym->declared_at, module_name);
13283 return false;
13284 }
13285
13286 if (sym->attr.recursive != iface->attr.recursive)
13287 {
13288 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
13289 "PROCEDURE at %L and its interface in %s",
13290 &sym->declared_at, module_name);
13291 return false;
13292 }
13293
13294 /* Check the result characteristics. */
13295 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
13296 {
13297 gfc_error ("%s between the MODULE PROCEDURE declaration "
13298 "in MODULE %qs and the declaration at %L in "
13299 "(SUB)MODULE %qs",
13300 errmsg, module_name, &sym->declared_at,
13301 submodule_name ? submodule_name : module_name);
13302 return false;
13303 }
13304
13305 check_formal:
13306 /* Check the characteristics of the formal arguments. */
13307 if (sym->formal && sym->formal_ns)
13308 {
13309 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
13310 {
13311 new_formal = arg;
13312 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
13313 }
13314 }
13315 }
13316 return true;
13317 }
13318
13319
13320 /* Resolve a list of finalizer procedures. That is, after they have hopefully
13321 been defined and we now know their defined arguments, check that they fulfill
13322 the requirements of the standard for procedures used as finalizers. */
13323
13324 static bool
13325 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
13326 {
13327 gfc_finalizer* list;
13328 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
13329 bool result = true;
13330 bool seen_scalar = false;
13331 gfc_symbol *vtab;
13332 gfc_component *c;
13333 gfc_symbol *parent = gfc_get_derived_super_type (derived);
13334
13335 if (parent)
13336 gfc_resolve_finalizers (parent, finalizable);
13337
13338 /* Ensure that derived-type components have a their finalizers resolved. */
13339 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
13340 for (c = derived->components; c; c = c->next)
13341 if (c->ts.type == BT_DERIVED
13342 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
13343 {
13344 bool has_final2 = false;
13345 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
13346 return false; /* Error. */
13347 has_final = has_final || has_final2;
13348 }
13349 /* Return early if not finalizable. */
13350 if (!has_final)
13351 {
13352 if (finalizable)
13353 *finalizable = false;
13354 return true;
13355 }
13356
13357 /* Walk over the list of finalizer-procedures, check them, and if any one
13358 does not fit in with the standard's definition, print an error and remove
13359 it from the list. */
13360 prev_link = &derived->f2k_derived->finalizers;
13361 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
13362 {
13363 gfc_formal_arglist *dummy_args;
13364 gfc_symbol* arg;
13365 gfc_finalizer* i;
13366 int my_rank;
13367
13368 /* Skip this finalizer if we already resolved it. */
13369 if (list->proc_tree)
13370 {
13371 if (list->proc_tree->n.sym->formal->sym->as == NULL
13372 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
13373 seen_scalar = true;
13374 prev_link = &(list->next);
13375 continue;
13376 }
13377
13378 /* Check this exists and is a SUBROUTINE. */
13379 if (!list->proc_sym->attr.subroutine)
13380 {
13381 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
13382 list->proc_sym->name, &list->where);
13383 goto error;
13384 }
13385
13386 /* We should have exactly one argument. */
13387 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
13388 if (!dummy_args || dummy_args->next)
13389 {
13390 gfc_error ("FINAL procedure at %L must have exactly one argument",
13391 &list->where);
13392 goto error;
13393 }
13394 arg = dummy_args->sym;
13395
13396 /* This argument must be of our type. */
13397 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
13398 {
13399 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
13400 &arg->declared_at, derived->name);
13401 goto error;
13402 }
13403
13404 /* It must neither be a pointer nor allocatable nor optional. */
13405 if (arg->attr.pointer)
13406 {
13407 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
13408 &arg->declared_at);
13409 goto error;
13410 }
13411 if (arg->attr.allocatable)
13412 {
13413 gfc_error ("Argument of FINAL procedure at %L must not be"
13414 " ALLOCATABLE", &arg->declared_at);
13415 goto error;
13416 }
13417 if (arg->attr.optional)
13418 {
13419 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
13420 &arg->declared_at);
13421 goto error;
13422 }
13423
13424 /* It must not be INTENT(OUT). */
13425 if (arg->attr.intent == INTENT_OUT)
13426 {
13427 gfc_error ("Argument of FINAL procedure at %L must not be"
13428 " INTENT(OUT)", &arg->declared_at);
13429 goto error;
13430 }
13431
13432 /* Warn if the procedure is non-scalar and not assumed shape. */
13433 if (warn_surprising && arg->as && arg->as->rank != 0
13434 && arg->as->type != AS_ASSUMED_SHAPE)
13435 gfc_warning (OPT_Wsurprising,
13436 "Non-scalar FINAL procedure at %L should have assumed"
13437 " shape argument", &arg->declared_at);
13438
13439 /* Check that it does not match in kind and rank with a FINAL procedure
13440 defined earlier. To really loop over the *earlier* declarations,
13441 we need to walk the tail of the list as new ones were pushed at the
13442 front. */
13443 /* TODO: Handle kind parameters once they are implemented. */
13444 my_rank = (arg->as ? arg->as->rank : 0);
13445 for (i = list->next; i; i = i->next)
13446 {
13447 gfc_formal_arglist *dummy_args;
13448
13449 /* Argument list might be empty; that is an error signalled earlier,
13450 but we nevertheless continued resolving. */
13451 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
13452 if (dummy_args)
13453 {
13454 gfc_symbol* i_arg = dummy_args->sym;
13455 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
13456 if (i_rank == my_rank)
13457 {
13458 gfc_error ("FINAL procedure %qs declared at %L has the same"
13459 " rank (%d) as %qs",
13460 list->proc_sym->name, &list->where, my_rank,
13461 i->proc_sym->name);
13462 goto error;
13463 }
13464 }
13465 }
13466
13467 /* Is this the/a scalar finalizer procedure? */
13468 if (my_rank == 0)
13469 seen_scalar = true;
13470
13471 /* Find the symtree for this procedure. */
13472 gcc_assert (!list->proc_tree);
13473 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
13474
13475 prev_link = &list->next;
13476 continue;
13477
13478 /* Remove wrong nodes immediately from the list so we don't risk any
13479 troubles in the future when they might fail later expectations. */
13480 error:
13481 i = list;
13482 *prev_link = list->next;
13483 gfc_free_finalizer (i);
13484 result = false;
13485 }
13486
13487 if (result == false)
13488 return false;
13489
13490 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
13491 were nodes in the list, must have been for arrays. It is surely a good
13492 idea to have a scalar version there if there's something to finalize. */
13493 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
13494 gfc_warning (OPT_Wsurprising,
13495 "Only array FINAL procedures declared for derived type %qs"
13496 " defined at %L, suggest also scalar one",
13497 derived->name, &derived->declared_at);
13498
13499 vtab = gfc_find_derived_vtab (derived);
13500 c = vtab->ts.u.derived->components->next->next->next->next->next;
13501 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
13502
13503 if (finalizable)
13504 *finalizable = true;
13505
13506 return true;
13507 }
13508
13509
13510 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
13511
13512 static bool
13513 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
13514 const char* generic_name, locus where)
13515 {
13516 gfc_symbol *sym1, *sym2;
13517 const char *pass1, *pass2;
13518 gfc_formal_arglist *dummy_args;
13519
13520 gcc_assert (t1->specific && t2->specific);
13521 gcc_assert (!t1->specific->is_generic);
13522 gcc_assert (!t2->specific->is_generic);
13523 gcc_assert (t1->is_operator == t2->is_operator);
13524
13525 sym1 = t1->specific->u.specific->n.sym;
13526 sym2 = t2->specific->u.specific->n.sym;
13527
13528 if (sym1 == sym2)
13529 return true;
13530
13531 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
13532 if (sym1->attr.subroutine != sym2->attr.subroutine
13533 || sym1->attr.function != sym2->attr.function)
13534 {
13535 gfc_error ("%qs and %qs cannot be mixed FUNCTION/SUBROUTINE for"
13536 " GENERIC %qs at %L",
13537 sym1->name, sym2->name, generic_name, &where);
13538 return false;
13539 }
13540
13541 /* Determine PASS arguments. */
13542 if (t1->specific->nopass)
13543 pass1 = NULL;
13544 else if (t1->specific->pass_arg)
13545 pass1 = t1->specific->pass_arg;
13546 else
13547 {
13548 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
13549 if (dummy_args)
13550 pass1 = dummy_args->sym->name;
13551 else
13552 pass1 = NULL;
13553 }
13554 if (t2->specific->nopass)
13555 pass2 = NULL;
13556 else if (t2->specific->pass_arg)
13557 pass2 = t2->specific->pass_arg;
13558 else
13559 {
13560 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
13561 if (dummy_args)
13562 pass2 = dummy_args->sym->name;
13563 else
13564 pass2 = NULL;
13565 }
13566
13567 /* Compare the interfaces. */
13568 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
13569 NULL, 0, pass1, pass2))
13570 {
13571 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
13572 sym1->name, sym2->name, generic_name, &where);
13573 return false;
13574 }
13575
13576 return true;
13577 }
13578
13579
13580 /* Worker function for resolving a generic procedure binding; this is used to
13581 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
13582
13583 The difference between those cases is finding possible inherited bindings
13584 that are overridden, as one has to look for them in tb_sym_root,
13585 tb_uop_root or tb_op, respectively. Thus the caller must already find
13586 the super-type and set p->overridden correctly. */
13587
13588 static bool
13589 resolve_tb_generic_targets (gfc_symbol* super_type,
13590 gfc_typebound_proc* p, const char* name)
13591 {
13592 gfc_tbp_generic* target;
13593 gfc_symtree* first_target;
13594 gfc_symtree* inherited;
13595
13596 gcc_assert (p && p->is_generic);
13597
13598 /* Try to find the specific bindings for the symtrees in our target-list. */
13599 gcc_assert (p->u.generic);
13600 for (target = p->u.generic; target; target = target->next)
13601 if (!target->specific)
13602 {
13603 gfc_typebound_proc* overridden_tbp;
13604 gfc_tbp_generic* g;
13605 const char* target_name;
13606
13607 target_name = target->specific_st->name;
13608
13609 /* Defined for this type directly. */
13610 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
13611 {
13612 target->specific = target->specific_st->n.tb;
13613 goto specific_found;
13614 }
13615
13616 /* Look for an inherited specific binding. */
13617 if (super_type)
13618 {
13619 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
13620 true, NULL);
13621
13622 if (inherited)
13623 {
13624 gcc_assert (inherited->n.tb);
13625 target->specific = inherited->n.tb;
13626 goto specific_found;
13627 }
13628 }
13629
13630 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
13631 " at %L", target_name, name, &p->where);
13632 return false;
13633
13634 /* Once we've found the specific binding, check it is not ambiguous with
13635 other specifics already found or inherited for the same GENERIC. */
13636 specific_found:
13637 gcc_assert (target->specific);
13638
13639 /* This must really be a specific binding! */
13640 if (target->specific->is_generic)
13641 {
13642 gfc_error ("GENERIC %qs at %L must target a specific binding,"
13643 " %qs is GENERIC, too", name, &p->where, target_name);
13644 return false;
13645 }
13646
13647 /* Check those already resolved on this type directly. */
13648 for (g = p->u.generic; g; g = g->next)
13649 if (g != target && g->specific
13650 && !check_generic_tbp_ambiguity (target, g, name, p->where))
13651 return false;
13652
13653 /* Check for ambiguity with inherited specific targets. */
13654 for (overridden_tbp = p->overridden; overridden_tbp;
13655 overridden_tbp = overridden_tbp->overridden)
13656 if (overridden_tbp->is_generic)
13657 {
13658 for (g = overridden_tbp->u.generic; g; g = g->next)
13659 {
13660 gcc_assert (g->specific);
13661 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
13662 return false;
13663 }
13664 }
13665 }
13666
13667 /* If we attempt to "overwrite" a specific binding, this is an error. */
13668 if (p->overridden && !p->overridden->is_generic)
13669 {
13670 gfc_error ("GENERIC %qs at %L cannot overwrite specific binding with"
13671 " the same name", name, &p->where);
13672 return false;
13673 }
13674
13675 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
13676 all must have the same attributes here. */
13677 first_target = p->u.generic->specific->u.specific;
13678 gcc_assert (first_target);
13679 p->subroutine = first_target->n.sym->attr.subroutine;
13680 p->function = first_target->n.sym->attr.function;
13681
13682 return true;
13683 }
13684
13685
13686 /* Resolve a GENERIC procedure binding for a derived type. */
13687
13688 static bool
13689 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
13690 {
13691 gfc_symbol* super_type;
13692
13693 /* Find the overridden binding if any. */
13694 st->n.tb->overridden = NULL;
13695 super_type = gfc_get_derived_super_type (derived);
13696 if (super_type)
13697 {
13698 gfc_symtree* overridden;
13699 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
13700 true, NULL);
13701
13702 if (overridden && overridden->n.tb)
13703 st->n.tb->overridden = overridden->n.tb;
13704 }
13705
13706 /* Resolve using worker function. */
13707 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13708 }
13709
13710
13711 /* Retrieve the target-procedure of an operator binding and do some checks in
13712 common for intrinsic and user-defined type-bound operators. */
13713
13714 static gfc_symbol*
13715 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13716 {
13717 gfc_symbol* target_proc;
13718
13719 gcc_assert (target->specific && !target->specific->is_generic);
13720 target_proc = target->specific->u.specific->n.sym;
13721 gcc_assert (target_proc);
13722
13723 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13724 if (target->specific->nopass)
13725 {
13726 gfc_error ("Type-bound operator at %L cannot be NOPASS", &where);
13727 return NULL;
13728 }
13729
13730 return target_proc;
13731 }
13732
13733
13734 /* Resolve a type-bound intrinsic operator. */
13735
13736 static bool
13737 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13738 gfc_typebound_proc* p)
13739 {
13740 gfc_symbol* super_type;
13741 gfc_tbp_generic* target;
13742
13743 /* If there's already an error here, do nothing (but don't fail again). */
13744 if (p->error)
13745 return true;
13746
13747 /* Operators should always be GENERIC bindings. */
13748 gcc_assert (p->is_generic);
13749
13750 /* Look for an overridden binding. */
13751 super_type = gfc_get_derived_super_type (derived);
13752 if (super_type && super_type->f2k_derived)
13753 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13754 op, true, NULL);
13755 else
13756 p->overridden = NULL;
13757
13758 /* Resolve general GENERIC properties using worker function. */
13759 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13760 goto error;
13761
13762 /* Check the targets to be procedures of correct interface. */
13763 for (target = p->u.generic; target; target = target->next)
13764 {
13765 gfc_symbol* target_proc;
13766
13767 target_proc = get_checked_tb_operator_target (target, p->where);
13768 if (!target_proc)
13769 goto error;
13770
13771 if (!gfc_check_operator_interface (target_proc, op, p->where))
13772 goto error;
13773
13774 /* Add target to non-typebound operator list. */
13775 if (!target->specific->deferred && !derived->attr.use_assoc
13776 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13777 {
13778 gfc_interface *head, *intr;
13779
13780 /* Preempt 'gfc_check_new_interface' for submodules, where the
13781 mechanism for handling module procedures winds up resolving
13782 operator interfaces twice and would otherwise cause an error. */
13783 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13784 if (intr->sym == target_proc
13785 && target_proc->attr.used_in_submodule)
13786 return true;
13787
13788 if (!gfc_check_new_interface (derived->ns->op[op],
13789 target_proc, p->where))
13790 return false;
13791 head = derived->ns->op[op];
13792 intr = gfc_get_interface ();
13793 intr->sym = target_proc;
13794 intr->where = p->where;
13795 intr->next = head;
13796 derived->ns->op[op] = intr;
13797 }
13798 }
13799
13800 return true;
13801
13802 error:
13803 p->error = 1;
13804 return false;
13805 }
13806
13807
13808 /* Resolve a type-bound user operator (tree-walker callback). */
13809
13810 static gfc_symbol* resolve_bindings_derived;
13811 static bool resolve_bindings_result;
13812
13813 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13814
13815 static void
13816 resolve_typebound_user_op (gfc_symtree* stree)
13817 {
13818 gfc_symbol* super_type;
13819 gfc_tbp_generic* target;
13820
13821 gcc_assert (stree && stree->n.tb);
13822
13823 if (stree->n.tb->error)
13824 return;
13825
13826 /* Operators should always be GENERIC bindings. */
13827 gcc_assert (stree->n.tb->is_generic);
13828
13829 /* Find overridden procedure, if any. */
13830 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13831 if (super_type && super_type->f2k_derived)
13832 {
13833 gfc_symtree* overridden;
13834 overridden = gfc_find_typebound_user_op (super_type, NULL,
13835 stree->name, true, NULL);
13836
13837 if (overridden && overridden->n.tb)
13838 stree->n.tb->overridden = overridden->n.tb;
13839 }
13840 else
13841 stree->n.tb->overridden = NULL;
13842
13843 /* Resolve basically using worker function. */
13844 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13845 goto error;
13846
13847 /* Check the targets to be functions of correct interface. */
13848 for (target = stree->n.tb->u.generic; target; target = target->next)
13849 {
13850 gfc_symbol* target_proc;
13851
13852 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13853 if (!target_proc)
13854 goto error;
13855
13856 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13857 goto error;
13858 }
13859
13860 return;
13861
13862 error:
13863 resolve_bindings_result = false;
13864 stree->n.tb->error = 1;
13865 }
13866
13867
13868 /* Resolve the type-bound procedures for a derived type. */
13869
13870 static void
13871 resolve_typebound_procedure (gfc_symtree* stree)
13872 {
13873 gfc_symbol* proc;
13874 locus where;
13875 gfc_symbol* me_arg;
13876 gfc_symbol* super_type;
13877 gfc_component* comp;
13878
13879 gcc_assert (stree);
13880
13881 /* Undefined specific symbol from GENERIC target definition. */
13882 if (!stree->n.tb)
13883 return;
13884
13885 if (stree->n.tb->error)
13886 return;
13887
13888 /* If this is a GENERIC binding, use that routine. */
13889 if (stree->n.tb->is_generic)
13890 {
13891 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13892 goto error;
13893 return;
13894 }
13895
13896 /* Get the target-procedure to check it. */
13897 gcc_assert (!stree->n.tb->is_generic);
13898 gcc_assert (stree->n.tb->u.specific);
13899 proc = stree->n.tb->u.specific->n.sym;
13900 where = stree->n.tb->where;
13901
13902 /* Default access should already be resolved from the parser. */
13903 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13904
13905 if (stree->n.tb->deferred)
13906 {
13907 if (!check_proc_interface (proc, &where))
13908 goto error;
13909 }
13910 else
13911 {
13912 /* If proc has not been resolved at this point, proc->name may
13913 actually be a USE associated entity. See PR fortran/89647. */
13914 if (!proc->resolve_symbol_called
13915 && proc->attr.function == 0 && proc->attr.subroutine == 0)
13916 {
13917 gfc_symbol *tmp;
13918 gfc_find_symbol (proc->name, gfc_current_ns->parent, 1, &tmp);
13919 if (tmp && tmp->attr.use_assoc)
13920 {
13921 proc->module = tmp->module;
13922 proc->attr.proc = tmp->attr.proc;
13923 proc->attr.function = tmp->attr.function;
13924 proc->attr.subroutine = tmp->attr.subroutine;
13925 proc->attr.use_assoc = tmp->attr.use_assoc;
13926 proc->ts = tmp->ts;
13927 proc->result = tmp->result;
13928 }
13929 }
13930
13931 /* Check for F08:C465. */
13932 if ((!proc->attr.subroutine && !proc->attr.function)
13933 || (proc->attr.proc != PROC_MODULE
13934 && proc->attr.if_source != IFSRC_IFBODY)
13935 || proc->attr.abstract)
13936 {
13937 gfc_error ("%qs must be a module procedure or an external "
13938 "procedure with an explicit interface at %L",
13939 proc->name, &where);
13940 goto error;
13941 }
13942 }
13943
13944 stree->n.tb->subroutine = proc->attr.subroutine;
13945 stree->n.tb->function = proc->attr.function;
13946
13947 /* Find the super-type of the current derived type. We could do this once and
13948 store in a global if speed is needed, but as long as not I believe this is
13949 more readable and clearer. */
13950 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13951
13952 /* If PASS, resolve and check arguments if not already resolved / loaded
13953 from a .mod file. */
13954 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13955 {
13956 gfc_formal_arglist *dummy_args;
13957
13958 dummy_args = gfc_sym_get_dummy_args (proc);
13959 if (stree->n.tb->pass_arg)
13960 {
13961 gfc_formal_arglist *i;
13962
13963 /* If an explicit passing argument name is given, walk the arg-list
13964 and look for it. */
13965
13966 me_arg = NULL;
13967 stree->n.tb->pass_arg_num = 1;
13968 for (i = dummy_args; i; i = i->next)
13969 {
13970 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13971 {
13972 me_arg = i->sym;
13973 break;
13974 }
13975 ++stree->n.tb->pass_arg_num;
13976 }
13977
13978 if (!me_arg)
13979 {
13980 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13981 " argument %qs",
13982 proc->name, stree->n.tb->pass_arg, &where,
13983 stree->n.tb->pass_arg);
13984 goto error;
13985 }
13986 }
13987 else
13988 {
13989 /* Otherwise, take the first one; there should in fact be at least
13990 one. */
13991 stree->n.tb->pass_arg_num = 1;
13992 if (!dummy_args)
13993 {
13994 gfc_error ("Procedure %qs with PASS at %L must have at"
13995 " least one argument", proc->name, &where);
13996 goto error;
13997 }
13998 me_arg = dummy_args->sym;
13999 }
14000
14001 /* Now check that the argument-type matches and the passed-object
14002 dummy argument is generally fine. */
14003
14004 gcc_assert (me_arg);
14005
14006 if (me_arg->ts.type != BT_CLASS)
14007 {
14008 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14009 " at %L", proc->name, &where);
14010 goto error;
14011 }
14012
14013 if (CLASS_DATA (me_arg)->ts.u.derived
14014 != resolve_bindings_derived)
14015 {
14016 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14017 " the derived-type %qs", me_arg->name, proc->name,
14018 me_arg->name, &where, resolve_bindings_derived->name);
14019 goto error;
14020 }
14021
14022 gcc_assert (me_arg->ts.type == BT_CLASS);
14023 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
14024 {
14025 gfc_error ("Passed-object dummy argument of %qs at %L must be"
14026 " scalar", proc->name, &where);
14027 goto error;
14028 }
14029 if (CLASS_DATA (me_arg)->attr.allocatable)
14030 {
14031 gfc_error ("Passed-object dummy argument of %qs at %L must not"
14032 " be ALLOCATABLE", proc->name, &where);
14033 goto error;
14034 }
14035 if (CLASS_DATA (me_arg)->attr.class_pointer)
14036 {
14037 gfc_error ("Passed-object dummy argument of %qs at %L must not"
14038 " be POINTER", proc->name, &where);
14039 goto error;
14040 }
14041 }
14042
14043 /* If we are extending some type, check that we don't override a procedure
14044 flagged NON_OVERRIDABLE. */
14045 stree->n.tb->overridden = NULL;
14046 if (super_type)
14047 {
14048 gfc_symtree* overridden;
14049 overridden = gfc_find_typebound_proc (super_type, NULL,
14050 stree->name, true, NULL);
14051
14052 if (overridden)
14053 {
14054 if (overridden->n.tb)
14055 stree->n.tb->overridden = overridden->n.tb;
14056
14057 if (!gfc_check_typebound_override (stree, overridden))
14058 goto error;
14059 }
14060 }
14061
14062 /* See if there's a name collision with a component directly in this type. */
14063 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
14064 if (!strcmp (comp->name, stree->name))
14065 {
14066 gfc_error ("Procedure %qs at %L has the same name as a component of"
14067 " %qs",
14068 stree->name, &where, resolve_bindings_derived->name);
14069 goto error;
14070 }
14071
14072 /* Try to find a name collision with an inherited component. */
14073 if (super_type && gfc_find_component (super_type, stree->name, true, true,
14074 NULL))
14075 {
14076 gfc_error ("Procedure %qs at %L has the same name as an inherited"
14077 " component of %qs",
14078 stree->name, &where, resolve_bindings_derived->name);
14079 goto error;
14080 }
14081
14082 stree->n.tb->error = 0;
14083 return;
14084
14085 error:
14086 resolve_bindings_result = false;
14087 stree->n.tb->error = 1;
14088 }
14089
14090
14091 static bool
14092 resolve_typebound_procedures (gfc_symbol* derived)
14093 {
14094 int op;
14095 gfc_symbol* super_type;
14096
14097 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
14098 return true;
14099
14100 super_type = gfc_get_derived_super_type (derived);
14101 if (super_type)
14102 resolve_symbol (super_type);
14103
14104 resolve_bindings_derived = derived;
14105 resolve_bindings_result = true;
14106
14107 if (derived->f2k_derived->tb_sym_root)
14108 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
14109 &resolve_typebound_procedure);
14110
14111 if (derived->f2k_derived->tb_uop_root)
14112 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
14113 &resolve_typebound_user_op);
14114
14115 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
14116 {
14117 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
14118 if (p && !resolve_typebound_intrinsic_op (derived,
14119 (gfc_intrinsic_op)op, p))
14120 resolve_bindings_result = false;
14121 }
14122
14123 return resolve_bindings_result;
14124 }
14125
14126
14127 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
14128 to give all identical derived types the same backend_decl. */
14129 static void
14130 add_dt_to_dt_list (gfc_symbol *derived)
14131 {
14132 if (!derived->dt_next)
14133 {
14134 if (gfc_derived_types)
14135 {
14136 derived->dt_next = gfc_derived_types->dt_next;
14137 gfc_derived_types->dt_next = derived;
14138 }
14139 else
14140 {
14141 derived->dt_next = derived;
14142 }
14143 gfc_derived_types = derived;
14144 }
14145 }
14146
14147
14148 /* Ensure that a derived-type is really not abstract, meaning that every
14149 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
14150
14151 static bool
14152 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
14153 {
14154 if (!st)
14155 return true;
14156
14157 if (!ensure_not_abstract_walker (sub, st->left))
14158 return false;
14159 if (!ensure_not_abstract_walker (sub, st->right))
14160 return false;
14161
14162 if (st->n.tb && st->n.tb->deferred)
14163 {
14164 gfc_symtree* overriding;
14165 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
14166 if (!overriding)
14167 return false;
14168 gcc_assert (overriding->n.tb);
14169 if (overriding->n.tb->deferred)
14170 {
14171 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
14172 " %qs is DEFERRED and not overridden",
14173 sub->name, &sub->declared_at, st->name);
14174 return false;
14175 }
14176 }
14177
14178 return true;
14179 }
14180
14181 static bool
14182 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
14183 {
14184 /* The algorithm used here is to recursively travel up the ancestry of sub
14185 and for each ancestor-type, check all bindings. If any of them is
14186 DEFERRED, look it up starting from sub and see if the found (overriding)
14187 binding is not DEFERRED.
14188 This is not the most efficient way to do this, but it should be ok and is
14189 clearer than something sophisticated. */
14190
14191 gcc_assert (ancestor && !sub->attr.abstract);
14192
14193 if (!ancestor->attr.abstract)
14194 return true;
14195
14196 /* Walk bindings of this ancestor. */
14197 if (ancestor->f2k_derived)
14198 {
14199 bool t;
14200 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
14201 if (!t)
14202 return false;
14203 }
14204
14205 /* Find next ancestor type and recurse on it. */
14206 ancestor = gfc_get_derived_super_type (ancestor);
14207 if (ancestor)
14208 return ensure_not_abstract (sub, ancestor);
14209
14210 return true;
14211 }
14212
14213
14214 /* This check for typebound defined assignments is done recursively
14215 since the order in which derived types are resolved is not always in
14216 order of the declarations. */
14217
14218 static void
14219 check_defined_assignments (gfc_symbol *derived)
14220 {
14221 gfc_component *c;
14222
14223 for (c = derived->components; c; c = c->next)
14224 {
14225 if (!gfc_bt_struct (c->ts.type)
14226 || c->attr.pointer
14227 || c->attr.allocatable
14228 || c->attr.proc_pointer_comp
14229 || c->attr.class_pointer
14230 || c->attr.proc_pointer)
14231 continue;
14232
14233 if (c->ts.u.derived->attr.defined_assign_comp
14234 || (c->ts.u.derived->f2k_derived
14235 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
14236 {
14237 derived->attr.defined_assign_comp = 1;
14238 return;
14239 }
14240
14241 check_defined_assignments (c->ts.u.derived);
14242 if (c->ts.u.derived->attr.defined_assign_comp)
14243 {
14244 derived->attr.defined_assign_comp = 1;
14245 return;
14246 }
14247 }
14248 }
14249
14250
14251 /* Resolve a single component of a derived type or structure. */
14252
14253 static bool
14254 resolve_component (gfc_component *c, gfc_symbol *sym)
14255 {
14256 gfc_symbol *super_type;
14257 symbol_attribute *attr;
14258
14259 if (c->attr.artificial)
14260 return true;
14261
14262 /* Do not allow vtype components to be resolved in nameless namespaces
14263 such as block data because the procedure pointers will cause ICEs
14264 and vtables are not needed in these contexts. */
14265 if (sym->attr.vtype && sym->attr.use_assoc
14266 && sym->ns->proc_name == NULL)
14267 return true;
14268
14269 /* F2008, C442. */
14270 if ((!sym->attr.is_class || c != sym->components)
14271 && c->attr.codimension
14272 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
14273 {
14274 gfc_error ("Coarray component %qs at %L must be allocatable with "
14275 "deferred shape", c->name, &c->loc);
14276 return false;
14277 }
14278
14279 /* F2008, C443. */
14280 if (c->attr.codimension && c->ts.type == BT_DERIVED
14281 && c->ts.u.derived->ts.is_iso_c)
14282 {
14283 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
14284 "shall not be a coarray", c->name, &c->loc);
14285 return false;
14286 }
14287
14288 /* F2008, C444. */
14289 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
14290 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
14291 || c->attr.allocatable))
14292 {
14293 gfc_error ("Component %qs at %L with coarray component "
14294 "shall be a nonpointer, nonallocatable scalar",
14295 c->name, &c->loc);
14296 return false;
14297 }
14298
14299 /* F2008, C448. */
14300 if (c->ts.type == BT_CLASS)
14301 {
14302 if (CLASS_DATA (c))
14303 {
14304 attr = &(CLASS_DATA (c)->attr);
14305
14306 /* Fix up contiguous attribute. */
14307 if (c->attr.contiguous)
14308 attr->contiguous = 1;
14309 }
14310 else
14311 attr = NULL;
14312 }
14313 else
14314 attr = &c->attr;
14315
14316 if (attr && attr->contiguous && (!attr->dimension || !attr->pointer))
14317 {
14318 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
14319 "is not an array pointer", c->name, &c->loc);
14320 return false;
14321 }
14322
14323 /* F2003, 15.2.1 - length has to be one. */
14324 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
14325 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
14326 || !gfc_is_constant_expr (c->ts.u.cl->length)
14327 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
14328 {
14329 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
14330 c->name, &c->loc);
14331 return false;
14332 }
14333
14334 if (c->attr.proc_pointer && c->ts.interface)
14335 {
14336 gfc_symbol *ifc = c->ts.interface;
14337
14338 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
14339 {
14340 c->tb->error = 1;
14341 return false;
14342 }
14343
14344 if (ifc->attr.if_source || ifc->attr.intrinsic)
14345 {
14346 /* Resolve interface and copy attributes. */
14347 if (ifc->formal && !ifc->formal_ns)
14348 resolve_symbol (ifc);
14349 if (ifc->attr.intrinsic)
14350 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
14351
14352 if (ifc->result)
14353 {
14354 c->ts = ifc->result->ts;
14355 c->attr.allocatable = ifc->result->attr.allocatable;
14356 c->attr.pointer = ifc->result->attr.pointer;
14357 c->attr.dimension = ifc->result->attr.dimension;
14358 c->as = gfc_copy_array_spec (ifc->result->as);
14359 c->attr.class_ok = ifc->result->attr.class_ok;
14360 }
14361 else
14362 {
14363 c->ts = ifc->ts;
14364 c->attr.allocatable = ifc->attr.allocatable;
14365 c->attr.pointer = ifc->attr.pointer;
14366 c->attr.dimension = ifc->attr.dimension;
14367 c->as = gfc_copy_array_spec (ifc->as);
14368 c->attr.class_ok = ifc->attr.class_ok;
14369 }
14370 c->ts.interface = ifc;
14371 c->attr.function = ifc->attr.function;
14372 c->attr.subroutine = ifc->attr.subroutine;
14373
14374 c->attr.pure = ifc->attr.pure;
14375 c->attr.elemental = ifc->attr.elemental;
14376 c->attr.recursive = ifc->attr.recursive;
14377 c->attr.always_explicit = ifc->attr.always_explicit;
14378 c->attr.ext_attr |= ifc->attr.ext_attr;
14379 /* Copy char length. */
14380 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
14381 {
14382 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
14383 if (cl->length && !cl->resolved
14384 && !gfc_resolve_expr (cl->length))
14385 {
14386 c->tb->error = 1;
14387 return false;
14388 }
14389 c->ts.u.cl = cl;
14390 }
14391 }
14392 }
14393 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
14394 {
14395 /* Since PPCs are not implicitly typed, a PPC without an explicit
14396 interface must be a subroutine. */
14397 gfc_add_subroutine (&c->attr, c->name, &c->loc);
14398 }
14399
14400 /* Procedure pointer components: Check PASS arg. */
14401 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
14402 && !sym->attr.vtype)
14403 {
14404 gfc_symbol* me_arg;
14405
14406 if (c->tb->pass_arg)
14407 {
14408 gfc_formal_arglist* i;
14409
14410 /* If an explicit passing argument name is given, walk the arg-list
14411 and look for it. */
14412
14413 me_arg = NULL;
14414 c->tb->pass_arg_num = 1;
14415 for (i = c->ts.interface->formal; i; i = i->next)
14416 {
14417 if (!strcmp (i->sym->name, c->tb->pass_arg))
14418 {
14419 me_arg = i->sym;
14420 break;
14421 }
14422 c->tb->pass_arg_num++;
14423 }
14424
14425 if (!me_arg)
14426 {
14427 gfc_error ("Procedure pointer component %qs with PASS(%s) "
14428 "at %L has no argument %qs", c->name,
14429 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
14430 c->tb->error = 1;
14431 return false;
14432 }
14433 }
14434 else
14435 {
14436 /* Otherwise, take the first one; there should in fact be at least
14437 one. */
14438 c->tb->pass_arg_num = 1;
14439 if (!c->ts.interface->formal)
14440 {
14441 gfc_error ("Procedure pointer component %qs with PASS at %L "
14442 "must have at least one argument",
14443 c->name, &c->loc);
14444 c->tb->error = 1;
14445 return false;
14446 }
14447 me_arg = c->ts.interface->formal->sym;
14448 }
14449
14450 /* Now check that the argument-type matches. */
14451 gcc_assert (me_arg);
14452 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
14453 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
14454 || (me_arg->ts.type == BT_CLASS
14455 && CLASS_DATA (me_arg)->ts.u.derived != sym))
14456 {
14457 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14458 " the derived type %qs", me_arg->name, c->name,
14459 me_arg->name, &c->loc, sym->name);
14460 c->tb->error = 1;
14461 return false;
14462 }
14463
14464 /* Check for F03:C453. */
14465 if (CLASS_DATA (me_arg)->attr.dimension)
14466 {
14467 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14468 "must be scalar", me_arg->name, c->name, me_arg->name,
14469 &c->loc);
14470 c->tb->error = 1;
14471 return false;
14472 }
14473
14474 if (CLASS_DATA (me_arg)->attr.class_pointer)
14475 {
14476 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14477 "may not have the POINTER attribute", me_arg->name,
14478 c->name, me_arg->name, &c->loc);
14479 c->tb->error = 1;
14480 return false;
14481 }
14482
14483 if (CLASS_DATA (me_arg)->attr.allocatable)
14484 {
14485 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14486 "may not be ALLOCATABLE", me_arg->name, c->name,
14487 me_arg->name, &c->loc);
14488 c->tb->error = 1;
14489 return false;
14490 }
14491
14492 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
14493 {
14494 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14495 " at %L", c->name, &c->loc);
14496 return false;
14497 }
14498
14499 }
14500
14501 /* Check type-spec if this is not the parent-type component. */
14502 if (((sym->attr.is_class
14503 && (!sym->components->ts.u.derived->attr.extension
14504 || c != sym->components->ts.u.derived->components))
14505 || (!sym->attr.is_class
14506 && (!sym->attr.extension || c != sym->components)))
14507 && !sym->attr.vtype
14508 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
14509 return false;
14510
14511 super_type = gfc_get_derived_super_type (sym);
14512
14513 /* If this type is an extension, set the accessibility of the parent
14514 component. */
14515 if (super_type
14516 && ((sym->attr.is_class
14517 && c == sym->components->ts.u.derived->components)
14518 || (!sym->attr.is_class && c == sym->components))
14519 && strcmp (super_type->name, c->name) == 0)
14520 c->attr.access = super_type->attr.access;
14521
14522 /* If this type is an extension, see if this component has the same name
14523 as an inherited type-bound procedure. */
14524 if (super_type && !sym->attr.is_class
14525 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
14526 {
14527 gfc_error ("Component %qs of %qs at %L has the same name as an"
14528 " inherited type-bound procedure",
14529 c->name, sym->name, &c->loc);
14530 return false;
14531 }
14532
14533 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
14534 && !c->ts.deferred)
14535 {
14536 if (c->ts.u.cl->length == NULL
14537 || (!resolve_charlen(c->ts.u.cl))
14538 || !gfc_is_constant_expr (c->ts.u.cl->length))
14539 {
14540 gfc_error ("Character length of component %qs needs to "
14541 "be a constant specification expression at %L",
14542 c->name,
14543 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
14544 return false;
14545 }
14546 }
14547
14548 if (c->ts.type == BT_CHARACTER && c->ts.deferred
14549 && !c->attr.pointer && !c->attr.allocatable)
14550 {
14551 gfc_error ("Character component %qs of %qs at %L with deferred "
14552 "length must be a POINTER or ALLOCATABLE",
14553 c->name, sym->name, &c->loc);
14554 return false;
14555 }
14556
14557 /* Add the hidden deferred length field. */
14558 if (c->ts.type == BT_CHARACTER
14559 && (c->ts.deferred || c->attr.pdt_string)
14560 && !c->attr.function
14561 && !sym->attr.is_class)
14562 {
14563 char name[GFC_MAX_SYMBOL_LEN+9];
14564 gfc_component *strlen;
14565 sprintf (name, "_%s_length", c->name);
14566 strlen = gfc_find_component (sym, name, true, true, NULL);
14567 if (strlen == NULL)
14568 {
14569 if (!gfc_add_component (sym, name, &strlen))
14570 return false;
14571 strlen->ts.type = BT_INTEGER;
14572 strlen->ts.kind = gfc_charlen_int_kind;
14573 strlen->attr.access = ACCESS_PRIVATE;
14574 strlen->attr.artificial = 1;
14575 }
14576 }
14577
14578 if (c->ts.type == BT_DERIVED
14579 && sym->component_access != ACCESS_PRIVATE
14580 && gfc_check_symbol_access (sym)
14581 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
14582 && !c->ts.u.derived->attr.use_assoc
14583 && !gfc_check_symbol_access (c->ts.u.derived)
14584 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
14585 "PRIVATE type and cannot be a component of "
14586 "%qs, which is PUBLIC at %L", c->name,
14587 sym->name, &sym->declared_at))
14588 return false;
14589
14590 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
14591 {
14592 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
14593 "type %s", c->name, &c->loc, sym->name);
14594 return false;
14595 }
14596
14597 if (sym->attr.sequence)
14598 {
14599 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
14600 {
14601 gfc_error ("Component %s of SEQUENCE type declared at %L does "
14602 "not have the SEQUENCE attribute",
14603 c->ts.u.derived->name, &sym->declared_at);
14604 return false;
14605 }
14606 }
14607
14608 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
14609 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
14610 else if (c->ts.type == BT_CLASS && c->attr.class_ok
14611 && CLASS_DATA (c)->ts.u.derived->attr.generic)
14612 CLASS_DATA (c)->ts.u.derived
14613 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
14614
14615 /* If an allocatable component derived type is of the same type as
14616 the enclosing derived type, we need a vtable generating so that
14617 the __deallocate procedure is created. */
14618 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
14619 && c->ts.u.derived == sym && c->attr.allocatable == 1)
14620 gfc_find_vtab (&c->ts);
14621
14622 /* Ensure that all the derived type components are put on the
14623 derived type list; even in formal namespaces, where derived type
14624 pointer components might not have been declared. */
14625 if (c->ts.type == BT_DERIVED
14626 && c->ts.u.derived
14627 && c->ts.u.derived->components
14628 && c->attr.pointer
14629 && sym != c->ts.u.derived)
14630 add_dt_to_dt_list (c->ts.u.derived);
14631
14632 if (!gfc_resolve_array_spec (c->as,
14633 !(c->attr.pointer || c->attr.proc_pointer
14634 || c->attr.allocatable)))
14635 return false;
14636
14637 if (c->initializer && !sym->attr.vtype
14638 && !c->attr.pdt_kind && !c->attr.pdt_len
14639 && !gfc_check_assign_symbol (sym, c, c->initializer))
14640 return false;
14641
14642 return true;
14643 }
14644
14645
14646 /* Be nice about the locus for a structure expression - show the locus of the
14647 first non-null sub-expression if we can. */
14648
14649 static locus *
14650 cons_where (gfc_expr *struct_expr)
14651 {
14652 gfc_constructor *cons;
14653
14654 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
14655
14656 cons = gfc_constructor_first (struct_expr->value.constructor);
14657 for (; cons; cons = gfc_constructor_next (cons))
14658 {
14659 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
14660 return &cons->expr->where;
14661 }
14662
14663 return &struct_expr->where;
14664 }
14665
14666 /* Resolve the components of a structure type. Much less work than derived
14667 types. */
14668
14669 static bool
14670 resolve_fl_struct (gfc_symbol *sym)
14671 {
14672 gfc_component *c;
14673 gfc_expr *init = NULL;
14674 bool success;
14675
14676 /* Make sure UNIONs do not have overlapping initializers. */
14677 if (sym->attr.flavor == FL_UNION)
14678 {
14679 for (c = sym->components; c; c = c->next)
14680 {
14681 if (init && c->initializer)
14682 {
14683 gfc_error ("Conflicting initializers in union at %L and %L",
14684 cons_where (init), cons_where (c->initializer));
14685 gfc_free_expr (c->initializer);
14686 c->initializer = NULL;
14687 }
14688 if (init == NULL)
14689 init = c->initializer;
14690 }
14691 }
14692
14693 success = true;
14694 for (c = sym->components; c; c = c->next)
14695 if (!resolve_component (c, sym))
14696 success = false;
14697
14698 if (!success)
14699 return false;
14700
14701 if (sym->components)
14702 add_dt_to_dt_list (sym);
14703
14704 return true;
14705 }
14706
14707
14708 /* Resolve the components of a derived type. This does not have to wait until
14709 resolution stage, but can be done as soon as the dt declaration has been
14710 parsed. */
14711
14712 static bool
14713 resolve_fl_derived0 (gfc_symbol *sym)
14714 {
14715 gfc_symbol* super_type;
14716 gfc_component *c;
14717 gfc_formal_arglist *f;
14718 bool success;
14719
14720 if (sym->attr.unlimited_polymorphic)
14721 return true;
14722
14723 super_type = gfc_get_derived_super_type (sym);
14724
14725 /* F2008, C432. */
14726 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14727 {
14728 gfc_error ("As extending type %qs at %L has a coarray component, "
14729 "parent type %qs shall also have one", sym->name,
14730 &sym->declared_at, super_type->name);
14731 return false;
14732 }
14733
14734 /* Ensure the extended type gets resolved before we do. */
14735 if (super_type && !resolve_fl_derived0 (super_type))
14736 return false;
14737
14738 /* An ABSTRACT type must be extensible. */
14739 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14740 {
14741 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14742 sym->name, &sym->declared_at);
14743 return false;
14744 }
14745
14746 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14747 : sym->components;
14748
14749 success = true;
14750 for ( ; c != NULL; c = c->next)
14751 if (!resolve_component (c, sym))
14752 success = false;
14753
14754 if (!success)
14755 return false;
14756
14757 /* Now add the caf token field, where needed. */
14758 if (flag_coarray != GFC_FCOARRAY_NONE
14759 && !sym->attr.is_class && !sym->attr.vtype)
14760 {
14761 for (c = sym->components; c; c = c->next)
14762 if (!c->attr.dimension && !c->attr.codimension
14763 && (c->attr.allocatable || c->attr.pointer))
14764 {
14765 char name[GFC_MAX_SYMBOL_LEN+9];
14766 gfc_component *token;
14767 sprintf (name, "_caf_%s", c->name);
14768 token = gfc_find_component (sym, name, true, true, NULL);
14769 if (token == NULL)
14770 {
14771 if (!gfc_add_component (sym, name, &token))
14772 return false;
14773 token->ts.type = BT_VOID;
14774 token->ts.kind = gfc_default_integer_kind;
14775 token->attr.access = ACCESS_PRIVATE;
14776 token->attr.artificial = 1;
14777 token->attr.caf_token = 1;
14778 }
14779 }
14780 }
14781
14782 check_defined_assignments (sym);
14783
14784 if (!sym->attr.defined_assign_comp && super_type)
14785 sym->attr.defined_assign_comp
14786 = super_type->attr.defined_assign_comp;
14787
14788 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14789 all DEFERRED bindings are overridden. */
14790 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14791 && !sym->attr.is_class
14792 && !ensure_not_abstract (sym, super_type))
14793 return false;
14794
14795 /* Check that there is a component for every PDT parameter. */
14796 if (sym->attr.pdt_template)
14797 {
14798 for (f = sym->formal; f; f = f->next)
14799 {
14800 if (!f->sym)
14801 continue;
14802 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14803 if (c == NULL)
14804 {
14805 gfc_error ("Parameterized type %qs does not have a component "
14806 "corresponding to parameter %qs at %L", sym->name,
14807 f->sym->name, &sym->declared_at);
14808 break;
14809 }
14810 }
14811 }
14812
14813 /* Add derived type to the derived type list. */
14814 add_dt_to_dt_list (sym);
14815
14816 return true;
14817 }
14818
14819
14820 /* The following procedure does the full resolution of a derived type,
14821 including resolution of all type-bound procedures (if present). In contrast
14822 to 'resolve_fl_derived0' this can only be done after the module has been
14823 parsed completely. */
14824
14825 static bool
14826 resolve_fl_derived (gfc_symbol *sym)
14827 {
14828 gfc_symbol *gen_dt = NULL;
14829
14830 if (sym->attr.unlimited_polymorphic)
14831 return true;
14832
14833 if (!sym->attr.is_class)
14834 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14835 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14836 && (!gen_dt->generic->sym->attr.use_assoc
14837 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14838 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14839 "%qs at %L being the same name as derived "
14840 "type at %L", sym->name,
14841 gen_dt->generic->sym == sym
14842 ? gen_dt->generic->next->sym->name
14843 : gen_dt->generic->sym->name,
14844 gen_dt->generic->sym == sym
14845 ? &gen_dt->generic->next->sym->declared_at
14846 : &gen_dt->generic->sym->declared_at,
14847 &sym->declared_at))
14848 return false;
14849
14850 if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
14851 {
14852 gfc_error ("Derived type %qs at %L has not been declared",
14853 sym->name, &sym->declared_at);
14854 return false;
14855 }
14856
14857 /* Resolve the finalizer procedures. */
14858 if (!gfc_resolve_finalizers (sym, NULL))
14859 return false;
14860
14861 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14862 {
14863 /* Fix up incomplete CLASS symbols. */
14864 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14865 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14866
14867 /* Nothing more to do for unlimited polymorphic entities. */
14868 if (data->ts.u.derived->attr.unlimited_polymorphic)
14869 return true;
14870 else if (vptr->ts.u.derived == NULL)
14871 {
14872 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14873 gcc_assert (vtab);
14874 vptr->ts.u.derived = vtab->ts.u.derived;
14875 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14876 return false;
14877 }
14878 }
14879
14880 if (!resolve_fl_derived0 (sym))
14881 return false;
14882
14883 /* Resolve the type-bound procedures. */
14884 if (!resolve_typebound_procedures (sym))
14885 return false;
14886
14887 /* Generate module vtables subject to their accessibility and their not
14888 being vtables or pdt templates. If this is not done class declarations
14889 in external procedures wind up with their own version and so SELECT TYPE
14890 fails because the vptrs do not have the same address. */
14891 if (gfc_option.allow_std & GFC_STD_F2003
14892 && sym->ns->proc_name
14893 && sym->ns->proc_name->attr.flavor == FL_MODULE
14894 && sym->attr.access != ACCESS_PRIVATE
14895 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14896 {
14897 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14898 gfc_set_sym_referenced (vtab);
14899 }
14900
14901 return true;
14902 }
14903
14904
14905 static bool
14906 resolve_fl_namelist (gfc_symbol *sym)
14907 {
14908 gfc_namelist *nl;
14909 gfc_symbol *nlsym;
14910
14911 for (nl = sym->namelist; nl; nl = nl->next)
14912 {
14913 /* Check again, the check in match only works if NAMELIST comes
14914 after the decl. */
14915 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14916 {
14917 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14918 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14919 return false;
14920 }
14921
14922 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14923 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14924 "with assumed shape in namelist %qs at %L",
14925 nl->sym->name, sym->name, &sym->declared_at))
14926 return false;
14927
14928 if (is_non_constant_shape_array (nl->sym)
14929 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14930 "with nonconstant shape in namelist %qs at %L",
14931 nl->sym->name, sym->name, &sym->declared_at))
14932 return false;
14933
14934 if (nl->sym->ts.type == BT_CHARACTER
14935 && (nl->sym->ts.u.cl->length == NULL
14936 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14937 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14938 "nonconstant character length in "
14939 "namelist %qs at %L", nl->sym->name,
14940 sym->name, &sym->declared_at))
14941 return false;
14942
14943 }
14944
14945 /* Reject PRIVATE objects in a PUBLIC namelist. */
14946 if (gfc_check_symbol_access (sym))
14947 {
14948 for (nl = sym->namelist; nl; nl = nl->next)
14949 {
14950 if (!nl->sym->attr.use_assoc
14951 && !is_sym_host_assoc (nl->sym, sym->ns)
14952 && !gfc_check_symbol_access (nl->sym))
14953 {
14954 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14955 "cannot be member of PUBLIC namelist %qs at %L",
14956 nl->sym->name, sym->name, &sym->declared_at);
14957 return false;
14958 }
14959
14960 if (nl->sym->ts.type == BT_DERIVED
14961 && (nl->sym->ts.u.derived->attr.alloc_comp
14962 || nl->sym->ts.u.derived->attr.pointer_comp))
14963 {
14964 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14965 "namelist %qs at %L with ALLOCATABLE "
14966 "or POINTER components", nl->sym->name,
14967 sym->name, &sym->declared_at))
14968 return false;
14969 return true;
14970 }
14971
14972 /* Types with private components that came here by USE-association. */
14973 if (nl->sym->ts.type == BT_DERIVED
14974 && derived_inaccessible (nl->sym->ts.u.derived))
14975 {
14976 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14977 "components and cannot be member of namelist %qs at %L",
14978 nl->sym->name, sym->name, &sym->declared_at);
14979 return false;
14980 }
14981
14982 /* Types with private components that are defined in the same module. */
14983 if (nl->sym->ts.type == BT_DERIVED
14984 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14985 && nl->sym->ts.u.derived->attr.private_comp)
14986 {
14987 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14988 "cannot be a member of PUBLIC namelist %qs at %L",
14989 nl->sym->name, sym->name, &sym->declared_at);
14990 return false;
14991 }
14992 }
14993 }
14994
14995
14996 /* 14.1.2 A module or internal procedure represent local entities
14997 of the same type as a namelist member and so are not allowed. */
14998 for (nl = sym->namelist; nl; nl = nl->next)
14999 {
15000 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
15001 continue;
15002
15003 if (nl->sym->attr.function && nl->sym == nl->sym->result)
15004 if ((nl->sym == sym->ns->proc_name)
15005 ||
15006 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
15007 continue;
15008
15009 nlsym = NULL;
15010 if (nl->sym->name)
15011 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
15012 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
15013 {
15014 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
15015 "attribute in %qs at %L", nlsym->name,
15016 &sym->declared_at);
15017 return false;
15018 }
15019 }
15020
15021 return true;
15022 }
15023
15024
15025 static bool
15026 resolve_fl_parameter (gfc_symbol *sym)
15027 {
15028 /* A parameter array's shape needs to be constant. */
15029 if (sym->as != NULL
15030 && (sym->as->type == AS_DEFERRED
15031 || is_non_constant_shape_array (sym)))
15032 {
15033 gfc_error ("Parameter array %qs at %L cannot be automatic "
15034 "or of deferred shape", sym->name, &sym->declared_at);
15035 return false;
15036 }
15037
15038 /* Constraints on deferred type parameter. */
15039 if (!deferred_requirements (sym))
15040 return false;
15041
15042 /* Make sure a parameter that has been implicitly typed still
15043 matches the implicit type, since PARAMETER statements can precede
15044 IMPLICIT statements. */
15045 if (sym->attr.implicit_type
15046 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
15047 sym->ns)))
15048 {
15049 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
15050 "later IMPLICIT type", sym->name, &sym->declared_at);
15051 return false;
15052 }
15053
15054 /* Make sure the types of derived parameters are consistent. This
15055 type checking is deferred until resolution because the type may
15056 refer to a derived type from the host. */
15057 if (sym->ts.type == BT_DERIVED
15058 && !gfc_compare_types (&sym->ts, &sym->value->ts))
15059 {
15060 gfc_error ("Incompatible derived type in PARAMETER at %L",
15061 &sym->value->where);
15062 return false;
15063 }
15064
15065 /* F03:C509,C514. */
15066 if (sym->ts.type == BT_CLASS)
15067 {
15068 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
15069 sym->name, &sym->declared_at);
15070 return false;
15071 }
15072
15073 return true;
15074 }
15075
15076
15077 /* Called by resolve_symbol to check PDTs. */
15078
15079 static void
15080 resolve_pdt (gfc_symbol* sym)
15081 {
15082 gfc_symbol *derived = NULL;
15083 gfc_actual_arglist *param;
15084 gfc_component *c;
15085 bool const_len_exprs = true;
15086 bool assumed_len_exprs = false;
15087 symbol_attribute *attr;
15088
15089 if (sym->ts.type == BT_DERIVED)
15090 {
15091 derived = sym->ts.u.derived;
15092 attr = &(sym->attr);
15093 }
15094 else if (sym->ts.type == BT_CLASS)
15095 {
15096 derived = CLASS_DATA (sym)->ts.u.derived;
15097 attr = &(CLASS_DATA (sym)->attr);
15098 }
15099 else
15100 gcc_unreachable ();
15101
15102 gcc_assert (derived->attr.pdt_type);
15103
15104 for (param = sym->param_list; param; param = param->next)
15105 {
15106 c = gfc_find_component (derived, param->name, false, true, NULL);
15107 gcc_assert (c);
15108 if (c->attr.pdt_kind)
15109 continue;
15110
15111 if (param->expr && !gfc_is_constant_expr (param->expr)
15112 && c->attr.pdt_len)
15113 const_len_exprs = false;
15114 else if (param->spec_type == SPEC_ASSUMED)
15115 assumed_len_exprs = true;
15116
15117 if (param->spec_type == SPEC_DEFERRED
15118 && !attr->allocatable && !attr->pointer)
15119 gfc_error ("The object %qs at %L has a deferred LEN "
15120 "parameter %qs and is neither allocatable "
15121 "nor a pointer", sym->name, &sym->declared_at,
15122 param->name);
15123
15124 }
15125
15126 if (!const_len_exprs
15127 && (sym->ns->proc_name->attr.is_main_program
15128 || sym->ns->proc_name->attr.flavor == FL_MODULE
15129 || sym->attr.save != SAVE_NONE))
15130 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
15131 "SAVE attribute or be a variable declared in the "
15132 "main program, a module or a submodule(F08/C513)",
15133 sym->name, &sym->declared_at);
15134
15135 if (assumed_len_exprs && !(sym->attr.dummy
15136 || sym->attr.select_type_temporary || sym->attr.associate_var))
15137 gfc_error ("The object %qs at %L with ASSUMED type parameters "
15138 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
15139 sym->name, &sym->declared_at);
15140 }
15141
15142
15143 /* Do anything necessary to resolve a symbol. Right now, we just
15144 assume that an otherwise unknown symbol is a variable. This sort
15145 of thing commonly happens for symbols in module. */
15146
15147 static void
15148 resolve_symbol (gfc_symbol *sym)
15149 {
15150 int check_constant, mp_flag;
15151 gfc_symtree *symtree;
15152 gfc_symtree *this_symtree;
15153 gfc_namespace *ns;
15154 gfc_component *c;
15155 symbol_attribute class_attr;
15156 gfc_array_spec *as;
15157 bool saved_specification_expr;
15158
15159 if (sym->resolve_symbol_called >= 1)
15160 return;
15161 sym->resolve_symbol_called = 1;
15162
15163 /* No symbol will ever have union type; only components can be unions.
15164 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
15165 (just like derived type declaration symbols have flavor FL_DERIVED). */
15166 gcc_assert (sym->ts.type != BT_UNION);
15167
15168 /* Coarrayed polymorphic objects with allocatable or pointer components are
15169 yet unsupported for -fcoarray=lib. */
15170 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
15171 && sym->ts.u.derived && CLASS_DATA (sym)
15172 && CLASS_DATA (sym)->attr.codimension
15173 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
15174 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
15175 {
15176 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
15177 "type coarrays at %L are unsupported", &sym->declared_at);
15178 return;
15179 }
15180
15181 if (sym->attr.artificial)
15182 return;
15183
15184 if (sym->attr.unlimited_polymorphic)
15185 return;
15186
15187 if (sym->attr.flavor == FL_UNKNOWN
15188 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
15189 && !sym->attr.generic && !sym->attr.external
15190 && sym->attr.if_source == IFSRC_UNKNOWN
15191 && sym->ts.type == BT_UNKNOWN))
15192 {
15193
15194 /* If we find that a flavorless symbol is an interface in one of the
15195 parent namespaces, find its symtree in this namespace, free the
15196 symbol and set the symtree to point to the interface symbol. */
15197 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
15198 {
15199 symtree = gfc_find_symtree (ns->sym_root, sym->name);
15200 if (symtree && (symtree->n.sym->generic ||
15201 (symtree->n.sym->attr.flavor == FL_PROCEDURE
15202 && sym->ns->construct_entities)))
15203 {
15204 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
15205 sym->name);
15206 if (this_symtree->n.sym == sym)
15207 {
15208 symtree->n.sym->refs++;
15209 gfc_release_symbol (sym);
15210 this_symtree->n.sym = symtree->n.sym;
15211 return;
15212 }
15213 }
15214 }
15215
15216 /* Otherwise give it a flavor according to such attributes as
15217 it has. */
15218 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
15219 && sym->attr.intrinsic == 0)
15220 sym->attr.flavor = FL_VARIABLE;
15221 else if (sym->attr.flavor == FL_UNKNOWN)
15222 {
15223 sym->attr.flavor = FL_PROCEDURE;
15224 if (sym->attr.dimension)
15225 sym->attr.function = 1;
15226 }
15227 }
15228
15229 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
15230 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
15231
15232 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
15233 && !resolve_procedure_interface (sym))
15234 return;
15235
15236 if (sym->attr.is_protected && !sym->attr.proc_pointer
15237 && (sym->attr.procedure || sym->attr.external))
15238 {
15239 if (sym->attr.external)
15240 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
15241 "at %L", &sym->declared_at);
15242 else
15243 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
15244 "at %L", &sym->declared_at);
15245
15246 return;
15247 }
15248
15249 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
15250 return;
15251
15252 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
15253 && !resolve_fl_struct (sym))
15254 return;
15255
15256 /* Symbols that are module procedures with results (functions) have
15257 the types and array specification copied for type checking in
15258 procedures that call them, as well as for saving to a module
15259 file. These symbols can't stand the scrutiny that their results
15260 can. */
15261 mp_flag = (sym->result != NULL && sym->result != sym);
15262
15263 /* Make sure that the intrinsic is consistent with its internal
15264 representation. This needs to be done before assigning a default
15265 type to avoid spurious warnings. */
15266 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
15267 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
15268 return;
15269
15270 /* Resolve associate names. */
15271 if (sym->assoc)
15272 resolve_assoc_var (sym, true);
15273
15274 /* Assign default type to symbols that need one and don't have one. */
15275 if (sym->ts.type == BT_UNKNOWN)
15276 {
15277 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
15278 {
15279 gfc_set_default_type (sym, 1, NULL);
15280 }
15281
15282 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
15283 && !sym->attr.function && !sym->attr.subroutine
15284 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
15285 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
15286
15287 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15288 {
15289 /* The specific case of an external procedure should emit an error
15290 in the case that there is no implicit type. */
15291 if (!mp_flag)
15292 {
15293 if (!sym->attr.mixed_entry_master)
15294 gfc_set_default_type (sym, sym->attr.external, NULL);
15295 }
15296 else
15297 {
15298 /* Result may be in another namespace. */
15299 resolve_symbol (sym->result);
15300
15301 if (!sym->result->attr.proc_pointer)
15302 {
15303 sym->ts = sym->result->ts;
15304 sym->as = gfc_copy_array_spec (sym->result->as);
15305 sym->attr.dimension = sym->result->attr.dimension;
15306 sym->attr.pointer = sym->result->attr.pointer;
15307 sym->attr.allocatable = sym->result->attr.allocatable;
15308 sym->attr.contiguous = sym->result->attr.contiguous;
15309 }
15310 }
15311 }
15312 }
15313 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15314 {
15315 bool saved_specification_expr = specification_expr;
15316 specification_expr = true;
15317 gfc_resolve_array_spec (sym->result->as, false);
15318 specification_expr = saved_specification_expr;
15319 }
15320
15321 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
15322 {
15323 as = CLASS_DATA (sym)->as;
15324 class_attr = CLASS_DATA (sym)->attr;
15325 class_attr.pointer = class_attr.class_pointer;
15326 }
15327 else
15328 {
15329 class_attr = sym->attr;
15330 as = sym->as;
15331 }
15332
15333 /* F2008, C530. */
15334 if (sym->attr.contiguous
15335 && (!class_attr.dimension
15336 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
15337 && !class_attr.pointer)))
15338 {
15339 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
15340 "array pointer or an assumed-shape or assumed-rank array",
15341 sym->name, &sym->declared_at);
15342 return;
15343 }
15344
15345 /* Assumed size arrays and assumed shape arrays must be dummy
15346 arguments. Array-spec's of implied-shape should have been resolved to
15347 AS_EXPLICIT already. */
15348
15349 if (as)
15350 {
15351 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
15352 specification expression. */
15353 if (as->type == AS_IMPLIED_SHAPE)
15354 {
15355 int i;
15356 for (i=0; i<as->rank; i++)
15357 {
15358 if (as->lower[i] != NULL && as->upper[i] == NULL)
15359 {
15360 gfc_error ("Bad specification for assumed size array at %L",
15361 &as->lower[i]->where);
15362 return;
15363 }
15364 }
15365 gcc_unreachable();
15366 }
15367
15368 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
15369 || as->type == AS_ASSUMED_SHAPE)
15370 && !sym->attr.dummy && !sym->attr.select_type_temporary)
15371 {
15372 if (as->type == AS_ASSUMED_SIZE)
15373 gfc_error ("Assumed size array at %L must be a dummy argument",
15374 &sym->declared_at);
15375 else
15376 gfc_error ("Assumed shape array at %L must be a dummy argument",
15377 &sym->declared_at);
15378 return;
15379 }
15380 /* TS 29113, C535a. */
15381 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
15382 && !sym->attr.select_type_temporary
15383 && !(cs_base && cs_base->current
15384 && cs_base->current->op == EXEC_SELECT_RANK))
15385 {
15386 gfc_error ("Assumed-rank array at %L must be a dummy argument",
15387 &sym->declared_at);
15388 return;
15389 }
15390 if (as->type == AS_ASSUMED_RANK
15391 && (sym->attr.codimension || sym->attr.value))
15392 {
15393 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
15394 "CODIMENSION attribute", &sym->declared_at);
15395 return;
15396 }
15397 }
15398
15399 /* Make sure symbols with known intent or optional are really dummy
15400 variable. Because of ENTRY statement, this has to be deferred
15401 until resolution time. */
15402
15403 if (!sym->attr.dummy
15404 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
15405 {
15406 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
15407 return;
15408 }
15409
15410 if (sym->attr.value && !sym->attr.dummy)
15411 {
15412 gfc_error ("%qs at %L cannot have the VALUE attribute because "
15413 "it is not a dummy argument", sym->name, &sym->declared_at);
15414 return;
15415 }
15416
15417 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
15418 {
15419 gfc_charlen *cl = sym->ts.u.cl;
15420 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
15421 {
15422 gfc_error ("Character dummy variable %qs at %L with VALUE "
15423 "attribute must have constant length",
15424 sym->name, &sym->declared_at);
15425 return;
15426 }
15427
15428 if (sym->ts.is_c_interop
15429 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
15430 {
15431 gfc_error ("C interoperable character dummy variable %qs at %L "
15432 "with VALUE attribute must have length one",
15433 sym->name, &sym->declared_at);
15434 return;
15435 }
15436 }
15437
15438 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15439 && sym->ts.u.derived->attr.generic)
15440 {
15441 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
15442 if (!sym->ts.u.derived)
15443 {
15444 gfc_error ("The derived type %qs at %L is of type %qs, "
15445 "which has not been defined", sym->name,
15446 &sym->declared_at, sym->ts.u.derived->name);
15447 sym->ts.type = BT_UNKNOWN;
15448 return;
15449 }
15450 }
15451
15452 /* Use the same constraints as TYPE(*), except for the type check
15453 and that only scalars and assumed-size arrays are permitted. */
15454 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
15455 {
15456 if (!sym->attr.dummy)
15457 {
15458 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15459 "a dummy argument", sym->name, &sym->declared_at);
15460 return;
15461 }
15462
15463 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
15464 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
15465 && sym->ts.type != BT_COMPLEX)
15466 {
15467 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15468 "of type TYPE(*) or of an numeric intrinsic type",
15469 sym->name, &sym->declared_at);
15470 return;
15471 }
15472
15473 if (sym->attr.allocatable || sym->attr.codimension
15474 || sym->attr.pointer || sym->attr.value)
15475 {
15476 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15477 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
15478 "attribute", sym->name, &sym->declared_at);
15479 return;
15480 }
15481
15482 if (sym->attr.intent == INTENT_OUT)
15483 {
15484 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15485 "have the INTENT(OUT) attribute",
15486 sym->name, &sym->declared_at);
15487 return;
15488 }
15489 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
15490 {
15491 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
15492 "either be a scalar or an assumed-size array",
15493 sym->name, &sym->declared_at);
15494 return;
15495 }
15496
15497 /* Set the type to TYPE(*) and add a dimension(*) to ensure
15498 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
15499 packing. */
15500 sym->ts.type = BT_ASSUMED;
15501 sym->as = gfc_get_array_spec ();
15502 sym->as->type = AS_ASSUMED_SIZE;
15503 sym->as->rank = 1;
15504 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
15505 }
15506 else if (sym->ts.type == BT_ASSUMED)
15507 {
15508 /* TS 29113, C407a. */
15509 if (!sym->attr.dummy)
15510 {
15511 gfc_error ("Assumed type of variable %s at %L is only permitted "
15512 "for dummy variables", sym->name, &sym->declared_at);
15513 return;
15514 }
15515 if (sym->attr.allocatable || sym->attr.codimension
15516 || sym->attr.pointer || sym->attr.value)
15517 {
15518 gfc_error ("Assumed-type variable %s at %L may not have the "
15519 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
15520 sym->name, &sym->declared_at);
15521 return;
15522 }
15523 if (sym->attr.intent == INTENT_OUT)
15524 {
15525 gfc_error ("Assumed-type variable %s at %L may not have the "
15526 "INTENT(OUT) attribute",
15527 sym->name, &sym->declared_at);
15528 return;
15529 }
15530 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
15531 {
15532 gfc_error ("Assumed-type variable %s at %L shall not be an "
15533 "explicit-shape array", sym->name, &sym->declared_at);
15534 return;
15535 }
15536 }
15537
15538 /* If the symbol is marked as bind(c), that it is declared at module level
15539 scope and verify its type and kind. Do not do the latter for symbols
15540 that are implicitly typed because that is handled in
15541 gfc_set_default_type. Handle dummy arguments and procedure definitions
15542 separately. Also, anything that is use associated is not handled here
15543 but instead is handled in the module it is declared in. Finally, derived
15544 type definitions are allowed to be BIND(C) since that only implies that
15545 they're interoperable, and they are checked fully for interoperability
15546 when a variable is declared of that type. */
15547 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
15548 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
15549 && sym->attr.flavor != FL_DERIVED)
15550 {
15551 bool t = true;
15552
15553 /* First, make sure the variable is declared at the
15554 module-level scope (J3/04-007, Section 15.3). */
15555 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
15556 sym->attr.in_common == 0)
15557 {
15558 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
15559 "is neither a COMMON block nor declared at the "
15560 "module level scope", sym->name, &(sym->declared_at));
15561 t = false;
15562 }
15563 else if (sym->ts.type == BT_CHARACTER
15564 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
15565 || !gfc_is_constant_expr (sym->ts.u.cl->length)
15566 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
15567 {
15568 gfc_error ("BIND(C) Variable %qs at %L must have length one",
15569 sym->name, &sym->declared_at);
15570 t = false;
15571 }
15572 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
15573 {
15574 t = verify_com_block_vars_c_interop (sym->common_head);
15575 }
15576 else if (sym->attr.implicit_type == 0)
15577 {
15578 /* If type() declaration, we need to verify that the components
15579 of the given type are all C interoperable, etc. */
15580 if (sym->ts.type == BT_DERIVED &&
15581 sym->ts.u.derived->attr.is_c_interop != 1)
15582 {
15583 /* Make sure the user marked the derived type as BIND(C). If
15584 not, call the verify routine. This could print an error
15585 for the derived type more than once if multiple variables
15586 of that type are declared. */
15587 if (sym->ts.u.derived->attr.is_bind_c != 1)
15588 verify_bind_c_derived_type (sym->ts.u.derived);
15589 t = false;
15590 }
15591
15592 /* Verify the variable itself as C interoperable if it
15593 is BIND(C). It is not possible for this to succeed if
15594 the verify_bind_c_derived_type failed, so don't have to handle
15595 any error returned by verify_bind_c_derived_type. */
15596 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
15597 sym->common_block);
15598 }
15599
15600 if (!t)
15601 {
15602 /* clear the is_bind_c flag to prevent reporting errors more than
15603 once if something failed. */
15604 sym->attr.is_bind_c = 0;
15605 return;
15606 }
15607 }
15608
15609 /* If a derived type symbol has reached this point, without its
15610 type being declared, we have an error. Notice that most
15611 conditions that produce undefined derived types have already
15612 been dealt with. However, the likes of:
15613 implicit type(t) (t) ..... call foo (t) will get us here if
15614 the type is not declared in the scope of the implicit
15615 statement. Change the type to BT_UNKNOWN, both because it is so
15616 and to prevent an ICE. */
15617 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15618 && sym->ts.u.derived->components == NULL
15619 && !sym->ts.u.derived->attr.zero_comp)
15620 {
15621 gfc_error ("The derived type %qs at %L is of type %qs, "
15622 "which has not been defined", sym->name,
15623 &sym->declared_at, sym->ts.u.derived->name);
15624 sym->ts.type = BT_UNKNOWN;
15625 return;
15626 }
15627
15628 /* Make sure that the derived type has been resolved and that the
15629 derived type is visible in the symbol's namespace, if it is a
15630 module function and is not PRIVATE. */
15631 if (sym->ts.type == BT_DERIVED
15632 && sym->ts.u.derived->attr.use_assoc
15633 && sym->ns->proc_name
15634 && sym->ns->proc_name->attr.flavor == FL_MODULE
15635 && !resolve_fl_derived (sym->ts.u.derived))
15636 return;
15637
15638 /* Unless the derived-type declaration is use associated, Fortran 95
15639 does not allow public entries of private derived types.
15640 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
15641 161 in 95-006r3. */
15642 if (sym->ts.type == BT_DERIVED
15643 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
15644 && !sym->ts.u.derived->attr.use_assoc
15645 && gfc_check_symbol_access (sym)
15646 && !gfc_check_symbol_access (sym->ts.u.derived)
15647 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
15648 "derived type %qs",
15649 (sym->attr.flavor == FL_PARAMETER)
15650 ? "parameter" : "variable",
15651 sym->name, &sym->declared_at,
15652 sym->ts.u.derived->name))
15653 return;
15654
15655 /* F2008, C1302. */
15656 if (sym->ts.type == BT_DERIVED
15657 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15658 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
15659 || sym->ts.u.derived->attr.lock_comp)
15660 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15661 {
15662 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
15663 "type LOCK_TYPE must be a coarray", sym->name,
15664 &sym->declared_at);
15665 return;
15666 }
15667
15668 /* TS18508, C702/C703. */
15669 if (sym->ts.type == BT_DERIVED
15670 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15671 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
15672 || sym->ts.u.derived->attr.event_comp)
15673 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15674 {
15675 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
15676 "type EVENT_TYPE must be a coarray", sym->name,
15677 &sym->declared_at);
15678 return;
15679 }
15680
15681 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
15682 default initialization is defined (5.1.2.4.4). */
15683 if (sym->ts.type == BT_DERIVED
15684 && sym->attr.dummy
15685 && sym->attr.intent == INTENT_OUT
15686 && sym->as
15687 && sym->as->type == AS_ASSUMED_SIZE)
15688 {
15689 for (c = sym->ts.u.derived->components; c; c = c->next)
15690 {
15691 if (c->initializer)
15692 {
15693 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
15694 "ASSUMED SIZE and so cannot have a default initializer",
15695 sym->name, &sym->declared_at);
15696 return;
15697 }
15698 }
15699 }
15700
15701 /* F2008, C542. */
15702 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15703 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
15704 {
15705 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
15706 "INTENT(OUT)", sym->name, &sym->declared_at);
15707 return;
15708 }
15709
15710 /* TS18508. */
15711 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15712 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
15713 {
15714 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
15715 "INTENT(OUT)", sym->name, &sym->declared_at);
15716 return;
15717 }
15718
15719 /* F2008, C525. */
15720 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15721 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15722 && CLASS_DATA (sym)->attr.coarray_comp))
15723 || class_attr.codimension)
15724 && (sym->attr.result || sym->result == sym))
15725 {
15726 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15727 "a coarray component", sym->name, &sym->declared_at);
15728 return;
15729 }
15730
15731 /* F2008, C524. */
15732 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15733 && sym->ts.u.derived->ts.is_iso_c)
15734 {
15735 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15736 "shall not be a coarray", sym->name, &sym->declared_at);
15737 return;
15738 }
15739
15740 /* F2008, C525. */
15741 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15742 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15743 && CLASS_DATA (sym)->attr.coarray_comp))
15744 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15745 || class_attr.allocatable))
15746 {
15747 gfc_error ("Variable %qs at %L with coarray component shall be a "
15748 "nonpointer, nonallocatable scalar, which is not a coarray",
15749 sym->name, &sym->declared_at);
15750 return;
15751 }
15752
15753 /* F2008, C526. The function-result case was handled above. */
15754 if (class_attr.codimension
15755 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15756 || sym->attr.select_type_temporary
15757 || sym->attr.associate_var
15758 || (sym->ns->save_all && !sym->attr.automatic)
15759 || sym->ns->proc_name->attr.flavor == FL_MODULE
15760 || sym->ns->proc_name->attr.is_main_program
15761 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15762 {
15763 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15764 "nor a dummy argument", sym->name, &sym->declared_at);
15765 return;
15766 }
15767 /* F2008, C528. */
15768 else if (class_attr.codimension && !sym->attr.select_type_temporary
15769 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15770 {
15771 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15772 "deferred shape", sym->name, &sym->declared_at);
15773 return;
15774 }
15775 else if (class_attr.codimension && class_attr.allocatable && as
15776 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15777 {
15778 gfc_error ("Allocatable coarray variable %qs at %L must have "
15779 "deferred shape", sym->name, &sym->declared_at);
15780 return;
15781 }
15782
15783 /* F2008, C541. */
15784 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15785 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15786 && CLASS_DATA (sym)->attr.coarray_comp))
15787 || (class_attr.codimension && class_attr.allocatable))
15788 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15789 {
15790 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15791 "allocatable coarray or have coarray components",
15792 sym->name, &sym->declared_at);
15793 return;
15794 }
15795
15796 if (class_attr.codimension && sym->attr.dummy
15797 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15798 {
15799 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15800 "procedure %qs", sym->name, &sym->declared_at,
15801 sym->ns->proc_name->name);
15802 return;
15803 }
15804
15805 if (sym->ts.type == BT_LOGICAL
15806 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15807 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15808 && sym->ns->proc_name->attr.is_bind_c)))
15809 {
15810 int i;
15811 for (i = 0; gfc_logical_kinds[i].kind; i++)
15812 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15813 break;
15814 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15815 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15816 "%L with non-C_Bool kind in BIND(C) procedure "
15817 "%qs", sym->name, &sym->declared_at,
15818 sym->ns->proc_name->name))
15819 return;
15820 else if (!gfc_logical_kinds[i].c_bool
15821 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15822 "%qs at %L with non-C_Bool kind in "
15823 "BIND(C) procedure %qs", sym->name,
15824 &sym->declared_at,
15825 sym->attr.function ? sym->name
15826 : sym->ns->proc_name->name))
15827 return;
15828 }
15829
15830 switch (sym->attr.flavor)
15831 {
15832 case FL_VARIABLE:
15833 if (!resolve_fl_variable (sym, mp_flag))
15834 return;
15835 break;
15836
15837 case FL_PROCEDURE:
15838 if (sym->formal && !sym->formal_ns)
15839 {
15840 /* Check that none of the arguments are a namelist. */
15841 gfc_formal_arglist *formal = sym->formal;
15842
15843 for (; formal; formal = formal->next)
15844 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15845 {
15846 gfc_error ("Namelist %qs cannot be an argument to "
15847 "subroutine or function at %L",
15848 formal->sym->name, &sym->declared_at);
15849 return;
15850 }
15851 }
15852
15853 if (!resolve_fl_procedure (sym, mp_flag))
15854 return;
15855 break;
15856
15857 case FL_NAMELIST:
15858 if (!resolve_fl_namelist (sym))
15859 return;
15860 break;
15861
15862 case FL_PARAMETER:
15863 if (!resolve_fl_parameter (sym))
15864 return;
15865 break;
15866
15867 default:
15868 break;
15869 }
15870
15871 /* Resolve array specifier. Check as well some constraints
15872 on COMMON blocks. */
15873
15874 check_constant = sym->attr.in_common && !sym->attr.pointer;
15875
15876 /* Set the formal_arg_flag so that check_conflict will not throw
15877 an error for host associated variables in the specification
15878 expression for an array_valued function. */
15879 if ((sym->attr.function || sym->attr.result) && sym->as)
15880 formal_arg_flag = true;
15881
15882 saved_specification_expr = specification_expr;
15883 specification_expr = true;
15884 gfc_resolve_array_spec (sym->as, check_constant);
15885 specification_expr = saved_specification_expr;
15886
15887 formal_arg_flag = false;
15888
15889 /* Resolve formal namespaces. */
15890 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15891 && !sym->attr.contained && !sym->attr.intrinsic)
15892 gfc_resolve (sym->formal_ns);
15893
15894 /* Make sure the formal namespace is present. */
15895 if (sym->formal && !sym->formal_ns)
15896 {
15897 gfc_formal_arglist *formal = sym->formal;
15898 while (formal && !formal->sym)
15899 formal = formal->next;
15900
15901 if (formal)
15902 {
15903 sym->formal_ns = formal->sym->ns;
15904 if (sym->ns != formal->sym->ns)
15905 sym->formal_ns->refs++;
15906 }
15907 }
15908
15909 /* Check threadprivate restrictions. */
15910 if (sym->attr.threadprivate && !sym->attr.save
15911 && !(sym->ns->save_all && !sym->attr.automatic)
15912 && (!sym->attr.in_common
15913 && sym->module == NULL
15914 && (sym->ns->proc_name == NULL
15915 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15916 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15917
15918 /* Check omp declare target restrictions. */
15919 if (sym->attr.omp_declare_target
15920 && sym->attr.flavor == FL_VARIABLE
15921 && !sym->attr.save
15922 && !(sym->ns->save_all && !sym->attr.automatic)
15923 && (!sym->attr.in_common
15924 && sym->module == NULL
15925 && (sym->ns->proc_name == NULL
15926 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15927 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15928 sym->name, &sym->declared_at);
15929
15930 /* If we have come this far we can apply default-initializers, as
15931 described in 14.7.5, to those variables that have not already
15932 been assigned one. */
15933 if (sym->ts.type == BT_DERIVED
15934 && !sym->value
15935 && !sym->attr.allocatable
15936 && !sym->attr.alloc_comp)
15937 {
15938 symbol_attribute *a = &sym->attr;
15939
15940 if ((!a->save && !a->dummy && !a->pointer
15941 && !a->in_common && !a->use_assoc
15942 && a->referenced
15943 && !((a->function || a->result)
15944 && (!a->dimension
15945 || sym->ts.u.derived->attr.alloc_comp
15946 || sym->ts.u.derived->attr.pointer_comp))
15947 && !(a->function && sym != sym->result))
15948 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15949 apply_default_init (sym);
15950 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15951 && (sym->ts.u.derived->attr.alloc_comp
15952 || sym->ts.u.derived->attr.pointer_comp))
15953 /* Mark the result symbol to be referenced, when it has allocatable
15954 components. */
15955 sym->result->attr.referenced = 1;
15956 }
15957
15958 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15959 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15960 && !CLASS_DATA (sym)->attr.class_pointer
15961 && !CLASS_DATA (sym)->attr.allocatable)
15962 apply_default_init (sym);
15963
15964 /* If this symbol has a type-spec, check it. */
15965 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15966 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15967 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15968 return;
15969
15970 if (sym->param_list)
15971 resolve_pdt (sym);
15972 }
15973
15974
15975 /************* Resolve DATA statements *************/
15976
15977 static struct
15978 {
15979 gfc_data_value *vnode;
15980 mpz_t left;
15981 }
15982 values;
15983
15984
15985 /* Advance the values structure to point to the next value in the data list. */
15986
15987 static bool
15988 next_data_value (void)
15989 {
15990 while (mpz_cmp_ui (values.left, 0) == 0)
15991 {
15992
15993 if (values.vnode->next == NULL)
15994 return false;
15995
15996 values.vnode = values.vnode->next;
15997 mpz_set (values.left, values.vnode->repeat);
15998 }
15999
16000 return true;
16001 }
16002
16003
16004 static bool
16005 check_data_variable (gfc_data_variable *var, locus *where)
16006 {
16007 gfc_expr *e;
16008 mpz_t size;
16009 mpz_t offset;
16010 bool t;
16011 ar_type mark = AR_UNKNOWN;
16012 int i;
16013 mpz_t section_index[GFC_MAX_DIMENSIONS];
16014 gfc_ref *ref;
16015 gfc_array_ref *ar;
16016 gfc_symbol *sym;
16017 int has_pointer;
16018
16019 if (!gfc_resolve_expr (var->expr))
16020 return false;
16021
16022 ar = NULL;
16023 mpz_init_set_si (offset, 0);
16024 e = var->expr;
16025
16026 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
16027 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
16028 e = e->value.function.actual->expr;
16029
16030 if (e->expr_type != EXPR_VARIABLE)
16031 {
16032 gfc_error ("Expecting definable entity near %L", where);
16033 return false;
16034 }
16035
16036 sym = e->symtree->n.sym;
16037
16038 if (sym->ns->is_block_data && !sym->attr.in_common)
16039 {
16040 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
16041 sym->name, &sym->declared_at);
16042 return false;
16043 }
16044
16045 if (e->ref == NULL && sym->as)
16046 {
16047 gfc_error ("DATA array %qs at %L must be specified in a previous"
16048 " declaration", sym->name, where);
16049 return false;
16050 }
16051
16052 if (gfc_is_coindexed (e))
16053 {
16054 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
16055 where);
16056 return false;
16057 }
16058
16059 has_pointer = sym->attr.pointer;
16060
16061 for (ref = e->ref; ref; ref = ref->next)
16062 {
16063 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
16064 has_pointer = 1;
16065
16066 if (has_pointer)
16067 {
16068 if (ref->type == REF_ARRAY && ref->u.ar.type != AR_FULL)
16069 {
16070 gfc_error ("DATA element %qs at %L is a pointer and so must "
16071 "be a full array", sym->name, where);
16072 return false;
16073 }
16074
16075 if (values.vnode->expr->expr_type == EXPR_CONSTANT)
16076 {
16077 gfc_error ("DATA object near %L has the pointer attribute "
16078 "and the corresponding DATA value is not a valid "
16079 "initial-data-target", where);
16080 return false;
16081 }
16082 }
16083 }
16084
16085 if (e->rank == 0 || has_pointer)
16086 {
16087 mpz_init_set_ui (size, 1);
16088 ref = NULL;
16089 }
16090 else
16091 {
16092 ref = e->ref;
16093
16094 /* Find the array section reference. */
16095 for (ref = e->ref; ref; ref = ref->next)
16096 {
16097 if (ref->type != REF_ARRAY)
16098 continue;
16099 if (ref->u.ar.type == AR_ELEMENT)
16100 continue;
16101 break;
16102 }
16103 gcc_assert (ref);
16104
16105 /* Set marks according to the reference pattern. */
16106 switch (ref->u.ar.type)
16107 {
16108 case AR_FULL:
16109 mark = AR_FULL;
16110 break;
16111
16112 case AR_SECTION:
16113 ar = &ref->u.ar;
16114 /* Get the start position of array section. */
16115 gfc_get_section_index (ar, section_index, &offset);
16116 mark = AR_SECTION;
16117 break;
16118
16119 default:
16120 gcc_unreachable ();
16121 }
16122
16123 if (!gfc_array_size (e, &size))
16124 {
16125 gfc_error ("Nonconstant array section at %L in DATA statement",
16126 where);
16127 mpz_clear (offset);
16128 return false;
16129 }
16130 }
16131
16132 t = true;
16133
16134 while (mpz_cmp_ui (size, 0) > 0)
16135 {
16136 if (!next_data_value ())
16137 {
16138 gfc_error ("DATA statement at %L has more variables than values",
16139 where);
16140 t = false;
16141 break;
16142 }
16143
16144 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
16145 if (!t)
16146 break;
16147
16148 /* If we have more than one element left in the repeat count,
16149 and we have more than one element left in the target variable,
16150 then create a range assignment. */
16151 /* FIXME: Only done for full arrays for now, since array sections
16152 seem tricky. */
16153 if (mark == AR_FULL && ref && ref->next == NULL
16154 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
16155 {
16156 mpz_t range;
16157
16158 if (mpz_cmp (size, values.left) >= 0)
16159 {
16160 mpz_init_set (range, values.left);
16161 mpz_sub (size, size, values.left);
16162 mpz_set_ui (values.left, 0);
16163 }
16164 else
16165 {
16166 mpz_init_set (range, size);
16167 mpz_sub (values.left, values.left, size);
16168 mpz_set_ui (size, 0);
16169 }
16170
16171 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16172 offset, &range);
16173
16174 mpz_add (offset, offset, range);
16175 mpz_clear (range);
16176
16177 if (!t)
16178 break;
16179 }
16180
16181 /* Assign initial value to symbol. */
16182 else
16183 {
16184 mpz_sub_ui (values.left, values.left, 1);
16185 mpz_sub_ui (size, size, 1);
16186
16187 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16188 offset, NULL);
16189 if (!t)
16190 break;
16191
16192 if (mark == AR_FULL)
16193 mpz_add_ui (offset, offset, 1);
16194
16195 /* Modify the array section indexes and recalculate the offset
16196 for next element. */
16197 else if (mark == AR_SECTION)
16198 gfc_advance_section (section_index, ar, &offset);
16199 }
16200 }
16201
16202 if (mark == AR_SECTION)
16203 {
16204 for (i = 0; i < ar->dimen; i++)
16205 mpz_clear (section_index[i]);
16206 }
16207
16208 mpz_clear (size);
16209 mpz_clear (offset);
16210
16211 return t;
16212 }
16213
16214
16215 static bool traverse_data_var (gfc_data_variable *, locus *);
16216
16217 /* Iterate over a list of elements in a DATA statement. */
16218
16219 static bool
16220 traverse_data_list (gfc_data_variable *var, locus *where)
16221 {
16222 mpz_t trip;
16223 iterator_stack frame;
16224 gfc_expr *e, *start, *end, *step;
16225 bool retval = true;
16226
16227 mpz_init (frame.value);
16228 mpz_init (trip);
16229
16230 start = gfc_copy_expr (var->iter.start);
16231 end = gfc_copy_expr (var->iter.end);
16232 step = gfc_copy_expr (var->iter.step);
16233
16234 if (!gfc_simplify_expr (start, 1)
16235 || start->expr_type != EXPR_CONSTANT)
16236 {
16237 gfc_error ("start of implied-do loop at %L could not be "
16238 "simplified to a constant value", &start->where);
16239 retval = false;
16240 goto cleanup;
16241 }
16242 if (!gfc_simplify_expr (end, 1)
16243 || end->expr_type != EXPR_CONSTANT)
16244 {
16245 gfc_error ("end of implied-do loop at %L could not be "
16246 "simplified to a constant value", &start->where);
16247 retval = false;
16248 goto cleanup;
16249 }
16250 if (!gfc_simplify_expr (step, 1)
16251 || step->expr_type != EXPR_CONSTANT)
16252 {
16253 gfc_error ("step of implied-do loop at %L could not be "
16254 "simplified to a constant value", &start->where);
16255 retval = false;
16256 goto cleanup;
16257 }
16258
16259 mpz_set (trip, end->value.integer);
16260 mpz_sub (trip, trip, start->value.integer);
16261 mpz_add (trip, trip, step->value.integer);
16262
16263 mpz_div (trip, trip, step->value.integer);
16264
16265 mpz_set (frame.value, start->value.integer);
16266
16267 frame.prev = iter_stack;
16268 frame.variable = var->iter.var->symtree;
16269 iter_stack = &frame;
16270
16271 while (mpz_cmp_ui (trip, 0) > 0)
16272 {
16273 if (!traverse_data_var (var->list, where))
16274 {
16275 retval = false;
16276 goto cleanup;
16277 }
16278
16279 e = gfc_copy_expr (var->expr);
16280 if (!gfc_simplify_expr (e, 1))
16281 {
16282 gfc_free_expr (e);
16283 retval = false;
16284 goto cleanup;
16285 }
16286
16287 mpz_add (frame.value, frame.value, step->value.integer);
16288
16289 mpz_sub_ui (trip, trip, 1);
16290 }
16291
16292 cleanup:
16293 mpz_clear (frame.value);
16294 mpz_clear (trip);
16295
16296 gfc_free_expr (start);
16297 gfc_free_expr (end);
16298 gfc_free_expr (step);
16299
16300 iter_stack = frame.prev;
16301 return retval;
16302 }
16303
16304
16305 /* Type resolve variables in the variable list of a DATA statement. */
16306
16307 static bool
16308 traverse_data_var (gfc_data_variable *var, locus *where)
16309 {
16310 bool t;
16311
16312 for (; var; var = var->next)
16313 {
16314 if (var->expr == NULL)
16315 t = traverse_data_list (var, where);
16316 else
16317 t = check_data_variable (var, where);
16318
16319 if (!t)
16320 return false;
16321 }
16322
16323 return true;
16324 }
16325
16326
16327 /* Resolve the expressions and iterators associated with a data statement.
16328 This is separate from the assignment checking because data lists should
16329 only be resolved once. */
16330
16331 static bool
16332 resolve_data_variables (gfc_data_variable *d)
16333 {
16334 for (; d; d = d->next)
16335 {
16336 if (d->list == NULL)
16337 {
16338 if (!gfc_resolve_expr (d->expr))
16339 return false;
16340 }
16341 else
16342 {
16343 if (!gfc_resolve_iterator (&d->iter, false, true))
16344 return false;
16345
16346 if (!resolve_data_variables (d->list))
16347 return false;
16348 }
16349 }
16350
16351 return true;
16352 }
16353
16354
16355 /* Resolve a single DATA statement. We implement this by storing a pointer to
16356 the value list into static variables, and then recursively traversing the
16357 variables list, expanding iterators and such. */
16358
16359 static void
16360 resolve_data (gfc_data *d)
16361 {
16362
16363 if (!resolve_data_variables (d->var))
16364 return;
16365
16366 values.vnode = d->value;
16367 if (d->value == NULL)
16368 mpz_set_ui (values.left, 0);
16369 else
16370 mpz_set (values.left, d->value->repeat);
16371
16372 if (!traverse_data_var (d->var, &d->where))
16373 return;
16374
16375 /* At this point, we better not have any values left. */
16376
16377 if (next_data_value ())
16378 gfc_error ("DATA statement at %L has more values than variables",
16379 &d->where);
16380 }
16381
16382
16383 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
16384 accessed by host or use association, is a dummy argument to a pure function,
16385 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
16386 is storage associated with any such variable, shall not be used in the
16387 following contexts: (clients of this function). */
16388
16389 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
16390 procedure. Returns zero if assignment is OK, nonzero if there is a
16391 problem. */
16392 int
16393 gfc_impure_variable (gfc_symbol *sym)
16394 {
16395 gfc_symbol *proc;
16396 gfc_namespace *ns;
16397
16398 if (sym->attr.use_assoc || sym->attr.in_common)
16399 return 1;
16400
16401 /* Check if the symbol's ns is inside the pure procedure. */
16402 for (ns = gfc_current_ns; ns; ns = ns->parent)
16403 {
16404 if (ns == sym->ns)
16405 break;
16406 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
16407 return 1;
16408 }
16409
16410 proc = sym->ns->proc_name;
16411 if (sym->attr.dummy
16412 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
16413 || proc->attr.function))
16414 return 1;
16415
16416 /* TODO: Sort out what can be storage associated, if anything, and include
16417 it here. In principle equivalences should be scanned but it does not
16418 seem to be possible to storage associate an impure variable this way. */
16419 return 0;
16420 }
16421
16422
16423 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
16424 current namespace is inside a pure procedure. */
16425
16426 int
16427 gfc_pure (gfc_symbol *sym)
16428 {
16429 symbol_attribute attr;
16430 gfc_namespace *ns;
16431
16432 if (sym == NULL)
16433 {
16434 /* Check if the current namespace or one of its parents
16435 belongs to a pure procedure. */
16436 for (ns = gfc_current_ns; ns; ns = ns->parent)
16437 {
16438 sym = ns->proc_name;
16439 if (sym == NULL)
16440 return 0;
16441 attr = sym->attr;
16442 if (attr.flavor == FL_PROCEDURE && attr.pure)
16443 return 1;
16444 }
16445 return 0;
16446 }
16447
16448 attr = sym->attr;
16449
16450 return attr.flavor == FL_PROCEDURE && attr.pure;
16451 }
16452
16453
16454 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
16455 checks if the current namespace is implicitly pure. Note that this
16456 function returns false for a PURE procedure. */
16457
16458 int
16459 gfc_implicit_pure (gfc_symbol *sym)
16460 {
16461 gfc_namespace *ns;
16462
16463 if (sym == NULL)
16464 {
16465 /* Check if the current procedure is implicit_pure. Walk up
16466 the procedure list until we find a procedure. */
16467 for (ns = gfc_current_ns; ns; ns = ns->parent)
16468 {
16469 sym = ns->proc_name;
16470 if (sym == NULL)
16471 return 0;
16472
16473 if (sym->attr.flavor == FL_PROCEDURE)
16474 break;
16475 }
16476 }
16477
16478 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
16479 && !sym->attr.pure;
16480 }
16481
16482
16483 void
16484 gfc_unset_implicit_pure (gfc_symbol *sym)
16485 {
16486 gfc_namespace *ns;
16487
16488 if (sym == NULL)
16489 {
16490 /* Check if the current procedure is implicit_pure. Walk up
16491 the procedure list until we find a procedure. */
16492 for (ns = gfc_current_ns; ns; ns = ns->parent)
16493 {
16494 sym = ns->proc_name;
16495 if (sym == NULL)
16496 return;
16497
16498 if (sym->attr.flavor == FL_PROCEDURE)
16499 break;
16500 }
16501 }
16502
16503 if (sym->attr.flavor == FL_PROCEDURE)
16504 sym->attr.implicit_pure = 0;
16505 else
16506 sym->attr.pure = 0;
16507 }
16508
16509
16510 /* Test whether the current procedure is elemental or not. */
16511
16512 int
16513 gfc_elemental (gfc_symbol *sym)
16514 {
16515 symbol_attribute attr;
16516
16517 if (sym == NULL)
16518 sym = gfc_current_ns->proc_name;
16519 if (sym == NULL)
16520 return 0;
16521 attr = sym->attr;
16522
16523 return attr.flavor == FL_PROCEDURE && attr.elemental;
16524 }
16525
16526
16527 /* Warn about unused labels. */
16528
16529 static void
16530 warn_unused_fortran_label (gfc_st_label *label)
16531 {
16532 if (label == NULL)
16533 return;
16534
16535 warn_unused_fortran_label (label->left);
16536
16537 if (label->defined == ST_LABEL_UNKNOWN)
16538 return;
16539
16540 switch (label->referenced)
16541 {
16542 case ST_LABEL_UNKNOWN:
16543 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
16544 label->value, &label->where);
16545 break;
16546
16547 case ST_LABEL_BAD_TARGET:
16548 gfc_warning (OPT_Wunused_label,
16549 "Label %d at %L defined but cannot be used",
16550 label->value, &label->where);
16551 break;
16552
16553 default:
16554 break;
16555 }
16556
16557 warn_unused_fortran_label (label->right);
16558 }
16559
16560
16561 /* Returns the sequence type of a symbol or sequence. */
16562
16563 static seq_type
16564 sequence_type (gfc_typespec ts)
16565 {
16566 seq_type result;
16567 gfc_component *c;
16568
16569 switch (ts.type)
16570 {
16571 case BT_DERIVED:
16572
16573 if (ts.u.derived->components == NULL)
16574 return SEQ_NONDEFAULT;
16575
16576 result = sequence_type (ts.u.derived->components->ts);
16577 for (c = ts.u.derived->components->next; c; c = c->next)
16578 if (sequence_type (c->ts) != result)
16579 return SEQ_MIXED;
16580
16581 return result;
16582
16583 case BT_CHARACTER:
16584 if (ts.kind != gfc_default_character_kind)
16585 return SEQ_NONDEFAULT;
16586
16587 return SEQ_CHARACTER;
16588
16589 case BT_INTEGER:
16590 if (ts.kind != gfc_default_integer_kind)
16591 return SEQ_NONDEFAULT;
16592
16593 return SEQ_NUMERIC;
16594
16595 case BT_REAL:
16596 if (!(ts.kind == gfc_default_real_kind
16597 || ts.kind == gfc_default_double_kind))
16598 return SEQ_NONDEFAULT;
16599
16600 return SEQ_NUMERIC;
16601
16602 case BT_COMPLEX:
16603 if (ts.kind != gfc_default_complex_kind)
16604 return SEQ_NONDEFAULT;
16605
16606 return SEQ_NUMERIC;
16607
16608 case BT_LOGICAL:
16609 if (ts.kind != gfc_default_logical_kind)
16610 return SEQ_NONDEFAULT;
16611
16612 return SEQ_NUMERIC;
16613
16614 default:
16615 return SEQ_NONDEFAULT;
16616 }
16617 }
16618
16619
16620 /* Resolve derived type EQUIVALENCE object. */
16621
16622 static bool
16623 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
16624 {
16625 gfc_component *c = derived->components;
16626
16627 if (!derived)
16628 return true;
16629
16630 /* Shall not be an object of nonsequence derived type. */
16631 if (!derived->attr.sequence)
16632 {
16633 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
16634 "attribute to be an EQUIVALENCE object", sym->name,
16635 &e->where);
16636 return false;
16637 }
16638
16639 /* Shall not have allocatable components. */
16640 if (derived->attr.alloc_comp)
16641 {
16642 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
16643 "components to be an EQUIVALENCE object",sym->name,
16644 &e->where);
16645 return false;
16646 }
16647
16648 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
16649 {
16650 gfc_error ("Derived type variable %qs at %L with default "
16651 "initialization cannot be in EQUIVALENCE with a variable "
16652 "in COMMON", sym->name, &e->where);
16653 return false;
16654 }
16655
16656 for (; c ; c = c->next)
16657 {
16658 if (gfc_bt_struct (c->ts.type)
16659 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
16660 return false;
16661
16662 /* Shall not be an object of sequence derived type containing a pointer
16663 in the structure. */
16664 if (c->attr.pointer)
16665 {
16666 gfc_error ("Derived type variable %qs at %L with pointer "
16667 "component(s) cannot be an EQUIVALENCE object",
16668 sym->name, &e->where);
16669 return false;
16670 }
16671 }
16672 return true;
16673 }
16674
16675
16676 /* Resolve equivalence object.
16677 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
16678 an allocatable array, an object of nonsequence derived type, an object of
16679 sequence derived type containing a pointer at any level of component
16680 selection, an automatic object, a function name, an entry name, a result
16681 name, a named constant, a structure component, or a subobject of any of
16682 the preceding objects. A substring shall not have length zero. A
16683 derived type shall not have components with default initialization nor
16684 shall two objects of an equivalence group be initialized.
16685 Either all or none of the objects shall have an protected attribute.
16686 The simple constraints are done in symbol.c(check_conflict) and the rest
16687 are implemented here. */
16688
16689 static void
16690 resolve_equivalence (gfc_equiv *eq)
16691 {
16692 gfc_symbol *sym;
16693 gfc_symbol *first_sym;
16694 gfc_expr *e;
16695 gfc_ref *r;
16696 locus *last_where = NULL;
16697 seq_type eq_type, last_eq_type;
16698 gfc_typespec *last_ts;
16699 int object, cnt_protected;
16700 const char *msg;
16701
16702 last_ts = &eq->expr->symtree->n.sym->ts;
16703
16704 first_sym = eq->expr->symtree->n.sym;
16705
16706 cnt_protected = 0;
16707
16708 for (object = 1; eq; eq = eq->eq, object++)
16709 {
16710 e = eq->expr;
16711
16712 e->ts = e->symtree->n.sym->ts;
16713 /* match_varspec might not know yet if it is seeing
16714 array reference or substring reference, as it doesn't
16715 know the types. */
16716 if (e->ref && e->ref->type == REF_ARRAY)
16717 {
16718 gfc_ref *ref = e->ref;
16719 sym = e->symtree->n.sym;
16720
16721 if (sym->attr.dimension)
16722 {
16723 ref->u.ar.as = sym->as;
16724 ref = ref->next;
16725 }
16726
16727 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
16728 if (e->ts.type == BT_CHARACTER
16729 && ref
16730 && ref->type == REF_ARRAY
16731 && ref->u.ar.dimen == 1
16732 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
16733 && ref->u.ar.stride[0] == NULL)
16734 {
16735 gfc_expr *start = ref->u.ar.start[0];
16736 gfc_expr *end = ref->u.ar.end[0];
16737 void *mem = NULL;
16738
16739 /* Optimize away the (:) reference. */
16740 if (start == NULL && end == NULL)
16741 {
16742 if (e->ref == ref)
16743 e->ref = ref->next;
16744 else
16745 e->ref->next = ref->next;
16746 mem = ref;
16747 }
16748 else
16749 {
16750 ref->type = REF_SUBSTRING;
16751 if (start == NULL)
16752 start = gfc_get_int_expr (gfc_charlen_int_kind,
16753 NULL, 1);
16754 ref->u.ss.start = start;
16755 if (end == NULL && e->ts.u.cl)
16756 end = gfc_copy_expr (e->ts.u.cl->length);
16757 ref->u.ss.end = end;
16758 ref->u.ss.length = e->ts.u.cl;
16759 e->ts.u.cl = NULL;
16760 }
16761 ref = ref->next;
16762 free (mem);
16763 }
16764
16765 /* Any further ref is an error. */
16766 if (ref)
16767 {
16768 gcc_assert (ref->type == REF_ARRAY);
16769 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16770 &ref->u.ar.where);
16771 continue;
16772 }
16773 }
16774
16775 if (!gfc_resolve_expr (e))
16776 continue;
16777
16778 sym = e->symtree->n.sym;
16779
16780 if (sym->attr.is_protected)
16781 cnt_protected++;
16782 if (cnt_protected > 0 && cnt_protected != object)
16783 {
16784 gfc_error ("Either all or none of the objects in the "
16785 "EQUIVALENCE set at %L shall have the "
16786 "PROTECTED attribute",
16787 &e->where);
16788 break;
16789 }
16790
16791 /* Shall not equivalence common block variables in a PURE procedure. */
16792 if (sym->ns->proc_name
16793 && sym->ns->proc_name->attr.pure
16794 && sym->attr.in_common)
16795 {
16796 /* Need to check for symbols that may have entered the pure
16797 procedure via a USE statement. */
16798 bool saw_sym = false;
16799 if (sym->ns->use_stmts)
16800 {
16801 gfc_use_rename *r;
16802 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16803 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16804 }
16805 else
16806 saw_sym = true;
16807
16808 if (saw_sym)
16809 gfc_error ("COMMON block member %qs at %L cannot be an "
16810 "EQUIVALENCE object in the pure procedure %qs",
16811 sym->name, &e->where, sym->ns->proc_name->name);
16812 break;
16813 }
16814
16815 /* Shall not be a named constant. */
16816 if (e->expr_type == EXPR_CONSTANT)
16817 {
16818 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16819 "object", sym->name, &e->where);
16820 continue;
16821 }
16822
16823 if (e->ts.type == BT_DERIVED
16824 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16825 continue;
16826
16827 /* Check that the types correspond correctly:
16828 Note 5.28:
16829 A numeric sequence structure may be equivalenced to another sequence
16830 structure, an object of default integer type, default real type, double
16831 precision real type, default logical type such that components of the
16832 structure ultimately only become associated to objects of the same
16833 kind. A character sequence structure may be equivalenced to an object
16834 of default character kind or another character sequence structure.
16835 Other objects may be equivalenced only to objects of the same type and
16836 kind parameters. */
16837
16838 /* Identical types are unconditionally OK. */
16839 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16840 goto identical_types;
16841
16842 last_eq_type = sequence_type (*last_ts);
16843 eq_type = sequence_type (sym->ts);
16844
16845 /* Since the pair of objects is not of the same type, mixed or
16846 non-default sequences can be rejected. */
16847
16848 msg = "Sequence %s with mixed components in EQUIVALENCE "
16849 "statement at %L with different type objects";
16850 if ((object ==2
16851 && last_eq_type == SEQ_MIXED
16852 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16853 || (eq_type == SEQ_MIXED
16854 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16855 continue;
16856
16857 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16858 "statement at %L with objects of different type";
16859 if ((object ==2
16860 && last_eq_type == SEQ_NONDEFAULT
16861 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16862 || (eq_type == SEQ_NONDEFAULT
16863 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16864 continue;
16865
16866 msg ="Non-CHARACTER object %qs in default CHARACTER "
16867 "EQUIVALENCE statement at %L";
16868 if (last_eq_type == SEQ_CHARACTER
16869 && eq_type != SEQ_CHARACTER
16870 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16871 continue;
16872
16873 msg ="Non-NUMERIC object %qs in default NUMERIC "
16874 "EQUIVALENCE statement at %L";
16875 if (last_eq_type == SEQ_NUMERIC
16876 && eq_type != SEQ_NUMERIC
16877 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16878 continue;
16879
16880 identical_types:
16881
16882 last_ts =&sym->ts;
16883 last_where = &e->where;
16884
16885 if (!e->ref)
16886 continue;
16887
16888 /* Shall not be an automatic array. */
16889 if (e->ref->type == REF_ARRAY && is_non_constant_shape_array (sym))
16890 {
16891 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16892 "an EQUIVALENCE object", sym->name, &e->where);
16893 continue;
16894 }
16895
16896 r = e->ref;
16897 while (r)
16898 {
16899 /* Shall not be a structure component. */
16900 if (r->type == REF_COMPONENT)
16901 {
16902 gfc_error ("Structure component %qs at %L cannot be an "
16903 "EQUIVALENCE object",
16904 r->u.c.component->name, &e->where);
16905 break;
16906 }
16907
16908 /* A substring shall not have length zero. */
16909 if (r->type == REF_SUBSTRING)
16910 {
16911 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16912 {
16913 gfc_error ("Substring at %L has length zero",
16914 &r->u.ss.start->where);
16915 break;
16916 }
16917 }
16918 r = r->next;
16919 }
16920 }
16921 }
16922
16923
16924 /* Function called by resolve_fntype to flag other symbols used in the
16925 length type parameter specification of function results. */
16926
16927 static bool
16928 flag_fn_result_spec (gfc_expr *expr,
16929 gfc_symbol *sym,
16930 int *f ATTRIBUTE_UNUSED)
16931 {
16932 gfc_namespace *ns;
16933 gfc_symbol *s;
16934
16935 if (expr->expr_type == EXPR_VARIABLE)
16936 {
16937 s = expr->symtree->n.sym;
16938 for (ns = s->ns; ns; ns = ns->parent)
16939 if (!ns->parent)
16940 break;
16941
16942 if (sym == s)
16943 {
16944 gfc_error ("Self reference in character length expression "
16945 "for %qs at %L", sym->name, &expr->where);
16946 return true;
16947 }
16948
16949 if (!s->fn_result_spec
16950 && s->attr.flavor == FL_PARAMETER)
16951 {
16952 /* Function contained in a module.... */
16953 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16954 {
16955 gfc_symtree *st;
16956 s->fn_result_spec = 1;
16957 /* Make sure that this symbol is translated as a module
16958 variable. */
16959 st = gfc_get_unique_symtree (ns);
16960 st->n.sym = s;
16961 s->refs++;
16962 }
16963 /* ... which is use associated and called. */
16964 else if (s->attr.use_assoc || s->attr.used_in_submodule
16965 ||
16966 /* External function matched with an interface. */
16967 (s->ns->proc_name
16968 && ((s->ns == ns
16969 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16970 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16971 && s->ns->proc_name->attr.function))
16972 s->fn_result_spec = 1;
16973 }
16974 }
16975 return false;
16976 }
16977
16978
16979 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16980
16981 static void
16982 resolve_fntype (gfc_namespace *ns)
16983 {
16984 gfc_entry_list *el;
16985 gfc_symbol *sym;
16986
16987 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16988 return;
16989
16990 /* If there are any entries, ns->proc_name is the entry master
16991 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16992 if (ns->entries)
16993 sym = ns->entries->sym;
16994 else
16995 sym = ns->proc_name;
16996 if (sym->result == sym
16997 && sym->ts.type == BT_UNKNOWN
16998 && !gfc_set_default_type (sym, 0, NULL)
16999 && !sym->attr.untyped)
17000 {
17001 gfc_error ("Function %qs at %L has no IMPLICIT type",
17002 sym->name, &sym->declared_at);
17003 sym->attr.untyped = 1;
17004 }
17005
17006 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
17007 && !sym->attr.contained
17008 && !gfc_check_symbol_access (sym->ts.u.derived)
17009 && gfc_check_symbol_access (sym))
17010 {
17011 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
17012 "%L of PRIVATE type %qs", sym->name,
17013 &sym->declared_at, sym->ts.u.derived->name);
17014 }
17015
17016 if (ns->entries)
17017 for (el = ns->entries->next; el; el = el->next)
17018 {
17019 if (el->sym->result == el->sym
17020 && el->sym->ts.type == BT_UNKNOWN
17021 && !gfc_set_default_type (el->sym, 0, NULL)
17022 && !el->sym->attr.untyped)
17023 {
17024 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
17025 el->sym->name, &el->sym->declared_at);
17026 el->sym->attr.untyped = 1;
17027 }
17028 }
17029
17030 if (sym->ts.type == BT_CHARACTER)
17031 gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
17032 }
17033
17034
17035 /* 12.3.2.1.1 Defined operators. */
17036
17037 static bool
17038 check_uop_procedure (gfc_symbol *sym, locus where)
17039 {
17040 gfc_formal_arglist *formal;
17041
17042 if (!sym->attr.function)
17043 {
17044 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
17045 sym->name, &where);
17046 return false;
17047 }
17048
17049 if (sym->ts.type == BT_CHARACTER
17050 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
17051 && !(sym->result && ((sym->result->ts.u.cl
17052 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
17053 {
17054 gfc_error ("User operator procedure %qs at %L cannot be assumed "
17055 "character length", sym->name, &where);
17056 return false;
17057 }
17058
17059 formal = gfc_sym_get_dummy_args (sym);
17060 if (!formal || !formal->sym)
17061 {
17062 gfc_error ("User operator procedure %qs at %L must have at least "
17063 "one argument", sym->name, &where);
17064 return false;
17065 }
17066
17067 if (formal->sym->attr.intent != INTENT_IN)
17068 {
17069 gfc_error ("First argument of operator interface at %L must be "
17070 "INTENT(IN)", &where);
17071 return false;
17072 }
17073
17074 if (formal->sym->attr.optional)
17075 {
17076 gfc_error ("First argument of operator interface at %L cannot be "
17077 "optional", &where);
17078 return false;
17079 }
17080
17081 formal = formal->next;
17082 if (!formal || !formal->sym)
17083 return true;
17084
17085 if (formal->sym->attr.intent != INTENT_IN)
17086 {
17087 gfc_error ("Second argument of operator interface at %L must be "
17088 "INTENT(IN)", &where);
17089 return false;
17090 }
17091
17092 if (formal->sym->attr.optional)
17093 {
17094 gfc_error ("Second argument of operator interface at %L cannot be "
17095 "optional", &where);
17096 return false;
17097 }
17098
17099 if (formal->next)
17100 {
17101 gfc_error ("Operator interface at %L must have, at most, two "
17102 "arguments", &where);
17103 return false;
17104 }
17105
17106 return true;
17107 }
17108
17109 static void
17110 gfc_resolve_uops (gfc_symtree *symtree)
17111 {
17112 gfc_interface *itr;
17113
17114 if (symtree == NULL)
17115 return;
17116
17117 gfc_resolve_uops (symtree->left);
17118 gfc_resolve_uops (symtree->right);
17119
17120 for (itr = symtree->n.uop->op; itr; itr = itr->next)
17121 check_uop_procedure (itr->sym, itr->sym->declared_at);
17122 }
17123
17124
17125 /* Examine all of the expressions associated with a program unit,
17126 assign types to all intermediate expressions, make sure that all
17127 assignments are to compatible types and figure out which names
17128 refer to which functions or subroutines. It doesn't check code
17129 block, which is handled by gfc_resolve_code. */
17130
17131 static void
17132 resolve_types (gfc_namespace *ns)
17133 {
17134 gfc_namespace *n;
17135 gfc_charlen *cl;
17136 gfc_data *d;
17137 gfc_equiv *eq;
17138 gfc_namespace* old_ns = gfc_current_ns;
17139 bool recursive = ns->proc_name && ns->proc_name->attr.recursive;
17140
17141 if (ns->types_resolved)
17142 return;
17143
17144 /* Check that all IMPLICIT types are ok. */
17145 if (!ns->seen_implicit_none)
17146 {
17147 unsigned letter;
17148 for (letter = 0; letter != GFC_LETTERS; ++letter)
17149 if (ns->set_flag[letter]
17150 && !resolve_typespec_used (&ns->default_type[letter],
17151 &ns->implicit_loc[letter], NULL))
17152 return;
17153 }
17154
17155 gfc_current_ns = ns;
17156
17157 resolve_entries (ns);
17158
17159 resolve_common_vars (&ns->blank_common, false);
17160 resolve_common_blocks (ns->common_root);
17161
17162 resolve_contained_functions (ns);
17163
17164 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
17165 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
17166 gfc_resolve_formal_arglist (ns->proc_name);
17167
17168 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
17169
17170 for (cl = ns->cl_list; cl; cl = cl->next)
17171 resolve_charlen (cl);
17172
17173 gfc_traverse_ns (ns, resolve_symbol);
17174
17175 resolve_fntype (ns);
17176
17177 for (n = ns->contained; n; n = n->sibling)
17178 {
17179 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
17180 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
17181 "also be PURE", n->proc_name->name,
17182 &n->proc_name->declared_at);
17183
17184 resolve_types (n);
17185 }
17186
17187 forall_flag = 0;
17188 gfc_do_concurrent_flag = 0;
17189 gfc_check_interfaces (ns);
17190
17191 gfc_traverse_ns (ns, resolve_values);
17192
17193 if (ns->save_all || (!flag_automatic && !recursive))
17194 gfc_save_all (ns);
17195
17196 iter_stack = NULL;
17197 for (d = ns->data; d; d = d->next)
17198 resolve_data (d);
17199
17200 iter_stack = NULL;
17201 gfc_traverse_ns (ns, gfc_formalize_init_value);
17202
17203 gfc_traverse_ns (ns, gfc_verify_binding_labels);
17204
17205 for (eq = ns->equiv; eq; eq = eq->next)
17206 resolve_equivalence (eq);
17207
17208 /* Warn about unused labels. */
17209 if (warn_unused_label)
17210 warn_unused_fortran_label (ns->st_labels);
17211
17212 gfc_resolve_uops (ns->uop_root);
17213
17214 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
17215
17216 gfc_resolve_omp_declare_simd (ns);
17217
17218 gfc_resolve_omp_udrs (ns->omp_udr_root);
17219
17220 ns->types_resolved = 1;
17221
17222 gfc_current_ns = old_ns;
17223 }
17224
17225
17226 /* Call gfc_resolve_code recursively. */
17227
17228 static void
17229 resolve_codes (gfc_namespace *ns)
17230 {
17231 gfc_namespace *n;
17232 bitmap_obstack old_obstack;
17233
17234 if (ns->resolved == 1)
17235 return;
17236
17237 for (n = ns->contained; n; n = n->sibling)
17238 resolve_codes (n);
17239
17240 gfc_current_ns = ns;
17241
17242 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
17243 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
17244 cs_base = NULL;
17245
17246 /* Set to an out of range value. */
17247 current_entry_id = -1;
17248
17249 old_obstack = labels_obstack;
17250 bitmap_obstack_initialize (&labels_obstack);
17251
17252 gfc_resolve_oacc_declare (ns);
17253 gfc_resolve_oacc_routines (ns);
17254 gfc_resolve_omp_local_vars (ns);
17255 gfc_resolve_code (ns->code, ns);
17256
17257 bitmap_obstack_release (&labels_obstack);
17258 labels_obstack = old_obstack;
17259 }
17260
17261
17262 /* This function is called after a complete program unit has been compiled.
17263 Its purpose is to examine all of the expressions associated with a program
17264 unit, assign types to all intermediate expressions, make sure that all
17265 assignments are to compatible types and figure out which names refer to
17266 which functions or subroutines. */
17267
17268 void
17269 gfc_resolve (gfc_namespace *ns)
17270 {
17271 gfc_namespace *old_ns;
17272 code_stack *old_cs_base;
17273 struct gfc_omp_saved_state old_omp_state;
17274
17275 if (ns->resolved)
17276 return;
17277
17278 ns->resolved = -1;
17279 old_ns = gfc_current_ns;
17280 old_cs_base = cs_base;
17281
17282 /* As gfc_resolve can be called during resolution of an OpenMP construct
17283 body, we should clear any state associated to it, so that say NS's
17284 DO loops are not interpreted as OpenMP loops. */
17285 if (!ns->construct_entities)
17286 gfc_omp_save_and_clear_state (&old_omp_state);
17287
17288 resolve_types (ns);
17289 component_assignment_level = 0;
17290 resolve_codes (ns);
17291
17292 gfc_current_ns = old_ns;
17293 cs_base = old_cs_base;
17294 ns->resolved = 1;
17295
17296 gfc_run_passes (ns);
17297
17298 if (!ns->construct_entities)
17299 gfc_omp_restore_state (&old_omp_state);
17300 }