re PR fortran/78865 (ICE in create_tmp_var, at gimple-expr.c:473)
[gcc.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2019 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "options.h"
25 #include "bitmap.h"
26 #include "gfortran.h"
27 #include "arith.h" /* For gfc_compare_expr(). */
28 #include "dependency.h"
29 #include "data.h"
30 #include "target-memory.h" /* for gfc_simplify_transfer */
31 #include "constructor.h"
32
33 /* Types used in equivalence statements. */
34
35 enum seq_type
36 {
37 SEQ_NONDEFAULT, SEQ_NUMERIC, SEQ_CHARACTER, SEQ_MIXED
38 };
39
40 /* Stack to keep track of the nesting of blocks as we move through the
41 code. See resolve_branch() and gfc_resolve_code(). */
42
43 typedef struct code_stack
44 {
45 struct gfc_code *head, *current;
46 struct code_stack *prev;
47
48 /* This bitmap keeps track of the targets valid for a branch from
49 inside this block except for END {IF|SELECT}s of enclosing
50 blocks. */
51 bitmap reachable_labels;
52 }
53 code_stack;
54
55 static code_stack *cs_base = NULL;
56
57
58 /* Nonzero if we're inside a FORALL or DO CONCURRENT block. */
59
60 static int forall_flag;
61 int gfc_do_concurrent_flag;
62
63 /* True when we are resolving an expression that is an actual argument to
64 a procedure. */
65 static bool actual_arg = false;
66 /* True when we are resolving an expression that is the first actual argument
67 to a procedure. */
68 static bool first_actual_arg = false;
69
70
71 /* Nonzero if we're inside a OpenMP WORKSHARE or PARALLEL WORKSHARE block. */
72
73 static int omp_workshare_flag;
74
75 /* True if we are processing a formal arglist. The corresponding function
76 resets the flag each time that it is read. */
77 static bool formal_arg_flag = false;
78
79 /* True if we are resolving a specification expression. */
80 static bool specification_expr = false;
81
82 /* The id of the last entry seen. */
83 static int current_entry_id;
84
85 /* We use bitmaps to determine if a branch target is valid. */
86 static bitmap_obstack labels_obstack;
87
88 /* True when simplifying a EXPR_VARIABLE argument to an inquiry function. */
89 static bool inquiry_argument = false;
90
91
92 bool
93 gfc_is_formal_arg (void)
94 {
95 return formal_arg_flag;
96 }
97
98 /* Is the symbol host associated? */
99 static bool
100 is_sym_host_assoc (gfc_symbol *sym, gfc_namespace *ns)
101 {
102 for (ns = ns->parent; ns; ns = ns->parent)
103 {
104 if (sym->ns == ns)
105 return true;
106 }
107
108 return false;
109 }
110
111 /* Ensure a typespec used is valid; for instance, TYPE(t) is invalid if t is
112 an ABSTRACT derived-type. If where is not NULL, an error message with that
113 locus is printed, optionally using name. */
114
115 static bool
116 resolve_typespec_used (gfc_typespec* ts, locus* where, const char* name)
117 {
118 if (ts->type == BT_DERIVED && ts->u.derived->attr.abstract)
119 {
120 if (where)
121 {
122 if (name)
123 gfc_error ("%qs at %L is of the ABSTRACT type %qs",
124 name, where, ts->u.derived->name);
125 else
126 gfc_error ("ABSTRACT type %qs used at %L",
127 ts->u.derived->name, where);
128 }
129
130 return false;
131 }
132
133 return true;
134 }
135
136
137 static bool
138 check_proc_interface (gfc_symbol *ifc, locus *where)
139 {
140 /* Several checks for F08:C1216. */
141 if (ifc->attr.procedure)
142 {
143 gfc_error ("Interface %qs at %L is declared "
144 "in a later PROCEDURE statement", ifc->name, where);
145 return false;
146 }
147 if (ifc->generic)
148 {
149 /* For generic interfaces, check if there is
150 a specific procedure with the same name. */
151 gfc_interface *gen = ifc->generic;
152 while (gen && strcmp (gen->sym->name, ifc->name) != 0)
153 gen = gen->next;
154 if (!gen)
155 {
156 gfc_error ("Interface %qs at %L may not be generic",
157 ifc->name, where);
158 return false;
159 }
160 }
161 if (ifc->attr.proc == PROC_ST_FUNCTION)
162 {
163 gfc_error ("Interface %qs at %L may not be a statement function",
164 ifc->name, where);
165 return false;
166 }
167 if (gfc_is_intrinsic (ifc, 0, ifc->declared_at)
168 || gfc_is_intrinsic (ifc, 1, ifc->declared_at))
169 ifc->attr.intrinsic = 1;
170 if (ifc->attr.intrinsic && !gfc_intrinsic_actual_ok (ifc->name, 0))
171 {
172 gfc_error ("Intrinsic procedure %qs not allowed in "
173 "PROCEDURE statement at %L", ifc->name, where);
174 return false;
175 }
176 if (!ifc->attr.if_source && !ifc->attr.intrinsic && ifc->name[0] != '\0')
177 {
178 gfc_error ("Interface %qs at %L must be explicit", ifc->name, where);
179 return false;
180 }
181 return true;
182 }
183
184
185 static void resolve_symbol (gfc_symbol *sym);
186
187
188 /* Resolve the interface for a PROCEDURE declaration or procedure pointer. */
189
190 static bool
191 resolve_procedure_interface (gfc_symbol *sym)
192 {
193 gfc_symbol *ifc = sym->ts.interface;
194
195 if (!ifc)
196 return true;
197
198 if (ifc == sym)
199 {
200 gfc_error ("PROCEDURE %qs at %L may not be used as its own interface",
201 sym->name, &sym->declared_at);
202 return false;
203 }
204 if (!check_proc_interface (ifc, &sym->declared_at))
205 return false;
206
207 if (ifc->attr.if_source || ifc->attr.intrinsic)
208 {
209 /* Resolve interface and copy attributes. */
210 resolve_symbol (ifc);
211 if (ifc->attr.intrinsic)
212 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
213
214 if (ifc->result)
215 {
216 sym->ts = ifc->result->ts;
217 sym->attr.allocatable = ifc->result->attr.allocatable;
218 sym->attr.pointer = ifc->result->attr.pointer;
219 sym->attr.dimension = ifc->result->attr.dimension;
220 sym->attr.class_ok = ifc->result->attr.class_ok;
221 sym->as = gfc_copy_array_spec (ifc->result->as);
222 sym->result = sym;
223 }
224 else
225 {
226 sym->ts = ifc->ts;
227 sym->attr.allocatable = ifc->attr.allocatable;
228 sym->attr.pointer = ifc->attr.pointer;
229 sym->attr.dimension = ifc->attr.dimension;
230 sym->attr.class_ok = ifc->attr.class_ok;
231 sym->as = gfc_copy_array_spec (ifc->as);
232 }
233 sym->ts.interface = ifc;
234 sym->attr.function = ifc->attr.function;
235 sym->attr.subroutine = ifc->attr.subroutine;
236
237 sym->attr.pure = ifc->attr.pure;
238 sym->attr.elemental = ifc->attr.elemental;
239 sym->attr.contiguous = ifc->attr.contiguous;
240 sym->attr.recursive = ifc->attr.recursive;
241 sym->attr.always_explicit = ifc->attr.always_explicit;
242 sym->attr.ext_attr |= ifc->attr.ext_attr;
243 sym->attr.is_bind_c = ifc->attr.is_bind_c;
244 /* Copy char length. */
245 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
246 {
247 sym->ts.u.cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
248 if (sym->ts.u.cl->length && !sym->ts.u.cl->resolved
249 && !gfc_resolve_expr (sym->ts.u.cl->length))
250 return false;
251 }
252 }
253
254 return true;
255 }
256
257
258 /* Resolve types of formal argument lists. These have to be done early so that
259 the formal argument lists of module procedures can be copied to the
260 containing module before the individual procedures are resolved
261 individually. We also resolve argument lists of procedures in interface
262 blocks because they are self-contained scoping units.
263
264 Since a dummy argument cannot be a non-dummy procedure, the only
265 resort left for untyped names are the IMPLICIT types. */
266
267 static void
268 resolve_formal_arglist (gfc_symbol *proc)
269 {
270 gfc_formal_arglist *f;
271 gfc_symbol *sym;
272 bool saved_specification_expr;
273 int i;
274
275 if (proc->result != NULL)
276 sym = proc->result;
277 else
278 sym = proc;
279
280 if (gfc_elemental (proc)
281 || sym->attr.pointer || sym->attr.allocatable
282 || (sym->as && sym->as->rank != 0))
283 {
284 proc->attr.always_explicit = 1;
285 sym->attr.always_explicit = 1;
286 }
287
288 formal_arg_flag = true;
289
290 for (f = proc->formal; f; f = f->next)
291 {
292 gfc_array_spec *as;
293
294 sym = f->sym;
295
296 if (sym == NULL)
297 {
298 /* Alternate return placeholder. */
299 if (gfc_elemental (proc))
300 gfc_error ("Alternate return specifier in elemental subroutine "
301 "%qs at %L is not allowed", proc->name,
302 &proc->declared_at);
303 if (proc->attr.function)
304 gfc_error ("Alternate return specifier in function "
305 "%qs at %L is not allowed", proc->name,
306 &proc->declared_at);
307 continue;
308 }
309 else if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
310 && !resolve_procedure_interface (sym))
311 return;
312
313 if (strcmp (proc->name, sym->name) == 0)
314 {
315 gfc_error ("Self-referential argument "
316 "%qs at %L is not allowed", sym->name,
317 &proc->declared_at);
318 return;
319 }
320
321 if (sym->attr.if_source != IFSRC_UNKNOWN)
322 resolve_formal_arglist (sym);
323
324 if (sym->attr.subroutine || sym->attr.external)
325 {
326 if (sym->attr.flavor == FL_UNKNOWN)
327 gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, &sym->declared_at);
328 }
329 else
330 {
331 if (sym->ts.type == BT_UNKNOWN && !proc->attr.intrinsic
332 && (!sym->attr.function || sym->result == sym))
333 gfc_set_default_type (sym, 1, sym->ns);
334 }
335
336 as = sym->ts.type == BT_CLASS && sym->attr.class_ok
337 ? CLASS_DATA (sym)->as : sym->as;
338
339 saved_specification_expr = specification_expr;
340 specification_expr = true;
341 gfc_resolve_array_spec (as, 0);
342 specification_expr = saved_specification_expr;
343
344 /* We can't tell if an array with dimension (:) is assumed or deferred
345 shape until we know if it has the pointer or allocatable attributes.
346 */
347 if (as && as->rank > 0 && as->type == AS_DEFERRED
348 && ((sym->ts.type != BT_CLASS
349 && !(sym->attr.pointer || sym->attr.allocatable))
350 || (sym->ts.type == BT_CLASS
351 && !(CLASS_DATA (sym)->attr.class_pointer
352 || CLASS_DATA (sym)->attr.allocatable)))
353 && sym->attr.flavor != FL_PROCEDURE)
354 {
355 as->type = AS_ASSUMED_SHAPE;
356 for (i = 0; i < as->rank; i++)
357 as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
358 }
359
360 if ((as && as->rank > 0 && as->type == AS_ASSUMED_SHAPE)
361 || (as && as->type == AS_ASSUMED_RANK)
362 || sym->attr.pointer || sym->attr.allocatable || sym->attr.target
363 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
364 && (CLASS_DATA (sym)->attr.class_pointer
365 || CLASS_DATA (sym)->attr.allocatable
366 || CLASS_DATA (sym)->attr.target))
367 || sym->attr.optional)
368 {
369 proc->attr.always_explicit = 1;
370 if (proc->result)
371 proc->result->attr.always_explicit = 1;
372 }
373
374 /* If the flavor is unknown at this point, it has to be a variable.
375 A procedure specification would have already set the type. */
376
377 if (sym->attr.flavor == FL_UNKNOWN)
378 gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, &sym->declared_at);
379
380 if (gfc_pure (proc))
381 {
382 if (sym->attr.flavor == FL_PROCEDURE)
383 {
384 /* F08:C1279. */
385 if (!gfc_pure (sym))
386 {
387 gfc_error ("Dummy procedure %qs of PURE procedure at %L must "
388 "also be PURE", sym->name, &sym->declared_at);
389 continue;
390 }
391 }
392 else if (!sym->attr.pointer)
393 {
394 if (proc->attr.function && sym->attr.intent != INTENT_IN)
395 {
396 if (sym->attr.value)
397 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
398 " of pure function %qs at %L with VALUE "
399 "attribute but without INTENT(IN)",
400 sym->name, proc->name, &sym->declared_at);
401 else
402 gfc_error ("Argument %qs of pure function %qs at %L must "
403 "be INTENT(IN) or VALUE", sym->name, proc->name,
404 &sym->declared_at);
405 }
406
407 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN)
408 {
409 if (sym->attr.value)
410 gfc_notify_std (GFC_STD_F2008, "Argument %qs"
411 " of pure subroutine %qs at %L with VALUE "
412 "attribute but without INTENT", sym->name,
413 proc->name, &sym->declared_at);
414 else
415 gfc_error ("Argument %qs of pure subroutine %qs at %L "
416 "must have its INTENT specified or have the "
417 "VALUE attribute", sym->name, proc->name,
418 &sym->declared_at);
419 }
420 }
421
422 /* F08:C1278a. */
423 if (sym->ts.type == BT_CLASS && sym->attr.intent == INTENT_OUT)
424 {
425 gfc_error ("INTENT(OUT) argument %qs of pure procedure %qs at %L"
426 " may not be polymorphic", sym->name, proc->name,
427 &sym->declared_at);
428 continue;
429 }
430 }
431
432 if (proc->attr.implicit_pure)
433 {
434 if (sym->attr.flavor == FL_PROCEDURE)
435 {
436 if (!gfc_pure (sym))
437 proc->attr.implicit_pure = 0;
438 }
439 else if (!sym->attr.pointer)
440 {
441 if (proc->attr.function && sym->attr.intent != INTENT_IN
442 && !sym->value)
443 proc->attr.implicit_pure = 0;
444
445 if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN
446 && !sym->value)
447 proc->attr.implicit_pure = 0;
448 }
449 }
450
451 if (gfc_elemental (proc))
452 {
453 /* F08:C1289. */
454 if (sym->attr.codimension
455 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
456 && CLASS_DATA (sym)->attr.codimension))
457 {
458 gfc_error ("Coarray dummy argument %qs at %L to elemental "
459 "procedure", sym->name, &sym->declared_at);
460 continue;
461 }
462
463 if (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
464 && CLASS_DATA (sym)->as))
465 {
466 gfc_error ("Argument %qs of elemental procedure at %L must "
467 "be scalar", sym->name, &sym->declared_at);
468 continue;
469 }
470
471 if (sym->attr.allocatable
472 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
473 && CLASS_DATA (sym)->attr.allocatable))
474 {
475 gfc_error ("Argument %qs of elemental procedure at %L cannot "
476 "have the ALLOCATABLE attribute", sym->name,
477 &sym->declared_at);
478 continue;
479 }
480
481 if (sym->attr.pointer
482 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
483 && CLASS_DATA (sym)->attr.class_pointer))
484 {
485 gfc_error ("Argument %qs of elemental procedure at %L cannot "
486 "have the POINTER attribute", sym->name,
487 &sym->declared_at);
488 continue;
489 }
490
491 if (sym->attr.flavor == FL_PROCEDURE)
492 {
493 gfc_error ("Dummy procedure %qs not allowed in elemental "
494 "procedure %qs at %L", sym->name, proc->name,
495 &sym->declared_at);
496 continue;
497 }
498
499 /* Fortran 2008 Corrigendum 1, C1290a. */
500 if (sym->attr.intent == INTENT_UNKNOWN && !sym->attr.value)
501 {
502 gfc_error ("Argument %qs of elemental procedure %qs at %L must "
503 "have its INTENT specified or have the VALUE "
504 "attribute", sym->name, proc->name,
505 &sym->declared_at);
506 continue;
507 }
508 }
509
510 /* Each dummy shall be specified to be scalar. */
511 if (proc->attr.proc == PROC_ST_FUNCTION)
512 {
513 if (sym->as != NULL)
514 {
515 /* F03:C1263 (R1238) The function-name and each dummy-arg-name
516 shall be specified, explicitly or implicitly, to be scalar. */
517 gfc_error ("Argument '%s' of statement function '%s' at %L "
518 "must be scalar", sym->name, proc->name,
519 &proc->declared_at);
520 continue;
521 }
522
523 if (sym->ts.type == BT_CHARACTER)
524 {
525 gfc_charlen *cl = sym->ts.u.cl;
526 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
527 {
528 gfc_error ("Character-valued argument %qs of statement "
529 "function at %L must have constant length",
530 sym->name, &sym->declared_at);
531 continue;
532 }
533 }
534 }
535 }
536 formal_arg_flag = false;
537 }
538
539
540 /* Work function called when searching for symbols that have argument lists
541 associated with them. */
542
543 static void
544 find_arglists (gfc_symbol *sym)
545 {
546 if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns
547 || gfc_fl_struct (sym->attr.flavor) || sym->attr.intrinsic)
548 return;
549
550 resolve_formal_arglist (sym);
551 }
552
553
554 /* Given a namespace, resolve all formal argument lists within the namespace.
555 */
556
557 static void
558 resolve_formal_arglists (gfc_namespace *ns)
559 {
560 if (ns == NULL)
561 return;
562
563 gfc_traverse_ns (ns, find_arglists);
564 }
565
566
567 static void
568 resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
569 {
570 bool t;
571
572 if (sym && sym->attr.flavor == FL_PROCEDURE
573 && sym->ns->parent
574 && sym->ns->parent->proc_name
575 && sym->ns->parent->proc_name->attr.flavor == FL_PROCEDURE
576 && !strcmp (sym->name, sym->ns->parent->proc_name->name))
577 gfc_error ("Contained procedure %qs at %L has the same name as its "
578 "encompassing procedure", sym->name, &sym->declared_at);
579
580 /* If this namespace is not a function or an entry master function,
581 ignore it. */
582 if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
583 || sym->attr.entry_master)
584 return;
585
586 /* Try to find out of what the return type is. */
587 if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
588 {
589 t = gfc_set_default_type (sym->result, 0, ns);
590
591 if (!t && !sym->result->attr.untyped)
592 {
593 if (sym->result == sym)
594 gfc_error ("Contained function %qs at %L has no IMPLICIT type",
595 sym->name, &sym->declared_at);
596 else if (!sym->result->attr.proc_pointer)
597 gfc_error ("Result %qs of contained function %qs at %L has "
598 "no IMPLICIT type", sym->result->name, sym->name,
599 &sym->result->declared_at);
600 sym->result->attr.untyped = 1;
601 }
602 }
603
604 /* Fortran 2008 Draft Standard, page 535, C418, on type-param-value
605 type, lists the only ways a character length value of * can be used:
606 dummy arguments of procedures, named constants, function results and
607 in allocate statements if the allocate_object is an assumed length dummy
608 in external functions. Internal function results and results of module
609 procedures are not on this list, ergo, not permitted. */
610
611 if (sym->result->ts.type == BT_CHARACTER)
612 {
613 gfc_charlen *cl = sym->result->ts.u.cl;
614 if ((!cl || !cl->length) && !sym->result->ts.deferred)
615 {
616 /* See if this is a module-procedure and adapt error message
617 accordingly. */
618 bool module_proc;
619 gcc_assert (ns->parent && ns->parent->proc_name);
620 module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
621
622 gfc_error (module_proc
623 ? G_("Character-valued module procedure %qs at %L"
624 " must not be assumed length")
625 : G_("Character-valued internal function %qs at %L"
626 " must not be assumed length"),
627 sym->name, &sym->declared_at);
628 }
629 }
630 }
631
632
633 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
634 introduce duplicates. */
635
636 static void
637 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
638 {
639 gfc_formal_arglist *f, *new_arglist;
640 gfc_symbol *new_sym;
641
642 for (; new_args != NULL; new_args = new_args->next)
643 {
644 new_sym = new_args->sym;
645 /* See if this arg is already in the formal argument list. */
646 for (f = proc->formal; f; f = f->next)
647 {
648 if (new_sym == f->sym)
649 break;
650 }
651
652 if (f)
653 continue;
654
655 /* Add a new argument. Argument order is not important. */
656 new_arglist = gfc_get_formal_arglist ();
657 new_arglist->sym = new_sym;
658 new_arglist->next = proc->formal;
659 proc->formal = new_arglist;
660 }
661 }
662
663
664 /* Flag the arguments that are not present in all entries. */
665
666 static void
667 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
668 {
669 gfc_formal_arglist *f, *head;
670 head = new_args;
671
672 for (f = proc->formal; f; f = f->next)
673 {
674 if (f->sym == NULL)
675 continue;
676
677 for (new_args = head; new_args; new_args = new_args->next)
678 {
679 if (new_args->sym == f->sym)
680 break;
681 }
682
683 if (new_args)
684 continue;
685
686 f->sym->attr.not_always_present = 1;
687 }
688 }
689
690
691 /* Resolve alternate entry points. If a symbol has multiple entry points we
692 create a new master symbol for the main routine, and turn the existing
693 symbol into an entry point. */
694
695 static void
696 resolve_entries (gfc_namespace *ns)
697 {
698 gfc_namespace *old_ns;
699 gfc_code *c;
700 gfc_symbol *proc;
701 gfc_entry_list *el;
702 char name[GFC_MAX_SYMBOL_LEN + 1];
703 static int master_count = 0;
704
705 if (ns->proc_name == NULL)
706 return;
707
708 /* No need to do anything if this procedure doesn't have alternate entry
709 points. */
710 if (!ns->entries)
711 return;
712
713 /* We may already have resolved alternate entry points. */
714 if (ns->proc_name->attr.entry_master)
715 return;
716
717 /* If this isn't a procedure something has gone horribly wrong. */
718 gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
719
720 /* Remember the current namespace. */
721 old_ns = gfc_current_ns;
722
723 gfc_current_ns = ns;
724
725 /* Add the main entry point to the list of entry points. */
726 el = gfc_get_entry_list ();
727 el->sym = ns->proc_name;
728 el->id = 0;
729 el->next = ns->entries;
730 ns->entries = el;
731 ns->proc_name->attr.entry = 1;
732
733 /* If it is a module function, it needs to be in the right namespace
734 so that gfc_get_fake_result_decl can gather up the results. The
735 need for this arose in get_proc_name, where these beasts were
736 left in their own namespace, to keep prior references linked to
737 the entry declaration.*/
738 if (ns->proc_name->attr.function
739 && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
740 el->sym->ns = ns;
741
742 /* Do the same for entries where the master is not a module
743 procedure. These are retained in the module namespace because
744 of the module procedure declaration. */
745 for (el = el->next; el; el = el->next)
746 if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
747 && el->sym->attr.mod_proc)
748 el->sym->ns = ns;
749 el = ns->entries;
750
751 /* Add an entry statement for it. */
752 c = gfc_get_code (EXEC_ENTRY);
753 c->ext.entry = el;
754 c->next = ns->code;
755 ns->code = c;
756
757 /* Create a new symbol for the master function. */
758 /* Give the internal function a unique name (within this file).
759 Also include the function name so the user has some hope of figuring
760 out what is going on. */
761 snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
762 master_count++, ns->proc_name->name);
763 gfc_get_ha_symbol (name, &proc);
764 gcc_assert (proc != NULL);
765
766 gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
767 if (ns->proc_name->attr.subroutine)
768 gfc_add_subroutine (&proc->attr, proc->name, NULL);
769 else
770 {
771 gfc_symbol *sym;
772 gfc_typespec *ts, *fts;
773 gfc_array_spec *as, *fas;
774 gfc_add_function (&proc->attr, proc->name, NULL);
775 proc->result = proc;
776 fas = ns->entries->sym->as;
777 fas = fas ? fas : ns->entries->sym->result->as;
778 fts = &ns->entries->sym->result->ts;
779 if (fts->type == BT_UNKNOWN)
780 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
781 for (el = ns->entries->next; el; el = el->next)
782 {
783 ts = &el->sym->result->ts;
784 as = el->sym->as;
785 as = as ? as : el->sym->result->as;
786 if (ts->type == BT_UNKNOWN)
787 ts = gfc_get_default_type (el->sym->result->name, NULL);
788
789 if (! gfc_compare_types (ts, fts)
790 || (el->sym->result->attr.dimension
791 != ns->entries->sym->result->attr.dimension)
792 || (el->sym->result->attr.pointer
793 != ns->entries->sym->result->attr.pointer))
794 break;
795 else if (as && fas && ns->entries->sym->result != el->sym->result
796 && gfc_compare_array_spec (as, fas) == 0)
797 gfc_error ("Function %s at %L has entries with mismatched "
798 "array specifications", ns->entries->sym->name,
799 &ns->entries->sym->declared_at);
800 /* The characteristics need to match and thus both need to have
801 the same string length, i.e. both len=*, or both len=4.
802 Having both len=<variable> is also possible, but difficult to
803 check at compile time. */
804 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
805 && (((ts->u.cl->length && !fts->u.cl->length)
806 ||(!ts->u.cl->length && fts->u.cl->length))
807 || (ts->u.cl->length
808 && ts->u.cl->length->expr_type
809 != fts->u.cl->length->expr_type)
810 || (ts->u.cl->length
811 && ts->u.cl->length->expr_type == EXPR_CONSTANT
812 && mpz_cmp (ts->u.cl->length->value.integer,
813 fts->u.cl->length->value.integer) != 0)))
814 gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
815 "entries returning variables of different "
816 "string lengths", ns->entries->sym->name,
817 &ns->entries->sym->declared_at);
818 }
819
820 if (el == NULL)
821 {
822 sym = ns->entries->sym->result;
823 /* All result types the same. */
824 proc->ts = *fts;
825 if (sym->attr.dimension)
826 gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
827 if (sym->attr.pointer)
828 gfc_add_pointer (&proc->attr, NULL);
829 }
830 else
831 {
832 /* Otherwise the result will be passed through a union by
833 reference. */
834 proc->attr.mixed_entry_master = 1;
835 for (el = ns->entries; el; el = el->next)
836 {
837 sym = el->sym->result;
838 if (sym->attr.dimension)
839 {
840 if (el == ns->entries)
841 gfc_error ("FUNCTION result %s cannot be an array in "
842 "FUNCTION %s at %L", sym->name,
843 ns->entries->sym->name, &sym->declared_at);
844 else
845 gfc_error ("ENTRY result %s cannot be an array in "
846 "FUNCTION %s at %L", sym->name,
847 ns->entries->sym->name, &sym->declared_at);
848 }
849 else if (sym->attr.pointer)
850 {
851 if (el == ns->entries)
852 gfc_error ("FUNCTION result %s cannot be a POINTER in "
853 "FUNCTION %s at %L", sym->name,
854 ns->entries->sym->name, &sym->declared_at);
855 else
856 gfc_error ("ENTRY result %s cannot be a POINTER in "
857 "FUNCTION %s at %L", sym->name,
858 ns->entries->sym->name, &sym->declared_at);
859 }
860 else
861 {
862 ts = &sym->ts;
863 if (ts->type == BT_UNKNOWN)
864 ts = gfc_get_default_type (sym->name, NULL);
865 switch (ts->type)
866 {
867 case BT_INTEGER:
868 if (ts->kind == gfc_default_integer_kind)
869 sym = NULL;
870 break;
871 case BT_REAL:
872 if (ts->kind == gfc_default_real_kind
873 || ts->kind == gfc_default_double_kind)
874 sym = NULL;
875 break;
876 case BT_COMPLEX:
877 if (ts->kind == gfc_default_complex_kind)
878 sym = NULL;
879 break;
880 case BT_LOGICAL:
881 if (ts->kind == gfc_default_logical_kind)
882 sym = NULL;
883 break;
884 case BT_UNKNOWN:
885 /* We will issue error elsewhere. */
886 sym = NULL;
887 break;
888 default:
889 break;
890 }
891 if (sym)
892 {
893 if (el == ns->entries)
894 gfc_error ("FUNCTION result %s cannot be of type %s "
895 "in FUNCTION %s at %L", sym->name,
896 gfc_typename (ts), ns->entries->sym->name,
897 &sym->declared_at);
898 else
899 gfc_error ("ENTRY result %s cannot be of type %s "
900 "in FUNCTION %s at %L", sym->name,
901 gfc_typename (ts), ns->entries->sym->name,
902 &sym->declared_at);
903 }
904 }
905 }
906 }
907 }
908 proc->attr.access = ACCESS_PRIVATE;
909 proc->attr.entry_master = 1;
910
911 /* Merge all the entry point arguments. */
912 for (el = ns->entries; el; el = el->next)
913 merge_argument_lists (proc, el->sym->formal);
914
915 /* Check the master formal arguments for any that are not
916 present in all entry points. */
917 for (el = ns->entries; el; el = el->next)
918 check_argument_lists (proc, el->sym->formal);
919
920 /* Use the master function for the function body. */
921 ns->proc_name = proc;
922
923 /* Finalize the new symbols. */
924 gfc_commit_symbols ();
925
926 /* Restore the original namespace. */
927 gfc_current_ns = old_ns;
928 }
929
930
931 /* Resolve common variables. */
932 static void
933 resolve_common_vars (gfc_common_head *common_block, bool named_common)
934 {
935 gfc_symbol *csym = common_block->head;
936
937 for (; csym; csym = csym->common_next)
938 {
939 /* gfc_add_in_common may have been called before, but the reported errors
940 have been ignored to continue parsing.
941 We do the checks again here. */
942 if (!csym->attr.use_assoc)
943 {
944 gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
945 gfc_notify_std (GFC_STD_F2018_OBS, "COMMON block at %L",
946 &common_block->where);
947 }
948
949 if (csym->value || csym->attr.data)
950 {
951 if (!csym->ns->is_block_data)
952 gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
953 "but only in BLOCK DATA initialization is "
954 "allowed", csym->name, &csym->declared_at);
955 else if (!named_common)
956 gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
957 "in a blank COMMON but initialization is only "
958 "allowed in named common blocks", csym->name,
959 &csym->declared_at);
960 }
961
962 if (UNLIMITED_POLY (csym))
963 gfc_error_now ("%qs in cannot appear in COMMON at %L "
964 "[F2008:C5100]", csym->name, &csym->declared_at);
965
966 if (csym->ts.type != BT_DERIVED)
967 continue;
968
969 if (!(csym->ts.u.derived->attr.sequence
970 || csym->ts.u.derived->attr.is_bind_c))
971 gfc_error_now ("Derived type variable %qs in COMMON at %L "
972 "has neither the SEQUENCE nor the BIND(C) "
973 "attribute", csym->name, &csym->declared_at);
974 if (csym->ts.u.derived->attr.alloc_comp)
975 gfc_error_now ("Derived type variable %qs in COMMON at %L "
976 "has an ultimate component that is "
977 "allocatable", csym->name, &csym->declared_at);
978 if (gfc_has_default_initializer (csym->ts.u.derived))
979 gfc_error_now ("Derived type variable %qs in COMMON at %L "
980 "may not have default initializer", csym->name,
981 &csym->declared_at);
982
983 if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
984 gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
985 }
986 }
987
988 /* Resolve common blocks. */
989 static void
990 resolve_common_blocks (gfc_symtree *common_root)
991 {
992 gfc_symbol *sym;
993 gfc_gsymbol * gsym;
994
995 if (common_root == NULL)
996 return;
997
998 if (common_root->left)
999 resolve_common_blocks (common_root->left);
1000 if (common_root->right)
1001 resolve_common_blocks (common_root->right);
1002
1003 resolve_common_vars (common_root->n.common, true);
1004
1005 /* The common name is a global name - in Fortran 2003 also if it has a
1006 C binding name, since Fortran 2008 only the C binding name is a global
1007 identifier. */
1008 if (!common_root->n.common->binding_label
1009 || gfc_notification_std (GFC_STD_F2008))
1010 {
1011 gsym = gfc_find_gsymbol (gfc_gsym_root,
1012 common_root->n.common->name);
1013
1014 if (gsym && gfc_notification_std (GFC_STD_F2008)
1015 && gsym->type == GSYM_COMMON
1016 && ((common_root->n.common->binding_label
1017 && (!gsym->binding_label
1018 || strcmp (common_root->n.common->binding_label,
1019 gsym->binding_label) != 0))
1020 || (!common_root->n.common->binding_label
1021 && gsym->binding_label)))
1022 {
1023 gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
1024 "identifier and must thus have the same binding name "
1025 "as the same-named COMMON block at %L: %s vs %s",
1026 common_root->n.common->name, &common_root->n.common->where,
1027 &gsym->where,
1028 common_root->n.common->binding_label
1029 ? common_root->n.common->binding_label : "(blank)",
1030 gsym->binding_label ? gsym->binding_label : "(blank)");
1031 return;
1032 }
1033
1034 if (gsym && gsym->type != GSYM_COMMON
1035 && !common_root->n.common->binding_label)
1036 {
1037 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1038 "as entity at %L",
1039 common_root->n.common->name, &common_root->n.common->where,
1040 &gsym->where);
1041 return;
1042 }
1043 if (gsym && gsym->type != GSYM_COMMON)
1044 {
1045 gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
1046 "%L sharing the identifier with global non-COMMON-block "
1047 "entity at %L", common_root->n.common->name,
1048 &common_root->n.common->where, &gsym->where);
1049 return;
1050 }
1051 if (!gsym)
1052 {
1053 gsym = gfc_get_gsymbol (common_root->n.common->name, false);
1054 gsym->type = GSYM_COMMON;
1055 gsym->where = common_root->n.common->where;
1056 gsym->defined = 1;
1057 }
1058 gsym->used = 1;
1059 }
1060
1061 if (common_root->n.common->binding_label)
1062 {
1063 gsym = gfc_find_gsymbol (gfc_gsym_root,
1064 common_root->n.common->binding_label);
1065 if (gsym && gsym->type != GSYM_COMMON)
1066 {
1067 gfc_error ("COMMON block at %L with binding label %qs uses the same "
1068 "global identifier as entity at %L",
1069 &common_root->n.common->where,
1070 common_root->n.common->binding_label, &gsym->where);
1071 return;
1072 }
1073 if (!gsym)
1074 {
1075 gsym = gfc_get_gsymbol (common_root->n.common->binding_label, true);
1076 gsym->type = GSYM_COMMON;
1077 gsym->where = common_root->n.common->where;
1078 gsym->defined = 1;
1079 }
1080 gsym->used = 1;
1081 }
1082
1083 gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
1084 if (sym == NULL)
1085 return;
1086
1087 if (sym->attr.flavor == FL_PARAMETER)
1088 gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
1089 sym->name, &common_root->n.common->where, &sym->declared_at);
1090
1091 if (sym->attr.external)
1092 gfc_error ("COMMON block %qs at %L cannot have the EXTERNAL attribute",
1093 sym->name, &common_root->n.common->where);
1094
1095 if (sym->attr.intrinsic)
1096 gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
1097 sym->name, &common_root->n.common->where);
1098 else if (sym->attr.result
1099 || gfc_is_function_return_value (sym, gfc_current_ns))
1100 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1101 "that is also a function result", sym->name,
1102 &common_root->n.common->where);
1103 else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
1104 && sym->attr.proc != PROC_ST_FUNCTION)
1105 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1106 "that is also a global procedure", sym->name,
1107 &common_root->n.common->where);
1108 }
1109
1110
1111 /* Resolve contained function types. Because contained functions can call one
1112 another, they have to be worked out before any of the contained procedures
1113 can be resolved.
1114
1115 The good news is that if a function doesn't already have a type, the only
1116 way it can get one is through an IMPLICIT type or a RESULT variable, because
1117 by definition contained functions are contained namespace they're contained
1118 in, not in a sibling or parent namespace. */
1119
1120 static void
1121 resolve_contained_functions (gfc_namespace *ns)
1122 {
1123 gfc_namespace *child;
1124 gfc_entry_list *el;
1125
1126 resolve_formal_arglists (ns);
1127
1128 for (child = ns->contained; child; child = child->sibling)
1129 {
1130 /* Resolve alternate entry points first. */
1131 resolve_entries (child);
1132
1133 /* Then check function return types. */
1134 resolve_contained_fntype (child->proc_name, child);
1135 for (el = child->entries; el; el = el->next)
1136 resolve_contained_fntype (el->sym, child);
1137 }
1138 }
1139
1140
1141
1142 /* A Parameterized Derived Type constructor must contain values for
1143 the PDT KIND parameters or they must have a default initializer.
1144 Go through the constructor picking out the KIND expressions,
1145 storing them in 'param_list' and then call gfc_get_pdt_instance
1146 to obtain the PDT instance. */
1147
1148 static gfc_actual_arglist *param_list, *param_tail, *param;
1149
1150 static bool
1151 get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
1152 {
1153 param = gfc_get_actual_arglist ();
1154 if (!param_list)
1155 param_list = param_tail = param;
1156 else
1157 {
1158 param_tail->next = param;
1159 param_tail = param_tail->next;
1160 }
1161
1162 param_tail->name = c->name;
1163 if (expr)
1164 param_tail->expr = gfc_copy_expr (expr);
1165 else if (c->initializer)
1166 param_tail->expr = gfc_copy_expr (c->initializer);
1167 else
1168 {
1169 param_tail->spec_type = SPEC_ASSUMED;
1170 if (c->attr.pdt_kind)
1171 {
1172 gfc_error ("The KIND parameter %qs in the PDT constructor "
1173 "at %C has no value", param->name);
1174 return false;
1175 }
1176 }
1177
1178 return true;
1179 }
1180
1181 static bool
1182 get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
1183 gfc_symbol *derived)
1184 {
1185 gfc_constructor *cons = NULL;
1186 gfc_component *comp;
1187 bool t = true;
1188
1189 if (expr && expr->expr_type == EXPR_STRUCTURE)
1190 cons = gfc_constructor_first (expr->value.constructor);
1191 else if (constr)
1192 cons = *constr;
1193 gcc_assert (cons);
1194
1195 comp = derived->components;
1196
1197 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1198 {
1199 if (cons->expr
1200 && cons->expr->expr_type == EXPR_STRUCTURE
1201 && comp->ts.type == BT_DERIVED)
1202 {
1203 t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
1204 if (!t)
1205 return t;
1206 }
1207 else if (comp->ts.type == BT_DERIVED)
1208 {
1209 t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
1210 if (!t)
1211 return t;
1212 }
1213 else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
1214 && derived->attr.pdt_template)
1215 {
1216 t = get_pdt_spec_expr (comp, cons->expr);
1217 if (!t)
1218 return t;
1219 }
1220 }
1221 return t;
1222 }
1223
1224
1225 static bool resolve_fl_derived0 (gfc_symbol *sym);
1226 static bool resolve_fl_struct (gfc_symbol *sym);
1227
1228
1229 /* Resolve all of the elements of a structure constructor and make sure that
1230 the types are correct. The 'init' flag indicates that the given
1231 constructor is an initializer. */
1232
1233 static bool
1234 resolve_structure_cons (gfc_expr *expr, int init)
1235 {
1236 gfc_constructor *cons;
1237 gfc_component *comp;
1238 bool t;
1239 symbol_attribute a;
1240
1241 t = true;
1242
1243 if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
1244 {
1245 if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
1246 resolve_fl_derived0 (expr->ts.u.derived);
1247 else
1248 resolve_fl_struct (expr->ts.u.derived);
1249
1250 /* If this is a Parameterized Derived Type template, find the
1251 instance corresponding to the PDT kind parameters. */
1252 if (expr->ts.u.derived->attr.pdt_template)
1253 {
1254 param_list = NULL;
1255 t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
1256 if (!t)
1257 return t;
1258 gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
1259
1260 expr->param_list = gfc_copy_actual_arglist (param_list);
1261
1262 if (param_list)
1263 gfc_free_actual_arglist (param_list);
1264
1265 if (!expr->ts.u.derived->attr.pdt_type)
1266 return false;
1267 }
1268 }
1269
1270 cons = gfc_constructor_first (expr->value.constructor);
1271
1272 /* A constructor may have references if it is the result of substituting a
1273 parameter variable. In this case we just pull out the component we
1274 want. */
1275 if (expr->ref)
1276 comp = expr->ref->u.c.sym->components;
1277 else
1278 comp = expr->ts.u.derived->components;
1279
1280 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1281 {
1282 int rank;
1283
1284 if (!cons->expr)
1285 continue;
1286
1287 /* Unions use an EXPR_NULL contrived expression to tell the translation
1288 phase to generate an initializer of the appropriate length.
1289 Ignore it here. */
1290 if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
1291 continue;
1292
1293 if (!gfc_resolve_expr (cons->expr))
1294 {
1295 t = false;
1296 continue;
1297 }
1298
1299 rank = comp->as ? comp->as->rank : 0;
1300 if (comp->ts.type == BT_CLASS
1301 && !comp->ts.u.derived->attr.unlimited_polymorphic
1302 && CLASS_DATA (comp)->as)
1303 rank = CLASS_DATA (comp)->as->rank;
1304
1305 if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
1306 && (comp->attr.allocatable || cons->expr->rank))
1307 {
1308 gfc_error ("The rank of the element in the structure "
1309 "constructor at %L does not match that of the "
1310 "component (%d/%d)", &cons->expr->where,
1311 cons->expr->rank, rank);
1312 t = false;
1313 }
1314
1315 /* If we don't have the right type, try to convert it. */
1316
1317 if (!comp->attr.proc_pointer &&
1318 !gfc_compare_types (&cons->expr->ts, &comp->ts))
1319 {
1320 if (strcmp (comp->name, "_extends") == 0)
1321 {
1322 /* Can afford to be brutal with the _extends initializer.
1323 The derived type can get lost because it is PRIVATE
1324 but it is not usage constrained by the standard. */
1325 cons->expr->ts = comp->ts;
1326 }
1327 else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
1328 {
1329 gfc_error ("The element in the structure constructor at %L, "
1330 "for pointer component %qs, is %s but should be %s",
1331 &cons->expr->where, comp->name,
1332 gfc_basic_typename (cons->expr->ts.type),
1333 gfc_basic_typename (comp->ts.type));
1334 t = false;
1335 }
1336 else
1337 {
1338 bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
1339 if (t)
1340 t = t2;
1341 }
1342 }
1343
1344 /* For strings, the length of the constructor should be the same as
1345 the one of the structure, ensure this if the lengths are known at
1346 compile time and when we are dealing with PARAMETER or structure
1347 constructors. */
1348 if (cons->expr->ts.type == BT_CHARACTER && comp->ts.u.cl
1349 && comp->ts.u.cl->length
1350 && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
1351 && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
1352 && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
1353 && cons->expr->rank != 0
1354 && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
1355 comp->ts.u.cl->length->value.integer) != 0)
1356 {
1357 if (cons->expr->expr_type == EXPR_VARIABLE
1358 && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
1359 {
1360 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1361 to make use of the gfc_resolve_character_array_constructor
1362 machinery. The expression is later simplified away to
1363 an array of string literals. */
1364 gfc_expr *para = cons->expr;
1365 cons->expr = gfc_get_expr ();
1366 cons->expr->ts = para->ts;
1367 cons->expr->where = para->where;
1368 cons->expr->expr_type = EXPR_ARRAY;
1369 cons->expr->rank = para->rank;
1370 cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
1371 gfc_constructor_append_expr (&cons->expr->value.constructor,
1372 para, &cons->expr->where);
1373 }
1374
1375 if (cons->expr->expr_type == EXPR_ARRAY)
1376 {
1377 /* Rely on the cleanup of the namespace to deal correctly with
1378 the old charlen. (There was a block here that attempted to
1379 remove the charlen but broke the chain in so doing.) */
1380 cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1381 cons->expr->ts.u.cl->length_from_typespec = true;
1382 cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
1383 gfc_resolve_character_array_constructor (cons->expr);
1384 }
1385 }
1386
1387 if (cons->expr->expr_type == EXPR_NULL
1388 && !(comp->attr.pointer || comp->attr.allocatable
1389 || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
1390 || (comp->ts.type == BT_CLASS
1391 && (CLASS_DATA (comp)->attr.class_pointer
1392 || CLASS_DATA (comp)->attr.allocatable))))
1393 {
1394 t = false;
1395 gfc_error ("The NULL in the structure constructor at %L is "
1396 "being applied to component %qs, which is neither "
1397 "a POINTER nor ALLOCATABLE", &cons->expr->where,
1398 comp->name);
1399 }
1400
1401 if (comp->attr.proc_pointer && comp->ts.interface)
1402 {
1403 /* Check procedure pointer interface. */
1404 gfc_symbol *s2 = NULL;
1405 gfc_component *c2;
1406 const char *name;
1407 char err[200];
1408
1409 c2 = gfc_get_proc_ptr_comp (cons->expr);
1410 if (c2)
1411 {
1412 s2 = c2->ts.interface;
1413 name = c2->name;
1414 }
1415 else if (cons->expr->expr_type == EXPR_FUNCTION)
1416 {
1417 s2 = cons->expr->symtree->n.sym->result;
1418 name = cons->expr->symtree->n.sym->result->name;
1419 }
1420 else if (cons->expr->expr_type != EXPR_NULL)
1421 {
1422 s2 = cons->expr->symtree->n.sym;
1423 name = cons->expr->symtree->n.sym->name;
1424 }
1425
1426 if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
1427 err, sizeof (err), NULL, NULL))
1428 {
1429 gfc_error_opt (OPT_Wargument_mismatch,
1430 "Interface mismatch for procedure-pointer "
1431 "component %qs in structure constructor at %L:"
1432 " %s", comp->name, &cons->expr->where, err);
1433 return false;
1434 }
1435 }
1436
1437 if (!comp->attr.pointer || comp->attr.proc_pointer
1438 || cons->expr->expr_type == EXPR_NULL)
1439 continue;
1440
1441 a = gfc_expr_attr (cons->expr);
1442
1443 if (!a.pointer && !a.target)
1444 {
1445 t = false;
1446 gfc_error ("The element in the structure constructor at %L, "
1447 "for pointer component %qs should be a POINTER or "
1448 "a TARGET", &cons->expr->where, comp->name);
1449 }
1450
1451 if (init)
1452 {
1453 /* F08:C461. Additional checks for pointer initialization. */
1454 if (a.allocatable)
1455 {
1456 t = false;
1457 gfc_error ("Pointer initialization target at %L "
1458 "must not be ALLOCATABLE", &cons->expr->where);
1459 }
1460 if (!a.save)
1461 {
1462 t = false;
1463 gfc_error ("Pointer initialization target at %L "
1464 "must have the SAVE attribute", &cons->expr->where);
1465 }
1466 }
1467
1468 /* F2003, C1272 (3). */
1469 bool impure = cons->expr->expr_type == EXPR_VARIABLE
1470 && (gfc_impure_variable (cons->expr->symtree->n.sym)
1471 || gfc_is_coindexed (cons->expr));
1472 if (impure && gfc_pure (NULL))
1473 {
1474 t = false;
1475 gfc_error ("Invalid expression in the structure constructor for "
1476 "pointer component %qs at %L in PURE procedure",
1477 comp->name, &cons->expr->where);
1478 }
1479
1480 if (impure)
1481 gfc_unset_implicit_pure (NULL);
1482 }
1483
1484 return t;
1485 }
1486
1487
1488 /****************** Expression name resolution ******************/
1489
1490 /* Returns 0 if a symbol was not declared with a type or
1491 attribute declaration statement, nonzero otherwise. */
1492
1493 static int
1494 was_declared (gfc_symbol *sym)
1495 {
1496 symbol_attribute a;
1497
1498 a = sym->attr;
1499
1500 if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
1501 return 1;
1502
1503 if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
1504 || a.optional || a.pointer || a.save || a.target || a.volatile_
1505 || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
1506 || a.asynchronous || a.codimension)
1507 return 1;
1508
1509 return 0;
1510 }
1511
1512
1513 /* Determine if a symbol is generic or not. */
1514
1515 static int
1516 generic_sym (gfc_symbol *sym)
1517 {
1518 gfc_symbol *s;
1519
1520 if (sym->attr.generic ||
1521 (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
1522 return 1;
1523
1524 if (was_declared (sym) || sym->ns->parent == NULL)
1525 return 0;
1526
1527 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1528
1529 if (s != NULL)
1530 {
1531 if (s == sym)
1532 return 0;
1533 else
1534 return generic_sym (s);
1535 }
1536
1537 return 0;
1538 }
1539
1540
1541 /* Determine if a symbol is specific or not. */
1542
1543 static int
1544 specific_sym (gfc_symbol *sym)
1545 {
1546 gfc_symbol *s;
1547
1548 if (sym->attr.if_source == IFSRC_IFBODY
1549 || sym->attr.proc == PROC_MODULE
1550 || sym->attr.proc == PROC_INTERNAL
1551 || sym->attr.proc == PROC_ST_FUNCTION
1552 || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1553 || sym->attr.external)
1554 return 1;
1555
1556 if (was_declared (sym) || sym->ns->parent == NULL)
1557 return 0;
1558
1559 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1560
1561 return (s == NULL) ? 0 : specific_sym (s);
1562 }
1563
1564
1565 /* Figure out if the procedure is specific, generic or unknown. */
1566
1567 enum proc_type
1568 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
1569
1570 static proc_type
1571 procedure_kind (gfc_symbol *sym)
1572 {
1573 if (generic_sym (sym))
1574 return PTYPE_GENERIC;
1575
1576 if (specific_sym (sym))
1577 return PTYPE_SPECIFIC;
1578
1579 return PTYPE_UNKNOWN;
1580 }
1581
1582 /* Check references to assumed size arrays. The flag need_full_assumed_size
1583 is nonzero when matching actual arguments. */
1584
1585 static int need_full_assumed_size = 0;
1586
1587 static bool
1588 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1589 {
1590 if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1591 return false;
1592
1593 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1594 What should it be? */
1595 if (e->ref && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1596 && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1597 && (e->ref->u.ar.type == AR_FULL))
1598 {
1599 gfc_error ("The upper bound in the last dimension must "
1600 "appear in the reference to the assumed size "
1601 "array %qs at %L", sym->name, &e->where);
1602 return true;
1603 }
1604 return false;
1605 }
1606
1607
1608 /* Look for bad assumed size array references in argument expressions
1609 of elemental and array valued intrinsic procedures. Since this is
1610 called from procedure resolution functions, it only recurses at
1611 operators. */
1612
1613 static bool
1614 resolve_assumed_size_actual (gfc_expr *e)
1615 {
1616 if (e == NULL)
1617 return false;
1618
1619 switch (e->expr_type)
1620 {
1621 case EXPR_VARIABLE:
1622 if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1623 return true;
1624 break;
1625
1626 case EXPR_OP:
1627 if (resolve_assumed_size_actual (e->value.op.op1)
1628 || resolve_assumed_size_actual (e->value.op.op2))
1629 return true;
1630 break;
1631
1632 default:
1633 break;
1634 }
1635 return false;
1636 }
1637
1638
1639 /* Check a generic procedure, passed as an actual argument, to see if
1640 there is a matching specific name. If none, it is an error, and if
1641 more than one, the reference is ambiguous. */
1642 static int
1643 count_specific_procs (gfc_expr *e)
1644 {
1645 int n;
1646 gfc_interface *p;
1647 gfc_symbol *sym;
1648
1649 n = 0;
1650 sym = e->symtree->n.sym;
1651
1652 for (p = sym->generic; p; p = p->next)
1653 if (strcmp (sym->name, p->sym->name) == 0)
1654 {
1655 e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1656 sym->name);
1657 n++;
1658 }
1659
1660 if (n > 1)
1661 gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
1662 &e->where);
1663
1664 if (n == 0)
1665 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1666 "argument at %L", sym->name, &e->where);
1667
1668 return n;
1669 }
1670
1671
1672 /* See if a call to sym could possibly be a not allowed RECURSION because of
1673 a missing RECURSIVE declaration. This means that either sym is the current
1674 context itself, or sym is the parent of a contained procedure calling its
1675 non-RECURSIVE containing procedure.
1676 This also works if sym is an ENTRY. */
1677
1678 static bool
1679 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1680 {
1681 gfc_symbol* proc_sym;
1682 gfc_symbol* context_proc;
1683 gfc_namespace* real_context;
1684
1685 if (sym->attr.flavor == FL_PROGRAM
1686 || gfc_fl_struct (sym->attr.flavor))
1687 return false;
1688
1689 /* If we've got an ENTRY, find real procedure. */
1690 if (sym->attr.entry && sym->ns->entries)
1691 proc_sym = sym->ns->entries->sym;
1692 else
1693 proc_sym = sym;
1694
1695 /* If sym is RECURSIVE, all is well of course. */
1696 if (proc_sym->attr.recursive || flag_recursive)
1697 return false;
1698
1699 /* Find the context procedure's "real" symbol if it has entries.
1700 We look for a procedure symbol, so recurse on the parents if we don't
1701 find one (like in case of a BLOCK construct). */
1702 for (real_context = context; ; real_context = real_context->parent)
1703 {
1704 /* We should find something, eventually! */
1705 gcc_assert (real_context);
1706
1707 context_proc = (real_context->entries ? real_context->entries->sym
1708 : real_context->proc_name);
1709
1710 /* In some special cases, there may not be a proc_name, like for this
1711 invalid code:
1712 real(bad_kind()) function foo () ...
1713 when checking the call to bad_kind ().
1714 In these cases, we simply return here and assume that the
1715 call is ok. */
1716 if (!context_proc)
1717 return false;
1718
1719 if (context_proc->attr.flavor != FL_LABEL)
1720 break;
1721 }
1722
1723 /* A call from sym's body to itself is recursion, of course. */
1724 if (context_proc == proc_sym)
1725 return true;
1726
1727 /* The same is true if context is a contained procedure and sym the
1728 containing one. */
1729 if (context_proc->attr.contained)
1730 {
1731 gfc_symbol* parent_proc;
1732
1733 gcc_assert (context->parent);
1734 parent_proc = (context->parent->entries ? context->parent->entries->sym
1735 : context->parent->proc_name);
1736
1737 if (parent_proc == proc_sym)
1738 return true;
1739 }
1740
1741 return false;
1742 }
1743
1744
1745 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1746 its typespec and formal argument list. */
1747
1748 bool
1749 gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
1750 {
1751 gfc_intrinsic_sym* isym = NULL;
1752 const char* symstd;
1753
1754 if (sym->formal)
1755 return true;
1756
1757 /* Already resolved. */
1758 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1759 return true;
1760
1761 /* We already know this one is an intrinsic, so we don't call
1762 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1763 gfc_find_subroutine directly to check whether it is a function or
1764 subroutine. */
1765
1766 if (sym->intmod_sym_id && sym->attr.subroutine)
1767 {
1768 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1769 isym = gfc_intrinsic_subroutine_by_id (id);
1770 }
1771 else if (sym->intmod_sym_id)
1772 {
1773 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1774 isym = gfc_intrinsic_function_by_id (id);
1775 }
1776 else if (!sym->attr.subroutine)
1777 isym = gfc_find_function (sym->name);
1778
1779 if (isym && !sym->attr.subroutine)
1780 {
1781 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1782 && !sym->attr.implicit_type)
1783 gfc_warning (OPT_Wsurprising,
1784 "Type specified for intrinsic function %qs at %L is"
1785 " ignored", sym->name, &sym->declared_at);
1786
1787 if (!sym->attr.function &&
1788 !gfc_add_function(&sym->attr, sym->name, loc))
1789 return false;
1790
1791 sym->ts = isym->ts;
1792 }
1793 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1794 {
1795 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1796 {
1797 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1798 " specifier", sym->name, &sym->declared_at);
1799 return false;
1800 }
1801
1802 if (!sym->attr.subroutine &&
1803 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1804 return false;
1805 }
1806 else
1807 {
1808 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1809 &sym->declared_at);
1810 return false;
1811 }
1812
1813 gfc_copy_formal_args_intr (sym, isym, NULL);
1814
1815 sym->attr.pure = isym->pure;
1816 sym->attr.elemental = isym->elemental;
1817
1818 /* Check it is actually available in the standard settings. */
1819 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1820 {
1821 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1822 "available in the current standard settings but %s. Use "
1823 "an appropriate %<-std=*%> option or enable "
1824 "%<-fall-intrinsics%> in order to use it.",
1825 sym->name, &sym->declared_at, symstd);
1826 return false;
1827 }
1828
1829 return true;
1830 }
1831
1832
1833 /* Resolve a procedure expression, like passing it to a called procedure or as
1834 RHS for a procedure pointer assignment. */
1835
1836 static bool
1837 resolve_procedure_expression (gfc_expr* expr)
1838 {
1839 gfc_symbol* sym;
1840
1841 if (expr->expr_type != EXPR_VARIABLE)
1842 return true;
1843 gcc_assert (expr->symtree);
1844
1845 sym = expr->symtree->n.sym;
1846
1847 if (sym->attr.intrinsic)
1848 gfc_resolve_intrinsic (sym, &expr->where);
1849
1850 if (sym->attr.flavor != FL_PROCEDURE
1851 || (sym->attr.function && sym->result == sym))
1852 return true;
1853
1854 /* A non-RECURSIVE procedure that is used as procedure expression within its
1855 own body is in danger of being called recursively. */
1856 if (is_illegal_recursion (sym, gfc_current_ns))
1857 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1858 " itself recursively. Declare it RECURSIVE or use"
1859 " %<-frecursive%>", sym->name, &expr->where);
1860
1861 return true;
1862 }
1863
1864
1865 /* Resolve an actual argument list. Most of the time, this is just
1866 resolving the expressions in the list.
1867 The exception is that we sometimes have to decide whether arguments
1868 that look like procedure arguments are really simple variable
1869 references. */
1870
1871 static bool
1872 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1873 bool no_formal_args)
1874 {
1875 gfc_symbol *sym;
1876 gfc_symtree *parent_st;
1877 gfc_expr *e;
1878 gfc_component *comp;
1879 int save_need_full_assumed_size;
1880 bool return_value = false;
1881 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1882
1883 actual_arg = true;
1884 first_actual_arg = true;
1885
1886 for (; arg; arg = arg->next)
1887 {
1888 e = arg->expr;
1889 if (e == NULL)
1890 {
1891 /* Check the label is a valid branching target. */
1892 if (arg->label)
1893 {
1894 if (arg->label->defined == ST_LABEL_UNKNOWN)
1895 {
1896 gfc_error ("Label %d referenced at %L is never defined",
1897 arg->label->value, &arg->label->where);
1898 goto cleanup;
1899 }
1900 }
1901 first_actual_arg = false;
1902 continue;
1903 }
1904
1905 if (e->expr_type == EXPR_VARIABLE
1906 && e->symtree->n.sym->attr.generic
1907 && no_formal_args
1908 && count_specific_procs (e) != 1)
1909 goto cleanup;
1910
1911 if (e->ts.type != BT_PROCEDURE)
1912 {
1913 save_need_full_assumed_size = need_full_assumed_size;
1914 if (e->expr_type != EXPR_VARIABLE)
1915 need_full_assumed_size = 0;
1916 if (!gfc_resolve_expr (e))
1917 goto cleanup;
1918 need_full_assumed_size = save_need_full_assumed_size;
1919 goto argument_list;
1920 }
1921
1922 /* See if the expression node should really be a variable reference. */
1923
1924 sym = e->symtree->n.sym;
1925
1926 if (sym->attr.flavor == FL_PROCEDURE
1927 || sym->attr.intrinsic
1928 || sym->attr.external)
1929 {
1930 int actual_ok;
1931
1932 /* If a procedure is not already determined to be something else
1933 check if it is intrinsic. */
1934 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1935 sym->attr.intrinsic = 1;
1936
1937 if (sym->attr.proc == PROC_ST_FUNCTION)
1938 {
1939 gfc_error ("Statement function %qs at %L is not allowed as an "
1940 "actual argument", sym->name, &e->where);
1941 }
1942
1943 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1944 sym->attr.subroutine);
1945 if (sym->attr.intrinsic && actual_ok == 0)
1946 {
1947 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1948 "actual argument", sym->name, &e->where);
1949 }
1950
1951 if (sym->attr.contained && !sym->attr.use_assoc
1952 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1953 {
1954 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1955 " used as actual argument at %L",
1956 sym->name, &e->where))
1957 goto cleanup;
1958 }
1959
1960 if (sym->attr.elemental && !sym->attr.intrinsic)
1961 {
1962 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1963 "allowed as an actual argument at %L", sym->name,
1964 &e->where);
1965 }
1966
1967 /* Check if a generic interface has a specific procedure
1968 with the same name before emitting an error. */
1969 if (sym->attr.generic && count_specific_procs (e) != 1)
1970 goto cleanup;
1971
1972 /* Just in case a specific was found for the expression. */
1973 sym = e->symtree->n.sym;
1974
1975 /* If the symbol is the function that names the current (or
1976 parent) scope, then we really have a variable reference. */
1977
1978 if (gfc_is_function_return_value (sym, sym->ns))
1979 goto got_variable;
1980
1981 /* If all else fails, see if we have a specific intrinsic. */
1982 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
1983 {
1984 gfc_intrinsic_sym *isym;
1985
1986 isym = gfc_find_function (sym->name);
1987 if (isym == NULL || !isym->specific)
1988 {
1989 gfc_error ("Unable to find a specific INTRINSIC procedure "
1990 "for the reference %qs at %L", sym->name,
1991 &e->where);
1992 goto cleanup;
1993 }
1994 sym->ts = isym->ts;
1995 sym->attr.intrinsic = 1;
1996 sym->attr.function = 1;
1997 }
1998
1999 if (!gfc_resolve_expr (e))
2000 goto cleanup;
2001 goto argument_list;
2002 }
2003
2004 /* See if the name is a module procedure in a parent unit. */
2005
2006 if (was_declared (sym) || sym->ns->parent == NULL)
2007 goto got_variable;
2008
2009 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2010 {
2011 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2012 goto cleanup;
2013 }
2014
2015 if (parent_st == NULL)
2016 goto got_variable;
2017
2018 sym = parent_st->n.sym;
2019 e->symtree = parent_st; /* Point to the right thing. */
2020
2021 if (sym->attr.flavor == FL_PROCEDURE
2022 || sym->attr.intrinsic
2023 || sym->attr.external)
2024 {
2025 if (!gfc_resolve_expr (e))
2026 goto cleanup;
2027 goto argument_list;
2028 }
2029
2030 got_variable:
2031 e->expr_type = EXPR_VARIABLE;
2032 e->ts = sym->ts;
2033 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2034 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2035 && CLASS_DATA (sym)->as))
2036 {
2037 e->rank = sym->ts.type == BT_CLASS
2038 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2039 e->ref = gfc_get_ref ();
2040 e->ref->type = REF_ARRAY;
2041 e->ref->u.ar.type = AR_FULL;
2042 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2043 ? CLASS_DATA (sym)->as : sym->as;
2044 }
2045
2046 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2047 primary.c (match_actual_arg). If above code determines that it
2048 is a variable instead, it needs to be resolved as it was not
2049 done at the beginning of this function. */
2050 save_need_full_assumed_size = need_full_assumed_size;
2051 if (e->expr_type != EXPR_VARIABLE)
2052 need_full_assumed_size = 0;
2053 if (!gfc_resolve_expr (e))
2054 goto cleanup;
2055 need_full_assumed_size = save_need_full_assumed_size;
2056
2057 argument_list:
2058 /* Check argument list functions %VAL, %LOC and %REF. There is
2059 nothing to do for %REF. */
2060 if (arg->name && arg->name[0] == '%')
2061 {
2062 if (strcmp ("%VAL", arg->name) == 0)
2063 {
2064 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2065 {
2066 gfc_error ("By-value argument at %L is not of numeric "
2067 "type", &e->where);
2068 goto cleanup;
2069 }
2070
2071 if (e->rank)
2072 {
2073 gfc_error ("By-value argument at %L cannot be an array or "
2074 "an array section", &e->where);
2075 goto cleanup;
2076 }
2077
2078 /* Intrinsics are still PROC_UNKNOWN here. However,
2079 since same file external procedures are not resolvable
2080 in gfortran, it is a good deal easier to leave them to
2081 intrinsic.c. */
2082 if (ptype != PROC_UNKNOWN
2083 && ptype != PROC_DUMMY
2084 && ptype != PROC_EXTERNAL
2085 && ptype != PROC_MODULE)
2086 {
2087 gfc_error ("By-value argument at %L is not allowed "
2088 "in this context", &e->where);
2089 goto cleanup;
2090 }
2091 }
2092
2093 /* Statement functions have already been excluded above. */
2094 else if (strcmp ("%LOC", arg->name) == 0
2095 && e->ts.type == BT_PROCEDURE)
2096 {
2097 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2098 {
2099 gfc_error ("Passing internal procedure at %L by location "
2100 "not allowed", &e->where);
2101 goto cleanup;
2102 }
2103 }
2104 }
2105
2106 comp = gfc_get_proc_ptr_comp(e);
2107 if (e->expr_type == EXPR_VARIABLE
2108 && comp && comp->attr.elemental)
2109 {
2110 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2111 "allowed as an actual argument at %L", comp->name,
2112 &e->where);
2113 }
2114
2115 /* Fortran 2008, C1237. */
2116 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2117 && gfc_has_ultimate_pointer (e))
2118 {
2119 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2120 "component", &e->where);
2121 goto cleanup;
2122 }
2123
2124 first_actual_arg = false;
2125 }
2126
2127 return_value = true;
2128
2129 cleanup:
2130 actual_arg = actual_arg_sav;
2131 first_actual_arg = first_actual_arg_sav;
2132
2133 return return_value;
2134 }
2135
2136
2137 /* Do the checks of the actual argument list that are specific to elemental
2138 procedures. If called with c == NULL, we have a function, otherwise if
2139 expr == NULL, we have a subroutine. */
2140
2141 static bool
2142 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2143 {
2144 gfc_actual_arglist *arg0;
2145 gfc_actual_arglist *arg;
2146 gfc_symbol *esym = NULL;
2147 gfc_intrinsic_sym *isym = NULL;
2148 gfc_expr *e = NULL;
2149 gfc_intrinsic_arg *iformal = NULL;
2150 gfc_formal_arglist *eformal = NULL;
2151 bool formal_optional = false;
2152 bool set_by_optional = false;
2153 int i;
2154 int rank = 0;
2155
2156 /* Is this an elemental procedure? */
2157 if (expr && expr->value.function.actual != NULL)
2158 {
2159 if (expr->value.function.esym != NULL
2160 && expr->value.function.esym->attr.elemental)
2161 {
2162 arg0 = expr->value.function.actual;
2163 esym = expr->value.function.esym;
2164 }
2165 else if (expr->value.function.isym != NULL
2166 && expr->value.function.isym->elemental)
2167 {
2168 arg0 = expr->value.function.actual;
2169 isym = expr->value.function.isym;
2170 }
2171 else
2172 return true;
2173 }
2174 else if (c && c->ext.actual != NULL)
2175 {
2176 arg0 = c->ext.actual;
2177
2178 if (c->resolved_sym)
2179 esym = c->resolved_sym;
2180 else
2181 esym = c->symtree->n.sym;
2182 gcc_assert (esym);
2183
2184 if (!esym->attr.elemental)
2185 return true;
2186 }
2187 else
2188 return true;
2189
2190 /* The rank of an elemental is the rank of its array argument(s). */
2191 for (arg = arg0; arg; arg = arg->next)
2192 {
2193 if (arg->expr != NULL && arg->expr->rank != 0)
2194 {
2195 rank = arg->expr->rank;
2196 if (arg->expr->expr_type == EXPR_VARIABLE
2197 && arg->expr->symtree->n.sym->attr.optional)
2198 set_by_optional = true;
2199
2200 /* Function specific; set the result rank and shape. */
2201 if (expr)
2202 {
2203 expr->rank = rank;
2204 if (!expr->shape && arg->expr->shape)
2205 {
2206 expr->shape = gfc_get_shape (rank);
2207 for (i = 0; i < rank; i++)
2208 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2209 }
2210 }
2211 break;
2212 }
2213 }
2214
2215 /* If it is an array, it shall not be supplied as an actual argument
2216 to an elemental procedure unless an array of the same rank is supplied
2217 as an actual argument corresponding to a nonoptional dummy argument of
2218 that elemental procedure(12.4.1.5). */
2219 formal_optional = false;
2220 if (isym)
2221 iformal = isym->formal;
2222 else
2223 eformal = esym->formal;
2224
2225 for (arg = arg0; arg; arg = arg->next)
2226 {
2227 if (eformal)
2228 {
2229 if (eformal->sym && eformal->sym->attr.optional)
2230 formal_optional = true;
2231 eformal = eformal->next;
2232 }
2233 else if (isym && iformal)
2234 {
2235 if (iformal->optional)
2236 formal_optional = true;
2237 iformal = iformal->next;
2238 }
2239 else if (isym)
2240 formal_optional = true;
2241
2242 if (pedantic && arg->expr != NULL
2243 && arg->expr->expr_type == EXPR_VARIABLE
2244 && arg->expr->symtree->n.sym->attr.optional
2245 && formal_optional
2246 && arg->expr->rank
2247 && (set_by_optional || arg->expr->rank != rank)
2248 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2249 {
2250 gfc_warning (OPT_Wpedantic,
2251 "%qs at %L is an array and OPTIONAL; IF IT IS "
2252 "MISSING, it cannot be the actual argument of an "
2253 "ELEMENTAL procedure unless there is a non-optional "
2254 "argument with the same rank (12.4.1.5)",
2255 arg->expr->symtree->n.sym->name, &arg->expr->where);
2256 }
2257 }
2258
2259 for (arg = arg0; arg; arg = arg->next)
2260 {
2261 if (arg->expr == NULL || arg->expr->rank == 0)
2262 continue;
2263
2264 /* Being elemental, the last upper bound of an assumed size array
2265 argument must be present. */
2266 if (resolve_assumed_size_actual (arg->expr))
2267 return false;
2268
2269 /* Elemental procedure's array actual arguments must conform. */
2270 if (e != NULL)
2271 {
2272 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2273 return false;
2274 }
2275 else
2276 e = arg->expr;
2277 }
2278
2279 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2280 is an array, the intent inout/out variable needs to be also an array. */
2281 if (rank > 0 && esym && expr == NULL)
2282 for (eformal = esym->formal, arg = arg0; arg && eformal;
2283 arg = arg->next, eformal = eformal->next)
2284 if ((eformal->sym->attr.intent == INTENT_OUT
2285 || eformal->sym->attr.intent == INTENT_INOUT)
2286 && arg->expr && arg->expr->rank == 0)
2287 {
2288 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2289 "ELEMENTAL subroutine %qs is a scalar, but another "
2290 "actual argument is an array", &arg->expr->where,
2291 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2292 : "INOUT", eformal->sym->name, esym->name);
2293 return false;
2294 }
2295 return true;
2296 }
2297
2298
2299 /* This function does the checking of references to global procedures
2300 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2301 77 and 95 standards. It checks for a gsymbol for the name, making
2302 one if it does not already exist. If it already exists, then the
2303 reference being resolved must correspond to the type of gsymbol.
2304 Otherwise, the new symbol is equipped with the attributes of the
2305 reference. The corresponding code that is called in creating
2306 global entities is parse.c.
2307
2308 In addition, for all but -std=legacy, the gsymbols are used to
2309 check the interfaces of external procedures from the same file.
2310 The namespace of the gsymbol is resolved and then, once this is
2311 done the interface is checked. */
2312
2313
2314 static bool
2315 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2316 {
2317 if (!gsym_ns->proc_name->attr.recursive)
2318 return true;
2319
2320 if (sym->ns == gsym_ns)
2321 return false;
2322
2323 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2324 return false;
2325
2326 return true;
2327 }
2328
2329 static bool
2330 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2331 {
2332 if (gsym_ns->entries)
2333 {
2334 gfc_entry_list *entry = gsym_ns->entries;
2335
2336 for (; entry; entry = entry->next)
2337 {
2338 if (strcmp (sym->name, entry->sym->name) == 0)
2339 {
2340 if (strcmp (gsym_ns->proc_name->name,
2341 sym->ns->proc_name->name) == 0)
2342 return false;
2343
2344 if (sym->ns->parent
2345 && strcmp (gsym_ns->proc_name->name,
2346 sym->ns->parent->proc_name->name) == 0)
2347 return false;
2348 }
2349 }
2350 }
2351 return true;
2352 }
2353
2354
2355 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2356
2357 bool
2358 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2359 {
2360 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2361
2362 for ( ; arg; arg = arg->next)
2363 {
2364 if (!arg->sym)
2365 continue;
2366
2367 if (arg->sym->attr.allocatable) /* (2a) */
2368 {
2369 strncpy (errmsg, _("allocatable argument"), err_len);
2370 return true;
2371 }
2372 else if (arg->sym->attr.asynchronous)
2373 {
2374 strncpy (errmsg, _("asynchronous argument"), err_len);
2375 return true;
2376 }
2377 else if (arg->sym->attr.optional)
2378 {
2379 strncpy (errmsg, _("optional argument"), err_len);
2380 return true;
2381 }
2382 else if (arg->sym->attr.pointer)
2383 {
2384 strncpy (errmsg, _("pointer argument"), err_len);
2385 return true;
2386 }
2387 else if (arg->sym->attr.target)
2388 {
2389 strncpy (errmsg, _("target argument"), err_len);
2390 return true;
2391 }
2392 else if (arg->sym->attr.value)
2393 {
2394 strncpy (errmsg, _("value argument"), err_len);
2395 return true;
2396 }
2397 else if (arg->sym->attr.volatile_)
2398 {
2399 strncpy (errmsg, _("volatile argument"), err_len);
2400 return true;
2401 }
2402 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2403 {
2404 strncpy (errmsg, _("assumed-shape argument"), err_len);
2405 return true;
2406 }
2407 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2408 {
2409 strncpy (errmsg, _("assumed-rank argument"), err_len);
2410 return true;
2411 }
2412 else if (arg->sym->attr.codimension) /* (2c) */
2413 {
2414 strncpy (errmsg, _("coarray argument"), err_len);
2415 return true;
2416 }
2417 else if (false) /* (2d) TODO: parametrized derived type */
2418 {
2419 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2420 return true;
2421 }
2422 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2423 {
2424 strncpy (errmsg, _("polymorphic argument"), err_len);
2425 return true;
2426 }
2427 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2428 {
2429 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2430 return true;
2431 }
2432 else if (arg->sym->ts.type == BT_ASSUMED)
2433 {
2434 /* As assumed-type is unlimited polymorphic (cf. above).
2435 See also TS 29113, Note 6.1. */
2436 strncpy (errmsg, _("assumed-type argument"), err_len);
2437 return true;
2438 }
2439 }
2440
2441 if (sym->attr.function)
2442 {
2443 gfc_symbol *res = sym->result ? sym->result : sym;
2444
2445 if (res->attr.dimension) /* (3a) */
2446 {
2447 strncpy (errmsg, _("array result"), err_len);
2448 return true;
2449 }
2450 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2451 {
2452 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2453 return true;
2454 }
2455 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2456 && res->ts.u.cl->length
2457 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2458 {
2459 strncpy (errmsg, _("result with non-constant character length"), err_len);
2460 return true;
2461 }
2462 }
2463
2464 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2465 {
2466 strncpy (errmsg, _("elemental procedure"), err_len);
2467 return true;
2468 }
2469 else if (sym->attr.is_bind_c) /* (5) */
2470 {
2471 strncpy (errmsg, _("bind(c) procedure"), err_len);
2472 return true;
2473 }
2474
2475 return false;
2476 }
2477
2478
2479 static void
2480 resolve_global_procedure (gfc_symbol *sym, locus *where,
2481 gfc_actual_arglist **actual, int sub)
2482 {
2483 gfc_gsymbol * gsym;
2484 gfc_namespace *ns;
2485 enum gfc_symbol_type type;
2486 char reason[200];
2487
2488 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2489
2490 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name,
2491 sym->binding_label != NULL);
2492
2493 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2494 gfc_global_used (gsym, where);
2495
2496 if ((sym->attr.if_source == IFSRC_UNKNOWN
2497 || sym->attr.if_source == IFSRC_IFBODY)
2498 && gsym->type != GSYM_UNKNOWN
2499 && !gsym->binding_label
2500 && gsym->ns
2501 && gsym->ns->proc_name
2502 && not_in_recursive (sym, gsym->ns)
2503 && not_entry_self_reference (sym, gsym->ns))
2504 {
2505 gfc_symbol *def_sym;
2506 def_sym = gsym->ns->proc_name;
2507
2508 if (gsym->ns->resolved != -1)
2509 {
2510
2511 /* Resolve the gsymbol namespace if needed. */
2512 if (!gsym->ns->resolved)
2513 {
2514 gfc_symbol *old_dt_list;
2515
2516 /* Stash away derived types so that the backend_decls
2517 do not get mixed up. */
2518 old_dt_list = gfc_derived_types;
2519 gfc_derived_types = NULL;
2520
2521 gfc_resolve (gsym->ns);
2522
2523 /* Store the new derived types with the global namespace. */
2524 if (gfc_derived_types)
2525 gsym->ns->derived_types = gfc_derived_types;
2526
2527 /* Restore the derived types of this namespace. */
2528 gfc_derived_types = old_dt_list;
2529 }
2530
2531 /* Make sure that translation for the gsymbol occurs before
2532 the procedure currently being resolved. */
2533 ns = gfc_global_ns_list;
2534 for (; ns && ns != gsym->ns; ns = ns->sibling)
2535 {
2536 if (ns->sibling == gsym->ns)
2537 {
2538 ns->sibling = gsym->ns->sibling;
2539 gsym->ns->sibling = gfc_global_ns_list;
2540 gfc_global_ns_list = gsym->ns;
2541 break;
2542 }
2543 }
2544
2545 /* This can happen if a binding name has been specified. */
2546 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2547 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2548
2549 if (def_sym->attr.entry_master)
2550 {
2551 gfc_entry_list *entry;
2552 for (entry = gsym->ns->entries; entry; entry = entry->next)
2553 if (strcmp (entry->sym->name, sym->name) == 0)
2554 {
2555 def_sym = entry->sym;
2556 break;
2557 }
2558 }
2559 }
2560
2561 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2562 {
2563 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2564 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2565 gfc_typename (&def_sym->ts));
2566 goto done;
2567 }
2568
2569 if (sym->attr.if_source == IFSRC_UNKNOWN
2570 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2571 {
2572 gfc_error ("Explicit interface required for %qs at %L: %s",
2573 sym->name, &sym->declared_at, reason);
2574 goto done;
2575 }
2576
2577 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU))
2578 /* Turn erros into warnings with -std=gnu and -std=legacy. */
2579 gfc_errors_to_warnings (true);
2580
2581 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2582 reason, sizeof(reason), NULL, NULL))
2583 {
2584 gfc_error_opt (OPT_Wargument_mismatch,
2585 "Interface mismatch in global procedure %qs at %L:"
2586 " %s", sym->name, &sym->declared_at, reason);
2587 goto done;
2588 }
2589
2590 if (!pedantic
2591 || ((gfc_option.warn_std & GFC_STD_LEGACY)
2592 && !(gfc_option.warn_std & GFC_STD_GNU)))
2593 gfc_errors_to_warnings (true);
2594
2595 if (sym->attr.if_source != IFSRC_IFBODY)
2596 gfc_procedure_use (def_sym, actual, where);
2597 }
2598
2599 done:
2600 gfc_errors_to_warnings (false);
2601
2602 if (gsym->type == GSYM_UNKNOWN)
2603 {
2604 gsym->type = type;
2605 gsym->where = *where;
2606 }
2607
2608 gsym->used = 1;
2609 }
2610
2611
2612 /************* Function resolution *************/
2613
2614 /* Resolve a function call known to be generic.
2615 Section 14.1.2.4.1. */
2616
2617 static match
2618 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2619 {
2620 gfc_symbol *s;
2621
2622 if (sym->attr.generic)
2623 {
2624 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2625 if (s != NULL)
2626 {
2627 expr->value.function.name = s->name;
2628 expr->value.function.esym = s;
2629
2630 if (s->ts.type != BT_UNKNOWN)
2631 expr->ts = s->ts;
2632 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2633 expr->ts = s->result->ts;
2634
2635 if (s->as != NULL)
2636 expr->rank = s->as->rank;
2637 else if (s->result != NULL && s->result->as != NULL)
2638 expr->rank = s->result->as->rank;
2639
2640 gfc_set_sym_referenced (expr->value.function.esym);
2641
2642 return MATCH_YES;
2643 }
2644
2645 /* TODO: Need to search for elemental references in generic
2646 interface. */
2647 }
2648
2649 if (sym->attr.intrinsic)
2650 return gfc_intrinsic_func_interface (expr, 0);
2651
2652 return MATCH_NO;
2653 }
2654
2655
2656 static bool
2657 resolve_generic_f (gfc_expr *expr)
2658 {
2659 gfc_symbol *sym;
2660 match m;
2661 gfc_interface *intr = NULL;
2662
2663 sym = expr->symtree->n.sym;
2664
2665 for (;;)
2666 {
2667 m = resolve_generic_f0 (expr, sym);
2668 if (m == MATCH_YES)
2669 return true;
2670 else if (m == MATCH_ERROR)
2671 return false;
2672
2673 generic:
2674 if (!intr)
2675 for (intr = sym->generic; intr; intr = intr->next)
2676 if (gfc_fl_struct (intr->sym->attr.flavor))
2677 break;
2678
2679 if (sym->ns->parent == NULL)
2680 break;
2681 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2682
2683 if (sym == NULL)
2684 break;
2685 if (!generic_sym (sym))
2686 goto generic;
2687 }
2688
2689 /* Last ditch attempt. See if the reference is to an intrinsic
2690 that possesses a matching interface. 14.1.2.4 */
2691 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2692 {
2693 if (gfc_init_expr_flag)
2694 gfc_error ("Function %qs in initialization expression at %L "
2695 "must be an intrinsic function",
2696 expr->symtree->n.sym->name, &expr->where);
2697 else
2698 gfc_error ("There is no specific function for the generic %qs "
2699 "at %L", expr->symtree->n.sym->name, &expr->where);
2700 return false;
2701 }
2702
2703 if (intr)
2704 {
2705 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2706 NULL, false))
2707 return false;
2708 if (!gfc_use_derived (expr->ts.u.derived))
2709 return false;
2710 return resolve_structure_cons (expr, 0);
2711 }
2712
2713 m = gfc_intrinsic_func_interface (expr, 0);
2714 if (m == MATCH_YES)
2715 return true;
2716
2717 if (m == MATCH_NO)
2718 gfc_error ("Generic function %qs at %L is not consistent with a "
2719 "specific intrinsic interface", expr->symtree->n.sym->name,
2720 &expr->where);
2721
2722 return false;
2723 }
2724
2725
2726 /* Resolve a function call known to be specific. */
2727
2728 static match
2729 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2730 {
2731 match m;
2732
2733 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2734 {
2735 if (sym->attr.dummy)
2736 {
2737 sym->attr.proc = PROC_DUMMY;
2738 goto found;
2739 }
2740
2741 sym->attr.proc = PROC_EXTERNAL;
2742 goto found;
2743 }
2744
2745 if (sym->attr.proc == PROC_MODULE
2746 || sym->attr.proc == PROC_ST_FUNCTION
2747 || sym->attr.proc == PROC_INTERNAL)
2748 goto found;
2749
2750 if (sym->attr.intrinsic)
2751 {
2752 m = gfc_intrinsic_func_interface (expr, 1);
2753 if (m == MATCH_YES)
2754 return MATCH_YES;
2755 if (m == MATCH_NO)
2756 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2757 "with an intrinsic", sym->name, &expr->where);
2758
2759 return MATCH_ERROR;
2760 }
2761
2762 return MATCH_NO;
2763
2764 found:
2765 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2766
2767 if (sym->result)
2768 expr->ts = sym->result->ts;
2769 else
2770 expr->ts = sym->ts;
2771 expr->value.function.name = sym->name;
2772 expr->value.function.esym = sym;
2773 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2774 error(s). */
2775 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2776 return MATCH_ERROR;
2777 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2778 expr->rank = CLASS_DATA (sym)->as->rank;
2779 else if (sym->as != NULL)
2780 expr->rank = sym->as->rank;
2781
2782 return MATCH_YES;
2783 }
2784
2785
2786 static bool
2787 resolve_specific_f (gfc_expr *expr)
2788 {
2789 gfc_symbol *sym;
2790 match m;
2791
2792 sym = expr->symtree->n.sym;
2793
2794 for (;;)
2795 {
2796 m = resolve_specific_f0 (sym, expr);
2797 if (m == MATCH_YES)
2798 return true;
2799 if (m == MATCH_ERROR)
2800 return false;
2801
2802 if (sym->ns->parent == NULL)
2803 break;
2804
2805 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2806
2807 if (sym == NULL)
2808 break;
2809 }
2810
2811 gfc_error ("Unable to resolve the specific function %qs at %L",
2812 expr->symtree->n.sym->name, &expr->where);
2813
2814 return true;
2815 }
2816
2817 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2818 candidates in CANDIDATES_LEN. */
2819
2820 static void
2821 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2822 char **&candidates,
2823 size_t &candidates_len)
2824 {
2825 gfc_symtree *p;
2826
2827 if (sym == NULL)
2828 return;
2829 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2830 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2831 vec_push (candidates, candidates_len, sym->name);
2832
2833 p = sym->left;
2834 if (p)
2835 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2836
2837 p = sym->right;
2838 if (p)
2839 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2840 }
2841
2842
2843 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2844
2845 const char*
2846 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2847 {
2848 char **candidates = NULL;
2849 size_t candidates_len = 0;
2850 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2851 return gfc_closest_fuzzy_match (fn, candidates);
2852 }
2853
2854
2855 /* Resolve a procedure call not known to be generic nor specific. */
2856
2857 static bool
2858 resolve_unknown_f (gfc_expr *expr)
2859 {
2860 gfc_symbol *sym;
2861 gfc_typespec *ts;
2862
2863 sym = expr->symtree->n.sym;
2864
2865 if (sym->attr.dummy)
2866 {
2867 sym->attr.proc = PROC_DUMMY;
2868 expr->value.function.name = sym->name;
2869 goto set_type;
2870 }
2871
2872 /* See if we have an intrinsic function reference. */
2873
2874 if (gfc_is_intrinsic (sym, 0, expr->where))
2875 {
2876 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2877 return true;
2878 return false;
2879 }
2880
2881 /* The reference is to an external name. */
2882
2883 sym->attr.proc = PROC_EXTERNAL;
2884 expr->value.function.name = sym->name;
2885 expr->value.function.esym = expr->symtree->n.sym;
2886
2887 if (sym->as != NULL)
2888 expr->rank = sym->as->rank;
2889
2890 /* Type of the expression is either the type of the symbol or the
2891 default type of the symbol. */
2892
2893 set_type:
2894 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2895
2896 if (sym->ts.type != BT_UNKNOWN)
2897 expr->ts = sym->ts;
2898 else
2899 {
2900 ts = gfc_get_default_type (sym->name, sym->ns);
2901
2902 if (ts->type == BT_UNKNOWN)
2903 {
2904 const char *guessed
2905 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2906 if (guessed)
2907 gfc_error ("Function %qs at %L has no IMPLICIT type"
2908 "; did you mean %qs?",
2909 sym->name, &expr->where, guessed);
2910 else
2911 gfc_error ("Function %qs at %L has no IMPLICIT type",
2912 sym->name, &expr->where);
2913 return false;
2914 }
2915 else
2916 expr->ts = *ts;
2917 }
2918
2919 return true;
2920 }
2921
2922
2923 /* Return true, if the symbol is an external procedure. */
2924 static bool
2925 is_external_proc (gfc_symbol *sym)
2926 {
2927 if (!sym->attr.dummy && !sym->attr.contained
2928 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2929 && sym->attr.proc != PROC_ST_FUNCTION
2930 && !sym->attr.proc_pointer
2931 && !sym->attr.use_assoc
2932 && sym->name)
2933 return true;
2934
2935 return false;
2936 }
2937
2938
2939 /* Figure out if a function reference is pure or not. Also set the name
2940 of the function for a potential error message. Return nonzero if the
2941 function is PURE, zero if not. */
2942 static int
2943 pure_stmt_function (gfc_expr *, gfc_symbol *);
2944
2945 int
2946 gfc_pure_function (gfc_expr *e, const char **name)
2947 {
2948 int pure;
2949 gfc_component *comp;
2950
2951 *name = NULL;
2952
2953 if (e->symtree != NULL
2954 && e->symtree->n.sym != NULL
2955 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2956 return pure_stmt_function (e, e->symtree->n.sym);
2957
2958 comp = gfc_get_proc_ptr_comp (e);
2959 if (comp)
2960 {
2961 pure = gfc_pure (comp->ts.interface);
2962 *name = comp->name;
2963 }
2964 else if (e->value.function.esym)
2965 {
2966 pure = gfc_pure (e->value.function.esym);
2967 *name = e->value.function.esym->name;
2968 }
2969 else if (e->value.function.isym)
2970 {
2971 pure = e->value.function.isym->pure
2972 || e->value.function.isym->elemental;
2973 *name = e->value.function.isym->name;
2974 }
2975 else
2976 {
2977 /* Implicit functions are not pure. */
2978 pure = 0;
2979 *name = e->value.function.name;
2980 }
2981
2982 return pure;
2983 }
2984
2985
2986 /* Check if the expression is a reference to an implicitly pure function. */
2987
2988 int
2989 gfc_implicit_pure_function (gfc_expr *e)
2990 {
2991 gfc_component *comp = gfc_get_proc_ptr_comp (e);
2992 if (comp)
2993 return gfc_implicit_pure (comp->ts.interface);
2994 else if (e->value.function.esym)
2995 return gfc_implicit_pure (e->value.function.esym);
2996 else
2997 return 0;
2998 }
2999
3000
3001 static bool
3002 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
3003 int *f ATTRIBUTE_UNUSED)
3004 {
3005 const char *name;
3006
3007 /* Don't bother recursing into other statement functions
3008 since they will be checked individually for purity. */
3009 if (e->expr_type != EXPR_FUNCTION
3010 || !e->symtree
3011 || e->symtree->n.sym == sym
3012 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
3013 return false;
3014
3015 return gfc_pure_function (e, &name) ? false : true;
3016 }
3017
3018
3019 static int
3020 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
3021 {
3022 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
3023 }
3024
3025
3026 /* Check if an impure function is allowed in the current context. */
3027
3028 static bool check_pure_function (gfc_expr *e)
3029 {
3030 const char *name = NULL;
3031 if (!gfc_pure_function (e, &name) && name)
3032 {
3033 if (forall_flag)
3034 {
3035 gfc_error ("Reference to impure function %qs at %L inside a "
3036 "FORALL %s", name, &e->where,
3037 forall_flag == 2 ? "mask" : "block");
3038 return false;
3039 }
3040 else if (gfc_do_concurrent_flag)
3041 {
3042 gfc_error ("Reference to impure function %qs at %L inside a "
3043 "DO CONCURRENT %s", name, &e->where,
3044 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3045 return false;
3046 }
3047 else if (gfc_pure (NULL))
3048 {
3049 gfc_error ("Reference to impure function %qs at %L "
3050 "within a PURE procedure", name, &e->where);
3051 return false;
3052 }
3053 if (!gfc_implicit_pure_function (e))
3054 gfc_unset_implicit_pure (NULL);
3055 }
3056 return true;
3057 }
3058
3059
3060 /* Update current procedure's array_outer_dependency flag, considering
3061 a call to procedure SYM. */
3062
3063 static void
3064 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3065 {
3066 /* Check to see if this is a sibling function that has not yet
3067 been resolved. */
3068 gfc_namespace *sibling = gfc_current_ns->sibling;
3069 for (; sibling; sibling = sibling->sibling)
3070 {
3071 if (sibling->proc_name == sym)
3072 {
3073 gfc_resolve (sibling);
3074 break;
3075 }
3076 }
3077
3078 /* If SYM has references to outer arrays, so has the procedure calling
3079 SYM. If SYM is a procedure pointer, we can assume the worst. */
3080 if ((sym->attr.array_outer_dependency || sym->attr.proc_pointer)
3081 && gfc_current_ns->proc_name)
3082 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3083 }
3084
3085
3086 /* Resolve a function call, which means resolving the arguments, then figuring
3087 out which entity the name refers to. */
3088
3089 static bool
3090 resolve_function (gfc_expr *expr)
3091 {
3092 gfc_actual_arglist *arg;
3093 gfc_symbol *sym;
3094 bool t;
3095 int temp;
3096 procedure_type p = PROC_INTRINSIC;
3097 bool no_formal_args;
3098
3099 sym = NULL;
3100 if (expr->symtree)
3101 sym = expr->symtree->n.sym;
3102
3103 /* If this is a procedure pointer component, it has already been resolved. */
3104 if (gfc_is_proc_ptr_comp (expr))
3105 return true;
3106
3107 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3108 another caf_get. */
3109 if (sym && sym->attr.intrinsic
3110 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3111 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3112 return true;
3113
3114 if (sym && sym->attr.intrinsic
3115 && !gfc_resolve_intrinsic (sym, &expr->where))
3116 return false;
3117
3118 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3119 {
3120 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3121 return false;
3122 }
3123
3124 /* If this is a deferred TBP with an abstract interface (which may
3125 of course be referenced), expr->value.function.esym will be set. */
3126 if (sym && sym->attr.abstract && !expr->value.function.esym)
3127 {
3128 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3129 sym->name, &expr->where);
3130 return false;
3131 }
3132
3133 /* If this is a deferred TBP with an abstract interface, its result
3134 cannot be an assumed length character (F2003: C418). */
3135 if (sym && sym->attr.abstract && sym->attr.function
3136 && sym->result->ts.u.cl
3137 && sym->result->ts.u.cl->length == NULL
3138 && !sym->result->ts.deferred)
3139 {
3140 gfc_error ("ABSTRACT INTERFACE %qs at %L must not have an assumed "
3141 "character length result (F2008: C418)", sym->name,
3142 &sym->declared_at);
3143 return false;
3144 }
3145
3146 /* Switch off assumed size checking and do this again for certain kinds
3147 of procedure, once the procedure itself is resolved. */
3148 need_full_assumed_size++;
3149
3150 if (expr->symtree && expr->symtree->n.sym)
3151 p = expr->symtree->n.sym->attr.proc;
3152
3153 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3154 inquiry_argument = true;
3155 no_formal_args = sym && is_external_proc (sym)
3156 && gfc_sym_get_dummy_args (sym) == NULL;
3157
3158 if (!resolve_actual_arglist (expr->value.function.actual,
3159 p, no_formal_args))
3160 {
3161 inquiry_argument = false;
3162 return false;
3163 }
3164
3165 inquiry_argument = false;
3166
3167 /* Resume assumed_size checking. */
3168 need_full_assumed_size--;
3169
3170 /* If the procedure is external, check for usage. */
3171 if (sym && is_external_proc (sym))
3172 resolve_global_procedure (sym, &expr->where,
3173 &expr->value.function.actual, 0);
3174
3175 if (sym && sym->ts.type == BT_CHARACTER
3176 && sym->ts.u.cl
3177 && sym->ts.u.cl->length == NULL
3178 && !sym->attr.dummy
3179 && !sym->ts.deferred
3180 && expr->value.function.esym == NULL
3181 && !sym->attr.contained)
3182 {
3183 /* Internal procedures are taken care of in resolve_contained_fntype. */
3184 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3185 "be used at %L since it is not a dummy argument",
3186 sym->name, &expr->where);
3187 return false;
3188 }
3189
3190 /* See if function is already resolved. */
3191
3192 if (expr->value.function.name != NULL
3193 || expr->value.function.isym != NULL)
3194 {
3195 if (expr->ts.type == BT_UNKNOWN)
3196 expr->ts = sym->ts;
3197 t = true;
3198 }
3199 else
3200 {
3201 /* Apply the rules of section 14.1.2. */
3202
3203 switch (procedure_kind (sym))
3204 {
3205 case PTYPE_GENERIC:
3206 t = resolve_generic_f (expr);
3207 break;
3208
3209 case PTYPE_SPECIFIC:
3210 t = resolve_specific_f (expr);
3211 break;
3212
3213 case PTYPE_UNKNOWN:
3214 t = resolve_unknown_f (expr);
3215 break;
3216
3217 default:
3218 gfc_internal_error ("resolve_function(): bad function type");
3219 }
3220 }
3221
3222 /* If the expression is still a function (it might have simplified),
3223 then we check to see if we are calling an elemental function. */
3224
3225 if (expr->expr_type != EXPR_FUNCTION)
3226 return t;
3227
3228 temp = need_full_assumed_size;
3229 need_full_assumed_size = 0;
3230
3231 if (!resolve_elemental_actual (expr, NULL))
3232 return false;
3233
3234 if (omp_workshare_flag
3235 && expr->value.function.esym
3236 && ! gfc_elemental (expr->value.function.esym))
3237 {
3238 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3239 "in WORKSHARE construct", expr->value.function.esym->name,
3240 &expr->where);
3241 t = false;
3242 }
3243
3244 #define GENERIC_ID expr->value.function.isym->id
3245 else if (expr->value.function.actual != NULL
3246 && expr->value.function.isym != NULL
3247 && GENERIC_ID != GFC_ISYM_LBOUND
3248 && GENERIC_ID != GFC_ISYM_LCOBOUND
3249 && GENERIC_ID != GFC_ISYM_UCOBOUND
3250 && GENERIC_ID != GFC_ISYM_LEN
3251 && GENERIC_ID != GFC_ISYM_LOC
3252 && GENERIC_ID != GFC_ISYM_C_LOC
3253 && GENERIC_ID != GFC_ISYM_PRESENT)
3254 {
3255 /* Array intrinsics must also have the last upper bound of an
3256 assumed size array argument. UBOUND and SIZE have to be
3257 excluded from the check if the second argument is anything
3258 than a constant. */
3259
3260 for (arg = expr->value.function.actual; arg; arg = arg->next)
3261 {
3262 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3263 && arg == expr->value.function.actual
3264 && arg->next != NULL && arg->next->expr)
3265 {
3266 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3267 break;
3268
3269 if (arg->next->name && strcmp (arg->next->name, "kind") == 0)
3270 break;
3271
3272 if ((int)mpz_get_si (arg->next->expr->value.integer)
3273 < arg->expr->rank)
3274 break;
3275 }
3276
3277 if (arg->expr != NULL
3278 && arg->expr->rank > 0
3279 && resolve_assumed_size_actual (arg->expr))
3280 return false;
3281 }
3282 }
3283 #undef GENERIC_ID
3284
3285 need_full_assumed_size = temp;
3286
3287 if (!check_pure_function(expr))
3288 t = false;
3289
3290 /* Functions without the RECURSIVE attribution are not allowed to
3291 * call themselves. */
3292 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3293 {
3294 gfc_symbol *esym;
3295 esym = expr->value.function.esym;
3296
3297 if (is_illegal_recursion (esym, gfc_current_ns))
3298 {
3299 if (esym->attr.entry && esym->ns->entries)
3300 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3301 " function %qs is not RECURSIVE",
3302 esym->name, &expr->where, esym->ns->entries->sym->name);
3303 else
3304 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3305 " is not RECURSIVE", esym->name, &expr->where);
3306
3307 t = false;
3308 }
3309 }
3310
3311 /* Character lengths of use associated functions may contains references to
3312 symbols not referenced from the current program unit otherwise. Make sure
3313 those symbols are marked as referenced. */
3314
3315 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3316 && expr->value.function.esym->attr.use_assoc)
3317 {
3318 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3319 }
3320
3321 /* Make sure that the expression has a typespec that works. */
3322 if (expr->ts.type == BT_UNKNOWN)
3323 {
3324 if (expr->symtree->n.sym->result
3325 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3326 && !expr->symtree->n.sym->result->attr.proc_pointer)
3327 expr->ts = expr->symtree->n.sym->result->ts;
3328 }
3329
3330 if (!expr->ref && !expr->value.function.isym)
3331 {
3332 if (expr->value.function.esym)
3333 update_current_proc_array_outer_dependency (expr->value.function.esym);
3334 else
3335 update_current_proc_array_outer_dependency (sym);
3336 }
3337 else if (expr->ref)
3338 /* typebound procedure: Assume the worst. */
3339 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3340
3341 return t;
3342 }
3343
3344
3345 /************* Subroutine resolution *************/
3346
3347 static bool
3348 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3349 {
3350 if (gfc_pure (sym))
3351 return true;
3352
3353 if (forall_flag)
3354 {
3355 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3356 name, loc);
3357 return false;
3358 }
3359 else if (gfc_do_concurrent_flag)
3360 {
3361 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3362 "PURE", name, loc);
3363 return false;
3364 }
3365 else if (gfc_pure (NULL))
3366 {
3367 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3368 return false;
3369 }
3370
3371 gfc_unset_implicit_pure (NULL);
3372 return true;
3373 }
3374
3375
3376 static match
3377 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3378 {
3379 gfc_symbol *s;
3380
3381 if (sym->attr.generic)
3382 {
3383 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3384 if (s != NULL)
3385 {
3386 c->resolved_sym = s;
3387 if (!pure_subroutine (s, s->name, &c->loc))
3388 return MATCH_ERROR;
3389 return MATCH_YES;
3390 }
3391
3392 /* TODO: Need to search for elemental references in generic interface. */
3393 }
3394
3395 if (sym->attr.intrinsic)
3396 return gfc_intrinsic_sub_interface (c, 0);
3397
3398 return MATCH_NO;
3399 }
3400
3401
3402 static bool
3403 resolve_generic_s (gfc_code *c)
3404 {
3405 gfc_symbol *sym;
3406 match m;
3407
3408 sym = c->symtree->n.sym;
3409
3410 for (;;)
3411 {
3412 m = resolve_generic_s0 (c, sym);
3413 if (m == MATCH_YES)
3414 return true;
3415 else if (m == MATCH_ERROR)
3416 return false;
3417
3418 generic:
3419 if (sym->ns->parent == NULL)
3420 break;
3421 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3422
3423 if (sym == NULL)
3424 break;
3425 if (!generic_sym (sym))
3426 goto generic;
3427 }
3428
3429 /* Last ditch attempt. See if the reference is to an intrinsic
3430 that possesses a matching interface. 14.1.2.4 */
3431 sym = c->symtree->n.sym;
3432
3433 if (!gfc_is_intrinsic (sym, 1, c->loc))
3434 {
3435 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3436 sym->name, &c->loc);
3437 return false;
3438 }
3439
3440 m = gfc_intrinsic_sub_interface (c, 0);
3441 if (m == MATCH_YES)
3442 return true;
3443 if (m == MATCH_NO)
3444 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3445 "intrinsic subroutine interface", sym->name, &c->loc);
3446
3447 return false;
3448 }
3449
3450
3451 /* Resolve a subroutine call known to be specific. */
3452
3453 static match
3454 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3455 {
3456 match m;
3457
3458 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3459 {
3460 if (sym->attr.dummy)
3461 {
3462 sym->attr.proc = PROC_DUMMY;
3463 goto found;
3464 }
3465
3466 sym->attr.proc = PROC_EXTERNAL;
3467 goto found;
3468 }
3469
3470 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3471 goto found;
3472
3473 if (sym->attr.intrinsic)
3474 {
3475 m = gfc_intrinsic_sub_interface (c, 1);
3476 if (m == MATCH_YES)
3477 return MATCH_YES;
3478 if (m == MATCH_NO)
3479 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3480 "with an intrinsic", sym->name, &c->loc);
3481
3482 return MATCH_ERROR;
3483 }
3484
3485 return MATCH_NO;
3486
3487 found:
3488 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3489
3490 c->resolved_sym = sym;
3491 if (!pure_subroutine (sym, sym->name, &c->loc))
3492 return MATCH_ERROR;
3493
3494 return MATCH_YES;
3495 }
3496
3497
3498 static bool
3499 resolve_specific_s (gfc_code *c)
3500 {
3501 gfc_symbol *sym;
3502 match m;
3503
3504 sym = c->symtree->n.sym;
3505
3506 for (;;)
3507 {
3508 m = resolve_specific_s0 (c, sym);
3509 if (m == MATCH_YES)
3510 return true;
3511 if (m == MATCH_ERROR)
3512 return false;
3513
3514 if (sym->ns->parent == NULL)
3515 break;
3516
3517 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3518
3519 if (sym == NULL)
3520 break;
3521 }
3522
3523 sym = c->symtree->n.sym;
3524 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3525 sym->name, &c->loc);
3526
3527 return false;
3528 }
3529
3530
3531 /* Resolve a subroutine call not known to be generic nor specific. */
3532
3533 static bool
3534 resolve_unknown_s (gfc_code *c)
3535 {
3536 gfc_symbol *sym;
3537
3538 sym = c->symtree->n.sym;
3539
3540 if (sym->attr.dummy)
3541 {
3542 sym->attr.proc = PROC_DUMMY;
3543 goto found;
3544 }
3545
3546 /* See if we have an intrinsic function reference. */
3547
3548 if (gfc_is_intrinsic (sym, 1, c->loc))
3549 {
3550 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3551 return true;
3552 return false;
3553 }
3554
3555 /* The reference is to an external name. */
3556
3557 found:
3558 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3559
3560 c->resolved_sym = sym;
3561
3562 return pure_subroutine (sym, sym->name, &c->loc);
3563 }
3564
3565
3566 /* Resolve a subroutine call. Although it was tempting to use the same code
3567 for functions, subroutines and functions are stored differently and this
3568 makes things awkward. */
3569
3570 static bool
3571 resolve_call (gfc_code *c)
3572 {
3573 bool t;
3574 procedure_type ptype = PROC_INTRINSIC;
3575 gfc_symbol *csym, *sym;
3576 bool no_formal_args;
3577
3578 csym = c->symtree ? c->symtree->n.sym : NULL;
3579
3580 if (csym && csym->ts.type != BT_UNKNOWN)
3581 {
3582 gfc_error ("%qs at %L has a type, which is not consistent with "
3583 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3584 return false;
3585 }
3586
3587 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3588 {
3589 gfc_symtree *st;
3590 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3591 sym = st ? st->n.sym : NULL;
3592 if (sym && csym != sym
3593 && sym->ns == gfc_current_ns
3594 && sym->attr.flavor == FL_PROCEDURE
3595 && sym->attr.contained)
3596 {
3597 sym->refs++;
3598 if (csym->attr.generic)
3599 c->symtree->n.sym = sym;
3600 else
3601 c->symtree = st;
3602 csym = c->symtree->n.sym;
3603 }
3604 }
3605
3606 /* If this ia a deferred TBP, c->expr1 will be set. */
3607 if (!c->expr1 && csym)
3608 {
3609 if (csym->attr.abstract)
3610 {
3611 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3612 csym->name, &c->loc);
3613 return false;
3614 }
3615
3616 /* Subroutines without the RECURSIVE attribution are not allowed to
3617 call themselves. */
3618 if (is_illegal_recursion (csym, gfc_current_ns))
3619 {
3620 if (csym->attr.entry && csym->ns->entries)
3621 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3622 "as subroutine %qs is not RECURSIVE",
3623 csym->name, &c->loc, csym->ns->entries->sym->name);
3624 else
3625 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3626 "as it is not RECURSIVE", csym->name, &c->loc);
3627
3628 t = false;
3629 }
3630 }
3631
3632 /* Switch off assumed size checking and do this again for certain kinds
3633 of procedure, once the procedure itself is resolved. */
3634 need_full_assumed_size++;
3635
3636 if (csym)
3637 ptype = csym->attr.proc;
3638
3639 no_formal_args = csym && is_external_proc (csym)
3640 && gfc_sym_get_dummy_args (csym) == NULL;
3641 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3642 return false;
3643
3644 /* Resume assumed_size checking. */
3645 need_full_assumed_size--;
3646
3647 /* If external, check for usage. */
3648 if (csym && is_external_proc (csym))
3649 resolve_global_procedure (csym, &c->loc, &c->ext.actual, 1);
3650
3651 t = true;
3652 if (c->resolved_sym == NULL)
3653 {
3654 c->resolved_isym = NULL;
3655 switch (procedure_kind (csym))
3656 {
3657 case PTYPE_GENERIC:
3658 t = resolve_generic_s (c);
3659 break;
3660
3661 case PTYPE_SPECIFIC:
3662 t = resolve_specific_s (c);
3663 break;
3664
3665 case PTYPE_UNKNOWN:
3666 t = resolve_unknown_s (c);
3667 break;
3668
3669 default:
3670 gfc_internal_error ("resolve_subroutine(): bad function type");
3671 }
3672 }
3673
3674 /* Some checks of elemental subroutine actual arguments. */
3675 if (!resolve_elemental_actual (NULL, c))
3676 return false;
3677
3678 if (!c->expr1)
3679 update_current_proc_array_outer_dependency (csym);
3680 else
3681 /* Typebound procedure: Assume the worst. */
3682 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3683
3684 return t;
3685 }
3686
3687
3688 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3689 op1->shape and op2->shape are non-NULL return true if their shapes
3690 match. If both op1->shape and op2->shape are non-NULL return false
3691 if their shapes do not match. If either op1->shape or op2->shape is
3692 NULL, return true. */
3693
3694 static bool
3695 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3696 {
3697 bool t;
3698 int i;
3699
3700 t = true;
3701
3702 if (op1->shape != NULL && op2->shape != NULL)
3703 {
3704 for (i = 0; i < op1->rank; i++)
3705 {
3706 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3707 {
3708 gfc_error ("Shapes for operands at %L and %L are not conformable",
3709 &op1->where, &op2->where);
3710 t = false;
3711 break;
3712 }
3713 }
3714 }
3715
3716 return t;
3717 }
3718
3719 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3720 For example A .AND. B becomes IAND(A, B). */
3721 static gfc_expr *
3722 logical_to_bitwise (gfc_expr *e)
3723 {
3724 gfc_expr *tmp, *op1, *op2;
3725 gfc_isym_id isym;
3726 gfc_actual_arglist *args = NULL;
3727
3728 gcc_assert (e->expr_type == EXPR_OP);
3729
3730 isym = GFC_ISYM_NONE;
3731 op1 = e->value.op.op1;
3732 op2 = e->value.op.op2;
3733
3734 switch (e->value.op.op)
3735 {
3736 case INTRINSIC_NOT:
3737 isym = GFC_ISYM_NOT;
3738 break;
3739 case INTRINSIC_AND:
3740 isym = GFC_ISYM_IAND;
3741 break;
3742 case INTRINSIC_OR:
3743 isym = GFC_ISYM_IOR;
3744 break;
3745 case INTRINSIC_NEQV:
3746 isym = GFC_ISYM_IEOR;
3747 break;
3748 case INTRINSIC_EQV:
3749 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3750 Change the old expression to NEQV, which will get replaced by IEOR,
3751 and wrap it in NOT. */
3752 tmp = gfc_copy_expr (e);
3753 tmp->value.op.op = INTRINSIC_NEQV;
3754 tmp = logical_to_bitwise (tmp);
3755 isym = GFC_ISYM_NOT;
3756 op1 = tmp;
3757 op2 = NULL;
3758 break;
3759 default:
3760 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3761 }
3762
3763 /* Inherit the original operation's operands as arguments. */
3764 args = gfc_get_actual_arglist ();
3765 args->expr = op1;
3766 if (op2)
3767 {
3768 args->next = gfc_get_actual_arglist ();
3769 args->next->expr = op2;
3770 }
3771
3772 /* Convert the expression to a function call. */
3773 e->expr_type = EXPR_FUNCTION;
3774 e->value.function.actual = args;
3775 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3776 e->value.function.name = e->value.function.isym->name;
3777 e->value.function.esym = NULL;
3778
3779 /* Make up a pre-resolved function call symtree if we need to. */
3780 if (!e->symtree || !e->symtree->n.sym)
3781 {
3782 gfc_symbol *sym;
3783 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3784 sym = e->symtree->n.sym;
3785 sym->result = sym;
3786 sym->attr.flavor = FL_PROCEDURE;
3787 sym->attr.function = 1;
3788 sym->attr.elemental = 1;
3789 sym->attr.pure = 1;
3790 sym->attr.referenced = 1;
3791 gfc_intrinsic_symbol (sym);
3792 gfc_commit_symbol (sym);
3793 }
3794
3795 args->name = e->value.function.isym->formal->name;
3796 if (e->value.function.isym->formal->next)
3797 args->next->name = e->value.function.isym->formal->next->name;
3798
3799 return e;
3800 }
3801
3802 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3803 candidates in CANDIDATES_LEN. */
3804 static void
3805 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3806 char **&candidates,
3807 size_t &candidates_len)
3808 {
3809 gfc_symtree *p;
3810
3811 if (uop == NULL)
3812 return;
3813
3814 /* Not sure how to properly filter here. Use all for a start.
3815 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3816 these as i suppose they don't make terribly sense. */
3817
3818 if (uop->n.uop->op != NULL)
3819 vec_push (candidates, candidates_len, uop->name);
3820
3821 p = uop->left;
3822 if (p)
3823 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3824
3825 p = uop->right;
3826 if (p)
3827 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3828 }
3829
3830 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3831
3832 static const char*
3833 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3834 {
3835 char **candidates = NULL;
3836 size_t candidates_len = 0;
3837 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3838 return gfc_closest_fuzzy_match (op, candidates);
3839 }
3840
3841
3842 /* Callback finding an impure function as an operand to an .and. or
3843 .or. expression. Remember the last function warned about to
3844 avoid double warnings when recursing. */
3845
3846 static int
3847 impure_function_callback (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED,
3848 void *data)
3849 {
3850 gfc_expr *f = *e;
3851 const char *name;
3852 static gfc_expr *last = NULL;
3853 bool *found = (bool *) data;
3854
3855 if (f->expr_type == EXPR_FUNCTION)
3856 {
3857 *found = 1;
3858 if (f != last && !gfc_pure_function (f, &name)
3859 && !gfc_implicit_pure_function (f))
3860 {
3861 if (name)
3862 gfc_warning (OPT_Wfunction_elimination,
3863 "Impure function %qs at %L might not be evaluated",
3864 name, &f->where);
3865 else
3866 gfc_warning (OPT_Wfunction_elimination,
3867 "Impure function at %L might not be evaluated",
3868 &f->where);
3869 }
3870 last = f;
3871 }
3872
3873 return 0;
3874 }
3875
3876
3877 /* Resolve an operator expression node. This can involve replacing the
3878 operation with a user defined function call. */
3879
3880 static bool
3881 resolve_operator (gfc_expr *e)
3882 {
3883 gfc_expr *op1, *op2;
3884 char msg[200];
3885 bool dual_locus_error;
3886 bool t = true;
3887
3888 /* Resolve all subnodes-- give them types. */
3889
3890 switch (e->value.op.op)
3891 {
3892 default:
3893 if (!gfc_resolve_expr (e->value.op.op2))
3894 return false;
3895
3896 /* Fall through. */
3897
3898 case INTRINSIC_NOT:
3899 case INTRINSIC_UPLUS:
3900 case INTRINSIC_UMINUS:
3901 case INTRINSIC_PARENTHESES:
3902 if (!gfc_resolve_expr (e->value.op.op1))
3903 return false;
3904 break;
3905 }
3906
3907 /* Typecheck the new node. */
3908
3909 op1 = e->value.op.op1;
3910 op2 = e->value.op.op2;
3911 dual_locus_error = false;
3912
3913 if ((op1 && op1->expr_type == EXPR_NULL)
3914 || (op2 && op2->expr_type == EXPR_NULL))
3915 {
3916 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
3917 goto bad_op;
3918 }
3919
3920 switch (e->value.op.op)
3921 {
3922 case INTRINSIC_UPLUS:
3923 case INTRINSIC_UMINUS:
3924 if (op1->ts.type == BT_INTEGER
3925 || op1->ts.type == BT_REAL
3926 || op1->ts.type == BT_COMPLEX)
3927 {
3928 e->ts = op1->ts;
3929 break;
3930 }
3931
3932 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
3933 gfc_op2string (e->value.op.op), gfc_typename (&e->ts));
3934 goto bad_op;
3935
3936 case INTRINSIC_PLUS:
3937 case INTRINSIC_MINUS:
3938 case INTRINSIC_TIMES:
3939 case INTRINSIC_DIVIDE:
3940 case INTRINSIC_POWER:
3941 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3942 {
3943 gfc_type_convert_binary (e, 1);
3944 break;
3945 }
3946
3947 if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
3948 sprintf (msg,
3949 _("Unexpected derived-type entities in binary intrinsic "
3950 "numeric operator %%<%s%%> at %%L"),
3951 gfc_op2string (e->value.op.op));
3952 else
3953 sprintf (msg,
3954 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
3955 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3956 gfc_typename (&op2->ts));
3957 goto bad_op;
3958
3959 case INTRINSIC_CONCAT:
3960 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3961 && op1->ts.kind == op2->ts.kind)
3962 {
3963 e->ts.type = BT_CHARACTER;
3964 e->ts.kind = op1->ts.kind;
3965 break;
3966 }
3967
3968 sprintf (msg,
3969 _("Operands of string concatenation operator at %%L are %s/%s"),
3970 gfc_typename (&op1->ts), gfc_typename (&op2->ts));
3971 goto bad_op;
3972
3973 case INTRINSIC_AND:
3974 case INTRINSIC_OR:
3975 case INTRINSIC_EQV:
3976 case INTRINSIC_NEQV:
3977 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
3978 {
3979 e->ts.type = BT_LOGICAL;
3980 e->ts.kind = gfc_kind_max (op1, op2);
3981 if (op1->ts.kind < e->ts.kind)
3982 gfc_convert_type (op1, &e->ts, 2);
3983 else if (op2->ts.kind < e->ts.kind)
3984 gfc_convert_type (op2, &e->ts, 2);
3985
3986 if (flag_frontend_optimize &&
3987 (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
3988 {
3989 /* Warn about short-circuiting
3990 with impure function as second operand. */
3991 bool op2_f = false;
3992 gfc_expr_walker (&op2, impure_function_callback, &op2_f);
3993 }
3994 break;
3995 }
3996
3997 /* Logical ops on integers become bitwise ops with -fdec. */
3998 else if (flag_dec
3999 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
4000 {
4001 e->ts.type = BT_INTEGER;
4002 e->ts.kind = gfc_kind_max (op1, op2);
4003 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
4004 gfc_convert_type (op1, &e->ts, 1);
4005 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
4006 gfc_convert_type (op2, &e->ts, 1);
4007 e = logical_to_bitwise (e);
4008 goto simplify_op;
4009 }
4010
4011 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
4012 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
4013 gfc_typename (&op2->ts));
4014
4015 goto bad_op;
4016
4017 case INTRINSIC_NOT:
4018 /* Logical ops on integers become bitwise ops with -fdec. */
4019 if (flag_dec && op1->ts.type == BT_INTEGER)
4020 {
4021 e->ts.type = BT_INTEGER;
4022 e->ts.kind = op1->ts.kind;
4023 e = logical_to_bitwise (e);
4024 goto simplify_op;
4025 }
4026
4027 if (op1->ts.type == BT_LOGICAL)
4028 {
4029 e->ts.type = BT_LOGICAL;
4030 e->ts.kind = op1->ts.kind;
4031 break;
4032 }
4033
4034 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
4035 gfc_typename (&op1->ts));
4036 goto bad_op;
4037
4038 case INTRINSIC_GT:
4039 case INTRINSIC_GT_OS:
4040 case INTRINSIC_GE:
4041 case INTRINSIC_GE_OS:
4042 case INTRINSIC_LT:
4043 case INTRINSIC_LT_OS:
4044 case INTRINSIC_LE:
4045 case INTRINSIC_LE_OS:
4046 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
4047 {
4048 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
4049 goto bad_op;
4050 }
4051
4052 /* Fall through. */
4053
4054 case INTRINSIC_EQ:
4055 case INTRINSIC_EQ_OS:
4056 case INTRINSIC_NE:
4057 case INTRINSIC_NE_OS:
4058 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
4059 && op1->ts.kind == op2->ts.kind)
4060 {
4061 e->ts.type = BT_LOGICAL;
4062 e->ts.kind = gfc_default_logical_kind;
4063 break;
4064 }
4065
4066 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
4067 {
4068 gfc_type_convert_binary (e, 1);
4069
4070 e->ts.type = BT_LOGICAL;
4071 e->ts.kind = gfc_default_logical_kind;
4072
4073 if (warn_compare_reals)
4074 {
4075 gfc_intrinsic_op op = e->value.op.op;
4076
4077 /* Type conversion has made sure that the types of op1 and op2
4078 agree, so it is only necessary to check the first one. */
4079 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
4080 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
4081 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
4082 {
4083 const char *msg;
4084
4085 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
4086 msg = "Equality comparison for %s at %L";
4087 else
4088 msg = "Inequality comparison for %s at %L";
4089
4090 gfc_warning (OPT_Wcompare_reals, msg,
4091 gfc_typename (&op1->ts), &op1->where);
4092 }
4093 }
4094
4095 break;
4096 }
4097
4098 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4099 sprintf (msg,
4100 _("Logicals at %%L must be compared with %s instead of %s"),
4101 (e->value.op.op == INTRINSIC_EQ
4102 || e->value.op.op == INTRINSIC_EQ_OS)
4103 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4104 else
4105 sprintf (msg,
4106 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4107 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
4108 gfc_typename (&op2->ts));
4109
4110 goto bad_op;
4111
4112 case INTRINSIC_USER:
4113 if (e->value.op.uop->op == NULL)
4114 {
4115 const char *name = e->value.op.uop->name;
4116 const char *guessed;
4117 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4118 if (guessed)
4119 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4120 name, guessed);
4121 else
4122 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4123 }
4124 else if (op2 == NULL)
4125 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4126 e->value.op.uop->name, gfc_typename (&op1->ts));
4127 else
4128 {
4129 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4130 e->value.op.uop->name, gfc_typename (&op1->ts),
4131 gfc_typename (&op2->ts));
4132 e->value.op.uop->op->sym->attr.referenced = 1;
4133 }
4134
4135 goto bad_op;
4136
4137 case INTRINSIC_PARENTHESES:
4138 e->ts = op1->ts;
4139 if (e->ts.type == BT_CHARACTER)
4140 e->ts.u.cl = op1->ts.u.cl;
4141 break;
4142
4143 default:
4144 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4145 }
4146
4147 /* Deal with arrayness of an operand through an operator. */
4148
4149 switch (e->value.op.op)
4150 {
4151 case INTRINSIC_PLUS:
4152 case INTRINSIC_MINUS:
4153 case INTRINSIC_TIMES:
4154 case INTRINSIC_DIVIDE:
4155 case INTRINSIC_POWER:
4156 case INTRINSIC_CONCAT:
4157 case INTRINSIC_AND:
4158 case INTRINSIC_OR:
4159 case INTRINSIC_EQV:
4160 case INTRINSIC_NEQV:
4161 case INTRINSIC_EQ:
4162 case INTRINSIC_EQ_OS:
4163 case INTRINSIC_NE:
4164 case INTRINSIC_NE_OS:
4165 case INTRINSIC_GT:
4166 case INTRINSIC_GT_OS:
4167 case INTRINSIC_GE:
4168 case INTRINSIC_GE_OS:
4169 case INTRINSIC_LT:
4170 case INTRINSIC_LT_OS:
4171 case INTRINSIC_LE:
4172 case INTRINSIC_LE_OS:
4173
4174 if (op1->rank == 0 && op2->rank == 0)
4175 e->rank = 0;
4176
4177 if (op1->rank == 0 && op2->rank != 0)
4178 {
4179 e->rank = op2->rank;
4180
4181 if (e->shape == NULL)
4182 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4183 }
4184
4185 if (op1->rank != 0 && op2->rank == 0)
4186 {
4187 e->rank = op1->rank;
4188
4189 if (e->shape == NULL)
4190 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4191 }
4192
4193 if (op1->rank != 0 && op2->rank != 0)
4194 {
4195 if (op1->rank == op2->rank)
4196 {
4197 e->rank = op1->rank;
4198 if (e->shape == NULL)
4199 {
4200 t = compare_shapes (op1, op2);
4201 if (!t)
4202 e->shape = NULL;
4203 else
4204 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4205 }
4206 }
4207 else
4208 {
4209 /* Allow higher level expressions to work. */
4210 e->rank = 0;
4211
4212 /* Try user-defined operators, and otherwise throw an error. */
4213 dual_locus_error = true;
4214 sprintf (msg,
4215 _("Inconsistent ranks for operator at %%L and %%L"));
4216 goto bad_op;
4217 }
4218 }
4219
4220 break;
4221
4222 case INTRINSIC_PARENTHESES:
4223 case INTRINSIC_NOT:
4224 case INTRINSIC_UPLUS:
4225 case INTRINSIC_UMINUS:
4226 /* Simply copy arrayness attribute */
4227 e->rank = op1->rank;
4228
4229 if (e->shape == NULL)
4230 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4231
4232 break;
4233
4234 default:
4235 break;
4236 }
4237
4238 simplify_op:
4239
4240 /* Attempt to simplify the expression. */
4241 if (t)
4242 {
4243 t = gfc_simplify_expr (e, 0);
4244 /* Some calls do not succeed in simplification and return false
4245 even though there is no error; e.g. variable references to
4246 PARAMETER arrays. */
4247 if (!gfc_is_constant_expr (e))
4248 t = true;
4249 }
4250 return t;
4251
4252 bad_op:
4253
4254 {
4255 match m = gfc_extend_expr (e);
4256 if (m == MATCH_YES)
4257 return true;
4258 if (m == MATCH_ERROR)
4259 return false;
4260 }
4261
4262 if (dual_locus_error)
4263 gfc_error (msg, &op1->where, &op2->where);
4264 else
4265 gfc_error (msg, &e->where);
4266
4267 return false;
4268 }
4269
4270
4271 /************** Array resolution subroutines **************/
4272
4273 enum compare_result
4274 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4275
4276 /* Compare two integer expressions. */
4277
4278 static compare_result
4279 compare_bound (gfc_expr *a, gfc_expr *b)
4280 {
4281 int i;
4282
4283 if (a == NULL || a->expr_type != EXPR_CONSTANT
4284 || b == NULL || b->expr_type != EXPR_CONSTANT)
4285 return CMP_UNKNOWN;
4286
4287 /* If either of the types isn't INTEGER, we must have
4288 raised an error earlier. */
4289
4290 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4291 return CMP_UNKNOWN;
4292
4293 i = mpz_cmp (a->value.integer, b->value.integer);
4294
4295 if (i < 0)
4296 return CMP_LT;
4297 if (i > 0)
4298 return CMP_GT;
4299 return CMP_EQ;
4300 }
4301
4302
4303 /* Compare an integer expression with an integer. */
4304
4305 static compare_result
4306 compare_bound_int (gfc_expr *a, int b)
4307 {
4308 int i;
4309
4310 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4311 return CMP_UNKNOWN;
4312
4313 if (a->ts.type != BT_INTEGER)
4314 gfc_internal_error ("compare_bound_int(): Bad expression");
4315
4316 i = mpz_cmp_si (a->value.integer, b);
4317
4318 if (i < 0)
4319 return CMP_LT;
4320 if (i > 0)
4321 return CMP_GT;
4322 return CMP_EQ;
4323 }
4324
4325
4326 /* Compare an integer expression with a mpz_t. */
4327
4328 static compare_result
4329 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4330 {
4331 int i;
4332
4333 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4334 return CMP_UNKNOWN;
4335
4336 if (a->ts.type != BT_INTEGER)
4337 gfc_internal_error ("compare_bound_int(): Bad expression");
4338
4339 i = mpz_cmp (a->value.integer, b);
4340
4341 if (i < 0)
4342 return CMP_LT;
4343 if (i > 0)
4344 return CMP_GT;
4345 return CMP_EQ;
4346 }
4347
4348
4349 /* Compute the last value of a sequence given by a triplet.
4350 Return 0 if it wasn't able to compute the last value, or if the
4351 sequence if empty, and 1 otherwise. */
4352
4353 static int
4354 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4355 gfc_expr *stride, mpz_t last)
4356 {
4357 mpz_t rem;
4358
4359 if (start == NULL || start->expr_type != EXPR_CONSTANT
4360 || end == NULL || end->expr_type != EXPR_CONSTANT
4361 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4362 return 0;
4363
4364 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4365 || (stride != NULL && stride->ts.type != BT_INTEGER))
4366 return 0;
4367
4368 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4369 {
4370 if (compare_bound (start, end) == CMP_GT)
4371 return 0;
4372 mpz_set (last, end->value.integer);
4373 return 1;
4374 }
4375
4376 if (compare_bound_int (stride, 0) == CMP_GT)
4377 {
4378 /* Stride is positive */
4379 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4380 return 0;
4381 }
4382 else
4383 {
4384 /* Stride is negative */
4385 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4386 return 0;
4387 }
4388
4389 mpz_init (rem);
4390 mpz_sub (rem, end->value.integer, start->value.integer);
4391 mpz_tdiv_r (rem, rem, stride->value.integer);
4392 mpz_sub (last, end->value.integer, rem);
4393 mpz_clear (rem);
4394
4395 return 1;
4396 }
4397
4398
4399 /* Compare a single dimension of an array reference to the array
4400 specification. */
4401
4402 static bool
4403 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4404 {
4405 mpz_t last_value;
4406
4407 if (ar->dimen_type[i] == DIMEN_STAR)
4408 {
4409 gcc_assert (ar->stride[i] == NULL);
4410 /* This implies [*] as [*:] and [*:3] are not possible. */
4411 if (ar->start[i] == NULL)
4412 {
4413 gcc_assert (ar->end[i] == NULL);
4414 return true;
4415 }
4416 }
4417
4418 /* Given start, end and stride values, calculate the minimum and
4419 maximum referenced indexes. */
4420
4421 switch (ar->dimen_type[i])
4422 {
4423 case DIMEN_VECTOR:
4424 case DIMEN_THIS_IMAGE:
4425 break;
4426
4427 case DIMEN_STAR:
4428 case DIMEN_ELEMENT:
4429 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4430 {
4431 if (i < as->rank)
4432 gfc_warning (0, "Array reference at %L is out of bounds "
4433 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4434 mpz_get_si (ar->start[i]->value.integer),
4435 mpz_get_si (as->lower[i]->value.integer), i+1);
4436 else
4437 gfc_warning (0, "Array reference at %L is out of bounds "
4438 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4439 mpz_get_si (ar->start[i]->value.integer),
4440 mpz_get_si (as->lower[i]->value.integer),
4441 i + 1 - as->rank);
4442 return true;
4443 }
4444 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4445 {
4446 if (i < as->rank)
4447 gfc_warning (0, "Array reference at %L is out of bounds "
4448 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4449 mpz_get_si (ar->start[i]->value.integer),
4450 mpz_get_si (as->upper[i]->value.integer), i+1);
4451 else
4452 gfc_warning (0, "Array reference at %L is out of bounds "
4453 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4454 mpz_get_si (ar->start[i]->value.integer),
4455 mpz_get_si (as->upper[i]->value.integer),
4456 i + 1 - as->rank);
4457 return true;
4458 }
4459
4460 break;
4461
4462 case DIMEN_RANGE:
4463 {
4464 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4465 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4466
4467 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4468
4469 /* Check for zero stride, which is not allowed. */
4470 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4471 {
4472 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4473 return false;
4474 }
4475
4476 /* if start == len || (stride > 0 && start < len)
4477 || (stride < 0 && start > len),
4478 then the array section contains at least one element. In this
4479 case, there is an out-of-bounds access if
4480 (start < lower || start > upper). */
4481 if (compare_bound (AR_START, AR_END) == CMP_EQ
4482 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4483 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4484 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4485 && comp_start_end == CMP_GT))
4486 {
4487 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4488 {
4489 gfc_warning (0, "Lower array reference at %L is out of bounds "
4490 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4491 mpz_get_si (AR_START->value.integer),
4492 mpz_get_si (as->lower[i]->value.integer), i+1);
4493 return true;
4494 }
4495 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4496 {
4497 gfc_warning (0, "Lower array reference at %L is out of bounds "
4498 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4499 mpz_get_si (AR_START->value.integer),
4500 mpz_get_si (as->upper[i]->value.integer), i+1);
4501 return true;
4502 }
4503 }
4504
4505 /* If we can compute the highest index of the array section,
4506 then it also has to be between lower and upper. */
4507 mpz_init (last_value);
4508 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4509 last_value))
4510 {
4511 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4512 {
4513 gfc_warning (0, "Upper array reference at %L is out of bounds "
4514 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4515 mpz_get_si (last_value),
4516 mpz_get_si (as->lower[i]->value.integer), i+1);
4517 mpz_clear (last_value);
4518 return true;
4519 }
4520 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4521 {
4522 gfc_warning (0, "Upper array reference at %L is out of bounds "
4523 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4524 mpz_get_si (last_value),
4525 mpz_get_si (as->upper[i]->value.integer), i+1);
4526 mpz_clear (last_value);
4527 return true;
4528 }
4529 }
4530 mpz_clear (last_value);
4531
4532 #undef AR_START
4533 #undef AR_END
4534 }
4535 break;
4536
4537 default:
4538 gfc_internal_error ("check_dimension(): Bad array reference");
4539 }
4540
4541 return true;
4542 }
4543
4544
4545 /* Compare an array reference with an array specification. */
4546
4547 static bool
4548 compare_spec_to_ref (gfc_array_ref *ar)
4549 {
4550 gfc_array_spec *as;
4551 int i;
4552
4553 as = ar->as;
4554 i = as->rank - 1;
4555 /* TODO: Full array sections are only allowed as actual parameters. */
4556 if (as->type == AS_ASSUMED_SIZE
4557 && (/*ar->type == AR_FULL
4558 ||*/ (ar->type == AR_SECTION
4559 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4560 {
4561 gfc_error ("Rightmost upper bound of assumed size array section "
4562 "not specified at %L", &ar->where);
4563 return false;
4564 }
4565
4566 if (ar->type == AR_FULL)
4567 return true;
4568
4569 if (as->rank != ar->dimen)
4570 {
4571 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4572 &ar->where, ar->dimen, as->rank);
4573 return false;
4574 }
4575
4576 /* ar->codimen == 0 is a local array. */
4577 if (as->corank != ar->codimen && ar->codimen != 0)
4578 {
4579 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4580 &ar->where, ar->codimen, as->corank);
4581 return false;
4582 }
4583
4584 for (i = 0; i < as->rank; i++)
4585 if (!check_dimension (i, ar, as))
4586 return false;
4587
4588 /* Local access has no coarray spec. */
4589 if (ar->codimen != 0)
4590 for (i = as->rank; i < as->rank + as->corank; i++)
4591 {
4592 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4593 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4594 {
4595 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4596 i + 1 - as->rank, &ar->where);
4597 return false;
4598 }
4599 if (!check_dimension (i, ar, as))
4600 return false;
4601 }
4602
4603 return true;
4604 }
4605
4606
4607 /* Resolve one part of an array index. */
4608
4609 static bool
4610 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4611 int force_index_integer_kind)
4612 {
4613 gfc_typespec ts;
4614
4615 if (index == NULL)
4616 return true;
4617
4618 if (!gfc_resolve_expr (index))
4619 return false;
4620
4621 if (check_scalar && index->rank != 0)
4622 {
4623 gfc_error ("Array index at %L must be scalar", &index->where);
4624 return false;
4625 }
4626
4627 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4628 {
4629 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4630 &index->where, gfc_basic_typename (index->ts.type));
4631 return false;
4632 }
4633
4634 if (index->ts.type == BT_REAL)
4635 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4636 &index->where))
4637 return false;
4638
4639 if ((index->ts.kind != gfc_index_integer_kind
4640 && force_index_integer_kind)
4641 || index->ts.type != BT_INTEGER)
4642 {
4643 gfc_clear_ts (&ts);
4644 ts.type = BT_INTEGER;
4645 ts.kind = gfc_index_integer_kind;
4646
4647 gfc_convert_type_warn (index, &ts, 2, 0);
4648 }
4649
4650 return true;
4651 }
4652
4653 /* Resolve one part of an array index. */
4654
4655 bool
4656 gfc_resolve_index (gfc_expr *index, int check_scalar)
4657 {
4658 return gfc_resolve_index_1 (index, check_scalar, 1);
4659 }
4660
4661 /* Resolve a dim argument to an intrinsic function. */
4662
4663 bool
4664 gfc_resolve_dim_arg (gfc_expr *dim)
4665 {
4666 if (dim == NULL)
4667 return true;
4668
4669 if (!gfc_resolve_expr (dim))
4670 return false;
4671
4672 if (dim->rank != 0)
4673 {
4674 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4675 return false;
4676
4677 }
4678
4679 if (dim->ts.type != BT_INTEGER)
4680 {
4681 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4682 return false;
4683 }
4684
4685 if (dim->ts.kind != gfc_index_integer_kind)
4686 {
4687 gfc_typespec ts;
4688
4689 gfc_clear_ts (&ts);
4690 ts.type = BT_INTEGER;
4691 ts.kind = gfc_index_integer_kind;
4692
4693 gfc_convert_type_warn (dim, &ts, 2, 0);
4694 }
4695
4696 return true;
4697 }
4698
4699 /* Given an expression that contains array references, update those array
4700 references to point to the right array specifications. While this is
4701 filled in during matching, this information is difficult to save and load
4702 in a module, so we take care of it here.
4703
4704 The idea here is that the original array reference comes from the
4705 base symbol. We traverse the list of reference structures, setting
4706 the stored reference to references. Component references can
4707 provide an additional array specification. */
4708
4709 static void
4710 find_array_spec (gfc_expr *e)
4711 {
4712 gfc_array_spec *as;
4713 gfc_component *c;
4714 gfc_ref *ref;
4715
4716 if (e->symtree->n.sym->ts.type == BT_CLASS)
4717 as = CLASS_DATA (e->symtree->n.sym)->as;
4718 else
4719 as = e->symtree->n.sym->as;
4720
4721 for (ref = e->ref; ref; ref = ref->next)
4722 switch (ref->type)
4723 {
4724 case REF_ARRAY:
4725 if (as == NULL)
4726 gfc_internal_error ("find_array_spec(): Missing spec");
4727
4728 ref->u.ar.as = as;
4729 as = NULL;
4730 break;
4731
4732 case REF_COMPONENT:
4733 c = ref->u.c.component;
4734 if (c->attr.dimension)
4735 {
4736 if (as != NULL)
4737 gfc_internal_error ("find_array_spec(): unused as(1)");
4738 as = c->as;
4739 }
4740
4741 break;
4742
4743 case REF_SUBSTRING:
4744 case REF_INQUIRY:
4745 break;
4746 }
4747
4748 if (as != NULL)
4749 gfc_internal_error ("find_array_spec(): unused as(2)");
4750 }
4751
4752
4753 /* Resolve an array reference. */
4754
4755 static bool
4756 resolve_array_ref (gfc_array_ref *ar)
4757 {
4758 int i, check_scalar;
4759 gfc_expr *e;
4760
4761 for (i = 0; i < ar->dimen + ar->codimen; i++)
4762 {
4763 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4764
4765 /* Do not force gfc_index_integer_kind for the start. We can
4766 do fine with any integer kind. This avoids temporary arrays
4767 created for indexing with a vector. */
4768 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4769 return false;
4770 if (!gfc_resolve_index (ar->end[i], check_scalar))
4771 return false;
4772 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4773 return false;
4774
4775 e = ar->start[i];
4776
4777 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4778 switch (e->rank)
4779 {
4780 case 0:
4781 ar->dimen_type[i] = DIMEN_ELEMENT;
4782 break;
4783
4784 case 1:
4785 ar->dimen_type[i] = DIMEN_VECTOR;
4786 if (e->expr_type == EXPR_VARIABLE
4787 && e->symtree->n.sym->ts.type == BT_DERIVED)
4788 ar->start[i] = gfc_get_parentheses (e);
4789 break;
4790
4791 default:
4792 gfc_error ("Array index at %L is an array of rank %d",
4793 &ar->c_where[i], e->rank);
4794 return false;
4795 }
4796
4797 /* Fill in the upper bound, which may be lower than the
4798 specified one for something like a(2:10:5), which is
4799 identical to a(2:7:5). Only relevant for strides not equal
4800 to one. Don't try a division by zero. */
4801 if (ar->dimen_type[i] == DIMEN_RANGE
4802 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4803 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4804 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4805 {
4806 mpz_t size, end;
4807
4808 if (gfc_ref_dimen_size (ar, i, &size, &end))
4809 {
4810 if (ar->end[i] == NULL)
4811 {
4812 ar->end[i] =
4813 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4814 &ar->where);
4815 mpz_set (ar->end[i]->value.integer, end);
4816 }
4817 else if (ar->end[i]->ts.type == BT_INTEGER
4818 && ar->end[i]->expr_type == EXPR_CONSTANT)
4819 {
4820 mpz_set (ar->end[i]->value.integer, end);
4821 }
4822 else
4823 gcc_unreachable ();
4824
4825 mpz_clear (size);
4826 mpz_clear (end);
4827 }
4828 }
4829 }
4830
4831 if (ar->type == AR_FULL)
4832 {
4833 if (ar->as->rank == 0)
4834 ar->type = AR_ELEMENT;
4835
4836 /* Make sure array is the same as array(:,:), this way
4837 we don't need to special case all the time. */
4838 ar->dimen = ar->as->rank;
4839 for (i = 0; i < ar->dimen; i++)
4840 {
4841 ar->dimen_type[i] = DIMEN_RANGE;
4842
4843 gcc_assert (ar->start[i] == NULL);
4844 gcc_assert (ar->end[i] == NULL);
4845 gcc_assert (ar->stride[i] == NULL);
4846 }
4847 }
4848
4849 /* If the reference type is unknown, figure out what kind it is. */
4850
4851 if (ar->type == AR_UNKNOWN)
4852 {
4853 ar->type = AR_ELEMENT;
4854 for (i = 0; i < ar->dimen; i++)
4855 if (ar->dimen_type[i] == DIMEN_RANGE
4856 || ar->dimen_type[i] == DIMEN_VECTOR)
4857 {
4858 ar->type = AR_SECTION;
4859 break;
4860 }
4861 }
4862
4863 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
4864 return false;
4865
4866 if (ar->as->corank && ar->codimen == 0)
4867 {
4868 int n;
4869 ar->codimen = ar->as->corank;
4870 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
4871 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
4872 }
4873
4874 return true;
4875 }
4876
4877
4878 static bool
4879 resolve_substring (gfc_ref *ref, bool *equal_length)
4880 {
4881 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
4882
4883 if (ref->u.ss.start != NULL)
4884 {
4885 if (!gfc_resolve_expr (ref->u.ss.start))
4886 return false;
4887
4888 if (ref->u.ss.start->ts.type != BT_INTEGER)
4889 {
4890 gfc_error ("Substring start index at %L must be of type INTEGER",
4891 &ref->u.ss.start->where);
4892 return false;
4893 }
4894
4895 if (ref->u.ss.start->rank != 0)
4896 {
4897 gfc_error ("Substring start index at %L must be scalar",
4898 &ref->u.ss.start->where);
4899 return false;
4900 }
4901
4902 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
4903 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4904 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4905 {
4906 gfc_error ("Substring start index at %L is less than one",
4907 &ref->u.ss.start->where);
4908 return false;
4909 }
4910 }
4911
4912 if (ref->u.ss.end != NULL)
4913 {
4914 if (!gfc_resolve_expr (ref->u.ss.end))
4915 return false;
4916
4917 if (ref->u.ss.end->ts.type != BT_INTEGER)
4918 {
4919 gfc_error ("Substring end index at %L must be of type INTEGER",
4920 &ref->u.ss.end->where);
4921 return false;
4922 }
4923
4924 if (ref->u.ss.end->rank != 0)
4925 {
4926 gfc_error ("Substring end index at %L must be scalar",
4927 &ref->u.ss.end->where);
4928 return false;
4929 }
4930
4931 if (ref->u.ss.length != NULL
4932 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
4933 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4934 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4935 {
4936 gfc_error ("Substring end index at %L exceeds the string length",
4937 &ref->u.ss.start->where);
4938 return false;
4939 }
4940
4941 if (compare_bound_mpz_t (ref->u.ss.end,
4942 gfc_integer_kinds[k].huge) == CMP_GT
4943 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4944 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4945 {
4946 gfc_error ("Substring end index at %L is too large",
4947 &ref->u.ss.end->where);
4948 return false;
4949 }
4950 /* If the substring has the same length as the original
4951 variable, the reference itself can be deleted. */
4952
4953 if (ref->u.ss.length != NULL
4954 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_EQ
4955 && compare_bound_int (ref->u.ss.start, 1) == CMP_EQ)
4956 *equal_length = true;
4957 }
4958
4959 return true;
4960 }
4961
4962
4963 /* This function supplies missing substring charlens. */
4964
4965 void
4966 gfc_resolve_substring_charlen (gfc_expr *e)
4967 {
4968 gfc_ref *char_ref;
4969 gfc_expr *start, *end;
4970 gfc_typespec *ts = NULL;
4971 mpz_t diff;
4972
4973 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
4974 {
4975 if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
4976 break;
4977 if (char_ref->type == REF_COMPONENT)
4978 ts = &char_ref->u.c.component->ts;
4979 }
4980
4981 if (!char_ref || char_ref->type == REF_INQUIRY)
4982 return;
4983
4984 gcc_assert (char_ref->next == NULL);
4985
4986 if (e->ts.u.cl)
4987 {
4988 if (e->ts.u.cl->length)
4989 gfc_free_expr (e->ts.u.cl->length);
4990 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
4991 return;
4992 }
4993
4994 e->ts.type = BT_CHARACTER;
4995 e->ts.kind = gfc_default_character_kind;
4996
4997 if (!e->ts.u.cl)
4998 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4999
5000 if (char_ref->u.ss.start)
5001 start = gfc_copy_expr (char_ref->u.ss.start);
5002 else
5003 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
5004
5005 if (char_ref->u.ss.end)
5006 end = gfc_copy_expr (char_ref->u.ss.end);
5007 else if (e->expr_type == EXPR_VARIABLE)
5008 {
5009 if (!ts)
5010 ts = &e->symtree->n.sym->ts;
5011 end = gfc_copy_expr (ts->u.cl->length);
5012 }
5013 else
5014 end = NULL;
5015
5016 if (!start || !end)
5017 {
5018 gfc_free_expr (start);
5019 gfc_free_expr (end);
5020 return;
5021 }
5022
5023 /* Length = (end - start + 1).
5024 Check first whether it has a constant length. */
5025 if (gfc_dep_difference (end, start, &diff))
5026 {
5027 gfc_expr *len = gfc_get_constant_expr (BT_INTEGER, gfc_charlen_int_kind,
5028 &e->where);
5029
5030 mpz_add_ui (len->value.integer, diff, 1);
5031 mpz_clear (diff);
5032 e->ts.u.cl->length = len;
5033 /* The check for length < 0 is handled below */
5034 }
5035 else
5036 {
5037 e->ts.u.cl->length = gfc_subtract (end, start);
5038 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
5039 gfc_get_int_expr (gfc_charlen_int_kind,
5040 NULL, 1));
5041 }
5042
5043 /* F2008, 6.4.1: Both the starting point and the ending point shall
5044 be within the range 1, 2, ..., n unless the starting point exceeds
5045 the ending point, in which case the substring has length zero. */
5046
5047 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
5048 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
5049
5050 e->ts.u.cl->length->ts.type = BT_INTEGER;
5051 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5052
5053 /* Make sure that the length is simplified. */
5054 gfc_simplify_expr (e->ts.u.cl->length, 1);
5055 gfc_resolve_expr (e->ts.u.cl->length);
5056 }
5057
5058
5059 /* Resolve subtype references. */
5060
5061 static bool
5062 resolve_ref (gfc_expr *expr)
5063 {
5064 int current_part_dimension, n_components, seen_part_dimension;
5065 gfc_ref *ref, **prev;
5066 bool equal_length;
5067
5068 for (ref = expr->ref; ref; ref = ref->next)
5069 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
5070 {
5071 find_array_spec (expr);
5072 break;
5073 }
5074
5075 for (prev = &expr->ref; *prev != NULL;
5076 prev = *prev == NULL ? prev : &(*prev)->next)
5077 switch ((*prev)->type)
5078 {
5079 case REF_ARRAY:
5080 if (!resolve_array_ref (&(*prev)->u.ar))
5081 return false;
5082 break;
5083
5084 case REF_COMPONENT:
5085 case REF_INQUIRY:
5086 break;
5087
5088 case REF_SUBSTRING:
5089 equal_length = false;
5090 if (!resolve_substring (*prev, &equal_length))
5091 return false;
5092
5093 if (expr->expr_type != EXPR_SUBSTRING && equal_length)
5094 {
5095 /* Remove the reference and move the charlen, if any. */
5096 ref = *prev;
5097 *prev = ref->next;
5098 ref->next = NULL;
5099 expr->ts.u.cl = ref->u.ss.length;
5100 ref->u.ss.length = NULL;
5101 gfc_free_ref_list (ref);
5102 }
5103 break;
5104 }
5105
5106 /* Check constraints on part references. */
5107
5108 current_part_dimension = 0;
5109 seen_part_dimension = 0;
5110 n_components = 0;
5111
5112 for (ref = expr->ref; ref; ref = ref->next)
5113 {
5114 switch (ref->type)
5115 {
5116 case REF_ARRAY:
5117 switch (ref->u.ar.type)
5118 {
5119 case AR_FULL:
5120 /* Coarray scalar. */
5121 if (ref->u.ar.as->rank == 0)
5122 {
5123 current_part_dimension = 0;
5124 break;
5125 }
5126 /* Fall through. */
5127 case AR_SECTION:
5128 current_part_dimension = 1;
5129 break;
5130
5131 case AR_ELEMENT:
5132 current_part_dimension = 0;
5133 break;
5134
5135 case AR_UNKNOWN:
5136 gfc_internal_error ("resolve_ref(): Bad array reference");
5137 }
5138
5139 break;
5140
5141 case REF_COMPONENT:
5142 if (current_part_dimension || seen_part_dimension)
5143 {
5144 /* F03:C614. */
5145 if (ref->u.c.component->attr.pointer
5146 || ref->u.c.component->attr.proc_pointer
5147 || (ref->u.c.component->ts.type == BT_CLASS
5148 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5149 {
5150 gfc_error ("Component to the right of a part reference "
5151 "with nonzero rank must not have the POINTER "
5152 "attribute at %L", &expr->where);
5153 return false;
5154 }
5155 else if (ref->u.c.component->attr.allocatable
5156 || (ref->u.c.component->ts.type == BT_CLASS
5157 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5158
5159 {
5160 gfc_error ("Component to the right of a part reference "
5161 "with nonzero rank must not have the ALLOCATABLE "
5162 "attribute at %L", &expr->where);
5163 return false;
5164 }
5165 }
5166
5167 n_components++;
5168 break;
5169
5170 case REF_SUBSTRING:
5171 case REF_INQUIRY:
5172 break;
5173 }
5174
5175 if (((ref->type == REF_COMPONENT && n_components > 1)
5176 || ref->next == NULL)
5177 && current_part_dimension
5178 && seen_part_dimension)
5179 {
5180 gfc_error ("Two or more part references with nonzero rank must "
5181 "not be specified at %L", &expr->where);
5182 return false;
5183 }
5184
5185 if (ref->type == REF_COMPONENT)
5186 {
5187 if (current_part_dimension)
5188 seen_part_dimension = 1;
5189
5190 /* reset to make sure */
5191 current_part_dimension = 0;
5192 }
5193 }
5194
5195 return true;
5196 }
5197
5198
5199 /* Given an expression, determine its shape. This is easier than it sounds.
5200 Leaves the shape array NULL if it is not possible to determine the shape. */
5201
5202 static void
5203 expression_shape (gfc_expr *e)
5204 {
5205 mpz_t array[GFC_MAX_DIMENSIONS];
5206 int i;
5207
5208 if (e->rank <= 0 || e->shape != NULL)
5209 return;
5210
5211 for (i = 0; i < e->rank; i++)
5212 if (!gfc_array_dimen_size (e, i, &array[i]))
5213 goto fail;
5214
5215 e->shape = gfc_get_shape (e->rank);
5216
5217 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5218
5219 return;
5220
5221 fail:
5222 for (i--; i >= 0; i--)
5223 mpz_clear (array[i]);
5224 }
5225
5226
5227 /* Given a variable expression node, compute the rank of the expression by
5228 examining the base symbol and any reference structures it may have. */
5229
5230 void
5231 expression_rank (gfc_expr *e)
5232 {
5233 gfc_ref *ref;
5234 int i, rank;
5235
5236 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5237 could lead to serious confusion... */
5238 gcc_assert (e->expr_type != EXPR_COMPCALL);
5239
5240 if (e->ref == NULL)
5241 {
5242 if (e->expr_type == EXPR_ARRAY)
5243 goto done;
5244 /* Constructors can have a rank different from one via RESHAPE(). */
5245
5246 if (e->symtree == NULL)
5247 {
5248 e->rank = 0;
5249 goto done;
5250 }
5251
5252 e->rank = (e->symtree->n.sym->as == NULL)
5253 ? 0 : e->symtree->n.sym->as->rank;
5254 goto done;
5255 }
5256
5257 rank = 0;
5258
5259 for (ref = e->ref; ref; ref = ref->next)
5260 {
5261 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5262 && ref->u.c.component->attr.function && !ref->next)
5263 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5264
5265 if (ref->type != REF_ARRAY)
5266 continue;
5267
5268 if (ref->u.ar.type == AR_FULL)
5269 {
5270 rank = ref->u.ar.as->rank;
5271 break;
5272 }
5273
5274 if (ref->u.ar.type == AR_SECTION)
5275 {
5276 /* Figure out the rank of the section. */
5277 if (rank != 0)
5278 gfc_internal_error ("expression_rank(): Two array specs");
5279
5280 for (i = 0; i < ref->u.ar.dimen; i++)
5281 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5282 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5283 rank++;
5284
5285 break;
5286 }
5287 }
5288
5289 e->rank = rank;
5290
5291 done:
5292 expression_shape (e);
5293 }
5294
5295
5296 static void
5297 add_caf_get_intrinsic (gfc_expr *e)
5298 {
5299 gfc_expr *wrapper, *tmp_expr;
5300 gfc_ref *ref;
5301 int n;
5302
5303 for (ref = e->ref; ref; ref = ref->next)
5304 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5305 break;
5306 if (ref == NULL)
5307 return;
5308
5309 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5310 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5311 return;
5312
5313 tmp_expr = XCNEW (gfc_expr);
5314 *tmp_expr = *e;
5315 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5316 "caf_get", tmp_expr->where, 1, tmp_expr);
5317 wrapper->ts = e->ts;
5318 wrapper->rank = e->rank;
5319 if (e->rank)
5320 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5321 *e = *wrapper;
5322 free (wrapper);
5323 }
5324
5325
5326 static void
5327 remove_caf_get_intrinsic (gfc_expr *e)
5328 {
5329 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5330 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5331 gfc_expr *e2 = e->value.function.actual->expr;
5332 e->value.function.actual->expr = NULL;
5333 gfc_free_actual_arglist (e->value.function.actual);
5334 gfc_free_shape (&e->shape, e->rank);
5335 *e = *e2;
5336 free (e2);
5337 }
5338
5339
5340 /* Resolve a variable expression. */
5341
5342 static bool
5343 resolve_variable (gfc_expr *e)
5344 {
5345 gfc_symbol *sym;
5346 bool t;
5347
5348 t = true;
5349
5350 if (e->symtree == NULL)
5351 return false;
5352 sym = e->symtree->n.sym;
5353
5354 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5355 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5356 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5357 {
5358 if (!actual_arg || inquiry_argument)
5359 {
5360 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5361 "be used as actual argument", sym->name, &e->where);
5362 return false;
5363 }
5364 }
5365 /* TS 29113, 407b. */
5366 else if (e->ts.type == BT_ASSUMED)
5367 {
5368 if (!actual_arg)
5369 {
5370 gfc_error ("Assumed-type variable %s at %L may only be used "
5371 "as actual argument", sym->name, &e->where);
5372 return false;
5373 }
5374 else if (inquiry_argument && !first_actual_arg)
5375 {
5376 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5377 for all inquiry functions in resolve_function; the reason is
5378 that the function-name resolution happens too late in that
5379 function. */
5380 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5381 "an inquiry function shall be the first argument",
5382 sym->name, &e->where);
5383 return false;
5384 }
5385 }
5386 /* TS 29113, C535b. */
5387 else if ((sym->ts.type == BT_CLASS && sym->attr.class_ok
5388 && CLASS_DATA (sym)->as
5389 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5390 || (sym->ts.type != BT_CLASS && sym->as
5391 && sym->as->type == AS_ASSUMED_RANK))
5392 {
5393 if (!actual_arg)
5394 {
5395 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5396 "actual argument", sym->name, &e->where);
5397 return false;
5398 }
5399 else if (inquiry_argument && !first_actual_arg)
5400 {
5401 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5402 for all inquiry functions in resolve_function; the reason is
5403 that the function-name resolution happens too late in that
5404 function. */
5405 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5406 "to an inquiry function shall be the first argument",
5407 sym->name, &e->where);
5408 return false;
5409 }
5410 }
5411
5412 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5413 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5414 && e->ref->next == NULL))
5415 {
5416 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5417 "a subobject reference", sym->name, &e->ref->u.ar.where);
5418 return false;
5419 }
5420 /* TS 29113, 407b. */
5421 else if (e->ts.type == BT_ASSUMED && e->ref
5422 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5423 && e->ref->next == NULL))
5424 {
5425 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5426 "reference", sym->name, &e->ref->u.ar.where);
5427 return false;
5428 }
5429
5430 /* TS 29113, C535b. */
5431 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5432 && CLASS_DATA (sym)->as
5433 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5434 || (sym->ts.type != BT_CLASS && sym->as
5435 && sym->as->type == AS_ASSUMED_RANK))
5436 && e->ref
5437 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5438 && e->ref->next == NULL))
5439 {
5440 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5441 "reference", sym->name, &e->ref->u.ar.where);
5442 return false;
5443 }
5444
5445 /* For variables that are used in an associate (target => object) where
5446 the object's basetype is array valued while the target is scalar,
5447 the ts' type of the component refs is still array valued, which
5448 can't be translated that way. */
5449 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5450 && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
5451 && CLASS_DATA (sym->assoc->target)->as)
5452 {
5453 gfc_ref *ref = e->ref;
5454 while (ref)
5455 {
5456 switch (ref->type)
5457 {
5458 case REF_COMPONENT:
5459 ref->u.c.sym = sym->ts.u.derived;
5460 /* Stop the loop. */
5461 ref = NULL;
5462 break;
5463 default:
5464 ref = ref->next;
5465 break;
5466 }
5467 }
5468 }
5469
5470 /* If this is an associate-name, it may be parsed with an array reference
5471 in error even though the target is scalar. Fail directly in this case.
5472 TODO Understand why class scalar expressions must be excluded. */
5473 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5474 {
5475 if (sym->ts.type == BT_CLASS)
5476 gfc_fix_class_refs (e);
5477 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5478 return false;
5479 else if (sym->attr.dimension && (!e->ref || e->ref->type != REF_ARRAY))
5480 {
5481 /* This can happen because the parser did not detect that the
5482 associate name is an array and the expression had no array
5483 part_ref. */
5484 gfc_ref *ref = gfc_get_ref ();
5485 ref->type = REF_ARRAY;
5486 ref->u.ar = *gfc_get_array_ref();
5487 ref->u.ar.type = AR_FULL;
5488 if (sym->as)
5489 {
5490 ref->u.ar.as = sym->as;
5491 ref->u.ar.dimen = sym->as->rank;
5492 }
5493 ref->next = e->ref;
5494 e->ref = ref;
5495
5496 }
5497 }
5498
5499 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5500 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5501
5502 /* On the other hand, the parser may not have known this is an array;
5503 in this case, we have to add a FULL reference. */
5504 if (sym->assoc && sym->attr.dimension && !e->ref)
5505 {
5506 e->ref = gfc_get_ref ();
5507 e->ref->type = REF_ARRAY;
5508 e->ref->u.ar.type = AR_FULL;
5509 e->ref->u.ar.dimen = 0;
5510 }
5511
5512 /* Like above, but for class types, where the checking whether an array
5513 ref is present is more complicated. Furthermore make sure not to add
5514 the full array ref to _vptr or _len refs. */
5515 if (sym->assoc && sym->ts.type == BT_CLASS
5516 && CLASS_DATA (sym)->attr.dimension
5517 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5518 {
5519 gfc_ref *ref, *newref;
5520
5521 newref = gfc_get_ref ();
5522 newref->type = REF_ARRAY;
5523 newref->u.ar.type = AR_FULL;
5524 newref->u.ar.dimen = 0;
5525 /* Because this is an associate var and the first ref either is a ref to
5526 the _data component or not, no traversal of the ref chain is
5527 needed. The array ref needs to be inserted after the _data ref,
5528 or when that is not present, which may happend for polymorphic
5529 types, then at the first position. */
5530 ref = e->ref;
5531 if (!ref)
5532 e->ref = newref;
5533 else if (ref->type == REF_COMPONENT
5534 && strcmp ("_data", ref->u.c.component->name) == 0)
5535 {
5536 if (!ref->next || ref->next->type != REF_ARRAY)
5537 {
5538 newref->next = ref->next;
5539 ref->next = newref;
5540 }
5541 else
5542 /* Array ref present already. */
5543 gfc_free_ref_list (newref);
5544 }
5545 else if (ref->type == REF_ARRAY)
5546 /* Array ref present already. */
5547 gfc_free_ref_list (newref);
5548 else
5549 {
5550 newref->next = ref;
5551 e->ref = newref;
5552 }
5553 }
5554
5555 if (e->ref && !resolve_ref (e))
5556 return false;
5557
5558 if (sym->attr.flavor == FL_PROCEDURE
5559 && (!sym->attr.function
5560 || (sym->attr.function && sym->result
5561 && sym->result->attr.proc_pointer
5562 && !sym->result->attr.function)))
5563 {
5564 e->ts.type = BT_PROCEDURE;
5565 goto resolve_procedure;
5566 }
5567
5568 if (sym->ts.type != BT_UNKNOWN)
5569 gfc_variable_attr (e, &e->ts);
5570 else if (sym->attr.flavor == FL_PROCEDURE
5571 && sym->attr.function && sym->result
5572 && sym->result->ts.type != BT_UNKNOWN
5573 && sym->result->attr.proc_pointer)
5574 e->ts = sym->result->ts;
5575 else
5576 {
5577 /* Must be a simple variable reference. */
5578 if (!gfc_set_default_type (sym, 1, sym->ns))
5579 return false;
5580 e->ts = sym->ts;
5581 }
5582
5583 if (check_assumed_size_reference (sym, e))
5584 return false;
5585
5586 /* Deal with forward references to entries during gfc_resolve_code, to
5587 satisfy, at least partially, 12.5.2.5. */
5588 if (gfc_current_ns->entries
5589 && current_entry_id == sym->entry_id
5590 && cs_base
5591 && cs_base->current
5592 && cs_base->current->op != EXEC_ENTRY)
5593 {
5594 gfc_entry_list *entry;
5595 gfc_formal_arglist *formal;
5596 int n;
5597 bool seen, saved_specification_expr;
5598
5599 /* If the symbol is a dummy... */
5600 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5601 {
5602 entry = gfc_current_ns->entries;
5603 seen = false;
5604
5605 /* ...test if the symbol is a parameter of previous entries. */
5606 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5607 for (formal = entry->sym->formal; formal; formal = formal->next)
5608 {
5609 if (formal->sym && sym->name == formal->sym->name)
5610 {
5611 seen = true;
5612 break;
5613 }
5614 }
5615
5616 /* If it has not been seen as a dummy, this is an error. */
5617 if (!seen)
5618 {
5619 if (specification_expr)
5620 gfc_error ("Variable %qs, used in a specification expression"
5621 ", is referenced at %L before the ENTRY statement "
5622 "in which it is a parameter",
5623 sym->name, &cs_base->current->loc);
5624 else
5625 gfc_error ("Variable %qs is used at %L before the ENTRY "
5626 "statement in which it is a parameter",
5627 sym->name, &cs_base->current->loc);
5628 t = false;
5629 }
5630 }
5631
5632 /* Now do the same check on the specification expressions. */
5633 saved_specification_expr = specification_expr;
5634 specification_expr = true;
5635 if (sym->ts.type == BT_CHARACTER
5636 && !gfc_resolve_expr (sym->ts.u.cl->length))
5637 t = false;
5638
5639 if (sym->as)
5640 for (n = 0; n < sym->as->rank; n++)
5641 {
5642 if (!gfc_resolve_expr (sym->as->lower[n]))
5643 t = false;
5644 if (!gfc_resolve_expr (sym->as->upper[n]))
5645 t = false;
5646 }
5647 specification_expr = saved_specification_expr;
5648
5649 if (t)
5650 /* Update the symbol's entry level. */
5651 sym->entry_id = current_entry_id + 1;
5652 }
5653
5654 /* If a symbol has been host_associated mark it. This is used latter,
5655 to identify if aliasing is possible via host association. */
5656 if (sym->attr.flavor == FL_VARIABLE
5657 && gfc_current_ns->parent
5658 && (gfc_current_ns->parent == sym->ns
5659 || (gfc_current_ns->parent->parent
5660 && gfc_current_ns->parent->parent == sym->ns)))
5661 sym->attr.host_assoc = 1;
5662
5663 if (gfc_current_ns->proc_name
5664 && sym->attr.dimension
5665 && (sym->ns != gfc_current_ns
5666 || sym->attr.use_assoc
5667 || sym->attr.in_common))
5668 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5669
5670 resolve_procedure:
5671 if (t && !resolve_procedure_expression (e))
5672 t = false;
5673
5674 /* F2008, C617 and C1229. */
5675 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5676 && gfc_is_coindexed (e))
5677 {
5678 gfc_ref *ref, *ref2 = NULL;
5679
5680 for (ref = e->ref; ref; ref = ref->next)
5681 {
5682 if (ref->type == REF_COMPONENT)
5683 ref2 = ref;
5684 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5685 break;
5686 }
5687
5688 for ( ; ref; ref = ref->next)
5689 if (ref->type == REF_COMPONENT)
5690 break;
5691
5692 /* Expression itself is not coindexed object. */
5693 if (ref && e->ts.type == BT_CLASS)
5694 {
5695 gfc_error ("Polymorphic subobject of coindexed object at %L",
5696 &e->where);
5697 t = false;
5698 }
5699
5700 /* Expression itself is coindexed object. */
5701 if (ref == NULL)
5702 {
5703 gfc_component *c;
5704 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5705 for ( ; c; c = c->next)
5706 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5707 {
5708 gfc_error ("Coindexed object with polymorphic allocatable "
5709 "subcomponent at %L", &e->where);
5710 t = false;
5711 break;
5712 }
5713 }
5714 }
5715
5716 if (t)
5717 expression_rank (e);
5718
5719 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5720 add_caf_get_intrinsic (e);
5721
5722 /* Simplify cases where access to a parameter array results in a
5723 single constant. Suppress errors since those will have been
5724 issued before, as warnings. */
5725 if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
5726 {
5727 gfc_push_suppress_errors ();
5728 gfc_simplify_expr (e, 1);
5729 gfc_pop_suppress_errors ();
5730 }
5731
5732 return t;
5733 }
5734
5735
5736 /* Checks to see that the correct symbol has been host associated.
5737 The only situation where this arises is that in which a twice
5738 contained function is parsed after the host association is made.
5739 Therefore, on detecting this, change the symbol in the expression
5740 and convert the array reference into an actual arglist if the old
5741 symbol is a variable. */
5742 static bool
5743 check_host_association (gfc_expr *e)
5744 {
5745 gfc_symbol *sym, *old_sym;
5746 gfc_symtree *st;
5747 int n;
5748 gfc_ref *ref;
5749 gfc_actual_arglist *arg, *tail = NULL;
5750 bool retval = e->expr_type == EXPR_FUNCTION;
5751
5752 /* If the expression is the result of substitution in
5753 interface.c(gfc_extend_expr) because there is no way in
5754 which the host association can be wrong. */
5755 if (e->symtree == NULL
5756 || e->symtree->n.sym == NULL
5757 || e->user_operator)
5758 return retval;
5759
5760 old_sym = e->symtree->n.sym;
5761
5762 if (gfc_current_ns->parent
5763 && old_sym->ns != gfc_current_ns)
5764 {
5765 /* Use the 'USE' name so that renamed module symbols are
5766 correctly handled. */
5767 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5768
5769 if (sym && old_sym != sym
5770 && sym->ts.type == old_sym->ts.type
5771 && sym->attr.flavor == FL_PROCEDURE
5772 && sym->attr.contained)
5773 {
5774 /* Clear the shape, since it might not be valid. */
5775 gfc_free_shape (&e->shape, e->rank);
5776
5777 /* Give the expression the right symtree! */
5778 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5779 gcc_assert (st != NULL);
5780
5781 if (old_sym->attr.flavor == FL_PROCEDURE
5782 || e->expr_type == EXPR_FUNCTION)
5783 {
5784 /* Original was function so point to the new symbol, since
5785 the actual argument list is already attached to the
5786 expression. */
5787 e->value.function.esym = NULL;
5788 e->symtree = st;
5789 }
5790 else
5791 {
5792 /* Original was variable so convert array references into
5793 an actual arglist. This does not need any checking now
5794 since resolve_function will take care of it. */
5795 e->value.function.actual = NULL;
5796 e->expr_type = EXPR_FUNCTION;
5797 e->symtree = st;
5798
5799 /* Ambiguity will not arise if the array reference is not
5800 the last reference. */
5801 for (ref = e->ref; ref; ref = ref->next)
5802 if (ref->type == REF_ARRAY && ref->next == NULL)
5803 break;
5804
5805 gcc_assert (ref->type == REF_ARRAY);
5806
5807 /* Grab the start expressions from the array ref and
5808 copy them into actual arguments. */
5809 for (n = 0; n < ref->u.ar.dimen; n++)
5810 {
5811 arg = gfc_get_actual_arglist ();
5812 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5813 if (e->value.function.actual == NULL)
5814 tail = e->value.function.actual = arg;
5815 else
5816 {
5817 tail->next = arg;
5818 tail = arg;
5819 }
5820 }
5821
5822 /* Dump the reference list and set the rank. */
5823 gfc_free_ref_list (e->ref);
5824 e->ref = NULL;
5825 e->rank = sym->as ? sym->as->rank : 0;
5826 }
5827
5828 gfc_resolve_expr (e);
5829 sym->refs++;
5830 }
5831 }
5832 /* This might have changed! */
5833 return e->expr_type == EXPR_FUNCTION;
5834 }
5835
5836
5837 static void
5838 gfc_resolve_character_operator (gfc_expr *e)
5839 {
5840 gfc_expr *op1 = e->value.op.op1;
5841 gfc_expr *op2 = e->value.op.op2;
5842 gfc_expr *e1 = NULL;
5843 gfc_expr *e2 = NULL;
5844
5845 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
5846
5847 if (op1->ts.u.cl && op1->ts.u.cl->length)
5848 e1 = gfc_copy_expr (op1->ts.u.cl->length);
5849 else if (op1->expr_type == EXPR_CONSTANT)
5850 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5851 op1->value.character.length);
5852
5853 if (op2->ts.u.cl && op2->ts.u.cl->length)
5854 e2 = gfc_copy_expr (op2->ts.u.cl->length);
5855 else if (op2->expr_type == EXPR_CONSTANT)
5856 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5857 op2->value.character.length);
5858
5859 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5860
5861 if (!e1 || !e2)
5862 {
5863 gfc_free_expr (e1);
5864 gfc_free_expr (e2);
5865
5866 return;
5867 }
5868
5869 e->ts.u.cl->length = gfc_add (e1, e2);
5870 e->ts.u.cl->length->ts.type = BT_INTEGER;
5871 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5872 gfc_simplify_expr (e->ts.u.cl->length, 0);
5873 gfc_resolve_expr (e->ts.u.cl->length);
5874
5875 return;
5876 }
5877
5878
5879 /* Ensure that an character expression has a charlen and, if possible, a
5880 length expression. */
5881
5882 static void
5883 fixup_charlen (gfc_expr *e)
5884 {
5885 /* The cases fall through so that changes in expression type and the need
5886 for multiple fixes are picked up. In all circumstances, a charlen should
5887 be available for the middle end to hang a backend_decl on. */
5888 switch (e->expr_type)
5889 {
5890 case EXPR_OP:
5891 gfc_resolve_character_operator (e);
5892 /* FALLTHRU */
5893
5894 case EXPR_ARRAY:
5895 if (e->expr_type == EXPR_ARRAY)
5896 gfc_resolve_character_array_constructor (e);
5897 /* FALLTHRU */
5898
5899 case EXPR_SUBSTRING:
5900 if (!e->ts.u.cl && e->ref)
5901 gfc_resolve_substring_charlen (e);
5902 /* FALLTHRU */
5903
5904 default:
5905 if (!e->ts.u.cl)
5906 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5907
5908 break;
5909 }
5910 }
5911
5912
5913 /* Update an actual argument to include the passed-object for type-bound
5914 procedures at the right position. */
5915
5916 static gfc_actual_arglist*
5917 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
5918 const char *name)
5919 {
5920 gcc_assert (argpos > 0);
5921
5922 if (argpos == 1)
5923 {
5924 gfc_actual_arglist* result;
5925
5926 result = gfc_get_actual_arglist ();
5927 result->expr = po;
5928 result->next = lst;
5929 if (name)
5930 result->name = name;
5931
5932 return result;
5933 }
5934
5935 if (lst)
5936 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
5937 else
5938 lst = update_arglist_pass (NULL, po, argpos - 1, name);
5939 return lst;
5940 }
5941
5942
5943 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
5944
5945 static gfc_expr*
5946 extract_compcall_passed_object (gfc_expr* e)
5947 {
5948 gfc_expr* po;
5949
5950 if (e->expr_type == EXPR_UNKNOWN)
5951 {
5952 gfc_error ("Error in typebound call at %L",
5953 &e->where);
5954 return NULL;
5955 }
5956
5957 gcc_assert (e->expr_type == EXPR_COMPCALL);
5958
5959 if (e->value.compcall.base_object)
5960 po = gfc_copy_expr (e->value.compcall.base_object);
5961 else
5962 {
5963 po = gfc_get_expr ();
5964 po->expr_type = EXPR_VARIABLE;
5965 po->symtree = e->symtree;
5966 po->ref = gfc_copy_ref (e->ref);
5967 po->where = e->where;
5968 }
5969
5970 if (!gfc_resolve_expr (po))
5971 return NULL;
5972
5973 return po;
5974 }
5975
5976
5977 /* Update the arglist of an EXPR_COMPCALL expression to include the
5978 passed-object. */
5979
5980 static bool
5981 update_compcall_arglist (gfc_expr* e)
5982 {
5983 gfc_expr* po;
5984 gfc_typebound_proc* tbp;
5985
5986 tbp = e->value.compcall.tbp;
5987
5988 if (tbp->error)
5989 return false;
5990
5991 po = extract_compcall_passed_object (e);
5992 if (!po)
5993 return false;
5994
5995 if (tbp->nopass || e->value.compcall.ignore_pass)
5996 {
5997 gfc_free_expr (po);
5998 return true;
5999 }
6000
6001 if (tbp->pass_arg_num <= 0)
6002 return false;
6003
6004 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6005 tbp->pass_arg_num,
6006 tbp->pass_arg);
6007
6008 return true;
6009 }
6010
6011
6012 /* Extract the passed object from a PPC call (a copy of it). */
6013
6014 static gfc_expr*
6015 extract_ppc_passed_object (gfc_expr *e)
6016 {
6017 gfc_expr *po;
6018 gfc_ref **ref;
6019
6020 po = gfc_get_expr ();
6021 po->expr_type = EXPR_VARIABLE;
6022 po->symtree = e->symtree;
6023 po->ref = gfc_copy_ref (e->ref);
6024 po->where = e->where;
6025
6026 /* Remove PPC reference. */
6027 ref = &po->ref;
6028 while ((*ref)->next)
6029 ref = &(*ref)->next;
6030 gfc_free_ref_list (*ref);
6031 *ref = NULL;
6032
6033 if (!gfc_resolve_expr (po))
6034 return NULL;
6035
6036 return po;
6037 }
6038
6039
6040 /* Update the actual arglist of a procedure pointer component to include the
6041 passed-object. */
6042
6043 static bool
6044 update_ppc_arglist (gfc_expr* e)
6045 {
6046 gfc_expr* po;
6047 gfc_component *ppc;
6048 gfc_typebound_proc* tb;
6049
6050 ppc = gfc_get_proc_ptr_comp (e);
6051 if (!ppc)
6052 return false;
6053
6054 tb = ppc->tb;
6055
6056 if (tb->error)
6057 return false;
6058 else if (tb->nopass)
6059 return true;
6060
6061 po = extract_ppc_passed_object (e);
6062 if (!po)
6063 return false;
6064
6065 /* F08:R739. */
6066 if (po->rank != 0)
6067 {
6068 gfc_error ("Passed-object at %L must be scalar", &e->where);
6069 return false;
6070 }
6071
6072 /* F08:C611. */
6073 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
6074 {
6075 gfc_error ("Base object for procedure-pointer component call at %L is of"
6076 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
6077 return false;
6078 }
6079
6080 gcc_assert (tb->pass_arg_num > 0);
6081 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
6082 tb->pass_arg_num,
6083 tb->pass_arg);
6084
6085 return true;
6086 }
6087
6088
6089 /* Check that the object a TBP is called on is valid, i.e. it must not be
6090 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
6091
6092 static bool
6093 check_typebound_baseobject (gfc_expr* e)
6094 {
6095 gfc_expr* base;
6096 bool return_value = false;
6097
6098 base = extract_compcall_passed_object (e);
6099 if (!base)
6100 return false;
6101
6102 if (base->ts.type != BT_DERIVED && base->ts.type != BT_CLASS)
6103 {
6104 gfc_error ("Error in typebound call at %L", &e->where);
6105 goto cleanup;
6106 }
6107
6108 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
6109 return false;
6110
6111 /* F08:C611. */
6112 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
6113 {
6114 gfc_error ("Base object for type-bound procedure call at %L is of"
6115 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
6116 goto cleanup;
6117 }
6118
6119 /* F08:C1230. If the procedure called is NOPASS,
6120 the base object must be scalar. */
6121 if (e->value.compcall.tbp->nopass && base->rank != 0)
6122 {
6123 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
6124 " be scalar", &e->where);
6125 goto cleanup;
6126 }
6127
6128 return_value = true;
6129
6130 cleanup:
6131 gfc_free_expr (base);
6132 return return_value;
6133 }
6134
6135
6136 /* Resolve a call to a type-bound procedure, either function or subroutine,
6137 statically from the data in an EXPR_COMPCALL expression. The adapted
6138 arglist and the target-procedure symtree are returned. */
6139
6140 static bool
6141 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
6142 gfc_actual_arglist** actual)
6143 {
6144 gcc_assert (e->expr_type == EXPR_COMPCALL);
6145 gcc_assert (!e->value.compcall.tbp->is_generic);
6146
6147 /* Update the actual arglist for PASS. */
6148 if (!update_compcall_arglist (e))
6149 return false;
6150
6151 *actual = e->value.compcall.actual;
6152 *target = e->value.compcall.tbp->u.specific;
6153
6154 gfc_free_ref_list (e->ref);
6155 e->ref = NULL;
6156 e->value.compcall.actual = NULL;
6157
6158 /* If we find a deferred typebound procedure, check for derived types
6159 that an overriding typebound procedure has not been missed. */
6160 if (e->value.compcall.name
6161 && !e->value.compcall.tbp->non_overridable
6162 && e->value.compcall.base_object
6163 && e->value.compcall.base_object->ts.type == BT_DERIVED)
6164 {
6165 gfc_symtree *st;
6166 gfc_symbol *derived;
6167
6168 /* Use the derived type of the base_object. */
6169 derived = e->value.compcall.base_object->ts.u.derived;
6170 st = NULL;
6171
6172 /* If necessary, go through the inheritance chain. */
6173 while (!st && derived)
6174 {
6175 /* Look for the typebound procedure 'name'. */
6176 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6177 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6178 e->value.compcall.name);
6179 if (!st)
6180 derived = gfc_get_derived_super_type (derived);
6181 }
6182
6183 /* Now find the specific name in the derived type namespace. */
6184 if (st && st->n.tb && st->n.tb->u.specific)
6185 gfc_find_sym_tree (st->n.tb->u.specific->name,
6186 derived->ns, 1, &st);
6187 if (st)
6188 *target = st;
6189 }
6190 return true;
6191 }
6192
6193
6194 /* Get the ultimate declared type from an expression. In addition,
6195 return the last class/derived type reference and the copy of the
6196 reference list. If check_types is set true, derived types are
6197 identified as well as class references. */
6198 static gfc_symbol*
6199 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6200 gfc_expr *e, bool check_types)
6201 {
6202 gfc_symbol *declared;
6203 gfc_ref *ref;
6204
6205 declared = NULL;
6206 if (class_ref)
6207 *class_ref = NULL;
6208 if (new_ref)
6209 *new_ref = gfc_copy_ref (e->ref);
6210
6211 for (ref = e->ref; ref; ref = ref->next)
6212 {
6213 if (ref->type != REF_COMPONENT)
6214 continue;
6215
6216 if ((ref->u.c.component->ts.type == BT_CLASS
6217 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6218 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6219 {
6220 declared = ref->u.c.component->ts.u.derived;
6221 if (class_ref)
6222 *class_ref = ref;
6223 }
6224 }
6225
6226 if (declared == NULL)
6227 declared = e->symtree->n.sym->ts.u.derived;
6228
6229 return declared;
6230 }
6231
6232
6233 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6234 which of the specific bindings (if any) matches the arglist and transform
6235 the expression into a call of that binding. */
6236
6237 static bool
6238 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6239 {
6240 gfc_typebound_proc* genproc;
6241 const char* genname;
6242 gfc_symtree *st;
6243 gfc_symbol *derived;
6244
6245 gcc_assert (e->expr_type == EXPR_COMPCALL);
6246 genname = e->value.compcall.name;
6247 genproc = e->value.compcall.tbp;
6248
6249 if (!genproc->is_generic)
6250 return true;
6251
6252 /* Try the bindings on this type and in the inheritance hierarchy. */
6253 for (; genproc; genproc = genproc->overridden)
6254 {
6255 gfc_tbp_generic* g;
6256
6257 gcc_assert (genproc->is_generic);
6258 for (g = genproc->u.generic; g; g = g->next)
6259 {
6260 gfc_symbol* target;
6261 gfc_actual_arglist* args;
6262 bool matches;
6263
6264 gcc_assert (g->specific);
6265
6266 if (g->specific->error)
6267 continue;
6268
6269 target = g->specific->u.specific->n.sym;
6270
6271 /* Get the right arglist by handling PASS/NOPASS. */
6272 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6273 if (!g->specific->nopass)
6274 {
6275 gfc_expr* po;
6276 po = extract_compcall_passed_object (e);
6277 if (!po)
6278 {
6279 gfc_free_actual_arglist (args);
6280 return false;
6281 }
6282
6283 gcc_assert (g->specific->pass_arg_num > 0);
6284 gcc_assert (!g->specific->error);
6285 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6286 g->specific->pass_arg);
6287 }
6288 resolve_actual_arglist (args, target->attr.proc,
6289 is_external_proc (target)
6290 && gfc_sym_get_dummy_args (target) == NULL);
6291
6292 /* Check if this arglist matches the formal. */
6293 matches = gfc_arglist_matches_symbol (&args, target);
6294
6295 /* Clean up and break out of the loop if we've found it. */
6296 gfc_free_actual_arglist (args);
6297 if (matches)
6298 {
6299 e->value.compcall.tbp = g->specific;
6300 genname = g->specific_st->name;
6301 /* Pass along the name for CLASS methods, where the vtab
6302 procedure pointer component has to be referenced. */
6303 if (name)
6304 *name = genname;
6305 goto success;
6306 }
6307 }
6308 }
6309
6310 /* Nothing matching found! */
6311 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6312 " %qs at %L", genname, &e->where);
6313 return false;
6314
6315 success:
6316 /* Make sure that we have the right specific instance for the name. */
6317 derived = get_declared_from_expr (NULL, NULL, e, true);
6318
6319 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6320 if (st)
6321 e->value.compcall.tbp = st->n.tb;
6322
6323 return true;
6324 }
6325
6326
6327 /* Resolve a call to a type-bound subroutine. */
6328
6329 static bool
6330 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6331 {
6332 gfc_actual_arglist* newactual;
6333 gfc_symtree* target;
6334
6335 /* Check that's really a SUBROUTINE. */
6336 if (!c->expr1->value.compcall.tbp->subroutine)
6337 {
6338 if (!c->expr1->value.compcall.tbp->is_generic
6339 && c->expr1->value.compcall.tbp->u.specific
6340 && c->expr1->value.compcall.tbp->u.specific->n.sym
6341 && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
6342 c->expr1->value.compcall.tbp->subroutine = 1;
6343 else
6344 {
6345 gfc_error ("%qs at %L should be a SUBROUTINE",
6346 c->expr1->value.compcall.name, &c->loc);
6347 return false;
6348 }
6349 }
6350
6351 if (!check_typebound_baseobject (c->expr1))
6352 return false;
6353
6354 /* Pass along the name for CLASS methods, where the vtab
6355 procedure pointer component has to be referenced. */
6356 if (name)
6357 *name = c->expr1->value.compcall.name;
6358
6359 if (!resolve_typebound_generic_call (c->expr1, name))
6360 return false;
6361
6362 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6363 if (overridable)
6364 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6365
6366 /* Transform into an ordinary EXEC_CALL for now. */
6367
6368 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6369 return false;
6370
6371 c->ext.actual = newactual;
6372 c->symtree = target;
6373 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6374
6375 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6376
6377 gfc_free_expr (c->expr1);
6378 c->expr1 = gfc_get_expr ();
6379 c->expr1->expr_type = EXPR_FUNCTION;
6380 c->expr1->symtree = target;
6381 c->expr1->where = c->loc;
6382
6383 return resolve_call (c);
6384 }
6385
6386
6387 /* Resolve a component-call expression. */
6388 static bool
6389 resolve_compcall (gfc_expr* e, const char **name)
6390 {
6391 gfc_actual_arglist* newactual;
6392 gfc_symtree* target;
6393
6394 /* Check that's really a FUNCTION. */
6395 if (!e->value.compcall.tbp->function)
6396 {
6397 gfc_error ("%qs at %L should be a FUNCTION",
6398 e->value.compcall.name, &e->where);
6399 return false;
6400 }
6401
6402 /* These must not be assign-calls! */
6403 gcc_assert (!e->value.compcall.assign);
6404
6405 if (!check_typebound_baseobject (e))
6406 return false;
6407
6408 /* Pass along the name for CLASS methods, where the vtab
6409 procedure pointer component has to be referenced. */
6410 if (name)
6411 *name = e->value.compcall.name;
6412
6413 if (!resolve_typebound_generic_call (e, name))
6414 return false;
6415 gcc_assert (!e->value.compcall.tbp->is_generic);
6416
6417 /* Take the rank from the function's symbol. */
6418 if (e->value.compcall.tbp->u.specific->n.sym->as)
6419 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6420
6421 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6422 arglist to the TBP's binding target. */
6423
6424 if (!resolve_typebound_static (e, &target, &newactual))
6425 return false;
6426
6427 e->value.function.actual = newactual;
6428 e->value.function.name = NULL;
6429 e->value.function.esym = target->n.sym;
6430 e->value.function.isym = NULL;
6431 e->symtree = target;
6432 e->ts = target->n.sym->ts;
6433 e->expr_type = EXPR_FUNCTION;
6434
6435 /* Resolution is not necessary if this is a class subroutine; this
6436 function only has to identify the specific proc. Resolution of
6437 the call will be done next in resolve_typebound_call. */
6438 return gfc_resolve_expr (e);
6439 }
6440
6441
6442 static bool resolve_fl_derived (gfc_symbol *sym);
6443
6444
6445 /* Resolve a typebound function, or 'method'. First separate all
6446 the non-CLASS references by calling resolve_compcall directly. */
6447
6448 static bool
6449 resolve_typebound_function (gfc_expr* e)
6450 {
6451 gfc_symbol *declared;
6452 gfc_component *c;
6453 gfc_ref *new_ref;
6454 gfc_ref *class_ref;
6455 gfc_symtree *st;
6456 const char *name;
6457 gfc_typespec ts;
6458 gfc_expr *expr;
6459 bool overridable;
6460
6461 st = e->symtree;
6462
6463 /* Deal with typebound operators for CLASS objects. */
6464 expr = e->value.compcall.base_object;
6465 overridable = !e->value.compcall.tbp->non_overridable;
6466 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6467 {
6468 /* If the base_object is not a variable, the corresponding actual
6469 argument expression must be stored in e->base_expression so
6470 that the corresponding tree temporary can be used as the base
6471 object in gfc_conv_procedure_call. */
6472 if (expr->expr_type != EXPR_VARIABLE)
6473 {
6474 gfc_actual_arglist *args;
6475
6476 for (args= e->value.function.actual; args; args = args->next)
6477 {
6478 if (expr == args->expr)
6479 expr = args->expr;
6480 }
6481 }
6482
6483 /* Since the typebound operators are generic, we have to ensure
6484 that any delays in resolution are corrected and that the vtab
6485 is present. */
6486 ts = expr->ts;
6487 declared = ts.u.derived;
6488 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6489 if (c->ts.u.derived == NULL)
6490 c->ts.u.derived = gfc_find_derived_vtab (declared);
6491
6492 if (!resolve_compcall (e, &name))
6493 return false;
6494
6495 /* Use the generic name if it is there. */
6496 name = name ? name : e->value.function.esym->name;
6497 e->symtree = expr->symtree;
6498 e->ref = gfc_copy_ref (expr->ref);
6499 get_declared_from_expr (&class_ref, NULL, e, false);
6500
6501 /* Trim away the extraneous references that emerge from nested
6502 use of interface.c (extend_expr). */
6503 if (class_ref && class_ref->next)
6504 {
6505 gfc_free_ref_list (class_ref->next);
6506 class_ref->next = NULL;
6507 }
6508 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6509 {
6510 gfc_free_ref_list (e->ref);
6511 e->ref = NULL;
6512 }
6513
6514 gfc_add_vptr_component (e);
6515 gfc_add_component_ref (e, name);
6516 e->value.function.esym = NULL;
6517 if (expr->expr_type != EXPR_VARIABLE)
6518 e->base_expr = expr;
6519 return true;
6520 }
6521
6522 if (st == NULL)
6523 return resolve_compcall (e, NULL);
6524
6525 if (!resolve_ref (e))
6526 return false;
6527
6528 /* Get the CLASS declared type. */
6529 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6530
6531 if (!resolve_fl_derived (declared))
6532 return false;
6533
6534 /* Weed out cases of the ultimate component being a derived type. */
6535 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6536 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6537 {
6538 gfc_free_ref_list (new_ref);
6539 return resolve_compcall (e, NULL);
6540 }
6541
6542 c = gfc_find_component (declared, "_data", true, true, NULL);
6543 declared = c->ts.u.derived;
6544
6545 /* Treat the call as if it is a typebound procedure, in order to roll
6546 out the correct name for the specific function. */
6547 if (!resolve_compcall (e, &name))
6548 {
6549 gfc_free_ref_list (new_ref);
6550 return false;
6551 }
6552 ts = e->ts;
6553
6554 if (overridable)
6555 {
6556 /* Convert the expression to a procedure pointer component call. */
6557 e->value.function.esym = NULL;
6558 e->symtree = st;
6559
6560 if (new_ref)
6561 e->ref = new_ref;
6562
6563 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6564 gfc_add_vptr_component (e);
6565 gfc_add_component_ref (e, name);
6566
6567 /* Recover the typespec for the expression. This is really only
6568 necessary for generic procedures, where the additional call
6569 to gfc_add_component_ref seems to throw the collection of the
6570 correct typespec. */
6571 e->ts = ts;
6572 }
6573 else if (new_ref)
6574 gfc_free_ref_list (new_ref);
6575
6576 return true;
6577 }
6578
6579 /* Resolve a typebound subroutine, or 'method'. First separate all
6580 the non-CLASS references by calling resolve_typebound_call
6581 directly. */
6582
6583 static bool
6584 resolve_typebound_subroutine (gfc_code *code)
6585 {
6586 gfc_symbol *declared;
6587 gfc_component *c;
6588 gfc_ref *new_ref;
6589 gfc_ref *class_ref;
6590 gfc_symtree *st;
6591 const char *name;
6592 gfc_typespec ts;
6593 gfc_expr *expr;
6594 bool overridable;
6595
6596 st = code->expr1->symtree;
6597
6598 /* Deal with typebound operators for CLASS objects. */
6599 expr = code->expr1->value.compcall.base_object;
6600 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6601 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6602 {
6603 /* If the base_object is not a variable, the corresponding actual
6604 argument expression must be stored in e->base_expression so
6605 that the corresponding tree temporary can be used as the base
6606 object in gfc_conv_procedure_call. */
6607 if (expr->expr_type != EXPR_VARIABLE)
6608 {
6609 gfc_actual_arglist *args;
6610
6611 args= code->expr1->value.function.actual;
6612 for (; args; args = args->next)
6613 if (expr == args->expr)
6614 expr = args->expr;
6615 }
6616
6617 /* Since the typebound operators are generic, we have to ensure
6618 that any delays in resolution are corrected and that the vtab
6619 is present. */
6620 declared = expr->ts.u.derived;
6621 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6622 if (c->ts.u.derived == NULL)
6623 c->ts.u.derived = gfc_find_derived_vtab (declared);
6624
6625 if (!resolve_typebound_call (code, &name, NULL))
6626 return false;
6627
6628 /* Use the generic name if it is there. */
6629 name = name ? name : code->expr1->value.function.esym->name;
6630 code->expr1->symtree = expr->symtree;
6631 code->expr1->ref = gfc_copy_ref (expr->ref);
6632
6633 /* Trim away the extraneous references that emerge from nested
6634 use of interface.c (extend_expr). */
6635 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6636 if (class_ref && class_ref->next)
6637 {
6638 gfc_free_ref_list (class_ref->next);
6639 class_ref->next = NULL;
6640 }
6641 else if (code->expr1->ref && !class_ref)
6642 {
6643 gfc_free_ref_list (code->expr1->ref);
6644 code->expr1->ref = NULL;
6645 }
6646
6647 /* Now use the procedure in the vtable. */
6648 gfc_add_vptr_component (code->expr1);
6649 gfc_add_component_ref (code->expr1, name);
6650 code->expr1->value.function.esym = NULL;
6651 if (expr->expr_type != EXPR_VARIABLE)
6652 code->expr1->base_expr = expr;
6653 return true;
6654 }
6655
6656 if (st == NULL)
6657 return resolve_typebound_call (code, NULL, NULL);
6658
6659 if (!resolve_ref (code->expr1))
6660 return false;
6661
6662 /* Get the CLASS declared type. */
6663 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6664
6665 /* Weed out cases of the ultimate component being a derived type. */
6666 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6667 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6668 {
6669 gfc_free_ref_list (new_ref);
6670 return resolve_typebound_call (code, NULL, NULL);
6671 }
6672
6673 if (!resolve_typebound_call (code, &name, &overridable))
6674 {
6675 gfc_free_ref_list (new_ref);
6676 return false;
6677 }
6678 ts = code->expr1->ts;
6679
6680 if (overridable)
6681 {
6682 /* Convert the expression to a procedure pointer component call. */
6683 code->expr1->value.function.esym = NULL;
6684 code->expr1->symtree = st;
6685
6686 if (new_ref)
6687 code->expr1->ref = new_ref;
6688
6689 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6690 gfc_add_vptr_component (code->expr1);
6691 gfc_add_component_ref (code->expr1, name);
6692
6693 /* Recover the typespec for the expression. This is really only
6694 necessary for generic procedures, where the additional call
6695 to gfc_add_component_ref seems to throw the collection of the
6696 correct typespec. */
6697 code->expr1->ts = ts;
6698 }
6699 else if (new_ref)
6700 gfc_free_ref_list (new_ref);
6701
6702 return true;
6703 }
6704
6705
6706 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6707
6708 static bool
6709 resolve_ppc_call (gfc_code* c)
6710 {
6711 gfc_component *comp;
6712
6713 comp = gfc_get_proc_ptr_comp (c->expr1);
6714 gcc_assert (comp != NULL);
6715
6716 c->resolved_sym = c->expr1->symtree->n.sym;
6717 c->expr1->expr_type = EXPR_VARIABLE;
6718
6719 if (!comp->attr.subroutine)
6720 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6721
6722 if (!resolve_ref (c->expr1))
6723 return false;
6724
6725 if (!update_ppc_arglist (c->expr1))
6726 return false;
6727
6728 c->ext.actual = c->expr1->value.compcall.actual;
6729
6730 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6731 !(comp->ts.interface
6732 && comp->ts.interface->formal)))
6733 return false;
6734
6735 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6736 return false;
6737
6738 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6739
6740 return true;
6741 }
6742
6743
6744 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6745
6746 static bool
6747 resolve_expr_ppc (gfc_expr* e)
6748 {
6749 gfc_component *comp;
6750
6751 comp = gfc_get_proc_ptr_comp (e);
6752 gcc_assert (comp != NULL);
6753
6754 /* Convert to EXPR_FUNCTION. */
6755 e->expr_type = EXPR_FUNCTION;
6756 e->value.function.isym = NULL;
6757 e->value.function.actual = e->value.compcall.actual;
6758 e->ts = comp->ts;
6759 if (comp->as != NULL)
6760 e->rank = comp->as->rank;
6761
6762 if (!comp->attr.function)
6763 gfc_add_function (&comp->attr, comp->name, &e->where);
6764
6765 if (!resolve_ref (e))
6766 return false;
6767
6768 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6769 !(comp->ts.interface
6770 && comp->ts.interface->formal)))
6771 return false;
6772
6773 if (!update_ppc_arglist (e))
6774 return false;
6775
6776 if (!check_pure_function(e))
6777 return false;
6778
6779 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6780
6781 return true;
6782 }
6783
6784
6785 static bool
6786 gfc_is_expandable_expr (gfc_expr *e)
6787 {
6788 gfc_constructor *con;
6789
6790 if (e->expr_type == EXPR_ARRAY)
6791 {
6792 /* Traverse the constructor looking for variables that are flavor
6793 parameter. Parameters must be expanded since they are fully used at
6794 compile time. */
6795 con = gfc_constructor_first (e->value.constructor);
6796 for (; con; con = gfc_constructor_next (con))
6797 {
6798 if (con->expr->expr_type == EXPR_VARIABLE
6799 && con->expr->symtree
6800 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6801 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6802 return true;
6803 if (con->expr->expr_type == EXPR_ARRAY
6804 && gfc_is_expandable_expr (con->expr))
6805 return true;
6806 }
6807 }
6808
6809 return false;
6810 }
6811
6812
6813 /* Sometimes variables in specification expressions of the result
6814 of module procedures in submodules wind up not being the 'real'
6815 dummy. Find this, if possible, in the namespace of the first
6816 formal argument. */
6817
6818 static void
6819 fixup_unique_dummy (gfc_expr *e)
6820 {
6821 gfc_symtree *st = NULL;
6822 gfc_symbol *s = NULL;
6823
6824 if (e->symtree->n.sym->ns->proc_name
6825 && e->symtree->n.sym->ns->proc_name->formal)
6826 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6827
6828 if (s != NULL)
6829 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6830
6831 if (st != NULL
6832 && st->n.sym != NULL
6833 && st->n.sym->attr.dummy)
6834 e->symtree = st;
6835 }
6836
6837 /* Resolve an expression. That is, make sure that types of operands agree
6838 with their operators, intrinsic operators are converted to function calls
6839 for overloaded types and unresolved function references are resolved. */
6840
6841 bool
6842 gfc_resolve_expr (gfc_expr *e)
6843 {
6844 bool t;
6845 bool inquiry_save, actual_arg_save, first_actual_arg_save;
6846
6847 if (e == NULL)
6848 return true;
6849
6850 /* inquiry_argument only applies to variables. */
6851 inquiry_save = inquiry_argument;
6852 actual_arg_save = actual_arg;
6853 first_actual_arg_save = first_actual_arg;
6854
6855 if (e->expr_type != EXPR_VARIABLE)
6856 {
6857 inquiry_argument = false;
6858 actual_arg = false;
6859 first_actual_arg = false;
6860 }
6861 else if (e->symtree != NULL
6862 && *e->symtree->name == '@'
6863 && e->symtree->n.sym->attr.dummy)
6864 {
6865 /* Deal with submodule specification expressions that are not
6866 found to be referenced in module.c(read_cleanup). */
6867 fixup_unique_dummy (e);
6868 }
6869
6870 switch (e->expr_type)
6871 {
6872 case EXPR_OP:
6873 t = resolve_operator (e);
6874 break;
6875
6876 case EXPR_FUNCTION:
6877 case EXPR_VARIABLE:
6878
6879 if (check_host_association (e))
6880 t = resolve_function (e);
6881 else
6882 t = resolve_variable (e);
6883
6884 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
6885 && e->ref->type != REF_SUBSTRING)
6886 gfc_resolve_substring_charlen (e);
6887
6888 break;
6889
6890 case EXPR_COMPCALL:
6891 t = resolve_typebound_function (e);
6892 break;
6893
6894 case EXPR_SUBSTRING:
6895 t = resolve_ref (e);
6896 break;
6897
6898 case EXPR_CONSTANT:
6899 case EXPR_NULL:
6900 t = true;
6901 break;
6902
6903 case EXPR_PPC:
6904 t = resolve_expr_ppc (e);
6905 break;
6906
6907 case EXPR_ARRAY:
6908 t = false;
6909 if (!resolve_ref (e))
6910 break;
6911
6912 t = gfc_resolve_array_constructor (e);
6913 /* Also try to expand a constructor. */
6914 if (t)
6915 {
6916 expression_rank (e);
6917 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
6918 gfc_expand_constructor (e, false);
6919 }
6920
6921 /* This provides the opportunity for the length of constructors with
6922 character valued function elements to propagate the string length
6923 to the expression. */
6924 if (t && e->ts.type == BT_CHARACTER)
6925 {
6926 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
6927 here rather then add a duplicate test for it above. */
6928 gfc_expand_constructor (e, false);
6929 t = gfc_resolve_character_array_constructor (e);
6930 }
6931
6932 break;
6933
6934 case EXPR_STRUCTURE:
6935 t = resolve_ref (e);
6936 if (!t)
6937 break;
6938
6939 t = resolve_structure_cons (e, 0);
6940 if (!t)
6941 break;
6942
6943 t = gfc_simplify_expr (e, 0);
6944 break;
6945
6946 default:
6947 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
6948 }
6949
6950 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
6951 fixup_charlen (e);
6952
6953 inquiry_argument = inquiry_save;
6954 actual_arg = actual_arg_save;
6955 first_actual_arg = first_actual_arg_save;
6956
6957 return t;
6958 }
6959
6960
6961 /* Resolve an expression from an iterator. They must be scalar and have
6962 INTEGER or (optionally) REAL type. */
6963
6964 static bool
6965 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
6966 const char *name_msgid)
6967 {
6968 if (!gfc_resolve_expr (expr))
6969 return false;
6970
6971 if (expr->rank != 0)
6972 {
6973 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
6974 return false;
6975 }
6976
6977 if (expr->ts.type != BT_INTEGER)
6978 {
6979 if (expr->ts.type == BT_REAL)
6980 {
6981 if (real_ok)
6982 return gfc_notify_std (GFC_STD_F95_DEL,
6983 "%s at %L must be integer",
6984 _(name_msgid), &expr->where);
6985 else
6986 {
6987 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
6988 &expr->where);
6989 return false;
6990 }
6991 }
6992 else
6993 {
6994 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
6995 return false;
6996 }
6997 }
6998 return true;
6999 }
7000
7001
7002 /* Resolve the expressions in an iterator structure. If REAL_OK is
7003 false allow only INTEGER type iterators, otherwise allow REAL types.
7004 Set own_scope to true for ac-implied-do and data-implied-do as those
7005 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
7006
7007 bool
7008 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
7009 {
7010 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
7011 return false;
7012
7013 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
7014 _("iterator variable")))
7015 return false;
7016
7017 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
7018 "Start expression in DO loop"))
7019 return false;
7020
7021 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
7022 "End expression in DO loop"))
7023 return false;
7024
7025 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
7026 "Step expression in DO loop"))
7027 return false;
7028
7029 if (iter->step->expr_type == EXPR_CONSTANT)
7030 {
7031 if ((iter->step->ts.type == BT_INTEGER
7032 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
7033 || (iter->step->ts.type == BT_REAL
7034 && mpfr_sgn (iter->step->value.real) == 0))
7035 {
7036 gfc_error ("Step expression in DO loop at %L cannot be zero",
7037 &iter->step->where);
7038 return false;
7039 }
7040 }
7041
7042 /* Convert start, end, and step to the same type as var. */
7043 if (iter->start->ts.kind != iter->var->ts.kind
7044 || iter->start->ts.type != iter->var->ts.type)
7045 gfc_convert_type (iter->start, &iter->var->ts, 1);
7046
7047 if (iter->end->ts.kind != iter->var->ts.kind
7048 || iter->end->ts.type != iter->var->ts.type)
7049 gfc_convert_type (iter->end, &iter->var->ts, 1);
7050
7051 if (iter->step->ts.kind != iter->var->ts.kind
7052 || iter->step->ts.type != iter->var->ts.type)
7053 gfc_convert_type (iter->step, &iter->var->ts, 1);
7054
7055 if (iter->start->expr_type == EXPR_CONSTANT
7056 && iter->end->expr_type == EXPR_CONSTANT
7057 && iter->step->expr_type == EXPR_CONSTANT)
7058 {
7059 int sgn, cmp;
7060 if (iter->start->ts.type == BT_INTEGER)
7061 {
7062 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
7063 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
7064 }
7065 else
7066 {
7067 sgn = mpfr_sgn (iter->step->value.real);
7068 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
7069 }
7070 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
7071 gfc_warning (OPT_Wzerotrip,
7072 "DO loop at %L will be executed zero times",
7073 &iter->step->where);
7074 }
7075
7076 if (iter->end->expr_type == EXPR_CONSTANT
7077 && iter->end->ts.type == BT_INTEGER
7078 && iter->step->expr_type == EXPR_CONSTANT
7079 && iter->step->ts.type == BT_INTEGER
7080 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
7081 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
7082 {
7083 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
7084 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
7085
7086 if (is_step_positive
7087 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
7088 gfc_warning (OPT_Wundefined_do_loop,
7089 "DO loop at %L is undefined as it overflows",
7090 &iter->step->where);
7091 else if (!is_step_positive
7092 && mpz_cmp (iter->end->value.integer,
7093 gfc_integer_kinds[k].min_int) == 0)
7094 gfc_warning (OPT_Wundefined_do_loop,
7095 "DO loop at %L is undefined as it underflows",
7096 &iter->step->where);
7097 }
7098
7099 return true;
7100 }
7101
7102
7103 /* Traversal function for find_forall_index. f == 2 signals that
7104 that variable itself is not to be checked - only the references. */
7105
7106 static bool
7107 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
7108 {
7109 if (expr->expr_type != EXPR_VARIABLE)
7110 return false;
7111
7112 /* A scalar assignment */
7113 if (!expr->ref || *f == 1)
7114 {
7115 if (expr->symtree->n.sym == sym)
7116 return true;
7117 else
7118 return false;
7119 }
7120
7121 if (*f == 2)
7122 *f = 1;
7123 return false;
7124 }
7125
7126
7127 /* Check whether the FORALL index appears in the expression or not.
7128 Returns true if SYM is found in EXPR. */
7129
7130 bool
7131 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
7132 {
7133 if (gfc_traverse_expr (expr, sym, forall_index, f))
7134 return true;
7135 else
7136 return false;
7137 }
7138
7139
7140 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
7141 to be a scalar INTEGER variable. The subscripts and stride are scalar
7142 INTEGERs, and if stride is a constant it must be nonzero.
7143 Furthermore "A subscript or stride in a forall-triplet-spec shall
7144 not contain a reference to any index-name in the
7145 forall-triplet-spec-list in which it appears." (7.5.4.1) */
7146
7147 static void
7148 resolve_forall_iterators (gfc_forall_iterator *it)
7149 {
7150 gfc_forall_iterator *iter, *iter2;
7151
7152 for (iter = it; iter; iter = iter->next)
7153 {
7154 if (gfc_resolve_expr (iter->var)
7155 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
7156 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
7157 &iter->var->where);
7158
7159 if (gfc_resolve_expr (iter->start)
7160 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
7161 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
7162 &iter->start->where);
7163 if (iter->var->ts.kind != iter->start->ts.kind)
7164 gfc_convert_type (iter->start, &iter->var->ts, 1);
7165
7166 if (gfc_resolve_expr (iter->end)
7167 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
7168 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
7169 &iter->end->where);
7170 if (iter->var->ts.kind != iter->end->ts.kind)
7171 gfc_convert_type (iter->end, &iter->var->ts, 1);
7172
7173 if (gfc_resolve_expr (iter->stride))
7174 {
7175 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7176 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7177 &iter->stride->where, "INTEGER");
7178
7179 if (iter->stride->expr_type == EXPR_CONSTANT
7180 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7181 gfc_error ("FORALL stride expression at %L cannot be zero",
7182 &iter->stride->where);
7183 }
7184 if (iter->var->ts.kind != iter->stride->ts.kind)
7185 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7186 }
7187
7188 for (iter = it; iter; iter = iter->next)
7189 for (iter2 = iter; iter2; iter2 = iter2->next)
7190 {
7191 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7192 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7193 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7194 gfc_error ("FORALL index %qs may not appear in triplet "
7195 "specification at %L", iter->var->symtree->name,
7196 &iter2->start->where);
7197 }
7198 }
7199
7200
7201 /* Given a pointer to a symbol that is a derived type, see if it's
7202 inaccessible, i.e. if it's defined in another module and the components are
7203 PRIVATE. The search is recursive if necessary. Returns zero if no
7204 inaccessible components are found, nonzero otherwise. */
7205
7206 static int
7207 derived_inaccessible (gfc_symbol *sym)
7208 {
7209 gfc_component *c;
7210
7211 if (sym->attr.use_assoc && sym->attr.private_comp)
7212 return 1;
7213
7214 for (c = sym->components; c; c = c->next)
7215 {
7216 /* Prevent an infinite loop through this function. */
7217 if (c->ts.type == BT_DERIVED && c->attr.pointer
7218 && sym == c->ts.u.derived)
7219 continue;
7220
7221 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7222 return 1;
7223 }
7224
7225 return 0;
7226 }
7227
7228
7229 /* Resolve the argument of a deallocate expression. The expression must be
7230 a pointer or a full array. */
7231
7232 static bool
7233 resolve_deallocate_expr (gfc_expr *e)
7234 {
7235 symbol_attribute attr;
7236 int allocatable, pointer;
7237 gfc_ref *ref;
7238 gfc_symbol *sym;
7239 gfc_component *c;
7240 bool unlimited;
7241
7242 if (!gfc_resolve_expr (e))
7243 return false;
7244
7245 if (e->expr_type != EXPR_VARIABLE)
7246 goto bad;
7247
7248 sym = e->symtree->n.sym;
7249 unlimited = UNLIMITED_POLY(sym);
7250
7251 if (sym->ts.type == BT_CLASS)
7252 {
7253 allocatable = CLASS_DATA (sym)->attr.allocatable;
7254 pointer = CLASS_DATA (sym)->attr.class_pointer;
7255 }
7256 else
7257 {
7258 allocatable = sym->attr.allocatable;
7259 pointer = sym->attr.pointer;
7260 }
7261 for (ref = e->ref; ref; ref = ref->next)
7262 {
7263 switch (ref->type)
7264 {
7265 case REF_ARRAY:
7266 if (ref->u.ar.type != AR_FULL
7267 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7268 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7269 allocatable = 0;
7270 break;
7271
7272 case REF_COMPONENT:
7273 c = ref->u.c.component;
7274 if (c->ts.type == BT_CLASS)
7275 {
7276 allocatable = CLASS_DATA (c)->attr.allocatable;
7277 pointer = CLASS_DATA (c)->attr.class_pointer;
7278 }
7279 else
7280 {
7281 allocatable = c->attr.allocatable;
7282 pointer = c->attr.pointer;
7283 }
7284 break;
7285
7286 case REF_SUBSTRING:
7287 case REF_INQUIRY:
7288 allocatable = 0;
7289 break;
7290 }
7291 }
7292
7293 attr = gfc_expr_attr (e);
7294
7295 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7296 {
7297 bad:
7298 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7299 &e->where);
7300 return false;
7301 }
7302
7303 /* F2008, C644. */
7304 if (gfc_is_coindexed (e))
7305 {
7306 gfc_error ("Coindexed allocatable object at %L", &e->where);
7307 return false;
7308 }
7309
7310 if (pointer
7311 && !gfc_check_vardef_context (e, true, true, false,
7312 _("DEALLOCATE object")))
7313 return false;
7314 if (!gfc_check_vardef_context (e, false, true, false,
7315 _("DEALLOCATE object")))
7316 return false;
7317
7318 return true;
7319 }
7320
7321
7322 /* Returns true if the expression e contains a reference to the symbol sym. */
7323 static bool
7324 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7325 {
7326 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7327 return true;
7328
7329 return false;
7330 }
7331
7332 bool
7333 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7334 {
7335 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7336 }
7337
7338
7339 /* Given the expression node e for an allocatable/pointer of derived type to be
7340 allocated, get the expression node to be initialized afterwards (needed for
7341 derived types with default initializers, and derived types with allocatable
7342 components that need nullification.) */
7343
7344 gfc_expr *
7345 gfc_expr_to_initialize (gfc_expr *e)
7346 {
7347 gfc_expr *result;
7348 gfc_ref *ref;
7349 int i;
7350
7351 result = gfc_copy_expr (e);
7352
7353 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7354 for (ref = result->ref; ref; ref = ref->next)
7355 if (ref->type == REF_ARRAY && ref->next == NULL)
7356 {
7357 ref->u.ar.type = AR_FULL;
7358
7359 for (i = 0; i < ref->u.ar.dimen; i++)
7360 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7361
7362 break;
7363 }
7364
7365 gfc_free_shape (&result->shape, result->rank);
7366
7367 /* Recalculate rank, shape, etc. */
7368 gfc_resolve_expr (result);
7369 return result;
7370 }
7371
7372
7373 /* If the last ref of an expression is an array ref, return a copy of the
7374 expression with that one removed. Otherwise, a copy of the original
7375 expression. This is used for allocate-expressions and pointer assignment
7376 LHS, where there may be an array specification that needs to be stripped
7377 off when using gfc_check_vardef_context. */
7378
7379 static gfc_expr*
7380 remove_last_array_ref (gfc_expr* e)
7381 {
7382 gfc_expr* e2;
7383 gfc_ref** r;
7384
7385 e2 = gfc_copy_expr (e);
7386 for (r = &e2->ref; *r; r = &(*r)->next)
7387 if ((*r)->type == REF_ARRAY && !(*r)->next)
7388 {
7389 gfc_free_ref_list (*r);
7390 *r = NULL;
7391 break;
7392 }
7393
7394 return e2;
7395 }
7396
7397
7398 /* Used in resolve_allocate_expr to check that a allocation-object and
7399 a source-expr are conformable. This does not catch all possible
7400 cases; in particular a runtime checking is needed. */
7401
7402 static bool
7403 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7404 {
7405 gfc_ref *tail;
7406 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7407
7408 /* First compare rank. */
7409 if ((tail && e1->rank != tail->u.ar.as->rank)
7410 || (!tail && e1->rank != e2->rank))
7411 {
7412 gfc_error ("Source-expr at %L must be scalar or have the "
7413 "same rank as the allocate-object at %L",
7414 &e1->where, &e2->where);
7415 return false;
7416 }
7417
7418 if (e1->shape)
7419 {
7420 int i;
7421 mpz_t s;
7422
7423 mpz_init (s);
7424
7425 for (i = 0; i < e1->rank; i++)
7426 {
7427 if (tail->u.ar.start[i] == NULL)
7428 break;
7429
7430 if (tail->u.ar.end[i])
7431 {
7432 mpz_set (s, tail->u.ar.end[i]->value.integer);
7433 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7434 mpz_add_ui (s, s, 1);
7435 }
7436 else
7437 {
7438 mpz_set (s, tail->u.ar.start[i]->value.integer);
7439 }
7440
7441 if (mpz_cmp (e1->shape[i], s) != 0)
7442 {
7443 gfc_error ("Source-expr at %L and allocate-object at %L must "
7444 "have the same shape", &e1->where, &e2->where);
7445 mpz_clear (s);
7446 return false;
7447 }
7448 }
7449
7450 mpz_clear (s);
7451 }
7452
7453 return true;
7454 }
7455
7456
7457 /* Resolve the expression in an ALLOCATE statement, doing the additional
7458 checks to see whether the expression is OK or not. The expression must
7459 have a trailing array reference that gives the size of the array. */
7460
7461 static bool
7462 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7463 {
7464 int i, pointer, allocatable, dimension, is_abstract;
7465 int codimension;
7466 bool coindexed;
7467 bool unlimited;
7468 symbol_attribute attr;
7469 gfc_ref *ref, *ref2;
7470 gfc_expr *e2;
7471 gfc_array_ref *ar;
7472 gfc_symbol *sym = NULL;
7473 gfc_alloc *a;
7474 gfc_component *c;
7475 bool t;
7476
7477 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7478 checking of coarrays. */
7479 for (ref = e->ref; ref; ref = ref->next)
7480 if (ref->next == NULL)
7481 break;
7482
7483 if (ref && ref->type == REF_ARRAY)
7484 ref->u.ar.in_allocate = true;
7485
7486 if (!gfc_resolve_expr (e))
7487 goto failure;
7488
7489 /* Make sure the expression is allocatable or a pointer. If it is
7490 pointer, the next-to-last reference must be a pointer. */
7491
7492 ref2 = NULL;
7493 if (e->symtree)
7494 sym = e->symtree->n.sym;
7495
7496 /* Check whether ultimate component is abstract and CLASS. */
7497 is_abstract = 0;
7498
7499 /* Is the allocate-object unlimited polymorphic? */
7500 unlimited = UNLIMITED_POLY(e);
7501
7502 if (e->expr_type != EXPR_VARIABLE)
7503 {
7504 allocatable = 0;
7505 attr = gfc_expr_attr (e);
7506 pointer = attr.pointer;
7507 dimension = attr.dimension;
7508 codimension = attr.codimension;
7509 }
7510 else
7511 {
7512 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7513 {
7514 allocatable = CLASS_DATA (sym)->attr.allocatable;
7515 pointer = CLASS_DATA (sym)->attr.class_pointer;
7516 dimension = CLASS_DATA (sym)->attr.dimension;
7517 codimension = CLASS_DATA (sym)->attr.codimension;
7518 is_abstract = CLASS_DATA (sym)->attr.abstract;
7519 }
7520 else
7521 {
7522 allocatable = sym->attr.allocatable;
7523 pointer = sym->attr.pointer;
7524 dimension = sym->attr.dimension;
7525 codimension = sym->attr.codimension;
7526 }
7527
7528 coindexed = false;
7529
7530 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7531 {
7532 switch (ref->type)
7533 {
7534 case REF_ARRAY:
7535 if (ref->u.ar.codimen > 0)
7536 {
7537 int n;
7538 for (n = ref->u.ar.dimen;
7539 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7540 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7541 {
7542 coindexed = true;
7543 break;
7544 }
7545 }
7546
7547 if (ref->next != NULL)
7548 pointer = 0;
7549 break;
7550
7551 case REF_COMPONENT:
7552 /* F2008, C644. */
7553 if (coindexed)
7554 {
7555 gfc_error ("Coindexed allocatable object at %L",
7556 &e->where);
7557 goto failure;
7558 }
7559
7560 c = ref->u.c.component;
7561 if (c->ts.type == BT_CLASS)
7562 {
7563 allocatable = CLASS_DATA (c)->attr.allocatable;
7564 pointer = CLASS_DATA (c)->attr.class_pointer;
7565 dimension = CLASS_DATA (c)->attr.dimension;
7566 codimension = CLASS_DATA (c)->attr.codimension;
7567 is_abstract = CLASS_DATA (c)->attr.abstract;
7568 }
7569 else
7570 {
7571 allocatable = c->attr.allocatable;
7572 pointer = c->attr.pointer;
7573 dimension = c->attr.dimension;
7574 codimension = c->attr.codimension;
7575 is_abstract = c->attr.abstract;
7576 }
7577 break;
7578
7579 case REF_SUBSTRING:
7580 case REF_INQUIRY:
7581 allocatable = 0;
7582 pointer = 0;
7583 break;
7584 }
7585 }
7586 }
7587
7588 /* Check for F08:C628. */
7589 if (allocatable == 0 && pointer == 0 && !unlimited)
7590 {
7591 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7592 &e->where);
7593 goto failure;
7594 }
7595
7596 /* Some checks for the SOURCE tag. */
7597 if (code->expr3)
7598 {
7599 /* Check F03:C631. */
7600 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7601 {
7602 gfc_error ("Type of entity at %L is type incompatible with "
7603 "source-expr at %L", &e->where, &code->expr3->where);
7604 goto failure;
7605 }
7606
7607 /* Check F03:C632 and restriction following Note 6.18. */
7608 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7609 goto failure;
7610
7611 /* Check F03:C633. */
7612 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7613 {
7614 gfc_error ("The allocate-object at %L and the source-expr at %L "
7615 "shall have the same kind type parameter",
7616 &e->where, &code->expr3->where);
7617 goto failure;
7618 }
7619
7620 /* Check F2008, C642. */
7621 if (code->expr3->ts.type == BT_DERIVED
7622 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7623 || (code->expr3->ts.u.derived->from_intmod
7624 == INTMOD_ISO_FORTRAN_ENV
7625 && code->expr3->ts.u.derived->intmod_sym_id
7626 == ISOFORTRAN_LOCK_TYPE)))
7627 {
7628 gfc_error ("The source-expr at %L shall neither be of type "
7629 "LOCK_TYPE nor have a LOCK_TYPE component if "
7630 "allocate-object at %L is a coarray",
7631 &code->expr3->where, &e->where);
7632 goto failure;
7633 }
7634
7635 /* Check TS18508, C702/C703. */
7636 if (code->expr3->ts.type == BT_DERIVED
7637 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7638 || (code->expr3->ts.u.derived->from_intmod
7639 == INTMOD_ISO_FORTRAN_ENV
7640 && code->expr3->ts.u.derived->intmod_sym_id
7641 == ISOFORTRAN_EVENT_TYPE)))
7642 {
7643 gfc_error ("The source-expr at %L shall neither be of type "
7644 "EVENT_TYPE nor have a EVENT_TYPE component if "
7645 "allocate-object at %L is a coarray",
7646 &code->expr3->where, &e->where);
7647 goto failure;
7648 }
7649 }
7650
7651 /* Check F08:C629. */
7652 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7653 && !code->expr3)
7654 {
7655 gcc_assert (e->ts.type == BT_CLASS);
7656 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7657 "type-spec or source-expr", sym->name, &e->where);
7658 goto failure;
7659 }
7660
7661 /* Check F08:C632. */
7662 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7663 && !UNLIMITED_POLY (e))
7664 {
7665 int cmp;
7666
7667 if (!e->ts.u.cl->length)
7668 goto failure;
7669
7670 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7671 code->ext.alloc.ts.u.cl->length);
7672 if (cmp == 1 || cmp == -1 || cmp == -3)
7673 {
7674 gfc_error ("Allocating %s at %L with type-spec requires the same "
7675 "character-length parameter as in the declaration",
7676 sym->name, &e->where);
7677 goto failure;
7678 }
7679 }
7680
7681 /* In the variable definition context checks, gfc_expr_attr is used
7682 on the expression. This is fooled by the array specification
7683 present in e, thus we have to eliminate that one temporarily. */
7684 e2 = remove_last_array_ref (e);
7685 t = true;
7686 if (t && pointer)
7687 t = gfc_check_vardef_context (e2, true, true, false,
7688 _("ALLOCATE object"));
7689 if (t)
7690 t = gfc_check_vardef_context (e2, false, true, false,
7691 _("ALLOCATE object"));
7692 gfc_free_expr (e2);
7693 if (!t)
7694 goto failure;
7695
7696 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7697 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7698 {
7699 /* For class arrays, the initialization with SOURCE is done
7700 using _copy and trans_call. It is convenient to exploit that
7701 when the allocated type is different from the declared type but
7702 no SOURCE exists by setting expr3. */
7703 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7704 }
7705 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7706 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7707 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7708 {
7709 /* We have to zero initialize the integer variable. */
7710 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7711 }
7712
7713 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7714 {
7715 /* Make sure the vtab symbol is present when
7716 the module variables are generated. */
7717 gfc_typespec ts = e->ts;
7718 if (code->expr3)
7719 ts = code->expr3->ts;
7720 else if (code->ext.alloc.ts.type == BT_DERIVED)
7721 ts = code->ext.alloc.ts;
7722
7723 /* Finding the vtab also publishes the type's symbol. Therefore this
7724 statement is necessary. */
7725 gfc_find_derived_vtab (ts.u.derived);
7726 }
7727 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7728 {
7729 /* Again, make sure the vtab symbol is present when
7730 the module variables are generated. */
7731 gfc_typespec *ts = NULL;
7732 if (code->expr3)
7733 ts = &code->expr3->ts;
7734 else
7735 ts = &code->ext.alloc.ts;
7736
7737 gcc_assert (ts);
7738
7739 /* Finding the vtab also publishes the type's symbol. Therefore this
7740 statement is necessary. */
7741 gfc_find_vtab (ts);
7742 }
7743
7744 if (dimension == 0 && codimension == 0)
7745 goto success;
7746
7747 /* Make sure the last reference node is an array specification. */
7748
7749 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7750 || (dimension && ref2->u.ar.dimen == 0))
7751 {
7752 /* F08:C633. */
7753 if (code->expr3)
7754 {
7755 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7756 "in ALLOCATE statement at %L", &e->where))
7757 goto failure;
7758 if (code->expr3->rank != 0)
7759 *array_alloc_wo_spec = true;
7760 else
7761 {
7762 gfc_error ("Array specification or array-valued SOURCE= "
7763 "expression required in ALLOCATE statement at %L",
7764 &e->where);
7765 goto failure;
7766 }
7767 }
7768 else
7769 {
7770 gfc_error ("Array specification required in ALLOCATE statement "
7771 "at %L", &e->where);
7772 goto failure;
7773 }
7774 }
7775
7776 /* Make sure that the array section reference makes sense in the
7777 context of an ALLOCATE specification. */
7778
7779 ar = &ref2->u.ar;
7780
7781 if (codimension)
7782 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7783 {
7784 switch (ar->dimen_type[i])
7785 {
7786 case DIMEN_THIS_IMAGE:
7787 gfc_error ("Coarray specification required in ALLOCATE statement "
7788 "at %L", &e->where);
7789 goto failure;
7790
7791 case DIMEN_RANGE:
7792 if (ar->start[i] == 0 || ar->end[i] == 0)
7793 {
7794 /* If ar->stride[i] is NULL, we issued a previous error. */
7795 if (ar->stride[i] == NULL)
7796 gfc_error ("Bad array specification in ALLOCATE statement "
7797 "at %L", &e->where);
7798 goto failure;
7799 }
7800 else if (gfc_dep_compare_expr (ar->start[i], ar->end[i]) == 1)
7801 {
7802 gfc_error ("Upper cobound is less than lower cobound at %L",
7803 &ar->start[i]->where);
7804 goto failure;
7805 }
7806 break;
7807
7808 case DIMEN_ELEMENT:
7809 if (ar->start[i]->expr_type == EXPR_CONSTANT)
7810 {
7811 gcc_assert (ar->start[i]->ts.type == BT_INTEGER);
7812 if (mpz_cmp_si (ar->start[i]->value.integer, 1) < 0)
7813 {
7814 gfc_error ("Upper cobound is less than lower cobound "
7815 "of 1 at %L", &ar->start[i]->where);
7816 goto failure;
7817 }
7818 }
7819 break;
7820
7821 case DIMEN_STAR:
7822 break;
7823
7824 default:
7825 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7826 &e->where);
7827 goto failure;
7828
7829 }
7830 }
7831 for (i = 0; i < ar->dimen; i++)
7832 {
7833 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
7834 goto check_symbols;
7835
7836 switch (ar->dimen_type[i])
7837 {
7838 case DIMEN_ELEMENT:
7839 break;
7840
7841 case DIMEN_RANGE:
7842 if (ar->start[i] != NULL
7843 && ar->end[i] != NULL
7844 && ar->stride[i] == NULL)
7845 break;
7846
7847 /* Fall through. */
7848
7849 case DIMEN_UNKNOWN:
7850 case DIMEN_VECTOR:
7851 case DIMEN_STAR:
7852 case DIMEN_THIS_IMAGE:
7853 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7854 &e->where);
7855 goto failure;
7856 }
7857
7858 check_symbols:
7859 for (a = code->ext.alloc.list; a; a = a->next)
7860 {
7861 sym = a->expr->symtree->n.sym;
7862
7863 /* TODO - check derived type components. */
7864 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
7865 continue;
7866
7867 if ((ar->start[i] != NULL
7868 && gfc_find_sym_in_expr (sym, ar->start[i]))
7869 || (ar->end[i] != NULL
7870 && gfc_find_sym_in_expr (sym, ar->end[i])))
7871 {
7872 gfc_error ("%qs must not appear in the array specification at "
7873 "%L in the same ALLOCATE statement where it is "
7874 "itself allocated", sym->name, &ar->where);
7875 goto failure;
7876 }
7877 }
7878 }
7879
7880 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
7881 {
7882 if (ar->dimen_type[i] == DIMEN_ELEMENT
7883 || ar->dimen_type[i] == DIMEN_RANGE)
7884 {
7885 if (i == (ar->dimen + ar->codimen - 1))
7886 {
7887 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
7888 "statement at %L", &e->where);
7889 goto failure;
7890 }
7891 continue;
7892 }
7893
7894 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
7895 && ar->stride[i] == NULL)
7896 break;
7897
7898 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
7899 &e->where);
7900 goto failure;
7901 }
7902
7903 success:
7904 return true;
7905
7906 failure:
7907 return false;
7908 }
7909
7910
7911 static void
7912 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
7913 {
7914 gfc_expr *stat, *errmsg, *pe, *qe;
7915 gfc_alloc *a, *p, *q;
7916
7917 stat = code->expr1;
7918 errmsg = code->expr2;
7919
7920 /* Check the stat variable. */
7921 if (stat)
7922 {
7923 gfc_check_vardef_context (stat, false, false, false,
7924 _("STAT variable"));
7925
7926 if ((stat->ts.type != BT_INTEGER
7927 && !(stat->ref && (stat->ref->type == REF_ARRAY
7928 || stat->ref->type == REF_COMPONENT)))
7929 || stat->rank > 0)
7930 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
7931 "variable", &stat->where);
7932
7933 for (p = code->ext.alloc.list; p; p = p->next)
7934 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
7935 {
7936 gfc_ref *ref1, *ref2;
7937 bool found = true;
7938
7939 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
7940 ref1 = ref1->next, ref2 = ref2->next)
7941 {
7942 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7943 continue;
7944 if (ref1->u.c.component->name != ref2->u.c.component->name)
7945 {
7946 found = false;
7947 break;
7948 }
7949 }
7950
7951 if (found)
7952 {
7953 gfc_error ("Stat-variable at %L shall not be %sd within "
7954 "the same %s statement", &stat->where, fcn, fcn);
7955 break;
7956 }
7957 }
7958 }
7959
7960 /* Check the errmsg variable. */
7961 if (errmsg)
7962 {
7963 if (!stat)
7964 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
7965 &errmsg->where);
7966
7967 gfc_check_vardef_context (errmsg, false, false, false,
7968 _("ERRMSG variable"));
7969
7970 /* F18:R928 alloc-opt is ERRMSG = errmsg-variable
7971 F18:R930 errmsg-variable is scalar-default-char-variable
7972 F18:R906 default-char-variable is variable
7973 F18:C906 default-char-variable shall be default character. */
7974 if ((errmsg->ts.type != BT_CHARACTER
7975 && !(errmsg->ref
7976 && (errmsg->ref->type == REF_ARRAY
7977 || errmsg->ref->type == REF_COMPONENT)))
7978 || errmsg->rank > 0
7979 || errmsg->ts.kind != gfc_default_character_kind)
7980 gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
7981 "variable", &errmsg->where);
7982
7983 for (p = code->ext.alloc.list; p; p = p->next)
7984 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
7985 {
7986 gfc_ref *ref1, *ref2;
7987 bool found = true;
7988
7989 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
7990 ref1 = ref1->next, ref2 = ref2->next)
7991 {
7992 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7993 continue;
7994 if (ref1->u.c.component->name != ref2->u.c.component->name)
7995 {
7996 found = false;
7997 break;
7998 }
7999 }
8000
8001 if (found)
8002 {
8003 gfc_error ("Errmsg-variable at %L shall not be %sd within "
8004 "the same %s statement", &errmsg->where, fcn, fcn);
8005 break;
8006 }
8007 }
8008 }
8009
8010 /* Check that an allocate-object appears only once in the statement. */
8011
8012 for (p = code->ext.alloc.list; p; p = p->next)
8013 {
8014 pe = p->expr;
8015 for (q = p->next; q; q = q->next)
8016 {
8017 qe = q->expr;
8018 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
8019 {
8020 /* This is a potential collision. */
8021 gfc_ref *pr = pe->ref;
8022 gfc_ref *qr = qe->ref;
8023
8024 /* Follow the references until
8025 a) They start to differ, in which case there is no error;
8026 you can deallocate a%b and a%c in a single statement
8027 b) Both of them stop, which is an error
8028 c) One of them stops, which is also an error. */
8029 while (1)
8030 {
8031 if (pr == NULL && qr == NULL)
8032 {
8033 gfc_error ("Allocate-object at %L also appears at %L",
8034 &pe->where, &qe->where);
8035 break;
8036 }
8037 else if (pr != NULL && qr == NULL)
8038 {
8039 gfc_error ("Allocate-object at %L is subobject of"
8040 " object at %L", &pe->where, &qe->where);
8041 break;
8042 }
8043 else if (pr == NULL && qr != NULL)
8044 {
8045 gfc_error ("Allocate-object at %L is subobject of"
8046 " object at %L", &qe->where, &pe->where);
8047 break;
8048 }
8049 /* Here, pr != NULL && qr != NULL */
8050 gcc_assert(pr->type == qr->type);
8051 if (pr->type == REF_ARRAY)
8052 {
8053 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
8054 which are legal. */
8055 gcc_assert (qr->type == REF_ARRAY);
8056
8057 if (pr->next && qr->next)
8058 {
8059 int i;
8060 gfc_array_ref *par = &(pr->u.ar);
8061 gfc_array_ref *qar = &(qr->u.ar);
8062
8063 for (i=0; i<par->dimen; i++)
8064 {
8065 if ((par->start[i] != NULL
8066 || qar->start[i] != NULL)
8067 && gfc_dep_compare_expr (par->start[i],
8068 qar->start[i]) != 0)
8069 goto break_label;
8070 }
8071 }
8072 }
8073 else
8074 {
8075 if (pr->u.c.component->name != qr->u.c.component->name)
8076 break;
8077 }
8078
8079 pr = pr->next;
8080 qr = qr->next;
8081 }
8082 break_label:
8083 ;
8084 }
8085 }
8086 }
8087
8088 if (strcmp (fcn, "ALLOCATE") == 0)
8089 {
8090 bool arr_alloc_wo_spec = false;
8091
8092 /* Resolving the expr3 in the loop over all objects to allocate would
8093 execute loop invariant code for each loop item. Therefore do it just
8094 once here. */
8095 if (code->expr3 && code->expr3->mold
8096 && code->expr3->ts.type == BT_DERIVED)
8097 {
8098 /* Default initialization via MOLD (non-polymorphic). */
8099 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
8100 if (rhs != NULL)
8101 {
8102 gfc_resolve_expr (rhs);
8103 gfc_free_expr (code->expr3);
8104 code->expr3 = rhs;
8105 }
8106 }
8107 for (a = code->ext.alloc.list; a; a = a->next)
8108 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
8109
8110 if (arr_alloc_wo_spec && code->expr3)
8111 {
8112 /* Mark the allocate to have to take the array specification
8113 from the expr3. */
8114 code->ext.alloc.arr_spec_from_expr3 = 1;
8115 }
8116 }
8117 else
8118 {
8119 for (a = code->ext.alloc.list; a; a = a->next)
8120 resolve_deallocate_expr (a->expr);
8121 }
8122 }
8123
8124
8125 /************ SELECT CASE resolution subroutines ************/
8126
8127 /* Callback function for our mergesort variant. Determines interval
8128 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
8129 op1 > op2. Assumes we're not dealing with the default case.
8130 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
8131 There are nine situations to check. */
8132
8133 static int
8134 compare_cases (const gfc_case *op1, const gfc_case *op2)
8135 {
8136 int retval;
8137
8138 if (op1->low == NULL) /* op1 = (:L) */
8139 {
8140 /* op2 = (:N), so overlap. */
8141 retval = 0;
8142 /* op2 = (M:) or (M:N), L < M */
8143 if (op2->low != NULL
8144 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8145 retval = -1;
8146 }
8147 else if (op1->high == NULL) /* op1 = (K:) */
8148 {
8149 /* op2 = (M:), so overlap. */
8150 retval = 0;
8151 /* op2 = (:N) or (M:N), K > N */
8152 if (op2->high != NULL
8153 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8154 retval = 1;
8155 }
8156 else /* op1 = (K:L) */
8157 {
8158 if (op2->low == NULL) /* op2 = (:N), K > N */
8159 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8160 ? 1 : 0;
8161 else if (op2->high == NULL) /* op2 = (M:), L < M */
8162 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8163 ? -1 : 0;
8164 else /* op2 = (M:N) */
8165 {
8166 retval = 0;
8167 /* L < M */
8168 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
8169 retval = -1;
8170 /* K > N */
8171 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
8172 retval = 1;
8173 }
8174 }
8175
8176 return retval;
8177 }
8178
8179
8180 /* Merge-sort a double linked case list, detecting overlap in the
8181 process. LIST is the head of the double linked case list before it
8182 is sorted. Returns the head of the sorted list if we don't see any
8183 overlap, or NULL otherwise. */
8184
8185 static gfc_case *
8186 check_case_overlap (gfc_case *list)
8187 {
8188 gfc_case *p, *q, *e, *tail;
8189 int insize, nmerges, psize, qsize, cmp, overlap_seen;
8190
8191 /* If the passed list was empty, return immediately. */
8192 if (!list)
8193 return NULL;
8194
8195 overlap_seen = 0;
8196 insize = 1;
8197
8198 /* Loop unconditionally. The only exit from this loop is a return
8199 statement, when we've finished sorting the case list. */
8200 for (;;)
8201 {
8202 p = list;
8203 list = NULL;
8204 tail = NULL;
8205
8206 /* Count the number of merges we do in this pass. */
8207 nmerges = 0;
8208
8209 /* Loop while there exists a merge to be done. */
8210 while (p)
8211 {
8212 int i;
8213
8214 /* Count this merge. */
8215 nmerges++;
8216
8217 /* Cut the list in two pieces by stepping INSIZE places
8218 forward in the list, starting from P. */
8219 psize = 0;
8220 q = p;
8221 for (i = 0; i < insize; i++)
8222 {
8223 psize++;
8224 q = q->right;
8225 if (!q)
8226 break;
8227 }
8228 qsize = insize;
8229
8230 /* Now we have two lists. Merge them! */
8231 while (psize > 0 || (qsize > 0 && q != NULL))
8232 {
8233 /* See from which the next case to merge comes from. */
8234 if (psize == 0)
8235 {
8236 /* P is empty so the next case must come from Q. */
8237 e = q;
8238 q = q->right;
8239 qsize--;
8240 }
8241 else if (qsize == 0 || q == NULL)
8242 {
8243 /* Q is empty. */
8244 e = p;
8245 p = p->right;
8246 psize--;
8247 }
8248 else
8249 {
8250 cmp = compare_cases (p, q);
8251 if (cmp < 0)
8252 {
8253 /* The whole case range for P is less than the
8254 one for Q. */
8255 e = p;
8256 p = p->right;
8257 psize--;
8258 }
8259 else if (cmp > 0)
8260 {
8261 /* The whole case range for Q is greater than
8262 the case range for P. */
8263 e = q;
8264 q = q->right;
8265 qsize--;
8266 }
8267 else
8268 {
8269 /* The cases overlap, or they are the same
8270 element in the list. Either way, we must
8271 issue an error and get the next case from P. */
8272 /* FIXME: Sort P and Q by line number. */
8273 gfc_error ("CASE label at %L overlaps with CASE "
8274 "label at %L", &p->where, &q->where);
8275 overlap_seen = 1;
8276 e = p;
8277 p = p->right;
8278 psize--;
8279 }
8280 }
8281
8282 /* Add the next element to the merged list. */
8283 if (tail)
8284 tail->right = e;
8285 else
8286 list = e;
8287 e->left = tail;
8288 tail = e;
8289 }
8290
8291 /* P has now stepped INSIZE places along, and so has Q. So
8292 they're the same. */
8293 p = q;
8294 }
8295 tail->right = NULL;
8296
8297 /* If we have done only one merge or none at all, we've
8298 finished sorting the cases. */
8299 if (nmerges <= 1)
8300 {
8301 if (!overlap_seen)
8302 return list;
8303 else
8304 return NULL;
8305 }
8306
8307 /* Otherwise repeat, merging lists twice the size. */
8308 insize *= 2;
8309 }
8310 }
8311
8312
8313 /* Check to see if an expression is suitable for use in a CASE statement.
8314 Makes sure that all case expressions are scalar constants of the same
8315 type. Return false if anything is wrong. */
8316
8317 static bool
8318 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8319 {
8320 if (e == NULL) return true;
8321
8322 if (e->ts.type != case_expr->ts.type)
8323 {
8324 gfc_error ("Expression in CASE statement at %L must be of type %s",
8325 &e->where, gfc_basic_typename (case_expr->ts.type));
8326 return false;
8327 }
8328
8329 /* C805 (R808) For a given case-construct, each case-value shall be of
8330 the same type as case-expr. For character type, length differences
8331 are allowed, but the kind type parameters shall be the same. */
8332
8333 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8334 {
8335 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8336 &e->where, case_expr->ts.kind);
8337 return false;
8338 }
8339
8340 /* Convert the case value kind to that of case expression kind,
8341 if needed */
8342
8343 if (e->ts.kind != case_expr->ts.kind)
8344 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8345
8346 if (e->rank != 0)
8347 {
8348 gfc_error ("Expression in CASE statement at %L must be scalar",
8349 &e->where);
8350 return false;
8351 }
8352
8353 return true;
8354 }
8355
8356
8357 /* Given a completely parsed select statement, we:
8358
8359 - Validate all expressions and code within the SELECT.
8360 - Make sure that the selection expression is not of the wrong type.
8361 - Make sure that no case ranges overlap.
8362 - Eliminate unreachable cases and unreachable code resulting from
8363 removing case labels.
8364
8365 The standard does allow unreachable cases, e.g. CASE (5:3). But
8366 they are a hassle for code generation, and to prevent that, we just
8367 cut them out here. This is not necessary for overlapping cases
8368 because they are illegal and we never even try to generate code.
8369
8370 We have the additional caveat that a SELECT construct could have
8371 been a computed GOTO in the source code. Fortunately we can fairly
8372 easily work around that here: The case_expr for a "real" SELECT CASE
8373 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8374 we have to do is make sure that the case_expr is a scalar integer
8375 expression. */
8376
8377 static void
8378 resolve_select (gfc_code *code, bool select_type)
8379 {
8380 gfc_code *body;
8381 gfc_expr *case_expr;
8382 gfc_case *cp, *default_case, *tail, *head;
8383 int seen_unreachable;
8384 int seen_logical;
8385 int ncases;
8386 bt type;
8387 bool t;
8388
8389 if (code->expr1 == NULL)
8390 {
8391 /* This was actually a computed GOTO statement. */
8392 case_expr = code->expr2;
8393 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8394 gfc_error ("Selection expression in computed GOTO statement "
8395 "at %L must be a scalar integer expression",
8396 &case_expr->where);
8397
8398 /* Further checking is not necessary because this SELECT was built
8399 by the compiler, so it should always be OK. Just move the
8400 case_expr from expr2 to expr so that we can handle computed
8401 GOTOs as normal SELECTs from here on. */
8402 code->expr1 = code->expr2;
8403 code->expr2 = NULL;
8404 return;
8405 }
8406
8407 case_expr = code->expr1;
8408 type = case_expr->ts.type;
8409
8410 /* F08:C830. */
8411 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8412 {
8413 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8414 &case_expr->where, gfc_typename (&case_expr->ts));
8415
8416 /* Punt. Going on here just produce more garbage error messages. */
8417 return;
8418 }
8419
8420 /* F08:R842. */
8421 if (!select_type && case_expr->rank != 0)
8422 {
8423 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8424 "expression", &case_expr->where);
8425
8426 /* Punt. */
8427 return;
8428 }
8429
8430 /* Raise a warning if an INTEGER case value exceeds the range of
8431 the case-expr. Later, all expressions will be promoted to the
8432 largest kind of all case-labels. */
8433
8434 if (type == BT_INTEGER)
8435 for (body = code->block; body; body = body->block)
8436 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8437 {
8438 if (cp->low
8439 && gfc_check_integer_range (cp->low->value.integer,
8440 case_expr->ts.kind) != ARITH_OK)
8441 gfc_warning (0, "Expression in CASE statement at %L is "
8442 "not in the range of %s", &cp->low->where,
8443 gfc_typename (&case_expr->ts));
8444
8445 if (cp->high
8446 && cp->low != cp->high
8447 && gfc_check_integer_range (cp->high->value.integer,
8448 case_expr->ts.kind) != ARITH_OK)
8449 gfc_warning (0, "Expression in CASE statement at %L is "
8450 "not in the range of %s", &cp->high->where,
8451 gfc_typename (&case_expr->ts));
8452 }
8453
8454 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8455 of the SELECT CASE expression and its CASE values. Walk the lists
8456 of case values, and if we find a mismatch, promote case_expr to
8457 the appropriate kind. */
8458
8459 if (type == BT_LOGICAL || type == BT_INTEGER)
8460 {
8461 for (body = code->block; body; body = body->block)
8462 {
8463 /* Walk the case label list. */
8464 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8465 {
8466 /* Intercept the DEFAULT case. It does not have a kind. */
8467 if (cp->low == NULL && cp->high == NULL)
8468 continue;
8469
8470 /* Unreachable case ranges are discarded, so ignore. */
8471 if (cp->low != NULL && cp->high != NULL
8472 && cp->low != cp->high
8473 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8474 continue;
8475
8476 if (cp->low != NULL
8477 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8478 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8479
8480 if (cp->high != NULL
8481 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8482 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8483 }
8484 }
8485 }
8486
8487 /* Assume there is no DEFAULT case. */
8488 default_case = NULL;
8489 head = tail = NULL;
8490 ncases = 0;
8491 seen_logical = 0;
8492
8493 for (body = code->block; body; body = body->block)
8494 {
8495 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8496 t = true;
8497 seen_unreachable = 0;
8498
8499 /* Walk the case label list, making sure that all case labels
8500 are legal. */
8501 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8502 {
8503 /* Count the number of cases in the whole construct. */
8504 ncases++;
8505
8506 /* Intercept the DEFAULT case. */
8507 if (cp->low == NULL && cp->high == NULL)
8508 {
8509 if (default_case != NULL)
8510 {
8511 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8512 "by a second DEFAULT CASE at %L",
8513 &default_case->where, &cp->where);
8514 t = false;
8515 break;
8516 }
8517 else
8518 {
8519 default_case = cp;
8520 continue;
8521 }
8522 }
8523
8524 /* Deal with single value cases and case ranges. Errors are
8525 issued from the validation function. */
8526 if (!validate_case_label_expr (cp->low, case_expr)
8527 || !validate_case_label_expr (cp->high, case_expr))
8528 {
8529 t = false;
8530 break;
8531 }
8532
8533 if (type == BT_LOGICAL
8534 && ((cp->low == NULL || cp->high == NULL)
8535 || cp->low != cp->high))
8536 {
8537 gfc_error ("Logical range in CASE statement at %L is not "
8538 "allowed", &cp->low->where);
8539 t = false;
8540 break;
8541 }
8542
8543 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8544 {
8545 int value;
8546 value = cp->low->value.logical == 0 ? 2 : 1;
8547 if (value & seen_logical)
8548 {
8549 gfc_error ("Constant logical value in CASE statement "
8550 "is repeated at %L",
8551 &cp->low->where);
8552 t = false;
8553 break;
8554 }
8555 seen_logical |= value;
8556 }
8557
8558 if (cp->low != NULL && cp->high != NULL
8559 && cp->low != cp->high
8560 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8561 {
8562 if (warn_surprising)
8563 gfc_warning (OPT_Wsurprising,
8564 "Range specification at %L can never be matched",
8565 &cp->where);
8566
8567 cp->unreachable = 1;
8568 seen_unreachable = 1;
8569 }
8570 else
8571 {
8572 /* If the case range can be matched, it can also overlap with
8573 other cases. To make sure it does not, we put it in a
8574 double linked list here. We sort that with a merge sort
8575 later on to detect any overlapping cases. */
8576 if (!head)
8577 {
8578 head = tail = cp;
8579 head->right = head->left = NULL;
8580 }
8581 else
8582 {
8583 tail->right = cp;
8584 tail->right->left = tail;
8585 tail = tail->right;
8586 tail->right = NULL;
8587 }
8588 }
8589 }
8590
8591 /* It there was a failure in the previous case label, give up
8592 for this case label list. Continue with the next block. */
8593 if (!t)
8594 continue;
8595
8596 /* See if any case labels that are unreachable have been seen.
8597 If so, we eliminate them. This is a bit of a kludge because
8598 the case lists for a single case statement (label) is a
8599 single forward linked lists. */
8600 if (seen_unreachable)
8601 {
8602 /* Advance until the first case in the list is reachable. */
8603 while (body->ext.block.case_list != NULL
8604 && body->ext.block.case_list->unreachable)
8605 {
8606 gfc_case *n = body->ext.block.case_list;
8607 body->ext.block.case_list = body->ext.block.case_list->next;
8608 n->next = NULL;
8609 gfc_free_case_list (n);
8610 }
8611
8612 /* Strip all other unreachable cases. */
8613 if (body->ext.block.case_list)
8614 {
8615 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8616 {
8617 if (cp->next->unreachable)
8618 {
8619 gfc_case *n = cp->next;
8620 cp->next = cp->next->next;
8621 n->next = NULL;
8622 gfc_free_case_list (n);
8623 }
8624 }
8625 }
8626 }
8627 }
8628
8629 /* See if there were overlapping cases. If the check returns NULL,
8630 there was overlap. In that case we don't do anything. If head
8631 is non-NULL, we prepend the DEFAULT case. The sorted list can
8632 then used during code generation for SELECT CASE constructs with
8633 a case expression of a CHARACTER type. */
8634 if (head)
8635 {
8636 head = check_case_overlap (head);
8637
8638 /* Prepend the default_case if it is there. */
8639 if (head != NULL && default_case)
8640 {
8641 default_case->left = NULL;
8642 default_case->right = head;
8643 head->left = default_case;
8644 }
8645 }
8646
8647 /* Eliminate dead blocks that may be the result if we've seen
8648 unreachable case labels for a block. */
8649 for (body = code; body && body->block; body = body->block)
8650 {
8651 if (body->block->ext.block.case_list == NULL)
8652 {
8653 /* Cut the unreachable block from the code chain. */
8654 gfc_code *c = body->block;
8655 body->block = c->block;
8656
8657 /* Kill the dead block, but not the blocks below it. */
8658 c->block = NULL;
8659 gfc_free_statements (c);
8660 }
8661 }
8662
8663 /* More than two cases is legal but insane for logical selects.
8664 Issue a warning for it. */
8665 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8666 gfc_warning (OPT_Wsurprising,
8667 "Logical SELECT CASE block at %L has more that two cases",
8668 &code->loc);
8669 }
8670
8671
8672 /* Check if a derived type is extensible. */
8673
8674 bool
8675 gfc_type_is_extensible (gfc_symbol *sym)
8676 {
8677 return !(sym->attr.is_bind_c || sym->attr.sequence
8678 || (sym->attr.is_class
8679 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8680 }
8681
8682
8683 static void
8684 resolve_types (gfc_namespace *ns);
8685
8686 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8687 correct as well as possibly the array-spec. */
8688
8689 static void
8690 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8691 {
8692 gfc_expr* target;
8693
8694 gcc_assert (sym->assoc);
8695 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8696
8697 /* If this is for SELECT TYPE, the target may not yet be set. In that
8698 case, return. Resolution will be called later manually again when
8699 this is done. */
8700 target = sym->assoc->target;
8701 if (!target)
8702 return;
8703 gcc_assert (!sym->assoc->dangling);
8704
8705 if (resolve_target && !gfc_resolve_expr (target))
8706 return;
8707
8708 /* For variable targets, we get some attributes from the target. */
8709 if (target->expr_type == EXPR_VARIABLE)
8710 {
8711 gfc_symbol* tsym;
8712
8713 gcc_assert (target->symtree);
8714 tsym = target->symtree->n.sym;
8715
8716 sym->attr.asynchronous = tsym->attr.asynchronous;
8717 sym->attr.volatile_ = tsym->attr.volatile_;
8718
8719 sym->attr.target = tsym->attr.target
8720 || gfc_expr_attr (target).pointer;
8721 if (is_subref_array (target))
8722 sym->attr.subref_array_pointer = 1;
8723 }
8724
8725 if (target->expr_type == EXPR_NULL)
8726 {
8727 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8728 return;
8729 }
8730 else if (target->ts.type == BT_UNKNOWN)
8731 {
8732 gfc_error ("Selector at %L has no type", &target->where);
8733 return;
8734 }
8735
8736 /* Get type if this was not already set. Note that it can be
8737 some other type than the target in case this is a SELECT TYPE
8738 selector! So we must not update when the type is already there. */
8739 if (sym->ts.type == BT_UNKNOWN)
8740 sym->ts = target->ts;
8741
8742 gcc_assert (sym->ts.type != BT_UNKNOWN);
8743
8744 /* See if this is a valid association-to-variable. */
8745 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8746 && !gfc_has_vector_subscript (target));
8747
8748 /* Finally resolve if this is an array or not. */
8749 if (sym->attr.dimension && target->rank == 0)
8750 {
8751 /* primary.c makes the assumption that a reference to an associate
8752 name followed by a left parenthesis is an array reference. */
8753 if (sym->ts.type != BT_CHARACTER)
8754 gfc_error ("Associate-name %qs at %L is used as array",
8755 sym->name, &sym->declared_at);
8756 sym->attr.dimension = 0;
8757 return;
8758 }
8759
8760
8761 /* We cannot deal with class selectors that need temporaries. */
8762 if (target->ts.type == BT_CLASS
8763 && gfc_ref_needs_temporary_p (target->ref))
8764 {
8765 gfc_error ("CLASS selector at %L needs a temporary which is not "
8766 "yet implemented", &target->where);
8767 return;
8768 }
8769
8770 if (target->ts.type == BT_CLASS)
8771 gfc_fix_class_refs (target);
8772
8773 if (target->rank != 0)
8774 {
8775 gfc_array_spec *as;
8776 /* The rank may be incorrectly guessed at parsing, therefore make sure
8777 it is corrected now. */
8778 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8779 {
8780 if (!sym->as)
8781 sym->as = gfc_get_array_spec ();
8782 as = sym->as;
8783 as->rank = target->rank;
8784 as->type = AS_DEFERRED;
8785 as->corank = gfc_get_corank (target);
8786 sym->attr.dimension = 1;
8787 if (as->corank != 0)
8788 sym->attr.codimension = 1;
8789 }
8790 else if (sym->ts.type == BT_CLASS && (!CLASS_DATA (sym)->as || sym->assoc->rankguessed))
8791 {
8792 if (!CLASS_DATA (sym)->as)
8793 CLASS_DATA (sym)->as = gfc_get_array_spec ();
8794 as = CLASS_DATA (sym)->as;
8795 as->rank = target->rank;
8796 as->type = AS_DEFERRED;
8797 as->corank = gfc_get_corank (target);
8798 CLASS_DATA (sym)->attr.dimension = 1;
8799 if (as->corank != 0)
8800 CLASS_DATA (sym)->attr.codimension = 1;
8801 }
8802 }
8803 else
8804 {
8805 /* target's rank is 0, but the type of the sym is still array valued,
8806 which has to be corrected. */
8807 if (sym->ts.type == BT_CLASS
8808 && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
8809 {
8810 gfc_array_spec *as;
8811 symbol_attribute attr;
8812 /* The associated variable's type is still the array type
8813 correct this now. */
8814 gfc_typespec *ts = &target->ts;
8815 gfc_ref *ref;
8816 gfc_component *c;
8817 for (ref = target->ref; ref != NULL; ref = ref->next)
8818 {
8819 switch (ref->type)
8820 {
8821 case REF_COMPONENT:
8822 ts = &ref->u.c.component->ts;
8823 break;
8824 case REF_ARRAY:
8825 if (ts->type == BT_CLASS)
8826 ts = &ts->u.derived->components->ts;
8827 break;
8828 default:
8829 break;
8830 }
8831 }
8832 /* Create a scalar instance of the current class type. Because the
8833 rank of a class array goes into its name, the type has to be
8834 rebuild. The alternative of (re-)setting just the attributes
8835 and as in the current type, destroys the type also in other
8836 places. */
8837 as = NULL;
8838 sym->ts = *ts;
8839 sym->ts.type = BT_CLASS;
8840 attr = CLASS_DATA (sym)->attr;
8841 attr.class_ok = 0;
8842 attr.associate_var = 1;
8843 attr.dimension = attr.codimension = 0;
8844 attr.class_pointer = 1;
8845 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
8846 gcc_unreachable ();
8847 /* Make sure the _vptr is set. */
8848 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
8849 if (c->ts.u.derived == NULL)
8850 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
8851 CLASS_DATA (sym)->attr.pointer = 1;
8852 CLASS_DATA (sym)->attr.class_pointer = 1;
8853 gfc_set_sym_referenced (sym->ts.u.derived);
8854 gfc_commit_symbol (sym->ts.u.derived);
8855 /* _vptr now has the _vtab in it, change it to the _vtype. */
8856 if (c->ts.u.derived->attr.vtab)
8857 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
8858 c->ts.u.derived->ns->types_resolved = 0;
8859 resolve_types (c->ts.u.derived->ns);
8860 }
8861 }
8862
8863 /* Mark this as an associate variable. */
8864 sym->attr.associate_var = 1;
8865
8866 /* Fix up the type-spec for CHARACTER types. */
8867 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
8868 {
8869 if (!sym->ts.u.cl)
8870 sym->ts.u.cl = target->ts.u.cl;
8871
8872 if (sym->ts.deferred && target->expr_type == EXPR_VARIABLE
8873 && target->symtree->n.sym->attr.dummy
8874 && sym->ts.u.cl == target->ts.u.cl)
8875 {
8876 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
8877 sym->ts.deferred = 1;
8878 }
8879
8880 if (!sym->ts.u.cl->length
8881 && !sym->ts.deferred
8882 && target->expr_type == EXPR_CONSTANT)
8883 {
8884 sym->ts.u.cl->length =
8885 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
8886 target->value.character.length);
8887 }
8888 else if ((!sym->ts.u.cl->length
8889 || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
8890 && target->expr_type != EXPR_VARIABLE)
8891 {
8892 sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
8893 sym->ts.deferred = 1;
8894
8895 /* This is reset in trans-stmt.c after the assignment
8896 of the target expression to the associate name. */
8897 sym->attr.allocatable = 1;
8898 }
8899 }
8900
8901 /* If the target is a good class object, so is the associate variable. */
8902 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
8903 sym->attr.class_ok = 1;
8904 }
8905
8906
8907 /* Ensure that SELECT TYPE expressions have the correct rank and a full
8908 array reference, where necessary. The symbols are artificial and so
8909 the dimension attribute and arrayspec can also be set. In addition,
8910 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
8911 This is corrected here as well.*/
8912
8913 static void
8914 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
8915 int rank, gfc_ref *ref)
8916 {
8917 gfc_ref *nref = (*expr1)->ref;
8918 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
8919 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
8920 (*expr1)->rank = rank;
8921 if (sym1->ts.type == BT_CLASS)
8922 {
8923 if ((*expr1)->ts.type != BT_CLASS)
8924 (*expr1)->ts = sym1->ts;
8925
8926 CLASS_DATA (sym1)->attr.dimension = 1;
8927 if (CLASS_DATA (sym1)->as == NULL && sym2)
8928 CLASS_DATA (sym1)->as
8929 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
8930 }
8931 else
8932 {
8933 sym1->attr.dimension = 1;
8934 if (sym1->as == NULL && sym2)
8935 sym1->as = gfc_copy_array_spec (sym2->as);
8936 }
8937
8938 for (; nref; nref = nref->next)
8939 if (nref->next == NULL)
8940 break;
8941
8942 if (ref && nref && nref->type != REF_ARRAY)
8943 nref->next = gfc_copy_ref (ref);
8944 else if (ref && !nref)
8945 (*expr1)->ref = gfc_copy_ref (ref);
8946 }
8947
8948
8949 static gfc_expr *
8950 build_loc_call (gfc_expr *sym_expr)
8951 {
8952 gfc_expr *loc_call;
8953 loc_call = gfc_get_expr ();
8954 loc_call->expr_type = EXPR_FUNCTION;
8955 gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
8956 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
8957 loc_call->symtree->n.sym->attr.intrinsic = 1;
8958 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
8959 gfc_commit_symbol (loc_call->symtree->n.sym);
8960 loc_call->ts.type = BT_INTEGER;
8961 loc_call->ts.kind = gfc_index_integer_kind;
8962 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
8963 loc_call->value.function.actual = gfc_get_actual_arglist ();
8964 loc_call->value.function.actual->expr = sym_expr;
8965 loc_call->where = sym_expr->where;
8966 return loc_call;
8967 }
8968
8969 /* Resolve a SELECT TYPE statement. */
8970
8971 static void
8972 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
8973 {
8974 gfc_symbol *selector_type;
8975 gfc_code *body, *new_st, *if_st, *tail;
8976 gfc_code *class_is = NULL, *default_case = NULL;
8977 gfc_case *c;
8978 gfc_symtree *st;
8979 char name[GFC_MAX_SYMBOL_LEN];
8980 gfc_namespace *ns;
8981 int error = 0;
8982 int rank = 0;
8983 gfc_ref* ref = NULL;
8984 gfc_expr *selector_expr = NULL;
8985
8986 ns = code->ext.block.ns;
8987 gfc_resolve (ns);
8988
8989 /* Check for F03:C813. */
8990 if (code->expr1->ts.type != BT_CLASS
8991 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
8992 {
8993 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
8994 "at %L", &code->loc);
8995 return;
8996 }
8997
8998 if (!code->expr1->symtree->n.sym->attr.class_ok)
8999 return;
9000
9001 if (code->expr2)
9002 {
9003 gfc_ref *ref2 = NULL;
9004 for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
9005 if (ref->type == REF_COMPONENT
9006 && ref->u.c.component->ts.type == BT_CLASS)
9007 ref2 = ref;
9008
9009 if (ref2)
9010 {
9011 if (code->expr1->symtree->n.sym->attr.untyped)
9012 code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
9013 selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
9014 }
9015 else
9016 {
9017 if (code->expr1->symtree->n.sym->attr.untyped)
9018 code->expr1->symtree->n.sym->ts = code->expr2->ts;
9019 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
9020 }
9021
9022 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
9023 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
9024
9025 /* F2008: C803 The selector expression must not be coindexed. */
9026 if (gfc_is_coindexed (code->expr2))
9027 {
9028 gfc_error ("Selector at %L must not be coindexed",
9029 &code->expr2->where);
9030 return;
9031 }
9032
9033 }
9034 else
9035 {
9036 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
9037
9038 if (gfc_is_coindexed (code->expr1))
9039 {
9040 gfc_error ("Selector at %L must not be coindexed",
9041 &code->expr1->where);
9042 return;
9043 }
9044 }
9045
9046 /* Loop over TYPE IS / CLASS IS cases. */
9047 for (body = code->block; body; body = body->block)
9048 {
9049 c = body->ext.block.case_list;
9050
9051 if (!error)
9052 {
9053 /* Check for repeated cases. */
9054 for (tail = code->block; tail; tail = tail->block)
9055 {
9056 gfc_case *d = tail->ext.block.case_list;
9057 if (tail == body)
9058 break;
9059
9060 if (c->ts.type == d->ts.type
9061 && ((c->ts.type == BT_DERIVED
9062 && c->ts.u.derived && d->ts.u.derived
9063 && !strcmp (c->ts.u.derived->name,
9064 d->ts.u.derived->name))
9065 || c->ts.type == BT_UNKNOWN
9066 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9067 && c->ts.kind == d->ts.kind)))
9068 {
9069 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
9070 &c->where, &d->where);
9071 return;
9072 }
9073 }
9074 }
9075
9076 /* Check F03:C815. */
9077 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9078 && !selector_type->attr.unlimited_polymorphic
9079 && !gfc_type_is_extensible (c->ts.u.derived))
9080 {
9081 gfc_error ("Derived type %qs at %L must be extensible",
9082 c->ts.u.derived->name, &c->where);
9083 error++;
9084 continue;
9085 }
9086
9087 /* Check F03:C816. */
9088 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
9089 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
9090 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
9091 {
9092 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9093 gfc_error ("Derived type %qs at %L must be an extension of %qs",
9094 c->ts.u.derived->name, &c->where, selector_type->name);
9095 else
9096 gfc_error ("Unexpected intrinsic type %qs at %L",
9097 gfc_basic_typename (c->ts.type), &c->where);
9098 error++;
9099 continue;
9100 }
9101
9102 /* Check F03:C814. */
9103 if (c->ts.type == BT_CHARACTER
9104 && (c->ts.u.cl->length != NULL || c->ts.deferred))
9105 {
9106 gfc_error ("The type-spec at %L shall specify that each length "
9107 "type parameter is assumed", &c->where);
9108 error++;
9109 continue;
9110 }
9111
9112 /* Intercept the DEFAULT case. */
9113 if (c->ts.type == BT_UNKNOWN)
9114 {
9115 /* Check F03:C818. */
9116 if (default_case)
9117 {
9118 gfc_error ("The DEFAULT CASE at %L cannot be followed "
9119 "by a second DEFAULT CASE at %L",
9120 &default_case->ext.block.case_list->where, &c->where);
9121 error++;
9122 continue;
9123 }
9124
9125 default_case = body;
9126 }
9127 }
9128
9129 if (error > 0)
9130 return;
9131
9132 /* Transform SELECT TYPE statement to BLOCK and associate selector to
9133 target if present. If there are any EXIT statements referring to the
9134 SELECT TYPE construct, this is no problem because the gfc_code
9135 reference stays the same and EXIT is equally possible from the BLOCK
9136 it is changed to. */
9137 code->op = EXEC_BLOCK;
9138 if (code->expr2)
9139 {
9140 gfc_association_list* assoc;
9141
9142 assoc = gfc_get_association_list ();
9143 assoc->st = code->expr1->symtree;
9144 assoc->target = gfc_copy_expr (code->expr2);
9145 assoc->target->where = code->expr2->where;
9146 /* assoc->variable will be set by resolve_assoc_var. */
9147
9148 code->ext.block.assoc = assoc;
9149 code->expr1->symtree->n.sym->assoc = assoc;
9150
9151 resolve_assoc_var (code->expr1->symtree->n.sym, false);
9152 }
9153 else
9154 code->ext.block.assoc = NULL;
9155
9156 /* Ensure that the selector rank and arrayspec are available to
9157 correct expressions in which they might be missing. */
9158 if (code->expr2 && code->expr2->rank)
9159 {
9160 rank = code->expr2->rank;
9161 for (ref = code->expr2->ref; ref; ref = ref->next)
9162 if (ref->next == NULL)
9163 break;
9164 if (ref && ref->type == REF_ARRAY)
9165 ref = gfc_copy_ref (ref);
9166
9167 /* Fixup expr1 if necessary. */
9168 if (rank)
9169 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
9170 }
9171 else if (code->expr1->rank)
9172 {
9173 rank = code->expr1->rank;
9174 for (ref = code->expr1->ref; ref; ref = ref->next)
9175 if (ref->next == NULL)
9176 break;
9177 if (ref && ref->type == REF_ARRAY)
9178 ref = gfc_copy_ref (ref);
9179 }
9180
9181 /* Add EXEC_SELECT to switch on type. */
9182 new_st = gfc_get_code (code->op);
9183 new_st->expr1 = code->expr1;
9184 new_st->expr2 = code->expr2;
9185 new_st->block = code->block;
9186 code->expr1 = code->expr2 = NULL;
9187 code->block = NULL;
9188 if (!ns->code)
9189 ns->code = new_st;
9190 else
9191 ns->code->next = new_st;
9192 code = new_st;
9193 code->op = EXEC_SELECT_TYPE;
9194
9195 /* Use the intrinsic LOC function to generate an integer expression
9196 for the vtable of the selector. Note that the rank of the selector
9197 expression has to be set to zero. */
9198 gfc_add_vptr_component (code->expr1);
9199 code->expr1->rank = 0;
9200 code->expr1 = build_loc_call (code->expr1);
9201 selector_expr = code->expr1->value.function.actual->expr;
9202
9203 /* Loop over TYPE IS / CLASS IS cases. */
9204 for (body = code->block; body; body = body->block)
9205 {
9206 gfc_symbol *vtab;
9207 gfc_expr *e;
9208 c = body->ext.block.case_list;
9209
9210 /* Generate an index integer expression for address of the
9211 TYPE/CLASS vtable and store it in c->low. The hash expression
9212 is stored in c->high and is used to resolve intrinsic cases. */
9213 if (c->ts.type != BT_UNKNOWN)
9214 {
9215 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
9216 {
9217 vtab = gfc_find_derived_vtab (c->ts.u.derived);
9218 gcc_assert (vtab);
9219 c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
9220 c->ts.u.derived->hash_value);
9221 }
9222 else
9223 {
9224 vtab = gfc_find_vtab (&c->ts);
9225 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
9226 e = CLASS_DATA (vtab)->initializer;
9227 c->high = gfc_copy_expr (e);
9228 if (c->high->ts.kind != gfc_integer_4_kind)
9229 {
9230 gfc_typespec ts;
9231 ts.kind = gfc_integer_4_kind;
9232 ts.type = BT_INTEGER;
9233 gfc_convert_type_warn (c->high, &ts, 2, 0);
9234 }
9235 }
9236
9237 e = gfc_lval_expr_from_sym (vtab);
9238 c->low = build_loc_call (e);
9239 }
9240 else
9241 continue;
9242
9243 /* Associate temporary to selector. This should only be done
9244 when this case is actually true, so build a new ASSOCIATE
9245 that does precisely this here (instead of using the
9246 'global' one). */
9247
9248 if (c->ts.type == BT_CLASS)
9249 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
9250 else if (c->ts.type == BT_DERIVED)
9251 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
9252 else if (c->ts.type == BT_CHARACTER)
9253 {
9254 HOST_WIDE_INT charlen = 0;
9255 if (c->ts.u.cl && c->ts.u.cl->length
9256 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9257 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
9258 snprintf (name, sizeof (name),
9259 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
9260 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
9261 }
9262 else
9263 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
9264 c->ts.kind);
9265
9266 st = gfc_find_symtree (ns->sym_root, name);
9267 gcc_assert (st->n.sym->assoc);
9268 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
9269 st->n.sym->assoc->target->where = selector_expr->where;
9270 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
9271 {
9272 gfc_add_data_component (st->n.sym->assoc->target);
9273 /* Fixup the target expression if necessary. */
9274 if (rank)
9275 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
9276 }
9277
9278 new_st = gfc_get_code (EXEC_BLOCK);
9279 new_st->ext.block.ns = gfc_build_block_ns (ns);
9280 new_st->ext.block.ns->code = body->next;
9281 body->next = new_st;
9282
9283 /* Chain in the new list only if it is marked as dangling. Otherwise
9284 there is a CASE label overlap and this is already used. Just ignore,
9285 the error is diagnosed elsewhere. */
9286 if (st->n.sym->assoc->dangling)
9287 {
9288 new_st->ext.block.assoc = st->n.sym->assoc;
9289 st->n.sym->assoc->dangling = 0;
9290 }
9291
9292 resolve_assoc_var (st->n.sym, false);
9293 }
9294
9295 /* Take out CLASS IS cases for separate treatment. */
9296 body = code;
9297 while (body && body->block)
9298 {
9299 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9300 {
9301 /* Add to class_is list. */
9302 if (class_is == NULL)
9303 {
9304 class_is = body->block;
9305 tail = class_is;
9306 }
9307 else
9308 {
9309 for (tail = class_is; tail->block; tail = tail->block) ;
9310 tail->block = body->block;
9311 tail = tail->block;
9312 }
9313 /* Remove from EXEC_SELECT list. */
9314 body->block = body->block->block;
9315 tail->block = NULL;
9316 }
9317 else
9318 body = body->block;
9319 }
9320
9321 if (class_is)
9322 {
9323 gfc_symbol *vtab;
9324
9325 if (!default_case)
9326 {
9327 /* Add a default case to hold the CLASS IS cases. */
9328 for (tail = code; tail->block; tail = tail->block) ;
9329 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9330 tail = tail->block;
9331 tail->ext.block.case_list = gfc_get_case ();
9332 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9333 tail->next = NULL;
9334 default_case = tail;
9335 }
9336
9337 /* More than one CLASS IS block? */
9338 if (class_is->block)
9339 {
9340 gfc_code **c1,*c2;
9341 bool swapped;
9342 /* Sort CLASS IS blocks by extension level. */
9343 do
9344 {
9345 swapped = false;
9346 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9347 {
9348 c2 = (*c1)->block;
9349 /* F03:C817 (check for doubles). */
9350 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9351 == c2->ext.block.case_list->ts.u.derived->hash_value)
9352 {
9353 gfc_error ("Double CLASS IS block in SELECT TYPE "
9354 "statement at %L",
9355 &c2->ext.block.case_list->where);
9356 return;
9357 }
9358 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9359 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9360 {
9361 /* Swap. */
9362 (*c1)->block = c2->block;
9363 c2->block = *c1;
9364 *c1 = c2;
9365 swapped = true;
9366 }
9367 }
9368 }
9369 while (swapped);
9370 }
9371
9372 /* Generate IF chain. */
9373 if_st = gfc_get_code (EXEC_IF);
9374 new_st = if_st;
9375 for (body = class_is; body; body = body->block)
9376 {
9377 new_st->block = gfc_get_code (EXEC_IF);
9378 new_st = new_st->block;
9379 /* Set up IF condition: Call _gfortran_is_extension_of. */
9380 new_st->expr1 = gfc_get_expr ();
9381 new_st->expr1->expr_type = EXPR_FUNCTION;
9382 new_st->expr1->ts.type = BT_LOGICAL;
9383 new_st->expr1->ts.kind = 4;
9384 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9385 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9386 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9387 /* Set up arguments. */
9388 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9389 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9390 new_st->expr1->value.function.actual->expr->where = code->loc;
9391 new_st->expr1->where = code->loc;
9392 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9393 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9394 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9395 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9396 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9397 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9398 new_st->next = body->next;
9399 }
9400 if (default_case->next)
9401 {
9402 new_st->block = gfc_get_code (EXEC_IF);
9403 new_st = new_st->block;
9404 new_st->next = default_case->next;
9405 }
9406
9407 /* Replace CLASS DEFAULT code by the IF chain. */
9408 default_case->next = if_st;
9409 }
9410
9411 /* Resolve the internal code. This cannot be done earlier because
9412 it requires that the sym->assoc of selectors is set already. */
9413 gfc_current_ns = ns;
9414 gfc_resolve_blocks (code->block, gfc_current_ns);
9415 gfc_current_ns = old_ns;
9416
9417 if (ref)
9418 free (ref);
9419 }
9420
9421
9422 /* Resolve a transfer statement. This is making sure that:
9423 -- a derived type being transferred has only non-pointer components
9424 -- a derived type being transferred doesn't have private components, unless
9425 it's being transferred from the module where the type was defined
9426 -- we're not trying to transfer a whole assumed size array. */
9427
9428 static void
9429 resolve_transfer (gfc_code *code)
9430 {
9431 gfc_symbol *sym, *derived;
9432 gfc_ref *ref;
9433 gfc_expr *exp;
9434 bool write = false;
9435 bool formatted = false;
9436 gfc_dt *dt = code->ext.dt;
9437 gfc_symbol *dtio_sub = NULL;
9438
9439 exp = code->expr1;
9440
9441 while (exp != NULL && exp->expr_type == EXPR_OP
9442 && exp->value.op.op == INTRINSIC_PARENTHESES)
9443 exp = exp->value.op.op1;
9444
9445 if (exp && exp->expr_type == EXPR_NULL
9446 && code->ext.dt)
9447 {
9448 gfc_error ("Invalid context for NULL () intrinsic at %L",
9449 &exp->where);
9450 return;
9451 }
9452
9453 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9454 && exp->expr_type != EXPR_FUNCTION
9455 && exp->expr_type != EXPR_STRUCTURE))
9456 return;
9457
9458 /* If we are reading, the variable will be changed. Note that
9459 code->ext.dt may be NULL if the TRANSFER is related to
9460 an INQUIRE statement -- but in this case, we are not reading, either. */
9461 if (dt && dt->dt_io_kind->value.iokind == M_READ
9462 && !gfc_check_vardef_context (exp, false, false, false,
9463 _("item in READ")))
9464 return;
9465
9466 const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
9467 || exp->expr_type == EXPR_FUNCTION
9468 ? &exp->ts : &exp->symtree->n.sym->ts;
9469
9470 /* Go to actual component transferred. */
9471 for (ref = exp->ref; ref; ref = ref->next)
9472 if (ref->type == REF_COMPONENT)
9473 ts = &ref->u.c.component->ts;
9474
9475 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9476 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9477 {
9478 derived = ts->u.derived;
9479
9480 /* Determine when to use the formatted DTIO procedure. */
9481 if (dt && (dt->format_expr || dt->format_label))
9482 formatted = true;
9483
9484 write = dt->dt_io_kind->value.iokind == M_WRITE
9485 || dt->dt_io_kind->value.iokind == M_PRINT;
9486 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9487
9488 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9489 {
9490 dt->udtio = exp;
9491 sym = exp->symtree->n.sym->ns->proc_name;
9492 /* Check to see if this is a nested DTIO call, with the
9493 dummy as the io-list object. */
9494 if (sym && sym == dtio_sub && sym->formal
9495 && sym->formal->sym == exp->symtree->n.sym
9496 && exp->ref == NULL)
9497 {
9498 if (!sym->attr.recursive)
9499 {
9500 gfc_error ("DTIO %s procedure at %L must be recursive",
9501 sym->name, &sym->declared_at);
9502 return;
9503 }
9504 }
9505 }
9506 }
9507
9508 if (ts->type == BT_CLASS && dtio_sub == NULL)
9509 {
9510 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9511 "it is processed by a defined input/output procedure",
9512 &code->loc);
9513 return;
9514 }
9515
9516 if (ts->type == BT_DERIVED)
9517 {
9518 /* Check that transferred derived type doesn't contain POINTER
9519 components unless it is processed by a defined input/output
9520 procedure". */
9521 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9522 {
9523 gfc_error ("Data transfer element at %L cannot have POINTER "
9524 "components unless it is processed by a defined "
9525 "input/output procedure", &code->loc);
9526 return;
9527 }
9528
9529 /* F08:C935. */
9530 if (ts->u.derived->attr.proc_pointer_comp)
9531 {
9532 gfc_error ("Data transfer element at %L cannot have "
9533 "procedure pointer components", &code->loc);
9534 return;
9535 }
9536
9537 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9538 {
9539 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9540 "components unless it is processed by a defined "
9541 "input/output procedure", &code->loc);
9542 return;
9543 }
9544
9545 /* C_PTR and C_FUNPTR have private components which means they cannot
9546 be printed. However, if -std=gnu and not -pedantic, allow
9547 the component to be printed to help debugging. */
9548 if (ts->u.derived->ts.f90_type == BT_VOID)
9549 {
9550 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9551 "cannot have PRIVATE components", &code->loc))
9552 return;
9553 }
9554 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9555 {
9556 gfc_error ("Data transfer element at %L cannot have "
9557 "PRIVATE components unless it is processed by "
9558 "a defined input/output procedure", &code->loc);
9559 return;
9560 }
9561 }
9562
9563 if (exp->expr_type == EXPR_STRUCTURE)
9564 return;
9565
9566 sym = exp->symtree->n.sym;
9567
9568 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9569 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9570 {
9571 gfc_error ("Data transfer element at %L cannot be a full reference to "
9572 "an assumed-size array", &code->loc);
9573 return;
9574 }
9575
9576 if (async_io_dt && exp->expr_type == EXPR_VARIABLE)
9577 exp->symtree->n.sym->attr.asynchronous = 1;
9578 }
9579
9580
9581 /*********** Toplevel code resolution subroutines ***********/
9582
9583 /* Find the set of labels that are reachable from this block. We also
9584 record the last statement in each block. */
9585
9586 static void
9587 find_reachable_labels (gfc_code *block)
9588 {
9589 gfc_code *c;
9590
9591 if (!block)
9592 return;
9593
9594 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9595
9596 /* Collect labels in this block. We don't keep those corresponding
9597 to END {IF|SELECT}, these are checked in resolve_branch by going
9598 up through the code_stack. */
9599 for (c = block; c; c = c->next)
9600 {
9601 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9602 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9603 }
9604
9605 /* Merge with labels from parent block. */
9606 if (cs_base->prev)
9607 {
9608 gcc_assert (cs_base->prev->reachable_labels);
9609 bitmap_ior_into (cs_base->reachable_labels,
9610 cs_base->prev->reachable_labels);
9611 }
9612 }
9613
9614
9615 static void
9616 resolve_lock_unlock_event (gfc_code *code)
9617 {
9618 if (code->expr1->expr_type == EXPR_FUNCTION
9619 && code->expr1->value.function.isym
9620 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9621 remove_caf_get_intrinsic (code->expr1);
9622
9623 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9624 && (code->expr1->ts.type != BT_DERIVED
9625 || code->expr1->expr_type != EXPR_VARIABLE
9626 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
9627 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
9628 || code->expr1->rank != 0
9629 || (!gfc_is_coarray (code->expr1) &&
9630 !gfc_is_coindexed (code->expr1))))
9631 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9632 &code->expr1->where);
9633 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
9634 && (code->expr1->ts.type != BT_DERIVED
9635 || code->expr1->expr_type != EXPR_VARIABLE
9636 || code->expr1->ts.u.derived->from_intmod
9637 != INTMOD_ISO_FORTRAN_ENV
9638 || code->expr1->ts.u.derived->intmod_sym_id
9639 != ISOFORTRAN_EVENT_TYPE
9640 || code->expr1->rank != 0))
9641 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9642 &code->expr1->where);
9643 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
9644 && !gfc_is_coindexed (code->expr1))
9645 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9646 &code->expr1->where);
9647 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
9648 gfc_error ("Event variable argument at %L must be a coarray but not "
9649 "coindexed", &code->expr1->where);
9650
9651 /* Check STAT. */
9652 if (code->expr2
9653 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9654 || code->expr2->expr_type != EXPR_VARIABLE))
9655 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9656 &code->expr2->where);
9657
9658 if (code->expr2
9659 && !gfc_check_vardef_context (code->expr2, false, false, false,
9660 _("STAT variable")))
9661 return;
9662
9663 /* Check ERRMSG. */
9664 if (code->expr3
9665 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9666 || code->expr3->expr_type != EXPR_VARIABLE))
9667 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9668 &code->expr3->where);
9669
9670 if (code->expr3
9671 && !gfc_check_vardef_context (code->expr3, false, false, false,
9672 _("ERRMSG variable")))
9673 return;
9674
9675 /* Check for LOCK the ACQUIRED_LOCK. */
9676 if (code->op != EXEC_EVENT_WAIT && code->expr4
9677 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
9678 || code->expr4->expr_type != EXPR_VARIABLE))
9679 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
9680 "variable", &code->expr4->where);
9681
9682 if (code->op != EXEC_EVENT_WAIT && code->expr4
9683 && !gfc_check_vardef_context (code->expr4, false, false, false,
9684 _("ACQUIRED_LOCK variable")))
9685 return;
9686
9687 /* Check for EVENT WAIT the UNTIL_COUNT. */
9688 if (code->op == EXEC_EVENT_WAIT && code->expr4)
9689 {
9690 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
9691 || code->expr4->rank != 0)
9692 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
9693 "expression", &code->expr4->where);
9694 }
9695 }
9696
9697
9698 static void
9699 resolve_critical (gfc_code *code)
9700 {
9701 gfc_symtree *symtree;
9702 gfc_symbol *lock_type;
9703 char name[GFC_MAX_SYMBOL_LEN];
9704 static int serial = 0;
9705
9706 if (flag_coarray != GFC_FCOARRAY_LIB)
9707 return;
9708
9709 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
9710 GFC_PREFIX ("lock_type"));
9711 if (symtree)
9712 lock_type = symtree->n.sym;
9713 else
9714 {
9715 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
9716 false) != 0)
9717 gcc_unreachable ();
9718 lock_type = symtree->n.sym;
9719 lock_type->attr.flavor = FL_DERIVED;
9720 lock_type->attr.zero_comp = 1;
9721 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
9722 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
9723 }
9724
9725 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
9726 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
9727 gcc_unreachable ();
9728
9729 code->resolved_sym = symtree->n.sym;
9730 symtree->n.sym->attr.flavor = FL_VARIABLE;
9731 symtree->n.sym->attr.referenced = 1;
9732 symtree->n.sym->attr.artificial = 1;
9733 symtree->n.sym->attr.codimension = 1;
9734 symtree->n.sym->ts.type = BT_DERIVED;
9735 symtree->n.sym->ts.u.derived = lock_type;
9736 symtree->n.sym->as = gfc_get_array_spec ();
9737 symtree->n.sym->as->corank = 1;
9738 symtree->n.sym->as->type = AS_EXPLICIT;
9739 symtree->n.sym->as->cotype = AS_EXPLICIT;
9740 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
9741 NULL, 1);
9742 gfc_commit_symbols();
9743 }
9744
9745
9746 static void
9747 resolve_sync (gfc_code *code)
9748 {
9749 /* Check imageset. The * case matches expr1 == NULL. */
9750 if (code->expr1)
9751 {
9752 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
9753 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
9754 "INTEGER expression", &code->expr1->where);
9755 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
9756 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
9757 gfc_error ("Imageset argument at %L must between 1 and num_images()",
9758 &code->expr1->where);
9759 else if (code->expr1->expr_type == EXPR_ARRAY
9760 && gfc_simplify_expr (code->expr1, 0))
9761 {
9762 gfc_constructor *cons;
9763 cons = gfc_constructor_first (code->expr1->value.constructor);
9764 for (; cons; cons = gfc_constructor_next (cons))
9765 if (cons->expr->expr_type == EXPR_CONSTANT
9766 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
9767 gfc_error ("Imageset argument at %L must between 1 and "
9768 "num_images()", &cons->expr->where);
9769 }
9770 }
9771
9772 /* Check STAT. */
9773 gfc_resolve_expr (code->expr2);
9774 if (code->expr2
9775 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9776 || code->expr2->expr_type != EXPR_VARIABLE))
9777 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9778 &code->expr2->where);
9779
9780 /* Check ERRMSG. */
9781 gfc_resolve_expr (code->expr3);
9782 if (code->expr3
9783 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9784 || code->expr3->expr_type != EXPR_VARIABLE))
9785 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9786 &code->expr3->where);
9787 }
9788
9789
9790 /* Given a branch to a label, see if the branch is conforming.
9791 The code node describes where the branch is located. */
9792
9793 static void
9794 resolve_branch (gfc_st_label *label, gfc_code *code)
9795 {
9796 code_stack *stack;
9797
9798 if (label == NULL)
9799 return;
9800
9801 /* Step one: is this a valid branching target? */
9802
9803 if (label->defined == ST_LABEL_UNKNOWN)
9804 {
9805 gfc_error ("Label %d referenced at %L is never defined", label->value,
9806 &code->loc);
9807 return;
9808 }
9809
9810 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
9811 {
9812 gfc_error ("Statement at %L is not a valid branch target statement "
9813 "for the branch statement at %L", &label->where, &code->loc);
9814 return;
9815 }
9816
9817 /* Step two: make sure this branch is not a branch to itself ;-) */
9818
9819 if (code->here == label)
9820 {
9821 gfc_warning (0,
9822 "Branch at %L may result in an infinite loop", &code->loc);
9823 return;
9824 }
9825
9826 /* Step three: See if the label is in the same block as the
9827 branching statement. The hard work has been done by setting up
9828 the bitmap reachable_labels. */
9829
9830 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
9831 {
9832 /* Check now whether there is a CRITICAL construct; if so, check
9833 whether the label is still visible outside of the CRITICAL block,
9834 which is invalid. */
9835 for (stack = cs_base; stack; stack = stack->prev)
9836 {
9837 if (stack->current->op == EXEC_CRITICAL
9838 && bitmap_bit_p (stack->reachable_labels, label->value))
9839 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
9840 "label at %L", &code->loc, &label->where);
9841 else if (stack->current->op == EXEC_DO_CONCURRENT
9842 && bitmap_bit_p (stack->reachable_labels, label->value))
9843 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
9844 "for label at %L", &code->loc, &label->where);
9845 }
9846
9847 return;
9848 }
9849
9850 /* Step four: If we haven't found the label in the bitmap, it may
9851 still be the label of the END of the enclosing block, in which
9852 case we find it by going up the code_stack. */
9853
9854 for (stack = cs_base; stack; stack = stack->prev)
9855 {
9856 if (stack->current->next && stack->current->next->here == label)
9857 break;
9858 if (stack->current->op == EXEC_CRITICAL)
9859 {
9860 /* Note: A label at END CRITICAL does not leave the CRITICAL
9861 construct as END CRITICAL is still part of it. */
9862 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
9863 " at %L", &code->loc, &label->where);
9864 return;
9865 }
9866 else if (stack->current->op == EXEC_DO_CONCURRENT)
9867 {
9868 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
9869 "label at %L", &code->loc, &label->where);
9870 return;
9871 }
9872 }
9873
9874 if (stack)
9875 {
9876 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
9877 return;
9878 }
9879
9880 /* The label is not in an enclosing block, so illegal. This was
9881 allowed in Fortran 66, so we allow it as extension. No
9882 further checks are necessary in this case. */
9883 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
9884 "as the GOTO statement at %L", &label->where,
9885 &code->loc);
9886 return;
9887 }
9888
9889
9890 /* Check whether EXPR1 has the same shape as EXPR2. */
9891
9892 static bool
9893 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
9894 {
9895 mpz_t shape[GFC_MAX_DIMENSIONS];
9896 mpz_t shape2[GFC_MAX_DIMENSIONS];
9897 bool result = false;
9898 int i;
9899
9900 /* Compare the rank. */
9901 if (expr1->rank != expr2->rank)
9902 return result;
9903
9904 /* Compare the size of each dimension. */
9905 for (i=0; i<expr1->rank; i++)
9906 {
9907 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
9908 goto ignore;
9909
9910 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
9911 goto ignore;
9912
9913 if (mpz_cmp (shape[i], shape2[i]))
9914 goto over;
9915 }
9916
9917 /* When either of the two expression is an assumed size array, we
9918 ignore the comparison of dimension sizes. */
9919 ignore:
9920 result = true;
9921
9922 over:
9923 gfc_clear_shape (shape, i);
9924 gfc_clear_shape (shape2, i);
9925 return result;
9926 }
9927
9928
9929 /* Check whether a WHERE assignment target or a WHERE mask expression
9930 has the same shape as the outmost WHERE mask expression. */
9931
9932 static void
9933 resolve_where (gfc_code *code, gfc_expr *mask)
9934 {
9935 gfc_code *cblock;
9936 gfc_code *cnext;
9937 gfc_expr *e = NULL;
9938
9939 cblock = code->block;
9940
9941 /* Store the first WHERE mask-expr of the WHERE statement or construct.
9942 In case of nested WHERE, only the outmost one is stored. */
9943 if (mask == NULL) /* outmost WHERE */
9944 e = cblock->expr1;
9945 else /* inner WHERE */
9946 e = mask;
9947
9948 while (cblock)
9949 {
9950 if (cblock->expr1)
9951 {
9952 /* Check if the mask-expr has a consistent shape with the
9953 outmost WHERE mask-expr. */
9954 if (!resolve_where_shape (cblock->expr1, e))
9955 gfc_error ("WHERE mask at %L has inconsistent shape",
9956 &cblock->expr1->where);
9957 }
9958
9959 /* the assignment statement of a WHERE statement, or the first
9960 statement in where-body-construct of a WHERE construct */
9961 cnext = cblock->next;
9962 while (cnext)
9963 {
9964 switch (cnext->op)
9965 {
9966 /* WHERE assignment statement */
9967 case EXEC_ASSIGN:
9968
9969 /* Check shape consistent for WHERE assignment target. */
9970 if (e && !resolve_where_shape (cnext->expr1, e))
9971 gfc_error ("WHERE assignment target at %L has "
9972 "inconsistent shape", &cnext->expr1->where);
9973 break;
9974
9975
9976 case EXEC_ASSIGN_CALL:
9977 resolve_call (cnext);
9978 if (!cnext->resolved_sym->attr.elemental)
9979 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9980 &cnext->ext.actual->expr->where);
9981 break;
9982
9983 /* WHERE or WHERE construct is part of a where-body-construct */
9984 case EXEC_WHERE:
9985 resolve_where (cnext, e);
9986 break;
9987
9988 default:
9989 gfc_error ("Unsupported statement inside WHERE at %L",
9990 &cnext->loc);
9991 }
9992 /* the next statement within the same where-body-construct */
9993 cnext = cnext->next;
9994 }
9995 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9996 cblock = cblock->block;
9997 }
9998 }
9999
10000
10001 /* Resolve assignment in FORALL construct.
10002 NVAR is the number of FORALL index variables, and VAR_EXPR records the
10003 FORALL index variables. */
10004
10005 static void
10006 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
10007 {
10008 int n;
10009
10010 for (n = 0; n < nvar; n++)
10011 {
10012 gfc_symbol *forall_index;
10013
10014 forall_index = var_expr[n]->symtree->n.sym;
10015
10016 /* Check whether the assignment target is one of the FORALL index
10017 variable. */
10018 if ((code->expr1->expr_type == EXPR_VARIABLE)
10019 && (code->expr1->symtree->n.sym == forall_index))
10020 gfc_error ("Assignment to a FORALL index variable at %L",
10021 &code->expr1->where);
10022 else
10023 {
10024 /* If one of the FORALL index variables doesn't appear in the
10025 assignment variable, then there could be a many-to-one
10026 assignment. Emit a warning rather than an error because the
10027 mask could be resolving this problem. */
10028 if (!find_forall_index (code->expr1, forall_index, 0))
10029 gfc_warning (0, "The FORALL with index %qs is not used on the "
10030 "left side of the assignment at %L and so might "
10031 "cause multiple assignment to this object",
10032 var_expr[n]->symtree->name, &code->expr1->where);
10033 }
10034 }
10035 }
10036
10037
10038 /* Resolve WHERE statement in FORALL construct. */
10039
10040 static void
10041 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
10042 gfc_expr **var_expr)
10043 {
10044 gfc_code *cblock;
10045 gfc_code *cnext;
10046
10047 cblock = code->block;
10048 while (cblock)
10049 {
10050 /* the assignment statement of a WHERE statement, or the first
10051 statement in where-body-construct of a WHERE construct */
10052 cnext = cblock->next;
10053 while (cnext)
10054 {
10055 switch (cnext->op)
10056 {
10057 /* WHERE assignment statement */
10058 case EXEC_ASSIGN:
10059 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
10060 break;
10061
10062 /* WHERE operator assignment statement */
10063 case EXEC_ASSIGN_CALL:
10064 resolve_call (cnext);
10065 if (!cnext->resolved_sym->attr.elemental)
10066 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
10067 &cnext->ext.actual->expr->where);
10068 break;
10069
10070 /* WHERE or WHERE construct is part of a where-body-construct */
10071 case EXEC_WHERE:
10072 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
10073 break;
10074
10075 default:
10076 gfc_error ("Unsupported statement inside WHERE at %L",
10077 &cnext->loc);
10078 }
10079 /* the next statement within the same where-body-construct */
10080 cnext = cnext->next;
10081 }
10082 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
10083 cblock = cblock->block;
10084 }
10085 }
10086
10087
10088 /* Traverse the FORALL body to check whether the following errors exist:
10089 1. For assignment, check if a many-to-one assignment happens.
10090 2. For WHERE statement, check the WHERE body to see if there is any
10091 many-to-one assignment. */
10092
10093 static void
10094 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
10095 {
10096 gfc_code *c;
10097
10098 c = code->block->next;
10099 while (c)
10100 {
10101 switch (c->op)
10102 {
10103 case EXEC_ASSIGN:
10104 case EXEC_POINTER_ASSIGN:
10105 gfc_resolve_assign_in_forall (c, nvar, var_expr);
10106 break;
10107
10108 case EXEC_ASSIGN_CALL:
10109 resolve_call (c);
10110 break;
10111
10112 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
10113 there is no need to handle it here. */
10114 case EXEC_FORALL:
10115 break;
10116 case EXEC_WHERE:
10117 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
10118 break;
10119 default:
10120 break;
10121 }
10122 /* The next statement in the FORALL body. */
10123 c = c->next;
10124 }
10125 }
10126
10127
10128 /* Counts the number of iterators needed inside a forall construct, including
10129 nested forall constructs. This is used to allocate the needed memory
10130 in gfc_resolve_forall. */
10131
10132 static int
10133 gfc_count_forall_iterators (gfc_code *code)
10134 {
10135 int max_iters, sub_iters, current_iters;
10136 gfc_forall_iterator *fa;
10137
10138 gcc_assert(code->op == EXEC_FORALL);
10139 max_iters = 0;
10140 current_iters = 0;
10141
10142 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10143 current_iters ++;
10144
10145 code = code->block->next;
10146
10147 while (code)
10148 {
10149 if (code->op == EXEC_FORALL)
10150 {
10151 sub_iters = gfc_count_forall_iterators (code);
10152 if (sub_iters > max_iters)
10153 max_iters = sub_iters;
10154 }
10155 code = code->next;
10156 }
10157
10158 return current_iters + max_iters;
10159 }
10160
10161
10162 /* Given a FORALL construct, first resolve the FORALL iterator, then call
10163 gfc_resolve_forall_body to resolve the FORALL body. */
10164
10165 static void
10166 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
10167 {
10168 static gfc_expr **var_expr;
10169 static int total_var = 0;
10170 static int nvar = 0;
10171 int i, old_nvar, tmp;
10172 gfc_forall_iterator *fa;
10173
10174 old_nvar = nvar;
10175
10176 if (!gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
10177 return;
10178
10179 /* Start to resolve a FORALL construct */
10180 if (forall_save == 0)
10181 {
10182 /* Count the total number of FORALL indices in the nested FORALL
10183 construct in order to allocate the VAR_EXPR with proper size. */
10184 total_var = gfc_count_forall_iterators (code);
10185
10186 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
10187 var_expr = XCNEWVEC (gfc_expr *, total_var);
10188 }
10189
10190 /* The information about FORALL iterator, including FORALL indices start, end
10191 and stride. An outer FORALL indice cannot appear in start, end or stride. */
10192 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
10193 {
10194 /* Fortran 20008: C738 (R753). */
10195 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
10196 {
10197 gfc_error ("FORALL index-name at %L must be a scalar variable "
10198 "of type integer", &fa->var->where);
10199 continue;
10200 }
10201
10202 /* Check if any outer FORALL index name is the same as the current
10203 one. */
10204 for (i = 0; i < nvar; i++)
10205 {
10206 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
10207 gfc_error ("An outer FORALL construct already has an index "
10208 "with this name %L", &fa->var->where);
10209 }
10210
10211 /* Record the current FORALL index. */
10212 var_expr[nvar] = gfc_copy_expr (fa->var);
10213
10214 nvar++;
10215
10216 /* No memory leak. */
10217 gcc_assert (nvar <= total_var);
10218 }
10219
10220 /* Resolve the FORALL body. */
10221 gfc_resolve_forall_body (code, nvar, var_expr);
10222
10223 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
10224 gfc_resolve_blocks (code->block, ns);
10225
10226 tmp = nvar;
10227 nvar = old_nvar;
10228 /* Free only the VAR_EXPRs allocated in this frame. */
10229 for (i = nvar; i < tmp; i++)
10230 gfc_free_expr (var_expr[i]);
10231
10232 if (nvar == 0)
10233 {
10234 /* We are in the outermost FORALL construct. */
10235 gcc_assert (forall_save == 0);
10236
10237 /* VAR_EXPR is not needed any more. */
10238 free (var_expr);
10239 total_var = 0;
10240 }
10241 }
10242
10243
10244 /* Resolve a BLOCK construct statement. */
10245
10246 static void
10247 resolve_block_construct (gfc_code* code)
10248 {
10249 /* Resolve the BLOCK's namespace. */
10250 gfc_resolve (code->ext.block.ns);
10251
10252 /* For an ASSOCIATE block, the associations (and their targets) are already
10253 resolved during resolve_symbol. */
10254 }
10255
10256
10257 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
10258 DO code nodes. */
10259
10260 void
10261 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
10262 {
10263 bool t;
10264
10265 for (; b; b = b->block)
10266 {
10267 t = gfc_resolve_expr (b->expr1);
10268 if (!gfc_resolve_expr (b->expr2))
10269 t = false;
10270
10271 switch (b->op)
10272 {
10273 case EXEC_IF:
10274 if (t && b->expr1 != NULL
10275 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
10276 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
10277 &b->expr1->where);
10278 break;
10279
10280 case EXEC_WHERE:
10281 if (t
10282 && b->expr1 != NULL
10283 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10284 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10285 &b->expr1->where);
10286 break;
10287
10288 case EXEC_GOTO:
10289 resolve_branch (b->label1, b);
10290 break;
10291
10292 case EXEC_BLOCK:
10293 resolve_block_construct (b);
10294 break;
10295
10296 case EXEC_SELECT:
10297 case EXEC_SELECT_TYPE:
10298 case EXEC_FORALL:
10299 case EXEC_DO:
10300 case EXEC_DO_WHILE:
10301 case EXEC_DO_CONCURRENT:
10302 case EXEC_CRITICAL:
10303 case EXEC_READ:
10304 case EXEC_WRITE:
10305 case EXEC_IOLENGTH:
10306 case EXEC_WAIT:
10307 break;
10308
10309 case EXEC_OMP_ATOMIC:
10310 case EXEC_OACC_ATOMIC:
10311 {
10312 gfc_omp_atomic_op aop
10313 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10314
10315 /* Verify this before calling gfc_resolve_code, which might
10316 change it. */
10317 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10318 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10319 && b->next->next == NULL)
10320 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10321 && b->next->next != NULL
10322 && b->next->next->op == EXEC_ASSIGN
10323 && b->next->next->next == NULL));
10324 }
10325 break;
10326
10327 case EXEC_OACC_PARALLEL_LOOP:
10328 case EXEC_OACC_PARALLEL:
10329 case EXEC_OACC_KERNELS_LOOP:
10330 case EXEC_OACC_KERNELS:
10331 case EXEC_OACC_DATA:
10332 case EXEC_OACC_HOST_DATA:
10333 case EXEC_OACC_LOOP:
10334 case EXEC_OACC_UPDATE:
10335 case EXEC_OACC_WAIT:
10336 case EXEC_OACC_CACHE:
10337 case EXEC_OACC_ENTER_DATA:
10338 case EXEC_OACC_EXIT_DATA:
10339 case EXEC_OACC_ROUTINE:
10340 case EXEC_OMP_CRITICAL:
10341 case EXEC_OMP_DISTRIBUTE:
10342 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10343 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10344 case EXEC_OMP_DISTRIBUTE_SIMD:
10345 case EXEC_OMP_DO:
10346 case EXEC_OMP_DO_SIMD:
10347 case EXEC_OMP_MASTER:
10348 case EXEC_OMP_ORDERED:
10349 case EXEC_OMP_PARALLEL:
10350 case EXEC_OMP_PARALLEL_DO:
10351 case EXEC_OMP_PARALLEL_DO_SIMD:
10352 case EXEC_OMP_PARALLEL_SECTIONS:
10353 case EXEC_OMP_PARALLEL_WORKSHARE:
10354 case EXEC_OMP_SECTIONS:
10355 case EXEC_OMP_SIMD:
10356 case EXEC_OMP_SINGLE:
10357 case EXEC_OMP_TARGET:
10358 case EXEC_OMP_TARGET_DATA:
10359 case EXEC_OMP_TARGET_ENTER_DATA:
10360 case EXEC_OMP_TARGET_EXIT_DATA:
10361 case EXEC_OMP_TARGET_PARALLEL:
10362 case EXEC_OMP_TARGET_PARALLEL_DO:
10363 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10364 case EXEC_OMP_TARGET_SIMD:
10365 case EXEC_OMP_TARGET_TEAMS:
10366 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10367 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10368 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10369 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10370 case EXEC_OMP_TARGET_UPDATE:
10371 case EXEC_OMP_TASK:
10372 case EXEC_OMP_TASKGROUP:
10373 case EXEC_OMP_TASKLOOP:
10374 case EXEC_OMP_TASKLOOP_SIMD:
10375 case EXEC_OMP_TASKWAIT:
10376 case EXEC_OMP_TASKYIELD:
10377 case EXEC_OMP_TEAMS:
10378 case EXEC_OMP_TEAMS_DISTRIBUTE:
10379 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10380 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10381 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10382 case EXEC_OMP_WORKSHARE:
10383 break;
10384
10385 default:
10386 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10387 }
10388
10389 gfc_resolve_code (b->next, ns);
10390 }
10391 }
10392
10393
10394 /* Does everything to resolve an ordinary assignment. Returns true
10395 if this is an interface assignment. */
10396 static bool
10397 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10398 {
10399 bool rval = false;
10400 gfc_expr *lhs;
10401 gfc_expr *rhs;
10402 int n;
10403 gfc_ref *ref;
10404 symbol_attribute attr;
10405
10406 if (gfc_extend_assign (code, ns))
10407 {
10408 gfc_expr** rhsptr;
10409
10410 if (code->op == EXEC_ASSIGN_CALL)
10411 {
10412 lhs = code->ext.actual->expr;
10413 rhsptr = &code->ext.actual->next->expr;
10414 }
10415 else
10416 {
10417 gfc_actual_arglist* args;
10418 gfc_typebound_proc* tbp;
10419
10420 gcc_assert (code->op == EXEC_COMPCALL);
10421
10422 args = code->expr1->value.compcall.actual;
10423 lhs = args->expr;
10424 rhsptr = &args->next->expr;
10425
10426 tbp = code->expr1->value.compcall.tbp;
10427 gcc_assert (!tbp->is_generic);
10428 }
10429
10430 /* Make a temporary rhs when there is a default initializer
10431 and rhs is the same symbol as the lhs. */
10432 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10433 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10434 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10435 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10436 *rhsptr = gfc_get_parentheses (*rhsptr);
10437
10438 return true;
10439 }
10440
10441 lhs = code->expr1;
10442 rhs = code->expr2;
10443
10444 if (rhs->is_boz
10445 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L outside "
10446 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
10447 &code->loc))
10448 return false;
10449
10450 /* Handle the case of a BOZ literal on the RHS. */
10451 if (rhs->is_boz && lhs->ts.type != BT_INTEGER)
10452 {
10453 int rc;
10454 if (warn_surprising)
10455 gfc_warning (OPT_Wsurprising,
10456 "BOZ literal at %L is bitwise transferred "
10457 "non-integer symbol %qs", &code->loc,
10458 lhs->symtree->n.sym->name);
10459
10460 if (!gfc_convert_boz (rhs, &lhs->ts))
10461 return false;
10462 if ((rc = gfc_range_check (rhs)) != ARITH_OK)
10463 {
10464 if (rc == ARITH_UNDERFLOW)
10465 gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
10466 ". This check can be disabled with the option "
10467 "%<-fno-range-check%>", &rhs->where);
10468 else if (rc == ARITH_OVERFLOW)
10469 gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
10470 ". This check can be disabled with the option "
10471 "%<-fno-range-check%>", &rhs->where);
10472 else if (rc == ARITH_NAN)
10473 gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
10474 ". This check can be disabled with the option "
10475 "%<-fno-range-check%>", &rhs->where);
10476 return false;
10477 }
10478 }
10479
10480 if (lhs->ts.type == BT_CHARACTER
10481 && warn_character_truncation)
10482 {
10483 HOST_WIDE_INT llen = 0, rlen = 0;
10484 if (lhs->ts.u.cl != NULL
10485 && lhs->ts.u.cl->length != NULL
10486 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10487 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10488
10489 if (rhs->expr_type == EXPR_CONSTANT)
10490 rlen = rhs->value.character.length;
10491
10492 else if (rhs->ts.u.cl != NULL
10493 && rhs->ts.u.cl->length != NULL
10494 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10495 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10496
10497 if (rlen && llen && rlen > llen)
10498 gfc_warning_now (OPT_Wcharacter_truncation,
10499 "CHARACTER expression will be truncated "
10500 "in assignment (%ld/%ld) at %L",
10501 (long) llen, (long) rlen, &code->loc);
10502 }
10503
10504 /* Ensure that a vector index expression for the lvalue is evaluated
10505 to a temporary if the lvalue symbol is referenced in it. */
10506 if (lhs->rank)
10507 {
10508 for (ref = lhs->ref; ref; ref= ref->next)
10509 if (ref->type == REF_ARRAY)
10510 {
10511 for (n = 0; n < ref->u.ar.dimen; n++)
10512 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10513 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10514 ref->u.ar.start[n]))
10515 ref->u.ar.start[n]
10516 = gfc_get_parentheses (ref->u.ar.start[n]);
10517 }
10518 }
10519
10520 if (gfc_pure (NULL))
10521 {
10522 if (lhs->ts.type == BT_DERIVED
10523 && lhs->expr_type == EXPR_VARIABLE
10524 && lhs->ts.u.derived->attr.pointer_comp
10525 && rhs->expr_type == EXPR_VARIABLE
10526 && (gfc_impure_variable (rhs->symtree->n.sym)
10527 || gfc_is_coindexed (rhs)))
10528 {
10529 /* F2008, C1283. */
10530 if (gfc_is_coindexed (rhs))
10531 gfc_error ("Coindexed expression at %L is assigned to "
10532 "a derived type variable with a POINTER "
10533 "component in a PURE procedure",
10534 &rhs->where);
10535 else
10536 gfc_error ("The impure variable at %L is assigned to "
10537 "a derived type variable with a POINTER "
10538 "component in a PURE procedure (12.6)",
10539 &rhs->where);
10540 return rval;
10541 }
10542
10543 /* Fortran 2008, C1283. */
10544 if (gfc_is_coindexed (lhs))
10545 {
10546 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10547 "procedure", &rhs->where);
10548 return rval;
10549 }
10550 }
10551
10552 if (gfc_implicit_pure (NULL))
10553 {
10554 if (lhs->expr_type == EXPR_VARIABLE
10555 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10556 && lhs->symtree->n.sym->ns != gfc_current_ns)
10557 gfc_unset_implicit_pure (NULL);
10558
10559 if (lhs->ts.type == BT_DERIVED
10560 && lhs->expr_type == EXPR_VARIABLE
10561 && lhs->ts.u.derived->attr.pointer_comp
10562 && rhs->expr_type == EXPR_VARIABLE
10563 && (gfc_impure_variable (rhs->symtree->n.sym)
10564 || gfc_is_coindexed (rhs)))
10565 gfc_unset_implicit_pure (NULL);
10566
10567 /* Fortran 2008, C1283. */
10568 if (gfc_is_coindexed (lhs))
10569 gfc_unset_implicit_pure (NULL);
10570 }
10571
10572 /* F2008, 7.2.1.2. */
10573 attr = gfc_expr_attr (lhs);
10574 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10575 {
10576 if (attr.codimension)
10577 {
10578 gfc_error ("Assignment to polymorphic coarray at %L is not "
10579 "permitted", &lhs->where);
10580 return false;
10581 }
10582 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10583 "polymorphic variable at %L", &lhs->where))
10584 return false;
10585 if (!flag_realloc_lhs)
10586 {
10587 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10588 "requires %<-frealloc-lhs%>", &lhs->where);
10589 return false;
10590 }
10591 }
10592 else if (lhs->ts.type == BT_CLASS)
10593 {
10594 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10595 "assignment at %L - check that there is a matching specific "
10596 "subroutine for '=' operator", &lhs->where);
10597 return false;
10598 }
10599
10600 bool lhs_coindexed = gfc_is_coindexed (lhs);
10601
10602 /* F2008, Section 7.2.1.2. */
10603 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10604 {
10605 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10606 "component in assignment at %L", &lhs->where);
10607 return false;
10608 }
10609
10610 /* Assign the 'data' of a class object to a derived type. */
10611 if (lhs->ts.type == BT_DERIVED
10612 && rhs->ts.type == BT_CLASS
10613 && rhs->expr_type != EXPR_ARRAY)
10614 gfc_add_data_component (rhs);
10615
10616 /* Make sure there is a vtable and, in particular, a _copy for the
10617 rhs type. */
10618 if (UNLIMITED_POLY (lhs) && lhs->rank && rhs->ts.type != BT_CLASS)
10619 gfc_find_vtab (&rhs->ts);
10620
10621 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
10622 && (lhs_coindexed
10623 || (code->expr2->expr_type == EXPR_FUNCTION
10624 && code->expr2->value.function.isym
10625 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
10626 && (code->expr1->rank == 0 || code->expr2->rank != 0)
10627 && !gfc_expr_attr (rhs).allocatable
10628 && !gfc_has_vector_subscript (rhs)));
10629
10630 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
10631
10632 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10633 Additionally, insert this code when the RHS is a CAF as we then use the
10634 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10635 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10636 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10637 path. */
10638 if (caf_convert_to_send)
10639 {
10640 if (code->expr2->expr_type == EXPR_FUNCTION
10641 && code->expr2->value.function.isym
10642 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
10643 remove_caf_get_intrinsic (code->expr2);
10644 code->op = EXEC_CALL;
10645 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
10646 code->resolved_sym = code->symtree->n.sym;
10647 code->resolved_sym->attr.flavor = FL_PROCEDURE;
10648 code->resolved_sym->attr.intrinsic = 1;
10649 code->resolved_sym->attr.subroutine = 1;
10650 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
10651 gfc_commit_symbol (code->resolved_sym);
10652 code->ext.actual = gfc_get_actual_arglist ();
10653 code->ext.actual->expr = lhs;
10654 code->ext.actual->next = gfc_get_actual_arglist ();
10655 code->ext.actual->next->expr = rhs;
10656 code->expr1 = NULL;
10657 code->expr2 = NULL;
10658 }
10659
10660 return false;
10661 }
10662
10663
10664 /* Add a component reference onto an expression. */
10665
10666 static void
10667 add_comp_ref (gfc_expr *e, gfc_component *c)
10668 {
10669 gfc_ref **ref;
10670 ref = &(e->ref);
10671 while (*ref)
10672 ref = &((*ref)->next);
10673 *ref = gfc_get_ref ();
10674 (*ref)->type = REF_COMPONENT;
10675 (*ref)->u.c.sym = e->ts.u.derived;
10676 (*ref)->u.c.component = c;
10677 e->ts = c->ts;
10678
10679 /* Add a full array ref, as necessary. */
10680 if (c->as)
10681 {
10682 gfc_add_full_array_ref (e, c->as);
10683 e->rank = c->as->rank;
10684 }
10685 }
10686
10687
10688 /* Build an assignment. Keep the argument 'op' for future use, so that
10689 pointer assignments can be made. */
10690
10691 static gfc_code *
10692 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
10693 gfc_component *comp1, gfc_component *comp2, locus loc)
10694 {
10695 gfc_code *this_code;
10696
10697 this_code = gfc_get_code (op);
10698 this_code->next = NULL;
10699 this_code->expr1 = gfc_copy_expr (expr1);
10700 this_code->expr2 = gfc_copy_expr (expr2);
10701 this_code->loc = loc;
10702 if (comp1 && comp2)
10703 {
10704 add_comp_ref (this_code->expr1, comp1);
10705 add_comp_ref (this_code->expr2, comp2);
10706 }
10707
10708 return this_code;
10709 }
10710
10711
10712 /* Makes a temporary variable expression based on the characteristics of
10713 a given variable expression. */
10714
10715 static gfc_expr*
10716 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
10717 {
10718 static int serial = 0;
10719 char name[GFC_MAX_SYMBOL_LEN];
10720 gfc_symtree *tmp;
10721 gfc_array_spec *as;
10722 gfc_array_ref *aref;
10723 gfc_ref *ref;
10724
10725 sprintf (name, GFC_PREFIX("DA%d"), serial++);
10726 gfc_get_sym_tree (name, ns, &tmp, false);
10727 gfc_add_type (tmp->n.sym, &e->ts, NULL);
10728
10729 if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
10730 tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
10731 NULL,
10732 e->value.character.length);
10733
10734 as = NULL;
10735 ref = NULL;
10736 aref = NULL;
10737
10738 /* Obtain the arrayspec for the temporary. */
10739 if (e->rank && e->expr_type != EXPR_ARRAY
10740 && e->expr_type != EXPR_FUNCTION
10741 && e->expr_type != EXPR_OP)
10742 {
10743 aref = gfc_find_array_ref (e);
10744 if (e->expr_type == EXPR_VARIABLE
10745 && e->symtree->n.sym->as == aref->as)
10746 as = aref->as;
10747 else
10748 {
10749 for (ref = e->ref; ref; ref = ref->next)
10750 if (ref->type == REF_COMPONENT
10751 && ref->u.c.component->as == aref->as)
10752 {
10753 as = aref->as;
10754 break;
10755 }
10756 }
10757 }
10758
10759 /* Add the attributes and the arrayspec to the temporary. */
10760 tmp->n.sym->attr = gfc_expr_attr (e);
10761 tmp->n.sym->attr.function = 0;
10762 tmp->n.sym->attr.result = 0;
10763 tmp->n.sym->attr.flavor = FL_VARIABLE;
10764 tmp->n.sym->attr.dummy = 0;
10765 tmp->n.sym->attr.intent = INTENT_UNKNOWN;
10766
10767 if (as)
10768 {
10769 tmp->n.sym->as = gfc_copy_array_spec (as);
10770 if (!ref)
10771 ref = e->ref;
10772 if (as->type == AS_DEFERRED)
10773 tmp->n.sym->attr.allocatable = 1;
10774 }
10775 else if (e->rank && (e->expr_type == EXPR_ARRAY
10776 || e->expr_type == EXPR_FUNCTION
10777 || e->expr_type == EXPR_OP))
10778 {
10779 tmp->n.sym->as = gfc_get_array_spec ();
10780 tmp->n.sym->as->type = AS_DEFERRED;
10781 tmp->n.sym->as->rank = e->rank;
10782 tmp->n.sym->attr.allocatable = 1;
10783 tmp->n.sym->attr.dimension = 1;
10784 }
10785 else
10786 tmp->n.sym->attr.dimension = 0;
10787
10788 gfc_set_sym_referenced (tmp->n.sym);
10789 gfc_commit_symbol (tmp->n.sym);
10790 e = gfc_lval_expr_from_sym (tmp->n.sym);
10791
10792 /* Should the lhs be a section, use its array ref for the
10793 temporary expression. */
10794 if (aref && aref->type != AR_FULL)
10795 {
10796 gfc_free_ref_list (e->ref);
10797 e->ref = gfc_copy_ref (ref);
10798 }
10799 return e;
10800 }
10801
10802
10803 /* Add one line of code to the code chain, making sure that 'head' and
10804 'tail' are appropriately updated. */
10805
10806 static void
10807 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
10808 {
10809 gcc_assert (this_code);
10810 if (*head == NULL)
10811 *head = *tail = *this_code;
10812 else
10813 *tail = gfc_append_code (*tail, *this_code);
10814 *this_code = NULL;
10815 }
10816
10817
10818 /* Counts the potential number of part array references that would
10819 result from resolution of typebound defined assignments. */
10820
10821 static int
10822 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
10823 {
10824 gfc_component *c;
10825 int c_depth = 0, t_depth;
10826
10827 for (c= derived->components; c; c = c->next)
10828 {
10829 if ((!gfc_bt_struct (c->ts.type)
10830 || c->attr.pointer
10831 || c->attr.allocatable
10832 || c->attr.proc_pointer_comp
10833 || c->attr.class_pointer
10834 || c->attr.proc_pointer)
10835 && !c->attr.defined_assign_comp)
10836 continue;
10837
10838 if (c->as && c_depth == 0)
10839 c_depth = 1;
10840
10841 if (c->ts.u.derived->attr.defined_assign_comp)
10842 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
10843 c->as ? 1 : 0);
10844 else
10845 t_depth = 0;
10846
10847 c_depth = t_depth > c_depth ? t_depth : c_depth;
10848 }
10849 return depth + c_depth;
10850 }
10851
10852
10853 /* Implement 7.2.1.3 of the F08 standard:
10854 "An intrinsic assignment where the variable is of derived type is
10855 performed as if each component of the variable were assigned from the
10856 corresponding component of expr using pointer assignment (7.2.2) for
10857 each pointer component, defined assignment for each nonpointer
10858 nonallocatable component of a type that has a type-bound defined
10859 assignment consistent with the component, intrinsic assignment for
10860 each other nonpointer nonallocatable component, ..."
10861
10862 The pointer assignments are taken care of by the intrinsic
10863 assignment of the structure itself. This function recursively adds
10864 defined assignments where required. The recursion is accomplished
10865 by calling gfc_resolve_code.
10866
10867 When the lhs in a defined assignment has intent INOUT, we need a
10868 temporary for the lhs. In pseudo-code:
10869
10870 ! Only call function lhs once.
10871 if (lhs is not a constant or an variable)
10872 temp_x = expr2
10873 expr2 => temp_x
10874 ! Do the intrinsic assignment
10875 expr1 = expr2
10876 ! Now do the defined assignments
10877 do over components with typebound defined assignment [%cmp]
10878 #if one component's assignment procedure is INOUT
10879 t1 = expr1
10880 #if expr2 non-variable
10881 temp_x = expr2
10882 expr2 => temp_x
10883 # endif
10884 expr1 = expr2
10885 # for each cmp
10886 t1%cmp {defined=} expr2%cmp
10887 expr1%cmp = t1%cmp
10888 #else
10889 expr1 = expr2
10890
10891 # for each cmp
10892 expr1%cmp {defined=} expr2%cmp
10893 #endif
10894 */
10895
10896 /* The temporary assignments have to be put on top of the additional
10897 code to avoid the result being changed by the intrinsic assignment.
10898 */
10899 static int component_assignment_level = 0;
10900 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
10901
10902 static void
10903 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
10904 {
10905 gfc_component *comp1, *comp2;
10906 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
10907 gfc_expr *t1;
10908 int error_count, depth;
10909
10910 gfc_get_errors (NULL, &error_count);
10911
10912 /* Filter out continuing processing after an error. */
10913 if (error_count
10914 || (*code)->expr1->ts.type != BT_DERIVED
10915 || (*code)->expr2->ts.type != BT_DERIVED)
10916 return;
10917
10918 /* TODO: Handle more than one part array reference in assignments. */
10919 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
10920 (*code)->expr1->rank ? 1 : 0);
10921 if (depth > 1)
10922 {
10923 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
10924 "done because multiple part array references would "
10925 "occur in intermediate expressions.", &(*code)->loc);
10926 return;
10927 }
10928
10929 component_assignment_level++;
10930
10931 /* Create a temporary so that functions get called only once. */
10932 if ((*code)->expr2->expr_type != EXPR_VARIABLE
10933 && (*code)->expr2->expr_type != EXPR_CONSTANT)
10934 {
10935 gfc_expr *tmp_expr;
10936
10937 /* Assign the rhs to the temporary. */
10938 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
10939 this_code = build_assignment (EXEC_ASSIGN,
10940 tmp_expr, (*code)->expr2,
10941 NULL, NULL, (*code)->loc);
10942 /* Add the code and substitute the rhs expression. */
10943 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
10944 gfc_free_expr ((*code)->expr2);
10945 (*code)->expr2 = tmp_expr;
10946 }
10947
10948 /* Do the intrinsic assignment. This is not needed if the lhs is one
10949 of the temporaries generated here, since the intrinsic assignment
10950 to the final result already does this. */
10951 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
10952 {
10953 this_code = build_assignment (EXEC_ASSIGN,
10954 (*code)->expr1, (*code)->expr2,
10955 NULL, NULL, (*code)->loc);
10956 add_code_to_chain (&this_code, &head, &tail);
10957 }
10958
10959 comp1 = (*code)->expr1->ts.u.derived->components;
10960 comp2 = (*code)->expr2->ts.u.derived->components;
10961
10962 t1 = NULL;
10963 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
10964 {
10965 bool inout = false;
10966
10967 /* The intrinsic assignment does the right thing for pointers
10968 of all kinds and allocatable components. */
10969 if (!gfc_bt_struct (comp1->ts.type)
10970 || comp1->attr.pointer
10971 || comp1->attr.allocatable
10972 || comp1->attr.proc_pointer_comp
10973 || comp1->attr.class_pointer
10974 || comp1->attr.proc_pointer)
10975 continue;
10976
10977 /* Make an assigment for this component. */
10978 this_code = build_assignment (EXEC_ASSIGN,
10979 (*code)->expr1, (*code)->expr2,
10980 comp1, comp2, (*code)->loc);
10981
10982 /* Convert the assignment if there is a defined assignment for
10983 this type. Otherwise, using the call from gfc_resolve_code,
10984 recurse into its components. */
10985 gfc_resolve_code (this_code, ns);
10986
10987 if (this_code->op == EXEC_ASSIGN_CALL)
10988 {
10989 gfc_formal_arglist *dummy_args;
10990 gfc_symbol *rsym;
10991 /* Check that there is a typebound defined assignment. If not,
10992 then this must be a module defined assignment. We cannot
10993 use the defined_assign_comp attribute here because it must
10994 be this derived type that has the defined assignment and not
10995 a parent type. */
10996 if (!(comp1->ts.u.derived->f2k_derived
10997 && comp1->ts.u.derived->f2k_derived
10998 ->tb_op[INTRINSIC_ASSIGN]))
10999 {
11000 gfc_free_statements (this_code);
11001 this_code = NULL;
11002 continue;
11003 }
11004
11005 /* If the first argument of the subroutine has intent INOUT
11006 a temporary must be generated and used instead. */
11007 rsym = this_code->resolved_sym;
11008 dummy_args = gfc_sym_get_dummy_args (rsym);
11009 if (dummy_args
11010 && dummy_args->sym->attr.intent == INTENT_INOUT)
11011 {
11012 gfc_code *temp_code;
11013 inout = true;
11014
11015 /* Build the temporary required for the assignment and put
11016 it at the head of the generated code. */
11017 if (!t1)
11018 {
11019 t1 = get_temp_from_expr ((*code)->expr1, ns);
11020 temp_code = build_assignment (EXEC_ASSIGN,
11021 t1, (*code)->expr1,
11022 NULL, NULL, (*code)->loc);
11023
11024 /* For allocatable LHS, check whether it is allocated. Note
11025 that allocatable components with defined assignment are
11026 not yet support. See PR 57696. */
11027 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
11028 {
11029 gfc_code *block;
11030 gfc_expr *e =
11031 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11032 block = gfc_get_code (EXEC_IF);
11033 block->block = gfc_get_code (EXEC_IF);
11034 block->block->expr1
11035 = gfc_build_intrinsic_call (ns,
11036 GFC_ISYM_ALLOCATED, "allocated",
11037 (*code)->loc, 1, e);
11038 block->block->next = temp_code;
11039 temp_code = block;
11040 }
11041 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
11042 }
11043
11044 /* Replace the first actual arg with the component of the
11045 temporary. */
11046 gfc_free_expr (this_code->ext.actual->expr);
11047 this_code->ext.actual->expr = gfc_copy_expr (t1);
11048 add_comp_ref (this_code->ext.actual->expr, comp1);
11049
11050 /* If the LHS variable is allocatable and wasn't allocated and
11051 the temporary is allocatable, pointer assign the address of
11052 the freshly allocated LHS to the temporary. */
11053 if ((*code)->expr1->symtree->n.sym->attr.allocatable
11054 && gfc_expr_attr ((*code)->expr1).allocatable)
11055 {
11056 gfc_code *block;
11057 gfc_expr *cond;
11058
11059 cond = gfc_get_expr ();
11060 cond->ts.type = BT_LOGICAL;
11061 cond->ts.kind = gfc_default_logical_kind;
11062 cond->expr_type = EXPR_OP;
11063 cond->where = (*code)->loc;
11064 cond->value.op.op = INTRINSIC_NOT;
11065 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
11066 GFC_ISYM_ALLOCATED, "allocated",
11067 (*code)->loc, 1, gfc_copy_expr (t1));
11068 block = gfc_get_code (EXEC_IF);
11069 block->block = gfc_get_code (EXEC_IF);
11070 block->block->expr1 = cond;
11071 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11072 t1, (*code)->expr1,
11073 NULL, NULL, (*code)->loc);
11074 add_code_to_chain (&block, &head, &tail);
11075 }
11076 }
11077 }
11078 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
11079 {
11080 /* Don't add intrinsic assignments since they are already
11081 effected by the intrinsic assignment of the structure. */
11082 gfc_free_statements (this_code);
11083 this_code = NULL;
11084 continue;
11085 }
11086
11087 add_code_to_chain (&this_code, &head, &tail);
11088
11089 if (t1 && inout)
11090 {
11091 /* Transfer the value to the final result. */
11092 this_code = build_assignment (EXEC_ASSIGN,
11093 (*code)->expr1, t1,
11094 comp1, comp2, (*code)->loc);
11095 add_code_to_chain (&this_code, &head, &tail);
11096 }
11097 }
11098
11099 /* Put the temporary assignments at the top of the generated code. */
11100 if (tmp_head && component_assignment_level == 1)
11101 {
11102 gfc_append_code (tmp_head, head);
11103 head = tmp_head;
11104 tmp_head = tmp_tail = NULL;
11105 }
11106
11107 // If we did a pointer assignment - thus, we need to ensure that the LHS is
11108 // not accidentally deallocated. Hence, nullify t1.
11109 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
11110 && gfc_expr_attr ((*code)->expr1).allocatable)
11111 {
11112 gfc_code *block;
11113 gfc_expr *cond;
11114 gfc_expr *e;
11115
11116 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
11117 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
11118 (*code)->loc, 2, gfc_copy_expr (t1), e);
11119 block = gfc_get_code (EXEC_IF);
11120 block->block = gfc_get_code (EXEC_IF);
11121 block->block->expr1 = cond;
11122 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
11123 t1, gfc_get_null_expr (&(*code)->loc),
11124 NULL, NULL, (*code)->loc);
11125 gfc_append_code (tail, block);
11126 tail = block;
11127 }
11128
11129 /* Now attach the remaining code chain to the input code. Step on
11130 to the end of the new code since resolution is complete. */
11131 gcc_assert ((*code)->op == EXEC_ASSIGN);
11132 tail->next = (*code)->next;
11133 /* Overwrite 'code' because this would place the intrinsic assignment
11134 before the temporary for the lhs is created. */
11135 gfc_free_expr ((*code)->expr1);
11136 gfc_free_expr ((*code)->expr2);
11137 **code = *head;
11138 if (head != tail)
11139 free (head);
11140 *code = tail;
11141
11142 component_assignment_level--;
11143 }
11144
11145
11146 /* F2008: Pointer function assignments are of the form:
11147 ptr_fcn (args) = expr
11148 This function breaks these assignments into two statements:
11149 temporary_pointer => ptr_fcn(args)
11150 temporary_pointer = expr */
11151
11152 static bool
11153 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
11154 {
11155 gfc_expr *tmp_ptr_expr;
11156 gfc_code *this_code;
11157 gfc_component *comp;
11158 gfc_symbol *s;
11159
11160 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
11161 return false;
11162
11163 /* Even if standard does not support this feature, continue to build
11164 the two statements to avoid upsetting frontend_passes.c. */
11165 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
11166 "%L", &(*code)->loc);
11167
11168 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
11169
11170 if (comp)
11171 s = comp->ts.interface;
11172 else
11173 s = (*code)->expr1->symtree->n.sym;
11174
11175 if (s == NULL || !s->result->attr.pointer)
11176 {
11177 gfc_error ("The function result on the lhs of the assignment at "
11178 "%L must have the pointer attribute.",
11179 &(*code)->expr1->where);
11180 (*code)->op = EXEC_NOP;
11181 return false;
11182 }
11183
11184 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
11185
11186 /* get_temp_from_expression is set up for ordinary assignments. To that
11187 end, where array bounds are not known, arrays are made allocatable.
11188 Change the temporary to a pointer here. */
11189 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
11190 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
11191 tmp_ptr_expr->where = (*code)->loc;
11192
11193 this_code = build_assignment (EXEC_ASSIGN,
11194 tmp_ptr_expr, (*code)->expr2,
11195 NULL, NULL, (*code)->loc);
11196 this_code->next = (*code)->next;
11197 (*code)->next = this_code;
11198 (*code)->op = EXEC_POINTER_ASSIGN;
11199 (*code)->expr2 = (*code)->expr1;
11200 (*code)->expr1 = tmp_ptr_expr;
11201
11202 return true;
11203 }
11204
11205
11206 /* Deferred character length assignments from an operator expression
11207 require a temporary because the character length of the lhs can
11208 change in the course of the assignment. */
11209
11210 static bool
11211 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
11212 {
11213 gfc_expr *tmp_expr;
11214 gfc_code *this_code;
11215
11216 if (!((*code)->expr1->ts.type == BT_CHARACTER
11217 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
11218 && (*code)->expr2->expr_type == EXPR_OP))
11219 return false;
11220
11221 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
11222 return false;
11223
11224 if (gfc_expr_attr ((*code)->expr1).pointer)
11225 return false;
11226
11227 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
11228 tmp_expr->where = (*code)->loc;
11229
11230 /* A new charlen is required to ensure that the variable string
11231 length is different to that of the original lhs. */
11232 tmp_expr->ts.u.cl = gfc_get_charlen();
11233 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
11234 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
11235 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
11236
11237 tmp_expr->symtree->n.sym->ts.deferred = 1;
11238
11239 this_code = build_assignment (EXEC_ASSIGN,
11240 (*code)->expr1,
11241 gfc_copy_expr (tmp_expr),
11242 NULL, NULL, (*code)->loc);
11243
11244 (*code)->expr1 = tmp_expr;
11245
11246 this_code->next = (*code)->next;
11247 (*code)->next = this_code;
11248
11249 return true;
11250 }
11251
11252
11253 /* Given a block of code, recursively resolve everything pointed to by this
11254 code block. */
11255
11256 void
11257 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
11258 {
11259 int omp_workshare_save;
11260 int forall_save, do_concurrent_save;
11261 code_stack frame;
11262 bool t;
11263
11264 frame.prev = cs_base;
11265 frame.head = code;
11266 cs_base = &frame;
11267
11268 find_reachable_labels (code);
11269
11270 for (; code; code = code->next)
11271 {
11272 frame.current = code;
11273 forall_save = forall_flag;
11274 do_concurrent_save = gfc_do_concurrent_flag;
11275
11276 if (code->op == EXEC_FORALL)
11277 {
11278 forall_flag = 1;
11279 gfc_resolve_forall (code, ns, forall_save);
11280 forall_flag = 2;
11281 }
11282 else if (code->block)
11283 {
11284 omp_workshare_save = -1;
11285 switch (code->op)
11286 {
11287 case EXEC_OACC_PARALLEL_LOOP:
11288 case EXEC_OACC_PARALLEL:
11289 case EXEC_OACC_KERNELS_LOOP:
11290 case EXEC_OACC_KERNELS:
11291 case EXEC_OACC_DATA:
11292 case EXEC_OACC_HOST_DATA:
11293 case EXEC_OACC_LOOP:
11294 gfc_resolve_oacc_blocks (code, ns);
11295 break;
11296 case EXEC_OMP_PARALLEL_WORKSHARE:
11297 omp_workshare_save = omp_workshare_flag;
11298 omp_workshare_flag = 1;
11299 gfc_resolve_omp_parallel_blocks (code, ns);
11300 break;
11301 case EXEC_OMP_PARALLEL:
11302 case EXEC_OMP_PARALLEL_DO:
11303 case EXEC_OMP_PARALLEL_DO_SIMD:
11304 case EXEC_OMP_PARALLEL_SECTIONS:
11305 case EXEC_OMP_TARGET_PARALLEL:
11306 case EXEC_OMP_TARGET_PARALLEL_DO:
11307 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11308 case EXEC_OMP_TARGET_TEAMS:
11309 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11310 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11311 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11312 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11313 case EXEC_OMP_TASK:
11314 case EXEC_OMP_TASKLOOP:
11315 case EXEC_OMP_TASKLOOP_SIMD:
11316 case EXEC_OMP_TEAMS:
11317 case EXEC_OMP_TEAMS_DISTRIBUTE:
11318 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11319 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11320 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11321 omp_workshare_save = omp_workshare_flag;
11322 omp_workshare_flag = 0;
11323 gfc_resolve_omp_parallel_blocks (code, ns);
11324 break;
11325 case EXEC_OMP_DISTRIBUTE:
11326 case EXEC_OMP_DISTRIBUTE_SIMD:
11327 case EXEC_OMP_DO:
11328 case EXEC_OMP_DO_SIMD:
11329 case EXEC_OMP_SIMD:
11330 case EXEC_OMP_TARGET_SIMD:
11331 gfc_resolve_omp_do_blocks (code, ns);
11332 break;
11333 case EXEC_SELECT_TYPE:
11334 /* Blocks are handled in resolve_select_type because we have
11335 to transform the SELECT TYPE into ASSOCIATE first. */
11336 break;
11337 case EXEC_DO_CONCURRENT:
11338 gfc_do_concurrent_flag = 1;
11339 gfc_resolve_blocks (code->block, ns);
11340 gfc_do_concurrent_flag = 2;
11341 break;
11342 case EXEC_OMP_WORKSHARE:
11343 omp_workshare_save = omp_workshare_flag;
11344 omp_workshare_flag = 1;
11345 /* FALL THROUGH */
11346 default:
11347 gfc_resolve_blocks (code->block, ns);
11348 break;
11349 }
11350
11351 if (omp_workshare_save != -1)
11352 omp_workshare_flag = omp_workshare_save;
11353 }
11354 start:
11355 t = true;
11356 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11357 t = gfc_resolve_expr (code->expr1);
11358 forall_flag = forall_save;
11359 gfc_do_concurrent_flag = do_concurrent_save;
11360
11361 if (!gfc_resolve_expr (code->expr2))
11362 t = false;
11363
11364 if (code->op == EXEC_ALLOCATE
11365 && !gfc_resolve_expr (code->expr3))
11366 t = false;
11367
11368 switch (code->op)
11369 {
11370 case EXEC_NOP:
11371 case EXEC_END_BLOCK:
11372 case EXEC_END_NESTED_BLOCK:
11373 case EXEC_CYCLE:
11374 case EXEC_PAUSE:
11375 case EXEC_STOP:
11376 case EXEC_ERROR_STOP:
11377 case EXEC_EXIT:
11378 case EXEC_CONTINUE:
11379 case EXEC_DT_END:
11380 case EXEC_ASSIGN_CALL:
11381 break;
11382
11383 case EXEC_CRITICAL:
11384 resolve_critical (code);
11385 break;
11386
11387 case EXEC_SYNC_ALL:
11388 case EXEC_SYNC_IMAGES:
11389 case EXEC_SYNC_MEMORY:
11390 resolve_sync (code);
11391 break;
11392
11393 case EXEC_LOCK:
11394 case EXEC_UNLOCK:
11395 case EXEC_EVENT_POST:
11396 case EXEC_EVENT_WAIT:
11397 resolve_lock_unlock_event (code);
11398 break;
11399
11400 case EXEC_FAIL_IMAGE:
11401 case EXEC_FORM_TEAM:
11402 case EXEC_CHANGE_TEAM:
11403 case EXEC_END_TEAM:
11404 case EXEC_SYNC_TEAM:
11405 break;
11406
11407 case EXEC_ENTRY:
11408 /* Keep track of which entry we are up to. */
11409 current_entry_id = code->ext.entry->id;
11410 break;
11411
11412 case EXEC_WHERE:
11413 resolve_where (code, NULL);
11414 break;
11415
11416 case EXEC_GOTO:
11417 if (code->expr1 != NULL)
11418 {
11419 if (code->expr1->ts.type != BT_INTEGER)
11420 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11421 "INTEGER variable", &code->expr1->where);
11422 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11423 gfc_error ("Variable %qs has not been assigned a target "
11424 "label at %L", code->expr1->symtree->n.sym->name,
11425 &code->expr1->where);
11426 }
11427 else
11428 resolve_branch (code->label1, code);
11429 break;
11430
11431 case EXEC_RETURN:
11432 if (code->expr1 != NULL
11433 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11434 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11435 "INTEGER return specifier", &code->expr1->where);
11436 break;
11437
11438 case EXEC_INIT_ASSIGN:
11439 case EXEC_END_PROCEDURE:
11440 break;
11441
11442 case EXEC_ASSIGN:
11443 if (!t)
11444 break;
11445
11446 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11447 the LHS. */
11448 if (code->expr1->expr_type == EXPR_FUNCTION
11449 && code->expr1->value.function.isym
11450 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11451 remove_caf_get_intrinsic (code->expr1);
11452
11453 /* If this is a pointer function in an lvalue variable context,
11454 the new code will have to be resolved afresh. This is also the
11455 case with an error, where the code is transformed into NOP to
11456 prevent ICEs downstream. */
11457 if (resolve_ptr_fcn_assign (&code, ns)
11458 || code->op == EXEC_NOP)
11459 goto start;
11460
11461 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11462 _("assignment")))
11463 break;
11464
11465 if (resolve_ordinary_assign (code, ns))
11466 {
11467 if (code->op == EXEC_COMPCALL)
11468 goto compcall;
11469 else
11470 goto call;
11471 }
11472
11473 /* Check for dependencies in deferred character length array
11474 assignments and generate a temporary, if necessary. */
11475 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11476 break;
11477
11478 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11479 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11480 && code->expr1->ts.u.derived
11481 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11482 generate_component_assignments (&code, ns);
11483
11484 break;
11485
11486 case EXEC_LABEL_ASSIGN:
11487 if (code->label1->defined == ST_LABEL_UNKNOWN)
11488 gfc_error ("Label %d referenced at %L is never defined",
11489 code->label1->value, &code->label1->where);
11490 if (t
11491 && (code->expr1->expr_type != EXPR_VARIABLE
11492 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11493 || code->expr1->symtree->n.sym->ts.kind
11494 != gfc_default_integer_kind
11495 || code->expr1->symtree->n.sym->as != NULL))
11496 gfc_error ("ASSIGN statement at %L requires a scalar "
11497 "default INTEGER variable", &code->expr1->where);
11498 break;
11499
11500 case EXEC_POINTER_ASSIGN:
11501 {
11502 gfc_expr* e;
11503
11504 if (!t)
11505 break;
11506
11507 /* This is both a variable definition and pointer assignment
11508 context, so check both of them. For rank remapping, a final
11509 array ref may be present on the LHS and fool gfc_expr_attr
11510 used in gfc_check_vardef_context. Remove it. */
11511 e = remove_last_array_ref (code->expr1);
11512 t = gfc_check_vardef_context (e, true, false, false,
11513 _("pointer assignment"));
11514 if (t)
11515 t = gfc_check_vardef_context (e, false, false, false,
11516 _("pointer assignment"));
11517 gfc_free_expr (e);
11518
11519 t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
11520
11521 if (!t)
11522 break;
11523
11524 /* Assigning a class object always is a regular assign. */
11525 if (code->expr2->ts.type == BT_CLASS
11526 && code->expr1->ts.type == BT_CLASS
11527 && !CLASS_DATA (code->expr2)->attr.dimension
11528 && !(gfc_expr_attr (code->expr1).proc_pointer
11529 && code->expr2->expr_type == EXPR_VARIABLE
11530 && code->expr2->symtree->n.sym->attr.flavor
11531 == FL_PROCEDURE))
11532 code->op = EXEC_ASSIGN;
11533 break;
11534 }
11535
11536 case EXEC_ARITHMETIC_IF:
11537 {
11538 gfc_expr *e = code->expr1;
11539
11540 gfc_resolve_expr (e);
11541 if (e->expr_type == EXPR_NULL)
11542 gfc_error ("Invalid NULL at %L", &e->where);
11543
11544 if (t && (e->rank > 0
11545 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11546 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11547 "REAL or INTEGER expression", &e->where);
11548
11549 resolve_branch (code->label1, code);
11550 resolve_branch (code->label2, code);
11551 resolve_branch (code->label3, code);
11552 }
11553 break;
11554
11555 case EXEC_IF:
11556 if (t && code->expr1 != NULL
11557 && (code->expr1->ts.type != BT_LOGICAL
11558 || code->expr1->rank != 0))
11559 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11560 &code->expr1->where);
11561 break;
11562
11563 case EXEC_CALL:
11564 call:
11565 resolve_call (code);
11566 break;
11567
11568 case EXEC_COMPCALL:
11569 compcall:
11570 resolve_typebound_subroutine (code);
11571 break;
11572
11573 case EXEC_CALL_PPC:
11574 resolve_ppc_call (code);
11575 break;
11576
11577 case EXEC_SELECT:
11578 /* Select is complicated. Also, a SELECT construct could be
11579 a transformed computed GOTO. */
11580 resolve_select (code, false);
11581 break;
11582
11583 case EXEC_SELECT_TYPE:
11584 resolve_select_type (code, ns);
11585 break;
11586
11587 case EXEC_BLOCK:
11588 resolve_block_construct (code);
11589 break;
11590
11591 case EXEC_DO:
11592 if (code->ext.iterator != NULL)
11593 {
11594 gfc_iterator *iter = code->ext.iterator;
11595 if (gfc_resolve_iterator (iter, true, false))
11596 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11597 true);
11598 }
11599 break;
11600
11601 case EXEC_DO_WHILE:
11602 if (code->expr1 == NULL)
11603 gfc_internal_error ("gfc_resolve_code(): No expression on "
11604 "DO WHILE");
11605 if (t
11606 && (code->expr1->rank != 0
11607 || code->expr1->ts.type != BT_LOGICAL))
11608 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11609 "a scalar LOGICAL expression", &code->expr1->where);
11610 break;
11611
11612 case EXEC_ALLOCATE:
11613 if (t)
11614 resolve_allocate_deallocate (code, "ALLOCATE");
11615
11616 break;
11617
11618 case EXEC_DEALLOCATE:
11619 if (t)
11620 resolve_allocate_deallocate (code, "DEALLOCATE");
11621
11622 break;
11623
11624 case EXEC_OPEN:
11625 if (!gfc_resolve_open (code->ext.open))
11626 break;
11627
11628 resolve_branch (code->ext.open->err, code);
11629 break;
11630
11631 case EXEC_CLOSE:
11632 if (!gfc_resolve_close (code->ext.close))
11633 break;
11634
11635 resolve_branch (code->ext.close->err, code);
11636 break;
11637
11638 case EXEC_BACKSPACE:
11639 case EXEC_ENDFILE:
11640 case EXEC_REWIND:
11641 case EXEC_FLUSH:
11642 if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
11643 break;
11644
11645 resolve_branch (code->ext.filepos->err, code);
11646 break;
11647
11648 case EXEC_INQUIRE:
11649 if (!gfc_resolve_inquire (code->ext.inquire))
11650 break;
11651
11652 resolve_branch (code->ext.inquire->err, code);
11653 break;
11654
11655 case EXEC_IOLENGTH:
11656 gcc_assert (code->ext.inquire != NULL);
11657 if (!gfc_resolve_inquire (code->ext.inquire))
11658 break;
11659
11660 resolve_branch (code->ext.inquire->err, code);
11661 break;
11662
11663 case EXEC_WAIT:
11664 if (!gfc_resolve_wait (code->ext.wait))
11665 break;
11666
11667 resolve_branch (code->ext.wait->err, code);
11668 resolve_branch (code->ext.wait->end, code);
11669 resolve_branch (code->ext.wait->eor, code);
11670 break;
11671
11672 case EXEC_READ:
11673 case EXEC_WRITE:
11674 if (!gfc_resolve_dt (code->ext.dt, &code->loc))
11675 break;
11676
11677 resolve_branch (code->ext.dt->err, code);
11678 resolve_branch (code->ext.dt->end, code);
11679 resolve_branch (code->ext.dt->eor, code);
11680 break;
11681
11682 case EXEC_TRANSFER:
11683 resolve_transfer (code);
11684 break;
11685
11686 case EXEC_DO_CONCURRENT:
11687 case EXEC_FORALL:
11688 resolve_forall_iterators (code->ext.forall_iterator);
11689
11690 if (code->expr1 != NULL
11691 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
11692 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
11693 "expression", &code->expr1->where);
11694 break;
11695
11696 case EXEC_OACC_PARALLEL_LOOP:
11697 case EXEC_OACC_PARALLEL:
11698 case EXEC_OACC_KERNELS_LOOP:
11699 case EXEC_OACC_KERNELS:
11700 case EXEC_OACC_DATA:
11701 case EXEC_OACC_HOST_DATA:
11702 case EXEC_OACC_LOOP:
11703 case EXEC_OACC_UPDATE:
11704 case EXEC_OACC_WAIT:
11705 case EXEC_OACC_CACHE:
11706 case EXEC_OACC_ENTER_DATA:
11707 case EXEC_OACC_EXIT_DATA:
11708 case EXEC_OACC_ATOMIC:
11709 case EXEC_OACC_DECLARE:
11710 gfc_resolve_oacc_directive (code, ns);
11711 break;
11712
11713 case EXEC_OMP_ATOMIC:
11714 case EXEC_OMP_BARRIER:
11715 case EXEC_OMP_CANCEL:
11716 case EXEC_OMP_CANCELLATION_POINT:
11717 case EXEC_OMP_CRITICAL:
11718 case EXEC_OMP_FLUSH:
11719 case EXEC_OMP_DISTRIBUTE:
11720 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
11721 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
11722 case EXEC_OMP_DISTRIBUTE_SIMD:
11723 case EXEC_OMP_DO:
11724 case EXEC_OMP_DO_SIMD:
11725 case EXEC_OMP_MASTER:
11726 case EXEC_OMP_ORDERED:
11727 case EXEC_OMP_SECTIONS:
11728 case EXEC_OMP_SIMD:
11729 case EXEC_OMP_SINGLE:
11730 case EXEC_OMP_TARGET:
11731 case EXEC_OMP_TARGET_DATA:
11732 case EXEC_OMP_TARGET_ENTER_DATA:
11733 case EXEC_OMP_TARGET_EXIT_DATA:
11734 case EXEC_OMP_TARGET_PARALLEL:
11735 case EXEC_OMP_TARGET_PARALLEL_DO:
11736 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11737 case EXEC_OMP_TARGET_SIMD:
11738 case EXEC_OMP_TARGET_TEAMS:
11739 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11740 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11741 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11742 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11743 case EXEC_OMP_TARGET_UPDATE:
11744 case EXEC_OMP_TASK:
11745 case EXEC_OMP_TASKGROUP:
11746 case EXEC_OMP_TASKLOOP:
11747 case EXEC_OMP_TASKLOOP_SIMD:
11748 case EXEC_OMP_TASKWAIT:
11749 case EXEC_OMP_TASKYIELD:
11750 case EXEC_OMP_TEAMS:
11751 case EXEC_OMP_TEAMS_DISTRIBUTE:
11752 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11753 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11754 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11755 case EXEC_OMP_WORKSHARE:
11756 gfc_resolve_omp_directive (code, ns);
11757 break;
11758
11759 case EXEC_OMP_PARALLEL:
11760 case EXEC_OMP_PARALLEL_DO:
11761 case EXEC_OMP_PARALLEL_DO_SIMD:
11762 case EXEC_OMP_PARALLEL_SECTIONS:
11763 case EXEC_OMP_PARALLEL_WORKSHARE:
11764 omp_workshare_save = omp_workshare_flag;
11765 omp_workshare_flag = 0;
11766 gfc_resolve_omp_directive (code, ns);
11767 omp_workshare_flag = omp_workshare_save;
11768 break;
11769
11770 default:
11771 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
11772 }
11773 }
11774
11775 cs_base = frame.prev;
11776 }
11777
11778
11779 /* Resolve initial values and make sure they are compatible with
11780 the variable. */
11781
11782 static void
11783 resolve_values (gfc_symbol *sym)
11784 {
11785 bool t;
11786
11787 if (sym->value == NULL)
11788 return;
11789
11790 if (sym->value->expr_type == EXPR_STRUCTURE)
11791 t= resolve_structure_cons (sym->value, 1);
11792 else
11793 t = gfc_resolve_expr (sym->value);
11794
11795 if (!t)
11796 return;
11797
11798 gfc_check_assign_symbol (sym, NULL, sym->value);
11799 }
11800
11801
11802 /* Verify any BIND(C) derived types in the namespace so we can report errors
11803 for them once, rather than for each variable declared of that type. */
11804
11805 static void
11806 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
11807 {
11808 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
11809 && derived_sym->attr.is_bind_c == 1)
11810 verify_bind_c_derived_type (derived_sym);
11811
11812 return;
11813 }
11814
11815
11816 /* Check the interfaces of DTIO procedures associated with derived
11817 type 'sym'. These procedures can either have typebound bindings or
11818 can appear in DTIO generic interfaces. */
11819
11820 static void
11821 gfc_verify_DTIO_procedures (gfc_symbol *sym)
11822 {
11823 if (!sym || sym->attr.flavor != FL_DERIVED)
11824 return;
11825
11826 gfc_check_dtio_interfaces (sym);
11827
11828 return;
11829 }
11830
11831 /* Verify that any binding labels used in a given namespace do not collide
11832 with the names or binding labels of any global symbols. Multiple INTERFACE
11833 for the same procedure are permitted. */
11834
11835 static void
11836 gfc_verify_binding_labels (gfc_symbol *sym)
11837 {
11838 gfc_gsymbol *gsym;
11839 const char *module;
11840
11841 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
11842 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
11843 return;
11844
11845 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
11846
11847 if (sym->module)
11848 module = sym->module;
11849 else if (sym->ns && sym->ns->proc_name
11850 && sym->ns->proc_name->attr.flavor == FL_MODULE)
11851 module = sym->ns->proc_name->name;
11852 else if (sym->ns && sym->ns->parent
11853 && sym->ns && sym->ns->parent->proc_name
11854 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
11855 module = sym->ns->parent->proc_name->name;
11856 else
11857 module = NULL;
11858
11859 if (!gsym
11860 || (!gsym->defined
11861 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
11862 {
11863 if (!gsym)
11864 gsym = gfc_get_gsymbol (sym->binding_label, true);
11865 gsym->where = sym->declared_at;
11866 gsym->sym_name = sym->name;
11867 gsym->binding_label = sym->binding_label;
11868 gsym->ns = sym->ns;
11869 gsym->mod_name = module;
11870 if (sym->attr.function)
11871 gsym->type = GSYM_FUNCTION;
11872 else if (sym->attr.subroutine)
11873 gsym->type = GSYM_SUBROUTINE;
11874 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
11875 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
11876 return;
11877 }
11878
11879 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
11880 {
11881 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
11882 "identifier as entity at %L", sym->name,
11883 sym->binding_label, &sym->declared_at, &gsym->where);
11884 /* Clear the binding label to prevent checking multiple times. */
11885 sym->binding_label = NULL;
11886 return;
11887 }
11888
11889 if (sym->attr.flavor == FL_VARIABLE && module
11890 && (strcmp (module, gsym->mod_name) != 0
11891 || strcmp (sym->name, gsym->sym_name) != 0))
11892 {
11893 /* This can only happen if the variable is defined in a module - if it
11894 isn't the same module, reject it. */
11895 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
11896 "uses the same global identifier as entity at %L from module %qs",
11897 sym->name, module, sym->binding_label,
11898 &sym->declared_at, &gsym->where, gsym->mod_name);
11899 sym->binding_label = NULL;
11900 return;
11901 }
11902
11903 if ((sym->attr.function || sym->attr.subroutine)
11904 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
11905 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
11906 && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
11907 && (module != gsym->mod_name
11908 || strcmp (gsym->sym_name, sym->name) != 0
11909 || (module && strcmp (module, gsym->mod_name) != 0)))
11910 {
11911 /* Print an error if the procedure is defined multiple times; we have to
11912 exclude references to the same procedure via module association or
11913 multiple checks for the same procedure. */
11914 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
11915 "global identifier as entity at %L", sym->name,
11916 sym->binding_label, &sym->declared_at, &gsym->where);
11917 sym->binding_label = NULL;
11918 }
11919 }
11920
11921
11922 /* Resolve an index expression. */
11923
11924 static bool
11925 resolve_index_expr (gfc_expr *e)
11926 {
11927 if (!gfc_resolve_expr (e))
11928 return false;
11929
11930 if (!gfc_simplify_expr (e, 0))
11931 return false;
11932
11933 if (!gfc_specification_expr (e))
11934 return false;
11935
11936 return true;
11937 }
11938
11939
11940 /* Resolve a charlen structure. */
11941
11942 static bool
11943 resolve_charlen (gfc_charlen *cl)
11944 {
11945 int k;
11946 bool saved_specification_expr;
11947
11948 if (cl->resolved)
11949 return true;
11950
11951 cl->resolved = 1;
11952 saved_specification_expr = specification_expr;
11953 specification_expr = true;
11954
11955 if (cl->length_from_typespec)
11956 {
11957 if (!gfc_resolve_expr (cl->length))
11958 {
11959 specification_expr = saved_specification_expr;
11960 return false;
11961 }
11962
11963 if (!gfc_simplify_expr (cl->length, 0))
11964 {
11965 specification_expr = saved_specification_expr;
11966 return false;
11967 }
11968
11969 /* cl->length has been resolved. It should have an integer type. */
11970 if (cl->length->ts.type != BT_INTEGER)
11971 {
11972 gfc_error ("Scalar INTEGER expression expected at %L",
11973 &cl->length->where);
11974 return false;
11975 }
11976 }
11977 else
11978 {
11979 if (!resolve_index_expr (cl->length))
11980 {
11981 specification_expr = saved_specification_expr;
11982 return false;
11983 }
11984 }
11985
11986 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
11987 a negative value, the length of character entities declared is zero. */
11988 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11989 && mpz_sgn (cl->length->value.integer) < 0)
11990 gfc_replace_expr (cl->length,
11991 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
11992
11993 /* Check that the character length is not too large. */
11994 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
11995 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11996 && cl->length->ts.type == BT_INTEGER
11997 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
11998 {
11999 gfc_error ("String length at %L is too large", &cl->length->where);
12000 specification_expr = saved_specification_expr;
12001 return false;
12002 }
12003
12004 specification_expr = saved_specification_expr;
12005 return true;
12006 }
12007
12008
12009 /* Test for non-constant shape arrays. */
12010
12011 static bool
12012 is_non_constant_shape_array (gfc_symbol *sym)
12013 {
12014 gfc_expr *e;
12015 int i;
12016 bool not_constant;
12017
12018 not_constant = false;
12019 if (sym->as != NULL)
12020 {
12021 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
12022 has not been simplified; parameter array references. Do the
12023 simplification now. */
12024 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
12025 {
12026 e = sym->as->lower[i];
12027 if (e && (!resolve_index_expr(e)
12028 || !gfc_is_constant_expr (e)))
12029 not_constant = true;
12030 e = sym->as->upper[i];
12031 if (e && (!resolve_index_expr(e)
12032 || !gfc_is_constant_expr (e)))
12033 not_constant = true;
12034 }
12035 }
12036 return not_constant;
12037 }
12038
12039 /* Given a symbol and an initialization expression, add code to initialize
12040 the symbol to the function entry. */
12041 static void
12042 build_init_assign (gfc_symbol *sym, gfc_expr *init)
12043 {
12044 gfc_expr *lval;
12045 gfc_code *init_st;
12046 gfc_namespace *ns = sym->ns;
12047
12048 /* Search for the function namespace if this is a contained
12049 function without an explicit result. */
12050 if (sym->attr.function && sym == sym->result
12051 && sym->name != sym->ns->proc_name->name)
12052 {
12053 ns = ns->contained;
12054 for (;ns; ns = ns->sibling)
12055 if (strcmp (ns->proc_name->name, sym->name) == 0)
12056 break;
12057 }
12058
12059 if (ns == NULL)
12060 {
12061 gfc_free_expr (init);
12062 return;
12063 }
12064
12065 /* Build an l-value expression for the result. */
12066 lval = gfc_lval_expr_from_sym (sym);
12067
12068 /* Add the code at scope entry. */
12069 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
12070 init_st->next = ns->code;
12071 ns->code = init_st;
12072
12073 /* Assign the default initializer to the l-value. */
12074 init_st->loc = sym->declared_at;
12075 init_st->expr1 = lval;
12076 init_st->expr2 = init;
12077 }
12078
12079
12080 /* Whether or not we can generate a default initializer for a symbol. */
12081
12082 static bool
12083 can_generate_init (gfc_symbol *sym)
12084 {
12085 symbol_attribute *a;
12086 if (!sym)
12087 return false;
12088 a = &sym->attr;
12089
12090 /* These symbols should never have a default initialization. */
12091 return !(
12092 a->allocatable
12093 || a->external
12094 || a->pointer
12095 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
12096 && (CLASS_DATA (sym)->attr.class_pointer
12097 || CLASS_DATA (sym)->attr.proc_pointer))
12098 || a->in_equivalence
12099 || a->in_common
12100 || a->data
12101 || sym->module
12102 || a->cray_pointee
12103 || a->cray_pointer
12104 || sym->assoc
12105 || (!a->referenced && !a->result)
12106 || (a->dummy && a->intent != INTENT_OUT)
12107 || (a->function && sym != sym->result)
12108 );
12109 }
12110
12111
12112 /* Assign the default initializer to a derived type variable or result. */
12113
12114 static void
12115 apply_default_init (gfc_symbol *sym)
12116 {
12117 gfc_expr *init = NULL;
12118
12119 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12120 return;
12121
12122 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
12123 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12124
12125 if (init == NULL && sym->ts.type != BT_CLASS)
12126 return;
12127
12128 build_init_assign (sym, init);
12129 sym->attr.referenced = 1;
12130 }
12131
12132
12133 /* Build an initializer for a local. Returns null if the symbol should not have
12134 a default initialization. */
12135
12136 static gfc_expr *
12137 build_default_init_expr (gfc_symbol *sym)
12138 {
12139 /* These symbols should never have a default initialization. */
12140 if (sym->attr.allocatable
12141 || sym->attr.external
12142 || sym->attr.dummy
12143 || sym->attr.pointer
12144 || sym->attr.in_equivalence
12145 || sym->attr.in_common
12146 || sym->attr.data
12147 || sym->module
12148 || sym->attr.cray_pointee
12149 || sym->attr.cray_pointer
12150 || sym->assoc)
12151 return NULL;
12152
12153 /* Get the appropriate init expression. */
12154 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
12155 }
12156
12157 /* Add an initialization expression to a local variable. */
12158 static void
12159 apply_default_init_local (gfc_symbol *sym)
12160 {
12161 gfc_expr *init = NULL;
12162
12163 /* The symbol should be a variable or a function return value. */
12164 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
12165 || (sym->attr.function && sym->result != sym))
12166 return;
12167
12168 /* Try to build the initializer expression. If we can't initialize
12169 this symbol, then init will be NULL. */
12170 init = build_default_init_expr (sym);
12171 if (init == NULL)
12172 return;
12173
12174 /* For saved variables, we don't want to add an initializer at function
12175 entry, so we just add a static initializer. Note that automatic variables
12176 are stack allocated even with -fno-automatic; we have also to exclude
12177 result variable, which are also nonstatic. */
12178 if (!sym->attr.automatic
12179 && (sym->attr.save || sym->ns->save_all
12180 || (flag_max_stack_var_size == 0 && !sym->attr.result
12181 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
12182 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
12183 {
12184 /* Don't clobber an existing initializer! */
12185 gcc_assert (sym->value == NULL);
12186 sym->value = init;
12187 return;
12188 }
12189
12190 build_init_assign (sym, init);
12191 }
12192
12193
12194 /* Resolution of common features of flavors variable and procedure. */
12195
12196 static bool
12197 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
12198 {
12199 gfc_array_spec *as;
12200
12201 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12202 as = CLASS_DATA (sym)->as;
12203 else
12204 as = sym->as;
12205
12206 /* Constraints on deferred shape variable. */
12207 if (as == NULL || as->type != AS_DEFERRED)
12208 {
12209 bool pointer, allocatable, dimension;
12210
12211 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
12212 {
12213 pointer = CLASS_DATA (sym)->attr.class_pointer;
12214 allocatable = CLASS_DATA (sym)->attr.allocatable;
12215 dimension = CLASS_DATA (sym)->attr.dimension;
12216 }
12217 else
12218 {
12219 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
12220 allocatable = sym->attr.allocatable;
12221 dimension = sym->attr.dimension;
12222 }
12223
12224 if (allocatable)
12225 {
12226 if (dimension && as->type != AS_ASSUMED_RANK)
12227 {
12228 gfc_error ("Allocatable array %qs at %L must have a deferred "
12229 "shape or assumed rank", sym->name, &sym->declared_at);
12230 return false;
12231 }
12232 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
12233 "%qs at %L may not be ALLOCATABLE",
12234 sym->name, &sym->declared_at))
12235 return false;
12236 }
12237
12238 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
12239 {
12240 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
12241 "assumed rank", sym->name, &sym->declared_at);
12242 return false;
12243 }
12244 }
12245 else
12246 {
12247 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
12248 && sym->ts.type != BT_CLASS && !sym->assoc)
12249 {
12250 gfc_error ("Array %qs at %L cannot have a deferred shape",
12251 sym->name, &sym->declared_at);
12252 return false;
12253 }
12254 }
12255
12256 /* Constraints on polymorphic variables. */
12257 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
12258 {
12259 /* F03:C502. */
12260 if (sym->attr.class_ok
12261 && !sym->attr.select_type_temporary
12262 && !UNLIMITED_POLY (sym)
12263 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
12264 {
12265 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
12266 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
12267 &sym->declared_at);
12268 return false;
12269 }
12270
12271 /* F03:C509. */
12272 /* Assume that use associated symbols were checked in the module ns.
12273 Class-variables that are associate-names are also something special
12274 and excepted from the test. */
12275 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
12276 {
12277 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
12278 "or pointer", sym->name, &sym->declared_at);
12279 return false;
12280 }
12281 }
12282
12283 return true;
12284 }
12285
12286
12287 /* Additional checks for symbols with flavor variable and derived
12288 type. To be called from resolve_fl_variable. */
12289
12290 static bool
12291 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
12292 {
12293 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
12294
12295 /* Check to see if a derived type is blocked from being host
12296 associated by the presence of another class I symbol in the same
12297 namespace. 14.6.1.3 of the standard and the discussion on
12298 comp.lang.fortran. */
12299 if (sym->ns != sym->ts.u.derived->ns
12300 && !sym->ts.u.derived->attr.use_assoc
12301 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12302 {
12303 gfc_symbol *s;
12304 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12305 if (s && s->attr.generic)
12306 s = gfc_find_dt_in_generic (s);
12307 if (s && !gfc_fl_struct (s->attr.flavor))
12308 {
12309 gfc_error ("The type %qs cannot be host associated at %L "
12310 "because it is blocked by an incompatible object "
12311 "of the same name declared at %L",
12312 sym->ts.u.derived->name, &sym->declared_at,
12313 &s->declared_at);
12314 return false;
12315 }
12316 }
12317
12318 /* 4th constraint in section 11.3: "If an object of a type for which
12319 component-initialization is specified (R429) appears in the
12320 specification-part of a module and does not have the ALLOCATABLE
12321 or POINTER attribute, the object shall have the SAVE attribute."
12322
12323 The check for initializers is performed with
12324 gfc_has_default_initializer because gfc_default_initializer generates
12325 a hidden default for allocatable components. */
12326 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12327 && sym->ns->proc_name->attr.flavor == FL_MODULE
12328 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12329 && !sym->attr.pointer && !sym->attr.allocatable
12330 && gfc_has_default_initializer (sym->ts.u.derived)
12331 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12332 "%qs at %L, needed due to the default "
12333 "initialization", sym->name, &sym->declared_at))
12334 return false;
12335
12336 /* Assign default initializer. */
12337 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12338 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12339 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12340
12341 return true;
12342 }
12343
12344
12345 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12346 except in the declaration of an entity or component that has the POINTER
12347 or ALLOCATABLE attribute. */
12348
12349 static bool
12350 deferred_requirements (gfc_symbol *sym)
12351 {
12352 if (sym->ts.deferred
12353 && !(sym->attr.pointer
12354 || sym->attr.allocatable
12355 || sym->attr.associate_var
12356 || sym->attr.omp_udr_artificial_var))
12357 {
12358 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12359 "requires either the POINTER or ALLOCATABLE attribute",
12360 sym->name, &sym->declared_at);
12361 return false;
12362 }
12363 return true;
12364 }
12365
12366
12367 /* Resolve symbols with flavor variable. */
12368
12369 static bool
12370 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12371 {
12372 const char *auto_save_msg = "Automatic object %qs at %L cannot have the "
12373 "SAVE attribute";
12374
12375 if (!resolve_fl_var_and_proc (sym, mp_flag))
12376 return false;
12377
12378 /* Set this flag to check that variables are parameters of all entries.
12379 This check is effected by the call to gfc_resolve_expr through
12380 is_non_constant_shape_array. */
12381 bool saved_specification_expr = specification_expr;
12382 specification_expr = true;
12383
12384 if (sym->ns->proc_name
12385 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12386 || sym->ns->proc_name->attr.is_main_program)
12387 && !sym->attr.use_assoc
12388 && !sym->attr.allocatable
12389 && !sym->attr.pointer
12390 && is_non_constant_shape_array (sym))
12391 {
12392 /* F08:C541. The shape of an array defined in a main program or module
12393 * needs to be constant. */
12394 gfc_error ("The module or main program array %qs at %L must "
12395 "have constant shape", sym->name, &sym->declared_at);
12396 specification_expr = saved_specification_expr;
12397 return false;
12398 }
12399
12400 /* Constraints on deferred type parameter. */
12401 if (!deferred_requirements (sym))
12402 return false;
12403
12404 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12405 {
12406 /* Make sure that character string variables with assumed length are
12407 dummy arguments. */
12408 gfc_expr *e = NULL;
12409
12410 if (sym->ts.u.cl)
12411 e = sym->ts.u.cl->length;
12412 else
12413 return false;
12414
12415 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12416 && !sym->ts.deferred && !sym->attr.select_type_temporary
12417 && !sym->attr.omp_udr_artificial_var)
12418 {
12419 gfc_error ("Entity with assumed character length at %L must be a "
12420 "dummy argument or a PARAMETER", &sym->declared_at);
12421 specification_expr = saved_specification_expr;
12422 return false;
12423 }
12424
12425 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12426 {
12427 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12428 specification_expr = saved_specification_expr;
12429 return false;
12430 }
12431
12432 if (!gfc_is_constant_expr (e)
12433 && !(e->expr_type == EXPR_VARIABLE
12434 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12435 {
12436 if (!sym->attr.use_assoc && sym->ns->proc_name
12437 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12438 || sym->ns->proc_name->attr.is_main_program))
12439 {
12440 gfc_error ("%qs at %L must have constant character length "
12441 "in this context", sym->name, &sym->declared_at);
12442 specification_expr = saved_specification_expr;
12443 return false;
12444 }
12445 if (sym->attr.in_common)
12446 {
12447 gfc_error ("COMMON variable %qs at %L must have constant "
12448 "character length", sym->name, &sym->declared_at);
12449 specification_expr = saved_specification_expr;
12450 return false;
12451 }
12452 }
12453 }
12454
12455 if (sym->value == NULL && sym->attr.referenced)
12456 apply_default_init_local (sym); /* Try to apply a default initialization. */
12457
12458 /* Determine if the symbol may not have an initializer. */
12459 int no_init_flag = 0, automatic_flag = 0;
12460 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12461 || sym->attr.intrinsic || sym->attr.result)
12462 no_init_flag = 1;
12463 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12464 && is_non_constant_shape_array (sym))
12465 {
12466 no_init_flag = automatic_flag = 1;
12467
12468 /* Also, they must not have the SAVE attribute.
12469 SAVE_IMPLICIT is checked below. */
12470 if (sym->as && sym->attr.codimension)
12471 {
12472 int corank = sym->as->corank;
12473 sym->as->corank = 0;
12474 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12475 sym->as->corank = corank;
12476 }
12477 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12478 {
12479 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12480 specification_expr = saved_specification_expr;
12481 return false;
12482 }
12483 }
12484
12485 /* Ensure that any initializer is simplified. */
12486 if (sym->value)
12487 gfc_simplify_expr (sym->value, 1);
12488
12489 /* Reject illegal initializers. */
12490 if (!sym->mark && sym->value)
12491 {
12492 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12493 && CLASS_DATA (sym)->attr.allocatable))
12494 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12495 sym->name, &sym->declared_at);
12496 else if (sym->attr.external)
12497 gfc_error ("External %qs at %L cannot have an initializer",
12498 sym->name, &sym->declared_at);
12499 else if (sym->attr.dummy
12500 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12501 gfc_error ("Dummy %qs at %L cannot have an initializer",
12502 sym->name, &sym->declared_at);
12503 else if (sym->attr.intrinsic)
12504 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12505 sym->name, &sym->declared_at);
12506 else if (sym->attr.result)
12507 gfc_error ("Function result %qs at %L cannot have an initializer",
12508 sym->name, &sym->declared_at);
12509 else if (automatic_flag)
12510 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12511 sym->name, &sym->declared_at);
12512 else
12513 goto no_init_error;
12514 specification_expr = saved_specification_expr;
12515 return false;
12516 }
12517
12518 no_init_error:
12519 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12520 {
12521 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12522 specification_expr = saved_specification_expr;
12523 return res;
12524 }
12525
12526 specification_expr = saved_specification_expr;
12527 return true;
12528 }
12529
12530
12531 /* Compare the dummy characteristics of a module procedure interface
12532 declaration with the corresponding declaration in a submodule. */
12533 static gfc_formal_arglist *new_formal;
12534 static char errmsg[200];
12535
12536 static void
12537 compare_fsyms (gfc_symbol *sym)
12538 {
12539 gfc_symbol *fsym;
12540
12541 if (sym == NULL || new_formal == NULL)
12542 return;
12543
12544 fsym = new_formal->sym;
12545
12546 if (sym == fsym)
12547 return;
12548
12549 if (strcmp (sym->name, fsym->name) == 0)
12550 {
12551 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12552 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12553 }
12554 }
12555
12556
12557 /* Resolve a procedure. */
12558
12559 static bool
12560 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12561 {
12562 gfc_formal_arglist *arg;
12563
12564 if (sym->attr.function
12565 && !resolve_fl_var_and_proc (sym, mp_flag))
12566 return false;
12567
12568 if (sym->ts.type == BT_CHARACTER)
12569 {
12570 gfc_charlen *cl = sym->ts.u.cl;
12571
12572 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12573 && !resolve_charlen (cl))
12574 return false;
12575
12576 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12577 && sym->attr.proc == PROC_ST_FUNCTION)
12578 {
12579 gfc_error ("Character-valued statement function %qs at %L must "
12580 "have constant length", sym->name, &sym->declared_at);
12581 return false;
12582 }
12583 }
12584
12585 /* Ensure that derived type for are not of a private type. Internal
12586 module procedures are excluded by 2.2.3.3 - i.e., they are not
12587 externally accessible and can access all the objects accessible in
12588 the host. */
12589 if (!(sym->ns->parent && sym->ns->parent->proc_name
12590 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12591 && gfc_check_symbol_access (sym))
12592 {
12593 gfc_interface *iface;
12594
12595 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12596 {
12597 if (arg->sym
12598 && arg->sym->ts.type == BT_DERIVED
12599 && !arg->sym->ts.u.derived->attr.use_assoc
12600 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12601 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
12602 "and cannot be a dummy argument"
12603 " of %qs, which is PUBLIC at %L",
12604 arg->sym->name, sym->name,
12605 &sym->declared_at))
12606 {
12607 /* Stop this message from recurring. */
12608 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12609 return false;
12610 }
12611 }
12612
12613 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12614 PRIVATE to the containing module. */
12615 for (iface = sym->generic; iface; iface = iface->next)
12616 {
12617 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
12618 {
12619 if (arg->sym
12620 && arg->sym->ts.type == BT_DERIVED
12621 && !arg->sym->ts.u.derived->attr.use_assoc
12622 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12623 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
12624 "PUBLIC interface %qs at %L "
12625 "takes dummy arguments of %qs which "
12626 "is PRIVATE", iface->sym->name,
12627 sym->name, &iface->sym->declared_at,
12628 gfc_typename(&arg->sym->ts)))
12629 {
12630 /* Stop this message from recurring. */
12631 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12632 return false;
12633 }
12634 }
12635 }
12636 }
12637
12638 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
12639 && !sym->attr.proc_pointer)
12640 {
12641 gfc_error ("Function %qs at %L cannot have an initializer",
12642 sym->name, &sym->declared_at);
12643
12644 /* Make sure no second error is issued for this. */
12645 sym->value->error = 1;
12646 return false;
12647 }
12648
12649 /* An external symbol may not have an initializer because it is taken to be
12650 a procedure. Exception: Procedure Pointers. */
12651 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
12652 {
12653 gfc_error ("External object %qs at %L may not have an initializer",
12654 sym->name, &sym->declared_at);
12655 return false;
12656 }
12657
12658 /* An elemental function is required to return a scalar 12.7.1 */
12659 if (sym->attr.elemental && sym->attr.function
12660 && (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)))
12661 {
12662 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
12663 "result", sym->name, &sym->declared_at);
12664 /* Reset so that the error only occurs once. */
12665 sym->attr.elemental = 0;
12666 return false;
12667 }
12668
12669 if (sym->attr.proc == PROC_ST_FUNCTION
12670 && (sym->attr.allocatable || sym->attr.pointer))
12671 {
12672 gfc_error ("Statement function %qs at %L may not have pointer or "
12673 "allocatable attribute", sym->name, &sym->declared_at);
12674 return false;
12675 }
12676
12677 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
12678 char-len-param shall not be array-valued, pointer-valued, recursive
12679 or pure. ....snip... A character value of * may only be used in the
12680 following ways: (i) Dummy arg of procedure - dummy associates with
12681 actual length; (ii) To declare a named constant; or (iii) External
12682 function - but length must be declared in calling scoping unit. */
12683 if (sym->attr.function
12684 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
12685 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
12686 {
12687 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
12688 || (sym->attr.recursive) || (sym->attr.pure))
12689 {
12690 if (sym->as && sym->as->rank)
12691 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12692 "array-valued", sym->name, &sym->declared_at);
12693
12694 if (sym->attr.pointer)
12695 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12696 "pointer-valued", sym->name, &sym->declared_at);
12697
12698 if (sym->attr.pure)
12699 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12700 "pure", sym->name, &sym->declared_at);
12701
12702 if (sym->attr.recursive)
12703 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12704 "recursive", sym->name, &sym->declared_at);
12705
12706 return false;
12707 }
12708
12709 /* Appendix B.2 of the standard. Contained functions give an
12710 error anyway. Deferred character length is an F2003 feature.
12711 Don't warn on intrinsic conversion functions, which start
12712 with two underscores. */
12713 if (!sym->attr.contained && !sym->ts.deferred
12714 && (sym->name[0] != '_' || sym->name[1] != '_'))
12715 gfc_notify_std (GFC_STD_F95_OBS,
12716 "CHARACTER(*) function %qs at %L",
12717 sym->name, &sym->declared_at);
12718 }
12719
12720 /* F2008, C1218. */
12721 if (sym->attr.elemental)
12722 {
12723 if (sym->attr.proc_pointer)
12724 {
12725 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
12726 sym->name, &sym->declared_at);
12727 return false;
12728 }
12729 if (sym->attr.dummy)
12730 {
12731 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
12732 sym->name, &sym->declared_at);
12733 return false;
12734 }
12735 }
12736
12737 /* F2018, C15100: "The result of an elemental function shall be scalar,
12738 and shall not have the POINTER or ALLOCATABLE attribute." The scalar
12739 pointer is tested and caught elsewhere. */
12740 if (sym->attr.elemental && sym->result
12741 && (sym->result->attr.allocatable || sym->result->attr.pointer))
12742 {
12743 gfc_error ("Function result variable %qs at %L of elemental "
12744 "function %qs shall not have an ALLOCATABLE or POINTER "
12745 "attribute", sym->result->name,
12746 &sym->result->declared_at, sym->name);
12747 return false;
12748 }
12749
12750 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
12751 {
12752 gfc_formal_arglist *curr_arg;
12753 int has_non_interop_arg = 0;
12754
12755 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
12756 sym->common_block))
12757 {
12758 /* Clear these to prevent looking at them again if there was an
12759 error. */
12760 sym->attr.is_bind_c = 0;
12761 sym->attr.is_c_interop = 0;
12762 sym->ts.is_c_interop = 0;
12763 }
12764 else
12765 {
12766 /* So far, no errors have been found. */
12767 sym->attr.is_c_interop = 1;
12768 sym->ts.is_c_interop = 1;
12769 }
12770
12771 curr_arg = gfc_sym_get_dummy_args (sym);
12772 while (curr_arg != NULL)
12773 {
12774 /* Skip implicitly typed dummy args here. */
12775 if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
12776 if (!gfc_verify_c_interop_param (curr_arg->sym))
12777 /* If something is found to fail, record the fact so we
12778 can mark the symbol for the procedure as not being
12779 BIND(C) to try and prevent multiple errors being
12780 reported. */
12781 has_non_interop_arg = 1;
12782
12783 curr_arg = curr_arg->next;
12784 }
12785
12786 /* See if any of the arguments were not interoperable and if so, clear
12787 the procedure symbol to prevent duplicate error messages. */
12788 if (has_non_interop_arg != 0)
12789 {
12790 sym->attr.is_c_interop = 0;
12791 sym->ts.is_c_interop = 0;
12792 sym->attr.is_bind_c = 0;
12793 }
12794 }
12795
12796 if (!sym->attr.proc_pointer)
12797 {
12798 if (sym->attr.save == SAVE_EXPLICIT)
12799 {
12800 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
12801 "in %qs at %L", sym->name, &sym->declared_at);
12802 return false;
12803 }
12804 if (sym->attr.intent)
12805 {
12806 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
12807 "in %qs at %L", sym->name, &sym->declared_at);
12808 return false;
12809 }
12810 if (sym->attr.subroutine && sym->attr.result)
12811 {
12812 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
12813 "in %qs at %L", sym->name, &sym->declared_at);
12814 return false;
12815 }
12816 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
12817 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
12818 || sym->attr.contained))
12819 {
12820 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
12821 "in %qs at %L", sym->name, &sym->declared_at);
12822 return false;
12823 }
12824 if (strcmp ("ppr@", sym->name) == 0)
12825 {
12826 gfc_error ("Procedure pointer result %qs at %L "
12827 "is missing the pointer attribute",
12828 sym->ns->proc_name->name, &sym->declared_at);
12829 return false;
12830 }
12831 }
12832
12833 /* Assume that a procedure whose body is not known has references
12834 to external arrays. */
12835 if (sym->attr.if_source != IFSRC_DECL)
12836 sym->attr.array_outer_dependency = 1;
12837
12838 /* Compare the characteristics of a module procedure with the
12839 interface declaration. Ideally this would be done with
12840 gfc_compare_interfaces but, at present, the formal interface
12841 cannot be copied to the ts.interface. */
12842 if (sym->attr.module_procedure
12843 && sym->attr.if_source == IFSRC_DECL)
12844 {
12845 gfc_symbol *iface;
12846 char name[2*GFC_MAX_SYMBOL_LEN + 1];
12847 char *module_name;
12848 char *submodule_name;
12849 strcpy (name, sym->ns->proc_name->name);
12850 module_name = strtok (name, ".");
12851 submodule_name = strtok (NULL, ".");
12852
12853 iface = sym->tlink;
12854 sym->tlink = NULL;
12855
12856 /* Make sure that the result uses the correct charlen for deferred
12857 length results. */
12858 if (iface && sym->result
12859 && iface->ts.type == BT_CHARACTER
12860 && iface->ts.deferred)
12861 sym->result->ts.u.cl = iface->ts.u.cl;
12862
12863 if (iface == NULL)
12864 goto check_formal;
12865
12866 /* Check the procedure characteristics. */
12867 if (sym->attr.elemental != iface->attr.elemental)
12868 {
12869 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
12870 "PROCEDURE at %L and its interface in %s",
12871 &sym->declared_at, module_name);
12872 return false;
12873 }
12874
12875 if (sym->attr.pure != iface->attr.pure)
12876 {
12877 gfc_error ("Mismatch in PURE attribute between MODULE "
12878 "PROCEDURE at %L and its interface in %s",
12879 &sym->declared_at, module_name);
12880 return false;
12881 }
12882
12883 if (sym->attr.recursive != iface->attr.recursive)
12884 {
12885 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
12886 "PROCEDURE at %L and its interface in %s",
12887 &sym->declared_at, module_name);
12888 return false;
12889 }
12890
12891 /* Check the result characteristics. */
12892 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
12893 {
12894 gfc_error ("%s between the MODULE PROCEDURE declaration "
12895 "in MODULE %qs and the declaration at %L in "
12896 "(SUB)MODULE %qs",
12897 errmsg, module_name, &sym->declared_at,
12898 submodule_name ? submodule_name : module_name);
12899 return false;
12900 }
12901
12902 check_formal:
12903 /* Check the characteristics of the formal arguments. */
12904 if (sym->formal && sym->formal_ns)
12905 {
12906 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
12907 {
12908 new_formal = arg;
12909 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
12910 }
12911 }
12912 }
12913 return true;
12914 }
12915
12916
12917 /* Resolve a list of finalizer procedures. That is, after they have hopefully
12918 been defined and we now know their defined arguments, check that they fulfill
12919 the requirements of the standard for procedures used as finalizers. */
12920
12921 static bool
12922 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
12923 {
12924 gfc_finalizer* list;
12925 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
12926 bool result = true;
12927 bool seen_scalar = false;
12928 gfc_symbol *vtab;
12929 gfc_component *c;
12930 gfc_symbol *parent = gfc_get_derived_super_type (derived);
12931
12932 if (parent)
12933 gfc_resolve_finalizers (parent, finalizable);
12934
12935 /* Ensure that derived-type components have a their finalizers resolved. */
12936 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
12937 for (c = derived->components; c; c = c->next)
12938 if (c->ts.type == BT_DERIVED
12939 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
12940 {
12941 bool has_final2 = false;
12942 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
12943 return false; /* Error. */
12944 has_final = has_final || has_final2;
12945 }
12946 /* Return early if not finalizable. */
12947 if (!has_final)
12948 {
12949 if (finalizable)
12950 *finalizable = false;
12951 return true;
12952 }
12953
12954 /* Walk over the list of finalizer-procedures, check them, and if any one
12955 does not fit in with the standard's definition, print an error and remove
12956 it from the list. */
12957 prev_link = &derived->f2k_derived->finalizers;
12958 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
12959 {
12960 gfc_formal_arglist *dummy_args;
12961 gfc_symbol* arg;
12962 gfc_finalizer* i;
12963 int my_rank;
12964
12965 /* Skip this finalizer if we already resolved it. */
12966 if (list->proc_tree)
12967 {
12968 if (list->proc_tree->n.sym->formal->sym->as == NULL
12969 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
12970 seen_scalar = true;
12971 prev_link = &(list->next);
12972 continue;
12973 }
12974
12975 /* Check this exists and is a SUBROUTINE. */
12976 if (!list->proc_sym->attr.subroutine)
12977 {
12978 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
12979 list->proc_sym->name, &list->where);
12980 goto error;
12981 }
12982
12983 /* We should have exactly one argument. */
12984 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
12985 if (!dummy_args || dummy_args->next)
12986 {
12987 gfc_error ("FINAL procedure at %L must have exactly one argument",
12988 &list->where);
12989 goto error;
12990 }
12991 arg = dummy_args->sym;
12992
12993 /* This argument must be of our type. */
12994 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
12995 {
12996 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
12997 &arg->declared_at, derived->name);
12998 goto error;
12999 }
13000
13001 /* It must neither be a pointer nor allocatable nor optional. */
13002 if (arg->attr.pointer)
13003 {
13004 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
13005 &arg->declared_at);
13006 goto error;
13007 }
13008 if (arg->attr.allocatable)
13009 {
13010 gfc_error ("Argument of FINAL procedure at %L must not be"
13011 " ALLOCATABLE", &arg->declared_at);
13012 goto error;
13013 }
13014 if (arg->attr.optional)
13015 {
13016 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
13017 &arg->declared_at);
13018 goto error;
13019 }
13020
13021 /* It must not be INTENT(OUT). */
13022 if (arg->attr.intent == INTENT_OUT)
13023 {
13024 gfc_error ("Argument of FINAL procedure at %L must not be"
13025 " INTENT(OUT)", &arg->declared_at);
13026 goto error;
13027 }
13028
13029 /* Warn if the procedure is non-scalar and not assumed shape. */
13030 if (warn_surprising && arg->as && arg->as->rank != 0
13031 && arg->as->type != AS_ASSUMED_SHAPE)
13032 gfc_warning (OPT_Wsurprising,
13033 "Non-scalar FINAL procedure at %L should have assumed"
13034 " shape argument", &arg->declared_at);
13035
13036 /* Check that it does not match in kind and rank with a FINAL procedure
13037 defined earlier. To really loop over the *earlier* declarations,
13038 we need to walk the tail of the list as new ones were pushed at the
13039 front. */
13040 /* TODO: Handle kind parameters once they are implemented. */
13041 my_rank = (arg->as ? arg->as->rank : 0);
13042 for (i = list->next; i; i = i->next)
13043 {
13044 gfc_formal_arglist *dummy_args;
13045
13046 /* Argument list might be empty; that is an error signalled earlier,
13047 but we nevertheless continued resolving. */
13048 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
13049 if (dummy_args)
13050 {
13051 gfc_symbol* i_arg = dummy_args->sym;
13052 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
13053 if (i_rank == my_rank)
13054 {
13055 gfc_error ("FINAL procedure %qs declared at %L has the same"
13056 " rank (%d) as %qs",
13057 list->proc_sym->name, &list->where, my_rank,
13058 i->proc_sym->name);
13059 goto error;
13060 }
13061 }
13062 }
13063
13064 /* Is this the/a scalar finalizer procedure? */
13065 if (my_rank == 0)
13066 seen_scalar = true;
13067
13068 /* Find the symtree for this procedure. */
13069 gcc_assert (!list->proc_tree);
13070 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
13071
13072 prev_link = &list->next;
13073 continue;
13074
13075 /* Remove wrong nodes immediately from the list so we don't risk any
13076 troubles in the future when they might fail later expectations. */
13077 error:
13078 i = list;
13079 *prev_link = list->next;
13080 gfc_free_finalizer (i);
13081 result = false;
13082 }
13083
13084 if (result == false)
13085 return false;
13086
13087 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
13088 were nodes in the list, must have been for arrays. It is surely a good
13089 idea to have a scalar version there if there's something to finalize. */
13090 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
13091 gfc_warning (OPT_Wsurprising,
13092 "Only array FINAL procedures declared for derived type %qs"
13093 " defined at %L, suggest also scalar one",
13094 derived->name, &derived->declared_at);
13095
13096 vtab = gfc_find_derived_vtab (derived);
13097 c = vtab->ts.u.derived->components->next->next->next->next->next;
13098 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
13099
13100 if (finalizable)
13101 *finalizable = true;
13102
13103 return true;
13104 }
13105
13106
13107 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
13108
13109 static bool
13110 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
13111 const char* generic_name, locus where)
13112 {
13113 gfc_symbol *sym1, *sym2;
13114 const char *pass1, *pass2;
13115 gfc_formal_arglist *dummy_args;
13116
13117 gcc_assert (t1->specific && t2->specific);
13118 gcc_assert (!t1->specific->is_generic);
13119 gcc_assert (!t2->specific->is_generic);
13120 gcc_assert (t1->is_operator == t2->is_operator);
13121
13122 sym1 = t1->specific->u.specific->n.sym;
13123 sym2 = t2->specific->u.specific->n.sym;
13124
13125 if (sym1 == sym2)
13126 return true;
13127
13128 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
13129 if (sym1->attr.subroutine != sym2->attr.subroutine
13130 || sym1->attr.function != sym2->attr.function)
13131 {
13132 gfc_error ("%qs and %qs cannot be mixed FUNCTION/SUBROUTINE for"
13133 " GENERIC %qs at %L",
13134 sym1->name, sym2->name, generic_name, &where);
13135 return false;
13136 }
13137
13138 /* Determine PASS arguments. */
13139 if (t1->specific->nopass)
13140 pass1 = NULL;
13141 else if (t1->specific->pass_arg)
13142 pass1 = t1->specific->pass_arg;
13143 else
13144 {
13145 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
13146 if (dummy_args)
13147 pass1 = dummy_args->sym->name;
13148 else
13149 pass1 = NULL;
13150 }
13151 if (t2->specific->nopass)
13152 pass2 = NULL;
13153 else if (t2->specific->pass_arg)
13154 pass2 = t2->specific->pass_arg;
13155 else
13156 {
13157 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
13158 if (dummy_args)
13159 pass2 = dummy_args->sym->name;
13160 else
13161 pass2 = NULL;
13162 }
13163
13164 /* Compare the interfaces. */
13165 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
13166 NULL, 0, pass1, pass2))
13167 {
13168 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
13169 sym1->name, sym2->name, generic_name, &where);
13170 return false;
13171 }
13172
13173 return true;
13174 }
13175
13176
13177 /* Worker function for resolving a generic procedure binding; this is used to
13178 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
13179
13180 The difference between those cases is finding possible inherited bindings
13181 that are overridden, as one has to look for them in tb_sym_root,
13182 tb_uop_root or tb_op, respectively. Thus the caller must already find
13183 the super-type and set p->overridden correctly. */
13184
13185 static bool
13186 resolve_tb_generic_targets (gfc_symbol* super_type,
13187 gfc_typebound_proc* p, const char* name)
13188 {
13189 gfc_tbp_generic* target;
13190 gfc_symtree* first_target;
13191 gfc_symtree* inherited;
13192
13193 gcc_assert (p && p->is_generic);
13194
13195 /* Try to find the specific bindings for the symtrees in our target-list. */
13196 gcc_assert (p->u.generic);
13197 for (target = p->u.generic; target; target = target->next)
13198 if (!target->specific)
13199 {
13200 gfc_typebound_proc* overridden_tbp;
13201 gfc_tbp_generic* g;
13202 const char* target_name;
13203
13204 target_name = target->specific_st->name;
13205
13206 /* Defined for this type directly. */
13207 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
13208 {
13209 target->specific = target->specific_st->n.tb;
13210 goto specific_found;
13211 }
13212
13213 /* Look for an inherited specific binding. */
13214 if (super_type)
13215 {
13216 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
13217 true, NULL);
13218
13219 if (inherited)
13220 {
13221 gcc_assert (inherited->n.tb);
13222 target->specific = inherited->n.tb;
13223 goto specific_found;
13224 }
13225 }
13226
13227 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
13228 " at %L", target_name, name, &p->where);
13229 return false;
13230
13231 /* Once we've found the specific binding, check it is not ambiguous with
13232 other specifics already found or inherited for the same GENERIC. */
13233 specific_found:
13234 gcc_assert (target->specific);
13235
13236 /* This must really be a specific binding! */
13237 if (target->specific->is_generic)
13238 {
13239 gfc_error ("GENERIC %qs at %L must target a specific binding,"
13240 " %qs is GENERIC, too", name, &p->where, target_name);
13241 return false;
13242 }
13243
13244 /* Check those already resolved on this type directly. */
13245 for (g = p->u.generic; g; g = g->next)
13246 if (g != target && g->specific
13247 && !check_generic_tbp_ambiguity (target, g, name, p->where))
13248 return false;
13249
13250 /* Check for ambiguity with inherited specific targets. */
13251 for (overridden_tbp = p->overridden; overridden_tbp;
13252 overridden_tbp = overridden_tbp->overridden)
13253 if (overridden_tbp->is_generic)
13254 {
13255 for (g = overridden_tbp->u.generic; g; g = g->next)
13256 {
13257 gcc_assert (g->specific);
13258 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
13259 return false;
13260 }
13261 }
13262 }
13263
13264 /* If we attempt to "overwrite" a specific binding, this is an error. */
13265 if (p->overridden && !p->overridden->is_generic)
13266 {
13267 gfc_error ("GENERIC %qs at %L cannot overwrite specific binding with"
13268 " the same name", name, &p->where);
13269 return false;
13270 }
13271
13272 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
13273 all must have the same attributes here. */
13274 first_target = p->u.generic->specific->u.specific;
13275 gcc_assert (first_target);
13276 p->subroutine = first_target->n.sym->attr.subroutine;
13277 p->function = first_target->n.sym->attr.function;
13278
13279 return true;
13280 }
13281
13282
13283 /* Resolve a GENERIC procedure binding for a derived type. */
13284
13285 static bool
13286 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
13287 {
13288 gfc_symbol* super_type;
13289
13290 /* Find the overridden binding if any. */
13291 st->n.tb->overridden = NULL;
13292 super_type = gfc_get_derived_super_type (derived);
13293 if (super_type)
13294 {
13295 gfc_symtree* overridden;
13296 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
13297 true, NULL);
13298
13299 if (overridden && overridden->n.tb)
13300 st->n.tb->overridden = overridden->n.tb;
13301 }
13302
13303 /* Resolve using worker function. */
13304 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
13305 }
13306
13307
13308 /* Retrieve the target-procedure of an operator binding and do some checks in
13309 common for intrinsic and user-defined type-bound operators. */
13310
13311 static gfc_symbol*
13312 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
13313 {
13314 gfc_symbol* target_proc;
13315
13316 gcc_assert (target->specific && !target->specific->is_generic);
13317 target_proc = target->specific->u.specific->n.sym;
13318 gcc_assert (target_proc);
13319
13320 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13321 if (target->specific->nopass)
13322 {
13323 gfc_error ("Type-bound operator at %L cannot be NOPASS", &where);
13324 return NULL;
13325 }
13326
13327 return target_proc;
13328 }
13329
13330
13331 /* Resolve a type-bound intrinsic operator. */
13332
13333 static bool
13334 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13335 gfc_typebound_proc* p)
13336 {
13337 gfc_symbol* super_type;
13338 gfc_tbp_generic* target;
13339
13340 /* If there's already an error here, do nothing (but don't fail again). */
13341 if (p->error)
13342 return true;
13343
13344 /* Operators should always be GENERIC bindings. */
13345 gcc_assert (p->is_generic);
13346
13347 /* Look for an overridden binding. */
13348 super_type = gfc_get_derived_super_type (derived);
13349 if (super_type && super_type->f2k_derived)
13350 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13351 op, true, NULL);
13352 else
13353 p->overridden = NULL;
13354
13355 /* Resolve general GENERIC properties using worker function. */
13356 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13357 goto error;
13358
13359 /* Check the targets to be procedures of correct interface. */
13360 for (target = p->u.generic; target; target = target->next)
13361 {
13362 gfc_symbol* target_proc;
13363
13364 target_proc = get_checked_tb_operator_target (target, p->where);
13365 if (!target_proc)
13366 goto error;
13367
13368 if (!gfc_check_operator_interface (target_proc, op, p->where))
13369 goto error;
13370
13371 /* Add target to non-typebound operator list. */
13372 if (!target->specific->deferred && !derived->attr.use_assoc
13373 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13374 {
13375 gfc_interface *head, *intr;
13376
13377 /* Preempt 'gfc_check_new_interface' for submodules, where the
13378 mechanism for handling module procedures winds up resolving
13379 operator interfaces twice and would otherwise cause an error. */
13380 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13381 if (intr->sym == target_proc
13382 && target_proc->attr.used_in_submodule)
13383 return true;
13384
13385 if (!gfc_check_new_interface (derived->ns->op[op],
13386 target_proc, p->where))
13387 return false;
13388 head = derived->ns->op[op];
13389 intr = gfc_get_interface ();
13390 intr->sym = target_proc;
13391 intr->where = p->where;
13392 intr->next = head;
13393 derived->ns->op[op] = intr;
13394 }
13395 }
13396
13397 return true;
13398
13399 error:
13400 p->error = 1;
13401 return false;
13402 }
13403
13404
13405 /* Resolve a type-bound user operator (tree-walker callback). */
13406
13407 static gfc_symbol* resolve_bindings_derived;
13408 static bool resolve_bindings_result;
13409
13410 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13411
13412 static void
13413 resolve_typebound_user_op (gfc_symtree* stree)
13414 {
13415 gfc_symbol* super_type;
13416 gfc_tbp_generic* target;
13417
13418 gcc_assert (stree && stree->n.tb);
13419
13420 if (stree->n.tb->error)
13421 return;
13422
13423 /* Operators should always be GENERIC bindings. */
13424 gcc_assert (stree->n.tb->is_generic);
13425
13426 /* Find overridden procedure, if any. */
13427 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13428 if (super_type && super_type->f2k_derived)
13429 {
13430 gfc_symtree* overridden;
13431 overridden = gfc_find_typebound_user_op (super_type, NULL,
13432 stree->name, true, NULL);
13433
13434 if (overridden && overridden->n.tb)
13435 stree->n.tb->overridden = overridden->n.tb;
13436 }
13437 else
13438 stree->n.tb->overridden = NULL;
13439
13440 /* Resolve basically using worker function. */
13441 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13442 goto error;
13443
13444 /* Check the targets to be functions of correct interface. */
13445 for (target = stree->n.tb->u.generic; target; target = target->next)
13446 {
13447 gfc_symbol* target_proc;
13448
13449 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13450 if (!target_proc)
13451 goto error;
13452
13453 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13454 goto error;
13455 }
13456
13457 return;
13458
13459 error:
13460 resolve_bindings_result = false;
13461 stree->n.tb->error = 1;
13462 }
13463
13464
13465 /* Resolve the type-bound procedures for a derived type. */
13466
13467 static void
13468 resolve_typebound_procedure (gfc_symtree* stree)
13469 {
13470 gfc_symbol* proc;
13471 locus where;
13472 gfc_symbol* me_arg;
13473 gfc_symbol* super_type;
13474 gfc_component* comp;
13475
13476 gcc_assert (stree);
13477
13478 /* Undefined specific symbol from GENERIC target definition. */
13479 if (!stree->n.tb)
13480 return;
13481
13482 if (stree->n.tb->error)
13483 return;
13484
13485 /* If this is a GENERIC binding, use that routine. */
13486 if (stree->n.tb->is_generic)
13487 {
13488 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13489 goto error;
13490 return;
13491 }
13492
13493 /* Get the target-procedure to check it. */
13494 gcc_assert (!stree->n.tb->is_generic);
13495 gcc_assert (stree->n.tb->u.specific);
13496 proc = stree->n.tb->u.specific->n.sym;
13497 where = stree->n.tb->where;
13498
13499 /* Default access should already be resolved from the parser. */
13500 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13501
13502 if (stree->n.tb->deferred)
13503 {
13504 if (!check_proc_interface (proc, &where))
13505 goto error;
13506 }
13507 else
13508 {
13509 /* Check for F08:C465. */
13510 if ((!proc->attr.subroutine && !proc->attr.function)
13511 || (proc->attr.proc != PROC_MODULE
13512 && proc->attr.if_source != IFSRC_IFBODY)
13513 || proc->attr.abstract)
13514 {
13515 gfc_error ("%qs must be a module procedure or an external procedure with"
13516 " an explicit interface at %L", proc->name, &where);
13517 goto error;
13518 }
13519 }
13520
13521 stree->n.tb->subroutine = proc->attr.subroutine;
13522 stree->n.tb->function = proc->attr.function;
13523
13524 /* Find the super-type of the current derived type. We could do this once and
13525 store in a global if speed is needed, but as long as not I believe this is
13526 more readable and clearer. */
13527 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13528
13529 /* If PASS, resolve and check arguments if not already resolved / loaded
13530 from a .mod file. */
13531 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13532 {
13533 gfc_formal_arglist *dummy_args;
13534
13535 dummy_args = gfc_sym_get_dummy_args (proc);
13536 if (stree->n.tb->pass_arg)
13537 {
13538 gfc_formal_arglist *i;
13539
13540 /* If an explicit passing argument name is given, walk the arg-list
13541 and look for it. */
13542
13543 me_arg = NULL;
13544 stree->n.tb->pass_arg_num = 1;
13545 for (i = dummy_args; i; i = i->next)
13546 {
13547 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13548 {
13549 me_arg = i->sym;
13550 break;
13551 }
13552 ++stree->n.tb->pass_arg_num;
13553 }
13554
13555 if (!me_arg)
13556 {
13557 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13558 " argument %qs",
13559 proc->name, stree->n.tb->pass_arg, &where,
13560 stree->n.tb->pass_arg);
13561 goto error;
13562 }
13563 }
13564 else
13565 {
13566 /* Otherwise, take the first one; there should in fact be at least
13567 one. */
13568 stree->n.tb->pass_arg_num = 1;
13569 if (!dummy_args)
13570 {
13571 gfc_error ("Procedure %qs with PASS at %L must have at"
13572 " least one argument", proc->name, &where);
13573 goto error;
13574 }
13575 me_arg = dummy_args->sym;
13576 }
13577
13578 /* Now check that the argument-type matches and the passed-object
13579 dummy argument is generally fine. */
13580
13581 gcc_assert (me_arg);
13582
13583 if (me_arg->ts.type != BT_CLASS)
13584 {
13585 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13586 " at %L", proc->name, &where);
13587 goto error;
13588 }
13589
13590 if (CLASS_DATA (me_arg)->ts.u.derived
13591 != resolve_bindings_derived)
13592 {
13593 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13594 " the derived-type %qs", me_arg->name, proc->name,
13595 me_arg->name, &where, resolve_bindings_derived->name);
13596 goto error;
13597 }
13598
13599 gcc_assert (me_arg->ts.type == BT_CLASS);
13600 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
13601 {
13602 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13603 " scalar", proc->name, &where);
13604 goto error;
13605 }
13606 if (CLASS_DATA (me_arg)->attr.allocatable)
13607 {
13608 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13609 " be ALLOCATABLE", proc->name, &where);
13610 goto error;
13611 }
13612 if (CLASS_DATA (me_arg)->attr.class_pointer)
13613 {
13614 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13615 " be POINTER", proc->name, &where);
13616 goto error;
13617 }
13618 }
13619
13620 /* If we are extending some type, check that we don't override a procedure
13621 flagged NON_OVERRIDABLE. */
13622 stree->n.tb->overridden = NULL;
13623 if (super_type)
13624 {
13625 gfc_symtree* overridden;
13626 overridden = gfc_find_typebound_proc (super_type, NULL,
13627 stree->name, true, NULL);
13628
13629 if (overridden)
13630 {
13631 if (overridden->n.tb)
13632 stree->n.tb->overridden = overridden->n.tb;
13633
13634 if (!gfc_check_typebound_override (stree, overridden))
13635 goto error;
13636 }
13637 }
13638
13639 /* See if there's a name collision with a component directly in this type. */
13640 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
13641 if (!strcmp (comp->name, stree->name))
13642 {
13643 gfc_error ("Procedure %qs at %L has the same name as a component of"
13644 " %qs",
13645 stree->name, &where, resolve_bindings_derived->name);
13646 goto error;
13647 }
13648
13649 /* Try to find a name collision with an inherited component. */
13650 if (super_type && gfc_find_component (super_type, stree->name, true, true,
13651 NULL))
13652 {
13653 gfc_error ("Procedure %qs at %L has the same name as an inherited"
13654 " component of %qs",
13655 stree->name, &where, resolve_bindings_derived->name);
13656 goto error;
13657 }
13658
13659 stree->n.tb->error = 0;
13660 return;
13661
13662 error:
13663 resolve_bindings_result = false;
13664 stree->n.tb->error = 1;
13665 }
13666
13667
13668 static bool
13669 resolve_typebound_procedures (gfc_symbol* derived)
13670 {
13671 int op;
13672 gfc_symbol* super_type;
13673
13674 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
13675 return true;
13676
13677 super_type = gfc_get_derived_super_type (derived);
13678 if (super_type)
13679 resolve_symbol (super_type);
13680
13681 resolve_bindings_derived = derived;
13682 resolve_bindings_result = true;
13683
13684 if (derived->f2k_derived->tb_sym_root)
13685 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
13686 &resolve_typebound_procedure);
13687
13688 if (derived->f2k_derived->tb_uop_root)
13689 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
13690 &resolve_typebound_user_op);
13691
13692 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
13693 {
13694 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
13695 if (p && !resolve_typebound_intrinsic_op (derived,
13696 (gfc_intrinsic_op)op, p))
13697 resolve_bindings_result = false;
13698 }
13699
13700 return resolve_bindings_result;
13701 }
13702
13703
13704 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
13705 to give all identical derived types the same backend_decl. */
13706 static void
13707 add_dt_to_dt_list (gfc_symbol *derived)
13708 {
13709 if (!derived->dt_next)
13710 {
13711 if (gfc_derived_types)
13712 {
13713 derived->dt_next = gfc_derived_types->dt_next;
13714 gfc_derived_types->dt_next = derived;
13715 }
13716 else
13717 {
13718 derived->dt_next = derived;
13719 }
13720 gfc_derived_types = derived;
13721 }
13722 }
13723
13724
13725 /* Ensure that a derived-type is really not abstract, meaning that every
13726 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
13727
13728 static bool
13729 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
13730 {
13731 if (!st)
13732 return true;
13733
13734 if (!ensure_not_abstract_walker (sub, st->left))
13735 return false;
13736 if (!ensure_not_abstract_walker (sub, st->right))
13737 return false;
13738
13739 if (st->n.tb && st->n.tb->deferred)
13740 {
13741 gfc_symtree* overriding;
13742 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
13743 if (!overriding)
13744 return false;
13745 gcc_assert (overriding->n.tb);
13746 if (overriding->n.tb->deferred)
13747 {
13748 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
13749 " %qs is DEFERRED and not overridden",
13750 sub->name, &sub->declared_at, st->name);
13751 return false;
13752 }
13753 }
13754
13755 return true;
13756 }
13757
13758 static bool
13759 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
13760 {
13761 /* The algorithm used here is to recursively travel up the ancestry of sub
13762 and for each ancestor-type, check all bindings. If any of them is
13763 DEFERRED, look it up starting from sub and see if the found (overriding)
13764 binding is not DEFERRED.
13765 This is not the most efficient way to do this, but it should be ok and is
13766 clearer than something sophisticated. */
13767
13768 gcc_assert (ancestor && !sub->attr.abstract);
13769
13770 if (!ancestor->attr.abstract)
13771 return true;
13772
13773 /* Walk bindings of this ancestor. */
13774 if (ancestor->f2k_derived)
13775 {
13776 bool t;
13777 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
13778 if (!t)
13779 return false;
13780 }
13781
13782 /* Find next ancestor type and recurse on it. */
13783 ancestor = gfc_get_derived_super_type (ancestor);
13784 if (ancestor)
13785 return ensure_not_abstract (sub, ancestor);
13786
13787 return true;
13788 }
13789
13790
13791 /* This check for typebound defined assignments is done recursively
13792 since the order in which derived types are resolved is not always in
13793 order of the declarations. */
13794
13795 static void
13796 check_defined_assignments (gfc_symbol *derived)
13797 {
13798 gfc_component *c;
13799
13800 for (c = derived->components; c; c = c->next)
13801 {
13802 if (!gfc_bt_struct (c->ts.type)
13803 || c->attr.pointer
13804 || c->attr.allocatable
13805 || c->attr.proc_pointer_comp
13806 || c->attr.class_pointer
13807 || c->attr.proc_pointer)
13808 continue;
13809
13810 if (c->ts.u.derived->attr.defined_assign_comp
13811 || (c->ts.u.derived->f2k_derived
13812 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
13813 {
13814 derived->attr.defined_assign_comp = 1;
13815 return;
13816 }
13817
13818 check_defined_assignments (c->ts.u.derived);
13819 if (c->ts.u.derived->attr.defined_assign_comp)
13820 {
13821 derived->attr.defined_assign_comp = 1;
13822 return;
13823 }
13824 }
13825 }
13826
13827
13828 /* Resolve a single component of a derived type or structure. */
13829
13830 static bool
13831 resolve_component (gfc_component *c, gfc_symbol *sym)
13832 {
13833 gfc_symbol *super_type;
13834 symbol_attribute *attr;
13835
13836 if (c->attr.artificial)
13837 return true;
13838
13839 /* Do not allow vtype components to be resolved in nameless namespaces
13840 such as block data because the procedure pointers will cause ICEs
13841 and vtables are not needed in these contexts. */
13842 if (sym->attr.vtype && sym->attr.use_assoc
13843 && sym->ns->proc_name == NULL)
13844 return true;
13845
13846 /* F2008, C442. */
13847 if ((!sym->attr.is_class || c != sym->components)
13848 && c->attr.codimension
13849 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
13850 {
13851 gfc_error ("Coarray component %qs at %L must be allocatable with "
13852 "deferred shape", c->name, &c->loc);
13853 return false;
13854 }
13855
13856 /* F2008, C443. */
13857 if (c->attr.codimension && c->ts.type == BT_DERIVED
13858 && c->ts.u.derived->ts.is_iso_c)
13859 {
13860 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
13861 "shall not be a coarray", c->name, &c->loc);
13862 return false;
13863 }
13864
13865 /* F2008, C444. */
13866 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
13867 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
13868 || c->attr.allocatable))
13869 {
13870 gfc_error ("Component %qs at %L with coarray component "
13871 "shall be a nonpointer, nonallocatable scalar",
13872 c->name, &c->loc);
13873 return false;
13874 }
13875
13876 /* F2008, C448. */
13877 if (c->ts.type == BT_CLASS)
13878 {
13879 if (CLASS_DATA (c))
13880 {
13881 attr = &(CLASS_DATA (c)->attr);
13882
13883 /* Fix up contiguous attribute. */
13884 if (c->attr.contiguous)
13885 attr->contiguous = 1;
13886 }
13887 else
13888 attr = NULL;
13889 }
13890 else
13891 attr = &c->attr;
13892
13893 if (attr && attr->contiguous && (!attr->dimension || !attr->pointer))
13894 {
13895 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
13896 "is not an array pointer", c->name, &c->loc);
13897 return false;
13898 }
13899
13900 /* F2003, 15.2.1 - length has to be one. */
13901 if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
13902 && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
13903 || !gfc_is_constant_expr (c->ts.u.cl->length)
13904 || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
13905 {
13906 gfc_error ("Component %qs of BIND(C) type at %L must have length one",
13907 c->name, &c->loc);
13908 return false;
13909 }
13910
13911 if (c->attr.proc_pointer && c->ts.interface)
13912 {
13913 gfc_symbol *ifc = c->ts.interface;
13914
13915 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
13916 {
13917 c->tb->error = 1;
13918 return false;
13919 }
13920
13921 if (ifc->attr.if_source || ifc->attr.intrinsic)
13922 {
13923 /* Resolve interface and copy attributes. */
13924 if (ifc->formal && !ifc->formal_ns)
13925 resolve_symbol (ifc);
13926 if (ifc->attr.intrinsic)
13927 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
13928
13929 if (ifc->result)
13930 {
13931 c->ts = ifc->result->ts;
13932 c->attr.allocatable = ifc->result->attr.allocatable;
13933 c->attr.pointer = ifc->result->attr.pointer;
13934 c->attr.dimension = ifc->result->attr.dimension;
13935 c->as = gfc_copy_array_spec (ifc->result->as);
13936 c->attr.class_ok = ifc->result->attr.class_ok;
13937 }
13938 else
13939 {
13940 c->ts = ifc->ts;
13941 c->attr.allocatable = ifc->attr.allocatable;
13942 c->attr.pointer = ifc->attr.pointer;
13943 c->attr.dimension = ifc->attr.dimension;
13944 c->as = gfc_copy_array_spec (ifc->as);
13945 c->attr.class_ok = ifc->attr.class_ok;
13946 }
13947 c->ts.interface = ifc;
13948 c->attr.function = ifc->attr.function;
13949 c->attr.subroutine = ifc->attr.subroutine;
13950
13951 c->attr.pure = ifc->attr.pure;
13952 c->attr.elemental = ifc->attr.elemental;
13953 c->attr.recursive = ifc->attr.recursive;
13954 c->attr.always_explicit = ifc->attr.always_explicit;
13955 c->attr.ext_attr |= ifc->attr.ext_attr;
13956 /* Copy char length. */
13957 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
13958 {
13959 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
13960 if (cl->length && !cl->resolved
13961 && !gfc_resolve_expr (cl->length))
13962 {
13963 c->tb->error = 1;
13964 return false;
13965 }
13966 c->ts.u.cl = cl;
13967 }
13968 }
13969 }
13970 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
13971 {
13972 /* Since PPCs are not implicitly typed, a PPC without an explicit
13973 interface must be a subroutine. */
13974 gfc_add_subroutine (&c->attr, c->name, &c->loc);
13975 }
13976
13977 /* Procedure pointer components: Check PASS arg. */
13978 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
13979 && !sym->attr.vtype)
13980 {
13981 gfc_symbol* me_arg;
13982
13983 if (c->tb->pass_arg)
13984 {
13985 gfc_formal_arglist* i;
13986
13987 /* If an explicit passing argument name is given, walk the arg-list
13988 and look for it. */
13989
13990 me_arg = NULL;
13991 c->tb->pass_arg_num = 1;
13992 for (i = c->ts.interface->formal; i; i = i->next)
13993 {
13994 if (!strcmp (i->sym->name, c->tb->pass_arg))
13995 {
13996 me_arg = i->sym;
13997 break;
13998 }
13999 c->tb->pass_arg_num++;
14000 }
14001
14002 if (!me_arg)
14003 {
14004 gfc_error ("Procedure pointer component %qs with PASS(%s) "
14005 "at %L has no argument %qs", c->name,
14006 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
14007 c->tb->error = 1;
14008 return false;
14009 }
14010 }
14011 else
14012 {
14013 /* Otherwise, take the first one; there should in fact be at least
14014 one. */
14015 c->tb->pass_arg_num = 1;
14016 if (!c->ts.interface->formal)
14017 {
14018 gfc_error ("Procedure pointer component %qs with PASS at %L "
14019 "must have at least one argument",
14020 c->name, &c->loc);
14021 c->tb->error = 1;
14022 return false;
14023 }
14024 me_arg = c->ts.interface->formal->sym;
14025 }
14026
14027 /* Now check that the argument-type matches. */
14028 gcc_assert (me_arg);
14029 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
14030 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
14031 || (me_arg->ts.type == BT_CLASS
14032 && CLASS_DATA (me_arg)->ts.u.derived != sym))
14033 {
14034 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
14035 " the derived type %qs", me_arg->name, c->name,
14036 me_arg->name, &c->loc, sym->name);
14037 c->tb->error = 1;
14038 return false;
14039 }
14040
14041 /* Check for F03:C453. */
14042 if (CLASS_DATA (me_arg)->attr.dimension)
14043 {
14044 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14045 "must be scalar", me_arg->name, c->name, me_arg->name,
14046 &c->loc);
14047 c->tb->error = 1;
14048 return false;
14049 }
14050
14051 if (CLASS_DATA (me_arg)->attr.class_pointer)
14052 {
14053 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14054 "may not have the POINTER attribute", me_arg->name,
14055 c->name, me_arg->name, &c->loc);
14056 c->tb->error = 1;
14057 return false;
14058 }
14059
14060 if (CLASS_DATA (me_arg)->attr.allocatable)
14061 {
14062 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
14063 "may not be ALLOCATABLE", me_arg->name, c->name,
14064 me_arg->name, &c->loc);
14065 c->tb->error = 1;
14066 return false;
14067 }
14068
14069 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
14070 {
14071 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
14072 " at %L", c->name, &c->loc);
14073 return false;
14074 }
14075
14076 }
14077
14078 /* Check type-spec if this is not the parent-type component. */
14079 if (((sym->attr.is_class
14080 && (!sym->components->ts.u.derived->attr.extension
14081 || c != sym->components->ts.u.derived->components))
14082 || (!sym->attr.is_class
14083 && (!sym->attr.extension || c != sym->components)))
14084 && !sym->attr.vtype
14085 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
14086 return false;
14087
14088 super_type = gfc_get_derived_super_type (sym);
14089
14090 /* If this type is an extension, set the accessibility of the parent
14091 component. */
14092 if (super_type
14093 && ((sym->attr.is_class
14094 && c == sym->components->ts.u.derived->components)
14095 || (!sym->attr.is_class && c == sym->components))
14096 && strcmp (super_type->name, c->name) == 0)
14097 c->attr.access = super_type->attr.access;
14098
14099 /* If this type is an extension, see if this component has the same name
14100 as an inherited type-bound procedure. */
14101 if (super_type && !sym->attr.is_class
14102 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
14103 {
14104 gfc_error ("Component %qs of %qs at %L has the same name as an"
14105 " inherited type-bound procedure",
14106 c->name, sym->name, &c->loc);
14107 return false;
14108 }
14109
14110 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
14111 && !c->ts.deferred)
14112 {
14113 if (c->ts.u.cl->length == NULL
14114 || (!resolve_charlen(c->ts.u.cl))
14115 || !gfc_is_constant_expr (c->ts.u.cl->length))
14116 {
14117 gfc_error ("Character length of component %qs needs to "
14118 "be a constant specification expression at %L",
14119 c->name,
14120 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
14121 return false;
14122 }
14123 }
14124
14125 if (c->ts.type == BT_CHARACTER && c->ts.deferred
14126 && !c->attr.pointer && !c->attr.allocatable)
14127 {
14128 gfc_error ("Character component %qs of %qs at %L with deferred "
14129 "length must be a POINTER or ALLOCATABLE",
14130 c->name, sym->name, &c->loc);
14131 return false;
14132 }
14133
14134 /* Add the hidden deferred length field. */
14135 if (c->ts.type == BT_CHARACTER
14136 && (c->ts.deferred || c->attr.pdt_string)
14137 && !c->attr.function
14138 && !sym->attr.is_class)
14139 {
14140 char name[GFC_MAX_SYMBOL_LEN+9];
14141 gfc_component *strlen;
14142 sprintf (name, "_%s_length", c->name);
14143 strlen = gfc_find_component (sym, name, true, true, NULL);
14144 if (strlen == NULL)
14145 {
14146 if (!gfc_add_component (sym, name, &strlen))
14147 return false;
14148 strlen->ts.type = BT_INTEGER;
14149 strlen->ts.kind = gfc_charlen_int_kind;
14150 strlen->attr.access = ACCESS_PRIVATE;
14151 strlen->attr.artificial = 1;
14152 }
14153 }
14154
14155 if (c->ts.type == BT_DERIVED
14156 && sym->component_access != ACCESS_PRIVATE
14157 && gfc_check_symbol_access (sym)
14158 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
14159 && !c->ts.u.derived->attr.use_assoc
14160 && !gfc_check_symbol_access (c->ts.u.derived)
14161 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
14162 "PRIVATE type and cannot be a component of "
14163 "%qs, which is PUBLIC at %L", c->name,
14164 sym->name, &sym->declared_at))
14165 return false;
14166
14167 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
14168 {
14169 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
14170 "type %s", c->name, &c->loc, sym->name);
14171 return false;
14172 }
14173
14174 if (sym->attr.sequence)
14175 {
14176 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
14177 {
14178 gfc_error ("Component %s of SEQUENCE type declared at %L does "
14179 "not have the SEQUENCE attribute",
14180 c->ts.u.derived->name, &sym->declared_at);
14181 return false;
14182 }
14183 }
14184
14185 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
14186 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
14187 else if (c->ts.type == BT_CLASS && c->attr.class_ok
14188 && CLASS_DATA (c)->ts.u.derived->attr.generic)
14189 CLASS_DATA (c)->ts.u.derived
14190 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
14191
14192 /* If an allocatable component derived type is of the same type as
14193 the enclosing derived type, we need a vtable generating so that
14194 the __deallocate procedure is created. */
14195 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
14196 && c->ts.u.derived == sym && c->attr.allocatable == 1)
14197 gfc_find_vtab (&c->ts);
14198
14199 /* Ensure that all the derived type components are put on the
14200 derived type list; even in formal namespaces, where derived type
14201 pointer components might not have been declared. */
14202 if (c->ts.type == BT_DERIVED
14203 && c->ts.u.derived
14204 && c->ts.u.derived->components
14205 && c->attr.pointer
14206 && sym != c->ts.u.derived)
14207 add_dt_to_dt_list (c->ts.u.derived);
14208
14209 if (!gfc_resolve_array_spec (c->as,
14210 !(c->attr.pointer || c->attr.proc_pointer
14211 || c->attr.allocatable)))
14212 return false;
14213
14214 if (c->initializer && !sym->attr.vtype
14215 && !c->attr.pdt_kind && !c->attr.pdt_len
14216 && !gfc_check_assign_symbol (sym, c, c->initializer))
14217 return false;
14218
14219 return true;
14220 }
14221
14222
14223 /* Be nice about the locus for a structure expression - show the locus of the
14224 first non-null sub-expression if we can. */
14225
14226 static locus *
14227 cons_where (gfc_expr *struct_expr)
14228 {
14229 gfc_constructor *cons;
14230
14231 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
14232
14233 cons = gfc_constructor_first (struct_expr->value.constructor);
14234 for (; cons; cons = gfc_constructor_next (cons))
14235 {
14236 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
14237 return &cons->expr->where;
14238 }
14239
14240 return &struct_expr->where;
14241 }
14242
14243 /* Resolve the components of a structure type. Much less work than derived
14244 types. */
14245
14246 static bool
14247 resolve_fl_struct (gfc_symbol *sym)
14248 {
14249 gfc_component *c;
14250 gfc_expr *init = NULL;
14251 bool success;
14252
14253 /* Make sure UNIONs do not have overlapping initializers. */
14254 if (sym->attr.flavor == FL_UNION)
14255 {
14256 for (c = sym->components; c; c = c->next)
14257 {
14258 if (init && c->initializer)
14259 {
14260 gfc_error ("Conflicting initializers in union at %L and %L",
14261 cons_where (init), cons_where (c->initializer));
14262 gfc_free_expr (c->initializer);
14263 c->initializer = NULL;
14264 }
14265 if (init == NULL)
14266 init = c->initializer;
14267 }
14268 }
14269
14270 success = true;
14271 for (c = sym->components; c; c = c->next)
14272 if (!resolve_component (c, sym))
14273 success = false;
14274
14275 if (!success)
14276 return false;
14277
14278 if (sym->components)
14279 add_dt_to_dt_list (sym);
14280
14281 return true;
14282 }
14283
14284
14285 /* Resolve the components of a derived type. This does not have to wait until
14286 resolution stage, but can be done as soon as the dt declaration has been
14287 parsed. */
14288
14289 static bool
14290 resolve_fl_derived0 (gfc_symbol *sym)
14291 {
14292 gfc_symbol* super_type;
14293 gfc_component *c;
14294 gfc_formal_arglist *f;
14295 bool success;
14296
14297 if (sym->attr.unlimited_polymorphic)
14298 return true;
14299
14300 super_type = gfc_get_derived_super_type (sym);
14301
14302 /* F2008, C432. */
14303 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
14304 {
14305 gfc_error ("As extending type %qs at %L has a coarray component, "
14306 "parent type %qs shall also have one", sym->name,
14307 &sym->declared_at, super_type->name);
14308 return false;
14309 }
14310
14311 /* Ensure the extended type gets resolved before we do. */
14312 if (super_type && !resolve_fl_derived0 (super_type))
14313 return false;
14314
14315 /* An ABSTRACT type must be extensible. */
14316 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
14317 {
14318 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
14319 sym->name, &sym->declared_at);
14320 return false;
14321 }
14322
14323 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
14324 : sym->components;
14325
14326 success = true;
14327 for ( ; c != NULL; c = c->next)
14328 if (!resolve_component (c, sym))
14329 success = false;
14330
14331 if (!success)
14332 return false;
14333
14334 /* Now add the caf token field, where needed. */
14335 if (flag_coarray != GFC_FCOARRAY_NONE
14336 && !sym->attr.is_class && !sym->attr.vtype)
14337 {
14338 for (c = sym->components; c; c = c->next)
14339 if (!c->attr.dimension && !c->attr.codimension
14340 && (c->attr.allocatable || c->attr.pointer))
14341 {
14342 char name[GFC_MAX_SYMBOL_LEN+9];
14343 gfc_component *token;
14344 sprintf (name, "_caf_%s", c->name);
14345 token = gfc_find_component (sym, name, true, true, NULL);
14346 if (token == NULL)
14347 {
14348 if (!gfc_add_component (sym, name, &token))
14349 return false;
14350 token->ts.type = BT_VOID;
14351 token->ts.kind = gfc_default_integer_kind;
14352 token->attr.access = ACCESS_PRIVATE;
14353 token->attr.artificial = 1;
14354 token->attr.caf_token = 1;
14355 }
14356 }
14357 }
14358
14359 check_defined_assignments (sym);
14360
14361 if (!sym->attr.defined_assign_comp && super_type)
14362 sym->attr.defined_assign_comp
14363 = super_type->attr.defined_assign_comp;
14364
14365 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14366 all DEFERRED bindings are overridden. */
14367 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14368 && !sym->attr.is_class
14369 && !ensure_not_abstract (sym, super_type))
14370 return false;
14371
14372 /* Check that there is a component for every PDT parameter. */
14373 if (sym->attr.pdt_template)
14374 {
14375 for (f = sym->formal; f; f = f->next)
14376 {
14377 if (!f->sym)
14378 continue;
14379 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14380 if (c == NULL)
14381 {
14382 gfc_error ("Parameterized type %qs does not have a component "
14383 "corresponding to parameter %qs at %L", sym->name,
14384 f->sym->name, &sym->declared_at);
14385 break;
14386 }
14387 }
14388 }
14389
14390 /* Add derived type to the derived type list. */
14391 add_dt_to_dt_list (sym);
14392
14393 return true;
14394 }
14395
14396
14397 /* The following procedure does the full resolution of a derived type,
14398 including resolution of all type-bound procedures (if present). In contrast
14399 to 'resolve_fl_derived0' this can only be done after the module has been
14400 parsed completely. */
14401
14402 static bool
14403 resolve_fl_derived (gfc_symbol *sym)
14404 {
14405 gfc_symbol *gen_dt = NULL;
14406
14407 if (sym->attr.unlimited_polymorphic)
14408 return true;
14409
14410 if (!sym->attr.is_class)
14411 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14412 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14413 && (!gen_dt->generic->sym->attr.use_assoc
14414 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14415 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14416 "%qs at %L being the same name as derived "
14417 "type at %L", sym->name,
14418 gen_dt->generic->sym == sym
14419 ? gen_dt->generic->next->sym->name
14420 : gen_dt->generic->sym->name,
14421 gen_dt->generic->sym == sym
14422 ? &gen_dt->generic->next->sym->declared_at
14423 : &gen_dt->generic->sym->declared_at,
14424 &sym->declared_at))
14425 return false;
14426
14427 if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
14428 {
14429 gfc_error ("Derived type %qs at %L has not been declared",
14430 sym->name, &sym->declared_at);
14431 return false;
14432 }
14433
14434 /* Resolve the finalizer procedures. */
14435 if (!gfc_resolve_finalizers (sym, NULL))
14436 return false;
14437
14438 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14439 {
14440 /* Fix up incomplete CLASS symbols. */
14441 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14442 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14443
14444 /* Nothing more to do for unlimited polymorphic entities. */
14445 if (data->ts.u.derived->attr.unlimited_polymorphic)
14446 return true;
14447 else if (vptr->ts.u.derived == NULL)
14448 {
14449 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14450 gcc_assert (vtab);
14451 vptr->ts.u.derived = vtab->ts.u.derived;
14452 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14453 return false;
14454 }
14455 }
14456
14457 if (!resolve_fl_derived0 (sym))
14458 return false;
14459
14460 /* Resolve the type-bound procedures. */
14461 if (!resolve_typebound_procedures (sym))
14462 return false;
14463
14464 /* Generate module vtables subject to their accessibility and their not
14465 being vtables or pdt templates. If this is not done class declarations
14466 in external procedures wind up with their own version and so SELECT TYPE
14467 fails because the vptrs do not have the same address. */
14468 if (gfc_option.allow_std & GFC_STD_F2003
14469 && sym->ns->proc_name
14470 && sym->ns->proc_name->attr.flavor == FL_MODULE
14471 && sym->attr.access != ACCESS_PRIVATE
14472 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14473 {
14474 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14475 gfc_set_sym_referenced (vtab);
14476 }
14477
14478 return true;
14479 }
14480
14481
14482 static bool
14483 resolve_fl_namelist (gfc_symbol *sym)
14484 {
14485 gfc_namelist *nl;
14486 gfc_symbol *nlsym;
14487
14488 for (nl = sym->namelist; nl; nl = nl->next)
14489 {
14490 /* Check again, the check in match only works if NAMELIST comes
14491 after the decl. */
14492 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14493 {
14494 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14495 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14496 return false;
14497 }
14498
14499 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14500 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14501 "with assumed shape in namelist %qs at %L",
14502 nl->sym->name, sym->name, &sym->declared_at))
14503 return false;
14504
14505 if (is_non_constant_shape_array (nl->sym)
14506 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14507 "with nonconstant shape in namelist %qs at %L",
14508 nl->sym->name, sym->name, &sym->declared_at))
14509 return false;
14510
14511 if (nl->sym->ts.type == BT_CHARACTER
14512 && (nl->sym->ts.u.cl->length == NULL
14513 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14514 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14515 "nonconstant character length in "
14516 "namelist %qs at %L", nl->sym->name,
14517 sym->name, &sym->declared_at))
14518 return false;
14519
14520 }
14521
14522 /* Reject PRIVATE objects in a PUBLIC namelist. */
14523 if (gfc_check_symbol_access (sym))
14524 {
14525 for (nl = sym->namelist; nl; nl = nl->next)
14526 {
14527 if (!nl->sym->attr.use_assoc
14528 && !is_sym_host_assoc (nl->sym, sym->ns)
14529 && !gfc_check_symbol_access (nl->sym))
14530 {
14531 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14532 "cannot be member of PUBLIC namelist %qs at %L",
14533 nl->sym->name, sym->name, &sym->declared_at);
14534 return false;
14535 }
14536
14537 if (nl->sym->ts.type == BT_DERIVED
14538 && (nl->sym->ts.u.derived->attr.alloc_comp
14539 || nl->sym->ts.u.derived->attr.pointer_comp))
14540 {
14541 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14542 "namelist %qs at %L with ALLOCATABLE "
14543 "or POINTER components", nl->sym->name,
14544 sym->name, &sym->declared_at))
14545 return false;
14546 return true;
14547 }
14548
14549 /* Types with private components that came here by USE-association. */
14550 if (nl->sym->ts.type == BT_DERIVED
14551 && derived_inaccessible (nl->sym->ts.u.derived))
14552 {
14553 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14554 "components and cannot be member of namelist %qs at %L",
14555 nl->sym->name, sym->name, &sym->declared_at);
14556 return false;
14557 }
14558
14559 /* Types with private components that are defined in the same module. */
14560 if (nl->sym->ts.type == BT_DERIVED
14561 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14562 && nl->sym->ts.u.derived->attr.private_comp)
14563 {
14564 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14565 "cannot be a member of PUBLIC namelist %qs at %L",
14566 nl->sym->name, sym->name, &sym->declared_at);
14567 return false;
14568 }
14569 }
14570 }
14571
14572
14573 /* 14.1.2 A module or internal procedure represent local entities
14574 of the same type as a namelist member and so are not allowed. */
14575 for (nl = sym->namelist; nl; nl = nl->next)
14576 {
14577 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
14578 continue;
14579
14580 if (nl->sym->attr.function && nl->sym == nl->sym->result)
14581 if ((nl->sym == sym->ns->proc_name)
14582 ||
14583 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
14584 continue;
14585
14586 nlsym = NULL;
14587 if (nl->sym->name)
14588 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
14589 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
14590 {
14591 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14592 "attribute in %qs at %L", nlsym->name,
14593 &sym->declared_at);
14594 return false;
14595 }
14596 }
14597
14598 if (async_io_dt)
14599 {
14600 for (nl = sym->namelist; nl; nl = nl->next)
14601 nl->sym->attr.asynchronous = 1;
14602 }
14603 return true;
14604 }
14605
14606
14607 static bool
14608 resolve_fl_parameter (gfc_symbol *sym)
14609 {
14610 /* A parameter array's shape needs to be constant. */
14611 if (sym->as != NULL
14612 && (sym->as->type == AS_DEFERRED
14613 || is_non_constant_shape_array (sym)))
14614 {
14615 gfc_error ("Parameter array %qs at %L cannot be automatic "
14616 "or of deferred shape", sym->name, &sym->declared_at);
14617 return false;
14618 }
14619
14620 /* Constraints on deferred type parameter. */
14621 if (!deferred_requirements (sym))
14622 return false;
14623
14624 /* Make sure a parameter that has been implicitly typed still
14625 matches the implicit type, since PARAMETER statements can precede
14626 IMPLICIT statements. */
14627 if (sym->attr.implicit_type
14628 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
14629 sym->ns)))
14630 {
14631 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
14632 "later IMPLICIT type", sym->name, &sym->declared_at);
14633 return false;
14634 }
14635
14636 /* Make sure the types of derived parameters are consistent. This
14637 type checking is deferred until resolution because the type may
14638 refer to a derived type from the host. */
14639 if (sym->ts.type == BT_DERIVED
14640 && !gfc_compare_types (&sym->ts, &sym->value->ts))
14641 {
14642 gfc_error ("Incompatible derived type in PARAMETER at %L",
14643 &sym->value->where);
14644 return false;
14645 }
14646
14647 /* F03:C509,C514. */
14648 if (sym->ts.type == BT_CLASS)
14649 {
14650 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
14651 sym->name, &sym->declared_at);
14652 return false;
14653 }
14654
14655 return true;
14656 }
14657
14658
14659 /* Called by resolve_symbol to check PDTs. */
14660
14661 static void
14662 resolve_pdt (gfc_symbol* sym)
14663 {
14664 gfc_symbol *derived = NULL;
14665 gfc_actual_arglist *param;
14666 gfc_component *c;
14667 bool const_len_exprs = true;
14668 bool assumed_len_exprs = false;
14669 symbol_attribute *attr;
14670
14671 if (sym->ts.type == BT_DERIVED)
14672 {
14673 derived = sym->ts.u.derived;
14674 attr = &(sym->attr);
14675 }
14676 else if (sym->ts.type == BT_CLASS)
14677 {
14678 derived = CLASS_DATA (sym)->ts.u.derived;
14679 attr = &(CLASS_DATA (sym)->attr);
14680 }
14681 else
14682 gcc_unreachable ();
14683
14684 gcc_assert (derived->attr.pdt_type);
14685
14686 for (param = sym->param_list; param; param = param->next)
14687 {
14688 c = gfc_find_component (derived, param->name, false, true, NULL);
14689 gcc_assert (c);
14690 if (c->attr.pdt_kind)
14691 continue;
14692
14693 if (param->expr && !gfc_is_constant_expr (param->expr)
14694 && c->attr.pdt_len)
14695 const_len_exprs = false;
14696 else if (param->spec_type == SPEC_ASSUMED)
14697 assumed_len_exprs = true;
14698
14699 if (param->spec_type == SPEC_DEFERRED
14700 && !attr->allocatable && !attr->pointer)
14701 gfc_error ("The object %qs at %L has a deferred LEN "
14702 "parameter %qs and is neither allocatable "
14703 "nor a pointer", sym->name, &sym->declared_at,
14704 param->name);
14705
14706 }
14707
14708 if (!const_len_exprs
14709 && (sym->ns->proc_name->attr.is_main_program
14710 || sym->ns->proc_name->attr.flavor == FL_MODULE
14711 || sym->attr.save != SAVE_NONE))
14712 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
14713 "SAVE attribute or be a variable declared in the "
14714 "main program, a module or a submodule(F08/C513)",
14715 sym->name, &sym->declared_at);
14716
14717 if (assumed_len_exprs && !(sym->attr.dummy
14718 || sym->attr.select_type_temporary || sym->attr.associate_var))
14719 gfc_error ("The object %qs at %L with ASSUMED type parameters "
14720 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
14721 sym->name, &sym->declared_at);
14722 }
14723
14724
14725 /* Do anything necessary to resolve a symbol. Right now, we just
14726 assume that an otherwise unknown symbol is a variable. This sort
14727 of thing commonly happens for symbols in module. */
14728
14729 static void
14730 resolve_symbol (gfc_symbol *sym)
14731 {
14732 int check_constant, mp_flag;
14733 gfc_symtree *symtree;
14734 gfc_symtree *this_symtree;
14735 gfc_namespace *ns;
14736 gfc_component *c;
14737 symbol_attribute class_attr;
14738 gfc_array_spec *as;
14739 bool saved_specification_expr;
14740
14741 if (sym->resolved)
14742 return;
14743 sym->resolved = 1;
14744
14745 /* No symbol will ever have union type; only components can be unions.
14746 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
14747 (just like derived type declaration symbols have flavor FL_DERIVED). */
14748 gcc_assert (sym->ts.type != BT_UNION);
14749
14750 /* Coarrayed polymorphic objects with allocatable or pointer components are
14751 yet unsupported for -fcoarray=lib. */
14752 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
14753 && sym->ts.u.derived && CLASS_DATA (sym)
14754 && CLASS_DATA (sym)->attr.codimension
14755 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
14756 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
14757 {
14758 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
14759 "type coarrays at %L are unsupported", &sym->declared_at);
14760 return;
14761 }
14762
14763 if (sym->attr.artificial)
14764 return;
14765
14766 if (sym->attr.unlimited_polymorphic)
14767 return;
14768
14769 if (sym->attr.flavor == FL_UNKNOWN
14770 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
14771 && !sym->attr.generic && !sym->attr.external
14772 && sym->attr.if_source == IFSRC_UNKNOWN
14773 && sym->ts.type == BT_UNKNOWN))
14774 {
14775
14776 /* If we find that a flavorless symbol is an interface in one of the
14777 parent namespaces, find its symtree in this namespace, free the
14778 symbol and set the symtree to point to the interface symbol. */
14779 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
14780 {
14781 symtree = gfc_find_symtree (ns->sym_root, sym->name);
14782 if (symtree && (symtree->n.sym->generic ||
14783 (symtree->n.sym->attr.flavor == FL_PROCEDURE
14784 && sym->ns->construct_entities)))
14785 {
14786 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
14787 sym->name);
14788 if (this_symtree->n.sym == sym)
14789 {
14790 symtree->n.sym->refs++;
14791 gfc_release_symbol (sym);
14792 this_symtree->n.sym = symtree->n.sym;
14793 return;
14794 }
14795 }
14796 }
14797
14798 /* Otherwise give it a flavor according to such attributes as
14799 it has. */
14800 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
14801 && sym->attr.intrinsic == 0)
14802 sym->attr.flavor = FL_VARIABLE;
14803 else if (sym->attr.flavor == FL_UNKNOWN)
14804 {
14805 sym->attr.flavor = FL_PROCEDURE;
14806 if (sym->attr.dimension)
14807 sym->attr.function = 1;
14808 }
14809 }
14810
14811 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
14812 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
14813
14814 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
14815 && !resolve_procedure_interface (sym))
14816 return;
14817
14818 if (sym->attr.is_protected && !sym->attr.proc_pointer
14819 && (sym->attr.procedure || sym->attr.external))
14820 {
14821 if (sym->attr.external)
14822 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
14823 "at %L", &sym->declared_at);
14824 else
14825 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
14826 "at %L", &sym->declared_at);
14827
14828 return;
14829 }
14830
14831 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
14832 return;
14833
14834 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
14835 && !resolve_fl_struct (sym))
14836 return;
14837
14838 /* Symbols that are module procedures with results (functions) have
14839 the types and array specification copied for type checking in
14840 procedures that call them, as well as for saving to a module
14841 file. These symbols can't stand the scrutiny that their results
14842 can. */
14843 mp_flag = (sym->result != NULL && sym->result != sym);
14844
14845 /* Make sure that the intrinsic is consistent with its internal
14846 representation. This needs to be done before assigning a default
14847 type to avoid spurious warnings. */
14848 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
14849 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
14850 return;
14851
14852 /* Resolve associate names. */
14853 if (sym->assoc)
14854 resolve_assoc_var (sym, true);
14855
14856 /* Assign default type to symbols that need one and don't have one. */
14857 if (sym->ts.type == BT_UNKNOWN)
14858 {
14859 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
14860 {
14861 gfc_set_default_type (sym, 1, NULL);
14862 }
14863
14864 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
14865 && !sym->attr.function && !sym->attr.subroutine
14866 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
14867 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
14868
14869 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14870 {
14871 /* The specific case of an external procedure should emit an error
14872 in the case that there is no implicit type. */
14873 if (!mp_flag)
14874 {
14875 if (!sym->attr.mixed_entry_master)
14876 gfc_set_default_type (sym, sym->attr.external, NULL);
14877 }
14878 else
14879 {
14880 /* Result may be in another namespace. */
14881 resolve_symbol (sym->result);
14882
14883 if (!sym->result->attr.proc_pointer)
14884 {
14885 sym->ts = sym->result->ts;
14886 sym->as = gfc_copy_array_spec (sym->result->as);
14887 sym->attr.dimension = sym->result->attr.dimension;
14888 sym->attr.pointer = sym->result->attr.pointer;
14889 sym->attr.allocatable = sym->result->attr.allocatable;
14890 sym->attr.contiguous = sym->result->attr.contiguous;
14891 }
14892 }
14893 }
14894 }
14895 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14896 {
14897 bool saved_specification_expr = specification_expr;
14898 specification_expr = true;
14899 gfc_resolve_array_spec (sym->result->as, false);
14900 specification_expr = saved_specification_expr;
14901 }
14902
14903 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
14904 {
14905 as = CLASS_DATA (sym)->as;
14906 class_attr = CLASS_DATA (sym)->attr;
14907 class_attr.pointer = class_attr.class_pointer;
14908 }
14909 else
14910 {
14911 class_attr = sym->attr;
14912 as = sym->as;
14913 }
14914
14915 /* F2008, C530. */
14916 if (sym->attr.contiguous
14917 && (!class_attr.dimension
14918 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
14919 && !class_attr.pointer)))
14920 {
14921 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
14922 "array pointer or an assumed-shape or assumed-rank array",
14923 sym->name, &sym->declared_at);
14924 return;
14925 }
14926
14927 /* Assumed size arrays and assumed shape arrays must be dummy
14928 arguments. Array-spec's of implied-shape should have been resolved to
14929 AS_EXPLICIT already. */
14930
14931 if (as)
14932 {
14933 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
14934 specification expression. */
14935 if (as->type == AS_IMPLIED_SHAPE)
14936 {
14937 int i;
14938 for (i=0; i<as->rank; i++)
14939 {
14940 if (as->lower[i] != NULL && as->upper[i] == NULL)
14941 {
14942 gfc_error ("Bad specification for assumed size array at %L",
14943 &as->lower[i]->where);
14944 return;
14945 }
14946 }
14947 gcc_unreachable();
14948 }
14949
14950 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
14951 || as->type == AS_ASSUMED_SHAPE)
14952 && !sym->attr.dummy && !sym->attr.select_type_temporary)
14953 {
14954 if (as->type == AS_ASSUMED_SIZE)
14955 gfc_error ("Assumed size array at %L must be a dummy argument",
14956 &sym->declared_at);
14957 else
14958 gfc_error ("Assumed shape array at %L must be a dummy argument",
14959 &sym->declared_at);
14960 return;
14961 }
14962 /* TS 29113, C535a. */
14963 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
14964 && !sym->attr.select_type_temporary)
14965 {
14966 gfc_error ("Assumed-rank array at %L must be a dummy argument",
14967 &sym->declared_at);
14968 return;
14969 }
14970 if (as->type == AS_ASSUMED_RANK
14971 && (sym->attr.codimension || sym->attr.value))
14972 {
14973 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
14974 "CODIMENSION attribute", &sym->declared_at);
14975 return;
14976 }
14977 }
14978
14979 /* Make sure symbols with known intent or optional are really dummy
14980 variable. Because of ENTRY statement, this has to be deferred
14981 until resolution time. */
14982
14983 if (!sym->attr.dummy
14984 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
14985 {
14986 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
14987 return;
14988 }
14989
14990 if (sym->attr.value && !sym->attr.dummy)
14991 {
14992 gfc_error ("%qs at %L cannot have the VALUE attribute because "
14993 "it is not a dummy argument", sym->name, &sym->declared_at);
14994 return;
14995 }
14996
14997 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
14998 {
14999 gfc_charlen *cl = sym->ts.u.cl;
15000 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
15001 {
15002 gfc_error ("Character dummy variable %qs at %L with VALUE "
15003 "attribute must have constant length",
15004 sym->name, &sym->declared_at);
15005 return;
15006 }
15007
15008 if (sym->ts.is_c_interop
15009 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
15010 {
15011 gfc_error ("C interoperable character dummy variable %qs at %L "
15012 "with VALUE attribute must have length one",
15013 sym->name, &sym->declared_at);
15014 return;
15015 }
15016 }
15017
15018 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15019 && sym->ts.u.derived->attr.generic)
15020 {
15021 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
15022 if (!sym->ts.u.derived)
15023 {
15024 gfc_error ("The derived type %qs at %L is of type %qs, "
15025 "which has not been defined", sym->name,
15026 &sym->declared_at, sym->ts.u.derived->name);
15027 sym->ts.type = BT_UNKNOWN;
15028 return;
15029 }
15030 }
15031
15032 /* Use the same constraints as TYPE(*), except for the type check
15033 and that only scalars and assumed-size arrays are permitted. */
15034 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
15035 {
15036 if (!sym->attr.dummy)
15037 {
15038 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15039 "a dummy argument", sym->name, &sym->declared_at);
15040 return;
15041 }
15042
15043 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
15044 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
15045 && sym->ts.type != BT_COMPLEX)
15046 {
15047 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
15048 "of type TYPE(*) or of an numeric intrinsic type",
15049 sym->name, &sym->declared_at);
15050 return;
15051 }
15052
15053 if (sym->attr.allocatable || sym->attr.codimension
15054 || sym->attr.pointer || sym->attr.value)
15055 {
15056 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15057 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
15058 "attribute", sym->name, &sym->declared_at);
15059 return;
15060 }
15061
15062 if (sym->attr.intent == INTENT_OUT)
15063 {
15064 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
15065 "have the INTENT(OUT) attribute",
15066 sym->name, &sym->declared_at);
15067 return;
15068 }
15069 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
15070 {
15071 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
15072 "either be a scalar or an assumed-size array",
15073 sym->name, &sym->declared_at);
15074 return;
15075 }
15076
15077 /* Set the type to TYPE(*) and add a dimension(*) to ensure
15078 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
15079 packing. */
15080 sym->ts.type = BT_ASSUMED;
15081 sym->as = gfc_get_array_spec ();
15082 sym->as->type = AS_ASSUMED_SIZE;
15083 sym->as->rank = 1;
15084 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
15085 }
15086 else if (sym->ts.type == BT_ASSUMED)
15087 {
15088 /* TS 29113, C407a. */
15089 if (!sym->attr.dummy)
15090 {
15091 gfc_error ("Assumed type of variable %s at %L is only permitted "
15092 "for dummy variables", sym->name, &sym->declared_at);
15093 return;
15094 }
15095 if (sym->attr.allocatable || sym->attr.codimension
15096 || sym->attr.pointer || sym->attr.value)
15097 {
15098 gfc_error ("Assumed-type variable %s at %L may not have the "
15099 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
15100 sym->name, &sym->declared_at);
15101 return;
15102 }
15103 if (sym->attr.intent == INTENT_OUT)
15104 {
15105 gfc_error ("Assumed-type variable %s at %L may not have the "
15106 "INTENT(OUT) attribute",
15107 sym->name, &sym->declared_at);
15108 return;
15109 }
15110 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
15111 {
15112 gfc_error ("Assumed-type variable %s at %L shall not be an "
15113 "explicit-shape array", sym->name, &sym->declared_at);
15114 return;
15115 }
15116 }
15117
15118 /* If the symbol is marked as bind(c), that it is declared at module level
15119 scope and verify its type and kind. Do not do the latter for symbols
15120 that are implicitly typed because that is handled in
15121 gfc_set_default_type. Handle dummy arguments and procedure definitions
15122 separately. Also, anything that is use associated is not handled here
15123 but instead is handled in the module it is declared in. Finally, derived
15124 type definitions are allowed to be BIND(C) since that only implies that
15125 they're interoperable, and they are checked fully for interoperability
15126 when a variable is declared of that type. */
15127 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
15128 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
15129 && sym->attr.flavor != FL_DERIVED)
15130 {
15131 bool t = true;
15132
15133 /* First, make sure the variable is declared at the
15134 module-level scope (J3/04-007, Section 15.3). */
15135 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
15136 sym->attr.in_common == 0)
15137 {
15138 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
15139 "is neither a COMMON block nor declared at the "
15140 "module level scope", sym->name, &(sym->declared_at));
15141 t = false;
15142 }
15143 else if (sym->ts.type == BT_CHARACTER
15144 && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
15145 || !gfc_is_constant_expr (sym->ts.u.cl->length)
15146 || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
15147 {
15148 gfc_error ("BIND(C) Variable %qs at %L must have length one",
15149 sym->name, &sym->declared_at);
15150 t = false;
15151 }
15152 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
15153 {
15154 t = verify_com_block_vars_c_interop (sym->common_head);
15155 }
15156 else if (sym->attr.implicit_type == 0)
15157 {
15158 /* If type() declaration, we need to verify that the components
15159 of the given type are all C interoperable, etc. */
15160 if (sym->ts.type == BT_DERIVED &&
15161 sym->ts.u.derived->attr.is_c_interop != 1)
15162 {
15163 /* Make sure the user marked the derived type as BIND(C). If
15164 not, call the verify routine. This could print an error
15165 for the derived type more than once if multiple variables
15166 of that type are declared. */
15167 if (sym->ts.u.derived->attr.is_bind_c != 1)
15168 verify_bind_c_derived_type (sym->ts.u.derived);
15169 t = false;
15170 }
15171
15172 /* Verify the variable itself as C interoperable if it
15173 is BIND(C). It is not possible for this to succeed if
15174 the verify_bind_c_derived_type failed, so don't have to handle
15175 any error returned by verify_bind_c_derived_type. */
15176 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
15177 sym->common_block);
15178 }
15179
15180 if (!t)
15181 {
15182 /* clear the is_bind_c flag to prevent reporting errors more than
15183 once if something failed. */
15184 sym->attr.is_bind_c = 0;
15185 return;
15186 }
15187 }
15188
15189 /* If a derived type symbol has reached this point, without its
15190 type being declared, we have an error. Notice that most
15191 conditions that produce undefined derived types have already
15192 been dealt with. However, the likes of:
15193 implicit type(t) (t) ..... call foo (t) will get us here if
15194 the type is not declared in the scope of the implicit
15195 statement. Change the type to BT_UNKNOWN, both because it is so
15196 and to prevent an ICE. */
15197 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
15198 && sym->ts.u.derived->components == NULL
15199 && !sym->ts.u.derived->attr.zero_comp)
15200 {
15201 gfc_error ("The derived type %qs at %L is of type %qs, "
15202 "which has not been defined", sym->name,
15203 &sym->declared_at, sym->ts.u.derived->name);
15204 sym->ts.type = BT_UNKNOWN;
15205 return;
15206 }
15207
15208 /* Make sure that the derived type has been resolved and that the
15209 derived type is visible in the symbol's namespace, if it is a
15210 module function and is not PRIVATE. */
15211 if (sym->ts.type == BT_DERIVED
15212 && sym->ts.u.derived->attr.use_assoc
15213 && sym->ns->proc_name
15214 && sym->ns->proc_name->attr.flavor == FL_MODULE
15215 && !resolve_fl_derived (sym->ts.u.derived))
15216 return;
15217
15218 /* Unless the derived-type declaration is use associated, Fortran 95
15219 does not allow public entries of private derived types.
15220 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
15221 161 in 95-006r3. */
15222 if (sym->ts.type == BT_DERIVED
15223 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
15224 && !sym->ts.u.derived->attr.use_assoc
15225 && gfc_check_symbol_access (sym)
15226 && !gfc_check_symbol_access (sym->ts.u.derived)
15227 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
15228 "derived type %qs",
15229 (sym->attr.flavor == FL_PARAMETER)
15230 ? "parameter" : "variable",
15231 sym->name, &sym->declared_at,
15232 sym->ts.u.derived->name))
15233 return;
15234
15235 /* F2008, C1302. */
15236 if (sym->ts.type == BT_DERIVED
15237 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15238 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
15239 || sym->ts.u.derived->attr.lock_comp)
15240 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15241 {
15242 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
15243 "type LOCK_TYPE must be a coarray", sym->name,
15244 &sym->declared_at);
15245 return;
15246 }
15247
15248 /* TS18508, C702/C703. */
15249 if (sym->ts.type == BT_DERIVED
15250 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
15251 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
15252 || sym->ts.u.derived->attr.event_comp)
15253 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
15254 {
15255 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
15256 "type EVENT_TYPE must be a coarray", sym->name,
15257 &sym->declared_at);
15258 return;
15259 }
15260
15261 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
15262 default initialization is defined (5.1.2.4.4). */
15263 if (sym->ts.type == BT_DERIVED
15264 && sym->attr.dummy
15265 && sym->attr.intent == INTENT_OUT
15266 && sym->as
15267 && sym->as->type == AS_ASSUMED_SIZE)
15268 {
15269 for (c = sym->ts.u.derived->components; c; c = c->next)
15270 {
15271 if (c->initializer)
15272 {
15273 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
15274 "ASSUMED SIZE and so cannot have a default initializer",
15275 sym->name, &sym->declared_at);
15276 return;
15277 }
15278 }
15279 }
15280
15281 /* F2008, C542. */
15282 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15283 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
15284 {
15285 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
15286 "INTENT(OUT)", sym->name, &sym->declared_at);
15287 return;
15288 }
15289
15290 /* TS18508. */
15291 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
15292 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
15293 {
15294 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
15295 "INTENT(OUT)", sym->name, &sym->declared_at);
15296 return;
15297 }
15298
15299 /* F2008, C525. */
15300 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15301 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15302 && CLASS_DATA (sym)->attr.coarray_comp))
15303 || class_attr.codimension)
15304 && (sym->attr.result || sym->result == sym))
15305 {
15306 gfc_error ("Function result %qs at %L shall not be a coarray or have "
15307 "a coarray component", sym->name, &sym->declared_at);
15308 return;
15309 }
15310
15311 /* F2008, C524. */
15312 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
15313 && sym->ts.u.derived->ts.is_iso_c)
15314 {
15315 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
15316 "shall not be a coarray", sym->name, &sym->declared_at);
15317 return;
15318 }
15319
15320 /* F2008, C525. */
15321 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15322 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15323 && CLASS_DATA (sym)->attr.coarray_comp))
15324 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
15325 || class_attr.allocatable))
15326 {
15327 gfc_error ("Variable %qs at %L with coarray component shall be a "
15328 "nonpointer, nonallocatable scalar, which is not a coarray",
15329 sym->name, &sym->declared_at);
15330 return;
15331 }
15332
15333 /* F2008, C526. The function-result case was handled above. */
15334 if (class_attr.codimension
15335 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
15336 || sym->attr.select_type_temporary
15337 || sym->attr.associate_var
15338 || (sym->ns->save_all && !sym->attr.automatic)
15339 || sym->ns->proc_name->attr.flavor == FL_MODULE
15340 || sym->ns->proc_name->attr.is_main_program
15341 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
15342 {
15343 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
15344 "nor a dummy argument", sym->name, &sym->declared_at);
15345 return;
15346 }
15347 /* F2008, C528. */
15348 else if (class_attr.codimension && !sym->attr.select_type_temporary
15349 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15350 {
15351 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15352 "deferred shape", sym->name, &sym->declared_at);
15353 return;
15354 }
15355 else if (class_attr.codimension && class_attr.allocatable && as
15356 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15357 {
15358 gfc_error ("Allocatable coarray variable %qs at %L must have "
15359 "deferred shape", sym->name, &sym->declared_at);
15360 return;
15361 }
15362
15363 /* F2008, C541. */
15364 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15365 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15366 && CLASS_DATA (sym)->attr.coarray_comp))
15367 || (class_attr.codimension && class_attr.allocatable))
15368 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15369 {
15370 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15371 "allocatable coarray or have coarray components",
15372 sym->name, &sym->declared_at);
15373 return;
15374 }
15375
15376 if (class_attr.codimension && sym->attr.dummy
15377 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15378 {
15379 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15380 "procedure %qs", sym->name, &sym->declared_at,
15381 sym->ns->proc_name->name);
15382 return;
15383 }
15384
15385 if (sym->ts.type == BT_LOGICAL
15386 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15387 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15388 && sym->ns->proc_name->attr.is_bind_c)))
15389 {
15390 int i;
15391 for (i = 0; gfc_logical_kinds[i].kind; i++)
15392 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15393 break;
15394 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15395 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15396 "%L with non-C_Bool kind in BIND(C) procedure "
15397 "%qs", sym->name, &sym->declared_at,
15398 sym->ns->proc_name->name))
15399 return;
15400 else if (!gfc_logical_kinds[i].c_bool
15401 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15402 "%qs at %L with non-C_Bool kind in "
15403 "BIND(C) procedure %qs", sym->name,
15404 &sym->declared_at,
15405 sym->attr.function ? sym->name
15406 : sym->ns->proc_name->name))
15407 return;
15408 }
15409
15410 switch (sym->attr.flavor)
15411 {
15412 case FL_VARIABLE:
15413 if (!resolve_fl_variable (sym, mp_flag))
15414 return;
15415 break;
15416
15417 case FL_PROCEDURE:
15418 if (sym->formal && !sym->formal_ns)
15419 {
15420 /* Check that none of the arguments are a namelist. */
15421 gfc_formal_arglist *formal = sym->formal;
15422
15423 for (; formal; formal = formal->next)
15424 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15425 {
15426 gfc_error ("Namelist %qs cannot be an argument to "
15427 "subroutine or function at %L",
15428 formal->sym->name, &sym->declared_at);
15429 return;
15430 }
15431 }
15432
15433 if (!resolve_fl_procedure (sym, mp_flag))
15434 return;
15435 break;
15436
15437 case FL_NAMELIST:
15438 if (!resolve_fl_namelist (sym))
15439 return;
15440 break;
15441
15442 case FL_PARAMETER:
15443 if (!resolve_fl_parameter (sym))
15444 return;
15445 break;
15446
15447 default:
15448 break;
15449 }
15450
15451 /* Resolve array specifier. Check as well some constraints
15452 on COMMON blocks. */
15453
15454 check_constant = sym->attr.in_common && !sym->attr.pointer;
15455
15456 /* Set the formal_arg_flag so that check_conflict will not throw
15457 an error for host associated variables in the specification
15458 expression for an array_valued function. */
15459 if ((sym->attr.function || sym->attr.result) && sym->as)
15460 formal_arg_flag = true;
15461
15462 saved_specification_expr = specification_expr;
15463 specification_expr = true;
15464 gfc_resolve_array_spec (sym->as, check_constant);
15465 specification_expr = saved_specification_expr;
15466
15467 formal_arg_flag = false;
15468
15469 /* Resolve formal namespaces. */
15470 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15471 && !sym->attr.contained && !sym->attr.intrinsic)
15472 gfc_resolve (sym->formal_ns);
15473
15474 /* Make sure the formal namespace is present. */
15475 if (sym->formal && !sym->formal_ns)
15476 {
15477 gfc_formal_arglist *formal = sym->formal;
15478 while (formal && !formal->sym)
15479 formal = formal->next;
15480
15481 if (formal)
15482 {
15483 sym->formal_ns = formal->sym->ns;
15484 if (sym->ns != formal->sym->ns)
15485 sym->formal_ns->refs++;
15486 }
15487 }
15488
15489 /* Check threadprivate restrictions. */
15490 if (sym->attr.threadprivate && !sym->attr.save
15491 && !(sym->ns->save_all && !sym->attr.automatic)
15492 && (!sym->attr.in_common
15493 && sym->module == NULL
15494 && (sym->ns->proc_name == NULL
15495 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15496 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15497
15498 /* Check omp declare target restrictions. */
15499 if (sym->attr.omp_declare_target
15500 && sym->attr.flavor == FL_VARIABLE
15501 && !sym->attr.save
15502 && !(sym->ns->save_all && !sym->attr.automatic)
15503 && (!sym->attr.in_common
15504 && sym->module == NULL
15505 && (sym->ns->proc_name == NULL
15506 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15507 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15508 sym->name, &sym->declared_at);
15509
15510 /* If we have come this far we can apply default-initializers, as
15511 described in 14.7.5, to those variables that have not already
15512 been assigned one. */
15513 if (sym->ts.type == BT_DERIVED
15514 && !sym->value
15515 && !sym->attr.allocatable
15516 && !sym->attr.alloc_comp)
15517 {
15518 symbol_attribute *a = &sym->attr;
15519
15520 if ((!a->save && !a->dummy && !a->pointer
15521 && !a->in_common && !a->use_assoc
15522 && a->referenced
15523 && !((a->function || a->result)
15524 && (!a->dimension
15525 || sym->ts.u.derived->attr.alloc_comp
15526 || sym->ts.u.derived->attr.pointer_comp))
15527 && !(a->function && sym != sym->result))
15528 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15529 apply_default_init (sym);
15530 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15531 && (sym->ts.u.derived->attr.alloc_comp
15532 || sym->ts.u.derived->attr.pointer_comp))
15533 /* Mark the result symbol to be referenced, when it has allocatable
15534 components. */
15535 sym->result->attr.referenced = 1;
15536 }
15537
15538 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15539 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15540 && !CLASS_DATA (sym)->attr.class_pointer
15541 && !CLASS_DATA (sym)->attr.allocatable)
15542 apply_default_init (sym);
15543
15544 /* If this symbol has a type-spec, check it. */
15545 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15546 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15547 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15548 return;
15549
15550 if (sym->param_list)
15551 resolve_pdt (sym);
15552 }
15553
15554
15555 /************* Resolve DATA statements *************/
15556
15557 static struct
15558 {
15559 gfc_data_value *vnode;
15560 mpz_t left;
15561 }
15562 values;
15563
15564
15565 /* Advance the values structure to point to the next value in the data list. */
15566
15567 static bool
15568 next_data_value (void)
15569 {
15570 while (mpz_cmp_ui (values.left, 0) == 0)
15571 {
15572
15573 if (values.vnode->next == NULL)
15574 return false;
15575
15576 values.vnode = values.vnode->next;
15577 mpz_set (values.left, values.vnode->repeat);
15578 }
15579
15580 return true;
15581 }
15582
15583
15584 static bool
15585 check_data_variable (gfc_data_variable *var, locus *where)
15586 {
15587 gfc_expr *e;
15588 mpz_t size;
15589 mpz_t offset;
15590 bool t;
15591 ar_type mark = AR_UNKNOWN;
15592 int i;
15593 mpz_t section_index[GFC_MAX_DIMENSIONS];
15594 gfc_ref *ref;
15595 gfc_array_ref *ar;
15596 gfc_symbol *sym;
15597 int has_pointer;
15598
15599 if (!gfc_resolve_expr (var->expr))
15600 return false;
15601
15602 ar = NULL;
15603 mpz_init_set_si (offset, 0);
15604 e = var->expr;
15605
15606 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
15607 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
15608 e = e->value.function.actual->expr;
15609
15610 if (e->expr_type != EXPR_VARIABLE)
15611 {
15612 gfc_error ("Expecting definable entity near %L", where);
15613 return false;
15614 }
15615
15616 sym = e->symtree->n.sym;
15617
15618 if (sym->ns->is_block_data && !sym->attr.in_common)
15619 {
15620 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15621 sym->name, &sym->declared_at);
15622 return false;
15623 }
15624
15625 if (e->ref == NULL && sym->as)
15626 {
15627 gfc_error ("DATA array %qs at %L must be specified in a previous"
15628 " declaration", sym->name, where);
15629 return false;
15630 }
15631
15632 has_pointer = sym->attr.pointer;
15633
15634 if (gfc_is_coindexed (e))
15635 {
15636 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
15637 where);
15638 return false;
15639 }
15640
15641 for (ref = e->ref; ref; ref = ref->next)
15642 {
15643 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
15644 has_pointer = 1;
15645
15646 if (has_pointer
15647 && ref->type == REF_ARRAY
15648 && ref->u.ar.type != AR_FULL)
15649 {
15650 gfc_error ("DATA element %qs at %L is a pointer and so must "
15651 "be a full array", sym->name, where);
15652 return false;
15653 }
15654 }
15655
15656 if (e->rank == 0 || has_pointer)
15657 {
15658 mpz_init_set_ui (size, 1);
15659 ref = NULL;
15660 }
15661 else
15662 {
15663 ref = e->ref;
15664
15665 /* Find the array section reference. */
15666 for (ref = e->ref; ref; ref = ref->next)
15667 {
15668 if (ref->type != REF_ARRAY)
15669 continue;
15670 if (ref->u.ar.type == AR_ELEMENT)
15671 continue;
15672 break;
15673 }
15674 gcc_assert (ref);
15675
15676 /* Set marks according to the reference pattern. */
15677 switch (ref->u.ar.type)
15678 {
15679 case AR_FULL:
15680 mark = AR_FULL;
15681 break;
15682
15683 case AR_SECTION:
15684 ar = &ref->u.ar;
15685 /* Get the start position of array section. */
15686 gfc_get_section_index (ar, section_index, &offset);
15687 mark = AR_SECTION;
15688 break;
15689
15690 default:
15691 gcc_unreachable ();
15692 }
15693
15694 if (!gfc_array_size (e, &size))
15695 {
15696 gfc_error ("Nonconstant array section at %L in DATA statement",
15697 where);
15698 mpz_clear (offset);
15699 return false;
15700 }
15701 }
15702
15703 t = true;
15704
15705 while (mpz_cmp_ui (size, 0) > 0)
15706 {
15707 if (!next_data_value ())
15708 {
15709 gfc_error ("DATA statement at %L has more variables than values",
15710 where);
15711 t = false;
15712 break;
15713 }
15714
15715 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
15716 if (!t)
15717 break;
15718
15719 /* If we have more than one element left in the repeat count,
15720 and we have more than one element left in the target variable,
15721 then create a range assignment. */
15722 /* FIXME: Only done for full arrays for now, since array sections
15723 seem tricky. */
15724 if (mark == AR_FULL && ref && ref->next == NULL
15725 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
15726 {
15727 mpz_t range;
15728
15729 if (mpz_cmp (size, values.left) >= 0)
15730 {
15731 mpz_init_set (range, values.left);
15732 mpz_sub (size, size, values.left);
15733 mpz_set_ui (values.left, 0);
15734 }
15735 else
15736 {
15737 mpz_init_set (range, size);
15738 mpz_sub (values.left, values.left, size);
15739 mpz_set_ui (size, 0);
15740 }
15741
15742 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15743 offset, &range);
15744
15745 mpz_add (offset, offset, range);
15746 mpz_clear (range);
15747
15748 if (!t)
15749 break;
15750 }
15751
15752 /* Assign initial value to symbol. */
15753 else
15754 {
15755 mpz_sub_ui (values.left, values.left, 1);
15756 mpz_sub_ui (size, size, 1);
15757
15758 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15759 offset, NULL);
15760 if (!t)
15761 break;
15762
15763 if (mark == AR_FULL)
15764 mpz_add_ui (offset, offset, 1);
15765
15766 /* Modify the array section indexes and recalculate the offset
15767 for next element. */
15768 else if (mark == AR_SECTION)
15769 gfc_advance_section (section_index, ar, &offset);
15770 }
15771 }
15772
15773 if (mark == AR_SECTION)
15774 {
15775 for (i = 0; i < ar->dimen; i++)
15776 mpz_clear (section_index[i]);
15777 }
15778
15779 mpz_clear (size);
15780 mpz_clear (offset);
15781
15782 return t;
15783 }
15784
15785
15786 static bool traverse_data_var (gfc_data_variable *, locus *);
15787
15788 /* Iterate over a list of elements in a DATA statement. */
15789
15790 static bool
15791 traverse_data_list (gfc_data_variable *var, locus *where)
15792 {
15793 mpz_t trip;
15794 iterator_stack frame;
15795 gfc_expr *e, *start, *end, *step;
15796 bool retval = true;
15797
15798 mpz_init (frame.value);
15799 mpz_init (trip);
15800
15801 start = gfc_copy_expr (var->iter.start);
15802 end = gfc_copy_expr (var->iter.end);
15803 step = gfc_copy_expr (var->iter.step);
15804
15805 if (!gfc_simplify_expr (start, 1)
15806 || start->expr_type != EXPR_CONSTANT)
15807 {
15808 gfc_error ("start of implied-do loop at %L could not be "
15809 "simplified to a constant value", &start->where);
15810 retval = false;
15811 goto cleanup;
15812 }
15813 if (!gfc_simplify_expr (end, 1)
15814 || end->expr_type != EXPR_CONSTANT)
15815 {
15816 gfc_error ("end of implied-do loop at %L could not be "
15817 "simplified to a constant value", &start->where);
15818 retval = false;
15819 goto cleanup;
15820 }
15821 if (!gfc_simplify_expr (step, 1)
15822 || step->expr_type != EXPR_CONSTANT)
15823 {
15824 gfc_error ("step of implied-do loop at %L could not be "
15825 "simplified to a constant value", &start->where);
15826 retval = false;
15827 goto cleanup;
15828 }
15829
15830 mpz_set (trip, end->value.integer);
15831 mpz_sub (trip, trip, start->value.integer);
15832 mpz_add (trip, trip, step->value.integer);
15833
15834 mpz_div (trip, trip, step->value.integer);
15835
15836 mpz_set (frame.value, start->value.integer);
15837
15838 frame.prev = iter_stack;
15839 frame.variable = var->iter.var->symtree;
15840 iter_stack = &frame;
15841
15842 while (mpz_cmp_ui (trip, 0) > 0)
15843 {
15844 if (!traverse_data_var (var->list, where))
15845 {
15846 retval = false;
15847 goto cleanup;
15848 }
15849
15850 e = gfc_copy_expr (var->expr);
15851 if (!gfc_simplify_expr (e, 1))
15852 {
15853 gfc_free_expr (e);
15854 retval = false;
15855 goto cleanup;
15856 }
15857
15858 mpz_add (frame.value, frame.value, step->value.integer);
15859
15860 mpz_sub_ui (trip, trip, 1);
15861 }
15862
15863 cleanup:
15864 mpz_clear (frame.value);
15865 mpz_clear (trip);
15866
15867 gfc_free_expr (start);
15868 gfc_free_expr (end);
15869 gfc_free_expr (step);
15870
15871 iter_stack = frame.prev;
15872 return retval;
15873 }
15874
15875
15876 /* Type resolve variables in the variable list of a DATA statement. */
15877
15878 static bool
15879 traverse_data_var (gfc_data_variable *var, locus *where)
15880 {
15881 bool t;
15882
15883 for (; var; var = var->next)
15884 {
15885 if (var->expr == NULL)
15886 t = traverse_data_list (var, where);
15887 else
15888 t = check_data_variable (var, where);
15889
15890 if (!t)
15891 return false;
15892 }
15893
15894 return true;
15895 }
15896
15897
15898 /* Resolve the expressions and iterators associated with a data statement.
15899 This is separate from the assignment checking because data lists should
15900 only be resolved once. */
15901
15902 static bool
15903 resolve_data_variables (gfc_data_variable *d)
15904 {
15905 for (; d; d = d->next)
15906 {
15907 if (d->list == NULL)
15908 {
15909 if (!gfc_resolve_expr (d->expr))
15910 return false;
15911 }
15912 else
15913 {
15914 if (!gfc_resolve_iterator (&d->iter, false, true))
15915 return false;
15916
15917 if (!resolve_data_variables (d->list))
15918 return false;
15919 }
15920 }
15921
15922 return true;
15923 }
15924
15925
15926 /* Resolve a single DATA statement. We implement this by storing a pointer to
15927 the value list into static variables, and then recursively traversing the
15928 variables list, expanding iterators and such. */
15929
15930 static void
15931 resolve_data (gfc_data *d)
15932 {
15933
15934 if (!resolve_data_variables (d->var))
15935 return;
15936
15937 values.vnode = d->value;
15938 if (d->value == NULL)
15939 mpz_set_ui (values.left, 0);
15940 else
15941 mpz_set (values.left, d->value->repeat);
15942
15943 if (!traverse_data_var (d->var, &d->where))
15944 return;
15945
15946 /* At this point, we better not have any values left. */
15947
15948 if (next_data_value ())
15949 gfc_error ("DATA statement at %L has more values than variables",
15950 &d->where);
15951 }
15952
15953
15954 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
15955 accessed by host or use association, is a dummy argument to a pure function,
15956 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
15957 is storage associated with any such variable, shall not be used in the
15958 following contexts: (clients of this function). */
15959
15960 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
15961 procedure. Returns zero if assignment is OK, nonzero if there is a
15962 problem. */
15963 int
15964 gfc_impure_variable (gfc_symbol *sym)
15965 {
15966 gfc_symbol *proc;
15967 gfc_namespace *ns;
15968
15969 if (sym->attr.use_assoc || sym->attr.in_common)
15970 return 1;
15971
15972 /* Check if the symbol's ns is inside the pure procedure. */
15973 for (ns = gfc_current_ns; ns; ns = ns->parent)
15974 {
15975 if (ns == sym->ns)
15976 break;
15977 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
15978 return 1;
15979 }
15980
15981 proc = sym->ns->proc_name;
15982 if (sym->attr.dummy
15983 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
15984 || proc->attr.function))
15985 return 1;
15986
15987 /* TODO: Sort out what can be storage associated, if anything, and include
15988 it here. In principle equivalences should be scanned but it does not
15989 seem to be possible to storage associate an impure variable this way. */
15990 return 0;
15991 }
15992
15993
15994 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
15995 current namespace is inside a pure procedure. */
15996
15997 int
15998 gfc_pure (gfc_symbol *sym)
15999 {
16000 symbol_attribute attr;
16001 gfc_namespace *ns;
16002
16003 if (sym == NULL)
16004 {
16005 /* Check if the current namespace or one of its parents
16006 belongs to a pure procedure. */
16007 for (ns = gfc_current_ns; ns; ns = ns->parent)
16008 {
16009 sym = ns->proc_name;
16010 if (sym == NULL)
16011 return 0;
16012 attr = sym->attr;
16013 if (attr.flavor == FL_PROCEDURE && attr.pure)
16014 return 1;
16015 }
16016 return 0;
16017 }
16018
16019 attr = sym->attr;
16020
16021 return attr.flavor == FL_PROCEDURE && attr.pure;
16022 }
16023
16024
16025 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
16026 checks if the current namespace is implicitly pure. Note that this
16027 function returns false for a PURE procedure. */
16028
16029 int
16030 gfc_implicit_pure (gfc_symbol *sym)
16031 {
16032 gfc_namespace *ns;
16033
16034 if (sym == NULL)
16035 {
16036 /* Check if the current procedure is implicit_pure. Walk up
16037 the procedure list until we find a procedure. */
16038 for (ns = gfc_current_ns; ns; ns = ns->parent)
16039 {
16040 sym = ns->proc_name;
16041 if (sym == NULL)
16042 return 0;
16043
16044 if (sym->attr.flavor == FL_PROCEDURE)
16045 break;
16046 }
16047 }
16048
16049 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
16050 && !sym->attr.pure;
16051 }
16052
16053
16054 void
16055 gfc_unset_implicit_pure (gfc_symbol *sym)
16056 {
16057 gfc_namespace *ns;
16058
16059 if (sym == NULL)
16060 {
16061 /* Check if the current procedure is implicit_pure. Walk up
16062 the procedure list until we find a procedure. */
16063 for (ns = gfc_current_ns; ns; ns = ns->parent)
16064 {
16065 sym = ns->proc_name;
16066 if (sym == NULL)
16067 return;
16068
16069 if (sym->attr.flavor == FL_PROCEDURE)
16070 break;
16071 }
16072 }
16073
16074 if (sym->attr.flavor == FL_PROCEDURE)
16075 sym->attr.implicit_pure = 0;
16076 else
16077 sym->attr.pure = 0;
16078 }
16079
16080
16081 /* Test whether the current procedure is elemental or not. */
16082
16083 int
16084 gfc_elemental (gfc_symbol *sym)
16085 {
16086 symbol_attribute attr;
16087
16088 if (sym == NULL)
16089 sym = gfc_current_ns->proc_name;
16090 if (sym == NULL)
16091 return 0;
16092 attr = sym->attr;
16093
16094 return attr.flavor == FL_PROCEDURE && attr.elemental;
16095 }
16096
16097
16098 /* Warn about unused labels. */
16099
16100 static void
16101 warn_unused_fortran_label (gfc_st_label *label)
16102 {
16103 if (label == NULL)
16104 return;
16105
16106 warn_unused_fortran_label (label->left);
16107
16108 if (label->defined == ST_LABEL_UNKNOWN)
16109 return;
16110
16111 switch (label->referenced)
16112 {
16113 case ST_LABEL_UNKNOWN:
16114 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
16115 label->value, &label->where);
16116 break;
16117
16118 case ST_LABEL_BAD_TARGET:
16119 gfc_warning (OPT_Wunused_label,
16120 "Label %d at %L defined but cannot be used",
16121 label->value, &label->where);
16122 break;
16123
16124 default:
16125 break;
16126 }
16127
16128 warn_unused_fortran_label (label->right);
16129 }
16130
16131
16132 /* Returns the sequence type of a symbol or sequence. */
16133
16134 static seq_type
16135 sequence_type (gfc_typespec ts)
16136 {
16137 seq_type result;
16138 gfc_component *c;
16139
16140 switch (ts.type)
16141 {
16142 case BT_DERIVED:
16143
16144 if (ts.u.derived->components == NULL)
16145 return SEQ_NONDEFAULT;
16146
16147 result = sequence_type (ts.u.derived->components->ts);
16148 for (c = ts.u.derived->components->next; c; c = c->next)
16149 if (sequence_type (c->ts) != result)
16150 return SEQ_MIXED;
16151
16152 return result;
16153
16154 case BT_CHARACTER:
16155 if (ts.kind != gfc_default_character_kind)
16156 return SEQ_NONDEFAULT;
16157
16158 return SEQ_CHARACTER;
16159
16160 case BT_INTEGER:
16161 if (ts.kind != gfc_default_integer_kind)
16162 return SEQ_NONDEFAULT;
16163
16164 return SEQ_NUMERIC;
16165
16166 case BT_REAL:
16167 if (!(ts.kind == gfc_default_real_kind
16168 || ts.kind == gfc_default_double_kind))
16169 return SEQ_NONDEFAULT;
16170
16171 return SEQ_NUMERIC;
16172
16173 case BT_COMPLEX:
16174 if (ts.kind != gfc_default_complex_kind)
16175 return SEQ_NONDEFAULT;
16176
16177 return SEQ_NUMERIC;
16178
16179 case BT_LOGICAL:
16180 if (ts.kind != gfc_default_logical_kind)
16181 return SEQ_NONDEFAULT;
16182
16183 return SEQ_NUMERIC;
16184
16185 default:
16186 return SEQ_NONDEFAULT;
16187 }
16188 }
16189
16190
16191 /* Resolve derived type EQUIVALENCE object. */
16192
16193 static bool
16194 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
16195 {
16196 gfc_component *c = derived->components;
16197
16198 if (!derived)
16199 return true;
16200
16201 /* Shall not be an object of nonsequence derived type. */
16202 if (!derived->attr.sequence)
16203 {
16204 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
16205 "attribute to be an EQUIVALENCE object", sym->name,
16206 &e->where);
16207 return false;
16208 }
16209
16210 /* Shall not have allocatable components. */
16211 if (derived->attr.alloc_comp)
16212 {
16213 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
16214 "components to be an EQUIVALENCE object",sym->name,
16215 &e->where);
16216 return false;
16217 }
16218
16219 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
16220 {
16221 gfc_error ("Derived type variable %qs at %L with default "
16222 "initialization cannot be in EQUIVALENCE with a variable "
16223 "in COMMON", sym->name, &e->where);
16224 return false;
16225 }
16226
16227 for (; c ; c = c->next)
16228 {
16229 if (gfc_bt_struct (c->ts.type)
16230 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
16231 return false;
16232
16233 /* Shall not be an object of sequence derived type containing a pointer
16234 in the structure. */
16235 if (c->attr.pointer)
16236 {
16237 gfc_error ("Derived type variable %qs at %L with pointer "
16238 "component(s) cannot be an EQUIVALENCE object",
16239 sym->name, &e->where);
16240 return false;
16241 }
16242 }
16243 return true;
16244 }
16245
16246
16247 /* Resolve equivalence object.
16248 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
16249 an allocatable array, an object of nonsequence derived type, an object of
16250 sequence derived type containing a pointer at any level of component
16251 selection, an automatic object, a function name, an entry name, a result
16252 name, a named constant, a structure component, or a subobject of any of
16253 the preceding objects. A substring shall not have length zero. A
16254 derived type shall not have components with default initialization nor
16255 shall two objects of an equivalence group be initialized.
16256 Either all or none of the objects shall have an protected attribute.
16257 The simple constraints are done in symbol.c(check_conflict) and the rest
16258 are implemented here. */
16259
16260 static void
16261 resolve_equivalence (gfc_equiv *eq)
16262 {
16263 gfc_symbol *sym;
16264 gfc_symbol *first_sym;
16265 gfc_expr *e;
16266 gfc_ref *r;
16267 locus *last_where = NULL;
16268 seq_type eq_type, last_eq_type;
16269 gfc_typespec *last_ts;
16270 int object, cnt_protected;
16271 const char *msg;
16272
16273 last_ts = &eq->expr->symtree->n.sym->ts;
16274
16275 first_sym = eq->expr->symtree->n.sym;
16276
16277 cnt_protected = 0;
16278
16279 for (object = 1; eq; eq = eq->eq, object++)
16280 {
16281 e = eq->expr;
16282
16283 e->ts = e->symtree->n.sym->ts;
16284 /* match_varspec might not know yet if it is seeing
16285 array reference or substring reference, as it doesn't
16286 know the types. */
16287 if (e->ref && e->ref->type == REF_ARRAY)
16288 {
16289 gfc_ref *ref = e->ref;
16290 sym = e->symtree->n.sym;
16291
16292 if (sym->attr.dimension)
16293 {
16294 ref->u.ar.as = sym->as;
16295 ref = ref->next;
16296 }
16297
16298 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
16299 if (e->ts.type == BT_CHARACTER
16300 && ref
16301 && ref->type == REF_ARRAY
16302 && ref->u.ar.dimen == 1
16303 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
16304 && ref->u.ar.stride[0] == NULL)
16305 {
16306 gfc_expr *start = ref->u.ar.start[0];
16307 gfc_expr *end = ref->u.ar.end[0];
16308 void *mem = NULL;
16309
16310 /* Optimize away the (:) reference. */
16311 if (start == NULL && end == NULL)
16312 {
16313 if (e->ref == ref)
16314 e->ref = ref->next;
16315 else
16316 e->ref->next = ref->next;
16317 mem = ref;
16318 }
16319 else
16320 {
16321 ref->type = REF_SUBSTRING;
16322 if (start == NULL)
16323 start = gfc_get_int_expr (gfc_charlen_int_kind,
16324 NULL, 1);
16325 ref->u.ss.start = start;
16326 if (end == NULL && e->ts.u.cl)
16327 end = gfc_copy_expr (e->ts.u.cl->length);
16328 ref->u.ss.end = end;
16329 ref->u.ss.length = e->ts.u.cl;
16330 e->ts.u.cl = NULL;
16331 }
16332 ref = ref->next;
16333 free (mem);
16334 }
16335
16336 /* Any further ref is an error. */
16337 if (ref)
16338 {
16339 gcc_assert (ref->type == REF_ARRAY);
16340 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
16341 &ref->u.ar.where);
16342 continue;
16343 }
16344 }
16345
16346 if (!gfc_resolve_expr (e))
16347 continue;
16348
16349 sym = e->symtree->n.sym;
16350
16351 if (sym->attr.is_protected)
16352 cnt_protected++;
16353 if (cnt_protected > 0 && cnt_protected != object)
16354 {
16355 gfc_error ("Either all or none of the objects in the "
16356 "EQUIVALENCE set at %L shall have the "
16357 "PROTECTED attribute",
16358 &e->where);
16359 break;
16360 }
16361
16362 /* Shall not equivalence common block variables in a PURE procedure. */
16363 if (sym->ns->proc_name
16364 && sym->ns->proc_name->attr.pure
16365 && sym->attr.in_common)
16366 {
16367 /* Need to check for symbols that may have entered the pure
16368 procedure via a USE statement. */
16369 bool saw_sym = false;
16370 if (sym->ns->use_stmts)
16371 {
16372 gfc_use_rename *r;
16373 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16374 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16375 }
16376 else
16377 saw_sym = true;
16378
16379 if (saw_sym)
16380 gfc_error ("COMMON block member %qs at %L cannot be an "
16381 "EQUIVALENCE object in the pure procedure %qs",
16382 sym->name, &e->where, sym->ns->proc_name->name);
16383 break;
16384 }
16385
16386 /* Shall not be a named constant. */
16387 if (e->expr_type == EXPR_CONSTANT)
16388 {
16389 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16390 "object", sym->name, &e->where);
16391 continue;
16392 }
16393
16394 if (e->ts.type == BT_DERIVED
16395 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16396 continue;
16397
16398 /* Check that the types correspond correctly:
16399 Note 5.28:
16400 A numeric sequence structure may be equivalenced to another sequence
16401 structure, an object of default integer type, default real type, double
16402 precision real type, default logical type such that components of the
16403 structure ultimately only become associated to objects of the same
16404 kind. A character sequence structure may be equivalenced to an object
16405 of default character kind or another character sequence structure.
16406 Other objects may be equivalenced only to objects of the same type and
16407 kind parameters. */
16408
16409 /* Identical types are unconditionally OK. */
16410 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16411 goto identical_types;
16412
16413 last_eq_type = sequence_type (*last_ts);
16414 eq_type = sequence_type (sym->ts);
16415
16416 /* Since the pair of objects is not of the same type, mixed or
16417 non-default sequences can be rejected. */
16418
16419 msg = "Sequence %s with mixed components in EQUIVALENCE "
16420 "statement at %L with different type objects";
16421 if ((object ==2
16422 && last_eq_type == SEQ_MIXED
16423 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16424 || (eq_type == SEQ_MIXED
16425 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16426 continue;
16427
16428 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16429 "statement at %L with objects of different type";
16430 if ((object ==2
16431 && last_eq_type == SEQ_NONDEFAULT
16432 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16433 || (eq_type == SEQ_NONDEFAULT
16434 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16435 continue;
16436
16437 msg ="Non-CHARACTER object %qs in default CHARACTER "
16438 "EQUIVALENCE statement at %L";
16439 if (last_eq_type == SEQ_CHARACTER
16440 && eq_type != SEQ_CHARACTER
16441 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16442 continue;
16443
16444 msg ="Non-NUMERIC object %qs in default NUMERIC "
16445 "EQUIVALENCE statement at %L";
16446 if (last_eq_type == SEQ_NUMERIC
16447 && eq_type != SEQ_NUMERIC
16448 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16449 continue;
16450
16451 identical_types:
16452 last_ts =&sym->ts;
16453 last_where = &e->where;
16454
16455 if (!e->ref)
16456 continue;
16457
16458 /* Shall not be an automatic array. */
16459 if (e->ref->type == REF_ARRAY
16460 && !gfc_resolve_array_spec (e->ref->u.ar.as, 1))
16461 {
16462 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16463 "an EQUIVALENCE object", sym->name, &e->where);
16464 continue;
16465 }
16466
16467 r = e->ref;
16468 while (r)
16469 {
16470 /* Shall not be a structure component. */
16471 if (r->type == REF_COMPONENT)
16472 {
16473 gfc_error ("Structure component %qs at %L cannot be an "
16474 "EQUIVALENCE object",
16475 r->u.c.component->name, &e->where);
16476 break;
16477 }
16478
16479 /* A substring shall not have length zero. */
16480 if (r->type == REF_SUBSTRING)
16481 {
16482 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16483 {
16484 gfc_error ("Substring at %L has length zero",
16485 &r->u.ss.start->where);
16486 break;
16487 }
16488 }
16489 r = r->next;
16490 }
16491 }
16492 }
16493
16494
16495 /* Function called by resolve_fntype to flag other symbol used in the
16496 length type parameter specification of function resuls. */
16497
16498 static bool
16499 flag_fn_result_spec (gfc_expr *expr,
16500 gfc_symbol *sym,
16501 int *f ATTRIBUTE_UNUSED)
16502 {
16503 gfc_namespace *ns;
16504 gfc_symbol *s;
16505
16506 if (expr->expr_type == EXPR_VARIABLE)
16507 {
16508 s = expr->symtree->n.sym;
16509 for (ns = s->ns; ns; ns = ns->parent)
16510 if (!ns->parent)
16511 break;
16512
16513 if (sym == s)
16514 {
16515 gfc_error ("Self reference in character length expression "
16516 "for %qs at %L", sym->name, &expr->where);
16517 return true;
16518 }
16519
16520 if (!s->fn_result_spec
16521 && s->attr.flavor == FL_PARAMETER)
16522 {
16523 /* Function contained in a module.... */
16524 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16525 {
16526 gfc_symtree *st;
16527 s->fn_result_spec = 1;
16528 /* Make sure that this symbol is translated as a module
16529 variable. */
16530 st = gfc_get_unique_symtree (ns);
16531 st->n.sym = s;
16532 s->refs++;
16533 }
16534 /* ... which is use associated and called. */
16535 else if (s->attr.use_assoc || s->attr.used_in_submodule
16536 ||
16537 /* External function matched with an interface. */
16538 (s->ns->proc_name
16539 && ((s->ns == ns
16540 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16541 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16542 && s->ns->proc_name->attr.function))
16543 s->fn_result_spec = 1;
16544 }
16545 }
16546 return false;
16547 }
16548
16549
16550 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16551
16552 static void
16553 resolve_fntype (gfc_namespace *ns)
16554 {
16555 gfc_entry_list *el;
16556 gfc_symbol *sym;
16557
16558 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16559 return;
16560
16561 /* If there are any entries, ns->proc_name is the entry master
16562 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16563 if (ns->entries)
16564 sym = ns->entries->sym;
16565 else
16566 sym = ns->proc_name;
16567 if (sym->result == sym
16568 && sym->ts.type == BT_UNKNOWN
16569 && !gfc_set_default_type (sym, 0, NULL)
16570 && !sym->attr.untyped)
16571 {
16572 gfc_error ("Function %qs at %L has no IMPLICIT type",
16573 sym->name, &sym->declared_at);
16574 sym->attr.untyped = 1;
16575 }
16576
16577 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
16578 && !sym->attr.contained
16579 && !gfc_check_symbol_access (sym->ts.u.derived)
16580 && gfc_check_symbol_access (sym))
16581 {
16582 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
16583 "%L of PRIVATE type %qs", sym->name,
16584 &sym->declared_at, sym->ts.u.derived->name);
16585 }
16586
16587 if (ns->entries)
16588 for (el = ns->entries->next; el; el = el->next)
16589 {
16590 if (el->sym->result == el->sym
16591 && el->sym->ts.type == BT_UNKNOWN
16592 && !gfc_set_default_type (el->sym, 0, NULL)
16593 && !el->sym->attr.untyped)
16594 {
16595 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16596 el->sym->name, &el->sym->declared_at);
16597 el->sym->attr.untyped = 1;
16598 }
16599 }
16600
16601 if (sym->ts.type == BT_CHARACTER)
16602 gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
16603 }
16604
16605
16606 /* 12.3.2.1.1 Defined operators. */
16607
16608 static bool
16609 check_uop_procedure (gfc_symbol *sym, locus where)
16610 {
16611 gfc_formal_arglist *formal;
16612
16613 if (!sym->attr.function)
16614 {
16615 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16616 sym->name, &where);
16617 return false;
16618 }
16619
16620 if (sym->ts.type == BT_CHARACTER
16621 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
16622 && !(sym->result && ((sym->result->ts.u.cl
16623 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
16624 {
16625 gfc_error ("User operator procedure %qs at %L cannot be assumed "
16626 "character length", sym->name, &where);
16627 return false;
16628 }
16629
16630 formal = gfc_sym_get_dummy_args (sym);
16631 if (!formal || !formal->sym)
16632 {
16633 gfc_error ("User operator procedure %qs at %L must have at least "
16634 "one argument", sym->name, &where);
16635 return false;
16636 }
16637
16638 if (formal->sym->attr.intent != INTENT_IN)
16639 {
16640 gfc_error ("First argument of operator interface at %L must be "
16641 "INTENT(IN)", &where);
16642 return false;
16643 }
16644
16645 if (formal->sym->attr.optional)
16646 {
16647 gfc_error ("First argument of operator interface at %L cannot be "
16648 "optional", &where);
16649 return false;
16650 }
16651
16652 formal = formal->next;
16653 if (!formal || !formal->sym)
16654 return true;
16655
16656 if (formal->sym->attr.intent != INTENT_IN)
16657 {
16658 gfc_error ("Second argument of operator interface at %L must be "
16659 "INTENT(IN)", &where);
16660 return false;
16661 }
16662
16663 if (formal->sym->attr.optional)
16664 {
16665 gfc_error ("Second argument of operator interface at %L cannot be "
16666 "optional", &where);
16667 return false;
16668 }
16669
16670 if (formal->next)
16671 {
16672 gfc_error ("Operator interface at %L must have, at most, two "
16673 "arguments", &where);
16674 return false;
16675 }
16676
16677 return true;
16678 }
16679
16680 static void
16681 gfc_resolve_uops (gfc_symtree *symtree)
16682 {
16683 gfc_interface *itr;
16684
16685 if (symtree == NULL)
16686 return;
16687
16688 gfc_resolve_uops (symtree->left);
16689 gfc_resolve_uops (symtree->right);
16690
16691 for (itr = symtree->n.uop->op; itr; itr = itr->next)
16692 check_uop_procedure (itr->sym, itr->sym->declared_at);
16693 }
16694
16695
16696 /* Examine all of the expressions associated with a program unit,
16697 assign types to all intermediate expressions, make sure that all
16698 assignments are to compatible types and figure out which names
16699 refer to which functions or subroutines. It doesn't check code
16700 block, which is handled by gfc_resolve_code. */
16701
16702 static void
16703 resolve_types (gfc_namespace *ns)
16704 {
16705 gfc_namespace *n;
16706 gfc_charlen *cl;
16707 gfc_data *d;
16708 gfc_equiv *eq;
16709 gfc_namespace* old_ns = gfc_current_ns;
16710
16711 if (ns->types_resolved)
16712 return;
16713
16714 /* Check that all IMPLICIT types are ok. */
16715 if (!ns->seen_implicit_none)
16716 {
16717 unsigned letter;
16718 for (letter = 0; letter != GFC_LETTERS; ++letter)
16719 if (ns->set_flag[letter]
16720 && !resolve_typespec_used (&ns->default_type[letter],
16721 &ns->implicit_loc[letter], NULL))
16722 return;
16723 }
16724
16725 gfc_current_ns = ns;
16726
16727 resolve_entries (ns);
16728
16729 resolve_common_vars (&ns->blank_common, false);
16730 resolve_common_blocks (ns->common_root);
16731
16732 resolve_contained_functions (ns);
16733
16734 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
16735 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
16736 resolve_formal_arglist (ns->proc_name);
16737
16738 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
16739
16740 for (cl = ns->cl_list; cl; cl = cl->next)
16741 resolve_charlen (cl);
16742
16743 gfc_traverse_ns (ns, resolve_symbol);
16744
16745 resolve_fntype (ns);
16746
16747 for (n = ns->contained; n; n = n->sibling)
16748 {
16749 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
16750 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
16751 "also be PURE", n->proc_name->name,
16752 &n->proc_name->declared_at);
16753
16754 resolve_types (n);
16755 }
16756
16757 forall_flag = 0;
16758 gfc_do_concurrent_flag = 0;
16759 gfc_check_interfaces (ns);
16760
16761 gfc_traverse_ns (ns, resolve_values);
16762
16763 if (ns->save_all || !flag_automatic)
16764 gfc_save_all (ns);
16765
16766 iter_stack = NULL;
16767 for (d = ns->data; d; d = d->next)
16768 resolve_data (d);
16769
16770 iter_stack = NULL;
16771 gfc_traverse_ns (ns, gfc_formalize_init_value);
16772
16773 gfc_traverse_ns (ns, gfc_verify_binding_labels);
16774
16775 for (eq = ns->equiv; eq; eq = eq->next)
16776 resolve_equivalence (eq);
16777
16778 /* Warn about unused labels. */
16779 if (warn_unused_label)
16780 warn_unused_fortran_label (ns->st_labels);
16781
16782 gfc_resolve_uops (ns->uop_root);
16783
16784 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
16785
16786 gfc_resolve_omp_declare_simd (ns);
16787
16788 gfc_resolve_omp_udrs (ns->omp_udr_root);
16789
16790 ns->types_resolved = 1;
16791
16792 gfc_current_ns = old_ns;
16793 }
16794
16795
16796 /* Call gfc_resolve_code recursively. */
16797
16798 static void
16799 resolve_codes (gfc_namespace *ns)
16800 {
16801 gfc_namespace *n;
16802 bitmap_obstack old_obstack;
16803
16804 if (ns->resolved == 1)
16805 return;
16806
16807 for (n = ns->contained; n; n = n->sibling)
16808 resolve_codes (n);
16809
16810 gfc_current_ns = ns;
16811
16812 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
16813 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
16814 cs_base = NULL;
16815
16816 /* Set to an out of range value. */
16817 current_entry_id = -1;
16818
16819 old_obstack = labels_obstack;
16820 bitmap_obstack_initialize (&labels_obstack);
16821
16822 gfc_resolve_oacc_declare (ns);
16823 gfc_resolve_oacc_routines (ns);
16824 gfc_resolve_omp_local_vars (ns);
16825 gfc_resolve_code (ns->code, ns);
16826
16827 bitmap_obstack_release (&labels_obstack);
16828 labels_obstack = old_obstack;
16829 }
16830
16831
16832 /* This function is called after a complete program unit has been compiled.
16833 Its purpose is to examine all of the expressions associated with a program
16834 unit, assign types to all intermediate expressions, make sure that all
16835 assignments are to compatible types and figure out which names refer to
16836 which functions or subroutines. */
16837
16838 void
16839 gfc_resolve (gfc_namespace *ns)
16840 {
16841 gfc_namespace *old_ns;
16842 code_stack *old_cs_base;
16843 struct gfc_omp_saved_state old_omp_state;
16844
16845 if (ns->resolved)
16846 return;
16847
16848 ns->resolved = -1;
16849 old_ns = gfc_current_ns;
16850 old_cs_base = cs_base;
16851
16852 /* As gfc_resolve can be called during resolution of an OpenMP construct
16853 body, we should clear any state associated to it, so that say NS's
16854 DO loops are not interpreted as OpenMP loops. */
16855 if (!ns->construct_entities)
16856 gfc_omp_save_and_clear_state (&old_omp_state);
16857
16858 resolve_types (ns);
16859 component_assignment_level = 0;
16860 resolve_codes (ns);
16861
16862 gfc_current_ns = old_ns;
16863 cs_base = old_cs_base;
16864 ns->resolved = 1;
16865
16866 gfc_run_passes (ns);
16867
16868 if (!ns->construct_entities)
16869 gfc_omp_restore_state (&old_omp_state);
16870 }