Check for illegal reference in function.
[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 static void
268 resolve_formal_arglist (gfc_symbol *proc)
269 {
270 gfc_formal_arglist *f;
271 gfc_symbol *sym;
272 bool saved_specification_expr;
273 int i;
274
275 if (proc->result != NULL)
276 sym = proc->result;
277 else
278 sym = proc;
279
280 if (gfc_elemental (proc)
281 || sym->attr.pointer || sym->attr.allocatable
282 || (sym->as && sym->as->rank != 0))
283 {
284 proc->attr.always_explicit = 1;
285 sym->attr.always_explicit = 1;
286 }
287
288 formal_arg_flag = true;
289
290 for (f = proc->formal; f; f = f->next)
291 {
292 gfc_array_spec *as;
293
294 sym = f->sym;
295
296 if (sym == NULL)
297 {
298 /* Alternate return placeholder. */
299 if (gfc_elemental (proc))
300 gfc_error ("Alternate return specifier in elemental subroutine "
301 "%qs at %L is not allowed", proc->name,
302 &proc->declared_at);
303 if (proc->attr.function)
304 gfc_error ("Alternate return specifier in function "
305 "%qs at %L is not allowed", proc->name,
306 &proc->declared_at);
307 continue;
308 }
309 else if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
310 && !resolve_procedure_interface (sym))
311 return;
312
313 if (strcmp (proc->name, sym->name) == 0)
314 {
315 gfc_error ("Self-referential argument "
316 "%qs at %L is not allowed", sym->name,
317 &proc->declared_at);
318 return;
319 }
320
321 if (sym->attr.if_source != IFSRC_UNKNOWN)
322 resolve_formal_arglist (sym);
323
324 if (sym->attr.subroutine || sym->attr.external)
325 {
326 if (sym->attr.flavor == FL_UNKNOWN)
327 gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, &sym->declared_at);
328 }
329 else
330 {
331 if (sym->ts.type == BT_UNKNOWN && !proc->attr.intrinsic
332 && (!sym->attr.function || sym->result == sym))
333 gfc_set_default_type (sym, 1, sym->ns);
334 }
335
336 as = sym->ts.type == BT_CLASS && sym->attr.class_ok
337 ? CLASS_DATA (sym)->as : sym->as;
338
339 saved_specification_expr = specification_expr;
340 specification_expr = true;
341 gfc_resolve_array_spec (as, 0);
342 specification_expr = saved_specification_expr;
343
344 /* We can't tell if an array with dimension (:) is assumed or deferred
345 shape until we know if it has the pointer or allocatable attributes.
346 */
347 if (as && as->rank > 0 && as->type == AS_DEFERRED
348 && ((sym->ts.type != BT_CLASS
349 && !(sym->attr.pointer || sym->attr.allocatable))
350 || (sym->ts.type == BT_CLASS
351 && !(CLASS_DATA (sym)->attr.class_pointer
352 || CLASS_DATA (sym)->attr.allocatable)))
353 && sym->attr.flavor != FL_PROCEDURE)
354 {
355 as->type = AS_ASSUMED_SHAPE;
356 for (i = 0; i < as->rank; i++)
357 as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
358 }
359
360 if ((as && as->rank > 0 && as->type == AS_ASSUMED_SHAPE)
361 || (as && as->type == AS_ASSUMED_RANK)
362 || sym->attr.pointer || sym->attr.allocatable || sym->attr.target
363 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
364 && (CLASS_DATA (sym)->attr.class_pointer
365 || CLASS_DATA (sym)->attr.allocatable
366 || CLASS_DATA (sym)->attr.target))
367 || sym->attr.optional)
368 {
369 proc->attr.always_explicit = 1;
370 if (proc->result)
371 proc->result->attr.always_explicit = 1;
372 }
373
374 /* If the flavor is unknown at this point, it has to be a variable.
375 A procedure specification would have already set the type. */
376
377 if (sym->attr.flavor == FL_UNKNOWN)
378 gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, &sym->declared_at);
379
380 if (gfc_pure (proc))
381 {
382 if (sym->attr.flavor == FL_PROCEDURE)
383 {
384 /* F08:C1279. */
385 if (!gfc_pure (sym))
386 {
387 gfc_error ("Dummy procedure %qs of PURE procedure at %L must "
388 "also be PURE", sym->name, &sym->declared_at);
389 continue;
390 }
391 }
392 else if (!sym->attr.pointer)
393 {
394 if (proc->attr.function && sym->attr.intent != INTENT_IN)
395 {
396 if (sym->attr.value)
397 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
398 " of pure function %qs at %L with VALUE "
399 "attribute but without INTENT(IN)",
400 sym->name, proc->name, &sym->declared_at);
401 else
402 gfc_error ("Argument %qs of pure function %qs at %L must "
403 "be INTENT(IN) or VALUE", sym->name, proc->name,
404 &sym->declared_at);
405 }
406
407 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN)
408 {
409 if (sym->attr.value)
410 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
411 " of pure subroutine %qs at %L with VALUE "
412 "attribute but without INTENT", sym->name,
413 proc->name, &sym->declared_at);
414 else
415 gfc_error ("Argument %qs of pure subroutine %qs at %L "
416 "must have its INTENT specified or have the "
417 "VALUE attribute", sym->name, proc->name,
418 &sym->declared_at);
419 }
420 }
421
422 /* F08:C1278a. */
423 if (sym->ts.type == BT_CLASS && sym->attr.intent == INTENT_OUT)
424 {
425 gfc_error ("INTENT(OUT) argument %qs of pure procedure %qs at %L"
426 " may not be polymorphic", sym->name, proc->name,
427 &sym->declared_at);
428 continue;
429 }
430 }
431
432 if (proc->attr.implicit_pure)
433 {
434 if (sym->attr.flavor == FL_PROCEDURE)
435 {
436 if (!gfc_pure (sym))
437 proc->attr.implicit_pure = 0;
438 }
439 else if (!sym->attr.pointer)
440 {
441 if (proc->attr.function && sym->attr.intent != INTENT_IN
442 && !sym->value)
443 proc->attr.implicit_pure = 0;
444
445 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN
446 && !sym->value)
447 proc->attr.implicit_pure = 0;
448 }
449 }
450
451 if (gfc_elemental (proc))
452 {
453 /* F08:C1289. */
454 if (sym->attr.codimension
455 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
456 && CLASS_DATA (sym)->attr.codimension))
457 {
458 gfc_error ("Coarray dummy argument %qs at %L to elemental "
459 "procedure", sym->name, &sym->declared_at);
460 continue;
461 }
462
463 if (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
464 && CLASS_DATA (sym)->as))
465 {
466 gfc_error ("Argument %qs of elemental procedure at %L must "
467 "be scalar", sym->name, &sym->declared_at);
468 continue;
469 }
470
471 if (sym->attr.allocatable
472 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
473 && CLASS_DATA (sym)->attr.allocatable))
474 {
475 gfc_error ("Argument %qs of elemental procedure at %L cannot "
476 "have the ALLOCATABLE attribute", sym->name,
477 &sym->declared_at);
478 continue;
479 }
480
481 if (sym->attr.pointer
482 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
483 && CLASS_DATA (sym)->attr.class_pointer))
484 {
485 gfc_error ("Argument %qs of elemental procedure at %L cannot "
486 "have the POINTER attribute", sym->name,
487 &sym->declared_at);
488 continue;
489 }
490
491 if (sym->attr.flavor == FL_PROCEDURE)
492 {
493 gfc_error ("Dummy procedure %qs not allowed in elemental "
494 "procedure %qs at %L", sym->name, proc->name,
495 &sym->declared_at);
496 continue;
497 }
498
499 /* Fortran 2008 Corrigendum 1, C1290a. */
500 if (sym->attr.intent == INTENT_UNKNOWN && !sym->attr.value)
501 {
502 gfc_error ("Argument %qs of elemental procedure %qs at %L must "
503 "have its INTENT specified or have the VALUE "
504 "attribute", sym->name, proc->name,
505 &sym->declared_at);
506 continue;
507 }
508 }
509
510 /* Each dummy shall be specified to be scalar. */
511 if (proc->attr.proc == PROC_ST_FUNCTION)
512 {
513 if (sym->as != NULL)
514 {
515 /* F03:C1263 (R1238) The function-name and each dummy-arg-name
516 shall be specified, explicitly or implicitly, to be scalar. */
517 gfc_error ("Argument '%s' of statement function '%s' at %L "
518 "must be scalar", sym->name, proc->name,
519 &proc->declared_at);
520 continue;
521 }
522
523 if (sym->ts.type == BT_CHARACTER)
524 {
525 gfc_charlen *cl = sym->ts.u.cl;
526 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
527 {
528 gfc_error ("Character-valued argument %qs of statement "
529 "function at %L must have constant length",
530 sym->name, &sym->declared_at);
531 continue;
532 }
533 }
534 }
535 }
536 formal_arg_flag = false;
537 }
538
539
540 /* Work function called when searching for symbols that have argument lists
541 associated with them. */
542
543 static void
544 find_arglists (gfc_symbol *sym)
545 {
546 if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns
547 || gfc_fl_struct (sym->attr.flavor) || sym->attr.intrinsic)
548 return;
549
550 resolve_formal_arglist (sym);
551 }
552
553
554 /* Given a namespace, resolve all formal argument lists within the namespace.
555 */
556
557 static void
558 resolve_formal_arglists (gfc_namespace *ns)
559 {
560 if (ns == NULL)
561 return;
562
563 gfc_traverse_ns (ns, find_arglists);
564 }
565
566
567 static void
568 resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
569 {
570 bool t;
571
572 if (sym && sym->attr.flavor == FL_PROCEDURE
573 && sym->ns->parent
574 && sym->ns->parent->proc_name
575 && sym->ns->parent->proc_name->attr.flavor == FL_PROCEDURE
576 && !strcmp (sym->name, sym->ns->parent->proc_name->name))
577 gfc_error ("Contained procedure %qs at %L has the same name as its "
578 "encompassing procedure", sym->name, &sym->declared_at);
579
580 /* If this namespace is not a function or an entry master function,
581 ignore it. */
582 if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
583 || sym->attr.entry_master)
584 return;
585
586 if (!sym->result)
587 return;
588
589 /* Try to find out of what the return type is. */
590 if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
591 {
592 t = gfc_set_default_type (sym->result, 0, ns);
593
594 if (!t && !sym->result->attr.untyped)
595 {
596 if (sym->result == sym)
597 gfc_error ("Contained function %qs at %L has no IMPLICIT type",
598 sym->name, &sym->declared_at);
599 else if (!sym->result->attr.proc_pointer)
600 gfc_error ("Result %qs of contained function %qs at %L has "
601 "no IMPLICIT type", sym->result->name, sym->name,
602 &sym->result->declared_at);
603 sym->result->attr.untyped = 1;
604 }
605 }
606
607 /* Fortran 2008 Draft Standard, page 535, C418, on type-param-value
608 type, lists the only ways a character length value of * can be used:
609 dummy arguments of procedures, named constants, function results and
610 in allocate statements if the allocate_object is an assumed length dummy
611 in external functions. Internal function results and results of module
612 procedures are not on this list, ergo, not permitted. */
613
614 if (sym->result->ts.type == BT_CHARACTER)
615 {
616 gfc_charlen *cl = sym->result->ts.u.cl;
617 if ((!cl || !cl->length) && !sym->result->ts.deferred)
618 {
619 /* See if this is a module-procedure and adapt error message
620 accordingly. */
621 bool module_proc;
622 gcc_assert (ns->parent && ns->parent->proc_name);
623 module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
624
625 gfc_error (module_proc
626 ? G_("Character-valued module procedure %qs at %L"
627 " must not be assumed length")
628 : G_("Character-valued internal function %qs at %L"
629 " must not be assumed length"),
630 sym->name, &sym->declared_at);
631 }
632 }
633 }
634
635
636 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
637 introduce duplicates. */
638
639 static void
640 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
641 {
642 gfc_formal_arglist *f, *new_arglist;
643 gfc_symbol *new_sym;
644
645 for (; new_args != NULL; new_args = new_args->next)
646 {
647 new_sym = new_args->sym;
648 /* See if this arg is already in the formal argument list. */
649 for (f = proc->formal; f; f = f->next)
650 {
651 if (new_sym == f->sym)
652 break;
653 }
654
655 if (f)
656 continue;
657
658 /* Add a new argument. Argument order is not important. */
659 new_arglist = gfc_get_formal_arglist ();
660 new_arglist->sym = new_sym;
661 new_arglist->next = proc->formal;
662 proc->formal = new_arglist;
663 }
664 }
665
666
667 /* Flag the arguments that are not present in all entries. */
668
669 static void
670 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
671 {
672 gfc_formal_arglist *f, *head;
673 head = new_args;
674
675 for (f = proc->formal; f; f = f->next)
676 {
677 if (f->sym == NULL)
678 continue;
679
680 for (new_args = head; new_args; new_args = new_args->next)
681 {
682 if (new_args->sym == f->sym)
683 break;
684 }
685
686 if (new_args)
687 continue;
688
689 f->sym->attr.not_always_present = 1;
690 }
691 }
692
693
694 /* Resolve alternate entry points. If a symbol has multiple entry points we
695 create a new master symbol for the main routine, and turn the existing
696 symbol into an entry point. */
697
698 static void
699 resolve_entries (gfc_namespace *ns)
700 {
701 gfc_namespace *old_ns;
702 gfc_code *c;
703 gfc_symbol *proc;
704 gfc_entry_list *el;
705 char name[GFC_MAX_SYMBOL_LEN + 1];
706 static int master_count = 0;
707
708 if (ns->proc_name == NULL)
709 return;
710
711 /* No need to do anything if this procedure doesn't have alternate entry
712 points. */
713 if (!ns->entries)
714 return;
715
716 /* We may already have resolved alternate entry points. */
717 if (ns->proc_name->attr.entry_master)
718 return;
719
720 /* If this isn't a procedure something has gone horribly wrong. */
721 gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
722
723 /* Remember the current namespace. */
724 old_ns = gfc_current_ns;
725
726 gfc_current_ns = ns;
727
728 /* Add the main entry point to the list of entry points. */
729 el = gfc_get_entry_list ();
730 el->sym = ns->proc_name;
731 el->id = 0;
732 el->next = ns->entries;
733 ns->entries = el;
734 ns->proc_name->attr.entry = 1;
735
736 /* If it is a module function, it needs to be in the right namespace
737 so that gfc_get_fake_result_decl can gather up the results. The
738 need for this arose in get_proc_name, where these beasts were
739 left in their own namespace, to keep prior references linked to
740 the entry declaration.*/
741 if (ns->proc_name->attr.function
742 && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
743 el->sym->ns = ns;
744
745 /* Do the same for entries where the master is not a module
746 procedure. These are retained in the module namespace because
747 of the module procedure declaration. */
748 for (el = el->next; el; el = el->next)
749 if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
750 && el->sym->attr.mod_proc)
751 el->sym->ns = ns;
752 el = ns->entries;
753
754 /* Add an entry statement for it. */
755 c = gfc_get_code (EXEC_ENTRY);
756 c->ext.entry = el;
757 c->next = ns->code;
758 ns->code = c;
759
760 /* Create a new symbol for the master function. */
761 /* Give the internal function a unique name (within this file).
762 Also include the function name so the user has some hope of figuring
763 out what is going on. */
764 snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
765 master_count++, ns->proc_name->name);
766 gfc_get_ha_symbol (name, &proc);
767 gcc_assert (proc != NULL);
768
769 gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
770 if (ns->proc_name->attr.subroutine)
771 gfc_add_subroutine (&proc->attr, proc->name, NULL);
772 else
773 {
774 gfc_symbol *sym;
775 gfc_typespec *ts, *fts;
776 gfc_array_spec *as, *fas;
777 gfc_add_function (&proc->attr, proc->name, NULL);
778 proc->result = proc;
779 fas = ns->entries->sym->as;
780 fas = fas ? fas : ns->entries->sym->result->as;
781 fts = &ns->entries->sym->result->ts;
782 if (fts->type == BT_UNKNOWN)
783 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
784 for (el = ns->entries->next; el; el = el->next)
785 {
786 ts = &el->sym->result->ts;
787 as = el->sym->as;
788 as = as ? as : el->sym->result->as;
789 if (ts->type == BT_UNKNOWN)
790 ts = gfc_get_default_type (el->sym->result->name, NULL);
791
792 if (! gfc_compare_types (ts, fts)
793 || (el->sym->result->attr.dimension
794 != ns->entries->sym->result->attr.dimension)
795 || (el->sym->result->attr.pointer
796 != ns->entries->sym->result->attr.pointer))
797 break;
798 else if (as && fas && ns->entries->sym->result != el->sym->result
799 && gfc_compare_array_spec (as, fas) == 0)
800 gfc_error ("Function %s at %L has entries with mismatched "
801 "array specifications", ns->entries->sym->name,
802 &ns->entries->sym->declared_at);
803 /* The characteristics need to match and thus both need to have
804 the same string length, i.e. both len=*, or both len=4.
805 Having both len=<variable> is also possible, but difficult to
806 check at compile time. */
807 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
808 && (((ts->u.cl->length && !fts->u.cl->length)
809 ||(!ts->u.cl->length && fts->u.cl->length))
810 || (ts->u.cl->length
811 && ts->u.cl->length->expr_type
812 != fts->u.cl->length->expr_type)
813 || (ts->u.cl->length
814 && ts->u.cl->length->expr_type == EXPR_CONSTANT
815 && mpz_cmp (ts->u.cl->length->value.integer,
816 fts->u.cl->length->value.integer) != 0)))
817 gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
818 "entries returning variables of different "
819 "string lengths", ns->entries->sym->name,
820 &ns->entries->sym->declared_at);
821 }
822
823 if (el == NULL)
824 {
825 sym = ns->entries->sym->result;
826 /* All result types the same. */
827 proc->ts = *fts;
828 if (sym->attr.dimension)
829 gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
830 if (sym->attr.pointer)
831 gfc_add_pointer (&proc->attr, NULL);
832 }
833 else
834 {
835 /* Otherwise the result will be passed through a union by
836 reference. */
837 proc->attr.mixed_entry_master = 1;
838 for (el = ns->entries; el; el = el->next)
839 {
840 sym = el->sym->result;
841 if (sym->attr.dimension)
842 {
843 if (el == ns->entries)
844 gfc_error ("FUNCTION result %s cannot be an array in "
845 "FUNCTION %s at %L", sym->name,
846 ns->entries->sym->name, &sym->declared_at);
847 else
848 gfc_error ("ENTRY result %s cannot be an array in "
849 "FUNCTION %s at %L", sym->name,
850 ns->entries->sym->name, &sym->declared_at);
851 }
852 else if (sym->attr.pointer)
853 {
854 if (el == ns->entries)
855 gfc_error ("FUNCTION result %s cannot be a POINTER in "
856 "FUNCTION %s at %L", sym->name,
857 ns->entries->sym->name, &sym->declared_at);
858 else
859 gfc_error ("ENTRY result %s cannot be a POINTER in "
860 "FUNCTION %s at %L", sym->name,
861 ns->entries->sym->name, &sym->declared_at);
862 }
863 else
864 {
865 ts = &sym->ts;
866 if (ts->type == BT_UNKNOWN)
867 ts = gfc_get_default_type (sym->name, NULL);
868 switch (ts->type)
869 {
870 case BT_INTEGER:
871 if (ts->kind == gfc_default_integer_kind)
872 sym = NULL;
873 break;
874 case BT_REAL:
875 if (ts->kind == gfc_default_real_kind
876 || ts->kind == gfc_default_double_kind)
877 sym = NULL;
878 break;
879 case BT_COMPLEX:
880 if (ts->kind == gfc_default_complex_kind)
881 sym = NULL;
882 break;
883 case BT_LOGICAL:
884 if (ts->kind == gfc_default_logical_kind)
885 sym = NULL;
886 break;
887 case BT_UNKNOWN:
888 /* We will issue error elsewhere. */
889 sym = NULL;
890 break;
891 default:
892 break;
893 }
894 if (sym)
895 {
896 if (el == ns->entries)
897 gfc_error ("FUNCTION result %s cannot be of type %s "
898 "in FUNCTION %s at %L", sym->name,
899 gfc_typename (ts), ns->entries->sym->name,
900 &sym->declared_at);
901 else
902 gfc_error ("ENTRY result %s cannot be of type %s "
903 "in FUNCTION %s at %L", sym->name,
904 gfc_typename (ts), ns->entries->sym->name,
905 &sym->declared_at);
906 }
907 }
908 }
909 }
910 }
911 proc->attr.access = ACCESS_PRIVATE;
912 proc->attr.entry_master = 1;
913
914 /* Merge all the entry point arguments. */
915 for (el = ns->entries; el; el = el->next)
916 merge_argument_lists (proc, el->sym->formal);
917
918 /* Check the master formal arguments for any that are not
919 present in all entry points. */
920 for (el = ns->entries; el; el = el->next)
921 check_argument_lists (proc, el->sym->formal);
922
923 /* Use the master function for the function body. */
924 ns->proc_name = proc;
925
926 /* Finalize the new symbols. */
927 gfc_commit_symbols ();
928
929 /* Restore the original namespace. */
930 gfc_current_ns = old_ns;
931 }
932
933
934 /* Resolve common variables. */
935 static void
936 resolve_common_vars (gfc_common_head *common_block, bool named_common)
937 {
938 gfc_symbol *csym = common_block->head;
939
940 for (; csym; csym = csym->common_next)
941 {
942 /* gfc_add_in_common may have been called before, but the reported errors
943 have been ignored to continue parsing.
944 We do the checks again here. */
945 if (!csym->attr.use_assoc)
946 {
947 gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
948 gfc_notify_std (GFC_STD_F2018_OBS, "COMMON block at %L",
949 &common_block->where);
950 }
951
952 if (csym->value || csym->attr.data)
953 {
954 if (!csym->ns->is_block_data)
955 gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
956 "but only in BLOCK DATA initialization is "
957 "allowed", csym->name, &csym->declared_at);
958 else if (!named_common)
959 gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
960 "in a blank COMMON but initialization is only "
961 "allowed in named common blocks", csym->name,
962 &csym->declared_at);
963 }
964
965 if (UNLIMITED_POLY (csym))
966 gfc_error_now ("%qs in cannot appear in COMMON at %L "
967 "[F2008:C5100]", csym->name, &csym->declared_at);
968
969 if (csym->ts.type != BT_DERIVED)
970 continue;
971
972 if (!(csym->ts.u.derived->attr.sequence
973 || csym->ts.u.derived->attr.is_bind_c))
974 gfc_error_now ("Derived type variable %qs in COMMON at %L "
975 "has neither the SEQUENCE nor the BIND(C) "
976 "attribute", csym->name, &csym->declared_at);
977 if (csym->ts.u.derived->attr.alloc_comp)
978 gfc_error_now ("Derived type variable %qs in COMMON at %L "
979 "has an ultimate component that is "
980 "allocatable", csym->name, &csym->declared_at);
981 if (gfc_has_default_initializer (csym->ts.u.derived))
982 gfc_error_now ("Derived type variable %qs in COMMON at %L "
983 "may not have default initializer", csym->name,
984 &csym->declared_at);
985
986 if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
987 gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
988 }
989 }
990
991 /* Resolve common blocks. */
992 static void
993 resolve_common_blocks (gfc_symtree *common_root)
994 {
995 gfc_symbol *sym;
996 gfc_gsymbol * gsym;
997
998 if (common_root == NULL)
999 return;
1000
1001 if (common_root->left)
1002 resolve_common_blocks (common_root->left);
1003 if (common_root->right)
1004 resolve_common_blocks (common_root->right);
1005
1006 resolve_common_vars (common_root->n.common, true);
1007
1008 /* The common name is a global name - in Fortran 2003 also if it has a
1009 C binding name, since Fortran 2008 only the C binding name is a global
1010 identifier. */
1011 if (!common_root->n.common->binding_label
1012 || gfc_notification_std (GFC_STD_F2008))
1013 {
1014 gsym = gfc_find_gsymbol (gfc_gsym_root,
1015 common_root->n.common->name);
1016
1017 if (gsym && gfc_notification_std (GFC_STD_F2008)
1018 && gsym->type == GSYM_COMMON
1019 && ((common_root->n.common->binding_label
1020 && (!gsym->binding_label
1021 || strcmp (common_root->n.common->binding_label,
1022 gsym->binding_label) != 0))
1023 || (!common_root->n.common->binding_label
1024 && gsym->binding_label)))
1025 {
1026 gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
1027 "identifier and must thus have the same binding name "
1028 "as the same-named COMMON block at %L: %s vs %s",
1029 common_root->n.common->name, &common_root->n.common->where,
1030 &gsym->where,
1031 common_root->n.common->binding_label
1032 ? common_root->n.common->binding_label : "(blank)",
1033 gsym->binding_label ? gsym->binding_label : "(blank)");
1034 return;
1035 }
1036
1037 if (gsym && gsym->type != GSYM_COMMON
1038 && !common_root->n.common->binding_label)
1039 {
1040 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1041 "as entity at %L",
1042 common_root->n.common->name, &common_root->n.common->where,
1043 &gsym->where);
1044 return;
1045 }
1046 if (gsym && gsym->type != GSYM_COMMON)
1047 {
1048 gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
1049 "%L sharing the identifier with global non-COMMON-block "
1050 "entity at %L", common_root->n.common->name,
1051 &common_root->n.common->where, &gsym->where);
1052 return;
1053 }
1054 if (!gsym)
1055 {
1056 gsym = gfc_get_gsymbol (common_root->n.common->name, false);
1057 gsym->type = GSYM_COMMON;
1058 gsym->where = common_root->n.common->where;
1059 gsym->defined = 1;
1060 }
1061 gsym->used = 1;
1062 }
1063
1064 if (common_root->n.common->binding_label)
1065 {
1066 gsym = gfc_find_gsymbol (gfc_gsym_root,
1067 common_root->n.common->binding_label);
1068 if (gsym && gsym->type != GSYM_COMMON)
1069 {
1070 gfc_error ("COMMON block at %L with binding label %qs uses the same "
1071 "global identifier as entity at %L",
1072 &common_root->n.common->where,
1073 common_root->n.common->binding_label, &gsym->where);
1074 return;
1075 }
1076 if (!gsym)
1077 {
1078 gsym = gfc_get_gsymbol (common_root->n.common->binding_label, true);
1079 gsym->type = GSYM_COMMON;
1080 gsym->where = common_root->n.common->where;
1081 gsym->defined = 1;
1082 }
1083 gsym->used = 1;
1084 }
1085
1086 gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
1087 if (sym == NULL)
1088 return;
1089
1090 if (sym->attr.flavor == FL_PARAMETER)
1091 gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
1092 sym->name, &common_root->n.common->where, &sym->declared_at);
1093
1094 if (sym->attr.external)
1095 gfc_error ("COMMON block %qs at %L cannot have the EXTERNAL attribute",
1096 sym->name, &common_root->n.common->where);
1097
1098 if (sym->attr.intrinsic)
1099 gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
1100 sym->name, &common_root->n.common->where);
1101 else if (sym->attr.result
1102 || gfc_is_function_return_value (sym, gfc_current_ns))
1103 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1104 "that is also a function result", sym->name,
1105 &common_root->n.common->where);
1106 else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
1107 && sym->attr.proc != PROC_ST_FUNCTION)
1108 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1109 "that is also a global procedure", sym->name,
1110 &common_root->n.common->where);
1111 }
1112
1113
1114 /* Resolve contained function types. Because contained functions can call one
1115 another, they have to be worked out before any of the contained procedures
1116 can be resolved.
1117
1118 The good news is that if a function doesn't already have a type, the only
1119 way it can get one is through an IMPLICIT type or a RESULT variable, because
1120 by definition contained functions are contained namespace they're contained
1121 in, not in a sibling or parent namespace. */
1122
1123 static void
1124 resolve_contained_functions (gfc_namespace *ns)
1125 {
1126 gfc_namespace *child;
1127 gfc_entry_list *el;
1128
1129 resolve_formal_arglists (ns);
1130
1131 for (child = ns->contained; child; child = child->sibling)
1132 {
1133 /* Resolve alternate entry points first. */
1134 resolve_entries (child);
1135
1136 /* Then check function return types. */
1137 resolve_contained_fntype (child->proc_name, child);
1138 for (el = child->entries; el; el = el->next)
1139 resolve_contained_fntype (el->sym, child);
1140 }
1141 }
1142
1143
1144
1145 /* A Parameterized Derived Type constructor must contain values for
1146 the PDT KIND parameters or they must have a default initializer.
1147 Go through the constructor picking out the KIND expressions,
1148 storing them in 'param_list' and then call gfc_get_pdt_instance
1149 to obtain the PDT instance. */
1150
1151 static gfc_actual_arglist *param_list, *param_tail, *param;
1152
1153 static bool
1154 get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
1155 {
1156 param = gfc_get_actual_arglist ();
1157 if (!param_list)
1158 param_list = param_tail = param;
1159 else
1160 {
1161 param_tail->next = param;
1162 param_tail = param_tail->next;
1163 }
1164
1165 param_tail->name = c->name;
1166 if (expr)
1167 param_tail->expr = gfc_copy_expr (expr);
1168 else if (c->initializer)
1169 param_tail->expr = gfc_copy_expr (c->initializer);
1170 else
1171 {
1172 param_tail->spec_type = SPEC_ASSUMED;
1173 if (c->attr.pdt_kind)
1174 {
1175 gfc_error ("The KIND parameter %qs in the PDT constructor "
1176 "at %C has no value", param->name);
1177 return false;
1178 }
1179 }
1180
1181 return true;
1182 }
1183
1184 static bool
1185 get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
1186 gfc_symbol *derived)
1187 {
1188 gfc_constructor *cons = NULL;
1189 gfc_component *comp;
1190 bool t = true;
1191
1192 if (expr && expr->expr_type == EXPR_STRUCTURE)
1193 cons = gfc_constructor_first (expr->value.constructor);
1194 else if (constr)
1195 cons = *constr;
1196 gcc_assert (cons);
1197
1198 comp = derived->components;
1199
1200 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1201 {
1202 if (cons->expr
1203 && cons->expr->expr_type == EXPR_STRUCTURE
1204 && comp->ts.type == BT_DERIVED)
1205 {
1206 t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
1207 if (!t)
1208 return t;
1209 }
1210 else if (comp->ts.type == BT_DERIVED)
1211 {
1212 t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
1213 if (!t)
1214 return t;
1215 }
1216 else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
1217 && derived->attr.pdt_template)
1218 {
1219 t = get_pdt_spec_expr (comp, cons->expr);
1220 if (!t)
1221 return t;
1222 }
1223 }
1224 return t;
1225 }
1226
1227
1228 static bool resolve_fl_derived0 (gfc_symbol *sym);
1229 static bool resolve_fl_struct (gfc_symbol *sym);
1230
1231
1232 /* Resolve all of the elements of a structure constructor and make sure that
1233 the types are correct. The 'init' flag indicates that the given
1234 constructor is an initializer. */
1235
1236 static bool
1237 resolve_structure_cons (gfc_expr *expr, int init)
1238 {
1239 gfc_constructor *cons;
1240 gfc_component *comp;
1241 bool t;
1242 symbol_attribute a;
1243
1244 t = true;
1245
1246 if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
1247 {
1248 if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
1249 resolve_fl_derived0 (expr->ts.u.derived);
1250 else
1251 resolve_fl_struct (expr->ts.u.derived);
1252
1253 /* If this is a Parameterized Derived Type template, find the
1254 instance corresponding to the PDT kind parameters. */
1255 if (expr->ts.u.derived->attr.pdt_template)
1256 {
1257 param_list = NULL;
1258 t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
1259 if (!t)
1260 return t;
1261 gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
1262
1263 expr->param_list = gfc_copy_actual_arglist (param_list);
1264
1265 if (param_list)
1266 gfc_free_actual_arglist (param_list);
1267
1268 if (!expr->ts.u.derived->attr.pdt_type)
1269 return false;
1270 }
1271 }
1272
1273 cons = gfc_constructor_first (expr->value.constructor);
1274
1275 /* A constructor may have references if it is the result of substituting a
1276 parameter variable. In this case we just pull out the component we
1277 want. */
1278 if (expr->ref)
1279 comp = expr->ref->u.c.sym->components;
1280 else
1281 comp = expr->ts.u.derived->components;
1282
1283 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1284 {
1285 int rank;
1286
1287 if (!cons->expr)
1288 continue;
1289
1290 /* Unions use an EXPR_NULL contrived expression to tell the translation
1291 phase to generate an initializer of the appropriate length.
1292 Ignore it here. */
1293 if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
1294 continue;
1295
1296 if (!gfc_resolve_expr (cons->expr))
1297 {
1298 t = false;
1299 continue;
1300 }
1301
1302 rank = comp->as ? comp->as->rank : 0;
1303 if (comp->ts.type == BT_CLASS
1304 && !comp->ts.u.derived->attr.unlimited_polymorphic
1305 && CLASS_DATA (comp)->as)
1306 rank = CLASS_DATA (comp)->as->rank;
1307
1308 if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
1309 && (comp->attr.allocatable || cons->expr->rank))
1310 {
1311 gfc_error ("The rank of the element in the structure "
1312 "constructor at %L does not match that of the "
1313 "component (%d/%d)", &cons->expr->where,
1314 cons->expr->rank, rank);
1315 t = false;
1316 }
1317
1318 /* If we don't have the right type, try to convert it. */
1319
1320 if (!comp->attr.proc_pointer &&
1321 !gfc_compare_types (&cons->expr->ts, &comp->ts))
1322 {
1323 if (strcmp (comp->name, "_extends") == 0)
1324 {
1325 /* Can afford to be brutal with the _extends initializer.
1326 The derived type can get lost because it is PRIVATE
1327 but it is not usage constrained by the standard. */
1328 cons->expr->ts = comp->ts;
1329 }
1330 else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
1331 {
1332 gfc_error ("The element in the structure constructor at %L, "
1333 "for pointer component %qs, is %s but should be %s",
1334 &cons->expr->where, comp->name,
1335 gfc_basic_typename (cons->expr->ts.type),
1336 gfc_basic_typename (comp->ts.type));
1337 t = false;
1338 }
1339 else
1340 {
1341 bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
1342 if (t)
1343 t = t2;
1344 }
1345 }
1346
1347 /* For strings, the length of the constructor should be the same as
1348 the one of the structure, ensure this if the lengths are known at
1349 compile time and when we are dealing with PARAMETER or structure
1350 constructors. */
1351 if (cons->expr->ts.type == BT_CHARACTER && comp->ts.u.cl
1352 && comp->ts.u.cl->length
1353 && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
1354 && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
1355 && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
1356 && cons->expr->rank != 0
1357 && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
1358 comp->ts.u.cl->length->value.integer) != 0)
1359 {
1360 if (cons->expr->expr_type == EXPR_VARIABLE
1361 && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
1362 {
1363 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1364 to make use of the gfc_resolve_character_array_constructor
1365 machinery. The expression is later simplified away to
1366 an array of string literals. */
1367 gfc_expr *para = cons->expr;
1368 cons->expr = gfc_get_expr ();
1369 cons->expr->ts = para->ts;
1370 cons->expr->where = para->where;
1371 cons->expr->expr_type = EXPR_ARRAY;
1372 cons->expr->rank = para->rank;
1373 cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
1374 gfc_constructor_append_expr (&cons->expr->value.constructor,
1375 para, &cons->expr->where);
1376 }
1377
1378 if (cons->expr->expr_type == EXPR_ARRAY)
1379 {
1380 /* Rely on the cleanup of the namespace to deal correctly with
1381 the old charlen. (There was a block here that attempted to
1382 remove the charlen but broke the chain in so doing.) */
1383 cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1384 cons->expr->ts.u.cl->length_from_typespec = true;
1385 cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
1386 gfc_resolve_character_array_constructor (cons->expr);
1387 }
1388 }
1389
1390 if (cons->expr->expr_type == EXPR_NULL
1391 && !(comp->attr.pointer || comp->attr.allocatable
1392 || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
1393 || (comp->ts.type == BT_CLASS
1394 && (CLASS_DATA (comp)->attr.class_pointer
1395 || CLASS_DATA (comp)->attr.allocatable))))
1396 {
1397 t = false;
1398 gfc_error ("The NULL in the structure constructor at %L is "
1399 "being applied to component %qs, which is neither "
1400 "a POINTER nor ALLOCATABLE", &cons->expr->where,
1401 comp->name);
1402 }
1403
1404 if (comp->attr.proc_pointer && comp->ts.interface)
1405 {
1406 /* Check procedure pointer interface. */
1407 gfc_symbol *s2 = NULL;
1408 gfc_component *c2;
1409 const char *name;
1410 char err[200];
1411
1412 c2 = gfc_get_proc_ptr_comp (cons->expr);
1413 if (c2)
1414 {
1415 s2 = c2->ts.interface;
1416 name = c2->name;
1417 }
1418 else if (cons->expr->expr_type == EXPR_FUNCTION)
1419 {
1420 s2 = cons->expr->symtree->n.sym->result;
1421 name = cons->expr->symtree->n.sym->result->name;
1422 }
1423 else if (cons->expr->expr_type != EXPR_NULL)
1424 {
1425 s2 = cons->expr->symtree->n.sym;
1426 name = cons->expr->symtree->n.sym->name;
1427 }
1428
1429 if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
1430 err, sizeof (err), NULL, NULL))
1431 {
1432 gfc_error_opt (0, "Interface mismatch for procedure-pointer "
1433 "component %qs in structure constructor at %L:"
1434 " %s", comp->name, &cons->expr->where, err);
1435 return false;
1436 }
1437 }
1438
1439 if (!comp->attr.pointer || comp->attr.proc_pointer
1440 || cons->expr->expr_type == EXPR_NULL)
1441 continue;
1442
1443 a = gfc_expr_attr (cons->expr);
1444
1445 if (!a.pointer && !a.target)
1446 {
1447 t = false;
1448 gfc_error ("The element in the structure constructor at %L, "
1449 "for pointer component %qs should be a POINTER or "
1450 "a TARGET", &cons->expr->where, comp->name);
1451 }
1452
1453 if (init)
1454 {
1455 /* F08:C461. Additional checks for pointer initialization. */
1456 if (a.allocatable)
1457 {
1458 t = false;
1459 gfc_error ("Pointer initialization target at %L "
1460 "must not be ALLOCATABLE", &cons->expr->where);
1461 }
1462 if (!a.save)
1463 {
1464 t = false;
1465 gfc_error ("Pointer initialization target at %L "
1466 "must have the SAVE attribute", &cons->expr->where);
1467 }
1468 }
1469
1470 /* F2003, C1272 (3). */
1471 bool impure = cons->expr->expr_type == EXPR_VARIABLE
1472 && (gfc_impure_variable (cons->expr->symtree->n.sym)
1473 || gfc_is_coindexed (cons->expr));
1474 if (impure && gfc_pure (NULL))
1475 {
1476 t = false;
1477 gfc_error ("Invalid expression in the structure constructor for "
1478 "pointer component %qs at %L in PURE procedure",
1479 comp->name, &cons->expr->where);
1480 }
1481
1482 if (impure)
1483 gfc_unset_implicit_pure (NULL);
1484 }
1485
1486 return t;
1487 }
1488
1489
1490 /****************** Expression name resolution ******************/
1491
1492 /* Returns 0 if a symbol was not declared with a type or
1493 attribute declaration statement, nonzero otherwise. */
1494
1495 static int
1496 was_declared (gfc_symbol *sym)
1497 {
1498 symbol_attribute a;
1499
1500 a = sym->attr;
1501
1502 if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
1503 return 1;
1504
1505 if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
1506 || a.optional || a.pointer || a.save || a.target || a.volatile_
1507 || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
1508 || a.asynchronous || a.codimension)
1509 return 1;
1510
1511 return 0;
1512 }
1513
1514
1515 /* Determine if a symbol is generic or not. */
1516
1517 static int
1518 generic_sym (gfc_symbol *sym)
1519 {
1520 gfc_symbol *s;
1521
1522 if (sym->attr.generic ||
1523 (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
1524 return 1;
1525
1526 if (was_declared (sym) || sym->ns->parent == NULL)
1527 return 0;
1528
1529 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1530
1531 if (s != NULL)
1532 {
1533 if (s == sym)
1534 return 0;
1535 else
1536 return generic_sym (s);
1537 }
1538
1539 return 0;
1540 }
1541
1542
1543 /* Determine if a symbol is specific or not. */
1544
1545 static int
1546 specific_sym (gfc_symbol *sym)
1547 {
1548 gfc_symbol *s;
1549
1550 if (sym->attr.if_source == IFSRC_IFBODY
1551 || sym->attr.proc == PROC_MODULE
1552 || sym->attr.proc == PROC_INTERNAL
1553 || sym->attr.proc == PROC_ST_FUNCTION
1554 || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1555 || sym->attr.external)
1556 return 1;
1557
1558 if (was_declared (sym) || sym->ns->parent == NULL)
1559 return 0;
1560
1561 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1562
1563 return (s == NULL) ? 0 : specific_sym (s);
1564 }
1565
1566
1567 /* Figure out if the procedure is specific, generic or unknown. */
1568
1569 enum proc_type
1570 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
1571
1572 static proc_type
1573 procedure_kind (gfc_symbol *sym)
1574 {
1575 if (generic_sym (sym))
1576 return PTYPE_GENERIC;
1577
1578 if (specific_sym (sym))
1579 return PTYPE_SPECIFIC;
1580
1581 return PTYPE_UNKNOWN;
1582 }
1583
1584 /* Check references to assumed size arrays. The flag need_full_assumed_size
1585 is nonzero when matching actual arguments. */
1586
1587 static int need_full_assumed_size = 0;
1588
1589 static bool
1590 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1591 {
1592 if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1593 return false;
1594
1595 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1596 What should it be? */
1597 if (e->ref && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1598 && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1599 && (e->ref->u.ar.type == AR_FULL))
1600 {
1601 gfc_error ("The upper bound in the last dimension must "
1602 "appear in the reference to the assumed size "
1603 "array %qs at %L", sym->name, &e->where);
1604 return true;
1605 }
1606 return false;
1607 }
1608
1609
1610 /* Look for bad assumed size array references in argument expressions
1611 of elemental and array valued intrinsic procedures. Since this is
1612 called from procedure resolution functions, it only recurses at
1613 operators. */
1614
1615 static bool
1616 resolve_assumed_size_actual (gfc_expr *e)
1617 {
1618 if (e == NULL)
1619 return false;
1620
1621 switch (e->expr_type)
1622 {
1623 case EXPR_VARIABLE:
1624 if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1625 return true;
1626 break;
1627
1628 case EXPR_OP:
1629 if (resolve_assumed_size_actual (e->value.op.op1)
1630 || resolve_assumed_size_actual (e->value.op.op2))
1631 return true;
1632 break;
1633
1634 default:
1635 break;
1636 }
1637 return false;
1638 }
1639
1640
1641 /* Check a generic procedure, passed as an actual argument, to see if
1642 there is a matching specific name. If none, it is an error, and if
1643 more than one, the reference is ambiguous. */
1644 static int
1645 count_specific_procs (gfc_expr *e)
1646 {
1647 int n;
1648 gfc_interface *p;
1649 gfc_symbol *sym;
1650
1651 n = 0;
1652 sym = e->symtree->n.sym;
1653
1654 for (p = sym->generic; p; p = p->next)
1655 if (strcmp (sym->name, p->sym->name) == 0)
1656 {
1657 e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1658 sym->name);
1659 n++;
1660 }
1661
1662 if (n > 1)
1663 gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
1664 &e->where);
1665
1666 if (n == 0)
1667 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1668 "argument at %L", sym->name, &e->where);
1669
1670 return n;
1671 }
1672
1673
1674 /* See if a call to sym could possibly be a not allowed RECURSION because of
1675 a missing RECURSIVE declaration. This means that either sym is the current
1676 context itself, or sym is the parent of a contained procedure calling its
1677 non-RECURSIVE containing procedure.
1678 This also works if sym is an ENTRY. */
1679
1680 static bool
1681 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1682 {
1683 gfc_symbol* proc_sym;
1684 gfc_symbol* context_proc;
1685 gfc_namespace* real_context;
1686
1687 if (sym->attr.flavor == FL_PROGRAM
1688 || gfc_fl_struct (sym->attr.flavor))
1689 return false;
1690
1691 /* If we've got an ENTRY, find real procedure. */
1692 if (sym->attr.entry && sym->ns->entries)
1693 proc_sym = sym->ns->entries->sym;
1694 else
1695 proc_sym = sym;
1696
1697 /* If sym is RECURSIVE, all is well of course. */
1698 if (proc_sym->attr.recursive || flag_recursive)
1699 return false;
1700
1701 /* Find the context procedure's "real" symbol if it has entries.
1702 We look for a procedure symbol, so recurse on the parents if we don't
1703 find one (like in case of a BLOCK construct). */
1704 for (real_context = context; ; real_context = real_context->parent)
1705 {
1706 /* We should find something, eventually! */
1707 gcc_assert (real_context);
1708
1709 context_proc = (real_context->entries ? real_context->entries->sym
1710 : real_context->proc_name);
1711
1712 /* In some special cases, there may not be a proc_name, like for this
1713 invalid code:
1714 real(bad_kind()) function foo () ...
1715 when checking the call to bad_kind ().
1716 In these cases, we simply return here and assume that the
1717 call is ok. */
1718 if (!context_proc)
1719 return false;
1720
1721 if (context_proc->attr.flavor != FL_LABEL)
1722 break;
1723 }
1724
1725 /* A call from sym's body to itself is recursion, of course. */
1726 if (context_proc == proc_sym)
1727 return true;
1728
1729 /* The same is true if context is a contained procedure and sym the
1730 containing one. */
1731 if (context_proc->attr.contained)
1732 {
1733 gfc_symbol* parent_proc;
1734
1735 gcc_assert (context->parent);
1736 parent_proc = (context->parent->entries ? context->parent->entries->sym
1737 : context->parent->proc_name);
1738
1739 if (parent_proc == proc_sym)
1740 return true;
1741 }
1742
1743 return false;
1744 }
1745
1746
1747 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1748 its typespec and formal argument list. */
1749
1750 bool
1751 gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
1752 {
1753 gfc_intrinsic_sym* isym = NULL;
1754 const char* symstd;
1755
1756 if (sym->formal)
1757 return true;
1758
1759 /* Already resolved. */
1760 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1761 return true;
1762
1763 /* We already know this one is an intrinsic, so we don't call
1764 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1765 gfc_find_subroutine directly to check whether it is a function or
1766 subroutine. */
1767
1768 if (sym->intmod_sym_id && sym->attr.subroutine)
1769 {
1770 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1771 isym = gfc_intrinsic_subroutine_by_id (id);
1772 }
1773 else if (sym->intmod_sym_id)
1774 {
1775 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1776 isym = gfc_intrinsic_function_by_id (id);
1777 }
1778 else if (!sym->attr.subroutine)
1779 isym = gfc_find_function (sym->name);
1780
1781 if (isym && !sym->attr.subroutine)
1782 {
1783 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1784 && !sym->attr.implicit_type)
1785 gfc_warning (OPT_Wsurprising,
1786 "Type specified for intrinsic function %qs at %L is"
1787 " ignored", sym->name, &sym->declared_at);
1788
1789 if (!sym->attr.function &&
1790 !gfc_add_function(&sym->attr, sym->name, loc))
1791 return false;
1792
1793 sym->ts = isym->ts;
1794 }
1795 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1796 {
1797 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1798 {
1799 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1800 " specifier", sym->name, &sym->declared_at);
1801 return false;
1802 }
1803
1804 if (!sym->attr.subroutine &&
1805 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1806 return false;
1807 }
1808 else
1809 {
1810 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1811 &sym->declared_at);
1812 return false;
1813 }
1814
1815 gfc_copy_formal_args_intr (sym, isym, NULL);
1816
1817 sym->attr.pure = isym->pure;
1818 sym->attr.elemental = isym->elemental;
1819
1820 /* Check it is actually available in the standard settings. */
1821 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1822 {
1823 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1824 "available in the current standard settings but %s. Use "
1825 "an appropriate %<-std=*%> option or enable "
1826 "%<-fall-intrinsics%> in order to use it.",
1827 sym->name, &sym->declared_at, symstd);
1828 return false;
1829 }
1830
1831 return true;
1832 }
1833
1834
1835 /* Resolve a procedure expression, like passing it to a called procedure or as
1836 RHS for a procedure pointer assignment. */
1837
1838 static bool
1839 resolve_procedure_expression (gfc_expr* expr)
1840 {
1841 gfc_symbol* sym;
1842
1843 if (expr->expr_type != EXPR_VARIABLE)
1844 return true;
1845 gcc_assert (expr->symtree);
1846
1847 sym = expr->symtree->n.sym;
1848
1849 if (sym->attr.intrinsic)
1850 gfc_resolve_intrinsic (sym, &expr->where);
1851
1852 if (sym->attr.flavor != FL_PROCEDURE
1853 || (sym->attr.function && sym->result == sym))
1854 return true;
1855
1856 /* A non-RECURSIVE procedure that is used as procedure expression within its
1857 own body is in danger of being called recursively. */
1858 if (is_illegal_recursion (sym, gfc_current_ns))
1859 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1860 " itself recursively. Declare it RECURSIVE or use"
1861 " %<-frecursive%>", sym->name, &expr->where);
1862
1863 return true;
1864 }
1865
1866
1867 /* Check that name is not a derived type. */
1868
1869 static bool
1870 is_dt_name (const char *name)
1871 {
1872 gfc_symbol *dt_list, *dt_first;
1873
1874 dt_list = dt_first = gfc_derived_types;
1875 for (; dt_list; dt_list = dt_list->dt_next)
1876 {
1877 if (strcmp(dt_list->name, name) == 0)
1878 return true;
1879 if (dt_first == dt_list->dt_next)
1880 break;
1881 }
1882 return false;
1883 }
1884
1885
1886 /* Resolve an actual argument list. Most of the time, this is just
1887 resolving the expressions in the list.
1888 The exception is that we sometimes have to decide whether arguments
1889 that look like procedure arguments are really simple variable
1890 references. */
1891
1892 static bool
1893 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1894 bool no_formal_args)
1895 {
1896 gfc_symbol *sym;
1897 gfc_symtree *parent_st;
1898 gfc_expr *e;
1899 gfc_component *comp;
1900 int save_need_full_assumed_size;
1901 bool return_value = false;
1902 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1903
1904 actual_arg = true;
1905 first_actual_arg = true;
1906
1907 for (; arg; arg = arg->next)
1908 {
1909 e = arg->expr;
1910 if (e == NULL)
1911 {
1912 /* Check the label is a valid branching target. */
1913 if (arg->label)
1914 {
1915 if (arg->label->defined == ST_LABEL_UNKNOWN)
1916 {
1917 gfc_error ("Label %d referenced at %L is never defined",
1918 arg->label->value, &arg->label->where);
1919 goto cleanup;
1920 }
1921 }
1922 first_actual_arg = false;
1923 continue;
1924 }
1925
1926 if (e->expr_type == EXPR_VARIABLE
1927 && e->symtree->n.sym->attr.generic
1928 && no_formal_args
1929 && count_specific_procs (e) != 1)
1930 goto cleanup;
1931
1932 if (e->ts.type != BT_PROCEDURE)
1933 {
1934 save_need_full_assumed_size = need_full_assumed_size;
1935 if (e->expr_type != EXPR_VARIABLE)
1936 need_full_assumed_size = 0;
1937 if (!gfc_resolve_expr (e))
1938 goto cleanup;
1939 need_full_assumed_size = save_need_full_assumed_size;
1940 goto argument_list;
1941 }
1942
1943 /* See if the expression node should really be a variable reference. */
1944
1945 sym = e->symtree->n.sym;
1946
1947 if (sym->attr.flavor == FL_PROCEDURE && is_dt_name (sym->name))
1948 {
1949 gfc_error ("Derived type %qs is used as an actual "
1950 "argument at %L", sym->name, &e->where);
1951 goto cleanup;
1952 }
1953
1954 if (sym->attr.flavor == FL_PROCEDURE
1955 || sym->attr.intrinsic
1956 || sym->attr.external)
1957 {
1958 int actual_ok;
1959
1960 /* If a procedure is not already determined to be something else
1961 check if it is intrinsic. */
1962 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1963 sym->attr.intrinsic = 1;
1964
1965 if (sym->attr.proc == PROC_ST_FUNCTION)
1966 {
1967 gfc_error ("Statement function %qs at %L is not allowed as an "
1968 "actual argument", sym->name, &e->where);
1969 }
1970
1971 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1972 sym->attr.subroutine);
1973 if (sym->attr.intrinsic && actual_ok == 0)
1974 {
1975 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1976 "actual argument", sym->name, &e->where);
1977 }
1978
1979 if (sym->attr.contained && !sym->attr.use_assoc
1980 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1981 {
1982 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1983 " used as actual argument at %L",
1984 sym->name, &e->where))
1985 goto cleanup;
1986 }
1987
1988 if (sym->attr.elemental && !sym->attr.intrinsic)
1989 {
1990 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1991 "allowed as an actual argument at %L", sym->name,
1992 &e->where);
1993 }
1994
1995 /* Check if a generic interface has a specific procedure
1996 with the same name before emitting an error. */
1997 if (sym->attr.generic && count_specific_procs (e) != 1)
1998 goto cleanup;
1999
2000 /* Just in case a specific was found for the expression. */
2001 sym = e->symtree->n.sym;
2002
2003 /* If the symbol is the function that names the current (or
2004 parent) scope, then we really have a variable reference. */
2005
2006 if (gfc_is_function_return_value (sym, sym->ns))
2007 goto got_variable;
2008
2009 /* If all else fails, see if we have a specific intrinsic. */
2010 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
2011 {
2012 gfc_intrinsic_sym *isym;
2013
2014 isym = gfc_find_function (sym->name);
2015 if (isym == NULL || !isym->specific)
2016 {
2017 gfc_error ("Unable to find a specific INTRINSIC procedure "
2018 "for the reference %qs at %L", sym->name,
2019 &e->where);
2020 goto cleanup;
2021 }
2022 sym->ts = isym->ts;
2023 sym->attr.intrinsic = 1;
2024 sym->attr.function = 1;
2025 }
2026
2027 if (!gfc_resolve_expr (e))
2028 goto cleanup;
2029 goto argument_list;
2030 }
2031
2032 /* See if the name is a module procedure in a parent unit. */
2033
2034 if (was_declared (sym) || sym->ns->parent == NULL)
2035 goto got_variable;
2036
2037 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2038 {
2039 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2040 goto cleanup;
2041 }
2042
2043 if (parent_st == NULL)
2044 goto got_variable;
2045
2046 sym = parent_st->n.sym;
2047 e->symtree = parent_st; /* Point to the right thing. */
2048
2049 if (sym->attr.flavor == FL_PROCEDURE
2050 || sym->attr.intrinsic
2051 || sym->attr.external)
2052 {
2053 if (!gfc_resolve_expr (e))
2054 goto cleanup;
2055 goto argument_list;
2056 }
2057
2058 got_variable:
2059 e->expr_type = EXPR_VARIABLE;
2060 e->ts = sym->ts;
2061 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2062 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2063 && CLASS_DATA (sym)->as))
2064 {
2065 e->rank = sym->ts.type == BT_CLASS
2066 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2067 e->ref = gfc_get_ref ();
2068 e->ref->type = REF_ARRAY;
2069 e->ref->u.ar.type = AR_FULL;
2070 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2071 ? CLASS_DATA (sym)->as : sym->as;
2072 }
2073
2074 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2075 primary.c (match_actual_arg). If above code determines that it
2076 is a variable instead, it needs to be resolved as it was not
2077 done at the beginning of this function. */
2078 save_need_full_assumed_size = need_full_assumed_size;
2079 if (e->expr_type != EXPR_VARIABLE)
2080 need_full_assumed_size = 0;
2081 if (!gfc_resolve_expr (e))
2082 goto cleanup;
2083 need_full_assumed_size = save_need_full_assumed_size;
2084
2085 argument_list:
2086 /* Check argument list functions %VAL, %LOC and %REF. There is
2087 nothing to do for %REF. */
2088 if (arg->name && arg->name[0] == '%')
2089 {
2090 if (strcmp ("%VAL", arg->name) == 0)
2091 {
2092 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2093 {
2094 gfc_error ("By-value argument at %L is not of numeric "
2095 "type", &e->where);
2096 goto cleanup;
2097 }
2098
2099 if (e->rank)
2100 {
2101 gfc_error ("By-value argument at %L cannot be an array or "
2102 "an array section", &e->where);
2103 goto cleanup;
2104 }
2105
2106 /* Intrinsics are still PROC_UNKNOWN here. However,
2107 since same file external procedures are not resolvable
2108 in gfortran, it is a good deal easier to leave them to
2109 intrinsic.c. */
2110 if (ptype != PROC_UNKNOWN
2111 && ptype != PROC_DUMMY
2112 && ptype != PROC_EXTERNAL
2113 && ptype != PROC_MODULE)
2114 {
2115 gfc_error ("By-value argument at %L is not allowed "
2116 "in this context", &e->where);
2117 goto cleanup;
2118 }
2119 }
2120
2121 /* Statement functions have already been excluded above. */
2122 else if (strcmp ("%LOC", arg->name) == 0
2123 && e->ts.type == BT_PROCEDURE)
2124 {
2125 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2126 {
2127 gfc_error ("Passing internal procedure at %L by location "
2128 "not allowed", &e->where);
2129 goto cleanup;
2130 }
2131 }
2132 }
2133
2134 comp = gfc_get_proc_ptr_comp(e);
2135 if (e->expr_type == EXPR_VARIABLE
2136 && comp && comp->attr.elemental)
2137 {
2138 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2139 "allowed as an actual argument at %L", comp->name,
2140 &e->where);
2141 }
2142
2143 /* Fortran 2008, C1237. */
2144 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2145 && gfc_has_ultimate_pointer (e))
2146 {
2147 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2148 "component", &e->where);
2149 goto cleanup;
2150 }
2151
2152 first_actual_arg = false;
2153 }
2154
2155 return_value = true;
2156
2157 cleanup:
2158 actual_arg = actual_arg_sav;
2159 first_actual_arg = first_actual_arg_sav;
2160
2161 return return_value;
2162 }
2163
2164
2165 /* Do the checks of the actual argument list that are specific to elemental
2166 procedures. If called with c == NULL, we have a function, otherwise if
2167 expr == NULL, we have a subroutine. */
2168
2169 static bool
2170 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2171 {
2172 gfc_actual_arglist *arg0;
2173 gfc_actual_arglist *arg;
2174 gfc_symbol *esym = NULL;
2175 gfc_intrinsic_sym *isym = NULL;
2176 gfc_expr *e = NULL;
2177 gfc_intrinsic_arg *iformal = NULL;
2178 gfc_formal_arglist *eformal = NULL;
2179 bool formal_optional = false;
2180 bool set_by_optional = false;
2181 int i;
2182 int rank = 0;
2183
2184 /* Is this an elemental procedure? */
2185 if (expr && expr->value.function.actual != NULL)
2186 {
2187 if (expr->value.function.esym != NULL
2188 && expr->value.function.esym->attr.elemental)
2189 {
2190 arg0 = expr->value.function.actual;
2191 esym = expr->value.function.esym;
2192 }
2193 else if (expr->value.function.isym != NULL
2194 && expr->value.function.isym->elemental)
2195 {
2196 arg0 = expr->value.function.actual;
2197 isym = expr->value.function.isym;
2198 }
2199 else
2200 return true;
2201 }
2202 else if (c && c->ext.actual != NULL)
2203 {
2204 arg0 = c->ext.actual;
2205
2206 if (c->resolved_sym)
2207 esym = c->resolved_sym;
2208 else
2209 esym = c->symtree->n.sym;
2210 gcc_assert (esym);
2211
2212 if (!esym->attr.elemental)
2213 return true;
2214 }
2215 else
2216 return true;
2217
2218 /* The rank of an elemental is the rank of its array argument(s). */
2219 for (arg = arg0; arg; arg = arg->next)
2220 {
2221 if (arg->expr != NULL && arg->expr->rank != 0)
2222 {
2223 rank = arg->expr->rank;
2224 if (arg->expr->expr_type == EXPR_VARIABLE
2225 && arg->expr->symtree->n.sym->attr.optional)
2226 set_by_optional = true;
2227
2228 /* Function specific; set the result rank and shape. */
2229 if (expr)
2230 {
2231 expr->rank = rank;
2232 if (!expr->shape && arg->expr->shape)
2233 {
2234 expr->shape = gfc_get_shape (rank);
2235 for (i = 0; i < rank; i++)
2236 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2237 }
2238 }
2239 break;
2240 }
2241 }
2242
2243 /* If it is an array, it shall not be supplied as an actual argument
2244 to an elemental procedure unless an array of the same rank is supplied
2245 as an actual argument corresponding to a nonoptional dummy argument of
2246 that elemental procedure(12.4.1.5). */
2247 formal_optional = false;
2248 if (isym)
2249 iformal = isym->formal;
2250 else
2251 eformal = esym->formal;
2252
2253 for (arg = arg0; arg; arg = arg->next)
2254 {
2255 if (eformal)
2256 {
2257 if (eformal->sym && eformal->sym->attr.optional)
2258 formal_optional = true;
2259 eformal = eformal->next;
2260 }
2261 else if (isym && iformal)
2262 {
2263 if (iformal->optional)
2264 formal_optional = true;
2265 iformal = iformal->next;
2266 }
2267 else if (isym)
2268 formal_optional = true;
2269
2270 if (pedantic && arg->expr != NULL
2271 && arg->expr->expr_type == EXPR_VARIABLE
2272 && arg->expr->symtree->n.sym->attr.optional
2273 && formal_optional
2274 && arg->expr->rank
2275 && (set_by_optional || arg->expr->rank != rank)
2276 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2277 {
2278 gfc_warning (OPT_Wpedantic,
2279 "%qs at %L is an array and OPTIONAL; IF IT IS "
2280 "MISSING, it cannot be the actual argument of an "
2281 "ELEMENTAL procedure unless there is a non-optional "
2282 "argument with the same rank (12.4.1.5)",
2283 arg->expr->symtree->n.sym->name, &arg->expr->where);
2284 }
2285 }
2286
2287 for (arg = arg0; arg; arg = arg->next)
2288 {
2289 if (arg->expr == NULL || arg->expr->rank == 0)
2290 continue;
2291
2292 /* Being elemental, the last upper bound of an assumed size array
2293 argument must be present. */
2294 if (resolve_assumed_size_actual (arg->expr))
2295 return false;
2296
2297 /* Elemental procedure's array actual arguments must conform. */
2298 if (e != NULL)
2299 {
2300 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2301 return false;
2302 }
2303 else
2304 e = arg->expr;
2305 }
2306
2307 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2308 is an array, the intent inout/out variable needs to be also an array. */
2309 if (rank > 0 && esym && expr == NULL)
2310 for (eformal = esym->formal, arg = arg0; arg && eformal;
2311 arg = arg->next, eformal = eformal->next)
2312 if ((eformal->sym->attr.intent == INTENT_OUT
2313 || eformal->sym->attr.intent == INTENT_INOUT)
2314 && arg->expr && arg->expr->rank == 0)
2315 {
2316 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2317 "ELEMENTAL subroutine %qs is a scalar, but another "
2318 "actual argument is an array", &arg->expr->where,
2319 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2320 : "INOUT", eformal->sym->name, esym->name);
2321 return false;
2322 }
2323 return true;
2324 }
2325
2326
2327 /* This function does the checking of references to global procedures
2328 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2329 77 and 95 standards. It checks for a gsymbol for the name, making
2330 one if it does not already exist. If it already exists, then the
2331 reference being resolved must correspond to the type of gsymbol.
2332 Otherwise, the new symbol is equipped with the attributes of the
2333 reference. The corresponding code that is called in creating
2334 global entities is parse.c.
2335
2336 In addition, for all but -std=legacy, the gsymbols are used to
2337 check the interfaces of external procedures from the same file.
2338 The namespace of the gsymbol is resolved and then, once this is
2339 done the interface is checked. */
2340
2341
2342 static bool
2343 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2344 {
2345 if (!gsym_ns->proc_name->attr.recursive)
2346 return true;
2347
2348 if (sym->ns == gsym_ns)
2349 return false;
2350
2351 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2352 return false;
2353
2354 return true;
2355 }
2356
2357 static bool
2358 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2359 {
2360 if (gsym_ns->entries)
2361 {
2362 gfc_entry_list *entry = gsym_ns->entries;
2363
2364 for (; entry; entry = entry->next)
2365 {
2366 if (strcmp (sym->name, entry->sym->name) == 0)
2367 {
2368 if (strcmp (gsym_ns->proc_name->name,
2369 sym->ns->proc_name->name) == 0)
2370 return false;
2371
2372 if (sym->ns->parent
2373 && strcmp (gsym_ns->proc_name->name,
2374 sym->ns->parent->proc_name->name) == 0)
2375 return false;
2376 }
2377 }
2378 }
2379 return true;
2380 }
2381
2382
2383 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2384
2385 bool
2386 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2387 {
2388 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2389
2390 for ( ; arg; arg = arg->next)
2391 {
2392 if (!arg->sym)
2393 continue;
2394
2395 if (arg->sym->attr.allocatable) /* (2a) */
2396 {
2397 strncpy (errmsg, _("allocatable argument"), err_len);
2398 return true;
2399 }
2400 else if (arg->sym->attr.asynchronous)
2401 {
2402 strncpy (errmsg, _("asynchronous argument"), err_len);
2403 return true;
2404 }
2405 else if (arg->sym->attr.optional)
2406 {
2407 strncpy (errmsg, _("optional argument"), err_len);
2408 return true;
2409 }
2410 else if (arg->sym->attr.pointer)
2411 {
2412 strncpy (errmsg, _("pointer argument"), err_len);
2413 return true;
2414 }
2415 else if (arg->sym->attr.target)
2416 {
2417 strncpy (errmsg, _("target argument"), err_len);
2418 return true;
2419 }
2420 else if (arg->sym->attr.value)
2421 {
2422 strncpy (errmsg, _("value argument"), err_len);
2423 return true;
2424 }
2425 else if (arg->sym->attr.volatile_)
2426 {
2427 strncpy (errmsg, _("volatile argument"), err_len);
2428 return true;
2429 }
2430 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2431 {
2432 strncpy (errmsg, _("assumed-shape argument"), err_len);
2433 return true;
2434 }
2435 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2436 {
2437 strncpy (errmsg, _("assumed-rank argument"), err_len);
2438 return true;
2439 }
2440 else if (arg->sym->attr.codimension) /* (2c) */
2441 {
2442 strncpy (errmsg, _("coarray argument"), err_len);
2443 return true;
2444 }
2445 else if (false) /* (2d) TODO: parametrized derived type */
2446 {
2447 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2448 return true;
2449 }
2450 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2451 {
2452 strncpy (errmsg, _("polymorphic argument"), err_len);
2453 return true;
2454 }
2455 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2456 {
2457 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2458 return true;
2459 }
2460 else if (arg->sym->ts.type == BT_ASSUMED)
2461 {
2462 /* As assumed-type is unlimited polymorphic (cf. above).
2463 See also TS 29113, Note 6.1. */
2464 strncpy (errmsg, _("assumed-type argument"), err_len);
2465 return true;
2466 }
2467 }
2468
2469 if (sym->attr.function)
2470 {
2471 gfc_symbol *res = sym->result ? sym->result : sym;
2472
2473 if (res->attr.dimension) /* (3a) */
2474 {
2475 strncpy (errmsg, _("array result"), err_len);
2476 return true;
2477 }
2478 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2479 {
2480 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2481 return true;
2482 }
2483 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2484 && res->ts.u.cl->length
2485 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2486 {
2487 strncpy (errmsg, _("result with non-constant character length"), err_len);
2488 return true;
2489 }
2490 }
2491
2492 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2493 {
2494 strncpy (errmsg, _("elemental procedure"), err_len);
2495 return true;
2496 }
2497 else if (sym->attr.is_bind_c) /* (5) */
2498 {
2499 strncpy (errmsg, _("bind(c) procedure"), err_len);
2500 return true;
2501 }
2502
2503 return false;
2504 }
2505
2506
2507 static void
2508 resolve_global_procedure (gfc_symbol *sym, locus *where, int sub)
2509 {
2510 gfc_gsymbol * gsym;
2511 gfc_namespace *ns;
2512 enum gfc_symbol_type type;
2513 char reason[200];
2514
2515 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2516
2517 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name,
2518 sym->binding_label != NULL);
2519
2520 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2521 gfc_global_used (gsym, where);
2522
2523 if ((sym->attr.if_source == IFSRC_UNKNOWN
2524 || sym->attr.if_source == IFSRC_IFBODY)
2525 && gsym->type != GSYM_UNKNOWN
2526 && !gsym->binding_label
2527 && gsym->ns
2528 && gsym->ns->proc_name
2529 && not_in_recursive (sym, gsym->ns)
2530 && not_entry_self_reference (sym, gsym->ns))
2531 {
2532 gfc_symbol *def_sym;
2533 def_sym = gsym->ns->proc_name;
2534
2535 if (gsym->ns->resolved != -1)
2536 {
2537
2538 /* Resolve the gsymbol namespace if needed. */
2539 if (!gsym->ns->resolved)
2540 {
2541 gfc_symbol *old_dt_list;
2542
2543 /* Stash away derived types so that the backend_decls
2544 do not get mixed up. */
2545 old_dt_list = gfc_derived_types;
2546 gfc_derived_types = NULL;
2547
2548 gfc_resolve (gsym->ns);
2549
2550 /* Store the new derived types with the global namespace. */
2551 if (gfc_derived_types)
2552 gsym->ns->derived_types = gfc_derived_types;
2553
2554 /* Restore the derived types of this namespace. */
2555 gfc_derived_types = old_dt_list;
2556 }
2557
2558 /* Make sure that translation for the gsymbol occurs before
2559 the procedure currently being resolved. */
2560 ns = gfc_global_ns_list;
2561 for (; ns && ns != gsym->ns; ns = ns->sibling)
2562 {
2563 if (ns->sibling == gsym->ns)
2564 {
2565 ns->sibling = gsym->ns->sibling;
2566 gsym->ns->sibling = gfc_global_ns_list;
2567 gfc_global_ns_list = gsym->ns;
2568 break;
2569 }
2570 }
2571
2572 /* This can happen if a binding name has been specified. */
2573 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2574 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2575
2576 if (def_sym->attr.entry_master || def_sym->attr.entry)
2577 {
2578 gfc_entry_list *entry;
2579 for (entry = gsym->ns->entries; entry; entry = entry->next)
2580 if (strcmp (entry->sym->name, sym->name) == 0)
2581 {
2582 def_sym = entry->sym;
2583 break;
2584 }
2585 }
2586 }
2587
2588 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2589 {
2590 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2591 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2592 gfc_typename (&def_sym->ts));
2593 goto done;
2594 }
2595
2596 if (sym->attr.if_source == IFSRC_UNKNOWN
2597 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2598 {
2599 gfc_error ("Explicit interface required for %qs at %L: %s",
2600 sym->name, &sym->declared_at, reason);
2601 goto done;
2602 }
2603
2604 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU))
2605 /* Turn erros into warnings with -std=gnu and -std=legacy. */
2606 gfc_errors_to_warnings (true);
2607
2608 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2609 reason, sizeof(reason), NULL, NULL))
2610 {
2611 gfc_error_opt (0, "Interface mismatch in global procedure %qs at %L:"
2612 " %s", sym->name, &sym->declared_at, reason);
2613 goto done;
2614 }
2615 }
2616
2617 done:
2618 gfc_errors_to_warnings (false);
2619
2620 if (gsym->type == GSYM_UNKNOWN)
2621 {
2622 gsym->type = type;
2623 gsym->where = *where;
2624 }
2625
2626 gsym->used = 1;
2627 }
2628
2629
2630 /************* Function resolution *************/
2631
2632 /* Resolve a function call known to be generic.
2633 Section 14.1.2.4.1. */
2634
2635 static match
2636 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2637 {
2638 gfc_symbol *s;
2639
2640 if (sym->attr.generic)
2641 {
2642 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2643 if (s != NULL)
2644 {
2645 expr->value.function.name = s->name;
2646 expr->value.function.esym = s;
2647
2648 if (s->ts.type != BT_UNKNOWN)
2649 expr->ts = s->ts;
2650 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2651 expr->ts = s->result->ts;
2652
2653 if (s->as != NULL)
2654 expr->rank = s->as->rank;
2655 else if (s->result != NULL && s->result->as != NULL)
2656 expr->rank = s->result->as->rank;
2657
2658 gfc_set_sym_referenced (expr->value.function.esym);
2659
2660 return MATCH_YES;
2661 }
2662
2663 /* TODO: Need to search for elemental references in generic
2664 interface. */
2665 }
2666
2667 if (sym->attr.intrinsic)
2668 return gfc_intrinsic_func_interface (expr, 0);
2669
2670 return MATCH_NO;
2671 }
2672
2673
2674 static bool
2675 resolve_generic_f (gfc_expr *expr)
2676 {
2677 gfc_symbol *sym;
2678 match m;
2679 gfc_interface *intr = NULL;
2680
2681 sym = expr->symtree->n.sym;
2682
2683 for (;;)
2684 {
2685 m = resolve_generic_f0 (expr, sym);
2686 if (m == MATCH_YES)
2687 return true;
2688 else if (m == MATCH_ERROR)
2689 return false;
2690
2691 generic:
2692 if (!intr)
2693 for (intr = sym->generic; intr; intr = intr->next)
2694 if (gfc_fl_struct (intr->sym->attr.flavor))
2695 break;
2696
2697 if (sym->ns->parent == NULL)
2698 break;
2699 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2700
2701 if (sym == NULL)
2702 break;
2703 if (!generic_sym (sym))
2704 goto generic;
2705 }
2706
2707 /* Last ditch attempt. See if the reference is to an intrinsic
2708 that possesses a matching interface. 14.1.2.4 */
2709 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2710 {
2711 if (gfc_init_expr_flag)
2712 gfc_error ("Function %qs in initialization expression at %L "
2713 "must be an intrinsic function",
2714 expr->symtree->n.sym->name, &expr->where);
2715 else
2716 gfc_error ("There is no specific function for the generic %qs "
2717 "at %L", expr->symtree->n.sym->name, &expr->where);
2718 return false;
2719 }
2720
2721 if (intr)
2722 {
2723 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2724 NULL, false))
2725 return false;
2726 if (!gfc_use_derived (expr->ts.u.derived))
2727 return false;
2728 return resolve_structure_cons (expr, 0);
2729 }
2730
2731 m = gfc_intrinsic_func_interface (expr, 0);
2732 if (m == MATCH_YES)
2733 return true;
2734
2735 if (m == MATCH_NO)
2736 gfc_error ("Generic function %qs at %L is not consistent with a "
2737 "specific intrinsic interface", expr->symtree->n.sym->name,
2738 &expr->where);
2739
2740 return false;
2741 }
2742
2743
2744 /* Resolve a function call known to be specific. */
2745
2746 static match
2747 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2748 {
2749 match m;
2750
2751 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2752 {
2753 if (sym->attr.dummy)
2754 {
2755 sym->attr.proc = PROC_DUMMY;
2756 goto found;
2757 }
2758
2759 sym->attr.proc = PROC_EXTERNAL;
2760 goto found;
2761 }
2762
2763 if (sym->attr.proc == PROC_MODULE
2764 || sym->attr.proc == PROC_ST_FUNCTION
2765 || sym->attr.proc == PROC_INTERNAL)
2766 goto found;
2767
2768 if (sym->attr.intrinsic)
2769 {
2770 m = gfc_intrinsic_func_interface (expr, 1);
2771 if (m == MATCH_YES)
2772 return MATCH_YES;
2773 if (m == MATCH_NO)
2774 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2775 "with an intrinsic", sym->name, &expr->where);
2776
2777 return MATCH_ERROR;
2778 }
2779
2780 return MATCH_NO;
2781
2782 found:
2783 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2784
2785 if (sym->result)
2786 expr->ts = sym->result->ts;
2787 else
2788 expr->ts = sym->ts;
2789 expr->value.function.name = sym->name;
2790 expr->value.function.esym = sym;
2791 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2792 error(s). */
2793 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2794 return MATCH_ERROR;
2795 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2796 expr->rank = CLASS_DATA (sym)->as->rank;
2797 else if (sym->as != NULL)
2798 expr->rank = sym->as->rank;
2799
2800 return MATCH_YES;
2801 }
2802
2803
2804 static bool
2805 resolve_specific_f (gfc_expr *expr)
2806 {
2807 gfc_symbol *sym;
2808 match m;
2809
2810 sym = expr->symtree->n.sym;
2811
2812 for (;;)
2813 {
2814 m = resolve_specific_f0 (sym, expr);
2815 if (m == MATCH_YES)
2816 return true;
2817 if (m == MATCH_ERROR)
2818 return false;
2819
2820 if (sym->ns->parent == NULL)
2821 break;
2822
2823 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2824
2825 if (sym == NULL)
2826 break;
2827 }
2828
2829 gfc_error ("Unable to resolve the specific function %qs at %L",
2830 expr->symtree->n.sym->name, &expr->where);
2831
2832 return true;
2833 }
2834
2835 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2836 candidates in CANDIDATES_LEN. */
2837
2838 static void
2839 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2840 char **&candidates,
2841 size_t &candidates_len)
2842 {
2843 gfc_symtree *p;
2844
2845 if (sym == NULL)
2846 return;
2847 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2848 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2849 vec_push (candidates, candidates_len, sym->name);
2850
2851 p = sym->left;
2852 if (p)
2853 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2854
2855 p = sym->right;
2856 if (p)
2857 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2858 }
2859
2860
2861 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2862
2863 const char*
2864 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2865 {
2866 char **candidates = NULL;
2867 size_t candidates_len = 0;
2868 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2869 return gfc_closest_fuzzy_match (fn, candidates);
2870 }
2871
2872
2873 /* Resolve a procedure call not known to be generic nor specific. */
2874
2875 static bool
2876 resolve_unknown_f (gfc_expr *expr)
2877 {
2878 gfc_symbol *sym;
2879 gfc_typespec *ts;
2880
2881 sym = expr->symtree->n.sym;
2882
2883 if (sym->attr.dummy)
2884 {
2885 sym->attr.proc = PROC_DUMMY;
2886 expr->value.function.name = sym->name;
2887 goto set_type;
2888 }
2889
2890 /* See if we have an intrinsic function reference. */
2891
2892 if (gfc_is_intrinsic (sym, 0, expr->where))
2893 {
2894 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2895 return true;
2896 return false;
2897 }
2898
2899 /* The reference is to an external name. */
2900
2901 sym->attr.proc = PROC_EXTERNAL;
2902 expr->value.function.name = sym->name;
2903 expr->value.function.esym = expr->symtree->n.sym;
2904
2905 if (sym->as != NULL)
2906 expr->rank = sym->as->rank;
2907
2908 /* Type of the expression is either the type of the symbol or the
2909 default type of the symbol. */
2910
2911 set_type:
2912 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2913
2914 if (sym->ts.type != BT_UNKNOWN)
2915 expr->ts = sym->ts;
2916 else
2917 {
2918 ts = gfc_get_default_type (sym->name, sym->ns);
2919
2920 if (ts->type == BT_UNKNOWN)
2921 {
2922 const char *guessed
2923 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2924 if (guessed)
2925 gfc_error ("Function %qs at %L has no IMPLICIT type"
2926 "; did you mean %qs?",
2927 sym->name, &expr->where, guessed);
2928 else
2929 gfc_error ("Function %qs at %L has no IMPLICIT type",
2930 sym->name, &expr->where);
2931 return false;
2932 }
2933 else
2934 expr->ts = *ts;
2935 }
2936
2937 return true;
2938 }
2939
2940
2941 /* Return true, if the symbol is an external procedure. */
2942 static bool
2943 is_external_proc (gfc_symbol *sym)
2944 {
2945 if (!sym->attr.dummy && !sym->attr.contained
2946 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2947 && sym->attr.proc != PROC_ST_FUNCTION
2948 && !sym->attr.proc_pointer
2949 && !sym->attr.use_assoc
2950 && sym->name)
2951 return true;
2952
2953 return false;
2954 }
2955
2956
2957 /* Figure out if a function reference is pure or not. Also set the name
2958 of the function for a potential error message. Return nonzero if the
2959 function is PURE, zero if not. */
2960 static int
2961 pure_stmt_function (gfc_expr *, gfc_symbol *);
2962
2963 int
2964 gfc_pure_function (gfc_expr *e, const char **name)
2965 {
2966 int pure;
2967 gfc_component *comp;
2968
2969 *name = NULL;
2970
2971 if (e->symtree != NULL
2972 && e->symtree->n.sym != NULL
2973 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2974 return pure_stmt_function (e, e->symtree->n.sym);
2975
2976 comp = gfc_get_proc_ptr_comp (e);
2977 if (comp)
2978 {
2979 pure = gfc_pure (comp->ts.interface);
2980 *name = comp->name;
2981 }
2982 else if (e->value.function.esym)
2983 {
2984 pure = gfc_pure (e->value.function.esym);
2985 *name = e->value.function.esym->name;
2986 }
2987 else if (e->value.function.isym)
2988 {
2989 pure = e->value.function.isym->pure
2990 || e->value.function.isym->elemental;
2991 *name = e->value.function.isym->name;
2992 }
2993 else
2994 {
2995 /* Implicit functions are not pure. */
2996 pure = 0;
2997 *name = e->value.function.name;
2998 }
2999
3000 return pure;
3001 }
3002
3003
3004 /* Check if the expression is a reference to an implicitly pure function. */
3005
3006 int
3007 gfc_implicit_pure_function (gfc_expr *e)
3008 {
3009 gfc_component *comp = gfc_get_proc_ptr_comp (e);
3010 if (comp)
3011 return gfc_implicit_pure (comp->ts.interface);
3012 else if (e->value.function.esym)
3013 return gfc_implicit_pure (e->value.function.esym);
3014 else
3015 return 0;
3016 }
3017
3018
3019 static bool
3020 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
3021 int *f ATTRIBUTE_UNUSED)
3022 {
3023 const char *name;
3024
3025 /* Don't bother recursing into other statement functions
3026 since they will be checked individually for purity. */
3027 if (e->expr_type != EXPR_FUNCTION
3028 || !e->symtree
3029 || e->symtree->n.sym == sym
3030 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
3031 return false;
3032
3033 return gfc_pure_function (e, &name) ? false : true;
3034 }
3035
3036
3037 static int
3038 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
3039 {
3040 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
3041 }
3042
3043
3044 /* Check if an impure function is allowed in the current context. */
3045
3046 static bool check_pure_function (gfc_expr *e)
3047 {
3048 const char *name = NULL;
3049 if (!gfc_pure_function (e, &name) && name)
3050 {
3051 if (forall_flag)
3052 {
3053 gfc_error ("Reference to impure function %qs at %L inside a "
3054 "FORALL %s", name, &e->where,
3055 forall_flag == 2 ? "mask" : "block");
3056 return false;
3057 }
3058 else if (gfc_do_concurrent_flag)
3059 {
3060 gfc_error ("Reference to impure function %qs at %L inside a "
3061 "DO CONCURRENT %s", name, &e->where,
3062 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3063 return false;
3064 }
3065 else if (gfc_pure (NULL))
3066 {
3067 gfc_error ("Reference to impure function %qs at %L "
3068 "within a PURE procedure", name, &e->where);
3069 return false;
3070 }
3071 if (!gfc_implicit_pure_function (e))
3072 gfc_unset_implicit_pure (NULL);
3073 }
3074 return true;
3075 }
3076
3077
3078 /* Update current procedure's array_outer_dependency flag, considering
3079 a call to procedure SYM. */
3080
3081 static void
3082 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3083 {
3084 /* Check to see if this is a sibling function that has not yet
3085 been resolved. */
3086 gfc_namespace *sibling = gfc_current_ns->sibling;
3087 for (; sibling; sibling = sibling->sibling)
3088 {
3089 if (sibling->proc_name == sym)
3090 {
3091 gfc_resolve (sibling);
3092 break;
3093 }
3094 }
3095
3096 /* If SYM has references to outer arrays, so has the procedure calling
3097 SYM. If SYM is a procedure pointer, we can assume the worst. */
3098 if ((sym->attr.array_outer_dependency || sym->attr.proc_pointer)
3099 && gfc_current_ns->proc_name)
3100 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3101 }
3102
3103
3104 /* Resolve a function call, which means resolving the arguments, then figuring
3105 out which entity the name refers to. */
3106
3107 static bool
3108 resolve_function (gfc_expr *expr)
3109 {
3110 gfc_actual_arglist *arg;
3111 gfc_symbol *sym;
3112 bool t;
3113 int temp;
3114 procedure_type p = PROC_INTRINSIC;
3115 bool no_formal_args;
3116
3117 sym = NULL;
3118 if (expr->symtree)
3119 sym = expr->symtree->n.sym;
3120
3121 /* If this is a procedure pointer component, it has already been resolved. */
3122 if (gfc_is_proc_ptr_comp (expr))
3123 return true;
3124
3125 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3126 another caf_get. */
3127 if (sym && sym->attr.intrinsic
3128 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3129 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3130 return true;
3131
3132 if (expr->ref)
3133 {
3134 gfc_error ("Unexpected junk after %qs at %L", expr->symtree->n.sym->name,
3135 &expr->where);
3136 return false;
3137 }
3138
3139 if (sym && sym->attr.intrinsic
3140 && !gfc_resolve_intrinsic (sym, &expr->where))
3141 return false;
3142
3143 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3144 {
3145 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3146 return false;
3147 }
3148
3149 /* If this is a deferred TBP with an abstract interface (which may
3150 of course be referenced), expr->value.function.esym will be set. */
3151 if (sym && sym->attr.abstract && !expr->value.function.esym)
3152 {
3153 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3154 sym->name, &expr->where);
3155 return false;
3156 }
3157
3158 /* If this is a deferred TBP with an abstract interface, its result
3159 cannot be an assumed length character (F2003: C418). */
3160 if (sym && sym->attr.abstract && sym->attr.function
3161 && sym->result->ts.u.cl
3162 && sym->result->ts.u.cl->length == NULL
3163 && !sym->result->ts.deferred)
3164 {
3165 gfc_error ("ABSTRACT INTERFACE %qs at %L must not have an assumed "
3166 "character length result (F2008: C418)", sym->name,
3167 &sym->declared_at);
3168 return false;
3169 }
3170
3171 /* Switch off assumed size checking and do this again for certain kinds
3172 of procedure, once the procedure itself is resolved. */
3173 need_full_assumed_size++;
3174
3175 if (expr->symtree && expr->symtree->n.sym)
3176 p = expr->symtree->n.sym->attr.proc;
3177
3178 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3179 inquiry_argument = true;
3180 no_formal_args = sym && is_external_proc (sym)
3181 && gfc_sym_get_dummy_args (sym) == NULL;
3182
3183 if (!resolve_actual_arglist (expr->value.function.actual,
3184 p, no_formal_args))
3185 {
3186 inquiry_argument = false;
3187 return false;
3188 }
3189
3190 inquiry_argument = false;
3191
3192 /* Resume assumed_size checking. */
3193 need_full_assumed_size--;
3194
3195 /* If the procedure is external, check for usage. */
3196 if (sym && is_external_proc (sym))
3197 resolve_global_procedure (sym, &expr->where, 0);
3198
3199 if (sym && sym->ts.type == BT_CHARACTER
3200 && sym->ts.u.cl
3201 && sym->ts.u.cl->length == NULL
3202 && !sym->attr.dummy
3203 && !sym->ts.deferred
3204 && expr->value.function.esym == NULL
3205 && !sym->attr.contained)
3206 {
3207 /* Internal procedures are taken care of in resolve_contained_fntype. */
3208 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3209 "be used at %L since it is not a dummy argument",
3210 sym->name, &expr->where);
3211 return false;
3212 }
3213
3214 /* See if function is already resolved. */
3215
3216 if (expr->value.function.name != NULL
3217 || expr->value.function.isym != NULL)
3218 {
3219 if (expr->ts.type == BT_UNKNOWN)
3220 expr->ts = sym->ts;
3221 t = true;
3222 }
3223 else
3224 {
3225 /* Apply the rules of section 14.1.2. */
3226
3227 switch (procedure_kind (sym))
3228 {
3229 case PTYPE_GENERIC:
3230 t = resolve_generic_f (expr);
3231 break;
3232
3233 case PTYPE_SPECIFIC:
3234 t = resolve_specific_f (expr);
3235 break;
3236
3237 case PTYPE_UNKNOWN:
3238 t = resolve_unknown_f (expr);
3239 break;
3240
3241 default:
3242 gfc_internal_error ("resolve_function(): bad function type");
3243 }
3244 }
3245
3246 /* If the expression is still a function (it might have simplified),
3247 then we check to see if we are calling an elemental function. */
3248
3249 if (expr->expr_type != EXPR_FUNCTION)
3250 return t;
3251
3252 /* Walk the argument list looking for invalid BOZ. */
3253 for (arg = expr->value.function.actual; arg; arg = arg->next)
3254 if (arg->expr && arg->expr->ts.type == BT_BOZ)
3255 {
3256 gfc_error ("A BOZ literal constant at %L cannot appear as an "
3257 "actual argument in a function reference",
3258 &arg->expr->where);
3259 return false;
3260 }
3261
3262 temp = need_full_assumed_size;
3263 need_full_assumed_size = 0;
3264
3265 if (!resolve_elemental_actual (expr, NULL))
3266 return false;
3267
3268 if (omp_workshare_flag
3269 && expr->value.function.esym
3270 && ! gfc_elemental (expr->value.function.esym))
3271 {
3272 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3273 "in WORKSHARE construct", expr->value.function.esym->name,
3274 &expr->where);
3275 t = false;
3276 }
3277
3278 #define GENERIC_ID expr->value.function.isym->id
3279 else if (expr->value.function.actual != NULL
3280 && expr->value.function.isym != NULL
3281 && GENERIC_ID != GFC_ISYM_LBOUND
3282 && GENERIC_ID != GFC_ISYM_LCOBOUND
3283 && GENERIC_ID != GFC_ISYM_UCOBOUND
3284 && GENERIC_ID != GFC_ISYM_LEN
3285 && GENERIC_ID != GFC_ISYM_LOC
3286 && GENERIC_ID != GFC_ISYM_C_LOC
3287 && GENERIC_ID != GFC_ISYM_PRESENT)
3288 {
3289 /* Array intrinsics must also have the last upper bound of an
3290 assumed size array argument. UBOUND and SIZE have to be
3291 excluded from the check if the second argument is anything
3292 than a constant. */
3293
3294 for (arg = expr->value.function.actual; arg; arg = arg->next)
3295 {
3296 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3297 && arg == expr->value.function.actual
3298 && arg->next != NULL && arg->next->expr)
3299 {
3300 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3301 break;
3302
3303 if (arg->next->name && strcmp (arg->next->name, "kind") == 0)
3304 break;
3305
3306 if ((int)mpz_get_si (arg->next->expr->value.integer)
3307 < arg->expr->rank)
3308 break;
3309 }
3310
3311 if (arg->expr != NULL
3312 && arg->expr->rank > 0
3313 && resolve_assumed_size_actual (arg->expr))
3314 return false;
3315 }
3316 }
3317 #undef GENERIC_ID
3318
3319 need_full_assumed_size = temp;
3320
3321 if (!check_pure_function(expr))
3322 t = false;
3323
3324 /* Functions without the RECURSIVE attribution are not allowed to
3325 * call themselves. */
3326 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3327 {
3328 gfc_symbol *esym;
3329 esym = expr->value.function.esym;
3330
3331 if (is_illegal_recursion (esym, gfc_current_ns))
3332 {
3333 if (esym->attr.entry && esym->ns->entries)
3334 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3335 " function %qs is not RECURSIVE",
3336 esym->name, &expr->where, esym->ns->entries->sym->name);
3337 else
3338 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3339 " is not RECURSIVE", esym->name, &expr->where);
3340
3341 t = false;
3342 }
3343 }
3344
3345 /* Character lengths of use associated functions may contains references to
3346 symbols not referenced from the current program unit otherwise. Make sure
3347 those symbols are marked as referenced. */
3348
3349 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3350 && expr->value.function.esym->attr.use_assoc)
3351 {
3352 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3353 }
3354
3355 /* Make sure that the expression has a typespec that works. */
3356 if (expr->ts.type == BT_UNKNOWN)
3357 {
3358 if (expr->symtree->n.sym->result
3359 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3360 && !expr->symtree->n.sym->result->attr.proc_pointer)
3361 expr->ts = expr->symtree->n.sym->result->ts;
3362 }
3363
3364 if (!expr->ref && !expr->value.function.isym)
3365 {
3366 if (expr->value.function.esym)
3367 update_current_proc_array_outer_dependency (expr->value.function.esym);
3368 else
3369 update_current_proc_array_outer_dependency (sym);
3370 }
3371 else if (expr->ref)
3372 /* typebound procedure: Assume the worst. */
3373 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3374
3375 return t;
3376 }
3377
3378
3379 /************* Subroutine resolution *************/
3380
3381 static bool
3382 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3383 {
3384 if (gfc_pure (sym))
3385 return true;
3386
3387 if (forall_flag)
3388 {
3389 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3390 name, loc);
3391 return false;
3392 }
3393 else if (gfc_do_concurrent_flag)
3394 {
3395 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3396 "PURE", name, loc);
3397 return false;
3398 }
3399 else if (gfc_pure (NULL))
3400 {
3401 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3402 return false;
3403 }
3404
3405 gfc_unset_implicit_pure (NULL);
3406 return true;
3407 }
3408
3409
3410 static match
3411 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3412 {
3413 gfc_symbol *s;
3414
3415 if (sym->attr.generic)
3416 {
3417 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3418 if (s != NULL)
3419 {
3420 c->resolved_sym = s;
3421 if (!pure_subroutine (s, s->name, &c->loc))
3422 return MATCH_ERROR;
3423 return MATCH_YES;
3424 }
3425
3426 /* TODO: Need to search for elemental references in generic interface. */
3427 }
3428
3429 if (sym->attr.intrinsic)
3430 return gfc_intrinsic_sub_interface (c, 0);
3431
3432 return MATCH_NO;
3433 }
3434
3435
3436 static bool
3437 resolve_generic_s (gfc_code *c)
3438 {
3439 gfc_symbol *sym;
3440 match m;
3441
3442 sym = c->symtree->n.sym;
3443
3444 for (;;)
3445 {
3446 m = resolve_generic_s0 (c, sym);
3447 if (m == MATCH_YES)
3448 return true;
3449 else if (m == MATCH_ERROR)
3450 return false;
3451
3452 generic:
3453 if (sym->ns->parent == NULL)
3454 break;
3455 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3456
3457 if (sym == NULL)
3458 break;
3459 if (!generic_sym (sym))
3460 goto generic;
3461 }
3462
3463 /* Last ditch attempt. See if the reference is to an intrinsic
3464 that possesses a matching interface. 14.1.2.4 */
3465 sym = c->symtree->n.sym;
3466
3467 if (!gfc_is_intrinsic (sym, 1, c->loc))
3468 {
3469 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3470 sym->name, &c->loc);
3471 return false;
3472 }
3473
3474 m = gfc_intrinsic_sub_interface (c, 0);
3475 if (m == MATCH_YES)
3476 return true;
3477 if (m == MATCH_NO)
3478 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3479 "intrinsic subroutine interface", sym->name, &c->loc);
3480
3481 return false;
3482 }
3483
3484
3485 /* Resolve a subroutine call known to be specific. */
3486
3487 static match
3488 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3489 {
3490 match m;
3491
3492 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3493 {
3494 if (sym->attr.dummy)
3495 {
3496 sym->attr.proc = PROC_DUMMY;
3497 goto found;
3498 }
3499
3500 sym->attr.proc = PROC_EXTERNAL;
3501 goto found;
3502 }
3503
3504 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3505 goto found;
3506
3507 if (sym->attr.intrinsic)
3508 {
3509 m = gfc_intrinsic_sub_interface (c, 1);
3510 if (m == MATCH_YES)
3511 return MATCH_YES;
3512 if (m == MATCH_NO)
3513 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3514 "with an intrinsic", sym->name, &c->loc);
3515
3516 return MATCH_ERROR;
3517 }
3518
3519 return MATCH_NO;
3520
3521 found:
3522 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3523
3524 c->resolved_sym = sym;
3525 if (!pure_subroutine (sym, sym->name, &c->loc))
3526 return MATCH_ERROR;
3527
3528 return MATCH_YES;
3529 }
3530
3531
3532 static bool
3533 resolve_specific_s (gfc_code *c)
3534 {
3535 gfc_symbol *sym;
3536 match m;
3537
3538 sym = c->symtree->n.sym;
3539
3540 for (;;)
3541 {
3542 m = resolve_specific_s0 (c, sym);
3543 if (m == MATCH_YES)
3544 return true;
3545 if (m == MATCH_ERROR)
3546 return false;
3547
3548 if (sym->ns->parent == NULL)
3549 break;
3550
3551 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3552
3553 if (sym == NULL)
3554 break;
3555 }
3556
3557 sym = c->symtree->n.sym;
3558 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3559 sym->name, &c->loc);
3560
3561 return false;
3562 }
3563
3564
3565 /* Resolve a subroutine call not known to be generic nor specific. */
3566
3567 static bool
3568 resolve_unknown_s (gfc_code *c)
3569 {
3570 gfc_symbol *sym;
3571
3572 sym = c->symtree->n.sym;
3573
3574 if (sym->attr.dummy)
3575 {
3576 sym->attr.proc = PROC_DUMMY;
3577 goto found;
3578 }
3579
3580 /* See if we have an intrinsic function reference. */
3581
3582 if (gfc_is_intrinsic (sym, 1, c->loc))
3583 {
3584 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3585 return true;
3586 return false;
3587 }
3588
3589 /* The reference is to an external name. */
3590
3591 found:
3592 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3593
3594 c->resolved_sym = sym;
3595
3596 return pure_subroutine (sym, sym->name, &c->loc);
3597 }
3598
3599
3600 /* Resolve a subroutine call. Although it was tempting to use the same code
3601 for functions, subroutines and functions are stored differently and this
3602 makes things awkward. */
3603
3604 static bool
3605 resolve_call (gfc_code *c)
3606 {
3607 bool t;
3608 procedure_type ptype = PROC_INTRINSIC;
3609 gfc_symbol *csym, *sym;
3610 bool no_formal_args;
3611
3612 csym = c->symtree ? c->symtree->n.sym : NULL;
3613
3614 if (csym && csym->ts.type != BT_UNKNOWN)
3615 {
3616 gfc_error ("%qs at %L has a type, which is not consistent with "
3617 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3618 return false;
3619 }
3620
3621 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3622 {
3623 gfc_symtree *st;
3624 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3625 sym = st ? st->n.sym : NULL;
3626 if (sym && csym != sym
3627 && sym->ns == gfc_current_ns
3628 && sym->attr.flavor == FL_PROCEDURE
3629 && sym->attr.contained)
3630 {
3631 sym->refs++;
3632 if (csym->attr.generic)
3633 c->symtree->n.sym = sym;
3634 else
3635 c->symtree = st;
3636 csym = c->symtree->n.sym;
3637 }
3638 }
3639
3640 /* If this ia a deferred TBP, c->expr1 will be set. */
3641 if (!c->expr1 && csym)
3642 {
3643 if (csym->attr.abstract)
3644 {
3645 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3646 csym->name, &c->loc);
3647 return false;
3648 }
3649
3650 /* Subroutines without the RECURSIVE attribution are not allowed to
3651 call themselves. */
3652 if (is_illegal_recursion (csym, gfc_current_ns))
3653 {
3654 if (csym->attr.entry && csym->ns->entries)
3655 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3656 "as subroutine %qs is not RECURSIVE",
3657 csym->name, &c->loc, csym->ns->entries->sym->name);
3658 else
3659 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3660 "as it is not RECURSIVE", csym->name, &c->loc);
3661
3662 t = false;
3663 }
3664 }
3665
3666 /* Switch off assumed size checking and do this again for certain kinds
3667 of procedure, once the procedure itself is resolved. */
3668 need_full_assumed_size++;
3669
3670 if (csym)
3671 ptype = csym->attr.proc;
3672
3673 no_formal_args = csym && is_external_proc (csym)
3674 && gfc_sym_get_dummy_args (csym) == NULL;
3675 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3676 return false;
3677
3678 /* Resume assumed_size checking. */
3679 need_full_assumed_size--;
3680
3681 /* If external, check for usage. */
3682 if (csym && is_external_proc (csym))
3683 resolve_global_procedure (csym, &c->loc, 1);
3684
3685 t = true;
3686 if (c->resolved_sym == NULL)
3687 {
3688 c->resolved_isym = NULL;
3689 switch (procedure_kind (csym))
3690 {
3691 case PTYPE_GENERIC:
3692 t = resolve_generic_s (c);
3693 break;
3694
3695 case PTYPE_SPECIFIC:
3696 t = resolve_specific_s (c);
3697 break;
3698
3699 case PTYPE_UNKNOWN:
3700 t = resolve_unknown_s (c);
3701 break;
3702
3703 default:
3704 gfc_internal_error ("resolve_subroutine(): bad function type");
3705 }
3706 }
3707
3708 /* Some checks of elemental subroutine actual arguments. */
3709 if (!resolve_elemental_actual (NULL, c))
3710 return false;
3711
3712 if (!c->expr1)
3713 update_current_proc_array_outer_dependency (csym);
3714 else
3715 /* Typebound procedure: Assume the worst. */
3716 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3717
3718 return t;
3719 }
3720
3721
3722 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3723 op1->shape and op2->shape are non-NULL return true if their shapes
3724 match. If both op1->shape and op2->shape are non-NULL return false
3725 if their shapes do not match. If either op1->shape or op2->shape is
3726 NULL, return true. */
3727
3728 static bool
3729 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3730 {
3731 bool t;
3732 int i;
3733
3734 t = true;
3735
3736 if (op1->shape != NULL && op2->shape != NULL)
3737 {
3738 for (i = 0; i < op1->rank; i++)
3739 {
3740 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3741 {
3742 gfc_error ("Shapes for operands at %L and %L are not conformable",
3743 &op1->where, &op2->where);
3744 t = false;
3745 break;
3746 }
3747 }
3748 }
3749
3750 return t;
3751 }
3752
3753 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3754 For example A .AND. B becomes IAND(A, B). */
3755 static gfc_expr *
3756 logical_to_bitwise (gfc_expr *e)
3757 {
3758 gfc_expr *tmp, *op1, *op2;
3759 gfc_isym_id isym;
3760 gfc_actual_arglist *args = NULL;
3761
3762 gcc_assert (e->expr_type == EXPR_OP);
3763
3764 isym = GFC_ISYM_NONE;
3765 op1 = e->value.op.op1;
3766 op2 = e->value.op.op2;
3767
3768 switch (e->value.op.op)
3769 {
3770 case INTRINSIC_NOT:
3771 isym = GFC_ISYM_NOT;
3772 break;
3773 case INTRINSIC_AND:
3774 isym = GFC_ISYM_IAND;
3775 break;
3776 case INTRINSIC_OR:
3777 isym = GFC_ISYM_IOR;
3778 break;
3779 case INTRINSIC_NEQV:
3780 isym = GFC_ISYM_IEOR;
3781 break;
3782 case INTRINSIC_EQV:
3783 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3784 Change the old expression to NEQV, which will get replaced by IEOR,
3785 and wrap it in NOT. */
3786 tmp = gfc_copy_expr (e);
3787 tmp->value.op.op = INTRINSIC_NEQV;
3788 tmp = logical_to_bitwise (tmp);
3789 isym = GFC_ISYM_NOT;
3790 op1 = tmp;
3791 op2 = NULL;
3792 break;
3793 default:
3794 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3795 }
3796
3797 /* Inherit the original operation's operands as arguments. */
3798 args = gfc_get_actual_arglist ();
3799 args->expr = op1;
3800 if (op2)
3801 {
3802 args->next = gfc_get_actual_arglist ();
3803 args->next->expr = op2;
3804 }
3805
3806 /* Convert the expression to a function call. */
3807 e->expr_type = EXPR_FUNCTION;
3808 e->value.function.actual = args;
3809 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3810 e->value.function.name = e->value.function.isym->name;
3811 e->value.function.esym = NULL;
3812
3813 /* Make up a pre-resolved function call symtree if we need to. */
3814 if (!e->symtree || !e->symtree->n.sym)
3815 {
3816 gfc_symbol *sym;
3817 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3818 sym = e->symtree->n.sym;
3819 sym->result = sym;
3820 sym->attr.flavor = FL_PROCEDURE;
3821 sym->attr.function = 1;
3822 sym->attr.elemental = 1;
3823 sym->attr.pure = 1;
3824 sym->attr.referenced = 1;
3825 gfc_intrinsic_symbol (sym);
3826 gfc_commit_symbol (sym);
3827 }
3828
3829 args->name = e->value.function.isym->formal->name;
3830 if (e->value.function.isym->formal->next)
3831 args->next->name = e->value.function.isym->formal->next->name;
3832
3833 return e;
3834 }
3835
3836 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3837 candidates in CANDIDATES_LEN. */
3838 static void
3839 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3840 char **&candidates,
3841 size_t &candidates_len)
3842 {
3843 gfc_symtree *p;
3844
3845 if (uop == NULL)
3846 return;
3847
3848 /* Not sure how to properly filter here. Use all for a start.
3849 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3850 these as i suppose they don't make terribly sense. */
3851
3852 if (uop->n.uop->op != NULL)
3853 vec_push (candidates, candidates_len, uop->name);
3854
3855 p = uop->left;
3856 if (p)
3857 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3858
3859 p = uop->right;
3860 if (p)
3861 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3862 }
3863
3864 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3865
3866 static const char*
3867 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3868 {
3869 char **candidates = NULL;
3870 size_t candidates_len = 0;
3871 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3872 return gfc_closest_fuzzy_match (op, candidates);
3873 }
3874
3875
3876 /* Callback finding an impure function as an operand to an .and. or
3877 .or. expression. Remember the last function warned about to
3878 avoid double warnings when recursing. */
3879
3880 static int
3881 impure_function_callback (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED,
3882 void *data)
3883 {
3884 gfc_expr *f = *e;
3885 const char *name;
3886 static gfc_expr *last = NULL;
3887 bool *found = (bool *) data;
3888
3889 if (f->expr_type == EXPR_FUNCTION)
3890 {
3891 *found = 1;
3892 if (f != last && !gfc_pure_function (f, &name)
3893 && !gfc_implicit_pure_function (f))
3894 {
3895 if (name)
3896 gfc_warning (OPT_Wfunction_elimination,
3897 "Impure function %qs at %L might not be evaluated",
3898 name, &f->where);
3899 else
3900 gfc_warning (OPT_Wfunction_elimination,
3901 "Impure function at %L might not be evaluated",
3902 &f->where);
3903 }
3904 last = f;
3905 }
3906
3907 return 0;
3908 }
3909
3910 /* Return true if TYPE is character based, false otherwise. */
3911
3912 static int
3913 is_character_based (bt type)
3914 {
3915 return type == BT_CHARACTER || type == BT_HOLLERITH;
3916 }
3917
3918
3919 /* If expression is a hollerith, convert it to character and issue a warning
3920 for the conversion. */
3921
3922 static void
3923 convert_hollerith_to_character (gfc_expr *e)
3924 {
3925 if (e->ts.type == BT_HOLLERITH)
3926 {
3927 gfc_typespec t;
3928 gfc_clear_ts (&t);
3929 t.type = BT_CHARACTER;
3930 t.kind = e->ts.kind;
3931 gfc_convert_type_warn (e, &t, 2, 1);
3932 }
3933 }
3934
3935 /* Convert to numeric and issue a warning for the conversion. */
3936
3937 static void
3938 convert_to_numeric (gfc_expr *a, gfc_expr *b)
3939 {
3940 gfc_typespec t;
3941 gfc_clear_ts (&t);
3942 t.type = b->ts.type;
3943 t.kind = b->ts.kind;
3944 gfc_convert_type_warn (a, &t, 2, 1);
3945 }
3946
3947 /* Resolve an operator expression node. This can involve replacing the
3948 operation with a user defined function call. */
3949
3950 static bool
3951 resolve_operator (gfc_expr *e)
3952 {
3953 gfc_expr *op1, *op2;
3954 char msg[200];
3955 bool dual_locus_error;
3956 bool t = true;
3957
3958 /* Resolve all subnodes-- give them types. */
3959
3960 switch (e->value.op.op)
3961 {
3962 default:
3963 if (!gfc_resolve_expr (e->value.op.op2))
3964 return false;
3965
3966 /* Fall through. */
3967
3968 case INTRINSIC_NOT:
3969 case INTRINSIC_UPLUS:
3970 case INTRINSIC_UMINUS:
3971 case INTRINSIC_PARENTHESES:
3972 if (!gfc_resolve_expr (e->value.op.op1))
3973 return false;
3974 if (e->value.op.op1
3975 && e->value.op.op1->ts.type == BT_BOZ && !e->value.op.op2)
3976 {
3977 gfc_error ("BOZ literal constant at %L cannot be an operand of "
3978 "unary operator %qs", &e->value.op.op1->where,
3979 gfc_op2string (e->value.op.op));
3980 return false;
3981 }
3982 break;
3983 }
3984
3985 /* Typecheck the new node. */
3986
3987 op1 = e->value.op.op1;
3988 op2 = e->value.op.op2;
3989 dual_locus_error = false;
3990
3991 /* op1 and op2 cannot both be BOZ. */
3992 if (op1 && op1->ts.type == BT_BOZ
3993 && op2 && op2->ts.type == BT_BOZ)
3994 {
3995 gfc_error ("Operands at %L and %L cannot appear as operands of "
3996 "binary operator %qs", &op1->where, &op2->where,
3997 gfc_op2string (e->value.op.op));
3998 return false;
3999 }
4000
4001 if ((op1 && op1->expr_type == EXPR_NULL)
4002 || (op2 && op2->expr_type == EXPR_NULL))
4003 {
4004 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
4005 goto bad_op;
4006 }
4007
4008 switch (e->value.op.op)
4009 {
4010 case INTRINSIC_UPLUS:
4011 case INTRINSIC_UMINUS:
4012 if (op1->ts.type == BT_INTEGER
4013 || op1->ts.type == BT_REAL
4014 || op1->ts.type == BT_COMPLEX)
4015 {
4016 e->ts = op1->ts;
4017 break;
4018 }
4019
4020 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
4021 gfc_op2string (e->value.op.op), gfc_typename (e));
4022 goto bad_op;
4023
4024 case INTRINSIC_PLUS:
4025 case INTRINSIC_MINUS:
4026 case INTRINSIC_TIMES:
4027 case INTRINSIC_DIVIDE:
4028 case INTRINSIC_POWER:
4029 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4030 {
4031 gfc_type_convert_binary (e, 1);
4032 break;
4033 }
4034
4035 if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
4036 sprintf (msg,
4037 _("Unexpected derived-type entities in binary intrinsic "
4038 "numeric operator %%<%s%%> at %%L"),
4039 gfc_op2string (e->value.op.op));
4040 else
4041 sprintf (msg,
4042 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
4043 gfc_op2string (e->value.op.op), gfc_typename (op1),
4044 gfc_typename (op2));
4045 goto bad_op;
4046
4047 case INTRINSIC_CONCAT:
4048 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4049 && op1->ts.kind == op2->ts.kind)
4050 {
4051 e->ts.type = BT_CHARACTER;
4052 e->ts.kind = op1->ts.kind;
4053 break;
4054 }
4055
4056 sprintf (msg,
4057 _("Operands of string concatenation operator at %%L are %s/%s"),
4058 gfc_typename (op1), gfc_typename (op2));
4059 goto bad_op;
4060
4061 case INTRINSIC_AND:
4062 case INTRINSIC_OR:
4063 case INTRINSIC_EQV:
4064 case INTRINSIC_NEQV:
4065 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4066 {
4067 e->ts.type = BT_LOGICAL;
4068 e->ts.kind = gfc_kind_max (op1, op2);
4069 if (op1->ts.kind < e->ts.kind)
4070 gfc_convert_type (op1, &e->ts, 2);
4071 else if (op2->ts.kind < e->ts.kind)
4072 gfc_convert_type (op2, &e->ts, 2);
4073
4074 if (flag_frontend_optimize &&
4075 (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
4076 {
4077 /* Warn about short-circuiting
4078 with impure function as second operand. */
4079 bool op2_f = false;
4080 gfc_expr_walker (&op2, impure_function_callback, &op2_f);
4081 }
4082 break;
4083 }
4084
4085 /* Logical ops on integers become bitwise ops with -fdec. */
4086 else if (flag_dec
4087 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
4088 {
4089 e->ts.type = BT_INTEGER;
4090 e->ts.kind = gfc_kind_max (op1, op2);
4091 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
4092 gfc_convert_type (op1, &e->ts, 1);
4093 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
4094 gfc_convert_type (op2, &e->ts, 1);
4095 e = logical_to_bitwise (e);
4096 goto simplify_op;
4097 }
4098
4099 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
4100 gfc_op2string (e->value.op.op), gfc_typename (op1),
4101 gfc_typename (op2));
4102
4103 goto bad_op;
4104
4105 case INTRINSIC_NOT:
4106 /* Logical ops on integers become bitwise ops with -fdec. */
4107 if (flag_dec && op1->ts.type == BT_INTEGER)
4108 {
4109 e->ts.type = BT_INTEGER;
4110 e->ts.kind = op1->ts.kind;
4111 e = logical_to_bitwise (e);
4112 goto simplify_op;
4113 }
4114
4115 if (op1->ts.type == BT_LOGICAL)
4116 {
4117 e->ts.type = BT_LOGICAL;
4118 e->ts.kind = op1->ts.kind;
4119 break;
4120 }
4121
4122 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
4123 gfc_typename (op1));
4124 goto bad_op;
4125
4126 case INTRINSIC_GT:
4127 case INTRINSIC_GT_OS:
4128 case INTRINSIC_GE:
4129 case INTRINSIC_GE_OS:
4130 case INTRINSIC_LT:
4131 case INTRINSIC_LT_OS:
4132 case INTRINSIC_LE:
4133 case INTRINSIC_LE_OS:
4134 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
4135 {
4136 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
4137 goto bad_op;
4138 }
4139
4140 /* Fall through. */
4141
4142 case INTRINSIC_EQ:
4143 case INTRINSIC_EQ_OS:
4144 case INTRINSIC_NE:
4145 case INTRINSIC_NE_OS:
4146
4147 if (flag_dec
4148 && is_character_based (op1->ts.type)
4149 && is_character_based (op2->ts.type))
4150 {
4151 convert_hollerith_to_character (op1);
4152 convert_hollerith_to_character (op2);
4153 }
4154
4155 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4156 && op1->ts.kind == op2->ts.kind)
4157 {
4158 e->ts.type = BT_LOGICAL;
4159 e->ts.kind = gfc_default_logical_kind;
4160 break;
4161 }
4162
4163 /* If op1 is BOZ, then op2 is not!. Try to convert to type of op2. */
4164 if (op1->ts.type == BT_BOZ)
4165 {
4166 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4167 "an operand of a relational operator",
4168 &op1->where))
4169 return false;
4170
4171 if (op2->ts.type == BT_INTEGER && !gfc_boz2int (op1, op2->ts.kind))
4172 return false;
4173
4174 if (op2->ts.type == BT_REAL && !gfc_boz2real (op1, op2->ts.kind))
4175 return false;
4176 }
4177
4178 /* If op2 is BOZ, then op1 is not!. Try to convert to type of op2. */
4179 if (op2->ts.type == BT_BOZ)
4180 {
4181 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4182 "an operand of a relational operator",
4183 &op2->where))
4184 return false;
4185
4186 if (op1->ts.type == BT_INTEGER && !gfc_boz2int (op2, op1->ts.kind))
4187 return false;
4188
4189 if (op1->ts.type == BT_REAL && !gfc_boz2real (op2, op1->ts.kind))
4190 return false;
4191 }
4192 if (flag_dec
4193 && op1->ts.type == BT_HOLLERITH && gfc_numeric_ts (&op2->ts))
4194 convert_to_numeric (op1, op2);
4195
4196 if (flag_dec
4197 && gfc_numeric_ts (&op1->ts) && op2->ts.type == BT_HOLLERITH)
4198 convert_to_numeric (op2, op1);
4199
4200 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4201 {
4202 gfc_type_convert_binary (e, 1);
4203
4204 e->ts.type = BT_LOGICAL;
4205 e->ts.kind = gfc_default_logical_kind;
4206
4207 if (warn_compare_reals)
4208 {
4209 gfc_intrinsic_op op = e->value.op.op;
4210
4211 /* Type conversion has made sure that the types of op1 and op2
4212 agree, so it is only necessary to check the first one. */
4213 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
4214 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
4215 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
4216 {
4217 const char *msg;
4218
4219 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4220 msg = "Equality comparison for %s at %L";
4221 else
4222 msg = "Inequality comparison for %s at %L";
4223
4224 gfc_warning (OPT_Wcompare_reals, msg,
4225 gfc_typename (op1), &op1->where);
4226 }
4227 }
4228
4229 break;
4230 }
4231
4232 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4233 sprintf (msg,
4234 _("Logicals at %%L must be compared with %s instead of %s"),
4235 (e->value.op.op == INTRINSIC_EQ
4236 || e->value.op.op == INTRINSIC_EQ_OS)
4237 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4238 else
4239 sprintf (msg,
4240 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4241 gfc_op2string (e->value.op.op), gfc_typename (op1),
4242 gfc_typename (op2));
4243
4244 goto bad_op;
4245
4246 case INTRINSIC_USER:
4247 if (e->value.op.uop->op == NULL)
4248 {
4249 const char *name = e->value.op.uop->name;
4250 const char *guessed;
4251 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4252 if (guessed)
4253 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4254 name, guessed);
4255 else
4256 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4257 }
4258 else if (op2 == NULL)
4259 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4260 e->value.op.uop->name, gfc_typename (op1));
4261 else
4262 {
4263 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4264 e->value.op.uop->name, gfc_typename (op1),
4265 gfc_typename (op2));
4266 e->value.op.uop->op->sym->attr.referenced = 1;
4267 }
4268
4269 goto bad_op;
4270
4271 case INTRINSIC_PARENTHESES:
4272 e->ts = op1->ts;
4273 if (e->ts.type == BT_CHARACTER)
4274 e->ts.u.cl = op1->ts.u.cl;
4275 break;
4276
4277 default:
4278 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4279 }
4280
4281 /* Deal with arrayness of an operand through an operator. */
4282
4283 switch (e->value.op.op)
4284 {
4285 case INTRINSIC_PLUS:
4286 case INTRINSIC_MINUS:
4287 case INTRINSIC_TIMES:
4288 case INTRINSIC_DIVIDE:
4289 case INTRINSIC_POWER:
4290 case INTRINSIC_CONCAT:
4291 case INTRINSIC_AND:
4292 case INTRINSIC_OR:
4293 case INTRINSIC_EQV:
4294 case INTRINSIC_NEQV:
4295 case INTRINSIC_EQ:
4296 case INTRINSIC_EQ_OS:
4297 case INTRINSIC_NE:
4298 case INTRINSIC_NE_OS:
4299 case INTRINSIC_GT:
4300 case INTRINSIC_GT_OS:
4301 case INTRINSIC_GE:
4302 case INTRINSIC_GE_OS:
4303 case INTRINSIC_LT:
4304 case INTRINSIC_LT_OS:
4305 case INTRINSIC_LE:
4306 case INTRINSIC_LE_OS:
4307
4308 if (op1->rank == 0 && op2->rank == 0)
4309 e->rank = 0;
4310
4311 if (op1->rank == 0 && op2->rank != 0)
4312 {
4313 e->rank = op2->rank;
4314
4315 if (e->shape == NULL)
4316 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4317 }
4318
4319 if (op1->rank != 0 && op2->rank == 0)
4320 {
4321 e->rank = op1->rank;
4322
4323 if (e->shape == NULL)
4324 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4325 }
4326
4327 if (op1->rank != 0 && op2->rank != 0)
4328 {
4329 if (op1->rank == op2->rank)
4330 {
4331 e->rank = op1->rank;
4332 if (e->shape == NULL)
4333 {
4334 t = compare_shapes (op1, op2);
4335 if (!t)
4336 e->shape = NULL;
4337 else
4338 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4339 }
4340 }
4341 else
4342 {
4343 /* Allow higher level expressions to work. */
4344 e->rank = 0;
4345
4346 /* Try user-defined operators, and otherwise throw an error. */
4347 dual_locus_error = true;
4348 sprintf (msg,
4349 _("Inconsistent ranks for operator at %%L and %%L"));
4350 goto bad_op;
4351 }
4352 }
4353
4354 break;
4355
4356 case INTRINSIC_PARENTHESES:
4357 case INTRINSIC_NOT:
4358 case INTRINSIC_UPLUS:
4359 case INTRINSIC_UMINUS:
4360 /* Simply copy arrayness attribute */
4361 e->rank = op1->rank;
4362
4363 if (e->shape == NULL)
4364 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4365
4366 break;
4367
4368 default:
4369 break;
4370 }
4371
4372 simplify_op:
4373
4374 /* Attempt to simplify the expression. */
4375 if (t)
4376 {
4377 t = gfc_simplify_expr (e, 0);
4378 /* Some calls do not succeed in simplification and return false
4379 even though there is no error; e.g. variable references to
4380 PARAMETER arrays. */
4381 if (!gfc_is_constant_expr (e))
4382 t = true;
4383 }
4384 return t;
4385
4386 bad_op:
4387
4388 {
4389 match m = gfc_extend_expr (e);
4390 if (m == MATCH_YES)
4391 return true;
4392 if (m == MATCH_ERROR)
4393 return false;
4394 }
4395
4396 if (dual_locus_error)
4397 gfc_error (msg, &op1->where, &op2->where);
4398 else
4399 gfc_error (msg, &e->where);
4400
4401 return false;
4402 }
4403
4404
4405 /************** Array resolution subroutines **************/
4406
4407 enum compare_result
4408 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4409
4410 /* Compare two integer expressions. */
4411
4412 static compare_result
4413 compare_bound (gfc_expr *a, gfc_expr *b)
4414 {
4415 int i;
4416
4417 if (a == NULL || a->expr_type != EXPR_CONSTANT
4418 || b == NULL || b->expr_type != EXPR_CONSTANT)
4419 return CMP_UNKNOWN;
4420
4421 /* If either of the types isn't INTEGER, we must have
4422 raised an error earlier. */
4423
4424 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4425 return CMP_UNKNOWN;
4426
4427 i = mpz_cmp (a->value.integer, b->value.integer);
4428
4429 if (i < 0)
4430 return CMP_LT;
4431 if (i > 0)
4432 return CMP_GT;
4433 return CMP_EQ;
4434 }
4435
4436
4437 /* Compare an integer expression with an integer. */
4438
4439 static compare_result
4440 compare_bound_int (gfc_expr *a, int b)
4441 {
4442 int i;
4443
4444 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4445 return CMP_UNKNOWN;
4446
4447 if (a->ts.type != BT_INTEGER)
4448 gfc_internal_error ("compare_bound_int(): Bad expression");
4449
4450 i = mpz_cmp_si (a->value.integer, b);
4451
4452 if (i < 0)
4453 return CMP_LT;
4454 if (i > 0)
4455 return CMP_GT;
4456 return CMP_EQ;
4457 }
4458
4459
4460 /* Compare an integer expression with a mpz_t. */
4461
4462 static compare_result
4463 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4464 {
4465 int i;
4466
4467 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4468 return CMP_UNKNOWN;
4469
4470 if (a->ts.type != BT_INTEGER)
4471 gfc_internal_error ("compare_bound_int(): Bad expression");
4472
4473 i = mpz_cmp (a->value.integer, b);
4474
4475 if (i < 0)
4476 return CMP_LT;
4477 if (i > 0)
4478 return CMP_GT;
4479 return CMP_EQ;
4480 }
4481
4482
4483 /* Compute the last value of a sequence given by a triplet.
4484 Return 0 if it wasn't able to compute the last value, or if the
4485 sequence if empty, and 1 otherwise. */
4486
4487 static int
4488 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4489 gfc_expr *stride, mpz_t last)
4490 {
4491 mpz_t rem;
4492
4493 if (start == NULL || start->expr_type != EXPR_CONSTANT
4494 || end == NULL || end->expr_type != EXPR_CONSTANT
4495 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4496 return 0;
4497
4498 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4499 || (stride != NULL && stride->ts.type != BT_INTEGER))
4500 return 0;
4501
4502 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4503 {
4504 if (compare_bound (start, end) == CMP_GT)
4505 return 0;
4506 mpz_set (last, end->value.integer);
4507 return 1;
4508 }
4509
4510 if (compare_bound_int (stride, 0) == CMP_GT)
4511 {
4512 /* Stride is positive */
4513 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4514 return 0;
4515 }
4516 else
4517 {
4518 /* Stride is negative */
4519 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4520 return 0;
4521 }
4522
4523 mpz_init (rem);
4524 mpz_sub (rem, end->value.integer, start->value.integer);
4525 mpz_tdiv_r (rem, rem, stride->value.integer);
4526 mpz_sub (last, end->value.integer, rem);
4527 mpz_clear (rem);
4528
4529 return 1;
4530 }
4531
4532
4533 /* Compare a single dimension of an array reference to the array
4534 specification. */
4535
4536 static bool
4537 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4538 {
4539 mpz_t last_value;
4540
4541 if (ar->dimen_type[i] == DIMEN_STAR)
4542 {
4543 gcc_assert (ar->stride[i] == NULL);
4544 /* This implies [*] as [*:] and [*:3] are not possible. */
4545 if (ar->start[i] == NULL)
4546 {
4547 gcc_assert (ar->end[i] == NULL);
4548 return true;
4549 }
4550 }
4551
4552 /* Given start, end and stride values, calculate the minimum and
4553 maximum referenced indexes. */
4554
4555 switch (ar->dimen_type[i])
4556 {
4557 case DIMEN_VECTOR:
4558 case DIMEN_THIS_IMAGE:
4559 break;
4560
4561 case DIMEN_STAR:
4562 case DIMEN_ELEMENT:
4563 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4564 {
4565 if (i < as->rank)
4566 gfc_warning (0, "Array reference at %L is out of bounds "
4567 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4568 mpz_get_si (ar->start[i]->value.integer),
4569 mpz_get_si (as->lower[i]->value.integer), i+1);
4570 else
4571 gfc_warning (0, "Array reference at %L is out of bounds "
4572 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4573 mpz_get_si (ar->start[i]->value.integer),
4574 mpz_get_si (as->lower[i]->value.integer),
4575 i + 1 - as->rank);
4576 return true;
4577 }
4578 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4579 {
4580 if (i < as->rank)
4581 gfc_warning (0, "Array reference at %L is out of bounds "
4582 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4583 mpz_get_si (ar->start[i]->value.integer),
4584 mpz_get_si (as->upper[i]->value.integer), i+1);
4585 else
4586 gfc_warning (0, "Array reference at %L is out of bounds "
4587 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4588 mpz_get_si (ar->start[i]->value.integer),
4589 mpz_get_si (as->upper[i]->value.integer),
4590 i + 1 - as->rank);
4591 return true;
4592 }
4593
4594 break;
4595
4596 case DIMEN_RANGE:
4597 {
4598 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4599 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4600
4601 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4602
4603 /* Check for zero stride, which is not allowed. */
4604 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4605 {
4606 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4607 return false;
4608 }
4609
4610 /* if start == len || (stride > 0 && start < len)
4611 || (stride < 0 && start > len),
4612 then the array section contains at least one element. In this
4613 case, there is an out-of-bounds access if
4614 (start < lower || start > upper). */
4615 if (compare_bound (AR_START, AR_END) == CMP_EQ
4616 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4617 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4618 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4619 && comp_start_end == CMP_GT))
4620 {
4621 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4622 {
4623 gfc_warning (0, "Lower array reference at %L is out of bounds "
4624 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4625 mpz_get_si (AR_START->value.integer),
4626 mpz_get_si (as->lower[i]->value.integer), i+1);
4627 return true;
4628 }
4629 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4630 {
4631 gfc_warning (0, "Lower array reference at %L is out of bounds "
4632 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4633 mpz_get_si (AR_START->value.integer),
4634 mpz_get_si (as->upper[i]->value.integer), i+1);
4635 return true;
4636 }
4637 }
4638
4639 /* If we can compute the highest index of the array section,
4640 then it also has to be between lower and upper. */
4641 mpz_init (last_value);
4642 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4643 last_value))
4644 {
4645 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4646 {
4647 gfc_warning (0, "Upper array reference at %L is out of bounds "
4648 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4649 mpz_get_si (last_value),
4650 mpz_get_si (as->lower[i]->value.integer), i+1);
4651 mpz_clear (last_value);
4652 return true;
4653 }
4654 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4655 {
4656 gfc_warning (0, "Upper array reference at %L is out of bounds "
4657 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4658 mpz_get_si (last_value),
4659 mpz_get_si (as->upper[i]->value.integer), i+1);
4660 mpz_clear (last_value);
4661 return true;
4662 }
4663 }
4664 mpz_clear (last_value);
4665
4666 #undef AR_START
4667 #undef AR_END
4668 }
4669 break;
4670
4671 default:
4672 gfc_internal_error ("check_dimension(): Bad array reference");
4673 }
4674
4675 return true;
4676 }
4677
4678
4679 /* Compare an array reference with an array specification. */
4680
4681 static bool
4682 compare_spec_to_ref (gfc_array_ref *ar)
4683 {
4684 gfc_array_spec *as;
4685 int i;
4686
4687 as = ar->as;
4688 i = as->rank - 1;
4689 /* TODO: Full array sections are only allowed as actual parameters. */
4690 if (as->type == AS_ASSUMED_SIZE
4691 && (/*ar->type == AR_FULL
4692 ||*/ (ar->type == AR_SECTION
4693 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4694 {
4695 gfc_error ("Rightmost upper bound of assumed size array section "
4696 "not specified at %L", &ar->where);
4697 return false;
4698 }
4699
4700 if (ar->type == AR_FULL)
4701 return true;
4702
4703 if (as->rank != ar->dimen)
4704 {
4705 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4706 &ar->where, ar->dimen, as->rank);
4707 return false;
4708 }
4709
4710 /* ar->codimen == 0 is a local array. */
4711 if (as->corank != ar->codimen && ar->codimen != 0)
4712 {
4713 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4714 &ar->where, ar->codimen, as->corank);
4715 return false;
4716 }
4717
4718 for (i = 0; i < as->rank; i++)
4719 if (!check_dimension (i, ar, as))
4720 return false;
4721
4722 /* Local access has no coarray spec. */
4723 if (ar->codimen != 0)
4724 for (i = as->rank; i < as->rank + as->corank; i++)
4725 {
4726 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4727 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4728 {
4729 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4730 i + 1 - as->rank, &ar->where);
4731 return false;
4732 }
4733 if (!check_dimension (i, ar, as))
4734 return false;
4735 }
4736
4737 return true;
4738 }
4739
4740
4741 /* Resolve one part of an array index. */
4742
4743 static bool
4744 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4745 int force_index_integer_kind)
4746 {
4747 gfc_typespec ts;
4748
4749 if (index == NULL)
4750 return true;
4751
4752 if (!gfc_resolve_expr (index))
4753 return false;
4754
4755 if (check_scalar && index->rank != 0)
4756 {
4757 gfc_error ("Array index at %L must be scalar", &index->where);
4758 return false;
4759 }
4760
4761 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4762 {
4763 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4764 &index->where, gfc_basic_typename (index->ts.type));
4765 return false;
4766 }
4767
4768 if (index->ts.type == BT_REAL)
4769 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4770 &index->where))
4771 return false;
4772
4773 if ((index->ts.kind != gfc_index_integer_kind
4774 && force_index_integer_kind)
4775 || index->ts.type != BT_INTEGER)
4776 {
4777 gfc_clear_ts (&ts);
4778 ts.type = BT_INTEGER;
4779 ts.kind = gfc_index_integer_kind;
4780
4781 gfc_convert_type_warn (index, &ts, 2, 0);
4782 }
4783
4784 return true;
4785 }
4786
4787 /* Resolve one part of an array index. */
4788
4789 bool
4790 gfc_resolve_index (gfc_expr *index, int check_scalar)
4791 {
4792 return gfc_resolve_index_1 (index, check_scalar, 1);
4793 }
4794
4795 /* Resolve a dim argument to an intrinsic function. */
4796
4797 bool
4798 gfc_resolve_dim_arg (gfc_expr *dim)
4799 {
4800 if (dim == NULL)
4801 return true;
4802
4803 if (!gfc_resolve_expr (dim))
4804 return false;
4805
4806 if (dim->rank != 0)
4807 {
4808 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4809 return false;
4810
4811 }
4812
4813 if (dim->ts.type != BT_INTEGER)
4814 {
4815 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4816 return false;
4817 }
4818
4819 if (dim->ts.kind != gfc_index_integer_kind)
4820 {
4821 gfc_typespec ts;
4822
4823 gfc_clear_ts (&ts);
4824 ts.type = BT_INTEGER;
4825 ts.kind = gfc_index_integer_kind;
4826
4827 gfc_convert_type_warn (dim, &ts, 2, 0);
4828 }
4829
4830 return true;
4831 }
4832
4833 /* Given an expression that contains array references, update those array
4834 references to point to the right array specifications. While this is
4835 filled in during matching, this information is difficult to save and load
4836 in a module, so we take care of it here.
4837
4838 The idea here is that the original array reference comes from the
4839 base symbol. We traverse the list of reference structures, setting
4840 the stored reference to references. Component references can
4841 provide an additional array specification. */
4842
4843 static void
4844 find_array_spec (gfc_expr *e)
4845 {
4846 gfc_array_spec *as;
4847 gfc_component *c;
4848 gfc_ref *ref;
4849 bool class_as = false;
4850
4851 if (e->symtree->n.sym->ts.type == BT_CLASS)
4852 {
4853 as = CLASS_DATA (e->symtree->n.sym)->as;
4854 class_as = true;
4855 }
4856 else
4857 as = e->symtree->n.sym->as;
4858
4859 for (ref = e->ref; ref; ref = ref->next)
4860 switch (ref->type)
4861 {
4862 case REF_ARRAY:
4863 if (as == NULL)
4864 gfc_internal_error ("find_array_spec(): Missing spec");
4865
4866 ref->u.ar.as = as;
4867 as = NULL;
4868 break;
4869
4870 case REF_COMPONENT:
4871 c = ref->u.c.component;
4872 if (c->attr.dimension)
4873 {
4874 if (as != NULL && !(class_as && as == c->as))
4875 gfc_internal_error ("find_array_spec(): unused as(1)");
4876 as = c->as;
4877 }
4878
4879 break;
4880
4881 case REF_SUBSTRING:
4882 case REF_INQUIRY:
4883 break;
4884 }
4885
4886 if (as != NULL)
4887 gfc_internal_error ("find_array_spec(): unused as(2)");
4888 }
4889
4890
4891 /* Resolve an array reference. */
4892
4893 static bool
4894 resolve_array_ref (gfc_array_ref *ar)
4895 {
4896 int i, check_scalar;
4897 gfc_expr *e;
4898
4899 for (i = 0; i < ar->dimen + ar->codimen; i++)
4900 {
4901 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4902
4903 /* Do not force gfc_index_integer_kind for the start. We can
4904 do fine with any integer kind. This avoids temporary arrays
4905 created for indexing with a vector. */
4906 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4907 return false;
4908 if (!gfc_resolve_index (ar->end[i], check_scalar))
4909 return false;
4910 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4911 return false;
4912
4913 e = ar->start[i];
4914
4915 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4916 switch (e->rank)
4917 {
4918 case 0:
4919 ar->dimen_type[i] = DIMEN_ELEMENT;
4920 break;
4921
4922 case 1:
4923 ar->dimen_type[i] = DIMEN_VECTOR;
4924 if (e->expr_type == EXPR_VARIABLE
4925 && e->symtree->n.sym->ts.type == BT_DERIVED)
4926 ar->start[i] = gfc_get_parentheses (e);
4927 break;
4928
4929 default:
4930 gfc_error ("Array index at %L is an array of rank %d",
4931 &ar->c_where[i], e->rank);
4932 return false;
4933 }
4934
4935 /* Fill in the upper bound, which may be lower than the
4936 specified one for something like a(2:10:5), which is
4937 identical to a(2:7:5). Only relevant for strides not equal
4938 to one. Don't try a division by zero. */
4939 if (ar->dimen_type[i] == DIMEN_RANGE
4940 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4941 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4942 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4943 {
4944 mpz_t size, end;
4945
4946 if (gfc_ref_dimen_size (ar, i, &size, &end))
4947 {
4948 if (ar->end[i] == NULL)
4949 {
4950 ar->end[i] =
4951 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4952 &ar->where);
4953 mpz_set (ar->end[i]->value.integer, end);
4954 }
4955 else if (ar->end[i]->ts.type == BT_INTEGER
4956 && ar->end[i]->expr_type == EXPR_CONSTANT)
4957 {
4958 mpz_set (ar->end[i]->value.integer, end);
4959 }
4960 else
4961 gcc_unreachable ();
4962
4963 mpz_clear (size);
4964 mpz_clear (end);
4965 }
4966 }
4967 }
4968
4969 if (ar->type == AR_FULL)
4970 {
4971 if (ar->as->rank == 0)
4972 ar->type = AR_ELEMENT;
4973
4974 /* Make sure array is the same as array(:,:), this way
4975 we don't need to special case all the time. */
4976 ar->dimen = ar->as->rank;
4977 for (i = 0; i < ar->dimen; i++)
4978 {
4979 ar->dimen_type[i] = DIMEN_RANGE;
4980
4981 gcc_assert (ar->start[i] == NULL);
4982 gcc_assert (ar->end[i] == NULL);
4983 gcc_assert (ar->stride[i] == NULL);
4984 }
4985 }
4986
4987 /* If the reference type is unknown, figure out what kind it is. */
4988
4989 if (ar->type == AR_UNKNOWN)
4990 {
4991 ar->type = AR_ELEMENT;
4992 for (i = 0; i < ar->dimen; i++)
4993 if (ar->dimen_type[i] == DIMEN_RANGE
4994 || ar->dimen_type[i] == DIMEN_VECTOR)
4995 {
4996 ar->type = AR_SECTION;
4997 break;
4998 }
4999 }
5000
5001 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
5002 return false;
5003
5004 if (ar->as->corank && ar->codimen == 0)
5005 {
5006 int n;
5007 ar->codimen = ar->as->corank;
5008 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
5009 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
5010 }
5011
5012 return true;
5013 }
5014
5015
5016 static bool
5017 resolve_substring (gfc_ref *ref, bool *equal_length)
5018 {
5019 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
5020
5021 if (ref->u.ss.start != NULL)
5022 {
5023 if (!gfc_resolve_expr (ref->u.ss.start))
5024 return false;
5025
5026 if (ref->u.ss.start->ts.type != BT_INTEGER)
5027 {
5028 gfc_error ("Substring start index at %L must be of type INTEGER",
5029 &ref->u.ss.start->where);
5030 return false;
5031 }
5032
5033 if (ref->u.ss.start->rank != 0)
5034 {
5035 gfc_error ("Substring start index at %L must be scalar",
5036 &ref->u.ss.start->where);
5037 return false;
5038 }
5039
5040 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
5041 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5042 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5043 {
5044 gfc_error ("Substring start index at %L is less than one",
5045 &ref->u.ss.start->where);
5046 return false;
5047 }
5048 }
5049
5050 if (ref->u.ss.end != NULL)
5051 {
5052 if (!gfc_resolve_expr (ref->u.ss.end))
5053 return false;
5054
5055 if (ref->u.ss.end->ts.type != BT_INTEGER)
5056 {
5057 gfc_error ("Substring end index at %L must be of type INTEGER",
5058 &ref->u.ss.end->where);
5059 return false;
5060 }
5061
5062 if (ref->u.ss.end->rank != 0)
5063 {
5064 gfc_error ("Substring end index at %L must be scalar",
5065 &ref->u.ss.end->where);
5066 return false;
5067 }
5068
5069 if (ref->u.ss.length != NULL
5070 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
5071 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5072 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5073 {
5074 gfc_error ("Substring end index at %L exceeds the string length",
5075 &ref->u.ss.start->where);
5076 return false;
5077 }
5078
5079 if (compare_bound_mpz_t (ref->u.ss.end,
5080 gfc_integer_kinds[k].huge) == CMP_GT
5081 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5082 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5083 {
5084 gfc_error ("Substring end index at %L is too large",
5085 &ref->u.ss.end->where);
5086 return false;
5087 }
5088 /* If the substring has the same length as the original
5089 variable, the reference itself can be deleted. */
5090
5091 if (ref->u.ss.length != NULL
5092 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_EQ
5093 && compare_bound_int (ref->u.ss.start, 1) == CMP_EQ)
5094 *equal_length = true;
5095 }
5096
5097 return true;
5098 }
5099
5100
5101 /* This function supplies missing substring charlens. */
5102
5103 void
5104 gfc_resolve_substring_charlen (gfc_expr *e)
5105 {
5106 gfc_ref *char_ref;
5107 gfc_expr *start, *end;
5108 gfc_typespec *ts = NULL;
5109 mpz_t diff;
5110
5111 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
5112 {
5113 if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
5114 break;
5115 if (char_ref->type == REF_COMPONENT)
5116 ts = &char_ref->u.c.component->ts;
5117 }
5118
5119 if (!char_ref || char_ref->type == REF_INQUIRY)
5120 return;
5121
5122 gcc_assert (char_ref->next == NULL);
5123
5124 if (e->ts.u.cl)
5125 {
5126 if (e->ts.u.cl->length)
5127 gfc_free_expr (e->ts.u.cl->length);
5128 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
5129 return;
5130 }
5131
5132 e->ts.type = BT_CHARACTER;
5133 e->ts.kind = gfc_default_character_kind;
5134
5135 if (!e->ts.u.cl)
5136 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5137
5138 if (char_ref->u.ss.start)
5139 start = gfc_copy_expr (char_ref->u.ss.start);
5140 else
5141 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
5142
5143 if (char_ref->u.ss.end)
5144 end = gfc_copy_expr (char_ref->u.ss.end);
5145 else if (e->expr_type == EXPR_VARIABLE)
5146 {
5147 if (!ts)
5148 ts = &e->symtree->n.sym->ts;
5149 end = gfc_copy_expr (ts->u.cl->length);
5150 }
5151 else
5152 end = NULL;
5153
5154 if (!start || !end)
5155 {
5156 gfc_free_expr (start);
5157 gfc_free_expr (end);
5158 return;
5159 }
5160
5161 /* Length = (end - start + 1).
5162 Check first whether it has a constant length. */
5163 if (gfc_dep_difference (end, start, &diff))
5164 {
5165 gfc_expr *len = gfc_get_constant_expr (BT_INTEGER, gfc_charlen_int_kind,
5166 &e->where);
5167
5168 mpz_add_ui (len->value.integer, diff, 1);
5169 mpz_clear (diff);
5170 e->ts.u.cl->length = len;
5171 /* The check for length < 0 is handled below */
5172 }
5173 else
5174 {
5175 e->ts.u.cl->length = gfc_subtract (end, start);
5176 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
5177 gfc_get_int_expr (gfc_charlen_int_kind,
5178 NULL, 1));
5179 }
5180
5181 /* F2008, 6.4.1: Both the starting point and the ending point shall
5182 be within the range 1, 2, ..., n unless the starting point exceeds
5183 the ending point, in which case the substring has length zero. */
5184
5185 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
5186 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
5187
5188 e->ts.u.cl->length->ts.type = BT_INTEGER;
5189 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5190
5191 /* Make sure that the length is simplified. */
5192 gfc_simplify_expr (e->ts.u.cl->length, 1);
5193 gfc_resolve_expr (e->ts.u.cl->length);
5194 }
5195
5196
5197 /* Resolve subtype references. */
5198
5199 bool
5200 gfc_resolve_ref (gfc_expr *expr)
5201 {
5202 int current_part_dimension, n_components, seen_part_dimension;
5203 gfc_ref *ref, **prev;
5204 bool equal_length;
5205
5206 for (ref = expr->ref; ref; ref = ref->next)
5207 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
5208 {
5209 find_array_spec (expr);
5210 break;
5211 }
5212
5213 for (prev = &expr->ref; *prev != NULL;
5214 prev = *prev == NULL ? prev : &(*prev)->next)
5215 switch ((*prev)->type)
5216 {
5217 case REF_ARRAY:
5218 if (!resolve_array_ref (&(*prev)->u.ar))
5219 return false;
5220 break;
5221
5222 case REF_COMPONENT:
5223 case REF_INQUIRY:
5224 break;
5225
5226 case REF_SUBSTRING:
5227 equal_length = false;
5228 if (!resolve_substring (*prev, &equal_length))
5229 return false;
5230
5231 if (expr->expr_type != EXPR_SUBSTRING && equal_length)
5232 {
5233 /* Remove the reference and move the charlen, if any. */
5234 ref = *prev;
5235 *prev = ref->next;
5236 ref->next = NULL;
5237 expr->ts.u.cl = ref->u.ss.length;
5238 ref->u.ss.length = NULL;
5239 gfc_free_ref_list (ref);
5240 }
5241 break;
5242 }
5243
5244 /* Check constraints on part references. */
5245
5246 current_part_dimension = 0;
5247 seen_part_dimension = 0;
5248 n_components = 0;
5249
5250 for (ref = expr->ref; ref; ref = ref->next)
5251 {
5252 switch (ref->type)
5253 {
5254 case REF_ARRAY:
5255 switch (ref->u.ar.type)
5256 {
5257 case AR_FULL:
5258 /* Coarray scalar. */
5259 if (ref->u.ar.as->rank == 0)
5260 {
5261 current_part_dimension = 0;
5262 break;
5263 }
5264 /* Fall through. */
5265 case AR_SECTION:
5266 current_part_dimension = 1;
5267 break;
5268
5269 case AR_ELEMENT:
5270 current_part_dimension = 0;
5271 break;
5272
5273 case AR_UNKNOWN:
5274 gfc_internal_error ("resolve_ref(): Bad array reference");
5275 }
5276
5277 break;
5278
5279 case REF_COMPONENT:
5280 if (current_part_dimension || seen_part_dimension)
5281 {
5282 /* F03:C614. */
5283 if (ref->u.c.component->attr.pointer
5284 || ref->u.c.component->attr.proc_pointer
5285 || (ref->u.c.component->ts.type == BT_CLASS
5286 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5287 {
5288 gfc_error ("Component to the right of a part reference "
5289 "with nonzero rank must not have the POINTER "
5290 "attribute at %L", &expr->where);
5291 return false;
5292 }
5293 else if (ref->u.c.component->attr.allocatable
5294 || (ref->u.c.component->ts.type == BT_CLASS
5295 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5296
5297 {
5298 gfc_error ("Component to the right of a part reference "
5299 "with nonzero rank must not have the ALLOCATABLE "
5300 "attribute at %L", &expr->where);
5301 return false;
5302 }
5303 }
5304
5305 n_components++;
5306 break;
5307
5308 case REF_SUBSTRING:
5309 case REF_INQUIRY:
5310 break;
5311 }
5312
5313 if (((ref->type == REF_COMPONENT && n_components > 1)
5314 || ref->next == NULL)
5315 && current_part_dimension
5316 && seen_part_dimension)
5317 {
5318 gfc_error ("Two or more part references with nonzero rank must "
5319 "not be specified at %L", &expr->where);
5320 return false;
5321 }
5322
5323 if (ref->type == REF_COMPONENT)
5324 {
5325 if (current_part_dimension)
5326 seen_part_dimension = 1;
5327
5328 /* reset to make sure */
5329 current_part_dimension = 0;
5330 }
5331 }
5332
5333 return true;
5334 }
5335
5336
5337 /* Given an expression, determine its shape. This is easier than it sounds.
5338 Leaves the shape array NULL if it is not possible to determine the shape. */
5339
5340 static void
5341 expression_shape (gfc_expr *e)
5342 {
5343 mpz_t array[GFC_MAX_DIMENSIONS];
5344 int i;
5345
5346 if (e->rank <= 0 || e->shape != NULL)
5347 return;
5348
5349 for (i = 0; i < e->rank; i++)
5350 if (!gfc_array_dimen_size (e, i, &array[i]))
5351 goto fail;
5352
5353 e->shape = gfc_get_shape (e->rank);
5354
5355 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5356
5357 return;
5358
5359 fail:
5360 for (i--; i >= 0; i--)
5361 mpz_clear (array[i]);
5362 }
5363
5364
5365 /* Given a variable expression node, compute the rank of the expression by
5366 examining the base symbol and any reference structures it may have. */
5367
5368 void
5369 gfc_expression_rank (gfc_expr *e)
5370 {
5371 gfc_ref *ref;
5372 int i, rank;
5373
5374 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5375 could lead to serious confusion... */
5376 gcc_assert (e->expr_type != EXPR_COMPCALL);
5377
5378 if (e->ref == NULL)
5379 {
5380 if (e->expr_type == EXPR_ARRAY)
5381 goto done;
5382 /* Constructors can have a rank different from one via RESHAPE(). */
5383
5384 e->rank = ((e->symtree == NULL || e->symtree->n.sym->as == NULL)
5385 ? 0 : e->symtree->n.sym->as->rank);
5386 goto done;
5387 }
5388
5389 rank = 0;
5390
5391 for (ref = e->ref; ref; ref = ref->next)
5392 {
5393 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5394 && ref->u.c.component->attr.function && !ref->next)
5395 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5396
5397 if (ref->type != REF_ARRAY)
5398 continue;
5399
5400 if (ref->u.ar.type == AR_FULL)
5401 {
5402 rank = ref->u.ar.as->rank;
5403 break;
5404 }
5405
5406 if (ref->u.ar.type == AR_SECTION)
5407 {
5408 /* Figure out the rank of the section. */
5409 if (rank != 0)
5410 gfc_internal_error ("gfc_expression_rank(): Two array specs");
5411
5412 for (i = 0; i < ref->u.ar.dimen; i++)
5413 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5414 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5415 rank++;
5416
5417 break;
5418 }
5419 }
5420
5421 e->rank = rank;
5422
5423 done:
5424 expression_shape (e);
5425 }
5426
5427
5428 static void
5429 add_caf_get_intrinsic (gfc_expr *e)
5430 {
5431 gfc_expr *wrapper, *tmp_expr;
5432 gfc_ref *ref;
5433 int n;
5434
5435 for (ref = e->ref; ref; ref = ref->next)
5436 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5437 break;
5438 if (ref == NULL)
5439 return;
5440
5441 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5442 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5443 return;
5444
5445 tmp_expr = XCNEW (gfc_expr);
5446 *tmp_expr = *e;
5447 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5448 "caf_get", tmp_expr->where, 1, tmp_expr);
5449 wrapper->ts = e->ts;
5450 wrapper->rank = e->rank;
5451 if (e->rank)
5452 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5453 *e = *wrapper;
5454 free (wrapper);
5455 }
5456
5457
5458 static void
5459 remove_caf_get_intrinsic (gfc_expr *e)
5460 {
5461 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5462 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5463 gfc_expr *e2 = e->value.function.actual->expr;
5464 e->value.function.actual->expr = NULL;
5465 gfc_free_actual_arglist (e->value.function.actual);
5466 gfc_free_shape (&e->shape, e->rank);
5467 *e = *e2;
5468 free (e2);
5469 }
5470
5471
5472 /* Resolve a variable expression. */
5473
5474 static bool
5475 resolve_variable (gfc_expr *e)
5476 {
5477 gfc_symbol *sym;
5478 bool t;
5479
5480 t = true;
5481
5482 if (e->symtree == NULL)
5483 return false;
5484 sym = e->symtree->n.sym;
5485
5486 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5487 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5488 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5489 {
5490 if (!actual_arg || inquiry_argument)
5491 {
5492 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5493 "be used as actual argument", sym->name, &e->where);
5494 return false;
5495 }
5496 }
5497 /* TS 29113, 407b. */
5498 else if (e->ts.type == BT_ASSUMED)
5499 {
5500 if (!actual_arg)
5501 {
5502 gfc_error ("Assumed-type variable %s at %L may only be used "
5503 "as actual argument", sym->name, &e->where);
5504 return false;
5505 }
5506 else if (inquiry_argument && !first_actual_arg)
5507 {
5508 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5509 for all inquiry functions in resolve_function; the reason is
5510 that the function-name resolution happens too late in that
5511 function. */
5512 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5513 "an inquiry function shall be the first argument",
5514 sym->name, &e->where);
5515 return false;
5516 }
5517 }
5518 /* TS 29113, C535b. */
5519 else if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5520 && CLASS_DATA (sym)->as
5521 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5522 || (sym->ts.type != BT_CLASS && sym->as
5523 && sym->as->type == AS_ASSUMED_RANK))
5524 && !sym->attr.select_rank_temporary)
5525 {
5526 if (!actual_arg
5527 && !(cs_base && cs_base->current
5528 && cs_base->current->op == EXEC_SELECT_RANK))
5529 {
5530 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5531 "actual argument", sym->name, &e->where);
5532 return false;
5533 }
5534 else if (inquiry_argument && !first_actual_arg)
5535 {
5536 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5537 for all inquiry functions in resolve_function; the reason is
5538 that the function-name resolution happens too late in that
5539 function. */
5540 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5541 "to an inquiry function shall be the first argument",
5542 sym->name, &e->where);
5543 return false;
5544 }
5545 }
5546
5547 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5548 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5549 && e->ref->next == NULL))
5550 {
5551 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5552 "a subobject reference", sym->name, &e->ref->u.ar.where);
5553 return false;
5554 }
5555 /* TS 29113, 407b. */
5556 else if (e->ts.type == BT_ASSUMED && e->ref
5557 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5558 && e->ref->next == NULL))
5559 {
5560 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5561 "reference", sym->name, &e->ref->u.ar.where);
5562 return false;
5563 }
5564
5565 /* TS 29113, C535b. */
5566 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5567 && CLASS_DATA (sym)->as
5568 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5569 || (sym->ts.type != BT_CLASS && sym->as
5570 && sym->as->type == AS_ASSUMED_RANK))
5571 && e->ref
5572 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5573 && e->ref->next == NULL))
5574 {
5575 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5576 "reference", sym->name, &e->ref->u.ar.where);
5577 return false;
5578 }
5579
5580 /* For variables that are used in an associate (target => object) where
5581 the object's basetype is array valued while the target is scalar,
5582 the ts' type of the component refs is still array valued, which
5583 can't be translated that way. */
5584 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5585 && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
5586 && CLASS_DATA (sym->assoc->target)->as)
5587 {
5588 gfc_ref *ref = e->ref;
5589 while (ref)
5590 {
5591 switch (ref->type)
5592 {
5593 case REF_COMPONENT:
5594 ref->u.c.sym = sym->ts.u.derived;
5595 /* Stop the loop. */
5596 ref = NULL;
5597 break;
5598 default:
5599 ref = ref->next;
5600 break;
5601 }
5602 }
5603 }
5604
5605 /* If this is an associate-name, it may be parsed with an array reference
5606 in error even though the target is scalar. Fail directly in this case.
5607 TODO Understand why class scalar expressions must be excluded. */
5608 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5609 {
5610 if (sym->ts.type == BT_CLASS)
5611 gfc_fix_class_refs (e);
5612 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5613 return false;
5614 else if (sym->attr.dimension && (!e->ref || e->ref->type != REF_ARRAY))
5615 {
5616 /* This can happen because the parser did not detect that the
5617 associate name is an array and the expression had no array
5618 part_ref. */
5619 gfc_ref *ref = gfc_get_ref ();
5620 ref->type = REF_ARRAY;
5621 ref->u.ar = *gfc_get_array_ref();
5622 ref->u.ar.type = AR_FULL;
5623 if (sym->as)
5624 {
5625 ref->u.ar.as = sym->as;
5626 ref->u.ar.dimen = sym->as->rank;
5627 }
5628 ref->next = e->ref;
5629 e->ref = ref;
5630
5631 }
5632 }
5633
5634 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5635 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5636
5637 /* On the other hand, the parser may not have known this is an array;
5638 in this case, we have to add a FULL reference. */
5639 if (sym->assoc && sym->attr.dimension && !e->ref)
5640 {
5641 e->ref = gfc_get_ref ();
5642 e->ref->type = REF_ARRAY;
5643 e->ref->u.ar.type = AR_FULL;
5644 e->ref->u.ar.dimen = 0;
5645 }
5646
5647 /* Like above, but for class types, where the checking whether an array
5648 ref is present is more complicated. Furthermore make sure not to add
5649 the full array ref to _vptr or _len refs. */
5650 if (sym->assoc && sym->ts.type == BT_CLASS
5651 && CLASS_DATA (sym)->attr.dimension
5652 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5653 {
5654 gfc_ref *ref, *newref;
5655
5656 newref = gfc_get_ref ();
5657 newref->type = REF_ARRAY;
5658 newref->u.ar.type = AR_FULL;
5659 newref->u.ar.dimen = 0;
5660 /* Because this is an associate var and the first ref either is a ref to
5661 the _data component or not, no traversal of the ref chain is
5662 needed. The array ref needs to be inserted after the _data ref,
5663 or when that is not present, which may happend for polymorphic
5664 types, then at the first position. */
5665 ref = e->ref;
5666 if (!ref)
5667 e->ref = newref;
5668 else if (ref->type == REF_COMPONENT
5669 && strcmp ("_data", ref->u.c.component->name) == 0)
5670 {
5671 if (!ref->next || ref->next->type != REF_ARRAY)
5672 {
5673 newref->next = ref->next;
5674 ref->next = newref;
5675 }
5676 else
5677 /* Array ref present already. */
5678 gfc_free_ref_list (newref);
5679 }
5680 else if (ref->type == REF_ARRAY)
5681 /* Array ref present already. */
5682 gfc_free_ref_list (newref);
5683 else
5684 {
5685 newref->next = ref;
5686 e->ref = newref;
5687 }
5688 }
5689
5690 if (e->ref && !gfc_resolve_ref (e))
5691 return false;
5692
5693 if (sym->attr.flavor == FL_PROCEDURE
5694 && (!sym->attr.function
5695 || (sym->attr.function && sym->result
5696 && sym->result->attr.proc_pointer
5697 && !sym->result->attr.function)))
5698 {
5699 e->ts.type = BT_PROCEDURE;
5700 goto resolve_procedure;
5701 }
5702
5703 if (sym->ts.type != BT_UNKNOWN)
5704 gfc_variable_attr (e, &e->ts);
5705 else if (sym->attr.flavor == FL_PROCEDURE
5706 && sym->attr.function && sym->result
5707 && sym->result->ts.type != BT_UNKNOWN
5708 && sym->result->attr.proc_pointer)
5709 e->ts = sym->result->ts;
5710 else
5711 {
5712 /* Must be a simple variable reference. */
5713 if (!gfc_set_default_type (sym, 1, sym->ns))
5714 return false;
5715 e->ts = sym->ts;
5716 }
5717
5718 if (check_assumed_size_reference (sym, e))
5719 return false;
5720
5721 /* Deal with forward references to entries during gfc_resolve_code, to
5722 satisfy, at least partially, 12.5.2.5. */
5723 if (gfc_current_ns->entries
5724 && current_entry_id == sym->entry_id
5725 && cs_base
5726 && cs_base->current
5727 && cs_base->current->op != EXEC_ENTRY)
5728 {
5729 gfc_entry_list *entry;
5730 gfc_formal_arglist *formal;
5731 int n;
5732 bool seen, saved_specification_expr;
5733
5734 /* If the symbol is a dummy... */
5735 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5736 {
5737 entry = gfc_current_ns->entries;
5738 seen = false;
5739
5740 /* ...test if the symbol is a parameter of previous entries. */
5741 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5742 for (formal = entry->sym->formal; formal; formal = formal->next)
5743 {
5744 if (formal->sym && sym->name == formal->sym->name)
5745 {
5746 seen = true;
5747 break;
5748 }
5749 }
5750
5751 /* If it has not been seen as a dummy, this is an error. */
5752 if (!seen)
5753 {
5754 if (specification_expr)
5755 gfc_error ("Variable %qs, used in a specification expression"
5756 ", is referenced at %L before the ENTRY statement "
5757 "in which it is a parameter",
5758 sym->name, &cs_base->current->loc);
5759 else
5760 gfc_error ("Variable %qs is used at %L before the ENTRY "
5761 "statement in which it is a parameter",
5762 sym->name, &cs_base->current->loc);
5763 t = false;
5764 }
5765 }
5766
5767 /* Now do the same check on the specification expressions. */
5768 saved_specification_expr = specification_expr;
5769 specification_expr = true;
5770 if (sym->ts.type == BT_CHARACTER
5771 && !gfc_resolve_expr (sym->ts.u.cl->length))
5772 t = false;
5773
5774 if (sym->as)
5775 for (n = 0; n < sym->as->rank; n++)
5776 {
5777 if (!gfc_resolve_expr (sym->as->lower[n]))
5778 t = false;
5779 if (!gfc_resolve_expr (sym->as->upper[n]))
5780 t = false;
5781 }
5782 specification_expr = saved_specification_expr;
5783
5784 if (t)
5785 /* Update the symbol's entry level. */
5786 sym->entry_id = current_entry_id + 1;
5787 }
5788
5789 /* If a symbol has been host_associated mark it. This is used latter,
5790 to identify if aliasing is possible via host association. */
5791 if (sym->attr.flavor == FL_VARIABLE
5792 && gfc_current_ns->parent
5793 && (gfc_current_ns->parent == sym->ns
5794 || (gfc_current_ns->parent->parent
5795 && gfc_current_ns->parent->parent == sym->ns)))
5796 sym->attr.host_assoc = 1;
5797
5798 if (gfc_current_ns->proc_name
5799 && sym->attr.dimension
5800 && (sym->ns != gfc_current_ns
5801 || sym->attr.use_assoc
5802 || sym->attr.in_common))
5803 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5804
5805 resolve_procedure:
5806 if (t && !resolve_procedure_expression (e))
5807 t = false;
5808
5809 /* F2008, C617 and C1229. */
5810 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5811 && gfc_is_coindexed (e))
5812 {
5813 gfc_ref *ref, *ref2 = NULL;
5814
5815 for (ref = e->ref; ref; ref = ref->next)
5816 {
5817 if (ref->type == REF_COMPONENT)
5818 ref2 = ref;
5819 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5820 break;
5821 }
5822
5823 for ( ; ref; ref = ref->next)
5824 if (ref->type == REF_COMPONENT)
5825 break;
5826
5827 /* Expression itself is not coindexed object. */
5828 if (ref && e->ts.type == BT_CLASS)
5829 {
5830 gfc_error ("Polymorphic subobject of coindexed object at %L",
5831 &e->where);
5832 t = false;
5833 }
5834
5835 /* Expression itself is coindexed object. */
5836 if (ref == NULL)
5837 {
5838 gfc_component *c;
5839 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5840 for ( ; c; c = c->next)
5841 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5842 {
5843 gfc_error ("Coindexed object with polymorphic allocatable "
5844 "subcomponent at %L", &e->where);
5845 t = false;
5846 break;
5847 }
5848 }
5849 }
5850
5851 if (t)
5852 gfc_expression_rank (e);
5853
5854 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5855 add_caf_get_intrinsic (e);
5856
5857 /* Simplify cases where access to a parameter array results in a
5858 single constant. Suppress errors since those will have been
5859 issued before, as warnings. */
5860 if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
5861 {
5862 gfc_push_suppress_errors ();
5863 gfc_simplify_expr (e, 1);
5864 gfc_pop_suppress_errors ();
5865 }
5866
5867 return t;
5868 }
5869
5870
5871 /* Checks to see that the correct symbol has been host associated.
5872 The only situation where this arises is that in which a twice
5873 contained function is parsed after the host association is made.
5874 Therefore, on detecting this, change the symbol in the expression
5875 and convert the array reference into an actual arglist if the old
5876 symbol is a variable. */
5877 static bool
5878 check_host_association (gfc_expr *e)
5879 {
5880 gfc_symbol *sym, *old_sym;
5881 gfc_symtree *st;
5882 int n;
5883 gfc_ref *ref;
5884 gfc_actual_arglist *arg, *tail = NULL;
5885 bool retval = e->expr_type == EXPR_FUNCTION;
5886
5887 /* If the expression is the result of substitution in
5888 interface.c(gfc_extend_expr) because there is no way in
5889 which the host association can be wrong. */
5890 if (e->symtree == NULL
5891 || e->symtree->n.sym == NULL
5892 || e->user_operator)
5893 return retval;
5894
5895 old_sym = e->symtree->n.sym;
5896
5897 if (gfc_current_ns->parent
5898 && old_sym->ns != gfc_current_ns)
5899 {
5900 /* Use the 'USE' name so that renamed module symbols are
5901 correctly handled. */
5902 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5903
5904 if (sym && old_sym != sym
5905 && sym->ts.type == old_sym->ts.type
5906 && sym->attr.flavor == FL_PROCEDURE
5907 && sym->attr.contained)
5908 {
5909 /* Clear the shape, since it might not be valid. */
5910 gfc_free_shape (&e->shape, e->rank);
5911
5912 /* Give the expression the right symtree! */
5913 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5914 gcc_assert (st != NULL);
5915
5916 if (old_sym->attr.flavor == FL_PROCEDURE
5917 || e->expr_type == EXPR_FUNCTION)
5918 {
5919 /* Original was function so point to the new symbol, since
5920 the actual argument list is already attached to the
5921 expression. */
5922 e->value.function.esym = NULL;
5923 e->symtree = st;
5924 }
5925 else
5926 {
5927 /* Original was variable so convert array references into
5928 an actual arglist. This does not need any checking now
5929 since resolve_function will take care of it. */
5930 e->value.function.actual = NULL;
5931 e->expr_type = EXPR_FUNCTION;
5932 e->symtree = st;
5933
5934 /* Ambiguity will not arise if the array reference is not
5935 the last reference. */
5936 for (ref = e->ref; ref; ref = ref->next)
5937 if (ref->type == REF_ARRAY && ref->next == NULL)
5938 break;
5939
5940 gcc_assert (ref->type == REF_ARRAY);
5941
5942 /* Grab the start expressions from the array ref and
5943 copy them into actual arguments. */
5944 for (n = 0; n < ref->u.ar.dimen; n++)
5945 {
5946 arg = gfc_get_actual_arglist ();
5947 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5948 if (e->value.function.actual == NULL)
5949 tail = e->value.function.actual = arg;
5950 else
5951 {
5952 tail->next = arg;
5953 tail = arg;
5954 }
5955 }
5956
5957 /* Dump the reference list and set the rank. */
5958 gfc_free_ref_list (e->ref);
5959 e->ref = NULL;
5960 e->rank = sym->as ? sym->as->rank : 0;
5961 }
5962
5963 gfc_resolve_expr (e);
5964 sym->refs++;
5965 }
5966 }
5967 /* This might have changed! */
5968 return e->expr_type == EXPR_FUNCTION;
5969 }
5970
5971
5972 static void
5973 gfc_resolve_character_operator (gfc_expr *e)
5974 {
5975 gfc_expr *op1 = e->value.op.op1;
5976 gfc_expr *op2 = e->value.op.op2;
5977 gfc_expr *e1 = NULL;
5978 gfc_expr *e2 = NULL;
5979
5980 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
5981
5982 if (op1->ts.u.cl && op1->ts.u.cl->length)
5983 e1 = gfc_copy_expr (op1->ts.u.cl->length);
5984 else if (op1->expr_type == EXPR_CONSTANT)
5985 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5986 op1->value.character.length);
5987
5988 if (op2->ts.u.cl && op2->ts.u.cl->length)
5989 e2 = gfc_copy_expr (op2->ts.u.cl->length);
5990 else if (op2->expr_type == EXPR_CONSTANT)
5991 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5992 op2->value.character.length);
5993
5994 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5995
5996 if (!e1 || !e2)
5997 {
5998 gfc_free_expr (e1);
5999 gfc_free_expr (e2);
6000
6001 return;
6002 }
6003
6004 e->ts.u.cl->length = gfc_add (e1, e2);
6005 e->ts.u.cl->length->ts.type = BT_INTEGER;
6006 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
6007 gfc_simplify_expr (e->ts.u.cl->length, 0);
6008 gfc_resolve_expr (e->ts.u.cl->length);
6009
6010 return;
6011 }
6012
6013
6014 /* Ensure that an character expression has a charlen and, if possible, a
6015 length expression. */
6016
6017 static void
6018 fixup_charlen (gfc_expr *e)
6019 {
6020 /* The cases fall through so that changes in expression type and the need
6021 for multiple fixes are picked up. In all circumstances, a charlen should
6022 be available for the middle end to hang a backend_decl on. */
6023 switch (e->expr_type)
6024 {
6025 case EXPR_OP:
6026 gfc_resolve_character_operator (e);
6027 /* FALLTHRU */
6028
6029 case EXPR_ARRAY:
6030 if (e->expr_type == EXPR_ARRAY)
6031 gfc_resolve_character_array_constructor (e);
6032 /* FALLTHRU */
6033
6034 case EXPR_SUBSTRING:
6035 if (!e->ts.u.cl && e->ref)
6036 gfc_resolve_substring_charlen (e);
6037 /* FALLTHRU */
6038
6039 default:
6040 if (!e->ts.u.cl)
6041 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
6042
6043 break;
6044 }
6045 }
6046
6047
6048 /* Update an actual argument to include the passed-object for type-bound
6049 procedures at the right position. */
6050
6051 static gfc_actual_arglist*
6052 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
6053 const char *name)
6054 {
6055 gcc_assert (argpos > 0);
6056
6057 if (argpos == 1)
6058 {
6059 gfc_actual_arglist* result;
6060
6061 result = gfc_get_actual_arglist ();
6062 result->expr = po;
6063 result->next = lst;
6064 if (name)
6065 result->name = name;
6066
6067 return result;
6068 }
6069
6070 if (lst)
6071 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
6072 else
6073 lst = update_arglist_pass (NULL, po, argpos - 1, name);
6074 return lst;
6075 }
6076
6077
6078 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
6079
6080 static gfc_expr*
6081 extract_compcall_passed_object (gfc_expr* e)
6082 {
6083 gfc_expr* po;
6084
6085 if (e->expr_type == EXPR_UNKNOWN)
6086 {
6087 gfc_error ("Error in typebound call at %L",
6088 &e->where);
6089 return NULL;
6090 }
6091
6092 gcc_assert (e->expr_type == EXPR_COMPCALL);
6093
6094 if (e->value.compcall.base_object)
6095 po = gfc_copy_expr (e->value.compcall.base_object);
6096 else
6097 {
6098 po = gfc_get_expr ();
6099 po->expr_type = EXPR_VARIABLE;
6100 po->symtree = e->symtree;
6101 po->ref = gfc_copy_ref (e->ref);
6102 po->where = e->where;
6103 }
6104
6105 if (!gfc_resolve_expr (po))
6106 return NULL;
6107
6108 return po;
6109 }
6110
6111
6112 /* Update the arglist of an EXPR_COMPCALL expression to include the
6113 passed-object. */
6114
6115 static bool
6116 update_compcall_arglist (gfc_expr* e)
6117 {
6118 gfc_expr* po;
6119 gfc_typebound_proc* tbp;
6120
6121 tbp = e->value.compcall.tbp;
6122
6123 if (tbp->error)
6124 return false;
6125
6126 po = extract_compcall_passed_object (e);
6127 if (!po)
6128 return false;
6129
6130 if (tbp->nopass || e->value.compcall.ignore_pass)
6131 {
6132 gfc_free_expr (po);
6133 return true;
6134 }
6135
6136 if (tbp->pass_arg_num <= 0)
6137 return false;
6138
6139 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6140 tbp->pass_arg_num,
6141 tbp->pass_arg);
6142
6143 return true;
6144 }
6145
6146
6147 /* Extract the passed object from a PPC call (a copy of it). */
6148
6149 static gfc_expr*
6150 extract_ppc_passed_object (gfc_expr *e)
6151 {
6152 gfc_expr *po;
6153 gfc_ref **ref;
6154
6155 po = gfc_get_expr ();
6156 po->expr_type = EXPR_VARIABLE;
6157 po->symtree = e->symtree;
6158 po->ref = gfc_copy_ref (e->ref);
6159 po->where = e->where;
6160
6161 /* Remove PPC reference. */
6162 ref = &po->ref;
6163 while ((*ref)->next)
6164 ref = &(*ref)->next;
6165 gfc_free_ref_list (*ref);
6166 *ref = NULL;
6167
6168 if (!gfc_resolve_expr (po))
6169 return NULL;
6170
6171 return po;
6172 }
6173
6174
6175 /* Update the actual arglist of a procedure pointer component to include the
6176 passed-object. */
6177
6178 static bool
6179 update_ppc_arglist (gfc_expr* e)
6180 {
6181 gfc_expr* po;
6182 gfc_component *ppc;
6183 gfc_typebound_proc* tb;
6184
6185 ppc = gfc_get_proc_ptr_comp (e);
6186 if (!ppc)
6187 return false;
6188
6189 tb = ppc->tb;
6190
6191 if (tb->error)
6192 return false;
6193 else if (tb->nopass)
6194 return true;
6195
6196 po = extract_ppc_passed_object (e);
6197 if (!po)
6198 return false;
6199
6200 /* F08:R739. */
6201 if (po->rank != 0)
6202 {
6203 gfc_error ("Passed-object at %L must be scalar", &e->where);
6204 return false;
6205 }
6206
6207 /* F08:C611. */
6208 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
6209 {
6210 gfc_error ("Base object for procedure-pointer component call at %L is of"
6211 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
6212 return false;
6213 }
6214
6215 gcc_assert (tb->pass_arg_num > 0);
6216 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6217 tb->pass_arg_num,
6218 tb->pass_arg);
6219
6220 return true;
6221 }
6222
6223
6224 /* Check that the object a TBP is called on is valid, i.e. it must not be
6225 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
6226
6227 static bool
6228 check_typebound_baseobject (gfc_expr* e)
6229 {
6230 gfc_expr* base;
6231 bool return_value = false;
6232
6233 base = extract_compcall_passed_object (e);
6234 if (!base)
6235 return false;
6236
6237 if (base->ts.type != BT_DERIVED && base->ts.type != BT_CLASS)
6238 {
6239 gfc_error ("Error in typebound call at %L", &e->where);
6240 goto cleanup;
6241 }
6242
6243 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
6244 return false;
6245
6246 /* F08:C611. */
6247 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
6248 {
6249 gfc_error ("Base object for type-bound procedure call at %L is of"
6250 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
6251 goto cleanup;
6252 }
6253
6254 /* F08:C1230. If the procedure called is NOPASS,
6255 the base object must be scalar. */
6256 if (e->value.compcall.tbp->nopass && base->rank != 0)
6257 {
6258 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
6259 " be scalar", &e->where);
6260 goto cleanup;
6261 }
6262
6263 return_value = true;
6264
6265 cleanup:
6266 gfc_free_expr (base);
6267 return return_value;
6268 }
6269
6270
6271 /* Resolve a call to a type-bound procedure, either function or subroutine,
6272 statically from the data in an EXPR_COMPCALL expression. The adapted
6273 arglist and the target-procedure symtree are returned. */
6274
6275 static bool
6276 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
6277 gfc_actual_arglist** actual)
6278 {
6279 gcc_assert (e->expr_type == EXPR_COMPCALL);
6280 gcc_assert (!e->value.compcall.tbp->is_generic);
6281
6282 /* Update the actual arglist for PASS. */
6283 if (!update_compcall_arglist (e))
6284 return false;
6285
6286 *actual = e->value.compcall.actual;
6287 *target = e->value.compcall.tbp->u.specific;
6288
6289 gfc_free_ref_list (e->ref);
6290 e->ref = NULL;
6291 e->value.compcall.actual = NULL;
6292
6293 /* If we find a deferred typebound procedure, check for derived types
6294 that an overriding typebound procedure has not been missed. */
6295 if (e->value.compcall.name
6296 && !e->value.compcall.tbp->non_overridable
6297 && e->value.compcall.base_object
6298 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6299 {
6300 gfc_symtree *st;
6301 gfc_symbol *derived;
6302
6303 /* Use the derived type of the base_object. */
6304 derived = e->value.compcall.base_object->ts.u.derived;
6305 st = NULL;
6306
6307 /* If necessary, go through the inheritance chain. */
6308 while (!st && derived)
6309 {
6310 /* Look for the typebound procedure 'name'. */
6311 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6312 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6313 e->value.compcall.name);
6314 if (!st)
6315 derived = gfc_get_derived_super_type (derived);
6316 }
6317
6318 /* Now find the specific name in the derived type namespace. */
6319 if (st && st->n.tb && st->n.tb->u.specific)
6320 gfc_find_sym_tree (st->n.tb->u.specific->name,
6321 derived->ns, 1, &st);
6322 if (st)
6323 *target = st;
6324 }
6325 return true;
6326 }
6327
6328
6329 /* Get the ultimate declared type from an expression. In addition,
6330 return the last class/derived type reference and the copy of the
6331 reference list. If check_types is set true, derived types are
6332 identified as well as class references. */
6333 static gfc_symbol*
6334 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6335 gfc_expr *e, bool check_types)
6336 {
6337 gfc_symbol *declared;
6338 gfc_ref *ref;
6339
6340 declared = NULL;
6341 if (class_ref)
6342 *class_ref = NULL;
6343 if (new_ref)
6344 *new_ref = gfc_copy_ref (e->ref);
6345
6346 for (ref = e->ref; ref; ref = ref->next)
6347 {
6348 if (ref->type != REF_COMPONENT)
6349 continue;
6350
6351 if ((ref->u.c.component->ts.type == BT_CLASS
6352 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6353 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6354 {
6355 declared = ref->u.c.component->ts.u.derived;
6356 if (class_ref)
6357 *class_ref = ref;
6358 }
6359 }
6360
6361 if (declared == NULL)
6362 declared = e->symtree->n.sym->ts.u.derived;
6363
6364 return declared;
6365 }
6366
6367
6368 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6369 which of the specific bindings (if any) matches the arglist and transform
6370 the expression into a call of that binding. */
6371
6372 static bool
6373 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6374 {
6375 gfc_typebound_proc* genproc;
6376 const char* genname;
6377 gfc_symtree *st;
6378 gfc_symbol *derived;
6379
6380 gcc_assert (e->expr_type == EXPR_COMPCALL);
6381 genname = e->value.compcall.name;
6382 genproc = e->value.compcall.tbp;
6383
6384 if (!genproc->is_generic)
6385 return true;
6386
6387 /* Try the bindings on this type and in the inheritance hierarchy. */
6388 for (; genproc; genproc = genproc->overridden)
6389 {
6390 gfc_tbp_generic* g;
6391
6392 gcc_assert (genproc->is_generic);
6393 for (g = genproc->u.generic; g; g = g->next)
6394 {
6395 gfc_symbol* target;
6396 gfc_actual_arglist* args;
6397 bool matches;
6398
6399 gcc_assert (g->specific);
6400
6401 if (g->specific->error)
6402 continue;
6403
6404 target = g->specific->u.specific->n.sym;
6405
6406 /* Get the right arglist by handling PASS/NOPASS. */
6407 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6408 if (!g->specific->nopass)
6409 {
6410 gfc_expr* po;
6411 po = extract_compcall_passed_object (e);
6412 if (!po)
6413 {
6414 gfc_free_actual_arglist (args);
6415 return false;
6416 }
6417
6418 gcc_assert (g->specific->pass_arg_num > 0);
6419 gcc_assert (!g->specific->error);
6420 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6421 g->specific->pass_arg);
6422 }
6423 resolve_actual_arglist (args, target->attr.proc,
6424 is_external_proc (target)
6425 && gfc_sym_get_dummy_args (target) == NULL);
6426
6427 /* Check if this arglist matches the formal. */
6428 matches = gfc_arglist_matches_symbol (&args, target);
6429
6430 /* Clean up and break out of the loop if we've found it. */
6431 gfc_free_actual_arglist (args);
6432 if (matches)
6433 {
6434 e->value.compcall.tbp = g->specific;
6435 genname = g->specific_st->name;
6436 /* Pass along the name for CLASS methods, where the vtab
6437 procedure pointer component has to be referenced. */
6438 if (name)
6439 *name = genname;
6440 goto success;
6441 }
6442 }
6443 }
6444
6445 /* Nothing matching found! */
6446 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6447 " %qs at %L", genname, &e->where);
6448 return false;
6449
6450 success:
6451 /* Make sure that we have the right specific instance for the name. */
6452 derived = get_declared_from_expr (NULL, NULL, e, true);
6453
6454 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6455 if (st)
6456 e->value.compcall.tbp = st->n.tb;
6457
6458 return true;
6459 }
6460
6461
6462 /* Resolve a call to a type-bound subroutine. */
6463
6464 static bool
6465 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6466 {
6467 gfc_actual_arglist* newactual;
6468 gfc_symtree* target;
6469
6470 /* Check that's really a SUBROUTINE. */
6471 if (!c->expr1->value.compcall.tbp->subroutine)
6472 {
6473 if (!c->expr1->value.compcall.tbp->is_generic
6474 && c->expr1->value.compcall.tbp->u.specific
6475 && c->expr1->value.compcall.tbp->u.specific->n.sym
6476 && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
6477 c->expr1->value.compcall.tbp->subroutine = 1;
6478 else
6479 {
6480 gfc_error ("%qs at %L should be a SUBROUTINE",
6481 c->expr1->value.compcall.name, &c->loc);
6482 return false;
6483 }
6484 }
6485
6486 if (!check_typebound_baseobject (c->expr1))
6487 return false;
6488
6489 /* Pass along the name for CLASS methods, where the vtab
6490 procedure pointer component has to be referenced. */
6491 if (name)
6492 *name = c->expr1->value.compcall.name;
6493
6494 if (!resolve_typebound_generic_call (c->expr1, name))
6495 return false;
6496
6497 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6498 if (overridable)
6499 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6500
6501 /* Transform into an ordinary EXEC_CALL for now. */
6502
6503 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6504 return false;
6505
6506 c->ext.actual = newactual;
6507 c->symtree = target;
6508 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6509
6510 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6511
6512 gfc_free_expr (c->expr1);
6513 c->expr1 = gfc_get_expr ();
6514 c->expr1->expr_type = EXPR_FUNCTION;
6515 c->expr1->symtree = target;
6516 c->expr1->where = c->loc;
6517
6518 return resolve_call (c);
6519 }
6520
6521
6522 /* Resolve a component-call expression. */
6523 static bool
6524 resolve_compcall (gfc_expr* e, const char **name)
6525 {
6526 gfc_actual_arglist* newactual;
6527 gfc_symtree* target;
6528
6529 /* Check that's really a FUNCTION. */
6530 if (!e->value.compcall.tbp->function)
6531 {
6532 gfc_error ("%qs at %L should be a FUNCTION",
6533 e->value.compcall.name, &e->where);
6534 return false;
6535 }
6536
6537
6538 /* These must not be assign-calls! */
6539 gcc_assert (!e->value.compcall.assign);
6540
6541 if (!check_typebound_baseobject (e))
6542 return false;
6543
6544 /* Pass along the name for CLASS methods, where the vtab
6545 procedure pointer component has to be referenced. */
6546 if (name)
6547 *name = e->value.compcall.name;
6548
6549 if (!resolve_typebound_generic_call (e, name))
6550 return false;
6551 gcc_assert (!e->value.compcall.tbp->is_generic);
6552
6553 /* Take the rank from the function's symbol. */
6554 if (e->value.compcall.tbp->u.specific->n.sym->as)
6555 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6556
6557 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6558 arglist to the TBP's binding target. */
6559
6560 if (!resolve_typebound_static (e, &target, &newactual))
6561 return false;
6562
6563 e->value.function.actual = newactual;
6564 e->value.function.name = NULL;
6565 e->value.function.esym = target->n.sym;
6566 e->value.function.isym = NULL;
6567 e->symtree = target;
6568 e->ts = target->n.sym->ts;
6569 e->expr_type = EXPR_FUNCTION;
6570
6571 /* Resolution is not necessary if this is a class subroutine; this
6572 function only has to identify the specific proc. Resolution of
6573 the call will be done next in resolve_typebound_call. */
6574 return gfc_resolve_expr (e);
6575 }
6576
6577
6578 static bool resolve_fl_derived (gfc_symbol *sym);
6579
6580
6581 /* Resolve a typebound function, or 'method'. First separate all
6582 the non-CLASS references by calling resolve_compcall directly. */
6583
6584 static bool
6585 resolve_typebound_function (gfc_expr* e)
6586 {
6587 gfc_symbol *declared;
6588 gfc_component *c;
6589 gfc_ref *new_ref;
6590 gfc_ref *class_ref;
6591 gfc_symtree *st;
6592 const char *name;
6593 gfc_typespec ts;
6594 gfc_expr *expr;
6595 bool overridable;
6596
6597 st = e->symtree;
6598
6599 /* Deal with typebound operators for CLASS objects. */
6600 expr = e->value.compcall.base_object;
6601 overridable = !e->value.compcall.tbp->non_overridable;
6602 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6603 {
6604 /* Since the typebound operators are generic, we have to ensure
6605 that any delays in resolution are corrected and that the vtab
6606 is present. */
6607 ts = expr->ts;
6608 declared = ts.u.derived;
6609 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6610 if (c->ts.u.derived == NULL)
6611 c->ts.u.derived = gfc_find_derived_vtab (declared);
6612
6613 if (!resolve_compcall (e, &name))
6614 return false;
6615
6616 /* Use the generic name if it is there. */
6617 name = name ? name : e->value.function.esym->name;
6618 e->symtree = expr->symtree;
6619 e->ref = gfc_copy_ref (expr->ref);
6620 get_declared_from_expr (&class_ref, NULL, e, false);
6621
6622 /* Trim away the extraneous references that emerge from nested
6623 use of interface.c (extend_expr). */
6624 if (class_ref && class_ref->next)
6625 {
6626 gfc_free_ref_list (class_ref->next);
6627 class_ref->next = NULL;
6628 }
6629 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6630 {
6631 gfc_free_ref_list (e->ref);
6632 e->ref = NULL;
6633 }
6634
6635 gfc_add_vptr_component (e);
6636 gfc_add_component_ref (e, name);
6637 e->value.function.esym = NULL;
6638 if (expr->expr_type != EXPR_VARIABLE)
6639 e->base_expr = expr;
6640 return true;
6641 }
6642
6643 if (st == NULL)
6644 return resolve_compcall (e, NULL);
6645
6646 if (!gfc_resolve_ref (e))
6647 return false;
6648
6649 /* Get the CLASS declared type. */
6650 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6651
6652 if (!resolve_fl_derived (declared))
6653 return false;
6654
6655 /* Weed out cases of the ultimate component being a derived type. */
6656 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6657 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6658 {
6659 gfc_free_ref_list (new_ref);
6660 return resolve_compcall (e, NULL);
6661 }
6662
6663 c = gfc_find_component (declared, "_data", true, true, NULL);
6664
6665 /* Treat the call as if it is a typebound procedure, in order to roll
6666 out the correct name for the specific function. */
6667 if (!resolve_compcall (e, &name))
6668 {
6669 gfc_free_ref_list (new_ref);
6670 return false;
6671 }
6672 ts = e->ts;
6673
6674 if (overridable)
6675 {
6676 /* Convert the expression to a procedure pointer component call. */
6677 e->value.function.esym = NULL;
6678 e->symtree = st;
6679
6680 if (new_ref)
6681 e->ref = new_ref;
6682
6683 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6684 gfc_add_vptr_component (e);
6685 gfc_add_component_ref (e, name);
6686
6687 /* Recover the typespec for the expression. This is really only
6688 necessary for generic procedures, where the additional call
6689 to gfc_add_component_ref seems to throw the collection of the
6690 correct typespec. */
6691 e->ts = ts;
6692 }
6693 else if (new_ref)
6694 gfc_free_ref_list (new_ref);
6695
6696 return true;
6697 }
6698
6699 /* Resolve a typebound subroutine, or 'method'. First separate all
6700 the non-CLASS references by calling resolve_typebound_call
6701 directly. */
6702
6703 static bool
6704 resolve_typebound_subroutine (gfc_code *code)
6705 {
6706 gfc_symbol *declared;
6707 gfc_component *c;
6708 gfc_ref *new_ref;
6709 gfc_ref *class_ref;
6710 gfc_symtree *st;
6711 const char *name;
6712 gfc_typespec ts;
6713 gfc_expr *expr;
6714 bool overridable;
6715
6716 st = code->expr1->symtree;
6717
6718 /* Deal with typebound operators for CLASS objects. */
6719 expr = code->expr1->value.compcall.base_object;
6720 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6721 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6722 {
6723 /* If the base_object is not a variable, the corresponding actual
6724 argument expression must be stored in e->base_expression so
6725 that the corresponding tree temporary can be used as the base
6726 object in gfc_conv_procedure_call. */
6727 if (expr->expr_type != EXPR_VARIABLE)
6728 {
6729 gfc_actual_arglist *args;
6730
6731 args= code->expr1->value.function.actual;
6732 for (; args; args = args->next)
6733 if (expr == args->expr)
6734 expr = args->expr;
6735 }
6736
6737 /* Since the typebound operators are generic, we have to ensure
6738 that any delays in resolution are corrected and that the vtab
6739 is present. */
6740 declared = expr->ts.u.derived;
6741 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6742 if (c->ts.u.derived == NULL)
6743 c->ts.u.derived = gfc_find_derived_vtab (declared);
6744
6745 if (!resolve_typebound_call (code, &name, NULL))
6746 return false;
6747
6748 /* Use the generic name if it is there. */
6749 name = name ? name : code->expr1->value.function.esym->name;
6750 code->expr1->symtree = expr->symtree;
6751 code->expr1->ref = gfc_copy_ref (expr->ref);
6752
6753 /* Trim away the extraneous references that emerge from nested
6754 use of interface.c (extend_expr). */
6755 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6756 if (class_ref && class_ref->next)
6757 {
6758 gfc_free_ref_list (class_ref->next);
6759 class_ref->next = NULL;
6760 }
6761 else if (code->expr1->ref && !class_ref)
6762 {
6763 gfc_free_ref_list (code->expr1->ref);
6764 code->expr1->ref = NULL;
6765 }
6766
6767 /* Now use the procedure in the vtable. */
6768 gfc_add_vptr_component (code->expr1);
6769 gfc_add_component_ref (code->expr1, name);
6770 code->expr1->value.function.esym = NULL;
6771 if (expr->expr_type != EXPR_VARIABLE)
6772 code->expr1->base_expr = expr;
6773 return true;
6774 }
6775
6776 if (st == NULL)
6777 return resolve_typebound_call (code, NULL, NULL);
6778
6779 if (!gfc_resolve_ref (code->expr1))
6780 return false;
6781
6782 /* Get the CLASS declared type. */
6783 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6784
6785 /* Weed out cases of the ultimate component being a derived type. */
6786 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6787 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6788 {
6789 gfc_free_ref_list (new_ref);
6790 return resolve_typebound_call (code, NULL, NULL);
6791 }
6792
6793 if (!resolve_typebound_call (code, &name, &overridable))
6794 {
6795 gfc_free_ref_list (new_ref);
6796 return false;
6797 }
6798 ts = code->expr1->ts;
6799
6800 if (overridable)
6801 {
6802 /* Convert the expression to a procedure pointer component call. */
6803 code->expr1->value.function.esym = NULL;
6804 code->expr1->symtree = st;
6805
6806 if (new_ref)
6807 code->expr1->ref = new_ref;
6808
6809 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6810 gfc_add_vptr_component (code->expr1);
6811 gfc_add_component_ref (code->expr1, name);
6812
6813 /* Recover the typespec for the expression. This is really only
6814 necessary for generic procedures, where the additional call
6815 to gfc_add_component_ref seems to throw the collection of the
6816 correct typespec. */
6817 code->expr1->ts = ts;
6818 }
6819 else if (new_ref)
6820 gfc_free_ref_list (new_ref);
6821
6822 return true;
6823 }
6824
6825
6826 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6827
6828 static bool
6829 resolve_ppc_call (gfc_code* c)
6830 {
6831 gfc_component *comp;
6832
6833 comp = gfc_get_proc_ptr_comp (c->expr1);
6834 gcc_assert (comp != NULL);
6835
6836 c->resolved_sym = c->expr1->symtree->n.sym;
6837 c->expr1->expr_type = EXPR_VARIABLE;
6838
6839 if (!comp->attr.subroutine)
6840 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6841
6842 if (!gfc_resolve_ref (c->expr1))
6843 return false;
6844
6845 if (!update_ppc_arglist (c->expr1))
6846 return false;
6847
6848 c->ext.actual = c->expr1->value.compcall.actual;
6849
6850 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6851 !(comp->ts.interface
6852 && comp->ts.interface->formal)))
6853 return false;
6854
6855 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6856 return false;
6857
6858 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6859
6860 return true;
6861 }
6862
6863
6864 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6865
6866 static bool
6867 resolve_expr_ppc (gfc_expr* e)
6868 {
6869 gfc_component *comp;
6870
6871 comp = gfc_get_proc_ptr_comp (e);
6872 gcc_assert (comp != NULL);
6873
6874 /* Convert to EXPR_FUNCTION. */
6875 e->expr_type = EXPR_FUNCTION;
6876 e->value.function.isym = NULL;
6877 e->value.function.actual = e->value.compcall.actual;
6878 e->ts = comp->ts;
6879 if (comp->as != NULL)
6880 e->rank = comp->as->rank;
6881
6882 if (!comp->attr.function)
6883 gfc_add_function (&comp->attr, comp->name, &e->where);
6884
6885 if (!gfc_resolve_ref (e))
6886 return false;
6887
6888 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6889 !(comp->ts.interface
6890 && comp->ts.interface->formal)))
6891 return false;
6892
6893 if (!update_ppc_arglist (e))
6894 return false;
6895
6896 if (!check_pure_function(e))
6897 return false;
6898
6899 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6900
6901 return true;
6902 }
6903
6904
6905 static bool
6906 gfc_is_expandable_expr (gfc_expr *e)
6907 {
6908 gfc_constructor *con;
6909
6910 if (e->expr_type == EXPR_ARRAY)
6911 {
6912 /* Traverse the constructor looking for variables that are flavor
6913 parameter. Parameters must be expanded since they are fully used at
6914 compile time. */
6915 con = gfc_constructor_first (e->value.constructor);
6916 for (; con; con = gfc_constructor_next (con))
6917 {
6918 if (con->expr->expr_type == EXPR_VARIABLE
6919 && con->expr->symtree
6920 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6921 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6922 return true;
6923 if (con->expr->expr_type == EXPR_ARRAY
6924 && gfc_is_expandable_expr (con->expr))
6925 return true;
6926 }
6927 }
6928
6929 return false;
6930 }
6931
6932
6933 /* Sometimes variables in specification expressions of the result
6934 of module procedures in submodules wind up not being the 'real'
6935 dummy. Find this, if possible, in the namespace of the first
6936 formal argument. */
6937
6938 static void
6939 fixup_unique_dummy (gfc_expr *e)
6940 {
6941 gfc_symtree *st = NULL;
6942 gfc_symbol *s = NULL;
6943
6944 if (e->symtree->n.sym->ns->proc_name
6945 && e->symtree->n.sym->ns->proc_name->formal)
6946 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6947
6948 if (s != NULL)
6949 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6950
6951 if (st != NULL
6952 && st->n.sym != NULL
6953 && st->n.sym->attr.dummy)
6954 e->symtree = st;
6955 }
6956
6957 /* Resolve an expression. That is, make sure that types of operands agree
6958 with their operators, intrinsic operators are converted to function calls
6959 for overloaded types and unresolved function references are resolved. */
6960
6961 bool
6962 gfc_resolve_expr (gfc_expr *e)
6963 {
6964 bool t;
6965 bool inquiry_save, actual_arg_save, first_actual_arg_save;
6966
6967 if (e == NULL || e->do_not_resolve_again)
6968 return true;
6969
6970 /* inquiry_argument only applies to variables. */
6971 inquiry_save = inquiry_argument;
6972 actual_arg_save = actual_arg;
6973 first_actual_arg_save = first_actual_arg;
6974
6975 if (e->expr_type != EXPR_VARIABLE)
6976 {
6977 inquiry_argument = false;
6978 actual_arg = false;
6979 first_actual_arg = false;
6980 }
6981 else if (e->symtree != NULL
6982 && *e->symtree->name == '@'
6983 && e->symtree->n.sym->attr.dummy)
6984 {
6985 /* Deal with submodule specification expressions that are not
6986 found to be referenced in module.c(read_cleanup). */
6987 fixup_unique_dummy (e);
6988 }
6989
6990 switch (e->expr_type)
6991 {
6992 case EXPR_OP:
6993 t = resolve_operator (e);
6994 break;
6995
6996 case EXPR_FUNCTION:
6997 case EXPR_VARIABLE:
6998
6999 if (check_host_association (e))
7000 t = resolve_function (e);
7001 else
7002 t = resolve_variable (e);
7003
7004 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
7005 && e->ref->type != REF_SUBSTRING)
7006 gfc_resolve_substring_charlen (e);
7007
7008 break;
7009
7010 case EXPR_COMPCALL:
7011 t = resolve_typebound_function (e);
7012 break;
7013
7014 case EXPR_SUBSTRING:
7015 t = gfc_resolve_ref (e);
7016 break;
7017
7018 case EXPR_CONSTANT:
7019 case EXPR_NULL:
7020 t = true;
7021 break;
7022
7023 case EXPR_PPC:
7024 t = resolve_expr_ppc (e);
7025 break;
7026
7027 case EXPR_ARRAY:
7028 t = false;
7029 if (!gfc_resolve_ref (e))
7030 break;
7031
7032 t = gfc_resolve_array_constructor (e);
7033 /* Also try to expand a constructor. */
7034 if (t)
7035 {
7036 gfc_expression_rank (e);
7037 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
7038 gfc_expand_constructor (e, false);
7039 }
7040
7041 /* This provides the opportunity for the length of constructors with
7042 character valued function elements to propagate the string length
7043 to the expression. */
7044 if (t && e->ts.type == BT_CHARACTER)
7045 {
7046 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
7047 here rather then add a duplicate test for it above. */
7048 gfc_expand_constructor (e, false);
7049 t = gfc_resolve_character_array_constructor (e);
7050 }
7051
7052 break;
7053
7054 case EXPR_STRUCTURE:
7055 t = gfc_resolve_ref (e);
7056 if (!t)
7057 break;
7058
7059 t = resolve_structure_cons (e, 0);
7060 if (!t)
7061 break;
7062
7063 t = gfc_simplify_expr (e, 0);
7064 break;
7065
7066 default:
7067 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
7068 }
7069
7070 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
7071 fixup_charlen (e);
7072
7073 inquiry_argument = inquiry_save;
7074 actual_arg = actual_arg_save;
7075 first_actual_arg = first_actual_arg_save;
7076
7077 /* For some reason, resolving these expressions a second time mangles
7078 the typespec of the expression itself. */
7079 if (t && e->expr_type == EXPR_VARIABLE
7080 && e->symtree->n.sym->attr.select_rank_temporary
7081 && UNLIMITED_POLY (e->symtree->n.sym))
7082 e->do_not_resolve_again = 1;
7083
7084 return t;
7085 }
7086
7087
7088 /* Resolve an expression from an iterator. They must be scalar and have
7089 INTEGER or (optionally) REAL type. */
7090
7091 static bool
7092 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
7093 const char *name_msgid)
7094 {
7095 if (!gfc_resolve_expr (expr))
7096 return false;
7097
7098 if (expr->rank != 0)
7099 {
7100 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
7101 return false;
7102 }
7103
7104 if (expr->ts.type != BT_INTEGER)
7105 {
7106 if (expr->ts.type == BT_REAL)
7107 {
7108 if (real_ok)
7109 return gfc_notify_std (GFC_STD_F95_DEL,
7110 "%s at %L must be integer",
7111 _(name_msgid), &expr->where);
7112 else
7113 {
7114 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
7115 &expr->where);
7116 return false;
7117 }
7118 }
7119 else
7120 {
7121 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
7122 return false;
7123 }
7124 }
7125 return true;
7126 }
7127
7128
7129 /* Resolve the expressions in an iterator structure. If REAL_OK is
7130 false allow only INTEGER type iterators, otherwise allow REAL types.
7131 Set own_scope to true for ac-implied-do and data-implied-do as those
7132 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
7133
7134 bool
7135 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
7136 {
7137 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
7138 return false;
7139
7140 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
7141 _("iterator variable")))
7142 return false;
7143
7144 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
7145 "Start expression in DO loop"))
7146 return false;
7147
7148 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
7149 "End expression in DO loop"))
7150 return false;
7151
7152 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
7153 "Step expression in DO loop"))
7154 return false;
7155
7156 /* Convert start, end, and step to the same type as var. */
7157 if (iter->start->ts.kind != iter->var->ts.kind
7158 || iter->start->ts.type != iter->var->ts.type)
7159 gfc_convert_type (iter->start, &iter->var->ts, 1);
7160
7161 if (iter->end->ts.kind != iter->var->ts.kind
7162 || iter->end->ts.type != iter->var->ts.type)
7163 gfc_convert_type (iter->end, &iter->var->ts, 1);
7164
7165 if (iter->step->ts.kind != iter->var->ts.kind
7166 || iter->step->ts.type != iter->var->ts.type)
7167 gfc_convert_type (iter->step, &iter->var->ts, 1);
7168
7169 if (iter->step->expr_type == EXPR_CONSTANT)
7170 {
7171 if ((iter->step->ts.type == BT_INTEGER
7172 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
7173 || (iter->step->ts.type == BT_REAL
7174 && mpfr_sgn (iter->step->value.real) == 0))
7175 {
7176 gfc_error ("Step expression in DO loop at %L cannot be zero",
7177 &iter->step->where);
7178 return false;
7179 }
7180 }
7181
7182 if (iter->start->expr_type == EXPR_CONSTANT
7183 && iter->end->expr_type == EXPR_CONSTANT
7184 && iter->step->expr_type == EXPR_CONSTANT)
7185 {
7186 int sgn, cmp;
7187 if (iter->start->ts.type == BT_INTEGER)
7188 {
7189 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
7190 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
7191 }
7192 else
7193 {
7194 sgn = mpfr_sgn (iter->step->value.real);
7195 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
7196 }
7197 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
7198 gfc_warning (OPT_Wzerotrip,
7199 "DO loop at %L will be executed zero times",
7200 &iter->step->where);
7201 }
7202
7203 if (iter->end->expr_type == EXPR_CONSTANT
7204 && iter->end->ts.type == BT_INTEGER
7205 && iter->step->expr_type == EXPR_CONSTANT
7206 && iter->step->ts.type == BT_INTEGER
7207 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
7208 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
7209 {
7210 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
7211 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
7212
7213 if (is_step_positive
7214 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
7215 gfc_warning (OPT_Wundefined_do_loop,
7216 "DO loop at %L is undefined as it overflows",
7217 &iter->step->where);
7218 else if (!is_step_positive
7219 && mpz_cmp (iter->end->value.integer,
7220 gfc_integer_kinds[k].min_int) == 0)
7221 gfc_warning (OPT_Wundefined_do_loop,
7222 "DO loop at %L is undefined as it underflows",
7223 &iter->step->where);
7224 }
7225
7226 return true;
7227 }
7228
7229
7230 /* Traversal function for find_forall_index. f == 2 signals that
7231 that variable itself is not to be checked - only the references. */
7232
7233 static bool
7234 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
7235 {
7236 if (expr->expr_type != EXPR_VARIABLE)
7237 return false;
7238
7239 /* A scalar assignment */
7240 if (!expr->ref || *f == 1)
7241 {
7242 if (expr->symtree->n.sym == sym)
7243 return true;
7244 else
7245 return false;
7246 }
7247
7248 if (*f == 2)
7249 *f = 1;
7250 return false;
7251 }
7252
7253
7254 /* Check whether the FORALL index appears in the expression or not.
7255 Returns true if SYM is found in EXPR. */
7256
7257 bool
7258 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
7259 {
7260 if (gfc_traverse_expr (expr, sym, forall_index, f))
7261 return true;
7262 else
7263 return false;
7264 }
7265
7266
7267 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
7268 to be a scalar INTEGER variable. The subscripts and stride are scalar
7269 INTEGERs, and if stride is a constant it must be nonzero.
7270 Furthermore "A subscript or stride in a forall-triplet-spec shall
7271 not contain a reference to any index-name in the
7272 forall-triplet-spec-list in which it appears." (7.5.4.1) */
7273
7274 static void
7275 resolve_forall_iterators (gfc_forall_iterator *it)
7276 {
7277 gfc_forall_iterator *iter, *iter2;
7278
7279 for (iter = it; iter; iter = iter->next)
7280 {
7281 if (gfc_resolve_expr (iter->var)
7282 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
7283 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
7284 &iter->var->where);
7285
7286 if (gfc_resolve_expr (iter->start)
7287 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
7288 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
7289 &iter->start->where);
7290 if (iter->var->ts.kind != iter->start->ts.kind)
7291 gfc_convert_type (iter->start, &iter->var->ts, 1);
7292
7293 if (gfc_resolve_expr (iter->end)
7294 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
7295 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
7296 &iter->end->where);
7297 if (iter->var->ts.kind != iter->end->ts.kind)
7298 gfc_convert_type (iter->end, &iter->var->ts, 1);
7299
7300 if (gfc_resolve_expr (iter->stride))
7301 {
7302 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7303 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7304 &iter->stride->where, "INTEGER");
7305
7306 if (iter->stride->expr_type == EXPR_CONSTANT
7307 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7308 gfc_error ("FORALL stride expression at %L cannot be zero",
7309 &iter->stride->where);
7310 }
7311 if (iter->var->ts.kind != iter->stride->ts.kind)
7312 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7313 }
7314
7315 for (iter = it; iter; iter = iter->next)
7316 for (iter2 = iter; iter2; iter2 = iter2->next)
7317 {
7318 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7319 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7320 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7321 gfc_error ("FORALL index %qs may not appear in triplet "
7322 "specification at %L", iter->var->symtree->name,
7323 &iter2->start->where);
7324 }
7325 }
7326
7327
7328 /* Given a pointer to a symbol that is a derived type, see if it's
7329 inaccessible, i.e. if it's defined in another module and the components are
7330 PRIVATE. The search is recursive if necessary. Returns zero if no
7331 inaccessible components are found, nonzero otherwise. */
7332
7333 static int
7334 derived_inaccessible (gfc_symbol *sym)
7335 {
7336 gfc_component *c;
7337
7338 if (sym->attr.use_assoc && sym->attr.private_comp)
7339 return 1;
7340
7341 for (c = sym->components; c; c = c->next)
7342 {
7343 /* Prevent an infinite loop through this function. */
7344 if (c->ts.type == BT_DERIVED && c->attr.pointer
7345 && sym == c->ts.u.derived)
7346 continue;
7347
7348 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7349 return 1;
7350 }
7351
7352 return 0;
7353 }
7354
7355
7356 /* Resolve the argument of a deallocate expression. The expression must be
7357 a pointer or a full array. */
7358
7359 static bool
7360 resolve_deallocate_expr (gfc_expr *e)
7361 {
7362 symbol_attribute attr;
7363 int allocatable, pointer;
7364 gfc_ref *ref;
7365 gfc_symbol *sym;
7366 gfc_component *c;
7367 bool unlimited;
7368
7369 if (!gfc_resolve_expr (e))
7370 return false;
7371
7372 if (e->expr_type != EXPR_VARIABLE)
7373 goto bad;
7374
7375 sym = e->symtree->n.sym;
7376 unlimited = UNLIMITED_POLY(sym);
7377
7378 if (sym->ts.type == BT_CLASS)
7379 {
7380 allocatable = CLASS_DATA (sym)->attr.allocatable;
7381 pointer = CLASS_DATA (sym)->attr.class_pointer;
7382 }
7383 else
7384 {
7385 allocatable = sym->attr.allocatable;
7386 pointer = sym->attr.pointer;
7387 }
7388 for (ref = e->ref; ref; ref = ref->next)
7389 {
7390 switch (ref->type)
7391 {
7392 case REF_ARRAY:
7393 if (ref->u.ar.type != AR_FULL
7394 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7395 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7396 allocatable = 0;
7397 break;
7398
7399 case REF_COMPONENT:
7400 c = ref->u.c.component;
7401 if (c->ts.type == BT_CLASS)
7402 {
7403 allocatable = CLASS_DATA (c)->attr.allocatable;
7404 pointer = CLASS_DATA (c)->attr.class_pointer;
7405 }
7406 else
7407 {
7408 allocatable = c->attr.allocatable;
7409 pointer = c->attr.pointer;
7410 }
7411 break;
7412
7413 case REF_SUBSTRING:
7414 case REF_INQUIRY:
7415 allocatable = 0;
7416 break;
7417 }
7418 }
7419
7420 attr = gfc_expr_attr (e);
7421
7422 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7423 {
7424 bad:
7425 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7426 &e->where);
7427 return false;
7428 }
7429
7430 /* F2008, C644. */
7431 if (gfc_is_coindexed (e))
7432 {
7433 gfc_error ("Coindexed allocatable object at %L", &e->where);
7434 return false;
7435 }
7436
7437 if (pointer
7438 && !gfc_check_vardef_context (e, true, true, false,
7439 _("DEALLOCATE object")))
7440 return false;
7441 if (!gfc_check_vardef_context (e, false, true, false,
7442 _("DEALLOCATE object")))
7443 return false;
7444
7445 return true;
7446 }
7447
7448
7449 /* Returns true if the expression e contains a reference to the symbol sym. */
7450 static bool
7451 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7452 {
7453 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7454 return true;
7455
7456 return false;
7457 }
7458
7459 bool
7460 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7461 {
7462 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7463 }
7464
7465
7466 /* Given the expression node e for an allocatable/pointer of derived type to be
7467 allocated, get the expression node to be initialized afterwards (needed for
7468 derived types with default initializers, and derived types with allocatable
7469 components that need nullification.) */
7470
7471 gfc_expr *
7472 gfc_expr_to_initialize (gfc_expr *e)
7473 {
7474 gfc_expr *result;
7475 gfc_ref *ref;
7476 int i;
7477
7478 result = gfc_copy_expr (e);
7479
7480 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7481 for (ref = result->ref; ref; ref = ref->next)
7482 if (ref->type == REF_ARRAY && ref->next == NULL)
7483 {
7484 if (ref->u.ar.dimen == 0
7485 && ref->u.ar.as && ref->u.ar.as->corank)
7486 return result;
7487
7488 ref->u.ar.type = AR_FULL;
7489
7490 for (i = 0; i < ref->u.ar.dimen; i++)
7491 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7492
7493 break;
7494 }
7495
7496 gfc_free_shape (&result->shape, result->rank);
7497
7498 /* Recalculate rank, shape, etc. */
7499 gfc_resolve_expr (result);
7500 return result;
7501 }
7502
7503
7504 /* If the last ref of an expression is an array ref, return a copy of the
7505 expression with that one removed. Otherwise, a copy of the original
7506 expression. This is used for allocate-expressions and pointer assignment
7507 LHS, where there may be an array specification that needs to be stripped
7508 off when using gfc_check_vardef_context. */
7509
7510 static gfc_expr*
7511 remove_last_array_ref (gfc_expr* e)
7512 {
7513 gfc_expr* e2;
7514 gfc_ref** r;
7515
7516 e2 = gfc_copy_expr (e);
7517 for (r = &e2->ref; *r; r = &(*r)->next)
7518 if ((*r)->type == REF_ARRAY && !(*r)->next)
7519 {
7520 gfc_free_ref_list (*r);
7521 *r = NULL;
7522 break;
7523 }
7524
7525 return e2;
7526 }
7527
7528
7529 /* Used in resolve_allocate_expr to check that a allocation-object and
7530 a source-expr are conformable. This does not catch all possible
7531 cases; in particular a runtime checking is needed. */
7532
7533 static bool
7534 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7535 {
7536 gfc_ref *tail;
7537 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7538
7539 /* First compare rank. */
7540 if ((tail && (!tail->u.ar.as || e1->rank != tail->u.ar.as->rank))
7541 || (!tail && e1->rank != e2->rank))
7542 {
7543 gfc_error ("Source-expr at %L must be scalar or have the "
7544 "same rank as the allocate-object at %L",
7545 &e1->where, &e2->where);
7546 return false;
7547 }
7548
7549 if (e1->shape)
7550 {
7551 int i;
7552 mpz_t s;
7553
7554 mpz_init (s);
7555
7556 for (i = 0; i < e1->rank; i++)
7557 {
7558 if (tail->u.ar.start[i] == NULL)
7559 break;
7560
7561 if (tail->u.ar.end[i])
7562 {
7563 mpz_set (s, tail->u.ar.end[i]->value.integer);
7564 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7565 mpz_add_ui (s, s, 1);
7566 }
7567 else
7568 {
7569 mpz_set (s, tail->u.ar.start[i]->value.integer);
7570 }
7571
7572 if (mpz_cmp (e1->shape[i], s) != 0)
7573 {
7574 gfc_error ("Source-expr at %L and allocate-object at %L must "
7575 "have the same shape", &e1->where, &e2->where);
7576 mpz_clear (s);
7577 return false;
7578 }
7579 }
7580
7581 mpz_clear (s);
7582 }
7583
7584 return true;
7585 }
7586
7587
7588 /* Resolve the expression in an ALLOCATE statement, doing the additional
7589 checks to see whether the expression is OK or not. The expression must
7590 have a trailing array reference that gives the size of the array. */
7591
7592 static bool
7593 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7594 {
7595 int i, pointer, allocatable, dimension, is_abstract;
7596 int codimension;
7597 bool coindexed;
7598 bool unlimited;
7599 symbol_attribute attr;
7600 gfc_ref *ref, *ref2;
7601 gfc_expr *e2;
7602 gfc_array_ref *ar;
7603 gfc_symbol *sym = NULL;
7604 gfc_alloc *a;
7605 gfc_component *c;
7606 bool t;
7607
7608 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7609 checking of coarrays. */
7610 for (ref = e->ref; ref; ref = ref->next)
7611 if (ref->next == NULL)
7612 break;
7613
7614 if (ref && ref->type == REF_ARRAY)
7615 ref->u.ar.in_allocate = true;
7616
7617 if (!gfc_resolve_expr (e))
7618 goto failure;
7619
7620 /* Make sure the expression is allocatable or a pointer. If it is
7621 pointer, the next-to-last reference must be a pointer. */
7622
7623 ref2 = NULL;
7624 if (e->symtree)
7625 sym = e->symtree->n.sym;
7626
7627 /* Check whether ultimate component is abstract and CLASS. */
7628 is_abstract = 0;
7629
7630 /* Is the allocate-object unlimited polymorphic? */
7631 unlimited = UNLIMITED_POLY(e);
7632
7633 if (e->expr_type != EXPR_VARIABLE)
7634 {
7635 allocatable = 0;
7636 attr = gfc_expr_attr (e);
7637 pointer = attr.pointer;
7638 dimension = attr.dimension;
7639 codimension = attr.codimension;
7640 }
7641 else
7642 {
7643 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7644 {
7645 allocatable = CLASS_DATA (sym)->attr.allocatable;
7646 pointer = CLASS_DATA (sym)->attr.class_pointer;
7647 dimension = CLASS_DATA (sym)->attr.dimension;
7648 codimension = CLASS_DATA (sym)->attr.codimension;
7649 is_abstract = CLASS_DATA (sym)->attr.abstract;
7650 }
7651 else
7652 {
7653 allocatable = sym->attr.allocatable;
7654 pointer = sym->attr.pointer;
7655 dimension = sym->attr.dimension;
7656 codimension = sym->attr.codimension;
7657 }
7658
7659 coindexed = false;
7660
7661 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7662 {
7663 switch (ref->type)
7664 {
7665 case REF_ARRAY:
7666 if (ref->u.ar.codimen > 0)
7667 {
7668 int n;
7669 for (n = ref->u.ar.dimen;
7670 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7671 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7672 {
7673 coindexed = true;
7674 break;
7675 }
7676 }
7677
7678 if (ref->next != NULL)
7679 pointer = 0;
7680 break;
7681
7682 case REF_COMPONENT:
7683 /* F2008, C644. */
7684 if (coindexed)
7685 {
7686 gfc_error ("Coindexed allocatable object at %L",
7687 &e->where);
7688 goto failure;
7689 }
7690
7691 c = ref->u.c.component;
7692 if (c->ts.type == BT_CLASS)
7693 {
7694 allocatable = CLASS_DATA (c)->attr.allocatable;
7695 pointer = CLASS_DATA (c)->attr.class_pointer;
7696 dimension = CLASS_DATA (c)->attr.dimension;
7697 codimension = CLASS_DATA (c)->attr.codimension;
7698 is_abstract = CLASS_DATA (c)->attr.abstract;
7699 }
7700 else
7701 {
7702 allocatable = c->attr.allocatable;
7703 pointer = c->attr.pointer;
7704 dimension = c->attr.dimension;
7705 codimension = c->attr.codimension;
7706 is_abstract = c->attr.abstract;
7707 }
7708 break;
7709
7710 case REF_SUBSTRING:
7711 case REF_INQUIRY:
7712 allocatable = 0;
7713 pointer = 0;
7714 break;
7715 }
7716 }
7717 }
7718
7719 /* Check for F08:C628. */
7720 if (allocatable == 0 && pointer == 0 && !unlimited)
7721 {
7722 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7723 &e->where);
7724 goto failure;
7725 }
7726
7727 /* Some checks for the SOURCE tag. */
7728 if (code->expr3)
7729 {
7730 /* Check F03:C631. */
7731 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7732 {
7733 gfc_error ("Type of entity at %L is type incompatible with "
7734 "source-expr at %L", &e->where, &code->expr3->where);
7735 goto failure;
7736 }
7737
7738 /* Check F03:C632 and restriction following Note 6.18. */
7739 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7740 goto failure;
7741
7742 /* Check F03:C633. */
7743 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7744 {
7745 gfc_error ("The allocate-object at %L and the source-expr at %L "
7746 "shall have the same kind type parameter",
7747 &e->where, &code->expr3->where);
7748 goto failure;
7749 }
7750
7751 /* Check F2008, C642. */
7752 if (code->expr3->ts.type == BT_DERIVED
7753 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7754 || (code->expr3->ts.u.derived->from_intmod
7755 == INTMOD_ISO_FORTRAN_ENV
7756 && code->expr3->ts.u.derived->intmod_sym_id
7757 == ISOFORTRAN_LOCK_TYPE)))
7758 {
7759 gfc_error ("The source-expr at %L shall neither be of type "
7760 "LOCK_TYPE nor have a LOCK_TYPE component if "
7761 "allocate-object at %L is a coarray",
7762 &code->expr3->where, &e->where);
7763 goto failure;
7764 }
7765
7766 /* Check TS18508, C702/C703. */
7767 if (code->expr3->ts.type == BT_DERIVED
7768 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7769 || (code->expr3->ts.u.derived->from_intmod
7770 == INTMOD_ISO_FORTRAN_ENV
7771 && code->expr3->ts.u.derived->intmod_sym_id
7772 == ISOFORTRAN_EVENT_TYPE)))
7773 {
7774 gfc_error ("The source-expr at %L shall neither be of type "
7775 "EVENT_TYPE nor have a EVENT_TYPE component if "
7776 "allocate-object at %L is a coarray",
7777 &code->expr3->where, &e->where);
7778 goto failure;
7779 }
7780 }
7781
7782 /* Check F08:C629. */
7783 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7784 && !code->expr3)
7785 {
7786 gcc_assert (e->ts.type == BT_CLASS);
7787 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7788 "type-spec or source-expr", sym->name, &e->where);
7789 goto failure;
7790 }
7791
7792 /* Check F08:C632. */
7793 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7794 && !UNLIMITED_POLY (e))
7795 {
7796 int cmp;
7797
7798 if (!e->ts.u.cl->length)
7799 goto failure;
7800
7801 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7802 code->ext.alloc.ts.u.cl->length);
7803 if (cmp == 1 || cmp == -1 || cmp == -3)
7804 {
7805 gfc_error ("Allocating %s at %L with type-spec requires the same "
7806 "character-length parameter as in the declaration",
7807 sym->name, &e->where);
7808 goto failure;
7809 }
7810 }
7811
7812 /* In the variable definition context checks, gfc_expr_attr is used
7813 on the expression. This is fooled by the array specification
7814 present in e, thus we have to eliminate that one temporarily. */
7815 e2 = remove_last_array_ref (e);
7816 t = true;
7817 if (t && pointer)
7818 t = gfc_check_vardef_context (e2, true, true, false,
7819 _("ALLOCATE object"));
7820 if (t)
7821 t = gfc_check_vardef_context (e2, false, true, false,
7822 _("ALLOCATE object"));
7823 gfc_free_expr (e2);
7824 if (!t)
7825 goto failure;
7826
7827 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7828 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7829 {
7830 /* For class arrays, the initialization with SOURCE is done
7831 using _copy and trans_call. It is convenient to exploit that
7832 when the allocated type is different from the declared type but
7833 no SOURCE exists by setting expr3. */
7834 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7835 }
7836 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7837 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7838 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7839 {
7840 /* We have to zero initialize the integer variable. */
7841 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7842 }
7843
7844 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7845 {
7846 /* Make sure the vtab symbol is present when
7847 the module variables are generated. */
7848 gfc_typespec ts = e->ts;
7849 if (code->expr3)
7850 ts = code->expr3->ts;
7851 else if (code->ext.alloc.ts.type == BT_DERIVED)
7852 ts = code->ext.alloc.ts;
7853
7854 /* Finding the vtab also publishes the type's symbol. Therefore this
7855 statement is necessary. */
7856 gfc_find_derived_vtab (ts.u.derived);
7857 }
7858 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7859 {
7860 /* Again, make sure the vtab symbol is present when
7861 the module variables are generated. */
7862 gfc_typespec *ts = NULL;
7863 if (code->expr3)
7864 ts = &code->expr3->ts;
7865 else
7866 ts = &code->ext.alloc.ts;
7867
7868 gcc_assert (ts);
7869
7870 /* Finding the vtab also publishes the type's symbol. Therefore this
7871 statement is necessary. */
7872 gfc_find_vtab (ts);
7873 }
7874
7875 if (dimension == 0 && codimension == 0)
7876 goto success;
7877
7878 /* Make sure the last reference node is an array specification. */
7879
7880 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7881 || (dimension && ref2->u.ar.dimen == 0))
7882 {
7883 /* F08:C633. */
7884 if (code->expr3)
7885 {
7886 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7887 "in ALLOCATE statement at %L", &e->where))
7888 goto failure;
7889 if (code->expr3->rank != 0)
7890 *array_alloc_wo_spec = true;
7891 else
7892 {
7893 gfc_error ("Array specification or array-valued SOURCE= "
7894 "expression required in ALLOCATE statement at %L",
7895 &e->where);
7896 goto failure;
7897 }
7898 }
7899 else
7900 {
7901 gfc_error ("Array specification required in ALLOCATE statement "
7902 "at %L", &e->where);
7903 goto failure;
7904 }
7905 }
7906
7907 /* Make sure that the array section reference makes sense in the
7908 context of an ALLOCATE specification. */
7909
7910 ar = &ref2->u.ar;
7911
7912 if (codimension)
7913 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7914 {
7915 switch (ar->dimen_type[i])
7916 {
7917 case DIMEN_THIS_IMAGE:
7918 gfc_error ("Coarray specification required in ALLOCATE statement "
7919 "at %L", &e->where);
7920 goto failure;
7921
7922 case DIMEN_RANGE:
7923 if (ar->start[i] == 0 || ar->end[i] == 0)
7924 {
7925 /* If ar->stride[i] is NULL, we issued a previous error. */
7926 if (ar->stride[i] == NULL)
7927 gfc_error ("Bad array specification in ALLOCATE statement "
7928 "at %L", &e->where);
7929 goto failure;
7930 }
7931 else if (gfc_dep_compare_expr (ar->start[i], ar->end[i]) == 1)
7932 {
7933 gfc_error ("Upper cobound is less than lower cobound at %L",
7934 &ar->start[i]->where);
7935 goto failure;
7936 }
7937 break;
7938
7939 case DIMEN_ELEMENT:
7940 if (ar->start[i]->expr_type == EXPR_CONSTANT)
7941 {
7942 gcc_assert (ar->start[i]->ts.type == BT_INTEGER);
7943 if (mpz_cmp_si (ar->start[i]->value.integer, 1) < 0)
7944 {
7945 gfc_error ("Upper cobound is less than lower cobound "
7946 "of 1 at %L", &ar->start[i]->where);
7947 goto failure;
7948 }
7949 }
7950 break;
7951
7952 case DIMEN_STAR:
7953 break;
7954
7955 default:
7956 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7957 &e->where);
7958 goto failure;
7959
7960 }
7961 }
7962 for (i = 0; i < ar->dimen; i++)
7963 {
7964 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
7965 goto check_symbols;
7966
7967 switch (ar->dimen_type[i])
7968 {
7969 case DIMEN_ELEMENT:
7970 break;
7971
7972 case DIMEN_RANGE:
7973 if (ar->start[i] != NULL
7974 && ar->end[i] != NULL
7975 && ar->stride[i] == NULL)
7976 break;
7977
7978 /* Fall through. */
7979
7980 case DIMEN_UNKNOWN:
7981 case DIMEN_VECTOR:
7982 case DIMEN_STAR:
7983 case DIMEN_THIS_IMAGE:
7984 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7985 &e->where);
7986 goto failure;
7987 }
7988
7989 check_symbols:
7990 for (a = code->ext.alloc.list; a; a = a->next)
7991 {
7992 sym = a->expr->symtree->n.sym;
7993
7994 /* TODO - check derived type components. */
7995 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
7996 continue;
7997
7998 if ((ar->start[i] != NULL
7999 && gfc_find_sym_in_expr (sym, ar->start[i]))
8000 || (ar->end[i] != NULL
8001 && gfc_find_sym_in_expr (sym, ar->end[i])))
8002 {
8003 gfc_error ("%qs must not appear in the array specification at "
8004 "%L in the same ALLOCATE statement where it is "
8005 "itself allocated", sym->name, &ar->where);
8006 goto failure;
8007 }
8008 }
8009 }
8010
8011 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
8012 {
8013 if (ar->dimen_type[i] == DIMEN_ELEMENT
8014 || ar->dimen_type[i] == DIMEN_RANGE)
8015 {
8016 if (i == (ar->dimen + ar->codimen - 1))
8017 {
8018 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
8019 "statement at %L", &e->where);
8020 goto failure;
8021 }
8022 continue;
8023 }
8024
8025 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
8026 && ar->stride[i] == NULL)
8027 break;
8028
8029 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
8030 &e->where);
8031 goto failure;
8032 }
8033
8034 success:
8035 return true;
8036
8037 failure:
8038 return false;
8039 }
8040
8041
8042 static void
8043 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
8044 {
8045 gfc_expr *stat, *errmsg, *pe, *qe;
8046 gfc_alloc *a, *p, *q;
8047
8048 stat = code->expr1;
8049 errmsg = code->expr2;
8050
8051 /* Check the stat variable. */
8052 if (stat)
8053 {
8054 gfc_check_vardef_context (stat, false, false, false,
8055 _("STAT variable"));
8056
8057 if ((stat->ts.type != BT_INTEGER
8058 && !(stat->ref && (stat->ref->type == REF_ARRAY
8059 || stat->ref->type == REF_COMPONENT)))
8060 || stat->rank > 0)
8061 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
8062 "variable", &stat->where);
8063
8064 for (p = code->ext.alloc.list; p; p = p->next)
8065 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
8066 {
8067 gfc_ref *ref1, *ref2;
8068 bool found = true;
8069
8070 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
8071 ref1 = ref1->next, ref2 = ref2->next)
8072 {
8073 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8074 continue;
8075 if (ref1->u.c.component->name != ref2->u.c.component->name)
8076 {
8077 found = false;
8078 break;
8079 }
8080 }
8081
8082 if (found)
8083 {
8084 gfc_error ("Stat-variable at %L shall not be %sd within "
8085 "the same %s statement", &stat->where, fcn, fcn);
8086 break;
8087 }
8088 }
8089 }
8090
8091 /* Check the errmsg variable. */
8092 if (errmsg)
8093 {
8094 if (!stat)
8095 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
8096 &errmsg->where);
8097
8098 gfc_check_vardef_context (errmsg, false, false, false,
8099 _("ERRMSG variable"));
8100
8101 /* F18:R928 alloc-opt is ERRMSG = errmsg-variable
8102 F18:R930 errmsg-variable is scalar-default-char-variable
8103 F18:R906 default-char-variable is variable
8104 F18:C906 default-char-variable shall be default character. */
8105 if ((errmsg->ts.type != BT_CHARACTER
8106 && !(errmsg->ref
8107 && (errmsg->ref->type == REF_ARRAY
8108 || errmsg->ref->type == REF_COMPONENT)))
8109 || errmsg->rank > 0
8110 || errmsg->ts.kind != gfc_default_character_kind)
8111 gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
8112 "variable", &errmsg->where);
8113
8114 for (p = code->ext.alloc.list; p; p = p->next)
8115 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
8116 {
8117 gfc_ref *ref1, *ref2;
8118 bool found = true;
8119
8120 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
8121 ref1 = ref1->next, ref2 = ref2->next)
8122 {
8123 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8124 continue;
8125 if (ref1->u.c.component->name != ref2->u.c.component->name)
8126 {
8127 found = false;
8128 break;
8129 }
8130 }
8131
8132 if (found)
8133 {
8134 gfc_error ("Errmsg-variable at %L shall not be %sd within "
8135 "the same %s statement", &errmsg->where, fcn, fcn);
8136 break;
8137 }
8138 }
8139 }
8140
8141 /* Check that an allocate-object appears only once in the statement. */
8142
8143 for (p = code->ext.alloc.list; p; p = p->next)
8144 {
8145 pe = p->expr;
8146 for (q = p->next; q; q = q->next)
8147 {
8148 qe = q->expr;
8149 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
8150 {
8151 /* This is a potential collision. */
8152 gfc_ref *pr = pe->ref;
8153 gfc_ref *qr = qe->ref;
8154
8155 /* Follow the references until
8156 a) They start to differ, in which case there is no error;
8157 you can deallocate a%b and a%c in a single statement
8158 b) Both of them stop, which is an error
8159 c) One of them stops, which is also an error. */
8160 while (1)
8161 {
8162 if (pr == NULL && qr == NULL)
8163 {
8164 gfc_error ("Allocate-object at %L also appears at %L",
8165 &pe->where, &qe->where);
8166 break;
8167 }
8168 else if (pr != NULL && qr == NULL)
8169 {
8170 gfc_error ("Allocate-object at %L is subobject of"
8171 " object at %L", &pe->where, &qe->where);
8172 break;
8173 }
8174 else if (pr == NULL && qr != NULL)
8175 {
8176 gfc_error ("Allocate-object at %L is subobject of"
8177 " object at %L", &qe->where, &pe->where);
8178 break;
8179 }
8180 /* Here, pr != NULL && qr != NULL */
8181 gcc_assert(pr->type == qr->type);
8182 if (pr->type == REF_ARRAY)
8183 {
8184 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
8185 which are legal. */
8186 gcc_assert (qr->type == REF_ARRAY);
8187
8188 if (pr->next && qr->next)
8189 {
8190 int i;
8191 gfc_array_ref *par = &(pr->u.ar);
8192 gfc_array_ref *qar = &(qr->u.ar);
8193
8194 for (i=0; i<par->dimen; i++)
8195 {
8196 if ((par->start[i] != NULL
8197 || qar->start[i] != NULL)
8198 && gfc_dep_compare_expr (par->start[i],
8199 qar->start[i]) != 0)
8200 goto break_label;
8201 }
8202 }
8203 }
8204 else
8205 {
8206 if (pr->u.c.component->name != qr->u.c.component->name)
8207 break;
8208 }
8209
8210 pr = pr->next;
8211 qr = qr->next;
8212 }
8213 break_label:
8214 ;
8215 }
8216 }
8217 }
8218
8219 if (strcmp (fcn, "ALLOCATE") == 0)
8220 {
8221 bool arr_alloc_wo_spec = false;
8222
8223 /* Resolving the expr3 in the loop over all objects to allocate would
8224 execute loop invariant code for each loop item. Therefore do it just
8225 once here. */
8226 if (code->expr3 && code->expr3->mold
8227 && code->expr3->ts.type == BT_DERIVED)
8228 {
8229 /* Default initialization via MOLD (non-polymorphic). */
8230 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
8231 if (rhs != NULL)
8232 {
8233 gfc_resolve_expr (rhs);
8234 gfc_free_expr (code->expr3);
8235 code->expr3 = rhs;
8236 }
8237 }
8238 for (a = code->ext.alloc.list; a; a = a->next)
8239 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
8240
8241 if (arr_alloc_wo_spec && code->expr3)
8242 {
8243 /* Mark the allocate to have to take the array specification
8244 from the expr3. */
8245 code->ext.alloc.arr_spec_from_expr3 = 1;
8246 }
8247 }
8248 else
8249 {
8250 for (a = code->ext.alloc.list; a; a = a->next)
8251 resolve_deallocate_expr (a->expr);
8252 }
8253 }
8254
8255
8256 /************ SELECT CASE resolution subroutines ************/
8257
8258 /* Callback function for our mergesort variant. Determines interval
8259 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
8260 op1 > op2. Assumes we're not dealing with the default case.
8261 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
8262 There are nine situations to check. */
8263
8264 static int
8265 compare_cases (const gfc_case *op1, const gfc_case *op2)
8266 {
8267 int retval;
8268
8269 if (op1->low == NULL) /* op1 = (:L) */
8270 {
8271 /* op2 = (:N), so overlap. */
8272 retval = 0;
8273 /* op2 = (M:) or (M:N), L < M */
8274 if (op2->low != NULL
8275 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8276 retval = -1;
8277 }
8278 else if (op1->high == NULL) /* op1 = (K:) */
8279 {
8280 /* op2 = (M:), so overlap. */
8281 retval = 0;
8282 /* op2 = (:N) or (M:N), K > N */
8283 if (op2->high != NULL
8284 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8285 retval = 1;
8286 }
8287 else /* op1 = (K:L) */
8288 {
8289 if (op2->low == NULL) /* op2 = (:N), K > N */
8290 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8291 ? 1 : 0;
8292 else if (op2->high == NULL) /* op2 = (M:), L < M */
8293 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8294 ? -1 : 0;
8295 else /* op2 = (M:N) */
8296 {
8297 retval = 0;
8298 /* L < M */
8299 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8300 retval = -1;
8301 /* K > N */
8302 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8303 retval = 1;
8304 }
8305 }
8306
8307 return retval;
8308 }
8309
8310
8311 /* Merge-sort a double linked case list, detecting overlap in the
8312 process. LIST is the head of the double linked case list before it
8313 is sorted. Returns the head of the sorted list if we don't see any
8314 overlap, or NULL otherwise. */
8315
8316 static gfc_case *
8317 check_case_overlap (gfc_case *list)
8318 {
8319 gfc_case *p, *q, *e, *tail;
8320 int insize, nmerges, psize, qsize, cmp, overlap_seen;
8321
8322 /* If the passed list was empty, return immediately. */
8323 if (!list)
8324 return NULL;
8325
8326 overlap_seen = 0;
8327 insize = 1;
8328
8329 /* Loop unconditionally. The only exit from this loop is a return
8330 statement, when we've finished sorting the case list. */
8331 for (;;)
8332 {
8333 p = list;
8334 list = NULL;
8335 tail = NULL;
8336
8337 /* Count the number of merges we do in this pass. */
8338 nmerges = 0;
8339
8340 /* Loop while there exists a merge to be done. */
8341 while (p)
8342 {
8343 int i;
8344
8345 /* Count this merge. */
8346 nmerges++;
8347
8348 /* Cut the list in two pieces by stepping INSIZE places
8349 forward in the list, starting from P. */
8350 psize = 0;
8351 q = p;
8352 for (i = 0; i < insize; i++)
8353 {
8354 psize++;
8355 q = q->right;
8356 if (!q)
8357 break;
8358 }
8359 qsize = insize;
8360
8361 /* Now we have two lists. Merge them! */
8362 while (psize > 0 || (qsize > 0 && q != NULL))
8363 {
8364 /* See from which the next case to merge comes from. */
8365 if (psize == 0)
8366 {
8367 /* P is empty so the next case must come from Q. */
8368 e = q;
8369 q = q->right;
8370 qsize--;
8371 }
8372 else if (qsize == 0 || q == NULL)
8373 {
8374 /* Q is empty. */
8375 e = p;
8376 p = p->right;
8377 psize--;
8378 }
8379 else
8380 {
8381 cmp = compare_cases (p, q);
8382 if (cmp < 0)
8383 {
8384 /* The whole case range for P is less than the
8385 one for Q. */
8386 e = p;
8387 p = p->right;
8388 psize--;
8389 }
8390 else if (cmp > 0)
8391 {
8392 /* The whole case range for Q is greater than
8393 the case range for P. */
8394 e = q;
8395 q = q->right;
8396 qsize--;
8397 }
8398 else
8399 {
8400 /* The cases overlap, or they are the same
8401 element in the list. Either way, we must
8402 issue an error and get the next case from P. */
8403 /* FIXME: Sort P and Q by line number. */
8404 gfc_error ("CASE label at %L overlaps with CASE "
8405 "label at %L", &p->where, &q->where);
8406 overlap_seen = 1;
8407 e = p;
8408 p = p->right;
8409 psize--;
8410 }
8411 }
8412
8413 /* Add the next element to the merged list. */
8414 if (tail)
8415 tail->right = e;
8416 else
8417 list = e;
8418 e->left = tail;
8419 tail = e;
8420 }
8421
8422 /* P has now stepped INSIZE places along, and so has Q. So
8423 they're the same. */
8424 p = q;
8425 }
8426 tail->right = NULL;
8427
8428 /* If we have done only one merge or none at all, we've
8429 finished sorting the cases. */
8430 if (nmerges <= 1)
8431 {
8432 if (!overlap_seen)
8433 return list;
8434 else
8435 return NULL;
8436 }
8437
8438 /* Otherwise repeat, merging lists twice the size. */
8439 insize *= 2;
8440 }
8441 }
8442
8443
8444 /* Check to see if an expression is suitable for use in a CASE statement.
8445 Makes sure that all case expressions are scalar constants of the same
8446 type. Return false if anything is wrong. */
8447
8448 static bool
8449 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8450 {
8451 if (e == NULL) return true;
8452
8453 if (e->ts.type != case_expr->ts.type)
8454 {
8455 gfc_error ("Expression in CASE statement at %L must be of type %s",
8456 &e->where, gfc_basic_typename (case_expr->ts.type));
8457 return false;
8458 }
8459
8460 /* C805 (R808) For a given case-construct, each case-value shall be of
8461 the same type as case-expr. For character type, length differences
8462 are allowed, but the kind type parameters shall be the same. */
8463
8464 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8465 {
8466 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8467 &e->where, case_expr->ts.kind);
8468 return false;
8469 }
8470
8471 /* Convert the case value kind to that of case expression kind,
8472 if needed */
8473
8474 if (e->ts.kind != case_expr->ts.kind)
8475 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8476
8477 if (e->rank != 0)
8478 {
8479 gfc_error ("Expression in CASE statement at %L must be scalar",
8480 &e->where);
8481 return false;
8482 }
8483
8484 return true;
8485 }
8486
8487
8488 /* Given a completely parsed select statement, we:
8489
8490 - Validate all expressions and code within the SELECT.
8491 - Make sure that the selection expression is not of the wrong type.
8492 - Make sure that no case ranges overlap.
8493 - Eliminate unreachable cases and unreachable code resulting from
8494 removing case labels.
8495
8496 The standard does allow unreachable cases, e.g. CASE (5:3). But
8497 they are a hassle for code generation, and to prevent that, we just
8498 cut them out here. This is not necessary for overlapping cases
8499 because they are illegal and we never even try to generate code.
8500
8501 We have the additional caveat that a SELECT construct could have
8502 been a computed GOTO in the source code. Fortunately we can fairly
8503 easily work around that here: The case_expr for a "real" SELECT CASE
8504 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8505 we have to do is make sure that the case_expr is a scalar integer
8506 expression. */
8507
8508 static void
8509 resolve_select (gfc_code *code, bool select_type)
8510 {
8511 gfc_code *body;
8512 gfc_expr *case_expr;
8513 gfc_case *cp, *default_case, *tail, *head;
8514 int seen_unreachable;
8515 int seen_logical;
8516 int ncases;
8517 bt type;
8518 bool t;
8519
8520 if (code->expr1 == NULL)
8521 {
8522 /* This was actually a computed GOTO statement. */
8523 case_expr = code->expr2;
8524 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8525 gfc_error ("Selection expression in computed GOTO statement "
8526 "at %L must be a scalar integer expression",
8527 &case_expr->where);
8528
8529 /* Further checking is not necessary because this SELECT was built
8530 by the compiler, so it should always be OK. Just move the
8531 case_expr from expr2 to expr so that we can handle computed
8532 GOTOs as normal SELECTs from here on. */
8533 code->expr1 = code->expr2;
8534 code->expr2 = NULL;
8535 return;
8536 }
8537
8538 case_expr = code->expr1;
8539 type = case_expr->ts.type;
8540
8541 /* F08:C830. */
8542 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8543 {
8544 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8545 &case_expr->where, gfc_typename (case_expr));
8546
8547 /* Punt. Going on here just produce more garbage error messages. */
8548 return;
8549 }
8550
8551 /* F08:R842. */
8552 if (!select_type && case_expr->rank != 0)
8553 {
8554 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8555 "expression", &case_expr->where);
8556
8557 /* Punt. */
8558 return;
8559 }
8560
8561 /* Raise a warning if an INTEGER case value exceeds the range of
8562 the case-expr. Later, all expressions will be promoted to the
8563 largest kind of all case-labels. */
8564
8565 if (type == BT_INTEGER)
8566 for (body = code->block; body; body = body->block)
8567 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8568 {
8569 if (cp->low
8570 && gfc_check_integer_range (cp->low->value.integer,
8571 case_expr->ts.kind) != ARITH_OK)
8572 gfc_warning (0, "Expression in CASE statement at %L is "
8573 "not in the range of %s", &cp->low->where,
8574 gfc_typename (case_expr));
8575
8576 if (cp->high
8577 && cp->low != cp->high
8578 && gfc_check_integer_range (cp->high->value.integer,
8579 case_expr->ts.kind) != ARITH_OK)
8580 gfc_warning (0, "Expression in CASE statement at %L is "
8581 "not in the range of %s", &cp->high->where,
8582 gfc_typename (case_expr));
8583 }
8584
8585 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8586 of the SELECT CASE expression and its CASE values. Walk the lists
8587 of case values, and if we find a mismatch, promote case_expr to
8588 the appropriate kind. */
8589
8590 if (type == BT_LOGICAL || type == BT_INTEGER)
8591 {
8592 for (body = code->block; body; body = body->block)
8593 {
8594 /* Walk the case label list. */
8595 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8596 {
8597 /* Intercept the DEFAULT case. It does not have a kind. */
8598 if (cp->low == NULL && cp->high == NULL)
8599 continue;
8600
8601 /* Unreachable case ranges are discarded, so ignore. */
8602 if (cp->low != NULL && cp->high != NULL
8603 && cp->low != cp->high
8604 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8605 continue;
8606
8607 if (cp->low != NULL
8608 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8609 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8610
8611 if (cp->high != NULL
8612 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8613 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8614 }
8615 }
8616 }
8617
8618 /* Assume there is no DEFAULT case. */
8619 default_case = NULL;
8620 head = tail = NULL;
8621 ncases = 0;
8622 seen_logical = 0;
8623
8624 for (body = code->block; body; body = body->block)
8625 {
8626 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8627 t = true;
8628 seen_unreachable = 0;
8629
8630 /* Walk the case label list, making sure that all case labels
8631 are legal. */
8632 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8633 {
8634 /* Count the number of cases in the whole construct. */
8635 ncases++;
8636
8637 /* Intercept the DEFAULT case. */
8638 if (cp->low == NULL && cp->high == NULL)
8639 {
8640 if (default_case != NULL)
8641 {
8642 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8643 "by a second DEFAULT CASE at %L",
8644 &default_case->where, &cp->where);
8645 t = false;
8646 break;
8647 }
8648 else
8649 {
8650 default_case = cp;
8651 continue;
8652 }
8653 }
8654
8655 /* Deal with single value cases and case ranges. Errors are
8656 issued from the validation function. */
8657 if (!validate_case_label_expr (cp->low, case_expr)
8658 || !validate_case_label_expr (cp->high, case_expr))
8659 {
8660 t = false;
8661 break;
8662 }
8663
8664 if (type == BT_LOGICAL
8665 && ((cp->low == NULL || cp->high == NULL)
8666 || cp->low != cp->high))
8667 {
8668 gfc_error ("Logical range in CASE statement at %L is not "
8669 "allowed", &cp->low->where);
8670 t = false;
8671 break;
8672 }
8673
8674 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8675 {
8676 int value;
8677 value = cp->low->value.logical == 0 ? 2 : 1;
8678 if (value & seen_logical)
8679 {
8680 gfc_error ("Constant logical value in CASE statement "
8681 "is repeated at %L",
8682 &cp->low->where);
8683 t = false;
8684 break;
8685 }
8686 seen_logical |= value;
8687 }
8688
8689 if (cp->low != NULL && cp->high != NULL
8690 && cp->low != cp->high
8691 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8692 {
8693 if (warn_surprising)
8694 gfc_warning (OPT_Wsurprising,
8695 "Range specification at %L can never be matched",
8696 &cp->where);
8697
8698 cp->unreachable = 1;
8699 seen_unreachable = 1;
8700 }
8701 else
8702 {
8703 /* If the case range can be matched, it can also overlap with
8704 other cases. To make sure it does not, we put it in a
8705 double linked list here. We sort that with a merge sort
8706 later on to detect any overlapping cases. */
8707 if (!head)
8708 {
8709 head = tail = cp;
8710 head->right = head->left = NULL;
8711 }
8712 else
8713 {
8714 tail->right = cp;
8715 tail->right->left = tail;
8716 tail = tail->right;
8717 tail->right = NULL;
8718 }
8719 }
8720 }
8721
8722 /* It there was a failure in the previous case label, give up
8723 for this case label list. Continue with the next block. */
8724 if (!t)
8725 continue;
8726
8727 /* See if any case labels that are unreachable have been seen.
8728 If so, we eliminate them. This is a bit of a kludge because
8729 the case lists for a single case statement (label) is a
8730 single forward linked lists. */
8731 if (seen_unreachable)
8732 {
8733 /* Advance until the first case in the list is reachable. */
8734 while (body->ext.block.case_list != NULL
8735 && body->ext.block.case_list->unreachable)
8736 {
8737 gfc_case *n = body->ext.block.case_list;
8738 body->ext.block.case_list = body->ext.block.case_list->next;
8739 n->next = NULL;
8740 gfc_free_case_list (n);
8741 }
8742
8743 /* Strip all other unreachable cases. */
8744 if (body->ext.block.case_list)
8745 {
8746 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8747 {
8748 if (cp->next->unreachable)
8749 {
8750 gfc_case *n = cp->next;
8751 cp->next = cp->next->next;
8752 n->next = NULL;
8753 gfc_free_case_list (n);
8754 }
8755 }
8756 }
8757 }
8758 }
8759
8760 /* See if there were overlapping cases. If the check returns NULL,
8761 there was overlap. In that case we don't do anything. If head
8762 is non-NULL, we prepend the DEFAULT case. The sorted list can
8763 then used during code generation for SELECT CASE constructs with
8764 a case expression of a CHARACTER type. */
8765 if (head)
8766 {
8767 head = check_case_overlap (head);
8768
8769 /* Prepend the default_case if it is there. */
8770 if (head != NULL && default_case)
8771 {
8772 default_case->left = NULL;
8773 default_case->right = head;
8774 head->left = default_case;
8775 }
8776 }
8777
8778 /* Eliminate dead blocks that may be the result if we've seen
8779 unreachable case labels for a block. */
8780 for (body = code; body && body->block; body = body->block)
8781 {
8782 if (body->block->ext.block.case_list == NULL)
8783 {
8784 /* Cut the unreachable block from the code chain. */
8785 gfc_code *c = body->block;
8786 body->block = c->block;
8787
8788 /* Kill the dead block, but not the blocks below it. */
8789 c->block = NULL;
8790 gfc_free_statements (c);
8791 }
8792 }
8793
8794 /* More than two cases is legal but insane for logical selects.
8795 Issue a warning for it. */
8796 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8797 gfc_warning (OPT_Wsurprising,
8798 "Logical SELECT CASE block at %L has more that two cases",
8799 &code->loc);
8800 }
8801
8802
8803 /* Check if a derived type is extensible. */
8804
8805 bool
8806 gfc_type_is_extensible (gfc_symbol *sym)
8807 {
8808 return !(sym->attr.is_bind_c || sym->attr.sequence
8809 || (sym->attr.is_class
8810 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8811 }
8812
8813
8814 static void
8815 resolve_types (gfc_namespace *ns);
8816
8817 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8818 correct as well as possibly the array-spec. */
8819
8820 static void
8821 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8822 {
8823 gfc_expr* target;
8824
8825 gcc_assert (sym->assoc);
8826 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8827
8828 /* If this is for SELECT TYPE, the target may not yet be set. In that
8829 case, return. Resolution will be called later manually again when
8830 this is done. */
8831 target = sym->assoc->target;
8832 if (!target)
8833 return;
8834 gcc_assert (!sym->assoc->dangling);
8835
8836 if (resolve_target && !gfc_resolve_expr (target))
8837 return;
8838
8839 /* For variable targets, we get some attributes from the target. */
8840 if (target->expr_type == EXPR_VARIABLE)
8841 {
8842 gfc_symbol* tsym;
8843
8844 gcc_assert (target->symtree);
8845 tsym = target->symtree->n.sym;
8846
8847 if (tsym->attr.subroutine
8848 || tsym->attr.external
8849 || (tsym->attr.function
8850 && (tsym->result != tsym || tsym->attr.recursive)))
8851 {
8852 gfc_error ("Associating entity %qs at %L is a procedure name",
8853 tsym->name, &target->where);
8854 return;
8855 }
8856
8857 if (gfc_expr_attr (target).proc_pointer)
8858 {
8859 gfc_error ("Associating entity %qs at %L is a procedure pointer",
8860 tsym->name, &target->where);
8861 return;
8862 }
8863
8864 sym->attr.asynchronous = tsym->attr.asynchronous;
8865 sym->attr.volatile_ = tsym->attr.volatile_;
8866
8867 sym->attr.target = tsym->attr.target
8868 || gfc_expr_attr (target).pointer;
8869 if (is_subref_array (target))
8870 sym->attr.subref_array_pointer = 1;
8871 }
8872 else if (target->ts.type == BT_PROCEDURE)
8873 {
8874 gfc_error ("Associating selector-expression at %L yields a procedure",
8875 &target->where);
8876 return;
8877 }
8878
8879 if (target->expr_type == EXPR_NULL)
8880 {
8881 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8882 return;
8883 }
8884 else if (target->ts.type == BT_UNKNOWN)
8885 {
8886 gfc_error ("Selector at %L has no type", &target->where);
8887 return;
8888 }
8889
8890 /* Get type if this was not already set. Note that it can be
8891 some other type than the target in case this is a SELECT TYPE
8892 selector! So we must not update when the type is already there. */
8893 if (sym->ts.type == BT_UNKNOWN)
8894 sym->ts = target->ts;
8895
8896 gcc_assert (sym->ts.type != BT_UNKNOWN);
8897
8898 /* See if this is a valid association-to-variable. */
8899 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8900 && !gfc_has_vector_subscript (target));
8901
8902 /* Finally resolve if this is an array or not. */
8903 if (sym->attr.dimension && target->rank == 0)
8904 {
8905 /* primary.c makes the assumption that a reference to an associate
8906 name followed by a left parenthesis is an array reference. */
8907 if (sym->ts.type != BT_CHARACTER)
8908 gfc_error ("Associate-name %qs at %L is used as array",
8909 sym->name, &sym->declared_at);
8910 sym->attr.dimension = 0;
8911 return;
8912 }
8913
8914
8915 /* We cannot deal with class selectors that need temporaries. */
8916 if (target->ts.type == BT_CLASS
8917 && gfc_ref_needs_temporary_p (target->ref))
8918 {
8919 gfc_error ("CLASS selector at %L needs a temporary which is not "
8920 "yet implemented", &target->where);
8921 return;
8922 }
8923
8924 if (target->ts.type == BT_CLASS)
8925 gfc_fix_class_refs (target);
8926
8927 if (target->rank != 0 && !sym->attr.select_rank_temporary)
8928 {
8929 gfc_array_spec *as;
8930 /* The rank may be incorrectly guessed at parsing, therefore make sure
8931 it is corrected now. */
8932 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8933 {
8934 if (!sym->as)
8935 sym->as = gfc_get_array_spec ();
8936 as = sym->as;
8937 as->rank = target->rank;
8938 as->type = AS_DEFERRED;
8939 as->corank = gfc_get_corank (target);
8940 sym->attr.dimension = 1;
8941 if (as->corank != 0)
8942 sym->attr.codimension = 1;
8943 }
8944 else if (sym->ts.type == BT_CLASS && (!CLASS_DATA (sym)->as || sym->assoc->rankguessed))
8945 {
8946 if (!CLASS_DATA (sym)->as)
8947 CLASS_DATA (sym)->as = gfc_get_array_spec ();
8948 as = CLASS_DATA (sym)->as;
8949 as->rank = target->rank;
8950 as->type = AS_DEFERRED;
8951 as->corank = gfc_get_corank (target);
8952 CLASS_DATA (sym)->attr.dimension = 1;
8953 if (as->corank != 0)
8954 CLASS_DATA (sym)->attr.codimension = 1;
8955 }
8956 }
8957 else if (!sym->attr.select_rank_temporary)
8958 {
8959 /* target's rank is 0, but the type of the sym is still array valued,
8960 which has to be corrected. */
8961 if (sym->ts.type == BT_CLASS
8962 && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
8963 {
8964 gfc_array_spec *as;
8965 symbol_attribute attr;
8966 /* The associated variable's type is still the array type
8967 correct this now. */
8968 gfc_typespec *ts = &target->ts;
8969 gfc_ref *ref;
8970 gfc_component *c;
8971 for (ref = target->ref; ref != NULL; ref = ref->next)
8972 {
8973 switch (ref->type)
8974 {
8975 case REF_COMPONENT:
8976 ts = &ref->u.c.component->ts;
8977 break;
8978 case REF_ARRAY:
8979 if (ts->type == BT_CLASS)
8980 ts = &ts->u.derived->components->ts;
8981 break;
8982 default:
8983 break;
8984 }
8985 }
8986 /* Create a scalar instance of the current class type. Because the
8987 rank of a class array goes into its name, the type has to be
8988 rebuild. The alternative of (re-)setting just the attributes
8989 and as in the current type, destroys the type also in other
8990 places. */
8991 as = NULL;
8992 sym->ts = *ts;
8993 sym->ts.type = BT_CLASS;
8994 attr = CLASS_DATA (sym)->attr;
8995 attr.class_ok = 0;
8996 attr.associate_var = 1;
8997 attr.dimension = attr.codimension = 0;
8998 attr.class_pointer = 1;
8999 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
9000 gcc_unreachable ();
9001 /* Make sure the _vptr is set. */
9002 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
9003 if (c->ts.u.derived == NULL)
9004 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
9005 CLASS_DATA (sym)->attr.pointer = 1;
9006 CLASS_DATA (sym)->attr.class_pointer = 1;
9007 gfc_set_sym_referenced (sym->ts.u.derived);
9008 gfc_commit_symbol (sym->ts.u.derived);
9009 /* _vptr now has the _vtab in it, change it to the _vtype. */
9010 if (c->ts.u.derived->attr.vtab)
9011 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
9012 c->ts.u.derived->ns->types_resolved = 0;
9013 resolve_types (c->ts.u.derived->ns);
9014 }
9015 }
9016
9017 /* Mark this as an associate variable. */
9018 sym->attr.associate_var = 1;
9019
9020 /* Fix up the type-spec for CHARACTER types. */
9021 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
9022 {
9023 if (!sym->ts.u.cl)
9024 sym->ts.u.cl = target->ts.u.cl;
9025
9026 if (sym->ts.deferred && target->expr_type == EXPR_VARIABLE
9027 && target->symtree->n.sym->attr.dummy
9028 && sym->ts.u.cl == target->ts.u.cl)
9029 {
9030 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9031 sym->ts.deferred = 1;
9032 }
9033
9034 if (!sym->ts.u.cl->length
9035 && !sym->ts.deferred
9036 && target->expr_type == EXPR_CONSTANT)
9037 {
9038 sym->ts.u.cl->length =
9039 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
9040 target->value.character.length);
9041 }
9042 else if ((!sym->ts.u.cl->length
9043 || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
9044 && target->expr_type != EXPR_VARIABLE)
9045 {
9046 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9047 sym->ts.deferred = 1;
9048
9049 /* This is reset in trans-stmt.c after the assignment
9050 of the target expression to the associate name. */
9051 sym->attr.allocatable = 1;
9052 }
9053 }
9054
9055 /* If the target is a good class object, so is the associate variable. */
9056 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
9057 sym->attr.class_ok = 1;
9058 }
9059
9060
9061 /* Ensure that SELECT TYPE expressions have the correct rank and a full
9062 array reference, where necessary. The symbols are artificial and so
9063 the dimension attribute and arrayspec can also be set. In addition,
9064 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
9065 This is corrected here as well.*/
9066
9067 static void
9068 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
9069 int rank, gfc_ref *ref)
9070 {
9071 gfc_ref *nref = (*expr1)->ref;
9072 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
9073 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
9074 (*expr1)->rank = rank;
9075 if (sym1->ts.type == BT_CLASS)
9076 {
9077 if ((*expr1)->ts.type != BT_CLASS)
9078 (*expr1)->ts = sym1->ts;
9079
9080 CLASS_DATA (sym1)->attr.dimension = 1;
9081 if (CLASS_DATA (sym1)->as == NULL && sym2)
9082 CLASS_DATA (sym1)->as
9083 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
9084 }
9085 else
9086 {
9087 sym1->attr.dimension = 1;
9088 if (sym1->as == NULL && sym2)
9089 sym1->as = gfc_copy_array_spec (sym2->as);
9090 }
9091
9092 for (; nref; nref = nref->next)
9093 if (nref->next == NULL)
9094 break;
9095
9096 if (ref && nref && nref->type != REF_ARRAY)
9097 nref->next = gfc_copy_ref (ref);
9098 else if (ref && !nref)
9099 (*expr1)->ref = gfc_copy_ref (ref);
9100 }
9101
9102
9103 static gfc_expr *
9104 build_loc_call (gfc_expr *sym_expr)
9105 {
9106 gfc_expr *loc_call;
9107 loc_call = gfc_get_expr ();
9108 loc_call->expr_type = EXPR_FUNCTION;
9109 gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
9110 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
9111 loc_call->symtree->n.sym->attr.intrinsic = 1;
9112 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
9113 gfc_commit_symbol (loc_call->symtree->n.sym);
9114 loc_call->ts.type = BT_INTEGER;
9115 loc_call->ts.kind = gfc_index_integer_kind;
9116 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
9117 loc_call->value.function.actual = gfc_get_actual_arglist ();
9118 loc_call->value.function.actual->expr = sym_expr;
9119 loc_call->where = sym_expr->where;
9120 return loc_call;
9121 }
9122
9123 /* Resolve a SELECT TYPE statement. */
9124
9125 static void
9126 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
9127 {
9128 gfc_symbol *selector_type;
9129 gfc_code *body, *new_st, *if_st, *tail;
9130 gfc_code *class_is = NULL, *default_case = NULL;
9131 gfc_case *c;
9132 gfc_symtree *st;
9133 char name[GFC_MAX_SYMBOL_LEN];
9134 gfc_namespace *ns;
9135 int error = 0;
9136 int rank = 0;
9137 gfc_ref* ref = NULL;
9138 gfc_expr *selector_expr = NULL;
9139
9140 ns = code->ext.block.ns;
9141 gfc_resolve (ns);
9142
9143 /* Check for F03:C813. */
9144 if (code->expr1->ts.type != BT_CLASS
9145 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
9146 {
9147 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
9148 "at %L", &code->loc);
9149 return;
9150 }
9151
9152 if (!code->expr1->symtree->n.sym->attr.class_ok)
9153 return;
9154
9155 if (code->expr2)
9156 {
9157 gfc_ref *ref2 = NULL;
9158 for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
9159 if (ref->type == REF_COMPONENT
9160 && ref->u.c.component->ts.type == BT_CLASS)
9161 ref2 = ref;
9162
9163 if (ref2)
9164 {
9165 if (code->expr1->symtree->n.sym->attr.untyped)
9166 code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
9167 selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
9168 }
9169 else
9170 {
9171 if (code->expr1->symtree->n.sym->attr.untyped)
9172 code->expr1->symtree->n.sym->ts = code->expr2->ts;
9173 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
9174 }
9175
9176 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
9177 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
9178
9179 /* F2008: C803 The selector expression must not be coindexed. */
9180 if (gfc_is_coindexed (code->expr2))
9181 {
9182 gfc_error ("Selector at %L must not be coindexed",
9183 &code->expr2->where);
9184 return;
9185 }
9186
9187 }
9188 else
9189 {
9190 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
9191
9192 if (gfc_is_coindexed (code->expr1))
9193 {
9194 gfc_error ("Selector at %L must not be coindexed",
9195 &code->expr1->where);
9196 return;
9197 }
9198 }
9199
9200 /* Loop over TYPE IS / CLASS IS cases. */
9201 for (body = code->block; body; body = body->block)
9202 {
9203 c = body->ext.block.case_list;
9204
9205 if (!error)
9206 {
9207 /* Check for repeated cases. */
9208 for (tail = code->block; tail; tail = tail->block)
9209 {
9210 gfc_case *d = tail->ext.block.case_list;
9211 if (tail == body)
9212 break;
9213
9214 if (c->ts.type == d->ts.type
9215 && ((c->ts.type == BT_DERIVED
9216 && c->ts.u.derived && d->ts.u.derived
9217 && !strcmp (c->ts.u.derived->name,
9218 d->ts.u.derived->name))
9219 || c->ts.type == BT_UNKNOWN
9220 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9221 && c->ts.kind == d->ts.kind)))
9222 {
9223 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
9224 &c->where, &d->where);
9225 return;
9226 }
9227 }
9228 }
9229
9230 /* Check F03:C815. */
9231 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9232 && !selector_type->attr.unlimited_polymorphic
9233 && !gfc_type_is_extensible (c->ts.u.derived))
9234 {
9235 gfc_error ("Derived type %qs at %L must be extensible",
9236 c->ts.u.derived->name, &c->where);
9237 error++;
9238 continue;
9239 }
9240
9241 /* Check F03:C816. */
9242 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
9243 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
9244 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
9245 {
9246 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9247 gfc_error ("Derived type %qs at %L must be an extension of %qs",
9248 c->ts.u.derived->name, &c->where, selector_type->name);
9249 else
9250 gfc_error ("Unexpected intrinsic type %qs at %L",
9251 gfc_basic_typename (c->ts.type), &c->where);
9252 error++;
9253 continue;
9254 }
9255
9256 /* Check F03:C814. */
9257 if (c->ts.type == BT_CHARACTER
9258 && (c->ts.u.cl->length != NULL || c->ts.deferred))
9259 {
9260 gfc_error ("The type-spec at %L shall specify that each length "
9261 "type parameter is assumed", &c->where);
9262 error++;
9263 continue;
9264 }
9265
9266 /* Intercept the DEFAULT case. */
9267 if (c->ts.type == BT_UNKNOWN)
9268 {
9269 /* Check F03:C818. */
9270 if (default_case)
9271 {
9272 gfc_error ("The DEFAULT CASE at %L cannot be followed "
9273 "by a second DEFAULT CASE at %L",
9274 &default_case->ext.block.case_list->where, &c->where);
9275 error++;
9276 continue;
9277 }
9278
9279 default_case = body;
9280 }
9281 }
9282
9283 if (error > 0)
9284 return;
9285
9286 /* Transform SELECT TYPE statement to BLOCK and associate selector to
9287 target if present. If there are any EXIT statements referring to the
9288 SELECT TYPE construct, this is no problem because the gfc_code
9289 reference stays the same and EXIT is equally possible from the BLOCK
9290 it is changed to. */
9291 code->op = EXEC_BLOCK;
9292 if (code->expr2)
9293 {
9294 gfc_association_list* assoc;
9295
9296 assoc = gfc_get_association_list ();
9297 assoc->st = code->expr1->symtree;
9298 assoc->target = gfc_copy_expr (code->expr2);
9299 assoc->target->where = code->expr2->where;
9300 /* assoc->variable will be set by resolve_assoc_var. */
9301
9302 code->ext.block.assoc = assoc;
9303 code->expr1->symtree->n.sym->assoc = assoc;
9304
9305 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9306 }
9307 else
9308 code->ext.block.assoc = NULL;
9309
9310 /* Ensure that the selector rank and arrayspec are available to
9311 correct expressions in which they might be missing. */
9312 if (code->expr2 && code->expr2->rank)
9313 {
9314 rank = code->expr2->rank;
9315 for (ref = code->expr2->ref; ref; ref = ref->next)
9316 if (ref->next == NULL)
9317 break;
9318 if (ref && ref->type == REF_ARRAY)
9319 ref = gfc_copy_ref (ref);
9320
9321 /* Fixup expr1 if necessary. */
9322 if (rank)
9323 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
9324 }
9325 else if (code->expr1->rank)
9326 {
9327 rank = code->expr1->rank;
9328 for (ref = code->expr1->ref; ref; ref = ref->next)
9329 if (ref->next == NULL)
9330 break;
9331 if (ref && ref->type == REF_ARRAY)
9332 ref = gfc_copy_ref (ref);
9333 }
9334
9335 /* Add EXEC_SELECT to switch on type. */
9336 new_st = gfc_get_code (code->op);
9337 new_st->expr1 = code->expr1;
9338 new_st->expr2 = code->expr2;
9339 new_st->block = code->block;
9340 code->expr1 = code->expr2 = NULL;
9341 code->block = NULL;
9342 if (!ns->code)
9343 ns->code = new_st;
9344 else
9345 ns->code->next = new_st;
9346 code = new_st;
9347 code->op = EXEC_SELECT_TYPE;
9348
9349 /* Use the intrinsic LOC function to generate an integer expression
9350 for the vtable of the selector. Note that the rank of the selector
9351 expression has to be set to zero. */
9352 gfc_add_vptr_component (code->expr1);
9353 code->expr1->rank = 0;
9354 code->expr1 = build_loc_call (code->expr1);
9355 selector_expr = code->expr1->value.function.actual->expr;
9356
9357 /* Loop over TYPE IS / CLASS IS cases. */
9358 for (body = code->block; body; body = body->block)
9359 {
9360 gfc_symbol *vtab;
9361 gfc_expr *e;
9362 c = body->ext.block.case_list;
9363
9364 /* Generate an index integer expression for address of the
9365 TYPE/CLASS vtable and store it in c->low. The hash expression
9366 is stored in c->high and is used to resolve intrinsic cases. */
9367 if (c->ts.type != BT_UNKNOWN)
9368 {
9369 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9370 {
9371 vtab = gfc_find_derived_vtab (c->ts.u.derived);
9372 gcc_assert (vtab);
9373 c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
9374 c->ts.u.derived->hash_value);
9375 }
9376 else
9377 {
9378 vtab = gfc_find_vtab (&c->ts);
9379 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
9380 e = CLASS_DATA (vtab)->initializer;
9381 c->high = gfc_copy_expr (e);
9382 if (c->high->ts.kind != gfc_integer_4_kind)
9383 {
9384 gfc_typespec ts;
9385 ts.kind = gfc_integer_4_kind;
9386 ts.type = BT_INTEGER;
9387 gfc_convert_type_warn (c->high, &ts, 2, 0);
9388 }
9389 }
9390
9391 e = gfc_lval_expr_from_sym (vtab);
9392 c->low = build_loc_call (e);
9393 }
9394 else
9395 continue;
9396
9397 /* Associate temporary to selector. This should only be done
9398 when this case is actually true, so build a new ASSOCIATE
9399 that does precisely this here (instead of using the
9400 'global' one). */
9401
9402 if (c->ts.type == BT_CLASS)
9403 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
9404 else if (c->ts.type == BT_DERIVED)
9405 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
9406 else if (c->ts.type == BT_CHARACTER)
9407 {
9408 HOST_WIDE_INT charlen = 0;
9409 if (c->ts.u.cl && c->ts.u.cl->length
9410 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9411 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9412 snprintf (name, sizeof (name),
9413 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9414 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9415 }
9416 else
9417 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9418 c->ts.kind);
9419
9420 st = gfc_find_symtree (ns->sym_root, name);
9421 gcc_assert (st->n.sym->assoc);
9422 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9423 st->n.sym->assoc->target->where = selector_expr->where;
9424 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9425 {
9426 gfc_add_data_component (st->n.sym->assoc->target);
9427 /* Fixup the target expression if necessary. */
9428 if (rank)
9429 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9430 }
9431
9432 new_st = gfc_get_code (EXEC_BLOCK);
9433 new_st->ext.block.ns = gfc_build_block_ns (ns);
9434 new_st->ext.block.ns->code = body->next;
9435 body->next = new_st;
9436
9437 /* Chain in the new list only if it is marked as dangling. Otherwise
9438 there is a CASE label overlap and this is already used. Just ignore,
9439 the error is diagnosed elsewhere. */
9440 if (st->n.sym->assoc->dangling)
9441 {
9442 new_st->ext.block.assoc = st->n.sym->assoc;
9443 st->n.sym->assoc->dangling = 0;
9444 }
9445
9446 resolve_assoc_var (st->n.sym, false);
9447 }
9448
9449 /* Take out CLASS IS cases for separate treatment. */
9450 body = code;
9451 while (body && body->block)
9452 {
9453 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9454 {
9455 /* Add to class_is list. */
9456 if (class_is == NULL)
9457 {
9458 class_is = body->block;
9459 tail = class_is;
9460 }
9461 else
9462 {
9463 for (tail = class_is; tail->block; tail = tail->block) ;
9464 tail->block = body->block;
9465 tail = tail->block;
9466 }
9467 /* Remove from EXEC_SELECT list. */
9468 body->block = body->block->block;
9469 tail->block = NULL;
9470 }
9471 else
9472 body = body->block;
9473 }
9474
9475 if (class_is)
9476 {
9477 gfc_symbol *vtab;
9478
9479 if (!default_case)
9480 {
9481 /* Add a default case to hold the CLASS IS cases. */
9482 for (tail = code; tail->block; tail = tail->block) ;
9483 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9484 tail = tail->block;
9485 tail->ext.block.case_list = gfc_get_case ();
9486 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9487 tail->next = NULL;
9488 default_case = tail;
9489 }
9490
9491 /* More than one CLASS IS block? */
9492 if (class_is->block)
9493 {
9494 gfc_code **c1,*c2;
9495 bool swapped;
9496 /* Sort CLASS IS blocks by extension level. */
9497 do
9498 {
9499 swapped = false;
9500 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9501 {
9502 c2 = (*c1)->block;
9503 /* F03:C817 (check for doubles). */
9504 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9505 == c2->ext.block.case_list->ts.u.derived->hash_value)
9506 {
9507 gfc_error ("Double CLASS IS block in SELECT TYPE "
9508 "statement at %L",
9509 &c2->ext.block.case_list->where);
9510 return;
9511 }
9512 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9513 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9514 {
9515 /* Swap. */
9516 (*c1)->block = c2->block;
9517 c2->block = *c1;
9518 *c1 = c2;
9519 swapped = true;
9520 }
9521 }
9522 }
9523 while (swapped);
9524 }
9525
9526 /* Generate IF chain. */
9527 if_st = gfc_get_code (EXEC_IF);
9528 new_st = if_st;
9529 for (body = class_is; body; body = body->block)
9530 {
9531 new_st->block = gfc_get_code (EXEC_IF);
9532 new_st = new_st->block;
9533 /* Set up IF condition: Call _gfortran_is_extension_of. */
9534 new_st->expr1 = gfc_get_expr ();
9535 new_st->expr1->expr_type = EXPR_FUNCTION;
9536 new_st->expr1->ts.type = BT_LOGICAL;
9537 new_st->expr1->ts.kind = 4;
9538 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9539 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9540 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9541 /* Set up arguments. */
9542 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9543 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9544 new_st->expr1->value.function.actual->expr->where = code->loc;
9545 new_st->expr1->where = code->loc;
9546 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9547 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9548 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9549 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9550 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9551 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9552 new_st->next = body->next;
9553 }
9554 if (default_case->next)
9555 {
9556 new_st->block = gfc_get_code (EXEC_IF);
9557 new_st = new_st->block;
9558 new_st->next = default_case->next;
9559 }
9560
9561 /* Replace CLASS DEFAULT code by the IF chain. */
9562 default_case->next = if_st;
9563 }
9564
9565 /* Resolve the internal code. This cannot be done earlier because
9566 it requires that the sym->assoc of selectors is set already. */
9567 gfc_current_ns = ns;
9568 gfc_resolve_blocks (code->block, gfc_current_ns);
9569 gfc_current_ns = old_ns;
9570
9571 if (ref)
9572 free (ref);
9573 }
9574
9575
9576 /* Resolve a SELECT RANK statement. */
9577
9578 static void
9579 resolve_select_rank (gfc_code *code, gfc_namespace *old_ns)
9580 {
9581 gfc_namespace *ns;
9582 gfc_code *body, *new_st, *tail;
9583 gfc_case *c;
9584 char tname[GFC_MAX_SYMBOL_LEN];
9585 char name[2 * GFC_MAX_SYMBOL_LEN];
9586 gfc_symtree *st;
9587 gfc_expr *selector_expr = NULL;
9588 int case_value;
9589 HOST_WIDE_INT charlen = 0;
9590
9591 ns = code->ext.block.ns;
9592 gfc_resolve (ns);
9593
9594 code->op = EXEC_BLOCK;
9595 if (code->expr2)
9596 {
9597 gfc_association_list* assoc;
9598
9599 assoc = gfc_get_association_list ();
9600 assoc->st = code->expr1->symtree;
9601 assoc->target = gfc_copy_expr (code->expr2);
9602 assoc->target->where = code->expr2->where;
9603 /* assoc->variable will be set by resolve_assoc_var. */
9604
9605 code->ext.block.assoc = assoc;
9606 code->expr1->symtree->n.sym->assoc = assoc;
9607
9608 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9609 }
9610 else
9611 code->ext.block.assoc = NULL;
9612
9613 /* Loop over RANK cases. Note that returning on the errors causes a
9614 cascade of further errors because the case blocks do not compile
9615 correctly. */
9616 for (body = code->block; body; body = body->block)
9617 {
9618 c = body->ext.block.case_list;
9619 if (c->low)
9620 case_value = (int) mpz_get_si (c->low->value.integer);
9621 else
9622 case_value = -2;
9623
9624 /* Check for repeated cases. */
9625 for (tail = code->block; tail; tail = tail->block)
9626 {
9627 gfc_case *d = tail->ext.block.case_list;
9628 int case_value2;
9629
9630 if (tail == body)
9631 break;
9632
9633 /* Check F2018: C1153. */
9634 if (!c->low && !d->low)
9635 gfc_error ("RANK DEFAULT at %L is repeated at %L",
9636 &c->where, &d->where);
9637
9638 if (!c->low || !d->low)
9639 continue;
9640
9641 /* Check F2018: C1153. */
9642 case_value2 = (int) mpz_get_si (d->low->value.integer);
9643 if ((case_value == case_value2) && case_value == -1)
9644 gfc_error ("RANK (*) at %L is repeated at %L",
9645 &c->where, &d->where);
9646 else if (case_value == case_value2)
9647 gfc_error ("RANK (%i) at %L is repeated at %L",
9648 case_value, &c->where, &d->where);
9649 }
9650
9651 if (!c->low)
9652 continue;
9653
9654 /* Check F2018: C1155. */
9655 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9656 || gfc_expr_attr (code->expr1).pointer))
9657 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9658 "allocatable selector at %L", &c->where, &code->expr1->where);
9659
9660 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9661 || gfc_expr_attr (code->expr1).pointer))
9662 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9663 "allocatable selector at %L", &c->where, &code->expr1->where);
9664 }
9665
9666 /* Add EXEC_SELECT to switch on rank. */
9667 new_st = gfc_get_code (code->op);
9668 new_st->expr1 = code->expr1;
9669 new_st->expr2 = code->expr2;
9670 new_st->block = code->block;
9671 code->expr1 = code->expr2 = NULL;
9672 code->block = NULL;
9673 if (!ns->code)
9674 ns->code = new_st;
9675 else
9676 ns->code->next = new_st;
9677 code = new_st;
9678 code->op = EXEC_SELECT_RANK;
9679
9680 selector_expr = code->expr1;
9681
9682 /* Loop over SELECT RANK cases. */
9683 for (body = code->block; body; body = body->block)
9684 {
9685 c = body->ext.block.case_list;
9686 int case_value;
9687
9688 /* Pass on the default case. */
9689 if (c->low == NULL)
9690 continue;
9691
9692 /* Associate temporary to selector. This should only be done
9693 when this case is actually true, so build a new ASSOCIATE
9694 that does precisely this here (instead of using the
9695 'global' one). */
9696 if (c->ts.type == BT_CHARACTER && c->ts.u.cl && c->ts.u.cl->length
9697 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9698 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9699
9700 if (c->ts.type == BT_CLASS)
9701 sprintf (tname, "class_%s", c->ts.u.derived->name);
9702 else if (c->ts.type == BT_DERIVED)
9703 sprintf (tname, "type_%s", c->ts.u.derived->name);
9704 else if (c->ts.type != BT_CHARACTER)
9705 sprintf (tname, "%s_%d", gfc_basic_typename (c->ts.type), c->ts.kind);
9706 else
9707 sprintf (tname, "%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9708 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9709
9710 case_value = (int) mpz_get_si (c->low->value.integer);
9711 if (case_value >= 0)
9712 sprintf (name, "__tmp_%s_rank_%d", tname, case_value);
9713 else
9714 sprintf (name, "__tmp_%s_rank_m%d", tname, -case_value);
9715
9716 st = gfc_find_symtree (ns->sym_root, name);
9717 gcc_assert (st->n.sym->assoc);
9718
9719 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9720 st->n.sym->assoc->target->where = selector_expr->where;
9721
9722 new_st = gfc_get_code (EXEC_BLOCK);
9723 new_st->ext.block.ns = gfc_build_block_ns (ns);
9724 new_st->ext.block.ns->code = body->next;
9725 body->next = new_st;
9726
9727 /* Chain in the new list only if it is marked as dangling. Otherwise
9728 there is a CASE label overlap and this is already used. Just ignore,
9729 the error is diagnosed elsewhere. */
9730 if (st->n.sym->assoc->dangling)
9731 {
9732 new_st->ext.block.assoc = st->n.sym->assoc;
9733 st->n.sym->assoc->dangling = 0;
9734 }
9735
9736 resolve_assoc_var (st->n.sym, false);
9737 }
9738
9739 gfc_current_ns = ns;
9740 gfc_resolve_blocks (code->block, gfc_current_ns);
9741 gfc_current_ns = old_ns;
9742 }
9743
9744
9745 /* Resolve a transfer statement. This is making sure that:
9746 -- a derived type being transferred has only non-pointer components
9747 -- a derived type being transferred doesn't have private components, unless
9748 it's being transferred from the module where the type was defined
9749 -- we're not trying to transfer a whole assumed size array. */
9750
9751 static void
9752 resolve_transfer (gfc_code *code)
9753 {
9754 gfc_symbol *sym, *derived;
9755 gfc_ref *ref;
9756 gfc_expr *exp;
9757 bool write = false;
9758 bool formatted = false;
9759 gfc_dt *dt = code->ext.dt;
9760 gfc_symbol *dtio_sub = NULL;
9761
9762 exp = code->expr1;
9763
9764 while (exp != NULL && exp->expr_type == EXPR_OP
9765 && exp->value.op.op == INTRINSIC_PARENTHESES)
9766 exp = exp->value.op.op1;
9767
9768 if (exp && exp->expr_type == EXPR_NULL
9769 && code->ext.dt)
9770 {
9771 gfc_error ("Invalid context for NULL () intrinsic at %L",
9772 &exp->where);
9773 return;
9774 }
9775
9776 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9777 && exp->expr_type != EXPR_FUNCTION
9778 && exp->expr_type != EXPR_STRUCTURE))
9779 return;
9780
9781 /* If we are reading, the variable will be changed. Note that
9782 code->ext.dt may be NULL if the TRANSFER is related to
9783 an INQUIRE statement -- but in this case, we are not reading, either. */
9784 if (dt && dt->dt_io_kind->value.iokind == M_READ
9785 && !gfc_check_vardef_context (exp, false, false, false,
9786 _("item in READ")))
9787 return;
9788
9789 const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
9790 || exp->expr_type == EXPR_FUNCTION
9791 ? &exp->ts : &exp->symtree->n.sym->ts;
9792
9793 /* Go to actual component transferred. */
9794 for (ref = exp->ref; ref; ref = ref->next)
9795 if (ref->type == REF_COMPONENT)
9796 ts = &ref->u.c.component->ts;
9797
9798 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9799 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9800 {
9801 derived = ts->u.derived;
9802
9803 /* Determine when to use the formatted DTIO procedure. */
9804 if (dt && (dt->format_expr || dt->format_label))
9805 formatted = true;
9806
9807 write = dt->dt_io_kind->value.iokind == M_WRITE
9808 || dt->dt_io_kind->value.iokind == M_PRINT;
9809 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9810
9811 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9812 {
9813 dt->udtio = exp;
9814 sym = exp->symtree->n.sym->ns->proc_name;
9815 /* Check to see if this is a nested DTIO call, with the
9816 dummy as the io-list object. */
9817 if (sym && sym == dtio_sub && sym->formal
9818 && sym->formal->sym == exp->symtree->n.sym
9819 && exp->ref == NULL)
9820 {
9821 if (!sym->attr.recursive)
9822 {
9823 gfc_error ("DTIO %s procedure at %L must be recursive",
9824 sym->name, &sym->declared_at);
9825 return;
9826 }
9827 }
9828 }
9829 }
9830
9831 if (ts->type == BT_CLASS && dtio_sub == NULL)
9832 {
9833 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9834 "it is processed by a defined input/output procedure",
9835 &code->loc);
9836 return;
9837 }
9838
9839 if (ts->type == BT_DERIVED)
9840 {
9841 /* Check that transferred derived type doesn't contain POINTER
9842 components unless it is processed by a defined input/output
9843 procedure". */
9844 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9845 {
9846 gfc_error ("Data transfer element at %L cannot have POINTER "
9847 "components unless it is processed by a defined "
9848 "input/output procedure", &code->loc);
9849 return;
9850 }
9851
9852 /* F08:C935. */
9853 if (ts->u.derived->attr.proc_pointer_comp)
9854 {
9855 gfc_error ("Data transfer element at %L cannot have "
9856 "procedure pointer components", &code->loc);
9857 return;
9858 }
9859
9860 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9861 {
9862 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9863 "components unless it is processed by a defined "
9864 "input/output procedure", &code->loc);
9865 return;
9866 }
9867
9868 /* C_PTR and C_FUNPTR have private components which means they cannot
9869 be printed. However, if -std=gnu and not -pedantic, allow
9870 the component to be printed to help debugging. */
9871 if (ts->u.derived->ts.f90_type == BT_VOID)
9872 {
9873 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9874 "cannot have PRIVATE components", &code->loc))
9875 return;
9876 }
9877 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9878 {
9879 gfc_error ("Data transfer element at %L cannot have "
9880 "PRIVATE components unless it is processed by "
9881 "a defined input/output procedure", &code->loc);
9882 return;
9883 }
9884 }
9885
9886 if (exp->expr_type == EXPR_STRUCTURE)
9887 return;
9888
9889 sym = exp->symtree->n.sym;
9890
9891 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9892 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9893 {
9894 gfc_error ("Data transfer element at %L cannot be a full reference to "
9895 "an assumed-size array", &code->loc);
9896 return;
9897 }
9898
9899 if (async_io_dt && exp->expr_type == EXPR_VARIABLE)
9900 exp->symtree->n.sym->attr.asynchronous = 1;
9901 }
9902
9903
9904 /*********** Toplevel code resolution subroutines ***********/
9905
9906 /* Find the set of labels that are reachable from this block. We also
9907 record the last statement in each block. */
9908
9909 static void
9910 find_reachable_labels (gfc_code *block)
9911 {
9912 gfc_code *c;
9913
9914 if (!block)
9915 return;
9916
9917 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9918
9919 /* Collect labels in this block. We don't keep those corresponding
9920 to END {IF|SELECT}, these are checked in resolve_branch by going
9921 up through the code_stack. */
9922 for (c = block; c; c = c->next)
9923 {
9924 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9925 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9926 }
9927
9928 /* Merge with labels from parent block. */
9929 if (cs_base->prev)
9930 {
9931 gcc_assert (cs_base->prev->reachable_labels);
9932 bitmap_ior_into (cs_base->reachable_labels,
9933 cs_base->prev->reachable_labels);
9934 }
9935 }
9936
9937
9938 static void
9939 resolve_lock_unlock_event (gfc_code *code)
9940 {
9941 if (code->expr1->expr_type == EXPR_FUNCTION
9942 && code->expr1->value.function.isym
9943 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9944 remove_caf_get_intrinsic (code->expr1);
9945
9946 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9947 && (code->expr1->ts.type != BT_DERIVED
9948 || code->expr1->expr_type != EXPR_VARIABLE
9949 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
9950 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
9951 || code->expr1->rank != 0
9952 || (!gfc_is_coarray (code->expr1) &&
9953 !gfc_is_coindexed (code->expr1))))
9954 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9955 &code->expr1->where);
9956 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
9957 && (code->expr1->ts.type != BT_DERIVED
9958 || code->expr1->expr_type != EXPR_VARIABLE
9959 || code->expr1->ts.u.derived->from_intmod
9960 != INTMOD_ISO_FORTRAN_ENV
9961 || code->expr1->ts.u.derived->intmod_sym_id
9962 != ISOFORTRAN_EVENT_TYPE
9963 || code->expr1->rank != 0))
9964 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9965 &code->expr1->where);
9966 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
9967 && !gfc_is_coindexed (code->expr1))
9968 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9969 &code->expr1->where);
9970 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
9971 gfc_error ("Event variable argument at %L must be a coarray but not "
9972 "coindexed", &code->expr1->where);
9973
9974 /* Check STAT. */
9975 if (code->expr2
9976 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9977 || code->expr2->expr_type != EXPR_VARIABLE))
9978 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9979 &code->expr2->where);
9980
9981 if (code->expr2
9982 && !gfc_check_vardef_context (code->expr2, false, false, false,
9983 _("STAT variable")))
9984 return;
9985
9986 /* Check ERRMSG. */
9987 if (code->expr3
9988 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9989 || code->expr3->expr_type != EXPR_VARIABLE))
9990 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9991 &code->expr3->where);
9992
9993 if (code->expr3
9994 && !gfc_check_vardef_context (code->expr3, false, false, false,
9995 _("ERRMSG variable")))
9996 return;
9997
9998 /* Check for LOCK the ACQUIRED_LOCK. */
9999 if (code->op != EXEC_EVENT_WAIT && code->expr4
10000 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
10001 || code->expr4->expr_type != EXPR_VARIABLE))
10002 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
10003 "variable", &code->expr4->where);
10004
10005 if (code->op != EXEC_EVENT_WAIT && code->expr4
10006 && !gfc_check_vardef_context (code->expr4, false, false, false,
10007 _("ACQUIRED_LOCK variable")))
10008 return;
10009
10010 /* Check for EVENT WAIT the UNTIL_COUNT. */
10011 if (code->op == EXEC_EVENT_WAIT && code->expr4)
10012 {
10013 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
10014 || code->expr4->rank != 0)
10015 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
10016 "expression", &code->expr4->where);
10017 }
10018 }
10019
10020
10021 static void
10022 resolve_critical (gfc_code *code)
10023 {
10024 gfc_symtree *symtree;
10025 gfc_symbol *lock_type;
10026 char name[GFC_MAX_SYMBOL_LEN];
10027 static int serial = 0;
10028
10029 if (flag_coarray != GFC_FCOARRAY_LIB)
10030 return;
10031
10032 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
10033 GFC_PREFIX ("lock_type"));
10034 if (symtree)
10035 lock_type = symtree->n.sym;
10036 else
10037 {
10038 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
10039 false) != 0)
10040 gcc_unreachable ();
10041 lock_type = symtree->n.sym;
10042 lock_type->attr.flavor = FL_DERIVED;
10043 lock_type->attr.zero_comp = 1;
10044 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
10045 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
10046 }
10047
10048 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
10049 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
10050 gcc_unreachable ();
10051
10052 code->resolved_sym = symtree->n.sym;
10053 symtree->n.sym->attr.flavor = FL_VARIABLE;
10054 symtree->n.sym->attr.referenced = 1;
10055 symtree->n.sym->attr.artificial = 1;
10056 symtree->n.sym->attr.codimension = 1;
10057 symtree->n.sym->ts.type = BT_DERIVED;
10058 symtree->n.sym->ts.u.derived = lock_type;
10059 symtree->n.sym->as = gfc_get_array_spec ();
10060 symtree->n.sym->as->corank = 1;
10061 symtree->n.sym->as->type = AS_EXPLICIT;
10062 symtree->n.sym->as->cotype = AS_EXPLICIT;
10063 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
10064 NULL, 1);
10065 gfc_commit_symbols();
10066 }
10067
10068
10069 static void
10070 resolve_sync (gfc_code *code)
10071 {
10072 /* Check imageset. The * case matches expr1 == NULL. */
10073 if (code->expr1)
10074 {
10075 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
10076 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
10077 "INTEGER expression", &code->expr1->where);
10078 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
10079 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
10080 gfc_error ("Imageset argument at %L must between 1 and num_images()",
10081 &code->expr1->where);
10082 else if (code->expr1->expr_type == EXPR_ARRAY
10083 && gfc_simplify_expr (code->expr1, 0))
10084 {
10085 gfc_constructor *cons;
10086 cons = gfc_constructor_first (code->expr1->value.constructor);
10087 for (; cons; cons = gfc_constructor_next (cons))
10088 if (cons->expr->expr_type == EXPR_CONSTANT
10089 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
10090 gfc_error ("Imageset argument at %L must between 1 and "
10091 "num_images()", &cons->expr->where);
10092 }
10093 }
10094
10095 /* Check STAT. */
10096 gfc_resolve_expr (code->expr2);
10097 if (code->expr2
10098 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
10099 || code->expr2->expr_type != EXPR_VARIABLE))
10100 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
10101 &code->expr2->where);
10102
10103 /* Check ERRMSG. */
10104 gfc_resolve_expr (code->expr3);
10105 if (code->expr3
10106 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
10107 || code->expr3->expr_type != EXPR_VARIABLE))
10108 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
10109 &code->expr3->where);
10110 }
10111
10112
10113 /* Given a branch to a label, see if the branch is conforming.
10114 The code node describes where the branch is located. */
10115
10116 static void
10117 resolve_branch (gfc_st_label *label, gfc_code *code)
10118 {
10119 code_stack *stack;
10120
10121 if (label == NULL)
10122 return;
10123
10124 /* Step one: is this a valid branching target? */
10125
10126 if (label->defined == ST_LABEL_UNKNOWN)
10127 {
10128 gfc_error ("Label %d referenced at %L is never defined", label->value,
10129 &code->loc);
10130 return;
10131 }
10132
10133 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
10134 {
10135 gfc_error ("Statement at %L is not a valid branch target statement "
10136 "for the branch statement at %L", &label->where, &code->loc);
10137 return;
10138 }
10139
10140 /* Step two: make sure this branch is not a branch to itself ;-) */
10141
10142 if (code->here == label)
10143 {
10144 gfc_warning (0,
10145 "Branch at %L may result in an infinite loop", &code->loc);
10146 return;
10147 }
10148
10149 /* Step three: See if the label is in the same block as the
10150 branching statement. The hard work has been done by setting up
10151 the bitmap reachable_labels. */
10152
10153 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
10154 {
10155 /* Check now whether there is a CRITICAL construct; if so, check
10156 whether the label is still visible outside of the CRITICAL block,
10157 which is invalid. */
10158 for (stack = cs_base; stack; stack = stack->prev)
10159 {
10160 if (stack->current->op == EXEC_CRITICAL
10161 && bitmap_bit_p (stack->reachable_labels, label->value))
10162 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
10163 "label at %L", &code->loc, &label->where);
10164 else if (stack->current->op == EXEC_DO_CONCURRENT
10165 && bitmap_bit_p (stack->reachable_labels, label->value))
10166 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
10167 "for label at %L", &code->loc, &label->where);
10168 }
10169
10170 return;
10171 }
10172
10173 /* Step four: If we haven't found the label in the bitmap, it may
10174 still be the label of the END of the enclosing block, in which
10175 case we find it by going up the code_stack. */
10176
10177 for (stack = cs_base; stack; stack = stack->prev)
10178 {
10179 if (stack->current->next && stack->current->next->here == label)
10180 break;
10181 if (stack->current->op == EXEC_CRITICAL)
10182 {
10183 /* Note: A label at END CRITICAL does not leave the CRITICAL
10184 construct as END CRITICAL is still part of it. */
10185 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
10186 " at %L", &code->loc, &label->where);
10187 return;
10188 }
10189 else if (stack->current->op == EXEC_DO_CONCURRENT)
10190 {
10191 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
10192 "label at %L", &code->loc, &label->where);
10193 return;
10194 }
10195 }
10196
10197 if (stack)
10198 {
10199 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
10200 return;
10201 }
10202
10203 /* The label is not in an enclosing block, so illegal. This was
10204 allowed in Fortran 66, so we allow it as extension. No
10205 further checks are necessary in this case. */
10206 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
10207 "as the GOTO statement at %L", &label->where,
10208 &code->loc);
10209 return;
10210 }
10211
10212
10213 /* Check whether EXPR1 has the same shape as EXPR2. */
10214
10215 static bool
10216 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
10217 {
10218 mpz_t shape[GFC_MAX_DIMENSIONS];
10219 mpz_t shape2[GFC_MAX_DIMENSIONS];
10220 bool result = false;
10221 int i;
10222
10223 /* Compare the rank. */
10224 if (expr1->rank != expr2->rank)
10225 return result;
10226
10227 /* Compare the size of each dimension. */
10228 for (i=0; i<expr1->rank; i++)
10229 {
10230 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
10231 goto ignore;
10232
10233 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
10234 goto ignore;
10235
10236 if (mpz_cmp (shape[i], shape2[i]))
10237 goto over;
10238 }
10239
10240 /* When either of the two expression is an assumed size array, we
10241 ignore the comparison of dimension sizes. */
10242 ignore:
10243 result = true;
10244
10245 over:
10246 gfc_clear_shape (shape, i);
10247 gfc_clear_shape (shape2, i);
10248 return result;
10249 }
10250
10251
10252 /* Check whether a WHERE assignment target or a WHERE mask expression
10253 has the same shape as the outmost WHERE mask expression. */
10254
10255 static void
10256 resolve_where (gfc_code *code, gfc_expr *mask)
10257 {
10258 gfc_code *cblock;
10259 gfc_code *cnext;
10260 gfc_expr *e = NULL;
10261
10262 cblock = code->block;
10263
10264 /* Store the first WHERE mask-expr of the WHERE statement or construct.
10265 In case of nested WHERE, only the outmost one is stored. */
10266 if (mask == NULL) /* outmost WHERE */
10267 e = cblock->expr1;
10268 else /* inner WHERE */
10269 e = mask;
10270
10271 while (cblock)
10272 {
10273 if (cblock->expr1)
10274 {
10275 /* Check if the mask-expr has a consistent shape with the
10276 outmost WHERE mask-expr. */
10277 if (!resolve_where_shape (cblock->expr1, e))
10278 gfc_error ("WHERE mask at %L has inconsistent shape",
10279 &cblock->expr1->where);
10280 }
10281
10282 /* the assignment statement of a WHERE statement, or the first
10283 statement in where-body-construct of a WHERE construct */
10284 cnext = cblock->next;
10285 while (cnext)
10286 {
10287 switch (cnext->op)
10288 {
10289 /* WHERE assignment statement */
10290 case EXEC_ASSIGN:
10291
10292 /* Check shape consistent for WHERE assignment target. */
10293 if (e && !resolve_where_shape (cnext->expr1, e))
10294 gfc_error ("WHERE assignment target at %L has "
10295 "inconsistent shape", &cnext->expr1->where);
10296 break;
10297
10298
10299 case EXEC_ASSIGN_CALL:
10300 resolve_call (cnext);
10301 if (!cnext->resolved_sym->attr.elemental)
10302 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10303 &cnext->ext.actual->expr->where);
10304 break;
10305
10306 /* WHERE or WHERE construct is part of a where-body-construct */
10307 case EXEC_WHERE:
10308 resolve_where (cnext, e);
10309 break;
10310
10311 default:
10312 gfc_error ("Unsupported statement inside WHERE at %L",
10313 &cnext->loc);
10314 }
10315 /* the next statement within the same where-body-construct */
10316 cnext = cnext->next;
10317 }
10318 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10319 cblock = cblock->block;
10320 }
10321 }
10322
10323
10324 /* Resolve assignment in FORALL construct.
10325 NVAR is the number of FORALL index variables, and VAR_EXPR records the
10326 FORALL index variables. */
10327
10328 static void
10329 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
10330 {
10331 int n;
10332
10333 for (n = 0; n < nvar; n++)
10334 {
10335 gfc_symbol *forall_index;
10336
10337 forall_index = var_expr[n]->symtree->n.sym;
10338
10339 /* Check whether the assignment target is one of the FORALL index
10340 variable. */
10341 if ((code->expr1->expr_type == EXPR_VARIABLE)
10342 && (code->expr1->symtree->n.sym == forall_index))
10343 gfc_error ("Assignment to a FORALL index variable at %L",
10344 &code->expr1->where);
10345 else
10346 {
10347 /* If one of the FORALL index variables doesn't appear in the
10348 assignment variable, then there could be a many-to-one
10349 assignment. Emit a warning rather than an error because the
10350 mask could be resolving this problem. */
10351 if (!find_forall_index (code->expr1, forall_index, 0))
10352 gfc_warning (0, "The FORALL with index %qs is not used on the "
10353 "left side of the assignment at %L and so might "
10354 "cause multiple assignment to this object",
10355 var_expr[n]->symtree->name, &code->expr1->where);
10356 }
10357 }
10358 }
10359
10360
10361 /* Resolve WHERE statement in FORALL construct. */
10362
10363 static void
10364 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
10365 gfc_expr **var_expr)
10366 {
10367 gfc_code *cblock;
10368 gfc_code *cnext;
10369
10370 cblock = code->block;
10371 while (cblock)
10372 {
10373 /* the assignment statement of a WHERE statement, or the first
10374 statement in where-body-construct of a WHERE construct */
10375 cnext = cblock->next;
10376 while (cnext)
10377 {
10378 switch (cnext->op)
10379 {
10380 /* WHERE assignment statement */
10381 case EXEC_ASSIGN:
10382 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
10383 break;
10384
10385 /* WHERE operator assignment statement */
10386 case EXEC_ASSIGN_CALL:
10387 resolve_call (cnext);
10388 if (!cnext->resolved_sym->attr.elemental)
10389 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10390 &cnext->ext.actual->expr->where);
10391 break;
10392
10393 /* WHERE or WHERE construct is part of a where-body-construct */
10394 case EXEC_WHERE:
10395 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
10396 break;
10397
10398 default:
10399 gfc_error ("Unsupported statement inside WHERE at %L",
10400 &cnext->loc);
10401 }
10402 /* the next statement within the same where-body-construct */
10403 cnext = cnext->next;
10404 }
10405 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10406 cblock = cblock->block;
10407 }
10408 }
10409
10410
10411 /* Traverse the FORALL body to check whether the following errors exist:
10412 1. For assignment, check if a many-to-one assignment happens.
10413 2. For WHERE statement, check the WHERE body to see if there is any
10414 many-to-one assignment. */
10415
10416 static void
10417 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
10418 {
10419 gfc_code *c;
10420
10421 c = code->block->next;
10422 while (c)
10423 {
10424 switch (c->op)
10425 {
10426 case EXEC_ASSIGN:
10427 case EXEC_POINTER_ASSIGN:
10428 gfc_resolve_assign_in_forall (c, nvar, var_expr);
10429 break;
10430
10431 case EXEC_ASSIGN_CALL:
10432 resolve_call (c);
10433 break;
10434
10435 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
10436 there is no need to handle it here. */
10437 case EXEC_FORALL:
10438 break;
10439 case EXEC_WHERE:
10440 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
10441 break;
10442 default:
10443 break;
10444 }
10445 /* The next statement in the FORALL body. */
10446 c = c->next;
10447 }
10448 }
10449
10450
10451 /* Counts the number of iterators needed inside a forall construct, including
10452 nested forall constructs. This is used to allocate the needed memory
10453 in gfc_resolve_forall. */
10454
10455 static int
10456 gfc_count_forall_iterators (gfc_code *code)
10457 {
10458 int max_iters, sub_iters, current_iters;
10459 gfc_forall_iterator *fa;
10460
10461 gcc_assert(code->op == EXEC_FORALL);
10462 max_iters = 0;
10463 current_iters = 0;
10464
10465 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10466 current_iters ++;
10467
10468 code = code->block->next;
10469
10470 while (code)
10471 {
10472 if (code->op == EXEC_FORALL)
10473 {
10474 sub_iters = gfc_count_forall_iterators (code);
10475 if (sub_iters > max_iters)
10476 max_iters = sub_iters;
10477 }
10478 code = code->next;
10479 }
10480
10481 return current_iters + max_iters;
10482 }
10483
10484
10485 /* Given a FORALL construct, first resolve the FORALL iterator, then call
10486 gfc_resolve_forall_body to resolve the FORALL body. */
10487
10488 static void
10489 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
10490 {
10491 static gfc_expr **var_expr;
10492 static int total_var = 0;
10493 static int nvar = 0;
10494 int i, old_nvar, tmp;
10495 gfc_forall_iterator *fa;
10496
10497 old_nvar = nvar;
10498
10499 if (!gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
10500 return;
10501
10502 /* Start to resolve a FORALL construct */
10503 if (forall_save == 0)
10504 {
10505 /* Count the total number of FORALL indices in the nested FORALL
10506 construct in order to allocate the VAR_EXPR with proper size. */
10507 total_var = gfc_count_forall_iterators (code);
10508
10509 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
10510 var_expr = XCNEWVEC (gfc_expr *, total_var);
10511 }
10512
10513 /* The information about FORALL iterator, including FORALL indices start, end
10514 and stride. An outer FORALL indice cannot appear in start, end or stride. */
10515 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10516 {
10517 /* Fortran 20008: C738 (R753). */
10518 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
10519 {
10520 gfc_error ("FORALL index-name at %L must be a scalar variable "
10521 "of type integer", &fa->var->where);
10522 continue;
10523 }
10524
10525 /* Check if any outer FORALL index name is the same as the current
10526 one. */
10527 for (i = 0; i < nvar; i++)
10528 {
10529 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
10530 gfc_error ("An outer FORALL construct already has an index "
10531 "with this name %L", &fa->var->where);
10532 }
10533
10534 /* Record the current FORALL index. */
10535 var_expr[nvar] = gfc_copy_expr (fa->var);
10536
10537 nvar++;
10538
10539 /* No memory leak. */
10540 gcc_assert (nvar <= total_var);
10541 }
10542
10543 /* Resolve the FORALL body. */
10544 gfc_resolve_forall_body (code, nvar, var_expr);
10545
10546 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
10547 gfc_resolve_blocks (code->block, ns);
10548
10549 tmp = nvar;
10550 nvar = old_nvar;
10551 /* Free only the VAR_EXPRs allocated in this frame. */
10552 for (i = nvar; i < tmp; i++)
10553 gfc_free_expr (var_expr[i]);
10554
10555 if (nvar == 0)
10556 {
10557 /* We are in the outermost FORALL construct. */
10558 gcc_assert (forall_save == 0);
10559
10560 /* VAR_EXPR is not needed any more. */
10561 free (var_expr);
10562 total_var = 0;
10563 }
10564 }
10565
10566
10567 /* Resolve a BLOCK construct statement. */
10568
10569 static void
10570 resolve_block_construct (gfc_code* code)
10571 {
10572 /* Resolve the BLOCK's namespace. */
10573 gfc_resolve (code->ext.block.ns);
10574
10575 /* For an ASSOCIATE block, the associations (and their targets) are already
10576 resolved during resolve_symbol. */
10577 }
10578
10579
10580 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
10581 DO code nodes. */
10582
10583 void
10584 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10585 {
10586 bool t;
10587
10588 for (; b; b = b->block)
10589 {
10590 t = gfc_resolve_expr (b->expr1);
10591 if (!gfc_resolve_expr (b->expr2))
10592 t = false;
10593
10594 switch (b->op)
10595 {
10596 case EXEC_IF:
10597 if (t && b->expr1 != NULL
10598 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10599 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10600 &b->expr1->where);
10601 break;
10602
10603 case EXEC_WHERE:
10604 if (t
10605 && b->expr1 != NULL
10606 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10607 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10608 &b->expr1->where);
10609 break;
10610
10611 case EXEC_GOTO:
10612 resolve_branch (b->label1, b);
10613 break;
10614
10615 case EXEC_BLOCK:
10616 resolve_block_construct (b);
10617 break;
10618
10619 case EXEC_SELECT:
10620 case EXEC_SELECT_TYPE:
10621 case EXEC_SELECT_RANK:
10622 case EXEC_FORALL:
10623 case EXEC_DO:
10624 case EXEC_DO_WHILE:
10625 case EXEC_DO_CONCURRENT:
10626 case EXEC_CRITICAL:
10627 case EXEC_READ:
10628 case EXEC_WRITE:
10629 case EXEC_IOLENGTH:
10630 case EXEC_WAIT:
10631 break;
10632
10633 case EXEC_OMP_ATOMIC:
10634 case EXEC_OACC_ATOMIC:
10635 {
10636 gfc_omp_atomic_op aop
10637 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10638
10639 /* Verify this before calling gfc_resolve_code, which might
10640 change it. */
10641 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10642 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10643 && b->next->next == NULL)
10644 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10645 && b->next->next != NULL
10646 && b->next->next->op == EXEC_ASSIGN
10647 && b->next->next->next == NULL));
10648 }
10649 break;
10650
10651 case EXEC_OACC_PARALLEL_LOOP:
10652 case EXEC_OACC_PARALLEL:
10653 case EXEC_OACC_KERNELS_LOOP:
10654 case EXEC_OACC_KERNELS:
10655 case EXEC_OACC_SERIAL_LOOP:
10656 case EXEC_OACC_SERIAL:
10657 case EXEC_OACC_DATA:
10658 case EXEC_OACC_HOST_DATA:
10659 case EXEC_OACC_LOOP:
10660 case EXEC_OACC_UPDATE:
10661 case EXEC_OACC_WAIT:
10662 case EXEC_OACC_CACHE:
10663 case EXEC_OACC_ENTER_DATA:
10664 case EXEC_OACC_EXIT_DATA:
10665 case EXEC_OACC_ROUTINE:
10666 case EXEC_OMP_CRITICAL:
10667 case EXEC_OMP_DISTRIBUTE:
10668 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10669 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10670 case EXEC_OMP_DISTRIBUTE_SIMD:
10671 case EXEC_OMP_DO:
10672 case EXEC_OMP_DO_SIMD:
10673 case EXEC_OMP_MASTER:
10674 case EXEC_OMP_ORDERED:
10675 case EXEC_OMP_PARALLEL:
10676 case EXEC_OMP_PARALLEL_DO:
10677 case EXEC_OMP_PARALLEL_DO_SIMD:
10678 case EXEC_OMP_PARALLEL_SECTIONS:
10679 case EXEC_OMP_PARALLEL_WORKSHARE:
10680 case EXEC_OMP_SECTIONS:
10681 case EXEC_OMP_SIMD:
10682 case EXEC_OMP_SINGLE:
10683 case EXEC_OMP_TARGET:
10684 case EXEC_OMP_TARGET_DATA:
10685 case EXEC_OMP_TARGET_ENTER_DATA:
10686 case EXEC_OMP_TARGET_EXIT_DATA:
10687 case EXEC_OMP_TARGET_PARALLEL:
10688 case EXEC_OMP_TARGET_PARALLEL_DO:
10689 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10690 case EXEC_OMP_TARGET_SIMD:
10691 case EXEC_OMP_TARGET_TEAMS:
10692 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10693 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10694 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10695 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10696 case EXEC_OMP_TARGET_UPDATE:
10697 case EXEC_OMP_TASK:
10698 case EXEC_OMP_TASKGROUP:
10699 case EXEC_OMP_TASKLOOP:
10700 case EXEC_OMP_TASKLOOP_SIMD:
10701 case EXEC_OMP_TASKWAIT:
10702 case EXEC_OMP_TASKYIELD:
10703 case EXEC_OMP_TEAMS:
10704 case EXEC_OMP_TEAMS_DISTRIBUTE:
10705 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10706 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10707 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10708 case EXEC_OMP_WORKSHARE:
10709 break;
10710
10711 default:
10712 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10713 }
10714
10715 gfc_resolve_code (b->next, ns);
10716 }
10717 }
10718
10719
10720 /* Does everything to resolve an ordinary assignment. Returns true
10721 if this is an interface assignment. */
10722 static bool
10723 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10724 {
10725 bool rval = false;
10726 gfc_expr *lhs;
10727 gfc_expr *rhs;
10728 int n;
10729 gfc_ref *ref;
10730 symbol_attribute attr;
10731
10732 if (gfc_extend_assign (code, ns))
10733 {
10734 gfc_expr** rhsptr;
10735
10736 if (code->op == EXEC_ASSIGN_CALL)
10737 {
10738 lhs = code->ext.actual->expr;
10739 rhsptr = &code->ext.actual->next->expr;
10740 }
10741 else
10742 {
10743 gfc_actual_arglist* args;
10744 gfc_typebound_proc* tbp;
10745
10746 gcc_assert (code->op == EXEC_COMPCALL);
10747
10748 args = code->expr1->value.compcall.actual;
10749 lhs = args->expr;
10750 rhsptr = &args->next->expr;
10751
10752 tbp = code->expr1->value.compcall.tbp;
10753 gcc_assert (!tbp->is_generic);
10754 }
10755
10756 /* Make a temporary rhs when there is a default initializer
10757 and rhs is the same symbol as the lhs. */
10758 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10759 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10760 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10761 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10762 *rhsptr = gfc_get_parentheses (*rhsptr);
10763
10764 return true;
10765 }
10766
10767 lhs = code->expr1;
10768 rhs = code->expr2;
10769
10770 if ((gfc_numeric_ts (&lhs->ts) || lhs->ts.type == BT_LOGICAL)
10771 && rhs->ts.type == BT_CHARACTER
10772 && (rhs->expr_type != EXPR_CONSTANT || !flag_dec_char_conversions))
10773 {
10774 /* Use of -fdec-char-conversions allows assignment of character data
10775 to non-character variables. This not permited for nonconstant
10776 strings. */
10777 gfc_error ("Cannot convert %s to %s at %L", gfc_typename (rhs),
10778 gfc_typename (lhs), &rhs->where);
10779 return false;
10780 }
10781
10782 /* Handle the case of a BOZ literal on the RHS. */
10783 if (rhs->ts.type == BT_BOZ)
10784 {
10785 if (gfc_invalid_boz ("BOZ literal constant at %L is neither a DATA "
10786 "statement value nor an actual argument of "
10787 "INT/REAL/DBLE/CMPLX intrinsic subprogram",
10788 &rhs->where))
10789 return false;
10790
10791 switch (lhs->ts.type)
10792 {
10793 case BT_INTEGER:
10794 if (!gfc_boz2int (rhs, lhs->ts.kind))
10795 return false;
10796 break;
10797 case BT_REAL:
10798 if (!gfc_boz2real (rhs, lhs->ts.kind))
10799 return false;
10800 break;
10801 default:
10802 gfc_error ("Invalid use of BOZ literal constant at %L", &rhs->where);
10803 return false;
10804 }
10805 }
10806
10807 if (lhs->ts.type == BT_CHARACTER && warn_character_truncation)
10808 {
10809 HOST_WIDE_INT llen = 0, rlen = 0;
10810 if (lhs->ts.u.cl != NULL
10811 && lhs->ts.u.cl->length != NULL
10812 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10813 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10814
10815 if (rhs->expr_type == EXPR_CONSTANT)
10816 rlen = rhs->value.character.length;
10817
10818 else if (rhs->ts.u.cl != NULL
10819 && rhs->ts.u.cl->length != NULL
10820 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10821 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10822
10823 if (rlen && llen && rlen > llen)
10824 gfc_warning_now (OPT_Wcharacter_truncation,
10825 "CHARACTER expression will be truncated "
10826 "in assignment (%ld/%ld) at %L",
10827 (long) llen, (long) rlen, &code->loc);
10828 }
10829
10830 /* Ensure that a vector index expression for the lvalue is evaluated
10831 to a temporary if the lvalue symbol is referenced in it. */
10832 if (lhs->rank)
10833 {
10834 for (ref = lhs->ref; ref; ref= ref->next)
10835 if (ref->type == REF_ARRAY)
10836 {
10837 for (n = 0; n < ref->u.ar.dimen; n++)
10838 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10839 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10840 ref->u.ar.start[n]))
10841 ref->u.ar.start[n]
10842 = gfc_get_parentheses (ref->u.ar.start[n]);
10843 }
10844 }
10845
10846 if (gfc_pure (NULL))
10847 {
10848 if (lhs->ts.type == BT_DERIVED
10849 && lhs->expr_type == EXPR_VARIABLE
10850 && lhs->ts.u.derived->attr.pointer_comp
10851 && rhs->expr_type == EXPR_VARIABLE
10852 && (gfc_impure_variable (rhs->symtree->n.sym)
10853 || gfc_is_coindexed (rhs)))
10854 {
10855 /* F2008, C1283. */
10856 if (gfc_is_coindexed (rhs))
10857 gfc_error ("Coindexed expression at %L is assigned to "
10858 "a derived type variable with a POINTER "
10859 "component in a PURE procedure",
10860 &rhs->where);
10861 else
10862 /* F2008, C1283 (4). */
10863 gfc_error ("In a pure subprogram an INTENT(IN) dummy argument "
10864 "shall not be used as the expr at %L of an intrinsic "
10865 "assignment statement in which the variable is of a "
10866 "derived type if the derived type has a pointer "
10867 "component at any level of component selection.",
10868 &rhs->where);
10869 return rval;
10870 }
10871
10872 /* Fortran 2008, C1283. */
10873 if (gfc_is_coindexed (lhs))
10874 {
10875 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10876 "procedure", &rhs->where);
10877 return rval;
10878 }
10879 }
10880
10881 if (gfc_implicit_pure (NULL))
10882 {
10883 if (lhs->expr_type == EXPR_VARIABLE
10884 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10885 && lhs->symtree->n.sym->ns != gfc_current_ns)
10886 gfc_unset_implicit_pure (NULL);
10887
10888 if (lhs->ts.type == BT_DERIVED
10889 && lhs->expr_type == EXPR_VARIABLE
10890 && lhs->ts.u.derived->attr.pointer_comp
10891 && rhs->expr_type == EXPR_VARIABLE
10892 && (gfc_impure_variable (rhs->symtree->n.sym)
10893 || gfc_is_coindexed (rhs)))
10894 gfc_unset_implicit_pure (NULL);
10895
10896 /* Fortran 2008, C1283. */
10897 if (gfc_is_coindexed (lhs))
10898 gfc_unset_implicit_pure (NULL);
10899 }
10900
10901 /* F2008, 7.2.1.2. */
10902 attr = gfc_expr_attr (lhs);
10903 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10904 {
10905 if (attr.codimension)
10906 {
10907 gfc_error ("Assignment to polymorphic coarray at %L is not "
10908 "permitted", &lhs->where);
10909 return false;
10910 }
10911 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10912 "polymorphic variable at %L", &lhs->where))
10913 return false;
10914 if (!flag_realloc_lhs)
10915 {
10916 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10917 "requires %<-frealloc-lhs%>", &lhs->where);
10918 return false;
10919 }
10920 }
10921 else if (lhs->ts.type == BT_CLASS)
10922 {
10923 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10924 "assignment at %L - check that there is a matching specific "
10925 "subroutine for '=' operator", &lhs->where);
10926 return false;
10927 }
10928
10929 bool lhs_coindexed = gfc_is_coindexed (lhs);
10930
10931 /* F2008, Section 7.2.1.2. */
10932 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10933 {
10934 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10935 "component in assignment at %L", &lhs->where);
10936 return false;
10937 }
10938
10939 /* Assign the 'data' of a class object to a derived type. */
10940 if (lhs->ts.type == BT_DERIVED
10941 && rhs->ts.type == BT_CLASS
10942 && rhs->expr_type != EXPR_ARRAY)
10943 gfc_add_data_component (rhs);
10944
10945 /* Make sure there is a vtable and, in particular, a _copy for the
10946 rhs type. */
10947 if (UNLIMITED_POLY (lhs) && lhs->rank && rhs->ts.type != BT_CLASS)
10948 gfc_find_vtab (&rhs->ts);
10949
10950 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
10951 && (lhs_coindexed
10952 || (code->expr2->expr_type == EXPR_FUNCTION
10953 && code->expr2->value.function.isym
10954 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
10955 && (code->expr1->rank == 0 || code->expr2->rank != 0)
10956 && !gfc_expr_attr (rhs).allocatable
10957 && !gfc_has_vector_subscript (rhs)));
10958
10959 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
10960
10961 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10962 Additionally, insert this code when the RHS is a CAF as we then use the
10963 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10964 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10965 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10966 path. */
10967 if (caf_convert_to_send)
10968 {
10969 if (code->expr2->expr_type == EXPR_FUNCTION
10970 && code->expr2->value.function.isym
10971 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
10972 remove_caf_get_intrinsic (code->expr2);
10973 code->op = EXEC_CALL;
10974 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
10975 code->resolved_sym = code->symtree->n.sym;
10976 code->resolved_sym->attr.flavor = FL_PROCEDURE;
10977 code->resolved_sym->attr.intrinsic = 1;
10978 code->resolved_sym->attr.subroutine = 1;
10979 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
10980 gfc_commit_symbol (code->resolved_sym);
10981 code->ext.actual = gfc_get_actual_arglist ();
10982 code->ext.actual->expr = lhs;
10983 code->ext.actual->next = gfc_get_actual_arglist ();
10984 code->ext.actual->next->expr = rhs;
10985 code->expr1 = NULL;
10986 code->expr2 = NULL;
10987 }
10988
10989 return false;
10990 }
10991
10992
10993 /* Add a component reference onto an expression. */
10994
10995 static void
10996 add_comp_ref (gfc_expr *e, gfc_component *c)
10997 {
10998 gfc_ref **ref;
10999 ref = &(e->ref);
11000 while (*ref)
11001 ref = &((*ref)->next);
11002 *ref = gfc_get_ref ();
11003 (*ref)->type = REF_COMPONENT;
11004 (*ref)->u.c.sym = e->ts.u.derived;
11005 (*ref)->u.c.component = c;
11006 e->ts = c->ts;
11007
11008 /* Add a full array ref, as necessary. */
11009 if (c->as)
11010 {
11011 gfc_add_full_array_ref (e, c->as);
11012 e->rank = c->as->rank;
11013 }
11014 }
11015
11016
11017 /* Build an assignment. Keep the argument 'op' for future use, so that
11018 pointer assignments can be made. */
11019
11020 static gfc_code *
11021 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
11022 gfc_component *comp1, gfc_component *comp2, locus loc)
11023 {
11024 gfc_code *this_code;
11025
11026 this_code = gfc_get_code (op);
11027 this_code->next = NULL;
11028 this_code->expr1 = gfc_copy_expr (expr1);
11029 this_code->expr2 = gfc_copy_expr (expr2);
11030 this_code->loc = loc;
11031 if (comp1 && comp2)
11032 {
11033 add_comp_ref (this_code->expr1, comp1);
11034 add_comp_ref (this_code->expr2, comp2);
11035 }
11036
11037 return this_code;
11038 }
11039
11040
11041 /* Makes a temporary variable expression based on the characteristics of
11042 a given variable expression. */
11043
11044 static gfc_expr*
11045 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
11046 {
11047 static int serial = 0;
11048 char name[GFC_MAX_SYMBOL_LEN];
11049 gfc_symtree *tmp;
11050 gfc_array_spec *as;
11051 gfc_array_ref *aref;
11052 gfc_ref *ref;
11053
11054 sprintf (name, GFC_PREFIX("DA%d"), serial++);
11055 gfc_get_sym_tree (name, ns, &tmp, false);
11056 gfc_add_type (tmp->n.sym, &e->ts, NULL);
11057
11058 if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
11059 tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
11060 NULL,
11061 e->value.character.length);
11062
11063 as = NULL;
11064 ref = NULL;
11065 aref = NULL;
11066
11067 /* Obtain the arrayspec for the temporary. */
11068 if (e->rank && e->expr_type != EXPR_ARRAY
11069 && e->expr_type != EXPR_FUNCTION
11070 && e->expr_type != EXPR_OP)
11071 {
11072 aref = gfc_find_array_ref (e);
11073 if (e->expr_type == EXPR_VARIABLE
11074 && e->symtree->n.sym->as == aref->as)
11075 as = aref->as;
11076 else
11077 {
11078 for (ref = e->ref; ref; ref = ref->next)
11079 if (ref->type == REF_COMPONENT
11080 && ref->u.c.component->as == aref->as)
11081 {
11082 as = aref->as;
11083 break;
11084 }
11085 }
11086 }
11087
11088 /* Add the attributes and the arrayspec to the temporary. */
11089 tmp->n.sym->attr = gfc_expr_attr (e);
11090 tmp->n.sym->attr.function = 0;
11091 tmp->n.sym->attr.result = 0;
11092 tmp->n.sym->attr.flavor = FL_VARIABLE;
11093 tmp->n.sym->attr.dummy = 0;
11094 tmp->n.sym->attr.intent = INTENT_UNKNOWN;
11095
11096 if (as)
11097 {
11098 tmp->n.sym->as = gfc_copy_array_spec (as);
11099 if (!ref)
11100 ref = e->ref;
11101 if (as->type == AS_DEFERRED)
11102 tmp->n.sym->attr.allocatable = 1;
11103 }
11104 else if (e->rank && (e->expr_type == EXPR_ARRAY
11105 || e->expr_type == EXPR_FUNCTION
11106 || e->expr_type == EXPR_OP))
11107 {
11108 tmp->n.sym->as = gfc_get_array_spec ();
11109 tmp->n.sym->as->type = AS_DEFERRED;
11110 tmp->n.sym->as->rank = e->rank;
11111 tmp->n.sym->attr.allocatable = 1;
11112 tmp->n.sym->attr.dimension = 1;
11113 }
11114 else
11115 tmp->n.sym->attr.dimension = 0;
11116
11117 gfc_set_sym_referenced (tmp->n.sym);
11118 gfc_commit_symbol (tmp->n.sym);
11119 e = gfc_lval_expr_from_sym (tmp->n.sym);
11120
11121 /* Should the lhs be a section, use its array ref for the
11122 temporary expression. */
11123 if (aref && aref->type != AR_FULL)
11124 {
11125 gfc_free_ref_list (e->ref);
11126 e->ref = gfc_copy_ref (ref);
11127 }
11128 return e;
11129 }
11130
11131
11132 /* Add one line of code to the code chain, making sure that 'head' and
11133 'tail' are appropriately updated. */
11134
11135 static void
11136 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
11137 {
11138 gcc_assert (this_code);
11139 if (*head == NULL)
11140 *head = *tail = *this_code;
11141 else
11142 *tail = gfc_append_code (*tail, *this_code);
11143 *this_code = NULL;
11144 }
11145
11146
11147 /* Counts the potential number of part array references that would
11148 result from resolution of typebound defined assignments. */
11149
11150 static int
11151 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
11152 {
11153 gfc_component *c;
11154 int c_depth = 0, t_depth;
11155
11156 for (c= derived->components; c; c = c->next)
11157 {
11158 if ((!gfc_bt_struct (c->ts.type)
11159 || c->attr.pointer
11160 || c->attr.allocatable
11161 || c->attr.proc_pointer_comp
11162 || c->attr.class_pointer
11163 || c->attr.proc_pointer)
11164 && !c->attr.defined_assign_comp)
11165 continue;
11166
11167 if (c->as && c_depth == 0)
11168 c_depth = 1;
11169
11170 if (c->ts.u.derived->attr.defined_assign_comp)
11171 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
11172 c->as ? 1 : 0);
11173 else
11174 t_depth = 0;
11175
11176 c_depth = t_depth > c_depth ? t_depth : c_depth;
11177 }
11178 return depth + c_depth;
11179 }
11180
11181
11182 /* Implement 7.2.1.3 of the F08 standard:
11183 "An intrinsic assignment where the variable is of derived type is
11184 performed as if each component of the variable were assigned from the
11185 corresponding component of expr using pointer assignment (7.2.2) for
11186 each pointer component, defined assignment for each nonpointer
11187 nonallocatable component of a type that has a type-bound defined
11188 assignment consistent with the component, intrinsic assignment for
11189 each other nonpointer nonallocatable component, ..."
11190
11191 The pointer assignments are taken care of by the intrinsic
11192 assignment of the structure itself. This function recursively adds
11193 defined assignments where required. The recursion is accomplished
11194 by calling gfc_resolve_code.
11195
11196 When the lhs in a defined assignment has intent INOUT, we need a
11197 temporary for the lhs. In pseudo-code:
11198
11199 ! Only call function lhs once.
11200 if (lhs is not a constant or an variable)
11201 temp_x = expr2
11202 expr2 => temp_x
11203 ! Do the intrinsic assignment
11204 expr1 = expr2
11205 ! Now do the defined assignments
11206 do over components with typebound defined assignment [%cmp]
11207 #if one component's assignment procedure is INOUT
11208 t1 = expr1
11209 #if expr2 non-variable
11210 temp_x = expr2
11211 expr2 => temp_x
11212 # endif
11213 expr1 = expr2
11214 # for each cmp
11215 t1%cmp {defined=} expr2%cmp
11216 expr1%cmp = t1%cmp
11217 #else
11218 expr1 = expr2
11219
11220 # for each cmp
11221 expr1%cmp {defined=} expr2%cmp
11222 #endif
11223 */
11224
11225 /* The temporary assignments have to be put on top of the additional
11226 code to avoid the result being changed by the intrinsic assignment.
11227 */
11228 static int component_assignment_level = 0;
11229 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
11230
11231 static void
11232 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
11233 {
11234 gfc_component *comp1, *comp2;
11235 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
11236 gfc_expr *t1;
11237 int error_count, depth;
11238
11239 gfc_get_errors (NULL, &error_count);
11240
11241 /* Filter out continuing processing after an error. */
11242 if (error_count
11243 || (*code)->expr1->ts.type != BT_DERIVED
11244 || (*code)->expr2->ts.type != BT_DERIVED)
11245 return;
11246
11247 /* TODO: Handle more than one part array reference in assignments. */
11248 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
11249 (*code)->expr1->rank ? 1 : 0);
11250 if (depth > 1)
11251 {
11252 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
11253 "done because multiple part array references would "
11254 "occur in intermediate expressions.", &(*code)->loc);
11255 return;
11256 }
11257
11258 component_assignment_level++;
11259
11260 /* Create a temporary so that functions get called only once. */
11261 if ((*code)->expr2->expr_type != EXPR_VARIABLE
11262 && (*code)->expr2->expr_type != EXPR_CONSTANT)
11263 {
11264 gfc_expr *tmp_expr;
11265
11266 /* Assign the rhs to the temporary. */
11267 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11268 this_code = build_assignment (EXEC_ASSIGN,
11269 tmp_expr, (*code)->expr2,
11270 NULL, NULL, (*code)->loc);
11271 /* Add the code and substitute the rhs expression. */
11272 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
11273 gfc_free_expr ((*code)->expr2);
11274 (*code)->expr2 = tmp_expr;
11275 }
11276
11277 /* Do the intrinsic assignment. This is not needed if the lhs is one
11278 of the temporaries generated here, since the intrinsic assignment
11279 to the final result already does this. */
11280 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
11281 {
11282 this_code = build_assignment (EXEC_ASSIGN,
11283 (*code)->expr1, (*code)->expr2,
11284 NULL, NULL, (*code)->loc);
11285 add_code_to_chain (&this_code, &head, &tail);
11286 }
11287
11288 comp1 = (*code)->expr1->ts.u.derived->components;
11289 comp2 = (*code)->expr2->ts.u.derived->components;
11290
11291 t1 = NULL;
11292 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
11293 {
11294 bool inout = false;
11295
11296 /* The intrinsic assignment does the right thing for pointers
11297 of all kinds and allocatable components. */
11298 if (!gfc_bt_struct (comp1->ts.type)
11299 || comp1->attr.pointer
11300 || comp1->attr.allocatable
11301 || comp1->attr.proc_pointer_comp
11302 || comp1->attr.class_pointer
11303 || comp1->attr.proc_pointer)
11304 continue;
11305
11306 /* Make an assigment for this component. */
11307 this_code = build_assignment (EXEC_ASSIGN,
11308 (*code)->expr1, (*code)->expr2,
11309 comp1, comp2, (*code)->loc);
11310
11311 /* Convert the assignment if there is a defined assignment for
11312 this type. Otherwise, using the call from gfc_resolve_code,
11313 recurse into its components. */
11314 gfc_resolve_code (this_code, ns);
11315
11316 if (this_code->op == EXEC_ASSIGN_CALL)
11317 {
11318 gfc_formal_arglist *dummy_args;
11319 gfc_symbol *rsym;
11320 /* Check that there is a typebound defined assignment. If not,
11321 then this must be a module defined assignment. We cannot
11322 use the defined_assign_comp attribute here because it must
11323 be this derived type that has the defined assignment and not
11324 a parent type. */
11325 if (!(comp1->ts.u.derived->f2k_derived
11326 && comp1->ts.u.derived->f2k_derived
11327 ->tb_op[INTRINSIC_ASSIGN]))
11328 {
11329 gfc_free_statements (this_code);
11330 this_code = NULL;
11331 continue;
11332 }
11333
11334 /* If the first argument of the subroutine has intent INOUT
11335 a temporary must be generated and used instead. */
11336 rsym = this_code->resolved_sym;
11337 dummy_args = gfc_sym_get_dummy_args (rsym);
11338 if (dummy_args
11339 && dummy_args->sym->attr.intent == INTENT_INOUT)
11340 {
11341 gfc_code *temp_code;
11342 inout = true;
11343
11344 /* Build the temporary required for the assignment and put
11345 it at the head of the generated code. */
11346 if (!t1)
11347 {
11348 t1 = get_temp_from_expr ((*code)->expr1, ns);
11349 temp_code = build_assignment (EXEC_ASSIGN,
11350 t1, (*code)->expr1,
11351 NULL, NULL, (*code)->loc);
11352
11353 /* For allocatable LHS, check whether it is allocated. Note
11354 that allocatable components with defined assignment are
11355 not yet support. See PR 57696. */
11356 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
11357 {
11358 gfc_code *block;
11359 gfc_expr *e =
11360 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11361 block = gfc_get_code (EXEC_IF);
11362 block->block = gfc_get_code (EXEC_IF);
11363 block->block->expr1
11364 = gfc_build_intrinsic_call (ns,
11365 GFC_ISYM_ALLOCATED, "allocated",
11366 (*code)->loc, 1, e);
11367 block->block->next = temp_code;
11368 temp_code = block;
11369 }
11370 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
11371 }
11372
11373 /* Replace the first actual arg with the component of the
11374 temporary. */
11375 gfc_free_expr (this_code->ext.actual->expr);
11376 this_code->ext.actual->expr = gfc_copy_expr (t1);
11377 add_comp_ref (this_code->ext.actual->expr, comp1);
11378
11379 /* If the LHS variable is allocatable and wasn't allocated and
11380 the temporary is allocatable, pointer assign the address of
11381 the freshly allocated LHS to the temporary. */
11382 if ((*code)->expr1->symtree->n.sym->attr.allocatable
11383 && gfc_expr_attr ((*code)->expr1).allocatable)
11384 {
11385 gfc_code *block;
11386 gfc_expr *cond;
11387
11388 cond = gfc_get_expr ();
11389 cond->ts.type = BT_LOGICAL;
11390 cond->ts.kind = gfc_default_logical_kind;
11391 cond->expr_type = EXPR_OP;
11392 cond->where = (*code)->loc;
11393 cond->value.op.op = INTRINSIC_NOT;
11394 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
11395 GFC_ISYM_ALLOCATED, "allocated",
11396 (*code)->loc, 1, gfc_copy_expr (t1));
11397 block = gfc_get_code (EXEC_IF);
11398 block->block = gfc_get_code (EXEC_IF);
11399 block->block->expr1 = cond;
11400 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11401 t1, (*code)->expr1,
11402 NULL, NULL, (*code)->loc);
11403 add_code_to_chain (&block, &head, &tail);
11404 }
11405 }
11406 }
11407 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
11408 {
11409 /* Don't add intrinsic assignments since they are already
11410 effected by the intrinsic assignment of the structure. */
11411 gfc_free_statements (this_code);
11412 this_code = NULL;
11413 continue;
11414 }
11415
11416 add_code_to_chain (&this_code, &head, &tail);
11417
11418 if (t1 && inout)
11419 {
11420 /* Transfer the value to the final result. */
11421 this_code = build_assignment (EXEC_ASSIGN,
11422 (*code)->expr1, t1,
11423 comp1, comp2, (*code)->loc);
11424 add_code_to_chain (&this_code, &head, &tail);
11425 }
11426 }
11427
11428 /* Put the temporary assignments at the top of the generated code. */
11429 if (tmp_head && component_assignment_level == 1)
11430 {
11431 gfc_append_code (tmp_head, head);
11432 head = tmp_head;
11433 tmp_head = tmp_tail = NULL;
11434 }
11435
11436 // If we did a pointer assignment - thus, we need to ensure that the LHS is
11437 // not accidentally deallocated. Hence, nullify t1.
11438 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
11439 && gfc_expr_attr ((*code)->expr1).allocatable)
11440 {
11441 gfc_code *block;
11442 gfc_expr *cond;
11443 gfc_expr *e;
11444
11445 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11446 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
11447 (*code)->loc, 2, gfc_copy_expr (t1), e);
11448 block = gfc_get_code (EXEC_IF);
11449 block->block = gfc_get_code (EXEC_IF);
11450 block->block->expr1 = cond;
11451 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11452 t1, gfc_get_null_expr (&(*code)->loc),
11453 NULL, NULL, (*code)->loc);
11454 gfc_append_code (tail, block);
11455 tail = block;
11456 }
11457
11458 /* Now attach the remaining code chain to the input code. Step on
11459 to the end of the new code since resolution is complete. */
11460 gcc_assert ((*code)->op == EXEC_ASSIGN);
11461 tail->next = (*code)->next;
11462 /* Overwrite 'code' because this would place the intrinsic assignment
11463 before the temporary for the lhs is created. */
11464 gfc_free_expr ((*code)->expr1);
11465 gfc_free_expr ((*code)->expr2);
11466 **code = *head;
11467 if (head != tail)
11468 free (head);
11469 *code = tail;
11470
11471 component_assignment_level--;
11472 }
11473
11474
11475 /* F2008: Pointer function assignments are of the form:
11476 ptr_fcn (args) = expr
11477 This function breaks these assignments into two statements:
11478 temporary_pointer => ptr_fcn(args)
11479 temporary_pointer = expr */
11480
11481 static bool
11482 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
11483 {
11484 gfc_expr *tmp_ptr_expr;
11485 gfc_code *this_code;
11486 gfc_component *comp;
11487 gfc_symbol *s;
11488
11489 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
11490 return false;
11491
11492 /* Even if standard does not support this feature, continue to build
11493 the two statements to avoid upsetting frontend_passes.c. */
11494 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
11495 "%L", &(*code)->loc);
11496
11497 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
11498
11499 if (comp)
11500 s = comp->ts.interface;
11501 else
11502 s = (*code)->expr1->symtree->n.sym;
11503
11504 if (s == NULL || !s->result->attr.pointer)
11505 {
11506 gfc_error ("The function result on the lhs of the assignment at "
11507 "%L must have the pointer attribute.",
11508 &(*code)->expr1->where);
11509 (*code)->op = EXEC_NOP;
11510 return false;
11511 }
11512
11513 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
11514
11515 /* get_temp_from_expression is set up for ordinary assignments. To that
11516 end, where array bounds are not known, arrays are made allocatable.
11517 Change the temporary to a pointer here. */
11518 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
11519 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
11520 tmp_ptr_expr->where = (*code)->loc;
11521
11522 this_code = build_assignment (EXEC_ASSIGN,
11523 tmp_ptr_expr, (*code)->expr2,
11524 NULL, NULL, (*code)->loc);
11525 this_code->next = (*code)->next;
11526 (*code)->next = this_code;
11527 (*code)->op = EXEC_POINTER_ASSIGN;
11528 (*code)->expr2 = (*code)->expr1;
11529 (*code)->expr1 = tmp_ptr_expr;
11530
11531 return true;
11532 }
11533
11534
11535 /* Deferred character length assignments from an operator expression
11536 require a temporary because the character length of the lhs can
11537 change in the course of the assignment. */
11538
11539 static bool
11540 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
11541 {
11542 gfc_expr *tmp_expr;
11543 gfc_code *this_code;
11544
11545 if (!((*code)->expr1->ts.type == BT_CHARACTER
11546 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
11547 && (*code)->expr2->expr_type == EXPR_OP))
11548 return false;
11549
11550 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
11551 return false;
11552
11553 if (gfc_expr_attr ((*code)->expr1).pointer)
11554 return false;
11555
11556 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11557 tmp_expr->where = (*code)->loc;
11558
11559 /* A new charlen is required to ensure that the variable string
11560 length is different to that of the original lhs. */
11561 tmp_expr->ts.u.cl = gfc_get_charlen();
11562 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
11563 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
11564 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
11565
11566 tmp_expr->symtree->n.sym->ts.deferred = 1;
11567
11568 this_code = build_assignment (EXEC_ASSIGN,
11569 (*code)->expr1,
11570 gfc_copy_expr (tmp_expr),
11571 NULL, NULL, (*code)->loc);
11572
11573 (*code)->expr1 = tmp_expr;
11574
11575 this_code->next = (*code)->next;
11576 (*code)->next = this_code;
11577
11578 return true;
11579 }
11580
11581
11582 /* Given a block of code, recursively resolve everything pointed to by this
11583 code block. */
11584
11585 void
11586 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
11587 {
11588 int omp_workshare_save;
11589 int forall_save, do_concurrent_save;
11590 code_stack frame;
11591 bool t;
11592
11593 frame.prev = cs_base;
11594 frame.head = code;
11595 cs_base = &frame;
11596
11597 find_reachable_labels (code);
11598
11599 for (; code; code = code->next)
11600 {
11601 frame.current = code;
11602 forall_save = forall_flag;
11603 do_concurrent_save = gfc_do_concurrent_flag;
11604
11605 if (code->op == EXEC_FORALL)
11606 {
11607 forall_flag = 1;
11608 gfc_resolve_forall (code, ns, forall_save);
11609 forall_flag = 2;
11610 }
11611 else if (code->block)
11612 {
11613 omp_workshare_save = -1;
11614 switch (code->op)
11615 {
11616 case EXEC_OACC_PARALLEL_LOOP:
11617 case EXEC_OACC_PARALLEL:
11618 case EXEC_OACC_KERNELS_LOOP:
11619 case EXEC_OACC_KERNELS:
11620 case EXEC_OACC_SERIAL_LOOP:
11621 case EXEC_OACC_SERIAL:
11622 case EXEC_OACC_DATA:
11623 case EXEC_OACC_HOST_DATA:
11624 case EXEC_OACC_LOOP:
11625 gfc_resolve_oacc_blocks (code, ns);
11626 break;
11627 case EXEC_OMP_PARALLEL_WORKSHARE:
11628 omp_workshare_save = omp_workshare_flag;
11629 omp_workshare_flag = 1;
11630 gfc_resolve_omp_parallel_blocks (code, ns);
11631 break;
11632 case EXEC_OMP_PARALLEL:
11633 case EXEC_OMP_PARALLEL_DO:
11634 case EXEC_OMP_PARALLEL_DO_SIMD:
11635 case EXEC_OMP_PARALLEL_SECTIONS:
11636 case EXEC_OMP_TARGET_PARALLEL:
11637 case EXEC_OMP_TARGET_PARALLEL_DO:
11638 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11639 case EXEC_OMP_TARGET_TEAMS:
11640 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11641 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11642 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11643 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11644 case EXEC_OMP_TASK:
11645 case EXEC_OMP_TASKLOOP:
11646 case EXEC_OMP_TASKLOOP_SIMD:
11647 case EXEC_OMP_TEAMS:
11648 case EXEC_OMP_TEAMS_DISTRIBUTE:
11649 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11650 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11651 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11652 omp_workshare_save = omp_workshare_flag;
11653 omp_workshare_flag = 0;
11654 gfc_resolve_omp_parallel_blocks (code, ns);
11655 break;
11656 case EXEC_OMP_DISTRIBUTE:
11657 case EXEC_OMP_DISTRIBUTE_SIMD:
11658 case EXEC_OMP_DO:
11659 case EXEC_OMP_DO_SIMD:
11660 case EXEC_OMP_SIMD:
11661 case EXEC_OMP_TARGET_SIMD:
11662 gfc_resolve_omp_do_blocks (code, ns);
11663 break;
11664 case EXEC_SELECT_TYPE:
11665 /* Blocks are handled in resolve_select_type because we have
11666 to transform the SELECT TYPE into ASSOCIATE first. */
11667 break;
11668 case EXEC_DO_CONCURRENT:
11669 gfc_do_concurrent_flag = 1;
11670 gfc_resolve_blocks (code->block, ns);
11671 gfc_do_concurrent_flag = 2;
11672 break;
11673 case EXEC_OMP_WORKSHARE:
11674 omp_workshare_save = omp_workshare_flag;
11675 omp_workshare_flag = 1;
11676 /* FALL THROUGH */
11677 default:
11678 gfc_resolve_blocks (code->block, ns);
11679 break;
11680 }
11681
11682 if (omp_workshare_save != -1)
11683 omp_workshare_flag = omp_workshare_save;
11684 }
11685 start:
11686 t = true;
11687 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11688 t = gfc_resolve_expr (code->expr1);
11689 forall_flag = forall_save;
11690 gfc_do_concurrent_flag = do_concurrent_save;
11691
11692 if (!gfc_resolve_expr (code->expr2))
11693 t = false;
11694
11695 if (code->op == EXEC_ALLOCATE
11696 && !gfc_resolve_expr (code->expr3))
11697 t = false;
11698
11699 switch (code->op)
11700 {
11701 case EXEC_NOP:
11702 case EXEC_END_BLOCK:
11703 case EXEC_END_NESTED_BLOCK:
11704 case EXEC_CYCLE:
11705 case EXEC_PAUSE:
11706 case EXEC_STOP:
11707 case EXEC_ERROR_STOP:
11708 case EXEC_EXIT:
11709 case EXEC_CONTINUE:
11710 case EXEC_DT_END:
11711 case EXEC_ASSIGN_CALL:
11712 break;
11713
11714 case EXEC_CRITICAL:
11715 resolve_critical (code);
11716 break;
11717
11718 case EXEC_SYNC_ALL:
11719 case EXEC_SYNC_IMAGES:
11720 case EXEC_SYNC_MEMORY:
11721 resolve_sync (code);
11722 break;
11723
11724 case EXEC_LOCK:
11725 case EXEC_UNLOCK:
11726 case EXEC_EVENT_POST:
11727 case EXEC_EVENT_WAIT:
11728 resolve_lock_unlock_event (code);
11729 break;
11730
11731 case EXEC_FAIL_IMAGE:
11732 case EXEC_FORM_TEAM:
11733 case EXEC_CHANGE_TEAM:
11734 case EXEC_END_TEAM:
11735 case EXEC_SYNC_TEAM:
11736 break;
11737
11738 case EXEC_ENTRY:
11739 /* Keep track of which entry we are up to. */
11740 current_entry_id = code->ext.entry->id;
11741 break;
11742
11743 case EXEC_WHERE:
11744 resolve_where (code, NULL);
11745 break;
11746
11747 case EXEC_GOTO:
11748 if (code->expr1 != NULL)
11749 {
11750 if (code->expr1->ts.type != BT_INTEGER)
11751 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11752 "INTEGER variable", &code->expr1->where);
11753 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11754 gfc_error ("Variable %qs has not been assigned a target "
11755 "label at %L", code->expr1->symtree->n.sym->name,
11756 &code->expr1->where);
11757 }
11758 else
11759 resolve_branch (code->label1, code);
11760 break;
11761
11762 case EXEC_RETURN:
11763 if (code->expr1 != NULL
11764 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11765 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11766 "INTEGER return specifier", &code->expr1->where);
11767 break;
11768
11769 case EXEC_INIT_ASSIGN:
11770 case EXEC_END_PROCEDURE:
11771 break;
11772
11773 case EXEC_ASSIGN:
11774 if (!t)
11775 break;
11776
11777 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11778 the LHS. */
11779 if (code->expr1->expr_type == EXPR_FUNCTION
11780 && code->expr1->value.function.isym
11781 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11782 remove_caf_get_intrinsic (code->expr1);
11783
11784 /* If this is a pointer function in an lvalue variable context,
11785 the new code will have to be resolved afresh. This is also the
11786 case with an error, where the code is transformed into NOP to
11787 prevent ICEs downstream. */
11788 if (resolve_ptr_fcn_assign (&code, ns)
11789 || code->op == EXEC_NOP)
11790 goto start;
11791
11792 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11793 _("assignment")))
11794 break;
11795
11796 if (resolve_ordinary_assign (code, ns))
11797 {
11798 if (code->op == EXEC_COMPCALL)
11799 goto compcall;
11800 else
11801 goto call;
11802 }
11803
11804 /* Check for dependencies in deferred character length array
11805 assignments and generate a temporary, if necessary. */
11806 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11807 break;
11808
11809 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11810 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11811 && code->expr1->ts.u.derived
11812 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11813 generate_component_assignments (&code, ns);
11814
11815 break;
11816
11817 case EXEC_LABEL_ASSIGN:
11818 if (code->label1->defined == ST_LABEL_UNKNOWN)
11819 gfc_error ("Label %d referenced at %L is never defined",
11820 code->label1->value, &code->label1->where);
11821 if (t
11822 && (code->expr1->expr_type != EXPR_VARIABLE
11823 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11824 || code->expr1->symtree->n.sym->ts.kind
11825 != gfc_default_integer_kind
11826 || code->expr1->symtree->n.sym->as != NULL))
11827 gfc_error ("ASSIGN statement at %L requires a scalar "
11828 "default INTEGER variable", &code->expr1->where);
11829 break;
11830
11831 case EXEC_POINTER_ASSIGN:
11832 {
11833 gfc_expr* e;
11834
11835 if (!t)
11836 break;
11837
11838 /* This is both a variable definition and pointer assignment
11839 context, so check both of them. For rank remapping, a final
11840 array ref may be present on the LHS and fool gfc_expr_attr
11841 used in gfc_check_vardef_context. Remove it. */
11842 e = remove_last_array_ref (code->expr1);
11843 t = gfc_check_vardef_context (e, true, false, false,
11844 _("pointer assignment"));
11845 if (t)
11846 t = gfc_check_vardef_context (e, false, false, false,
11847 _("pointer assignment"));
11848 gfc_free_expr (e);
11849
11850 t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
11851
11852 if (!t)
11853 break;
11854
11855 /* Assigning a class object always is a regular assign. */
11856 if (code->expr2->ts.type == BT_CLASS
11857 && code->expr1->ts.type == BT_CLASS
11858 && !CLASS_DATA (code->expr2)->attr.dimension
11859 && !(gfc_expr_attr (code->expr1).proc_pointer
11860 && code->expr2->expr_type == EXPR_VARIABLE
11861 && code->expr2->symtree->n.sym->attr.flavor
11862 == FL_PROCEDURE))
11863 code->op = EXEC_ASSIGN;
11864 break;
11865 }
11866
11867 case EXEC_ARITHMETIC_IF:
11868 {
11869 gfc_expr *e = code->expr1;
11870
11871 gfc_resolve_expr (e);
11872 if (e->expr_type == EXPR_NULL)
11873 gfc_error ("Invalid NULL at %L", &e->where);
11874
11875 if (t && (e->rank > 0
11876 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11877 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11878 "REAL or INTEGER expression", &e->where);
11879
11880 resolve_branch (code->label1, code);
11881 resolve_branch (code->label2, code);
11882 resolve_branch (code->label3, code);
11883 }
11884 break;
11885
11886 case EXEC_IF:
11887 if (t && code->expr1 != NULL
11888 && (code->expr1->ts.type != BT_LOGICAL
11889 || code->expr1->rank != 0))
11890 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11891 &code->expr1->where);
11892 break;
11893
11894 case EXEC_CALL:
11895 call:
11896 resolve_call (code);
11897 break;
11898
11899 case EXEC_COMPCALL:
11900 compcall:
11901 resolve_typebound_subroutine (code);
11902 break;
11903
11904 case EXEC_CALL_PPC:
11905 resolve_ppc_call (code);
11906 break;
11907
11908 case EXEC_SELECT:
11909 /* Select is complicated. Also, a SELECT construct could be
11910 a transformed computed GOTO. */
11911 resolve_select (code, false);
11912 break;
11913
11914 case EXEC_SELECT_TYPE:
11915 resolve_select_type (code, ns);
11916 break;
11917
11918 case EXEC_SELECT_RANK:
11919 resolve_select_rank (code, ns);
11920 break;
11921
11922 case EXEC_BLOCK:
11923 resolve_block_construct (code);
11924 break;
11925
11926 case EXEC_DO:
11927 if (code->ext.iterator != NULL)
11928 {
11929 gfc_iterator *iter = code->ext.iterator;
11930 if (gfc_resolve_iterator (iter, true, false))
11931 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11932 true);
11933 }
11934 break;
11935
11936 case EXEC_DO_WHILE:
11937 if (code->expr1 == NULL)
11938 gfc_internal_error ("gfc_resolve_code(): No expression on "
11939 "DO WHILE");
11940 if (t
11941 && (code->expr1->rank != 0
11942 || code->expr1->ts.type != BT_LOGICAL))
11943 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11944 "a scalar LOGICAL expression", &code->expr1->where);
11945 break;
11946
11947 case EXEC_ALLOCATE:
11948 if (t)
11949 resolve_allocate_deallocate (code, "ALLOCATE");
11950
11951 break;
11952
11953 case EXEC_DEALLOCATE:
11954 if (t)
11955 resolve_allocate_deallocate (code, "DEALLOCATE");
11956
11957 break;
11958
11959 case EXEC_OPEN:
11960 if (!gfc_resolve_open (code->ext.open))
11961 break;
11962
11963 resolve_branch (code->ext.open->err, code);
11964 break;
11965
11966 case EXEC_CLOSE:
11967 if (!gfc_resolve_close (code->ext.close))
11968 break;
11969
11970 resolve_branch (code->ext.close->err, code);
11971 break;
11972
11973 case EXEC_BACKSPACE:
11974 case EXEC_ENDFILE:
11975 case EXEC_REWIND:
11976 case EXEC_FLUSH:
11977 if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
11978 break;
11979
11980 resolve_branch (code->ext.filepos->err, code);
11981 break;
11982
11983 case EXEC_INQUIRE:
11984 if (!gfc_resolve_inquire (code->ext.inquire))
11985 break;
11986
11987 resolve_branch (code->ext.inquire->err, code);
11988 break;
11989
11990 case EXEC_IOLENGTH:
11991 gcc_assert (code->ext.inquire != NULL);
11992 if (!gfc_resolve_inquire (code->ext.inquire))
11993 break;
11994
11995 resolve_branch (code->ext.inquire->err, code);
11996 break;
11997
11998 case EXEC_WAIT:
11999 if (!gfc_resolve_wait (code->ext.wait))
12000 break;
12001
12002 resolve_branch (code->ext.wait->err, code);
12003 resolve_branch (code->ext.wait->end, code);
12004 resolve_branch (code->ext.wait->eor, code);
12005 break;
12006
12007 case EXEC_READ:
12008 case EXEC_WRITE:
12009 if (!gfc_resolve_dt (code->ext.dt, &code->loc))
12010 break;
12011
12012 resolve_branch (code->ext.dt->err, code);
12013 resolve_branch (code->ext.dt->end, code);
12014 resolve_branch (code->ext.dt->eor, code);
12015 break;
12016
12017 case EXEC_TRANSFER:
12018 resolve_transfer (code);
12019 break;
12020
12021 case EXEC_DO_CONCURRENT:
12022 case EXEC_FORALL:
12023 resolve_forall_iterators (code->ext.forall_iterator);
12024
12025 if (code->expr1 != NULL
12026 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
12027 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
12028 "expression", &code->expr1->where);
12029 break;
12030
12031 case EXEC_OACC_PARALLEL_LOOP:
12032 case EXEC_OACC_PARALLEL:
12033 case EXEC_OACC_KERNELS_LOOP:
12034 case EXEC_OACC_KERNELS:
12035 case EXEC_OACC_SERIAL_LOOP:
12036 case EXEC_OACC_SERIAL:
12037 case EXEC_OACC_DATA:
12038 case EXEC_OACC_HOST_DATA:
12039 case EXEC_OACC_LOOP:
12040 case EXEC_OACC_UPDATE:
12041 case EXEC_OACC_WAIT:
12042 case EXEC_OACC_CACHE:
12043 case EXEC_OACC_ENTER_DATA:
12044 case EXEC_OACC_EXIT_DATA:
12045 case EXEC_OACC_ATOMIC:
12046 case EXEC_OACC_DECLARE:
12047 gfc_resolve_oacc_directive (code, ns);
12048 break;
12049
12050 case EXEC_OMP_ATOMIC:
12051 case EXEC_OMP_BARRIER:
12052 case EXEC_OMP_CANCEL:
12053 case EXEC_OMP_CANCELLATION_POINT:
12054 case EXEC_OMP_CRITICAL:
12055 case EXEC_OMP_FLUSH:
12056 case EXEC_OMP_DISTRIBUTE:
12057 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
12058 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
12059 case EXEC_OMP_DISTRIBUTE_SIMD:
12060 case EXEC_OMP_DO:
12061 case EXEC_OMP_DO_SIMD:
12062 case EXEC_OMP_MASTER:
12063 case EXEC_OMP_ORDERED:
12064 case EXEC_OMP_SECTIONS:
12065 case EXEC_OMP_SIMD:
12066 case EXEC_OMP_SINGLE:
12067 case EXEC_OMP_TARGET:
12068 case EXEC_OMP_TARGET_DATA:
12069 case EXEC_OMP_TARGET_ENTER_DATA:
12070 case EXEC_OMP_TARGET_EXIT_DATA:
12071 case EXEC_OMP_TARGET_PARALLEL:
12072 case EXEC_OMP_TARGET_PARALLEL_DO:
12073 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
12074 case EXEC_OMP_TARGET_SIMD:
12075 case EXEC_OMP_TARGET_TEAMS:
12076 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
12077 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
12078 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12079 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
12080 case EXEC_OMP_TARGET_UPDATE:
12081 case EXEC_OMP_TASK:
12082 case EXEC_OMP_TASKGROUP:
12083 case EXEC_OMP_TASKLOOP:
12084 case EXEC_OMP_TASKLOOP_SIMD:
12085 case EXEC_OMP_TASKWAIT:
12086 case EXEC_OMP_TASKYIELD:
12087 case EXEC_OMP_TEAMS:
12088 case EXEC_OMP_TEAMS_DISTRIBUTE:
12089 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
12090 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12091 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
12092 case EXEC_OMP_WORKSHARE:
12093 gfc_resolve_omp_directive (code, ns);
12094 break;
12095
12096 case EXEC_OMP_PARALLEL:
12097 case EXEC_OMP_PARALLEL_DO:
12098 case EXEC_OMP_PARALLEL_DO_SIMD:
12099 case EXEC_OMP_PARALLEL_SECTIONS:
12100 case EXEC_OMP_PARALLEL_WORKSHARE:
12101 omp_workshare_save = omp_workshare_flag;
12102 omp_workshare_flag = 0;
12103 gfc_resolve_omp_directive (code, ns);
12104 omp_workshare_flag = omp_workshare_save;
12105 break;
12106
12107 default:
12108 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
12109 }
12110 }
12111
12112 cs_base = frame.prev;
12113 }
12114
12115
12116 /* Resolve initial values and make sure they are compatible with
12117 the variable. */
12118
12119 static void
12120 resolve_values (gfc_symbol *sym)
12121 {
12122 bool t;
12123
12124 if (sym->value == NULL)
12125 return;
12126
12127 if (sym->value->expr_type == EXPR_STRUCTURE)
12128 t= resolve_structure_cons (sym->value, 1);
12129 else
12130 t = gfc_resolve_expr (sym->value);
12131
12132 if (!t)
12133 return;
12134
12135 gfc_check_assign_symbol (sym, NULL, sym->value);
12136 }
12137
12138
12139 /* Verify any BIND(C) derived types in the namespace so we can report errors
12140 for them once, rather than for each variable declared of that type. */
12141
12142 static void
12143 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
12144 {
12145 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
12146 && derived_sym->attr.is_bind_c == 1)
12147 verify_bind_c_derived_type (derived_sym);
12148
12149 return;
12150 }
12151
12152
12153 /* Check the interfaces of DTIO procedures associated with derived
12154 type 'sym'. These procedures can either have typebound bindings or
12155 can appear in DTIO generic interfaces. */
12156
12157 static void
12158 gfc_verify_DTIO_procedures (gfc_symbol *sym)
12159 {
12160 if (!sym || sym->attr.flavor != FL_DERIVED)
12161 return;
12162
12163 gfc_check_dtio_interfaces (sym);
12164
12165 return;
12166 }
12167
12168 /* Verify that any binding labels used in a given namespace do not collide
12169 with the names or binding labels of any global symbols. Multiple INTERFACE
12170 for the same procedure are permitted. */
12171
12172 static void
12173 gfc_verify_binding_labels (gfc_symbol *sym)
12174 {
12175 gfc_gsymbol *gsym;
12176 const char *module;
12177
12178 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
12179 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
12180 return;
12181
12182 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
12183
12184 if (sym->module)
12185 module = sym->module;
12186 else if (sym->ns && sym->ns->proc_name
12187 && sym->ns->proc_name->attr.flavor == FL_MODULE)
12188 module = sym->ns->proc_name->name;
12189 else if (sym->ns && sym->ns->parent
12190 && sym->ns && sym->ns->parent->proc_name
12191 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12192 module = sym->ns->parent->proc_name->name;
12193 else
12194 module = NULL;
12195
12196 if (!gsym
12197 || (!gsym->defined
12198 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
12199 {
12200 if (!gsym)
12201 gsym = gfc_get_gsymbol (sym->binding_label, true);
12202 gsym->where = sym->declared_at;
12203 gsym->sym_name = sym->name;
12204 gsym->binding_label = sym->binding_label;
12205 gsym->ns = sym->ns;
12206 gsym->mod_name = module;
12207 if (sym->attr.function)
12208 gsym->type = GSYM_FUNCTION;
12209 else if (sym->attr.subroutine)
12210 gsym->type = GSYM_SUBROUTINE;
12211 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
12212 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
12213 return;
12214 }
12215
12216 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
12217 {
12218 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
12219 "identifier as entity at %L", sym->name,
12220 sym->binding_label, &sym->declared_at, &gsym->where);
12221 /* Clear the binding label to prevent checking multiple times. */
12222 sym->binding_label = NULL;
12223 return;
12224 }
12225
12226 if (sym->attr.flavor == FL_VARIABLE && module
12227 && (strcmp (module, gsym->mod_name) != 0
12228 || strcmp (sym->name, gsym->sym_name) != 0))
12229 {
12230 /* This can only happen if the variable is defined in a module - if it
12231 isn't the same module, reject it. */
12232 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
12233 "uses the same global identifier as entity at %L from module %qs",
12234 sym->name, module, sym->binding_label,
12235 &sym->declared_at, &gsym->where, gsym->mod_name);
12236 sym->binding_label = NULL;
12237 return;
12238 }
12239
12240 if ((sym->attr.function || sym->attr.subroutine)
12241 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
12242 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
12243 && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
12244 && (module != gsym->mod_name
12245 || strcmp (gsym->sym_name, sym->name) != 0
12246 || (module && strcmp (module, gsym->mod_name) != 0)))
12247 {
12248 /* Print an error if the procedure is defined multiple times; we have to
12249 exclude references to the same procedure via module association or
12250 multiple checks for the same procedure. */
12251 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
12252 "global identifier as entity at %L", sym->name,
12253 sym->binding_label, &sym->declared_at, &gsym->where);
12254 sym->binding_label = NULL;
12255 }
12256 }
12257
12258
12259 /* Resolve an index expression. */
12260
12261 static bool
12262 resolve_index_expr (gfc_expr *e)
12263 {
12264 if (!gfc_resolve_expr (e))
12265 return false;
12266
12267 if (!gfc_simplify_expr (e, 0))
12268 return false;
12269
12270 if (!gfc_specification_expr (e))
12271 return false;
12272
12273 return true;
12274 }
12275
12276
12277 /* Resolve a charlen structure. */
12278
12279 static bool
12280 resolve_charlen (gfc_charlen *cl)
12281 {
12282 int k;
12283 bool saved_specification_expr;
12284
12285 if (cl->resolved)
12286 return true;
12287
12288 cl->resolved = 1;
12289 saved_specification_expr = specification_expr;
12290 specification_expr = true;
12291
12292 if (cl->length_from_typespec)
12293 {
12294 if (!gfc_resolve_expr (cl->length))
12295 {
12296 specification_expr = saved_specification_expr;
12297 return false;
12298 }
12299
12300 if (!gfc_simplify_expr (cl->length, 0))
12301 {
12302 specification_expr = saved_specification_expr;
12303 return false;
12304 }
12305
12306 /* cl->length has been resolved. It should have an integer type. */
12307 if (cl->length->ts.type != BT_INTEGER)
12308 {
12309 gfc_error ("Scalar INTEGER expression expected at %L",
12310 &cl->length->where);
12311 return false;
12312 }
12313 }
12314 else
12315 {
12316 if (!resolve_index_expr (cl->length))
12317 {
12318 specification_expr = saved_specification_expr;
12319 return false;
12320 }
12321 }
12322
12323 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
12324 a negative value, the length of character entities declared is zero. */
12325 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12326 && mpz_sgn (cl->length->value.integer) < 0)
12327 gfc_replace_expr (cl->length,
12328 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
12329
12330 /* Check that the character length is not too large. */
12331 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
12332 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12333 && cl->length->ts.type == BT_INTEGER
12334 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
12335 {
12336 gfc_error ("String length at %L is too large", &cl->length->where);
12337 specification_expr = saved_specification_expr;
12338 return false;
12339 }
12340
12341 specification_expr = saved_specification_expr;
12342 return true;
12343 }
12344
12345
12346 /* Test for non-constant shape arrays. */
12347
12348 static bool
12349 is_non_constant_shape_array (gfc_symbol *sym)
12350 {
12351 gfc_expr *e;
12352 int i;
12353 bool not_constant;
12354
12355 not_constant = false;
12356 if (sym->as != NULL)
12357 {
12358 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
12359 has not been simplified; parameter array references. Do the
12360 simplification now. */
12361 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
12362 {
12363 if (i == GFC_MAX_DIMENSIONS)
12364 break;
12365
12366 e = sym->as->lower[i];
12367 if (e && (!resolve_index_expr(e)
12368 || !gfc_is_constant_expr (e)))
12369 not_constant = true;
12370 e = sym->as->upper[i];
12371 if (e && (!resolve_index_expr(e)
12372 || !gfc_is_constant_expr (e)))
12373 not_constant = true;
12374 }
12375 }
12376 return not_constant;
12377 }
12378
12379 /* Given a symbol and an initialization expression, add code to initialize
12380 the symbol to the function entry. */
12381 static void
12382 build_init_assign (gfc_symbol *sym, gfc_expr *init)
12383 {
12384 gfc_expr *lval;
12385 gfc_code *init_st;
12386 gfc_namespace *ns = sym->ns;
12387
12388 /* Search for the function namespace if this is a contained
12389 function without an explicit result. */
12390 if (sym->attr.function && sym == sym->result
12391 && sym->name != sym->ns->proc_name->name)
12392 {
12393 ns = ns->contained;
12394 for (;ns; ns = ns->sibling)
12395 if (strcmp (ns->proc_name->name, sym->name) == 0)
12396 break;
12397 }
12398
12399 if (ns == NULL)
12400 {
12401 gfc_free_expr (init);
12402 return;
12403 }
12404
12405 /* Build an l-value expression for the result. */
12406 lval = gfc_lval_expr_from_sym (sym);
12407
12408 /* Add the code at scope entry. */
12409 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
12410 init_st->next = ns->code;
12411 ns->code = init_st;
12412
12413 /* Assign the default initializer to the l-value. */
12414 init_st->loc = sym->declared_at;
12415 init_st->expr1 = lval;
12416 init_st->expr2 = init;
12417 }
12418
12419
12420 /* Whether or not we can generate a default initializer for a symbol. */
12421
12422 static bool
12423 can_generate_init (gfc_symbol *sym)
12424 {
12425 symbol_attribute *a;
12426 if (!sym)
12427 return false;
12428 a = &sym->attr;
12429
12430 /* These symbols should never have a default initialization. */
12431 return !(
12432 a->allocatable
12433 || a->external
12434 || a->pointer
12435 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
12436 && (CLASS_DATA (sym)->attr.class_pointer
12437 || CLASS_DATA (sym)->attr.proc_pointer))
12438 || a->in_equivalence
12439 || a->in_common
12440 || a->data
12441 || sym->module
12442 || a->cray_pointee
12443 || a->cray_pointer
12444 || sym->assoc
12445 || (!a->referenced && !a->result)
12446 || (a->dummy && a->intent != INTENT_OUT)
12447 || (a->function && sym != sym->result)
12448 );
12449 }
12450
12451
12452 /* Assign the default initializer to a derived type variable or result. */
12453
12454 static void
12455 apply_default_init (gfc_symbol *sym)
12456 {
12457 gfc_expr *init = NULL;
12458
12459 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12460 return;
12461
12462 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
12463 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12464
12465 if (init == NULL && sym->ts.type != BT_CLASS)
12466 return;
12467
12468 build_init_assign (sym, init);
12469 sym->attr.referenced = 1;
12470 }
12471
12472
12473 /* Build an initializer for a local. Returns null if the symbol should not have
12474 a default initialization. */
12475
12476 static gfc_expr *
12477 build_default_init_expr (gfc_symbol *sym)
12478 {
12479 /* These symbols should never have a default initialization. */
12480 if (sym->attr.allocatable
12481 || sym->attr.external
12482 || sym->attr.dummy
12483 || sym->attr.pointer
12484 || sym->attr.in_equivalence
12485 || sym->attr.in_common
12486 || sym->attr.data
12487 || sym->module
12488 || sym->attr.cray_pointee
12489 || sym->attr.cray_pointer
12490 || sym->assoc)
12491 return NULL;
12492
12493 /* Get the appropriate init expression. */
12494 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
12495 }
12496
12497 /* Add an initialization expression to a local variable. */
12498 static void
12499 apply_default_init_local (gfc_symbol *sym)
12500 {
12501 gfc_expr *init = NULL;
12502
12503 /* The symbol should be a variable or a function return value. */
12504 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12505 || (sym->attr.function && sym->result != sym))
12506 return;
12507
12508 /* Try to build the initializer expression. If we can't initialize
12509 this symbol, then init will be NULL. */
12510 init = build_default_init_expr (sym);
12511 if (init == NULL)
12512 return;
12513
12514 /* For saved variables, we don't want to add an initializer at function
12515 entry, so we just add a static initializer. Note that automatic variables
12516 are stack allocated even with -fno-automatic; we have also to exclude
12517 result variable, which are also nonstatic. */
12518 if (!sym->attr.automatic
12519 && (sym->attr.save || sym->ns->save_all
12520 || (flag_max_stack_var_size == 0 && !sym->attr.result
12521 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
12522 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
12523 {
12524 /* Don't clobber an existing initializer! */
12525 gcc_assert (sym->value == NULL);
12526 sym->value = init;
12527 return;
12528 }
12529
12530 build_init_assign (sym, init);
12531 }
12532
12533
12534 /* Resolution of common features of flavors variable and procedure. */
12535
12536 static bool
12537 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
12538 {
12539 gfc_array_spec *as;
12540
12541 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12542 as = CLASS_DATA (sym)->as;
12543 else
12544 as = sym->as;
12545
12546 /* Constraints on deferred shape variable. */
12547 if (as == NULL || as->type != AS_DEFERRED)
12548 {
12549 bool pointer, allocatable, dimension;
12550
12551 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12552 {
12553 pointer = CLASS_DATA (sym)->attr.class_pointer;
12554 allocatable = CLASS_DATA (sym)->attr.allocatable;
12555 dimension = CLASS_DATA (sym)->attr.dimension;
12556 }
12557 else
12558 {
12559 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
12560 allocatable = sym->attr.allocatable;
12561 dimension = sym->attr.dimension;
12562 }
12563
12564 if (allocatable)
12565 {
12566 if (dimension && as->type != AS_ASSUMED_RANK)
12567 {
12568 gfc_error ("Allocatable array %qs at %L must have a deferred "
12569 "shape or assumed rank", sym->name, &sym->declared_at);
12570 return false;
12571 }
12572 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
12573 "%qs at %L may not be ALLOCATABLE",
12574 sym->name, &sym->declared_at))
12575 return false;
12576 }
12577
12578 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
12579 {
12580 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
12581 "assumed rank", sym->name, &sym->declared_at);
12582 return false;
12583 }
12584 }
12585 else
12586 {
12587 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
12588 && sym->ts.type != BT_CLASS && !sym->assoc)
12589 {
12590 gfc_error ("Array %qs at %L cannot have a deferred shape",
12591 sym->name, &sym->declared_at);
12592 return false;
12593 }
12594 }
12595
12596 /* Constraints on polymorphic variables. */
12597 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
12598 {
12599 /* F03:C502. */
12600 if (sym->attr.class_ok
12601 && !sym->attr.select_type_temporary
12602 && !UNLIMITED_POLY (sym)
12603 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
12604 {
12605 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
12606 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
12607 &sym->declared_at);
12608 return false;
12609 }
12610
12611 /* F03:C509. */
12612 /* Assume that use associated symbols were checked in the module ns.
12613 Class-variables that are associate-names are also something special
12614 and excepted from the test. */
12615 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
12616 {
12617 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
12618 "or pointer", sym->name, &sym->declared_at);
12619 return false;
12620 }
12621 }
12622
12623 return true;
12624 }
12625
12626
12627 /* Additional checks for symbols with flavor variable and derived
12628 type. To be called from resolve_fl_variable. */
12629
12630 static bool
12631 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12632 {
12633 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12634
12635 /* Check to see if a derived type is blocked from being host
12636 associated by the presence of another class I symbol in the same
12637 namespace. 14.6.1.3 of the standard and the discussion on
12638 comp.lang.fortran. */
12639 if (sym->ns != sym->ts.u.derived->ns
12640 && !sym->ts.u.derived->attr.use_assoc
12641 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12642 {
12643 gfc_symbol *s;
12644 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12645 if (s && s->attr.generic)
12646 s = gfc_find_dt_in_generic (s);
12647 if (s && !gfc_fl_struct (s->attr.flavor))
12648 {
12649 gfc_error ("The type %qs cannot be host associated at %L "
12650 "because it is blocked by an incompatible object "
12651 "of the same name declared at %L",
12652 sym->ts.u.derived->name, &sym->declared_at,
12653 &s->declared_at);
12654 return false;
12655 }
12656 }
12657
12658 /* 4th constraint in section 11.3: "If an object of a type for which
12659 component-initialization is specified (R429) appears in the
12660 specification-part of a module and does not have the ALLOCATABLE
12661 or POINTER attribute, the object shall have the SAVE attribute."
12662
12663 The check for initializers is performed with
12664 gfc_has_default_initializer because gfc_default_initializer generates
12665 a hidden default for allocatable components. */
12666 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12667 && sym->ns->proc_name->attr.flavor == FL_MODULE
12668 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12669 && !sym->attr.pointer && !sym->attr.allocatable
12670 && gfc_has_default_initializer (sym->ts.u.derived)
12671 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12672 "%qs at %L, needed due to the default "
12673 "initialization", sym->name, &sym->declared_at))
12674 return false;
12675
12676 /* Assign default initializer. */
12677 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12678 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12679 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12680
12681 return true;
12682 }
12683
12684
12685 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12686 except in the declaration of an entity or component that has the POINTER
12687 or ALLOCATABLE attribute. */
12688
12689 static bool
12690 deferred_requirements (gfc_symbol *sym)
12691 {
12692 if (sym->ts.deferred
12693 && !(sym->attr.pointer
12694 || sym->attr.allocatable
12695 || sym->attr.associate_var
12696 || sym->attr.omp_udr_artificial_var))
12697 {
12698 /* If a function has a result variable, only check the variable. */
12699 if (sym->result && sym->name != sym->result->name)
12700 return true;
12701
12702 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12703 "requires either the POINTER or ALLOCATABLE attribute",
12704 sym->name, &sym->declared_at);
12705 return false;
12706 }
12707 return true;
12708 }
12709
12710
12711 /* Resolve symbols with flavor variable. */
12712
12713 static bool
12714 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12715 {
12716 const char *auto_save_msg = "Automatic object %qs at %L cannot have the "
12717 "SAVE attribute";
12718
12719 if (!resolve_fl_var_and_proc (sym, mp_flag))
12720 return false;
12721
12722 /* Set this flag to check that variables are parameters of all entries.
12723 This check is effected by the call to gfc_resolve_expr through
12724 is_non_constant_shape_array. */
12725 bool saved_specification_expr = specification_expr;
12726 specification_expr = true;
12727
12728 if (sym->ns->proc_name
12729 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12730 || sym->ns->proc_name->attr.is_main_program)
12731 && !sym->attr.use_assoc
12732 && !sym->attr.allocatable
12733 && !sym->attr.pointer
12734 && is_non_constant_shape_array (sym))
12735 {
12736 /* F08:C541. The shape of an array defined in a main program or module
12737 * needs to be constant. */
12738 gfc_error ("The module or main program array %qs at %L must "
12739 "have constant shape", sym->name, &sym->declared_at);
12740 specification_expr = saved_specification_expr;
12741 return false;
12742 }
12743
12744 /* Constraints on deferred type parameter. */
12745 if (!deferred_requirements (sym))
12746 return false;
12747
12748 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12749 {
12750 /* Make sure that character string variables with assumed length are
12751 dummy arguments. */
12752 gfc_expr *e = NULL;
12753
12754 if (sym->ts.u.cl)
12755 e = sym->ts.u.cl->length;
12756 else
12757 return false;
12758
12759 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12760 && !sym->ts.deferred && !sym->attr.select_type_temporary
12761 && !sym->attr.omp_udr_artificial_var)
12762 {
12763 gfc_error ("Entity with assumed character length at %L must be a "
12764 "dummy argument or a PARAMETER", &sym->declared_at);
12765 specification_expr = saved_specification_expr;
12766 return false;
12767 }
12768
12769 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12770 {
12771 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12772 specification_expr = saved_specification_expr;
12773 return false;
12774 }
12775
12776 if (!gfc_is_constant_expr (e)
12777 && !(e->expr_type == EXPR_VARIABLE
12778 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12779 {
12780 if (!sym->attr.use_assoc && sym->ns->proc_name
12781 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12782 || sym->ns->proc_name->attr.is_main_program))
12783 {
12784 gfc_error ("%qs at %L must have constant character length "
12785 "in this context", sym->name, &sym->declared_at);
12786 specification_expr = saved_specification_expr;
12787 return false;
12788 }
12789 if (sym->attr.in_common)
12790 {
12791 gfc_error ("COMMON variable %qs at %L must have constant "
12792 "character length", sym->name, &sym->declared_at);
12793 specification_expr = saved_specification_expr;
12794 return false;
12795 }
12796 }
12797 }
12798
12799 if (sym->value == NULL && sym->attr.referenced)
12800 apply_default_init_local (sym); /* Try to apply a default initialization. */
12801
12802 /* Determine if the symbol may not have an initializer. */
12803 int no_init_flag = 0, automatic_flag = 0;
12804 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12805 || sym->attr.intrinsic || sym->attr.result)
12806 no_init_flag = 1;
12807 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12808 && is_non_constant_shape_array (sym))
12809 {
12810 no_init_flag = automatic_flag = 1;
12811
12812 /* Also, they must not have the SAVE attribute.
12813 SAVE_IMPLICIT is checked below. */
12814 if (sym->as && sym->attr.codimension)
12815 {
12816 int corank = sym->as->corank;
12817 sym->as->corank = 0;
12818 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12819 sym->as->corank = corank;
12820 }
12821 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12822 {
12823 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12824 specification_expr = saved_specification_expr;
12825 return false;
12826 }
12827 }
12828
12829 /* Ensure that any initializer is simplified. */
12830 if (sym->value)
12831 gfc_simplify_expr (sym->value, 1);
12832
12833 /* Reject illegal initializers. */
12834 if (!sym->mark && sym->value)
12835 {
12836 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12837 && CLASS_DATA (sym)->attr.allocatable))
12838 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12839 sym->name, &sym->declared_at);
12840 else if (sym->attr.external)
12841 gfc_error ("External %qs at %L cannot have an initializer",
12842 sym->name, &sym->declared_at);
12843 else if (sym->attr.dummy
12844 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12845 gfc_error ("Dummy %qs at %L cannot have an initializer",
12846 sym->name, &sym->declared_at);
12847 else if (sym->attr.intrinsic)
12848 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12849 sym->name, &sym->declared_at);
12850 else if (sym->attr.result)
12851 gfc_error ("Function result %qs at %L cannot have an initializer",
12852 sym->name, &sym->declared_at);
12853 else if (automatic_flag)
12854 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12855 sym->name, &sym->declared_at);
12856 else
12857 goto no_init_error;
12858 specification_expr = saved_specification_expr;
12859 return false;
12860 }
12861
12862 no_init_error:
12863 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12864 {
12865 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12866 specification_expr = saved_specification_expr;
12867 return res;
12868 }
12869
12870 specification_expr = saved_specification_expr;
12871 return true;
12872 }
12873
12874
12875 /* Compare the dummy characteristics of a module procedure interface
12876 declaration with the corresponding declaration in a submodule. */
12877 static gfc_formal_arglist *new_formal;
12878 static char errmsg[200];
12879
12880 static void
12881 compare_fsyms (gfc_symbol *sym)
12882 {
12883 gfc_symbol *fsym;
12884
12885 if (sym == NULL || new_formal == NULL)
12886 return;
12887
12888 fsym = new_formal->sym;
12889
12890 if (sym == fsym)
12891 return;
12892
12893 if (strcmp (sym->name, fsym->name) == 0)
12894 {
12895 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12896 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12897 }
12898 }
12899
12900
12901 /* Resolve a procedure. */
12902
12903 static bool
12904 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12905 {
12906 gfc_formal_arglist *arg;
12907
12908 if (sym->attr.function
12909 && !resolve_fl_var_and_proc (sym, mp_flag))
12910 return false;
12911
12912 /* Constraints on deferred type parameter. */
12913 if (!deferred_requirements (sym))
12914 return false;
12915
12916 if (sym->ts.type == BT_CHARACTER)
12917 {
12918 gfc_charlen *cl = sym->ts.u.cl;
12919
12920 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12921 && !resolve_charlen (cl))
12922 return false;
12923
12924 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12925 && sym->attr.proc == PROC_ST_FUNCTION)
12926 {
12927 gfc_error ("Character-valued statement function %qs at %L must "
12928 "have constant length", sym->name, &sym->declared_at);
12929 return false;
12930 }
12931 }
12932
12933 /* Ensure that derived type for are not of a private type. Internal
12934 module procedures are excluded by 2.2.3.3 - i.e., they are not
12935 externally accessible and can access all the objects accessible in
12936 the host. */
12937 if (!(sym->ns->parent && sym->ns->parent->proc_name
12938 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12939 && gfc_check_symbol_access (sym))
12940 {
12941 gfc_interface *iface;
12942
12943 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12944 {
12945 if (arg->sym
12946 && arg->sym->ts.type == BT_DERIVED
12947 && !arg->sym->ts.u.derived->attr.use_assoc
12948 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12949 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
12950 "and cannot be a dummy argument"
12951 " of %qs, which is PUBLIC at %L",
12952 arg->sym->name, sym->name,
12953 &sym->declared_at))
12954 {
12955 /* Stop this message from recurring. */
12956 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12957 return false;
12958 }
12959 }
12960
12961 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12962 PRIVATE to the containing module. */
12963 for (iface = sym->generic; iface; iface = iface->next)
12964 {
12965 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
12966 {
12967 if (arg->sym
12968 && arg->sym->ts.type == BT_DERIVED
12969 && !arg->sym->ts.u.derived->attr.use_assoc
12970 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12971 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
12972 "PUBLIC interface %qs at %L "
12973 "takes dummy arguments of %qs which "
12974 "is PRIVATE", iface->sym->name,
12975 sym->name, &iface->sym->declared_at,
12976 gfc_typename(&arg->sym->ts)))
12977 {
12978 /* Stop this message from recurring. */
12979 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12980 return false;
12981 }
12982 }
12983 }
12984 }
12985
12986 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
12987 && !sym->attr.proc_pointer)
12988 {
12989 gfc_error ("Function %qs at %L cannot have an initializer",
12990 sym->name, &sym->declared_at);
12991
12992 /* Make sure no second error is issued for this. */
12993 sym->value->error = 1;
12994 return false;
12995 }
12996
12997 /* An external symbol may not have an initializer because it is taken to be
12998 a procedure. Exception: Procedure Pointers. */
12999 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
13000 {
13001 gfc_error ("External object %qs at %L may not have an initializer",
13002 sym->name, &sym->declared_at);
13003 return false;
13004 }
13005
13006 /* An elemental function is required to return a scalar 12.7.1 */
13007 if (sym->attr.elemental && sym->attr.function
13008 && (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)))
13009 {
13010 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
13011 "result", sym->name, &sym->declared_at);
13012 /* Reset so that the error only occurs once. */
13013 sym->attr.elemental = 0;
13014 return false;
13015 }
13016
13017 if (sym->attr.proc == PROC_ST_FUNCTION
13018 && (sym->attr.allocatable || sym->attr.pointer))
13019 {
13020 gfc_error ("Statement function %qs at %L may not have pointer or "
13021 "allocatable attribute", sym->name, &sym->declared_at);
13022 return false;
13023 }
13024
13025 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
13026 char-len-param shall not be array-valued, pointer-valued, recursive
13027 or pure. ....snip... A character value of * may only be used in the
13028 following ways: (i) Dummy arg of procedure - dummy associates with
13029 actual length; (ii) To declare a named constant; or (iii) External
13030 function - but length must be declared in calling scoping unit. */
13031 if (sym->attr.function
13032 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
13033 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
13034 {
13035 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
13036 || (sym->attr.recursive) || (sym->attr.pure))
13037 {
13038 if (sym->as && sym->as->rank)
13039 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13040 "array-valued", sym->name, &sym->declared_at);
13041
13042 if (sym->attr.pointer)
13043 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13044 "pointer-valued", sym->name, &sym->declared_at);
13045
13046 if (sym->attr.pure)
13047 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13048 "pure", sym->name, &sym->declared_at);
13049
13050 if (sym->attr.recursive)
13051 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13052 "recursive", sym->name, &sym->declared_at);
13053
13054 return false;
13055 }
13056
13057 /* Appendix B.2 of the standard. Contained functions give an
13058 error anyway. Deferred character length is an F2003 feature.
13059 Don't warn on intrinsic conversion functions, which start
13060 with two underscores. */
13061 if (!sym->attr.contained && !sym->ts.deferred
13062 && (sym->name[0] != '_' || sym->name[1] != '_'))
13063 gfc_notify_std (GFC_STD_F95_OBS,
13064 "CHARACTER(*) function %qs at %L",
13065 sym->name, &sym->declared_at);
13066 }
13067
13068 /* F2008, C1218. */
13069 if (sym->attr.elemental)
13070 {
13071 if (sym->attr.proc_pointer)
13072 {
13073 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
13074 sym->name, &sym->declared_at);
13075 return false;
13076 }
13077 if (sym->attr.dummy)
13078 {
13079 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
13080 sym->name, &sym->declared_at);
13081 return false;
13082 }
13083 }
13084
13085 /* F2018, C15100: "The result of an elemental function shall be scalar,
13086 and shall not have the POINTER or ALLOCATABLE attribute." The scalar
13087 pointer is tested and caught elsewhere. */
13088 if (sym->attr.elemental && sym->result
13089 && (sym->result->attr.allocatable || sym->result->attr.pointer))
13090 {
13091 gfc_error ("Function result variable %qs at %L of elemental "
13092 "function %qs shall not have an ALLOCATABLE or POINTER "
13093 "attribute", sym->result->name,
13094 &sym->result->declared_at, sym->name);
13095 return false;
13096 }
13097
13098 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
13099 {
13100 gfc_formal_arglist *curr_arg;
13101 int has_non_interop_arg = 0;
13102
13103 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
13104 sym->common_block))
13105 {
13106 /* Clear these to prevent looking at them again if there was an
13107 error. */
13108 sym->attr.is_bind_c = 0;
13109 sym->attr.is_c_interop = 0;
13110 sym->ts.is_c_interop = 0;
13111 }
13112 else
13113 {
13114 /* So far, no errors have been found. */
13115 sym->attr.is_c_interop = 1;
13116 sym->ts.is_c_interop = 1;
13117 }
13118
13119 curr_arg = gfc_sym_get_dummy_args (sym);
13120 while (curr_arg != NULL)
13121 {
13122 /* Skip implicitly typed dummy args here. */
13123 if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
13124 if (!gfc_verify_c_interop_param (curr_arg->sym))
13125 /* If something is found to fail, record the fact so we
13126 can mark the symbol for the procedure as not being
13127 BIND(C) to try and prevent multiple errors being
13128 reported. */
13129 has_non_interop_arg = 1;
13130
13131 curr_arg = curr_arg->next;
13132 }
13133
13134 /* See if any of the arguments were not interoperable and if so, clear
13135 the procedure symbol to prevent duplicate error messages. */
13136 if (has_non_interop_arg != 0)
13137 {
13138 sym->attr.is_c_interop = 0;
13139 sym->ts.is_c_interop = 0;
13140 sym->attr.is_bind_c = 0;
13141 }
13142 }
13143
13144 if (!sym->attr.proc_pointer)
13145 {
13146 if (sym->attr.save == SAVE_EXPLICIT)
13147 {
13148 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
13149 "in %qs at %L", sym->name, &sym->declared_at);
13150 return false;
13151 }
13152 if (sym->attr.intent)
13153 {
13154 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
13155 "in %qs at %L", sym->name, &sym->declared_at);
13156 return false;
13157 }
13158 if (sym->attr.subroutine && sym->attr.result)
13159 {
13160 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
13161 "in %qs at %L", sym->name, &sym->declared_at);
13162 return false;
13163 }
13164 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
13165 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
13166 || sym->attr.contained))
13167 {
13168 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
13169 "in %qs at %L", sym->name, &sym->declared_at);
13170 return false;
13171 }
13172 if (strcmp ("ppr@", sym->name) == 0)
13173 {
13174 gfc_error ("Procedure pointer result %qs at %L "
13175 "is missing the pointer attribute",
13176 sym->ns->proc_name->name, &sym->declared_at);
13177 return false;
13178 }
13179 }
13180
13181 /* Assume that a procedure whose body is not known has references
13182 to external arrays. */
13183 if (sym->attr.if_source != IFSRC_DECL)
13184 sym->attr.array_outer_dependency = 1;
13185
13186 /* Compare the characteristics of a module procedure with the
13187 interface declaration. Ideally this would be done with
13188 gfc_compare_interfaces but, at present, the formal interface
13189 cannot be copied to the ts.interface. */
13190 if (sym->attr.module_procedure
13191 && sym->attr.if_source == IFSRC_DECL)
13192 {
13193 gfc_symbol *iface;
13194 char name[2*GFC_MAX_SYMBOL_LEN + 1];
13195 char *module_name;
13196 char *submodule_name;
13197 strcpy (name, sym->ns->proc_name->name);
13198 module_name = strtok (name, ".");
13199 submodule_name = strtok (NULL, ".");
13200
13201 iface = sym->tlink;
13202 sym->tlink = NULL;
13203
13204 /* Make sure that the result uses the correct charlen for deferred
13205 length results. */
13206 if (iface && sym->result
13207 && iface->ts.type == BT_CHARACTER
13208 && iface->ts.deferred)
13209 sym->result->ts.u.cl = iface->ts.u.cl;
13210
13211 if (iface == NULL)
13212 goto check_formal;
13213
13214 /* Check the procedure characteristics. */
13215 if (sym->attr.elemental != iface->attr.elemental)
13216 {
13217 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
13218 "PROCEDURE at %L and its interface in %s",
13219 &sym->declared_at, module_name);
13220 return false;
13221 }
13222
13223 if (sym->attr.pure != iface->attr.pure)
13224 {
13225 gfc_error ("Mismatch in PURE attribute between MODULE "
13226 "PROCEDURE at %L and its interface in %s",
13227 &sym->declared_at, module_name);
13228 return false;
13229 }
13230
13231 if (sym->attr.recursive != iface->attr.recursive)
13232 {
13233 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
13234 "PROCEDURE at %L and its interface in %s",
13235 &sym->declared_at, module_name);
13236 return false;
13237 }
13238
13239 /* Check the result characteristics. */
13240 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
13241 {
13242 gfc_error ("%s between the MODULE PROCEDURE declaration "
13243 "in MODULE %qs and the declaration at %L in "
13244 "(SUB)MODULE %qs",
13245 errmsg, module_name, &sym->declared_at,
13246 submodule_name ? submodule_name : module_name);
13247 return false;
13248 }
13249
13250 check_formal:
13251 /* Check the characteristics of the formal arguments. */
13252 if (sym->formal && sym->formal_ns)
13253 {
13254 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
13255 {
13256 new_formal = arg;
13257 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
13258 }
13259 }
13260 }
13261 return true;
13262 }
13263
13264
13265 /* Resolve a list of finalizer procedures. That is, after they have hopefully
13266 been defined and we now know their defined arguments, check that they fulfill
13267 the requirements of the standard for procedures used as finalizers. */
13268
13269 static bool
13270 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
13271 {
13272 gfc_finalizer* list;
13273 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
13274 bool result = true;
13275 bool seen_scalar = false;
13276 gfc_symbol *vtab;
13277 gfc_component *c;
13278 gfc_symbol *parent = gfc_get_derived_super_type (derived);
13279
13280 if (parent)
13281 gfc_resolve_finalizers (parent, finalizable);
13282
13283 /* Ensure that derived-type components have a their finalizers resolved. */
13284 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
13285 for (c = derived->components; c; c = c->next)
13286 if (c->ts.type == BT_DERIVED
13287 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
13288 {
13289 bool has_final2 = false;
13290 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
13291 return false; /* Error. */
13292 has_final = has_final || has_final2;
13293 }
13294 /* Return early if not finalizable. */
13295 if (!has_final)
13296 {
13297 if (finalizable)
13298 *finalizable = false;
13299 return true;
13300 }
13301
13302 /* Walk over the list of finalizer-procedures, check them, and if any one
13303 does not fit in with the standard's definition, print an error and remove
13304 it from the list. */
13305 prev_link = &derived->f2k_derived->finalizers;
13306 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
13307 {
13308 gfc_formal_arglist *dummy_args;
13309 gfc_symbol* arg;
13310 gfc_finalizer* i;
13311 int my_rank;
13312
13313 /* Skip this finalizer if we already resolved it. */
13314 if (list->proc_tree)
13315 {
13316 if (list->proc_tree->n.sym->formal->sym->as == NULL
13317 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
13318 seen_scalar = true;
13319 prev_link = &(list->next);
13320 continue;
13321 }
13322
13323 /* Check this exists and is a SUBROUTINE. */
13324 if (!list->proc_sym->attr.subroutine)
13325 {
13326 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
13327 list->proc_sym->name, &list->where);
13328 goto error;
13329 }
13330
13331 /* We should have exactly one argument. */
13332 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
13333 if (!dummy_args || dummy_args->next)
13334 {
13335 gfc_error ("FINAL procedure at %L must have exactly one argument",
13336 &list->where);
13337 goto error;
13338 }
13339 arg = dummy_args->sym;
13340
13341 /* This argument must be of our type. */
13342 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
13343 {
13344 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
13345 &arg->declared_at, derived->name);
13346 goto error;
13347 }
13348
13349 /* It must neither be a pointer nor allocatable nor optional. */
13350 if (arg->attr.pointer)
13351 {
13352 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
13353 &arg->declared_at);
13354 goto error;
13355 }
13356 if (arg->attr.allocatable)
13357 {
13358 gfc_error ("Argument of FINAL procedure at %L must not be"
13359 " ALLOCATABLE", &arg->declared_at);
13360 goto error;
13361 }
13362 if (arg->attr.optional)
13363 {
13364 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
13365 &arg->declared_at);
13366 goto error;
13367 }
13368
13369 /* It must not be INTENT(OUT). */
13370 if (arg->attr.intent == INTENT_OUT)
13371 {
13372 gfc_error ("Argument of FINAL procedure at %L must not be"
13373 " INTENT(OUT)", &arg->declared_at);
13374 goto error;
13375 }
13376
13377 /* Warn if the procedure is non-scalar and not assumed shape. */
13378 if (warn_surprising && arg->as && arg->as->rank != 0
13379 && arg->as->type != AS_ASSUMED_SHAPE)
13380 gfc_warning (OPT_Wsurprising,
13381 "Non-scalar FINAL procedure at %L should have assumed"
13382 " shape argument", &arg->declared_at);
13383
13384 /* Check that it does not match in kind and rank with a FINAL procedure
13385 defined earlier. To really loop over the *earlier* declarations,
13386 we need to walk the tail of the list as new ones were pushed at the
13387 front. */
13388 /* TODO: Handle kind parameters once they are implemented. */
13389 my_rank = (arg->as ? arg->as->rank : 0);
13390 for (i = list->next; i; i = i->next)
13391 {
13392 gfc_formal_arglist *dummy_args;
13393
13394 /* Argument list might be empty; that is an error signalled earlier,
13395 but we nevertheless continued resolving. */
13396 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
13397 if (dummy_args)
13398 {
13399 gfc_symbol* i_arg = dummy_args->sym;
13400 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
13401 if (i_rank == my_rank)
13402 {
13403 gfc_error ("FINAL procedure %qs declared at %L has the same"
13404 " rank (%d) as %qs",
13405 list->proc_sym->name, &list->where, my_rank,
13406 i->proc_sym->name);
13407 goto error;
13408 }
13409 }
13410 }
13411
13412 /* Is this the/a scalar finalizer procedure? */
13413 if (my_rank == 0)
13414 seen_scalar = true;
13415
13416 /* Find the symtree for this procedure. */
13417 gcc_assert (!list->proc_tree);
13418 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
13419
13420 prev_link = &list->next;
13421 continue;
13422
13423 /* Remove wrong nodes immediately from the list so we don't risk any
13424 troubles in the future when they might fail later expectations. */
13425 error:
13426 i = list;
13427 *prev_link = list->next;
13428 gfc_free_finalizer (i);
13429 result = false;
13430 }
13431
13432 if (result == false)
13433 return false;
13434
13435 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
13436 were nodes in the list, must have been for arrays. It is surely a good
13437 idea to have a scalar version there if there's something to finalize. */
13438 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
13439 gfc_warning (OPT_Wsurprising,
13440 "Only array FINAL procedures declared for derived type %qs"
13441 " defined at %L, suggest also scalar one",
13442 derived->name, &derived->declared_at);
13443
13444 vtab = gfc_find_derived_vtab (derived);
13445 c = vtab->ts.u.derived->components->next->next->next->next->next;
13446 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
13447
13448 if (finalizable)
13449 *finalizable = true;
13450
13451 return true;
13452 }
13453
13454
13455 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
13456
13457 static bool
13458 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
13459 const char* generic_name, locus where)
13460 {
13461 gfc_symbol *sym1, *sym2;
13462 const char *pass1, *pass2;
13463 gfc_formal_arglist *dummy_args;
13464
13465 gcc_assert (t1->specific && t2->specific);
13466 gcc_assert (!t1->specific->is_generic);
13467 gcc_assert (!t2->specific->is_generic);
13468 gcc_assert (t1->is_operator == t2->is_operator);
13469
13470 sym1 = t1->specific->u.specific->n.sym;
13471 sym2 = t2->specific->u.specific->n.sym;
13472
13473 if (sym1 == sym2)
13474 return true;
13475
13476 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
13477 if (sym1->attr.subroutine != sym2->attr.subroutine
13478 || sym1->attr.function != sym2->attr.function)
13479 {
13480 gfc_error ("%qs and %qs cannot be mixed FUNCTION/SUBROUTINE for"
13481 " GENERIC %qs at %L",
13482 sym1->name, sym2->name, generic_name, &where);
13483 return false;
13484 }
13485
13486 /* Determine PASS arguments. */
13487 if (t1->specific->nopass)
13488 pass1 = NULL;
13489 else if (t1->specific->pass_arg)
13490 pass1 = t1->specific->pass_arg;
13491 else
13492 {
13493 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
13494 if (dummy_args)
13495 pass1 = dummy_args->sym->name;
13496 else
13497 pass1 = NULL;
13498 }
13499 if (t2->specific->nopass)
13500 pass2 = NULL;
13501 else if (t2->specific->pass_arg)
13502 pass2 = t2->specific->pass_arg;
13503 else
13504 {
13505 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
13506 if (dummy_args)
13507 pass2 = dummy_args->sym->name;
13508 else
13509 pass2 = NULL;
13510 }
13511
13512 /* Compare the interfaces. */
13513 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
13514 NULL, 0, pass1, pass2))
13515 {
13516 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
13517 sym1->name, sym2->name, generic_name, &where);
13518 return false;
13519 }
13520
13521 return true;
13522 }
13523
13524
13525 /* Worker function for resolving a generic procedure binding; this is used to
13526 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
13527
13528 The difference between those cases is finding possible inherited bindings
13529 that are overridden, as one has to look for them in tb_sym_root,
13530 tb_uop_root or tb_op, respectively. Thus the caller must already find
13531 the super-type and set p->overridden correctly. */
13532
13533 static bool
13534 resolve_tb_generic_targets (gfc_symbol* super_type,
13535 gfc_typebound_proc* p, const char* name)
13536 {
13537 gfc_tbp_generic* target;
13538 gfc_symtree* first_target;
13539 gfc_symtree* inherited;
13540
13541 gcc_assert (p && p->is_generic);
13542
13543 /* Try to find the specific bindings for the symtrees in our target-list. */
13544 gcc_assert (p->u.generic);
13545 for (target = p->u.generic; target; target = target->next)
13546 if (!target->specific)
13547 {
13548 gfc_typebound_proc* overridden_tbp;
13549 gfc_tbp_generic* g;
13550 const char* target_name;
13551
13552 target_name = target->specific_st->name;
13553
13554 /* Defined for this type directly. */
13555 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
13556 {
13557 target->specific = target->specific_st->n.tb;
13558 goto specific_found;
13559 }
13560
13561 /* Look for an inherited specific binding. */
13562 if (super_type)
13563 {
13564 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
13565 true, NULL);
13566
13567 if (inherited)
13568 {
13569 gcc_assert (inherited->n.tb);
13570 target->specific = inherited->n.tb;
13571 goto specific_found;
13572 }
13573 }
13574
13575 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
13576 " at %L", target_name, name, &p->where);
13577 return false;
13578
13579 /* Once we've found the specific binding, check it is not ambiguous with
13580 other specifics already found or inherited for the same GENERIC. */
13581 specific_found:
13582 gcc_assert (target->specific);
13583
13584 /* This must really be a specific binding! */
13585 if (target->specific->is_generic)
13586 {
13587 gfc_error ("GENERIC %qs at %L must target a specific binding,"
13588 " %qs is GENERIC, too", name, &p->where, target_name);
13589 return false;
13590 }
13591
13592 /* Check those already resolved on this type directly. */
13593 for (g = p->u.generic; g; g = g->next)
13594 if (g != target && g->specific
13595 && !check_generic_tbp_ambiguity (target, g, name, p->where))
13596 return false;
13597
13598 /* Check for ambiguity with inherited specific targets. */
13599 for (overridden_tbp = p->overridden; overridden_tbp;
13600 overridden_tbp = overridden_tbp->overridden)
13601 if (overridden_tbp->is_generic)
13602 {
13603 for (g = overridden_tbp->u.generic; g; g = g->next)
13604 {
13605 gcc_assert (g->specific);
13606 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
13607 return false;
13608 }
13609 }
13610 }
13611
13612 /* If we attempt to "overwrite" a specific binding, this is an error. */
13613 if (p->overridden && !p->overridden->is_generic)
13614 {
13615 gfc_error ("GENERIC %qs at %L cannot overwrite specific binding with"
13616 " the same name", name, &p->where);
13617 return false;
13618 }
13619
13620 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
13621 all must have the same attributes here. */
13622 first_target = p->u.generic->specific->u.specific;
13623 gcc_assert (first_target);
13624 p->subroutine = first_target->n.sym->attr.subroutine;
13625 p->function = first_target->n.sym->attr.function;
13626
13627 return true;
13628 }
13629
13630
13631 /* Resolve a GENERIC procedure binding for a derived type. */
13632
13633 static bool
13634 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
13635 {
13636 gfc_symbol* super_type;
13637
13638 /* Find the overridden binding if any. */
13639 st->n.tb->overridden = NULL;
13640 super_type = gfc_get_derived_super_type (derived);
13641 if (super_type)
13642 {
13643 gfc_symtree* overridden;
13644 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
13645 true, NULL);
13646
13647 if (overridden && overridden->n.tb)
13648 st->n.tb->overridden = overridden->n.tb;
13649 }
13650
13651 /* Resolve using worker function. */
13652 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13653 }
13654
13655
13656 /* Retrieve the target-procedure of an operator binding and do some checks in
13657 common for intrinsic and user-defined type-bound operators. */
13658
13659 static gfc_symbol*
13660 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13661 {
13662 gfc_symbol* target_proc;
13663
13664 gcc_assert (target->specific && !target->specific->is_generic);
13665 target_proc = target->specific->u.specific->n.sym;
13666 gcc_assert (target_proc);
13667
13668 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13669 if (target->specific->nopass)
13670 {
13671 gfc_error ("Type-bound operator at %L cannot be NOPASS", &where);
13672 return NULL;
13673 }
13674
13675 return target_proc;
13676 }
13677
13678
13679 /* Resolve a type-bound intrinsic operator. */
13680
13681 static bool
13682 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13683 gfc_typebound_proc* p)
13684 {
13685 gfc_symbol* super_type;
13686 gfc_tbp_generic* target;
13687
13688 /* If there's already an error here, do nothing (but don't fail again). */
13689 if (p->error)
13690 return true;
13691
13692 /* Operators should always be GENERIC bindings. */
13693 gcc_assert (p->is_generic);
13694
13695 /* Look for an overridden binding. */
13696 super_type = gfc_get_derived_super_type (derived);
13697 if (super_type && super_type->f2k_derived)
13698 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13699 op, true, NULL);
13700 else
13701 p->overridden = NULL;
13702
13703 /* Resolve general GENERIC properties using worker function. */
13704 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13705 goto error;
13706
13707 /* Check the targets to be procedures of correct interface. */
13708 for (target = p->u.generic; target; target = target->next)
13709 {
13710 gfc_symbol* target_proc;
13711
13712 target_proc = get_checked_tb_operator_target (target, p->where);
13713 if (!target_proc)
13714 goto error;
13715
13716 if (!gfc_check_operator_interface (target_proc, op, p->where))
13717 goto error;
13718
13719 /* Add target to non-typebound operator list. */
13720 if (!target->specific->deferred && !derived->attr.use_assoc
13721 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13722 {
13723 gfc_interface *head, *intr;
13724
13725 /* Preempt 'gfc_check_new_interface' for submodules, where the
13726 mechanism for handling module procedures winds up resolving
13727 operator interfaces twice and would otherwise cause an error. */
13728 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13729 if (intr->sym == target_proc
13730 && target_proc->attr.used_in_submodule)
13731 return true;
13732
13733 if (!gfc_check_new_interface (derived->ns->op[op],
13734 target_proc, p->where))
13735 return false;
13736 head = derived->ns->op[op];
13737 intr = gfc_get_interface ();
13738 intr->sym = target_proc;
13739 intr->where = p->where;
13740 intr->next = head;
13741 derived->ns->op[op] = intr;
13742 }
13743 }
13744
13745 return true;
13746
13747 error:
13748 p->error = 1;
13749 return false;
13750 }
13751
13752
13753 /* Resolve a type-bound user operator (tree-walker callback). */
13754
13755 static gfc_symbol* resolve_bindings_derived;
13756 static bool resolve_bindings_result;
13757
13758 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13759
13760 static void
13761 resolve_typebound_user_op (gfc_symtree* stree)
13762 {
13763 gfc_symbol* super_type;
13764 gfc_tbp_generic* target;
13765
13766 gcc_assert (stree && stree->n.tb);
13767
13768 if (stree->n.tb->error)
13769 return;
13770
13771 /* Operators should always be GENERIC bindings. */
13772 gcc_assert (stree->n.tb->is_generic);
13773
13774 /* Find overridden procedure, if any. */
13775 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13776 if (super_type && super_type->f2k_derived)
13777 {
13778 gfc_symtree* overridden;
13779 overridden = gfc_find_typebound_user_op (super_type, NULL,
13780 stree->name, true, NULL);
13781
13782 if (overridden && overridden->n.tb)
13783 stree->n.tb->overridden = overridden->n.tb;
13784 }
13785 else
13786 stree->n.tb->overridden = NULL;
13787
13788 /* Resolve basically using worker function. */
13789 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13790 goto error;
13791
13792 /* Check the targets to be functions of correct interface. */
13793 for (target = stree->n.tb->u.generic; target; target = target->next)
13794 {
13795 gfc_symbol* target_proc;
13796
13797 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13798 if (!target_proc)
13799 goto error;
13800
13801 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13802 goto error;
13803 }
13804
13805 return;
13806
13807 error:
13808 resolve_bindings_result = false;
13809 stree->n.tb->error = 1;
13810 }
13811
13812
13813 /* Resolve the type-bound procedures for a derived type. */
13814
13815 static void
13816 resolve_typebound_procedure (gfc_symtree* stree)
13817 {
13818 gfc_symbol* proc;
13819 locus where;
13820 gfc_symbol* me_arg;
13821 gfc_symbol* super_type;
13822 gfc_component* comp;
13823
13824 gcc_assert (stree);
13825
13826 /* Undefined specific symbol from GENERIC target definition. */
13827 if (!stree->n.tb)
13828 return;
13829
13830 if (stree->n.tb->error)
13831 return;
13832
13833 /* If this is a GENERIC binding, use that routine. */
13834 if (stree->n.tb->is_generic)
13835 {
13836 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13837 goto error;
13838 return;
13839 }
13840
13841 /* Get the target-procedure to check it. */
13842 gcc_assert (!stree->n.tb->is_generic);
13843 gcc_assert (stree->n.tb->u.specific);
13844 proc = stree->n.tb->u.specific->n.sym;
13845 where = stree->n.tb->where;
13846
13847 /* Default access should already be resolved from the parser. */
13848 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13849
13850 if (stree->n.tb->deferred)
13851 {
13852 if (!check_proc_interface (proc, &where))
13853 goto error;
13854 }
13855 else
13856 {
13857 /* If proc has not been resolved at this point, proc->name may
13858 actually be a USE associated entity. See PR fortran/89647. */
13859 if (!proc->resolved
13860 && proc->attr.function == 0 && proc->attr.subroutine == 0)
13861 {
13862 gfc_symbol *tmp;
13863 gfc_find_symbol (proc->name, gfc_current_ns->parent, 1, &tmp);
13864 if (tmp && tmp->attr.use_assoc)
13865 {
13866 proc->module = tmp->module;
13867 proc->attr.proc = tmp->attr.proc;
13868 proc->attr.function = tmp->attr.function;
13869 proc->attr.subroutine = tmp->attr.subroutine;
13870 proc->attr.use_assoc = tmp->attr.use_assoc;
13871 proc->ts = tmp->ts;
13872 proc->result = tmp->result;
13873 }
13874 }
13875
13876 /* Check for F08:C465. */
13877 if ((!proc->attr.subroutine && !proc->attr.function)
13878 || (proc->attr.proc != PROC_MODULE
13879 && proc->attr.if_source != IFSRC_IFBODY)
13880 || proc->attr.abstract)
13881 {
13882 gfc_error ("%qs must be a module procedure or an external "
13883 "procedure with an explicit interface at %L",
13884 proc->name, &where);
13885 goto error;
13886 }
13887 }
13888
13889 stree->n.tb->subroutine = proc->attr.subroutine;
13890 stree->n.tb->function = proc->attr.function;
13891
13892 /* Find the super-type of the current derived type. We could do this once and
13893 store in a global if speed is needed, but as long as not I believe this is
13894 more readable and clearer. */
13895 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13896
13897 /* If PASS, resolve and check arguments if not already resolved / loaded
13898 from a .mod file. */
13899 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13900 {
13901 gfc_formal_arglist *dummy_args;
13902
13903 dummy_args = gfc_sym_get_dummy_args (proc);
13904 if (stree->n.tb->pass_arg)
13905 {
13906 gfc_formal_arglist *i;
13907
13908 /* If an explicit passing argument name is given, walk the arg-list
13909 and look for it. */
13910
13911 me_arg = NULL;
13912 stree->n.tb->pass_arg_num = 1;
13913 for (i = dummy_args; i; i = i->next)
13914 {
13915 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13916 {
13917 me_arg = i->sym;
13918 break;
13919 }
13920 ++stree->n.tb->pass_arg_num;
13921 }
13922
13923 if (!me_arg)
13924 {
13925 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13926 " argument %qs",
13927 proc->name, stree->n.tb->pass_arg, &where,
13928 stree->n.tb->pass_arg);
13929 goto error;
13930 }
13931 }
13932 else
13933 {
13934 /* Otherwise, take the first one; there should in fact be at least
13935 one. */
13936 stree->n.tb->pass_arg_num = 1;
13937 if (!dummy_args)
13938 {
13939 gfc_error ("Procedure %qs with PASS at %L must have at"
13940 " least one argument", proc->name, &where);
13941 goto error;
13942 }
13943 me_arg = dummy_args->sym;
13944 }
13945
13946 /* Now check that the argument-type matches and the passed-object
13947 dummy argument is generally fine. */
13948
13949 gcc_assert (me_arg);
13950
13951 if (me_arg->ts.type != BT_CLASS)
13952 {
13953 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13954 " at %L", proc->name, &where);
13955 goto error;
13956 }
13957
13958 if (CLASS_DATA (me_arg)->ts.u.derived
13959 != resolve_bindings_derived)
13960 {
13961 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13962 " the derived-type %qs", me_arg->name, proc->name,
13963 me_arg->name, &where, resolve_bindings_derived->name);
13964 goto error;
13965 }
13966
13967 gcc_assert (me_arg->ts.type == BT_CLASS);
13968 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
13969 {
13970 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13971 " scalar", proc->name, &where);
13972 goto error;
13973 }
13974 if (CLASS_DATA (me_arg)->attr.allocatable)
13975 {
13976 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13977 " be ALLOCATABLE", proc->name, &where);
13978 goto error;
13979 }
13980 if (CLASS_DATA (me_arg)->attr.class_pointer)
13981 {
13982 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13983 " be POINTER", proc->name, &where);
13984 goto error;
13985 }
13986 }
13987
13988 /* If we are extending some type, check that we don't override a procedure
13989 flagged NON_OVERRIDABLE. */
13990 stree->n.tb->overridden = NULL;
13991 if (super_type)
13992 {
13993 gfc_symtree* overridden;
13994 overridden = gfc_find_typebound_proc (super_type, NULL,
13995 stree->name, true, NULL);
13996
13997 if (overridden)
13998 {
13999 if (overridden->n.tb)
14000 stree->n.tb->overridden = overridden->n.tb;
14001
14002 if (!gfc_check_typebound_override (stree, overridden))
14003 goto error;
14004 }
14005 }
14006
14007 /* See if there's a name collision with a component directly in this type. */
14008 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
14009 if (!strcmp (comp->name, stree->name))
14010 {
14011 gfc_error ("Procedure %qs at %L has the same name as a component of"
14012 " %qs",
14013 stree->name, &where, resolve_bindings_derived->name);
14014 goto error;
14015 }
14016
14017 /* Try to find a name collision with an inherited component. */
14018 if (super_type && gfc_find_component (super_type, stree->name, true, true,
14019 NULL))
14020 {
14021 gfc_error ("Procedure %qs at %L has the same name as an inherited"
14022 " component of %qs",
14023 stree->name, &where, resolve_bindings_derived->name);
14024 goto error;
14025 }
14026
14027 stree->n.tb->error = 0;
14028 return;
14029
14030 error:
14031 resolve_bindings_result = false;
14032 stree->n.tb->error = 1;
14033 }
14034
14035
14036 static bool
14037 resolve_typebound_procedures (gfc_symbol* derived)
14038 {
14039 int op;
14040 gfc_symbol* super_type;
14041
14042 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
14043 return true;
14044
14045 super_type = gfc_get_derived_super_type (derived);
14046 if (super_type)
14047 resolve_symbol (super_type);
14048
14049 resolve_bindings_derived = derived;
14050 resolve_bindings_result = true;
14051
14052 if (derived->f2k_derived->tb_sym_root)
14053 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
14054 &resolve_typebound_procedure);
14055
14056 if (derived->f2k_derived->tb_uop_root)
14057 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
14058 &resolve_typebound_user_op);
14059
14060 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
14061 {
14062 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
14063 if (p && !resolve_typebound_intrinsic_op (derived,
14064 (gfc_intrinsic_op)op, p))
14065 resolve_bindings_result = false;
14066 }
14067
14068 return resolve_bindings_result;
14069 }
14070
14071
14072 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
14073 to give all identical derived types the same backend_decl. */
14074 static void
14075 add_dt_to_dt_list (gfc_symbol *derived)
14076 {
14077 if (!derived->dt_next)
14078 {
14079 if (gfc_derived_types)
14080 {
14081 derived->dt_next = gfc_derived_types->dt_next;
14082 gfc_derived_types->dt_next = derived;
14083 }
14084 else
14085 {
14086 derived->dt_next = derived;
14087 }
14088 gfc_derived_types = derived;
14089 }
14090 }
14091
14092
14093 /* Ensure that a derived-type is really not abstract, meaning that every
14094 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
14095
14096 static bool
14097 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
14098 {
14099 if (!st)
14100 return true;
14101
14102 if (!ensure_not_abstract_walker (sub, st->left))
14103 return false;
14104 if (!ensure_not_abstract_walker (sub, st->right))
14105 return false;
14106
14107 if (st->n.tb && st->n.tb->deferred)
14108 {
14109 gfc_symtree* overriding;
14110 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
14111 if (!overriding)
14112 return false;
14113 gcc_assert (overriding->n.tb);
14114 if (overriding->n.tb->deferred)
14115 {
14116 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
14117 " %qs is DEFERRED and not overridden",
14118 sub->name, &sub->declared_at, st->name);
14119 return false;
14120 }
14121 }
14122
14123 return true;
14124 }
14125
14126 static bool
14127 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
14128 {
14129 /* The algorithm used here is to recursively travel up the ancestry of sub
14130 and for each ancestor-type, check all bindings. If any of them is
14131 DEFERRED, look it up starting from sub and see if the found (overriding)
14132 binding is not DEFERRED.
14133 This is not the most efficient way to do this, but it should be ok and is
14134 clearer than something sophisticated. */
14135
14136 gcc_assert (ancestor && !sub->attr.abstract);
14137
14138 if (!ancestor->attr.abstract)
14139 return true;
14140
14141 /* Walk bindings of this ancestor. */
14142 if (ancestor->f2k_derived)
14143 {
14144 bool t;
14145 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
14146 if (!t)
14147 return false;
14148 }
14149
14150 /* Find next ancestor type and recurse on it. */
14151 ancestor = gfc_get_derived_super_type (ancestor);
14152 if (ancestor)
14153 return ensure_not_abstract (sub, ancestor);
14154
14155 return true;
14156 }
14157
14158
14159 /* This check for typebound defined assignments is done recursively
14160 since the order in which derived types are resolved is not always in
14161 order of the declarations. */
14162
14163 static void
14164 check_defined_assignments (gfc_symbol *derived)
14165 {
14166 gfc_component *c;
14167
14168 for (c = derived->components; c; c = c->next)
14169 {
14170 if (!gfc_bt_struct (c->ts.type)
14171 || c->attr.pointer
14172 || c->attr.allocatable
14173 || c->attr.proc_pointer_comp
14174 || c->attr.class_pointer
14175 || c->attr.proc_pointer)
14176 continue;
14177
14178 if (c->ts.u.derived->attr.defined_assign_comp
14179 || (c->ts.u.derived->f2k_derived
14180 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
14181 {
14182 derived->attr.defined_assign_comp = 1;
14183 return;
14184 }
14185
14186 check_defined_assignments (c->ts.u.derived);
14187 if (c->ts.u.derived->attr.defined_assign_comp)
14188 {
14189 derived->attr.defined_assign_comp = 1;
14190 return;
14191 }
14192 }
14193 }
14194
14195
14196 /* Resolve a single component of a derived type or structure. */
14197
14198 static bool
14199 resolve_component (gfc_component *c, gfc_symbol *sym)
14200 {
14201 gfc_symbol *super_type;
14202 symbol_attribute *attr;
14203
14204 if (c->attr.artificial)
14205 return true;
14206
14207 /* Do not allow vtype components to be resolved in nameless namespaces
14208 such as block data because the procedure pointers will cause ICEs
14209 and vtables are not needed in these contexts. */
14210 if (sym->attr.vtype && sym->attr.use_assoc
14211 && sym->ns->proc_name == NULL)
14212 return true;
14213
14214 /* F2008, C442. */
14215 if ((!sym->attr.is_class || c != sym->components)
14216 && c->attr.codimension
14217 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
14218 {
14219 gfc_error ("Coarray component %qs at %L must be allocatable with "
14220 "deferred shape", c->name, &c->loc);
14221 return false;
14222 }
14223
14224 /* F2008, C443. */
14225 if (c->attr.codimension && c->ts.type == BT_DERIVED
14226 && c->ts.u.derived->ts.is_iso_c)
14227 {
14228 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
14229 "shall not be a coarray", c->name, &c->loc);
14230 return false;
14231 }
14232
14233 /* F2008, C444. */
14234 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
14235 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
14236 || c->attr.allocatable))
14237 {
14238 gfc_error ("Component %qs at %L with coarray component "
14239 "shall be a nonpointer, nonallocatable scalar",
14240 c->name, &c->loc);
14241 return false;
14242 }
14243
14244 /* F2008, C448. */
14245 if (c->ts.type == BT_CLASS)
14246 {
14247 if (CLASS_DATA (c))
14248 {
14249 attr = &(CLASS_DATA (c)->attr);
14250
14251 /* Fix up contiguous attribute. */
14252 if (c->attr.contiguous)
14253 attr->contiguous = 1;
14254 }
14255 else
14256 attr = NULL;
14257 }
14258 else
14259 attr = &c->attr;
14260
14261 if (attr && attr->contiguous && (!attr->dimension || !attr->pointer))
14262 {
14263 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
14264 "is not an array pointer", c->name, &c->loc);
14265 return false;
14266 }
14267
14268 /* F2003, 15.2.1 - length has to be one. */
14269 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
14270 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
14271 || !gfc_is_constant_expr (c->ts.u.cl->length)
14272 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
14273 {
14274 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
14275 c->name, &c->loc);
14276 return false;
14277 }
14278
14279 if (c->attr.proc_pointer && c->ts.interface)
14280 {
14281 gfc_symbol *ifc = c->ts.interface;
14282
14283 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
14284 {
14285 c->tb->error = 1;
14286 return false;
14287 }
14288
14289 if (ifc->attr.if_source || ifc->attr.intrinsic)
14290 {
14291 /* Resolve interface and copy attributes. */
14292 if (ifc->formal && !ifc->formal_ns)
14293 resolve_symbol (ifc);
14294 if (ifc->attr.intrinsic)
14295 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
14296
14297 if (ifc->result)
14298 {
14299 c->ts = ifc->result->ts;
14300 c->attr.allocatable = ifc->result->attr.allocatable;
14301 c->attr.pointer = ifc->result->attr.pointer;
14302 c->attr.dimension = ifc->result->attr.dimension;
14303 c->as = gfc_copy_array_spec (ifc->result->as);
14304 c->attr.class_ok = ifc->result->attr.class_ok;
14305 }
14306 else
14307 {
14308 c->ts = ifc->ts;
14309 c->attr.allocatable = ifc->attr.allocatable;
14310 c->attr.pointer = ifc->attr.pointer;
14311 c->attr.dimension = ifc->attr.dimension;
14312 c->as = gfc_copy_array_spec (ifc->as);
14313 c->attr.class_ok = ifc->attr.class_ok;
14314 }
14315 c->ts.interface = ifc;
14316 c->attr.function = ifc->attr.function;
14317 c->attr.subroutine = ifc->attr.subroutine;
14318
14319 c->attr.pure = ifc->attr.pure;
14320 c->attr.elemental = ifc->attr.elemental;
14321 c->attr.recursive = ifc->attr.recursive;
14322 c->attr.always_explicit = ifc->attr.always_explicit;
14323 c->attr.ext_attr |= ifc->attr.ext_attr;
14324 /* Copy char length. */
14325 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
14326 {
14327 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
14328 if (cl->length && !cl->resolved
14329 && !gfc_resolve_expr (cl->length))
14330 {
14331 c->tb->error = 1;
14332 return false;
14333 }
14334 c->ts.u.cl = cl;
14335 }
14336 }
14337 }
14338 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
14339 {
14340 /* Since PPCs are not implicitly typed, a PPC without an explicit
14341 interface must be a subroutine. */
14342 gfc_add_subroutine (&c->attr, c->name, &c->loc);
14343 }
14344
14345 /* Procedure pointer components: Check PASS arg. */
14346 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
14347 && !sym->attr.vtype)
14348 {
14349 gfc_symbol* me_arg;
14350
14351 if (c->tb->pass_arg)
14352 {
14353 gfc_formal_arglist* i;
14354
14355 /* If an explicit passing argument name is given, walk the arg-list
14356 and look for it. */
14357
14358 me_arg = NULL;
14359 c->tb->pass_arg_num = 1;
14360 for (i = c->ts.interface->formal; i; i = i->next)
14361 {
14362 if (!strcmp (i->sym->name, c->tb->pass_arg))
14363 {
14364 me_arg = i->sym;
14365 break;
14366 }
14367 c->tb->pass_arg_num++;
14368 }
14369
14370 if (!me_arg)
14371 {
14372 gfc_error ("Procedure pointer component %qs with PASS(%s) "
14373 "at %L has no argument %qs", c->name,
14374 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
14375 c->tb->error = 1;
14376 return false;
14377 }
14378 }
14379 else
14380 {
14381 /* Otherwise, take the first one; there should in fact be at least
14382 one. */
14383 c->tb->pass_arg_num = 1;
14384 if (!c->ts.interface->formal)
14385 {
14386 gfc_error ("Procedure pointer component %qs with PASS at %L "
14387 "must have at least one argument",
14388 c->name, &c->loc);
14389 c->tb->error = 1;
14390 return false;
14391 }
14392 me_arg = c->ts.interface->formal->sym;
14393 }
14394
14395 /* Now check that the argument-type matches. */
14396 gcc_assert (me_arg);
14397 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
14398 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
14399 || (me_arg->ts.type == BT_CLASS
14400 && CLASS_DATA (me_arg)->ts.u.derived != sym))
14401 {
14402 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14403 " the derived type %qs", me_arg->name, c->name,
14404 me_arg->name, &c->loc, sym->name);
14405 c->tb->error = 1;
14406 return false;
14407 }
14408
14409 /* Check for F03:C453. */
14410 if (CLASS_DATA (me_arg)->attr.dimension)
14411 {
14412 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14413 "must be scalar", me_arg->name, c->name, me_arg->name,
14414 &c->loc);
14415 c->tb->error = 1;
14416 return false;
14417 }
14418
14419 if (CLASS_DATA (me_arg)->attr.class_pointer)
14420 {
14421 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14422 "may not have the POINTER attribute", me_arg->name,
14423 c->name, me_arg->name, &c->loc);
14424 c->tb->error = 1;
14425 return false;
14426 }
14427
14428 if (CLASS_DATA (me_arg)->attr.allocatable)
14429 {
14430 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14431 "may not be ALLOCATABLE", me_arg->name, c->name,
14432 me_arg->name, &c->loc);
14433 c->tb->error = 1;
14434 return false;
14435 }
14436
14437 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
14438 {
14439 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14440 " at %L", c->name, &c->loc);
14441 return false;
14442 }
14443
14444 }
14445
14446 /* Check type-spec if this is not the parent-type component. */
14447 if (((sym->attr.is_class
14448 && (!sym->components->ts.u.derived->attr.extension
14449 || c != sym->components->ts.u.derived->components))
14450 || (!sym->attr.is_class
14451 && (!sym->attr.extension || c != sym->components)))
14452 && !sym->attr.vtype
14453 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
14454 return false;
14455
14456 super_type = gfc_get_derived_super_type (sym);
14457
14458 /* If this type is an extension, set the accessibility of the parent
14459 component. */
14460 if (super_type
14461 && ((sym->attr.is_class
14462 && c == sym->components->ts.u.derived->components)
14463 || (!sym->attr.is_class && c == sym->components))
14464 && strcmp (super_type->name, c->name) == 0)
14465 c->attr.access = super_type->attr.access;
14466
14467 /* If this type is an extension, see if this component has the same name
14468 as an inherited type-bound procedure. */
14469 if (super_type && !sym->attr.is_class
14470 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
14471 {
14472 gfc_error ("Component %qs of %qs at %L has the same name as an"
14473 " inherited type-bound procedure",
14474 c->name, sym->name, &c->loc);
14475 return false;
14476 }
14477
14478 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
14479 && !c->ts.deferred)
14480 {
14481 if (c->ts.u.cl->length == NULL
14482 || (!resolve_charlen(c->ts.u.cl))
14483 || !gfc_is_constant_expr (c->ts.u.cl->length))
14484 {
14485 gfc_error ("Character length of component %qs needs to "
14486 "be a constant specification expression at %L",
14487 c->name,
14488 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
14489 return false;
14490 }
14491 }
14492
14493 if (c->ts.type == BT_CHARACTER && c->ts.deferred
14494 && !c->attr.pointer && !c->attr.allocatable)
14495 {
14496 gfc_error ("Character component %qs of %qs at %L with deferred "
14497 "length must be a POINTER or ALLOCATABLE",
14498 c->name, sym->name, &c->loc);
14499 return false;
14500 }
14501
14502 /* Add the hidden deferred length field. */
14503 if (c->ts.type == BT_CHARACTER
14504 && (c->ts.deferred || c->attr.pdt_string)
14505 && !c->attr.function
14506 && !sym->attr.is_class)
14507 {
14508 char name[GFC_MAX_SYMBOL_LEN+9];
14509 gfc_component *strlen;
14510 sprintf (name, "_%s_length", c->name);
14511 strlen = gfc_find_component (sym, name, true, true, NULL);
14512 if (strlen == NULL)
14513 {
14514 if (!gfc_add_component (sym, name, &strlen))
14515 return false;
14516 strlen->ts.type = BT_INTEGER;
14517 strlen->ts.kind = gfc_charlen_int_kind;
14518 strlen->attr.access = ACCESS_PRIVATE;
14519 strlen->attr.artificial = 1;
14520 }
14521 }
14522
14523 if (c->ts.type == BT_DERIVED
14524 && sym->component_access != ACCESS_PRIVATE
14525 && gfc_check_symbol_access (sym)
14526 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
14527 && !c->ts.u.derived->attr.use_assoc
14528 && !gfc_check_symbol_access (c->ts.u.derived)
14529 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
14530 "PRIVATE type and cannot be a component of "
14531 "%qs, which is PUBLIC at %L", c->name,
14532 sym->name, &sym->declared_at))
14533 return false;
14534
14535 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
14536 {
14537 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
14538 "type %s", c->name, &c->loc, sym->name);
14539 return false;
14540 }
14541
14542 if (sym->attr.sequence)
14543 {
14544 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
14545 {
14546 gfc_error ("Component %s of SEQUENCE type declared at %L does "
14547 "not have the SEQUENCE attribute",
14548 c->ts.u.derived->name, &sym->declared_at);
14549 return false;
14550 }
14551 }
14552
14553 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
14554 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
14555 else if (c->ts.type == BT_CLASS && c->attr.class_ok
14556 && CLASS_DATA (c)->ts.u.derived->attr.generic)
14557 CLASS_DATA (c)->ts.u.derived
14558 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
14559
14560 /* If an allocatable component derived type is of the same type as
14561 the enclosing derived type, we need a vtable generating so that
14562 the __deallocate procedure is created. */
14563 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
14564 && c->ts.u.derived == sym && c->attr.allocatable == 1)
14565 gfc_find_vtab (&c->ts);
14566
14567 /* Ensure that all the derived type components are put on the
14568 derived type list; even in formal namespaces, where derived type
14569 pointer components might not have been declared. */
14570 if (c->ts.type == BT_DERIVED
14571 && c->ts.u.derived
14572 && c->ts.u.derived->components
14573 && c->attr.pointer
14574 && sym != c->ts.u.derived)
14575 add_dt_to_dt_list (c->ts.u.derived);
14576
14577 if (!gfc_resolve_array_spec (c->as,
14578 !(c->attr.pointer || c->attr.proc_pointer
14579 || c->attr.allocatable)))
14580 return false;
14581
14582 if (c->initializer && !sym->attr.vtype
14583 && !c->attr.pdt_kind && !c->attr.pdt_len
14584 && !gfc_check_assign_symbol (sym, c, c->initializer))
14585 return false;
14586
14587 return true;
14588 }
14589
14590
14591 /* Be nice about the locus for a structure expression - show the locus of the
14592 first non-null sub-expression if we can. */
14593
14594 static locus *
14595 cons_where (gfc_expr *struct_expr)
14596 {
14597 gfc_constructor *cons;
14598
14599 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
14600
14601 cons = gfc_constructor_first (struct_expr->value.constructor);
14602 for (; cons; cons = gfc_constructor_next (cons))
14603 {
14604 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
14605 return &cons->expr->where;
14606 }
14607
14608 return &struct_expr->where;
14609 }
14610
14611 /* Resolve the components of a structure type. Much less work than derived
14612 types. */
14613
14614 static bool
14615 resolve_fl_struct (gfc_symbol *sym)
14616 {
14617 gfc_component *c;
14618 gfc_expr *init = NULL;
14619 bool success;
14620
14621 /* Make sure UNIONs do not have overlapping initializers. */
14622 if (sym->attr.flavor == FL_UNION)
14623 {
14624 for (c = sym->components; c; c = c->next)
14625 {
14626 if (init && c->initializer)
14627 {
14628 gfc_error ("Conflicting initializers in union at %L and %L",
14629 cons_where (init), cons_where (c->initializer));
14630 gfc_free_expr (c->initializer);
14631 c->initializer = NULL;
14632 }
14633 if (init == NULL)
14634 init = c->initializer;
14635 }
14636 }
14637
14638 success = true;
14639 for (c = sym->components; c; c = c->next)
14640 if (!resolve_component (c, sym))
14641 success = false;
14642
14643 if (!success)
14644 return false;
14645
14646 if (sym->components)
14647 add_dt_to_dt_list (sym);
14648
14649 return true;
14650 }
14651
14652
14653 /* Resolve the components of a derived type. This does not have to wait until
14654 resolution stage, but can be done as soon as the dt declaration has been
14655 parsed. */
14656
14657 static bool
14658 resolve_fl_derived0 (gfc_symbol *sym)
14659 {
14660 gfc_symbol* super_type;
14661 gfc_component *c;
14662 gfc_formal_arglist *f;
14663 bool success;
14664
14665 if (sym->attr.unlimited_polymorphic)
14666 return true;
14667
14668 super_type = gfc_get_derived_super_type (sym);
14669
14670 /* F2008, C432. */
14671 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14672 {
14673 gfc_error ("As extending type %qs at %L has a coarray component, "
14674 "parent type %qs shall also have one", sym->name,
14675 &sym->declared_at, super_type->name);
14676 return false;
14677 }
14678
14679 /* Ensure the extended type gets resolved before we do. */
14680 if (super_type && !resolve_fl_derived0 (super_type))
14681 return false;
14682
14683 /* An ABSTRACT type must be extensible. */
14684 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14685 {
14686 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14687 sym->name, &sym->declared_at);
14688 return false;
14689 }
14690
14691 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14692 : sym->components;
14693
14694 success = true;
14695 for ( ; c != NULL; c = c->next)
14696 if (!resolve_component (c, sym))
14697 success = false;
14698
14699 if (!success)
14700 return false;
14701
14702 /* Now add the caf token field, where needed. */
14703 if (flag_coarray != GFC_FCOARRAY_NONE
14704 && !sym->attr.is_class && !sym->attr.vtype)
14705 {
14706 for (c = sym->components; c; c = c->next)
14707 if (!c->attr.dimension && !c->attr.codimension
14708 && (c->attr.allocatable || c->attr.pointer))
14709 {
14710 char name[GFC_MAX_SYMBOL_LEN+9];
14711 gfc_component *token;
14712 sprintf (name, "_caf_%s", c->name);
14713 token = gfc_find_component (sym, name, true, true, NULL);
14714 if (token == NULL)
14715 {
14716 if (!gfc_add_component (sym, name, &token))
14717 return false;
14718 token->ts.type = BT_VOID;
14719 token->ts.kind = gfc_default_integer_kind;
14720 token->attr.access = ACCESS_PRIVATE;
14721 token->attr.artificial = 1;
14722 token->attr.caf_token = 1;
14723 }
14724 }
14725 }
14726
14727 check_defined_assignments (sym);
14728
14729 if (!sym->attr.defined_assign_comp && super_type)
14730 sym->attr.defined_assign_comp
14731 = super_type->attr.defined_assign_comp;
14732
14733 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14734 all DEFERRED bindings are overridden. */
14735 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14736 && !sym->attr.is_class
14737 && !ensure_not_abstract (sym, super_type))
14738 return false;
14739
14740 /* Check that there is a component for every PDT parameter. */
14741 if (sym->attr.pdt_template)
14742 {
14743 for (f = sym->formal; f; f = f->next)
14744 {
14745 if (!f->sym)
14746 continue;
14747 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14748 if (c == NULL)
14749 {
14750 gfc_error ("Parameterized type %qs does not have a component "
14751 "corresponding to parameter %qs at %L", sym->name,
14752 f->sym->name, &sym->declared_at);
14753 break;
14754 }
14755 }
14756 }
14757
14758 /* Add derived type to the derived type list. */
14759 add_dt_to_dt_list (sym);
14760
14761 return true;
14762 }
14763
14764
14765 /* The following procedure does the full resolution of a derived type,
14766 including resolution of all type-bound procedures (if present). In contrast
14767 to 'resolve_fl_derived0' this can only be done after the module has been
14768 parsed completely. */
14769
14770 static bool
14771 resolve_fl_derived (gfc_symbol *sym)
14772 {
14773 gfc_symbol *gen_dt = NULL;
14774
14775 if (sym->attr.unlimited_polymorphic)
14776 return true;
14777
14778 if (!sym->attr.is_class)
14779 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14780 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14781 && (!gen_dt->generic->sym->attr.use_assoc
14782 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14783 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14784 "%qs at %L being the same name as derived "
14785 "type at %L", sym->name,
14786 gen_dt->generic->sym == sym
14787 ? gen_dt->generic->next->sym->name
14788 : gen_dt->generic->sym->name,
14789 gen_dt->generic->sym == sym
14790 ? &gen_dt->generic->next->sym->declared_at
14791 : &gen_dt->generic->sym->declared_at,
14792 &sym->declared_at))
14793 return false;
14794
14795 if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
14796 {
14797 gfc_error ("Derived type %qs at %L has not been declared",
14798 sym->name, &sym->declared_at);
14799 return false;
14800 }
14801
14802 /* Resolve the finalizer procedures. */
14803 if (!gfc_resolve_finalizers (sym, NULL))
14804 return false;
14805
14806 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14807 {
14808 /* Fix up incomplete CLASS symbols. */
14809 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14810 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14811
14812 /* Nothing more to do for unlimited polymorphic entities. */
14813 if (data->ts.u.derived->attr.unlimited_polymorphic)
14814 return true;
14815 else if (vptr->ts.u.derived == NULL)
14816 {
14817 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14818 gcc_assert (vtab);
14819 vptr->ts.u.derived = vtab->ts.u.derived;
14820 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14821 return false;
14822 }
14823 }
14824
14825 if (!resolve_fl_derived0 (sym))
14826 return false;
14827
14828 /* Resolve the type-bound procedures. */
14829 if (!resolve_typebound_procedures (sym))
14830 return false;
14831
14832 /* Generate module vtables subject to their accessibility and their not
14833 being vtables or pdt templates. If this is not done class declarations
14834 in external procedures wind up with their own version and so SELECT TYPE
14835 fails because the vptrs do not have the same address. */
14836 if (gfc_option.allow_std & GFC_STD_F2003
14837 && sym->ns->proc_name
14838 && sym->ns->proc_name->attr.flavor == FL_MODULE
14839 && sym->attr.access != ACCESS_PRIVATE
14840 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14841 {
14842 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14843 gfc_set_sym_referenced (vtab);
14844 }
14845
14846 return true;
14847 }
14848
14849
14850 static bool
14851 resolve_fl_namelist (gfc_symbol *sym)
14852 {
14853 gfc_namelist *nl;
14854 gfc_symbol *nlsym;
14855
14856 for (nl = sym->namelist; nl; nl = nl->next)
14857 {
14858 /* Check again, the check in match only works if NAMELIST comes
14859 after the decl. */
14860 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14861 {
14862 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14863 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14864 return false;
14865 }
14866
14867 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14868 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14869 "with assumed shape in namelist %qs at %L",
14870 nl->sym->name, sym->name, &sym->declared_at))
14871 return false;
14872
14873 if (is_non_constant_shape_array (nl->sym)
14874 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14875 "with nonconstant shape in namelist %qs at %L",
14876 nl->sym->name, sym->name, &sym->declared_at))
14877 return false;
14878
14879 if (nl->sym->ts.type == BT_CHARACTER
14880 && (nl->sym->ts.u.cl->length == NULL
14881 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14882 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14883 "nonconstant character length in "
14884 "namelist %qs at %L", nl->sym->name,
14885 sym->name, &sym->declared_at))
14886 return false;
14887
14888 }
14889
14890 /* Reject PRIVATE objects in a PUBLIC namelist. */
14891 if (gfc_check_symbol_access (sym))
14892 {
14893 for (nl = sym->namelist; nl; nl = nl->next)
14894 {
14895 if (!nl->sym->attr.use_assoc
14896 && !is_sym_host_assoc (nl->sym, sym->ns)
14897 && !gfc_check_symbol_access (nl->sym))
14898 {
14899 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14900 "cannot be member of PUBLIC namelist %qs at %L",
14901 nl->sym->name, sym->name, &sym->declared_at);
14902 return false;
14903 }
14904
14905 if (nl->sym->ts.type == BT_DERIVED
14906 && (nl->sym->ts.u.derived->attr.alloc_comp
14907 || nl->sym->ts.u.derived->attr.pointer_comp))
14908 {
14909 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14910 "namelist %qs at %L with ALLOCATABLE "
14911 "or POINTER components", nl->sym->name,
14912 sym->name, &sym->declared_at))
14913 return false;
14914 return true;
14915 }
14916
14917 /* Types with private components that came here by USE-association. */
14918 if (nl->sym->ts.type == BT_DERIVED
14919 && derived_inaccessible (nl->sym->ts.u.derived))
14920 {
14921 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14922 "components and cannot be member of namelist %qs at %L",
14923 nl->sym->name, sym->name, &sym->declared_at);
14924 return false;
14925 }
14926
14927 /* Types with private components that are defined in the same module. */
14928 if (nl->sym->ts.type == BT_DERIVED
14929 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14930 && nl->sym->ts.u.derived->attr.private_comp)
14931 {
14932 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14933 "cannot be a member of PUBLIC namelist %qs at %L",
14934 nl->sym->name, sym->name, &sym->declared_at);
14935 return false;
14936 }
14937 }
14938 }
14939
14940
14941 /* 14.1.2 A module or internal procedure represent local entities
14942 of the same type as a namelist member and so are not allowed. */
14943 for (nl = sym->namelist; nl; nl = nl->next)
14944 {
14945 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
14946 continue;
14947
14948 if (nl->sym->attr.function && nl->sym == nl->sym->result)
14949 if ((nl->sym == sym->ns->proc_name)
14950 ||
14951 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
14952 continue;
14953
14954 nlsym = NULL;
14955 if (nl->sym->name)
14956 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
14957 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
14958 {
14959 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14960 "attribute in %qs at %L", nlsym->name,
14961 &sym->declared_at);
14962 return false;
14963 }
14964 }
14965
14966 if (async_io_dt)
14967 {
14968 for (nl = sym->namelist; nl; nl = nl->next)
14969 nl->sym->attr.asynchronous = 1;
14970 }
14971 return true;
14972 }
14973
14974
14975 static bool
14976 resolve_fl_parameter (gfc_symbol *sym)
14977 {
14978 /* A parameter array's shape needs to be constant. */
14979 if (sym->as != NULL
14980 && (sym->as->type == AS_DEFERRED
14981 || is_non_constant_shape_array (sym)))
14982 {
14983 gfc_error ("Parameter array %qs at %L cannot be automatic "
14984 "or of deferred shape", sym->name, &sym->declared_at);
14985 return false;
14986 }
14987
14988 /* Constraints on deferred type parameter. */
14989 if (!deferred_requirements (sym))
14990 return false;
14991
14992 /* Make sure a parameter that has been implicitly typed still
14993 matches the implicit type, since PARAMETER statements can precede
14994 IMPLICIT statements. */
14995 if (sym->attr.implicit_type
14996 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
14997 sym->ns)))
14998 {
14999 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
15000 "later IMPLICIT type", sym->name, &sym->declared_at);
15001 return false;
15002 }
15003
15004 /* Make sure the types of derived parameters are consistent. This
15005 type checking is deferred until resolution because the type may
15006 refer to a derived type from the host. */
15007 if (sym->ts.type == BT_DERIVED
15008 && !gfc_compare_types (&sym->ts, &sym->value->ts))
15009 {
15010 gfc_error ("Incompatible derived type in PARAMETER at %L",
15011 &sym->value->where);
15012 return false;
15013 }
15014
15015 /* F03:C509,C514. */
15016 if (sym->ts.type == BT_CLASS)
15017 {
15018 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
15019 sym->name, &sym->declared_at);
15020 return false;
15021 }
15022
15023 return true;
15024 }
15025
15026
15027 /* Called by resolve_symbol to check PDTs. */
15028
15029 static void
15030 resolve_pdt (gfc_symbol* sym)
15031 {
15032 gfc_symbol *derived = NULL;
15033 gfc_actual_arglist *param;
15034 gfc_component *c;
15035 bool const_len_exprs = true;
15036 bool assumed_len_exprs = false;
15037 symbol_attribute *attr;
15038
15039 if (sym->ts.type == BT_DERIVED)
15040 {
15041 derived = sym->ts.u.derived;
15042 attr = &(sym->attr);
15043 }
15044 else if (sym->ts.type == BT_CLASS)
15045 {
15046 derived = CLASS_DATA (sym)->ts.u.derived;
15047 attr = &(CLASS_DATA (sym)->attr);
15048 }
15049 else
15050 gcc_unreachable ();
15051
15052 gcc_assert (derived->attr.pdt_type);
15053
15054 for (param = sym->param_list; param; param = param->next)
15055 {
15056 c = gfc_find_component (derived, param->name, false, true, NULL);
15057 gcc_assert (c);
15058 if (c->attr.pdt_kind)
15059 continue;
15060
15061 if (param->expr && !gfc_is_constant_expr (param->expr)
15062 && c->attr.pdt_len)
15063 const_len_exprs = false;
15064 else if (param->spec_type == SPEC_ASSUMED)
15065 assumed_len_exprs = true;
15066
15067 if (param->spec_type == SPEC_DEFERRED
15068 && !attr->allocatable && !attr->pointer)
15069 gfc_error ("The object %qs at %L has a deferred LEN "
15070 "parameter %qs and is neither allocatable "
15071 "nor a pointer", sym->name, &sym->declared_at,
15072 param->name);
15073
15074 }
15075
15076 if (!const_len_exprs
15077 && (sym->ns->proc_name->attr.is_main_program
15078 || sym->ns->proc_name->attr.flavor == FL_MODULE
15079 || sym->attr.save != SAVE_NONE))
15080 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
15081 "SAVE attribute or be a variable declared in the "
15082 "main program, a module or a submodule(F08/C513)",
15083 sym->name, &sym->declared_at);
15084
15085 if (assumed_len_exprs && !(sym->attr.dummy
15086 || sym->attr.select_type_temporary || sym->attr.associate_var))
15087 gfc_error ("The object %qs at %L with ASSUMED type parameters "
15088 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
15089 sym->name, &sym->declared_at);
15090 }
15091
15092
15093 /* Do anything necessary to resolve a symbol. Right now, we just
15094 assume that an otherwise unknown symbol is a variable. This sort
15095 of thing commonly happens for symbols in module. */
15096
15097 static void
15098 resolve_symbol (gfc_symbol *sym)
15099 {
15100 int check_constant, mp_flag;
15101 gfc_symtree *symtree;
15102 gfc_symtree *this_symtree;
15103 gfc_namespace *ns;
15104 gfc_component *c;
15105 symbol_attribute class_attr;
15106 gfc_array_spec *as;
15107 bool saved_specification_expr;
15108
15109 if (sym->resolved)
15110 return;
15111 sym->resolved = 1;
15112
15113 /* No symbol will ever have union type; only components can be unions.
15114 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
15115 (just like derived type declaration symbols have flavor FL_DERIVED). */
15116 gcc_assert (sym->ts.type != BT_UNION);
15117
15118 /* Coarrayed polymorphic objects with allocatable or pointer components are
15119 yet unsupported for -fcoarray=lib. */
15120 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
15121 && sym->ts.u.derived && CLASS_DATA (sym)
15122 && CLASS_DATA (sym)->attr.codimension
15123 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
15124 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
15125 {
15126 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
15127 "type coarrays at %L are unsupported", &sym->declared_at);
15128 return;
15129 }
15130
15131 if (sym->attr.artificial)
15132 return;
15133
15134 if (sym->attr.unlimited_polymorphic)
15135 return;
15136
15137 if (sym->attr.flavor == FL_UNKNOWN
15138 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
15139 && !sym->attr.generic && !sym->attr.external
15140 && sym->attr.if_source == IFSRC_UNKNOWN
15141 && sym->ts.type == BT_UNKNOWN))
15142 {
15143
15144 /* If we find that a flavorless symbol is an interface in one of the
15145 parent namespaces, find its symtree in this namespace, free the
15146 symbol and set the symtree to point to the interface symbol. */
15147 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
15148 {
15149 symtree = gfc_find_symtree (ns->sym_root, sym->name);
15150 if (symtree && (symtree->n.sym->generic ||
15151 (symtree->n.sym->attr.flavor == FL_PROCEDURE
15152 && sym->ns->construct_entities)))
15153 {
15154 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
15155 sym->name);
15156 if (this_symtree->n.sym == sym)
15157 {
15158 symtree->n.sym->refs++;
15159 gfc_release_symbol (sym);
15160 this_symtree->n.sym = symtree->n.sym;
15161 return;
15162 }
15163 }
15164 }
15165
15166 /* Otherwise give it a flavor according to such attributes as
15167 it has. */
15168 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
15169 && sym->attr.intrinsic == 0)
15170 sym->attr.flavor = FL_VARIABLE;
15171 else if (sym->attr.flavor == FL_UNKNOWN)
15172 {
15173 sym->attr.flavor = FL_PROCEDURE;
15174 if (sym->attr.dimension)
15175 sym->attr.function = 1;
15176 }
15177 }
15178
15179 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
15180 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
15181
15182 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
15183 && !resolve_procedure_interface (sym))
15184 return;
15185
15186 if (sym->attr.is_protected && !sym->attr.proc_pointer
15187 && (sym->attr.procedure || sym->attr.external))
15188 {
15189 if (sym->attr.external)
15190 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
15191 "at %L", &sym->declared_at);
15192 else
15193 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
15194 "at %L", &sym->declared_at);
15195
15196 return;
15197 }
15198
15199 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
15200 return;
15201
15202 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
15203 && !resolve_fl_struct (sym))
15204 return;
15205
15206 /* Symbols that are module procedures with results (functions) have
15207 the types and array specification copied for type checking in
15208 procedures that call them, as well as for saving to a module
15209 file. These symbols can't stand the scrutiny that their results
15210 can. */
15211 mp_flag = (sym->result != NULL && sym->result != sym);
15212
15213 /* Make sure that the intrinsic is consistent with its internal
15214 representation. This needs to be done before assigning a default
15215 type to avoid spurious warnings. */
15216 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
15217 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
15218 return;
15219
15220 /* Resolve associate names. */
15221 if (sym->assoc)
15222 resolve_assoc_var (sym, true);
15223
15224 /* Assign default type to symbols that need one and don't have one. */
15225 if (sym->ts.type == BT_UNKNOWN)
15226 {
15227 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
15228 {
15229 gfc_set_default_type (sym, 1, NULL);
15230 }
15231
15232 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
15233 && !sym->attr.function && !sym->attr.subroutine
15234 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
15235 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
15236
15237 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15238 {
15239 /* The specific case of an external procedure should emit an error
15240 in the case that there is no implicit type. */
15241 if (!mp_flag)
15242 {
15243 if (!sym->attr.mixed_entry_master)
15244 gfc_set_default_type (sym, sym->attr.external, NULL);
15245 }
15246 else
15247 {
15248 /* Result may be in another namespace. */
15249 resolve_symbol (sym->result);
15250
15251 if (!sym->result->attr.proc_pointer)
15252 {
15253 sym->ts = sym->result->ts;
15254 sym->as = gfc_copy_array_spec (sym->result->as);
15255 sym->attr.dimension = sym->result->attr.dimension;
15256 sym->attr.pointer = sym->result->attr.pointer;
15257 sym->attr.allocatable = sym->result->attr.allocatable;
15258 sym->attr.contiguous = sym->result->attr.contiguous;
15259 }
15260 }
15261 }
15262 }
15263 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15264 {
15265 bool saved_specification_expr = specification_expr;
15266 specification_expr = true;
15267 gfc_resolve_array_spec (sym->result->as, false);
15268 specification_expr = saved_specification_expr;
15269 }
15270
15271 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
15272 {
15273 as = CLASS_DATA (sym)->as;
15274 class_attr = CLASS_DATA (sym)->attr;
15275 class_attr.pointer = class_attr.class_pointer;
15276 }
15277 else
15278 {
15279 class_attr = sym->attr;
15280 as = sym->as;
15281 }
15282
15283 /* F2008, C530. */
15284 if (sym->attr.contiguous
15285 && (!class_attr.dimension
15286 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
15287 && !class_attr.pointer)))
15288 {
15289 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
15290 "array pointer or an assumed-shape or assumed-rank array",
15291 sym->name, &sym->declared_at);
15292 return;
15293 }
15294
15295 /* Assumed size arrays and assumed shape arrays must be dummy
15296 arguments. Array-spec's of implied-shape should have been resolved to
15297 AS_EXPLICIT already. */
15298
15299 if (as)
15300 {
15301 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
15302 specification expression. */
15303 if (as->type == AS_IMPLIED_SHAPE)
15304 {
15305 int i;
15306 for (i=0; i<as->rank; i++)
15307 {
15308 if (as->lower[i] != NULL && as->upper[i] == NULL)
15309 {
15310 gfc_error ("Bad specification for assumed size array at %L",
15311 &as->lower[i]->where);
15312 return;
15313 }
15314 }
15315 gcc_unreachable();
15316 }
15317
15318 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
15319 || as->type == AS_ASSUMED_SHAPE)
15320 && !sym->attr.dummy && !sym->attr.select_type_temporary)
15321 {
15322 if (as->type == AS_ASSUMED_SIZE)
15323 gfc_error ("Assumed size array at %L must be a dummy argument",
15324 &sym->declared_at);
15325 else
15326 gfc_error ("Assumed shape array at %L must be a dummy argument",
15327 &sym->declared_at);
15328 return;
15329 }
15330 /* TS 29113, C535a. */
15331 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
15332 && !sym->attr.select_type_temporary
15333 && !(cs_base && cs_base->current
15334 && cs_base->current->op == EXEC_SELECT_RANK))
15335 {
15336 gfc_error ("Assumed-rank array at %L must be a dummy argument",
15337 &sym->declared_at);
15338 return;
15339 }
15340 if (as->type == AS_ASSUMED_RANK
15341 && (sym->attr.codimension || sym->attr.value))
15342 {
15343 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
15344 "CODIMENSION attribute", &sym->declared_at);
15345 return;
15346 }
15347 }
15348
15349 /* Make sure symbols with known intent or optional are really dummy
15350 variable. Because of ENTRY statement, this has to be deferred
15351 until resolution time. */
15352
15353 if (!sym->attr.dummy
15354 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
15355 {
15356 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
15357 return;
15358 }
15359
15360 if (sym->attr.value && !sym->attr.dummy)
15361 {
15362 gfc_error ("%qs at %L cannot have the VALUE attribute because "
15363 "it is not a dummy argument", sym->name, &sym->declared_at);
15364 return;
15365 }
15366
15367 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
15368 {
15369 gfc_charlen *cl = sym->ts.u.cl;
15370 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
15371 {
15372 gfc_error ("Character dummy variable %qs at %L with VALUE "
15373 "attribute must have constant length",
15374 sym->name, &sym->declared_at);
15375 return;
15376 }
15377
15378 if (sym->ts.is_c_interop
15379 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
15380 {
15381 gfc_error ("C interoperable character dummy variable %qs at %L "
15382 "with VALUE attribute must have length one",
15383 sym->name, &sym->declared_at);
15384 return;
15385 }
15386 }
15387
15388 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15389 && sym->ts.u.derived->attr.generic)
15390 {
15391 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
15392 if (!sym->ts.u.derived)
15393 {
15394 gfc_error ("The derived type %qs at %L is of type %qs, "
15395 "which has not been defined", sym->name,
15396 &sym->declared_at, sym->ts.u.derived->name);
15397 sym->ts.type = BT_UNKNOWN;
15398 return;
15399 }
15400 }
15401
15402 /* Use the same constraints as TYPE(*), except for the type check
15403 and that only scalars and assumed-size arrays are permitted. */
15404 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
15405 {
15406 if (!sym->attr.dummy)
15407 {
15408 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15409 "a dummy argument", sym->name, &sym->declared_at);
15410 return;
15411 }
15412
15413 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
15414 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
15415 && sym->ts.type != BT_COMPLEX)
15416 {
15417 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15418 "of type TYPE(*) or of an numeric intrinsic type",
15419 sym->name, &sym->declared_at);
15420 return;
15421 }
15422
15423 if (sym->attr.allocatable || sym->attr.codimension
15424 || sym->attr.pointer || sym->attr.value)
15425 {
15426 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15427 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
15428 "attribute", sym->name, &sym->declared_at);
15429 return;
15430 }
15431
15432 if (sym->attr.intent == INTENT_OUT)
15433 {
15434 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15435 "have the INTENT(OUT) attribute",
15436 sym->name, &sym->declared_at);
15437 return;
15438 }
15439 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
15440 {
15441 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
15442 "either be a scalar or an assumed-size array",
15443 sym->name, &sym->declared_at);
15444 return;
15445 }
15446
15447 /* Set the type to TYPE(*) and add a dimension(*) to ensure
15448 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
15449 packing. */
15450 sym->ts.type = BT_ASSUMED;
15451 sym->as = gfc_get_array_spec ();
15452 sym->as->type = AS_ASSUMED_SIZE;
15453 sym->as->rank = 1;
15454 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
15455 }
15456 else if (sym->ts.type == BT_ASSUMED)
15457 {
15458 /* TS 29113, C407a. */
15459 if (!sym->attr.dummy)
15460 {
15461 gfc_error ("Assumed type of variable %s at %L is only permitted "
15462 "for dummy variables", sym->name, &sym->declared_at);
15463 return;
15464 }
15465 if (sym->attr.allocatable || sym->attr.codimension
15466 || sym->attr.pointer || sym->attr.value)
15467 {
15468 gfc_error ("Assumed-type variable %s at %L may not have the "
15469 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
15470 sym->name, &sym->declared_at);
15471 return;
15472 }
15473 if (sym->attr.intent == INTENT_OUT)
15474 {
15475 gfc_error ("Assumed-type variable %s at %L may not have the "
15476 "INTENT(OUT) attribute",
15477 sym->name, &sym->declared_at);
15478 return;
15479 }
15480 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
15481 {
15482 gfc_error ("Assumed-type variable %s at %L shall not be an "
15483 "explicit-shape array", sym->name, &sym->declared_at);
15484 return;
15485 }
15486 }
15487
15488 /* If the symbol is marked as bind(c), that it is declared at module level
15489 scope and verify its type and kind. Do not do the latter for symbols
15490 that are implicitly typed because that is handled in
15491 gfc_set_default_type. Handle dummy arguments and procedure definitions
15492 separately. Also, anything that is use associated is not handled here
15493 but instead is handled in the module it is declared in. Finally, derived
15494 type definitions are allowed to be BIND(C) since that only implies that
15495 they're interoperable, and they are checked fully for interoperability
15496 when a variable is declared of that type. */
15497 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
15498 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
15499 && sym->attr.flavor != FL_DERIVED)
15500 {
15501 bool t = true;
15502
15503 /* First, make sure the variable is declared at the
15504 module-level scope (J3/04-007, Section 15.3). */
15505 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
15506 sym->attr.in_common == 0)
15507 {
15508 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
15509 "is neither a COMMON block nor declared at the "
15510 "module level scope", sym->name, &(sym->declared_at));
15511 t = false;
15512 }
15513 else if (sym->ts.type == BT_CHARACTER
15514 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
15515 || !gfc_is_constant_expr (sym->ts.u.cl->length)
15516 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
15517 {
15518 gfc_error ("BIND(C) Variable %qs at %L must have length one",
15519 sym->name, &sym->declared_at);
15520 t = false;
15521 }
15522 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
15523 {
15524 t = verify_com_block_vars_c_interop (sym->common_head);
15525 }
15526 else if (sym->attr.implicit_type == 0)
15527 {
15528 /* If type() declaration, we need to verify that the components
15529 of the given type are all C interoperable, etc. */
15530 if (sym->ts.type == BT_DERIVED &&
15531 sym->ts.u.derived->attr.is_c_interop != 1)
15532 {
15533 /* Make sure the user marked the derived type as BIND(C). If
15534 not, call the verify routine. This could print an error
15535 for the derived type more than once if multiple variables
15536 of that type are declared. */
15537 if (sym->ts.u.derived->attr.is_bind_c != 1)
15538 verify_bind_c_derived_type (sym->ts.u.derived);
15539 t = false;
15540 }
15541
15542 /* Verify the variable itself as C interoperable if it
15543 is BIND(C). It is not possible for this to succeed if
15544 the verify_bind_c_derived_type failed, so don't have to handle
15545 any error returned by verify_bind_c_derived_type. */
15546 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
15547 sym->common_block);
15548 }
15549
15550 if (!t)
15551 {
15552 /* clear the is_bind_c flag to prevent reporting errors more than
15553 once if something failed. */
15554 sym->attr.is_bind_c = 0;
15555 return;
15556 }
15557 }
15558
15559 /* If a derived type symbol has reached this point, without its
15560 type being declared, we have an error. Notice that most
15561 conditions that produce undefined derived types have already
15562 been dealt with. However, the likes of:
15563 implicit type(t) (t) ..... call foo (t) will get us here if
15564 the type is not declared in the scope of the implicit
15565 statement. Change the type to BT_UNKNOWN, both because it is so
15566 and to prevent an ICE. */
15567 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15568 && sym->ts.u.derived->components == NULL
15569 && !sym->ts.u.derived->attr.zero_comp)
15570 {
15571 gfc_error ("The derived type %qs at %L is of type %qs, "
15572 "which has not been defined", sym->name,
15573 &sym->declared_at, sym->ts.u.derived->name);
15574 sym->ts.type = BT_UNKNOWN;
15575 return;
15576 }
15577
15578 /* Make sure that the derived type has been resolved and that the
15579 derived type is visible in the symbol's namespace, if it is a
15580 module function and is not PRIVATE. */
15581 if (sym->ts.type == BT_DERIVED
15582 && sym->ts.u.derived->attr.use_assoc
15583 && sym->ns->proc_name
15584 && sym->ns->proc_name->attr.flavor == FL_MODULE
15585 && !resolve_fl_derived (sym->ts.u.derived))
15586 return;
15587
15588 /* Unless the derived-type declaration is use associated, Fortran 95
15589 does not allow public entries of private derived types.
15590 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
15591 161 in 95-006r3. */
15592 if (sym->ts.type == BT_DERIVED
15593 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
15594 && !sym->ts.u.derived->attr.use_assoc
15595 && gfc_check_symbol_access (sym)
15596 && !gfc_check_symbol_access (sym->ts.u.derived)
15597 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
15598 "derived type %qs",
15599 (sym->attr.flavor == FL_PARAMETER)
15600 ? "parameter" : "variable",
15601 sym->name, &sym->declared_at,
15602 sym->ts.u.derived->name))
15603 return;
15604
15605 /* F2008, C1302. */
15606 if (sym->ts.type == BT_DERIVED
15607 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15608 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
15609 || sym->ts.u.derived->attr.lock_comp)
15610 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15611 {
15612 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
15613 "type LOCK_TYPE must be a coarray", sym->name,
15614 &sym->declared_at);
15615 return;
15616 }
15617
15618 /* TS18508, C702/C703. */
15619 if (sym->ts.type == BT_DERIVED
15620 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15621 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
15622 || sym->ts.u.derived->attr.event_comp)
15623 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15624 {
15625 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
15626 "type EVENT_TYPE must be a coarray", sym->name,
15627 &sym->declared_at);
15628 return;
15629 }
15630
15631 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
15632 default initialization is defined (5.1.2.4.4). */
15633 if (sym->ts.type == BT_DERIVED
15634 && sym->attr.dummy
15635 && sym->attr.intent == INTENT_OUT
15636 && sym->as
15637 && sym->as->type == AS_ASSUMED_SIZE)
15638 {
15639 for (c = sym->ts.u.derived->components; c; c = c->next)
15640 {
15641 if (c->initializer)
15642 {
15643 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
15644 "ASSUMED SIZE and so cannot have a default initializer",
15645 sym->name, &sym->declared_at);
15646 return;
15647 }
15648 }
15649 }
15650
15651 /* F2008, C542. */
15652 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15653 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
15654 {
15655 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
15656 "INTENT(OUT)", sym->name, &sym->declared_at);
15657 return;
15658 }
15659
15660 /* TS18508. */
15661 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15662 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
15663 {
15664 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
15665 "INTENT(OUT)", sym->name, &sym->declared_at);
15666 return;
15667 }
15668
15669 /* F2008, C525. */
15670 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15671 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15672 && CLASS_DATA (sym)->attr.coarray_comp))
15673 || class_attr.codimension)
15674 && (sym->attr.result || sym->result == sym))
15675 {
15676 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15677 "a coarray component", sym->name, &sym->declared_at);
15678 return;
15679 }
15680
15681 /* F2008, C524. */
15682 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15683 && sym->ts.u.derived->ts.is_iso_c)
15684 {
15685 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15686 "shall not be a coarray", sym->name, &sym->declared_at);
15687 return;
15688 }
15689
15690 /* F2008, C525. */
15691 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15692 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15693 && CLASS_DATA (sym)->attr.coarray_comp))
15694 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15695 || class_attr.allocatable))
15696 {
15697 gfc_error ("Variable %qs at %L with coarray component shall be a "
15698 "nonpointer, nonallocatable scalar, which is not a coarray",
15699 sym->name, &sym->declared_at);
15700 return;
15701 }
15702
15703 /* F2008, C526. The function-result case was handled above. */
15704 if (class_attr.codimension
15705 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15706 || sym->attr.select_type_temporary
15707 || sym->attr.associate_var
15708 || (sym->ns->save_all && !sym->attr.automatic)
15709 || sym->ns->proc_name->attr.flavor == FL_MODULE
15710 || sym->ns->proc_name->attr.is_main_program
15711 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15712 {
15713 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15714 "nor a dummy argument", sym->name, &sym->declared_at);
15715 return;
15716 }
15717 /* F2008, C528. */
15718 else if (class_attr.codimension && !sym->attr.select_type_temporary
15719 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15720 {
15721 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15722 "deferred shape", sym->name, &sym->declared_at);
15723 return;
15724 }
15725 else if (class_attr.codimension && class_attr.allocatable && as
15726 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15727 {
15728 gfc_error ("Allocatable coarray variable %qs at %L must have "
15729 "deferred shape", sym->name, &sym->declared_at);
15730 return;
15731 }
15732
15733 /* F2008, C541. */
15734 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15735 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15736 && CLASS_DATA (sym)->attr.coarray_comp))
15737 || (class_attr.codimension && class_attr.allocatable))
15738 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15739 {
15740 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15741 "allocatable coarray or have coarray components",
15742 sym->name, &sym->declared_at);
15743 return;
15744 }
15745
15746 if (class_attr.codimension && sym->attr.dummy
15747 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15748 {
15749 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15750 "procedure %qs", sym->name, &sym->declared_at,
15751 sym->ns->proc_name->name);
15752 return;
15753 }
15754
15755 if (sym->ts.type == BT_LOGICAL
15756 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15757 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15758 && sym->ns->proc_name->attr.is_bind_c)))
15759 {
15760 int i;
15761 for (i = 0; gfc_logical_kinds[i].kind; i++)
15762 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15763 break;
15764 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15765 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15766 "%L with non-C_Bool kind in BIND(C) procedure "
15767 "%qs", sym->name, &sym->declared_at,
15768 sym->ns->proc_name->name))
15769 return;
15770 else if (!gfc_logical_kinds[i].c_bool
15771 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15772 "%qs at %L with non-C_Bool kind in "
15773 "BIND(C) procedure %qs", sym->name,
15774 &sym->declared_at,
15775 sym->attr.function ? sym->name
15776 : sym->ns->proc_name->name))
15777 return;
15778 }
15779
15780 switch (sym->attr.flavor)
15781 {
15782 case FL_VARIABLE:
15783 if (!resolve_fl_variable (sym, mp_flag))
15784 return;
15785 break;
15786
15787 case FL_PROCEDURE:
15788 if (sym->formal && !sym->formal_ns)
15789 {
15790 /* Check that none of the arguments are a namelist. */
15791 gfc_formal_arglist *formal = sym->formal;
15792
15793 for (; formal; formal = formal->next)
15794 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15795 {
15796 gfc_error ("Namelist %qs cannot be an argument to "
15797 "subroutine or function at %L",
15798 formal->sym->name, &sym->declared_at);
15799 return;
15800 }
15801 }
15802
15803 if (!resolve_fl_procedure (sym, mp_flag))
15804 return;
15805 break;
15806
15807 case FL_NAMELIST:
15808 if (!resolve_fl_namelist (sym))
15809 return;
15810 break;
15811
15812 case FL_PARAMETER:
15813 if (!resolve_fl_parameter (sym))
15814 return;
15815 break;
15816
15817 default:
15818 break;
15819 }
15820
15821 /* Resolve array specifier. Check as well some constraints
15822 on COMMON blocks. */
15823
15824 check_constant = sym->attr.in_common && !sym->attr.pointer;
15825
15826 /* Set the formal_arg_flag so that check_conflict will not throw
15827 an error for host associated variables in the specification
15828 expression for an array_valued function. */
15829 if ((sym->attr.function || sym->attr.result) && sym->as)
15830 formal_arg_flag = true;
15831
15832 saved_specification_expr = specification_expr;
15833 specification_expr = true;
15834 gfc_resolve_array_spec (sym->as, check_constant);
15835 specification_expr = saved_specification_expr;
15836
15837 formal_arg_flag = false;
15838
15839 /* Resolve formal namespaces. */
15840 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15841 && !sym->attr.contained && !sym->attr.intrinsic)
15842 gfc_resolve (sym->formal_ns);
15843
15844 /* Make sure the formal namespace is present. */
15845 if (sym->formal && !sym->formal_ns)
15846 {
15847 gfc_formal_arglist *formal = sym->formal;
15848 while (formal && !formal->sym)
15849 formal = formal->next;
15850
15851 if (formal)
15852 {
15853 sym->formal_ns = formal->sym->ns;
15854 if (sym->ns != formal->sym->ns)
15855 sym->formal_ns->refs++;
15856 }
15857 }
15858
15859 /* Check threadprivate restrictions. */
15860 if (sym->attr.threadprivate && !sym->attr.save
15861 && !(sym->ns->save_all && !sym->attr.automatic)
15862 && (!sym->attr.in_common
15863 && sym->module == NULL
15864 && (sym->ns->proc_name == NULL
15865 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15866 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15867
15868 /* Check omp declare target restrictions. */
15869 if (sym->attr.omp_declare_target
15870 && sym->attr.flavor == FL_VARIABLE
15871 && !sym->attr.save
15872 && !(sym->ns->save_all && !sym->attr.automatic)
15873 && (!sym->attr.in_common
15874 && sym->module == NULL
15875 && (sym->ns->proc_name == NULL
15876 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15877 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15878 sym->name, &sym->declared_at);
15879
15880 /* If we have come this far we can apply default-initializers, as
15881 described in 14.7.5, to those variables that have not already
15882 been assigned one. */
15883 if (sym->ts.type == BT_DERIVED
15884 && !sym->value
15885 && !sym->attr.allocatable
15886 && !sym->attr.alloc_comp)
15887 {
15888 symbol_attribute *a = &sym->attr;
15889
15890 if ((!a->save && !a->dummy && !a->pointer
15891 && !a->in_common && !a->use_assoc
15892 && a->referenced
15893 && !((a->function || a->result)
15894 && (!a->dimension
15895 || sym->ts.u.derived->attr.alloc_comp
15896 || sym->ts.u.derived->attr.pointer_comp))
15897 && !(a->function && sym != sym->result))
15898 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15899 apply_default_init (sym);
15900 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15901 && (sym->ts.u.derived->attr.alloc_comp
15902 || sym->ts.u.derived->attr.pointer_comp))
15903 /* Mark the result symbol to be referenced, when it has allocatable
15904 components. */
15905 sym->result->attr.referenced = 1;
15906 }
15907
15908 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15909 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15910 && !CLASS_DATA (sym)->attr.class_pointer
15911 && !CLASS_DATA (sym)->attr.allocatable)
15912 apply_default_init (sym);
15913
15914 /* If this symbol has a type-spec, check it. */
15915 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15916 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15917 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15918 return;
15919
15920 if (sym->param_list)
15921 resolve_pdt (sym);
15922 }
15923
15924
15925 /************* Resolve DATA statements *************/
15926
15927 static struct
15928 {
15929 gfc_data_value *vnode;
15930 mpz_t left;
15931 }
15932 values;
15933
15934
15935 /* Advance the values structure to point to the next value in the data list. */
15936
15937 static bool
15938 next_data_value (void)
15939 {
15940 while (mpz_cmp_ui (values.left, 0) == 0)
15941 {
15942
15943 if (values.vnode->next == NULL)
15944 return false;
15945
15946 values.vnode = values.vnode->next;
15947 mpz_set (values.left, values.vnode->repeat);
15948 }
15949
15950 return true;
15951 }
15952
15953
15954 static bool
15955 check_data_variable (gfc_data_variable *var, locus *where)
15956 {
15957 gfc_expr *e;
15958 mpz_t size;
15959 mpz_t offset;
15960 bool t;
15961 ar_type mark = AR_UNKNOWN;
15962 int i;
15963 mpz_t section_index[GFC_MAX_DIMENSIONS];
15964 gfc_ref *ref;
15965 gfc_array_ref *ar;
15966 gfc_symbol *sym;
15967 int has_pointer;
15968
15969 if (!gfc_resolve_expr (var->expr))
15970 return false;
15971
15972 ar = NULL;
15973 mpz_init_set_si (offset, 0);
15974 e = var->expr;
15975
15976 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
15977 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
15978 e = e->value.function.actual->expr;
15979
15980 if (e->expr_type != EXPR_VARIABLE)
15981 {
15982 gfc_error ("Expecting definable entity near %L", where);
15983 return false;
15984 }
15985
15986 sym = e->symtree->n.sym;
15987
15988 if (sym->ns->is_block_data && !sym->attr.in_common)
15989 {
15990 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15991 sym->name, &sym->declared_at);
15992 return false;
15993 }
15994
15995 if (e->ref == NULL && sym->as)
15996 {
15997 gfc_error ("DATA array %qs at %L must be specified in a previous"
15998 " declaration", sym->name, where);
15999 return false;
16000 }
16001
16002 if (gfc_is_coindexed (e))
16003 {
16004 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
16005 where);
16006 return false;
16007 }
16008
16009 has_pointer = sym->attr.pointer;
16010
16011 for (ref = e->ref; ref; ref = ref->next)
16012 {
16013 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
16014 has_pointer = 1;
16015
16016 if (has_pointer)
16017 {
16018 if (ref->type == REF_ARRAY && ref->u.ar.type != AR_FULL)
16019 {
16020 gfc_error ("DATA element %qs at %L is a pointer and so must "
16021 "be a full array", sym->name, where);
16022 return false;
16023 }
16024
16025 if (values.vnode->expr->expr_type == EXPR_CONSTANT)
16026 {
16027 gfc_error ("DATA object near %L has the pointer attribute "
16028 "and the corresponding DATA value is not a valid "
16029 "initial-data-target", where);
16030 return false;
16031 }
16032 }
16033 }
16034
16035 if (e->rank == 0 || has_pointer)
16036 {
16037 mpz_init_set_ui (size, 1);
16038 ref = NULL;
16039 }
16040 else
16041 {
16042 ref = e->ref;
16043
16044 /* Find the array section reference. */
16045 for (ref = e->ref; ref; ref = ref->next)
16046 {
16047 if (ref->type != REF_ARRAY)
16048 continue;
16049 if (ref->u.ar.type == AR_ELEMENT)
16050 continue;
16051 break;
16052 }
16053 gcc_assert (ref);
16054
16055 /* Set marks according to the reference pattern. */
16056 switch (ref->u.ar.type)
16057 {
16058 case AR_FULL:
16059 mark = AR_FULL;
16060 break;
16061
16062 case AR_SECTION:
16063 ar = &ref->u.ar;
16064 /* Get the start position of array section. */
16065 gfc_get_section_index (ar, section_index, &offset);
16066 mark = AR_SECTION;
16067 break;
16068
16069 default:
16070 gcc_unreachable ();
16071 }
16072
16073 if (!gfc_array_size (e, &size))
16074 {
16075 gfc_error ("Nonconstant array section at %L in DATA statement",
16076 where);
16077 mpz_clear (offset);
16078 return false;
16079 }
16080 }
16081
16082 t = true;
16083
16084 while (mpz_cmp_ui (size, 0) > 0)
16085 {
16086 if (!next_data_value ())
16087 {
16088 gfc_error ("DATA statement at %L has more variables than values",
16089 where);
16090 t = false;
16091 break;
16092 }
16093
16094 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
16095 if (!t)
16096 break;
16097
16098 /* If we have more than one element left in the repeat count,
16099 and we have more than one element left in the target variable,
16100 then create a range assignment. */
16101 /* FIXME: Only done for full arrays for now, since array sections
16102 seem tricky. */
16103 if (mark == AR_FULL && ref && ref->next == NULL
16104 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
16105 {
16106 mpz_t range;
16107
16108 if (mpz_cmp (size, values.left) >= 0)
16109 {
16110 mpz_init_set (range, values.left);
16111 mpz_sub (size, size, values.left);
16112 mpz_set_ui (values.left, 0);
16113 }
16114 else
16115 {
16116 mpz_init_set (range, size);
16117 mpz_sub (values.left, values.left, size);
16118 mpz_set_ui (size, 0);
16119 }
16120
16121 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16122 offset, &range);
16123
16124 mpz_add (offset, offset, range);
16125 mpz_clear (range);
16126
16127 if (!t)
16128 break;
16129 }
16130
16131 /* Assign initial value to symbol. */
16132 else
16133 {
16134 mpz_sub_ui (values.left, values.left, 1);
16135 mpz_sub_ui (size, size, 1);
16136
16137 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16138 offset, NULL);
16139 if (!t)
16140 break;
16141
16142 if (mark == AR_FULL)
16143 mpz_add_ui (offset, offset, 1);
16144
16145 /* Modify the array section indexes and recalculate the offset
16146 for next element. */
16147 else if (mark == AR_SECTION)
16148 gfc_advance_section (section_index, ar, &offset);
16149 }
16150 }
16151
16152 if (mark == AR_SECTION)
16153 {
16154 for (i = 0; i < ar->dimen; i++)
16155 mpz_clear (section_index[i]);
16156 }
16157
16158 mpz_clear (size);
16159 mpz_clear (offset);
16160
16161 return t;
16162 }
16163
16164
16165 static bool traverse_data_var (gfc_data_variable *, locus *);
16166
16167 /* Iterate over a list of elements in a DATA statement. */
16168
16169 static bool
16170 traverse_data_list (gfc_data_variable *var, locus *where)
16171 {
16172 mpz_t trip;
16173 iterator_stack frame;
16174 gfc_expr *e, *start, *end, *step;
16175 bool retval = true;
16176
16177 mpz_init (frame.value);
16178 mpz_init (trip);
16179
16180 start = gfc_copy_expr (var->iter.start);
16181 end = gfc_copy_expr (var->iter.end);
16182 step = gfc_copy_expr (var->iter.step);
16183
16184 if (!gfc_simplify_expr (start, 1)
16185 || start->expr_type != EXPR_CONSTANT)
16186 {
16187 gfc_error ("start of implied-do loop at %L could not be "
16188 "simplified to a constant value", &start->where);
16189 retval = false;
16190 goto cleanup;
16191 }
16192 if (!gfc_simplify_expr (end, 1)
16193 || end->expr_type != EXPR_CONSTANT)
16194 {
16195 gfc_error ("end of implied-do loop at %L could not be "
16196 "simplified to a constant value", &start->where);
16197 retval = false;
16198 goto cleanup;
16199 }
16200 if (!gfc_simplify_expr (step, 1)
16201 || step->expr_type != EXPR_CONSTANT)
16202 {
16203 gfc_error ("step of implied-do loop at %L could not be "
16204 "simplified to a constant value", &start->where);
16205 retval = false;
16206 goto cleanup;
16207 }
16208
16209 mpz_set (trip, end->value.integer);
16210 mpz_sub (trip, trip, start->value.integer);
16211 mpz_add (trip, trip, step->value.integer);
16212
16213 mpz_div (trip, trip, step->value.integer);
16214
16215 mpz_set (frame.value, start->value.integer);
16216
16217 frame.prev = iter_stack;
16218 frame.variable = var->iter.var->symtree;
16219 iter_stack = &frame;
16220
16221 while (mpz_cmp_ui (trip, 0) > 0)
16222 {
16223 if (!traverse_data_var (var->list, where))
16224 {
16225 retval = false;
16226 goto cleanup;
16227 }
16228
16229 e = gfc_copy_expr (var->expr);
16230 if (!gfc_simplify_expr (e, 1))
16231 {
16232 gfc_free_expr (e);
16233 retval = false;
16234 goto cleanup;
16235 }
16236
16237 mpz_add (frame.value, frame.value, step->value.integer);
16238
16239 mpz_sub_ui (trip, trip, 1);
16240 }
16241
16242 cleanup:
16243 mpz_clear (frame.value);
16244 mpz_clear (trip);
16245
16246 gfc_free_expr (start);
16247 gfc_free_expr (end);
16248 gfc_free_expr (step);
16249
16250 iter_stack = frame.prev;
16251 return retval;
16252 }
16253
16254
16255 /* Type resolve variables in the variable list of a DATA statement. */
16256
16257 static bool
16258 traverse_data_var (gfc_data_variable *var, locus *where)
16259 {
16260 bool t;
16261
16262 for (; var; var = var->next)
16263 {
16264 if (var->expr == NULL)
16265 t = traverse_data_list (var, where);
16266 else
16267 t = check_data_variable (var, where);
16268
16269 if (!t)
16270 return false;
16271 }
16272
16273 return true;
16274 }
16275
16276
16277 /* Resolve the expressions and iterators associated with a data statement.
16278 This is separate from the assignment checking because data lists should
16279 only be resolved once. */
16280
16281 static bool
16282 resolve_data_variables (gfc_data_variable *d)
16283 {
16284 for (; d; d = d->next)
16285 {
16286 if (d->list == NULL)
16287 {
16288 if (!gfc_resolve_expr (d->expr))
16289 return false;
16290 }
16291 else
16292 {
16293 if (!gfc_resolve_iterator (&d->iter, false, true))
16294 return false;
16295
16296 if (!resolve_data_variables (d->list))
16297 return false;
16298 }
16299 }
16300
16301 return true;
16302 }
16303
16304
16305 /* Resolve a single DATA statement. We implement this by storing a pointer to
16306 the value list into static variables, and then recursively traversing the
16307 variables list, expanding iterators and such. */
16308
16309 static void
16310 resolve_data (gfc_data *d)
16311 {
16312
16313 if (!resolve_data_variables (d->var))
16314 return;
16315
16316 values.vnode = d->value;
16317 if (d->value == NULL)
16318 mpz_set_ui (values.left, 0);
16319 else
16320 mpz_set (values.left, d->value->repeat);
16321
16322 if (!traverse_data_var (d->var, &d->where))
16323 return;
16324
16325 /* At this point, we better not have any values left. */
16326
16327 if (next_data_value ())
16328 gfc_error ("DATA statement at %L has more values than variables",
16329 &d->where);
16330 }
16331
16332
16333 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
16334 accessed by host or use association, is a dummy argument to a pure function,
16335 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
16336 is storage associated with any such variable, shall not be used in the
16337 following contexts: (clients of this function). */
16338
16339 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
16340 procedure. Returns zero if assignment is OK, nonzero if there is a
16341 problem. */
16342 int
16343 gfc_impure_variable (gfc_symbol *sym)
16344 {
16345 gfc_symbol *proc;
16346 gfc_namespace *ns;
16347
16348 if (sym->attr.use_assoc || sym->attr.in_common)
16349 return 1;
16350
16351 /* Check if the symbol's ns is inside the pure procedure. */
16352 for (ns = gfc_current_ns; ns; ns = ns->parent)
16353 {
16354 if (ns == sym->ns)
16355 break;
16356 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
16357 return 1;
16358 }
16359
16360 proc = sym->ns->proc_name;
16361 if (sym->attr.dummy
16362 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
16363 || proc->attr.function))
16364 return 1;
16365
16366 /* TODO: Sort out what can be storage associated, if anything, and include
16367 it here. In principle equivalences should be scanned but it does not
16368 seem to be possible to storage associate an impure variable this way. */
16369 return 0;
16370 }
16371
16372
16373 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
16374 current namespace is inside a pure procedure. */
16375
16376 int
16377 gfc_pure (gfc_symbol *sym)
16378 {
16379 symbol_attribute attr;
16380 gfc_namespace *ns;
16381
16382 if (sym == NULL)
16383 {
16384 /* Check if the current namespace or one of its parents
16385 belongs to a pure procedure. */
16386 for (ns = gfc_current_ns; ns; ns = ns->parent)
16387 {
16388 sym = ns->proc_name;
16389 if (sym == NULL)
16390 return 0;
16391 attr = sym->attr;
16392 if (attr.flavor == FL_PROCEDURE && attr.pure)
16393 return 1;
16394 }
16395 return 0;
16396 }
16397
16398 attr = sym->attr;
16399
16400 return attr.flavor == FL_PROCEDURE && attr.pure;
16401 }
16402
16403
16404 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
16405 checks if the current namespace is implicitly pure. Note that this
16406 function returns false for a PURE procedure. */
16407
16408 int
16409 gfc_implicit_pure (gfc_symbol *sym)
16410 {
16411 gfc_namespace *ns;
16412
16413 if (sym == NULL)
16414 {
16415 /* Check if the current procedure is implicit_pure. Walk up
16416 the procedure list until we find a procedure. */
16417 for (ns = gfc_current_ns; ns; ns = ns->parent)
16418 {
16419 sym = ns->proc_name;
16420 if (sym == NULL)
16421 return 0;
16422
16423 if (sym->attr.flavor == FL_PROCEDURE)
16424 break;
16425 }
16426 }
16427
16428 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
16429 && !sym->attr.pure;
16430 }
16431
16432
16433 void
16434 gfc_unset_implicit_pure (gfc_symbol *sym)
16435 {
16436 gfc_namespace *ns;
16437
16438 if (sym == NULL)
16439 {
16440 /* Check if the current procedure is implicit_pure. Walk up
16441 the procedure list until we find a procedure. */
16442 for (ns = gfc_current_ns; ns; ns = ns->parent)
16443 {
16444 sym = ns->proc_name;
16445 if (sym == NULL)
16446 return;
16447
16448 if (sym->attr.flavor == FL_PROCEDURE)
16449 break;
16450 }
16451 }
16452
16453 if (sym->attr.flavor == FL_PROCEDURE)
16454 sym->attr.implicit_pure = 0;
16455 else
16456 sym->attr.pure = 0;
16457 }
16458
16459
16460 /* Test whether the current procedure is elemental or not. */
16461
16462 int
16463 gfc_elemental (gfc_symbol *sym)
16464 {
16465 symbol_attribute attr;
16466
16467 if (sym == NULL)
16468 sym = gfc_current_ns->proc_name;
16469 if (sym == NULL)
16470 return 0;
16471 attr = sym->attr;
16472
16473 return attr.flavor == FL_PROCEDURE && attr.elemental;
16474 }
16475
16476
16477 /* Warn about unused labels. */
16478
16479 static void
16480 warn_unused_fortran_label (gfc_st_label *label)
16481 {
16482 if (label == NULL)
16483 return;
16484
16485 warn_unused_fortran_label (label->left);
16486
16487 if (label->defined == ST_LABEL_UNKNOWN)
16488 return;
16489
16490 switch (label->referenced)
16491 {
16492 case ST_LABEL_UNKNOWN:
16493 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
16494 label->value, &label->where);
16495 break;
16496
16497 case ST_LABEL_BAD_TARGET:
16498 gfc_warning (OPT_Wunused_label,
16499 "Label %d at %L defined but cannot be used",
16500 label->value, &label->where);
16501 break;
16502
16503 default:
16504 break;
16505 }
16506
16507 warn_unused_fortran_label (label->right);
16508 }
16509
16510
16511 /* Returns the sequence type of a symbol or sequence. */
16512
16513 static seq_type
16514 sequence_type (gfc_typespec ts)
16515 {
16516 seq_type result;
16517 gfc_component *c;
16518
16519 switch (ts.type)
16520 {
16521 case BT_DERIVED:
16522
16523 if (ts.u.derived->components == NULL)
16524 return SEQ_NONDEFAULT;
16525
16526 result = sequence_type (ts.u.derived->components->ts);
16527 for (c = ts.u.derived->components->next; c; c = c->next)
16528 if (sequence_type (c->ts) != result)
16529 return SEQ_MIXED;
16530
16531 return result;
16532
16533 case BT_CHARACTER:
16534 if (ts.kind != gfc_default_character_kind)
16535 return SEQ_NONDEFAULT;
16536
16537 return SEQ_CHARACTER;
16538
16539 case BT_INTEGER:
16540 if (ts.kind != gfc_default_integer_kind)
16541 return SEQ_NONDEFAULT;
16542
16543 return SEQ_NUMERIC;
16544
16545 case BT_REAL:
16546 if (!(ts.kind == gfc_default_real_kind
16547 || ts.kind == gfc_default_double_kind))
16548 return SEQ_NONDEFAULT;
16549
16550 return SEQ_NUMERIC;
16551
16552 case BT_COMPLEX:
16553 if (ts.kind != gfc_default_complex_kind)
16554 return SEQ_NONDEFAULT;
16555
16556 return SEQ_NUMERIC;
16557
16558 case BT_LOGICAL:
16559 if (ts.kind != gfc_default_logical_kind)
16560 return SEQ_NONDEFAULT;
16561
16562 return SEQ_NUMERIC;
16563
16564 default:
16565 return SEQ_NONDEFAULT;
16566 }
16567 }
16568
16569
16570 /* Resolve derived type EQUIVALENCE object. */
16571
16572 static bool
16573 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
16574 {
16575 gfc_component *c = derived->components;
16576
16577 if (!derived)
16578 return true;
16579
16580 /* Shall not be an object of nonsequence derived type. */
16581 if (!derived->attr.sequence)
16582 {
16583 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
16584 "attribute to be an EQUIVALENCE object", sym->name,
16585 &e->where);
16586 return false;
16587 }
16588
16589 /* Shall not have allocatable components. */
16590 if (derived->attr.alloc_comp)
16591 {
16592 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
16593 "components to be an EQUIVALENCE object",sym->name,
16594 &e->where);
16595 return false;
16596 }
16597
16598 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
16599 {
16600 gfc_error ("Derived type variable %qs at %L with default "
16601 "initialization cannot be in EQUIVALENCE with a variable "
16602 "in COMMON", sym->name, &e->where);
16603 return false;
16604 }
16605
16606 for (; c ; c = c->next)
16607 {
16608 if (gfc_bt_struct (c->ts.type)
16609 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
16610 return false;
16611
16612 /* Shall not be an object of sequence derived type containing a pointer
16613 in the structure. */
16614 if (c->attr.pointer)
16615 {
16616 gfc_error ("Derived type variable %qs at %L with pointer "
16617 "component(s) cannot be an EQUIVALENCE object",
16618 sym->name, &e->where);
16619 return false;
16620 }
16621 }
16622 return true;
16623 }
16624
16625
16626 /* Resolve equivalence object.
16627 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
16628 an allocatable array, an object of nonsequence derived type, an object of
16629 sequence derived type containing a pointer at any level of component
16630 selection, an automatic object, a function name, an entry name, a result
16631 name, a named constant, a structure component, or a subobject of any of
16632 the preceding objects. A substring shall not have length zero. A
16633 derived type shall not have components with default initialization nor
16634 shall two objects of an equivalence group be initialized.
16635 Either all or none of the objects shall have an protected attribute.
16636 The simple constraints are done in symbol.c(check_conflict) and the rest
16637 are implemented here. */
16638
16639 static void
16640 resolve_equivalence (gfc_equiv *eq)
16641 {
16642 gfc_symbol *sym;
16643 gfc_symbol *first_sym;
16644 gfc_expr *e;
16645 gfc_ref *r;
16646 locus *last_where = NULL;
16647 seq_type eq_type, last_eq_type;
16648 gfc_typespec *last_ts;
16649 int object, cnt_protected;
16650 const char *msg;
16651
16652 last_ts = &eq->expr->symtree->n.sym->ts;
16653
16654 first_sym = eq->expr->symtree->n.sym;
16655
16656 cnt_protected = 0;
16657
16658 for (object = 1; eq; eq = eq->eq, object++)
16659 {
16660 e = eq->expr;
16661
16662 e->ts = e->symtree->n.sym->ts;
16663 /* match_varspec might not know yet if it is seeing
16664 array reference or substring reference, as it doesn't
16665 know the types. */
16666 if (e->ref && e->ref->type == REF_ARRAY)
16667 {
16668 gfc_ref *ref = e->ref;
16669 sym = e->symtree->n.sym;
16670
16671 if (sym->attr.dimension)
16672 {
16673 ref->u.ar.as = sym->as;
16674 ref = ref->next;
16675 }
16676
16677 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
16678 if (e->ts.type == BT_CHARACTER
16679 && ref
16680 && ref->type == REF_ARRAY
16681 && ref->u.ar.dimen == 1
16682 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
16683 && ref->u.ar.stride[0] == NULL)
16684 {
16685 gfc_expr *start = ref->u.ar.start[0];
16686 gfc_expr *end = ref->u.ar.end[0];
16687 void *mem = NULL;
16688
16689 /* Optimize away the (:) reference. */
16690 if (start == NULL && end == NULL)
16691 {
16692 if (e->ref == ref)
16693 e->ref = ref->next;
16694 else
16695 e->ref->next = ref->next;
16696 mem = ref;
16697 }
16698 else
16699 {
16700 ref->type = REF_SUBSTRING;
16701 if (start == NULL)
16702 start = gfc_get_int_expr (gfc_charlen_int_kind,
16703 NULL, 1);
16704 ref->u.ss.start = start;
16705 if (end == NULL && e->ts.u.cl)
16706 end = gfc_copy_expr (e->ts.u.cl->length);
16707 ref->u.ss.end = end;
16708 ref->u.ss.length = e->ts.u.cl;
16709 e->ts.u.cl = NULL;
16710 }
16711 ref = ref->next;
16712 free (mem);
16713 }
16714
16715 /* Any further ref is an error. */
16716 if (ref)
16717 {
16718 gcc_assert (ref->type == REF_ARRAY);
16719 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16720 &ref->u.ar.where);
16721 continue;
16722 }
16723 }
16724
16725 if (!gfc_resolve_expr (e))
16726 continue;
16727
16728 sym = e->symtree->n.sym;
16729
16730 if (sym->attr.is_protected)
16731 cnt_protected++;
16732 if (cnt_protected > 0 && cnt_protected != object)
16733 {
16734 gfc_error ("Either all or none of the objects in the "
16735 "EQUIVALENCE set at %L shall have the "
16736 "PROTECTED attribute",
16737 &e->where);
16738 break;
16739 }
16740
16741 /* Shall not equivalence common block variables in a PURE procedure. */
16742 if (sym->ns->proc_name
16743 && sym->ns->proc_name->attr.pure
16744 && sym->attr.in_common)
16745 {
16746 /* Need to check for symbols that may have entered the pure
16747 procedure via a USE statement. */
16748 bool saw_sym = false;
16749 if (sym->ns->use_stmts)
16750 {
16751 gfc_use_rename *r;
16752 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16753 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16754 }
16755 else
16756 saw_sym = true;
16757
16758 if (saw_sym)
16759 gfc_error ("COMMON block member %qs at %L cannot be an "
16760 "EQUIVALENCE object in the pure procedure %qs",
16761 sym->name, &e->where, sym->ns->proc_name->name);
16762 break;
16763 }
16764
16765 /* Shall not be a named constant. */
16766 if (e->expr_type == EXPR_CONSTANT)
16767 {
16768 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16769 "object", sym->name, &e->where);
16770 continue;
16771 }
16772
16773 if (e->ts.type == BT_DERIVED
16774 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16775 continue;
16776
16777 /* Check that the types correspond correctly:
16778 Note 5.28:
16779 A numeric sequence structure may be equivalenced to another sequence
16780 structure, an object of default integer type, default real type, double
16781 precision real type, default logical type such that components of the
16782 structure ultimately only become associated to objects of the same
16783 kind. A character sequence structure may be equivalenced to an object
16784 of default character kind or another character sequence structure.
16785 Other objects may be equivalenced only to objects of the same type and
16786 kind parameters. */
16787
16788 /* Identical types are unconditionally OK. */
16789 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16790 goto identical_types;
16791
16792 last_eq_type = sequence_type (*last_ts);
16793 eq_type = sequence_type (sym->ts);
16794
16795 /* Since the pair of objects is not of the same type, mixed or
16796 non-default sequences can be rejected. */
16797
16798 msg = "Sequence %s with mixed components in EQUIVALENCE "
16799 "statement at %L with different type objects";
16800 if ((object ==2
16801 && last_eq_type == SEQ_MIXED
16802 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16803 || (eq_type == SEQ_MIXED
16804 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16805 continue;
16806
16807 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16808 "statement at %L with objects of different type";
16809 if ((object ==2
16810 && last_eq_type == SEQ_NONDEFAULT
16811 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16812 || (eq_type == SEQ_NONDEFAULT
16813 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16814 continue;
16815
16816 msg ="Non-CHARACTER object %qs in default CHARACTER "
16817 "EQUIVALENCE statement at %L";
16818 if (last_eq_type == SEQ_CHARACTER
16819 && eq_type != SEQ_CHARACTER
16820 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16821 continue;
16822
16823 msg ="Non-NUMERIC object %qs in default NUMERIC "
16824 "EQUIVALENCE statement at %L";
16825 if (last_eq_type == SEQ_NUMERIC
16826 && eq_type != SEQ_NUMERIC
16827 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16828 continue;
16829
16830 identical_types:
16831 last_ts =&sym->ts;
16832 last_where = &e->where;
16833
16834 if (!e->ref)
16835 continue;
16836
16837 /* Shall not be an automatic array. */
16838 if (e->ref->type == REF_ARRAY
16839 && !gfc_resolve_array_spec (e->ref->u.ar.as, 1))
16840 {
16841 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16842 "an EQUIVALENCE object", sym->name, &e->where);
16843 continue;
16844 }
16845
16846 r = e->ref;
16847 while (r)
16848 {
16849 /* Shall not be a structure component. */
16850 if (r->type == REF_COMPONENT)
16851 {
16852 gfc_error ("Structure component %qs at %L cannot be an "
16853 "EQUIVALENCE object",
16854 r->u.c.component->name, &e->where);
16855 break;
16856 }
16857
16858 /* A substring shall not have length zero. */
16859 if (r->type == REF_SUBSTRING)
16860 {
16861 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16862 {
16863 gfc_error ("Substring at %L has length zero",
16864 &r->u.ss.start->where);
16865 break;
16866 }
16867 }
16868 r = r->next;
16869 }
16870 }
16871 }
16872
16873
16874 /* Function called by resolve_fntype to flag other symbols used in the
16875 length type parameter specification of function results. */
16876
16877 static bool
16878 flag_fn_result_spec (gfc_expr *expr,
16879 gfc_symbol *sym,
16880 int *f ATTRIBUTE_UNUSED)
16881 {
16882 gfc_namespace *ns;
16883 gfc_symbol *s;
16884
16885 if (expr->expr_type == EXPR_VARIABLE)
16886 {
16887 s = expr->symtree->n.sym;
16888 for (ns = s->ns; ns; ns = ns->parent)
16889 if (!ns->parent)
16890 break;
16891
16892 if (sym == s)
16893 {
16894 gfc_error ("Self reference in character length expression "
16895 "for %qs at %L", sym->name, &expr->where);
16896 return true;
16897 }
16898
16899 if (!s->fn_result_spec
16900 && s->attr.flavor == FL_PARAMETER)
16901 {
16902 /* Function contained in a module.... */
16903 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16904 {
16905 gfc_symtree *st;
16906 s->fn_result_spec = 1;
16907 /* Make sure that this symbol is translated as a module
16908 variable. */
16909 st = gfc_get_unique_symtree (ns);
16910 st->n.sym = s;
16911 s->refs++;
16912 }
16913 /* ... which is use associated and called. */
16914 else if (s->attr.use_assoc || s->attr.used_in_submodule
16915 ||
16916 /* External function matched with an interface. */
16917 (s->ns->proc_name
16918 && ((s->ns == ns
16919 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16920 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16921 && s->ns->proc_name->attr.function))
16922 s->fn_result_spec = 1;
16923 }
16924 }
16925 return false;
16926 }
16927
16928
16929 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16930
16931 static void
16932 resolve_fntype (gfc_namespace *ns)
16933 {
16934 gfc_entry_list *el;
16935 gfc_symbol *sym;
16936
16937 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16938 return;
16939
16940 /* If there are any entries, ns->proc_name is the entry master
16941 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16942 if (ns->entries)
16943 sym = ns->entries->sym;
16944 else
16945 sym = ns->proc_name;
16946 if (sym->result == sym
16947 && sym->ts.type == BT_UNKNOWN
16948 && !gfc_set_default_type (sym, 0, NULL)
16949 && !sym->attr.untyped)
16950 {
16951 gfc_error ("Function %qs at %L has no IMPLICIT type",
16952 sym->name, &sym->declared_at);
16953 sym->attr.untyped = 1;
16954 }
16955
16956 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
16957 && !sym->attr.contained
16958 && !gfc_check_symbol_access (sym->ts.u.derived)
16959 && gfc_check_symbol_access (sym))
16960 {
16961 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
16962 "%L of PRIVATE type %qs", sym->name,
16963 &sym->declared_at, sym->ts.u.derived->name);
16964 }
16965
16966 if (ns->entries)
16967 for (el = ns->entries->next; el; el = el->next)
16968 {
16969 if (el->sym->result == el->sym
16970 && el->sym->ts.type == BT_UNKNOWN
16971 && !gfc_set_default_type (el->sym, 0, NULL)
16972 && !el->sym->attr.untyped)
16973 {
16974 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16975 el->sym->name, &el->sym->declared_at);
16976 el->sym->attr.untyped = 1;
16977 }
16978 }
16979
16980 if (sym->ts.type == BT_CHARACTER)
16981 gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
16982 }
16983
16984
16985 /* 12.3.2.1.1 Defined operators. */
16986
16987 static bool
16988 check_uop_procedure (gfc_symbol *sym, locus where)
16989 {
16990 gfc_formal_arglist *formal;
16991
16992 if (!sym->attr.function)
16993 {
16994 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16995 sym->name, &where);
16996 return false;
16997 }
16998
16999 if (sym->ts.type == BT_CHARACTER
17000 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
17001 && !(sym->result && ((sym->result->ts.u.cl
17002 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
17003 {
17004 gfc_error ("User operator procedure %qs at %L cannot be assumed "
17005 "character length", sym->name, &where);
17006 return false;
17007 }
17008
17009 formal = gfc_sym_get_dummy_args (sym);
17010 if (!formal || !formal->sym)
17011 {
17012 gfc_error ("User operator procedure %qs at %L must have at least "
17013 "one argument", sym->name, &where);
17014 return false;
17015 }
17016
17017 if (formal->sym->attr.intent != INTENT_IN)
17018 {
17019 gfc_error ("First argument of operator interface at %L must be "
17020 "INTENT(IN)", &where);
17021 return false;
17022 }
17023
17024 if (formal->sym->attr.optional)
17025 {
17026 gfc_error ("First argument of operator interface at %L cannot be "
17027 "optional", &where);
17028 return false;
17029 }
17030
17031 formal = formal->next;
17032 if (!formal || !formal->sym)
17033 return true;
17034
17035 if (formal->sym->attr.intent != INTENT_IN)
17036 {
17037 gfc_error ("Second argument of operator interface at %L must be "
17038 "INTENT(IN)", &where);
17039 return false;
17040 }
17041
17042 if (formal->sym->attr.optional)
17043 {
17044 gfc_error ("Second argument of operator interface at %L cannot be "
17045 "optional", &where);
17046 return false;
17047 }
17048
17049 if (formal->next)
17050 {
17051 gfc_error ("Operator interface at %L must have, at most, two "
17052 "arguments", &where);
17053 return false;
17054 }
17055
17056 return true;
17057 }
17058
17059 static void
17060 gfc_resolve_uops (gfc_symtree *symtree)
17061 {
17062 gfc_interface *itr;
17063
17064 if (symtree == NULL)
17065 return;
17066
17067 gfc_resolve_uops (symtree->left);
17068 gfc_resolve_uops (symtree->right);
17069
17070 for (itr = symtree->n.uop->op; itr; itr = itr->next)
17071 check_uop_procedure (itr->sym, itr->sym->declared_at);
17072 }
17073
17074
17075 /* Examine all of the expressions associated with a program unit,
17076 assign types to all intermediate expressions, make sure that all
17077 assignments are to compatible types and figure out which names
17078 refer to which functions or subroutines. It doesn't check code
17079 block, which is handled by gfc_resolve_code. */
17080
17081 static void
17082 resolve_types (gfc_namespace *ns)
17083 {
17084 gfc_namespace *n;
17085 gfc_charlen *cl;
17086 gfc_data *d;
17087 gfc_equiv *eq;
17088 gfc_namespace* old_ns = gfc_current_ns;
17089 bool recursive = ns->proc_name && ns->proc_name->attr.recursive;
17090
17091 if (ns->types_resolved)
17092 return;
17093
17094 /* Check that all IMPLICIT types are ok. */
17095 if (!ns->seen_implicit_none)
17096 {
17097 unsigned letter;
17098 for (letter = 0; letter != GFC_LETTERS; ++letter)
17099 if (ns->set_flag[letter]
17100 && !resolve_typespec_used (&ns->default_type[letter],
17101 &ns->implicit_loc[letter], NULL))
17102 return;
17103 }
17104
17105 gfc_current_ns = ns;
17106
17107 resolve_entries (ns);
17108
17109 resolve_common_vars (&ns->blank_common, false);
17110 resolve_common_blocks (ns->common_root);
17111
17112 resolve_contained_functions (ns);
17113
17114 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
17115 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
17116 resolve_formal_arglist (ns->proc_name);
17117
17118 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
17119
17120 for (cl = ns->cl_list; cl; cl = cl->next)
17121 resolve_charlen (cl);
17122
17123 gfc_traverse_ns (ns, resolve_symbol);
17124
17125 resolve_fntype (ns);
17126
17127 for (n = ns->contained; n; n = n->sibling)
17128 {
17129 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
17130 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
17131 "also be PURE", n->proc_name->name,
17132 &n->proc_name->declared_at);
17133
17134 resolve_types (n);
17135 }
17136
17137 forall_flag = 0;
17138 gfc_do_concurrent_flag = 0;
17139 gfc_check_interfaces (ns);
17140
17141 gfc_traverse_ns (ns, resolve_values);
17142
17143 if (ns->save_all || (!flag_automatic && !recursive))
17144 gfc_save_all (ns);
17145
17146 iter_stack = NULL;
17147 for (d = ns->data; d; d = d->next)
17148 resolve_data (d);
17149
17150 iter_stack = NULL;
17151 gfc_traverse_ns (ns, gfc_formalize_init_value);
17152
17153 gfc_traverse_ns (ns, gfc_verify_binding_labels);
17154
17155 for (eq = ns->equiv; eq; eq = eq->next)
17156 resolve_equivalence (eq);
17157
17158 /* Warn about unused labels. */
17159 if (warn_unused_label)
17160 warn_unused_fortran_label (ns->st_labels);
17161
17162 gfc_resolve_uops (ns->uop_root);
17163
17164 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
17165
17166 gfc_resolve_omp_declare_simd (ns);
17167
17168 gfc_resolve_omp_udrs (ns->omp_udr_root);
17169
17170 ns->types_resolved = 1;
17171
17172 gfc_current_ns = old_ns;
17173 }
17174
17175
17176 /* Call gfc_resolve_code recursively. */
17177
17178 static void
17179 resolve_codes (gfc_namespace *ns)
17180 {
17181 gfc_namespace *n;
17182 bitmap_obstack old_obstack;
17183
17184 if (ns->resolved == 1)
17185 return;
17186
17187 for (n = ns->contained; n; n = n->sibling)
17188 resolve_codes (n);
17189
17190 gfc_current_ns = ns;
17191
17192 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
17193 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
17194 cs_base = NULL;
17195
17196 /* Set to an out of range value. */
17197 current_entry_id = -1;
17198
17199 old_obstack = labels_obstack;
17200 bitmap_obstack_initialize (&labels_obstack);
17201
17202 gfc_resolve_oacc_declare (ns);
17203 gfc_resolve_oacc_routines (ns);
17204 gfc_resolve_omp_local_vars (ns);
17205 gfc_resolve_code (ns->code, ns);
17206
17207 bitmap_obstack_release (&labels_obstack);
17208 labels_obstack = old_obstack;
17209 }
17210
17211
17212 /* This function is called after a complete program unit has been compiled.
17213 Its purpose is to examine all of the expressions associated with a program
17214 unit, assign types to all intermediate expressions, make sure that all
17215 assignments are to compatible types and figure out which names refer to
17216 which functions or subroutines. */
17217
17218 void
17219 gfc_resolve (gfc_namespace *ns)
17220 {
17221 gfc_namespace *old_ns;
17222 code_stack *old_cs_base;
17223 struct gfc_omp_saved_state old_omp_state;
17224
17225 if (ns->resolved)
17226 return;
17227
17228 ns->resolved = -1;
17229 old_ns = gfc_current_ns;
17230 old_cs_base = cs_base;
17231
17232 /* As gfc_resolve can be called during resolution of an OpenMP construct
17233 body, we should clear any state associated to it, so that say NS's
17234 DO loops are not interpreted as OpenMP loops. */
17235 if (!ns->construct_entities)
17236 gfc_omp_save_and_clear_state (&old_omp_state);
17237
17238 resolve_types (ns);
17239 component_assignment_level = 0;
17240 resolve_codes (ns);
17241
17242 gfc_current_ns = old_ns;
17243 cs_base = old_cs_base;
17244 ns->resolved = 1;
17245
17246 gfc_run_passes (ns);
17247
17248 if (!ns->construct_entities)
17249 gfc_omp_restore_state (&old_omp_state);
17250 }