PR fortran/95828 - Buffer overflows with SELECT RANK
[gcc.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2020 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "options.h"
25 #include "bitmap.h"
26 #include "gfortran.h"
27 #include "arith.h" /* For gfc_compare_expr(). */
28 #include "dependency.h"
29 #include "data.h"
30 #include "target-memory.h" /* for gfc_simplify_transfer */
31 #include "constructor.h"
32
33 /* Types used in equivalence statements. */
34
35 enum seq_type
36 {
37 SEQ_NONDEFAULT, SEQ_NUMERIC, SEQ_CHARACTER, SEQ_MIXED
38 };
39
40 /* Stack to keep track of the nesting of blocks as we move through the
41 code. See resolve_branch() and gfc_resolve_code(). */
42
43 typedef struct code_stack
44 {
45 struct gfc_code *head, *current;
46 struct code_stack *prev;
47
48 /* This bitmap keeps track of the targets valid for a branch from
49 inside this block except for END {IF|SELECT}s of enclosing
50 blocks. */
51 bitmap reachable_labels;
52 }
53 code_stack;
54
55 static code_stack *cs_base = NULL;
56
57
58 /* Nonzero if we're inside a FORALL or DO CONCURRENT block. */
59
60 static int forall_flag;
61 int gfc_do_concurrent_flag;
62
63 /* True when we are resolving an expression that is an actual argument to
64 a procedure. */
65 static bool actual_arg = false;
66 /* True when we are resolving an expression that is the first actual argument
67 to a procedure. */
68 static bool first_actual_arg = false;
69
70
71 /* Nonzero if we're inside a OpenMP WORKSHARE or PARALLEL WORKSHARE block. */
72
73 static int omp_workshare_flag;
74
75 /* True if we are processing a formal arglist. The corresponding function
76 resets the flag each time that it is read. */
77 static bool formal_arg_flag = false;
78
79 /* True if we are resolving a specification expression. */
80 static bool specification_expr = false;
81
82 /* The id of the last entry seen. */
83 static int current_entry_id;
84
85 /* We use bitmaps to determine if a branch target is valid. */
86 static bitmap_obstack labels_obstack;
87
88 /* True when simplifying a EXPR_VARIABLE argument to an inquiry function. */
89 static bool inquiry_argument = false;
90
91
92 bool
93 gfc_is_formal_arg (void)
94 {
95 return formal_arg_flag;
96 }
97
98 /* Is the symbol host associated? */
99 static bool
100 is_sym_host_assoc (gfc_symbol *sym, gfc_namespace *ns)
101 {
102 for (ns = ns->parent; ns; ns = ns->parent)
103 {
104 if (sym->ns == ns)
105 return true;
106 }
107
108 return false;
109 }
110
111 /* Ensure a typespec used is valid; for instance, TYPE(t) is invalid if t is
112 an ABSTRACT derived-type. If where is not NULL, an error message with that
113 locus is printed, optionally using name. */
114
115 static bool
116 resolve_typespec_used (gfc_typespec* ts, locus* where, const char* name)
117 {
118 if (ts->type == BT_DERIVED && ts->u.derived->attr.abstract)
119 {
120 if (where)
121 {
122 if (name)
123 gfc_error ("%qs at %L is of the ABSTRACT type %qs",
124 name, where, ts->u.derived->name);
125 else
126 gfc_error ("ABSTRACT type %qs used at %L",
127 ts->u.derived->name, where);
128 }
129
130 return false;
131 }
132
133 return true;
134 }
135
136
137 static bool
138 check_proc_interface (gfc_symbol *ifc, locus *where)
139 {
140 /* Several checks for F08:C1216. */
141 if (ifc->attr.procedure)
142 {
143 gfc_error ("Interface %qs at %L is declared "
144 "in a later PROCEDURE statement", ifc->name, where);
145 return false;
146 }
147 if (ifc->generic)
148 {
149 /* For generic interfaces, check if there is
150 a specific procedure with the same name. */
151 gfc_interface *gen = ifc->generic;
152 while (gen && strcmp (gen->sym->name, ifc->name) != 0)
153 gen = gen->next;
154 if (!gen)
155 {
156 gfc_error ("Interface %qs at %L may not be generic",
157 ifc->name, where);
158 return false;
159 }
160 }
161 if (ifc->attr.proc == PROC_ST_FUNCTION)
162 {
163 gfc_error ("Interface %qs at %L may not be a statement function",
164 ifc->name, where);
165 return false;
166 }
167 if (gfc_is_intrinsic (ifc, 0, ifc->declared_at)
168 || gfc_is_intrinsic (ifc, 1, ifc->declared_at))
169 ifc->attr.intrinsic = 1;
170 if (ifc->attr.intrinsic && !gfc_intrinsic_actual_ok (ifc->name, 0))
171 {
172 gfc_error ("Intrinsic procedure %qs not allowed in "
173 "PROCEDURE statement at %L", ifc->name, where);
174 return false;
175 }
176 if (!ifc->attr.if_source && !ifc->attr.intrinsic && ifc->name[0] != '\0')
177 {
178 gfc_error ("Interface %qs at %L must be explicit", ifc->name, where);
179 return false;
180 }
181 return true;
182 }
183
184
185 static void resolve_symbol (gfc_symbol *sym);
186
187
188 /* Resolve the interface for a PROCEDURE declaration or procedure pointer. */
189
190 static bool
191 resolve_procedure_interface (gfc_symbol *sym)
192 {
193 gfc_symbol *ifc = sym->ts.interface;
194
195 if (!ifc)
196 return true;
197
198 if (ifc == sym)
199 {
200 gfc_error ("PROCEDURE %qs at %L may not be used as its own interface",
201 sym->name, &sym->declared_at);
202 return false;
203 }
204 if (!check_proc_interface (ifc, &sym->declared_at))
205 return false;
206
207 if (ifc->attr.if_source || ifc->attr.intrinsic)
208 {
209 /* Resolve interface and copy attributes. */
210 resolve_symbol (ifc);
211 if (ifc->attr.intrinsic)
212 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
213
214 if (ifc->result)
215 {
216 sym->ts = ifc->result->ts;
217 sym->attr.allocatable = ifc->result->attr.allocatable;
218 sym->attr.pointer = ifc->result->attr.pointer;
219 sym->attr.dimension = ifc->result->attr.dimension;
220 sym->attr.class_ok = ifc->result->attr.class_ok;
221 sym->as = gfc_copy_array_spec (ifc->result->as);
222 sym->result = sym;
223 }
224 else
225 {
226 sym->ts = ifc->ts;
227 sym->attr.allocatable = ifc->attr.allocatable;
228 sym->attr.pointer = ifc->attr.pointer;
229 sym->attr.dimension = ifc->attr.dimension;
230 sym->attr.class_ok = ifc->attr.class_ok;
231 sym->as = gfc_copy_array_spec (ifc->as);
232 }
233 sym->ts.interface = ifc;
234 sym->attr.function = ifc->attr.function;
235 sym->attr.subroutine = ifc->attr.subroutine;
236
237 sym->attr.pure = ifc->attr.pure;
238 sym->attr.elemental = ifc->attr.elemental;
239 sym->attr.contiguous = ifc->attr.contiguous;
240 sym->attr.recursive = ifc->attr.recursive;
241 sym->attr.always_explicit = ifc->attr.always_explicit;
242 sym->attr.ext_attr |= ifc->attr.ext_attr;
243 sym->attr.is_bind_c = ifc->attr.is_bind_c;
244 /* Copy char length. */
245 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
246 {
247 sym->ts.u.cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
248 if (sym->ts.u.cl->length && !sym->ts.u.cl->resolved
249 && !gfc_resolve_expr (sym->ts.u.cl->length))
250 return false;
251 }
252 }
253
254 return true;
255 }
256
257
258 /* Resolve types of formal argument lists. These have to be done early so that
259 the formal argument lists of module procedures can be copied to the
260 containing module before the individual procedures are resolved
261 individually. We also resolve argument lists of procedures in interface
262 blocks because they are self-contained scoping units.
263
264 Since a dummy argument cannot be a non-dummy procedure, the only
265 resort left for untyped names are the IMPLICIT types. */
266
267 void
268 gfc_resolve_formal_arglist (gfc_symbol *proc)
269 {
270 gfc_formal_arglist *f;
271 gfc_symbol *sym;
272 bool saved_specification_expr;
273 int i;
274
275 if (proc->result != NULL)
276 sym = proc->result;
277 else
278 sym = proc;
279
280 if (gfc_elemental (proc)
281 || sym->attr.pointer || sym->attr.allocatable
282 || (sym->as && sym->as->rank != 0))
283 {
284 proc->attr.always_explicit = 1;
285 sym->attr.always_explicit = 1;
286 }
287
288 formal_arg_flag = true;
289
290 for (f = proc->formal; f; f = f->next)
291 {
292 gfc_array_spec *as;
293
294 sym = f->sym;
295
296 if (sym == NULL)
297 {
298 /* Alternate return placeholder. */
299 if (gfc_elemental (proc))
300 gfc_error ("Alternate return specifier in elemental subroutine "
301 "%qs at %L is not allowed", proc->name,
302 &proc->declared_at);
303 if (proc->attr.function)
304 gfc_error ("Alternate return specifier in function "
305 "%qs at %L is not allowed", proc->name,
306 &proc->declared_at);
307 continue;
308 }
309 else if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
310 && !resolve_procedure_interface (sym))
311 return;
312
313 if (strcmp (proc->name, sym->name) == 0)
314 {
315 gfc_error ("Self-referential argument "
316 "%qs at %L is not allowed", sym->name,
317 &proc->declared_at);
318 return;
319 }
320
321 if (sym->attr.if_source != IFSRC_UNKNOWN)
322 gfc_resolve_formal_arglist (sym);
323
324 if (sym->attr.subroutine || sym->attr.external)
325 {
326 if (sym->attr.flavor == FL_UNKNOWN)
327 gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, &sym->declared_at);
328 }
329 else
330 {
331 if (sym->ts.type == BT_UNKNOWN && !proc->attr.intrinsic
332 && (!sym->attr.function || sym->result == sym))
333 gfc_set_default_type (sym, 1, sym->ns);
334 }
335
336 as = sym->ts.type == BT_CLASS && sym->attr.class_ok
337 ? CLASS_DATA (sym)->as : sym->as;
338
339 saved_specification_expr = specification_expr;
340 specification_expr = true;
341 gfc_resolve_array_spec (as, 0);
342 specification_expr = saved_specification_expr;
343
344 /* We can't tell if an array with dimension (:) is assumed or deferred
345 shape until we know if it has the pointer or allocatable attributes.
346 */
347 if (as && as->rank > 0 && as->type == AS_DEFERRED
348 && ((sym->ts.type != BT_CLASS
349 && !(sym->attr.pointer || sym->attr.allocatable))
350 || (sym->ts.type == BT_CLASS
351 && !(CLASS_DATA (sym)->attr.class_pointer
352 || CLASS_DATA (sym)->attr.allocatable)))
353 && sym->attr.flavor != FL_PROCEDURE)
354 {
355 as->type = AS_ASSUMED_SHAPE;
356 for (i = 0; i < as->rank; i++)
357 as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
358 }
359
360 if ((as && as->rank > 0 && as->type == AS_ASSUMED_SHAPE)
361 || (as && as->type == AS_ASSUMED_RANK)
362 || sym->attr.pointer || sym->attr.allocatable || sym->attr.target
363 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
364 && (CLASS_DATA (sym)->attr.class_pointer
365 || CLASS_DATA (sym)->attr.allocatable
366 || CLASS_DATA (sym)->attr.target))
367 || sym->attr.optional)
368 {
369 proc->attr.always_explicit = 1;
370 if (proc->result)
371 proc->result->attr.always_explicit = 1;
372 }
373
374 /* If the flavor is unknown at this point, it has to be a variable.
375 A procedure specification would have already set the type. */
376
377 if (sym->attr.flavor == FL_UNKNOWN)
378 gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, &sym->declared_at);
379
380 if (gfc_pure (proc))
381 {
382 if (sym->attr.flavor == FL_PROCEDURE)
383 {
384 /* F08:C1279. */
385 if (!gfc_pure (sym))
386 {
387 gfc_error ("Dummy procedure %qs of PURE procedure at %L must "
388 "also be PURE", sym->name, &sym->declared_at);
389 continue;
390 }
391 }
392 else if (!sym->attr.pointer)
393 {
394 if (proc->attr.function && sym->attr.intent != INTENT_IN)
395 {
396 if (sym->attr.value)
397 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
398 " of pure function %qs at %L with VALUE "
399 "attribute but without INTENT(IN)",
400 sym->name, proc->name, &sym->declared_at);
401 else
402 gfc_error ("Argument %qs of pure function %qs at %L must "
403 "be INTENT(IN) or VALUE", sym->name, proc->name,
404 &sym->declared_at);
405 }
406
407 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN)
408 {
409 if (sym->attr.value)
410 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
411 " of pure subroutine %qs at %L with VALUE "
412 "attribute but without INTENT", sym->name,
413 proc->name, &sym->declared_at);
414 else
415 gfc_error ("Argument %qs of pure subroutine %qs at %L "
416 "must have its INTENT specified or have the "
417 "VALUE attribute", sym->name, proc->name,
418 &sym->declared_at);
419 }
420 }
421
422 /* F08:C1278a. */
423 if (sym->ts.type == BT_CLASS && sym->attr.intent == INTENT_OUT)
424 {
425 gfc_error ("INTENT(OUT) argument %qs of pure procedure %qs at %L"
426 " may not be polymorphic", sym->name, proc->name,
427 &sym->declared_at);
428 continue;
429 }
430 }
431
432 if (proc->attr.implicit_pure)
433 {
434 if (sym->attr.flavor == FL_PROCEDURE)
435 {
436 if (!gfc_pure (sym))
437 proc->attr.implicit_pure = 0;
438 }
439 else if (!sym->attr.pointer)
440 {
441 if (proc->attr.function && sym->attr.intent != INTENT_IN
442 && !sym->value)
443 proc->attr.implicit_pure = 0;
444
445 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN
446 && !sym->value)
447 proc->attr.implicit_pure = 0;
448 }
449 }
450
451 if (gfc_elemental (proc))
452 {
453 /* F08:C1289. */
454 if (sym->attr.codimension
455 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
456 && CLASS_DATA (sym)->attr.codimension))
457 {
458 gfc_error ("Coarray dummy argument %qs at %L to elemental "
459 "procedure", sym->name, &sym->declared_at);
460 continue;
461 }
462
463 if (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
464 && CLASS_DATA (sym)->as))
465 {
466 gfc_error ("Argument %qs of elemental procedure at %L must "
467 "be scalar", sym->name, &sym->declared_at);
468 continue;
469 }
470
471 if (sym->attr.allocatable
472 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
473 && CLASS_DATA (sym)->attr.allocatable))
474 {
475 gfc_error ("Argument %qs of elemental procedure at %L cannot "
476 "have the ALLOCATABLE attribute", sym->name,
477 &sym->declared_at);
478 continue;
479 }
480
481 if (sym->attr.pointer
482 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
483 && CLASS_DATA (sym)->attr.class_pointer))
484 {
485 gfc_error ("Argument %qs of elemental procedure at %L cannot "
486 "have the POINTER attribute", sym->name,
487 &sym->declared_at);
488 continue;
489 }
490
491 if (sym->attr.flavor == FL_PROCEDURE)
492 {
493 gfc_error ("Dummy procedure %qs not allowed in elemental "
494 "procedure %qs at %L", sym->name, proc->name,
495 &sym->declared_at);
496 continue;
497 }
498
499 /* Fortran 2008 Corrigendum 1, C1290a. */
500 if (sym->attr.intent == INTENT_UNKNOWN && !sym->attr.value)
501 {
502 gfc_error ("Argument %qs of elemental procedure %qs at %L must "
503 "have its INTENT specified or have the VALUE "
504 "attribute", sym->name, proc->name,
505 &sym->declared_at);
506 continue;
507 }
508 }
509
510 /* Each dummy shall be specified to be scalar. */
511 if (proc->attr.proc == PROC_ST_FUNCTION)
512 {
513 if (sym->as != NULL)
514 {
515 /* F03:C1263 (R1238) The function-name and each dummy-arg-name
516 shall be specified, explicitly or implicitly, to be scalar. */
517 gfc_error ("Argument '%s' of statement function '%s' at %L "
518 "must be scalar", sym->name, proc->name,
519 &proc->declared_at);
520 continue;
521 }
522
523 if (sym->ts.type == BT_CHARACTER)
524 {
525 gfc_charlen *cl = sym->ts.u.cl;
526 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
527 {
528 gfc_error ("Character-valued argument %qs of statement "
529 "function at %L must have constant length",
530 sym->name, &sym->declared_at);
531 continue;
532 }
533 }
534 }
535 }
536 formal_arg_flag = false;
537 }
538
539
540 /* Work function called when searching for symbols that have argument lists
541 associated with them. */
542
543 static void
544 find_arglists (gfc_symbol *sym)
545 {
546 if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns
547 || gfc_fl_struct (sym->attr.flavor) || sym->attr.intrinsic)
548 return;
549
550 gfc_resolve_formal_arglist (sym);
551 }
552
553
554 /* Given a namespace, resolve all formal argument lists within the namespace.
555 */
556
557 static void
558 resolve_formal_arglists (gfc_namespace *ns)
559 {
560 if (ns == NULL)
561 return;
562
563 gfc_traverse_ns (ns, find_arglists);
564 }
565
566
567 static void
568 resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
569 {
570 bool t;
571
572 if (sym && sym->attr.flavor == FL_PROCEDURE
573 && sym->ns->parent
574 && sym->ns->parent->proc_name
575 && sym->ns->parent->proc_name->attr.flavor == FL_PROCEDURE
576 && !strcmp (sym->name, sym->ns->parent->proc_name->name))
577 gfc_error ("Contained procedure %qs at %L has the same name as its "
578 "encompassing procedure", sym->name, &sym->declared_at);
579
580 /* If this namespace is not a function or an entry master function,
581 ignore it. */
582 if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
583 || sym->attr.entry_master)
584 return;
585
586 if (!sym->result)
587 return;
588
589 /* Try to find out of what the return type is. */
590 if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
591 {
592 t = gfc_set_default_type (sym->result, 0, ns);
593
594 if (!t && !sym->result->attr.untyped)
595 {
596 if (sym->result == sym)
597 gfc_error ("Contained function %qs at %L has no IMPLICIT type",
598 sym->name, &sym->declared_at);
599 else if (!sym->result->attr.proc_pointer)
600 gfc_error ("Result %qs of contained function %qs at %L has "
601 "no IMPLICIT type", sym->result->name, sym->name,
602 &sym->result->declared_at);
603 sym->result->attr.untyped = 1;
604 }
605 }
606
607 /* Fortran 2008 Draft Standard, page 535, C418, on type-param-value
608 type, lists the only ways a character length value of * can be used:
609 dummy arguments of procedures, named constants, function results and
610 in allocate statements if the allocate_object is an assumed length dummy
611 in external functions. Internal function results and results of module
612 procedures are not on this list, ergo, not permitted. */
613
614 if (sym->result->ts.type == BT_CHARACTER)
615 {
616 gfc_charlen *cl = sym->result->ts.u.cl;
617 if ((!cl || !cl->length) && !sym->result->ts.deferred)
618 {
619 /* See if this is a module-procedure and adapt error message
620 accordingly. */
621 bool module_proc;
622 gcc_assert (ns->parent && ns->parent->proc_name);
623 module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
624
625 gfc_error (module_proc
626 ? G_("Character-valued module procedure %qs at %L"
627 " must not be assumed length")
628 : G_("Character-valued internal function %qs at %L"
629 " must not be assumed length"),
630 sym->name, &sym->declared_at);
631 }
632 }
633 }
634
635
636 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
637 introduce duplicates. */
638
639 static void
640 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
641 {
642 gfc_formal_arglist *f, *new_arglist;
643 gfc_symbol *new_sym;
644
645 for (; new_args != NULL; new_args = new_args->next)
646 {
647 new_sym = new_args->sym;
648 /* See if this arg is already in the formal argument list. */
649 for (f = proc->formal; f; f = f->next)
650 {
651 if (new_sym == f->sym)
652 break;
653 }
654
655 if (f)
656 continue;
657
658 /* Add a new argument. Argument order is not important. */
659 new_arglist = gfc_get_formal_arglist ();
660 new_arglist->sym = new_sym;
661 new_arglist->next = proc->formal;
662 proc->formal = new_arglist;
663 }
664 }
665
666
667 /* Flag the arguments that are not present in all entries. */
668
669 static void
670 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
671 {
672 gfc_formal_arglist *f, *head;
673 head = new_args;
674
675 for (f = proc->formal; f; f = f->next)
676 {
677 if (f->sym == NULL)
678 continue;
679
680 for (new_args = head; new_args; new_args = new_args->next)
681 {
682 if (new_args->sym == f->sym)
683 break;
684 }
685
686 if (new_args)
687 continue;
688
689 f->sym->attr.not_always_present = 1;
690 }
691 }
692
693
694 /* Resolve alternate entry points. If a symbol has multiple entry points we
695 create a new master symbol for the main routine, and turn the existing
696 symbol into an entry point. */
697
698 static void
699 resolve_entries (gfc_namespace *ns)
700 {
701 gfc_namespace *old_ns;
702 gfc_code *c;
703 gfc_symbol *proc;
704 gfc_entry_list *el;
705 char name[GFC_MAX_SYMBOL_LEN + 1];
706 static int master_count = 0;
707
708 if (ns->proc_name == NULL)
709 return;
710
711 /* No need to do anything if this procedure doesn't have alternate entry
712 points. */
713 if (!ns->entries)
714 return;
715
716 /* We may already have resolved alternate entry points. */
717 if (ns->proc_name->attr.entry_master)
718 return;
719
720 /* If this isn't a procedure something has gone horribly wrong. */
721 gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
722
723 /* Remember the current namespace. */
724 old_ns = gfc_current_ns;
725
726 gfc_current_ns = ns;
727
728 /* Add the main entry point to the list of entry points. */
729 el = gfc_get_entry_list ();
730 el->sym = ns->proc_name;
731 el->id = 0;
732 el->next = ns->entries;
733 ns->entries = el;
734 ns->proc_name->attr.entry = 1;
735
736 /* If it is a module function, it needs to be in the right namespace
737 so that gfc_get_fake_result_decl can gather up the results. The
738 need for this arose in get_proc_name, where these beasts were
739 left in their own namespace, to keep prior references linked to
740 the entry declaration.*/
741 if (ns->proc_name->attr.function
742 && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
743 el->sym->ns = ns;
744
745 /* Do the same for entries where the master is not a module
746 procedure. These are retained in the module namespace because
747 of the module procedure declaration. */
748 for (el = el->next; el; el = el->next)
749 if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
750 && el->sym->attr.mod_proc)
751 el->sym->ns = ns;
752 el = ns->entries;
753
754 /* Add an entry statement for it. */
755 c = gfc_get_code (EXEC_ENTRY);
756 c->ext.entry = el;
757 c->next = ns->code;
758 ns->code = c;
759
760 /* Create a new symbol for the master function. */
761 /* Give the internal function a unique name (within this file).
762 Also include the function name so the user has some hope of figuring
763 out what is going on. */
764 snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
765 master_count++, ns->proc_name->name);
766 gfc_get_ha_symbol (name, &proc);
767 gcc_assert (proc != NULL);
768
769 gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
770 if (ns->proc_name->attr.subroutine)
771 gfc_add_subroutine (&proc->attr, proc->name, NULL);
772 else
773 {
774 gfc_symbol *sym;
775 gfc_typespec *ts, *fts;
776 gfc_array_spec *as, *fas;
777 gfc_add_function (&proc->attr, proc->name, NULL);
778 proc->result = proc;
779 fas = ns->entries->sym->as;
780 fas = fas ? fas : ns->entries->sym->result->as;
781 fts = &ns->entries->sym->result->ts;
782 if (fts->type == BT_UNKNOWN)
783 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
784 for (el = ns->entries->next; el; el = el->next)
785 {
786 ts = &el->sym->result->ts;
787 as = el->sym->as;
788 as = as ? as : el->sym->result->as;
789 if (ts->type == BT_UNKNOWN)
790 ts = gfc_get_default_type (el->sym->result->name, NULL);
791
792 if (! gfc_compare_types (ts, fts)
793 || (el->sym->result->attr.dimension
794 != ns->entries->sym->result->attr.dimension)
795 || (el->sym->result->attr.pointer
796 != ns->entries->sym->result->attr.pointer))
797 break;
798 else if (as && fas && ns->entries->sym->result != el->sym->result
799 && gfc_compare_array_spec (as, fas) == 0)
800 gfc_error ("Function %s at %L has entries with mismatched "
801 "array specifications", ns->entries->sym->name,
802 &ns->entries->sym->declared_at);
803 /* The characteristics need to match and thus both need to have
804 the same string length, i.e. both len=*, or both len=4.
805 Having both len=<variable> is also possible, but difficult to
806 check at compile time. */
807 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
808 && (((ts->u.cl->length && !fts->u.cl->length)
809 ||(!ts->u.cl->length && fts->u.cl->length))
810 || (ts->u.cl->length
811 && ts->u.cl->length->expr_type
812 != fts->u.cl->length->expr_type)
813 || (ts->u.cl->length
814 && ts->u.cl->length->expr_type == EXPR_CONSTANT
815 && mpz_cmp (ts->u.cl->length->value.integer,
816 fts->u.cl->length->value.integer) != 0)))
817 gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
818 "entries returning variables of different "
819 "string lengths", ns->entries->sym->name,
820 &ns->entries->sym->declared_at);
821 }
822
823 if (el == NULL)
824 {
825 sym = ns->entries->sym->result;
826 /* All result types the same. */
827 proc->ts = *fts;
828 if (sym->attr.dimension)
829 gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
830 if (sym->attr.pointer)
831 gfc_add_pointer (&proc->attr, NULL);
832 }
833 else
834 {
835 /* Otherwise the result will be passed through a union by
836 reference. */
837 proc->attr.mixed_entry_master = 1;
838 for (el = ns->entries; el; el = el->next)
839 {
840 sym = el->sym->result;
841 if (sym->attr.dimension)
842 {
843 if (el == ns->entries)
844 gfc_error ("FUNCTION result %s cannot be an array in "
845 "FUNCTION %s at %L", sym->name,
846 ns->entries->sym->name, &sym->declared_at);
847 else
848 gfc_error ("ENTRY result %s cannot be an array in "
849 "FUNCTION %s at %L", sym->name,
850 ns->entries->sym->name, &sym->declared_at);
851 }
852 else if (sym->attr.pointer)
853 {
854 if (el == ns->entries)
855 gfc_error ("FUNCTION result %s cannot be a POINTER in "
856 "FUNCTION %s at %L", sym->name,
857 ns->entries->sym->name, &sym->declared_at);
858 else
859 gfc_error ("ENTRY result %s cannot be a POINTER in "
860 "FUNCTION %s at %L", sym->name,
861 ns->entries->sym->name, &sym->declared_at);
862 }
863 else
864 {
865 ts = &sym->ts;
866 if (ts->type == BT_UNKNOWN)
867 ts = gfc_get_default_type (sym->name, NULL);
868 switch (ts->type)
869 {
870 case BT_INTEGER:
871 if (ts->kind == gfc_default_integer_kind)
872 sym = NULL;
873 break;
874 case BT_REAL:
875 if (ts->kind == gfc_default_real_kind
876 || ts->kind == gfc_default_double_kind)
877 sym = NULL;
878 break;
879 case BT_COMPLEX:
880 if (ts->kind == gfc_default_complex_kind)
881 sym = NULL;
882 break;
883 case BT_LOGICAL:
884 if (ts->kind == gfc_default_logical_kind)
885 sym = NULL;
886 break;
887 case BT_UNKNOWN:
888 /* We will issue error elsewhere. */
889 sym = NULL;
890 break;
891 default:
892 break;
893 }
894 if (sym)
895 {
896 if (el == ns->entries)
897 gfc_error ("FUNCTION result %s cannot be of type %s "
898 "in FUNCTION %s at %L", sym->name,
899 gfc_typename (ts), ns->entries->sym->name,
900 &sym->declared_at);
901 else
902 gfc_error ("ENTRY result %s cannot be of type %s "
903 "in FUNCTION %s at %L", sym->name,
904 gfc_typename (ts), ns->entries->sym->name,
905 &sym->declared_at);
906 }
907 }
908 }
909 }
910 }
911 proc->attr.access = ACCESS_PRIVATE;
912 proc->attr.entry_master = 1;
913
914 /* Merge all the entry point arguments. */
915 for (el = ns->entries; el; el = el->next)
916 merge_argument_lists (proc, el->sym->formal);
917
918 /* Check the master formal arguments for any that are not
919 present in all entry points. */
920 for (el = ns->entries; el; el = el->next)
921 check_argument_lists (proc, el->sym->formal);
922
923 /* Use the master function for the function body. */
924 ns->proc_name = proc;
925
926 /* Finalize the new symbols. */
927 gfc_commit_symbols ();
928
929 /* Restore the original namespace. */
930 gfc_current_ns = old_ns;
931 }
932
933
934 /* Resolve common variables. */
935 static void
936 resolve_common_vars (gfc_common_head *common_block, bool named_common)
937 {
938 gfc_symbol *csym = common_block->head;
939
940 for (; csym; csym = csym->common_next)
941 {
942 /* gfc_add_in_common may have been called before, but the reported errors
943 have been ignored to continue parsing.
944 We do the checks again here. */
945 if (!csym->attr.use_assoc)
946 {
947 gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
948 gfc_notify_std (GFC_STD_F2018_OBS, "COMMON block at %L",
949 &common_block->where);
950 }
951
952 if (csym->value || csym->attr.data)
953 {
954 if (!csym->ns->is_block_data)
955 gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
956 "but only in BLOCK DATA initialization is "
957 "allowed", csym->name, &csym->declared_at);
958 else if (!named_common)
959 gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
960 "in a blank COMMON but initialization is only "
961 "allowed in named common blocks", csym->name,
962 &csym->declared_at);
963 }
964
965 if (UNLIMITED_POLY (csym))
966 gfc_error_now ("%qs in cannot appear in COMMON at %L "
967 "[F2008:C5100]", csym->name, &csym->declared_at);
968
969 if (csym->ts.type != BT_DERIVED)
970 continue;
971
972 if (!(csym->ts.u.derived->attr.sequence
973 || csym->ts.u.derived->attr.is_bind_c))
974 gfc_error_now ("Derived type variable %qs in COMMON at %L "
975 "has neither the SEQUENCE nor the BIND(C) "
976 "attribute", csym->name, &csym->declared_at);
977 if (csym->ts.u.derived->attr.alloc_comp)
978 gfc_error_now ("Derived type variable %qs in COMMON at %L "
979 "has an ultimate component that is "
980 "allocatable", csym->name, &csym->declared_at);
981 if (gfc_has_default_initializer (csym->ts.u.derived))
982 gfc_error_now ("Derived type variable %qs in COMMON at %L "
983 "may not have default initializer", csym->name,
984 &csym->declared_at);
985
986 if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
987 gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
988 }
989 }
990
991 /* Resolve common blocks. */
992 static void
993 resolve_common_blocks (gfc_symtree *common_root)
994 {
995 gfc_symbol *sym;
996 gfc_gsymbol * gsym;
997
998 if (common_root == NULL)
999 return;
1000
1001 if (common_root->left)
1002 resolve_common_blocks (common_root->left);
1003 if (common_root->right)
1004 resolve_common_blocks (common_root->right);
1005
1006 resolve_common_vars (common_root->n.common, true);
1007
1008 /* The common name is a global name - in Fortran 2003 also if it has a
1009 C binding name, since Fortran 2008 only the C binding name is a global
1010 identifier. */
1011 if (!common_root->n.common->binding_label
1012 || gfc_notification_std (GFC_STD_F2008))
1013 {
1014 gsym = gfc_find_gsymbol (gfc_gsym_root,
1015 common_root->n.common->name);
1016
1017 if (gsym && gfc_notification_std (GFC_STD_F2008)
1018 && gsym->type == GSYM_COMMON
1019 && ((common_root->n.common->binding_label
1020 && (!gsym->binding_label
1021 || strcmp (common_root->n.common->binding_label,
1022 gsym->binding_label) != 0))
1023 || (!common_root->n.common->binding_label
1024 && gsym->binding_label)))
1025 {
1026 gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
1027 "identifier and must thus have the same binding name "
1028 "as the same-named COMMON block at %L: %s vs %s",
1029 common_root->n.common->name, &common_root->n.common->where,
1030 &gsym->where,
1031 common_root->n.common->binding_label
1032 ? common_root->n.common->binding_label : "(blank)",
1033 gsym->binding_label ? gsym->binding_label : "(blank)");
1034 return;
1035 }
1036
1037 if (gsym && gsym->type != GSYM_COMMON
1038 && !common_root->n.common->binding_label)
1039 {
1040 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1041 "as entity at %L",
1042 common_root->n.common->name, &common_root->n.common->where,
1043 &gsym->where);
1044 return;
1045 }
1046 if (gsym && gsym->type != GSYM_COMMON)
1047 {
1048 gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
1049 "%L sharing the identifier with global non-COMMON-block "
1050 "entity at %L", common_root->n.common->name,
1051 &common_root->n.common->where, &gsym->where);
1052 return;
1053 }
1054 if (!gsym)
1055 {
1056 gsym = gfc_get_gsymbol (common_root->n.common->name, false);
1057 gsym->type = GSYM_COMMON;
1058 gsym->where = common_root->n.common->where;
1059 gsym->defined = 1;
1060 }
1061 gsym->used = 1;
1062 }
1063
1064 if (common_root->n.common->binding_label)
1065 {
1066 gsym = gfc_find_gsymbol (gfc_gsym_root,
1067 common_root->n.common->binding_label);
1068 if (gsym && gsym->type != GSYM_COMMON)
1069 {
1070 gfc_error ("COMMON block at %L with binding label %qs uses the same "
1071 "global identifier as entity at %L",
1072 &common_root->n.common->where,
1073 common_root->n.common->binding_label, &gsym->where);
1074 return;
1075 }
1076 if (!gsym)
1077 {
1078 gsym = gfc_get_gsymbol (common_root->n.common->binding_label, true);
1079 gsym->type = GSYM_COMMON;
1080 gsym->where = common_root->n.common->where;
1081 gsym->defined = 1;
1082 }
1083 gsym->used = 1;
1084 }
1085
1086 gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
1087 if (sym == NULL)
1088 return;
1089
1090 if (sym->attr.flavor == FL_PARAMETER)
1091 gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
1092 sym->name, &common_root->n.common->where, &sym->declared_at);
1093
1094 if (sym->attr.external)
1095 gfc_error ("COMMON block %qs at %L cannot have the EXTERNAL attribute",
1096 sym->name, &common_root->n.common->where);
1097
1098 if (sym->attr.intrinsic)
1099 gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
1100 sym->name, &common_root->n.common->where);
1101 else if (sym->attr.result
1102 || gfc_is_function_return_value (sym, gfc_current_ns))
1103 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1104 "that is also a function result", sym->name,
1105 &common_root->n.common->where);
1106 else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
1107 && sym->attr.proc != PROC_ST_FUNCTION)
1108 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1109 "that is also a global procedure", sym->name,
1110 &common_root->n.common->where);
1111 }
1112
1113
1114 /* Resolve contained function types. Because contained functions can call one
1115 another, they have to be worked out before any of the contained procedures
1116 can be resolved.
1117
1118 The good news is that if a function doesn't already have a type, the only
1119 way it can get one is through an IMPLICIT type or a RESULT variable, because
1120 by definition contained functions are contained namespace they're contained
1121 in, not in a sibling or parent namespace. */
1122
1123 static void
1124 resolve_contained_functions (gfc_namespace *ns)
1125 {
1126 gfc_namespace *child;
1127 gfc_entry_list *el;
1128
1129 resolve_formal_arglists (ns);
1130
1131 for (child = ns->contained; child; child = child->sibling)
1132 {
1133 /* Resolve alternate entry points first. */
1134 resolve_entries (child);
1135
1136 /* Then check function return types. */
1137 resolve_contained_fntype (child->proc_name, child);
1138 for (el = child->entries; el; el = el->next)
1139 resolve_contained_fntype (el->sym, child);
1140 }
1141 }
1142
1143
1144
1145 /* A Parameterized Derived Type constructor must contain values for
1146 the PDT KIND parameters or they must have a default initializer.
1147 Go through the constructor picking out the KIND expressions,
1148 storing them in 'param_list' and then call gfc_get_pdt_instance
1149 to obtain the PDT instance. */
1150
1151 static gfc_actual_arglist *param_list, *param_tail, *param;
1152
1153 static bool
1154 get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
1155 {
1156 param = gfc_get_actual_arglist ();
1157 if (!param_list)
1158 param_list = param_tail = param;
1159 else
1160 {
1161 param_tail->next = param;
1162 param_tail = param_tail->next;
1163 }
1164
1165 param_tail->name = c->name;
1166 if (expr)
1167 param_tail->expr = gfc_copy_expr (expr);
1168 else if (c->initializer)
1169 param_tail->expr = gfc_copy_expr (c->initializer);
1170 else
1171 {
1172 param_tail->spec_type = SPEC_ASSUMED;
1173 if (c->attr.pdt_kind)
1174 {
1175 gfc_error ("The KIND parameter %qs in the PDT constructor "
1176 "at %C has no value", param->name);
1177 return false;
1178 }
1179 }
1180
1181 return true;
1182 }
1183
1184 static bool
1185 get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
1186 gfc_symbol *derived)
1187 {
1188 gfc_constructor *cons = NULL;
1189 gfc_component *comp;
1190 bool t = true;
1191
1192 if (expr && expr->expr_type == EXPR_STRUCTURE)
1193 cons = gfc_constructor_first (expr->value.constructor);
1194 else if (constr)
1195 cons = *constr;
1196 gcc_assert (cons);
1197
1198 comp = derived->components;
1199
1200 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1201 {
1202 if (cons->expr
1203 && cons->expr->expr_type == EXPR_STRUCTURE
1204 && comp->ts.type == BT_DERIVED)
1205 {
1206 t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
1207 if (!t)
1208 return t;
1209 }
1210 else if (comp->ts.type == BT_DERIVED)
1211 {
1212 t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
1213 if (!t)
1214 return t;
1215 }
1216 else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
1217 && derived->attr.pdt_template)
1218 {
1219 t = get_pdt_spec_expr (comp, cons->expr);
1220 if (!t)
1221 return t;
1222 }
1223 }
1224 return t;
1225 }
1226
1227
1228 static bool resolve_fl_derived0 (gfc_symbol *sym);
1229 static bool resolve_fl_struct (gfc_symbol *sym);
1230
1231
1232 /* Resolve all of the elements of a structure constructor and make sure that
1233 the types are correct. The 'init' flag indicates that the given
1234 constructor is an initializer. */
1235
1236 static bool
1237 resolve_structure_cons (gfc_expr *expr, int init)
1238 {
1239 gfc_constructor *cons;
1240 gfc_component *comp;
1241 bool t;
1242 symbol_attribute a;
1243
1244 t = true;
1245
1246 if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
1247 {
1248 if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
1249 resolve_fl_derived0 (expr->ts.u.derived);
1250 else
1251 resolve_fl_struct (expr->ts.u.derived);
1252
1253 /* If this is a Parameterized Derived Type template, find the
1254 instance corresponding to the PDT kind parameters. */
1255 if (expr->ts.u.derived->attr.pdt_template)
1256 {
1257 param_list = NULL;
1258 t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
1259 if (!t)
1260 return t;
1261 gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
1262
1263 expr->param_list = gfc_copy_actual_arglist (param_list);
1264
1265 if (param_list)
1266 gfc_free_actual_arglist (param_list);
1267
1268 if (!expr->ts.u.derived->attr.pdt_type)
1269 return false;
1270 }
1271 }
1272
1273 cons = gfc_constructor_first (expr->value.constructor);
1274
1275 /* A constructor may have references if it is the result of substituting a
1276 parameter variable. In this case we just pull out the component we
1277 want. */
1278 if (expr->ref)
1279 comp = expr->ref->u.c.sym->components;
1280 else
1281 comp = expr->ts.u.derived->components;
1282
1283 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1284 {
1285 int rank;
1286
1287 if (!cons->expr)
1288 continue;
1289
1290 /* Unions use an EXPR_NULL contrived expression to tell the translation
1291 phase to generate an initializer of the appropriate length.
1292 Ignore it here. */
1293 if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
1294 continue;
1295
1296 if (!gfc_resolve_expr (cons->expr))
1297 {
1298 t = false;
1299 continue;
1300 }
1301
1302 rank = comp->as ? comp->as->rank : 0;
1303 if (comp->ts.type == BT_CLASS
1304 && !comp->ts.u.derived->attr.unlimited_polymorphic
1305 && CLASS_DATA (comp)->as)
1306 rank = CLASS_DATA (comp)->as->rank;
1307
1308 if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
1309 && (comp->attr.allocatable || cons->expr->rank))
1310 {
1311 gfc_error ("The rank of the element in the structure "
1312 "constructor at %L does not match that of the "
1313 "component (%d/%d)", &cons->expr->where,
1314 cons->expr->rank, rank);
1315 t = false;
1316 }
1317
1318 /* If we don't have the right type, try to convert it. */
1319
1320 if (!comp->attr.proc_pointer &&
1321 !gfc_compare_types (&cons->expr->ts, &comp->ts))
1322 {
1323 if (strcmp (comp->name, "_extends") == 0)
1324 {
1325 /* Can afford to be brutal with the _extends initializer.
1326 The derived type can get lost because it is PRIVATE
1327 but it is not usage constrained by the standard. */
1328 cons->expr->ts = comp->ts;
1329 }
1330 else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
1331 {
1332 gfc_error ("The element in the structure constructor at %L, "
1333 "for pointer component %qs, is %s but should be %s",
1334 &cons->expr->where, comp->name,
1335 gfc_basic_typename (cons->expr->ts.type),
1336 gfc_basic_typename (comp->ts.type));
1337 t = false;
1338 }
1339 else
1340 {
1341 bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
1342 if (t)
1343 t = t2;
1344 }
1345 }
1346
1347 /* For strings, the length of the constructor should be the same as
1348 the one of the structure, ensure this if the lengths are known at
1349 compile time and when we are dealing with PARAMETER or structure
1350 constructors. */
1351 if (cons->expr->ts.type == BT_CHARACTER && comp->ts.u.cl
1352 && comp->ts.u.cl->length
1353 && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
1354 && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
1355 && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
1356 && cons->expr->rank != 0
1357 && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
1358 comp->ts.u.cl->length->value.integer) != 0)
1359 {
1360 if (cons->expr->expr_type == EXPR_VARIABLE
1361 && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
1362 {
1363 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1364 to make use of the gfc_resolve_character_array_constructor
1365 machinery. The expression is later simplified away to
1366 an array of string literals. */
1367 gfc_expr *para = cons->expr;
1368 cons->expr = gfc_get_expr ();
1369 cons->expr->ts = para->ts;
1370 cons->expr->where = para->where;
1371 cons->expr->expr_type = EXPR_ARRAY;
1372 cons->expr->rank = para->rank;
1373 cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
1374 gfc_constructor_append_expr (&cons->expr->value.constructor,
1375 para, &cons->expr->where);
1376 }
1377
1378 if (cons->expr->expr_type == EXPR_ARRAY)
1379 {
1380 /* Rely on the cleanup of the namespace to deal correctly with
1381 the old charlen. (There was a block here that attempted to
1382 remove the charlen but broke the chain in so doing.) */
1383 cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1384 cons->expr->ts.u.cl->length_from_typespec = true;
1385 cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
1386 gfc_resolve_character_array_constructor (cons->expr);
1387 }
1388 }
1389
1390 if (cons->expr->expr_type == EXPR_NULL
1391 && !(comp->attr.pointer || comp->attr.allocatable
1392 || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
1393 || (comp->ts.type == BT_CLASS
1394 && (CLASS_DATA (comp)->attr.class_pointer
1395 || CLASS_DATA (comp)->attr.allocatable))))
1396 {
1397 t = false;
1398 gfc_error ("The NULL in the structure constructor at %L is "
1399 "being applied to component %qs, which is neither "
1400 "a POINTER nor ALLOCATABLE", &cons->expr->where,
1401 comp->name);
1402 }
1403
1404 if (comp->attr.proc_pointer && comp->ts.interface)
1405 {
1406 /* Check procedure pointer interface. */
1407 gfc_symbol *s2 = NULL;
1408 gfc_component *c2;
1409 const char *name;
1410 char err[200];
1411
1412 c2 = gfc_get_proc_ptr_comp (cons->expr);
1413 if (c2)
1414 {
1415 s2 = c2->ts.interface;
1416 name = c2->name;
1417 }
1418 else if (cons->expr->expr_type == EXPR_FUNCTION)
1419 {
1420 s2 = cons->expr->symtree->n.sym->result;
1421 name = cons->expr->symtree->n.sym->result->name;
1422 }
1423 else if (cons->expr->expr_type != EXPR_NULL)
1424 {
1425 s2 = cons->expr->symtree->n.sym;
1426 name = cons->expr->symtree->n.sym->name;
1427 }
1428
1429 if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
1430 err, sizeof (err), NULL, NULL))
1431 {
1432 gfc_error_opt (0, "Interface mismatch for procedure-pointer "
1433 "component %qs in structure constructor at %L:"
1434 " %s", comp->name, &cons->expr->where, err);
1435 return false;
1436 }
1437 }
1438
1439 if (!comp->attr.pointer || comp->attr.proc_pointer
1440 || cons->expr->expr_type == EXPR_NULL)
1441 continue;
1442
1443 a = gfc_expr_attr (cons->expr);
1444
1445 if (!a.pointer && !a.target)
1446 {
1447 t = false;
1448 gfc_error ("The element in the structure constructor at %L, "
1449 "for pointer component %qs should be a POINTER or "
1450 "a TARGET", &cons->expr->where, comp->name);
1451 }
1452
1453 if (init)
1454 {
1455 /* F08:C461. Additional checks for pointer initialization. */
1456 if (a.allocatable)
1457 {
1458 t = false;
1459 gfc_error ("Pointer initialization target at %L "
1460 "must not be ALLOCATABLE", &cons->expr->where);
1461 }
1462 if (!a.save)
1463 {
1464 t = false;
1465 gfc_error ("Pointer initialization target at %L "
1466 "must have the SAVE attribute", &cons->expr->where);
1467 }
1468 }
1469
1470 /* F2003, C1272 (3). */
1471 bool impure = cons->expr->expr_type == EXPR_VARIABLE
1472 && (gfc_impure_variable (cons->expr->symtree->n.sym)
1473 || gfc_is_coindexed (cons->expr));
1474 if (impure && gfc_pure (NULL))
1475 {
1476 t = false;
1477 gfc_error ("Invalid expression in the structure constructor for "
1478 "pointer component %qs at %L in PURE procedure",
1479 comp->name, &cons->expr->where);
1480 }
1481
1482 if (impure)
1483 gfc_unset_implicit_pure (NULL);
1484 }
1485
1486 return t;
1487 }
1488
1489
1490 /****************** Expression name resolution ******************/
1491
1492 /* Returns 0 if a symbol was not declared with a type or
1493 attribute declaration statement, nonzero otherwise. */
1494
1495 static int
1496 was_declared (gfc_symbol *sym)
1497 {
1498 symbol_attribute a;
1499
1500 a = sym->attr;
1501
1502 if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
1503 return 1;
1504
1505 if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
1506 || a.optional || a.pointer || a.save || a.target || a.volatile_
1507 || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
1508 || a.asynchronous || a.codimension)
1509 return 1;
1510
1511 return 0;
1512 }
1513
1514
1515 /* Determine if a symbol is generic or not. */
1516
1517 static int
1518 generic_sym (gfc_symbol *sym)
1519 {
1520 gfc_symbol *s;
1521
1522 if (sym->attr.generic ||
1523 (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
1524 return 1;
1525
1526 if (was_declared (sym) || sym->ns->parent == NULL)
1527 return 0;
1528
1529 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1530
1531 if (s != NULL)
1532 {
1533 if (s == sym)
1534 return 0;
1535 else
1536 return generic_sym (s);
1537 }
1538
1539 return 0;
1540 }
1541
1542
1543 /* Determine if a symbol is specific or not. */
1544
1545 static int
1546 specific_sym (gfc_symbol *sym)
1547 {
1548 gfc_symbol *s;
1549
1550 if (sym->attr.if_source == IFSRC_IFBODY
1551 || sym->attr.proc == PROC_MODULE
1552 || sym->attr.proc == PROC_INTERNAL
1553 || sym->attr.proc == PROC_ST_FUNCTION
1554 || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1555 || sym->attr.external)
1556 return 1;
1557
1558 if (was_declared (sym) || sym->ns->parent == NULL)
1559 return 0;
1560
1561 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1562
1563 return (s == NULL) ? 0 : specific_sym (s);
1564 }
1565
1566
1567 /* Figure out if the procedure is specific, generic or unknown. */
1568
1569 enum proc_type
1570 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
1571
1572 static proc_type
1573 procedure_kind (gfc_symbol *sym)
1574 {
1575 if (generic_sym (sym))
1576 return PTYPE_GENERIC;
1577
1578 if (specific_sym (sym))
1579 return PTYPE_SPECIFIC;
1580
1581 return PTYPE_UNKNOWN;
1582 }
1583
1584 /* Check references to assumed size arrays. The flag need_full_assumed_size
1585 is nonzero when matching actual arguments. */
1586
1587 static int need_full_assumed_size = 0;
1588
1589 static bool
1590 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1591 {
1592 if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1593 return false;
1594
1595 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1596 What should it be? */
1597 if (e->ref && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1598 && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1599 && (e->ref->u.ar.type == AR_FULL))
1600 {
1601 gfc_error ("The upper bound in the last dimension must "
1602 "appear in the reference to the assumed size "
1603 "array %qs at %L", sym->name, &e->where);
1604 return true;
1605 }
1606 return false;
1607 }
1608
1609
1610 /* Look for bad assumed size array references in argument expressions
1611 of elemental and array valued intrinsic procedures. Since this is
1612 called from procedure resolution functions, it only recurses at
1613 operators. */
1614
1615 static bool
1616 resolve_assumed_size_actual (gfc_expr *e)
1617 {
1618 if (e == NULL)
1619 return false;
1620
1621 switch (e->expr_type)
1622 {
1623 case EXPR_VARIABLE:
1624 if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1625 return true;
1626 break;
1627
1628 case EXPR_OP:
1629 if (resolve_assumed_size_actual (e->value.op.op1)
1630 || resolve_assumed_size_actual (e->value.op.op2))
1631 return true;
1632 break;
1633
1634 default:
1635 break;
1636 }
1637 return false;
1638 }
1639
1640
1641 /* Check a generic procedure, passed as an actual argument, to see if
1642 there is a matching specific name. If none, it is an error, and if
1643 more than one, the reference is ambiguous. */
1644 static int
1645 count_specific_procs (gfc_expr *e)
1646 {
1647 int n;
1648 gfc_interface *p;
1649 gfc_symbol *sym;
1650
1651 n = 0;
1652 sym = e->symtree->n.sym;
1653
1654 for (p = sym->generic; p; p = p->next)
1655 if (strcmp (sym->name, p->sym->name) == 0)
1656 {
1657 e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1658 sym->name);
1659 n++;
1660 }
1661
1662 if (n > 1)
1663 gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
1664 &e->where);
1665
1666 if (n == 0)
1667 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1668 "argument at %L", sym->name, &e->where);
1669
1670 return n;
1671 }
1672
1673
1674 /* See if a call to sym could possibly be a not allowed RECURSION because of
1675 a missing RECURSIVE declaration. This means that either sym is the current
1676 context itself, or sym is the parent of a contained procedure calling its
1677 non-RECURSIVE containing procedure.
1678 This also works if sym is an ENTRY. */
1679
1680 static bool
1681 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1682 {
1683 gfc_symbol* proc_sym;
1684 gfc_symbol* context_proc;
1685 gfc_namespace* real_context;
1686
1687 if (sym->attr.flavor == FL_PROGRAM
1688 || gfc_fl_struct (sym->attr.flavor))
1689 return false;
1690
1691 /* If we've got an ENTRY, find real procedure. */
1692 if (sym->attr.entry && sym->ns->entries)
1693 proc_sym = sym->ns->entries->sym;
1694 else
1695 proc_sym = sym;
1696
1697 /* If sym is RECURSIVE, all is well of course. */
1698 if (proc_sym->attr.recursive || flag_recursive)
1699 return false;
1700
1701 /* Find the context procedure's "real" symbol if it has entries.
1702 We look for a procedure symbol, so recurse on the parents if we don't
1703 find one (like in case of a BLOCK construct). */
1704 for (real_context = context; ; real_context = real_context->parent)
1705 {
1706 /* We should find something, eventually! */
1707 gcc_assert (real_context);
1708
1709 context_proc = (real_context->entries ? real_context->entries->sym
1710 : real_context->proc_name);
1711
1712 /* In some special cases, there may not be a proc_name, like for this
1713 invalid code:
1714 real(bad_kind()) function foo () ...
1715 when checking the call to bad_kind ().
1716 In these cases, we simply return here and assume that the
1717 call is ok. */
1718 if (!context_proc)
1719 return false;
1720
1721 if (context_proc->attr.flavor != FL_LABEL)
1722 break;
1723 }
1724
1725 /* A call from sym's body to itself is recursion, of course. */
1726 if (context_proc == proc_sym)
1727 return true;
1728
1729 /* The same is true if context is a contained procedure and sym the
1730 containing one. */
1731 if (context_proc->attr.contained)
1732 {
1733 gfc_symbol* parent_proc;
1734
1735 gcc_assert (context->parent);
1736 parent_proc = (context->parent->entries ? context->parent->entries->sym
1737 : context->parent->proc_name);
1738
1739 if (parent_proc == proc_sym)
1740 return true;
1741 }
1742
1743 return false;
1744 }
1745
1746
1747 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1748 its typespec and formal argument list. */
1749
1750 bool
1751 gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
1752 {
1753 gfc_intrinsic_sym* isym = NULL;
1754 const char* symstd;
1755
1756 if (sym->resolve_symbol_called >= 2)
1757 return true;
1758
1759 sym->resolve_symbol_called = 2;
1760
1761 /* Already resolved. */
1762 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1763 return true;
1764
1765 /* We already know this one is an intrinsic, so we don't call
1766 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1767 gfc_find_subroutine directly to check whether it is a function or
1768 subroutine. */
1769
1770 if (sym->intmod_sym_id && sym->attr.subroutine)
1771 {
1772 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1773 isym = gfc_intrinsic_subroutine_by_id (id);
1774 }
1775 else if (sym->intmod_sym_id)
1776 {
1777 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1778 isym = gfc_intrinsic_function_by_id (id);
1779 }
1780 else if (!sym->attr.subroutine)
1781 isym = gfc_find_function (sym->name);
1782
1783 if (isym && !sym->attr.subroutine)
1784 {
1785 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1786 && !sym->attr.implicit_type)
1787 gfc_warning (OPT_Wsurprising,
1788 "Type specified for intrinsic function %qs at %L is"
1789 " ignored", sym->name, &sym->declared_at);
1790
1791 if (!sym->attr.function &&
1792 !gfc_add_function(&sym->attr, sym->name, loc))
1793 return false;
1794
1795 sym->ts = isym->ts;
1796 }
1797 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1798 {
1799 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1800 {
1801 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1802 " specifier", sym->name, &sym->declared_at);
1803 return false;
1804 }
1805
1806 if (!sym->attr.subroutine &&
1807 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1808 return false;
1809 }
1810 else
1811 {
1812 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1813 &sym->declared_at);
1814 return false;
1815 }
1816
1817 gfc_copy_formal_args_intr (sym, isym, NULL);
1818
1819 sym->attr.pure = isym->pure;
1820 sym->attr.elemental = isym->elemental;
1821
1822 /* Check it is actually available in the standard settings. */
1823 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1824 {
1825 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1826 "available in the current standard settings but %s. Use "
1827 "an appropriate %<-std=*%> option or enable "
1828 "%<-fall-intrinsics%> in order to use it.",
1829 sym->name, &sym->declared_at, symstd);
1830 return false;
1831 }
1832
1833 return true;
1834 }
1835
1836
1837 /* Resolve a procedure expression, like passing it to a called procedure or as
1838 RHS for a procedure pointer assignment. */
1839
1840 static bool
1841 resolve_procedure_expression (gfc_expr* expr)
1842 {
1843 gfc_symbol* sym;
1844
1845 if (expr->expr_type != EXPR_VARIABLE)
1846 return true;
1847 gcc_assert (expr->symtree);
1848
1849 sym = expr->symtree->n.sym;
1850
1851 if (sym->attr.intrinsic)
1852 gfc_resolve_intrinsic (sym, &expr->where);
1853
1854 if (sym->attr.flavor != FL_PROCEDURE
1855 || (sym->attr.function && sym->result == sym))
1856 return true;
1857
1858 /* A non-RECURSIVE procedure that is used as procedure expression within its
1859 own body is in danger of being called recursively. */
1860 if (is_illegal_recursion (sym, gfc_current_ns))
1861 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1862 " itself recursively. Declare it RECURSIVE or use"
1863 " %<-frecursive%>", sym->name, &expr->where);
1864
1865 return true;
1866 }
1867
1868
1869 /* Check that name is not a derived type. */
1870
1871 static bool
1872 is_dt_name (const char *name)
1873 {
1874 gfc_symbol *dt_list, *dt_first;
1875
1876 dt_list = dt_first = gfc_derived_types;
1877 for (; dt_list; dt_list = dt_list->dt_next)
1878 {
1879 if (strcmp(dt_list->name, name) == 0)
1880 return true;
1881 if (dt_first == dt_list->dt_next)
1882 break;
1883 }
1884 return false;
1885 }
1886
1887
1888 /* Resolve an actual argument list. Most of the time, this is just
1889 resolving the expressions in the list.
1890 The exception is that we sometimes have to decide whether arguments
1891 that look like procedure arguments are really simple variable
1892 references. */
1893
1894 static bool
1895 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1896 bool no_formal_args)
1897 {
1898 gfc_symbol *sym;
1899 gfc_symtree *parent_st;
1900 gfc_expr *e;
1901 gfc_component *comp;
1902 int save_need_full_assumed_size;
1903 bool return_value = false;
1904 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1905
1906 actual_arg = true;
1907 first_actual_arg = true;
1908
1909 for (; arg; arg = arg->next)
1910 {
1911 e = arg->expr;
1912 if (e == NULL)
1913 {
1914 /* Check the label is a valid branching target. */
1915 if (arg->label)
1916 {
1917 if (arg->label->defined == ST_LABEL_UNKNOWN)
1918 {
1919 gfc_error ("Label %d referenced at %L is never defined",
1920 arg->label->value, &arg->label->where);
1921 goto cleanup;
1922 }
1923 }
1924 first_actual_arg = false;
1925 continue;
1926 }
1927
1928 if (e->expr_type == EXPR_VARIABLE
1929 && e->symtree->n.sym->attr.generic
1930 && no_formal_args
1931 && count_specific_procs (e) != 1)
1932 goto cleanup;
1933
1934 if (e->ts.type != BT_PROCEDURE)
1935 {
1936 save_need_full_assumed_size = need_full_assumed_size;
1937 if (e->expr_type != EXPR_VARIABLE)
1938 need_full_assumed_size = 0;
1939 if (!gfc_resolve_expr (e))
1940 goto cleanup;
1941 need_full_assumed_size = save_need_full_assumed_size;
1942 goto argument_list;
1943 }
1944
1945 /* See if the expression node should really be a variable reference. */
1946
1947 sym = e->symtree->n.sym;
1948
1949 if (sym->attr.flavor == FL_PROCEDURE && is_dt_name (sym->name))
1950 {
1951 gfc_error ("Derived type %qs is used as an actual "
1952 "argument at %L", sym->name, &e->where);
1953 goto cleanup;
1954 }
1955
1956 if (sym->attr.flavor == FL_PROCEDURE
1957 || sym->attr.intrinsic
1958 || sym->attr.external)
1959 {
1960 int actual_ok;
1961
1962 /* If a procedure is not already determined to be something else
1963 check if it is intrinsic. */
1964 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1965 sym->attr.intrinsic = 1;
1966
1967 if (sym->attr.proc == PROC_ST_FUNCTION)
1968 {
1969 gfc_error ("Statement function %qs at %L is not allowed as an "
1970 "actual argument", sym->name, &e->where);
1971 }
1972
1973 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1974 sym->attr.subroutine);
1975 if (sym->attr.intrinsic && actual_ok == 0)
1976 {
1977 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1978 "actual argument", sym->name, &e->where);
1979 }
1980
1981 if (sym->attr.contained && !sym->attr.use_assoc
1982 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1983 {
1984 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1985 " used as actual argument at %L",
1986 sym->name, &e->where))
1987 goto cleanup;
1988 }
1989
1990 if (sym->attr.elemental && !sym->attr.intrinsic)
1991 {
1992 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1993 "allowed as an actual argument at %L", sym->name,
1994 &e->where);
1995 }
1996
1997 /* Check if a generic interface has a specific procedure
1998 with the same name before emitting an error. */
1999 if (sym->attr.generic && count_specific_procs (e) != 1)
2000 goto cleanup;
2001
2002 /* Just in case a specific was found for the expression. */
2003 sym = e->symtree->n.sym;
2004
2005 /* If the symbol is the function that names the current (or
2006 parent) scope, then we really have a variable reference. */
2007
2008 if (gfc_is_function_return_value (sym, sym->ns))
2009 goto got_variable;
2010
2011 /* If all else fails, see if we have a specific intrinsic. */
2012 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
2013 {
2014 gfc_intrinsic_sym *isym;
2015
2016 isym = gfc_find_function (sym->name);
2017 if (isym == NULL || !isym->specific)
2018 {
2019 gfc_error ("Unable to find a specific INTRINSIC procedure "
2020 "for the reference %qs at %L", sym->name,
2021 &e->where);
2022 goto cleanup;
2023 }
2024 sym->ts = isym->ts;
2025 sym->attr.intrinsic = 1;
2026 sym->attr.function = 1;
2027 }
2028
2029 if (!gfc_resolve_expr (e))
2030 goto cleanup;
2031 goto argument_list;
2032 }
2033
2034 /* See if the name is a module procedure in a parent unit. */
2035
2036 if (was_declared (sym) || sym->ns->parent == NULL)
2037 goto got_variable;
2038
2039 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2040 {
2041 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2042 goto cleanup;
2043 }
2044
2045 if (parent_st == NULL)
2046 goto got_variable;
2047
2048 sym = parent_st->n.sym;
2049 e->symtree = parent_st; /* Point to the right thing. */
2050
2051 if (sym->attr.flavor == FL_PROCEDURE
2052 || sym->attr.intrinsic
2053 || sym->attr.external)
2054 {
2055 if (!gfc_resolve_expr (e))
2056 goto cleanup;
2057 goto argument_list;
2058 }
2059
2060 got_variable:
2061 e->expr_type = EXPR_VARIABLE;
2062 e->ts = sym->ts;
2063 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2064 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2065 && CLASS_DATA (sym)->as))
2066 {
2067 e->rank = sym->ts.type == BT_CLASS
2068 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2069 e->ref = gfc_get_ref ();
2070 e->ref->type = REF_ARRAY;
2071 e->ref->u.ar.type = AR_FULL;
2072 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2073 ? CLASS_DATA (sym)->as : sym->as;
2074 }
2075
2076 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2077 primary.c (match_actual_arg). If above code determines that it
2078 is a variable instead, it needs to be resolved as it was not
2079 done at the beginning of this function. */
2080 save_need_full_assumed_size = need_full_assumed_size;
2081 if (e->expr_type != EXPR_VARIABLE)
2082 need_full_assumed_size = 0;
2083 if (!gfc_resolve_expr (e))
2084 goto cleanup;
2085 need_full_assumed_size = save_need_full_assumed_size;
2086
2087 argument_list:
2088 /* Check argument list functions %VAL, %LOC and %REF. There is
2089 nothing to do for %REF. */
2090 if (arg->name && arg->name[0] == '%')
2091 {
2092 if (strcmp ("%VAL", arg->name) == 0)
2093 {
2094 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2095 {
2096 gfc_error ("By-value argument at %L is not of numeric "
2097 "type", &e->where);
2098 goto cleanup;
2099 }
2100
2101 if (e->rank)
2102 {
2103 gfc_error ("By-value argument at %L cannot be an array or "
2104 "an array section", &e->where);
2105 goto cleanup;
2106 }
2107
2108 /* Intrinsics are still PROC_UNKNOWN here. However,
2109 since same file external procedures are not resolvable
2110 in gfortran, it is a good deal easier to leave them to
2111 intrinsic.c. */
2112 if (ptype != PROC_UNKNOWN
2113 && ptype != PROC_DUMMY
2114 && ptype != PROC_EXTERNAL
2115 && ptype != PROC_MODULE)
2116 {
2117 gfc_error ("By-value argument at %L is not allowed "
2118 "in this context", &e->where);
2119 goto cleanup;
2120 }
2121 }
2122
2123 /* Statement functions have already been excluded above. */
2124 else if (strcmp ("%LOC", arg->name) == 0
2125 && e->ts.type == BT_PROCEDURE)
2126 {
2127 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2128 {
2129 gfc_error ("Passing internal procedure at %L by location "
2130 "not allowed", &e->where);
2131 goto cleanup;
2132 }
2133 }
2134 }
2135
2136 comp = gfc_get_proc_ptr_comp(e);
2137 if (e->expr_type == EXPR_VARIABLE
2138 && comp && comp->attr.elemental)
2139 {
2140 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2141 "allowed as an actual argument at %L", comp->name,
2142 &e->where);
2143 }
2144
2145 /* Fortran 2008, C1237. */
2146 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2147 && gfc_has_ultimate_pointer (e))
2148 {
2149 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2150 "component", &e->where);
2151 goto cleanup;
2152 }
2153
2154 first_actual_arg = false;
2155 }
2156
2157 return_value = true;
2158
2159 cleanup:
2160 actual_arg = actual_arg_sav;
2161 first_actual_arg = first_actual_arg_sav;
2162
2163 return return_value;
2164 }
2165
2166
2167 /* Do the checks of the actual argument list that are specific to elemental
2168 procedures. If called with c == NULL, we have a function, otherwise if
2169 expr == NULL, we have a subroutine. */
2170
2171 static bool
2172 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2173 {
2174 gfc_actual_arglist *arg0;
2175 gfc_actual_arglist *arg;
2176 gfc_symbol *esym = NULL;
2177 gfc_intrinsic_sym *isym = NULL;
2178 gfc_expr *e = NULL;
2179 gfc_intrinsic_arg *iformal = NULL;
2180 gfc_formal_arglist *eformal = NULL;
2181 bool formal_optional = false;
2182 bool set_by_optional = false;
2183 int i;
2184 int rank = 0;
2185
2186 /* Is this an elemental procedure? */
2187 if (expr && expr->value.function.actual != NULL)
2188 {
2189 if (expr->value.function.esym != NULL
2190 && expr->value.function.esym->attr.elemental)
2191 {
2192 arg0 = expr->value.function.actual;
2193 esym = expr->value.function.esym;
2194 }
2195 else if (expr->value.function.isym != NULL
2196 && expr->value.function.isym->elemental)
2197 {
2198 arg0 = expr->value.function.actual;
2199 isym = expr->value.function.isym;
2200 }
2201 else
2202 return true;
2203 }
2204 else if (c && c->ext.actual != NULL)
2205 {
2206 arg0 = c->ext.actual;
2207
2208 if (c->resolved_sym)
2209 esym = c->resolved_sym;
2210 else
2211 esym = c->symtree->n.sym;
2212 gcc_assert (esym);
2213
2214 if (!esym->attr.elemental)
2215 return true;
2216 }
2217 else
2218 return true;
2219
2220 /* The rank of an elemental is the rank of its array argument(s). */
2221 for (arg = arg0; arg; arg = arg->next)
2222 {
2223 if (arg->expr != NULL && arg->expr->rank != 0)
2224 {
2225 rank = arg->expr->rank;
2226 if (arg->expr->expr_type == EXPR_VARIABLE
2227 && arg->expr->symtree->n.sym->attr.optional)
2228 set_by_optional = true;
2229
2230 /* Function specific; set the result rank and shape. */
2231 if (expr)
2232 {
2233 expr->rank = rank;
2234 if (!expr->shape && arg->expr->shape)
2235 {
2236 expr->shape = gfc_get_shape (rank);
2237 for (i = 0; i < rank; i++)
2238 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2239 }
2240 }
2241 break;
2242 }
2243 }
2244
2245 /* If it is an array, it shall not be supplied as an actual argument
2246 to an elemental procedure unless an array of the same rank is supplied
2247 as an actual argument corresponding to a nonoptional dummy argument of
2248 that elemental procedure(12.4.1.5). */
2249 formal_optional = false;
2250 if (isym)
2251 iformal = isym->formal;
2252 else
2253 eformal = esym->formal;
2254
2255 for (arg = arg0; arg; arg = arg->next)
2256 {
2257 if (eformal)
2258 {
2259 if (eformal->sym && eformal->sym->attr.optional)
2260 formal_optional = true;
2261 eformal = eformal->next;
2262 }
2263 else if (isym && iformal)
2264 {
2265 if (iformal->optional)
2266 formal_optional = true;
2267 iformal = iformal->next;
2268 }
2269 else if (isym)
2270 formal_optional = true;
2271
2272 if (pedantic && arg->expr != NULL
2273 && arg->expr->expr_type == EXPR_VARIABLE
2274 && arg->expr->symtree->n.sym->attr.optional
2275 && formal_optional
2276 && arg->expr->rank
2277 && (set_by_optional || arg->expr->rank != rank)
2278 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2279 {
2280 gfc_warning (OPT_Wpedantic,
2281 "%qs at %L is an array and OPTIONAL; IF IT IS "
2282 "MISSING, it cannot be the actual argument of an "
2283 "ELEMENTAL procedure unless there is a non-optional "
2284 "argument with the same rank (12.4.1.5)",
2285 arg->expr->symtree->n.sym->name, &arg->expr->where);
2286 }
2287 }
2288
2289 for (arg = arg0; arg; arg = arg->next)
2290 {
2291 if (arg->expr == NULL || arg->expr->rank == 0)
2292 continue;
2293
2294 /* Being elemental, the last upper bound of an assumed size array
2295 argument must be present. */
2296 if (resolve_assumed_size_actual (arg->expr))
2297 return false;
2298
2299 /* Elemental procedure's array actual arguments must conform. */
2300 if (e != NULL)
2301 {
2302 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2303 return false;
2304 }
2305 else
2306 e = arg->expr;
2307 }
2308
2309 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2310 is an array, the intent inout/out variable needs to be also an array. */
2311 if (rank > 0 && esym && expr == NULL)
2312 for (eformal = esym->formal, arg = arg0; arg && eformal;
2313 arg = arg->next, eformal = eformal->next)
2314 if ((eformal->sym->attr.intent == INTENT_OUT
2315 || eformal->sym->attr.intent == INTENT_INOUT)
2316 && arg->expr && arg->expr->rank == 0)
2317 {
2318 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2319 "ELEMENTAL subroutine %qs is a scalar, but another "
2320 "actual argument is an array", &arg->expr->where,
2321 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2322 : "INOUT", eformal->sym->name, esym->name);
2323 return false;
2324 }
2325 return true;
2326 }
2327
2328
2329 /* This function does the checking of references to global procedures
2330 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2331 77 and 95 standards. It checks for a gsymbol for the name, making
2332 one if it does not already exist. If it already exists, then the
2333 reference being resolved must correspond to the type of gsymbol.
2334 Otherwise, the new symbol is equipped with the attributes of the
2335 reference. The corresponding code that is called in creating
2336 global entities is parse.c.
2337
2338 In addition, for all but -std=legacy, the gsymbols are used to
2339 check the interfaces of external procedures from the same file.
2340 The namespace of the gsymbol is resolved and then, once this is
2341 done the interface is checked. */
2342
2343
2344 static bool
2345 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2346 {
2347 if (!gsym_ns->proc_name->attr.recursive)
2348 return true;
2349
2350 if (sym->ns == gsym_ns)
2351 return false;
2352
2353 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2354 return false;
2355
2356 return true;
2357 }
2358
2359 static bool
2360 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2361 {
2362 if (gsym_ns->entries)
2363 {
2364 gfc_entry_list *entry = gsym_ns->entries;
2365
2366 for (; entry; entry = entry->next)
2367 {
2368 if (strcmp (sym->name, entry->sym->name) == 0)
2369 {
2370 if (strcmp (gsym_ns->proc_name->name,
2371 sym->ns->proc_name->name) == 0)
2372 return false;
2373
2374 if (sym->ns->parent
2375 && strcmp (gsym_ns->proc_name->name,
2376 sym->ns->parent->proc_name->name) == 0)
2377 return false;
2378 }
2379 }
2380 }
2381 return true;
2382 }
2383
2384
2385 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2386
2387 bool
2388 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2389 {
2390 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2391
2392 for ( ; arg; arg = arg->next)
2393 {
2394 if (!arg->sym)
2395 continue;
2396
2397 if (arg->sym->attr.allocatable) /* (2a) */
2398 {
2399 strncpy (errmsg, _("allocatable argument"), err_len);
2400 return true;
2401 }
2402 else if (arg->sym->attr.asynchronous)
2403 {
2404 strncpy (errmsg, _("asynchronous argument"), err_len);
2405 return true;
2406 }
2407 else if (arg->sym->attr.optional)
2408 {
2409 strncpy (errmsg, _("optional argument"), err_len);
2410 return true;
2411 }
2412 else if (arg->sym->attr.pointer)
2413 {
2414 strncpy (errmsg, _("pointer argument"), err_len);
2415 return true;
2416 }
2417 else if (arg->sym->attr.target)
2418 {
2419 strncpy (errmsg, _("target argument"), err_len);
2420 return true;
2421 }
2422 else if (arg->sym->attr.value)
2423 {
2424 strncpy (errmsg, _("value argument"), err_len);
2425 return true;
2426 }
2427 else if (arg->sym->attr.volatile_)
2428 {
2429 strncpy (errmsg, _("volatile argument"), err_len);
2430 return true;
2431 }
2432 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2433 {
2434 strncpy (errmsg, _("assumed-shape argument"), err_len);
2435 return true;
2436 }
2437 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2438 {
2439 strncpy (errmsg, _("assumed-rank argument"), err_len);
2440 return true;
2441 }
2442 else if (arg->sym->attr.codimension) /* (2c) */
2443 {
2444 strncpy (errmsg, _("coarray argument"), err_len);
2445 return true;
2446 }
2447 else if (false) /* (2d) TODO: parametrized derived type */
2448 {
2449 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2450 return true;
2451 }
2452 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2453 {
2454 strncpy (errmsg, _("polymorphic argument"), err_len);
2455 return true;
2456 }
2457 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2458 {
2459 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2460 return true;
2461 }
2462 else if (arg->sym->ts.type == BT_ASSUMED)
2463 {
2464 /* As assumed-type is unlimited polymorphic (cf. above).
2465 See also TS 29113, Note 6.1. */
2466 strncpy (errmsg, _("assumed-type argument"), err_len);
2467 return true;
2468 }
2469 }
2470
2471 if (sym->attr.function)
2472 {
2473 gfc_symbol *res = sym->result ? sym->result : sym;
2474
2475 if (res->attr.dimension) /* (3a) */
2476 {
2477 strncpy (errmsg, _("array result"), err_len);
2478 return true;
2479 }
2480 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2481 {
2482 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2483 return true;
2484 }
2485 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2486 && res->ts.u.cl->length
2487 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2488 {
2489 strncpy (errmsg, _("result with non-constant character length"), err_len);
2490 return true;
2491 }
2492 }
2493
2494 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2495 {
2496 strncpy (errmsg, _("elemental procedure"), err_len);
2497 return true;
2498 }
2499 else if (sym->attr.is_bind_c) /* (5) */
2500 {
2501 strncpy (errmsg, _("bind(c) procedure"), err_len);
2502 return true;
2503 }
2504
2505 return false;
2506 }
2507
2508
2509 static void
2510 resolve_global_procedure (gfc_symbol *sym, locus *where, int sub)
2511 {
2512 gfc_gsymbol * gsym;
2513 gfc_namespace *ns;
2514 enum gfc_symbol_type type;
2515 char reason[200];
2516
2517 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2518
2519 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name,
2520 sym->binding_label != NULL);
2521
2522 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2523 gfc_global_used (gsym, where);
2524
2525 if ((sym->attr.if_source == IFSRC_UNKNOWN
2526 || sym->attr.if_source == IFSRC_IFBODY)
2527 && gsym->type != GSYM_UNKNOWN
2528 && !gsym->binding_label
2529 && gsym->ns
2530 && gsym->ns->proc_name
2531 && not_in_recursive (sym, gsym->ns)
2532 && not_entry_self_reference (sym, gsym->ns))
2533 {
2534 gfc_symbol *def_sym;
2535 def_sym = gsym->ns->proc_name;
2536
2537 if (gsym->ns->resolved != -1)
2538 {
2539
2540 /* Resolve the gsymbol namespace if needed. */
2541 if (!gsym->ns->resolved)
2542 {
2543 gfc_symbol *old_dt_list;
2544
2545 /* Stash away derived types so that the backend_decls
2546 do not get mixed up. */
2547 old_dt_list = gfc_derived_types;
2548 gfc_derived_types = NULL;
2549
2550 gfc_resolve (gsym->ns);
2551
2552 /* Store the new derived types with the global namespace. */
2553 if (gfc_derived_types)
2554 gsym->ns->derived_types = gfc_derived_types;
2555
2556 /* Restore the derived types of this namespace. */
2557 gfc_derived_types = old_dt_list;
2558 }
2559
2560 /* Make sure that translation for the gsymbol occurs before
2561 the procedure currently being resolved. */
2562 ns = gfc_global_ns_list;
2563 for (; ns && ns != gsym->ns; ns = ns->sibling)
2564 {
2565 if (ns->sibling == gsym->ns)
2566 {
2567 ns->sibling = gsym->ns->sibling;
2568 gsym->ns->sibling = gfc_global_ns_list;
2569 gfc_global_ns_list = gsym->ns;
2570 break;
2571 }
2572 }
2573
2574 /* This can happen if a binding name has been specified. */
2575 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2576 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2577
2578 if (def_sym->attr.entry_master || def_sym->attr.entry)
2579 {
2580 gfc_entry_list *entry;
2581 for (entry = gsym->ns->entries; entry; entry = entry->next)
2582 if (strcmp (entry->sym->name, sym->name) == 0)
2583 {
2584 def_sym = entry->sym;
2585 break;
2586 }
2587 }
2588 }
2589
2590 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2591 {
2592 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2593 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2594 gfc_typename (&def_sym->ts));
2595 goto done;
2596 }
2597
2598 if (sym->attr.if_source == IFSRC_UNKNOWN
2599 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2600 {
2601 gfc_error ("Explicit interface required for %qs at %L: %s",
2602 sym->name, &sym->declared_at, reason);
2603 goto done;
2604 }
2605
2606 bool bad_result_characteristics;
2607 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2608 reason, sizeof(reason), NULL, NULL,
2609 &bad_result_characteristics))
2610 {
2611 /* Turn erros into warnings with -std=gnu and -std=legacy,
2612 unless a function returns a wrong type, which can lead
2613 to all kinds of ICEs and wrong code. */
2614
2615 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU)
2616 && !bad_result_characteristics)
2617 gfc_errors_to_warnings (true);
2618
2619 gfc_error ("Interface mismatch in global procedure %qs at %L: %s",
2620 sym->name, &sym->declared_at, reason);
2621 gfc_errors_to_warnings (false);
2622 goto done;
2623 }
2624 }
2625
2626 done:
2627
2628 if (gsym->type == GSYM_UNKNOWN)
2629 {
2630 gsym->type = type;
2631 gsym->where = *where;
2632 }
2633
2634 gsym->used = 1;
2635 }
2636
2637
2638 /************* Function resolution *************/
2639
2640 /* Resolve a function call known to be generic.
2641 Section 14.1.2.4.1. */
2642
2643 static match
2644 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2645 {
2646 gfc_symbol *s;
2647
2648 if (sym->attr.generic)
2649 {
2650 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2651 if (s != NULL)
2652 {
2653 expr->value.function.name = s->name;
2654 expr->value.function.esym = s;
2655
2656 if (s->ts.type != BT_UNKNOWN)
2657 expr->ts = s->ts;
2658 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2659 expr->ts = s->result->ts;
2660
2661 if (s->as != NULL)
2662 expr->rank = s->as->rank;
2663 else if (s->result != NULL && s->result->as != NULL)
2664 expr->rank = s->result->as->rank;
2665
2666 gfc_set_sym_referenced (expr->value.function.esym);
2667
2668 return MATCH_YES;
2669 }
2670
2671 /* TODO: Need to search for elemental references in generic
2672 interface. */
2673 }
2674
2675 if (sym->attr.intrinsic)
2676 return gfc_intrinsic_func_interface (expr, 0);
2677
2678 return MATCH_NO;
2679 }
2680
2681
2682 static bool
2683 resolve_generic_f (gfc_expr *expr)
2684 {
2685 gfc_symbol *sym;
2686 match m;
2687 gfc_interface *intr = NULL;
2688
2689 sym = expr->symtree->n.sym;
2690
2691 for (;;)
2692 {
2693 m = resolve_generic_f0 (expr, sym);
2694 if (m == MATCH_YES)
2695 return true;
2696 else if (m == MATCH_ERROR)
2697 return false;
2698
2699 generic:
2700 if (!intr)
2701 for (intr = sym->generic; intr; intr = intr->next)
2702 if (gfc_fl_struct (intr->sym->attr.flavor))
2703 break;
2704
2705 if (sym->ns->parent == NULL)
2706 break;
2707 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2708
2709 if (sym == NULL)
2710 break;
2711 if (!generic_sym (sym))
2712 goto generic;
2713 }
2714
2715 /* Last ditch attempt. See if the reference is to an intrinsic
2716 that possesses a matching interface. 14.1.2.4 */
2717 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2718 {
2719 if (gfc_init_expr_flag)
2720 gfc_error ("Function %qs in initialization expression at %L "
2721 "must be an intrinsic function",
2722 expr->symtree->n.sym->name, &expr->where);
2723 else
2724 gfc_error ("There is no specific function for the generic %qs "
2725 "at %L", expr->symtree->n.sym->name, &expr->where);
2726 return false;
2727 }
2728
2729 if (intr)
2730 {
2731 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2732 NULL, false))
2733 return false;
2734 if (!gfc_use_derived (expr->ts.u.derived))
2735 return false;
2736 return resolve_structure_cons (expr, 0);
2737 }
2738
2739 m = gfc_intrinsic_func_interface (expr, 0);
2740 if (m == MATCH_YES)
2741 return true;
2742
2743 if (m == MATCH_NO)
2744 gfc_error ("Generic function %qs at %L is not consistent with a "
2745 "specific intrinsic interface", expr->symtree->n.sym->name,
2746 &expr->where);
2747
2748 return false;
2749 }
2750
2751
2752 /* Resolve a function call known to be specific. */
2753
2754 static match
2755 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2756 {
2757 match m;
2758
2759 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2760 {
2761 if (sym->attr.dummy)
2762 {
2763 sym->attr.proc = PROC_DUMMY;
2764 goto found;
2765 }
2766
2767 sym->attr.proc = PROC_EXTERNAL;
2768 goto found;
2769 }
2770
2771 if (sym->attr.proc == PROC_MODULE
2772 || sym->attr.proc == PROC_ST_FUNCTION
2773 || sym->attr.proc == PROC_INTERNAL)
2774 goto found;
2775
2776 if (sym->attr.intrinsic)
2777 {
2778 m = gfc_intrinsic_func_interface (expr, 1);
2779 if (m == MATCH_YES)
2780 return MATCH_YES;
2781 if (m == MATCH_NO)
2782 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2783 "with an intrinsic", sym->name, &expr->where);
2784
2785 return MATCH_ERROR;
2786 }
2787
2788 return MATCH_NO;
2789
2790 found:
2791 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2792
2793 if (sym->result)
2794 expr->ts = sym->result->ts;
2795 else
2796 expr->ts = sym->ts;
2797 expr->value.function.name = sym->name;
2798 expr->value.function.esym = sym;
2799 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2800 error(s). */
2801 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2802 return MATCH_ERROR;
2803 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2804 expr->rank = CLASS_DATA (sym)->as->rank;
2805 else if (sym->as != NULL)
2806 expr->rank = sym->as->rank;
2807
2808 return MATCH_YES;
2809 }
2810
2811
2812 static bool
2813 resolve_specific_f (gfc_expr *expr)
2814 {
2815 gfc_symbol *sym;
2816 match m;
2817
2818 sym = expr->symtree->n.sym;
2819
2820 for (;;)
2821 {
2822 m = resolve_specific_f0 (sym, expr);
2823 if (m == MATCH_YES)
2824 return true;
2825 if (m == MATCH_ERROR)
2826 return false;
2827
2828 if (sym->ns->parent == NULL)
2829 break;
2830
2831 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2832
2833 if (sym == NULL)
2834 break;
2835 }
2836
2837 gfc_error ("Unable to resolve the specific function %qs at %L",
2838 expr->symtree->n.sym->name, &expr->where);
2839
2840 return true;
2841 }
2842
2843 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2844 candidates in CANDIDATES_LEN. */
2845
2846 static void
2847 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2848 char **&candidates,
2849 size_t &candidates_len)
2850 {
2851 gfc_symtree *p;
2852
2853 if (sym == NULL)
2854 return;
2855 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2856 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2857 vec_push (candidates, candidates_len, sym->name);
2858
2859 p = sym->left;
2860 if (p)
2861 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2862
2863 p = sym->right;
2864 if (p)
2865 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2866 }
2867
2868
2869 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2870
2871 const char*
2872 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2873 {
2874 char **candidates = NULL;
2875 size_t candidates_len = 0;
2876 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2877 return gfc_closest_fuzzy_match (fn, candidates);
2878 }
2879
2880
2881 /* Resolve a procedure call not known to be generic nor specific. */
2882
2883 static bool
2884 resolve_unknown_f (gfc_expr *expr)
2885 {
2886 gfc_symbol *sym;
2887 gfc_typespec *ts;
2888
2889 sym = expr->symtree->n.sym;
2890
2891 if (sym->attr.dummy)
2892 {
2893 sym->attr.proc = PROC_DUMMY;
2894 expr->value.function.name = sym->name;
2895 goto set_type;
2896 }
2897
2898 /* See if we have an intrinsic function reference. */
2899
2900 if (gfc_is_intrinsic (sym, 0, expr->where))
2901 {
2902 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2903 return true;
2904 return false;
2905 }
2906
2907 /* The reference is to an external name. */
2908
2909 sym->attr.proc = PROC_EXTERNAL;
2910 expr->value.function.name = sym->name;
2911 expr->value.function.esym = expr->symtree->n.sym;
2912
2913 if (sym->as != NULL)
2914 expr->rank = sym->as->rank;
2915
2916 /* Type of the expression is either the type of the symbol or the
2917 default type of the symbol. */
2918
2919 set_type:
2920 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2921
2922 if (sym->ts.type != BT_UNKNOWN)
2923 expr->ts = sym->ts;
2924 else
2925 {
2926 ts = gfc_get_default_type (sym->name, sym->ns);
2927
2928 if (ts->type == BT_UNKNOWN)
2929 {
2930 const char *guessed
2931 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2932 if (guessed)
2933 gfc_error ("Function %qs at %L has no IMPLICIT type"
2934 "; did you mean %qs?",
2935 sym->name, &expr->where, guessed);
2936 else
2937 gfc_error ("Function %qs at %L has no IMPLICIT type",
2938 sym->name, &expr->where);
2939 return false;
2940 }
2941 else
2942 expr->ts = *ts;
2943 }
2944
2945 return true;
2946 }
2947
2948
2949 /* Return true, if the symbol is an external procedure. */
2950 static bool
2951 is_external_proc (gfc_symbol *sym)
2952 {
2953 if (!sym->attr.dummy && !sym->attr.contained
2954 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2955 && sym->attr.proc != PROC_ST_FUNCTION
2956 && !sym->attr.proc_pointer
2957 && !sym->attr.use_assoc
2958 && sym->name)
2959 return true;
2960
2961 return false;
2962 }
2963
2964
2965 /* Figure out if a function reference is pure or not. Also set the name
2966 of the function for a potential error message. Return nonzero if the
2967 function is PURE, zero if not. */
2968 static int
2969 pure_stmt_function (gfc_expr *, gfc_symbol *);
2970
2971 int
2972 gfc_pure_function (gfc_expr *e, const char **name)
2973 {
2974 int pure;
2975 gfc_component *comp;
2976
2977 *name = NULL;
2978
2979 if (e->symtree != NULL
2980 && e->symtree->n.sym != NULL
2981 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2982 return pure_stmt_function (e, e->symtree->n.sym);
2983
2984 comp = gfc_get_proc_ptr_comp (e);
2985 if (comp)
2986 {
2987 pure = gfc_pure (comp->ts.interface);
2988 *name = comp->name;
2989 }
2990 else if (e->value.function.esym)
2991 {
2992 pure = gfc_pure (e->value.function.esym);
2993 *name = e->value.function.esym->name;
2994 }
2995 else if (e->value.function.isym)
2996 {
2997 pure = e->value.function.isym->pure
2998 || e->value.function.isym->elemental;
2999 *name = e->value.function.isym->name;
3000 }
3001 else
3002 {
3003 /* Implicit functions are not pure. */
3004 pure = 0;
3005 *name = e->value.function.name;
3006 }
3007
3008 return pure;
3009 }
3010
3011
3012 /* Check if the expression is a reference to an implicitly pure function. */
3013
3014 int
3015 gfc_implicit_pure_function (gfc_expr *e)
3016 {
3017 gfc_component *comp = gfc_get_proc_ptr_comp (e);
3018 if (comp)
3019 return gfc_implicit_pure (comp->ts.interface);
3020 else if (e->value.function.esym)
3021 return gfc_implicit_pure (e->value.function.esym);
3022 else
3023 return 0;
3024 }
3025
3026
3027 static bool
3028 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
3029 int *f ATTRIBUTE_UNUSED)
3030 {
3031 const char *name;
3032
3033 /* Don't bother recursing into other statement functions
3034 since they will be checked individually for purity. */
3035 if (e->expr_type != EXPR_FUNCTION
3036 || !e->symtree
3037 || e->symtree->n.sym == sym
3038 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
3039 return false;
3040
3041 return gfc_pure_function (e, &name) ? false : true;
3042 }
3043
3044
3045 static int
3046 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
3047 {
3048 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
3049 }
3050
3051
3052 /* Check if an impure function is allowed in the current context. */
3053
3054 static bool check_pure_function (gfc_expr *e)
3055 {
3056 const char *name = NULL;
3057 if (!gfc_pure_function (e, &name) && name)
3058 {
3059 if (forall_flag)
3060 {
3061 gfc_error ("Reference to impure function %qs at %L inside a "
3062 "FORALL %s", name, &e->where,
3063 forall_flag == 2 ? "mask" : "block");
3064 return false;
3065 }
3066 else if (gfc_do_concurrent_flag)
3067 {
3068 gfc_error ("Reference to impure function %qs at %L inside a "
3069 "DO CONCURRENT %s", name, &e->where,
3070 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3071 return false;
3072 }
3073 else if (gfc_pure (NULL))
3074 {
3075 gfc_error ("Reference to impure function %qs at %L "
3076 "within a PURE procedure", name, &e->where);
3077 return false;
3078 }
3079 if (!gfc_implicit_pure_function (e))
3080 gfc_unset_implicit_pure (NULL);
3081 }
3082 return true;
3083 }
3084
3085
3086 /* Update current procedure's array_outer_dependency flag, considering
3087 a call to procedure SYM. */
3088
3089 static void
3090 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3091 {
3092 /* Check to see if this is a sibling function that has not yet
3093 been resolved. */
3094 gfc_namespace *sibling = gfc_current_ns->sibling;
3095 for (; sibling; sibling = sibling->sibling)
3096 {
3097 if (sibling->proc_name == sym)
3098 {
3099 gfc_resolve (sibling);
3100 break;
3101 }
3102 }
3103
3104 /* If SYM has references to outer arrays, so has the procedure calling
3105 SYM. If SYM is a procedure pointer, we can assume the worst. */
3106 if ((sym->attr.array_outer_dependency || sym->attr.proc_pointer)
3107 && gfc_current_ns->proc_name)
3108 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3109 }
3110
3111
3112 /* Resolve a function call, which means resolving the arguments, then figuring
3113 out which entity the name refers to. */
3114
3115 static bool
3116 resolve_function (gfc_expr *expr)
3117 {
3118 gfc_actual_arglist *arg;
3119 gfc_symbol *sym;
3120 bool t;
3121 int temp;
3122 procedure_type p = PROC_INTRINSIC;
3123 bool no_formal_args;
3124
3125 sym = NULL;
3126 if (expr->symtree)
3127 sym = expr->symtree->n.sym;
3128
3129 /* If this is a procedure pointer component, it has already been resolved. */
3130 if (gfc_is_proc_ptr_comp (expr))
3131 return true;
3132
3133 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3134 another caf_get. */
3135 if (sym && sym->attr.intrinsic
3136 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3137 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3138 return true;
3139
3140 if (expr->ref)
3141 {
3142 gfc_error ("Unexpected junk after %qs at %L", expr->symtree->n.sym->name,
3143 &expr->where);
3144 return false;
3145 }
3146
3147 if (sym && sym->attr.intrinsic
3148 && !gfc_resolve_intrinsic (sym, &expr->where))
3149 return false;
3150
3151 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3152 {
3153 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3154 return false;
3155 }
3156
3157 /* If this is a deferred TBP with an abstract interface (which may
3158 of course be referenced), expr->value.function.esym will be set. */
3159 if (sym && sym->attr.abstract && !expr->value.function.esym)
3160 {
3161 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3162 sym->name, &expr->where);
3163 return false;
3164 }
3165
3166 /* If this is a deferred TBP with an abstract interface, its result
3167 cannot be an assumed length character (F2003: C418). */
3168 if (sym && sym->attr.abstract && sym->attr.function
3169 && sym->result->ts.u.cl
3170 && sym->result->ts.u.cl->length == NULL
3171 && !sym->result->ts.deferred)
3172 {
3173 gfc_error ("ABSTRACT INTERFACE %qs at %L must not have an assumed "
3174 "character length result (F2008: C418)", sym->name,
3175 &sym->declared_at);
3176 return false;
3177 }
3178
3179 /* Switch off assumed size checking and do this again for certain kinds
3180 of procedure, once the procedure itself is resolved. */
3181 need_full_assumed_size++;
3182
3183 if (expr->symtree && expr->symtree->n.sym)
3184 p = expr->symtree->n.sym->attr.proc;
3185
3186 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3187 inquiry_argument = true;
3188 no_formal_args = sym && is_external_proc (sym)
3189 && gfc_sym_get_dummy_args (sym) == NULL;
3190
3191 if (!resolve_actual_arglist (expr->value.function.actual,
3192 p, no_formal_args))
3193 {
3194 inquiry_argument = false;
3195 return false;
3196 }
3197
3198 inquiry_argument = false;
3199
3200 /* Resume assumed_size checking. */
3201 need_full_assumed_size--;
3202
3203 /* If the procedure is external, check for usage. */
3204 if (sym && is_external_proc (sym))
3205 resolve_global_procedure (sym, &expr->where, 0);
3206
3207 if (sym && sym->ts.type == BT_CHARACTER
3208 && sym->ts.u.cl
3209 && sym->ts.u.cl->length == NULL
3210 && !sym->attr.dummy
3211 && !sym->ts.deferred
3212 && expr->value.function.esym == NULL
3213 && !sym->attr.contained)
3214 {
3215 /* Internal procedures are taken care of in resolve_contained_fntype. */
3216 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3217 "be used at %L since it is not a dummy argument",
3218 sym->name, &expr->where);
3219 return false;
3220 }
3221
3222 /* See if function is already resolved. */
3223
3224 if (expr->value.function.name != NULL
3225 || expr->value.function.isym != NULL)
3226 {
3227 if (expr->ts.type == BT_UNKNOWN)
3228 expr->ts = sym->ts;
3229 t = true;
3230 }
3231 else
3232 {
3233 /* Apply the rules of section 14.1.2. */
3234
3235 switch (procedure_kind (sym))
3236 {
3237 case PTYPE_GENERIC:
3238 t = resolve_generic_f (expr);
3239 break;
3240
3241 case PTYPE_SPECIFIC:
3242 t = resolve_specific_f (expr);
3243 break;
3244
3245 case PTYPE_UNKNOWN:
3246 t = resolve_unknown_f (expr);
3247 break;
3248
3249 default:
3250 gfc_internal_error ("resolve_function(): bad function type");
3251 }
3252 }
3253
3254 /* If the expression is still a function (it might have simplified),
3255 then we check to see if we are calling an elemental function. */
3256
3257 if (expr->expr_type != EXPR_FUNCTION)
3258 return t;
3259
3260 /* Walk the argument list looking for invalid BOZ. */
3261 for (arg = expr->value.function.actual; arg; arg = arg->next)
3262 if (arg->expr && arg->expr->ts.type == BT_BOZ)
3263 {
3264 gfc_error ("A BOZ literal constant at %L cannot appear as an "
3265 "actual argument in a function reference",
3266 &arg->expr->where);
3267 return false;
3268 }
3269
3270 temp = need_full_assumed_size;
3271 need_full_assumed_size = 0;
3272
3273 if (!resolve_elemental_actual (expr, NULL))
3274 return false;
3275
3276 if (omp_workshare_flag
3277 && expr->value.function.esym
3278 && ! gfc_elemental (expr->value.function.esym))
3279 {
3280 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3281 "in WORKSHARE construct", expr->value.function.esym->name,
3282 &expr->where);
3283 t = false;
3284 }
3285
3286 #define GENERIC_ID expr->value.function.isym->id
3287 else if (expr->value.function.actual != NULL
3288 && expr->value.function.isym != NULL
3289 && GENERIC_ID != GFC_ISYM_LBOUND
3290 && GENERIC_ID != GFC_ISYM_LCOBOUND
3291 && GENERIC_ID != GFC_ISYM_UCOBOUND
3292 && GENERIC_ID != GFC_ISYM_LEN
3293 && GENERIC_ID != GFC_ISYM_LOC
3294 && GENERIC_ID != GFC_ISYM_C_LOC
3295 && GENERIC_ID != GFC_ISYM_PRESENT)
3296 {
3297 /* Array intrinsics must also have the last upper bound of an
3298 assumed size array argument. UBOUND and SIZE have to be
3299 excluded from the check if the second argument is anything
3300 than a constant. */
3301
3302 for (arg = expr->value.function.actual; arg; arg = arg->next)
3303 {
3304 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3305 && arg == expr->value.function.actual
3306 && arg->next != NULL && arg->next->expr)
3307 {
3308 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3309 break;
3310
3311 if (arg->next->name && strcmp (arg->next->name, "kind") == 0)
3312 break;
3313
3314 if ((int)mpz_get_si (arg->next->expr->value.integer)
3315 < arg->expr->rank)
3316 break;
3317 }
3318
3319 if (arg->expr != NULL
3320 && arg->expr->rank > 0
3321 && resolve_assumed_size_actual (arg->expr))
3322 return false;
3323 }
3324 }
3325 #undef GENERIC_ID
3326
3327 need_full_assumed_size = temp;
3328
3329 if (!check_pure_function(expr))
3330 t = false;
3331
3332 /* Functions without the RECURSIVE attribution are not allowed to
3333 * call themselves. */
3334 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3335 {
3336 gfc_symbol *esym;
3337 esym = expr->value.function.esym;
3338
3339 if (is_illegal_recursion (esym, gfc_current_ns))
3340 {
3341 if (esym->attr.entry && esym->ns->entries)
3342 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3343 " function %qs is not RECURSIVE",
3344 esym->name, &expr->where, esym->ns->entries->sym->name);
3345 else
3346 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3347 " is not RECURSIVE", esym->name, &expr->where);
3348
3349 t = false;
3350 }
3351 }
3352
3353 /* Character lengths of use associated functions may contains references to
3354 symbols not referenced from the current program unit otherwise. Make sure
3355 those symbols are marked as referenced. */
3356
3357 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3358 && expr->value.function.esym->attr.use_assoc)
3359 {
3360 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3361 }
3362
3363 /* Make sure that the expression has a typespec that works. */
3364 if (expr->ts.type == BT_UNKNOWN)
3365 {
3366 if (expr->symtree->n.sym->result
3367 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3368 && !expr->symtree->n.sym->result->attr.proc_pointer)
3369 expr->ts = expr->symtree->n.sym->result->ts;
3370 }
3371
3372 if (!expr->ref && !expr->value.function.isym)
3373 {
3374 if (expr->value.function.esym)
3375 update_current_proc_array_outer_dependency (expr->value.function.esym);
3376 else
3377 update_current_proc_array_outer_dependency (sym);
3378 }
3379 else if (expr->ref)
3380 /* typebound procedure: Assume the worst. */
3381 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3382
3383 return t;
3384 }
3385
3386
3387 /************* Subroutine resolution *************/
3388
3389 static bool
3390 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3391 {
3392 if (gfc_pure (sym))
3393 return true;
3394
3395 if (forall_flag)
3396 {
3397 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3398 name, loc);
3399 return false;
3400 }
3401 else if (gfc_do_concurrent_flag)
3402 {
3403 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3404 "PURE", name, loc);
3405 return false;
3406 }
3407 else if (gfc_pure (NULL))
3408 {
3409 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3410 return false;
3411 }
3412
3413 gfc_unset_implicit_pure (NULL);
3414 return true;
3415 }
3416
3417
3418 static match
3419 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3420 {
3421 gfc_symbol *s;
3422
3423 if (sym->attr.generic)
3424 {
3425 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3426 if (s != NULL)
3427 {
3428 c->resolved_sym = s;
3429 if (!pure_subroutine (s, s->name, &c->loc))
3430 return MATCH_ERROR;
3431 return MATCH_YES;
3432 }
3433
3434 /* TODO: Need to search for elemental references in generic interface. */
3435 }
3436
3437 if (sym->attr.intrinsic)
3438 return gfc_intrinsic_sub_interface (c, 0);
3439
3440 return MATCH_NO;
3441 }
3442
3443
3444 static bool
3445 resolve_generic_s (gfc_code *c)
3446 {
3447 gfc_symbol *sym;
3448 match m;
3449
3450 sym = c->symtree->n.sym;
3451
3452 for (;;)
3453 {
3454 m = resolve_generic_s0 (c, sym);
3455 if (m == MATCH_YES)
3456 return true;
3457 else if (m == MATCH_ERROR)
3458 return false;
3459
3460 generic:
3461 if (sym->ns->parent == NULL)
3462 break;
3463 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3464
3465 if (sym == NULL)
3466 break;
3467 if (!generic_sym (sym))
3468 goto generic;
3469 }
3470
3471 /* Last ditch attempt. See if the reference is to an intrinsic
3472 that possesses a matching interface. 14.1.2.4 */
3473 sym = c->symtree->n.sym;
3474
3475 if (!gfc_is_intrinsic (sym, 1, c->loc))
3476 {
3477 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3478 sym->name, &c->loc);
3479 return false;
3480 }
3481
3482 m = gfc_intrinsic_sub_interface (c, 0);
3483 if (m == MATCH_YES)
3484 return true;
3485 if (m == MATCH_NO)
3486 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3487 "intrinsic subroutine interface", sym->name, &c->loc);
3488
3489 return false;
3490 }
3491
3492
3493 /* Resolve a subroutine call known to be specific. */
3494
3495 static match
3496 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3497 {
3498 match m;
3499
3500 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3501 {
3502 if (sym->attr.dummy)
3503 {
3504 sym->attr.proc = PROC_DUMMY;
3505 goto found;
3506 }
3507
3508 sym->attr.proc = PROC_EXTERNAL;
3509 goto found;
3510 }
3511
3512 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3513 goto found;
3514
3515 if (sym->attr.intrinsic)
3516 {
3517 m = gfc_intrinsic_sub_interface (c, 1);
3518 if (m == MATCH_YES)
3519 return MATCH_YES;
3520 if (m == MATCH_NO)
3521 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3522 "with an intrinsic", sym->name, &c->loc);
3523
3524 return MATCH_ERROR;
3525 }
3526
3527 return MATCH_NO;
3528
3529 found:
3530 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3531
3532 c->resolved_sym = sym;
3533 if (!pure_subroutine (sym, sym->name, &c->loc))
3534 return MATCH_ERROR;
3535
3536 return MATCH_YES;
3537 }
3538
3539
3540 static bool
3541 resolve_specific_s (gfc_code *c)
3542 {
3543 gfc_symbol *sym;
3544 match m;
3545
3546 sym = c->symtree->n.sym;
3547
3548 for (;;)
3549 {
3550 m = resolve_specific_s0 (c, sym);
3551 if (m == MATCH_YES)
3552 return true;
3553 if (m == MATCH_ERROR)
3554 return false;
3555
3556 if (sym->ns->parent == NULL)
3557 break;
3558
3559 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3560
3561 if (sym == NULL)
3562 break;
3563 }
3564
3565 sym = c->symtree->n.sym;
3566 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3567 sym->name, &c->loc);
3568
3569 return false;
3570 }
3571
3572
3573 /* Resolve a subroutine call not known to be generic nor specific. */
3574
3575 static bool
3576 resolve_unknown_s (gfc_code *c)
3577 {
3578 gfc_symbol *sym;
3579
3580 sym = c->symtree->n.sym;
3581
3582 if (sym->attr.dummy)
3583 {
3584 sym->attr.proc = PROC_DUMMY;
3585 goto found;
3586 }
3587
3588 /* See if we have an intrinsic function reference. */
3589
3590 if (gfc_is_intrinsic (sym, 1, c->loc))
3591 {
3592 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3593 return true;
3594 return false;
3595 }
3596
3597 /* The reference is to an external name. */
3598
3599 found:
3600 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3601
3602 c->resolved_sym = sym;
3603
3604 return pure_subroutine (sym, sym->name, &c->loc);
3605 }
3606
3607
3608 /* Resolve a subroutine call. Although it was tempting to use the same code
3609 for functions, subroutines and functions are stored differently and this
3610 makes things awkward. */
3611
3612 static bool
3613 resolve_call (gfc_code *c)
3614 {
3615 bool t;
3616 procedure_type ptype = PROC_INTRINSIC;
3617 gfc_symbol *csym, *sym;
3618 bool no_formal_args;
3619
3620 csym = c->symtree ? c->symtree->n.sym : NULL;
3621
3622 if (csym && csym->ts.type != BT_UNKNOWN)
3623 {
3624 gfc_error ("%qs at %L has a type, which is not consistent with "
3625 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3626 return false;
3627 }
3628
3629 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3630 {
3631 gfc_symtree *st;
3632 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3633 sym = st ? st->n.sym : NULL;
3634 if (sym && csym != sym
3635 && sym->ns == gfc_current_ns
3636 && sym->attr.flavor == FL_PROCEDURE
3637 && sym->attr.contained)
3638 {
3639 sym->refs++;
3640 if (csym->attr.generic)
3641 c->symtree->n.sym = sym;
3642 else
3643 c->symtree = st;
3644 csym = c->symtree->n.sym;
3645 }
3646 }
3647
3648 /* If this ia a deferred TBP, c->expr1 will be set. */
3649 if (!c->expr1 && csym)
3650 {
3651 if (csym->attr.abstract)
3652 {
3653 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3654 csym->name, &c->loc);
3655 return false;
3656 }
3657
3658 /* Subroutines without the RECURSIVE attribution are not allowed to
3659 call themselves. */
3660 if (is_illegal_recursion (csym, gfc_current_ns))
3661 {
3662 if (csym->attr.entry && csym->ns->entries)
3663 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3664 "as subroutine %qs is not RECURSIVE",
3665 csym->name, &c->loc, csym->ns->entries->sym->name);
3666 else
3667 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3668 "as it is not RECURSIVE", csym->name, &c->loc);
3669
3670 t = false;
3671 }
3672 }
3673
3674 /* Switch off assumed size checking and do this again for certain kinds
3675 of procedure, once the procedure itself is resolved. */
3676 need_full_assumed_size++;
3677
3678 if (csym)
3679 ptype = csym->attr.proc;
3680
3681 no_formal_args = csym && is_external_proc (csym)
3682 && gfc_sym_get_dummy_args (csym) == NULL;
3683 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3684 return false;
3685
3686 /* Resume assumed_size checking. */
3687 need_full_assumed_size--;
3688
3689 /* If external, check for usage. */
3690 if (csym && is_external_proc (csym))
3691 resolve_global_procedure (csym, &c->loc, 1);
3692
3693 t = true;
3694 if (c->resolved_sym == NULL)
3695 {
3696 c->resolved_isym = NULL;
3697 switch (procedure_kind (csym))
3698 {
3699 case PTYPE_GENERIC:
3700 t = resolve_generic_s (c);
3701 break;
3702
3703 case PTYPE_SPECIFIC:
3704 t = resolve_specific_s (c);
3705 break;
3706
3707 case PTYPE_UNKNOWN:
3708 t = resolve_unknown_s (c);
3709 break;
3710
3711 default:
3712 gfc_internal_error ("resolve_subroutine(): bad function type");
3713 }
3714 }
3715
3716 /* Some checks of elemental subroutine actual arguments. */
3717 if (!resolve_elemental_actual (NULL, c))
3718 return false;
3719
3720 if (!c->expr1)
3721 update_current_proc_array_outer_dependency (csym);
3722 else
3723 /* Typebound procedure: Assume the worst. */
3724 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3725
3726 return t;
3727 }
3728
3729
3730 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3731 op1->shape and op2->shape are non-NULL return true if their shapes
3732 match. If both op1->shape and op2->shape are non-NULL return false
3733 if their shapes do not match. If either op1->shape or op2->shape is
3734 NULL, return true. */
3735
3736 static bool
3737 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3738 {
3739 bool t;
3740 int i;
3741
3742 t = true;
3743
3744 if (op1->shape != NULL && op2->shape != NULL)
3745 {
3746 for (i = 0; i < op1->rank; i++)
3747 {
3748 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3749 {
3750 gfc_error ("Shapes for operands at %L and %L are not conformable",
3751 &op1->where, &op2->where);
3752 t = false;
3753 break;
3754 }
3755 }
3756 }
3757
3758 return t;
3759 }
3760
3761 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3762 For example A .AND. B becomes IAND(A, B). */
3763 static gfc_expr *
3764 logical_to_bitwise (gfc_expr *e)
3765 {
3766 gfc_expr *tmp, *op1, *op2;
3767 gfc_isym_id isym;
3768 gfc_actual_arglist *args = NULL;
3769
3770 gcc_assert (e->expr_type == EXPR_OP);
3771
3772 isym = GFC_ISYM_NONE;
3773 op1 = e->value.op.op1;
3774 op2 = e->value.op.op2;
3775
3776 switch (e->value.op.op)
3777 {
3778 case INTRINSIC_NOT:
3779 isym = GFC_ISYM_NOT;
3780 break;
3781 case INTRINSIC_AND:
3782 isym = GFC_ISYM_IAND;
3783 break;
3784 case INTRINSIC_OR:
3785 isym = GFC_ISYM_IOR;
3786 break;
3787 case INTRINSIC_NEQV:
3788 isym = GFC_ISYM_IEOR;
3789 break;
3790 case INTRINSIC_EQV:
3791 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3792 Change the old expression to NEQV, which will get replaced by IEOR,
3793 and wrap it in NOT. */
3794 tmp = gfc_copy_expr (e);
3795 tmp->value.op.op = INTRINSIC_NEQV;
3796 tmp = logical_to_bitwise (tmp);
3797 isym = GFC_ISYM_NOT;
3798 op1 = tmp;
3799 op2 = NULL;
3800 break;
3801 default:
3802 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3803 }
3804
3805 /* Inherit the original operation's operands as arguments. */
3806 args = gfc_get_actual_arglist ();
3807 args->expr = op1;
3808 if (op2)
3809 {
3810 args->next = gfc_get_actual_arglist ();
3811 args->next->expr = op2;
3812 }
3813
3814 /* Convert the expression to a function call. */
3815 e->expr_type = EXPR_FUNCTION;
3816 e->value.function.actual = args;
3817 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3818 e->value.function.name = e->value.function.isym->name;
3819 e->value.function.esym = NULL;
3820
3821 /* Make up a pre-resolved function call symtree if we need to. */
3822 if (!e->symtree || !e->symtree->n.sym)
3823 {
3824 gfc_symbol *sym;
3825 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3826 sym = e->symtree->n.sym;
3827 sym->result = sym;
3828 sym->attr.flavor = FL_PROCEDURE;
3829 sym->attr.function = 1;
3830 sym->attr.elemental = 1;
3831 sym->attr.pure = 1;
3832 sym->attr.referenced = 1;
3833 gfc_intrinsic_symbol (sym);
3834 gfc_commit_symbol (sym);
3835 }
3836
3837 args->name = e->value.function.isym->formal->name;
3838 if (e->value.function.isym->formal->next)
3839 args->next->name = e->value.function.isym->formal->next->name;
3840
3841 return e;
3842 }
3843
3844 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3845 candidates in CANDIDATES_LEN. */
3846 static void
3847 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3848 char **&candidates,
3849 size_t &candidates_len)
3850 {
3851 gfc_symtree *p;
3852
3853 if (uop == NULL)
3854 return;
3855
3856 /* Not sure how to properly filter here. Use all for a start.
3857 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3858 these as i suppose they don't make terribly sense. */
3859
3860 if (uop->n.uop->op != NULL)
3861 vec_push (candidates, candidates_len, uop->name);
3862
3863 p = uop->left;
3864 if (p)
3865 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3866
3867 p = uop->right;
3868 if (p)
3869 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3870 }
3871
3872 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3873
3874 static const char*
3875 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3876 {
3877 char **candidates = NULL;
3878 size_t candidates_len = 0;
3879 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3880 return gfc_closest_fuzzy_match (op, candidates);
3881 }
3882
3883
3884 /* Callback finding an impure function as an operand to an .and. or
3885 .or. expression. Remember the last function warned about to
3886 avoid double warnings when recursing. */
3887
3888 static int
3889 impure_function_callback (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED,
3890 void *data)
3891 {
3892 gfc_expr *f = *e;
3893 const char *name;
3894 static gfc_expr *last = NULL;
3895 bool *found = (bool *) data;
3896
3897 if (f->expr_type == EXPR_FUNCTION)
3898 {
3899 *found = 1;
3900 if (f != last && !gfc_pure_function (f, &name)
3901 && !gfc_implicit_pure_function (f))
3902 {
3903 if (name)
3904 gfc_warning (OPT_Wfunction_elimination,
3905 "Impure function %qs at %L might not be evaluated",
3906 name, &f->where);
3907 else
3908 gfc_warning (OPT_Wfunction_elimination,
3909 "Impure function at %L might not be evaluated",
3910 &f->where);
3911 }
3912 last = f;
3913 }
3914
3915 return 0;
3916 }
3917
3918 /* Return true if TYPE is character based, false otherwise. */
3919
3920 static int
3921 is_character_based (bt type)
3922 {
3923 return type == BT_CHARACTER || type == BT_HOLLERITH;
3924 }
3925
3926
3927 /* If expression is a hollerith, convert it to character and issue a warning
3928 for the conversion. */
3929
3930 static void
3931 convert_hollerith_to_character (gfc_expr *e)
3932 {
3933 if (e->ts.type == BT_HOLLERITH)
3934 {
3935 gfc_typespec t;
3936 gfc_clear_ts (&t);
3937 t.type = BT_CHARACTER;
3938 t.kind = e->ts.kind;
3939 gfc_convert_type_warn (e, &t, 2, 1);
3940 }
3941 }
3942
3943 /* Convert to numeric and issue a warning for the conversion. */
3944
3945 static void
3946 convert_to_numeric (gfc_expr *a, gfc_expr *b)
3947 {
3948 gfc_typespec t;
3949 gfc_clear_ts (&t);
3950 t.type = b->ts.type;
3951 t.kind = b->ts.kind;
3952 gfc_convert_type_warn (a, &t, 2, 1);
3953 }
3954
3955 /* Resolve an operator expression node. This can involve replacing the
3956 operation with a user defined function call. */
3957
3958 static bool
3959 resolve_operator (gfc_expr *e)
3960 {
3961 gfc_expr *op1, *op2;
3962 char msg[200];
3963 bool dual_locus_error;
3964 bool t = true;
3965
3966 /* Resolve all subnodes-- give them types. */
3967
3968 switch (e->value.op.op)
3969 {
3970 default:
3971 if (!gfc_resolve_expr (e->value.op.op2))
3972 return false;
3973
3974 /* Fall through. */
3975
3976 case INTRINSIC_NOT:
3977 case INTRINSIC_UPLUS:
3978 case INTRINSIC_UMINUS:
3979 case INTRINSIC_PARENTHESES:
3980 if (!gfc_resolve_expr (e->value.op.op1))
3981 return false;
3982 if (e->value.op.op1
3983 && e->value.op.op1->ts.type == BT_BOZ && !e->value.op.op2)
3984 {
3985 gfc_error ("BOZ literal constant at %L cannot be an operand of "
3986 "unary operator %qs", &e->value.op.op1->where,
3987 gfc_op2string (e->value.op.op));
3988 return false;
3989 }
3990 break;
3991 }
3992
3993 /* Typecheck the new node. */
3994
3995 op1 = e->value.op.op1;
3996 op2 = e->value.op.op2;
3997 if (op1 == NULL && op2 == NULL)
3998 return false;
3999
4000 dual_locus_error = false;
4001
4002 /* op1 and op2 cannot both be BOZ. */
4003 if (op1 && op1->ts.type == BT_BOZ
4004 && op2 && op2->ts.type == BT_BOZ)
4005 {
4006 gfc_error ("Operands at %L and %L cannot appear as operands of "
4007 "binary operator %qs", &op1->where, &op2->where,
4008 gfc_op2string (e->value.op.op));
4009 return false;
4010 }
4011
4012 if ((op1 && op1->expr_type == EXPR_NULL)
4013 || (op2 && op2->expr_type == EXPR_NULL))
4014 {
4015 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
4016 goto bad_op;
4017 }
4018
4019 switch (e->value.op.op)
4020 {
4021 case INTRINSIC_UPLUS:
4022 case INTRINSIC_UMINUS:
4023 if (op1->ts.type == BT_INTEGER
4024 || op1->ts.type == BT_REAL
4025 || op1->ts.type == BT_COMPLEX)
4026 {
4027 e->ts = op1->ts;
4028 break;
4029 }
4030
4031 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
4032 gfc_op2string (e->value.op.op), gfc_typename (e));
4033 goto bad_op;
4034
4035 case INTRINSIC_PLUS:
4036 case INTRINSIC_MINUS:
4037 case INTRINSIC_TIMES:
4038 case INTRINSIC_DIVIDE:
4039 case INTRINSIC_POWER:
4040 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4041 {
4042 gfc_type_convert_binary (e, 1);
4043 break;
4044 }
4045
4046 if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
4047 sprintf (msg,
4048 _("Unexpected derived-type entities in binary intrinsic "
4049 "numeric operator %%<%s%%> at %%L"),
4050 gfc_op2string (e->value.op.op));
4051 else
4052 sprintf (msg,
4053 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
4054 gfc_op2string (e->value.op.op), gfc_typename (op1),
4055 gfc_typename (op2));
4056 goto bad_op;
4057
4058 case INTRINSIC_CONCAT:
4059 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4060 && op1->ts.kind == op2->ts.kind)
4061 {
4062 e->ts.type = BT_CHARACTER;
4063 e->ts.kind = op1->ts.kind;
4064 break;
4065 }
4066
4067 sprintf (msg,
4068 _("Operands of string concatenation operator at %%L are %s/%s"),
4069 gfc_typename (op1), gfc_typename (op2));
4070 goto bad_op;
4071
4072 case INTRINSIC_AND:
4073 case INTRINSIC_OR:
4074 case INTRINSIC_EQV:
4075 case INTRINSIC_NEQV:
4076 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4077 {
4078 e->ts.type = BT_LOGICAL;
4079 e->ts.kind = gfc_kind_max (op1, op2);
4080 if (op1->ts.kind < e->ts.kind)
4081 gfc_convert_type (op1, &e->ts, 2);
4082 else if (op2->ts.kind < e->ts.kind)
4083 gfc_convert_type (op2, &e->ts, 2);
4084
4085 if (flag_frontend_optimize &&
4086 (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
4087 {
4088 /* Warn about short-circuiting
4089 with impure function as second operand. */
4090 bool op2_f = false;
4091 gfc_expr_walker (&op2, impure_function_callback, &op2_f);
4092 }
4093 break;
4094 }
4095
4096 /* Logical ops on integers become bitwise ops with -fdec. */
4097 else if (flag_dec
4098 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
4099 {
4100 e->ts.type = BT_INTEGER;
4101 e->ts.kind = gfc_kind_max (op1, op2);
4102 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
4103 gfc_convert_type (op1, &e->ts, 1);
4104 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
4105 gfc_convert_type (op2, &e->ts, 1);
4106 e = logical_to_bitwise (e);
4107 goto simplify_op;
4108 }
4109
4110 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
4111 gfc_op2string (e->value.op.op), gfc_typename (op1),
4112 gfc_typename (op2));
4113
4114 goto bad_op;
4115
4116 case INTRINSIC_NOT:
4117 /* Logical ops on integers become bitwise ops with -fdec. */
4118 if (flag_dec && op1->ts.type == BT_INTEGER)
4119 {
4120 e->ts.type = BT_INTEGER;
4121 e->ts.kind = op1->ts.kind;
4122 e = logical_to_bitwise (e);
4123 goto simplify_op;
4124 }
4125
4126 if (op1->ts.type == BT_LOGICAL)
4127 {
4128 e->ts.type = BT_LOGICAL;
4129 e->ts.kind = op1->ts.kind;
4130 break;
4131 }
4132
4133 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
4134 gfc_typename (op1));
4135 goto bad_op;
4136
4137 case INTRINSIC_GT:
4138 case INTRINSIC_GT_OS:
4139 case INTRINSIC_GE:
4140 case INTRINSIC_GE_OS:
4141 case INTRINSIC_LT:
4142 case INTRINSIC_LT_OS:
4143 case INTRINSIC_LE:
4144 case INTRINSIC_LE_OS:
4145 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
4146 {
4147 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
4148 goto bad_op;
4149 }
4150
4151 /* Fall through. */
4152
4153 case INTRINSIC_EQ:
4154 case INTRINSIC_EQ_OS:
4155 case INTRINSIC_NE:
4156 case INTRINSIC_NE_OS:
4157
4158 if (flag_dec
4159 && is_character_based (op1->ts.type)
4160 && is_character_based (op2->ts.type))
4161 {
4162 convert_hollerith_to_character (op1);
4163 convert_hollerith_to_character (op2);
4164 }
4165
4166 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4167 && op1->ts.kind == op2->ts.kind)
4168 {
4169 e->ts.type = BT_LOGICAL;
4170 e->ts.kind = gfc_default_logical_kind;
4171 break;
4172 }
4173
4174 /* If op1 is BOZ, then op2 is not!. Try to convert to type of op2. */
4175 if (op1->ts.type == BT_BOZ)
4176 {
4177 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4178 "an operand of a relational operator",
4179 &op1->where))
4180 return false;
4181
4182 if (op2->ts.type == BT_INTEGER && !gfc_boz2int (op1, op2->ts.kind))
4183 return false;
4184
4185 if (op2->ts.type == BT_REAL && !gfc_boz2real (op1, op2->ts.kind))
4186 return false;
4187 }
4188
4189 /* If op2 is BOZ, then op1 is not!. Try to convert to type of op2. */
4190 if (op2->ts.type == BT_BOZ)
4191 {
4192 if (gfc_invalid_boz ("BOZ literal constant near %L cannot appear as "
4193 "an operand of a relational operator",
4194 &op2->where))
4195 return false;
4196
4197 if (op1->ts.type == BT_INTEGER && !gfc_boz2int (op2, op1->ts.kind))
4198 return false;
4199
4200 if (op1->ts.type == BT_REAL && !gfc_boz2real (op2, op1->ts.kind))
4201 return false;
4202 }
4203 if (flag_dec
4204 && op1->ts.type == BT_HOLLERITH && gfc_numeric_ts (&op2->ts))
4205 convert_to_numeric (op1, op2);
4206
4207 if (flag_dec
4208 && gfc_numeric_ts (&op1->ts) && op2->ts.type == BT_HOLLERITH)
4209 convert_to_numeric (op2, op1);
4210
4211 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4212 {
4213 gfc_type_convert_binary (e, 1);
4214
4215 e->ts.type = BT_LOGICAL;
4216 e->ts.kind = gfc_default_logical_kind;
4217
4218 if (warn_compare_reals)
4219 {
4220 gfc_intrinsic_op op = e->value.op.op;
4221
4222 /* Type conversion has made sure that the types of op1 and op2
4223 agree, so it is only necessary to check the first one. */
4224 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
4225 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
4226 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
4227 {
4228 const char *msg;
4229
4230 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4231 msg = "Equality comparison for %s at %L";
4232 else
4233 msg = "Inequality comparison for %s at %L";
4234
4235 gfc_warning (OPT_Wcompare_reals, msg,
4236 gfc_typename (op1), &op1->where);
4237 }
4238 }
4239
4240 break;
4241 }
4242
4243 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4244 sprintf (msg,
4245 _("Logicals at %%L must be compared with %s instead of %s"),
4246 (e->value.op.op == INTRINSIC_EQ
4247 || e->value.op.op == INTRINSIC_EQ_OS)
4248 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4249 else
4250 sprintf (msg,
4251 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4252 gfc_op2string (e->value.op.op), gfc_typename (op1),
4253 gfc_typename (op2));
4254
4255 goto bad_op;
4256
4257 case INTRINSIC_USER:
4258 if (e->value.op.uop->op == NULL)
4259 {
4260 const char *name = e->value.op.uop->name;
4261 const char *guessed;
4262 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4263 if (guessed)
4264 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4265 name, guessed);
4266 else
4267 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4268 }
4269 else if (op2 == NULL)
4270 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4271 e->value.op.uop->name, gfc_typename (op1));
4272 else
4273 {
4274 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4275 e->value.op.uop->name, gfc_typename (op1),
4276 gfc_typename (op2));
4277 e->value.op.uop->op->sym->attr.referenced = 1;
4278 }
4279
4280 goto bad_op;
4281
4282 case INTRINSIC_PARENTHESES:
4283 e->ts = op1->ts;
4284 if (e->ts.type == BT_CHARACTER)
4285 e->ts.u.cl = op1->ts.u.cl;
4286 break;
4287
4288 default:
4289 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4290 }
4291
4292 /* Deal with arrayness of an operand through an operator. */
4293
4294 switch (e->value.op.op)
4295 {
4296 case INTRINSIC_PLUS:
4297 case INTRINSIC_MINUS:
4298 case INTRINSIC_TIMES:
4299 case INTRINSIC_DIVIDE:
4300 case INTRINSIC_POWER:
4301 case INTRINSIC_CONCAT:
4302 case INTRINSIC_AND:
4303 case INTRINSIC_OR:
4304 case INTRINSIC_EQV:
4305 case INTRINSIC_NEQV:
4306 case INTRINSIC_EQ:
4307 case INTRINSIC_EQ_OS:
4308 case INTRINSIC_NE:
4309 case INTRINSIC_NE_OS:
4310 case INTRINSIC_GT:
4311 case INTRINSIC_GT_OS:
4312 case INTRINSIC_GE:
4313 case INTRINSIC_GE_OS:
4314 case INTRINSIC_LT:
4315 case INTRINSIC_LT_OS:
4316 case INTRINSIC_LE:
4317 case INTRINSIC_LE_OS:
4318
4319 if (op1->rank == 0 && op2->rank == 0)
4320 e->rank = 0;
4321
4322 if (op1->rank == 0 && op2->rank != 0)
4323 {
4324 e->rank = op2->rank;
4325
4326 if (e->shape == NULL)
4327 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4328 }
4329
4330 if (op1->rank != 0 && op2->rank == 0)
4331 {
4332 e->rank = op1->rank;
4333
4334 if (e->shape == NULL)
4335 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4336 }
4337
4338 if (op1->rank != 0 && op2->rank != 0)
4339 {
4340 if (op1->rank == op2->rank)
4341 {
4342 e->rank = op1->rank;
4343 if (e->shape == NULL)
4344 {
4345 t = compare_shapes (op1, op2);
4346 if (!t)
4347 e->shape = NULL;
4348 else
4349 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4350 }
4351 }
4352 else
4353 {
4354 /* Allow higher level expressions to work. */
4355 e->rank = 0;
4356
4357 /* Try user-defined operators, and otherwise throw an error. */
4358 dual_locus_error = true;
4359 sprintf (msg,
4360 _("Inconsistent ranks for operator at %%L and %%L"));
4361 goto bad_op;
4362 }
4363 }
4364
4365 break;
4366
4367 case INTRINSIC_PARENTHESES:
4368 case INTRINSIC_NOT:
4369 case INTRINSIC_UPLUS:
4370 case INTRINSIC_UMINUS:
4371 /* Simply copy arrayness attribute */
4372 e->rank = op1->rank;
4373
4374 if (e->shape == NULL)
4375 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4376
4377 break;
4378
4379 default:
4380 break;
4381 }
4382
4383 simplify_op:
4384
4385 /* Attempt to simplify the expression. */
4386 if (t)
4387 {
4388 t = gfc_simplify_expr (e, 0);
4389 /* Some calls do not succeed in simplification and return false
4390 even though there is no error; e.g. variable references to
4391 PARAMETER arrays. */
4392 if (!gfc_is_constant_expr (e))
4393 t = true;
4394 }
4395 return t;
4396
4397 bad_op:
4398
4399 {
4400 match m = gfc_extend_expr (e);
4401 if (m == MATCH_YES)
4402 return true;
4403 if (m == MATCH_ERROR)
4404 return false;
4405 }
4406
4407 if (dual_locus_error)
4408 gfc_error (msg, &op1->where, &op2->where);
4409 else
4410 gfc_error (msg, &e->where);
4411
4412 return false;
4413 }
4414
4415
4416 /************** Array resolution subroutines **************/
4417
4418 enum compare_result
4419 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4420
4421 /* Compare two integer expressions. */
4422
4423 static compare_result
4424 compare_bound (gfc_expr *a, gfc_expr *b)
4425 {
4426 int i;
4427
4428 if (a == NULL || a->expr_type != EXPR_CONSTANT
4429 || b == NULL || b->expr_type != EXPR_CONSTANT)
4430 return CMP_UNKNOWN;
4431
4432 /* If either of the types isn't INTEGER, we must have
4433 raised an error earlier. */
4434
4435 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4436 return CMP_UNKNOWN;
4437
4438 i = mpz_cmp (a->value.integer, b->value.integer);
4439
4440 if (i < 0)
4441 return CMP_LT;
4442 if (i > 0)
4443 return CMP_GT;
4444 return CMP_EQ;
4445 }
4446
4447
4448 /* Compare an integer expression with an integer. */
4449
4450 static compare_result
4451 compare_bound_int (gfc_expr *a, int b)
4452 {
4453 int i;
4454
4455 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4456 return CMP_UNKNOWN;
4457
4458 if (a->ts.type != BT_INTEGER)
4459 gfc_internal_error ("compare_bound_int(): Bad expression");
4460
4461 i = mpz_cmp_si (a->value.integer, b);
4462
4463 if (i < 0)
4464 return CMP_LT;
4465 if (i > 0)
4466 return CMP_GT;
4467 return CMP_EQ;
4468 }
4469
4470
4471 /* Compare an integer expression with a mpz_t. */
4472
4473 static compare_result
4474 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4475 {
4476 int i;
4477
4478 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4479 return CMP_UNKNOWN;
4480
4481 if (a->ts.type != BT_INTEGER)
4482 gfc_internal_error ("compare_bound_int(): Bad expression");
4483
4484 i = mpz_cmp (a->value.integer, b);
4485
4486 if (i < 0)
4487 return CMP_LT;
4488 if (i > 0)
4489 return CMP_GT;
4490 return CMP_EQ;
4491 }
4492
4493
4494 /* Compute the last value of a sequence given by a triplet.
4495 Return 0 if it wasn't able to compute the last value, or if the
4496 sequence if empty, and 1 otherwise. */
4497
4498 static int
4499 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4500 gfc_expr *stride, mpz_t last)
4501 {
4502 mpz_t rem;
4503
4504 if (start == NULL || start->expr_type != EXPR_CONSTANT
4505 || end == NULL || end->expr_type != EXPR_CONSTANT
4506 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4507 return 0;
4508
4509 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4510 || (stride != NULL && stride->ts.type != BT_INTEGER))
4511 return 0;
4512
4513 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4514 {
4515 if (compare_bound (start, end) == CMP_GT)
4516 return 0;
4517 mpz_set (last, end->value.integer);
4518 return 1;
4519 }
4520
4521 if (compare_bound_int (stride, 0) == CMP_GT)
4522 {
4523 /* Stride is positive */
4524 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4525 return 0;
4526 }
4527 else
4528 {
4529 /* Stride is negative */
4530 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4531 return 0;
4532 }
4533
4534 mpz_init (rem);
4535 mpz_sub (rem, end->value.integer, start->value.integer);
4536 mpz_tdiv_r (rem, rem, stride->value.integer);
4537 mpz_sub (last, end->value.integer, rem);
4538 mpz_clear (rem);
4539
4540 return 1;
4541 }
4542
4543
4544 /* Compare a single dimension of an array reference to the array
4545 specification. */
4546
4547 static bool
4548 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4549 {
4550 mpz_t last_value;
4551
4552 if (ar->dimen_type[i] == DIMEN_STAR)
4553 {
4554 gcc_assert (ar->stride[i] == NULL);
4555 /* This implies [*] as [*:] and [*:3] are not possible. */
4556 if (ar->start[i] == NULL)
4557 {
4558 gcc_assert (ar->end[i] == NULL);
4559 return true;
4560 }
4561 }
4562
4563 /* Given start, end and stride values, calculate the minimum and
4564 maximum referenced indexes. */
4565
4566 switch (ar->dimen_type[i])
4567 {
4568 case DIMEN_VECTOR:
4569 case DIMEN_THIS_IMAGE:
4570 break;
4571
4572 case DIMEN_STAR:
4573 case DIMEN_ELEMENT:
4574 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4575 {
4576 if (i < as->rank)
4577 gfc_warning (0, "Array reference at %L is out of bounds "
4578 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4579 mpz_get_si (ar->start[i]->value.integer),
4580 mpz_get_si (as->lower[i]->value.integer), i+1);
4581 else
4582 gfc_warning (0, "Array reference at %L is out of bounds "
4583 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4584 mpz_get_si (ar->start[i]->value.integer),
4585 mpz_get_si (as->lower[i]->value.integer),
4586 i + 1 - as->rank);
4587 return true;
4588 }
4589 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4590 {
4591 if (i < as->rank)
4592 gfc_warning (0, "Array reference at %L is out of bounds "
4593 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4594 mpz_get_si (ar->start[i]->value.integer),
4595 mpz_get_si (as->upper[i]->value.integer), i+1);
4596 else
4597 gfc_warning (0, "Array reference at %L is out of bounds "
4598 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4599 mpz_get_si (ar->start[i]->value.integer),
4600 mpz_get_si (as->upper[i]->value.integer),
4601 i + 1 - as->rank);
4602 return true;
4603 }
4604
4605 break;
4606
4607 case DIMEN_RANGE:
4608 {
4609 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4610 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4611
4612 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4613
4614 /* Check for zero stride, which is not allowed. */
4615 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4616 {
4617 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4618 return false;
4619 }
4620
4621 /* if start == len || (stride > 0 && start < len)
4622 || (stride < 0 && start > len),
4623 then the array section contains at least one element. In this
4624 case, there is an out-of-bounds access if
4625 (start < lower || start > upper). */
4626 if (compare_bound (AR_START, AR_END) == CMP_EQ
4627 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4628 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4629 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4630 && comp_start_end == CMP_GT))
4631 {
4632 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4633 {
4634 gfc_warning (0, "Lower array reference at %L is out of bounds "
4635 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4636 mpz_get_si (AR_START->value.integer),
4637 mpz_get_si (as->lower[i]->value.integer), i+1);
4638 return true;
4639 }
4640 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4641 {
4642 gfc_warning (0, "Lower array reference at %L is out of bounds "
4643 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4644 mpz_get_si (AR_START->value.integer),
4645 mpz_get_si (as->upper[i]->value.integer), i+1);
4646 return true;
4647 }
4648 }
4649
4650 /* If we can compute the highest index of the array section,
4651 then it also has to be between lower and upper. */
4652 mpz_init (last_value);
4653 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4654 last_value))
4655 {
4656 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4657 {
4658 gfc_warning (0, "Upper array reference at %L is out of bounds "
4659 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4660 mpz_get_si (last_value),
4661 mpz_get_si (as->lower[i]->value.integer), i+1);
4662 mpz_clear (last_value);
4663 return true;
4664 }
4665 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4666 {
4667 gfc_warning (0, "Upper array reference at %L is out of bounds "
4668 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4669 mpz_get_si (last_value),
4670 mpz_get_si (as->upper[i]->value.integer), i+1);
4671 mpz_clear (last_value);
4672 return true;
4673 }
4674 }
4675 mpz_clear (last_value);
4676
4677 #undef AR_START
4678 #undef AR_END
4679 }
4680 break;
4681
4682 default:
4683 gfc_internal_error ("check_dimension(): Bad array reference");
4684 }
4685
4686 return true;
4687 }
4688
4689
4690 /* Compare an array reference with an array specification. */
4691
4692 static bool
4693 compare_spec_to_ref (gfc_array_ref *ar)
4694 {
4695 gfc_array_spec *as;
4696 int i;
4697
4698 as = ar->as;
4699 i = as->rank - 1;
4700 /* TODO: Full array sections are only allowed as actual parameters. */
4701 if (as->type == AS_ASSUMED_SIZE
4702 && (/*ar->type == AR_FULL
4703 ||*/ (ar->type == AR_SECTION
4704 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4705 {
4706 gfc_error ("Rightmost upper bound of assumed size array section "
4707 "not specified at %L", &ar->where);
4708 return false;
4709 }
4710
4711 if (ar->type == AR_FULL)
4712 return true;
4713
4714 if (as->rank != ar->dimen)
4715 {
4716 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4717 &ar->where, ar->dimen, as->rank);
4718 return false;
4719 }
4720
4721 /* ar->codimen == 0 is a local array. */
4722 if (as->corank != ar->codimen && ar->codimen != 0)
4723 {
4724 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4725 &ar->where, ar->codimen, as->corank);
4726 return false;
4727 }
4728
4729 for (i = 0; i < as->rank; i++)
4730 if (!check_dimension (i, ar, as))
4731 return false;
4732
4733 /* Local access has no coarray spec. */
4734 if (ar->codimen != 0)
4735 for (i = as->rank; i < as->rank + as->corank; i++)
4736 {
4737 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4738 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4739 {
4740 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4741 i + 1 - as->rank, &ar->where);
4742 return false;
4743 }
4744 if (!check_dimension (i, ar, as))
4745 return false;
4746 }
4747
4748 return true;
4749 }
4750
4751
4752 /* Resolve one part of an array index. */
4753
4754 static bool
4755 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4756 int force_index_integer_kind)
4757 {
4758 gfc_typespec ts;
4759
4760 if (index == NULL)
4761 return true;
4762
4763 if (!gfc_resolve_expr (index))
4764 return false;
4765
4766 if (check_scalar && index->rank != 0)
4767 {
4768 gfc_error ("Array index at %L must be scalar", &index->where);
4769 return false;
4770 }
4771
4772 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4773 {
4774 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4775 &index->where, gfc_basic_typename (index->ts.type));
4776 return false;
4777 }
4778
4779 if (index->ts.type == BT_REAL)
4780 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4781 &index->where))
4782 return false;
4783
4784 if ((index->ts.kind != gfc_index_integer_kind
4785 && force_index_integer_kind)
4786 || index->ts.type != BT_INTEGER)
4787 {
4788 gfc_clear_ts (&ts);
4789 ts.type = BT_INTEGER;
4790 ts.kind = gfc_index_integer_kind;
4791
4792 gfc_convert_type_warn (index, &ts, 2, 0);
4793 }
4794
4795 return true;
4796 }
4797
4798 /* Resolve one part of an array index. */
4799
4800 bool
4801 gfc_resolve_index (gfc_expr *index, int check_scalar)
4802 {
4803 return gfc_resolve_index_1 (index, check_scalar, 1);
4804 }
4805
4806 /* Resolve a dim argument to an intrinsic function. */
4807
4808 bool
4809 gfc_resolve_dim_arg (gfc_expr *dim)
4810 {
4811 if (dim == NULL)
4812 return true;
4813
4814 if (!gfc_resolve_expr (dim))
4815 return false;
4816
4817 if (dim->rank != 0)
4818 {
4819 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4820 return false;
4821
4822 }
4823
4824 if (dim->ts.type != BT_INTEGER)
4825 {
4826 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4827 return false;
4828 }
4829
4830 if (dim->ts.kind != gfc_index_integer_kind)
4831 {
4832 gfc_typespec ts;
4833
4834 gfc_clear_ts (&ts);
4835 ts.type = BT_INTEGER;
4836 ts.kind = gfc_index_integer_kind;
4837
4838 gfc_convert_type_warn (dim, &ts, 2, 0);
4839 }
4840
4841 return true;
4842 }
4843
4844 /* Given an expression that contains array references, update those array
4845 references to point to the right array specifications. While this is
4846 filled in during matching, this information is difficult to save and load
4847 in a module, so we take care of it here.
4848
4849 The idea here is that the original array reference comes from the
4850 base symbol. We traverse the list of reference structures, setting
4851 the stored reference to references. Component references can
4852 provide an additional array specification. */
4853
4854 static void
4855 find_array_spec (gfc_expr *e)
4856 {
4857 gfc_array_spec *as;
4858 gfc_component *c;
4859 gfc_ref *ref;
4860 bool class_as = false;
4861
4862 if (e->symtree->n.sym->ts.type == BT_CLASS)
4863 {
4864 as = CLASS_DATA (e->symtree->n.sym)->as;
4865 class_as = true;
4866 }
4867 else
4868 as = e->symtree->n.sym->as;
4869
4870 for (ref = e->ref; ref; ref = ref->next)
4871 switch (ref->type)
4872 {
4873 case REF_ARRAY:
4874 if (as == NULL)
4875 gfc_internal_error ("find_array_spec(): Missing spec");
4876
4877 ref->u.ar.as = as;
4878 as = NULL;
4879 break;
4880
4881 case REF_COMPONENT:
4882 c = ref->u.c.component;
4883 if (c->attr.dimension)
4884 {
4885 if (as != NULL && !(class_as && as == c->as))
4886 gfc_internal_error ("find_array_spec(): unused as(1)");
4887 as = c->as;
4888 }
4889
4890 break;
4891
4892 case REF_SUBSTRING:
4893 case REF_INQUIRY:
4894 break;
4895 }
4896
4897 if (as != NULL)
4898 gfc_internal_error ("find_array_spec(): unused as(2)");
4899 }
4900
4901
4902 /* Resolve an array reference. */
4903
4904 static bool
4905 resolve_array_ref (gfc_array_ref *ar)
4906 {
4907 int i, check_scalar;
4908 gfc_expr *e;
4909
4910 for (i = 0; i < ar->dimen + ar->codimen; i++)
4911 {
4912 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4913
4914 /* Do not force gfc_index_integer_kind for the start. We can
4915 do fine with any integer kind. This avoids temporary arrays
4916 created for indexing with a vector. */
4917 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4918 return false;
4919 if (!gfc_resolve_index (ar->end[i], check_scalar))
4920 return false;
4921 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4922 return false;
4923
4924 e = ar->start[i];
4925
4926 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4927 switch (e->rank)
4928 {
4929 case 0:
4930 ar->dimen_type[i] = DIMEN_ELEMENT;
4931 break;
4932
4933 case 1:
4934 ar->dimen_type[i] = DIMEN_VECTOR;
4935 if (e->expr_type == EXPR_VARIABLE
4936 && e->symtree->n.sym->ts.type == BT_DERIVED)
4937 ar->start[i] = gfc_get_parentheses (e);
4938 break;
4939
4940 default:
4941 gfc_error ("Array index at %L is an array of rank %d",
4942 &ar->c_where[i], e->rank);
4943 return false;
4944 }
4945
4946 /* Fill in the upper bound, which may be lower than the
4947 specified one for something like a(2:10:5), which is
4948 identical to a(2:7:5). Only relevant for strides not equal
4949 to one. Don't try a division by zero. */
4950 if (ar->dimen_type[i] == DIMEN_RANGE
4951 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4952 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4953 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4954 {
4955 mpz_t size, end;
4956
4957 if (gfc_ref_dimen_size (ar, i, &size, &end))
4958 {
4959 if (ar->end[i] == NULL)
4960 {
4961 ar->end[i] =
4962 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4963 &ar->where);
4964 mpz_set (ar->end[i]->value.integer, end);
4965 }
4966 else if (ar->end[i]->ts.type == BT_INTEGER
4967 && ar->end[i]->expr_type == EXPR_CONSTANT)
4968 {
4969 mpz_set (ar->end[i]->value.integer, end);
4970 }
4971 else
4972 gcc_unreachable ();
4973
4974 mpz_clear (size);
4975 mpz_clear (end);
4976 }
4977 }
4978 }
4979
4980 if (ar->type == AR_FULL)
4981 {
4982 if (ar->as->rank == 0)
4983 ar->type = AR_ELEMENT;
4984
4985 /* Make sure array is the same as array(:,:), this way
4986 we don't need to special case all the time. */
4987 ar->dimen = ar->as->rank;
4988 for (i = 0; i < ar->dimen; i++)
4989 {
4990 ar->dimen_type[i] = DIMEN_RANGE;
4991
4992 gcc_assert (ar->start[i] == NULL);
4993 gcc_assert (ar->end[i] == NULL);
4994 gcc_assert (ar->stride[i] == NULL);
4995 }
4996 }
4997
4998 /* If the reference type is unknown, figure out what kind it is. */
4999
5000 if (ar->type == AR_UNKNOWN)
5001 {
5002 ar->type = AR_ELEMENT;
5003 for (i = 0; i < ar->dimen; i++)
5004 if (ar->dimen_type[i] == DIMEN_RANGE
5005 || ar->dimen_type[i] == DIMEN_VECTOR)
5006 {
5007 ar->type = AR_SECTION;
5008 break;
5009 }
5010 }
5011
5012 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
5013 return false;
5014
5015 if (ar->as->corank && ar->codimen == 0)
5016 {
5017 int n;
5018 ar->codimen = ar->as->corank;
5019 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
5020 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
5021 }
5022
5023 return true;
5024 }
5025
5026
5027 static bool
5028 resolve_substring (gfc_ref *ref, bool *equal_length)
5029 {
5030 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
5031
5032 if (ref->u.ss.start != NULL)
5033 {
5034 if (!gfc_resolve_expr (ref->u.ss.start))
5035 return false;
5036
5037 if (ref->u.ss.start->ts.type != BT_INTEGER)
5038 {
5039 gfc_error ("Substring start index at %L must be of type INTEGER",
5040 &ref->u.ss.start->where);
5041 return false;
5042 }
5043
5044 if (ref->u.ss.start->rank != 0)
5045 {
5046 gfc_error ("Substring start index at %L must be scalar",
5047 &ref->u.ss.start->where);
5048 return false;
5049 }
5050
5051 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
5052 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5053 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5054 {
5055 gfc_error ("Substring start index at %L is less than one",
5056 &ref->u.ss.start->where);
5057 return false;
5058 }
5059 }
5060
5061 if (ref->u.ss.end != NULL)
5062 {
5063 if (!gfc_resolve_expr (ref->u.ss.end))
5064 return false;
5065
5066 if (ref->u.ss.end->ts.type != BT_INTEGER)
5067 {
5068 gfc_error ("Substring end index at %L must be of type INTEGER",
5069 &ref->u.ss.end->where);
5070 return false;
5071 }
5072
5073 if (ref->u.ss.end->rank != 0)
5074 {
5075 gfc_error ("Substring end index at %L must be scalar",
5076 &ref->u.ss.end->where);
5077 return false;
5078 }
5079
5080 if (ref->u.ss.length != NULL
5081 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
5082 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5083 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5084 {
5085 gfc_error ("Substring end index at %L exceeds the string length",
5086 &ref->u.ss.start->where);
5087 return false;
5088 }
5089
5090 if (compare_bound_mpz_t (ref->u.ss.end,
5091 gfc_integer_kinds[k].huge) == CMP_GT
5092 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
5093 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
5094 {
5095 gfc_error ("Substring end index at %L is too large",
5096 &ref->u.ss.end->where);
5097 return false;
5098 }
5099 /* If the substring has the same length as the original
5100 variable, the reference itself can be deleted. */
5101
5102 if (ref->u.ss.length != NULL
5103 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_EQ
5104 && compare_bound_int (ref->u.ss.start, 1) == CMP_EQ)
5105 *equal_length = true;
5106 }
5107
5108 return true;
5109 }
5110
5111
5112 /* This function supplies missing substring charlens. */
5113
5114 void
5115 gfc_resolve_substring_charlen (gfc_expr *e)
5116 {
5117 gfc_ref *char_ref;
5118 gfc_expr *start, *end;
5119 gfc_typespec *ts = NULL;
5120 mpz_t diff;
5121
5122 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
5123 {
5124 if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
5125 break;
5126 if (char_ref->type == REF_COMPONENT)
5127 ts = &char_ref->u.c.component->ts;
5128 }
5129
5130 if (!char_ref || char_ref->type == REF_INQUIRY)
5131 return;
5132
5133 gcc_assert (char_ref->next == NULL);
5134
5135 if (e->ts.u.cl)
5136 {
5137 if (e->ts.u.cl->length)
5138 gfc_free_expr (e->ts.u.cl->length);
5139 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
5140 return;
5141 }
5142
5143 if (!e->ts.u.cl)
5144 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5145
5146 if (char_ref->u.ss.start)
5147 start = gfc_copy_expr (char_ref->u.ss.start);
5148 else
5149 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
5150
5151 if (char_ref->u.ss.end)
5152 end = gfc_copy_expr (char_ref->u.ss.end);
5153 else if (e->expr_type == EXPR_VARIABLE)
5154 {
5155 if (!ts)
5156 ts = &e->symtree->n.sym->ts;
5157 end = gfc_copy_expr (ts->u.cl->length);
5158 }
5159 else
5160 end = NULL;
5161
5162 if (!start || !end)
5163 {
5164 gfc_free_expr (start);
5165 gfc_free_expr (end);
5166 return;
5167 }
5168
5169 /* Length = (end - start + 1).
5170 Check first whether it has a constant length. */
5171 if (gfc_dep_difference (end, start, &diff))
5172 {
5173 gfc_expr *len = gfc_get_constant_expr (BT_INTEGER, gfc_charlen_int_kind,
5174 &e->where);
5175
5176 mpz_add_ui (len->value.integer, diff, 1);
5177 mpz_clear (diff);
5178 e->ts.u.cl->length = len;
5179 /* The check for length < 0 is handled below */
5180 }
5181 else
5182 {
5183 e->ts.u.cl->length = gfc_subtract (end, start);
5184 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
5185 gfc_get_int_expr (gfc_charlen_int_kind,
5186 NULL, 1));
5187 }
5188
5189 /* F2008, 6.4.1: Both the starting point and the ending point shall
5190 be within the range 1, 2, ..., n unless the starting point exceeds
5191 the ending point, in which case the substring has length zero. */
5192
5193 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
5194 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
5195
5196 e->ts.u.cl->length->ts.type = BT_INTEGER;
5197 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5198
5199 /* Make sure that the length is simplified. */
5200 gfc_simplify_expr (e->ts.u.cl->length, 1);
5201 gfc_resolve_expr (e->ts.u.cl->length);
5202 }
5203
5204
5205 /* Resolve subtype references. */
5206
5207 bool
5208 gfc_resolve_ref (gfc_expr *expr)
5209 {
5210 int current_part_dimension, n_components, seen_part_dimension, dim;
5211 gfc_ref *ref, **prev, *array_ref;
5212 bool equal_length;
5213
5214 for (ref = expr->ref; ref; ref = ref->next)
5215 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
5216 {
5217 find_array_spec (expr);
5218 break;
5219 }
5220
5221 for (prev = &expr->ref; *prev != NULL;
5222 prev = *prev == NULL ? prev : &(*prev)->next)
5223 switch ((*prev)->type)
5224 {
5225 case REF_ARRAY:
5226 if (!resolve_array_ref (&(*prev)->u.ar))
5227 return false;
5228 break;
5229
5230 case REF_COMPONENT:
5231 case REF_INQUIRY:
5232 break;
5233
5234 case REF_SUBSTRING:
5235 equal_length = false;
5236 if (!resolve_substring (*prev, &equal_length))
5237 return false;
5238
5239 if (expr->expr_type != EXPR_SUBSTRING && equal_length)
5240 {
5241 /* Remove the reference and move the charlen, if any. */
5242 ref = *prev;
5243 *prev = ref->next;
5244 ref->next = NULL;
5245 expr->ts.u.cl = ref->u.ss.length;
5246 ref->u.ss.length = NULL;
5247 gfc_free_ref_list (ref);
5248 }
5249 break;
5250 }
5251
5252 /* Check constraints on part references. */
5253
5254 current_part_dimension = 0;
5255 seen_part_dimension = 0;
5256 n_components = 0;
5257 array_ref = NULL;
5258
5259 for (ref = expr->ref; ref; ref = ref->next)
5260 {
5261 switch (ref->type)
5262 {
5263 case REF_ARRAY:
5264 array_ref = ref;
5265 switch (ref->u.ar.type)
5266 {
5267 case AR_FULL:
5268 /* Coarray scalar. */
5269 if (ref->u.ar.as->rank == 0)
5270 {
5271 current_part_dimension = 0;
5272 break;
5273 }
5274 /* Fall through. */
5275 case AR_SECTION:
5276 current_part_dimension = 1;
5277 break;
5278
5279 case AR_ELEMENT:
5280 array_ref = NULL;
5281 current_part_dimension = 0;
5282 break;
5283
5284 case AR_UNKNOWN:
5285 gfc_internal_error ("resolve_ref(): Bad array reference");
5286 }
5287
5288 break;
5289
5290 case REF_COMPONENT:
5291 if (current_part_dimension || seen_part_dimension)
5292 {
5293 /* F03:C614. */
5294 if (ref->u.c.component->attr.pointer
5295 || ref->u.c.component->attr.proc_pointer
5296 || (ref->u.c.component->ts.type == BT_CLASS
5297 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5298 {
5299 gfc_error ("Component to the right of a part reference "
5300 "with nonzero rank must not have the POINTER "
5301 "attribute at %L", &expr->where);
5302 return false;
5303 }
5304 else if (ref->u.c.component->attr.allocatable
5305 || (ref->u.c.component->ts.type == BT_CLASS
5306 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5307
5308 {
5309 gfc_error ("Component to the right of a part reference "
5310 "with nonzero rank must not have the ALLOCATABLE "
5311 "attribute at %L", &expr->where);
5312 return false;
5313 }
5314 }
5315
5316 n_components++;
5317 break;
5318
5319 case REF_SUBSTRING:
5320 break;
5321
5322 case REF_INQUIRY:
5323 /* Implement requirement in note 9.7 of F2018 that the result of the
5324 LEN inquiry be a scalar. */
5325 if (ref->u.i == INQUIRY_LEN && array_ref && expr->ts.deferred)
5326 {
5327 array_ref->u.ar.type = AR_ELEMENT;
5328 expr->rank = 0;
5329 /* INQUIRY_LEN is not evaluated from the rest of the expr
5330 but directly from the string length. This means that setting
5331 the array indices to one does not matter but might trigger
5332 a runtime bounds error. Suppress the check. */
5333 expr->no_bounds_check = 1;
5334 for (dim = 0; dim < array_ref->u.ar.dimen; dim++)
5335 {
5336 array_ref->u.ar.dimen_type[dim] = DIMEN_ELEMENT;
5337 if (array_ref->u.ar.start[dim])
5338 gfc_free_expr (array_ref->u.ar.start[dim]);
5339 array_ref->u.ar.start[dim]
5340 = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
5341 if (array_ref->u.ar.end[dim])
5342 gfc_free_expr (array_ref->u.ar.end[dim]);
5343 if (array_ref->u.ar.stride[dim])
5344 gfc_free_expr (array_ref->u.ar.stride[dim]);
5345 }
5346 }
5347 break;
5348 }
5349
5350 if (((ref->type == REF_COMPONENT && n_components > 1)
5351 || ref->next == NULL)
5352 && current_part_dimension
5353 && seen_part_dimension)
5354 {
5355 gfc_error ("Two or more part references with nonzero rank must "
5356 "not be specified at %L", &expr->where);
5357 return false;
5358 }
5359
5360 if (ref->type == REF_COMPONENT)
5361 {
5362 if (current_part_dimension)
5363 seen_part_dimension = 1;
5364
5365 /* reset to make sure */
5366 current_part_dimension = 0;
5367 }
5368 }
5369
5370 return true;
5371 }
5372
5373
5374 /* Given an expression, determine its shape. This is easier than it sounds.
5375 Leaves the shape array NULL if it is not possible to determine the shape. */
5376
5377 static void
5378 expression_shape (gfc_expr *e)
5379 {
5380 mpz_t array[GFC_MAX_DIMENSIONS];
5381 int i;
5382
5383 if (e->rank <= 0 || e->shape != NULL)
5384 return;
5385
5386 for (i = 0; i < e->rank; i++)
5387 if (!gfc_array_dimen_size (e, i, &array[i]))
5388 goto fail;
5389
5390 e->shape = gfc_get_shape (e->rank);
5391
5392 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5393
5394 return;
5395
5396 fail:
5397 for (i--; i >= 0; i--)
5398 mpz_clear (array[i]);
5399 }
5400
5401
5402 /* Given a variable expression node, compute the rank of the expression by
5403 examining the base symbol and any reference structures it may have. */
5404
5405 void
5406 gfc_expression_rank (gfc_expr *e)
5407 {
5408 gfc_ref *ref;
5409 int i, rank;
5410
5411 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5412 could lead to serious confusion... */
5413 gcc_assert (e->expr_type != EXPR_COMPCALL);
5414
5415 if (e->ref == NULL)
5416 {
5417 if (e->expr_type == EXPR_ARRAY)
5418 goto done;
5419 /* Constructors can have a rank different from one via RESHAPE(). */
5420
5421 e->rank = ((e->symtree == NULL || e->symtree->n.sym->as == NULL)
5422 ? 0 : e->symtree->n.sym->as->rank);
5423 goto done;
5424 }
5425
5426 rank = 0;
5427
5428 for (ref = e->ref; ref; ref = ref->next)
5429 {
5430 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5431 && ref->u.c.component->attr.function && !ref->next)
5432 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5433
5434 if (ref->type != REF_ARRAY)
5435 continue;
5436
5437 if (ref->u.ar.type == AR_FULL)
5438 {
5439 rank = ref->u.ar.as->rank;
5440 break;
5441 }
5442
5443 if (ref->u.ar.type == AR_SECTION)
5444 {
5445 /* Figure out the rank of the section. */
5446 if (rank != 0)
5447 gfc_internal_error ("gfc_expression_rank(): Two array specs");
5448
5449 for (i = 0; i < ref->u.ar.dimen; i++)
5450 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5451 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5452 rank++;
5453
5454 break;
5455 }
5456 }
5457
5458 e->rank = rank;
5459
5460 done:
5461 expression_shape (e);
5462 }
5463
5464
5465 static void
5466 add_caf_get_intrinsic (gfc_expr *e)
5467 {
5468 gfc_expr *wrapper, *tmp_expr;
5469 gfc_ref *ref;
5470 int n;
5471
5472 for (ref = e->ref; ref; ref = ref->next)
5473 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5474 break;
5475 if (ref == NULL)
5476 return;
5477
5478 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5479 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5480 return;
5481
5482 tmp_expr = XCNEW (gfc_expr);
5483 *tmp_expr = *e;
5484 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5485 "caf_get", tmp_expr->where, 1, tmp_expr);
5486 wrapper->ts = e->ts;
5487 wrapper->rank = e->rank;
5488 if (e->rank)
5489 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5490 *e = *wrapper;
5491 free (wrapper);
5492 }
5493
5494
5495 static void
5496 remove_caf_get_intrinsic (gfc_expr *e)
5497 {
5498 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5499 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5500 gfc_expr *e2 = e->value.function.actual->expr;
5501 e->value.function.actual->expr = NULL;
5502 gfc_free_actual_arglist (e->value.function.actual);
5503 gfc_free_shape (&e->shape, e->rank);
5504 *e = *e2;
5505 free (e2);
5506 }
5507
5508
5509 /* Resolve a variable expression. */
5510
5511 static bool
5512 resolve_variable (gfc_expr *e)
5513 {
5514 gfc_symbol *sym;
5515 bool t;
5516
5517 t = true;
5518
5519 if (e->symtree == NULL)
5520 return false;
5521 sym = e->symtree->n.sym;
5522
5523 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5524 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5525 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5526 {
5527 if (!actual_arg || inquiry_argument)
5528 {
5529 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5530 "be used as actual argument", sym->name, &e->where);
5531 return false;
5532 }
5533 }
5534 /* TS 29113, 407b. */
5535 else if (e->ts.type == BT_ASSUMED)
5536 {
5537 if (!actual_arg)
5538 {
5539 gfc_error ("Assumed-type variable %s at %L may only be used "
5540 "as actual argument", sym->name, &e->where);
5541 return false;
5542 }
5543 else if (inquiry_argument && !first_actual_arg)
5544 {
5545 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5546 for all inquiry functions in resolve_function; the reason is
5547 that the function-name resolution happens too late in that
5548 function. */
5549 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5550 "an inquiry function shall be the first argument",
5551 sym->name, &e->where);
5552 return false;
5553 }
5554 }
5555 /* TS 29113, C535b. */
5556 else if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5557 && CLASS_DATA (sym)->as
5558 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5559 || (sym->ts.type != BT_CLASS && sym->as
5560 && sym->as->type == AS_ASSUMED_RANK))
5561 && !sym->attr.select_rank_temporary)
5562 {
5563 if (!actual_arg
5564 && !(cs_base && cs_base->current
5565 && cs_base->current->op == EXEC_SELECT_RANK))
5566 {
5567 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5568 "actual argument", sym->name, &e->where);
5569 return false;
5570 }
5571 else if (inquiry_argument && !first_actual_arg)
5572 {
5573 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5574 for all inquiry functions in resolve_function; the reason is
5575 that the function-name resolution happens too late in that
5576 function. */
5577 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5578 "to an inquiry function shall be the first argument",
5579 sym->name, &e->where);
5580 return false;
5581 }
5582 }
5583
5584 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5585 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5586 && e->ref->next == NULL))
5587 {
5588 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5589 "a subobject reference", sym->name, &e->ref->u.ar.where);
5590 return false;
5591 }
5592 /* TS 29113, 407b. */
5593 else if (e->ts.type == BT_ASSUMED && e->ref
5594 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5595 && e->ref->next == NULL))
5596 {
5597 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5598 "reference", sym->name, &e->ref->u.ar.where);
5599 return false;
5600 }
5601
5602 /* TS 29113, C535b. */
5603 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5604 && CLASS_DATA (sym)->as
5605 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5606 || (sym->ts.type != BT_CLASS && sym->as
5607 && sym->as->type == AS_ASSUMED_RANK))
5608 && e->ref
5609 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5610 && e->ref->next == NULL))
5611 {
5612 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5613 "reference", sym->name, &e->ref->u.ar.where);
5614 return false;
5615 }
5616
5617 /* For variables that are used in an associate (target => object) where
5618 the object's basetype is array valued while the target is scalar,
5619 the ts' type of the component refs is still array valued, which
5620 can't be translated that way. */
5621 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5622 && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
5623 && CLASS_DATA (sym->assoc->target)->as)
5624 {
5625 gfc_ref *ref = e->ref;
5626 while (ref)
5627 {
5628 switch (ref->type)
5629 {
5630 case REF_COMPONENT:
5631 ref->u.c.sym = sym->ts.u.derived;
5632 /* Stop the loop. */
5633 ref = NULL;
5634 break;
5635 default:
5636 ref = ref->next;
5637 break;
5638 }
5639 }
5640 }
5641
5642 /* If this is an associate-name, it may be parsed with an array reference
5643 in error even though the target is scalar. Fail directly in this case.
5644 TODO Understand why class scalar expressions must be excluded. */
5645 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5646 {
5647 if (sym->ts.type == BT_CLASS)
5648 gfc_fix_class_refs (e);
5649 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5650 return false;
5651 else if (sym->attr.dimension && (!e->ref || e->ref->type != REF_ARRAY))
5652 {
5653 /* This can happen because the parser did not detect that the
5654 associate name is an array and the expression had no array
5655 part_ref. */
5656 gfc_ref *ref = gfc_get_ref ();
5657 ref->type = REF_ARRAY;
5658 ref->u.ar = *gfc_get_array_ref();
5659 ref->u.ar.type = AR_FULL;
5660 if (sym->as)
5661 {
5662 ref->u.ar.as = sym->as;
5663 ref->u.ar.dimen = sym->as->rank;
5664 }
5665 ref->next = e->ref;
5666 e->ref = ref;
5667
5668 }
5669 }
5670
5671 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5672 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5673
5674 /* On the other hand, the parser may not have known this is an array;
5675 in this case, we have to add a FULL reference. */
5676 if (sym->assoc && sym->attr.dimension && !e->ref)
5677 {
5678 e->ref = gfc_get_ref ();
5679 e->ref->type = REF_ARRAY;
5680 e->ref->u.ar.type = AR_FULL;
5681 e->ref->u.ar.dimen = 0;
5682 }
5683
5684 /* Like above, but for class types, where the checking whether an array
5685 ref is present is more complicated. Furthermore make sure not to add
5686 the full array ref to _vptr or _len refs. */
5687 if (sym->assoc && sym->ts.type == BT_CLASS
5688 && CLASS_DATA (sym)->attr.dimension
5689 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5690 {
5691 gfc_ref *ref, *newref;
5692
5693 newref = gfc_get_ref ();
5694 newref->type = REF_ARRAY;
5695 newref->u.ar.type = AR_FULL;
5696 newref->u.ar.dimen = 0;
5697 /* Because this is an associate var and the first ref either is a ref to
5698 the _data component or not, no traversal of the ref chain is
5699 needed. The array ref needs to be inserted after the _data ref,
5700 or when that is not present, which may happend for polymorphic
5701 types, then at the first position. */
5702 ref = e->ref;
5703 if (!ref)
5704 e->ref = newref;
5705 else if (ref->type == REF_COMPONENT
5706 && strcmp ("_data", ref->u.c.component->name) == 0)
5707 {
5708 if (!ref->next || ref->next->type != REF_ARRAY)
5709 {
5710 newref->next = ref->next;
5711 ref->next = newref;
5712 }
5713 else
5714 /* Array ref present already. */
5715 gfc_free_ref_list (newref);
5716 }
5717 else if (ref->type == REF_ARRAY)
5718 /* Array ref present already. */
5719 gfc_free_ref_list (newref);
5720 else
5721 {
5722 newref->next = ref;
5723 e->ref = newref;
5724 }
5725 }
5726
5727 if (e->ref && !gfc_resolve_ref (e))
5728 return false;
5729
5730 if (sym->attr.flavor == FL_PROCEDURE
5731 && (!sym->attr.function
5732 || (sym->attr.function && sym->result
5733 && sym->result->attr.proc_pointer
5734 && !sym->result->attr.function)))
5735 {
5736 e->ts.type = BT_PROCEDURE;
5737 goto resolve_procedure;
5738 }
5739
5740 if (sym->ts.type != BT_UNKNOWN)
5741 gfc_variable_attr (e, &e->ts);
5742 else if (sym->attr.flavor == FL_PROCEDURE
5743 && sym->attr.function && sym->result
5744 && sym->result->ts.type != BT_UNKNOWN
5745 && sym->result->attr.proc_pointer)
5746 e->ts = sym->result->ts;
5747 else
5748 {
5749 /* Must be a simple variable reference. */
5750 if (!gfc_set_default_type (sym, 1, sym->ns))
5751 return false;
5752 e->ts = sym->ts;
5753 }
5754
5755 if (check_assumed_size_reference (sym, e))
5756 return false;
5757
5758 /* Deal with forward references to entries during gfc_resolve_code, to
5759 satisfy, at least partially, 12.5.2.5. */
5760 if (gfc_current_ns->entries
5761 && current_entry_id == sym->entry_id
5762 && cs_base
5763 && cs_base->current
5764 && cs_base->current->op != EXEC_ENTRY)
5765 {
5766 gfc_entry_list *entry;
5767 gfc_formal_arglist *formal;
5768 int n;
5769 bool seen, saved_specification_expr;
5770
5771 /* If the symbol is a dummy... */
5772 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5773 {
5774 entry = gfc_current_ns->entries;
5775 seen = false;
5776
5777 /* ...test if the symbol is a parameter of previous entries. */
5778 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5779 for (formal = entry->sym->formal; formal; formal = formal->next)
5780 {
5781 if (formal->sym && sym->name == formal->sym->name)
5782 {
5783 seen = true;
5784 break;
5785 }
5786 }
5787
5788 /* If it has not been seen as a dummy, this is an error. */
5789 if (!seen)
5790 {
5791 if (specification_expr)
5792 gfc_error ("Variable %qs, used in a specification expression"
5793 ", is referenced at %L before the ENTRY statement "
5794 "in which it is a parameter",
5795 sym->name, &cs_base->current->loc);
5796 else
5797 gfc_error ("Variable %qs is used at %L before the ENTRY "
5798 "statement in which it is a parameter",
5799 sym->name, &cs_base->current->loc);
5800 t = false;
5801 }
5802 }
5803
5804 /* Now do the same check on the specification expressions. */
5805 saved_specification_expr = specification_expr;
5806 specification_expr = true;
5807 if (sym->ts.type == BT_CHARACTER
5808 && !gfc_resolve_expr (sym->ts.u.cl->length))
5809 t = false;
5810
5811 if (sym->as)
5812 for (n = 0; n < sym->as->rank; n++)
5813 {
5814 if (!gfc_resolve_expr (sym->as->lower[n]))
5815 t = false;
5816 if (!gfc_resolve_expr (sym->as->upper[n]))
5817 t = false;
5818 }
5819 specification_expr = saved_specification_expr;
5820
5821 if (t)
5822 /* Update the symbol's entry level. */
5823 sym->entry_id = current_entry_id + 1;
5824 }
5825
5826 /* If a symbol has been host_associated mark it. This is used latter,
5827 to identify if aliasing is possible via host association. */
5828 if (sym->attr.flavor == FL_VARIABLE
5829 && gfc_current_ns->parent
5830 && (gfc_current_ns->parent == sym->ns
5831 || (gfc_current_ns->parent->parent
5832 && gfc_current_ns->parent->parent == sym->ns)))
5833 sym->attr.host_assoc = 1;
5834
5835 if (gfc_current_ns->proc_name
5836 && sym->attr.dimension
5837 && (sym->ns != gfc_current_ns
5838 || sym->attr.use_assoc
5839 || sym->attr.in_common))
5840 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5841
5842 resolve_procedure:
5843 if (t && !resolve_procedure_expression (e))
5844 t = false;
5845
5846 /* F2008, C617 and C1229. */
5847 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5848 && gfc_is_coindexed (e))
5849 {
5850 gfc_ref *ref, *ref2 = NULL;
5851
5852 for (ref = e->ref; ref; ref = ref->next)
5853 {
5854 if (ref->type == REF_COMPONENT)
5855 ref2 = ref;
5856 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5857 break;
5858 }
5859
5860 for ( ; ref; ref = ref->next)
5861 if (ref->type == REF_COMPONENT)
5862 break;
5863
5864 /* Expression itself is not coindexed object. */
5865 if (ref && e->ts.type == BT_CLASS)
5866 {
5867 gfc_error ("Polymorphic subobject of coindexed object at %L",
5868 &e->where);
5869 t = false;
5870 }
5871
5872 /* Expression itself is coindexed object. */
5873 if (ref == NULL)
5874 {
5875 gfc_component *c;
5876 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5877 for ( ; c; c = c->next)
5878 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5879 {
5880 gfc_error ("Coindexed object with polymorphic allocatable "
5881 "subcomponent at %L", &e->where);
5882 t = false;
5883 break;
5884 }
5885 }
5886 }
5887
5888 if (t)
5889 gfc_expression_rank (e);
5890
5891 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5892 add_caf_get_intrinsic (e);
5893
5894 /* Simplify cases where access to a parameter array results in a
5895 single constant. Suppress errors since those will have been
5896 issued before, as warnings. */
5897 if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
5898 {
5899 gfc_push_suppress_errors ();
5900 gfc_simplify_expr (e, 1);
5901 gfc_pop_suppress_errors ();
5902 }
5903
5904 return t;
5905 }
5906
5907
5908 /* Checks to see that the correct symbol has been host associated.
5909 The only situation where this arises is that in which a twice
5910 contained function is parsed after the host association is made.
5911 Therefore, on detecting this, change the symbol in the expression
5912 and convert the array reference into an actual arglist if the old
5913 symbol is a variable. */
5914 static bool
5915 check_host_association (gfc_expr *e)
5916 {
5917 gfc_symbol *sym, *old_sym;
5918 gfc_symtree *st;
5919 int n;
5920 gfc_ref *ref;
5921 gfc_actual_arglist *arg, *tail = NULL;
5922 bool retval = e->expr_type == EXPR_FUNCTION;
5923
5924 /* If the expression is the result of substitution in
5925 interface.c(gfc_extend_expr) because there is no way in
5926 which the host association can be wrong. */
5927 if (e->symtree == NULL
5928 || e->symtree->n.sym == NULL
5929 || e->user_operator)
5930 return retval;
5931
5932 old_sym = e->symtree->n.sym;
5933
5934 if (gfc_current_ns->parent
5935 && old_sym->ns != gfc_current_ns)
5936 {
5937 /* Use the 'USE' name so that renamed module symbols are
5938 correctly handled. */
5939 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5940
5941 if (sym && old_sym != sym
5942 && sym->ts.type == old_sym->ts.type
5943 && sym->attr.flavor == FL_PROCEDURE
5944 && sym->attr.contained)
5945 {
5946 /* Clear the shape, since it might not be valid. */
5947 gfc_free_shape (&e->shape, e->rank);
5948
5949 /* Give the expression the right symtree! */
5950 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5951 gcc_assert (st != NULL);
5952
5953 if (old_sym->attr.flavor == FL_PROCEDURE
5954 || e->expr_type == EXPR_FUNCTION)
5955 {
5956 /* Original was function so point to the new symbol, since
5957 the actual argument list is already attached to the
5958 expression. */
5959 e->value.function.esym = NULL;
5960 e->symtree = st;
5961 }
5962 else
5963 {
5964 /* Original was variable so convert array references into
5965 an actual arglist. This does not need any checking now
5966 since resolve_function will take care of it. */
5967 e->value.function.actual = NULL;
5968 e->expr_type = EXPR_FUNCTION;
5969 e->symtree = st;
5970
5971 /* Ambiguity will not arise if the array reference is not
5972 the last reference. */
5973 for (ref = e->ref; ref; ref = ref->next)
5974 if (ref->type == REF_ARRAY && ref->next == NULL)
5975 break;
5976
5977 gcc_assert (ref->type == REF_ARRAY);
5978
5979 /* Grab the start expressions from the array ref and
5980 copy them into actual arguments. */
5981 for (n = 0; n < ref->u.ar.dimen; n++)
5982 {
5983 arg = gfc_get_actual_arglist ();
5984 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5985 if (e->value.function.actual == NULL)
5986 tail = e->value.function.actual = arg;
5987 else
5988 {
5989 tail->next = arg;
5990 tail = arg;
5991 }
5992 }
5993
5994 /* Dump the reference list and set the rank. */
5995 gfc_free_ref_list (e->ref);
5996 e->ref = NULL;
5997 e->rank = sym->as ? sym->as->rank : 0;
5998 }
5999
6000 gfc_resolve_expr (e);
6001 sym->refs++;
6002 }
6003 }
6004 /* This might have changed! */
6005 return e->expr_type == EXPR_FUNCTION;
6006 }
6007
6008
6009 static void
6010 gfc_resolve_character_operator (gfc_expr *e)
6011 {
6012 gfc_expr *op1 = e->value.op.op1;
6013 gfc_expr *op2 = e->value.op.op2;
6014 gfc_expr *e1 = NULL;
6015 gfc_expr *e2 = NULL;
6016
6017 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
6018
6019 if (op1->ts.u.cl && op1->ts.u.cl->length)
6020 e1 = gfc_copy_expr (op1->ts.u.cl->length);
6021 else if (op1->expr_type == EXPR_CONSTANT)
6022 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
6023 op1->value.character.length);
6024
6025 if (op2->ts.u.cl && op2->ts.u.cl->length)
6026 e2 = gfc_copy_expr (op2->ts.u.cl->length);
6027 else if (op2->expr_type == EXPR_CONSTANT)
6028 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
6029 op2->value.character.length);
6030
6031 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
6032
6033 if (!e1 || !e2)
6034 {
6035 gfc_free_expr (e1);
6036 gfc_free_expr (e2);
6037
6038 return;
6039 }
6040
6041 e->ts.u.cl->length = gfc_add (e1, e2);
6042 e->ts.u.cl->length->ts.type = BT_INTEGER;
6043 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
6044 gfc_simplify_expr (e->ts.u.cl->length, 0);
6045 gfc_resolve_expr (e->ts.u.cl->length);
6046
6047 return;
6048 }
6049
6050
6051 /* Ensure that an character expression has a charlen and, if possible, a
6052 length expression. */
6053
6054 static void
6055 fixup_charlen (gfc_expr *e)
6056 {
6057 /* The cases fall through so that changes in expression type and the need
6058 for multiple fixes are picked up. In all circumstances, a charlen should
6059 be available for the middle end to hang a backend_decl on. */
6060 switch (e->expr_type)
6061 {
6062 case EXPR_OP:
6063 gfc_resolve_character_operator (e);
6064 /* FALLTHRU */
6065
6066 case EXPR_ARRAY:
6067 if (e->expr_type == EXPR_ARRAY)
6068 gfc_resolve_character_array_constructor (e);
6069 /* FALLTHRU */
6070
6071 case EXPR_SUBSTRING:
6072 if (!e->ts.u.cl && e->ref)
6073 gfc_resolve_substring_charlen (e);
6074 /* FALLTHRU */
6075
6076 default:
6077 if (!e->ts.u.cl)
6078 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
6079
6080 break;
6081 }
6082 }
6083
6084
6085 /* Update an actual argument to include the passed-object for type-bound
6086 procedures at the right position. */
6087
6088 static gfc_actual_arglist*
6089 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
6090 const char *name)
6091 {
6092 gcc_assert (argpos > 0);
6093
6094 if (argpos == 1)
6095 {
6096 gfc_actual_arglist* result;
6097
6098 result = gfc_get_actual_arglist ();
6099 result->expr = po;
6100 result->next = lst;
6101 if (name)
6102 result->name = name;
6103
6104 return result;
6105 }
6106
6107 if (lst)
6108 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
6109 else
6110 lst = update_arglist_pass (NULL, po, argpos - 1, name);
6111 return lst;
6112 }
6113
6114
6115 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
6116
6117 static gfc_expr*
6118 extract_compcall_passed_object (gfc_expr* e)
6119 {
6120 gfc_expr* po;
6121
6122 if (e->expr_type == EXPR_UNKNOWN)
6123 {
6124 gfc_error ("Error in typebound call at %L",
6125 &e->where);
6126 return NULL;
6127 }
6128
6129 gcc_assert (e->expr_type == EXPR_COMPCALL);
6130
6131 if (e->value.compcall.base_object)
6132 po = gfc_copy_expr (e->value.compcall.base_object);
6133 else
6134 {
6135 po = gfc_get_expr ();
6136 po->expr_type = EXPR_VARIABLE;
6137 po->symtree = e->symtree;
6138 po->ref = gfc_copy_ref (e->ref);
6139 po->where = e->where;
6140 }
6141
6142 if (!gfc_resolve_expr (po))
6143 return NULL;
6144
6145 return po;
6146 }
6147
6148
6149 /* Update the arglist of an EXPR_COMPCALL expression to include the
6150 passed-object. */
6151
6152 static bool
6153 update_compcall_arglist (gfc_expr* e)
6154 {
6155 gfc_expr* po;
6156 gfc_typebound_proc* tbp;
6157
6158 tbp = e->value.compcall.tbp;
6159
6160 if (tbp->error)
6161 return false;
6162
6163 po = extract_compcall_passed_object (e);
6164 if (!po)
6165 return false;
6166
6167 if (tbp->nopass || e->value.compcall.ignore_pass)
6168 {
6169 gfc_free_expr (po);
6170 return true;
6171 }
6172
6173 if (tbp->pass_arg_num <= 0)
6174 return false;
6175
6176 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6177 tbp->pass_arg_num,
6178 tbp->pass_arg);
6179
6180 return true;
6181 }
6182
6183
6184 /* Extract the passed object from a PPC call (a copy of it). */
6185
6186 static gfc_expr*
6187 extract_ppc_passed_object (gfc_expr *e)
6188 {
6189 gfc_expr *po;
6190 gfc_ref **ref;
6191
6192 po = gfc_get_expr ();
6193 po->expr_type = EXPR_VARIABLE;
6194 po->symtree = e->symtree;
6195 po->ref = gfc_copy_ref (e->ref);
6196 po->where = e->where;
6197
6198 /* Remove PPC reference. */
6199 ref = &po->ref;
6200 while ((*ref)->next)
6201 ref = &(*ref)->next;
6202 gfc_free_ref_list (*ref);
6203 *ref = NULL;
6204
6205 if (!gfc_resolve_expr (po))
6206 return NULL;
6207
6208 return po;
6209 }
6210
6211
6212 /* Update the actual arglist of a procedure pointer component to include the
6213 passed-object. */
6214
6215 static bool
6216 update_ppc_arglist (gfc_expr* e)
6217 {
6218 gfc_expr* po;
6219 gfc_component *ppc;
6220 gfc_typebound_proc* tb;
6221
6222 ppc = gfc_get_proc_ptr_comp (e);
6223 if (!ppc)
6224 return false;
6225
6226 tb = ppc->tb;
6227
6228 if (tb->error)
6229 return false;
6230 else if (tb->nopass)
6231 return true;
6232
6233 po = extract_ppc_passed_object (e);
6234 if (!po)
6235 return false;
6236
6237 /* F08:R739. */
6238 if (po->rank != 0)
6239 {
6240 gfc_error ("Passed-object at %L must be scalar", &e->where);
6241 return false;
6242 }
6243
6244 /* F08:C611. */
6245 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
6246 {
6247 gfc_error ("Base object for procedure-pointer component call at %L is of"
6248 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
6249 return false;
6250 }
6251
6252 gcc_assert (tb->pass_arg_num > 0);
6253 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6254 tb->pass_arg_num,
6255 tb->pass_arg);
6256
6257 return true;
6258 }
6259
6260
6261 /* Check that the object a TBP is called on is valid, i.e. it must not be
6262 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
6263
6264 static bool
6265 check_typebound_baseobject (gfc_expr* e)
6266 {
6267 gfc_expr* base;
6268 bool return_value = false;
6269
6270 base = extract_compcall_passed_object (e);
6271 if (!base)
6272 return false;
6273
6274 if (base->ts.type != BT_DERIVED && base->ts.type != BT_CLASS)
6275 {
6276 gfc_error ("Error in typebound call at %L", &e->where);
6277 goto cleanup;
6278 }
6279
6280 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
6281 return false;
6282
6283 /* F08:C611. */
6284 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
6285 {
6286 gfc_error ("Base object for type-bound procedure call at %L is of"
6287 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
6288 goto cleanup;
6289 }
6290
6291 /* F08:C1230. If the procedure called is NOPASS,
6292 the base object must be scalar. */
6293 if (e->value.compcall.tbp->nopass && base->rank != 0)
6294 {
6295 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
6296 " be scalar", &e->where);
6297 goto cleanup;
6298 }
6299
6300 return_value = true;
6301
6302 cleanup:
6303 gfc_free_expr (base);
6304 return return_value;
6305 }
6306
6307
6308 /* Resolve a call to a type-bound procedure, either function or subroutine,
6309 statically from the data in an EXPR_COMPCALL expression. The adapted
6310 arglist and the target-procedure symtree are returned. */
6311
6312 static bool
6313 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
6314 gfc_actual_arglist** actual)
6315 {
6316 gcc_assert (e->expr_type == EXPR_COMPCALL);
6317 gcc_assert (!e->value.compcall.tbp->is_generic);
6318
6319 /* Update the actual arglist for PASS. */
6320 if (!update_compcall_arglist (e))
6321 return false;
6322
6323 *actual = e->value.compcall.actual;
6324 *target = e->value.compcall.tbp->u.specific;
6325
6326 gfc_free_ref_list (e->ref);
6327 e->ref = NULL;
6328 e->value.compcall.actual = NULL;
6329
6330 /* If we find a deferred typebound procedure, check for derived types
6331 that an overriding typebound procedure has not been missed. */
6332 if (e->value.compcall.name
6333 && !e->value.compcall.tbp->non_overridable
6334 && e->value.compcall.base_object
6335 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6336 {
6337 gfc_symtree *st;
6338 gfc_symbol *derived;
6339
6340 /* Use the derived type of the base_object. */
6341 derived = e->value.compcall.base_object->ts.u.derived;
6342 st = NULL;
6343
6344 /* If necessary, go through the inheritance chain. */
6345 while (!st && derived)
6346 {
6347 /* Look for the typebound procedure 'name'. */
6348 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6349 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6350 e->value.compcall.name);
6351 if (!st)
6352 derived = gfc_get_derived_super_type (derived);
6353 }
6354
6355 /* Now find the specific name in the derived type namespace. */
6356 if (st && st->n.tb && st->n.tb->u.specific)
6357 gfc_find_sym_tree (st->n.tb->u.specific->name,
6358 derived->ns, 1, &st);
6359 if (st)
6360 *target = st;
6361 }
6362 return true;
6363 }
6364
6365
6366 /* Get the ultimate declared type from an expression. In addition,
6367 return the last class/derived type reference and the copy of the
6368 reference list. If check_types is set true, derived types are
6369 identified as well as class references. */
6370 static gfc_symbol*
6371 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6372 gfc_expr *e, bool check_types)
6373 {
6374 gfc_symbol *declared;
6375 gfc_ref *ref;
6376
6377 declared = NULL;
6378 if (class_ref)
6379 *class_ref = NULL;
6380 if (new_ref)
6381 *new_ref = gfc_copy_ref (e->ref);
6382
6383 for (ref = e->ref; ref; ref = ref->next)
6384 {
6385 if (ref->type != REF_COMPONENT)
6386 continue;
6387
6388 if ((ref->u.c.component->ts.type == BT_CLASS
6389 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6390 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6391 {
6392 declared = ref->u.c.component->ts.u.derived;
6393 if (class_ref)
6394 *class_ref = ref;
6395 }
6396 }
6397
6398 if (declared == NULL)
6399 declared = e->symtree->n.sym->ts.u.derived;
6400
6401 return declared;
6402 }
6403
6404
6405 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6406 which of the specific bindings (if any) matches the arglist and transform
6407 the expression into a call of that binding. */
6408
6409 static bool
6410 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6411 {
6412 gfc_typebound_proc* genproc;
6413 const char* genname;
6414 gfc_symtree *st;
6415 gfc_symbol *derived;
6416
6417 gcc_assert (e->expr_type == EXPR_COMPCALL);
6418 genname = e->value.compcall.name;
6419 genproc = e->value.compcall.tbp;
6420
6421 if (!genproc->is_generic)
6422 return true;
6423
6424 /* Try the bindings on this type and in the inheritance hierarchy. */
6425 for (; genproc; genproc = genproc->overridden)
6426 {
6427 gfc_tbp_generic* g;
6428
6429 gcc_assert (genproc->is_generic);
6430 for (g = genproc->u.generic; g; g = g->next)
6431 {
6432 gfc_symbol* target;
6433 gfc_actual_arglist* args;
6434 bool matches;
6435
6436 gcc_assert (g->specific);
6437
6438 if (g->specific->error)
6439 continue;
6440
6441 target = g->specific->u.specific->n.sym;
6442
6443 /* Get the right arglist by handling PASS/NOPASS. */
6444 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6445 if (!g->specific->nopass)
6446 {
6447 gfc_expr* po;
6448 po = extract_compcall_passed_object (e);
6449 if (!po)
6450 {
6451 gfc_free_actual_arglist (args);
6452 return false;
6453 }
6454
6455 gcc_assert (g->specific->pass_arg_num > 0);
6456 gcc_assert (!g->specific->error);
6457 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6458 g->specific->pass_arg);
6459 }
6460 resolve_actual_arglist (args, target->attr.proc,
6461 is_external_proc (target)
6462 && gfc_sym_get_dummy_args (target) == NULL);
6463
6464 /* Check if this arglist matches the formal. */
6465 matches = gfc_arglist_matches_symbol (&args, target);
6466
6467 /* Clean up and break out of the loop if we've found it. */
6468 gfc_free_actual_arglist (args);
6469 if (matches)
6470 {
6471 e->value.compcall.tbp = g->specific;
6472 genname = g->specific_st->name;
6473 /* Pass along the name for CLASS methods, where the vtab
6474 procedure pointer component has to be referenced. */
6475 if (name)
6476 *name = genname;
6477 goto success;
6478 }
6479 }
6480 }
6481
6482 /* Nothing matching found! */
6483 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6484 " %qs at %L", genname, &e->where);
6485 return false;
6486
6487 success:
6488 /* Make sure that we have the right specific instance for the name. */
6489 derived = get_declared_from_expr (NULL, NULL, e, true);
6490
6491 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6492 if (st)
6493 e->value.compcall.tbp = st->n.tb;
6494
6495 return true;
6496 }
6497
6498
6499 /* Resolve a call to a type-bound subroutine. */
6500
6501 static bool
6502 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6503 {
6504 gfc_actual_arglist* newactual;
6505 gfc_symtree* target;
6506
6507 /* Check that's really a SUBROUTINE. */
6508 if (!c->expr1->value.compcall.tbp->subroutine)
6509 {
6510 if (!c->expr1->value.compcall.tbp->is_generic
6511 && c->expr1->value.compcall.tbp->u.specific
6512 && c->expr1->value.compcall.tbp->u.specific->n.sym
6513 && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
6514 c->expr1->value.compcall.tbp->subroutine = 1;
6515 else
6516 {
6517 gfc_error ("%qs at %L should be a SUBROUTINE",
6518 c->expr1->value.compcall.name, &c->loc);
6519 return false;
6520 }
6521 }
6522
6523 if (!check_typebound_baseobject (c->expr1))
6524 return false;
6525
6526 /* Pass along the name for CLASS methods, where the vtab
6527 procedure pointer component has to be referenced. */
6528 if (name)
6529 *name = c->expr1->value.compcall.name;
6530
6531 if (!resolve_typebound_generic_call (c->expr1, name))
6532 return false;
6533
6534 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6535 if (overridable)
6536 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6537
6538 /* Transform into an ordinary EXEC_CALL for now. */
6539
6540 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6541 return false;
6542
6543 c->ext.actual = newactual;
6544 c->symtree = target;
6545 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6546
6547 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6548
6549 gfc_free_expr (c->expr1);
6550 c->expr1 = gfc_get_expr ();
6551 c->expr1->expr_type = EXPR_FUNCTION;
6552 c->expr1->symtree = target;
6553 c->expr1->where = c->loc;
6554
6555 return resolve_call (c);
6556 }
6557
6558
6559 /* Resolve a component-call expression. */
6560 static bool
6561 resolve_compcall (gfc_expr* e, const char **name)
6562 {
6563 gfc_actual_arglist* newactual;
6564 gfc_symtree* target;
6565
6566 /* Check that's really a FUNCTION. */
6567 if (!e->value.compcall.tbp->function)
6568 {
6569 gfc_error ("%qs at %L should be a FUNCTION",
6570 e->value.compcall.name, &e->where);
6571 return false;
6572 }
6573
6574
6575 /* These must not be assign-calls! */
6576 gcc_assert (!e->value.compcall.assign);
6577
6578 if (!check_typebound_baseobject (e))
6579 return false;
6580
6581 /* Pass along the name for CLASS methods, where the vtab
6582 procedure pointer component has to be referenced. */
6583 if (name)
6584 *name = e->value.compcall.name;
6585
6586 if (!resolve_typebound_generic_call (e, name))
6587 return false;
6588 gcc_assert (!e->value.compcall.tbp->is_generic);
6589
6590 /* Take the rank from the function's symbol. */
6591 if (e->value.compcall.tbp->u.specific->n.sym->as)
6592 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6593
6594 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6595 arglist to the TBP's binding target. */
6596
6597 if (!resolve_typebound_static (e, &target, &newactual))
6598 return false;
6599
6600 e->value.function.actual = newactual;
6601 e->value.function.name = NULL;
6602 e->value.function.esym = target->n.sym;
6603 e->value.function.isym = NULL;
6604 e->symtree = target;
6605 e->ts = target->n.sym->ts;
6606 e->expr_type = EXPR_FUNCTION;
6607
6608 /* Resolution is not necessary if this is a class subroutine; this
6609 function only has to identify the specific proc. Resolution of
6610 the call will be done next in resolve_typebound_call. */
6611 return gfc_resolve_expr (e);
6612 }
6613
6614
6615 static bool resolve_fl_derived (gfc_symbol *sym);
6616
6617
6618 /* Resolve a typebound function, or 'method'. First separate all
6619 the non-CLASS references by calling resolve_compcall directly. */
6620
6621 static bool
6622 resolve_typebound_function (gfc_expr* e)
6623 {
6624 gfc_symbol *declared;
6625 gfc_component *c;
6626 gfc_ref *new_ref;
6627 gfc_ref *class_ref;
6628 gfc_symtree *st;
6629 const char *name;
6630 gfc_typespec ts;
6631 gfc_expr *expr;
6632 bool overridable;
6633
6634 st = e->symtree;
6635
6636 /* Deal with typebound operators for CLASS objects. */
6637 expr = e->value.compcall.base_object;
6638 overridable = !e->value.compcall.tbp->non_overridable;
6639 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6640 {
6641 /* Since the typebound operators are generic, we have to ensure
6642 that any delays in resolution are corrected and that the vtab
6643 is present. */
6644 ts = expr->ts;
6645 declared = ts.u.derived;
6646 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6647 if (c->ts.u.derived == NULL)
6648 c->ts.u.derived = gfc_find_derived_vtab (declared);
6649
6650 if (!resolve_compcall (e, &name))
6651 return false;
6652
6653 /* Use the generic name if it is there. */
6654 name = name ? name : e->value.function.esym->name;
6655 e->symtree = expr->symtree;
6656 e->ref = gfc_copy_ref (expr->ref);
6657 get_declared_from_expr (&class_ref, NULL, e, false);
6658
6659 /* Trim away the extraneous references that emerge from nested
6660 use of interface.c (extend_expr). */
6661 if (class_ref && class_ref->next)
6662 {
6663 gfc_free_ref_list (class_ref->next);
6664 class_ref->next = NULL;
6665 }
6666 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6667 {
6668 gfc_free_ref_list (e->ref);
6669 e->ref = NULL;
6670 }
6671
6672 gfc_add_vptr_component (e);
6673 gfc_add_component_ref (e, name);
6674 e->value.function.esym = NULL;
6675 if (expr->expr_type != EXPR_VARIABLE)
6676 e->base_expr = expr;
6677 return true;
6678 }
6679
6680 if (st == NULL)
6681 return resolve_compcall (e, NULL);
6682
6683 if (!gfc_resolve_ref (e))
6684 return false;
6685
6686 /* Get the CLASS declared type. */
6687 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6688
6689 if (!resolve_fl_derived (declared))
6690 return false;
6691
6692 /* Weed out cases of the ultimate component being a derived type. */
6693 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6694 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6695 {
6696 gfc_free_ref_list (new_ref);
6697 return resolve_compcall (e, NULL);
6698 }
6699
6700 c = gfc_find_component (declared, "_data", true, true, NULL);
6701
6702 /* Treat the call as if it is a typebound procedure, in order to roll
6703 out the correct name for the specific function. */
6704 if (!resolve_compcall (e, &name))
6705 {
6706 gfc_free_ref_list (new_ref);
6707 return false;
6708 }
6709 ts = e->ts;
6710
6711 if (overridable)
6712 {
6713 /* Convert the expression to a procedure pointer component call. */
6714 e->value.function.esym = NULL;
6715 e->symtree = st;
6716
6717 if (new_ref)
6718 e->ref = new_ref;
6719
6720 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6721 gfc_add_vptr_component (e);
6722 gfc_add_component_ref (e, name);
6723
6724 /* Recover the typespec for the expression. This is really only
6725 necessary for generic procedures, where the additional call
6726 to gfc_add_component_ref seems to throw the collection of the
6727 correct typespec. */
6728 e->ts = ts;
6729 }
6730 else if (new_ref)
6731 gfc_free_ref_list (new_ref);
6732
6733 return true;
6734 }
6735
6736 /* Resolve a typebound subroutine, or 'method'. First separate all
6737 the non-CLASS references by calling resolve_typebound_call
6738 directly. */
6739
6740 static bool
6741 resolve_typebound_subroutine (gfc_code *code)
6742 {
6743 gfc_symbol *declared;
6744 gfc_component *c;
6745 gfc_ref *new_ref;
6746 gfc_ref *class_ref;
6747 gfc_symtree *st;
6748 const char *name;
6749 gfc_typespec ts;
6750 gfc_expr *expr;
6751 bool overridable;
6752
6753 st = code->expr1->symtree;
6754
6755 /* Deal with typebound operators for CLASS objects. */
6756 expr = code->expr1->value.compcall.base_object;
6757 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6758 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6759 {
6760 /* If the base_object is not a variable, the corresponding actual
6761 argument expression must be stored in e->base_expression so
6762 that the corresponding tree temporary can be used as the base
6763 object in gfc_conv_procedure_call. */
6764 if (expr->expr_type != EXPR_VARIABLE)
6765 {
6766 gfc_actual_arglist *args;
6767
6768 args= code->expr1->value.function.actual;
6769 for (; args; args = args->next)
6770 if (expr == args->expr)
6771 expr = args->expr;
6772 }
6773
6774 /* Since the typebound operators are generic, we have to ensure
6775 that any delays in resolution are corrected and that the vtab
6776 is present. */
6777 declared = expr->ts.u.derived;
6778 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6779 if (c->ts.u.derived == NULL)
6780 c->ts.u.derived = gfc_find_derived_vtab (declared);
6781
6782 if (!resolve_typebound_call (code, &name, NULL))
6783 return false;
6784
6785 /* Use the generic name if it is there. */
6786 name = name ? name : code->expr1->value.function.esym->name;
6787 code->expr1->symtree = expr->symtree;
6788 code->expr1->ref = gfc_copy_ref (expr->ref);
6789
6790 /* Trim away the extraneous references that emerge from nested
6791 use of interface.c (extend_expr). */
6792 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6793 if (class_ref && class_ref->next)
6794 {
6795 gfc_free_ref_list (class_ref->next);
6796 class_ref->next = NULL;
6797 }
6798 else if (code->expr1->ref && !class_ref)
6799 {
6800 gfc_free_ref_list (code->expr1->ref);
6801 code->expr1->ref = NULL;
6802 }
6803
6804 /* Now use the procedure in the vtable. */
6805 gfc_add_vptr_component (code->expr1);
6806 gfc_add_component_ref (code->expr1, name);
6807 code->expr1->value.function.esym = NULL;
6808 if (expr->expr_type != EXPR_VARIABLE)
6809 code->expr1->base_expr = expr;
6810 return true;
6811 }
6812
6813 if (st == NULL)
6814 return resolve_typebound_call (code, NULL, NULL);
6815
6816 if (!gfc_resolve_ref (code->expr1))
6817 return false;
6818
6819 /* Get the CLASS declared type. */
6820 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6821
6822 /* Weed out cases of the ultimate component being a derived type. */
6823 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6824 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6825 {
6826 gfc_free_ref_list (new_ref);
6827 return resolve_typebound_call (code, NULL, NULL);
6828 }
6829
6830 if (!resolve_typebound_call (code, &name, &overridable))
6831 {
6832 gfc_free_ref_list (new_ref);
6833 return false;
6834 }
6835 ts = code->expr1->ts;
6836
6837 if (overridable)
6838 {
6839 /* Convert the expression to a procedure pointer component call. */
6840 code->expr1->value.function.esym = NULL;
6841 code->expr1->symtree = st;
6842
6843 if (new_ref)
6844 code->expr1->ref = new_ref;
6845
6846 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6847 gfc_add_vptr_component (code->expr1);
6848 gfc_add_component_ref (code->expr1, name);
6849
6850 /* Recover the typespec for the expression. This is really only
6851 necessary for generic procedures, where the additional call
6852 to gfc_add_component_ref seems to throw the collection of the
6853 correct typespec. */
6854 code->expr1->ts = ts;
6855 }
6856 else if (new_ref)
6857 gfc_free_ref_list (new_ref);
6858
6859 return true;
6860 }
6861
6862
6863 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6864
6865 static bool
6866 resolve_ppc_call (gfc_code* c)
6867 {
6868 gfc_component *comp;
6869
6870 comp = gfc_get_proc_ptr_comp (c->expr1);
6871 gcc_assert (comp != NULL);
6872
6873 c->resolved_sym = c->expr1->symtree->n.sym;
6874 c->expr1->expr_type = EXPR_VARIABLE;
6875
6876 if (!comp->attr.subroutine)
6877 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6878
6879 if (!gfc_resolve_ref (c->expr1))
6880 return false;
6881
6882 if (!update_ppc_arglist (c->expr1))
6883 return false;
6884
6885 c->ext.actual = c->expr1->value.compcall.actual;
6886
6887 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6888 !(comp->ts.interface
6889 && comp->ts.interface->formal)))
6890 return false;
6891
6892 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6893 return false;
6894
6895 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6896
6897 return true;
6898 }
6899
6900
6901 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6902
6903 static bool
6904 resolve_expr_ppc (gfc_expr* e)
6905 {
6906 gfc_component *comp;
6907
6908 comp = gfc_get_proc_ptr_comp (e);
6909 gcc_assert (comp != NULL);
6910
6911 /* Convert to EXPR_FUNCTION. */
6912 e->expr_type = EXPR_FUNCTION;
6913 e->value.function.isym = NULL;
6914 e->value.function.actual = e->value.compcall.actual;
6915 e->ts = comp->ts;
6916 if (comp->as != NULL)
6917 e->rank = comp->as->rank;
6918
6919 if (!comp->attr.function)
6920 gfc_add_function (&comp->attr, comp->name, &e->where);
6921
6922 if (!gfc_resolve_ref (e))
6923 return false;
6924
6925 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6926 !(comp->ts.interface
6927 && comp->ts.interface->formal)))
6928 return false;
6929
6930 if (!update_ppc_arglist (e))
6931 return false;
6932
6933 if (!check_pure_function(e))
6934 return false;
6935
6936 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6937
6938 return true;
6939 }
6940
6941
6942 static bool
6943 gfc_is_expandable_expr (gfc_expr *e)
6944 {
6945 gfc_constructor *con;
6946
6947 if (e->expr_type == EXPR_ARRAY)
6948 {
6949 /* Traverse the constructor looking for variables that are flavor
6950 parameter. Parameters must be expanded since they are fully used at
6951 compile time. */
6952 con = gfc_constructor_first (e->value.constructor);
6953 for (; con; con = gfc_constructor_next (con))
6954 {
6955 if (con->expr->expr_type == EXPR_VARIABLE
6956 && con->expr->symtree
6957 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6958 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6959 return true;
6960 if (con->expr->expr_type == EXPR_ARRAY
6961 && gfc_is_expandable_expr (con->expr))
6962 return true;
6963 }
6964 }
6965
6966 return false;
6967 }
6968
6969
6970 /* Sometimes variables in specification expressions of the result
6971 of module procedures in submodules wind up not being the 'real'
6972 dummy. Find this, if possible, in the namespace of the first
6973 formal argument. */
6974
6975 static void
6976 fixup_unique_dummy (gfc_expr *e)
6977 {
6978 gfc_symtree *st = NULL;
6979 gfc_symbol *s = NULL;
6980
6981 if (e->symtree->n.sym->ns->proc_name
6982 && e->symtree->n.sym->ns->proc_name->formal)
6983 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6984
6985 if (s != NULL)
6986 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6987
6988 if (st != NULL
6989 && st->n.sym != NULL
6990 && st->n.sym->attr.dummy)
6991 e->symtree = st;
6992 }
6993
6994 /* Resolve an expression. That is, make sure that types of operands agree
6995 with their operators, intrinsic operators are converted to function calls
6996 for overloaded types and unresolved function references are resolved. */
6997
6998 bool
6999 gfc_resolve_expr (gfc_expr *e)
7000 {
7001 bool t;
7002 bool inquiry_save, actual_arg_save, first_actual_arg_save;
7003
7004 if (e == NULL || e->do_not_resolve_again)
7005 return true;
7006
7007 /* inquiry_argument only applies to variables. */
7008 inquiry_save = inquiry_argument;
7009 actual_arg_save = actual_arg;
7010 first_actual_arg_save = first_actual_arg;
7011
7012 if (e->expr_type != EXPR_VARIABLE)
7013 {
7014 inquiry_argument = false;
7015 actual_arg = false;
7016 first_actual_arg = false;
7017 }
7018 else if (e->symtree != NULL
7019 && *e->symtree->name == '@'
7020 && e->symtree->n.sym->attr.dummy)
7021 {
7022 /* Deal with submodule specification expressions that are not
7023 found to be referenced in module.c(read_cleanup). */
7024 fixup_unique_dummy (e);
7025 }
7026
7027 switch (e->expr_type)
7028 {
7029 case EXPR_OP:
7030 t = resolve_operator (e);
7031 break;
7032
7033 case EXPR_FUNCTION:
7034 case EXPR_VARIABLE:
7035
7036 if (check_host_association (e))
7037 t = resolve_function (e);
7038 else
7039 t = resolve_variable (e);
7040
7041 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
7042 && e->ref->type != REF_SUBSTRING)
7043 gfc_resolve_substring_charlen (e);
7044
7045 break;
7046
7047 case EXPR_COMPCALL:
7048 t = resolve_typebound_function (e);
7049 break;
7050
7051 case EXPR_SUBSTRING:
7052 t = gfc_resolve_ref (e);
7053 break;
7054
7055 case EXPR_CONSTANT:
7056 case EXPR_NULL:
7057 t = true;
7058 break;
7059
7060 case EXPR_PPC:
7061 t = resolve_expr_ppc (e);
7062 break;
7063
7064 case EXPR_ARRAY:
7065 t = false;
7066 if (!gfc_resolve_ref (e))
7067 break;
7068
7069 t = gfc_resolve_array_constructor (e);
7070 /* Also try to expand a constructor. */
7071 if (t)
7072 {
7073 gfc_expression_rank (e);
7074 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
7075 gfc_expand_constructor (e, false);
7076 }
7077
7078 /* This provides the opportunity for the length of constructors with
7079 character valued function elements to propagate the string length
7080 to the expression. */
7081 if (t && e->ts.type == BT_CHARACTER)
7082 {
7083 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
7084 here rather then add a duplicate test for it above. */
7085 gfc_expand_constructor (e, false);
7086 t = gfc_resolve_character_array_constructor (e);
7087 }
7088
7089 break;
7090
7091 case EXPR_STRUCTURE:
7092 t = gfc_resolve_ref (e);
7093 if (!t)
7094 break;
7095
7096 t = resolve_structure_cons (e, 0);
7097 if (!t)
7098 break;
7099
7100 t = gfc_simplify_expr (e, 0);
7101 break;
7102
7103 default:
7104 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
7105 }
7106
7107 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
7108 fixup_charlen (e);
7109
7110 inquiry_argument = inquiry_save;
7111 actual_arg = actual_arg_save;
7112 first_actual_arg = first_actual_arg_save;
7113
7114 /* For some reason, resolving these expressions a second time mangles
7115 the typespec of the expression itself. */
7116 if (t && e->expr_type == EXPR_VARIABLE
7117 && e->symtree->n.sym->attr.select_rank_temporary
7118 && UNLIMITED_POLY (e->symtree->n.sym))
7119 e->do_not_resolve_again = 1;
7120
7121 return t;
7122 }
7123
7124
7125 /* Resolve an expression from an iterator. They must be scalar and have
7126 INTEGER or (optionally) REAL type. */
7127
7128 static bool
7129 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
7130 const char *name_msgid)
7131 {
7132 if (!gfc_resolve_expr (expr))
7133 return false;
7134
7135 if (expr->rank != 0)
7136 {
7137 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
7138 return false;
7139 }
7140
7141 if (expr->ts.type != BT_INTEGER)
7142 {
7143 if (expr->ts.type == BT_REAL)
7144 {
7145 if (real_ok)
7146 return gfc_notify_std (GFC_STD_F95_DEL,
7147 "%s at %L must be integer",
7148 _(name_msgid), &expr->where);
7149 else
7150 {
7151 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
7152 &expr->where);
7153 return false;
7154 }
7155 }
7156 else
7157 {
7158 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
7159 return false;
7160 }
7161 }
7162 return true;
7163 }
7164
7165
7166 /* Resolve the expressions in an iterator structure. If REAL_OK is
7167 false allow only INTEGER type iterators, otherwise allow REAL types.
7168 Set own_scope to true for ac-implied-do and data-implied-do as those
7169 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
7170
7171 bool
7172 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
7173 {
7174 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
7175 return false;
7176
7177 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
7178 _("iterator variable")))
7179 return false;
7180
7181 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
7182 "Start expression in DO loop"))
7183 return false;
7184
7185 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
7186 "End expression in DO loop"))
7187 return false;
7188
7189 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
7190 "Step expression in DO loop"))
7191 return false;
7192
7193 /* Convert start, end, and step to the same type as var. */
7194 if (iter->start->ts.kind != iter->var->ts.kind
7195 || iter->start->ts.type != iter->var->ts.type)
7196 gfc_convert_type (iter->start, &iter->var->ts, 1);
7197
7198 if (iter->end->ts.kind != iter->var->ts.kind
7199 || iter->end->ts.type != iter->var->ts.type)
7200 gfc_convert_type (iter->end, &iter->var->ts, 1);
7201
7202 if (iter->step->ts.kind != iter->var->ts.kind
7203 || iter->step->ts.type != iter->var->ts.type)
7204 gfc_convert_type (iter->step, &iter->var->ts, 1);
7205
7206 if (iter->step->expr_type == EXPR_CONSTANT)
7207 {
7208 if ((iter->step->ts.type == BT_INTEGER
7209 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
7210 || (iter->step->ts.type == BT_REAL
7211 && mpfr_sgn (iter->step->value.real) == 0))
7212 {
7213 gfc_error ("Step expression in DO loop at %L cannot be zero",
7214 &iter->step->where);
7215 return false;
7216 }
7217 }
7218
7219 if (iter->start->expr_type == EXPR_CONSTANT
7220 && iter->end->expr_type == EXPR_CONSTANT
7221 && iter->step->expr_type == EXPR_CONSTANT)
7222 {
7223 int sgn, cmp;
7224 if (iter->start->ts.type == BT_INTEGER)
7225 {
7226 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
7227 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
7228 }
7229 else
7230 {
7231 sgn = mpfr_sgn (iter->step->value.real);
7232 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
7233 }
7234 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
7235 gfc_warning (OPT_Wzerotrip,
7236 "DO loop at %L will be executed zero times",
7237 &iter->step->where);
7238 }
7239
7240 if (iter->end->expr_type == EXPR_CONSTANT
7241 && iter->end->ts.type == BT_INTEGER
7242 && iter->step->expr_type == EXPR_CONSTANT
7243 && iter->step->ts.type == BT_INTEGER
7244 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
7245 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
7246 {
7247 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
7248 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
7249
7250 if (is_step_positive
7251 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
7252 gfc_warning (OPT_Wundefined_do_loop,
7253 "DO loop at %L is undefined as it overflows",
7254 &iter->step->where);
7255 else if (!is_step_positive
7256 && mpz_cmp (iter->end->value.integer,
7257 gfc_integer_kinds[k].min_int) == 0)
7258 gfc_warning (OPT_Wundefined_do_loop,
7259 "DO loop at %L is undefined as it underflows",
7260 &iter->step->where);
7261 }
7262
7263 return true;
7264 }
7265
7266
7267 /* Traversal function for find_forall_index. f == 2 signals that
7268 that variable itself is not to be checked - only the references. */
7269
7270 static bool
7271 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
7272 {
7273 if (expr->expr_type != EXPR_VARIABLE)
7274 return false;
7275
7276 /* A scalar assignment */
7277 if (!expr->ref || *f == 1)
7278 {
7279 if (expr->symtree->n.sym == sym)
7280 return true;
7281 else
7282 return false;
7283 }
7284
7285 if (*f == 2)
7286 *f = 1;
7287 return false;
7288 }
7289
7290
7291 /* Check whether the FORALL index appears in the expression or not.
7292 Returns true if SYM is found in EXPR. */
7293
7294 bool
7295 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
7296 {
7297 if (gfc_traverse_expr (expr, sym, forall_index, f))
7298 return true;
7299 else
7300 return false;
7301 }
7302
7303
7304 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
7305 to be a scalar INTEGER variable. The subscripts and stride are scalar
7306 INTEGERs, and if stride is a constant it must be nonzero.
7307 Furthermore "A subscript or stride in a forall-triplet-spec shall
7308 not contain a reference to any index-name in the
7309 forall-triplet-spec-list in which it appears." (7.5.4.1) */
7310
7311 static void
7312 resolve_forall_iterators (gfc_forall_iterator *it)
7313 {
7314 gfc_forall_iterator *iter, *iter2;
7315
7316 for (iter = it; iter; iter = iter->next)
7317 {
7318 if (gfc_resolve_expr (iter->var)
7319 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
7320 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
7321 &iter->var->where);
7322
7323 if (gfc_resolve_expr (iter->start)
7324 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
7325 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
7326 &iter->start->where);
7327 if (iter->var->ts.kind != iter->start->ts.kind)
7328 gfc_convert_type (iter->start, &iter->var->ts, 1);
7329
7330 if (gfc_resolve_expr (iter->end)
7331 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
7332 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
7333 &iter->end->where);
7334 if (iter->var->ts.kind != iter->end->ts.kind)
7335 gfc_convert_type (iter->end, &iter->var->ts, 1);
7336
7337 if (gfc_resolve_expr (iter->stride))
7338 {
7339 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7340 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7341 &iter->stride->where, "INTEGER");
7342
7343 if (iter->stride->expr_type == EXPR_CONSTANT
7344 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7345 gfc_error ("FORALL stride expression at %L cannot be zero",
7346 &iter->stride->where);
7347 }
7348 if (iter->var->ts.kind != iter->stride->ts.kind)
7349 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7350 }
7351
7352 for (iter = it; iter; iter = iter->next)
7353 for (iter2 = iter; iter2; iter2 = iter2->next)
7354 {
7355 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7356 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7357 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7358 gfc_error ("FORALL index %qs may not appear in triplet "
7359 "specification at %L", iter->var->symtree->name,
7360 &iter2->start->where);
7361 }
7362 }
7363
7364
7365 /* Given a pointer to a symbol that is a derived type, see if it's
7366 inaccessible, i.e. if it's defined in another module and the components are
7367 PRIVATE. The search is recursive if necessary. Returns zero if no
7368 inaccessible components are found, nonzero otherwise. */
7369
7370 static int
7371 derived_inaccessible (gfc_symbol *sym)
7372 {
7373 gfc_component *c;
7374
7375 if (sym->attr.use_assoc && sym->attr.private_comp)
7376 return 1;
7377
7378 for (c = sym->components; c; c = c->next)
7379 {
7380 /* Prevent an infinite loop through this function. */
7381 if (c->ts.type == BT_DERIVED && c->attr.pointer
7382 && sym == c->ts.u.derived)
7383 continue;
7384
7385 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7386 return 1;
7387 }
7388
7389 return 0;
7390 }
7391
7392
7393 /* Resolve the argument of a deallocate expression. The expression must be
7394 a pointer or a full array. */
7395
7396 static bool
7397 resolve_deallocate_expr (gfc_expr *e)
7398 {
7399 symbol_attribute attr;
7400 int allocatable, pointer;
7401 gfc_ref *ref;
7402 gfc_symbol *sym;
7403 gfc_component *c;
7404 bool unlimited;
7405
7406 if (!gfc_resolve_expr (e))
7407 return false;
7408
7409 if (e->expr_type != EXPR_VARIABLE)
7410 goto bad;
7411
7412 sym = e->symtree->n.sym;
7413 unlimited = UNLIMITED_POLY(sym);
7414
7415 if (sym->ts.type == BT_CLASS)
7416 {
7417 allocatable = CLASS_DATA (sym)->attr.allocatable;
7418 pointer = CLASS_DATA (sym)->attr.class_pointer;
7419 }
7420 else
7421 {
7422 allocatable = sym->attr.allocatable;
7423 pointer = sym->attr.pointer;
7424 }
7425 for (ref = e->ref; ref; ref = ref->next)
7426 {
7427 switch (ref->type)
7428 {
7429 case REF_ARRAY:
7430 if (ref->u.ar.type != AR_FULL
7431 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7432 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7433 allocatable = 0;
7434 break;
7435
7436 case REF_COMPONENT:
7437 c = ref->u.c.component;
7438 if (c->ts.type == BT_CLASS)
7439 {
7440 allocatable = CLASS_DATA (c)->attr.allocatable;
7441 pointer = CLASS_DATA (c)->attr.class_pointer;
7442 }
7443 else
7444 {
7445 allocatable = c->attr.allocatable;
7446 pointer = c->attr.pointer;
7447 }
7448 break;
7449
7450 case REF_SUBSTRING:
7451 case REF_INQUIRY:
7452 allocatable = 0;
7453 break;
7454 }
7455 }
7456
7457 attr = gfc_expr_attr (e);
7458
7459 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7460 {
7461 bad:
7462 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7463 &e->where);
7464 return false;
7465 }
7466
7467 /* F2008, C644. */
7468 if (gfc_is_coindexed (e))
7469 {
7470 gfc_error ("Coindexed allocatable object at %L", &e->where);
7471 return false;
7472 }
7473
7474 if (pointer
7475 && !gfc_check_vardef_context (e, true, true, false,
7476 _("DEALLOCATE object")))
7477 return false;
7478 if (!gfc_check_vardef_context (e, false, true, false,
7479 _("DEALLOCATE object")))
7480 return false;
7481
7482 return true;
7483 }
7484
7485
7486 /* Returns true if the expression e contains a reference to the symbol sym. */
7487 static bool
7488 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7489 {
7490 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7491 return true;
7492
7493 return false;
7494 }
7495
7496 bool
7497 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7498 {
7499 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7500 }
7501
7502
7503 /* Given the expression node e for an allocatable/pointer of derived type to be
7504 allocated, get the expression node to be initialized afterwards (needed for
7505 derived types with default initializers, and derived types with allocatable
7506 components that need nullification.) */
7507
7508 gfc_expr *
7509 gfc_expr_to_initialize (gfc_expr *e)
7510 {
7511 gfc_expr *result;
7512 gfc_ref *ref;
7513 int i;
7514
7515 result = gfc_copy_expr (e);
7516
7517 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7518 for (ref = result->ref; ref; ref = ref->next)
7519 if (ref->type == REF_ARRAY && ref->next == NULL)
7520 {
7521 if (ref->u.ar.dimen == 0
7522 && ref->u.ar.as && ref->u.ar.as->corank)
7523 return result;
7524
7525 ref->u.ar.type = AR_FULL;
7526
7527 for (i = 0; i < ref->u.ar.dimen; i++)
7528 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7529
7530 break;
7531 }
7532
7533 gfc_free_shape (&result->shape, result->rank);
7534
7535 /* Recalculate rank, shape, etc. */
7536 gfc_resolve_expr (result);
7537 return result;
7538 }
7539
7540
7541 /* If the last ref of an expression is an array ref, return a copy of the
7542 expression with that one removed. Otherwise, a copy of the original
7543 expression. This is used for allocate-expressions and pointer assignment
7544 LHS, where there may be an array specification that needs to be stripped
7545 off when using gfc_check_vardef_context. */
7546
7547 static gfc_expr*
7548 remove_last_array_ref (gfc_expr* e)
7549 {
7550 gfc_expr* e2;
7551 gfc_ref** r;
7552
7553 e2 = gfc_copy_expr (e);
7554 for (r = &e2->ref; *r; r = &(*r)->next)
7555 if ((*r)->type == REF_ARRAY && !(*r)->next)
7556 {
7557 gfc_free_ref_list (*r);
7558 *r = NULL;
7559 break;
7560 }
7561
7562 return e2;
7563 }
7564
7565
7566 /* Used in resolve_allocate_expr to check that a allocation-object and
7567 a source-expr are conformable. This does not catch all possible
7568 cases; in particular a runtime checking is needed. */
7569
7570 static bool
7571 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7572 {
7573 gfc_ref *tail;
7574 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7575
7576 /* First compare rank. */
7577 if ((tail && (!tail->u.ar.as || e1->rank != tail->u.ar.as->rank))
7578 || (!tail && e1->rank != e2->rank))
7579 {
7580 gfc_error ("Source-expr at %L must be scalar or have the "
7581 "same rank as the allocate-object at %L",
7582 &e1->where, &e2->where);
7583 return false;
7584 }
7585
7586 if (e1->shape)
7587 {
7588 int i;
7589 mpz_t s;
7590
7591 mpz_init (s);
7592
7593 for (i = 0; i < e1->rank; i++)
7594 {
7595 if (tail->u.ar.start[i] == NULL)
7596 break;
7597
7598 if (tail->u.ar.end[i])
7599 {
7600 mpz_set (s, tail->u.ar.end[i]->value.integer);
7601 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7602 mpz_add_ui (s, s, 1);
7603 }
7604 else
7605 {
7606 mpz_set (s, tail->u.ar.start[i]->value.integer);
7607 }
7608
7609 if (mpz_cmp (e1->shape[i], s) != 0)
7610 {
7611 gfc_error ("Source-expr at %L and allocate-object at %L must "
7612 "have the same shape", &e1->where, &e2->where);
7613 mpz_clear (s);
7614 return false;
7615 }
7616 }
7617
7618 mpz_clear (s);
7619 }
7620
7621 return true;
7622 }
7623
7624
7625 /* Resolve the expression in an ALLOCATE statement, doing the additional
7626 checks to see whether the expression is OK or not. The expression must
7627 have a trailing array reference that gives the size of the array. */
7628
7629 static bool
7630 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7631 {
7632 int i, pointer, allocatable, dimension, is_abstract;
7633 int codimension;
7634 bool coindexed;
7635 bool unlimited;
7636 symbol_attribute attr;
7637 gfc_ref *ref, *ref2;
7638 gfc_expr *e2;
7639 gfc_array_ref *ar;
7640 gfc_symbol *sym = NULL;
7641 gfc_alloc *a;
7642 gfc_component *c;
7643 bool t;
7644
7645 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7646 checking of coarrays. */
7647 for (ref = e->ref; ref; ref = ref->next)
7648 if (ref->next == NULL)
7649 break;
7650
7651 if (ref && ref->type == REF_ARRAY)
7652 ref->u.ar.in_allocate = true;
7653
7654 if (!gfc_resolve_expr (e))
7655 goto failure;
7656
7657 /* Make sure the expression is allocatable or a pointer. If it is
7658 pointer, the next-to-last reference must be a pointer. */
7659
7660 ref2 = NULL;
7661 if (e->symtree)
7662 sym = e->symtree->n.sym;
7663
7664 /* Check whether ultimate component is abstract and CLASS. */
7665 is_abstract = 0;
7666
7667 /* Is the allocate-object unlimited polymorphic? */
7668 unlimited = UNLIMITED_POLY(e);
7669
7670 if (e->expr_type != EXPR_VARIABLE)
7671 {
7672 allocatable = 0;
7673 attr = gfc_expr_attr (e);
7674 pointer = attr.pointer;
7675 dimension = attr.dimension;
7676 codimension = attr.codimension;
7677 }
7678 else
7679 {
7680 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7681 {
7682 allocatable = CLASS_DATA (sym)->attr.allocatable;
7683 pointer = CLASS_DATA (sym)->attr.class_pointer;
7684 dimension = CLASS_DATA (sym)->attr.dimension;
7685 codimension = CLASS_DATA (sym)->attr.codimension;
7686 is_abstract = CLASS_DATA (sym)->attr.abstract;
7687 }
7688 else
7689 {
7690 allocatable = sym->attr.allocatable;
7691 pointer = sym->attr.pointer;
7692 dimension = sym->attr.dimension;
7693 codimension = sym->attr.codimension;
7694 }
7695
7696 coindexed = false;
7697
7698 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7699 {
7700 switch (ref->type)
7701 {
7702 case REF_ARRAY:
7703 if (ref->u.ar.codimen > 0)
7704 {
7705 int n;
7706 for (n = ref->u.ar.dimen;
7707 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7708 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7709 {
7710 coindexed = true;
7711 break;
7712 }
7713 }
7714
7715 if (ref->next != NULL)
7716 pointer = 0;
7717 break;
7718
7719 case REF_COMPONENT:
7720 /* F2008, C644. */
7721 if (coindexed)
7722 {
7723 gfc_error ("Coindexed allocatable object at %L",
7724 &e->where);
7725 goto failure;
7726 }
7727
7728 c = ref->u.c.component;
7729 if (c->ts.type == BT_CLASS)
7730 {
7731 allocatable = CLASS_DATA (c)->attr.allocatable;
7732 pointer = CLASS_DATA (c)->attr.class_pointer;
7733 dimension = CLASS_DATA (c)->attr.dimension;
7734 codimension = CLASS_DATA (c)->attr.codimension;
7735 is_abstract = CLASS_DATA (c)->attr.abstract;
7736 }
7737 else
7738 {
7739 allocatable = c->attr.allocatable;
7740 pointer = c->attr.pointer;
7741 dimension = c->attr.dimension;
7742 codimension = c->attr.codimension;
7743 is_abstract = c->attr.abstract;
7744 }
7745 break;
7746
7747 case REF_SUBSTRING:
7748 case REF_INQUIRY:
7749 allocatable = 0;
7750 pointer = 0;
7751 break;
7752 }
7753 }
7754 }
7755
7756 /* Check for F08:C628. */
7757 if (allocatable == 0 && pointer == 0 && !unlimited)
7758 {
7759 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7760 &e->where);
7761 goto failure;
7762 }
7763
7764 /* Some checks for the SOURCE tag. */
7765 if (code->expr3)
7766 {
7767 /* Check F03:C631. */
7768 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7769 {
7770 gfc_error ("Type of entity at %L is type incompatible with "
7771 "source-expr at %L", &e->where, &code->expr3->where);
7772 goto failure;
7773 }
7774
7775 /* Check F03:C632 and restriction following Note 6.18. */
7776 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7777 goto failure;
7778
7779 /* Check F03:C633. */
7780 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7781 {
7782 gfc_error ("The allocate-object at %L and the source-expr at %L "
7783 "shall have the same kind type parameter",
7784 &e->where, &code->expr3->where);
7785 goto failure;
7786 }
7787
7788 /* Check F2008, C642. */
7789 if (code->expr3->ts.type == BT_DERIVED
7790 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7791 || (code->expr3->ts.u.derived->from_intmod
7792 == INTMOD_ISO_FORTRAN_ENV
7793 && code->expr3->ts.u.derived->intmod_sym_id
7794 == ISOFORTRAN_LOCK_TYPE)))
7795 {
7796 gfc_error ("The source-expr at %L shall neither be of type "
7797 "LOCK_TYPE nor have a LOCK_TYPE component if "
7798 "allocate-object at %L is a coarray",
7799 &code->expr3->where, &e->where);
7800 goto failure;
7801 }
7802
7803 /* Check TS18508, C702/C703. */
7804 if (code->expr3->ts.type == BT_DERIVED
7805 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7806 || (code->expr3->ts.u.derived->from_intmod
7807 == INTMOD_ISO_FORTRAN_ENV
7808 && code->expr3->ts.u.derived->intmod_sym_id
7809 == ISOFORTRAN_EVENT_TYPE)))
7810 {
7811 gfc_error ("The source-expr at %L shall neither be of type "
7812 "EVENT_TYPE nor have a EVENT_TYPE component if "
7813 "allocate-object at %L is a coarray",
7814 &code->expr3->where, &e->where);
7815 goto failure;
7816 }
7817 }
7818
7819 /* Check F08:C629. */
7820 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7821 && !code->expr3)
7822 {
7823 gcc_assert (e->ts.type == BT_CLASS);
7824 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7825 "type-spec or source-expr", sym->name, &e->where);
7826 goto failure;
7827 }
7828
7829 /* Check F08:C632. */
7830 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7831 && !UNLIMITED_POLY (e))
7832 {
7833 int cmp;
7834
7835 if (!e->ts.u.cl->length)
7836 goto failure;
7837
7838 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7839 code->ext.alloc.ts.u.cl->length);
7840 if (cmp == 1 || cmp == -1 || cmp == -3)
7841 {
7842 gfc_error ("Allocating %s at %L with type-spec requires the same "
7843 "character-length parameter as in the declaration",
7844 sym->name, &e->where);
7845 goto failure;
7846 }
7847 }
7848
7849 /* In the variable definition context checks, gfc_expr_attr is used
7850 on the expression. This is fooled by the array specification
7851 present in e, thus we have to eliminate that one temporarily. */
7852 e2 = remove_last_array_ref (e);
7853 t = true;
7854 if (t && pointer)
7855 t = gfc_check_vardef_context (e2, true, true, false,
7856 _("ALLOCATE object"));
7857 if (t)
7858 t = gfc_check_vardef_context (e2, false, true, false,
7859 _("ALLOCATE object"));
7860 gfc_free_expr (e2);
7861 if (!t)
7862 goto failure;
7863
7864 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7865 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7866 {
7867 /* For class arrays, the initialization with SOURCE is done
7868 using _copy and trans_call. It is convenient to exploit that
7869 when the allocated type is different from the declared type but
7870 no SOURCE exists by setting expr3. */
7871 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7872 }
7873 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7874 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7875 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7876 {
7877 /* We have to zero initialize the integer variable. */
7878 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7879 }
7880
7881 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7882 {
7883 /* Make sure the vtab symbol is present when
7884 the module variables are generated. */
7885 gfc_typespec ts = e->ts;
7886 if (code->expr3)
7887 ts = code->expr3->ts;
7888 else if (code->ext.alloc.ts.type == BT_DERIVED)
7889 ts = code->ext.alloc.ts;
7890
7891 /* Finding the vtab also publishes the type's symbol. Therefore this
7892 statement is necessary. */
7893 gfc_find_derived_vtab (ts.u.derived);
7894 }
7895 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7896 {
7897 /* Again, make sure the vtab symbol is present when
7898 the module variables are generated. */
7899 gfc_typespec *ts = NULL;
7900 if (code->expr3)
7901 ts = &code->expr3->ts;
7902 else
7903 ts = &code->ext.alloc.ts;
7904
7905 gcc_assert (ts);
7906
7907 /* Finding the vtab also publishes the type's symbol. Therefore this
7908 statement is necessary. */
7909 gfc_find_vtab (ts);
7910 }
7911
7912 if (dimension == 0 && codimension == 0)
7913 goto success;
7914
7915 /* Make sure the last reference node is an array specification. */
7916
7917 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7918 || (dimension && ref2->u.ar.dimen == 0))
7919 {
7920 /* F08:C633. */
7921 if (code->expr3)
7922 {
7923 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7924 "in ALLOCATE statement at %L", &e->where))
7925 goto failure;
7926 if (code->expr3->rank != 0)
7927 *array_alloc_wo_spec = true;
7928 else
7929 {
7930 gfc_error ("Array specification or array-valued SOURCE= "
7931 "expression required in ALLOCATE statement at %L",
7932 &e->where);
7933 goto failure;
7934 }
7935 }
7936 else
7937 {
7938 gfc_error ("Array specification required in ALLOCATE statement "
7939 "at %L", &e->where);
7940 goto failure;
7941 }
7942 }
7943
7944 /* Make sure that the array section reference makes sense in the
7945 context of an ALLOCATE specification. */
7946
7947 ar = &ref2->u.ar;
7948
7949 if (codimension)
7950 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7951 {
7952 switch (ar->dimen_type[i])
7953 {
7954 case DIMEN_THIS_IMAGE:
7955 gfc_error ("Coarray specification required in ALLOCATE statement "
7956 "at %L", &e->where);
7957 goto failure;
7958
7959 case DIMEN_RANGE:
7960 if (ar->start[i] == 0 || ar->end[i] == 0)
7961 {
7962 /* If ar->stride[i] is NULL, we issued a previous error. */
7963 if (ar->stride[i] == NULL)
7964 gfc_error ("Bad array specification in ALLOCATE statement "
7965 "at %L", &e->where);
7966 goto failure;
7967 }
7968 else if (gfc_dep_compare_expr (ar->start[i], ar->end[i]) == 1)
7969 {
7970 gfc_error ("Upper cobound is less than lower cobound at %L",
7971 &ar->start[i]->where);
7972 goto failure;
7973 }
7974 break;
7975
7976 case DIMEN_ELEMENT:
7977 if (ar->start[i]->expr_type == EXPR_CONSTANT)
7978 {
7979 gcc_assert (ar->start[i]->ts.type == BT_INTEGER);
7980 if (mpz_cmp_si (ar->start[i]->value.integer, 1) < 0)
7981 {
7982 gfc_error ("Upper cobound is less than lower cobound "
7983 "of 1 at %L", &ar->start[i]->where);
7984 goto failure;
7985 }
7986 }
7987 break;
7988
7989 case DIMEN_STAR:
7990 break;
7991
7992 default:
7993 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7994 &e->where);
7995 goto failure;
7996
7997 }
7998 }
7999 for (i = 0; i < ar->dimen; i++)
8000 {
8001 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
8002 goto check_symbols;
8003
8004 switch (ar->dimen_type[i])
8005 {
8006 case DIMEN_ELEMENT:
8007 break;
8008
8009 case DIMEN_RANGE:
8010 if (ar->start[i] != NULL
8011 && ar->end[i] != NULL
8012 && ar->stride[i] == NULL)
8013 break;
8014
8015 /* Fall through. */
8016
8017 case DIMEN_UNKNOWN:
8018 case DIMEN_VECTOR:
8019 case DIMEN_STAR:
8020 case DIMEN_THIS_IMAGE:
8021 gfc_error ("Bad array specification in ALLOCATE statement at %L",
8022 &e->where);
8023 goto failure;
8024 }
8025
8026 check_symbols:
8027 for (a = code->ext.alloc.list; a; a = a->next)
8028 {
8029 sym = a->expr->symtree->n.sym;
8030
8031 /* TODO - check derived type components. */
8032 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
8033 continue;
8034
8035 if ((ar->start[i] != NULL
8036 && gfc_find_sym_in_expr (sym, ar->start[i]))
8037 || (ar->end[i] != NULL
8038 && gfc_find_sym_in_expr (sym, ar->end[i])))
8039 {
8040 gfc_error ("%qs must not appear in the array specification at "
8041 "%L in the same ALLOCATE statement where it is "
8042 "itself allocated", sym->name, &ar->where);
8043 goto failure;
8044 }
8045 }
8046 }
8047
8048 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
8049 {
8050 if (ar->dimen_type[i] == DIMEN_ELEMENT
8051 || ar->dimen_type[i] == DIMEN_RANGE)
8052 {
8053 if (i == (ar->dimen + ar->codimen - 1))
8054 {
8055 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
8056 "statement at %L", &e->where);
8057 goto failure;
8058 }
8059 continue;
8060 }
8061
8062 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
8063 && ar->stride[i] == NULL)
8064 break;
8065
8066 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
8067 &e->where);
8068 goto failure;
8069 }
8070
8071 success:
8072 return true;
8073
8074 failure:
8075 return false;
8076 }
8077
8078
8079 static void
8080 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
8081 {
8082 gfc_expr *stat, *errmsg, *pe, *qe;
8083 gfc_alloc *a, *p, *q;
8084
8085 stat = code->expr1;
8086 errmsg = code->expr2;
8087
8088 /* Check the stat variable. */
8089 if (stat)
8090 {
8091 gfc_check_vardef_context (stat, false, false, false,
8092 _("STAT variable"));
8093
8094 if ((stat->ts.type != BT_INTEGER
8095 && !(stat->ref && (stat->ref->type == REF_ARRAY
8096 || stat->ref->type == REF_COMPONENT)))
8097 || stat->rank > 0)
8098 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
8099 "variable", &stat->where);
8100
8101 for (p = code->ext.alloc.list; p; p = p->next)
8102 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
8103 {
8104 gfc_ref *ref1, *ref2;
8105 bool found = true;
8106
8107 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
8108 ref1 = ref1->next, ref2 = ref2->next)
8109 {
8110 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8111 continue;
8112 if (ref1->u.c.component->name != ref2->u.c.component->name)
8113 {
8114 found = false;
8115 break;
8116 }
8117 }
8118
8119 if (found)
8120 {
8121 gfc_error ("Stat-variable at %L shall not be %sd within "
8122 "the same %s statement", &stat->where, fcn, fcn);
8123 break;
8124 }
8125 }
8126 }
8127
8128 /* Check the errmsg variable. */
8129 if (errmsg)
8130 {
8131 if (!stat)
8132 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
8133 &errmsg->where);
8134
8135 gfc_check_vardef_context (errmsg, false, false, false,
8136 _("ERRMSG variable"));
8137
8138 /* F18:R928 alloc-opt is ERRMSG = errmsg-variable
8139 F18:R930 errmsg-variable is scalar-default-char-variable
8140 F18:R906 default-char-variable is variable
8141 F18:C906 default-char-variable shall be default character. */
8142 if ((errmsg->ts.type != BT_CHARACTER
8143 && !(errmsg->ref
8144 && (errmsg->ref->type == REF_ARRAY
8145 || errmsg->ref->type == REF_COMPONENT)))
8146 || errmsg->rank > 0
8147 || errmsg->ts.kind != gfc_default_character_kind)
8148 gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
8149 "variable", &errmsg->where);
8150
8151 for (p = code->ext.alloc.list; p; p = p->next)
8152 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
8153 {
8154 gfc_ref *ref1, *ref2;
8155 bool found = true;
8156
8157 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
8158 ref1 = ref1->next, ref2 = ref2->next)
8159 {
8160 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
8161 continue;
8162 if (ref1->u.c.component->name != ref2->u.c.component->name)
8163 {
8164 found = false;
8165 break;
8166 }
8167 }
8168
8169 if (found)
8170 {
8171 gfc_error ("Errmsg-variable at %L shall not be %sd within "
8172 "the same %s statement", &errmsg->where, fcn, fcn);
8173 break;
8174 }
8175 }
8176 }
8177
8178 /* Check that an allocate-object appears only once in the statement. */
8179
8180 for (p = code->ext.alloc.list; p; p = p->next)
8181 {
8182 pe = p->expr;
8183 for (q = p->next; q; q = q->next)
8184 {
8185 qe = q->expr;
8186 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
8187 {
8188 /* This is a potential collision. */
8189 gfc_ref *pr = pe->ref;
8190 gfc_ref *qr = qe->ref;
8191
8192 /* Follow the references until
8193 a) They start to differ, in which case there is no error;
8194 you can deallocate a%b and a%c in a single statement
8195 b) Both of them stop, which is an error
8196 c) One of them stops, which is also an error. */
8197 while (1)
8198 {
8199 if (pr == NULL && qr == NULL)
8200 {
8201 gfc_error ("Allocate-object at %L also appears at %L",
8202 &pe->where, &qe->where);
8203 break;
8204 }
8205 else if (pr != NULL && qr == NULL)
8206 {
8207 gfc_error ("Allocate-object at %L is subobject of"
8208 " object at %L", &pe->where, &qe->where);
8209 break;
8210 }
8211 else if (pr == NULL && qr != NULL)
8212 {
8213 gfc_error ("Allocate-object at %L is subobject of"
8214 " object at %L", &qe->where, &pe->where);
8215 break;
8216 }
8217 /* Here, pr != NULL && qr != NULL */
8218 gcc_assert(pr->type == qr->type);
8219 if (pr->type == REF_ARRAY)
8220 {
8221 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
8222 which are legal. */
8223 gcc_assert (qr->type == REF_ARRAY);
8224
8225 if (pr->next && qr->next)
8226 {
8227 int i;
8228 gfc_array_ref *par = &(pr->u.ar);
8229 gfc_array_ref *qar = &(qr->u.ar);
8230
8231 for (i=0; i<par->dimen; i++)
8232 {
8233 if ((par->start[i] != NULL
8234 || qar->start[i] != NULL)
8235 && gfc_dep_compare_expr (par->start[i],
8236 qar->start[i]) != 0)
8237 goto break_label;
8238 }
8239 }
8240 }
8241 else
8242 {
8243 if (pr->u.c.component->name != qr->u.c.component->name)
8244 break;
8245 }
8246
8247 pr = pr->next;
8248 qr = qr->next;
8249 }
8250 break_label:
8251 ;
8252 }
8253 }
8254 }
8255
8256 if (strcmp (fcn, "ALLOCATE") == 0)
8257 {
8258 bool arr_alloc_wo_spec = false;
8259
8260 /* Resolving the expr3 in the loop over all objects to allocate would
8261 execute loop invariant code for each loop item. Therefore do it just
8262 once here. */
8263 if (code->expr3 && code->expr3->mold
8264 && code->expr3->ts.type == BT_DERIVED)
8265 {
8266 /* Default initialization via MOLD (non-polymorphic). */
8267 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
8268 if (rhs != NULL)
8269 {
8270 gfc_resolve_expr (rhs);
8271 gfc_free_expr (code->expr3);
8272 code->expr3 = rhs;
8273 }
8274 }
8275 for (a = code->ext.alloc.list; a; a = a->next)
8276 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
8277
8278 if (arr_alloc_wo_spec && code->expr3)
8279 {
8280 /* Mark the allocate to have to take the array specification
8281 from the expr3. */
8282 code->ext.alloc.arr_spec_from_expr3 = 1;
8283 }
8284 }
8285 else
8286 {
8287 for (a = code->ext.alloc.list; a; a = a->next)
8288 resolve_deallocate_expr (a->expr);
8289 }
8290 }
8291
8292
8293 /************ SELECT CASE resolution subroutines ************/
8294
8295 /* Callback function for our mergesort variant. Determines interval
8296 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
8297 op1 > op2. Assumes we're not dealing with the default case.
8298 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
8299 There are nine situations to check. */
8300
8301 static int
8302 compare_cases (const gfc_case *op1, const gfc_case *op2)
8303 {
8304 int retval;
8305
8306 if (op1->low == NULL) /* op1 = (:L) */
8307 {
8308 /* op2 = (:N), so overlap. */
8309 retval = 0;
8310 /* op2 = (M:) or (M:N), L < M */
8311 if (op2->low != NULL
8312 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8313 retval = -1;
8314 }
8315 else if (op1->high == NULL) /* op1 = (K:) */
8316 {
8317 /* op2 = (M:), so overlap. */
8318 retval = 0;
8319 /* op2 = (:N) or (M:N), K > N */
8320 if (op2->high != NULL
8321 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8322 retval = 1;
8323 }
8324 else /* op1 = (K:L) */
8325 {
8326 if (op2->low == NULL) /* op2 = (:N), K > N */
8327 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8328 ? 1 : 0;
8329 else if (op2->high == NULL) /* op2 = (M:), L < M */
8330 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8331 ? -1 : 0;
8332 else /* op2 = (M:N) */
8333 {
8334 retval = 0;
8335 /* L < M */
8336 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8337 retval = -1;
8338 /* K > N */
8339 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8340 retval = 1;
8341 }
8342 }
8343
8344 return retval;
8345 }
8346
8347
8348 /* Merge-sort a double linked case list, detecting overlap in the
8349 process. LIST is the head of the double linked case list before it
8350 is sorted. Returns the head of the sorted list if we don't see any
8351 overlap, or NULL otherwise. */
8352
8353 static gfc_case *
8354 check_case_overlap (gfc_case *list)
8355 {
8356 gfc_case *p, *q, *e, *tail;
8357 int insize, nmerges, psize, qsize, cmp, overlap_seen;
8358
8359 /* If the passed list was empty, return immediately. */
8360 if (!list)
8361 return NULL;
8362
8363 overlap_seen = 0;
8364 insize = 1;
8365
8366 /* Loop unconditionally. The only exit from this loop is a return
8367 statement, when we've finished sorting the case list. */
8368 for (;;)
8369 {
8370 p = list;
8371 list = NULL;
8372 tail = NULL;
8373
8374 /* Count the number of merges we do in this pass. */
8375 nmerges = 0;
8376
8377 /* Loop while there exists a merge to be done. */
8378 while (p)
8379 {
8380 int i;
8381
8382 /* Count this merge. */
8383 nmerges++;
8384
8385 /* Cut the list in two pieces by stepping INSIZE places
8386 forward in the list, starting from P. */
8387 psize = 0;
8388 q = p;
8389 for (i = 0; i < insize; i++)
8390 {
8391 psize++;
8392 q = q->right;
8393 if (!q)
8394 break;
8395 }
8396 qsize = insize;
8397
8398 /* Now we have two lists. Merge them! */
8399 while (psize > 0 || (qsize > 0 && q != NULL))
8400 {
8401 /* See from which the next case to merge comes from. */
8402 if (psize == 0)
8403 {
8404 /* P is empty so the next case must come from Q. */
8405 e = q;
8406 q = q->right;
8407 qsize--;
8408 }
8409 else if (qsize == 0 || q == NULL)
8410 {
8411 /* Q is empty. */
8412 e = p;
8413 p = p->right;
8414 psize--;
8415 }
8416 else
8417 {
8418 cmp = compare_cases (p, q);
8419 if (cmp < 0)
8420 {
8421 /* The whole case range for P is less than the
8422 one for Q. */
8423 e = p;
8424 p = p->right;
8425 psize--;
8426 }
8427 else if (cmp > 0)
8428 {
8429 /* The whole case range for Q is greater than
8430 the case range for P. */
8431 e = q;
8432 q = q->right;
8433 qsize--;
8434 }
8435 else
8436 {
8437 /* The cases overlap, or they are the same
8438 element in the list. Either way, we must
8439 issue an error and get the next case from P. */
8440 /* FIXME: Sort P and Q by line number. */
8441 gfc_error ("CASE label at %L overlaps with CASE "
8442 "label at %L", &p->where, &q->where);
8443 overlap_seen = 1;
8444 e = p;
8445 p = p->right;
8446 psize--;
8447 }
8448 }
8449
8450 /* Add the next element to the merged list. */
8451 if (tail)
8452 tail->right = e;
8453 else
8454 list = e;
8455 e->left = tail;
8456 tail = e;
8457 }
8458
8459 /* P has now stepped INSIZE places along, and so has Q. So
8460 they're the same. */
8461 p = q;
8462 }
8463 tail->right = NULL;
8464
8465 /* If we have done only one merge or none at all, we've
8466 finished sorting the cases. */
8467 if (nmerges <= 1)
8468 {
8469 if (!overlap_seen)
8470 return list;
8471 else
8472 return NULL;
8473 }
8474
8475 /* Otherwise repeat, merging lists twice the size. */
8476 insize *= 2;
8477 }
8478 }
8479
8480
8481 /* Check to see if an expression is suitable for use in a CASE statement.
8482 Makes sure that all case expressions are scalar constants of the same
8483 type. Return false if anything is wrong. */
8484
8485 static bool
8486 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8487 {
8488 if (e == NULL) return true;
8489
8490 if (e->ts.type != case_expr->ts.type)
8491 {
8492 gfc_error ("Expression in CASE statement at %L must be of type %s",
8493 &e->where, gfc_basic_typename (case_expr->ts.type));
8494 return false;
8495 }
8496
8497 /* C805 (R808) For a given case-construct, each case-value shall be of
8498 the same type as case-expr. For character type, length differences
8499 are allowed, but the kind type parameters shall be the same. */
8500
8501 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8502 {
8503 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8504 &e->where, case_expr->ts.kind);
8505 return false;
8506 }
8507
8508 /* Convert the case value kind to that of case expression kind,
8509 if needed */
8510
8511 if (e->ts.kind != case_expr->ts.kind)
8512 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8513
8514 if (e->rank != 0)
8515 {
8516 gfc_error ("Expression in CASE statement at %L must be scalar",
8517 &e->where);
8518 return false;
8519 }
8520
8521 return true;
8522 }
8523
8524
8525 /* Given a completely parsed select statement, we:
8526
8527 - Validate all expressions and code within the SELECT.
8528 - Make sure that the selection expression is not of the wrong type.
8529 - Make sure that no case ranges overlap.
8530 - Eliminate unreachable cases and unreachable code resulting from
8531 removing case labels.
8532
8533 The standard does allow unreachable cases, e.g. CASE (5:3). But
8534 they are a hassle for code generation, and to prevent that, we just
8535 cut them out here. This is not necessary for overlapping cases
8536 because they are illegal and we never even try to generate code.
8537
8538 We have the additional caveat that a SELECT construct could have
8539 been a computed GOTO in the source code. Fortunately we can fairly
8540 easily work around that here: The case_expr for a "real" SELECT CASE
8541 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8542 we have to do is make sure that the case_expr is a scalar integer
8543 expression. */
8544
8545 static void
8546 resolve_select (gfc_code *code, bool select_type)
8547 {
8548 gfc_code *body;
8549 gfc_expr *case_expr;
8550 gfc_case *cp, *default_case, *tail, *head;
8551 int seen_unreachable;
8552 int seen_logical;
8553 int ncases;
8554 bt type;
8555 bool t;
8556
8557 if (code->expr1 == NULL)
8558 {
8559 /* This was actually a computed GOTO statement. */
8560 case_expr = code->expr2;
8561 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8562 gfc_error ("Selection expression in computed GOTO statement "
8563 "at %L must be a scalar integer expression",
8564 &case_expr->where);
8565
8566 /* Further checking is not necessary because this SELECT was built
8567 by the compiler, so it should always be OK. Just move the
8568 case_expr from expr2 to expr so that we can handle computed
8569 GOTOs as normal SELECTs from here on. */
8570 code->expr1 = code->expr2;
8571 code->expr2 = NULL;
8572 return;
8573 }
8574
8575 case_expr = code->expr1;
8576 type = case_expr->ts.type;
8577
8578 /* F08:C830. */
8579 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8580 {
8581 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8582 &case_expr->where, gfc_typename (case_expr));
8583
8584 /* Punt. Going on here just produce more garbage error messages. */
8585 return;
8586 }
8587
8588 /* F08:R842. */
8589 if (!select_type && case_expr->rank != 0)
8590 {
8591 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8592 "expression", &case_expr->where);
8593
8594 /* Punt. */
8595 return;
8596 }
8597
8598 /* Raise a warning if an INTEGER case value exceeds the range of
8599 the case-expr. Later, all expressions will be promoted to the
8600 largest kind of all case-labels. */
8601
8602 if (type == BT_INTEGER)
8603 for (body = code->block; body; body = body->block)
8604 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8605 {
8606 if (cp->low
8607 && gfc_check_integer_range (cp->low->value.integer,
8608 case_expr->ts.kind) != ARITH_OK)
8609 gfc_warning (0, "Expression in CASE statement at %L is "
8610 "not in the range of %s", &cp->low->where,
8611 gfc_typename (case_expr));
8612
8613 if (cp->high
8614 && cp->low != cp->high
8615 && gfc_check_integer_range (cp->high->value.integer,
8616 case_expr->ts.kind) != ARITH_OK)
8617 gfc_warning (0, "Expression in CASE statement at %L is "
8618 "not in the range of %s", &cp->high->where,
8619 gfc_typename (case_expr));
8620 }
8621
8622 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8623 of the SELECT CASE expression and its CASE values. Walk the lists
8624 of case values, and if we find a mismatch, promote case_expr to
8625 the appropriate kind. */
8626
8627 if (type == BT_LOGICAL || type == BT_INTEGER)
8628 {
8629 for (body = code->block; body; body = body->block)
8630 {
8631 /* Walk the case label list. */
8632 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8633 {
8634 /* Intercept the DEFAULT case. It does not have a kind. */
8635 if (cp->low == NULL && cp->high == NULL)
8636 continue;
8637
8638 /* Unreachable case ranges are discarded, so ignore. */
8639 if (cp->low != NULL && cp->high != NULL
8640 && cp->low != cp->high
8641 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8642 continue;
8643
8644 if (cp->low != NULL
8645 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8646 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8647
8648 if (cp->high != NULL
8649 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8650 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8651 }
8652 }
8653 }
8654
8655 /* Assume there is no DEFAULT case. */
8656 default_case = NULL;
8657 head = tail = NULL;
8658 ncases = 0;
8659 seen_logical = 0;
8660
8661 for (body = code->block; body; body = body->block)
8662 {
8663 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8664 t = true;
8665 seen_unreachable = 0;
8666
8667 /* Walk the case label list, making sure that all case labels
8668 are legal. */
8669 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8670 {
8671 /* Count the number of cases in the whole construct. */
8672 ncases++;
8673
8674 /* Intercept the DEFAULT case. */
8675 if (cp->low == NULL && cp->high == NULL)
8676 {
8677 if (default_case != NULL)
8678 {
8679 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8680 "by a second DEFAULT CASE at %L",
8681 &default_case->where, &cp->where);
8682 t = false;
8683 break;
8684 }
8685 else
8686 {
8687 default_case = cp;
8688 continue;
8689 }
8690 }
8691
8692 /* Deal with single value cases and case ranges. Errors are
8693 issued from the validation function. */
8694 if (!validate_case_label_expr (cp->low, case_expr)
8695 || !validate_case_label_expr (cp->high, case_expr))
8696 {
8697 t = false;
8698 break;
8699 }
8700
8701 if (type == BT_LOGICAL
8702 && ((cp->low == NULL || cp->high == NULL)
8703 || cp->low != cp->high))
8704 {
8705 gfc_error ("Logical range in CASE statement at %L is not "
8706 "allowed", &cp->low->where);
8707 t = false;
8708 break;
8709 }
8710
8711 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8712 {
8713 int value;
8714 value = cp->low->value.logical == 0 ? 2 : 1;
8715 if (value & seen_logical)
8716 {
8717 gfc_error ("Constant logical value in CASE statement "
8718 "is repeated at %L",
8719 &cp->low->where);
8720 t = false;
8721 break;
8722 }
8723 seen_logical |= value;
8724 }
8725
8726 if (cp->low != NULL && cp->high != NULL
8727 && cp->low != cp->high
8728 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8729 {
8730 if (warn_surprising)
8731 gfc_warning (OPT_Wsurprising,
8732 "Range specification at %L can never be matched",
8733 &cp->where);
8734
8735 cp->unreachable = 1;
8736 seen_unreachable = 1;
8737 }
8738 else
8739 {
8740 /* If the case range can be matched, it can also overlap with
8741 other cases. To make sure it does not, we put it in a
8742 double linked list here. We sort that with a merge sort
8743 later on to detect any overlapping cases. */
8744 if (!head)
8745 {
8746 head = tail = cp;
8747 head->right = head->left = NULL;
8748 }
8749 else
8750 {
8751 tail->right = cp;
8752 tail->right->left = tail;
8753 tail = tail->right;
8754 tail->right = NULL;
8755 }
8756 }
8757 }
8758
8759 /* It there was a failure in the previous case label, give up
8760 for this case label list. Continue with the next block. */
8761 if (!t)
8762 continue;
8763
8764 /* See if any case labels that are unreachable have been seen.
8765 If so, we eliminate them. This is a bit of a kludge because
8766 the case lists for a single case statement (label) is a
8767 single forward linked lists. */
8768 if (seen_unreachable)
8769 {
8770 /* Advance until the first case in the list is reachable. */
8771 while (body->ext.block.case_list != NULL
8772 && body->ext.block.case_list->unreachable)
8773 {
8774 gfc_case *n = body->ext.block.case_list;
8775 body->ext.block.case_list = body->ext.block.case_list->next;
8776 n->next = NULL;
8777 gfc_free_case_list (n);
8778 }
8779
8780 /* Strip all other unreachable cases. */
8781 if (body->ext.block.case_list)
8782 {
8783 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8784 {
8785 if (cp->next->unreachable)
8786 {
8787 gfc_case *n = cp->next;
8788 cp->next = cp->next->next;
8789 n->next = NULL;
8790 gfc_free_case_list (n);
8791 }
8792 }
8793 }
8794 }
8795 }
8796
8797 /* See if there were overlapping cases. If the check returns NULL,
8798 there was overlap. In that case we don't do anything. If head
8799 is non-NULL, we prepend the DEFAULT case. The sorted list can
8800 then used during code generation for SELECT CASE constructs with
8801 a case expression of a CHARACTER type. */
8802 if (head)
8803 {
8804 head = check_case_overlap (head);
8805
8806 /* Prepend the default_case if it is there. */
8807 if (head != NULL && default_case)
8808 {
8809 default_case->left = NULL;
8810 default_case->right = head;
8811 head->left = default_case;
8812 }
8813 }
8814
8815 /* Eliminate dead blocks that may be the result if we've seen
8816 unreachable case labels for a block. */
8817 for (body = code; body && body->block; body = body->block)
8818 {
8819 if (body->block->ext.block.case_list == NULL)
8820 {
8821 /* Cut the unreachable block from the code chain. */
8822 gfc_code *c = body->block;
8823 body->block = c->block;
8824
8825 /* Kill the dead block, but not the blocks below it. */
8826 c->block = NULL;
8827 gfc_free_statements (c);
8828 }
8829 }
8830
8831 /* More than two cases is legal but insane for logical selects.
8832 Issue a warning for it. */
8833 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8834 gfc_warning (OPT_Wsurprising,
8835 "Logical SELECT CASE block at %L has more that two cases",
8836 &code->loc);
8837 }
8838
8839
8840 /* Check if a derived type is extensible. */
8841
8842 bool
8843 gfc_type_is_extensible (gfc_symbol *sym)
8844 {
8845 return !(sym->attr.is_bind_c || sym->attr.sequence
8846 || (sym->attr.is_class
8847 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8848 }
8849
8850
8851 static void
8852 resolve_types (gfc_namespace *ns);
8853
8854 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8855 correct as well as possibly the array-spec. */
8856
8857 static void
8858 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8859 {
8860 gfc_expr* target;
8861
8862 gcc_assert (sym->assoc);
8863 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8864
8865 /* If this is for SELECT TYPE, the target may not yet be set. In that
8866 case, return. Resolution will be called later manually again when
8867 this is done. */
8868 target = sym->assoc->target;
8869 if (!target)
8870 return;
8871 gcc_assert (!sym->assoc->dangling);
8872
8873 if (resolve_target && !gfc_resolve_expr (target))
8874 return;
8875
8876 /* For variable targets, we get some attributes from the target. */
8877 if (target->expr_type == EXPR_VARIABLE)
8878 {
8879 gfc_symbol *tsym, *dsym;
8880
8881 gcc_assert (target->symtree);
8882 tsym = target->symtree->n.sym;
8883
8884 if (gfc_expr_attr (target).proc_pointer)
8885 {
8886 gfc_error ("Associating entity %qs at %L is a procedure pointer",
8887 tsym->name, &target->where);
8888 return;
8889 }
8890
8891 if (tsym->attr.flavor == FL_PROCEDURE && tsym->generic
8892 && (dsym = gfc_find_dt_in_generic (tsym)) != NULL
8893 && dsym->attr.flavor == FL_DERIVED)
8894 {
8895 gfc_error ("Derived type %qs cannot be used as a variable at %L",
8896 tsym->name, &target->where);
8897 return;
8898 }
8899
8900 if (tsym->attr.flavor == FL_PROCEDURE)
8901 {
8902 bool is_error = true;
8903 if (tsym->attr.function && tsym->result == tsym)
8904 for (gfc_namespace *ns = sym->ns; ns; ns = ns->parent)
8905 if (tsym == ns->proc_name)
8906 {
8907 is_error = false;
8908 break;
8909 }
8910 if (is_error)
8911 {
8912 gfc_error ("Associating entity %qs at %L is a procedure name",
8913 tsym->name, &target->where);
8914 return;
8915 }
8916 }
8917
8918 sym->attr.asynchronous = tsym->attr.asynchronous;
8919 sym->attr.volatile_ = tsym->attr.volatile_;
8920
8921 sym->attr.target = tsym->attr.target
8922 || gfc_expr_attr (target).pointer;
8923 if (is_subref_array (target))
8924 sym->attr.subref_array_pointer = 1;
8925 }
8926 else if (target->ts.type == BT_PROCEDURE)
8927 {
8928 gfc_error ("Associating selector-expression at %L yields a procedure",
8929 &target->where);
8930 return;
8931 }
8932
8933 if (target->expr_type == EXPR_NULL)
8934 {
8935 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8936 return;
8937 }
8938 else if (target->ts.type == BT_UNKNOWN)
8939 {
8940 gfc_error ("Selector at %L has no type", &target->where);
8941 return;
8942 }
8943
8944 /* Get type if this was not already set. Note that it can be
8945 some other type than the target in case this is a SELECT TYPE
8946 selector! So we must not update when the type is already there. */
8947 if (sym->ts.type == BT_UNKNOWN)
8948 sym->ts = target->ts;
8949
8950 gcc_assert (sym->ts.type != BT_UNKNOWN);
8951
8952 /* See if this is a valid association-to-variable. */
8953 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8954 && !gfc_has_vector_subscript (target));
8955
8956 /* Finally resolve if this is an array or not. */
8957 if (sym->attr.dimension && target->rank == 0)
8958 {
8959 /* primary.c makes the assumption that a reference to an associate
8960 name followed by a left parenthesis is an array reference. */
8961 if (sym->ts.type != BT_CHARACTER)
8962 gfc_error ("Associate-name %qs at %L is used as array",
8963 sym->name, &sym->declared_at);
8964 sym->attr.dimension = 0;
8965 return;
8966 }
8967
8968
8969 /* We cannot deal with class selectors that need temporaries. */
8970 if (target->ts.type == BT_CLASS
8971 && gfc_ref_needs_temporary_p (target->ref))
8972 {
8973 gfc_error ("CLASS selector at %L needs a temporary which is not "
8974 "yet implemented", &target->where);
8975 return;
8976 }
8977
8978 if (target->ts.type == BT_CLASS)
8979 gfc_fix_class_refs (target);
8980
8981 if (target->rank != 0 && !sym->attr.select_rank_temporary)
8982 {
8983 gfc_array_spec *as;
8984 /* The rank may be incorrectly guessed at parsing, therefore make sure
8985 it is corrected now. */
8986 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8987 {
8988 if (!sym->as)
8989 sym->as = gfc_get_array_spec ();
8990 as = sym->as;
8991 as->rank = target->rank;
8992 as->type = AS_DEFERRED;
8993 as->corank = gfc_get_corank (target);
8994 sym->attr.dimension = 1;
8995 if (as->corank != 0)
8996 sym->attr.codimension = 1;
8997 }
8998 else if (sym->ts.type == BT_CLASS && (!CLASS_DATA (sym)->as || sym->assoc->rankguessed))
8999 {
9000 if (!CLASS_DATA (sym)->as)
9001 CLASS_DATA (sym)->as = gfc_get_array_spec ();
9002 as = CLASS_DATA (sym)->as;
9003 as->rank = target->rank;
9004 as->type = AS_DEFERRED;
9005 as->corank = gfc_get_corank (target);
9006 CLASS_DATA (sym)->attr.dimension = 1;
9007 if (as->corank != 0)
9008 CLASS_DATA (sym)->attr.codimension = 1;
9009 }
9010 }
9011 else if (!sym->attr.select_rank_temporary)
9012 {
9013 /* target's rank is 0, but the type of the sym is still array valued,
9014 which has to be corrected. */
9015 if (sym->ts.type == BT_CLASS
9016 && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
9017 {
9018 gfc_array_spec *as;
9019 symbol_attribute attr;
9020 /* The associated variable's type is still the array type
9021 correct this now. */
9022 gfc_typespec *ts = &target->ts;
9023 gfc_ref *ref;
9024 gfc_component *c;
9025 for (ref = target->ref; ref != NULL; ref = ref->next)
9026 {
9027 switch (ref->type)
9028 {
9029 case REF_COMPONENT:
9030 ts = &ref->u.c.component->ts;
9031 break;
9032 case REF_ARRAY:
9033 if (ts->type == BT_CLASS)
9034 ts = &ts->u.derived->components->ts;
9035 break;
9036 default:
9037 break;
9038 }
9039 }
9040 /* Create a scalar instance of the current class type. Because the
9041 rank of a class array goes into its name, the type has to be
9042 rebuild. The alternative of (re-)setting just the attributes
9043 and as in the current type, destroys the type also in other
9044 places. */
9045 as = NULL;
9046 sym->ts = *ts;
9047 sym->ts.type = BT_CLASS;
9048 attr = CLASS_DATA (sym)->attr;
9049 attr.class_ok = 0;
9050 attr.associate_var = 1;
9051 attr.dimension = attr.codimension = 0;
9052 attr.class_pointer = 1;
9053 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
9054 gcc_unreachable ();
9055 /* Make sure the _vptr is set. */
9056 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
9057 if (c->ts.u.derived == NULL)
9058 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
9059 CLASS_DATA (sym)->attr.pointer = 1;
9060 CLASS_DATA (sym)->attr.class_pointer = 1;
9061 gfc_set_sym_referenced (sym->ts.u.derived);
9062 gfc_commit_symbol (sym->ts.u.derived);
9063 /* _vptr now has the _vtab in it, change it to the _vtype. */
9064 if (c->ts.u.derived->attr.vtab)
9065 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
9066 c->ts.u.derived->ns->types_resolved = 0;
9067 resolve_types (c->ts.u.derived->ns);
9068 }
9069 }
9070
9071 /* Mark this as an associate variable. */
9072 sym->attr.associate_var = 1;
9073
9074 /* Fix up the type-spec for CHARACTER types. */
9075 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
9076 {
9077 if (!sym->ts.u.cl)
9078 sym->ts.u.cl = target->ts.u.cl;
9079
9080 if (sym->ts.deferred && target->expr_type == EXPR_VARIABLE
9081 && target->symtree->n.sym->attr.dummy
9082 && sym->ts.u.cl == target->ts.u.cl)
9083 {
9084 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9085 sym->ts.deferred = 1;
9086 }
9087
9088 if (!sym->ts.u.cl->length
9089 && !sym->ts.deferred
9090 && target->expr_type == EXPR_CONSTANT)
9091 {
9092 sym->ts.u.cl->length =
9093 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
9094 target->value.character.length);
9095 }
9096 else if ((!sym->ts.u.cl->length
9097 || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
9098 && target->expr_type != EXPR_VARIABLE)
9099 {
9100 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
9101 sym->ts.deferred = 1;
9102
9103 /* This is reset in trans-stmt.c after the assignment
9104 of the target expression to the associate name. */
9105 sym->attr.allocatable = 1;
9106 }
9107 }
9108
9109 /* If the target is a good class object, so is the associate variable. */
9110 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
9111 sym->attr.class_ok = 1;
9112 }
9113
9114
9115 /* Ensure that SELECT TYPE expressions have the correct rank and a full
9116 array reference, where necessary. The symbols are artificial and so
9117 the dimension attribute and arrayspec can also be set. In addition,
9118 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
9119 This is corrected here as well.*/
9120
9121 static void
9122 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
9123 int rank, gfc_ref *ref)
9124 {
9125 gfc_ref *nref = (*expr1)->ref;
9126 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
9127 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
9128 (*expr1)->rank = rank;
9129 if (sym1->ts.type == BT_CLASS)
9130 {
9131 if ((*expr1)->ts.type != BT_CLASS)
9132 (*expr1)->ts = sym1->ts;
9133
9134 CLASS_DATA (sym1)->attr.dimension = 1;
9135 if (CLASS_DATA (sym1)->as == NULL && sym2)
9136 CLASS_DATA (sym1)->as
9137 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
9138 }
9139 else
9140 {
9141 sym1->attr.dimension = 1;
9142 if (sym1->as == NULL && sym2)
9143 sym1->as = gfc_copy_array_spec (sym2->as);
9144 }
9145
9146 for (; nref; nref = nref->next)
9147 if (nref->next == NULL)
9148 break;
9149
9150 if (ref && nref && nref->type != REF_ARRAY)
9151 nref->next = gfc_copy_ref (ref);
9152 else if (ref && !nref)
9153 (*expr1)->ref = gfc_copy_ref (ref);
9154 }
9155
9156
9157 static gfc_expr *
9158 build_loc_call (gfc_expr *sym_expr)
9159 {
9160 gfc_expr *loc_call;
9161 loc_call = gfc_get_expr ();
9162 loc_call->expr_type = EXPR_FUNCTION;
9163 gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
9164 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
9165 loc_call->symtree->n.sym->attr.intrinsic = 1;
9166 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
9167 gfc_commit_symbol (loc_call->symtree->n.sym);
9168 loc_call->ts.type = BT_INTEGER;
9169 loc_call->ts.kind = gfc_index_integer_kind;
9170 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
9171 loc_call->value.function.actual = gfc_get_actual_arglist ();
9172 loc_call->value.function.actual->expr = sym_expr;
9173 loc_call->where = sym_expr->where;
9174 return loc_call;
9175 }
9176
9177 /* Resolve a SELECT TYPE statement. */
9178
9179 static void
9180 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
9181 {
9182 gfc_symbol *selector_type;
9183 gfc_code *body, *new_st, *if_st, *tail;
9184 gfc_code *class_is = NULL, *default_case = NULL;
9185 gfc_case *c;
9186 gfc_symtree *st;
9187 char name[GFC_MAX_SYMBOL_LEN];
9188 gfc_namespace *ns;
9189 int error = 0;
9190 int rank = 0;
9191 gfc_ref* ref = NULL;
9192 gfc_expr *selector_expr = NULL;
9193
9194 ns = code->ext.block.ns;
9195 gfc_resolve (ns);
9196
9197 /* Check for F03:C813. */
9198 if (code->expr1->ts.type != BT_CLASS
9199 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
9200 {
9201 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
9202 "at %L", &code->loc);
9203 return;
9204 }
9205
9206 if (!code->expr1->symtree->n.sym->attr.class_ok)
9207 return;
9208
9209 if (code->expr2)
9210 {
9211 gfc_ref *ref2 = NULL;
9212 for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
9213 if (ref->type == REF_COMPONENT
9214 && ref->u.c.component->ts.type == BT_CLASS)
9215 ref2 = ref;
9216
9217 if (ref2)
9218 {
9219 if (code->expr1->symtree->n.sym->attr.untyped)
9220 code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
9221 selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
9222 }
9223 else
9224 {
9225 if (code->expr1->symtree->n.sym->attr.untyped)
9226 code->expr1->symtree->n.sym->ts = code->expr2->ts;
9227 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
9228 }
9229
9230 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
9231 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
9232
9233 /* F2008: C803 The selector expression must not be coindexed. */
9234 if (gfc_is_coindexed (code->expr2))
9235 {
9236 gfc_error ("Selector at %L must not be coindexed",
9237 &code->expr2->where);
9238 return;
9239 }
9240
9241 }
9242 else
9243 {
9244 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
9245
9246 if (gfc_is_coindexed (code->expr1))
9247 {
9248 gfc_error ("Selector at %L must not be coindexed",
9249 &code->expr1->where);
9250 return;
9251 }
9252 }
9253
9254 /* Loop over TYPE IS / CLASS IS cases. */
9255 for (body = code->block; body; body = body->block)
9256 {
9257 c = body->ext.block.case_list;
9258
9259 if (!error)
9260 {
9261 /* Check for repeated cases. */
9262 for (tail = code->block; tail; tail = tail->block)
9263 {
9264 gfc_case *d = tail->ext.block.case_list;
9265 if (tail == body)
9266 break;
9267
9268 if (c->ts.type == d->ts.type
9269 && ((c->ts.type == BT_DERIVED
9270 && c->ts.u.derived && d->ts.u.derived
9271 && !strcmp (c->ts.u.derived->name,
9272 d->ts.u.derived->name))
9273 || c->ts.type == BT_UNKNOWN
9274 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9275 && c->ts.kind == d->ts.kind)))
9276 {
9277 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
9278 &c->where, &d->where);
9279 return;
9280 }
9281 }
9282 }
9283
9284 /* Check F03:C815. */
9285 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9286 && !selector_type->attr.unlimited_polymorphic
9287 && !gfc_type_is_extensible (c->ts.u.derived))
9288 {
9289 gfc_error ("Derived type %qs at %L must be extensible",
9290 c->ts.u.derived->name, &c->where);
9291 error++;
9292 continue;
9293 }
9294
9295 /* Check F03:C816. */
9296 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
9297 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
9298 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
9299 {
9300 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9301 gfc_error ("Derived type %qs at %L must be an extension of %qs",
9302 c->ts.u.derived->name, &c->where, selector_type->name);
9303 else
9304 gfc_error ("Unexpected intrinsic type %qs at %L",
9305 gfc_basic_typename (c->ts.type), &c->where);
9306 error++;
9307 continue;
9308 }
9309
9310 /* Check F03:C814. */
9311 if (c->ts.type == BT_CHARACTER
9312 && (c->ts.u.cl->length != NULL || c->ts.deferred))
9313 {
9314 gfc_error ("The type-spec at %L shall specify that each length "
9315 "type parameter is assumed", &c->where);
9316 error++;
9317 continue;
9318 }
9319
9320 /* Intercept the DEFAULT case. */
9321 if (c->ts.type == BT_UNKNOWN)
9322 {
9323 /* Check F03:C818. */
9324 if (default_case)
9325 {
9326 gfc_error ("The DEFAULT CASE at %L cannot be followed "
9327 "by a second DEFAULT CASE at %L",
9328 &default_case->ext.block.case_list->where, &c->where);
9329 error++;
9330 continue;
9331 }
9332
9333 default_case = body;
9334 }
9335 }
9336
9337 if (error > 0)
9338 return;
9339
9340 /* Transform SELECT TYPE statement to BLOCK and associate selector to
9341 target if present. If there are any EXIT statements referring to the
9342 SELECT TYPE construct, this is no problem because the gfc_code
9343 reference stays the same and EXIT is equally possible from the BLOCK
9344 it is changed to. */
9345 code->op = EXEC_BLOCK;
9346 if (code->expr2)
9347 {
9348 gfc_association_list* assoc;
9349
9350 assoc = gfc_get_association_list ();
9351 assoc->st = code->expr1->symtree;
9352 assoc->target = gfc_copy_expr (code->expr2);
9353 assoc->target->where = code->expr2->where;
9354 /* assoc->variable will be set by resolve_assoc_var. */
9355
9356 code->ext.block.assoc = assoc;
9357 code->expr1->symtree->n.sym->assoc = assoc;
9358
9359 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9360 }
9361 else
9362 code->ext.block.assoc = NULL;
9363
9364 /* Ensure that the selector rank and arrayspec are available to
9365 correct expressions in which they might be missing. */
9366 if (code->expr2 && code->expr2->rank)
9367 {
9368 rank = code->expr2->rank;
9369 for (ref = code->expr2->ref; ref; ref = ref->next)
9370 if (ref->next == NULL)
9371 break;
9372 if (ref && ref->type == REF_ARRAY)
9373 ref = gfc_copy_ref (ref);
9374
9375 /* Fixup expr1 if necessary. */
9376 if (rank)
9377 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
9378 }
9379 else if (code->expr1->rank)
9380 {
9381 rank = code->expr1->rank;
9382 for (ref = code->expr1->ref; ref; ref = ref->next)
9383 if (ref->next == NULL)
9384 break;
9385 if (ref && ref->type == REF_ARRAY)
9386 ref = gfc_copy_ref (ref);
9387 }
9388
9389 /* Add EXEC_SELECT to switch on type. */
9390 new_st = gfc_get_code (code->op);
9391 new_st->expr1 = code->expr1;
9392 new_st->expr2 = code->expr2;
9393 new_st->block = code->block;
9394 code->expr1 = code->expr2 = NULL;
9395 code->block = NULL;
9396 if (!ns->code)
9397 ns->code = new_st;
9398 else
9399 ns->code->next = new_st;
9400 code = new_st;
9401 code->op = EXEC_SELECT_TYPE;
9402
9403 /* Use the intrinsic LOC function to generate an integer expression
9404 for the vtable of the selector. Note that the rank of the selector
9405 expression has to be set to zero. */
9406 gfc_add_vptr_component (code->expr1);
9407 code->expr1->rank = 0;
9408 code->expr1 = build_loc_call (code->expr1);
9409 selector_expr = code->expr1->value.function.actual->expr;
9410
9411 /* Loop over TYPE IS / CLASS IS cases. */
9412 for (body = code->block; body; body = body->block)
9413 {
9414 gfc_symbol *vtab;
9415 gfc_expr *e;
9416 c = body->ext.block.case_list;
9417
9418 /* Generate an index integer expression for address of the
9419 TYPE/CLASS vtable and store it in c->low. The hash expression
9420 is stored in c->high and is used to resolve intrinsic cases. */
9421 if (c->ts.type != BT_UNKNOWN)
9422 {
9423 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9424 {
9425 vtab = gfc_find_derived_vtab (c->ts.u.derived);
9426 gcc_assert (vtab);
9427 c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
9428 c->ts.u.derived->hash_value);
9429 }
9430 else
9431 {
9432 vtab = gfc_find_vtab (&c->ts);
9433 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
9434 e = CLASS_DATA (vtab)->initializer;
9435 c->high = gfc_copy_expr (e);
9436 if (c->high->ts.kind != gfc_integer_4_kind)
9437 {
9438 gfc_typespec ts;
9439 ts.kind = gfc_integer_4_kind;
9440 ts.type = BT_INTEGER;
9441 gfc_convert_type_warn (c->high, &ts, 2, 0);
9442 }
9443 }
9444
9445 e = gfc_lval_expr_from_sym (vtab);
9446 c->low = build_loc_call (e);
9447 }
9448 else
9449 continue;
9450
9451 /* Associate temporary to selector. This should only be done
9452 when this case is actually true, so build a new ASSOCIATE
9453 that does precisely this here (instead of using the
9454 'global' one). */
9455
9456 if (c->ts.type == BT_CLASS)
9457 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
9458 else if (c->ts.type == BT_DERIVED)
9459 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
9460 else if (c->ts.type == BT_CHARACTER)
9461 {
9462 HOST_WIDE_INT charlen = 0;
9463 if (c->ts.u.cl && c->ts.u.cl->length
9464 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9465 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9466 snprintf (name, sizeof (name),
9467 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9468 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9469 }
9470 else
9471 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9472 c->ts.kind);
9473
9474 st = gfc_find_symtree (ns->sym_root, name);
9475 gcc_assert (st->n.sym->assoc);
9476 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9477 st->n.sym->assoc->target->where = selector_expr->where;
9478 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9479 {
9480 gfc_add_data_component (st->n.sym->assoc->target);
9481 /* Fixup the target expression if necessary. */
9482 if (rank)
9483 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9484 }
9485
9486 new_st = gfc_get_code (EXEC_BLOCK);
9487 new_st->ext.block.ns = gfc_build_block_ns (ns);
9488 new_st->ext.block.ns->code = body->next;
9489 body->next = new_st;
9490
9491 /* Chain in the new list only if it is marked as dangling. Otherwise
9492 there is a CASE label overlap and this is already used. Just ignore,
9493 the error is diagnosed elsewhere. */
9494 if (st->n.sym->assoc->dangling)
9495 {
9496 new_st->ext.block.assoc = st->n.sym->assoc;
9497 st->n.sym->assoc->dangling = 0;
9498 }
9499
9500 resolve_assoc_var (st->n.sym, false);
9501 }
9502
9503 /* Take out CLASS IS cases for separate treatment. */
9504 body = code;
9505 while (body && body->block)
9506 {
9507 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9508 {
9509 /* Add to class_is list. */
9510 if (class_is == NULL)
9511 {
9512 class_is = body->block;
9513 tail = class_is;
9514 }
9515 else
9516 {
9517 for (tail = class_is; tail->block; tail = tail->block) ;
9518 tail->block = body->block;
9519 tail = tail->block;
9520 }
9521 /* Remove from EXEC_SELECT list. */
9522 body->block = body->block->block;
9523 tail->block = NULL;
9524 }
9525 else
9526 body = body->block;
9527 }
9528
9529 if (class_is)
9530 {
9531 gfc_symbol *vtab;
9532
9533 if (!default_case)
9534 {
9535 /* Add a default case to hold the CLASS IS cases. */
9536 for (tail = code; tail->block; tail = tail->block) ;
9537 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9538 tail = tail->block;
9539 tail->ext.block.case_list = gfc_get_case ();
9540 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9541 tail->next = NULL;
9542 default_case = tail;
9543 }
9544
9545 /* More than one CLASS IS block? */
9546 if (class_is->block)
9547 {
9548 gfc_code **c1,*c2;
9549 bool swapped;
9550 /* Sort CLASS IS blocks by extension level. */
9551 do
9552 {
9553 swapped = false;
9554 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9555 {
9556 c2 = (*c1)->block;
9557 /* F03:C817 (check for doubles). */
9558 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9559 == c2->ext.block.case_list->ts.u.derived->hash_value)
9560 {
9561 gfc_error ("Double CLASS IS block in SELECT TYPE "
9562 "statement at %L",
9563 &c2->ext.block.case_list->where);
9564 return;
9565 }
9566 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9567 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9568 {
9569 /* Swap. */
9570 (*c1)->block = c2->block;
9571 c2->block = *c1;
9572 *c1 = c2;
9573 swapped = true;
9574 }
9575 }
9576 }
9577 while (swapped);
9578 }
9579
9580 /* Generate IF chain. */
9581 if_st = gfc_get_code (EXEC_IF);
9582 new_st = if_st;
9583 for (body = class_is; body; body = body->block)
9584 {
9585 new_st->block = gfc_get_code (EXEC_IF);
9586 new_st = new_st->block;
9587 /* Set up IF condition: Call _gfortran_is_extension_of. */
9588 new_st->expr1 = gfc_get_expr ();
9589 new_st->expr1->expr_type = EXPR_FUNCTION;
9590 new_st->expr1->ts.type = BT_LOGICAL;
9591 new_st->expr1->ts.kind = 4;
9592 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9593 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9594 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9595 /* Set up arguments. */
9596 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9597 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9598 new_st->expr1->value.function.actual->expr->where = code->loc;
9599 new_st->expr1->where = code->loc;
9600 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9601 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9602 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9603 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9604 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9605 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9606 new_st->next = body->next;
9607 }
9608 if (default_case->next)
9609 {
9610 new_st->block = gfc_get_code (EXEC_IF);
9611 new_st = new_st->block;
9612 new_st->next = default_case->next;
9613 }
9614
9615 /* Replace CLASS DEFAULT code by the IF chain. */
9616 default_case->next = if_st;
9617 }
9618
9619 /* Resolve the internal code. This cannot be done earlier because
9620 it requires that the sym->assoc of selectors is set already. */
9621 gfc_current_ns = ns;
9622 gfc_resolve_blocks (code->block, gfc_current_ns);
9623 gfc_current_ns = old_ns;
9624
9625 if (ref)
9626 free (ref);
9627 }
9628
9629
9630 /* Resolve a SELECT RANK statement. */
9631
9632 static void
9633 resolve_select_rank (gfc_code *code, gfc_namespace *old_ns)
9634 {
9635 gfc_namespace *ns;
9636 gfc_code *body, *new_st, *tail;
9637 gfc_case *c;
9638 char tname[GFC_MAX_SYMBOL_LEN + 7];
9639 char name[2 * GFC_MAX_SYMBOL_LEN];
9640 gfc_symtree *st;
9641 gfc_expr *selector_expr = NULL;
9642 int case_value;
9643 HOST_WIDE_INT charlen = 0;
9644
9645 ns = code->ext.block.ns;
9646 gfc_resolve (ns);
9647
9648 code->op = EXEC_BLOCK;
9649 if (code->expr2)
9650 {
9651 gfc_association_list* assoc;
9652
9653 assoc = gfc_get_association_list ();
9654 assoc->st = code->expr1->symtree;
9655 assoc->target = gfc_copy_expr (code->expr2);
9656 assoc->target->where = code->expr2->where;
9657 /* assoc->variable will be set by resolve_assoc_var. */
9658
9659 code->ext.block.assoc = assoc;
9660 code->expr1->symtree->n.sym->assoc = assoc;
9661
9662 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9663 }
9664 else
9665 code->ext.block.assoc = NULL;
9666
9667 /* Loop over RANK cases. Note that returning on the errors causes a
9668 cascade of further errors because the case blocks do not compile
9669 correctly. */
9670 for (body = code->block; body; body = body->block)
9671 {
9672 c = body->ext.block.case_list;
9673 if (c->low)
9674 case_value = (int) mpz_get_si (c->low->value.integer);
9675 else
9676 case_value = -2;
9677
9678 /* Check for repeated cases. */
9679 for (tail = code->block; tail; tail = tail->block)
9680 {
9681 gfc_case *d = tail->ext.block.case_list;
9682 int case_value2;
9683
9684 if (tail == body)
9685 break;
9686
9687 /* Check F2018: C1153. */
9688 if (!c->low && !d->low)
9689 gfc_error ("RANK DEFAULT at %L is repeated at %L",
9690 &c->where, &d->where);
9691
9692 if (!c->low || !d->low)
9693 continue;
9694
9695 /* Check F2018: C1153. */
9696 case_value2 = (int) mpz_get_si (d->low->value.integer);
9697 if ((case_value == case_value2) && case_value == -1)
9698 gfc_error ("RANK (*) at %L is repeated at %L",
9699 &c->where, &d->where);
9700 else if (case_value == case_value2)
9701 gfc_error ("RANK (%i) at %L is repeated at %L",
9702 case_value, &c->where, &d->where);
9703 }
9704
9705 if (!c->low)
9706 continue;
9707
9708 /* Check F2018: C1155. */
9709 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9710 || gfc_expr_attr (code->expr1).pointer))
9711 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9712 "allocatable selector at %L", &c->where, &code->expr1->where);
9713
9714 if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
9715 || gfc_expr_attr (code->expr1).pointer))
9716 gfc_error ("RANK (*) at %L cannot be used with the pointer or "
9717 "allocatable selector at %L", &c->where, &code->expr1->where);
9718 }
9719
9720 /* Add EXEC_SELECT to switch on rank. */
9721 new_st = gfc_get_code (code->op);
9722 new_st->expr1 = code->expr1;
9723 new_st->expr2 = code->expr2;
9724 new_st->block = code->block;
9725 code->expr1 = code->expr2 = NULL;
9726 code->block = NULL;
9727 if (!ns->code)
9728 ns->code = new_st;
9729 else
9730 ns->code->next = new_st;
9731 code = new_st;
9732 code->op = EXEC_SELECT_RANK;
9733
9734 selector_expr = code->expr1;
9735
9736 /* Loop over SELECT RANK cases. */
9737 for (body = code->block; body; body = body->block)
9738 {
9739 c = body->ext.block.case_list;
9740 int case_value;
9741
9742 /* Pass on the default case. */
9743 if (c->low == NULL)
9744 continue;
9745
9746 /* Associate temporary to selector. This should only be done
9747 when this case is actually true, so build a new ASSOCIATE
9748 that does precisely this here (instead of using the
9749 'global' one). */
9750 if (c->ts.type == BT_CHARACTER && c->ts.u.cl && c->ts.u.cl->length
9751 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9752 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9753
9754 if (c->ts.type == BT_CLASS)
9755 sprintf (tname, "class_%s", c->ts.u.derived->name);
9756 else if (c->ts.type == BT_DERIVED)
9757 sprintf (tname, "type_%s", c->ts.u.derived->name);
9758 else if (c->ts.type != BT_CHARACTER)
9759 sprintf (tname, "%s_%d", gfc_basic_typename (c->ts.type), c->ts.kind);
9760 else
9761 sprintf (tname, "%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9762 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9763
9764 case_value = (int) mpz_get_si (c->low->value.integer);
9765 if (case_value >= 0)
9766 sprintf (name, "__tmp_%s_rank_%d", tname, case_value);
9767 else
9768 sprintf (name, "__tmp_%s_rank_m%d", tname, -case_value);
9769
9770 st = gfc_find_symtree (ns->sym_root, name);
9771 gcc_assert (st->n.sym->assoc);
9772
9773 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9774 st->n.sym->assoc->target->where = selector_expr->where;
9775
9776 new_st = gfc_get_code (EXEC_BLOCK);
9777 new_st->ext.block.ns = gfc_build_block_ns (ns);
9778 new_st->ext.block.ns->code = body->next;
9779 body->next = new_st;
9780
9781 /* Chain in the new list only if it is marked as dangling. Otherwise
9782 there is a CASE label overlap and this is already used. Just ignore,
9783 the error is diagnosed elsewhere. */
9784 if (st->n.sym->assoc->dangling)
9785 {
9786 new_st->ext.block.assoc = st->n.sym->assoc;
9787 st->n.sym->assoc->dangling = 0;
9788 }
9789
9790 resolve_assoc_var (st->n.sym, false);
9791 }
9792
9793 gfc_current_ns = ns;
9794 gfc_resolve_blocks (code->block, gfc_current_ns);
9795 gfc_current_ns = old_ns;
9796 }
9797
9798
9799 /* Resolve a transfer statement. This is making sure that:
9800 -- a derived type being transferred has only non-pointer components
9801 -- a derived type being transferred doesn't have private components, unless
9802 it's being transferred from the module where the type was defined
9803 -- we're not trying to transfer a whole assumed size array. */
9804
9805 static void
9806 resolve_transfer (gfc_code *code)
9807 {
9808 gfc_symbol *sym, *derived;
9809 gfc_ref *ref;
9810 gfc_expr *exp;
9811 bool write = false;
9812 bool formatted = false;
9813 gfc_dt *dt = code->ext.dt;
9814 gfc_symbol *dtio_sub = NULL;
9815
9816 exp = code->expr1;
9817
9818 while (exp != NULL && exp->expr_type == EXPR_OP
9819 && exp->value.op.op == INTRINSIC_PARENTHESES)
9820 exp = exp->value.op.op1;
9821
9822 if (exp && exp->expr_type == EXPR_NULL
9823 && code->ext.dt)
9824 {
9825 gfc_error ("Invalid context for NULL () intrinsic at %L",
9826 &exp->where);
9827 return;
9828 }
9829
9830 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9831 && exp->expr_type != EXPR_FUNCTION
9832 && exp->expr_type != EXPR_STRUCTURE))
9833 return;
9834
9835 /* If we are reading, the variable will be changed. Note that
9836 code->ext.dt may be NULL if the TRANSFER is related to
9837 an INQUIRE statement -- but in this case, we are not reading, either. */
9838 if (dt && dt->dt_io_kind->value.iokind == M_READ
9839 && !gfc_check_vardef_context (exp, false, false, false,
9840 _("item in READ")))
9841 return;
9842
9843 const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
9844 || exp->expr_type == EXPR_FUNCTION
9845 ? &exp->ts : &exp->symtree->n.sym->ts;
9846
9847 /* Go to actual component transferred. */
9848 for (ref = exp->ref; ref; ref = ref->next)
9849 if (ref->type == REF_COMPONENT)
9850 ts = &ref->u.c.component->ts;
9851
9852 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9853 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9854 {
9855 derived = ts->u.derived;
9856
9857 /* Determine when to use the formatted DTIO procedure. */
9858 if (dt && (dt->format_expr || dt->format_label))
9859 formatted = true;
9860
9861 write = dt->dt_io_kind->value.iokind == M_WRITE
9862 || dt->dt_io_kind->value.iokind == M_PRINT;
9863 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9864
9865 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9866 {
9867 dt->udtio = exp;
9868 sym = exp->symtree->n.sym->ns->proc_name;
9869 /* Check to see if this is a nested DTIO call, with the
9870 dummy as the io-list object. */
9871 if (sym && sym == dtio_sub && sym->formal
9872 && sym->formal->sym == exp->symtree->n.sym
9873 && exp->ref == NULL)
9874 {
9875 if (!sym->attr.recursive)
9876 {
9877 gfc_error ("DTIO %s procedure at %L must be recursive",
9878 sym->name, &sym->declared_at);
9879 return;
9880 }
9881 }
9882 }
9883 }
9884
9885 if (ts->type == BT_CLASS && dtio_sub == NULL)
9886 {
9887 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9888 "it is processed by a defined input/output procedure",
9889 &code->loc);
9890 return;
9891 }
9892
9893 if (ts->type == BT_DERIVED)
9894 {
9895 /* Check that transferred derived type doesn't contain POINTER
9896 components unless it is processed by a defined input/output
9897 procedure". */
9898 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9899 {
9900 gfc_error ("Data transfer element at %L cannot have POINTER "
9901 "components unless it is processed by a defined "
9902 "input/output procedure", &code->loc);
9903 return;
9904 }
9905
9906 /* F08:C935. */
9907 if (ts->u.derived->attr.proc_pointer_comp)
9908 {
9909 gfc_error ("Data transfer element at %L cannot have "
9910 "procedure pointer components", &code->loc);
9911 return;
9912 }
9913
9914 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9915 {
9916 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9917 "components unless it is processed by a defined "
9918 "input/output procedure", &code->loc);
9919 return;
9920 }
9921
9922 /* C_PTR and C_FUNPTR have private components which means they cannot
9923 be printed. However, if -std=gnu and not -pedantic, allow
9924 the component to be printed to help debugging. */
9925 if (ts->u.derived->ts.f90_type == BT_VOID)
9926 {
9927 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9928 "cannot have PRIVATE components", &code->loc))
9929 return;
9930 }
9931 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9932 {
9933 gfc_error ("Data transfer element at %L cannot have "
9934 "PRIVATE components unless it is processed by "
9935 "a defined input/output procedure", &code->loc);
9936 return;
9937 }
9938 }
9939
9940 if (exp->expr_type == EXPR_STRUCTURE)
9941 return;
9942
9943 sym = exp->symtree->n.sym;
9944
9945 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9946 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9947 {
9948 gfc_error ("Data transfer element at %L cannot be a full reference to "
9949 "an assumed-size array", &code->loc);
9950 return;
9951 }
9952 }
9953
9954
9955 /*********** Toplevel code resolution subroutines ***********/
9956
9957 /* Find the set of labels that are reachable from this block. We also
9958 record the last statement in each block. */
9959
9960 static void
9961 find_reachable_labels (gfc_code *block)
9962 {
9963 gfc_code *c;
9964
9965 if (!block)
9966 return;
9967
9968 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9969
9970 /* Collect labels in this block. We don't keep those corresponding
9971 to END {IF|SELECT}, these are checked in resolve_branch by going
9972 up through the code_stack. */
9973 for (c = block; c; c = c->next)
9974 {
9975 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9976 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9977 }
9978
9979 /* Merge with labels from parent block. */
9980 if (cs_base->prev)
9981 {
9982 gcc_assert (cs_base->prev->reachable_labels);
9983 bitmap_ior_into (cs_base->reachable_labels,
9984 cs_base->prev->reachable_labels);
9985 }
9986 }
9987
9988
9989 static void
9990 resolve_lock_unlock_event (gfc_code *code)
9991 {
9992 if (code->expr1->expr_type == EXPR_FUNCTION
9993 && code->expr1->value.function.isym
9994 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9995 remove_caf_get_intrinsic (code->expr1);
9996
9997 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9998 && (code->expr1->ts.type != BT_DERIVED
9999 || code->expr1->expr_type != EXPR_VARIABLE
10000 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
10001 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
10002 || code->expr1->rank != 0
10003 || (!gfc_is_coarray (code->expr1) &&
10004 !gfc_is_coindexed (code->expr1))))
10005 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
10006 &code->expr1->where);
10007 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
10008 && (code->expr1->ts.type != BT_DERIVED
10009 || code->expr1->expr_type != EXPR_VARIABLE
10010 || code->expr1->ts.u.derived->from_intmod
10011 != INTMOD_ISO_FORTRAN_ENV
10012 || code->expr1->ts.u.derived->intmod_sym_id
10013 != ISOFORTRAN_EVENT_TYPE
10014 || code->expr1->rank != 0))
10015 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
10016 &code->expr1->where);
10017 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
10018 && !gfc_is_coindexed (code->expr1))
10019 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
10020 &code->expr1->where);
10021 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
10022 gfc_error ("Event variable argument at %L must be a coarray but not "
10023 "coindexed", &code->expr1->where);
10024
10025 /* Check STAT. */
10026 if (code->expr2
10027 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
10028 || code->expr2->expr_type != EXPR_VARIABLE))
10029 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
10030 &code->expr2->where);
10031
10032 if (code->expr2
10033 && !gfc_check_vardef_context (code->expr2, false, false, false,
10034 _("STAT variable")))
10035 return;
10036
10037 /* Check ERRMSG. */
10038 if (code->expr3
10039 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
10040 || code->expr3->expr_type != EXPR_VARIABLE))
10041 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
10042 &code->expr3->where);
10043
10044 if (code->expr3
10045 && !gfc_check_vardef_context (code->expr3, false, false, false,
10046 _("ERRMSG variable")))
10047 return;
10048
10049 /* Check for LOCK the ACQUIRED_LOCK. */
10050 if (code->op != EXEC_EVENT_WAIT && code->expr4
10051 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
10052 || code->expr4->expr_type != EXPR_VARIABLE))
10053 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
10054 "variable", &code->expr4->where);
10055
10056 if (code->op != EXEC_EVENT_WAIT && code->expr4
10057 && !gfc_check_vardef_context (code->expr4, false, false, false,
10058 _("ACQUIRED_LOCK variable")))
10059 return;
10060
10061 /* Check for EVENT WAIT the UNTIL_COUNT. */
10062 if (code->op == EXEC_EVENT_WAIT && code->expr4)
10063 {
10064 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
10065 || code->expr4->rank != 0)
10066 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
10067 "expression", &code->expr4->where);
10068 }
10069 }
10070
10071
10072 static void
10073 resolve_critical (gfc_code *code)
10074 {
10075 gfc_symtree *symtree;
10076 gfc_symbol *lock_type;
10077 char name[GFC_MAX_SYMBOL_LEN];
10078 static int serial = 0;
10079
10080 if (flag_coarray != GFC_FCOARRAY_LIB)
10081 return;
10082
10083 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
10084 GFC_PREFIX ("lock_type"));
10085 if (symtree)
10086 lock_type = symtree->n.sym;
10087 else
10088 {
10089 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
10090 false) != 0)
10091 gcc_unreachable ();
10092 lock_type = symtree->n.sym;
10093 lock_type->attr.flavor = FL_DERIVED;
10094 lock_type->attr.zero_comp = 1;
10095 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
10096 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
10097 }
10098
10099 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
10100 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
10101 gcc_unreachable ();
10102
10103 code->resolved_sym = symtree->n.sym;
10104 symtree->n.sym->attr.flavor = FL_VARIABLE;
10105 symtree->n.sym->attr.referenced = 1;
10106 symtree->n.sym->attr.artificial = 1;
10107 symtree->n.sym->attr.codimension = 1;
10108 symtree->n.sym->ts.type = BT_DERIVED;
10109 symtree->n.sym->ts.u.derived = lock_type;
10110 symtree->n.sym->as = gfc_get_array_spec ();
10111 symtree->n.sym->as->corank = 1;
10112 symtree->n.sym->as->type = AS_EXPLICIT;
10113 symtree->n.sym->as->cotype = AS_EXPLICIT;
10114 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
10115 NULL, 1);
10116 gfc_commit_symbols();
10117 }
10118
10119
10120 static void
10121 resolve_sync (gfc_code *code)
10122 {
10123 /* Check imageset. The * case matches expr1 == NULL. */
10124 if (code->expr1)
10125 {
10126 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
10127 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
10128 "INTEGER expression", &code->expr1->where);
10129 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
10130 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
10131 gfc_error ("Imageset argument at %L must between 1 and num_images()",
10132 &code->expr1->where);
10133 else if (code->expr1->expr_type == EXPR_ARRAY
10134 && gfc_simplify_expr (code->expr1, 0))
10135 {
10136 gfc_constructor *cons;
10137 cons = gfc_constructor_first (code->expr1->value.constructor);
10138 for (; cons; cons = gfc_constructor_next (cons))
10139 if (cons->expr->expr_type == EXPR_CONSTANT
10140 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
10141 gfc_error ("Imageset argument at %L must between 1 and "
10142 "num_images()", &cons->expr->where);
10143 }
10144 }
10145
10146 /* Check STAT. */
10147 gfc_resolve_expr (code->expr2);
10148 if (code->expr2
10149 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
10150 || code->expr2->expr_type != EXPR_VARIABLE))
10151 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
10152 &code->expr2->where);
10153
10154 /* Check ERRMSG. */
10155 gfc_resolve_expr (code->expr3);
10156 if (code->expr3
10157 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
10158 || code->expr3->expr_type != EXPR_VARIABLE))
10159 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
10160 &code->expr3->where);
10161 }
10162
10163
10164 /* Given a branch to a label, see if the branch is conforming.
10165 The code node describes where the branch is located. */
10166
10167 static void
10168 resolve_branch (gfc_st_label *label, gfc_code *code)
10169 {
10170 code_stack *stack;
10171
10172 if (label == NULL)
10173 return;
10174
10175 /* Step one: is this a valid branching target? */
10176
10177 if (label->defined == ST_LABEL_UNKNOWN)
10178 {
10179 gfc_error ("Label %d referenced at %L is never defined", label->value,
10180 &code->loc);
10181 return;
10182 }
10183
10184 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
10185 {
10186 gfc_error ("Statement at %L is not a valid branch target statement "
10187 "for the branch statement at %L", &label->where, &code->loc);
10188 return;
10189 }
10190
10191 /* Step two: make sure this branch is not a branch to itself ;-) */
10192
10193 if (code->here == label)
10194 {
10195 gfc_warning (0,
10196 "Branch at %L may result in an infinite loop", &code->loc);
10197 return;
10198 }
10199
10200 /* Step three: See if the label is in the same block as the
10201 branching statement. The hard work has been done by setting up
10202 the bitmap reachable_labels. */
10203
10204 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
10205 {
10206 /* Check now whether there is a CRITICAL construct; if so, check
10207 whether the label is still visible outside of the CRITICAL block,
10208 which is invalid. */
10209 for (stack = cs_base; stack; stack = stack->prev)
10210 {
10211 if (stack->current->op == EXEC_CRITICAL
10212 && bitmap_bit_p (stack->reachable_labels, label->value))
10213 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
10214 "label at %L", &code->loc, &label->where);
10215 else if (stack->current->op == EXEC_DO_CONCURRENT
10216 && bitmap_bit_p (stack->reachable_labels, label->value))
10217 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
10218 "for label at %L", &code->loc, &label->where);
10219 }
10220
10221 return;
10222 }
10223
10224 /* Step four: If we haven't found the label in the bitmap, it may
10225 still be the label of the END of the enclosing block, in which
10226 case we find it by going up the code_stack. */
10227
10228 for (stack = cs_base; stack; stack = stack->prev)
10229 {
10230 if (stack->current->next && stack->current->next->here == label)
10231 break;
10232 if (stack->current->op == EXEC_CRITICAL)
10233 {
10234 /* Note: A label at END CRITICAL does not leave the CRITICAL
10235 construct as END CRITICAL is still part of it. */
10236 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
10237 " at %L", &code->loc, &label->where);
10238 return;
10239 }
10240 else if (stack->current->op == EXEC_DO_CONCURRENT)
10241 {
10242 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
10243 "label at %L", &code->loc, &label->where);
10244 return;
10245 }
10246 }
10247
10248 if (stack)
10249 {
10250 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
10251 return;
10252 }
10253
10254 /* The label is not in an enclosing block, so illegal. This was
10255 allowed in Fortran 66, so we allow it as extension. No
10256 further checks are necessary in this case. */
10257 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
10258 "as the GOTO statement at %L", &label->where,
10259 &code->loc);
10260 return;
10261 }
10262
10263
10264 /* Check whether EXPR1 has the same shape as EXPR2. */
10265
10266 static bool
10267 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
10268 {
10269 mpz_t shape[GFC_MAX_DIMENSIONS];
10270 mpz_t shape2[GFC_MAX_DIMENSIONS];
10271 bool result = false;
10272 int i;
10273
10274 /* Compare the rank. */
10275 if (expr1->rank != expr2->rank)
10276 return result;
10277
10278 /* Compare the size of each dimension. */
10279 for (i=0; i<expr1->rank; i++)
10280 {
10281 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
10282 goto ignore;
10283
10284 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
10285 goto ignore;
10286
10287 if (mpz_cmp (shape[i], shape2[i]))
10288 goto over;
10289 }
10290
10291 /* When either of the two expression is an assumed size array, we
10292 ignore the comparison of dimension sizes. */
10293 ignore:
10294 result = true;
10295
10296 over:
10297 gfc_clear_shape (shape, i);
10298 gfc_clear_shape (shape2, i);
10299 return result;
10300 }
10301
10302
10303 /* Check whether a WHERE assignment target or a WHERE mask expression
10304 has the same shape as the outmost WHERE mask expression. */
10305
10306 static void
10307 resolve_where (gfc_code *code, gfc_expr *mask)
10308 {
10309 gfc_code *cblock;
10310 gfc_code *cnext;
10311 gfc_expr *e = NULL;
10312
10313 cblock = code->block;
10314
10315 /* Store the first WHERE mask-expr of the WHERE statement or construct.
10316 In case of nested WHERE, only the outmost one is stored. */
10317 if (mask == NULL) /* outmost WHERE */
10318 e = cblock->expr1;
10319 else /* inner WHERE */
10320 e = mask;
10321
10322 while (cblock)
10323 {
10324 if (cblock->expr1)
10325 {
10326 /* Check if the mask-expr has a consistent shape with the
10327 outmost WHERE mask-expr. */
10328 if (!resolve_where_shape (cblock->expr1, e))
10329 gfc_error ("WHERE mask at %L has inconsistent shape",
10330 &cblock->expr1->where);
10331 }
10332
10333 /* the assignment statement of a WHERE statement, or the first
10334 statement in where-body-construct of a WHERE construct */
10335 cnext = cblock->next;
10336 while (cnext)
10337 {
10338 switch (cnext->op)
10339 {
10340 /* WHERE assignment statement */
10341 case EXEC_ASSIGN:
10342
10343 /* Check shape consistent for WHERE assignment target. */
10344 if (e && !resolve_where_shape (cnext->expr1, e))
10345 gfc_error ("WHERE assignment target at %L has "
10346 "inconsistent shape", &cnext->expr1->where);
10347 break;
10348
10349
10350 case EXEC_ASSIGN_CALL:
10351 resolve_call (cnext);
10352 if (!cnext->resolved_sym->attr.elemental)
10353 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10354 &cnext->ext.actual->expr->where);
10355 break;
10356
10357 /* WHERE or WHERE construct is part of a where-body-construct */
10358 case EXEC_WHERE:
10359 resolve_where (cnext, e);
10360 break;
10361
10362 default:
10363 gfc_error ("Unsupported statement inside WHERE at %L",
10364 &cnext->loc);
10365 }
10366 /* the next statement within the same where-body-construct */
10367 cnext = cnext->next;
10368 }
10369 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10370 cblock = cblock->block;
10371 }
10372 }
10373
10374
10375 /* Resolve assignment in FORALL construct.
10376 NVAR is the number of FORALL index variables, and VAR_EXPR records the
10377 FORALL index variables. */
10378
10379 static void
10380 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
10381 {
10382 int n;
10383
10384 for (n = 0; n < nvar; n++)
10385 {
10386 gfc_symbol *forall_index;
10387
10388 forall_index = var_expr[n]->symtree->n.sym;
10389
10390 /* Check whether the assignment target is one of the FORALL index
10391 variable. */
10392 if ((code->expr1->expr_type == EXPR_VARIABLE)
10393 && (code->expr1->symtree->n.sym == forall_index))
10394 gfc_error ("Assignment to a FORALL index variable at %L",
10395 &code->expr1->where);
10396 else
10397 {
10398 /* If one of the FORALL index variables doesn't appear in the
10399 assignment variable, then there could be a many-to-one
10400 assignment. Emit a warning rather than an error because the
10401 mask could be resolving this problem. */
10402 if (!find_forall_index (code->expr1, forall_index, 0))
10403 gfc_warning (0, "The FORALL with index %qs is not used on the "
10404 "left side of the assignment at %L and so might "
10405 "cause multiple assignment to this object",
10406 var_expr[n]->symtree->name, &code->expr1->where);
10407 }
10408 }
10409 }
10410
10411
10412 /* Resolve WHERE statement in FORALL construct. */
10413
10414 static void
10415 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
10416 gfc_expr **var_expr)
10417 {
10418 gfc_code *cblock;
10419 gfc_code *cnext;
10420
10421 cblock = code->block;
10422 while (cblock)
10423 {
10424 /* the assignment statement of a WHERE statement, or the first
10425 statement in where-body-construct of a WHERE construct */
10426 cnext = cblock->next;
10427 while (cnext)
10428 {
10429 switch (cnext->op)
10430 {
10431 /* WHERE assignment statement */
10432 case EXEC_ASSIGN:
10433 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
10434 break;
10435
10436 /* WHERE operator assignment statement */
10437 case EXEC_ASSIGN_CALL:
10438 resolve_call (cnext);
10439 if (!cnext->resolved_sym->attr.elemental)
10440 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10441 &cnext->ext.actual->expr->where);
10442 break;
10443
10444 /* WHERE or WHERE construct is part of a where-body-construct */
10445 case EXEC_WHERE:
10446 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
10447 break;
10448
10449 default:
10450 gfc_error ("Unsupported statement inside WHERE at %L",
10451 &cnext->loc);
10452 }
10453 /* the next statement within the same where-body-construct */
10454 cnext = cnext->next;
10455 }
10456 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10457 cblock = cblock->block;
10458 }
10459 }
10460
10461
10462 /* Traverse the FORALL body to check whether the following errors exist:
10463 1. For assignment, check if a many-to-one assignment happens.
10464 2. For WHERE statement, check the WHERE body to see if there is any
10465 many-to-one assignment. */
10466
10467 static void
10468 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
10469 {
10470 gfc_code *c;
10471
10472 c = code->block->next;
10473 while (c)
10474 {
10475 switch (c->op)
10476 {
10477 case EXEC_ASSIGN:
10478 case EXEC_POINTER_ASSIGN:
10479 gfc_resolve_assign_in_forall (c, nvar, var_expr);
10480 break;
10481
10482 case EXEC_ASSIGN_CALL:
10483 resolve_call (c);
10484 break;
10485
10486 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
10487 there is no need to handle it here. */
10488 case EXEC_FORALL:
10489 break;
10490 case EXEC_WHERE:
10491 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
10492 break;
10493 default:
10494 break;
10495 }
10496 /* The next statement in the FORALL body. */
10497 c = c->next;
10498 }
10499 }
10500
10501
10502 /* Counts the number of iterators needed inside a forall construct, including
10503 nested forall constructs. This is used to allocate the needed memory
10504 in gfc_resolve_forall. */
10505
10506 static int
10507 gfc_count_forall_iterators (gfc_code *code)
10508 {
10509 int max_iters, sub_iters, current_iters;
10510 gfc_forall_iterator *fa;
10511
10512 gcc_assert(code->op == EXEC_FORALL);
10513 max_iters = 0;
10514 current_iters = 0;
10515
10516 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10517 current_iters ++;
10518
10519 code = code->block->next;
10520
10521 while (code)
10522 {
10523 if (code->op == EXEC_FORALL)
10524 {
10525 sub_iters = gfc_count_forall_iterators (code);
10526 if (sub_iters > max_iters)
10527 max_iters = sub_iters;
10528 }
10529 code = code->next;
10530 }
10531
10532 return current_iters + max_iters;
10533 }
10534
10535
10536 /* Given a FORALL construct, first resolve the FORALL iterator, then call
10537 gfc_resolve_forall_body to resolve the FORALL body. */
10538
10539 static void
10540 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
10541 {
10542 static gfc_expr **var_expr;
10543 static int total_var = 0;
10544 static int nvar = 0;
10545 int i, old_nvar, tmp;
10546 gfc_forall_iterator *fa;
10547
10548 old_nvar = nvar;
10549
10550 if (!gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
10551 return;
10552
10553 /* Start to resolve a FORALL construct */
10554 if (forall_save == 0)
10555 {
10556 /* Count the total number of FORALL indices in the nested FORALL
10557 construct in order to allocate the VAR_EXPR with proper size. */
10558 total_var = gfc_count_forall_iterators (code);
10559
10560 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
10561 var_expr = XCNEWVEC (gfc_expr *, total_var);
10562 }
10563
10564 /* The information about FORALL iterator, including FORALL indices start, end
10565 and stride. An outer FORALL indice cannot appear in start, end or stride. */
10566 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10567 {
10568 /* Fortran 20008: C738 (R753). */
10569 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
10570 {
10571 gfc_error ("FORALL index-name at %L must be a scalar variable "
10572 "of type integer", &fa->var->where);
10573 continue;
10574 }
10575
10576 /* Check if any outer FORALL index name is the same as the current
10577 one. */
10578 for (i = 0; i < nvar; i++)
10579 {
10580 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
10581 gfc_error ("An outer FORALL construct already has an index "
10582 "with this name %L", &fa->var->where);
10583 }
10584
10585 /* Record the current FORALL index. */
10586 var_expr[nvar] = gfc_copy_expr (fa->var);
10587
10588 nvar++;
10589
10590 /* No memory leak. */
10591 gcc_assert (nvar <= total_var);
10592 }
10593
10594 /* Resolve the FORALL body. */
10595 gfc_resolve_forall_body (code, nvar, var_expr);
10596
10597 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
10598 gfc_resolve_blocks (code->block, ns);
10599
10600 tmp = nvar;
10601 nvar = old_nvar;
10602 /* Free only the VAR_EXPRs allocated in this frame. */
10603 for (i = nvar; i < tmp; i++)
10604 gfc_free_expr (var_expr[i]);
10605
10606 if (nvar == 0)
10607 {
10608 /* We are in the outermost FORALL construct. */
10609 gcc_assert (forall_save == 0);
10610
10611 /* VAR_EXPR is not needed any more. */
10612 free (var_expr);
10613 total_var = 0;
10614 }
10615 }
10616
10617
10618 /* Resolve a BLOCK construct statement. */
10619
10620 static void
10621 resolve_block_construct (gfc_code* code)
10622 {
10623 /* Resolve the BLOCK's namespace. */
10624 gfc_resolve (code->ext.block.ns);
10625
10626 /* For an ASSOCIATE block, the associations (and their targets) are already
10627 resolved during resolve_symbol. */
10628 }
10629
10630
10631 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
10632 DO code nodes. */
10633
10634 void
10635 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10636 {
10637 bool t;
10638
10639 for (; b; b = b->block)
10640 {
10641 t = gfc_resolve_expr (b->expr1);
10642 if (!gfc_resolve_expr (b->expr2))
10643 t = false;
10644
10645 switch (b->op)
10646 {
10647 case EXEC_IF:
10648 if (t && b->expr1 != NULL
10649 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10650 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10651 &b->expr1->where);
10652 break;
10653
10654 case EXEC_WHERE:
10655 if (t
10656 && b->expr1 != NULL
10657 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10658 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10659 &b->expr1->where);
10660 break;
10661
10662 case EXEC_GOTO:
10663 resolve_branch (b->label1, b);
10664 break;
10665
10666 case EXEC_BLOCK:
10667 resolve_block_construct (b);
10668 break;
10669
10670 case EXEC_SELECT:
10671 case EXEC_SELECT_TYPE:
10672 case EXEC_SELECT_RANK:
10673 case EXEC_FORALL:
10674 case EXEC_DO:
10675 case EXEC_DO_WHILE:
10676 case EXEC_DO_CONCURRENT:
10677 case EXEC_CRITICAL:
10678 case EXEC_READ:
10679 case EXEC_WRITE:
10680 case EXEC_IOLENGTH:
10681 case EXEC_WAIT:
10682 break;
10683
10684 case EXEC_OMP_ATOMIC:
10685 case EXEC_OACC_ATOMIC:
10686 {
10687 gfc_omp_atomic_op aop
10688 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10689
10690 /* Verify this before calling gfc_resolve_code, which might
10691 change it. */
10692 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10693 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10694 && b->next->next == NULL)
10695 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10696 && b->next->next != NULL
10697 && b->next->next->op == EXEC_ASSIGN
10698 && b->next->next->next == NULL));
10699 }
10700 break;
10701
10702 case EXEC_OACC_PARALLEL_LOOP:
10703 case EXEC_OACC_PARALLEL:
10704 case EXEC_OACC_KERNELS_LOOP:
10705 case EXEC_OACC_KERNELS:
10706 case EXEC_OACC_SERIAL_LOOP:
10707 case EXEC_OACC_SERIAL:
10708 case EXEC_OACC_DATA:
10709 case EXEC_OACC_HOST_DATA:
10710 case EXEC_OACC_LOOP:
10711 case EXEC_OACC_UPDATE:
10712 case EXEC_OACC_WAIT:
10713 case EXEC_OACC_CACHE:
10714 case EXEC_OACC_ENTER_DATA:
10715 case EXEC_OACC_EXIT_DATA:
10716 case EXEC_OACC_ROUTINE:
10717 case EXEC_OMP_CRITICAL:
10718 case EXEC_OMP_DISTRIBUTE:
10719 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10720 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10721 case EXEC_OMP_DISTRIBUTE_SIMD:
10722 case EXEC_OMP_DO:
10723 case EXEC_OMP_DO_SIMD:
10724 case EXEC_OMP_MASTER:
10725 case EXEC_OMP_ORDERED:
10726 case EXEC_OMP_PARALLEL:
10727 case EXEC_OMP_PARALLEL_DO:
10728 case EXEC_OMP_PARALLEL_DO_SIMD:
10729 case EXEC_OMP_PARALLEL_SECTIONS:
10730 case EXEC_OMP_PARALLEL_WORKSHARE:
10731 case EXEC_OMP_SECTIONS:
10732 case EXEC_OMP_SIMD:
10733 case EXEC_OMP_SINGLE:
10734 case EXEC_OMP_TARGET:
10735 case EXEC_OMP_TARGET_DATA:
10736 case EXEC_OMP_TARGET_ENTER_DATA:
10737 case EXEC_OMP_TARGET_EXIT_DATA:
10738 case EXEC_OMP_TARGET_PARALLEL:
10739 case EXEC_OMP_TARGET_PARALLEL_DO:
10740 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10741 case EXEC_OMP_TARGET_SIMD:
10742 case EXEC_OMP_TARGET_TEAMS:
10743 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10744 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10745 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10746 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10747 case EXEC_OMP_TARGET_UPDATE:
10748 case EXEC_OMP_TASK:
10749 case EXEC_OMP_TASKGROUP:
10750 case EXEC_OMP_TASKLOOP:
10751 case EXEC_OMP_TASKLOOP_SIMD:
10752 case EXEC_OMP_TASKWAIT:
10753 case EXEC_OMP_TASKYIELD:
10754 case EXEC_OMP_TEAMS:
10755 case EXEC_OMP_TEAMS_DISTRIBUTE:
10756 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10757 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10758 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10759 case EXEC_OMP_WORKSHARE:
10760 break;
10761
10762 default:
10763 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10764 }
10765
10766 gfc_resolve_code (b->next, ns);
10767 }
10768 }
10769
10770
10771 /* Does everything to resolve an ordinary assignment. Returns true
10772 if this is an interface assignment. */
10773 static bool
10774 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10775 {
10776 bool rval = false;
10777 gfc_expr *lhs;
10778 gfc_expr *rhs;
10779 int n;
10780 gfc_ref *ref;
10781 symbol_attribute attr;
10782
10783 if (gfc_extend_assign (code, ns))
10784 {
10785 gfc_expr** rhsptr;
10786
10787 if (code->op == EXEC_ASSIGN_CALL)
10788 {
10789 lhs = code->ext.actual->expr;
10790 rhsptr = &code->ext.actual->next->expr;
10791 }
10792 else
10793 {
10794 gfc_actual_arglist* args;
10795 gfc_typebound_proc* tbp;
10796
10797 gcc_assert (code->op == EXEC_COMPCALL);
10798
10799 args = code->expr1->value.compcall.actual;
10800 lhs = args->expr;
10801 rhsptr = &args->next->expr;
10802
10803 tbp = code->expr1->value.compcall.tbp;
10804 gcc_assert (!tbp->is_generic);
10805 }
10806
10807 /* Make a temporary rhs when there is a default initializer
10808 and rhs is the same symbol as the lhs. */
10809 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10810 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10811 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10812 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10813 *rhsptr = gfc_get_parentheses (*rhsptr);
10814
10815 return true;
10816 }
10817
10818 lhs = code->expr1;
10819 rhs = code->expr2;
10820
10821 if ((gfc_numeric_ts (&lhs->ts) || lhs->ts.type == BT_LOGICAL)
10822 && rhs->ts.type == BT_CHARACTER
10823 && (rhs->expr_type != EXPR_CONSTANT || !flag_dec_char_conversions))
10824 {
10825 /* Use of -fdec-char-conversions allows assignment of character data
10826 to non-character variables. This not permited for nonconstant
10827 strings. */
10828 gfc_error ("Cannot convert %s to %s at %L", gfc_typename (rhs),
10829 gfc_typename (lhs), &rhs->where);
10830 return false;
10831 }
10832
10833 /* Handle the case of a BOZ literal on the RHS. */
10834 if (rhs->ts.type == BT_BOZ)
10835 {
10836 if (gfc_invalid_boz ("BOZ literal constant at %L is neither a DATA "
10837 "statement value nor an actual argument of "
10838 "INT/REAL/DBLE/CMPLX intrinsic subprogram",
10839 &rhs->where))
10840 return false;
10841
10842 switch (lhs->ts.type)
10843 {
10844 case BT_INTEGER:
10845 if (!gfc_boz2int (rhs, lhs->ts.kind))
10846 return false;
10847 break;
10848 case BT_REAL:
10849 if (!gfc_boz2real (rhs, lhs->ts.kind))
10850 return false;
10851 break;
10852 default:
10853 gfc_error ("Invalid use of BOZ literal constant at %L", &rhs->where);
10854 return false;
10855 }
10856 }
10857
10858 if (lhs->ts.type == BT_CHARACTER && warn_character_truncation)
10859 {
10860 HOST_WIDE_INT llen = 0, rlen = 0;
10861 if (lhs->ts.u.cl != NULL
10862 && lhs->ts.u.cl->length != NULL
10863 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10864 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10865
10866 if (rhs->expr_type == EXPR_CONSTANT)
10867 rlen = rhs->value.character.length;
10868
10869 else if (rhs->ts.u.cl != NULL
10870 && rhs->ts.u.cl->length != NULL
10871 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10872 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10873
10874 if (rlen && llen && rlen > llen)
10875 gfc_warning_now (OPT_Wcharacter_truncation,
10876 "CHARACTER expression will be truncated "
10877 "in assignment (%ld/%ld) at %L",
10878 (long) llen, (long) rlen, &code->loc);
10879 }
10880
10881 /* Ensure that a vector index expression for the lvalue is evaluated
10882 to a temporary if the lvalue symbol is referenced in it. */
10883 if (lhs->rank)
10884 {
10885 for (ref = lhs->ref; ref; ref= ref->next)
10886 if (ref->type == REF_ARRAY)
10887 {
10888 for (n = 0; n < ref->u.ar.dimen; n++)
10889 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10890 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10891 ref->u.ar.start[n]))
10892 ref->u.ar.start[n]
10893 = gfc_get_parentheses (ref->u.ar.start[n]);
10894 }
10895 }
10896
10897 if (gfc_pure (NULL))
10898 {
10899 if (lhs->ts.type == BT_DERIVED
10900 && lhs->expr_type == EXPR_VARIABLE
10901 && lhs->ts.u.derived->attr.pointer_comp
10902 && rhs->expr_type == EXPR_VARIABLE
10903 && (gfc_impure_variable (rhs->symtree->n.sym)
10904 || gfc_is_coindexed (rhs)))
10905 {
10906 /* F2008, C1283. */
10907 if (gfc_is_coindexed (rhs))
10908 gfc_error ("Coindexed expression at %L is assigned to "
10909 "a derived type variable with a POINTER "
10910 "component in a PURE procedure",
10911 &rhs->where);
10912 else
10913 /* F2008, C1283 (4). */
10914 gfc_error ("In a pure subprogram an INTENT(IN) dummy argument "
10915 "shall not be used as the expr at %L of an intrinsic "
10916 "assignment statement in which the variable is of a "
10917 "derived type if the derived type has a pointer "
10918 "component at any level of component selection.",
10919 &rhs->where);
10920 return rval;
10921 }
10922
10923 /* Fortran 2008, C1283. */
10924 if (gfc_is_coindexed (lhs))
10925 {
10926 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10927 "procedure", &rhs->where);
10928 return rval;
10929 }
10930 }
10931
10932 if (gfc_implicit_pure (NULL))
10933 {
10934 if (lhs->expr_type == EXPR_VARIABLE
10935 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10936 && lhs->symtree->n.sym->ns != gfc_current_ns)
10937 gfc_unset_implicit_pure (NULL);
10938
10939 if (lhs->ts.type == BT_DERIVED
10940 && lhs->expr_type == EXPR_VARIABLE
10941 && lhs->ts.u.derived->attr.pointer_comp
10942 && rhs->expr_type == EXPR_VARIABLE
10943 && (gfc_impure_variable (rhs->symtree->n.sym)
10944 || gfc_is_coindexed (rhs)))
10945 gfc_unset_implicit_pure (NULL);
10946
10947 /* Fortran 2008, C1283. */
10948 if (gfc_is_coindexed (lhs))
10949 gfc_unset_implicit_pure (NULL);
10950 }
10951
10952 /* F2008, 7.2.1.2. */
10953 attr = gfc_expr_attr (lhs);
10954 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10955 {
10956 if (attr.codimension)
10957 {
10958 gfc_error ("Assignment to polymorphic coarray at %L is not "
10959 "permitted", &lhs->where);
10960 return false;
10961 }
10962 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10963 "polymorphic variable at %L", &lhs->where))
10964 return false;
10965 if (!flag_realloc_lhs)
10966 {
10967 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10968 "requires %<-frealloc-lhs%>", &lhs->where);
10969 return false;
10970 }
10971 }
10972 else if (lhs->ts.type == BT_CLASS)
10973 {
10974 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10975 "assignment at %L - check that there is a matching specific "
10976 "subroutine for '=' operator", &lhs->where);
10977 return false;
10978 }
10979
10980 bool lhs_coindexed = gfc_is_coindexed (lhs);
10981
10982 /* F2008, Section 7.2.1.2. */
10983 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10984 {
10985 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10986 "component in assignment at %L", &lhs->where);
10987 return false;
10988 }
10989
10990 /* Assign the 'data' of a class object to a derived type. */
10991 if (lhs->ts.type == BT_DERIVED
10992 && rhs->ts.type == BT_CLASS
10993 && rhs->expr_type != EXPR_ARRAY)
10994 gfc_add_data_component (rhs);
10995
10996 /* Make sure there is a vtable and, in particular, a _copy for the
10997 rhs type. */
10998 if (UNLIMITED_POLY (lhs) && lhs->rank && rhs->ts.type != BT_CLASS)
10999 gfc_find_vtab (&rhs->ts);
11000
11001 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
11002 && (lhs_coindexed
11003 || (code->expr2->expr_type == EXPR_FUNCTION
11004 && code->expr2->value.function.isym
11005 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
11006 && (code->expr1->rank == 0 || code->expr2->rank != 0)
11007 && !gfc_expr_attr (rhs).allocatable
11008 && !gfc_has_vector_subscript (rhs)));
11009
11010 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
11011
11012 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
11013 Additionally, insert this code when the RHS is a CAF as we then use the
11014 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
11015 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
11016 noncoindexed array and the RHS is a coindexed scalar, use the normal code
11017 path. */
11018 if (caf_convert_to_send)
11019 {
11020 if (code->expr2->expr_type == EXPR_FUNCTION
11021 && code->expr2->value.function.isym
11022 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
11023 remove_caf_get_intrinsic (code->expr2);
11024 code->op = EXEC_CALL;
11025 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
11026 code->resolved_sym = code->symtree->n.sym;
11027 code->resolved_sym->attr.flavor = FL_PROCEDURE;
11028 code->resolved_sym->attr.intrinsic = 1;
11029 code->resolved_sym->attr.subroutine = 1;
11030 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
11031 gfc_commit_symbol (code->resolved_sym);
11032 code->ext.actual = gfc_get_actual_arglist ();
11033 code->ext.actual->expr = lhs;
11034 code->ext.actual->next = gfc_get_actual_arglist ();
11035 code->ext.actual->next->expr = rhs;
11036 code->expr1 = NULL;
11037 code->expr2 = NULL;
11038 }
11039
11040 return false;
11041 }
11042
11043
11044 /* Add a component reference onto an expression. */
11045
11046 static void
11047 add_comp_ref (gfc_expr *e, gfc_component *c)
11048 {
11049 gfc_ref **ref;
11050 ref = &(e->ref);
11051 while (*ref)
11052 ref = &((*ref)->next);
11053 *ref = gfc_get_ref ();
11054 (*ref)->type = REF_COMPONENT;
11055 (*ref)->u.c.sym = e->ts.u.derived;
11056 (*ref)->u.c.component = c;
11057 e->ts = c->ts;
11058
11059 /* Add a full array ref, as necessary. */
11060 if (c->as)
11061 {
11062 gfc_add_full_array_ref (e, c->as);
11063 e->rank = c->as->rank;
11064 }
11065 }
11066
11067
11068 /* Build an assignment. Keep the argument 'op' for future use, so that
11069 pointer assignments can be made. */
11070
11071 static gfc_code *
11072 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
11073 gfc_component *comp1, gfc_component *comp2, locus loc)
11074 {
11075 gfc_code *this_code;
11076
11077 this_code = gfc_get_code (op);
11078 this_code->next = NULL;
11079 this_code->expr1 = gfc_copy_expr (expr1);
11080 this_code->expr2 = gfc_copy_expr (expr2);
11081 this_code->loc = loc;
11082 if (comp1 && comp2)
11083 {
11084 add_comp_ref (this_code->expr1, comp1);
11085 add_comp_ref (this_code->expr2, comp2);
11086 }
11087
11088 return this_code;
11089 }
11090
11091
11092 /* Makes a temporary variable expression based on the characteristics of
11093 a given variable expression. */
11094
11095 static gfc_expr*
11096 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
11097 {
11098 static int serial = 0;
11099 char name[GFC_MAX_SYMBOL_LEN];
11100 gfc_symtree *tmp;
11101 gfc_array_spec *as;
11102 gfc_array_ref *aref;
11103 gfc_ref *ref;
11104
11105 sprintf (name, GFC_PREFIX("DA%d"), serial++);
11106 gfc_get_sym_tree (name, ns, &tmp, false);
11107 gfc_add_type (tmp->n.sym, &e->ts, NULL);
11108
11109 if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
11110 tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
11111 NULL,
11112 e->value.character.length);
11113
11114 as = NULL;
11115 ref = NULL;
11116 aref = NULL;
11117
11118 /* Obtain the arrayspec for the temporary. */
11119 if (e->rank && e->expr_type != EXPR_ARRAY
11120 && e->expr_type != EXPR_FUNCTION
11121 && e->expr_type != EXPR_OP)
11122 {
11123 aref = gfc_find_array_ref (e);
11124 if (e->expr_type == EXPR_VARIABLE
11125 && e->symtree->n.sym->as == aref->as)
11126 as = aref->as;
11127 else
11128 {
11129 for (ref = e->ref; ref; ref = ref->next)
11130 if (ref->type == REF_COMPONENT
11131 && ref->u.c.component->as == aref->as)
11132 {
11133 as = aref->as;
11134 break;
11135 }
11136 }
11137 }
11138
11139 /* Add the attributes and the arrayspec to the temporary. */
11140 tmp->n.sym->attr = gfc_expr_attr (e);
11141 tmp->n.sym->attr.function = 0;
11142 tmp->n.sym->attr.result = 0;
11143 tmp->n.sym->attr.flavor = FL_VARIABLE;
11144 tmp->n.sym->attr.dummy = 0;
11145 tmp->n.sym->attr.intent = INTENT_UNKNOWN;
11146
11147 if (as)
11148 {
11149 tmp->n.sym->as = gfc_copy_array_spec (as);
11150 if (!ref)
11151 ref = e->ref;
11152 if (as->type == AS_DEFERRED)
11153 tmp->n.sym->attr.allocatable = 1;
11154 }
11155 else if (e->rank && (e->expr_type == EXPR_ARRAY
11156 || e->expr_type == EXPR_FUNCTION
11157 || e->expr_type == EXPR_OP))
11158 {
11159 tmp->n.sym->as = gfc_get_array_spec ();
11160 tmp->n.sym->as->type = AS_DEFERRED;
11161 tmp->n.sym->as->rank = e->rank;
11162 tmp->n.sym->attr.allocatable = 1;
11163 tmp->n.sym->attr.dimension = 1;
11164 }
11165 else
11166 tmp->n.sym->attr.dimension = 0;
11167
11168 gfc_set_sym_referenced (tmp->n.sym);
11169 gfc_commit_symbol (tmp->n.sym);
11170 e = gfc_lval_expr_from_sym (tmp->n.sym);
11171
11172 /* Should the lhs be a section, use its array ref for the
11173 temporary expression. */
11174 if (aref && aref->type != AR_FULL)
11175 {
11176 gfc_free_ref_list (e->ref);
11177 e->ref = gfc_copy_ref (ref);
11178 }
11179 return e;
11180 }
11181
11182
11183 /* Add one line of code to the code chain, making sure that 'head' and
11184 'tail' are appropriately updated. */
11185
11186 static void
11187 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
11188 {
11189 gcc_assert (this_code);
11190 if (*head == NULL)
11191 *head = *tail = *this_code;
11192 else
11193 *tail = gfc_append_code (*tail, *this_code);
11194 *this_code = NULL;
11195 }
11196
11197
11198 /* Counts the potential number of part array references that would
11199 result from resolution of typebound defined assignments. */
11200
11201 static int
11202 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
11203 {
11204 gfc_component *c;
11205 int c_depth = 0, t_depth;
11206
11207 for (c= derived->components; c; c = c->next)
11208 {
11209 if ((!gfc_bt_struct (c->ts.type)
11210 || c->attr.pointer
11211 || c->attr.allocatable
11212 || c->attr.proc_pointer_comp
11213 || c->attr.class_pointer
11214 || c->attr.proc_pointer)
11215 && !c->attr.defined_assign_comp)
11216 continue;
11217
11218 if (c->as && c_depth == 0)
11219 c_depth = 1;
11220
11221 if (c->ts.u.derived->attr.defined_assign_comp)
11222 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
11223 c->as ? 1 : 0);
11224 else
11225 t_depth = 0;
11226
11227 c_depth = t_depth > c_depth ? t_depth : c_depth;
11228 }
11229 return depth + c_depth;
11230 }
11231
11232
11233 /* Implement 7.2.1.3 of the F08 standard:
11234 "An intrinsic assignment where the variable is of derived type is
11235 performed as if each component of the variable were assigned from the
11236 corresponding component of expr using pointer assignment (7.2.2) for
11237 each pointer component, defined assignment for each nonpointer
11238 nonallocatable component of a type that has a type-bound defined
11239 assignment consistent with the component, intrinsic assignment for
11240 each other nonpointer nonallocatable component, ..."
11241
11242 The pointer assignments are taken care of by the intrinsic
11243 assignment of the structure itself. This function recursively adds
11244 defined assignments where required. The recursion is accomplished
11245 by calling gfc_resolve_code.
11246
11247 When the lhs in a defined assignment has intent INOUT, we need a
11248 temporary for the lhs. In pseudo-code:
11249
11250 ! Only call function lhs once.
11251 if (lhs is not a constant or an variable)
11252 temp_x = expr2
11253 expr2 => temp_x
11254 ! Do the intrinsic assignment
11255 expr1 = expr2
11256 ! Now do the defined assignments
11257 do over components with typebound defined assignment [%cmp]
11258 #if one component's assignment procedure is INOUT
11259 t1 = expr1
11260 #if expr2 non-variable
11261 temp_x = expr2
11262 expr2 => temp_x
11263 # endif
11264 expr1 = expr2
11265 # for each cmp
11266 t1%cmp {defined=} expr2%cmp
11267 expr1%cmp = t1%cmp
11268 #else
11269 expr1 = expr2
11270
11271 # for each cmp
11272 expr1%cmp {defined=} expr2%cmp
11273 #endif
11274 */
11275
11276 /* The temporary assignments have to be put on top of the additional
11277 code to avoid the result being changed by the intrinsic assignment.
11278 */
11279 static int component_assignment_level = 0;
11280 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
11281
11282 static void
11283 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
11284 {
11285 gfc_component *comp1, *comp2;
11286 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
11287 gfc_expr *t1;
11288 int error_count, depth;
11289
11290 gfc_get_errors (NULL, &error_count);
11291
11292 /* Filter out continuing processing after an error. */
11293 if (error_count
11294 || (*code)->expr1->ts.type != BT_DERIVED
11295 || (*code)->expr2->ts.type != BT_DERIVED)
11296 return;
11297
11298 /* TODO: Handle more than one part array reference in assignments. */
11299 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
11300 (*code)->expr1->rank ? 1 : 0);
11301 if (depth > 1)
11302 {
11303 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
11304 "done because multiple part array references would "
11305 "occur in intermediate expressions.", &(*code)->loc);
11306 return;
11307 }
11308
11309 component_assignment_level++;
11310
11311 /* Create a temporary so that functions get called only once. */
11312 if ((*code)->expr2->expr_type != EXPR_VARIABLE
11313 && (*code)->expr2->expr_type != EXPR_CONSTANT)
11314 {
11315 gfc_expr *tmp_expr;
11316
11317 /* Assign the rhs to the temporary. */
11318 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11319 this_code = build_assignment (EXEC_ASSIGN,
11320 tmp_expr, (*code)->expr2,
11321 NULL, NULL, (*code)->loc);
11322 /* Add the code and substitute the rhs expression. */
11323 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
11324 gfc_free_expr ((*code)->expr2);
11325 (*code)->expr2 = tmp_expr;
11326 }
11327
11328 /* Do the intrinsic assignment. This is not needed if the lhs is one
11329 of the temporaries generated here, since the intrinsic assignment
11330 to the final result already does this. */
11331 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
11332 {
11333 this_code = build_assignment (EXEC_ASSIGN,
11334 (*code)->expr1, (*code)->expr2,
11335 NULL, NULL, (*code)->loc);
11336 add_code_to_chain (&this_code, &head, &tail);
11337 }
11338
11339 comp1 = (*code)->expr1->ts.u.derived->components;
11340 comp2 = (*code)->expr2->ts.u.derived->components;
11341
11342 t1 = NULL;
11343 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
11344 {
11345 bool inout = false;
11346
11347 /* The intrinsic assignment does the right thing for pointers
11348 of all kinds and allocatable components. */
11349 if (!gfc_bt_struct (comp1->ts.type)
11350 || comp1->attr.pointer
11351 || comp1->attr.allocatable
11352 || comp1->attr.proc_pointer_comp
11353 || comp1->attr.class_pointer
11354 || comp1->attr.proc_pointer)
11355 continue;
11356
11357 /* Make an assigment for this component. */
11358 this_code = build_assignment (EXEC_ASSIGN,
11359 (*code)->expr1, (*code)->expr2,
11360 comp1, comp2, (*code)->loc);
11361
11362 /* Convert the assignment if there is a defined assignment for
11363 this type. Otherwise, using the call from gfc_resolve_code,
11364 recurse into its components. */
11365 gfc_resolve_code (this_code, ns);
11366
11367 if (this_code->op == EXEC_ASSIGN_CALL)
11368 {
11369 gfc_formal_arglist *dummy_args;
11370 gfc_symbol *rsym;
11371 /* Check that there is a typebound defined assignment. If not,
11372 then this must be a module defined assignment. We cannot
11373 use the defined_assign_comp attribute here because it must
11374 be this derived type that has the defined assignment and not
11375 a parent type. */
11376 if (!(comp1->ts.u.derived->f2k_derived
11377 && comp1->ts.u.derived->f2k_derived
11378 ->tb_op[INTRINSIC_ASSIGN]))
11379 {
11380 gfc_free_statements (this_code);
11381 this_code = NULL;
11382 continue;
11383 }
11384
11385 /* If the first argument of the subroutine has intent INOUT
11386 a temporary must be generated and used instead. */
11387 rsym = this_code->resolved_sym;
11388 dummy_args = gfc_sym_get_dummy_args (rsym);
11389 if (dummy_args
11390 && dummy_args->sym->attr.intent == INTENT_INOUT)
11391 {
11392 gfc_code *temp_code;
11393 inout = true;
11394
11395 /* Build the temporary required for the assignment and put
11396 it at the head of the generated code. */
11397 if (!t1)
11398 {
11399 t1 = get_temp_from_expr ((*code)->expr1, ns);
11400 temp_code = build_assignment (EXEC_ASSIGN,
11401 t1, (*code)->expr1,
11402 NULL, NULL, (*code)->loc);
11403
11404 /* For allocatable LHS, check whether it is allocated. Note
11405 that allocatable components with defined assignment are
11406 not yet support. See PR 57696. */
11407 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
11408 {
11409 gfc_code *block;
11410 gfc_expr *e =
11411 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11412 block = gfc_get_code (EXEC_IF);
11413 block->block = gfc_get_code (EXEC_IF);
11414 block->block->expr1
11415 = gfc_build_intrinsic_call (ns,
11416 GFC_ISYM_ALLOCATED, "allocated",
11417 (*code)->loc, 1, e);
11418 block->block->next = temp_code;
11419 temp_code = block;
11420 }
11421 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
11422 }
11423
11424 /* Replace the first actual arg with the component of the
11425 temporary. */
11426 gfc_free_expr (this_code->ext.actual->expr);
11427 this_code->ext.actual->expr = gfc_copy_expr (t1);
11428 add_comp_ref (this_code->ext.actual->expr, comp1);
11429
11430 /* If the LHS variable is allocatable and wasn't allocated and
11431 the temporary is allocatable, pointer assign the address of
11432 the freshly allocated LHS to the temporary. */
11433 if ((*code)->expr1->symtree->n.sym->attr.allocatable
11434 && gfc_expr_attr ((*code)->expr1).allocatable)
11435 {
11436 gfc_code *block;
11437 gfc_expr *cond;
11438
11439 cond = gfc_get_expr ();
11440 cond->ts.type = BT_LOGICAL;
11441 cond->ts.kind = gfc_default_logical_kind;
11442 cond->expr_type = EXPR_OP;
11443 cond->where = (*code)->loc;
11444 cond->value.op.op = INTRINSIC_NOT;
11445 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
11446 GFC_ISYM_ALLOCATED, "allocated",
11447 (*code)->loc, 1, gfc_copy_expr (t1));
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, (*code)->expr1,
11453 NULL, NULL, (*code)->loc);
11454 add_code_to_chain (&block, &head, &tail);
11455 }
11456 }
11457 }
11458 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
11459 {
11460 /* Don't add intrinsic assignments since they are already
11461 effected by the intrinsic assignment of the structure. */
11462 gfc_free_statements (this_code);
11463 this_code = NULL;
11464 continue;
11465 }
11466
11467 add_code_to_chain (&this_code, &head, &tail);
11468
11469 if (t1 && inout)
11470 {
11471 /* Transfer the value to the final result. */
11472 this_code = build_assignment (EXEC_ASSIGN,
11473 (*code)->expr1, t1,
11474 comp1, comp2, (*code)->loc);
11475 add_code_to_chain (&this_code, &head, &tail);
11476 }
11477 }
11478
11479 /* Put the temporary assignments at the top of the generated code. */
11480 if (tmp_head && component_assignment_level == 1)
11481 {
11482 gfc_append_code (tmp_head, head);
11483 head = tmp_head;
11484 tmp_head = tmp_tail = NULL;
11485 }
11486
11487 // If we did a pointer assignment - thus, we need to ensure that the LHS is
11488 // not accidentally deallocated. Hence, nullify t1.
11489 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
11490 && gfc_expr_attr ((*code)->expr1).allocatable)
11491 {
11492 gfc_code *block;
11493 gfc_expr *cond;
11494 gfc_expr *e;
11495
11496 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11497 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
11498 (*code)->loc, 2, gfc_copy_expr (t1), e);
11499 block = gfc_get_code (EXEC_IF);
11500 block->block = gfc_get_code (EXEC_IF);
11501 block->block->expr1 = cond;
11502 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11503 t1, gfc_get_null_expr (&(*code)->loc),
11504 NULL, NULL, (*code)->loc);
11505 gfc_append_code (tail, block);
11506 tail = block;
11507 }
11508
11509 /* Now attach the remaining code chain to the input code. Step on
11510 to the end of the new code since resolution is complete. */
11511 gcc_assert ((*code)->op == EXEC_ASSIGN);
11512 tail->next = (*code)->next;
11513 /* Overwrite 'code' because this would place the intrinsic assignment
11514 before the temporary for the lhs is created. */
11515 gfc_free_expr ((*code)->expr1);
11516 gfc_free_expr ((*code)->expr2);
11517 **code = *head;
11518 if (head != tail)
11519 free (head);
11520 *code = tail;
11521
11522 component_assignment_level--;
11523 }
11524
11525
11526 /* F2008: Pointer function assignments are of the form:
11527 ptr_fcn (args) = expr
11528 This function breaks these assignments into two statements:
11529 temporary_pointer => ptr_fcn(args)
11530 temporary_pointer = expr */
11531
11532 static bool
11533 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
11534 {
11535 gfc_expr *tmp_ptr_expr;
11536 gfc_code *this_code;
11537 gfc_component *comp;
11538 gfc_symbol *s;
11539
11540 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
11541 return false;
11542
11543 /* Even if standard does not support this feature, continue to build
11544 the two statements to avoid upsetting frontend_passes.c. */
11545 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
11546 "%L", &(*code)->loc);
11547
11548 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
11549
11550 if (comp)
11551 s = comp->ts.interface;
11552 else
11553 s = (*code)->expr1->symtree->n.sym;
11554
11555 if (s == NULL || !s->result->attr.pointer)
11556 {
11557 gfc_error ("The function result on the lhs of the assignment at "
11558 "%L must have the pointer attribute.",
11559 &(*code)->expr1->where);
11560 (*code)->op = EXEC_NOP;
11561 return false;
11562 }
11563
11564 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
11565
11566 /* get_temp_from_expression is set up for ordinary assignments. To that
11567 end, where array bounds are not known, arrays are made allocatable.
11568 Change the temporary to a pointer here. */
11569 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
11570 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
11571 tmp_ptr_expr->where = (*code)->loc;
11572
11573 this_code = build_assignment (EXEC_ASSIGN,
11574 tmp_ptr_expr, (*code)->expr2,
11575 NULL, NULL, (*code)->loc);
11576 this_code->next = (*code)->next;
11577 (*code)->next = this_code;
11578 (*code)->op = EXEC_POINTER_ASSIGN;
11579 (*code)->expr2 = (*code)->expr1;
11580 (*code)->expr1 = tmp_ptr_expr;
11581
11582 return true;
11583 }
11584
11585
11586 /* Deferred character length assignments from an operator expression
11587 require a temporary because the character length of the lhs can
11588 change in the course of the assignment. */
11589
11590 static bool
11591 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
11592 {
11593 gfc_expr *tmp_expr;
11594 gfc_code *this_code;
11595
11596 if (!((*code)->expr1->ts.type == BT_CHARACTER
11597 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
11598 && (*code)->expr2->expr_type == EXPR_OP))
11599 return false;
11600
11601 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
11602 return false;
11603
11604 if (gfc_expr_attr ((*code)->expr1).pointer)
11605 return false;
11606
11607 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11608 tmp_expr->where = (*code)->loc;
11609
11610 /* A new charlen is required to ensure that the variable string
11611 length is different to that of the original lhs. */
11612 tmp_expr->ts.u.cl = gfc_get_charlen();
11613 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
11614 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
11615 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
11616
11617 tmp_expr->symtree->n.sym->ts.deferred = 1;
11618
11619 this_code = build_assignment (EXEC_ASSIGN,
11620 (*code)->expr1,
11621 gfc_copy_expr (tmp_expr),
11622 NULL, NULL, (*code)->loc);
11623
11624 (*code)->expr1 = tmp_expr;
11625
11626 this_code->next = (*code)->next;
11627 (*code)->next = this_code;
11628
11629 return true;
11630 }
11631
11632
11633 /* Given a block of code, recursively resolve everything pointed to by this
11634 code block. */
11635
11636 void
11637 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
11638 {
11639 int omp_workshare_save;
11640 int forall_save, do_concurrent_save;
11641 code_stack frame;
11642 bool t;
11643
11644 frame.prev = cs_base;
11645 frame.head = code;
11646 cs_base = &frame;
11647
11648 find_reachable_labels (code);
11649
11650 for (; code; code = code->next)
11651 {
11652 frame.current = code;
11653 forall_save = forall_flag;
11654 do_concurrent_save = gfc_do_concurrent_flag;
11655
11656 if (code->op == EXEC_FORALL)
11657 {
11658 forall_flag = 1;
11659 gfc_resolve_forall (code, ns, forall_save);
11660 forall_flag = 2;
11661 }
11662 else if (code->block)
11663 {
11664 omp_workshare_save = -1;
11665 switch (code->op)
11666 {
11667 case EXEC_OACC_PARALLEL_LOOP:
11668 case EXEC_OACC_PARALLEL:
11669 case EXEC_OACC_KERNELS_LOOP:
11670 case EXEC_OACC_KERNELS:
11671 case EXEC_OACC_SERIAL_LOOP:
11672 case EXEC_OACC_SERIAL:
11673 case EXEC_OACC_DATA:
11674 case EXEC_OACC_HOST_DATA:
11675 case EXEC_OACC_LOOP:
11676 gfc_resolve_oacc_blocks (code, ns);
11677 break;
11678 case EXEC_OMP_PARALLEL_WORKSHARE:
11679 omp_workshare_save = omp_workshare_flag;
11680 omp_workshare_flag = 1;
11681 gfc_resolve_omp_parallel_blocks (code, ns);
11682 break;
11683 case EXEC_OMP_PARALLEL:
11684 case EXEC_OMP_PARALLEL_DO:
11685 case EXEC_OMP_PARALLEL_DO_SIMD:
11686 case EXEC_OMP_PARALLEL_SECTIONS:
11687 case EXEC_OMP_TARGET_PARALLEL:
11688 case EXEC_OMP_TARGET_PARALLEL_DO:
11689 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11690 case EXEC_OMP_TARGET_TEAMS:
11691 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11692 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11693 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11694 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11695 case EXEC_OMP_TASK:
11696 case EXEC_OMP_TASKLOOP:
11697 case EXEC_OMP_TASKLOOP_SIMD:
11698 case EXEC_OMP_TEAMS:
11699 case EXEC_OMP_TEAMS_DISTRIBUTE:
11700 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11701 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11702 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11703 omp_workshare_save = omp_workshare_flag;
11704 omp_workshare_flag = 0;
11705 gfc_resolve_omp_parallel_blocks (code, ns);
11706 break;
11707 case EXEC_OMP_DISTRIBUTE:
11708 case EXEC_OMP_DISTRIBUTE_SIMD:
11709 case EXEC_OMP_DO:
11710 case EXEC_OMP_DO_SIMD:
11711 case EXEC_OMP_SIMD:
11712 case EXEC_OMP_TARGET_SIMD:
11713 gfc_resolve_omp_do_blocks (code, ns);
11714 break;
11715 case EXEC_SELECT_TYPE:
11716 /* Blocks are handled in resolve_select_type because we have
11717 to transform the SELECT TYPE into ASSOCIATE first. */
11718 break;
11719 case EXEC_DO_CONCURRENT:
11720 gfc_do_concurrent_flag = 1;
11721 gfc_resolve_blocks (code->block, ns);
11722 gfc_do_concurrent_flag = 2;
11723 break;
11724 case EXEC_OMP_WORKSHARE:
11725 omp_workshare_save = omp_workshare_flag;
11726 omp_workshare_flag = 1;
11727 /* FALL THROUGH */
11728 default:
11729 gfc_resolve_blocks (code->block, ns);
11730 break;
11731 }
11732
11733 if (omp_workshare_save != -1)
11734 omp_workshare_flag = omp_workshare_save;
11735 }
11736 start:
11737 t = true;
11738 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11739 t = gfc_resolve_expr (code->expr1);
11740 forall_flag = forall_save;
11741 gfc_do_concurrent_flag = do_concurrent_save;
11742
11743 if (!gfc_resolve_expr (code->expr2))
11744 t = false;
11745
11746 if (code->op == EXEC_ALLOCATE
11747 && !gfc_resolve_expr (code->expr3))
11748 t = false;
11749
11750 switch (code->op)
11751 {
11752 case EXEC_NOP:
11753 case EXEC_END_BLOCK:
11754 case EXEC_END_NESTED_BLOCK:
11755 case EXEC_CYCLE:
11756 case EXEC_PAUSE:
11757 case EXEC_STOP:
11758 case EXEC_ERROR_STOP:
11759 case EXEC_EXIT:
11760 case EXEC_CONTINUE:
11761 case EXEC_DT_END:
11762 case EXEC_ASSIGN_CALL:
11763 break;
11764
11765 case EXEC_CRITICAL:
11766 resolve_critical (code);
11767 break;
11768
11769 case EXEC_SYNC_ALL:
11770 case EXEC_SYNC_IMAGES:
11771 case EXEC_SYNC_MEMORY:
11772 resolve_sync (code);
11773 break;
11774
11775 case EXEC_LOCK:
11776 case EXEC_UNLOCK:
11777 case EXEC_EVENT_POST:
11778 case EXEC_EVENT_WAIT:
11779 resolve_lock_unlock_event (code);
11780 break;
11781
11782 case EXEC_FAIL_IMAGE:
11783 case EXEC_FORM_TEAM:
11784 case EXEC_CHANGE_TEAM:
11785 case EXEC_END_TEAM:
11786 case EXEC_SYNC_TEAM:
11787 break;
11788
11789 case EXEC_ENTRY:
11790 /* Keep track of which entry we are up to. */
11791 current_entry_id = code->ext.entry->id;
11792 break;
11793
11794 case EXEC_WHERE:
11795 resolve_where (code, NULL);
11796 break;
11797
11798 case EXEC_GOTO:
11799 if (code->expr1 != NULL)
11800 {
11801 if (code->expr1->ts.type != BT_INTEGER)
11802 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11803 "INTEGER variable", &code->expr1->where);
11804 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11805 gfc_error ("Variable %qs has not been assigned a target "
11806 "label at %L", code->expr1->symtree->n.sym->name,
11807 &code->expr1->where);
11808 }
11809 else
11810 resolve_branch (code->label1, code);
11811 break;
11812
11813 case EXEC_RETURN:
11814 if (code->expr1 != NULL
11815 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11816 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11817 "INTEGER return specifier", &code->expr1->where);
11818 break;
11819
11820 case EXEC_INIT_ASSIGN:
11821 case EXEC_END_PROCEDURE:
11822 break;
11823
11824 case EXEC_ASSIGN:
11825 if (!t)
11826 break;
11827
11828 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11829 the LHS. */
11830 if (code->expr1->expr_type == EXPR_FUNCTION
11831 && code->expr1->value.function.isym
11832 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11833 remove_caf_get_intrinsic (code->expr1);
11834
11835 /* If this is a pointer function in an lvalue variable context,
11836 the new code will have to be resolved afresh. This is also the
11837 case with an error, where the code is transformed into NOP to
11838 prevent ICEs downstream. */
11839 if (resolve_ptr_fcn_assign (&code, ns)
11840 || code->op == EXEC_NOP)
11841 goto start;
11842
11843 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11844 _("assignment")))
11845 break;
11846
11847 if (resolve_ordinary_assign (code, ns))
11848 {
11849 if (code->op == EXEC_COMPCALL)
11850 goto compcall;
11851 else
11852 goto call;
11853 }
11854
11855 /* Check for dependencies in deferred character length array
11856 assignments and generate a temporary, if necessary. */
11857 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11858 break;
11859
11860 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11861 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11862 && code->expr1->ts.u.derived
11863 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11864 generate_component_assignments (&code, ns);
11865
11866 break;
11867
11868 case EXEC_LABEL_ASSIGN:
11869 if (code->label1->defined == ST_LABEL_UNKNOWN)
11870 gfc_error ("Label %d referenced at %L is never defined",
11871 code->label1->value, &code->label1->where);
11872 if (t
11873 && (code->expr1->expr_type != EXPR_VARIABLE
11874 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11875 || code->expr1->symtree->n.sym->ts.kind
11876 != gfc_default_integer_kind
11877 || code->expr1->symtree->n.sym->as != NULL))
11878 gfc_error ("ASSIGN statement at %L requires a scalar "
11879 "default INTEGER variable", &code->expr1->where);
11880 break;
11881
11882 case EXEC_POINTER_ASSIGN:
11883 {
11884 gfc_expr* e;
11885
11886 if (!t)
11887 break;
11888
11889 /* This is both a variable definition and pointer assignment
11890 context, so check both of them. For rank remapping, a final
11891 array ref may be present on the LHS and fool gfc_expr_attr
11892 used in gfc_check_vardef_context. Remove it. */
11893 e = remove_last_array_ref (code->expr1);
11894 t = gfc_check_vardef_context (e, true, false, false,
11895 _("pointer assignment"));
11896 if (t)
11897 t = gfc_check_vardef_context (e, false, false, false,
11898 _("pointer assignment"));
11899 gfc_free_expr (e);
11900
11901 t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
11902
11903 if (!t)
11904 break;
11905
11906 /* Assigning a class object always is a regular assign. */
11907 if (code->expr2->ts.type == BT_CLASS
11908 && code->expr1->ts.type == BT_CLASS
11909 && !CLASS_DATA (code->expr2)->attr.dimension
11910 && !(gfc_expr_attr (code->expr1).proc_pointer
11911 && code->expr2->expr_type == EXPR_VARIABLE
11912 && code->expr2->symtree->n.sym->attr.flavor
11913 == FL_PROCEDURE))
11914 code->op = EXEC_ASSIGN;
11915 break;
11916 }
11917
11918 case EXEC_ARITHMETIC_IF:
11919 {
11920 gfc_expr *e = code->expr1;
11921
11922 gfc_resolve_expr (e);
11923 if (e->expr_type == EXPR_NULL)
11924 gfc_error ("Invalid NULL at %L", &e->where);
11925
11926 if (t && (e->rank > 0
11927 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11928 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11929 "REAL or INTEGER expression", &e->where);
11930
11931 resolve_branch (code->label1, code);
11932 resolve_branch (code->label2, code);
11933 resolve_branch (code->label3, code);
11934 }
11935 break;
11936
11937 case EXEC_IF:
11938 if (t && code->expr1 != NULL
11939 && (code->expr1->ts.type != BT_LOGICAL
11940 || code->expr1->rank != 0))
11941 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11942 &code->expr1->where);
11943 break;
11944
11945 case EXEC_CALL:
11946 call:
11947 resolve_call (code);
11948 break;
11949
11950 case EXEC_COMPCALL:
11951 compcall:
11952 resolve_typebound_subroutine (code);
11953 break;
11954
11955 case EXEC_CALL_PPC:
11956 resolve_ppc_call (code);
11957 break;
11958
11959 case EXEC_SELECT:
11960 /* Select is complicated. Also, a SELECT construct could be
11961 a transformed computed GOTO. */
11962 resolve_select (code, false);
11963 break;
11964
11965 case EXEC_SELECT_TYPE:
11966 resolve_select_type (code, ns);
11967 break;
11968
11969 case EXEC_SELECT_RANK:
11970 resolve_select_rank (code, ns);
11971 break;
11972
11973 case EXEC_BLOCK:
11974 resolve_block_construct (code);
11975 break;
11976
11977 case EXEC_DO:
11978 if (code->ext.iterator != NULL)
11979 {
11980 gfc_iterator *iter = code->ext.iterator;
11981 if (gfc_resolve_iterator (iter, true, false))
11982 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11983 true);
11984 }
11985 break;
11986
11987 case EXEC_DO_WHILE:
11988 if (code->expr1 == NULL)
11989 gfc_internal_error ("gfc_resolve_code(): No expression on "
11990 "DO WHILE");
11991 if (t
11992 && (code->expr1->rank != 0
11993 || code->expr1->ts.type != BT_LOGICAL))
11994 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11995 "a scalar LOGICAL expression", &code->expr1->where);
11996 break;
11997
11998 case EXEC_ALLOCATE:
11999 if (t)
12000 resolve_allocate_deallocate (code, "ALLOCATE");
12001
12002 break;
12003
12004 case EXEC_DEALLOCATE:
12005 if (t)
12006 resolve_allocate_deallocate (code, "DEALLOCATE");
12007
12008 break;
12009
12010 case EXEC_OPEN:
12011 if (!gfc_resolve_open (code->ext.open, &code->loc))
12012 break;
12013
12014 resolve_branch (code->ext.open->err, code);
12015 break;
12016
12017 case EXEC_CLOSE:
12018 if (!gfc_resolve_close (code->ext.close, &code->loc))
12019 break;
12020
12021 resolve_branch (code->ext.close->err, code);
12022 break;
12023
12024 case EXEC_BACKSPACE:
12025 case EXEC_ENDFILE:
12026 case EXEC_REWIND:
12027 case EXEC_FLUSH:
12028 if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
12029 break;
12030
12031 resolve_branch (code->ext.filepos->err, code);
12032 break;
12033
12034 case EXEC_INQUIRE:
12035 if (!gfc_resolve_inquire (code->ext.inquire))
12036 break;
12037
12038 resolve_branch (code->ext.inquire->err, code);
12039 break;
12040
12041 case EXEC_IOLENGTH:
12042 gcc_assert (code->ext.inquire != NULL);
12043 if (!gfc_resolve_inquire (code->ext.inquire))
12044 break;
12045
12046 resolve_branch (code->ext.inquire->err, code);
12047 break;
12048
12049 case EXEC_WAIT:
12050 if (!gfc_resolve_wait (code->ext.wait))
12051 break;
12052
12053 resolve_branch (code->ext.wait->err, code);
12054 resolve_branch (code->ext.wait->end, code);
12055 resolve_branch (code->ext.wait->eor, code);
12056 break;
12057
12058 case EXEC_READ:
12059 case EXEC_WRITE:
12060 if (!gfc_resolve_dt (code, code->ext.dt, &code->loc))
12061 break;
12062
12063 resolve_branch (code->ext.dt->err, code);
12064 resolve_branch (code->ext.dt->end, code);
12065 resolve_branch (code->ext.dt->eor, code);
12066 break;
12067
12068 case EXEC_TRANSFER:
12069 resolve_transfer (code);
12070 break;
12071
12072 case EXEC_DO_CONCURRENT:
12073 case EXEC_FORALL:
12074 resolve_forall_iterators (code->ext.forall_iterator);
12075
12076 if (code->expr1 != NULL
12077 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
12078 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
12079 "expression", &code->expr1->where);
12080 break;
12081
12082 case EXEC_OACC_PARALLEL_LOOP:
12083 case EXEC_OACC_PARALLEL:
12084 case EXEC_OACC_KERNELS_LOOP:
12085 case EXEC_OACC_KERNELS:
12086 case EXEC_OACC_SERIAL_LOOP:
12087 case EXEC_OACC_SERIAL:
12088 case EXEC_OACC_DATA:
12089 case EXEC_OACC_HOST_DATA:
12090 case EXEC_OACC_LOOP:
12091 case EXEC_OACC_UPDATE:
12092 case EXEC_OACC_WAIT:
12093 case EXEC_OACC_CACHE:
12094 case EXEC_OACC_ENTER_DATA:
12095 case EXEC_OACC_EXIT_DATA:
12096 case EXEC_OACC_ATOMIC:
12097 case EXEC_OACC_DECLARE:
12098 gfc_resolve_oacc_directive (code, ns);
12099 break;
12100
12101 case EXEC_OMP_ATOMIC:
12102 case EXEC_OMP_BARRIER:
12103 case EXEC_OMP_CANCEL:
12104 case EXEC_OMP_CANCELLATION_POINT:
12105 case EXEC_OMP_CRITICAL:
12106 case EXEC_OMP_FLUSH:
12107 case EXEC_OMP_DISTRIBUTE:
12108 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
12109 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
12110 case EXEC_OMP_DISTRIBUTE_SIMD:
12111 case EXEC_OMP_DO:
12112 case EXEC_OMP_DO_SIMD:
12113 case EXEC_OMP_MASTER:
12114 case EXEC_OMP_ORDERED:
12115 case EXEC_OMP_SECTIONS:
12116 case EXEC_OMP_SIMD:
12117 case EXEC_OMP_SINGLE:
12118 case EXEC_OMP_TARGET:
12119 case EXEC_OMP_TARGET_DATA:
12120 case EXEC_OMP_TARGET_ENTER_DATA:
12121 case EXEC_OMP_TARGET_EXIT_DATA:
12122 case EXEC_OMP_TARGET_PARALLEL:
12123 case EXEC_OMP_TARGET_PARALLEL_DO:
12124 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
12125 case EXEC_OMP_TARGET_SIMD:
12126 case EXEC_OMP_TARGET_TEAMS:
12127 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
12128 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
12129 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12130 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
12131 case EXEC_OMP_TARGET_UPDATE:
12132 case EXEC_OMP_TASK:
12133 case EXEC_OMP_TASKGROUP:
12134 case EXEC_OMP_TASKLOOP:
12135 case EXEC_OMP_TASKLOOP_SIMD:
12136 case EXEC_OMP_TASKWAIT:
12137 case EXEC_OMP_TASKYIELD:
12138 case EXEC_OMP_TEAMS:
12139 case EXEC_OMP_TEAMS_DISTRIBUTE:
12140 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
12141 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
12142 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
12143 case EXEC_OMP_WORKSHARE:
12144 gfc_resolve_omp_directive (code, ns);
12145 break;
12146
12147 case EXEC_OMP_PARALLEL:
12148 case EXEC_OMP_PARALLEL_DO:
12149 case EXEC_OMP_PARALLEL_DO_SIMD:
12150 case EXEC_OMP_PARALLEL_SECTIONS:
12151 case EXEC_OMP_PARALLEL_WORKSHARE:
12152 omp_workshare_save = omp_workshare_flag;
12153 omp_workshare_flag = 0;
12154 gfc_resolve_omp_directive (code, ns);
12155 omp_workshare_flag = omp_workshare_save;
12156 break;
12157
12158 default:
12159 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
12160 }
12161 }
12162
12163 cs_base = frame.prev;
12164 }
12165
12166
12167 /* Resolve initial values and make sure they are compatible with
12168 the variable. */
12169
12170 static void
12171 resolve_values (gfc_symbol *sym)
12172 {
12173 bool t;
12174
12175 if (sym->value == NULL)
12176 return;
12177
12178 if (sym->value->expr_type == EXPR_STRUCTURE)
12179 t= resolve_structure_cons (sym->value, 1);
12180 else
12181 t = gfc_resolve_expr (sym->value);
12182
12183 if (!t)
12184 return;
12185
12186 gfc_check_assign_symbol (sym, NULL, sym->value);
12187 }
12188
12189
12190 /* Verify any BIND(C) derived types in the namespace so we can report errors
12191 for them once, rather than for each variable declared of that type. */
12192
12193 static void
12194 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
12195 {
12196 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
12197 && derived_sym->attr.is_bind_c == 1)
12198 verify_bind_c_derived_type (derived_sym);
12199
12200 return;
12201 }
12202
12203
12204 /* Check the interfaces of DTIO procedures associated with derived
12205 type 'sym'. These procedures can either have typebound bindings or
12206 can appear in DTIO generic interfaces. */
12207
12208 static void
12209 gfc_verify_DTIO_procedures (gfc_symbol *sym)
12210 {
12211 if (!sym || sym->attr.flavor != FL_DERIVED)
12212 return;
12213
12214 gfc_check_dtio_interfaces (sym);
12215
12216 return;
12217 }
12218
12219 /* Verify that any binding labels used in a given namespace do not collide
12220 with the names or binding labels of any global symbols. Multiple INTERFACE
12221 for the same procedure are permitted. */
12222
12223 static void
12224 gfc_verify_binding_labels (gfc_symbol *sym)
12225 {
12226 gfc_gsymbol *gsym;
12227 const char *module;
12228
12229 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
12230 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
12231 return;
12232
12233 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
12234
12235 if (sym->module)
12236 module = sym->module;
12237 else if (sym->ns && sym->ns->proc_name
12238 && sym->ns->proc_name->attr.flavor == FL_MODULE)
12239 module = sym->ns->proc_name->name;
12240 else if (sym->ns && sym->ns->parent
12241 && sym->ns && sym->ns->parent->proc_name
12242 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12243 module = sym->ns->parent->proc_name->name;
12244 else
12245 module = NULL;
12246
12247 if (!gsym
12248 || (!gsym->defined
12249 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
12250 {
12251 if (!gsym)
12252 gsym = gfc_get_gsymbol (sym->binding_label, true);
12253 gsym->where = sym->declared_at;
12254 gsym->sym_name = sym->name;
12255 gsym->binding_label = sym->binding_label;
12256 gsym->ns = sym->ns;
12257 gsym->mod_name = module;
12258 if (sym->attr.function)
12259 gsym->type = GSYM_FUNCTION;
12260 else if (sym->attr.subroutine)
12261 gsym->type = GSYM_SUBROUTINE;
12262 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
12263 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
12264 return;
12265 }
12266
12267 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
12268 {
12269 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
12270 "identifier as entity at %L", sym->name,
12271 sym->binding_label, &sym->declared_at, &gsym->where);
12272 /* Clear the binding label to prevent checking multiple times. */
12273 sym->binding_label = NULL;
12274 return;
12275 }
12276
12277 if (sym->attr.flavor == FL_VARIABLE && module
12278 && (strcmp (module, gsym->mod_name) != 0
12279 || strcmp (sym->name, gsym->sym_name) != 0))
12280 {
12281 /* This can only happen if the variable is defined in a module - if it
12282 isn't the same module, reject it. */
12283 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
12284 "uses the same global identifier as entity at %L from module %qs",
12285 sym->name, module, sym->binding_label,
12286 &sym->declared_at, &gsym->where, gsym->mod_name);
12287 sym->binding_label = NULL;
12288 return;
12289 }
12290
12291 if ((sym->attr.function || sym->attr.subroutine)
12292 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
12293 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
12294 && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
12295 && (module != gsym->mod_name
12296 || strcmp (gsym->sym_name, sym->name) != 0
12297 || (module && strcmp (module, gsym->mod_name) != 0)))
12298 {
12299 /* Print an error if the procedure is defined multiple times; we have to
12300 exclude references to the same procedure via module association or
12301 multiple checks for the same procedure. */
12302 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
12303 "global identifier as entity at %L", sym->name,
12304 sym->binding_label, &sym->declared_at, &gsym->where);
12305 sym->binding_label = NULL;
12306 }
12307 }
12308
12309
12310 /* Resolve an index expression. */
12311
12312 static bool
12313 resolve_index_expr (gfc_expr *e)
12314 {
12315 if (!gfc_resolve_expr (e))
12316 return false;
12317
12318 if (!gfc_simplify_expr (e, 0))
12319 return false;
12320
12321 if (!gfc_specification_expr (e))
12322 return false;
12323
12324 return true;
12325 }
12326
12327
12328 /* Resolve a charlen structure. */
12329
12330 static bool
12331 resolve_charlen (gfc_charlen *cl)
12332 {
12333 int k;
12334 bool saved_specification_expr;
12335
12336 if (cl->resolved)
12337 return true;
12338
12339 cl->resolved = 1;
12340 saved_specification_expr = specification_expr;
12341 specification_expr = true;
12342
12343 if (cl->length_from_typespec)
12344 {
12345 if (!gfc_resolve_expr (cl->length))
12346 {
12347 specification_expr = saved_specification_expr;
12348 return false;
12349 }
12350
12351 if (!gfc_simplify_expr (cl->length, 0))
12352 {
12353 specification_expr = saved_specification_expr;
12354 return false;
12355 }
12356
12357 /* cl->length has been resolved. It should have an integer type. */
12358 if (cl->length->ts.type != BT_INTEGER || cl->length->rank != 0)
12359 {
12360 gfc_error ("Scalar INTEGER expression expected at %L",
12361 &cl->length->where);
12362 return false;
12363 }
12364 }
12365 else
12366 {
12367 if (!resolve_index_expr (cl->length))
12368 {
12369 specification_expr = saved_specification_expr;
12370 return false;
12371 }
12372 }
12373
12374 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
12375 a negative value, the length of character entities declared is zero. */
12376 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12377 && mpz_sgn (cl->length->value.integer) < 0)
12378 gfc_replace_expr (cl->length,
12379 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
12380
12381 /* Check that the character length is not too large. */
12382 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
12383 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
12384 && cl->length->ts.type == BT_INTEGER
12385 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
12386 {
12387 gfc_error ("String length at %L is too large", &cl->length->where);
12388 specification_expr = saved_specification_expr;
12389 return false;
12390 }
12391
12392 specification_expr = saved_specification_expr;
12393 return true;
12394 }
12395
12396
12397 /* Test for non-constant shape arrays. */
12398
12399 static bool
12400 is_non_constant_shape_array (gfc_symbol *sym)
12401 {
12402 gfc_expr *e;
12403 int i;
12404 bool not_constant;
12405
12406 not_constant = false;
12407 if (sym->as != NULL)
12408 {
12409 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
12410 has not been simplified; parameter array references. Do the
12411 simplification now. */
12412 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
12413 {
12414 if (i == GFC_MAX_DIMENSIONS)
12415 break;
12416
12417 e = sym->as->lower[i];
12418 if (e && (!resolve_index_expr(e)
12419 || !gfc_is_constant_expr (e)))
12420 not_constant = true;
12421 e = sym->as->upper[i];
12422 if (e && (!resolve_index_expr(e)
12423 || !gfc_is_constant_expr (e)))
12424 not_constant = true;
12425 }
12426 }
12427 return not_constant;
12428 }
12429
12430 /* Given a symbol and an initialization expression, add code to initialize
12431 the symbol to the function entry. */
12432 static void
12433 build_init_assign (gfc_symbol *sym, gfc_expr *init)
12434 {
12435 gfc_expr *lval;
12436 gfc_code *init_st;
12437 gfc_namespace *ns = sym->ns;
12438
12439 /* Search for the function namespace if this is a contained
12440 function without an explicit result. */
12441 if (sym->attr.function && sym == sym->result
12442 && sym->name != sym->ns->proc_name->name)
12443 {
12444 ns = ns->contained;
12445 for (;ns; ns = ns->sibling)
12446 if (strcmp (ns->proc_name->name, sym->name) == 0)
12447 break;
12448 }
12449
12450 if (ns == NULL)
12451 {
12452 gfc_free_expr (init);
12453 return;
12454 }
12455
12456 /* Build an l-value expression for the result. */
12457 lval = gfc_lval_expr_from_sym (sym);
12458
12459 /* Add the code at scope entry. */
12460 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
12461 init_st->next = ns->code;
12462 ns->code = init_st;
12463
12464 /* Assign the default initializer to the l-value. */
12465 init_st->loc = sym->declared_at;
12466 init_st->expr1 = lval;
12467 init_st->expr2 = init;
12468 }
12469
12470
12471 /* Whether or not we can generate a default initializer for a symbol. */
12472
12473 static bool
12474 can_generate_init (gfc_symbol *sym)
12475 {
12476 symbol_attribute *a;
12477 if (!sym)
12478 return false;
12479 a = &sym->attr;
12480
12481 /* These symbols should never have a default initialization. */
12482 return !(
12483 a->allocatable
12484 || a->external
12485 || a->pointer
12486 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
12487 && (CLASS_DATA (sym)->attr.class_pointer
12488 || CLASS_DATA (sym)->attr.proc_pointer))
12489 || a->in_equivalence
12490 || a->in_common
12491 || a->data
12492 || sym->module
12493 || a->cray_pointee
12494 || a->cray_pointer
12495 || sym->assoc
12496 || (!a->referenced && !a->result)
12497 || (a->dummy && a->intent != INTENT_OUT)
12498 || (a->function && sym != sym->result)
12499 );
12500 }
12501
12502
12503 /* Assign the default initializer to a derived type variable or result. */
12504
12505 static void
12506 apply_default_init (gfc_symbol *sym)
12507 {
12508 gfc_expr *init = NULL;
12509
12510 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12511 return;
12512
12513 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
12514 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12515
12516 if (init == NULL && sym->ts.type != BT_CLASS)
12517 return;
12518
12519 build_init_assign (sym, init);
12520 sym->attr.referenced = 1;
12521 }
12522
12523
12524 /* Build an initializer for a local. Returns null if the symbol should not have
12525 a default initialization. */
12526
12527 static gfc_expr *
12528 build_default_init_expr (gfc_symbol *sym)
12529 {
12530 /* These symbols should never have a default initialization. */
12531 if (sym->attr.allocatable
12532 || sym->attr.external
12533 || sym->attr.dummy
12534 || sym->attr.pointer
12535 || sym->attr.in_equivalence
12536 || sym->attr.in_common
12537 || sym->attr.data
12538 || sym->module
12539 || sym->attr.cray_pointee
12540 || sym->attr.cray_pointer
12541 || sym->assoc)
12542 return NULL;
12543
12544 /* Get the appropriate init expression. */
12545 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
12546 }
12547
12548 /* Add an initialization expression to a local variable. */
12549 static void
12550 apply_default_init_local (gfc_symbol *sym)
12551 {
12552 gfc_expr *init = NULL;
12553
12554 /* The symbol should be a variable or a function return value. */
12555 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12556 || (sym->attr.function && sym->result != sym))
12557 return;
12558
12559 /* Try to build the initializer expression. If we can't initialize
12560 this symbol, then init will be NULL. */
12561 init = build_default_init_expr (sym);
12562 if (init == NULL)
12563 return;
12564
12565 /* For saved variables, we don't want to add an initializer at function
12566 entry, so we just add a static initializer. Note that automatic variables
12567 are stack allocated even with -fno-automatic; we have also to exclude
12568 result variable, which are also nonstatic. */
12569 if (!sym->attr.automatic
12570 && (sym->attr.save || sym->ns->save_all
12571 || (flag_max_stack_var_size == 0 && !sym->attr.result
12572 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
12573 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
12574 {
12575 /* Don't clobber an existing initializer! */
12576 gcc_assert (sym->value == NULL);
12577 sym->value = init;
12578 return;
12579 }
12580
12581 build_init_assign (sym, init);
12582 }
12583
12584
12585 /* Resolution of common features of flavors variable and procedure. */
12586
12587 static bool
12588 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
12589 {
12590 gfc_array_spec *as;
12591
12592 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12593 as = CLASS_DATA (sym)->as;
12594 else
12595 as = sym->as;
12596
12597 /* Constraints on deferred shape variable. */
12598 if (as == NULL || as->type != AS_DEFERRED)
12599 {
12600 bool pointer, allocatable, dimension;
12601
12602 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12603 {
12604 pointer = CLASS_DATA (sym)->attr.class_pointer;
12605 allocatable = CLASS_DATA (sym)->attr.allocatable;
12606 dimension = CLASS_DATA (sym)->attr.dimension;
12607 }
12608 else
12609 {
12610 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
12611 allocatable = sym->attr.allocatable;
12612 dimension = sym->attr.dimension;
12613 }
12614
12615 if (allocatable)
12616 {
12617 if (dimension && as->type != AS_ASSUMED_RANK)
12618 {
12619 gfc_error ("Allocatable array %qs at %L must have a deferred "
12620 "shape or assumed rank", sym->name, &sym->declared_at);
12621 return false;
12622 }
12623 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
12624 "%qs at %L may not be ALLOCATABLE",
12625 sym->name, &sym->declared_at))
12626 return false;
12627 }
12628
12629 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
12630 {
12631 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
12632 "assumed rank", sym->name, &sym->declared_at);
12633 sym->error = 1;
12634 return false;
12635 }
12636 }
12637 else
12638 {
12639 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
12640 && sym->ts.type != BT_CLASS && !sym->assoc)
12641 {
12642 gfc_error ("Array %qs at %L cannot have a deferred shape",
12643 sym->name, &sym->declared_at);
12644 return false;
12645 }
12646 }
12647
12648 /* Constraints on polymorphic variables. */
12649 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
12650 {
12651 /* F03:C502. */
12652 if (sym->attr.class_ok
12653 && !sym->attr.select_type_temporary
12654 && !UNLIMITED_POLY (sym)
12655 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
12656 {
12657 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
12658 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
12659 &sym->declared_at);
12660 return false;
12661 }
12662
12663 /* F03:C509. */
12664 /* Assume that use associated symbols were checked in the module ns.
12665 Class-variables that are associate-names are also something special
12666 and excepted from the test. */
12667 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
12668 {
12669 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
12670 "or pointer", sym->name, &sym->declared_at);
12671 return false;
12672 }
12673 }
12674
12675 return true;
12676 }
12677
12678
12679 /* Additional checks for symbols with flavor variable and derived
12680 type. To be called from resolve_fl_variable. */
12681
12682 static bool
12683 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12684 {
12685 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12686
12687 /* Check to see if a derived type is blocked from being host
12688 associated by the presence of another class I symbol in the same
12689 namespace. 14.6.1.3 of the standard and the discussion on
12690 comp.lang.fortran. */
12691 if (sym->ns != sym->ts.u.derived->ns
12692 && !sym->ts.u.derived->attr.use_assoc
12693 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12694 {
12695 gfc_symbol *s;
12696 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12697 if (s && s->attr.generic)
12698 s = gfc_find_dt_in_generic (s);
12699 if (s && !gfc_fl_struct (s->attr.flavor))
12700 {
12701 gfc_error ("The type %qs cannot be host associated at %L "
12702 "because it is blocked by an incompatible object "
12703 "of the same name declared at %L",
12704 sym->ts.u.derived->name, &sym->declared_at,
12705 &s->declared_at);
12706 return false;
12707 }
12708 }
12709
12710 /* 4th constraint in section 11.3: "If an object of a type for which
12711 component-initialization is specified (R429) appears in the
12712 specification-part of a module and does not have the ALLOCATABLE
12713 or POINTER attribute, the object shall have the SAVE attribute."
12714
12715 The check for initializers is performed with
12716 gfc_has_default_initializer because gfc_default_initializer generates
12717 a hidden default for allocatable components. */
12718 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12719 && sym->ns->proc_name->attr.flavor == FL_MODULE
12720 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12721 && !sym->attr.pointer && !sym->attr.allocatable
12722 && gfc_has_default_initializer (sym->ts.u.derived)
12723 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12724 "%qs at %L, needed due to the default "
12725 "initialization", sym->name, &sym->declared_at))
12726 return false;
12727
12728 /* Assign default initializer. */
12729 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12730 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12731 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12732
12733 return true;
12734 }
12735
12736
12737 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12738 except in the declaration of an entity or component that has the POINTER
12739 or ALLOCATABLE attribute. */
12740
12741 static bool
12742 deferred_requirements (gfc_symbol *sym)
12743 {
12744 if (sym->ts.deferred
12745 && !(sym->attr.pointer
12746 || sym->attr.allocatable
12747 || sym->attr.associate_var
12748 || sym->attr.omp_udr_artificial_var))
12749 {
12750 /* If a function has a result variable, only check the variable. */
12751 if (sym->result && sym->name != sym->result->name)
12752 return true;
12753
12754 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12755 "requires either the POINTER or ALLOCATABLE attribute",
12756 sym->name, &sym->declared_at);
12757 return false;
12758 }
12759 return true;
12760 }
12761
12762
12763 /* Resolve symbols with flavor variable. */
12764
12765 static bool
12766 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12767 {
12768 const char *auto_save_msg = "Automatic object %qs at %L cannot have the "
12769 "SAVE attribute";
12770
12771 if (!resolve_fl_var_and_proc (sym, mp_flag))
12772 return false;
12773
12774 /* Set this flag to check that variables are parameters of all entries.
12775 This check is effected by the call to gfc_resolve_expr through
12776 is_non_constant_shape_array. */
12777 bool saved_specification_expr = specification_expr;
12778 specification_expr = true;
12779
12780 if (sym->ns->proc_name
12781 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12782 || sym->ns->proc_name->attr.is_main_program)
12783 && !sym->attr.use_assoc
12784 && !sym->attr.allocatable
12785 && !sym->attr.pointer
12786 && is_non_constant_shape_array (sym))
12787 {
12788 /* F08:C541. The shape of an array defined in a main program or module
12789 * needs to be constant. */
12790 gfc_error ("The module or main program array %qs at %L must "
12791 "have constant shape", sym->name, &sym->declared_at);
12792 specification_expr = saved_specification_expr;
12793 return false;
12794 }
12795
12796 /* Constraints on deferred type parameter. */
12797 if (!deferred_requirements (sym))
12798 return false;
12799
12800 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12801 {
12802 /* Make sure that character string variables with assumed length are
12803 dummy arguments. */
12804 gfc_expr *e = NULL;
12805
12806 if (sym->ts.u.cl)
12807 e = sym->ts.u.cl->length;
12808 else
12809 return false;
12810
12811 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12812 && !sym->ts.deferred && !sym->attr.select_type_temporary
12813 && !sym->attr.omp_udr_artificial_var)
12814 {
12815 gfc_error ("Entity with assumed character length at %L must be a "
12816 "dummy argument or a PARAMETER", &sym->declared_at);
12817 specification_expr = saved_specification_expr;
12818 return false;
12819 }
12820
12821 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12822 {
12823 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12824 specification_expr = saved_specification_expr;
12825 return false;
12826 }
12827
12828 if (!gfc_is_constant_expr (e)
12829 && !(e->expr_type == EXPR_VARIABLE
12830 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12831 {
12832 if (!sym->attr.use_assoc && sym->ns->proc_name
12833 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12834 || sym->ns->proc_name->attr.is_main_program))
12835 {
12836 gfc_error ("%qs at %L must have constant character length "
12837 "in this context", sym->name, &sym->declared_at);
12838 specification_expr = saved_specification_expr;
12839 return false;
12840 }
12841 if (sym->attr.in_common)
12842 {
12843 gfc_error ("COMMON variable %qs at %L must have constant "
12844 "character length", sym->name, &sym->declared_at);
12845 specification_expr = saved_specification_expr;
12846 return false;
12847 }
12848 }
12849 }
12850
12851 if (sym->value == NULL && sym->attr.referenced)
12852 apply_default_init_local (sym); /* Try to apply a default initialization. */
12853
12854 /* Determine if the symbol may not have an initializer. */
12855 int no_init_flag = 0, automatic_flag = 0;
12856 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12857 || sym->attr.intrinsic || sym->attr.result)
12858 no_init_flag = 1;
12859 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12860 && is_non_constant_shape_array (sym))
12861 {
12862 no_init_flag = automatic_flag = 1;
12863
12864 /* Also, they must not have the SAVE attribute.
12865 SAVE_IMPLICIT is checked below. */
12866 if (sym->as && sym->attr.codimension)
12867 {
12868 int corank = sym->as->corank;
12869 sym->as->corank = 0;
12870 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12871 sym->as->corank = corank;
12872 }
12873 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12874 {
12875 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12876 specification_expr = saved_specification_expr;
12877 return false;
12878 }
12879 }
12880
12881 /* Ensure that any initializer is simplified. */
12882 if (sym->value)
12883 gfc_simplify_expr (sym->value, 1);
12884
12885 /* Reject illegal initializers. */
12886 if (!sym->mark && sym->value)
12887 {
12888 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12889 && CLASS_DATA (sym)->attr.allocatable))
12890 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12891 sym->name, &sym->declared_at);
12892 else if (sym->attr.external)
12893 gfc_error ("External %qs at %L cannot have an initializer",
12894 sym->name, &sym->declared_at);
12895 else if (sym->attr.dummy
12896 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12897 gfc_error ("Dummy %qs at %L cannot have an initializer",
12898 sym->name, &sym->declared_at);
12899 else if (sym->attr.intrinsic)
12900 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12901 sym->name, &sym->declared_at);
12902 else if (sym->attr.result)
12903 gfc_error ("Function result %qs at %L cannot have an initializer",
12904 sym->name, &sym->declared_at);
12905 else if (automatic_flag)
12906 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12907 sym->name, &sym->declared_at);
12908 else
12909 goto no_init_error;
12910 specification_expr = saved_specification_expr;
12911 return false;
12912 }
12913
12914 no_init_error:
12915 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12916 {
12917 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12918 specification_expr = saved_specification_expr;
12919 return res;
12920 }
12921
12922 specification_expr = saved_specification_expr;
12923 return true;
12924 }
12925
12926
12927 /* Compare the dummy characteristics of a module procedure interface
12928 declaration with the corresponding declaration in a submodule. */
12929 static gfc_formal_arglist *new_formal;
12930 static char errmsg[200];
12931
12932 static void
12933 compare_fsyms (gfc_symbol *sym)
12934 {
12935 gfc_symbol *fsym;
12936
12937 if (sym == NULL || new_formal == NULL)
12938 return;
12939
12940 fsym = new_formal->sym;
12941
12942 if (sym == fsym)
12943 return;
12944
12945 if (strcmp (sym->name, fsym->name) == 0)
12946 {
12947 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12948 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12949 }
12950 }
12951
12952
12953 /* Resolve a procedure. */
12954
12955 static bool
12956 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12957 {
12958 gfc_formal_arglist *arg;
12959
12960 if (sym->attr.function
12961 && !resolve_fl_var_and_proc (sym, mp_flag))
12962 return false;
12963
12964 /* Constraints on deferred type parameter. */
12965 if (!deferred_requirements (sym))
12966 return false;
12967
12968 if (sym->ts.type == BT_CHARACTER)
12969 {
12970 gfc_charlen *cl = sym->ts.u.cl;
12971
12972 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12973 && !resolve_charlen (cl))
12974 return false;
12975
12976 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12977 && sym->attr.proc == PROC_ST_FUNCTION)
12978 {
12979 gfc_error ("Character-valued statement function %qs at %L must "
12980 "have constant length", sym->name, &sym->declared_at);
12981 return false;
12982 }
12983 }
12984
12985 /* Ensure that derived type for are not of a private type. Internal
12986 module procedures are excluded by 2.2.3.3 - i.e., they are not
12987 externally accessible and can access all the objects accessible in
12988 the host. */
12989 if (!(sym->ns->parent && sym->ns->parent->proc_name
12990 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12991 && gfc_check_symbol_access (sym))
12992 {
12993 gfc_interface *iface;
12994
12995 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12996 {
12997 if (arg->sym
12998 && arg->sym->ts.type == BT_DERIVED
12999 && arg->sym->ts.u.derived
13000 && !arg->sym->ts.u.derived->attr.use_assoc
13001 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
13002 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
13003 "and cannot be a dummy argument"
13004 " of %qs, which is PUBLIC at %L",
13005 arg->sym->name, sym->name,
13006 &sym->declared_at))
13007 {
13008 /* Stop this message from recurring. */
13009 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
13010 return false;
13011 }
13012 }
13013
13014 /* PUBLIC interfaces may expose PRIVATE procedures that take types
13015 PRIVATE to the containing module. */
13016 for (iface = sym->generic; iface; iface = iface->next)
13017 {
13018 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
13019 {
13020 if (arg->sym
13021 && arg->sym->ts.type == BT_DERIVED
13022 && !arg->sym->ts.u.derived->attr.use_assoc
13023 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
13024 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
13025 "PUBLIC interface %qs at %L "
13026 "takes dummy arguments of %qs which "
13027 "is PRIVATE", iface->sym->name,
13028 sym->name, &iface->sym->declared_at,
13029 gfc_typename(&arg->sym->ts)))
13030 {
13031 /* Stop this message from recurring. */
13032 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
13033 return false;
13034 }
13035 }
13036 }
13037 }
13038
13039 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
13040 && !sym->attr.proc_pointer)
13041 {
13042 gfc_error ("Function %qs at %L cannot have an initializer",
13043 sym->name, &sym->declared_at);
13044
13045 /* Make sure no second error is issued for this. */
13046 sym->value->error = 1;
13047 return false;
13048 }
13049
13050 /* An external symbol may not have an initializer because it is taken to be
13051 a procedure. Exception: Procedure Pointers. */
13052 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
13053 {
13054 gfc_error ("External object %qs at %L may not have an initializer",
13055 sym->name, &sym->declared_at);
13056 return false;
13057 }
13058
13059 /* An elemental function is required to return a scalar 12.7.1 */
13060 if (sym->attr.elemental && sym->attr.function
13061 && (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)))
13062 {
13063 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
13064 "result", sym->name, &sym->declared_at);
13065 /* Reset so that the error only occurs once. */
13066 sym->attr.elemental = 0;
13067 return false;
13068 }
13069
13070 if (sym->attr.proc == PROC_ST_FUNCTION
13071 && (sym->attr.allocatable || sym->attr.pointer))
13072 {
13073 gfc_error ("Statement function %qs at %L may not have pointer or "
13074 "allocatable attribute", sym->name, &sym->declared_at);
13075 return false;
13076 }
13077
13078 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
13079 char-len-param shall not be array-valued, pointer-valued, recursive
13080 or pure. ....snip... A character value of * may only be used in the
13081 following ways: (i) Dummy arg of procedure - dummy associates with
13082 actual length; (ii) To declare a named constant; or (iii) External
13083 function - but length must be declared in calling scoping unit. */
13084 if (sym->attr.function
13085 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
13086 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
13087 {
13088 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
13089 || (sym->attr.recursive) || (sym->attr.pure))
13090 {
13091 if (sym->as && sym->as->rank)
13092 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13093 "array-valued", sym->name, &sym->declared_at);
13094
13095 if (sym->attr.pointer)
13096 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13097 "pointer-valued", sym->name, &sym->declared_at);
13098
13099 if (sym->attr.pure)
13100 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13101 "pure", sym->name, &sym->declared_at);
13102
13103 if (sym->attr.recursive)
13104 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
13105 "recursive", sym->name, &sym->declared_at);
13106
13107 return false;
13108 }
13109
13110 /* Appendix B.2 of the standard. Contained functions give an
13111 error anyway. Deferred character length is an F2003 feature.
13112 Don't warn on intrinsic conversion functions, which start
13113 with two underscores. */
13114 if (!sym->attr.contained && !sym->ts.deferred
13115 && (sym->name[0] != '_' || sym->name[1] != '_'))
13116 gfc_notify_std (GFC_STD_F95_OBS,
13117 "CHARACTER(*) function %qs at %L",
13118 sym->name, &sym->declared_at);
13119 }
13120
13121 /* F2008, C1218. */
13122 if (sym->attr.elemental)
13123 {
13124 if (sym->attr.proc_pointer)
13125 {
13126 const char* name = (sym->attr.result ? sym->ns->proc_name->name
13127 : sym->name);
13128 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
13129 name, &sym->declared_at);
13130 return false;
13131 }
13132 if (sym->attr.dummy)
13133 {
13134 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
13135 sym->name, &sym->declared_at);
13136 return false;
13137 }
13138 }
13139
13140 /* F2018, C15100: "The result of an elemental function shall be scalar,
13141 and shall not have the POINTER or ALLOCATABLE attribute." The scalar
13142 pointer is tested and caught elsewhere. */
13143 if (sym->attr.elemental && sym->result
13144 && (sym->result->attr.allocatable || sym->result->attr.pointer))
13145 {
13146 gfc_error ("Function result variable %qs at %L of elemental "
13147 "function %qs shall not have an ALLOCATABLE or POINTER "
13148 "attribute", sym->result->name,
13149 &sym->result->declared_at, sym->name);
13150 return false;
13151 }
13152
13153 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
13154 {
13155 gfc_formal_arglist *curr_arg;
13156 int has_non_interop_arg = 0;
13157
13158 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
13159 sym->common_block))
13160 {
13161 /* Clear these to prevent looking at them again if there was an
13162 error. */
13163 sym->attr.is_bind_c = 0;
13164 sym->attr.is_c_interop = 0;
13165 sym->ts.is_c_interop = 0;
13166 }
13167 else
13168 {
13169 /* So far, no errors have been found. */
13170 sym->attr.is_c_interop = 1;
13171 sym->ts.is_c_interop = 1;
13172 }
13173
13174 curr_arg = gfc_sym_get_dummy_args (sym);
13175 while (curr_arg != NULL)
13176 {
13177 /* Skip implicitly typed dummy args here. */
13178 if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
13179 if (!gfc_verify_c_interop_param (curr_arg->sym))
13180 /* If something is found to fail, record the fact so we
13181 can mark the symbol for the procedure as not being
13182 BIND(C) to try and prevent multiple errors being
13183 reported. */
13184 has_non_interop_arg = 1;
13185
13186 curr_arg = curr_arg->next;
13187 }
13188
13189 /* See if any of the arguments were not interoperable and if so, clear
13190 the procedure symbol to prevent duplicate error messages. */
13191 if (has_non_interop_arg != 0)
13192 {
13193 sym->attr.is_c_interop = 0;
13194 sym->ts.is_c_interop = 0;
13195 sym->attr.is_bind_c = 0;
13196 }
13197 }
13198
13199 if (!sym->attr.proc_pointer)
13200 {
13201 if (sym->attr.save == SAVE_EXPLICIT)
13202 {
13203 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
13204 "in %qs at %L", sym->name, &sym->declared_at);
13205 return false;
13206 }
13207 if (sym->attr.intent)
13208 {
13209 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
13210 "in %qs at %L", sym->name, &sym->declared_at);
13211 return false;
13212 }
13213 if (sym->attr.subroutine && sym->attr.result)
13214 {
13215 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
13216 "in %qs at %L", sym->ns->proc_name->name, &sym->declared_at);
13217 return false;
13218 }
13219 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
13220 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
13221 || sym->attr.contained))
13222 {
13223 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
13224 "in %qs at %L", sym->name, &sym->declared_at);
13225 return false;
13226 }
13227 if (strcmp ("ppr@", sym->name) == 0)
13228 {
13229 gfc_error ("Procedure pointer result %qs at %L "
13230 "is missing the pointer attribute",
13231 sym->ns->proc_name->name, &sym->declared_at);
13232 return false;
13233 }
13234 }
13235
13236 /* Assume that a procedure whose body is not known has references
13237 to external arrays. */
13238 if (sym->attr.if_source != IFSRC_DECL)
13239 sym->attr.array_outer_dependency = 1;
13240
13241 /* Compare the characteristics of a module procedure with the
13242 interface declaration. Ideally this would be done with
13243 gfc_compare_interfaces but, at present, the formal interface
13244 cannot be copied to the ts.interface. */
13245 if (sym->attr.module_procedure
13246 && sym->attr.if_source == IFSRC_DECL)
13247 {
13248 gfc_symbol *iface;
13249 char name[2*GFC_MAX_SYMBOL_LEN + 1];
13250 char *module_name;
13251 char *submodule_name;
13252 strcpy (name, sym->ns->proc_name->name);
13253 module_name = strtok (name, ".");
13254 submodule_name = strtok (NULL, ".");
13255
13256 iface = sym->tlink;
13257 sym->tlink = NULL;
13258
13259 /* Make sure that the result uses the correct charlen for deferred
13260 length results. */
13261 if (iface && sym->result
13262 && iface->ts.type == BT_CHARACTER
13263 && iface->ts.deferred)
13264 sym->result->ts.u.cl = iface->ts.u.cl;
13265
13266 if (iface == NULL)
13267 goto check_formal;
13268
13269 /* Check the procedure characteristics. */
13270 if (sym->attr.elemental != iface->attr.elemental)
13271 {
13272 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
13273 "PROCEDURE at %L and its interface in %s",
13274 &sym->declared_at, module_name);
13275 return false;
13276 }
13277
13278 if (sym->attr.pure != iface->attr.pure)
13279 {
13280 gfc_error ("Mismatch in PURE attribute between MODULE "
13281 "PROCEDURE at %L and its interface in %s",
13282 &sym->declared_at, module_name);
13283 return false;
13284 }
13285
13286 if (sym->attr.recursive != iface->attr.recursive)
13287 {
13288 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
13289 "PROCEDURE at %L and its interface in %s",
13290 &sym->declared_at, module_name);
13291 return false;
13292 }
13293
13294 /* Check the result characteristics. */
13295 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
13296 {
13297 gfc_error ("%s between the MODULE PROCEDURE declaration "
13298 "in MODULE %qs and the declaration at %L in "
13299 "(SUB)MODULE %qs",
13300 errmsg, module_name, &sym->declared_at,
13301 submodule_name ? submodule_name : module_name);
13302 return false;
13303 }
13304
13305 check_formal:
13306 /* Check the characteristics of the formal arguments. */
13307 if (sym->formal && sym->formal_ns)
13308 {
13309 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
13310 {
13311 new_formal = arg;
13312 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
13313 }
13314 }
13315 }
13316 return true;
13317 }
13318
13319
13320 /* Resolve a list of finalizer procedures. That is, after they have hopefully
13321 been defined and we now know their defined arguments, check that they fulfill
13322 the requirements of the standard for procedures used as finalizers. */
13323
13324 static bool
13325 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
13326 {
13327 gfc_finalizer* list;
13328 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
13329 bool result = true;
13330 bool seen_scalar = false;
13331 gfc_symbol *vtab;
13332 gfc_component *c;
13333 gfc_symbol *parent = gfc_get_derived_super_type (derived);
13334
13335 if (parent)
13336 gfc_resolve_finalizers (parent, finalizable);
13337
13338 /* Ensure that derived-type components have a their finalizers resolved. */
13339 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
13340 for (c = derived->components; c; c = c->next)
13341 if (c->ts.type == BT_DERIVED
13342 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
13343 {
13344 bool has_final2 = false;
13345 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
13346 return false; /* Error. */
13347 has_final = has_final || has_final2;
13348 }
13349 /* Return early if not finalizable. */
13350 if (!has_final)
13351 {
13352 if (finalizable)
13353 *finalizable = false;
13354 return true;
13355 }
13356
13357 /* Walk over the list of finalizer-procedures, check them, and if any one
13358 does not fit in with the standard's definition, print an error and remove
13359 it from the list. */
13360 prev_link = &derived->f2k_derived->finalizers;
13361 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
13362 {
13363 gfc_formal_arglist *dummy_args;
13364 gfc_symbol* arg;
13365 gfc_finalizer* i;
13366 int my_rank;
13367
13368 /* Skip this finalizer if we already resolved it. */
13369 if (list->proc_tree)
13370 {
13371 if (list->proc_tree->n.sym->formal->sym->as == NULL
13372 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
13373 seen_scalar = true;
13374 prev_link = &(list->next);
13375 continue;
13376 }
13377
13378 /* Check this exists and is a SUBROUTINE. */
13379 if (!list->proc_sym->attr.subroutine)
13380 {
13381 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
13382 list->proc_sym->name, &list->where);
13383 goto error;
13384 }
13385
13386 /* We should have exactly one argument. */
13387 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
13388 if (!dummy_args || dummy_args->next)
13389 {
13390 gfc_error ("FINAL procedure at %L must have exactly one argument",
13391 &list->where);
13392 goto error;
13393 }
13394 arg = dummy_args->sym;
13395
13396 /* This argument must be of our type. */
13397 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
13398 {
13399 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
13400 &arg->declared_at, derived->name);
13401 goto error;
13402 }
13403
13404 /* It must neither be a pointer nor allocatable nor optional. */
13405 if (arg->attr.pointer)
13406 {
13407 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
13408 &arg->declared_at);
13409 goto error;
13410 }
13411 if (arg->attr.allocatable)
13412 {
13413 gfc_error ("Argument of FINAL procedure at %L must not be"
13414 " ALLOCATABLE", &arg->declared_at);
13415 goto error;
13416 }
13417 if (arg->attr.optional)
13418 {
13419 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
13420 &arg->declared_at);
13421 goto error;
13422 }
13423
13424 /* It must not be INTENT(OUT). */
13425 if (arg->attr.intent == INTENT_OUT)
13426 {
13427 gfc_error ("Argument of FINAL procedure at %L must not be"
13428 " INTENT(OUT)", &arg->declared_at);
13429 goto error;
13430 }
13431
13432 /* Warn if the procedure is non-scalar and not assumed shape. */
13433 if (warn_surprising && arg->as && arg->as->rank != 0
13434 && arg->as->type != AS_ASSUMED_SHAPE)
13435 gfc_warning (OPT_Wsurprising,
13436 "Non-scalar FINAL procedure at %L should have assumed"
13437 " shape argument", &arg->declared_at);
13438
13439 /* Check that it does not match in kind and rank with a FINAL procedure
13440 defined earlier. To really loop over the *earlier* declarations,
13441 we need to walk the tail of the list as new ones were pushed at the
13442 front. */
13443 /* TODO: Handle kind parameters once they are implemented. */
13444 my_rank = (arg->as ? arg->as->rank : 0);
13445 for (i = list->next; i; i = i->next)
13446 {
13447 gfc_formal_arglist *dummy_args;
13448
13449 /* Argument list might be empty; that is an error signalled earlier,
13450 but we nevertheless continued resolving. */
13451 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
13452 if (dummy_args)
13453 {
13454 gfc_symbol* i_arg = dummy_args->sym;
13455 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
13456 if (i_rank == my_rank)
13457 {
13458 gfc_error ("FINAL procedure %qs declared at %L has the same"
13459 " rank (%d) as %qs",
13460 list->proc_sym->name, &list->where, my_rank,
13461 i->proc_sym->name);
13462 goto error;
13463 }
13464 }
13465 }
13466
13467 /* Is this the/a scalar finalizer procedure? */
13468 if (my_rank == 0)
13469 seen_scalar = true;
13470
13471 /* Find the symtree for this procedure. */
13472 gcc_assert (!list->proc_tree);
13473 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
13474
13475 prev_link = &list->next;
13476 continue;
13477
13478 /* Remove wrong nodes immediately from the list so we don't risk any
13479 troubles in the future when they might fail later expectations. */
13480 error:
13481 i = list;
13482 *prev_link = list->next;
13483 gfc_free_finalizer (i);
13484 result = false;
13485 }
13486
13487 if (result == false)
13488 return false;
13489
13490 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
13491 were nodes in the list, must have been for arrays. It is surely a good
13492 idea to have a scalar version there if there's something to finalize. */
13493 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
13494 gfc_warning (OPT_Wsurprising,
13495 "Only array FINAL procedures declared for derived type %qs"
13496 " defined at %L, suggest also scalar one",
13497 derived->name, &derived->declared_at);
13498
13499 vtab = gfc_find_derived_vtab (derived);
13500 c = vtab->ts.u.derived->components->next->next->next->next->next;
13501 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
13502
13503 if (finalizable)
13504 *finalizable = true;
13505
13506 return true;
13507 }
13508
13509
13510 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
13511
13512 static bool
13513 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
13514 const char* generic_name, locus where)
13515 {
13516 gfc_symbol *sym1, *sym2;
13517 const char *pass1, *pass2;
13518 gfc_formal_arglist *dummy_args;
13519
13520 gcc_assert (t1->specific && t2->specific);
13521 gcc_assert (!t1->specific->is_generic);
13522 gcc_assert (!t2->specific->is_generic);
13523 gcc_assert (t1->is_operator == t2->is_operator);
13524
13525 sym1 = t1->specific->u.specific->n.sym;
13526 sym2 = t2->specific->u.specific->n.sym;
13527
13528 if (sym1 == sym2)
13529 return true;
13530
13531 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
13532 if (sym1->attr.subroutine != sym2->attr.subroutine
13533 || sym1->attr.function != sym2->attr.function)
13534 {
13535 gfc_error ("%qs and %qs cannot be mixed FUNCTION/SUBROUTINE for"
13536 " GENERIC %qs at %L",
13537 sym1->name, sym2->name, generic_name, &where);
13538 return false;
13539 }
13540
13541 /* Determine PASS arguments. */
13542 if (t1->specific->nopass)
13543 pass1 = NULL;
13544 else if (t1->specific->pass_arg)
13545 pass1 = t1->specific->pass_arg;
13546 else
13547 {
13548 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
13549 if (dummy_args)
13550 pass1 = dummy_args->sym->name;
13551 else
13552 pass1 = NULL;
13553 }
13554 if (t2->specific->nopass)
13555 pass2 = NULL;
13556 else if (t2->specific->pass_arg)
13557 pass2 = t2->specific->pass_arg;
13558 else
13559 {
13560 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
13561 if (dummy_args)
13562 pass2 = dummy_args->sym->name;
13563 else
13564 pass2 = NULL;
13565 }
13566
13567 /* Compare the interfaces. */
13568 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
13569 NULL, 0, pass1, pass2))
13570 {
13571 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
13572 sym1->name, sym2->name, generic_name, &where);
13573 return false;
13574 }
13575
13576 return true;
13577 }
13578
13579
13580 /* Worker function for resolving a generic procedure binding; this is used to
13581 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
13582
13583 The difference between those cases is finding possible inherited bindings
13584 that are overridden, as one has to look for them in tb_sym_root,
13585 tb_uop_root or tb_op, respectively. Thus the caller must already find
13586 the super-type and set p->overridden correctly. */
13587
13588 static bool
13589 resolve_tb_generic_targets (gfc_symbol* super_type,
13590 gfc_typebound_proc* p, const char* name)
13591 {
13592 gfc_tbp_generic* target;
13593 gfc_symtree* first_target;
13594 gfc_symtree* inherited;
13595
13596 gcc_assert (p && p->is_generic);
13597
13598 /* Try to find the specific bindings for the symtrees in our target-list. */
13599 gcc_assert (p->u.generic);
13600 for (target = p->u.generic; target; target = target->next)
13601 if (!target->specific)
13602 {
13603 gfc_typebound_proc* overridden_tbp;
13604 gfc_tbp_generic* g;
13605 const char* target_name;
13606
13607 target_name = target->specific_st->name;
13608
13609 /* Defined for this type directly. */
13610 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
13611 {
13612 target->specific = target->specific_st->n.tb;
13613 goto specific_found;
13614 }
13615
13616 /* Look for an inherited specific binding. */
13617 if (super_type)
13618 {
13619 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
13620 true, NULL);
13621
13622 if (inherited)
13623 {
13624 gcc_assert (inherited->n.tb);
13625 target->specific = inherited->n.tb;
13626 goto specific_found;
13627 }
13628 }
13629
13630 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
13631 " at %L", target_name, name, &p->where);
13632 return false;
13633
13634 /* Once we've found the specific binding, check it is not ambiguous with
13635 other specifics already found or inherited for the same GENERIC. */
13636 specific_found:
13637 gcc_assert (target->specific);
13638
13639 /* This must really be a specific binding! */
13640 if (target->specific->is_generic)
13641 {
13642 gfc_error ("GENERIC %qs at %L must target a specific binding,"
13643 " %qs is GENERIC, too", name, &p->where, target_name);
13644 return false;
13645 }
13646
13647 /* Check those already resolved on this type directly. */
13648 for (g = p->u.generic; g; g = g->next)
13649 if (g != target && g->specific
13650 && !check_generic_tbp_ambiguity (target, g, name, p->where))
13651 return false;
13652
13653 /* Check for ambiguity with inherited specific targets. */
13654 for (overridden_tbp = p->overridden; overridden_tbp;
13655 overridden_tbp = overridden_tbp->overridden)
13656 if (overridden_tbp->is_generic)
13657 {
13658 for (g = overridden_tbp->u.generic; g; g = g->next)
13659 {
13660 gcc_assert (g->specific);
13661 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
13662 return false;
13663 }
13664 }
13665 }
13666
13667 /* If we attempt to "overwrite" a specific binding, this is an error. */
13668 if (p->overridden && !p->overridden->is_generic)
13669 {
13670 gfc_error ("GENERIC %qs at %L cannot overwrite specific binding with"
13671 " the same name", name, &p->where);
13672 return false;
13673 }
13674
13675 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
13676 all must have the same attributes here. */
13677 first_target = p->u.generic->specific->u.specific;
13678 gcc_assert (first_target);
13679 p->subroutine = first_target->n.sym->attr.subroutine;
13680 p->function = first_target->n.sym->attr.function;
13681
13682 return true;
13683 }
13684
13685
13686 /* Resolve a GENERIC procedure binding for a derived type. */
13687
13688 static bool
13689 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
13690 {
13691 gfc_symbol* super_type;
13692
13693 /* Find the overridden binding if any. */
13694 st->n.tb->overridden = NULL;
13695 super_type = gfc_get_derived_super_type (derived);
13696 if (super_type)
13697 {
13698 gfc_symtree* overridden;
13699 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
13700 true, NULL);
13701
13702 if (overridden && overridden->n.tb)
13703 st->n.tb->overridden = overridden->n.tb;
13704 }
13705
13706 /* Resolve using worker function. */
13707 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13708 }
13709
13710
13711 /* Retrieve the target-procedure of an operator binding and do some checks in
13712 common for intrinsic and user-defined type-bound operators. */
13713
13714 static gfc_symbol*
13715 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13716 {
13717 gfc_symbol* target_proc;
13718
13719 gcc_assert (target->specific && !target->specific->is_generic);
13720 target_proc = target->specific->u.specific->n.sym;
13721 gcc_assert (target_proc);
13722
13723 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13724 if (target->specific->nopass)
13725 {
13726 gfc_error ("Type-bound operator at %L cannot be NOPASS", &where);
13727 return NULL;
13728 }
13729
13730 return target_proc;
13731 }
13732
13733
13734 /* Resolve a type-bound intrinsic operator. */
13735
13736 static bool
13737 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13738 gfc_typebound_proc* p)
13739 {
13740 gfc_symbol* super_type;
13741 gfc_tbp_generic* target;
13742
13743 /* If there's already an error here, do nothing (but don't fail again). */
13744 if (p->error)
13745 return true;
13746
13747 /* Operators should always be GENERIC bindings. */
13748 gcc_assert (p->is_generic);
13749
13750 /* Look for an overridden binding. */
13751 super_type = gfc_get_derived_super_type (derived);
13752 if (super_type && super_type->f2k_derived)
13753 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13754 op, true, NULL);
13755 else
13756 p->overridden = NULL;
13757
13758 /* Resolve general GENERIC properties using worker function. */
13759 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13760 goto error;
13761
13762 /* Check the targets to be procedures of correct interface. */
13763 for (target = p->u.generic; target; target = target->next)
13764 {
13765 gfc_symbol* target_proc;
13766
13767 target_proc = get_checked_tb_operator_target (target, p->where);
13768 if (!target_proc)
13769 goto error;
13770
13771 if (!gfc_check_operator_interface (target_proc, op, p->where))
13772 goto error;
13773
13774 /* Add target to non-typebound operator list. */
13775 if (!target->specific->deferred && !derived->attr.use_assoc
13776 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13777 {
13778 gfc_interface *head, *intr;
13779
13780 /* Preempt 'gfc_check_new_interface' for submodules, where the
13781 mechanism for handling module procedures winds up resolving
13782 operator interfaces twice and would otherwise cause an error. */
13783 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13784 if (intr->sym == target_proc
13785 && target_proc->attr.used_in_submodule)
13786 return true;
13787
13788 if (!gfc_check_new_interface (derived->ns->op[op],
13789 target_proc, p->where))
13790 return false;
13791 head = derived->ns->op[op];
13792 intr = gfc_get_interface ();
13793 intr->sym = target_proc;
13794 intr->where = p->where;
13795 intr->next = head;
13796 derived->ns->op[op] = intr;
13797 }
13798 }
13799
13800 return true;
13801
13802 error:
13803 p->error = 1;
13804 return false;
13805 }
13806
13807
13808 /* Resolve a type-bound user operator (tree-walker callback). */
13809
13810 static gfc_symbol* resolve_bindings_derived;
13811 static bool resolve_bindings_result;
13812
13813 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13814
13815 static void
13816 resolve_typebound_user_op (gfc_symtree* stree)
13817 {
13818 gfc_symbol* super_type;
13819 gfc_tbp_generic* target;
13820
13821 gcc_assert (stree && stree->n.tb);
13822
13823 if (stree->n.tb->error)
13824 return;
13825
13826 /* Operators should always be GENERIC bindings. */
13827 gcc_assert (stree->n.tb->is_generic);
13828
13829 /* Find overridden procedure, if any. */
13830 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13831 if (super_type && super_type->f2k_derived)
13832 {
13833 gfc_symtree* overridden;
13834 overridden = gfc_find_typebound_user_op (super_type, NULL,
13835 stree->name, true, NULL);
13836
13837 if (overridden && overridden->n.tb)
13838 stree->n.tb->overridden = overridden->n.tb;
13839 }
13840 else
13841 stree->n.tb->overridden = NULL;
13842
13843 /* Resolve basically using worker function. */
13844 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13845 goto error;
13846
13847 /* Check the targets to be functions of correct interface. */
13848 for (target = stree->n.tb->u.generic; target; target = target->next)
13849 {
13850 gfc_symbol* target_proc;
13851
13852 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13853 if (!target_proc)
13854 goto error;
13855
13856 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13857 goto error;
13858 }
13859
13860 return;
13861
13862 error:
13863 resolve_bindings_result = false;
13864 stree->n.tb->error = 1;
13865 }
13866
13867
13868 /* Resolve the type-bound procedures for a derived type. */
13869
13870 static void
13871 resolve_typebound_procedure (gfc_symtree* stree)
13872 {
13873 gfc_symbol* proc;
13874 locus where;
13875 gfc_symbol* me_arg;
13876 gfc_symbol* super_type;
13877 gfc_component* comp;
13878
13879 gcc_assert (stree);
13880
13881 /* Undefined specific symbol from GENERIC target definition. */
13882 if (!stree->n.tb)
13883 return;
13884
13885 if (stree->n.tb->error)
13886 return;
13887
13888 /* If this is a GENERIC binding, use that routine. */
13889 if (stree->n.tb->is_generic)
13890 {
13891 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13892 goto error;
13893 return;
13894 }
13895
13896 /* Get the target-procedure to check it. */
13897 gcc_assert (!stree->n.tb->is_generic);
13898 gcc_assert (stree->n.tb->u.specific);
13899 proc = stree->n.tb->u.specific->n.sym;
13900 where = stree->n.tb->where;
13901
13902 /* Default access should already be resolved from the parser. */
13903 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13904
13905 if (stree->n.tb->deferred)
13906 {
13907 if (!check_proc_interface (proc, &where))
13908 goto error;
13909 }
13910 else
13911 {
13912 /* If proc has not been resolved at this point, proc->name may
13913 actually be a USE associated entity. See PR fortran/89647. */
13914 if (!proc->resolve_symbol_called
13915 && proc->attr.function == 0 && proc->attr.subroutine == 0)
13916 {
13917 gfc_symbol *tmp;
13918 gfc_find_symbol (proc->name, gfc_current_ns->parent, 1, &tmp);
13919 if (tmp && tmp->attr.use_assoc)
13920 {
13921 proc->module = tmp->module;
13922 proc->attr.proc = tmp->attr.proc;
13923 proc->attr.function = tmp->attr.function;
13924 proc->attr.subroutine = tmp->attr.subroutine;
13925 proc->attr.use_assoc = tmp->attr.use_assoc;
13926 proc->ts = tmp->ts;
13927 proc->result = tmp->result;
13928 }
13929 }
13930
13931 /* Check for F08:C465. */
13932 if ((!proc->attr.subroutine && !proc->attr.function)
13933 || (proc->attr.proc != PROC_MODULE
13934 && proc->attr.if_source != IFSRC_IFBODY)
13935 || proc->attr.abstract)
13936 {
13937 gfc_error ("%qs must be a module procedure or an external "
13938 "procedure with an explicit interface at %L",
13939 proc->name, &where);
13940 goto error;
13941 }
13942 }
13943
13944 stree->n.tb->subroutine = proc->attr.subroutine;
13945 stree->n.tb->function = proc->attr.function;
13946
13947 /* Find the super-type of the current derived type. We could do this once and
13948 store in a global if speed is needed, but as long as not I believe this is
13949 more readable and clearer. */
13950 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13951
13952 /* If PASS, resolve and check arguments if not already resolved / loaded
13953 from a .mod file. */
13954 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13955 {
13956 gfc_formal_arglist *dummy_args;
13957
13958 dummy_args = gfc_sym_get_dummy_args (proc);
13959 if (stree->n.tb->pass_arg)
13960 {
13961 gfc_formal_arglist *i;
13962
13963 /* If an explicit passing argument name is given, walk the arg-list
13964 and look for it. */
13965
13966 me_arg = NULL;
13967 stree->n.tb->pass_arg_num = 1;
13968 for (i = dummy_args; i; i = i->next)
13969 {
13970 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13971 {
13972 me_arg = i->sym;
13973 break;
13974 }
13975 ++stree->n.tb->pass_arg_num;
13976 }
13977
13978 if (!me_arg)
13979 {
13980 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13981 " argument %qs",
13982 proc->name, stree->n.tb->pass_arg, &where,
13983 stree->n.tb->pass_arg);
13984 goto error;
13985 }
13986 }
13987 else
13988 {
13989 /* Otherwise, take the first one; there should in fact be at least
13990 one. */
13991 stree->n.tb->pass_arg_num = 1;
13992 if (!dummy_args)
13993 {
13994 gfc_error ("Procedure %qs with PASS at %L must have at"
13995 " least one argument", proc->name, &where);
13996 goto error;
13997 }
13998 me_arg = dummy_args->sym;
13999 }
14000
14001 /* Now check that the argument-type matches and the passed-object
14002 dummy argument is generally fine. */
14003
14004 gcc_assert (me_arg);
14005
14006 if (me_arg->ts.type != BT_CLASS)
14007 {
14008 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14009 " at %L", proc->name, &where);
14010 goto error;
14011 }
14012
14013 if (CLASS_DATA (me_arg)->ts.u.derived
14014 != resolve_bindings_derived)
14015 {
14016 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14017 " the derived-type %qs", me_arg->name, proc->name,
14018 me_arg->name, &where, resolve_bindings_derived->name);
14019 goto error;
14020 }
14021
14022 gcc_assert (me_arg->ts.type == BT_CLASS);
14023 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
14024 {
14025 gfc_error ("Passed-object dummy argument of %qs at %L must be"
14026 " scalar", proc->name, &where);
14027 goto error;
14028 }
14029 if (CLASS_DATA (me_arg)->attr.allocatable)
14030 {
14031 gfc_error ("Passed-object dummy argument of %qs at %L must not"
14032 " be ALLOCATABLE", proc->name, &where);
14033 goto error;
14034 }
14035 if (CLASS_DATA (me_arg)->attr.class_pointer)
14036 {
14037 gfc_error ("Passed-object dummy argument of %qs at %L must not"
14038 " be POINTER", proc->name, &where);
14039 goto error;
14040 }
14041 }
14042
14043 /* If we are extending some type, check that we don't override a procedure
14044 flagged NON_OVERRIDABLE. */
14045 stree->n.tb->overridden = NULL;
14046 if (super_type)
14047 {
14048 gfc_symtree* overridden;
14049 overridden = gfc_find_typebound_proc (super_type, NULL,
14050 stree->name, true, NULL);
14051
14052 if (overridden)
14053 {
14054 if (overridden->n.tb)
14055 stree->n.tb->overridden = overridden->n.tb;
14056
14057 if (!gfc_check_typebound_override (stree, overridden))
14058 goto error;
14059 }
14060 }
14061
14062 /* See if there's a name collision with a component directly in this type. */
14063 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
14064 if (!strcmp (comp->name, stree->name))
14065 {
14066 gfc_error ("Procedure %qs at %L has the same name as a component of"
14067 " %qs",
14068 stree->name, &where, resolve_bindings_derived->name);
14069 goto error;
14070 }
14071
14072 /* Try to find a name collision with an inherited component. */
14073 if (super_type && gfc_find_component (super_type, stree->name, true, true,
14074 NULL))
14075 {
14076 gfc_error ("Procedure %qs at %L has the same name as an inherited"
14077 " component of %qs",
14078 stree->name, &where, resolve_bindings_derived->name);
14079 goto error;
14080 }
14081
14082 stree->n.tb->error = 0;
14083 return;
14084
14085 error:
14086 resolve_bindings_result = false;
14087 stree->n.tb->error = 1;
14088 }
14089
14090
14091 static bool
14092 resolve_typebound_procedures (gfc_symbol* derived)
14093 {
14094 int op;
14095 gfc_symbol* super_type;
14096
14097 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
14098 return true;
14099
14100 super_type = gfc_get_derived_super_type (derived);
14101 if (super_type)
14102 resolve_symbol (super_type);
14103
14104 resolve_bindings_derived = derived;
14105 resolve_bindings_result = true;
14106
14107 if (derived->f2k_derived->tb_sym_root)
14108 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
14109 &resolve_typebound_procedure);
14110
14111 if (derived->f2k_derived->tb_uop_root)
14112 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
14113 &resolve_typebound_user_op);
14114
14115 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
14116 {
14117 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
14118 if (p && !resolve_typebound_intrinsic_op (derived,
14119 (gfc_intrinsic_op)op, p))
14120 resolve_bindings_result = false;
14121 }
14122
14123 return resolve_bindings_result;
14124 }
14125
14126
14127 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
14128 to give all identical derived types the same backend_decl. */
14129 static void
14130 add_dt_to_dt_list (gfc_symbol *derived)
14131 {
14132 if (!derived->dt_next)
14133 {
14134 if (gfc_derived_types)
14135 {
14136 derived->dt_next = gfc_derived_types->dt_next;
14137 gfc_derived_types->dt_next = derived;
14138 }
14139 else
14140 {
14141 derived->dt_next = derived;
14142 }
14143 gfc_derived_types = derived;
14144 }
14145 }
14146
14147
14148 /* Ensure that a derived-type is really not abstract, meaning that every
14149 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
14150
14151 static bool
14152 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
14153 {
14154 if (!st)
14155 return true;
14156
14157 if (!ensure_not_abstract_walker (sub, st->left))
14158 return false;
14159 if (!ensure_not_abstract_walker (sub, st->right))
14160 return false;
14161
14162 if (st->n.tb && st->n.tb->deferred)
14163 {
14164 gfc_symtree* overriding;
14165 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
14166 if (!overriding)
14167 return false;
14168 gcc_assert (overriding->n.tb);
14169 if (overriding->n.tb->deferred)
14170 {
14171 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
14172 " %qs is DEFERRED and not overridden",
14173 sub->name, &sub->declared_at, st->name);
14174 return false;
14175 }
14176 }
14177
14178 return true;
14179 }
14180
14181 static bool
14182 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
14183 {
14184 /* The algorithm used here is to recursively travel up the ancestry of sub
14185 and for each ancestor-type, check all bindings. If any of them is
14186 DEFERRED, look it up starting from sub and see if the found (overriding)
14187 binding is not DEFERRED.
14188 This is not the most efficient way to do this, but it should be ok and is
14189 clearer than something sophisticated. */
14190
14191 gcc_assert (ancestor && !sub->attr.abstract);
14192
14193 if (!ancestor->attr.abstract)
14194 return true;
14195
14196 /* Walk bindings of this ancestor. */
14197 if (ancestor->f2k_derived)
14198 {
14199 bool t;
14200 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
14201 if (!t)
14202 return false;
14203 }
14204
14205 /* Find next ancestor type and recurse on it. */
14206 ancestor = gfc_get_derived_super_type (ancestor);
14207 if (ancestor)
14208 return ensure_not_abstract (sub, ancestor);
14209
14210 return true;
14211 }
14212
14213
14214 /* This check for typebound defined assignments is done recursively
14215 since the order in which derived types are resolved is not always in
14216 order of the declarations. */
14217
14218 static void
14219 check_defined_assignments (gfc_symbol *derived)
14220 {
14221 gfc_component *c;
14222
14223 for (c = derived->components; c; c = c->next)
14224 {
14225 if (!gfc_bt_struct (c->ts.type)
14226 || c->attr.pointer
14227 || c->attr.allocatable
14228 || c->attr.proc_pointer_comp
14229 || c->attr.class_pointer
14230 || c->attr.proc_pointer)
14231 continue;
14232
14233 if (c->ts.u.derived->attr.defined_assign_comp
14234 || (c->ts.u.derived->f2k_derived
14235 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
14236 {
14237 derived->attr.defined_assign_comp = 1;
14238 return;
14239 }
14240
14241 check_defined_assignments (c->ts.u.derived);
14242 if (c->ts.u.derived->attr.defined_assign_comp)
14243 {
14244 derived->attr.defined_assign_comp = 1;
14245 return;
14246 }
14247 }
14248 }
14249
14250
14251 /* Resolve a single component of a derived type or structure. */
14252
14253 static bool
14254 resolve_component (gfc_component *c, gfc_symbol *sym)
14255 {
14256 gfc_symbol *super_type;
14257 symbol_attribute *attr;
14258
14259 if (c->attr.artificial)
14260 return true;
14261
14262 /* Do not allow vtype components to be resolved in nameless namespaces
14263 such as block data because the procedure pointers will cause ICEs
14264 and vtables are not needed in these contexts. */
14265 if (sym->attr.vtype && sym->attr.use_assoc
14266 && sym->ns->proc_name == NULL)
14267 return true;
14268
14269 /* F2008, C442. */
14270 if ((!sym->attr.is_class || c != sym->components)
14271 && c->attr.codimension
14272 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
14273 {
14274 gfc_error ("Coarray component %qs at %L must be allocatable with "
14275 "deferred shape", c->name, &c->loc);
14276 return false;
14277 }
14278
14279 /* F2008, C443. */
14280 if (c->attr.codimension && c->ts.type == BT_DERIVED
14281 && c->ts.u.derived->ts.is_iso_c)
14282 {
14283 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
14284 "shall not be a coarray", c->name, &c->loc);
14285 return false;
14286 }
14287
14288 /* F2008, C444. */
14289 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
14290 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
14291 || c->attr.allocatable))
14292 {
14293 gfc_error ("Component %qs at %L with coarray component "
14294 "shall be a nonpointer, nonallocatable scalar",
14295 c->name, &c->loc);
14296 return false;
14297 }
14298
14299 /* F2008, C448. */
14300 if (c->ts.type == BT_CLASS)
14301 {
14302 if (CLASS_DATA (c))
14303 {
14304 attr = &(CLASS_DATA (c)->attr);
14305
14306 /* Fix up contiguous attribute. */
14307 if (c->attr.contiguous)
14308 attr->contiguous = 1;
14309 }
14310 else
14311 attr = NULL;
14312 }
14313 else
14314 attr = &c->attr;
14315
14316 if (attr && attr->contiguous && (!attr->dimension || !attr->pointer))
14317 {
14318 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
14319 "is not an array pointer", c->name, &c->loc);
14320 return false;
14321 }
14322
14323 /* F2003, 15.2.1 - length has to be one. */
14324 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
14325 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
14326 || !gfc_is_constant_expr (c->ts.u.cl->length)
14327 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
14328 {
14329 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
14330 c->name, &c->loc);
14331 return false;
14332 }
14333
14334 if (c->attr.proc_pointer && c->ts.interface)
14335 {
14336 gfc_symbol *ifc = c->ts.interface;
14337
14338 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
14339 {
14340 c->tb->error = 1;
14341 return false;
14342 }
14343
14344 if (ifc->attr.if_source || ifc->attr.intrinsic)
14345 {
14346 /* Resolve interface and copy attributes. */
14347 if (ifc->formal && !ifc->formal_ns)
14348 resolve_symbol (ifc);
14349 if (ifc->attr.intrinsic)
14350 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
14351
14352 if (ifc->result)
14353 {
14354 c->ts = ifc->result->ts;
14355 c->attr.allocatable = ifc->result->attr.allocatable;
14356 c->attr.pointer = ifc->result->attr.pointer;
14357 c->attr.dimension = ifc->result->attr.dimension;
14358 c->as = gfc_copy_array_spec (ifc->result->as);
14359 c->attr.class_ok = ifc->result->attr.class_ok;
14360 }
14361 else
14362 {
14363 c->ts = ifc->ts;
14364 c->attr.allocatable = ifc->attr.allocatable;
14365 c->attr.pointer = ifc->attr.pointer;
14366 c->attr.dimension = ifc->attr.dimension;
14367 c->as = gfc_copy_array_spec (ifc->as);
14368 c->attr.class_ok = ifc->attr.class_ok;
14369 }
14370 c->ts.interface = ifc;
14371 c->attr.function = ifc->attr.function;
14372 c->attr.subroutine = ifc->attr.subroutine;
14373
14374 c->attr.pure = ifc->attr.pure;
14375 c->attr.elemental = ifc->attr.elemental;
14376 c->attr.recursive = ifc->attr.recursive;
14377 c->attr.always_explicit = ifc->attr.always_explicit;
14378 c->attr.ext_attr |= ifc->attr.ext_attr;
14379 /* Copy char length. */
14380 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
14381 {
14382 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
14383 if (cl->length && !cl->resolved
14384 && !gfc_resolve_expr (cl->length))
14385 {
14386 c->tb->error = 1;
14387 return false;
14388 }
14389 c->ts.u.cl = cl;
14390 }
14391 }
14392 }
14393 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
14394 {
14395 /* Since PPCs are not implicitly typed, a PPC without an explicit
14396 interface must be a subroutine. */
14397 gfc_add_subroutine (&c->attr, c->name, &c->loc);
14398 }
14399
14400 /* Procedure pointer components: Check PASS arg. */
14401 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
14402 && !sym->attr.vtype)
14403 {
14404 gfc_symbol* me_arg;
14405
14406 if (c->tb->pass_arg)
14407 {
14408 gfc_formal_arglist* i;
14409
14410 /* If an explicit passing argument name is given, walk the arg-list
14411 and look for it. */
14412
14413 me_arg = NULL;
14414 c->tb->pass_arg_num = 1;
14415 for (i = c->ts.interface->formal; i; i = i->next)
14416 {
14417 if (!strcmp (i->sym->name, c->tb->pass_arg))
14418 {
14419 me_arg = i->sym;
14420 break;
14421 }
14422 c->tb->pass_arg_num++;
14423 }
14424
14425 if (!me_arg)
14426 {
14427 gfc_error ("Procedure pointer component %qs with PASS(%s) "
14428 "at %L has no argument %qs", c->name,
14429 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
14430 c->tb->error = 1;
14431 return false;
14432 }
14433 }
14434 else
14435 {
14436 /* Otherwise, take the first one; there should in fact be at least
14437 one. */
14438 c->tb->pass_arg_num = 1;
14439 if (!c->ts.interface->formal)
14440 {
14441 gfc_error ("Procedure pointer component %qs with PASS at %L "
14442 "must have at least one argument",
14443 c->name, &c->loc);
14444 c->tb->error = 1;
14445 return false;
14446 }
14447 me_arg = c->ts.interface->formal->sym;
14448 }
14449
14450 /* Now check that the argument-type matches. */
14451 gcc_assert (me_arg);
14452 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
14453 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
14454 || (me_arg->ts.type == BT_CLASS
14455 && CLASS_DATA (me_arg)->ts.u.derived != sym))
14456 {
14457 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14458 " the derived type %qs", me_arg->name, c->name,
14459 me_arg->name, &c->loc, sym->name);
14460 c->tb->error = 1;
14461 return false;
14462 }
14463
14464 /* Check for F03:C453. */
14465 if (CLASS_DATA (me_arg)->attr.dimension)
14466 {
14467 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14468 "must be scalar", me_arg->name, c->name, me_arg->name,
14469 &c->loc);
14470 c->tb->error = 1;
14471 return false;
14472 }
14473
14474 if (CLASS_DATA (me_arg)->attr.class_pointer)
14475 {
14476 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14477 "may not have the POINTER attribute", me_arg->name,
14478 c->name, me_arg->name, &c->loc);
14479 c->tb->error = 1;
14480 return false;
14481 }
14482
14483 if (CLASS_DATA (me_arg)->attr.allocatable)
14484 {
14485 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14486 "may not be ALLOCATABLE", me_arg->name, c->name,
14487 me_arg->name, &c->loc);
14488 c->tb->error = 1;
14489 return false;
14490 }
14491
14492 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
14493 {
14494 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14495 " at %L", c->name, &c->loc);
14496 return false;
14497 }
14498
14499 }
14500
14501 /* Check type-spec if this is not the parent-type component. */
14502 if (((sym->attr.is_class
14503 && (!sym->components->ts.u.derived->attr.extension
14504 || c != sym->components->ts.u.derived->components))
14505 || (!sym->attr.is_class
14506 && (!sym->attr.extension || c != sym->components)))
14507 && !sym->attr.vtype
14508 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
14509 return false;
14510
14511 super_type = gfc_get_derived_super_type (sym);
14512
14513 /* If this type is an extension, set the accessibility of the parent
14514 component. */
14515 if (super_type
14516 && ((sym->attr.is_class
14517 && c == sym->components->ts.u.derived->components)
14518 || (!sym->attr.is_class && c == sym->components))
14519 && strcmp (super_type->name, c->name) == 0)
14520 c->attr.access = super_type->attr.access;
14521
14522 /* If this type is an extension, see if this component has the same name
14523 as an inherited type-bound procedure. */
14524 if (super_type && !sym->attr.is_class
14525 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
14526 {
14527 gfc_error ("Component %qs of %qs at %L has the same name as an"
14528 " inherited type-bound procedure",
14529 c->name, sym->name, &c->loc);
14530 return false;
14531 }
14532
14533 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
14534 && !c->ts.deferred)
14535 {
14536 if (c->ts.u.cl->length == NULL
14537 || (!resolve_charlen(c->ts.u.cl))
14538 || !gfc_is_constant_expr (c->ts.u.cl->length))
14539 {
14540 gfc_error ("Character length of component %qs needs to "
14541 "be a constant specification expression at %L",
14542 c->name,
14543 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
14544 return false;
14545 }
14546 }
14547
14548 if (c->ts.type == BT_CHARACTER && c->ts.deferred
14549 && !c->attr.pointer && !c->attr.allocatable)
14550 {
14551 gfc_error ("Character component %qs of %qs at %L with deferred "
14552 "length must be a POINTER or ALLOCATABLE",
14553 c->name, sym->name, &c->loc);
14554 return false;
14555 }
14556
14557 /* Add the hidden deferred length field. */
14558 if (c->ts.type == BT_CHARACTER
14559 && (c->ts.deferred || c->attr.pdt_string)
14560 && !c->attr.function
14561 && !sym->attr.is_class)
14562 {
14563 char name[GFC_MAX_SYMBOL_LEN+9];
14564 gfc_component *strlen;
14565 sprintf (name, "_%s_length", c->name);
14566 strlen = gfc_find_component (sym, name, true, true, NULL);
14567 if (strlen == NULL)
14568 {
14569 if (!gfc_add_component (sym, name, &strlen))
14570 return false;
14571 strlen->ts.type = BT_INTEGER;
14572 strlen->ts.kind = gfc_charlen_int_kind;
14573 strlen->attr.access = ACCESS_PRIVATE;
14574 strlen->attr.artificial = 1;
14575 }
14576 }
14577
14578 if (c->ts.type == BT_DERIVED
14579 && sym->component_access != ACCESS_PRIVATE
14580 && gfc_check_symbol_access (sym)
14581 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
14582 && !c->ts.u.derived->attr.use_assoc
14583 && !gfc_check_symbol_access (c->ts.u.derived)
14584 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
14585 "PRIVATE type and cannot be a component of "
14586 "%qs, which is PUBLIC at %L", c->name,
14587 sym->name, &sym->declared_at))
14588 return false;
14589
14590 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
14591 {
14592 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
14593 "type %s", c->name, &c->loc, sym->name);
14594 return false;
14595 }
14596
14597 if (sym->attr.sequence)
14598 {
14599 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
14600 {
14601 gfc_error ("Component %s of SEQUENCE type declared at %L does "
14602 "not have the SEQUENCE attribute",
14603 c->ts.u.derived->name, &sym->declared_at);
14604 return false;
14605 }
14606 }
14607
14608 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
14609 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
14610 else if (c->ts.type == BT_CLASS && c->attr.class_ok
14611 && CLASS_DATA (c)->ts.u.derived->attr.generic)
14612 CLASS_DATA (c)->ts.u.derived
14613 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
14614
14615 /* If an allocatable component derived type is of the same type as
14616 the enclosing derived type, we need a vtable generating so that
14617 the __deallocate procedure is created. */
14618 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
14619 && c->ts.u.derived == sym && c->attr.allocatable == 1)
14620 gfc_find_vtab (&c->ts);
14621
14622 /* Ensure that all the derived type components are put on the
14623 derived type list; even in formal namespaces, where derived type
14624 pointer components might not have been declared. */
14625 if (c->ts.type == BT_DERIVED
14626 && c->ts.u.derived
14627 && c->ts.u.derived->components
14628 && c->attr.pointer
14629 && sym != c->ts.u.derived)
14630 add_dt_to_dt_list (c->ts.u.derived);
14631
14632 if (!gfc_resolve_array_spec (c->as,
14633 !(c->attr.pointer || c->attr.proc_pointer
14634 || c->attr.allocatable)))
14635 return false;
14636
14637 if (c->initializer && !sym->attr.vtype
14638 && !c->attr.pdt_kind && !c->attr.pdt_len
14639 && !gfc_check_assign_symbol (sym, c, c->initializer))
14640 return false;
14641
14642 return true;
14643 }
14644
14645
14646 /* Be nice about the locus for a structure expression - show the locus of the
14647 first non-null sub-expression if we can. */
14648
14649 static locus *
14650 cons_where (gfc_expr *struct_expr)
14651 {
14652 gfc_constructor *cons;
14653
14654 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
14655
14656 cons = gfc_constructor_first (struct_expr->value.constructor);
14657 for (; cons; cons = gfc_constructor_next (cons))
14658 {
14659 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
14660 return &cons->expr->where;
14661 }
14662
14663 return &struct_expr->where;
14664 }
14665
14666 /* Resolve the components of a structure type. Much less work than derived
14667 types. */
14668
14669 static bool
14670 resolve_fl_struct (gfc_symbol *sym)
14671 {
14672 gfc_component *c;
14673 gfc_expr *init = NULL;
14674 bool success;
14675
14676 /* Make sure UNIONs do not have overlapping initializers. */
14677 if (sym->attr.flavor == FL_UNION)
14678 {
14679 for (c = sym->components; c; c = c->next)
14680 {
14681 if (init && c->initializer)
14682 {
14683 gfc_error ("Conflicting initializers in union at %L and %L",
14684 cons_where (init), cons_where (c->initializer));
14685 gfc_free_expr (c->initializer);
14686 c->initializer = NULL;
14687 }
14688 if (init == NULL)
14689 init = c->initializer;
14690 }
14691 }
14692
14693 success = true;
14694 for (c = sym->components; c; c = c->next)
14695 if (!resolve_component (c, sym))
14696 success = false;
14697
14698 if (!success)
14699 return false;
14700
14701 if (sym->components)
14702 add_dt_to_dt_list (sym);
14703
14704 return true;
14705 }
14706
14707
14708 /* Resolve the components of a derived type. This does not have to wait until
14709 resolution stage, but can be done as soon as the dt declaration has been
14710 parsed. */
14711
14712 static bool
14713 resolve_fl_derived0 (gfc_symbol *sym)
14714 {
14715 gfc_symbol* super_type;
14716 gfc_component *c;
14717 gfc_formal_arglist *f;
14718 bool success;
14719
14720 if (sym->attr.unlimited_polymorphic)
14721 return true;
14722
14723 super_type = gfc_get_derived_super_type (sym);
14724
14725 /* F2008, C432. */
14726 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14727 {
14728 gfc_error ("As extending type %qs at %L has a coarray component, "
14729 "parent type %qs shall also have one", sym->name,
14730 &sym->declared_at, super_type->name);
14731 return false;
14732 }
14733
14734 /* Ensure the extended type gets resolved before we do. */
14735 if (super_type && !resolve_fl_derived0 (super_type))
14736 return false;
14737
14738 /* An ABSTRACT type must be extensible. */
14739 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14740 {
14741 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14742 sym->name, &sym->declared_at);
14743 return false;
14744 }
14745
14746 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14747 : sym->components;
14748
14749 success = true;
14750 for ( ; c != NULL; c = c->next)
14751 if (!resolve_component (c, sym))
14752 success = false;
14753
14754 if (!success)
14755 return false;
14756
14757 /* Now add the caf token field, where needed. */
14758 if (flag_coarray != GFC_FCOARRAY_NONE
14759 && !sym->attr.is_class && !sym->attr.vtype)
14760 {
14761 for (c = sym->components; c; c = c->next)
14762 if (!c->attr.dimension && !c->attr.codimension
14763 && (c->attr.allocatable || c->attr.pointer))
14764 {
14765 char name[GFC_MAX_SYMBOL_LEN+9];
14766 gfc_component *token;
14767 sprintf (name, "_caf_%s", c->name);
14768 token = gfc_find_component (sym, name, true, true, NULL);
14769 if (token == NULL)
14770 {
14771 if (!gfc_add_component (sym, name, &token))
14772 return false;
14773 token->ts.type = BT_VOID;
14774 token->ts.kind = gfc_default_integer_kind;
14775 token->attr.access = ACCESS_PRIVATE;
14776 token->attr.artificial = 1;
14777 token->attr.caf_token = 1;
14778 }
14779 }
14780 }
14781
14782 check_defined_assignments (sym);
14783
14784 if (!sym->attr.defined_assign_comp && super_type)
14785 sym->attr.defined_assign_comp
14786 = super_type->attr.defined_assign_comp;
14787
14788 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14789 all DEFERRED bindings are overridden. */
14790 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14791 && !sym->attr.is_class
14792 && !ensure_not_abstract (sym, super_type))
14793 return false;
14794
14795 /* Check that there is a component for every PDT parameter. */
14796 if (sym->attr.pdt_template)
14797 {
14798 for (f = sym->formal; f; f = f->next)
14799 {
14800 if (!f->sym)
14801 continue;
14802 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14803 if (c == NULL)
14804 {
14805 gfc_error ("Parameterized type %qs does not have a component "
14806 "corresponding to parameter %qs at %L", sym->name,
14807 f->sym->name, &sym->declared_at);
14808 break;
14809 }
14810 }
14811 }
14812
14813 /* Add derived type to the derived type list. */
14814 add_dt_to_dt_list (sym);
14815
14816 return true;
14817 }
14818
14819
14820 /* The following procedure does the full resolution of a derived type,
14821 including resolution of all type-bound procedures (if present). In contrast
14822 to 'resolve_fl_derived0' this can only be done after the module has been
14823 parsed completely. */
14824
14825 static bool
14826 resolve_fl_derived (gfc_symbol *sym)
14827 {
14828 gfc_symbol *gen_dt = NULL;
14829
14830 if (sym->attr.unlimited_polymorphic)
14831 return true;
14832
14833 if (!sym->attr.is_class)
14834 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14835 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14836 && (!gen_dt->generic->sym->attr.use_assoc
14837 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14838 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14839 "%qs at %L being the same name as derived "
14840 "type at %L", sym->name,
14841 gen_dt->generic->sym == sym
14842 ? gen_dt->generic->next->sym->name
14843 : gen_dt->generic->sym->name,
14844 gen_dt->generic->sym == sym
14845 ? &gen_dt->generic->next->sym->declared_at
14846 : &gen_dt->generic->sym->declared_at,
14847 &sym->declared_at))
14848 return false;
14849
14850 if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
14851 {
14852 gfc_error ("Derived type %qs at %L has not been declared",
14853 sym->name, &sym->declared_at);
14854 return false;
14855 }
14856
14857 /* Resolve the finalizer procedures. */
14858 if (!gfc_resolve_finalizers (sym, NULL))
14859 return false;
14860
14861 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14862 {
14863 /* Fix up incomplete CLASS symbols. */
14864 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14865 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14866
14867 /* Nothing more to do for unlimited polymorphic entities. */
14868 if (data->ts.u.derived->attr.unlimited_polymorphic)
14869 return true;
14870 else if (vptr->ts.u.derived == NULL)
14871 {
14872 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14873 gcc_assert (vtab);
14874 vptr->ts.u.derived = vtab->ts.u.derived;
14875 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14876 return false;
14877 }
14878 }
14879
14880 if (!resolve_fl_derived0 (sym))
14881 return false;
14882
14883 /* Resolve the type-bound procedures. */
14884 if (!resolve_typebound_procedures (sym))
14885 return false;
14886
14887 /* Generate module vtables subject to their accessibility and their not
14888 being vtables or pdt templates. If this is not done class declarations
14889 in external procedures wind up with their own version and so SELECT TYPE
14890 fails because the vptrs do not have the same address. */
14891 if (gfc_option.allow_std & GFC_STD_F2003
14892 && sym->ns->proc_name
14893 && sym->ns->proc_name->attr.flavor == FL_MODULE
14894 && sym->attr.access != ACCESS_PRIVATE
14895 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14896 {
14897 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14898 gfc_set_sym_referenced (vtab);
14899 }
14900
14901 return true;
14902 }
14903
14904
14905 static bool
14906 resolve_fl_namelist (gfc_symbol *sym)
14907 {
14908 gfc_namelist *nl;
14909 gfc_symbol *nlsym;
14910
14911 for (nl = sym->namelist; nl; nl = nl->next)
14912 {
14913 /* Check again, the check in match only works if NAMELIST comes
14914 after the decl. */
14915 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14916 {
14917 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14918 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14919 return false;
14920 }
14921
14922 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14923 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14924 "with assumed shape in namelist %qs at %L",
14925 nl->sym->name, sym->name, &sym->declared_at))
14926 return false;
14927
14928 if (is_non_constant_shape_array (nl->sym)
14929 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14930 "with nonconstant shape in namelist %qs at %L",
14931 nl->sym->name, sym->name, &sym->declared_at))
14932 return false;
14933
14934 if (nl->sym->ts.type == BT_CHARACTER
14935 && (nl->sym->ts.u.cl->length == NULL
14936 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14937 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14938 "nonconstant character length in "
14939 "namelist %qs at %L", nl->sym->name,
14940 sym->name, &sym->declared_at))
14941 return false;
14942
14943 }
14944
14945 /* Reject PRIVATE objects in a PUBLIC namelist. */
14946 if (gfc_check_symbol_access (sym))
14947 {
14948 for (nl = sym->namelist; nl; nl = nl->next)
14949 {
14950 if (!nl->sym->attr.use_assoc
14951 && !is_sym_host_assoc (nl->sym, sym->ns)
14952 && !gfc_check_symbol_access (nl->sym))
14953 {
14954 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14955 "cannot be member of PUBLIC namelist %qs at %L",
14956 nl->sym->name, sym->name, &sym->declared_at);
14957 return false;
14958 }
14959
14960 if (nl->sym->ts.type == BT_DERIVED
14961 && (nl->sym->ts.u.derived->attr.alloc_comp
14962 || nl->sym->ts.u.derived->attr.pointer_comp))
14963 {
14964 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14965 "namelist %qs at %L with ALLOCATABLE "
14966 "or POINTER components", nl->sym->name,
14967 sym->name, &sym->declared_at))
14968 return false;
14969 return true;
14970 }
14971
14972 /* Types with private components that came here by USE-association. */
14973 if (nl->sym->ts.type == BT_DERIVED
14974 && derived_inaccessible (nl->sym->ts.u.derived))
14975 {
14976 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14977 "components and cannot be member of namelist %qs at %L",
14978 nl->sym->name, sym->name, &sym->declared_at);
14979 return false;
14980 }
14981
14982 /* Types with private components that are defined in the same module. */
14983 if (nl->sym->ts.type == BT_DERIVED
14984 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14985 && nl->sym->ts.u.derived->attr.private_comp)
14986 {
14987 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14988 "cannot be a member of PUBLIC namelist %qs at %L",
14989 nl->sym->name, sym->name, &sym->declared_at);
14990 return false;
14991 }
14992 }
14993 }
14994
14995
14996 /* 14.1.2 A module or internal procedure represent local entities
14997 of the same type as a namelist member and so are not allowed. */
14998 for (nl = sym->namelist; nl; nl = nl->next)
14999 {
15000 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
15001 continue;
15002
15003 if (nl->sym->attr.function && nl->sym == nl->sym->result)
15004 if ((nl->sym == sym->ns->proc_name)
15005 ||
15006 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
15007 continue;
15008
15009 nlsym = NULL;
15010 if (nl->sym->name)
15011 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
15012 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
15013 {
15014 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
15015 "attribute in %qs at %L", nlsym->name,
15016 &sym->declared_at);
15017 return false;
15018 }
15019 }
15020
15021 return true;
15022 }
15023
15024
15025 static bool
15026 resolve_fl_parameter (gfc_symbol *sym)
15027 {
15028 /* A parameter array's shape needs to be constant. */
15029 if (sym->as != NULL
15030 && (sym->as->type == AS_DEFERRED
15031 || is_non_constant_shape_array (sym)))
15032 {
15033 gfc_error ("Parameter array %qs at %L cannot be automatic "
15034 "or of deferred shape", sym->name, &sym->declared_at);
15035 return false;
15036 }
15037
15038 /* Constraints on deferred type parameter. */
15039 if (!deferred_requirements (sym))
15040 return false;
15041
15042 /* Make sure a parameter that has been implicitly typed still
15043 matches the implicit type, since PARAMETER statements can precede
15044 IMPLICIT statements. */
15045 if (sym->attr.implicit_type
15046 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
15047 sym->ns)))
15048 {
15049 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
15050 "later IMPLICIT type", sym->name, &sym->declared_at);
15051 return false;
15052 }
15053
15054 /* Make sure the types of derived parameters are consistent. This
15055 type checking is deferred until resolution because the type may
15056 refer to a derived type from the host. */
15057 if (sym->ts.type == BT_DERIVED
15058 && !gfc_compare_types (&sym->ts, &sym->value->ts))
15059 {
15060 gfc_error ("Incompatible derived type in PARAMETER at %L",
15061 &sym->value->where);
15062 return false;
15063 }
15064
15065 /* F03:C509,C514. */
15066 if (sym->ts.type == BT_CLASS)
15067 {
15068 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
15069 sym->name, &sym->declared_at);
15070 return false;
15071 }
15072
15073 return true;
15074 }
15075
15076
15077 /* Called by resolve_symbol to check PDTs. */
15078
15079 static void
15080 resolve_pdt (gfc_symbol* sym)
15081 {
15082 gfc_symbol *derived = NULL;
15083 gfc_actual_arglist *param;
15084 gfc_component *c;
15085 bool const_len_exprs = true;
15086 bool assumed_len_exprs = false;
15087 symbol_attribute *attr;
15088
15089 if (sym->ts.type == BT_DERIVED)
15090 {
15091 derived = sym->ts.u.derived;
15092 attr = &(sym->attr);
15093 }
15094 else if (sym->ts.type == BT_CLASS)
15095 {
15096 derived = CLASS_DATA (sym)->ts.u.derived;
15097 attr = &(CLASS_DATA (sym)->attr);
15098 }
15099 else
15100 gcc_unreachable ();
15101
15102 gcc_assert (derived->attr.pdt_type);
15103
15104 for (param = sym->param_list; param; param = param->next)
15105 {
15106 c = gfc_find_component (derived, param->name, false, true, NULL);
15107 gcc_assert (c);
15108 if (c->attr.pdt_kind)
15109 continue;
15110
15111 if (param->expr && !gfc_is_constant_expr (param->expr)
15112 && c->attr.pdt_len)
15113 const_len_exprs = false;
15114 else if (param->spec_type == SPEC_ASSUMED)
15115 assumed_len_exprs = true;
15116
15117 if (param->spec_type == SPEC_DEFERRED
15118 && !attr->allocatable && !attr->pointer)
15119 gfc_error ("The object %qs at %L has a deferred LEN "
15120 "parameter %qs and is neither allocatable "
15121 "nor a pointer", sym->name, &sym->declared_at,
15122 param->name);
15123
15124 }
15125
15126 if (!const_len_exprs
15127 && (sym->ns->proc_name->attr.is_main_program
15128 || sym->ns->proc_name->attr.flavor == FL_MODULE
15129 || sym->attr.save != SAVE_NONE))
15130 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
15131 "SAVE attribute or be a variable declared in the "
15132 "main program, a module or a submodule(F08/C513)",
15133 sym->name, &sym->declared_at);
15134
15135 if (assumed_len_exprs && !(sym->attr.dummy
15136 || sym->attr.select_type_temporary || sym->attr.associate_var))
15137 gfc_error ("The object %qs at %L with ASSUMED type parameters "
15138 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
15139 sym->name, &sym->declared_at);
15140 }
15141
15142
15143 /* Do anything necessary to resolve a symbol. Right now, we just
15144 assume that an otherwise unknown symbol is a variable. This sort
15145 of thing commonly happens for symbols in module. */
15146
15147 static void
15148 resolve_symbol (gfc_symbol *sym)
15149 {
15150 int check_constant, mp_flag;
15151 gfc_symtree *symtree;
15152 gfc_symtree *this_symtree;
15153 gfc_namespace *ns;
15154 gfc_component *c;
15155 symbol_attribute class_attr;
15156 gfc_array_spec *as;
15157 bool saved_specification_expr;
15158
15159 if (sym->resolve_symbol_called >= 1)
15160 return;
15161 sym->resolve_symbol_called = 1;
15162
15163 /* No symbol will ever have union type; only components can be unions.
15164 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
15165 (just like derived type declaration symbols have flavor FL_DERIVED). */
15166 gcc_assert (sym->ts.type != BT_UNION);
15167
15168 /* Coarrayed polymorphic objects with allocatable or pointer components are
15169 yet unsupported for -fcoarray=lib. */
15170 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
15171 && sym->ts.u.derived && CLASS_DATA (sym)
15172 && CLASS_DATA (sym)->attr.codimension
15173 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
15174 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
15175 {
15176 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
15177 "type coarrays at %L are unsupported", &sym->declared_at);
15178 return;
15179 }
15180
15181 if (sym->attr.artificial)
15182 return;
15183
15184 if (sym->attr.unlimited_polymorphic)
15185 return;
15186
15187 if (sym->attr.flavor == FL_UNKNOWN
15188 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
15189 && !sym->attr.generic && !sym->attr.external
15190 && sym->attr.if_source == IFSRC_UNKNOWN
15191 && sym->ts.type == BT_UNKNOWN))
15192 {
15193
15194 /* If we find that a flavorless symbol is an interface in one of the
15195 parent namespaces, find its symtree in this namespace, free the
15196 symbol and set the symtree to point to the interface symbol. */
15197 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
15198 {
15199 symtree = gfc_find_symtree (ns->sym_root, sym->name);
15200 if (symtree && (symtree->n.sym->generic ||
15201 (symtree->n.sym->attr.flavor == FL_PROCEDURE
15202 && sym->ns->construct_entities)))
15203 {
15204 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
15205 sym->name);
15206 if (this_symtree->n.sym == sym)
15207 {
15208 symtree->n.sym->refs++;
15209 gfc_release_symbol (sym);
15210 this_symtree->n.sym = symtree->n.sym;
15211 return;
15212 }
15213 }
15214 }
15215
15216 /* Otherwise give it a flavor according to such attributes as
15217 it has. */
15218 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
15219 && sym->attr.intrinsic == 0)
15220 sym->attr.flavor = FL_VARIABLE;
15221 else if (sym->attr.flavor == FL_UNKNOWN)
15222 {
15223 sym->attr.flavor = FL_PROCEDURE;
15224 if (sym->attr.dimension)
15225 sym->attr.function = 1;
15226 }
15227 }
15228
15229 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
15230 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
15231
15232 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
15233 && !resolve_procedure_interface (sym))
15234 return;
15235
15236 if (sym->attr.is_protected && !sym->attr.proc_pointer
15237 && (sym->attr.procedure || sym->attr.external))
15238 {
15239 if (sym->attr.external)
15240 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
15241 "at %L", &sym->declared_at);
15242 else
15243 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
15244 "at %L", &sym->declared_at);
15245
15246 return;
15247 }
15248
15249 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
15250 return;
15251
15252 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
15253 && !resolve_fl_struct (sym))
15254 return;
15255
15256 /* Symbols that are module procedures with results (functions) have
15257 the types and array specification copied for type checking in
15258 procedures that call them, as well as for saving to a module
15259 file. These symbols can't stand the scrutiny that their results
15260 can. */
15261 mp_flag = (sym->result != NULL && sym->result != sym);
15262
15263 /* Make sure that the intrinsic is consistent with its internal
15264 representation. This needs to be done before assigning a default
15265 type to avoid spurious warnings. */
15266 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
15267 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
15268 return;
15269
15270 /* Resolve associate names. */
15271 if (sym->assoc)
15272 resolve_assoc_var (sym, true);
15273
15274 /* Assign default type to symbols that need one and don't have one. */
15275 if (sym->ts.type == BT_UNKNOWN)
15276 {
15277 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
15278 {
15279 gfc_set_default_type (sym, 1, NULL);
15280 }
15281
15282 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
15283 && !sym->attr.function && !sym->attr.subroutine
15284 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
15285 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
15286
15287 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15288 {
15289 /* The specific case of an external procedure should emit an error
15290 in the case that there is no implicit type. */
15291 if (!mp_flag)
15292 {
15293 if (!sym->attr.mixed_entry_master)
15294 gfc_set_default_type (sym, sym->attr.external, NULL);
15295 }
15296 else
15297 {
15298 /* Result may be in another namespace. */
15299 resolve_symbol (sym->result);
15300
15301 if (!sym->result->attr.proc_pointer)
15302 {
15303 sym->ts = sym->result->ts;
15304 sym->as = gfc_copy_array_spec (sym->result->as);
15305 sym->attr.dimension = sym->result->attr.dimension;
15306 sym->attr.pointer = sym->result->attr.pointer;
15307 sym->attr.allocatable = sym->result->attr.allocatable;
15308 sym->attr.contiguous = sym->result->attr.contiguous;
15309 }
15310 }
15311 }
15312 }
15313 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
15314 {
15315 bool saved_specification_expr = specification_expr;
15316 specification_expr = true;
15317 gfc_resolve_array_spec (sym->result->as, false);
15318 specification_expr = saved_specification_expr;
15319 }
15320
15321 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
15322 {
15323 as = CLASS_DATA (sym)->as;
15324 class_attr = CLASS_DATA (sym)->attr;
15325 class_attr.pointer = class_attr.class_pointer;
15326 }
15327 else
15328 {
15329 class_attr = sym->attr;
15330 as = sym->as;
15331 }
15332
15333 /* F2008, C530. */
15334 if (sym->attr.contiguous
15335 && (!class_attr.dimension
15336 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
15337 && !class_attr.pointer)))
15338 {
15339 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
15340 "array pointer or an assumed-shape or assumed-rank array",
15341 sym->name, &sym->declared_at);
15342 return;
15343 }
15344
15345 /* Assumed size arrays and assumed shape arrays must be dummy
15346 arguments. Array-spec's of implied-shape should have been resolved to
15347 AS_EXPLICIT already. */
15348
15349 if (as)
15350 {
15351 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
15352 specification expression. */
15353 if (as->type == AS_IMPLIED_SHAPE)
15354 {
15355 int i;
15356 for (i=0; i<as->rank; i++)
15357 {
15358 if (as->lower[i] != NULL && as->upper[i] == NULL)
15359 {
15360 gfc_error ("Bad specification for assumed size array at %L",
15361 &as->lower[i]->where);
15362 return;
15363 }
15364 }
15365 gcc_unreachable();
15366 }
15367
15368 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
15369 || as->type == AS_ASSUMED_SHAPE)
15370 && !sym->attr.dummy && !sym->attr.select_type_temporary)
15371 {
15372 if (as->type == AS_ASSUMED_SIZE)
15373 gfc_error ("Assumed size array at %L must be a dummy argument",
15374 &sym->declared_at);
15375 else
15376 gfc_error ("Assumed shape array at %L must be a dummy argument",
15377 &sym->declared_at);
15378 return;
15379 }
15380 /* TS 29113, C535a. */
15381 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
15382 && !sym->attr.select_type_temporary
15383 && !(cs_base && cs_base->current
15384 && cs_base->current->op == EXEC_SELECT_RANK))
15385 {
15386 gfc_error ("Assumed-rank array at %L must be a dummy argument",
15387 &sym->declared_at);
15388 return;
15389 }
15390 if (as->type == AS_ASSUMED_RANK
15391 && (sym->attr.codimension || sym->attr.value))
15392 {
15393 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
15394 "CODIMENSION attribute", &sym->declared_at);
15395 return;
15396 }
15397 }
15398
15399 /* Make sure symbols with known intent or optional are really dummy
15400 variable. Because of ENTRY statement, this has to be deferred
15401 until resolution time. */
15402
15403 if (!sym->attr.dummy
15404 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
15405 {
15406 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
15407 return;
15408 }
15409
15410 if (sym->attr.value && !sym->attr.dummy)
15411 {
15412 gfc_error ("%qs at %L cannot have the VALUE attribute because "
15413 "it is not a dummy argument", sym->name, &sym->declared_at);
15414 return;
15415 }
15416
15417 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
15418 {
15419 gfc_charlen *cl = sym->ts.u.cl;
15420 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
15421 {
15422 gfc_error ("Character dummy variable %qs at %L with VALUE "
15423 "attribute must have constant length",
15424 sym->name, &sym->declared_at);
15425 return;
15426 }
15427
15428 if (sym->ts.is_c_interop
15429 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
15430 {
15431 gfc_error ("C interoperable character dummy variable %qs at %L "
15432 "with VALUE attribute must have length one",
15433 sym->name, &sym->declared_at);
15434 return;
15435 }
15436 }
15437
15438 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15439 && sym->ts.u.derived->attr.generic)
15440 {
15441 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
15442 if (!sym->ts.u.derived)
15443 {
15444 gfc_error ("The derived type %qs at %L is of type %qs, "
15445 "which has not been defined", sym->name,
15446 &sym->declared_at, sym->ts.u.derived->name);
15447 sym->ts.type = BT_UNKNOWN;
15448 return;
15449 }
15450 }
15451
15452 /* Use the same constraints as TYPE(*), except for the type check
15453 and that only scalars and assumed-size arrays are permitted. */
15454 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
15455 {
15456 if (!sym->attr.dummy)
15457 {
15458 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15459 "a dummy argument", sym->name, &sym->declared_at);
15460 return;
15461 }
15462
15463 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
15464 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
15465 && sym->ts.type != BT_COMPLEX)
15466 {
15467 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15468 "of type TYPE(*) or of an numeric intrinsic type",
15469 sym->name, &sym->declared_at);
15470 return;
15471 }
15472
15473 if (sym->attr.allocatable || sym->attr.codimension
15474 || sym->attr.pointer || sym->attr.value)
15475 {
15476 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15477 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
15478 "attribute", sym->name, &sym->declared_at);
15479 return;
15480 }
15481
15482 if (sym->attr.intent == INTENT_OUT)
15483 {
15484 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15485 "have the INTENT(OUT) attribute",
15486 sym->name, &sym->declared_at);
15487 return;
15488 }
15489 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
15490 {
15491 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
15492 "either be a scalar or an assumed-size array",
15493 sym->name, &sym->declared_at);
15494 return;
15495 }
15496
15497 /* Set the type to TYPE(*) and add a dimension(*) to ensure
15498 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
15499 packing. */
15500 sym->ts.type = BT_ASSUMED;
15501 sym->as = gfc_get_array_spec ();
15502 sym->as->type = AS_ASSUMED_SIZE;
15503 sym->as->rank = 1;
15504 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
15505 }
15506 else if (sym->ts.type == BT_ASSUMED)
15507 {
15508 /* TS 29113, C407a. */
15509 if (!sym->attr.dummy)
15510 {
15511 gfc_error ("Assumed type of variable %s at %L is only permitted "
15512 "for dummy variables", sym->name, &sym->declared_at);
15513 return;
15514 }
15515 if (sym->attr.allocatable || sym->attr.codimension
15516 || sym->attr.pointer || sym->attr.value)
15517 {
15518 gfc_error ("Assumed-type variable %s at %L may not have the "
15519 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
15520 sym->name, &sym->declared_at);
15521 return;
15522 }
15523 if (sym->attr.intent == INTENT_OUT)
15524 {
15525 gfc_error ("Assumed-type variable %s at %L may not have the "
15526 "INTENT(OUT) attribute",
15527 sym->name, &sym->declared_at);
15528 return;
15529 }
15530 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
15531 {
15532 gfc_error ("Assumed-type variable %s at %L shall not be an "
15533 "explicit-shape array", sym->name, &sym->declared_at);
15534 return;
15535 }
15536 }
15537
15538 /* If the symbol is marked as bind(c), that it is declared at module level
15539 scope and verify its type and kind. Do not do the latter for symbols
15540 that are implicitly typed because that is handled in
15541 gfc_set_default_type. Handle dummy arguments and procedure definitions
15542 separately. Also, anything that is use associated is not handled here
15543 but instead is handled in the module it is declared in. Finally, derived
15544 type definitions are allowed to be BIND(C) since that only implies that
15545 they're interoperable, and they are checked fully for interoperability
15546 when a variable is declared of that type. */
15547 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
15548 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
15549 && sym->attr.flavor != FL_DERIVED)
15550 {
15551 bool t = true;
15552
15553 /* First, make sure the variable is declared at the
15554 module-level scope (J3/04-007, Section 15.3). */
15555 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
15556 sym->attr.in_common == 0)
15557 {
15558 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
15559 "is neither a COMMON block nor declared at the "
15560 "module level scope", sym->name, &(sym->declared_at));
15561 t = false;
15562 }
15563 else if (sym->ts.type == BT_CHARACTER
15564 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
15565 || !gfc_is_constant_expr (sym->ts.u.cl->length)
15566 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
15567 {
15568 gfc_error ("BIND(C) Variable %qs at %L must have length one",
15569 sym->name, &sym->declared_at);
15570 t = false;
15571 }
15572 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
15573 {
15574 t = verify_com_block_vars_c_interop (sym->common_head);
15575 }
15576 else if (sym->attr.implicit_type == 0)
15577 {
15578 /* If type() declaration, we need to verify that the components
15579 of the given type are all C interoperable, etc. */
15580 if (sym->ts.type == BT_DERIVED &&
15581 sym->ts.u.derived->attr.is_c_interop != 1)
15582 {
15583 /* Make sure the user marked the derived type as BIND(C). If
15584 not, call the verify routine. This could print an error
15585 for the derived type more than once if multiple variables
15586 of that type are declared. */
15587 if (sym->ts.u.derived->attr.is_bind_c != 1)
15588 verify_bind_c_derived_type (sym->ts.u.derived);
15589 t = false;
15590 }
15591
15592 /* Verify the variable itself as C interoperable if it
15593 is BIND(C). It is not possible for this to succeed if
15594 the verify_bind_c_derived_type failed, so don't have to handle
15595 any error returned by verify_bind_c_derived_type. */
15596 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
15597 sym->common_block);
15598 }
15599
15600 if (!t)
15601 {
15602 /* clear the is_bind_c flag to prevent reporting errors more than
15603 once if something failed. */
15604 sym->attr.is_bind_c = 0;
15605 return;
15606 }
15607 }
15608
15609 /* If a derived type symbol has reached this point, without its
15610 type being declared, we have an error. Notice that most
15611 conditions that produce undefined derived types have already
15612 been dealt with. However, the likes of:
15613 implicit type(t) (t) ..... call foo (t) will get us here if
15614 the type is not declared in the scope of the implicit
15615 statement. Change the type to BT_UNKNOWN, both because it is so
15616 and to prevent an ICE. */
15617 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15618 && sym->ts.u.derived->components == NULL
15619 && !sym->ts.u.derived->attr.zero_comp)
15620 {
15621 gfc_error ("The derived type %qs at %L is of type %qs, "
15622 "which has not been defined", sym->name,
15623 &sym->declared_at, sym->ts.u.derived->name);
15624 sym->ts.type = BT_UNKNOWN;
15625 return;
15626 }
15627
15628 /* Make sure that the derived type has been resolved and that the
15629 derived type is visible in the symbol's namespace, if it is a
15630 module function and is not PRIVATE. */
15631 if (sym->ts.type == BT_DERIVED
15632 && sym->ts.u.derived->attr.use_assoc
15633 && sym->ns->proc_name
15634 && sym->ns->proc_name->attr.flavor == FL_MODULE
15635 && !resolve_fl_derived (sym->ts.u.derived))
15636 return;
15637
15638 /* Unless the derived-type declaration is use associated, Fortran 95
15639 does not allow public entries of private derived types.
15640 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
15641 161 in 95-006r3. */
15642 if (sym->ts.type == BT_DERIVED
15643 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
15644 && !sym->ts.u.derived->attr.use_assoc
15645 && gfc_check_symbol_access (sym)
15646 && !gfc_check_symbol_access (sym->ts.u.derived)
15647 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
15648 "derived type %qs",
15649 (sym->attr.flavor == FL_PARAMETER)
15650 ? "parameter" : "variable",
15651 sym->name, &sym->declared_at,
15652 sym->ts.u.derived->name))
15653 return;
15654
15655 /* F2008, C1302. */
15656 if (sym->ts.type == BT_DERIVED
15657 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15658 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
15659 || sym->ts.u.derived->attr.lock_comp)
15660 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15661 {
15662 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
15663 "type LOCK_TYPE must be a coarray", sym->name,
15664 &sym->declared_at);
15665 return;
15666 }
15667
15668 /* TS18508, C702/C703. */
15669 if (sym->ts.type == BT_DERIVED
15670 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15671 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
15672 || sym->ts.u.derived->attr.event_comp)
15673 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15674 {
15675 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
15676 "type EVENT_TYPE must be a coarray", sym->name,
15677 &sym->declared_at);
15678 return;
15679 }
15680
15681 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
15682 default initialization is defined (5.1.2.4.4). */
15683 if (sym->ts.type == BT_DERIVED
15684 && sym->attr.dummy
15685 && sym->attr.intent == INTENT_OUT
15686 && sym->as
15687 && sym->as->type == AS_ASSUMED_SIZE)
15688 {
15689 for (c = sym->ts.u.derived->components; c; c = c->next)
15690 {
15691 if (c->initializer)
15692 {
15693 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
15694 "ASSUMED SIZE and so cannot have a default initializer",
15695 sym->name, &sym->declared_at);
15696 return;
15697 }
15698 }
15699 }
15700
15701 /* F2008, C542. */
15702 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15703 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
15704 {
15705 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
15706 "INTENT(OUT)", sym->name, &sym->declared_at);
15707 return;
15708 }
15709
15710 /* TS18508. */
15711 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15712 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
15713 {
15714 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
15715 "INTENT(OUT)", sym->name, &sym->declared_at);
15716 return;
15717 }
15718
15719 /* F2008, C525. */
15720 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15721 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15722 && CLASS_DATA (sym)->attr.coarray_comp))
15723 || class_attr.codimension)
15724 && (sym->attr.result || sym->result == sym))
15725 {
15726 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15727 "a coarray component", sym->name, &sym->declared_at);
15728 return;
15729 }
15730
15731 /* F2008, C524. */
15732 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15733 && sym->ts.u.derived->ts.is_iso_c)
15734 {
15735 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15736 "shall not be a coarray", sym->name, &sym->declared_at);
15737 return;
15738 }
15739
15740 /* F2008, C525. */
15741 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15742 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15743 && CLASS_DATA (sym)->attr.coarray_comp))
15744 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15745 || class_attr.allocatable))
15746 {
15747 gfc_error ("Variable %qs at %L with coarray component shall be a "
15748 "nonpointer, nonallocatable scalar, which is not a coarray",
15749 sym->name, &sym->declared_at);
15750 return;
15751 }
15752
15753 /* F2008, C526. The function-result case was handled above. */
15754 if (class_attr.codimension
15755 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15756 || sym->attr.select_type_temporary
15757 || sym->attr.associate_var
15758 || (sym->ns->save_all && !sym->attr.automatic)
15759 || sym->ns->proc_name->attr.flavor == FL_MODULE
15760 || sym->ns->proc_name->attr.is_main_program
15761 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15762 {
15763 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15764 "nor a dummy argument", sym->name, &sym->declared_at);
15765 return;
15766 }
15767 /* F2008, C528. */
15768 else if (class_attr.codimension && !sym->attr.select_type_temporary
15769 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15770 {
15771 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15772 "deferred shape", sym->name, &sym->declared_at);
15773 return;
15774 }
15775 else if (class_attr.codimension && class_attr.allocatable && as
15776 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15777 {
15778 gfc_error ("Allocatable coarray variable %qs at %L must have "
15779 "deferred shape", sym->name, &sym->declared_at);
15780 return;
15781 }
15782
15783 /* F2008, C541. */
15784 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15785 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15786 && CLASS_DATA (sym)->attr.coarray_comp))
15787 || (class_attr.codimension && class_attr.allocatable))
15788 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15789 {
15790 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15791 "allocatable coarray or have coarray components",
15792 sym->name, &sym->declared_at);
15793 return;
15794 }
15795
15796 if (class_attr.codimension && sym->attr.dummy
15797 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15798 {
15799 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15800 "procedure %qs", sym->name, &sym->declared_at,
15801 sym->ns->proc_name->name);
15802 return;
15803 }
15804
15805 if (sym->ts.type == BT_LOGICAL
15806 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15807 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15808 && sym->ns->proc_name->attr.is_bind_c)))
15809 {
15810 int i;
15811 for (i = 0; gfc_logical_kinds[i].kind; i++)
15812 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15813 break;
15814 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15815 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15816 "%L with non-C_Bool kind in BIND(C) procedure "
15817 "%qs", sym->name, &sym->declared_at,
15818 sym->ns->proc_name->name))
15819 return;
15820 else if (!gfc_logical_kinds[i].c_bool
15821 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15822 "%qs at %L with non-C_Bool kind in "
15823 "BIND(C) procedure %qs", sym->name,
15824 &sym->declared_at,
15825 sym->attr.function ? sym->name
15826 : sym->ns->proc_name->name))
15827 return;
15828 }
15829
15830 switch (sym->attr.flavor)
15831 {
15832 case FL_VARIABLE:
15833 if (!resolve_fl_variable (sym, mp_flag))
15834 return;
15835 break;
15836
15837 case FL_PROCEDURE:
15838 if (sym->formal && !sym->formal_ns)
15839 {
15840 /* Check that none of the arguments are a namelist. */
15841 gfc_formal_arglist *formal = sym->formal;
15842
15843 for (; formal; formal = formal->next)
15844 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15845 {
15846 gfc_error ("Namelist %qs cannot be an argument to "
15847 "subroutine or function at %L",
15848 formal->sym->name, &sym->declared_at);
15849 return;
15850 }
15851 }
15852
15853 if (!resolve_fl_procedure (sym, mp_flag))
15854 return;
15855 break;
15856
15857 case FL_NAMELIST:
15858 if (!resolve_fl_namelist (sym))
15859 return;
15860 break;
15861
15862 case FL_PARAMETER:
15863 if (!resolve_fl_parameter (sym))
15864 return;
15865 break;
15866
15867 default:
15868 break;
15869 }
15870
15871 /* Resolve array specifier. Check as well some constraints
15872 on COMMON blocks. */
15873
15874 check_constant = sym->attr.in_common && !sym->attr.pointer;
15875
15876 /* Set the formal_arg_flag so that check_conflict will not throw
15877 an error for host associated variables in the specification
15878 expression for an array_valued function. */
15879 if ((sym->attr.function || sym->attr.result) && sym->as)
15880 formal_arg_flag = true;
15881
15882 saved_specification_expr = specification_expr;
15883 specification_expr = true;
15884 gfc_resolve_array_spec (sym->as, check_constant);
15885 specification_expr = saved_specification_expr;
15886
15887 formal_arg_flag = false;
15888
15889 /* Resolve formal namespaces. */
15890 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15891 && !sym->attr.contained && !sym->attr.intrinsic)
15892 gfc_resolve (sym->formal_ns);
15893
15894 /* Make sure the formal namespace is present. */
15895 if (sym->formal && !sym->formal_ns)
15896 {
15897 gfc_formal_arglist *formal = sym->formal;
15898 while (formal && !formal->sym)
15899 formal = formal->next;
15900
15901 if (formal)
15902 {
15903 sym->formal_ns = formal->sym->ns;
15904 if (sym->ns != formal->sym->ns)
15905 sym->formal_ns->refs++;
15906 }
15907 }
15908
15909 /* Check threadprivate restrictions. */
15910 if (sym->attr.threadprivate && !sym->attr.save
15911 && !(sym->ns->save_all && !sym->attr.automatic)
15912 && (!sym->attr.in_common
15913 && sym->module == NULL
15914 && (sym->ns->proc_name == NULL
15915 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15916 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15917
15918 /* Check omp declare target restrictions. */
15919 if (sym->attr.omp_declare_target
15920 && sym->attr.flavor == FL_VARIABLE
15921 && !sym->attr.save
15922 && !(sym->ns->save_all && !sym->attr.automatic)
15923 && (!sym->attr.in_common
15924 && sym->module == NULL
15925 && (sym->ns->proc_name == NULL
15926 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15927 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15928 sym->name, &sym->declared_at);
15929
15930 /* If we have come this far we can apply default-initializers, as
15931 described in 14.7.5, to those variables that have not already
15932 been assigned one. */
15933 if (sym->ts.type == BT_DERIVED
15934 && !sym->value
15935 && !sym->attr.allocatable
15936 && !sym->attr.alloc_comp)
15937 {
15938 symbol_attribute *a = &sym->attr;
15939
15940 if ((!a->save && !a->dummy && !a->pointer
15941 && !a->in_common && !a->use_assoc
15942 && a->referenced
15943 && !((a->function || a->result)
15944 && (!a->dimension
15945 || sym->ts.u.derived->attr.alloc_comp
15946 || sym->ts.u.derived->attr.pointer_comp))
15947 && !(a->function && sym != sym->result))
15948 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15949 apply_default_init (sym);
15950 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15951 && (sym->ts.u.derived->attr.alloc_comp
15952 || sym->ts.u.derived->attr.pointer_comp))
15953 /* Mark the result symbol to be referenced, when it has allocatable
15954 components. */
15955 sym->result->attr.referenced = 1;
15956 }
15957
15958 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15959 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15960 && !CLASS_DATA (sym)->attr.class_pointer
15961 && !CLASS_DATA (sym)->attr.allocatable)
15962 apply_default_init (sym);
15963
15964 /* If this symbol has a type-spec, check it. */
15965 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15966 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15967 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15968 return;
15969
15970 if (sym->param_list)
15971 resolve_pdt (sym);
15972 }
15973
15974
15975 /************* Resolve DATA statements *************/
15976
15977 static struct
15978 {
15979 gfc_data_value *vnode;
15980 mpz_t left;
15981 }
15982 values;
15983
15984
15985 /* Advance the values structure to point to the next value in the data list. */
15986
15987 static bool
15988 next_data_value (void)
15989 {
15990 while (mpz_cmp_ui (values.left, 0) == 0)
15991 {
15992
15993 if (values.vnode->next == NULL)
15994 return false;
15995
15996 values.vnode = values.vnode->next;
15997 mpz_set (values.left, values.vnode->repeat);
15998 }
15999
16000 return true;
16001 }
16002
16003
16004 static bool
16005 check_data_variable (gfc_data_variable *var, locus *where)
16006 {
16007 gfc_expr *e;
16008 mpz_t size;
16009 mpz_t offset;
16010 bool t;
16011 ar_type mark = AR_UNKNOWN;
16012 int i;
16013 mpz_t section_index[GFC_MAX_DIMENSIONS];
16014 gfc_ref *ref;
16015 gfc_array_ref *ar;
16016 gfc_symbol *sym;
16017 int has_pointer;
16018
16019 if (!gfc_resolve_expr (var->expr))
16020 return false;
16021
16022 ar = NULL;
16023 mpz_init_set_si (offset, 0);
16024 e = var->expr;
16025
16026 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
16027 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
16028 e = e->value.function.actual->expr;
16029
16030 if (e->expr_type != EXPR_VARIABLE)
16031 {
16032 gfc_error ("Expecting definable entity near %L", where);
16033 return false;
16034 }
16035
16036 sym = e->symtree->n.sym;
16037
16038 if (sym->ns->is_block_data && !sym->attr.in_common)
16039 {
16040 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
16041 sym->name, &sym->declared_at);
16042 return false;
16043 }
16044
16045 if (e->ref == NULL && sym->as)
16046 {
16047 gfc_error ("DATA array %qs at %L must be specified in a previous"
16048 " declaration", sym->name, where);
16049 return false;
16050 }
16051
16052 if (gfc_is_coindexed (e))
16053 {
16054 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
16055 where);
16056 return false;
16057 }
16058
16059 has_pointer = sym->attr.pointer;
16060
16061 for (ref = e->ref; ref; ref = ref->next)
16062 {
16063 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
16064 has_pointer = 1;
16065
16066 if (has_pointer)
16067 {
16068 if (ref->type == REF_ARRAY && ref->u.ar.type != AR_FULL)
16069 {
16070 gfc_error ("DATA element %qs at %L is a pointer and so must "
16071 "be a full array", sym->name, where);
16072 return false;
16073 }
16074
16075 if (values.vnode->expr->expr_type == EXPR_CONSTANT)
16076 {
16077 gfc_error ("DATA object near %L has the pointer attribute "
16078 "and the corresponding DATA value is not a valid "
16079 "initial-data-target", where);
16080 return false;
16081 }
16082 }
16083 }
16084
16085 if (e->rank == 0 || has_pointer)
16086 {
16087 mpz_init_set_ui (size, 1);
16088 ref = NULL;
16089 }
16090 else
16091 {
16092 ref = e->ref;
16093
16094 /* Find the array section reference. */
16095 for (ref = e->ref; ref; ref = ref->next)
16096 {
16097 if (ref->type != REF_ARRAY)
16098 continue;
16099 if (ref->u.ar.type == AR_ELEMENT)
16100 continue;
16101 break;
16102 }
16103 gcc_assert (ref);
16104
16105 /* Set marks according to the reference pattern. */
16106 switch (ref->u.ar.type)
16107 {
16108 case AR_FULL:
16109 mark = AR_FULL;
16110 break;
16111
16112 case AR_SECTION:
16113 ar = &ref->u.ar;
16114 /* Get the start position of array section. */
16115 gfc_get_section_index (ar, section_index, &offset);
16116 mark = AR_SECTION;
16117 break;
16118
16119 default:
16120 gcc_unreachable ();
16121 }
16122
16123 if (!gfc_array_size (e, &size))
16124 {
16125 gfc_error ("Nonconstant array section at %L in DATA statement",
16126 where);
16127 mpz_clear (offset);
16128 return false;
16129 }
16130 }
16131
16132 t = true;
16133
16134 while (mpz_cmp_ui (size, 0) > 0)
16135 {
16136 if (!next_data_value ())
16137 {
16138 gfc_error ("DATA statement at %L has more variables than values",
16139 where);
16140 t = false;
16141 break;
16142 }
16143
16144 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
16145 if (!t)
16146 break;
16147
16148 /* If we have more than one element left in the repeat count,
16149 and we have more than one element left in the target variable,
16150 then create a range assignment. */
16151 /* FIXME: Only done for full arrays for now, since array sections
16152 seem tricky. */
16153 if (mark == AR_FULL && ref && ref->next == NULL
16154 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
16155 {
16156 mpz_t range;
16157
16158 if (mpz_cmp (size, values.left) >= 0)
16159 {
16160 mpz_init_set (range, values.left);
16161 mpz_sub (size, size, values.left);
16162 mpz_set_ui (values.left, 0);
16163 }
16164 else
16165 {
16166 mpz_init_set (range, size);
16167 mpz_sub (values.left, values.left, size);
16168 mpz_set_ui (size, 0);
16169 }
16170
16171 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16172 offset, &range);
16173
16174 mpz_add (offset, offset, range);
16175 mpz_clear (range);
16176
16177 if (!t)
16178 break;
16179 }
16180
16181 /* Assign initial value to symbol. */
16182 else
16183 {
16184 mpz_sub_ui (values.left, values.left, 1);
16185 mpz_sub_ui (size, size, 1);
16186
16187 t = gfc_assign_data_value (var->expr, values.vnode->expr,
16188 offset, NULL);
16189 if (!t)
16190 break;
16191
16192 if (mark == AR_FULL)
16193 mpz_add_ui (offset, offset, 1);
16194
16195 /* Modify the array section indexes and recalculate the offset
16196 for next element. */
16197 else if (mark == AR_SECTION)
16198 gfc_advance_section (section_index, ar, &offset);
16199 }
16200 }
16201
16202 if (mark == AR_SECTION)
16203 {
16204 for (i = 0; i < ar->dimen; i++)
16205 mpz_clear (section_index[i]);
16206 }
16207
16208 mpz_clear (size);
16209 mpz_clear (offset);
16210
16211 return t;
16212 }
16213
16214
16215 static bool traverse_data_var (gfc_data_variable *, locus *);
16216
16217 /* Iterate over a list of elements in a DATA statement. */
16218
16219 static bool
16220 traverse_data_list (gfc_data_variable *var, locus *where)
16221 {
16222 mpz_t trip;
16223 iterator_stack frame;
16224 gfc_expr *e, *start, *end, *step;
16225 bool retval = true;
16226
16227 mpz_init (frame.value);
16228 mpz_init (trip);
16229
16230 start = gfc_copy_expr (var->iter.start);
16231 end = gfc_copy_expr (var->iter.end);
16232 step = gfc_copy_expr (var->iter.step);
16233
16234 if (!gfc_simplify_expr (start, 1)
16235 || start->expr_type != EXPR_CONSTANT)
16236 {
16237 gfc_error ("start of implied-do loop at %L could not be "
16238 "simplified to a constant value", &start->where);
16239 retval = false;
16240 goto cleanup;
16241 }
16242 if (!gfc_simplify_expr (end, 1)
16243 || end->expr_type != EXPR_CONSTANT)
16244 {
16245 gfc_error ("end of implied-do loop at %L could not be "
16246 "simplified to a constant value", &start->where);
16247 retval = false;
16248 goto cleanup;
16249 }
16250 if (!gfc_simplify_expr (step, 1)
16251 || step->expr_type != EXPR_CONSTANT)
16252 {
16253 gfc_error ("step of implied-do loop at %L could not be "
16254 "simplified to a constant value", &start->where);
16255 retval = false;
16256 goto cleanup;
16257 }
16258
16259 mpz_set (trip, end->value.integer);
16260 mpz_sub (trip, trip, start->value.integer);
16261 mpz_add (trip, trip, step->value.integer);
16262
16263 mpz_div (trip, trip, step->value.integer);
16264
16265 mpz_set (frame.value, start->value.integer);
16266
16267 frame.prev = iter_stack;
16268 frame.variable = var->iter.var->symtree;
16269 iter_stack = &frame;
16270
16271 while (mpz_cmp_ui (trip, 0) > 0)
16272 {
16273 if (!traverse_data_var (var->list, where))
16274 {
16275 retval = false;
16276 goto cleanup;
16277 }
16278
16279 e = gfc_copy_expr (var->expr);
16280 if (!gfc_simplify_expr (e, 1))
16281 {
16282 gfc_free_expr (e);
16283 retval = false;
16284 goto cleanup;
16285 }
16286
16287 mpz_add (frame.value, frame.value, step->value.integer);
16288
16289 mpz_sub_ui (trip, trip, 1);
16290 }
16291
16292 cleanup:
16293 mpz_clear (frame.value);
16294 mpz_clear (trip);
16295
16296 gfc_free_expr (start);
16297 gfc_free_expr (end);
16298 gfc_free_expr (step);
16299
16300 iter_stack = frame.prev;
16301 return retval;
16302 }
16303
16304
16305 /* Type resolve variables in the variable list of a DATA statement. */
16306
16307 static bool
16308 traverse_data_var (gfc_data_variable *var, locus *where)
16309 {
16310 bool t;
16311
16312 for (; var; var = var->next)
16313 {
16314 if (var->expr == NULL)
16315 t = traverse_data_list (var, where);
16316 else
16317 t = check_data_variable (var, where);
16318
16319 if (!t)
16320 return false;
16321 }
16322
16323 return true;
16324 }
16325
16326
16327 /* Resolve the expressions and iterators associated with a data statement.
16328 This is separate from the assignment checking because data lists should
16329 only be resolved once. */
16330
16331 static bool
16332 resolve_data_variables (gfc_data_variable *d)
16333 {
16334 for (; d; d = d->next)
16335 {
16336 if (d->list == NULL)
16337 {
16338 if (!gfc_resolve_expr (d->expr))
16339 return false;
16340 }
16341 else
16342 {
16343 if (!gfc_resolve_iterator (&d->iter, false, true))
16344 return false;
16345
16346 if (!resolve_data_variables (d->list))
16347 return false;
16348 }
16349 }
16350
16351 return true;
16352 }
16353
16354
16355 /* Resolve a single DATA statement. We implement this by storing a pointer to
16356 the value list into static variables, and then recursively traversing the
16357 variables list, expanding iterators and such. */
16358
16359 static void
16360 resolve_data (gfc_data *d)
16361 {
16362
16363 if (!resolve_data_variables (d->var))
16364 return;
16365
16366 values.vnode = d->value;
16367 if (d->value == NULL)
16368 mpz_set_ui (values.left, 0);
16369 else
16370 mpz_set (values.left, d->value->repeat);
16371
16372 if (!traverse_data_var (d->var, &d->where))
16373 return;
16374
16375 /* At this point, we better not have any values left. */
16376
16377 if (next_data_value ())
16378 gfc_error ("DATA statement at %L has more values than variables",
16379 &d->where);
16380 }
16381
16382
16383 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
16384 accessed by host or use association, is a dummy argument to a pure function,
16385 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
16386 is storage associated with any such variable, shall not be used in the
16387 following contexts: (clients of this function). */
16388
16389 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
16390 procedure. Returns zero if assignment is OK, nonzero if there is a
16391 problem. */
16392 int
16393 gfc_impure_variable (gfc_symbol *sym)
16394 {
16395 gfc_symbol *proc;
16396 gfc_namespace *ns;
16397
16398 if (sym->attr.use_assoc || sym->attr.in_common)
16399 return 1;
16400
16401 /* Check if the symbol's ns is inside the pure procedure. */
16402 for (ns = gfc_current_ns; ns; ns = ns->parent)
16403 {
16404 if (ns == sym->ns)
16405 break;
16406 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
16407 return 1;
16408 }
16409
16410 proc = sym->ns->proc_name;
16411 if (sym->attr.dummy
16412 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
16413 || proc->attr.function))
16414 return 1;
16415
16416 /* TODO: Sort out what can be storage associated, if anything, and include
16417 it here. In principle equivalences should be scanned but it does not
16418 seem to be possible to storage associate an impure variable this way. */
16419 return 0;
16420 }
16421
16422
16423 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
16424 current namespace is inside a pure procedure. */
16425
16426 int
16427 gfc_pure (gfc_symbol *sym)
16428 {
16429 symbol_attribute attr;
16430 gfc_namespace *ns;
16431
16432 if (sym == NULL)
16433 {
16434 /* Check if the current namespace or one of its parents
16435 belongs to a pure procedure. */
16436 for (ns = gfc_current_ns; ns; ns = ns->parent)
16437 {
16438 sym = ns->proc_name;
16439 if (sym == NULL)
16440 return 0;
16441 attr = sym->attr;
16442 if (attr.flavor == FL_PROCEDURE && attr.pure)
16443 return 1;
16444 }
16445 return 0;
16446 }
16447
16448 attr = sym->attr;
16449
16450 return attr.flavor == FL_PROCEDURE && attr.pure;
16451 }
16452
16453
16454 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
16455 checks if the current namespace is implicitly pure. Note that this
16456 function returns false for a PURE procedure. */
16457
16458 int
16459 gfc_implicit_pure (gfc_symbol *sym)
16460 {
16461 gfc_namespace *ns;
16462
16463 if (sym == NULL)
16464 {
16465 /* Check if the current procedure is implicit_pure. Walk up
16466 the procedure list until we find a procedure. */
16467 for (ns = gfc_current_ns; ns; ns = ns->parent)
16468 {
16469 sym = ns->proc_name;
16470 if (sym == NULL)
16471 return 0;
16472
16473 if (sym->attr.flavor == FL_PROCEDURE)
16474 break;
16475 }
16476 }
16477
16478 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
16479 && !sym->attr.pure;
16480 }
16481
16482
16483 void
16484 gfc_unset_implicit_pure (gfc_symbol *sym)
16485 {
16486 gfc_namespace *ns;
16487
16488 if (sym == NULL)
16489 {
16490 /* Check if the current procedure is implicit_pure. Walk up
16491 the procedure list until we find a procedure. */
16492 for (ns = gfc_current_ns; ns; ns = ns->parent)
16493 {
16494 sym = ns->proc_name;
16495 if (sym == NULL)
16496 return;
16497
16498 if (sym->attr.flavor == FL_PROCEDURE)
16499 break;
16500 }
16501 }
16502
16503 if (sym->attr.flavor == FL_PROCEDURE)
16504 sym->attr.implicit_pure = 0;
16505 else
16506 sym->attr.pure = 0;
16507 }
16508
16509
16510 /* Test whether the current procedure is elemental or not. */
16511
16512 int
16513 gfc_elemental (gfc_symbol *sym)
16514 {
16515 symbol_attribute attr;
16516
16517 if (sym == NULL)
16518 sym = gfc_current_ns->proc_name;
16519 if (sym == NULL)
16520 return 0;
16521 attr = sym->attr;
16522
16523 return attr.flavor == FL_PROCEDURE && attr.elemental;
16524 }
16525
16526
16527 /* Warn about unused labels. */
16528
16529 static void
16530 warn_unused_fortran_label (gfc_st_label *label)
16531 {
16532 if (label == NULL)
16533 return;
16534
16535 warn_unused_fortran_label (label->left);
16536
16537 if (label->defined == ST_LABEL_UNKNOWN)
16538 return;
16539
16540 switch (label->referenced)
16541 {
16542 case ST_LABEL_UNKNOWN:
16543 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
16544 label->value, &label->where);
16545 break;
16546
16547 case ST_LABEL_BAD_TARGET:
16548 gfc_warning (OPT_Wunused_label,
16549 "Label %d at %L defined but cannot be used",
16550 label->value, &label->where);
16551 break;
16552
16553 default:
16554 break;
16555 }
16556
16557 warn_unused_fortran_label (label->right);
16558 }
16559
16560
16561 /* Returns the sequence type of a symbol or sequence. */
16562
16563 static seq_type
16564 sequence_type (gfc_typespec ts)
16565 {
16566 seq_type result;
16567 gfc_component *c;
16568
16569 switch (ts.type)
16570 {
16571 case BT_DERIVED:
16572
16573 if (ts.u.derived->components == NULL)
16574 return SEQ_NONDEFAULT;
16575
16576 result = sequence_type (ts.u.derived->components->ts);
16577 for (c = ts.u.derived->components->next; c; c = c->next)
16578 if (sequence_type (c->ts) != result)
16579 return SEQ_MIXED;
16580
16581 return result;
16582
16583 case BT_CHARACTER:
16584 if (ts.kind != gfc_default_character_kind)
16585 return SEQ_NONDEFAULT;
16586
16587 return SEQ_CHARACTER;
16588
16589 case BT_INTEGER:
16590 if (ts.kind != gfc_default_integer_kind)
16591 return SEQ_NONDEFAULT;
16592
16593 return SEQ_NUMERIC;
16594
16595 case BT_REAL:
16596 if (!(ts.kind == gfc_default_real_kind
16597 || ts.kind == gfc_default_double_kind))
16598 return SEQ_NONDEFAULT;
16599
16600 return SEQ_NUMERIC;
16601
16602 case BT_COMPLEX:
16603 if (ts.kind != gfc_default_complex_kind)
16604 return SEQ_NONDEFAULT;
16605
16606 return SEQ_NUMERIC;
16607
16608 case BT_LOGICAL:
16609 if (ts.kind != gfc_default_logical_kind)
16610 return SEQ_NONDEFAULT;
16611
16612 return SEQ_NUMERIC;
16613
16614 default:
16615 return SEQ_NONDEFAULT;
16616 }
16617 }
16618
16619
16620 /* Resolve derived type EQUIVALENCE object. */
16621
16622 static bool
16623 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
16624 {
16625 gfc_component *c = derived->components;
16626
16627 if (!derived)
16628 return true;
16629
16630 /* Shall not be an object of nonsequence derived type. */
16631 if (!derived->attr.sequence)
16632 {
16633 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
16634 "attribute to be an EQUIVALENCE object", sym->name,
16635 &e->where);
16636 return false;
16637 }
16638
16639 /* Shall not have allocatable components. */
16640 if (derived->attr.alloc_comp)
16641 {
16642 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
16643 "components to be an EQUIVALENCE object",sym->name,
16644 &e->where);
16645 return false;
16646 }
16647
16648 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
16649 {
16650 gfc_error ("Derived type variable %qs at %L with default "
16651 "initialization cannot be in EQUIVALENCE with a variable "
16652 "in COMMON", sym->name, &e->where);
16653 return false;
16654 }
16655
16656 for (; c ; c = c->next)
16657 {
16658 if (gfc_bt_struct (c->ts.type)
16659 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
16660 return false;
16661
16662 /* Shall not be an object of sequence derived type containing a pointer
16663 in the structure. */
16664 if (c->attr.pointer)
16665 {
16666 gfc_error ("Derived type variable %qs at %L with pointer "
16667 "component(s) cannot be an EQUIVALENCE object",
16668 sym->name, &e->where);
16669 return false;
16670 }
16671 }
16672 return true;
16673 }
16674
16675
16676 /* Resolve equivalence object.
16677 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
16678 an allocatable array, an object of nonsequence derived type, an object of
16679 sequence derived type containing a pointer at any level of component
16680 selection, an automatic object, a function name, an entry name, a result
16681 name, a named constant, a structure component, or a subobject of any of
16682 the preceding objects. A substring shall not have length zero. A
16683 derived type shall not have components with default initialization nor
16684 shall two objects of an equivalence group be initialized.
16685 Either all or none of the objects shall have an protected attribute.
16686 The simple constraints are done in symbol.c(check_conflict) and the rest
16687 are implemented here. */
16688
16689 static void
16690 resolve_equivalence (gfc_equiv *eq)
16691 {
16692 gfc_symbol *sym;
16693 gfc_symbol *first_sym;
16694 gfc_expr *e;
16695 gfc_ref *r;
16696 locus *last_where = NULL;
16697 seq_type eq_type, last_eq_type;
16698 gfc_typespec *last_ts;
16699 int object, cnt_protected;
16700 const char *msg;
16701
16702 last_ts = &eq->expr->symtree->n.sym->ts;
16703
16704 first_sym = eq->expr->symtree->n.sym;
16705
16706 cnt_protected = 0;
16707
16708 for (object = 1; eq; eq = eq->eq, object++)
16709 {
16710 e = eq->expr;
16711
16712 e->ts = e->symtree->n.sym->ts;
16713 /* match_varspec might not know yet if it is seeing
16714 array reference or substring reference, as it doesn't
16715 know the types. */
16716 if (e->ref && e->ref->type == REF_ARRAY)
16717 {
16718 gfc_ref *ref = e->ref;
16719 sym = e->symtree->n.sym;
16720
16721 if (sym->attr.dimension)
16722 {
16723 ref->u.ar.as = sym->as;
16724 ref = ref->next;
16725 }
16726
16727 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
16728 if (e->ts.type == BT_CHARACTER
16729 && ref
16730 && ref->type == REF_ARRAY
16731 && ref->u.ar.dimen == 1
16732 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
16733 && ref->u.ar.stride[0] == NULL)
16734 {
16735 gfc_expr *start = ref->u.ar.start[0];
16736 gfc_expr *end = ref->u.ar.end[0];
16737 void *mem = NULL;
16738
16739 /* Optimize away the (:) reference. */
16740 if (start == NULL && end == NULL)
16741 {
16742 if (e->ref == ref)
16743 e->ref = ref->next;
16744 else
16745 e->ref->next = ref->next;
16746 mem = ref;
16747 }
16748 else
16749 {
16750 ref->type = REF_SUBSTRING;
16751 if (start == NULL)
16752 start = gfc_get_int_expr (gfc_charlen_int_kind,
16753 NULL, 1);
16754 ref->u.ss.start = start;
16755 if (end == NULL && e->ts.u.cl)
16756 end = gfc_copy_expr (e->ts.u.cl->length);
16757 ref->u.ss.end = end;
16758 ref->u.ss.length = e->ts.u.cl;
16759 e->ts.u.cl = NULL;
16760 }
16761 ref = ref->next;
16762 free (mem);
16763 }
16764
16765 /* Any further ref is an error. */
16766 if (ref)
16767 {
16768 gcc_assert (ref->type == REF_ARRAY);
16769 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16770 &ref->u.ar.where);
16771 continue;
16772 }
16773 }
16774
16775 if (!gfc_resolve_expr (e))
16776 continue;
16777
16778 sym = e->symtree->n.sym;
16779
16780 if (sym->attr.is_protected)
16781 cnt_protected++;
16782 if (cnt_protected > 0 && cnt_protected != object)
16783 {
16784 gfc_error ("Either all or none of the objects in the "
16785 "EQUIVALENCE set at %L shall have the "
16786 "PROTECTED attribute",
16787 &e->where);
16788 break;
16789 }
16790
16791 /* Shall not equivalence common block variables in a PURE procedure. */
16792 if (sym->ns->proc_name
16793 && sym->ns->proc_name->attr.pure
16794 && sym->attr.in_common)
16795 {
16796 /* Need to check for symbols that may have entered the pure
16797 procedure via a USE statement. */
16798 bool saw_sym = false;
16799 if (sym->ns->use_stmts)
16800 {
16801 gfc_use_rename *r;
16802 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16803 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16804 }
16805 else
16806 saw_sym = true;
16807
16808 if (saw_sym)
16809 gfc_error ("COMMON block member %qs at %L cannot be an "
16810 "EQUIVALENCE object in the pure procedure %qs",
16811 sym->name, &e->where, sym->ns->proc_name->name);
16812 break;
16813 }
16814
16815 /* Shall not be a named constant. */
16816 if (e->expr_type == EXPR_CONSTANT)
16817 {
16818 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16819 "object", sym->name, &e->where);
16820 continue;
16821 }
16822
16823 if (e->ts.type == BT_DERIVED
16824 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16825 continue;
16826
16827 /* Check that the types correspond correctly:
16828 Note 5.28:
16829 A numeric sequence structure may be equivalenced to another sequence
16830 structure, an object of default integer type, default real type, double
16831 precision real type, default logical type such that components of the
16832 structure ultimately only become associated to objects of the same
16833 kind. A character sequence structure may be equivalenced to an object
16834 of default character kind or another character sequence structure.
16835 Other objects may be equivalenced only to objects of the same type and
16836 kind parameters. */
16837
16838 /* Identical types are unconditionally OK. */
16839 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16840 goto identical_types;
16841
16842 last_eq_type = sequence_type (*last_ts);
16843 eq_type = sequence_type (sym->ts);
16844
16845 /* Since the pair of objects is not of the same type, mixed or
16846 non-default sequences can be rejected. */
16847
16848 msg = "Sequence %s with mixed components in EQUIVALENCE "
16849 "statement at %L with different type objects";
16850 if ((object ==2
16851 && last_eq_type == SEQ_MIXED
16852 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16853 || (eq_type == SEQ_MIXED
16854 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16855 continue;
16856
16857 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16858 "statement at %L with objects of different type";
16859 if ((object ==2
16860 && last_eq_type == SEQ_NONDEFAULT
16861 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16862 || (eq_type == SEQ_NONDEFAULT
16863 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16864 continue;
16865
16866 msg ="Non-CHARACTER object %qs in default CHARACTER "
16867 "EQUIVALENCE statement at %L";
16868 if (last_eq_type == SEQ_CHARACTER
16869 && eq_type != SEQ_CHARACTER
16870 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16871 continue;
16872
16873 msg ="Non-NUMERIC object %qs in default NUMERIC "
16874 "EQUIVALENCE statement at %L";
16875 if (last_eq_type == SEQ_NUMERIC
16876 && eq_type != SEQ_NUMERIC
16877 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16878 continue;
16879
16880 identical_types:
16881
16882 last_ts =&sym->ts;
16883 last_where = &e->where;
16884
16885 if (!e->ref)
16886 continue;
16887
16888 /* Shall not be an automatic array. */
16889 if (e->ref->type == REF_ARRAY && is_non_constant_shape_array (sym))
16890 {
16891 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16892 "an EQUIVALENCE object", sym->name, &e->where);
16893 continue;
16894 }
16895
16896 r = e->ref;
16897 while (r)
16898 {
16899 /* Shall not be a structure component. */
16900 if (r->type == REF_COMPONENT)
16901 {
16902 gfc_error ("Structure component %qs at %L cannot be an "
16903 "EQUIVALENCE object",
16904 r->u.c.component->name, &e->where);
16905 break;
16906 }
16907
16908 /* A substring shall not have length zero. */
16909 if (r->type == REF_SUBSTRING)
16910 {
16911 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16912 {
16913 gfc_error ("Substring at %L has length zero",
16914 &r->u.ss.start->where);
16915 break;
16916 }
16917 }
16918 r = r->next;
16919 }
16920 }
16921 }
16922
16923
16924 /* Function called by resolve_fntype to flag other symbols used in the
16925 length type parameter specification of function results. */
16926
16927 static bool
16928 flag_fn_result_spec (gfc_expr *expr,
16929 gfc_symbol *sym,
16930 int *f ATTRIBUTE_UNUSED)
16931 {
16932 gfc_namespace *ns;
16933 gfc_symbol *s;
16934
16935 if (expr->expr_type == EXPR_VARIABLE)
16936 {
16937 s = expr->symtree->n.sym;
16938 for (ns = s->ns; ns; ns = ns->parent)
16939 if (!ns->parent)
16940 break;
16941
16942 if (sym == s)
16943 {
16944 gfc_error ("Self reference in character length expression "
16945 "for %qs at %L", sym->name, &expr->where);
16946 return true;
16947 }
16948
16949 if (!s->fn_result_spec
16950 && s->attr.flavor == FL_PARAMETER)
16951 {
16952 /* Function contained in a module.... */
16953 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16954 {
16955 gfc_symtree *st;
16956 s->fn_result_spec = 1;
16957 /* Make sure that this symbol is translated as a module
16958 variable. */
16959 st = gfc_get_unique_symtree (ns);
16960 st->n.sym = s;
16961 s->refs++;
16962 }
16963 /* ... which is use associated and called. */
16964 else if (s->attr.use_assoc || s->attr.used_in_submodule
16965 ||
16966 /* External function matched with an interface. */
16967 (s->ns->proc_name
16968 && ((s->ns == ns
16969 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16970 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16971 && s->ns->proc_name->attr.function))
16972 s->fn_result_spec = 1;
16973 }
16974 }
16975 return false;
16976 }
16977
16978
16979 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16980
16981 static void
16982 resolve_fntype (gfc_namespace *ns)
16983 {
16984 gfc_entry_list *el;
16985 gfc_symbol *sym;
16986
16987 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16988 return;
16989
16990 /* If there are any entries, ns->proc_name is the entry master
16991 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16992 if (ns->entries)
16993 sym = ns->entries->sym;
16994 else
16995 sym = ns->proc_name;
16996 if (sym->result == sym
16997 && sym->ts.type == BT_UNKNOWN
16998 && !gfc_set_default_type (sym, 0, NULL)
16999 && !sym->attr.untyped)
17000 {
17001 gfc_error ("Function %qs at %L has no IMPLICIT type",
17002 sym->name, &sym->declared_at);
17003 sym->attr.untyped = 1;
17004 }
17005
17006 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
17007 && !sym->attr.contained
17008 && !gfc_check_symbol_access (sym->ts.u.derived)
17009 && gfc_check_symbol_access (sym))
17010 {
17011 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
17012 "%L of PRIVATE type %qs", sym->name,
17013 &sym->declared_at, sym->ts.u.derived->name);
17014 }
17015
17016 if (ns->entries)
17017 for (el = ns->entries->next; el; el = el->next)
17018 {
17019 if (el->sym->result == el->sym
17020 && el->sym->ts.type == BT_UNKNOWN
17021 && !gfc_set_default_type (el->sym, 0, NULL)
17022 && !el->sym->attr.untyped)
17023 {
17024 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
17025 el->sym->name, &el->sym->declared_at);
17026 el->sym->attr.untyped = 1;
17027 }
17028 }
17029
17030 if (sym->ts.type == BT_CHARACTER)
17031 gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
17032 }
17033
17034
17035 /* 12.3.2.1.1 Defined operators. */
17036
17037 static bool
17038 check_uop_procedure (gfc_symbol *sym, locus where)
17039 {
17040 gfc_formal_arglist *formal;
17041
17042 if (!sym->attr.function)
17043 {
17044 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
17045 sym->name, &where);
17046 return false;
17047 }
17048
17049 if (sym->ts.type == BT_CHARACTER
17050 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
17051 && !(sym->result && ((sym->result->ts.u.cl
17052 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
17053 {
17054 gfc_error ("User operator procedure %qs at %L cannot be assumed "
17055 "character length", sym->name, &where);
17056 return false;
17057 }
17058
17059 formal = gfc_sym_get_dummy_args (sym);
17060 if (!formal || !formal->sym)
17061 {
17062 gfc_error ("User operator procedure %qs at %L must have at least "
17063 "one argument", sym->name, &where);
17064 return false;
17065 }
17066
17067 if (formal->sym->attr.intent != INTENT_IN)
17068 {
17069 gfc_error ("First argument of operator interface at %L must be "
17070 "INTENT(IN)", &where);
17071 return false;
17072 }
17073
17074 if (formal->sym->attr.optional)
17075 {
17076 gfc_error ("First argument of operator interface at %L cannot be "
17077 "optional", &where);
17078 return false;
17079 }
17080
17081 formal = formal->next;
17082 if (!formal || !formal->sym)
17083 return true;
17084
17085 if (formal->sym->attr.intent != INTENT_IN)
17086 {
17087 gfc_error ("Second argument of operator interface at %L must be "
17088 "INTENT(IN)", &where);
17089 return false;
17090 }
17091
17092 if (formal->sym->attr.optional)
17093 {
17094 gfc_error ("Second argument of operator interface at %L cannot be "
17095 "optional", &where);
17096 return false;
17097 }
17098
17099 if (formal->next)
17100 {
17101 gfc_error ("Operator interface at %L must have, at most, two "
17102 "arguments", &where);
17103 return false;
17104 }
17105
17106 return true;
17107 }
17108
17109 static void
17110 gfc_resolve_uops (gfc_symtree *symtree)
17111 {
17112 gfc_interface *itr;
17113
17114 if (symtree == NULL)
17115 return;
17116
17117 gfc_resolve_uops (symtree->left);
17118 gfc_resolve_uops (symtree->right);
17119
17120 for (itr = symtree->n.uop->op; itr; itr = itr->next)
17121 check_uop_procedure (itr->sym, itr->sym->declared_at);
17122 }
17123
17124
17125 /* Examine all of the expressions associated with a program unit,
17126 assign types to all intermediate expressions, make sure that all
17127 assignments are to compatible types and figure out which names
17128 refer to which functions or subroutines. It doesn't check code
17129 block, which is handled by gfc_resolve_code. */
17130
17131 static void
17132 resolve_types (gfc_namespace *ns)
17133 {
17134 gfc_namespace *n;
17135 gfc_charlen *cl;
17136 gfc_data *d;
17137 gfc_equiv *eq;
17138 gfc_namespace* old_ns = gfc_current_ns;
17139 bool recursive = ns->proc_name && ns->proc_name->attr.recursive;
17140
17141 if (ns->types_resolved)
17142 return;
17143
17144 /* Check that all IMPLICIT types are ok. */
17145 if (!ns->seen_implicit_none)
17146 {
17147 unsigned letter;
17148 for (letter = 0; letter != GFC_LETTERS; ++letter)
17149 if (ns->set_flag[letter]
17150 && !resolve_typespec_used (&ns->default_type[letter],
17151 &ns->implicit_loc[letter], NULL))
17152 return;
17153 }
17154
17155 gfc_current_ns = ns;
17156
17157 resolve_entries (ns);
17158
17159 resolve_common_vars (&ns->blank_common, false);
17160 resolve_common_blocks (ns->common_root);
17161
17162 resolve_contained_functions (ns);
17163
17164 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
17165 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
17166 gfc_resolve_formal_arglist (ns->proc_name);
17167
17168 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
17169
17170 for (cl = ns->cl_list; cl; cl = cl->next)
17171 resolve_charlen (cl);
17172
17173 gfc_traverse_ns (ns, resolve_symbol);
17174
17175 resolve_fntype (ns);
17176
17177 for (n = ns->contained; n; n = n->sibling)
17178 {
17179 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
17180 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
17181 "also be PURE", n->proc_name->name,
17182 &n->proc_name->declared_at);
17183
17184 resolve_types (n);
17185 }
17186
17187 forall_flag = 0;
17188 gfc_do_concurrent_flag = 0;
17189 gfc_check_interfaces (ns);
17190
17191 gfc_traverse_ns (ns, resolve_values);
17192
17193 if (ns->save_all || (!flag_automatic && !recursive))
17194 gfc_save_all (ns);
17195
17196 iter_stack = NULL;
17197 for (d = ns->data; d; d = d->next)
17198 resolve_data (d);
17199
17200 iter_stack = NULL;
17201 gfc_traverse_ns (ns, gfc_formalize_init_value);
17202
17203 gfc_traverse_ns (ns, gfc_verify_binding_labels);
17204
17205 for (eq = ns->equiv; eq; eq = eq->next)
17206 resolve_equivalence (eq);
17207
17208 /* Warn about unused labels. */
17209 if (warn_unused_label)
17210 warn_unused_fortran_label (ns->st_labels);
17211
17212 gfc_resolve_uops (ns->uop_root);
17213
17214 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
17215
17216 gfc_resolve_omp_declare_simd (ns);
17217
17218 gfc_resolve_omp_udrs (ns->omp_udr_root);
17219
17220 ns->types_resolved = 1;
17221
17222 gfc_current_ns = old_ns;
17223 }
17224
17225
17226 /* Call gfc_resolve_code recursively. */
17227
17228 static void
17229 resolve_codes (gfc_namespace *ns)
17230 {
17231 gfc_namespace *n;
17232 bitmap_obstack old_obstack;
17233
17234 if (ns->resolved == 1)
17235 return;
17236
17237 for (n = ns->contained; n; n = n->sibling)
17238 resolve_codes (n);
17239
17240 gfc_current_ns = ns;
17241
17242 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
17243 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
17244 cs_base = NULL;
17245
17246 /* Set to an out of range value. */
17247 current_entry_id = -1;
17248
17249 old_obstack = labels_obstack;
17250 bitmap_obstack_initialize (&labels_obstack);
17251
17252 gfc_resolve_oacc_declare (ns);
17253 gfc_resolve_oacc_routines (ns);
17254 gfc_resolve_omp_local_vars (ns);
17255 gfc_resolve_code (ns->code, ns);
17256
17257 bitmap_obstack_release (&labels_obstack);
17258 labels_obstack = old_obstack;
17259 }
17260
17261
17262 /* This function is called after a complete program unit has been compiled.
17263 Its purpose is to examine all of the expressions associated with a program
17264 unit, assign types to all intermediate expressions, make sure that all
17265 assignments are to compatible types and figure out which names refer to
17266 which functions or subroutines. */
17267
17268 void
17269 gfc_resolve (gfc_namespace *ns)
17270 {
17271 gfc_namespace *old_ns;
17272 code_stack *old_cs_base;
17273 struct gfc_omp_saved_state old_omp_state;
17274
17275 if (ns->resolved)
17276 return;
17277
17278 ns->resolved = -1;
17279 old_ns = gfc_current_ns;
17280 old_cs_base = cs_base;
17281
17282 /* As gfc_resolve can be called during resolution of an OpenMP construct
17283 body, we should clear any state associated to it, so that say NS's
17284 DO loops are not interpreted as OpenMP loops. */
17285 if (!ns->construct_entities)
17286 gfc_omp_save_and_clear_state (&old_omp_state);
17287
17288 resolve_types (ns);
17289 component_assignment_level = 0;
17290 resolve_codes (ns);
17291
17292 gfc_current_ns = old_ns;
17293 cs_base = old_cs_base;
17294 ns->resolved = 1;
17295
17296 gfc_run_passes (ns);
17297
17298 if (!ns->construct_entities)
17299 gfc_omp_restore_state (&old_omp_state);
17300 }