]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/resolve.c
Partial Failed Images patch
[thirdparty/gcc.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2018 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 gfc_error ("Argument %qs of statement function at %L must "
516 "be scalar", sym->name, &sym->declared_at);
517 continue;
518 }
519
520 if (sym->ts.type == BT_CHARACTER)
521 {
522 gfc_charlen *cl = sym->ts.u.cl;
523 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
524 {
525 gfc_error ("Character-valued argument %qs of statement "
526 "function at %L must have constant length",
527 sym->name, &sym->declared_at);
528 continue;
529 }
530 }
531 }
532 }
533 formal_arg_flag = false;
534 }
535
536
537 /* Work function called when searching for symbols that have argument lists
538 associated with them. */
539
540 static void
541 find_arglists (gfc_symbol *sym)
542 {
543 if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns
544 || gfc_fl_struct (sym->attr.flavor) || sym->attr.intrinsic)
545 return;
546
547 resolve_formal_arglist (sym);
548 }
549
550
551 /* Given a namespace, resolve all formal argument lists within the namespace.
552 */
553
554 static void
555 resolve_formal_arglists (gfc_namespace *ns)
556 {
557 if (ns == NULL)
558 return;
559
560 gfc_traverse_ns (ns, find_arglists);
561 }
562
563
564 static void
565 resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
566 {
567 bool t;
568
569 if (sym && sym->attr.flavor == FL_PROCEDURE
570 && sym->ns->parent
571 && sym->ns->parent->proc_name
572 && sym->ns->parent->proc_name->attr.flavor == FL_PROCEDURE
573 && !strcmp (sym->name, sym->ns->parent->proc_name->name))
574 gfc_error ("Contained procedure %qs at %L has the same name as its "
575 "encompassing procedure", sym->name, &sym->declared_at);
576
577 /* If this namespace is not a function or an entry master function,
578 ignore it. */
579 if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
580 || sym->attr.entry_master)
581 return;
582
583 /* Try to find out of what the return type is. */
584 if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
585 {
586 t = gfc_set_default_type (sym->result, 0, ns);
587
588 if (!t && !sym->result->attr.untyped)
589 {
590 if (sym->result == sym)
591 gfc_error ("Contained function %qs at %L has no IMPLICIT type",
592 sym->name, &sym->declared_at);
593 else if (!sym->result->attr.proc_pointer)
594 gfc_error ("Result %qs of contained function %qs at %L has "
595 "no IMPLICIT type", sym->result->name, sym->name,
596 &sym->result->declared_at);
597 sym->result->attr.untyped = 1;
598 }
599 }
600
601 /* Fortran 95 Draft Standard, page 51, Section 5.1.1.5, on the Character
602 type, lists the only ways a character length value of * can be used:
603 dummy arguments of procedures, named constants, and function results
604 in external functions. Internal function results and results of module
605 procedures are not on this list, ergo, not permitted. */
606
607 if (sym->result->ts.type == BT_CHARACTER)
608 {
609 gfc_charlen *cl = sym->result->ts.u.cl;
610 if ((!cl || !cl->length) && !sym->result->ts.deferred)
611 {
612 /* See if this is a module-procedure and adapt error message
613 accordingly. */
614 bool module_proc;
615 gcc_assert (ns->parent && ns->parent->proc_name);
616 module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
617
618 gfc_error (module_proc
619 ? G_("Character-valued module procedure %qs at %L"
620 " must not be assumed length")
621 : G_("Character-valued internal function %qs at %L"
622 " must not be assumed length"),
623 sym->name, &sym->declared_at);
624 }
625 }
626 }
627
628
629 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
630 introduce duplicates. */
631
632 static void
633 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
634 {
635 gfc_formal_arglist *f, *new_arglist;
636 gfc_symbol *new_sym;
637
638 for (; new_args != NULL; new_args = new_args->next)
639 {
640 new_sym = new_args->sym;
641 /* See if this arg is already in the formal argument list. */
642 for (f = proc->formal; f; f = f->next)
643 {
644 if (new_sym == f->sym)
645 break;
646 }
647
648 if (f)
649 continue;
650
651 /* Add a new argument. Argument order is not important. */
652 new_arglist = gfc_get_formal_arglist ();
653 new_arglist->sym = new_sym;
654 new_arglist->next = proc->formal;
655 proc->formal = new_arglist;
656 }
657 }
658
659
660 /* Flag the arguments that are not present in all entries. */
661
662 static void
663 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
664 {
665 gfc_formal_arglist *f, *head;
666 head = new_args;
667
668 for (f = proc->formal; f; f = f->next)
669 {
670 if (f->sym == NULL)
671 continue;
672
673 for (new_args = head; new_args; new_args = new_args->next)
674 {
675 if (new_args->sym == f->sym)
676 break;
677 }
678
679 if (new_args)
680 continue;
681
682 f->sym->attr.not_always_present = 1;
683 }
684 }
685
686
687 /* Resolve alternate entry points. If a symbol has multiple entry points we
688 create a new master symbol for the main routine, and turn the existing
689 symbol into an entry point. */
690
691 static void
692 resolve_entries (gfc_namespace *ns)
693 {
694 gfc_namespace *old_ns;
695 gfc_code *c;
696 gfc_symbol *proc;
697 gfc_entry_list *el;
698 char name[GFC_MAX_SYMBOL_LEN + 1];
699 static int master_count = 0;
700
701 if (ns->proc_name == NULL)
702 return;
703
704 /* No need to do anything if this procedure doesn't have alternate entry
705 points. */
706 if (!ns->entries)
707 return;
708
709 /* We may already have resolved alternate entry points. */
710 if (ns->proc_name->attr.entry_master)
711 return;
712
713 /* If this isn't a procedure something has gone horribly wrong. */
714 gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
715
716 /* Remember the current namespace. */
717 old_ns = gfc_current_ns;
718
719 gfc_current_ns = ns;
720
721 /* Add the main entry point to the list of entry points. */
722 el = gfc_get_entry_list ();
723 el->sym = ns->proc_name;
724 el->id = 0;
725 el->next = ns->entries;
726 ns->entries = el;
727 ns->proc_name->attr.entry = 1;
728
729 /* If it is a module function, it needs to be in the right namespace
730 so that gfc_get_fake_result_decl can gather up the results. The
731 need for this arose in get_proc_name, where these beasts were
732 left in their own namespace, to keep prior references linked to
733 the entry declaration.*/
734 if (ns->proc_name->attr.function
735 && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
736 el->sym->ns = ns;
737
738 /* Do the same for entries where the master is not a module
739 procedure. These are retained in the module namespace because
740 of the module procedure declaration. */
741 for (el = el->next; el; el = el->next)
742 if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
743 && el->sym->attr.mod_proc)
744 el->sym->ns = ns;
745 el = ns->entries;
746
747 /* Add an entry statement for it. */
748 c = gfc_get_code (EXEC_ENTRY);
749 c->ext.entry = el;
750 c->next = ns->code;
751 ns->code = c;
752
753 /* Create a new symbol for the master function. */
754 /* Give the internal function a unique name (within this file).
755 Also include the function name so the user has some hope of figuring
756 out what is going on. */
757 snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
758 master_count++, ns->proc_name->name);
759 gfc_get_ha_symbol (name, &proc);
760 gcc_assert (proc != NULL);
761
762 gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
763 if (ns->proc_name->attr.subroutine)
764 gfc_add_subroutine (&proc->attr, proc->name, NULL);
765 else
766 {
767 gfc_symbol *sym;
768 gfc_typespec *ts, *fts;
769 gfc_array_spec *as, *fas;
770 gfc_add_function (&proc->attr, proc->name, NULL);
771 proc->result = proc;
772 fas = ns->entries->sym->as;
773 fas = fas ? fas : ns->entries->sym->result->as;
774 fts = &ns->entries->sym->result->ts;
775 if (fts->type == BT_UNKNOWN)
776 fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
777 for (el = ns->entries->next; el; el = el->next)
778 {
779 ts = &el->sym->result->ts;
780 as = el->sym->as;
781 as = as ? as : el->sym->result->as;
782 if (ts->type == BT_UNKNOWN)
783 ts = gfc_get_default_type (el->sym->result->name, NULL);
784
785 if (! gfc_compare_types (ts, fts)
786 || (el->sym->result->attr.dimension
787 != ns->entries->sym->result->attr.dimension)
788 || (el->sym->result->attr.pointer
789 != ns->entries->sym->result->attr.pointer))
790 break;
791 else if (as && fas && ns->entries->sym->result != el->sym->result
792 && gfc_compare_array_spec (as, fas) == 0)
793 gfc_error ("Function %s at %L has entries with mismatched "
794 "array specifications", ns->entries->sym->name,
795 &ns->entries->sym->declared_at);
796 /* The characteristics need to match and thus both need to have
797 the same string length, i.e. both len=*, or both len=4.
798 Having both len=<variable> is also possible, but difficult to
799 check at compile time. */
800 else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
801 && (((ts->u.cl->length && !fts->u.cl->length)
802 ||(!ts->u.cl->length && fts->u.cl->length))
803 || (ts->u.cl->length
804 && ts->u.cl->length->expr_type
805 != fts->u.cl->length->expr_type)
806 || (ts->u.cl->length
807 && ts->u.cl->length->expr_type == EXPR_CONSTANT
808 && mpz_cmp (ts->u.cl->length->value.integer,
809 fts->u.cl->length->value.integer) != 0)))
810 gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
811 "entries returning variables of different "
812 "string lengths", ns->entries->sym->name,
813 &ns->entries->sym->declared_at);
814 }
815
816 if (el == NULL)
817 {
818 sym = ns->entries->sym->result;
819 /* All result types the same. */
820 proc->ts = *fts;
821 if (sym->attr.dimension)
822 gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
823 if (sym->attr.pointer)
824 gfc_add_pointer (&proc->attr, NULL);
825 }
826 else
827 {
828 /* Otherwise the result will be passed through a union by
829 reference. */
830 proc->attr.mixed_entry_master = 1;
831 for (el = ns->entries; el; el = el->next)
832 {
833 sym = el->sym->result;
834 if (sym->attr.dimension)
835 {
836 if (el == ns->entries)
837 gfc_error ("FUNCTION result %s can't be an array in "
838 "FUNCTION %s at %L", sym->name,
839 ns->entries->sym->name, &sym->declared_at);
840 else
841 gfc_error ("ENTRY result %s can't be an array in "
842 "FUNCTION %s at %L", sym->name,
843 ns->entries->sym->name, &sym->declared_at);
844 }
845 else if (sym->attr.pointer)
846 {
847 if (el == ns->entries)
848 gfc_error ("FUNCTION result %s can't be a POINTER in "
849 "FUNCTION %s at %L", sym->name,
850 ns->entries->sym->name, &sym->declared_at);
851 else
852 gfc_error ("ENTRY result %s can't be a POINTER in "
853 "FUNCTION %s at %L", sym->name,
854 ns->entries->sym->name, &sym->declared_at);
855 }
856 else
857 {
858 ts = &sym->ts;
859 if (ts->type == BT_UNKNOWN)
860 ts = gfc_get_default_type (sym->name, NULL);
861 switch (ts->type)
862 {
863 case BT_INTEGER:
864 if (ts->kind == gfc_default_integer_kind)
865 sym = NULL;
866 break;
867 case BT_REAL:
868 if (ts->kind == gfc_default_real_kind
869 || ts->kind == gfc_default_double_kind)
870 sym = NULL;
871 break;
872 case BT_COMPLEX:
873 if (ts->kind == gfc_default_complex_kind)
874 sym = NULL;
875 break;
876 case BT_LOGICAL:
877 if (ts->kind == gfc_default_logical_kind)
878 sym = NULL;
879 break;
880 case BT_UNKNOWN:
881 /* We will issue error elsewhere. */
882 sym = NULL;
883 break;
884 default:
885 break;
886 }
887 if (sym)
888 {
889 if (el == ns->entries)
890 gfc_error ("FUNCTION result %s can't be of type %s "
891 "in FUNCTION %s at %L", sym->name,
892 gfc_typename (ts), ns->entries->sym->name,
893 &sym->declared_at);
894 else
895 gfc_error ("ENTRY result %s can't be of type %s "
896 "in FUNCTION %s at %L", sym->name,
897 gfc_typename (ts), ns->entries->sym->name,
898 &sym->declared_at);
899 }
900 }
901 }
902 }
903 }
904 proc->attr.access = ACCESS_PRIVATE;
905 proc->attr.entry_master = 1;
906
907 /* Merge all the entry point arguments. */
908 for (el = ns->entries; el; el = el->next)
909 merge_argument_lists (proc, el->sym->formal);
910
911 /* Check the master formal arguments for any that are not
912 present in all entry points. */
913 for (el = ns->entries; el; el = el->next)
914 check_argument_lists (proc, el->sym->formal);
915
916 /* Use the master function for the function body. */
917 ns->proc_name = proc;
918
919 /* Finalize the new symbols. */
920 gfc_commit_symbols ();
921
922 /* Restore the original namespace. */
923 gfc_current_ns = old_ns;
924 }
925
926
927 /* Resolve common variables. */
928 static void
929 resolve_common_vars (gfc_common_head *common_block, bool named_common)
930 {
931 gfc_symbol *csym = common_block->head;
932
933 for (; csym; csym = csym->common_next)
934 {
935 /* gfc_add_in_common may have been called before, but the reported errors
936 have been ignored to continue parsing.
937 We do the checks again here. */
938 if (!csym->attr.use_assoc)
939 gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
940
941 if (csym->value || csym->attr.data)
942 {
943 if (!csym->ns->is_block_data)
944 gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
945 "but only in BLOCK DATA initialization is "
946 "allowed", csym->name, &csym->declared_at);
947 else if (!named_common)
948 gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
949 "in a blank COMMON but initialization is only "
950 "allowed in named common blocks", csym->name,
951 &csym->declared_at);
952 }
953
954 if (UNLIMITED_POLY (csym))
955 gfc_error_now ("%qs in cannot appear in COMMON at %L "
956 "[F2008:C5100]", csym->name, &csym->declared_at);
957
958 if (csym->ts.type != BT_DERIVED)
959 continue;
960
961 if (!(csym->ts.u.derived->attr.sequence
962 || csym->ts.u.derived->attr.is_bind_c))
963 gfc_error_now ("Derived type variable %qs in COMMON at %L "
964 "has neither the SEQUENCE nor the BIND(C) "
965 "attribute", csym->name, &csym->declared_at);
966 if (csym->ts.u.derived->attr.alloc_comp)
967 gfc_error_now ("Derived type variable %qs in COMMON at %L "
968 "has an ultimate component that is "
969 "allocatable", csym->name, &csym->declared_at);
970 if (gfc_has_default_initializer (csym->ts.u.derived))
971 gfc_error_now ("Derived type variable %qs in COMMON at %L "
972 "may not have default initializer", csym->name,
973 &csym->declared_at);
974
975 if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
976 gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
977 }
978 }
979
980 /* Resolve common blocks. */
981 static void
982 resolve_common_blocks (gfc_symtree *common_root)
983 {
984 gfc_symbol *sym;
985 gfc_gsymbol * gsym;
986
987 if (common_root == NULL)
988 return;
989
990 if (common_root->left)
991 resolve_common_blocks (common_root->left);
992 if (common_root->right)
993 resolve_common_blocks (common_root->right);
994
995 resolve_common_vars (common_root->n.common, true);
996
997 /* The common name is a global name - in Fortran 2003 also if it has a
998 C binding name, since Fortran 2008 only the C binding name is a global
999 identifier. */
1000 if (!common_root->n.common->binding_label
1001 || gfc_notification_std (GFC_STD_F2008))
1002 {
1003 gsym = gfc_find_gsymbol (gfc_gsym_root,
1004 common_root->n.common->name);
1005
1006 if (gsym && gfc_notification_std (GFC_STD_F2008)
1007 && gsym->type == GSYM_COMMON
1008 && ((common_root->n.common->binding_label
1009 && (!gsym->binding_label
1010 || strcmp (common_root->n.common->binding_label,
1011 gsym->binding_label) != 0))
1012 || (!common_root->n.common->binding_label
1013 && gsym->binding_label)))
1014 {
1015 gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
1016 "identifier and must thus have the same binding name "
1017 "as the same-named COMMON block at %L: %s vs %s",
1018 common_root->n.common->name, &common_root->n.common->where,
1019 &gsym->where,
1020 common_root->n.common->binding_label
1021 ? common_root->n.common->binding_label : "(blank)",
1022 gsym->binding_label ? gsym->binding_label : "(blank)");
1023 return;
1024 }
1025
1026 if (gsym && gsym->type != GSYM_COMMON
1027 && !common_root->n.common->binding_label)
1028 {
1029 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1030 "as entity at %L",
1031 common_root->n.common->name, &common_root->n.common->where,
1032 &gsym->where);
1033 return;
1034 }
1035 if (gsym && gsym->type != GSYM_COMMON)
1036 {
1037 gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
1038 "%L sharing the identifier with global non-COMMON-block "
1039 "entity at %L", common_root->n.common->name,
1040 &common_root->n.common->where, &gsym->where);
1041 return;
1042 }
1043 if (!gsym)
1044 {
1045 gsym = gfc_get_gsymbol (common_root->n.common->name);
1046 gsym->type = GSYM_COMMON;
1047 gsym->where = common_root->n.common->where;
1048 gsym->defined = 1;
1049 }
1050 gsym->used = 1;
1051 }
1052
1053 if (common_root->n.common->binding_label)
1054 {
1055 gsym = gfc_find_gsymbol (gfc_gsym_root,
1056 common_root->n.common->binding_label);
1057 if (gsym && gsym->type != GSYM_COMMON)
1058 {
1059 gfc_error ("COMMON block at %L with binding label %qs uses the same "
1060 "global identifier as entity at %L",
1061 &common_root->n.common->where,
1062 common_root->n.common->binding_label, &gsym->where);
1063 return;
1064 }
1065 if (!gsym)
1066 {
1067 gsym = gfc_get_gsymbol (common_root->n.common->binding_label);
1068 gsym->type = GSYM_COMMON;
1069 gsym->where = common_root->n.common->where;
1070 gsym->defined = 1;
1071 }
1072 gsym->used = 1;
1073 }
1074
1075 gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
1076 if (sym == NULL)
1077 return;
1078
1079 if (sym->attr.flavor == FL_PARAMETER)
1080 gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
1081 sym->name, &common_root->n.common->where, &sym->declared_at);
1082
1083 if (sym->attr.external)
1084 gfc_error ("COMMON block %qs at %L can not have the EXTERNAL attribute",
1085 sym->name, &common_root->n.common->where);
1086
1087 if (sym->attr.intrinsic)
1088 gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
1089 sym->name, &common_root->n.common->where);
1090 else if (sym->attr.result
1091 || gfc_is_function_return_value (sym, gfc_current_ns))
1092 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1093 "that is also a function result", sym->name,
1094 &common_root->n.common->where);
1095 else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
1096 && sym->attr.proc != PROC_ST_FUNCTION)
1097 gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
1098 "that is also a global procedure", sym->name,
1099 &common_root->n.common->where);
1100 }
1101
1102
1103 /* Resolve contained function types. Because contained functions can call one
1104 another, they have to be worked out before any of the contained procedures
1105 can be resolved.
1106
1107 The good news is that if a function doesn't already have a type, the only
1108 way it can get one is through an IMPLICIT type or a RESULT variable, because
1109 by definition contained functions are contained namespace they're contained
1110 in, not in a sibling or parent namespace. */
1111
1112 static void
1113 resolve_contained_functions (gfc_namespace *ns)
1114 {
1115 gfc_namespace *child;
1116 gfc_entry_list *el;
1117
1118 resolve_formal_arglists (ns);
1119
1120 for (child = ns->contained; child; child = child->sibling)
1121 {
1122 /* Resolve alternate entry points first. */
1123 resolve_entries (child);
1124
1125 /* Then check function return types. */
1126 resolve_contained_fntype (child->proc_name, child);
1127 for (el = child->entries; el; el = el->next)
1128 resolve_contained_fntype (el->sym, child);
1129 }
1130 }
1131
1132
1133
1134 /* A Parameterized Derived Type constructor must contain values for
1135 the PDT KIND parameters or they must have a default initializer.
1136 Go through the constructor picking out the KIND expressions,
1137 storing them in 'param_list' and then call gfc_get_pdt_instance
1138 to obtain the PDT instance. */
1139
1140 static gfc_actual_arglist *param_list, *param_tail, *param;
1141
1142 static bool
1143 get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
1144 {
1145 param = gfc_get_actual_arglist ();
1146 if (!param_list)
1147 param_list = param_tail = param;
1148 else
1149 {
1150 param_tail->next = param;
1151 param_tail = param_tail->next;
1152 }
1153
1154 param_tail->name = c->name;
1155 if (expr)
1156 param_tail->expr = gfc_copy_expr (expr);
1157 else if (c->initializer)
1158 param_tail->expr = gfc_copy_expr (c->initializer);
1159 else
1160 {
1161 param_tail->spec_type = SPEC_ASSUMED;
1162 if (c->attr.pdt_kind)
1163 {
1164 gfc_error ("The KIND parameter %qs in the PDT constructor "
1165 "at %C has no value", param->name);
1166 return false;
1167 }
1168 }
1169
1170 return true;
1171 }
1172
1173 static bool
1174 get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
1175 gfc_symbol *derived)
1176 {
1177 gfc_constructor *cons = NULL;
1178 gfc_component *comp;
1179 bool t = true;
1180
1181 if (expr && expr->expr_type == EXPR_STRUCTURE)
1182 cons = gfc_constructor_first (expr->value.constructor);
1183 else if (constr)
1184 cons = *constr;
1185 gcc_assert (cons);
1186
1187 comp = derived->components;
1188
1189 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1190 {
1191 if (cons->expr
1192 && cons->expr->expr_type == EXPR_STRUCTURE
1193 && comp->ts.type == BT_DERIVED)
1194 {
1195 t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
1196 if (!t)
1197 return t;
1198 }
1199 else if (comp->ts.type == BT_DERIVED)
1200 {
1201 t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
1202 if (!t)
1203 return t;
1204 }
1205 else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
1206 && derived->attr.pdt_template)
1207 {
1208 t = get_pdt_spec_expr (comp, cons->expr);
1209 if (!t)
1210 return t;
1211 }
1212 }
1213 return t;
1214 }
1215
1216
1217 static bool resolve_fl_derived0 (gfc_symbol *sym);
1218 static bool resolve_fl_struct (gfc_symbol *sym);
1219
1220
1221 /* Resolve all of the elements of a structure constructor and make sure that
1222 the types are correct. The 'init' flag indicates that the given
1223 constructor is an initializer. */
1224
1225 static bool
1226 resolve_structure_cons (gfc_expr *expr, int init)
1227 {
1228 gfc_constructor *cons;
1229 gfc_component *comp;
1230 bool t;
1231 symbol_attribute a;
1232
1233 t = true;
1234
1235 if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
1236 {
1237 if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
1238 resolve_fl_derived0 (expr->ts.u.derived);
1239 else
1240 resolve_fl_struct (expr->ts.u.derived);
1241
1242 /* If this is a Parameterized Derived Type template, find the
1243 instance corresponding to the PDT kind parameters. */
1244 if (expr->ts.u.derived->attr.pdt_template)
1245 {
1246 param_list = NULL;
1247 t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
1248 if (!t)
1249 return t;
1250 gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
1251
1252 expr->param_list = gfc_copy_actual_arglist (param_list);
1253
1254 if (param_list)
1255 gfc_free_actual_arglist (param_list);
1256
1257 if (!expr->ts.u.derived->attr.pdt_type)
1258 return false;
1259 }
1260 }
1261
1262 cons = gfc_constructor_first (expr->value.constructor);
1263
1264 /* A constructor may have references if it is the result of substituting a
1265 parameter variable. In this case we just pull out the component we
1266 want. */
1267 if (expr->ref)
1268 comp = expr->ref->u.c.sym->components;
1269 else
1270 comp = expr->ts.u.derived->components;
1271
1272 for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
1273 {
1274 int rank;
1275
1276 if (!cons->expr)
1277 continue;
1278
1279 /* Unions use an EXPR_NULL contrived expression to tell the translation
1280 phase to generate an initializer of the appropriate length.
1281 Ignore it here. */
1282 if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
1283 continue;
1284
1285 if (!gfc_resolve_expr (cons->expr))
1286 {
1287 t = false;
1288 continue;
1289 }
1290
1291 rank = comp->as ? comp->as->rank : 0;
1292 if (comp->ts.type == BT_CLASS
1293 && !comp->ts.u.derived->attr.unlimited_polymorphic
1294 && CLASS_DATA (comp)->as)
1295 rank = CLASS_DATA (comp)->as->rank;
1296
1297 if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
1298 && (comp->attr.allocatable || cons->expr->rank))
1299 {
1300 gfc_error ("The rank of the element in the structure "
1301 "constructor at %L does not match that of the "
1302 "component (%d/%d)", &cons->expr->where,
1303 cons->expr->rank, rank);
1304 t = false;
1305 }
1306
1307 /* If we don't have the right type, try to convert it. */
1308
1309 if (!comp->attr.proc_pointer &&
1310 !gfc_compare_types (&cons->expr->ts, &comp->ts))
1311 {
1312 if (strcmp (comp->name, "_extends") == 0)
1313 {
1314 /* Can afford to be brutal with the _extends initializer.
1315 The derived type can get lost because it is PRIVATE
1316 but it is not usage constrained by the standard. */
1317 cons->expr->ts = comp->ts;
1318 }
1319 else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
1320 {
1321 gfc_error ("The element in the structure constructor at %L, "
1322 "for pointer component %qs, is %s but should be %s",
1323 &cons->expr->where, comp->name,
1324 gfc_basic_typename (cons->expr->ts.type),
1325 gfc_basic_typename (comp->ts.type));
1326 t = false;
1327 }
1328 else
1329 {
1330 bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
1331 if (t)
1332 t = t2;
1333 }
1334 }
1335
1336 /* For strings, the length of the constructor should be the same as
1337 the one of the structure, ensure this if the lengths are known at
1338 compile time and when we are dealing with PARAMETER or structure
1339 constructors. */
1340 if (cons->expr->ts.type == BT_CHARACTER && comp->ts.u.cl
1341 && comp->ts.u.cl->length
1342 && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
1343 && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
1344 && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
1345 && cons->expr->rank != 0
1346 && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
1347 comp->ts.u.cl->length->value.integer) != 0)
1348 {
1349 if (cons->expr->expr_type == EXPR_VARIABLE
1350 && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
1351 {
1352 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1353 to make use of the gfc_resolve_character_array_constructor
1354 machinery. The expression is later simplified away to
1355 an array of string literals. */
1356 gfc_expr *para = cons->expr;
1357 cons->expr = gfc_get_expr ();
1358 cons->expr->ts = para->ts;
1359 cons->expr->where = para->where;
1360 cons->expr->expr_type = EXPR_ARRAY;
1361 cons->expr->rank = para->rank;
1362 cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
1363 gfc_constructor_append_expr (&cons->expr->value.constructor,
1364 para, &cons->expr->where);
1365 }
1366
1367 if (cons->expr->expr_type == EXPR_ARRAY)
1368 {
1369 /* Rely on the cleanup of the namespace to deal correctly with
1370 the old charlen. (There was a block here that attempted to
1371 remove the charlen but broke the chain in so doing.) */
1372 cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
1373 cons->expr->ts.u.cl->length_from_typespec = true;
1374 cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
1375 gfc_resolve_character_array_constructor (cons->expr);
1376 }
1377 }
1378
1379 if (cons->expr->expr_type == EXPR_NULL
1380 && !(comp->attr.pointer || comp->attr.allocatable
1381 || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
1382 || (comp->ts.type == BT_CLASS
1383 && (CLASS_DATA (comp)->attr.class_pointer
1384 || CLASS_DATA (comp)->attr.allocatable))))
1385 {
1386 t = false;
1387 gfc_error ("The NULL in the structure constructor at %L is "
1388 "being applied to component %qs, which is neither "
1389 "a POINTER nor ALLOCATABLE", &cons->expr->where,
1390 comp->name);
1391 }
1392
1393 if (comp->attr.proc_pointer && comp->ts.interface)
1394 {
1395 /* Check procedure pointer interface. */
1396 gfc_symbol *s2 = NULL;
1397 gfc_component *c2;
1398 const char *name;
1399 char err[200];
1400
1401 c2 = gfc_get_proc_ptr_comp (cons->expr);
1402 if (c2)
1403 {
1404 s2 = c2->ts.interface;
1405 name = c2->name;
1406 }
1407 else if (cons->expr->expr_type == EXPR_FUNCTION)
1408 {
1409 s2 = cons->expr->symtree->n.sym->result;
1410 name = cons->expr->symtree->n.sym->result->name;
1411 }
1412 else if (cons->expr->expr_type != EXPR_NULL)
1413 {
1414 s2 = cons->expr->symtree->n.sym;
1415 name = cons->expr->symtree->n.sym->name;
1416 }
1417
1418 if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
1419 err, sizeof (err), NULL, NULL))
1420 {
1421 gfc_error_opt (OPT_Wargument_mismatch,
1422 "Interface mismatch for procedure-pointer "
1423 "component %qs in structure constructor at %L:"
1424 " %s", comp->name, &cons->expr->where, err);
1425 return false;
1426 }
1427 }
1428
1429 if (!comp->attr.pointer || comp->attr.proc_pointer
1430 || cons->expr->expr_type == EXPR_NULL)
1431 continue;
1432
1433 a = gfc_expr_attr (cons->expr);
1434
1435 if (!a.pointer && !a.target)
1436 {
1437 t = false;
1438 gfc_error ("The element in the structure constructor at %L, "
1439 "for pointer component %qs should be a POINTER or "
1440 "a TARGET", &cons->expr->where, comp->name);
1441 }
1442
1443 if (init)
1444 {
1445 /* F08:C461. Additional checks for pointer initialization. */
1446 if (a.allocatable)
1447 {
1448 t = false;
1449 gfc_error ("Pointer initialization target at %L "
1450 "must not be ALLOCATABLE", &cons->expr->where);
1451 }
1452 if (!a.save)
1453 {
1454 t = false;
1455 gfc_error ("Pointer initialization target at %L "
1456 "must have the SAVE attribute", &cons->expr->where);
1457 }
1458 }
1459
1460 /* F2003, C1272 (3). */
1461 bool impure = cons->expr->expr_type == EXPR_VARIABLE
1462 && (gfc_impure_variable (cons->expr->symtree->n.sym)
1463 || gfc_is_coindexed (cons->expr));
1464 if (impure && gfc_pure (NULL))
1465 {
1466 t = false;
1467 gfc_error ("Invalid expression in the structure constructor for "
1468 "pointer component %qs at %L in PURE procedure",
1469 comp->name, &cons->expr->where);
1470 }
1471
1472 if (impure)
1473 gfc_unset_implicit_pure (NULL);
1474 }
1475
1476 return t;
1477 }
1478
1479
1480 /****************** Expression name resolution ******************/
1481
1482 /* Returns 0 if a symbol was not declared with a type or
1483 attribute declaration statement, nonzero otherwise. */
1484
1485 static int
1486 was_declared (gfc_symbol *sym)
1487 {
1488 symbol_attribute a;
1489
1490 a = sym->attr;
1491
1492 if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
1493 return 1;
1494
1495 if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
1496 || a.optional || a.pointer || a.save || a.target || a.volatile_
1497 || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
1498 || a.asynchronous || a.codimension)
1499 return 1;
1500
1501 return 0;
1502 }
1503
1504
1505 /* Determine if a symbol is generic or not. */
1506
1507 static int
1508 generic_sym (gfc_symbol *sym)
1509 {
1510 gfc_symbol *s;
1511
1512 if (sym->attr.generic ||
1513 (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
1514 return 1;
1515
1516 if (was_declared (sym) || sym->ns->parent == NULL)
1517 return 0;
1518
1519 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1520
1521 if (s != NULL)
1522 {
1523 if (s == sym)
1524 return 0;
1525 else
1526 return generic_sym (s);
1527 }
1528
1529 return 0;
1530 }
1531
1532
1533 /* Determine if a symbol is specific or not. */
1534
1535 static int
1536 specific_sym (gfc_symbol *sym)
1537 {
1538 gfc_symbol *s;
1539
1540 if (sym->attr.if_source == IFSRC_IFBODY
1541 || sym->attr.proc == PROC_MODULE
1542 || sym->attr.proc == PROC_INTERNAL
1543 || sym->attr.proc == PROC_ST_FUNCTION
1544 || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1545 || sym->attr.external)
1546 return 1;
1547
1548 if (was_declared (sym) || sym->ns->parent == NULL)
1549 return 0;
1550
1551 gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1552
1553 return (s == NULL) ? 0 : specific_sym (s);
1554 }
1555
1556
1557 /* Figure out if the procedure is specific, generic or unknown. */
1558
1559 enum proc_type
1560 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
1561
1562 static proc_type
1563 procedure_kind (gfc_symbol *sym)
1564 {
1565 if (generic_sym (sym))
1566 return PTYPE_GENERIC;
1567
1568 if (specific_sym (sym))
1569 return PTYPE_SPECIFIC;
1570
1571 return PTYPE_UNKNOWN;
1572 }
1573
1574 /* Check references to assumed size arrays. The flag need_full_assumed_size
1575 is nonzero when matching actual arguments. */
1576
1577 static int need_full_assumed_size = 0;
1578
1579 static bool
1580 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1581 {
1582 if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1583 return false;
1584
1585 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1586 What should it be? */
1587 if (e->ref && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1588 && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1589 && (e->ref->u.ar.type == AR_FULL))
1590 {
1591 gfc_error ("The upper bound in the last dimension must "
1592 "appear in the reference to the assumed size "
1593 "array %qs at %L", sym->name, &e->where);
1594 return true;
1595 }
1596 return false;
1597 }
1598
1599
1600 /* Look for bad assumed size array references in argument expressions
1601 of elemental and array valued intrinsic procedures. Since this is
1602 called from procedure resolution functions, it only recurses at
1603 operators. */
1604
1605 static bool
1606 resolve_assumed_size_actual (gfc_expr *e)
1607 {
1608 if (e == NULL)
1609 return false;
1610
1611 switch (e->expr_type)
1612 {
1613 case EXPR_VARIABLE:
1614 if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1615 return true;
1616 break;
1617
1618 case EXPR_OP:
1619 if (resolve_assumed_size_actual (e->value.op.op1)
1620 || resolve_assumed_size_actual (e->value.op.op2))
1621 return true;
1622 break;
1623
1624 default:
1625 break;
1626 }
1627 return false;
1628 }
1629
1630
1631 /* Check a generic procedure, passed as an actual argument, to see if
1632 there is a matching specific name. If none, it is an error, and if
1633 more than one, the reference is ambiguous. */
1634 static int
1635 count_specific_procs (gfc_expr *e)
1636 {
1637 int n;
1638 gfc_interface *p;
1639 gfc_symbol *sym;
1640
1641 n = 0;
1642 sym = e->symtree->n.sym;
1643
1644 for (p = sym->generic; p; p = p->next)
1645 if (strcmp (sym->name, p->sym->name) == 0)
1646 {
1647 e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1648 sym->name);
1649 n++;
1650 }
1651
1652 if (n > 1)
1653 gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
1654 &e->where);
1655
1656 if (n == 0)
1657 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1658 "argument at %L", sym->name, &e->where);
1659
1660 return n;
1661 }
1662
1663
1664 /* See if a call to sym could possibly be a not allowed RECURSION because of
1665 a missing RECURSIVE declaration. This means that either sym is the current
1666 context itself, or sym is the parent of a contained procedure calling its
1667 non-RECURSIVE containing procedure.
1668 This also works if sym is an ENTRY. */
1669
1670 static bool
1671 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1672 {
1673 gfc_symbol* proc_sym;
1674 gfc_symbol* context_proc;
1675 gfc_namespace* real_context;
1676
1677 if (sym->attr.flavor == FL_PROGRAM
1678 || gfc_fl_struct (sym->attr.flavor))
1679 return false;
1680
1681 gcc_assert (sym->attr.flavor == FL_PROCEDURE);
1682
1683 /* If we've got an ENTRY, find real procedure. */
1684 if (sym->attr.entry && sym->ns->entries)
1685 proc_sym = sym->ns->entries->sym;
1686 else
1687 proc_sym = sym;
1688
1689 /* If sym is RECURSIVE, all is well of course. */
1690 if (proc_sym->attr.recursive || flag_recursive)
1691 return false;
1692
1693 /* Find the context procedure's "real" symbol if it has entries.
1694 We look for a procedure symbol, so recurse on the parents if we don't
1695 find one (like in case of a BLOCK construct). */
1696 for (real_context = context; ; real_context = real_context->parent)
1697 {
1698 /* We should find something, eventually! */
1699 gcc_assert (real_context);
1700
1701 context_proc = (real_context->entries ? real_context->entries->sym
1702 : real_context->proc_name);
1703
1704 /* In some special cases, there may not be a proc_name, like for this
1705 invalid code:
1706 real(bad_kind()) function foo () ...
1707 when checking the call to bad_kind ().
1708 In these cases, we simply return here and assume that the
1709 call is ok. */
1710 if (!context_proc)
1711 return false;
1712
1713 if (context_proc->attr.flavor != FL_LABEL)
1714 break;
1715 }
1716
1717 /* A call from sym's body to itself is recursion, of course. */
1718 if (context_proc == proc_sym)
1719 return true;
1720
1721 /* The same is true if context is a contained procedure and sym the
1722 containing one. */
1723 if (context_proc->attr.contained)
1724 {
1725 gfc_symbol* parent_proc;
1726
1727 gcc_assert (context->parent);
1728 parent_proc = (context->parent->entries ? context->parent->entries->sym
1729 : context->parent->proc_name);
1730
1731 if (parent_proc == proc_sym)
1732 return true;
1733 }
1734
1735 return false;
1736 }
1737
1738
1739 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1740 its typespec and formal argument list. */
1741
1742 bool
1743 gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
1744 {
1745 gfc_intrinsic_sym* isym = NULL;
1746 const char* symstd;
1747
1748 if (sym->formal)
1749 return true;
1750
1751 /* Already resolved. */
1752 if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
1753 return true;
1754
1755 /* We already know this one is an intrinsic, so we don't call
1756 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1757 gfc_find_subroutine directly to check whether it is a function or
1758 subroutine. */
1759
1760 if (sym->intmod_sym_id && sym->attr.subroutine)
1761 {
1762 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1763 isym = gfc_intrinsic_subroutine_by_id (id);
1764 }
1765 else if (sym->intmod_sym_id)
1766 {
1767 gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
1768 isym = gfc_intrinsic_function_by_id (id);
1769 }
1770 else if (!sym->attr.subroutine)
1771 isym = gfc_find_function (sym->name);
1772
1773 if (isym && !sym->attr.subroutine)
1774 {
1775 if (sym->ts.type != BT_UNKNOWN && warn_surprising
1776 && !sym->attr.implicit_type)
1777 gfc_warning (OPT_Wsurprising,
1778 "Type specified for intrinsic function %qs at %L is"
1779 " ignored", sym->name, &sym->declared_at);
1780
1781 if (!sym->attr.function &&
1782 !gfc_add_function(&sym->attr, sym->name, loc))
1783 return false;
1784
1785 sym->ts = isym->ts;
1786 }
1787 else if (isym || (isym = gfc_find_subroutine (sym->name)))
1788 {
1789 if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1790 {
1791 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1792 " specifier", sym->name, &sym->declared_at);
1793 return false;
1794 }
1795
1796 if (!sym->attr.subroutine &&
1797 !gfc_add_subroutine(&sym->attr, sym->name, loc))
1798 return false;
1799 }
1800 else
1801 {
1802 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
1803 &sym->declared_at);
1804 return false;
1805 }
1806
1807 gfc_copy_formal_args_intr (sym, isym, NULL);
1808
1809 sym->attr.pure = isym->pure;
1810 sym->attr.elemental = isym->elemental;
1811
1812 /* Check it is actually available in the standard settings. */
1813 if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
1814 {
1815 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1816 "available in the current standard settings but %s. Use "
1817 "an appropriate %<-std=*%> option or enable "
1818 "%<-fall-intrinsics%> in order to use it.",
1819 sym->name, &sym->declared_at, symstd);
1820 return false;
1821 }
1822
1823 return true;
1824 }
1825
1826
1827 /* Resolve a procedure expression, like passing it to a called procedure or as
1828 RHS for a procedure pointer assignment. */
1829
1830 static bool
1831 resolve_procedure_expression (gfc_expr* expr)
1832 {
1833 gfc_symbol* sym;
1834
1835 if (expr->expr_type != EXPR_VARIABLE)
1836 return true;
1837 gcc_assert (expr->symtree);
1838
1839 sym = expr->symtree->n.sym;
1840
1841 if (sym->attr.intrinsic)
1842 gfc_resolve_intrinsic (sym, &expr->where);
1843
1844 if (sym->attr.flavor != FL_PROCEDURE
1845 || (sym->attr.function && sym->result == sym))
1846 return true;
1847
1848 /* A non-RECURSIVE procedure that is used as procedure expression within its
1849 own body is in danger of being called recursively. */
1850 if (is_illegal_recursion (sym, gfc_current_ns))
1851 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1852 " itself recursively. Declare it RECURSIVE or use"
1853 " %<-frecursive%>", sym->name, &expr->where);
1854
1855 return true;
1856 }
1857
1858
1859 /* Resolve an actual argument list. Most of the time, this is just
1860 resolving the expressions in the list.
1861 The exception is that we sometimes have to decide whether arguments
1862 that look like procedure arguments are really simple variable
1863 references. */
1864
1865 static bool
1866 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1867 bool no_formal_args)
1868 {
1869 gfc_symbol *sym;
1870 gfc_symtree *parent_st;
1871 gfc_expr *e;
1872 gfc_component *comp;
1873 int save_need_full_assumed_size;
1874 bool return_value = false;
1875 bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
1876
1877 actual_arg = true;
1878 first_actual_arg = true;
1879
1880 for (; arg; arg = arg->next)
1881 {
1882 e = arg->expr;
1883 if (e == NULL)
1884 {
1885 /* Check the label is a valid branching target. */
1886 if (arg->label)
1887 {
1888 if (arg->label->defined == ST_LABEL_UNKNOWN)
1889 {
1890 gfc_error ("Label %d referenced at %L is never defined",
1891 arg->label->value, &arg->label->where);
1892 goto cleanup;
1893 }
1894 }
1895 first_actual_arg = false;
1896 continue;
1897 }
1898
1899 if (e->expr_type == EXPR_VARIABLE
1900 && e->symtree->n.sym->attr.generic
1901 && no_formal_args
1902 && count_specific_procs (e) != 1)
1903 goto cleanup;
1904
1905 if (e->ts.type != BT_PROCEDURE)
1906 {
1907 save_need_full_assumed_size = need_full_assumed_size;
1908 if (e->expr_type != EXPR_VARIABLE)
1909 need_full_assumed_size = 0;
1910 if (!gfc_resolve_expr (e))
1911 goto cleanup;
1912 need_full_assumed_size = save_need_full_assumed_size;
1913 goto argument_list;
1914 }
1915
1916 /* See if the expression node should really be a variable reference. */
1917
1918 sym = e->symtree->n.sym;
1919
1920 if (sym->attr.flavor == FL_PROCEDURE
1921 || sym->attr.intrinsic
1922 || sym->attr.external)
1923 {
1924 int actual_ok;
1925
1926 /* If a procedure is not already determined to be something else
1927 check if it is intrinsic. */
1928 if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1929 sym->attr.intrinsic = 1;
1930
1931 if (sym->attr.proc == PROC_ST_FUNCTION)
1932 {
1933 gfc_error ("Statement function %qs at %L is not allowed as an "
1934 "actual argument", sym->name, &e->where);
1935 }
1936
1937 actual_ok = gfc_intrinsic_actual_ok (sym->name,
1938 sym->attr.subroutine);
1939 if (sym->attr.intrinsic && actual_ok == 0)
1940 {
1941 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1942 "actual argument", sym->name, &e->where);
1943 }
1944
1945 if (sym->attr.contained && !sym->attr.use_assoc
1946 && sym->ns->proc_name->attr.flavor != FL_MODULE)
1947 {
1948 if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
1949 " used as actual argument at %L",
1950 sym->name, &e->where))
1951 goto cleanup;
1952 }
1953
1954 if (sym->attr.elemental && !sym->attr.intrinsic)
1955 {
1956 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1957 "allowed as an actual argument at %L", sym->name,
1958 &e->where);
1959 }
1960
1961 /* Check if a generic interface has a specific procedure
1962 with the same name before emitting an error. */
1963 if (sym->attr.generic && count_specific_procs (e) != 1)
1964 goto cleanup;
1965
1966 /* Just in case a specific was found for the expression. */
1967 sym = e->symtree->n.sym;
1968
1969 /* If the symbol is the function that names the current (or
1970 parent) scope, then we really have a variable reference. */
1971
1972 if (gfc_is_function_return_value (sym, sym->ns))
1973 goto got_variable;
1974
1975 /* If all else fails, see if we have a specific intrinsic. */
1976 if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
1977 {
1978 gfc_intrinsic_sym *isym;
1979
1980 isym = gfc_find_function (sym->name);
1981 if (isym == NULL || !isym->specific)
1982 {
1983 gfc_error ("Unable to find a specific INTRINSIC procedure "
1984 "for the reference %qs at %L", sym->name,
1985 &e->where);
1986 goto cleanup;
1987 }
1988 sym->ts = isym->ts;
1989 sym->attr.intrinsic = 1;
1990 sym->attr.function = 1;
1991 }
1992
1993 if (!gfc_resolve_expr (e))
1994 goto cleanup;
1995 goto argument_list;
1996 }
1997
1998 /* See if the name is a module procedure in a parent unit. */
1999
2000 if (was_declared (sym) || sym->ns->parent == NULL)
2001 goto got_variable;
2002
2003 if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
2004 {
2005 gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
2006 goto cleanup;
2007 }
2008
2009 if (parent_st == NULL)
2010 goto got_variable;
2011
2012 sym = parent_st->n.sym;
2013 e->symtree = parent_st; /* Point to the right thing. */
2014
2015 if (sym->attr.flavor == FL_PROCEDURE
2016 || sym->attr.intrinsic
2017 || sym->attr.external)
2018 {
2019 if (!gfc_resolve_expr (e))
2020 goto cleanup;
2021 goto argument_list;
2022 }
2023
2024 got_variable:
2025 e->expr_type = EXPR_VARIABLE;
2026 e->ts = sym->ts;
2027 if ((sym->as != NULL && sym->ts.type != BT_CLASS)
2028 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
2029 && CLASS_DATA (sym)->as))
2030 {
2031 e->rank = sym->ts.type == BT_CLASS
2032 ? CLASS_DATA (sym)->as->rank : sym->as->rank;
2033 e->ref = gfc_get_ref ();
2034 e->ref->type = REF_ARRAY;
2035 e->ref->u.ar.type = AR_FULL;
2036 e->ref->u.ar.as = sym->ts.type == BT_CLASS
2037 ? CLASS_DATA (sym)->as : sym->as;
2038 }
2039
2040 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2041 primary.c (match_actual_arg). If above code determines that it
2042 is a variable instead, it needs to be resolved as it was not
2043 done at the beginning of this function. */
2044 save_need_full_assumed_size = need_full_assumed_size;
2045 if (e->expr_type != EXPR_VARIABLE)
2046 need_full_assumed_size = 0;
2047 if (!gfc_resolve_expr (e))
2048 goto cleanup;
2049 need_full_assumed_size = save_need_full_assumed_size;
2050
2051 argument_list:
2052 /* Check argument list functions %VAL, %LOC and %REF. There is
2053 nothing to do for %REF. */
2054 if (arg->name && arg->name[0] == '%')
2055 {
2056 if (strncmp ("%VAL", arg->name, 4) == 0)
2057 {
2058 if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
2059 {
2060 gfc_error ("By-value argument at %L is not of numeric "
2061 "type", &e->where);
2062 goto cleanup;
2063 }
2064
2065 if (e->rank)
2066 {
2067 gfc_error ("By-value argument at %L cannot be an array or "
2068 "an array section", &e->where);
2069 goto cleanup;
2070 }
2071
2072 /* Intrinsics are still PROC_UNKNOWN here. However,
2073 since same file external procedures are not resolvable
2074 in gfortran, it is a good deal easier to leave them to
2075 intrinsic.c. */
2076 if (ptype != PROC_UNKNOWN
2077 && ptype != PROC_DUMMY
2078 && ptype != PROC_EXTERNAL
2079 && ptype != PROC_MODULE)
2080 {
2081 gfc_error ("By-value argument at %L is not allowed "
2082 "in this context", &e->where);
2083 goto cleanup;
2084 }
2085 }
2086
2087 /* Statement functions have already been excluded above. */
2088 else if (strncmp ("%LOC", arg->name, 4) == 0
2089 && e->ts.type == BT_PROCEDURE)
2090 {
2091 if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
2092 {
2093 gfc_error ("Passing internal procedure at %L by location "
2094 "not allowed", &e->where);
2095 goto cleanup;
2096 }
2097 }
2098 }
2099
2100 comp = gfc_get_proc_ptr_comp(e);
2101 if (e->expr_type == EXPR_VARIABLE
2102 && comp && comp->attr.elemental)
2103 {
2104 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2105 "allowed as an actual argument at %L", comp->name,
2106 &e->where);
2107 }
2108
2109 /* Fortran 2008, C1237. */
2110 if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
2111 && gfc_has_ultimate_pointer (e))
2112 {
2113 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2114 "component", &e->where);
2115 goto cleanup;
2116 }
2117
2118 first_actual_arg = false;
2119 }
2120
2121 return_value = true;
2122
2123 cleanup:
2124 actual_arg = actual_arg_sav;
2125 first_actual_arg = first_actual_arg_sav;
2126
2127 return return_value;
2128 }
2129
2130
2131 /* Do the checks of the actual argument list that are specific to elemental
2132 procedures. If called with c == NULL, we have a function, otherwise if
2133 expr == NULL, we have a subroutine. */
2134
2135 static bool
2136 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
2137 {
2138 gfc_actual_arglist *arg0;
2139 gfc_actual_arglist *arg;
2140 gfc_symbol *esym = NULL;
2141 gfc_intrinsic_sym *isym = NULL;
2142 gfc_expr *e = NULL;
2143 gfc_intrinsic_arg *iformal = NULL;
2144 gfc_formal_arglist *eformal = NULL;
2145 bool formal_optional = false;
2146 bool set_by_optional = false;
2147 int i;
2148 int rank = 0;
2149
2150 /* Is this an elemental procedure? */
2151 if (expr && expr->value.function.actual != NULL)
2152 {
2153 if (expr->value.function.esym != NULL
2154 && expr->value.function.esym->attr.elemental)
2155 {
2156 arg0 = expr->value.function.actual;
2157 esym = expr->value.function.esym;
2158 }
2159 else if (expr->value.function.isym != NULL
2160 && expr->value.function.isym->elemental)
2161 {
2162 arg0 = expr->value.function.actual;
2163 isym = expr->value.function.isym;
2164 }
2165 else
2166 return true;
2167 }
2168 else if (c && c->ext.actual != NULL)
2169 {
2170 arg0 = c->ext.actual;
2171
2172 if (c->resolved_sym)
2173 esym = c->resolved_sym;
2174 else
2175 esym = c->symtree->n.sym;
2176 gcc_assert (esym);
2177
2178 if (!esym->attr.elemental)
2179 return true;
2180 }
2181 else
2182 return true;
2183
2184 /* The rank of an elemental is the rank of its array argument(s). */
2185 for (arg = arg0; arg; arg = arg->next)
2186 {
2187 if (arg->expr != NULL && arg->expr->rank != 0)
2188 {
2189 rank = arg->expr->rank;
2190 if (arg->expr->expr_type == EXPR_VARIABLE
2191 && arg->expr->symtree->n.sym->attr.optional)
2192 set_by_optional = true;
2193
2194 /* Function specific; set the result rank and shape. */
2195 if (expr)
2196 {
2197 expr->rank = rank;
2198 if (!expr->shape && arg->expr->shape)
2199 {
2200 expr->shape = gfc_get_shape (rank);
2201 for (i = 0; i < rank; i++)
2202 mpz_init_set (expr->shape[i], arg->expr->shape[i]);
2203 }
2204 }
2205 break;
2206 }
2207 }
2208
2209 /* If it is an array, it shall not be supplied as an actual argument
2210 to an elemental procedure unless an array of the same rank is supplied
2211 as an actual argument corresponding to a nonoptional dummy argument of
2212 that elemental procedure(12.4.1.5). */
2213 formal_optional = false;
2214 if (isym)
2215 iformal = isym->formal;
2216 else
2217 eformal = esym->formal;
2218
2219 for (arg = arg0; arg; arg = arg->next)
2220 {
2221 if (eformal)
2222 {
2223 if (eformal->sym && eformal->sym->attr.optional)
2224 formal_optional = true;
2225 eformal = eformal->next;
2226 }
2227 else if (isym && iformal)
2228 {
2229 if (iformal->optional)
2230 formal_optional = true;
2231 iformal = iformal->next;
2232 }
2233 else if (isym)
2234 formal_optional = true;
2235
2236 if (pedantic && arg->expr != NULL
2237 && arg->expr->expr_type == EXPR_VARIABLE
2238 && arg->expr->symtree->n.sym->attr.optional
2239 && formal_optional
2240 && arg->expr->rank
2241 && (set_by_optional || arg->expr->rank != rank)
2242 && !(isym && isym->id == GFC_ISYM_CONVERSION))
2243 {
2244 gfc_warning (OPT_Wpedantic,
2245 "%qs at %L is an array and OPTIONAL; IF IT IS "
2246 "MISSING, it cannot be the actual argument of an "
2247 "ELEMENTAL procedure unless there is a non-optional "
2248 "argument with the same rank (12.4.1.5)",
2249 arg->expr->symtree->n.sym->name, &arg->expr->where);
2250 }
2251 }
2252
2253 for (arg = arg0; arg; arg = arg->next)
2254 {
2255 if (arg->expr == NULL || arg->expr->rank == 0)
2256 continue;
2257
2258 /* Being elemental, the last upper bound of an assumed size array
2259 argument must be present. */
2260 if (resolve_assumed_size_actual (arg->expr))
2261 return false;
2262
2263 /* Elemental procedure's array actual arguments must conform. */
2264 if (e != NULL)
2265 {
2266 if (!gfc_check_conformance (arg->expr, e, "elemental procedure"))
2267 return false;
2268 }
2269 else
2270 e = arg->expr;
2271 }
2272
2273 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2274 is an array, the intent inout/out variable needs to be also an array. */
2275 if (rank > 0 && esym && expr == NULL)
2276 for (eformal = esym->formal, arg = arg0; arg && eformal;
2277 arg = arg->next, eformal = eformal->next)
2278 if ((eformal->sym->attr.intent == INTENT_OUT
2279 || eformal->sym->attr.intent == INTENT_INOUT)
2280 && arg->expr && arg->expr->rank == 0)
2281 {
2282 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2283 "ELEMENTAL subroutine %qs is a scalar, but another "
2284 "actual argument is an array", &arg->expr->where,
2285 (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
2286 : "INOUT", eformal->sym->name, esym->name);
2287 return false;
2288 }
2289 return true;
2290 }
2291
2292
2293 /* This function does the checking of references to global procedures
2294 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2295 77 and 95 standards. It checks for a gsymbol for the name, making
2296 one if it does not already exist. If it already exists, then the
2297 reference being resolved must correspond to the type of gsymbol.
2298 Otherwise, the new symbol is equipped with the attributes of the
2299 reference. The corresponding code that is called in creating
2300 global entities is parse.c.
2301
2302 In addition, for all but -std=legacy, the gsymbols are used to
2303 check the interfaces of external procedures from the same file.
2304 The namespace of the gsymbol is resolved and then, once this is
2305 done the interface is checked. */
2306
2307
2308 static bool
2309 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
2310 {
2311 if (!gsym_ns->proc_name->attr.recursive)
2312 return true;
2313
2314 if (sym->ns == gsym_ns)
2315 return false;
2316
2317 if (sym->ns->parent && sym->ns->parent == gsym_ns)
2318 return false;
2319
2320 return true;
2321 }
2322
2323 static bool
2324 not_entry_self_reference (gfc_symbol *sym, gfc_namespace *gsym_ns)
2325 {
2326 if (gsym_ns->entries)
2327 {
2328 gfc_entry_list *entry = gsym_ns->entries;
2329
2330 for (; entry; entry = entry->next)
2331 {
2332 if (strcmp (sym->name, entry->sym->name) == 0)
2333 {
2334 if (strcmp (gsym_ns->proc_name->name,
2335 sym->ns->proc_name->name) == 0)
2336 return false;
2337
2338 if (sym->ns->parent
2339 && strcmp (gsym_ns->proc_name->name,
2340 sym->ns->parent->proc_name->name) == 0)
2341 return false;
2342 }
2343 }
2344 }
2345 return true;
2346 }
2347
2348
2349 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2350
2351 bool
2352 gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
2353 {
2354 gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
2355
2356 for ( ; arg; arg = arg->next)
2357 {
2358 if (!arg->sym)
2359 continue;
2360
2361 if (arg->sym->attr.allocatable) /* (2a) */
2362 {
2363 strncpy (errmsg, _("allocatable argument"), err_len);
2364 return true;
2365 }
2366 else if (arg->sym->attr.asynchronous)
2367 {
2368 strncpy (errmsg, _("asynchronous argument"), err_len);
2369 return true;
2370 }
2371 else if (arg->sym->attr.optional)
2372 {
2373 strncpy (errmsg, _("optional argument"), err_len);
2374 return true;
2375 }
2376 else if (arg->sym->attr.pointer)
2377 {
2378 strncpy (errmsg, _("pointer argument"), err_len);
2379 return true;
2380 }
2381 else if (arg->sym->attr.target)
2382 {
2383 strncpy (errmsg, _("target argument"), err_len);
2384 return true;
2385 }
2386 else if (arg->sym->attr.value)
2387 {
2388 strncpy (errmsg, _("value argument"), err_len);
2389 return true;
2390 }
2391 else if (arg->sym->attr.volatile_)
2392 {
2393 strncpy (errmsg, _("volatile argument"), err_len);
2394 return true;
2395 }
2396 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE) /* (2b) */
2397 {
2398 strncpy (errmsg, _("assumed-shape argument"), err_len);
2399 return true;
2400 }
2401 else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK) /* TS 29113, 6.2. */
2402 {
2403 strncpy (errmsg, _("assumed-rank argument"), err_len);
2404 return true;
2405 }
2406 else if (arg->sym->attr.codimension) /* (2c) */
2407 {
2408 strncpy (errmsg, _("coarray argument"), err_len);
2409 return true;
2410 }
2411 else if (false) /* (2d) TODO: parametrized derived type */
2412 {
2413 strncpy (errmsg, _("parametrized derived type argument"), err_len);
2414 return true;
2415 }
2416 else if (arg->sym->ts.type == BT_CLASS) /* (2e) */
2417 {
2418 strncpy (errmsg, _("polymorphic argument"), err_len);
2419 return true;
2420 }
2421 else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2422 {
2423 strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
2424 return true;
2425 }
2426 else if (arg->sym->ts.type == BT_ASSUMED)
2427 {
2428 /* As assumed-type is unlimited polymorphic (cf. above).
2429 See also TS 29113, Note 6.1. */
2430 strncpy (errmsg, _("assumed-type argument"), err_len);
2431 return true;
2432 }
2433 }
2434
2435 if (sym->attr.function)
2436 {
2437 gfc_symbol *res = sym->result ? sym->result : sym;
2438
2439 if (res->attr.dimension) /* (3a) */
2440 {
2441 strncpy (errmsg, _("array result"), err_len);
2442 return true;
2443 }
2444 else if (res->attr.pointer || res->attr.allocatable) /* (3b) */
2445 {
2446 strncpy (errmsg, _("pointer or allocatable result"), err_len);
2447 return true;
2448 }
2449 else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
2450 && res->ts.u.cl->length
2451 && res->ts.u.cl->length->expr_type != EXPR_CONSTANT) /* (3c) */
2452 {
2453 strncpy (errmsg, _("result with non-constant character length"), err_len);
2454 return true;
2455 }
2456 }
2457
2458 if (sym->attr.elemental && !sym->attr.intrinsic) /* (4) */
2459 {
2460 strncpy (errmsg, _("elemental procedure"), err_len);
2461 return true;
2462 }
2463 else if (sym->attr.is_bind_c) /* (5) */
2464 {
2465 strncpy (errmsg, _("bind(c) procedure"), err_len);
2466 return true;
2467 }
2468
2469 return false;
2470 }
2471
2472
2473 static void
2474 resolve_global_procedure (gfc_symbol *sym, locus *where,
2475 gfc_actual_arglist **actual, int sub)
2476 {
2477 gfc_gsymbol * gsym;
2478 gfc_namespace *ns;
2479 enum gfc_symbol_type type;
2480 char reason[200];
2481
2482 type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
2483
2484 gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name);
2485
2486 if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
2487 gfc_global_used (gsym, where);
2488
2489 if ((sym->attr.if_source == IFSRC_UNKNOWN
2490 || sym->attr.if_source == IFSRC_IFBODY)
2491 && gsym->type != GSYM_UNKNOWN
2492 && !gsym->binding_label
2493 && gsym->ns
2494 && gsym->ns->resolved != -1
2495 && gsym->ns->proc_name
2496 && not_in_recursive (sym, gsym->ns)
2497 && not_entry_self_reference (sym, gsym->ns))
2498 {
2499 gfc_symbol *def_sym;
2500
2501 /* Resolve the gsymbol namespace if needed. */
2502 if (!gsym->ns->resolved)
2503 {
2504 gfc_dt_list *old_dt_list;
2505
2506 /* Stash away derived types so that the backend_decls do not
2507 get mixed up. */
2508 old_dt_list = gfc_derived_types;
2509 gfc_derived_types = NULL;
2510
2511 gfc_resolve (gsym->ns);
2512
2513 /* Store the new derived types with the global namespace. */
2514 if (gfc_derived_types)
2515 gsym->ns->derived_types = gfc_derived_types;
2516
2517 /* Restore the derived types of this namespace. */
2518 gfc_derived_types = old_dt_list;
2519 }
2520
2521 /* Make sure that translation for the gsymbol occurs before
2522 the procedure currently being resolved. */
2523 ns = gfc_global_ns_list;
2524 for (; ns && ns != gsym->ns; ns = ns->sibling)
2525 {
2526 if (ns->sibling == gsym->ns)
2527 {
2528 ns->sibling = gsym->ns->sibling;
2529 gsym->ns->sibling = gfc_global_ns_list;
2530 gfc_global_ns_list = gsym->ns;
2531 break;
2532 }
2533 }
2534
2535 def_sym = gsym->ns->proc_name;
2536
2537 /* This can happen if a binding name has been specified. */
2538 if (gsym->binding_label && gsym->sym_name != def_sym->name)
2539 gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
2540
2541 if (def_sym->attr.entry_master)
2542 {
2543 gfc_entry_list *entry;
2544 for (entry = gsym->ns->entries; entry; entry = entry->next)
2545 if (strcmp (entry->sym->name, sym->name) == 0)
2546 {
2547 def_sym = entry->sym;
2548 break;
2549 }
2550 }
2551
2552 if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
2553 {
2554 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2555 sym->name, &sym->declared_at, gfc_typename (&sym->ts),
2556 gfc_typename (&def_sym->ts));
2557 goto done;
2558 }
2559
2560 if (sym->attr.if_source == IFSRC_UNKNOWN
2561 && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
2562 {
2563 gfc_error ("Explicit interface required for %qs at %L: %s",
2564 sym->name, &sym->declared_at, reason);
2565 goto done;
2566 }
2567
2568 if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU))
2569 /* Turn erros into warnings with -std=gnu and -std=legacy. */
2570 gfc_errors_to_warnings (true);
2571
2572 if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
2573 reason, sizeof(reason), NULL, NULL))
2574 {
2575 gfc_error_opt (OPT_Wargument_mismatch,
2576 "Interface mismatch in global procedure %qs at %L:"
2577 " %s", sym->name, &sym->declared_at, reason);
2578 goto done;
2579 }
2580
2581 if (!pedantic
2582 || ((gfc_option.warn_std & GFC_STD_LEGACY)
2583 && !(gfc_option.warn_std & GFC_STD_GNU)))
2584 gfc_errors_to_warnings (true);
2585
2586 if (sym->attr.if_source != IFSRC_IFBODY)
2587 gfc_procedure_use (def_sym, actual, where);
2588 }
2589
2590 done:
2591 gfc_errors_to_warnings (false);
2592
2593 if (gsym->type == GSYM_UNKNOWN)
2594 {
2595 gsym->type = type;
2596 gsym->where = *where;
2597 }
2598
2599 gsym->used = 1;
2600 }
2601
2602
2603 /************* Function resolution *************/
2604
2605 /* Resolve a function call known to be generic.
2606 Section 14.1.2.4.1. */
2607
2608 static match
2609 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
2610 {
2611 gfc_symbol *s;
2612
2613 if (sym->attr.generic)
2614 {
2615 s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
2616 if (s != NULL)
2617 {
2618 expr->value.function.name = s->name;
2619 expr->value.function.esym = s;
2620
2621 if (s->ts.type != BT_UNKNOWN)
2622 expr->ts = s->ts;
2623 else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
2624 expr->ts = s->result->ts;
2625
2626 if (s->as != NULL)
2627 expr->rank = s->as->rank;
2628 else if (s->result != NULL && s->result->as != NULL)
2629 expr->rank = s->result->as->rank;
2630
2631 gfc_set_sym_referenced (expr->value.function.esym);
2632
2633 return MATCH_YES;
2634 }
2635
2636 /* TODO: Need to search for elemental references in generic
2637 interface. */
2638 }
2639
2640 if (sym->attr.intrinsic)
2641 return gfc_intrinsic_func_interface (expr, 0);
2642
2643 return MATCH_NO;
2644 }
2645
2646
2647 static bool
2648 resolve_generic_f (gfc_expr *expr)
2649 {
2650 gfc_symbol *sym;
2651 match m;
2652 gfc_interface *intr = NULL;
2653
2654 sym = expr->symtree->n.sym;
2655
2656 for (;;)
2657 {
2658 m = resolve_generic_f0 (expr, sym);
2659 if (m == MATCH_YES)
2660 return true;
2661 else if (m == MATCH_ERROR)
2662 return false;
2663
2664 generic:
2665 if (!intr)
2666 for (intr = sym->generic; intr; intr = intr->next)
2667 if (gfc_fl_struct (intr->sym->attr.flavor))
2668 break;
2669
2670 if (sym->ns->parent == NULL)
2671 break;
2672 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2673
2674 if (sym == NULL)
2675 break;
2676 if (!generic_sym (sym))
2677 goto generic;
2678 }
2679
2680 /* Last ditch attempt. See if the reference is to an intrinsic
2681 that possesses a matching interface. 14.1.2.4 */
2682 if (sym && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
2683 {
2684 if (gfc_init_expr_flag)
2685 gfc_error ("Function %qs in initialization expression at %L "
2686 "must be an intrinsic function",
2687 expr->symtree->n.sym->name, &expr->where);
2688 else
2689 gfc_error ("There is no specific function for the generic %qs "
2690 "at %L", expr->symtree->n.sym->name, &expr->where);
2691 return false;
2692 }
2693
2694 if (intr)
2695 {
2696 if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
2697 NULL, false))
2698 return false;
2699 if (!gfc_use_derived (expr->ts.u.derived))
2700 return false;
2701 return resolve_structure_cons (expr, 0);
2702 }
2703
2704 m = gfc_intrinsic_func_interface (expr, 0);
2705 if (m == MATCH_YES)
2706 return true;
2707
2708 if (m == MATCH_NO)
2709 gfc_error ("Generic function %qs at %L is not consistent with a "
2710 "specific intrinsic interface", expr->symtree->n.sym->name,
2711 &expr->where);
2712
2713 return false;
2714 }
2715
2716
2717 /* Resolve a function call known to be specific. */
2718
2719 static match
2720 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2721 {
2722 match m;
2723
2724 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2725 {
2726 if (sym->attr.dummy)
2727 {
2728 sym->attr.proc = PROC_DUMMY;
2729 goto found;
2730 }
2731
2732 sym->attr.proc = PROC_EXTERNAL;
2733 goto found;
2734 }
2735
2736 if (sym->attr.proc == PROC_MODULE
2737 || sym->attr.proc == PROC_ST_FUNCTION
2738 || sym->attr.proc == PROC_INTERNAL)
2739 goto found;
2740
2741 if (sym->attr.intrinsic)
2742 {
2743 m = gfc_intrinsic_func_interface (expr, 1);
2744 if (m == MATCH_YES)
2745 return MATCH_YES;
2746 if (m == MATCH_NO)
2747 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2748 "with an intrinsic", sym->name, &expr->where);
2749
2750 return MATCH_ERROR;
2751 }
2752
2753 return MATCH_NO;
2754
2755 found:
2756 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2757
2758 if (sym->result)
2759 expr->ts = sym->result->ts;
2760 else
2761 expr->ts = sym->ts;
2762 expr->value.function.name = sym->name;
2763 expr->value.function.esym = sym;
2764 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2765 error(s). */
2766 if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
2767 return MATCH_ERROR;
2768 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
2769 expr->rank = CLASS_DATA (sym)->as->rank;
2770 else if (sym->as != NULL)
2771 expr->rank = sym->as->rank;
2772
2773 return MATCH_YES;
2774 }
2775
2776
2777 static bool
2778 resolve_specific_f (gfc_expr *expr)
2779 {
2780 gfc_symbol *sym;
2781 match m;
2782
2783 sym = expr->symtree->n.sym;
2784
2785 for (;;)
2786 {
2787 m = resolve_specific_f0 (sym, expr);
2788 if (m == MATCH_YES)
2789 return true;
2790 if (m == MATCH_ERROR)
2791 return false;
2792
2793 if (sym->ns->parent == NULL)
2794 break;
2795
2796 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2797
2798 if (sym == NULL)
2799 break;
2800 }
2801
2802 gfc_error ("Unable to resolve the specific function %qs at %L",
2803 expr->symtree->n.sym->name, &expr->where);
2804
2805 return true;
2806 }
2807
2808 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2809 candidates in CANDIDATES_LEN. */
2810
2811 static void
2812 lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
2813 char **&candidates,
2814 size_t &candidates_len)
2815 {
2816 gfc_symtree *p;
2817
2818 if (sym == NULL)
2819 return;
2820 if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
2821 && sym->n.sym->attr.flavor == FL_PROCEDURE)
2822 vec_push (candidates, candidates_len, sym->name);
2823
2824 p = sym->left;
2825 if (p)
2826 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2827
2828 p = sym->right;
2829 if (p)
2830 lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
2831 }
2832
2833
2834 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2835
2836 const char*
2837 gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
2838 {
2839 char **candidates = NULL;
2840 size_t candidates_len = 0;
2841 lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
2842 return gfc_closest_fuzzy_match (fn, candidates);
2843 }
2844
2845
2846 /* Resolve a procedure call not known to be generic nor specific. */
2847
2848 static bool
2849 resolve_unknown_f (gfc_expr *expr)
2850 {
2851 gfc_symbol *sym;
2852 gfc_typespec *ts;
2853
2854 sym = expr->symtree->n.sym;
2855
2856 if (sym->attr.dummy)
2857 {
2858 sym->attr.proc = PROC_DUMMY;
2859 expr->value.function.name = sym->name;
2860 goto set_type;
2861 }
2862
2863 /* See if we have an intrinsic function reference. */
2864
2865 if (gfc_is_intrinsic (sym, 0, expr->where))
2866 {
2867 if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2868 return true;
2869 return false;
2870 }
2871
2872 /* The reference is to an external name. */
2873
2874 sym->attr.proc = PROC_EXTERNAL;
2875 expr->value.function.name = sym->name;
2876 expr->value.function.esym = expr->symtree->n.sym;
2877
2878 if (sym->as != NULL)
2879 expr->rank = sym->as->rank;
2880
2881 /* Type of the expression is either the type of the symbol or the
2882 default type of the symbol. */
2883
2884 set_type:
2885 gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2886
2887 if (sym->ts.type != BT_UNKNOWN)
2888 expr->ts = sym->ts;
2889 else
2890 {
2891 ts = gfc_get_default_type (sym->name, sym->ns);
2892
2893 if (ts->type == BT_UNKNOWN)
2894 {
2895 const char *guessed
2896 = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
2897 if (guessed)
2898 gfc_error ("Function %qs at %L has no IMPLICIT type"
2899 "; did you mean %qs?",
2900 sym->name, &expr->where, guessed);
2901 else
2902 gfc_error ("Function %qs at %L has no IMPLICIT type",
2903 sym->name, &expr->where);
2904 return false;
2905 }
2906 else
2907 expr->ts = *ts;
2908 }
2909
2910 return true;
2911 }
2912
2913
2914 /* Return true, if the symbol is an external procedure. */
2915 static bool
2916 is_external_proc (gfc_symbol *sym)
2917 {
2918 if (!sym->attr.dummy && !sym->attr.contained
2919 && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
2920 && sym->attr.proc != PROC_ST_FUNCTION
2921 && !sym->attr.proc_pointer
2922 && !sym->attr.use_assoc
2923 && sym->name)
2924 return true;
2925
2926 return false;
2927 }
2928
2929
2930 /* Figure out if a function reference is pure or not. Also set the name
2931 of the function for a potential error message. Return nonzero if the
2932 function is PURE, zero if not. */
2933 static int
2934 pure_stmt_function (gfc_expr *, gfc_symbol *);
2935
2936 static int
2937 pure_function (gfc_expr *e, const char **name)
2938 {
2939 int pure;
2940 gfc_component *comp;
2941
2942 *name = NULL;
2943
2944 if (e->symtree != NULL
2945 && e->symtree->n.sym != NULL
2946 && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2947 return pure_stmt_function (e, e->symtree->n.sym);
2948
2949 comp = gfc_get_proc_ptr_comp (e);
2950 if (comp)
2951 {
2952 pure = gfc_pure (comp->ts.interface);
2953 *name = comp->name;
2954 }
2955 else if (e->value.function.esym)
2956 {
2957 pure = gfc_pure (e->value.function.esym);
2958 *name = e->value.function.esym->name;
2959 }
2960 else if (e->value.function.isym)
2961 {
2962 pure = e->value.function.isym->pure
2963 || e->value.function.isym->elemental;
2964 *name = e->value.function.isym->name;
2965 }
2966 else
2967 {
2968 /* Implicit functions are not pure. */
2969 pure = 0;
2970 *name = e->value.function.name;
2971 }
2972
2973 return pure;
2974 }
2975
2976
2977 static bool
2978 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
2979 int *f ATTRIBUTE_UNUSED)
2980 {
2981 const char *name;
2982
2983 /* Don't bother recursing into other statement functions
2984 since they will be checked individually for purity. */
2985 if (e->expr_type != EXPR_FUNCTION
2986 || !e->symtree
2987 || e->symtree->n.sym == sym
2988 || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2989 return false;
2990
2991 return pure_function (e, &name) ? false : true;
2992 }
2993
2994
2995 static int
2996 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
2997 {
2998 return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
2999 }
3000
3001
3002 /* Check if an impure function is allowed in the current context. */
3003
3004 static bool check_pure_function (gfc_expr *e)
3005 {
3006 const char *name = NULL;
3007 if (!pure_function (e, &name) && name)
3008 {
3009 if (forall_flag)
3010 {
3011 gfc_error ("Reference to impure function %qs at %L inside a "
3012 "FORALL %s", name, &e->where,
3013 forall_flag == 2 ? "mask" : "block");
3014 return false;
3015 }
3016 else if (gfc_do_concurrent_flag)
3017 {
3018 gfc_error ("Reference to impure function %qs at %L inside a "
3019 "DO CONCURRENT %s", name, &e->where,
3020 gfc_do_concurrent_flag == 2 ? "mask" : "block");
3021 return false;
3022 }
3023 else if (gfc_pure (NULL))
3024 {
3025 gfc_error ("Reference to impure function %qs at %L "
3026 "within a PURE procedure", name, &e->where);
3027 return false;
3028 }
3029 gfc_unset_implicit_pure (NULL);
3030 }
3031 return true;
3032 }
3033
3034
3035 /* Update current procedure's array_outer_dependency flag, considering
3036 a call to procedure SYM. */
3037
3038 static void
3039 update_current_proc_array_outer_dependency (gfc_symbol *sym)
3040 {
3041 /* Check to see if this is a sibling function that has not yet
3042 been resolved. */
3043 gfc_namespace *sibling = gfc_current_ns->sibling;
3044 for (; sibling; sibling = sibling->sibling)
3045 {
3046 if (sibling->proc_name == sym)
3047 {
3048 gfc_resolve (sibling);
3049 break;
3050 }
3051 }
3052
3053 /* If SYM has references to outer arrays, so has the procedure calling
3054 SYM. If SYM is a procedure pointer, we can assume the worst. */
3055 if (sym->attr.array_outer_dependency
3056 || sym->attr.proc_pointer)
3057 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3058 }
3059
3060
3061 /* Resolve a function call, which means resolving the arguments, then figuring
3062 out which entity the name refers to. */
3063
3064 static bool
3065 resolve_function (gfc_expr *expr)
3066 {
3067 gfc_actual_arglist *arg;
3068 gfc_symbol *sym;
3069 bool t;
3070 int temp;
3071 procedure_type p = PROC_INTRINSIC;
3072 bool no_formal_args;
3073
3074 sym = NULL;
3075 if (expr->symtree)
3076 sym = expr->symtree->n.sym;
3077
3078 /* If this is a procedure pointer component, it has already been resolved. */
3079 if (gfc_is_proc_ptr_comp (expr))
3080 return true;
3081
3082 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3083 another caf_get. */
3084 if (sym && sym->attr.intrinsic
3085 && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
3086 || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
3087 return true;
3088
3089 if (sym && sym->attr.intrinsic
3090 && !gfc_resolve_intrinsic (sym, &expr->where))
3091 return false;
3092
3093 if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
3094 {
3095 gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
3096 return false;
3097 }
3098
3099 /* If this ia a deferred TBP with an abstract interface (which may
3100 of course be referenced), expr->value.function.esym will be set. */
3101 if (sym && sym->attr.abstract && !expr->value.function.esym)
3102 {
3103 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3104 sym->name, &expr->where);
3105 return false;
3106 }
3107
3108 /* Switch off assumed size checking and do this again for certain kinds
3109 of procedure, once the procedure itself is resolved. */
3110 need_full_assumed_size++;
3111
3112 if (expr->symtree && expr->symtree->n.sym)
3113 p = expr->symtree->n.sym->attr.proc;
3114
3115 if (expr->value.function.isym && expr->value.function.isym->inquiry)
3116 inquiry_argument = true;
3117 no_formal_args = sym && is_external_proc (sym)
3118 && gfc_sym_get_dummy_args (sym) == NULL;
3119
3120 if (!resolve_actual_arglist (expr->value.function.actual,
3121 p, no_formal_args))
3122 {
3123 inquiry_argument = false;
3124 return false;
3125 }
3126
3127 inquiry_argument = false;
3128
3129 /* Resume assumed_size checking. */
3130 need_full_assumed_size--;
3131
3132 /* If the procedure is external, check for usage. */
3133 if (sym && is_external_proc (sym))
3134 resolve_global_procedure (sym, &expr->where,
3135 &expr->value.function.actual, 0);
3136
3137 if (sym && sym->ts.type == BT_CHARACTER
3138 && sym->ts.u.cl
3139 && sym->ts.u.cl->length == NULL
3140 && !sym->attr.dummy
3141 && !sym->ts.deferred
3142 && expr->value.function.esym == NULL
3143 && !sym->attr.contained)
3144 {
3145 /* Internal procedures are taken care of in resolve_contained_fntype. */
3146 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3147 "be used at %L since it is not a dummy argument",
3148 sym->name, &expr->where);
3149 return false;
3150 }
3151
3152 /* See if function is already resolved. */
3153
3154 if (expr->value.function.name != NULL
3155 || expr->value.function.isym != NULL)
3156 {
3157 if (expr->ts.type == BT_UNKNOWN)
3158 expr->ts = sym->ts;
3159 t = true;
3160 }
3161 else
3162 {
3163 /* Apply the rules of section 14.1.2. */
3164
3165 switch (procedure_kind (sym))
3166 {
3167 case PTYPE_GENERIC:
3168 t = resolve_generic_f (expr);
3169 break;
3170
3171 case PTYPE_SPECIFIC:
3172 t = resolve_specific_f (expr);
3173 break;
3174
3175 case PTYPE_UNKNOWN:
3176 t = resolve_unknown_f (expr);
3177 break;
3178
3179 default:
3180 gfc_internal_error ("resolve_function(): bad function type");
3181 }
3182 }
3183
3184 /* If the expression is still a function (it might have simplified),
3185 then we check to see if we are calling an elemental function. */
3186
3187 if (expr->expr_type != EXPR_FUNCTION)
3188 return t;
3189
3190 temp = need_full_assumed_size;
3191 need_full_assumed_size = 0;
3192
3193 if (!resolve_elemental_actual (expr, NULL))
3194 return false;
3195
3196 if (omp_workshare_flag
3197 && expr->value.function.esym
3198 && ! gfc_elemental (expr->value.function.esym))
3199 {
3200 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3201 "in WORKSHARE construct", expr->value.function.esym->name,
3202 &expr->where);
3203 t = false;
3204 }
3205
3206 #define GENERIC_ID expr->value.function.isym->id
3207 else if (expr->value.function.actual != NULL
3208 && expr->value.function.isym != NULL
3209 && GENERIC_ID != GFC_ISYM_LBOUND
3210 && GENERIC_ID != GFC_ISYM_LCOBOUND
3211 && GENERIC_ID != GFC_ISYM_UCOBOUND
3212 && GENERIC_ID != GFC_ISYM_LEN
3213 && GENERIC_ID != GFC_ISYM_LOC
3214 && GENERIC_ID != GFC_ISYM_C_LOC
3215 && GENERIC_ID != GFC_ISYM_PRESENT)
3216 {
3217 /* Array intrinsics must also have the last upper bound of an
3218 assumed size array argument. UBOUND and SIZE have to be
3219 excluded from the check if the second argument is anything
3220 than a constant. */
3221
3222 for (arg = expr->value.function.actual; arg; arg = arg->next)
3223 {
3224 if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
3225 && arg == expr->value.function.actual
3226 && arg->next != NULL && arg->next->expr)
3227 {
3228 if (arg->next->expr->expr_type != EXPR_CONSTANT)
3229 break;
3230
3231 if (arg->next->name && strncmp (arg->next->name, "kind", 4) == 0)
3232 break;
3233
3234 if ((int)mpz_get_si (arg->next->expr->value.integer)
3235 < arg->expr->rank)
3236 break;
3237 }
3238
3239 if (arg->expr != NULL
3240 && arg->expr->rank > 0
3241 && resolve_assumed_size_actual (arg->expr))
3242 return false;
3243 }
3244 }
3245 #undef GENERIC_ID
3246
3247 need_full_assumed_size = temp;
3248
3249 if (!check_pure_function(expr))
3250 t = false;
3251
3252 /* Functions without the RECURSIVE attribution are not allowed to
3253 * call themselves. */
3254 if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
3255 {
3256 gfc_symbol *esym;
3257 esym = expr->value.function.esym;
3258
3259 if (is_illegal_recursion (esym, gfc_current_ns))
3260 {
3261 if (esym->attr.entry && esym->ns->entries)
3262 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3263 " function %qs is not RECURSIVE",
3264 esym->name, &expr->where, esym->ns->entries->sym->name);
3265 else
3266 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3267 " is not RECURSIVE", esym->name, &expr->where);
3268
3269 t = false;
3270 }
3271 }
3272
3273 /* Character lengths of use associated functions may contains references to
3274 symbols not referenced from the current program unit otherwise. Make sure
3275 those symbols are marked as referenced. */
3276
3277 if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
3278 && expr->value.function.esym->attr.use_assoc)
3279 {
3280 gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
3281 }
3282
3283 /* Make sure that the expression has a typespec that works. */
3284 if (expr->ts.type == BT_UNKNOWN)
3285 {
3286 if (expr->symtree->n.sym->result
3287 && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
3288 && !expr->symtree->n.sym->result->attr.proc_pointer)
3289 expr->ts = expr->symtree->n.sym->result->ts;
3290 }
3291
3292 if (!expr->ref && !expr->value.function.isym)
3293 {
3294 if (expr->value.function.esym)
3295 update_current_proc_array_outer_dependency (expr->value.function.esym);
3296 else
3297 update_current_proc_array_outer_dependency (sym);
3298 }
3299 else if (expr->ref)
3300 /* typebound procedure: Assume the worst. */
3301 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3302
3303 return t;
3304 }
3305
3306
3307 /************* Subroutine resolution *************/
3308
3309 static bool
3310 pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
3311 {
3312 if (gfc_pure (sym))
3313 return true;
3314
3315 if (forall_flag)
3316 {
3317 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3318 name, loc);
3319 return false;
3320 }
3321 else if (gfc_do_concurrent_flag)
3322 {
3323 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3324 "PURE", name, loc);
3325 return false;
3326 }
3327 else if (gfc_pure (NULL))
3328 {
3329 gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
3330 return false;
3331 }
3332
3333 gfc_unset_implicit_pure (NULL);
3334 return true;
3335 }
3336
3337
3338 static match
3339 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
3340 {
3341 gfc_symbol *s;
3342
3343 if (sym->attr.generic)
3344 {
3345 s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
3346 if (s != NULL)
3347 {
3348 c->resolved_sym = s;
3349 if (!pure_subroutine (s, s->name, &c->loc))
3350 return MATCH_ERROR;
3351 return MATCH_YES;
3352 }
3353
3354 /* TODO: Need to search for elemental references in generic interface. */
3355 }
3356
3357 if (sym->attr.intrinsic)
3358 return gfc_intrinsic_sub_interface (c, 0);
3359
3360 return MATCH_NO;
3361 }
3362
3363
3364 static bool
3365 resolve_generic_s (gfc_code *c)
3366 {
3367 gfc_symbol *sym;
3368 match m;
3369
3370 sym = c->symtree->n.sym;
3371
3372 for (;;)
3373 {
3374 m = resolve_generic_s0 (c, sym);
3375 if (m == MATCH_YES)
3376 return true;
3377 else if (m == MATCH_ERROR)
3378 return false;
3379
3380 generic:
3381 if (sym->ns->parent == NULL)
3382 break;
3383 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3384
3385 if (sym == NULL)
3386 break;
3387 if (!generic_sym (sym))
3388 goto generic;
3389 }
3390
3391 /* Last ditch attempt. See if the reference is to an intrinsic
3392 that possesses a matching interface. 14.1.2.4 */
3393 sym = c->symtree->n.sym;
3394
3395 if (!gfc_is_intrinsic (sym, 1, c->loc))
3396 {
3397 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3398 sym->name, &c->loc);
3399 return false;
3400 }
3401
3402 m = gfc_intrinsic_sub_interface (c, 0);
3403 if (m == MATCH_YES)
3404 return true;
3405 if (m == MATCH_NO)
3406 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3407 "intrinsic subroutine interface", sym->name, &c->loc);
3408
3409 return false;
3410 }
3411
3412
3413 /* Resolve a subroutine call known to be specific. */
3414
3415 static match
3416 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3417 {
3418 match m;
3419
3420 if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3421 {
3422 if (sym->attr.dummy)
3423 {
3424 sym->attr.proc = PROC_DUMMY;
3425 goto found;
3426 }
3427
3428 sym->attr.proc = PROC_EXTERNAL;
3429 goto found;
3430 }
3431
3432 if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3433 goto found;
3434
3435 if (sym->attr.intrinsic)
3436 {
3437 m = gfc_intrinsic_sub_interface (c, 1);
3438 if (m == MATCH_YES)
3439 return MATCH_YES;
3440 if (m == MATCH_NO)
3441 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3442 "with an intrinsic", sym->name, &c->loc);
3443
3444 return MATCH_ERROR;
3445 }
3446
3447 return MATCH_NO;
3448
3449 found:
3450 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3451
3452 c->resolved_sym = sym;
3453 if (!pure_subroutine (sym, sym->name, &c->loc))
3454 return MATCH_ERROR;
3455
3456 return MATCH_YES;
3457 }
3458
3459
3460 static bool
3461 resolve_specific_s (gfc_code *c)
3462 {
3463 gfc_symbol *sym;
3464 match m;
3465
3466 sym = c->symtree->n.sym;
3467
3468 for (;;)
3469 {
3470 m = resolve_specific_s0 (c, sym);
3471 if (m == MATCH_YES)
3472 return true;
3473 if (m == MATCH_ERROR)
3474 return false;
3475
3476 if (sym->ns->parent == NULL)
3477 break;
3478
3479 gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3480
3481 if (sym == NULL)
3482 break;
3483 }
3484
3485 sym = c->symtree->n.sym;
3486 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3487 sym->name, &c->loc);
3488
3489 return false;
3490 }
3491
3492
3493 /* Resolve a subroutine call not known to be generic nor specific. */
3494
3495 static bool
3496 resolve_unknown_s (gfc_code *c)
3497 {
3498 gfc_symbol *sym;
3499
3500 sym = c->symtree->n.sym;
3501
3502 if (sym->attr.dummy)
3503 {
3504 sym->attr.proc = PROC_DUMMY;
3505 goto found;
3506 }
3507
3508 /* See if we have an intrinsic function reference. */
3509
3510 if (gfc_is_intrinsic (sym, 1, c->loc))
3511 {
3512 if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3513 return true;
3514 return false;
3515 }
3516
3517 /* The reference is to an external name. */
3518
3519 found:
3520 gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3521
3522 c->resolved_sym = sym;
3523
3524 return pure_subroutine (sym, sym->name, &c->loc);
3525 }
3526
3527
3528 /* Resolve a subroutine call. Although it was tempting to use the same code
3529 for functions, subroutines and functions are stored differently and this
3530 makes things awkward. */
3531
3532 static bool
3533 resolve_call (gfc_code *c)
3534 {
3535 bool t;
3536 procedure_type ptype = PROC_INTRINSIC;
3537 gfc_symbol *csym, *sym;
3538 bool no_formal_args;
3539
3540 csym = c->symtree ? c->symtree->n.sym : NULL;
3541
3542 if (csym && csym->ts.type != BT_UNKNOWN)
3543 {
3544 gfc_error ("%qs at %L has a type, which is not consistent with "
3545 "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3546 return false;
3547 }
3548
3549 if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3550 {
3551 gfc_symtree *st;
3552 gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
3553 sym = st ? st->n.sym : NULL;
3554 if (sym && csym != sym
3555 && sym->ns == gfc_current_ns
3556 && sym->attr.flavor == FL_PROCEDURE
3557 && sym->attr.contained)
3558 {
3559 sym->refs++;
3560 if (csym->attr.generic)
3561 c->symtree->n.sym = sym;
3562 else
3563 c->symtree = st;
3564 csym = c->symtree->n.sym;
3565 }
3566 }
3567
3568 /* If this ia a deferred TBP, c->expr1 will be set. */
3569 if (!c->expr1 && csym)
3570 {
3571 if (csym->attr.abstract)
3572 {
3573 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3574 csym->name, &c->loc);
3575 return false;
3576 }
3577
3578 /* Subroutines without the RECURSIVE attribution are not allowed to
3579 call themselves. */
3580 if (is_illegal_recursion (csym, gfc_current_ns))
3581 {
3582 if (csym->attr.entry && csym->ns->entries)
3583 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3584 "as subroutine %qs is not RECURSIVE",
3585 csym->name, &c->loc, csym->ns->entries->sym->name);
3586 else
3587 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3588 "as it is not RECURSIVE", csym->name, &c->loc);
3589
3590 t = false;
3591 }
3592 }
3593
3594 /* Switch off assumed size checking and do this again for certain kinds
3595 of procedure, once the procedure itself is resolved. */
3596 need_full_assumed_size++;
3597
3598 if (csym)
3599 ptype = csym->attr.proc;
3600
3601 no_formal_args = csym && is_external_proc (csym)
3602 && gfc_sym_get_dummy_args (csym) == NULL;
3603 if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
3604 return false;
3605
3606 /* Resume assumed_size checking. */
3607 need_full_assumed_size--;
3608
3609 /* If external, check for usage. */
3610 if (csym && is_external_proc (csym))
3611 resolve_global_procedure (csym, &c->loc, &c->ext.actual, 1);
3612
3613 t = true;
3614 if (c->resolved_sym == NULL)
3615 {
3616 c->resolved_isym = NULL;
3617 switch (procedure_kind (csym))
3618 {
3619 case PTYPE_GENERIC:
3620 t = resolve_generic_s (c);
3621 break;
3622
3623 case PTYPE_SPECIFIC:
3624 t = resolve_specific_s (c);
3625 break;
3626
3627 case PTYPE_UNKNOWN:
3628 t = resolve_unknown_s (c);
3629 break;
3630
3631 default:
3632 gfc_internal_error ("resolve_subroutine(): bad function type");
3633 }
3634 }
3635
3636 /* Some checks of elemental subroutine actual arguments. */
3637 if (!resolve_elemental_actual (NULL, c))
3638 return false;
3639
3640 if (!c->expr1)
3641 update_current_proc_array_outer_dependency (csym);
3642 else
3643 /* Typebound procedure: Assume the worst. */
3644 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
3645
3646 return t;
3647 }
3648
3649
3650 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3651 op1->shape and op2->shape are non-NULL return true if their shapes
3652 match. If both op1->shape and op2->shape are non-NULL return false
3653 if their shapes do not match. If either op1->shape or op2->shape is
3654 NULL, return true. */
3655
3656 static bool
3657 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3658 {
3659 bool t;
3660 int i;
3661
3662 t = true;
3663
3664 if (op1->shape != NULL && op2->shape != NULL)
3665 {
3666 for (i = 0; i < op1->rank; i++)
3667 {
3668 if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3669 {
3670 gfc_error ("Shapes for operands at %L and %L are not conformable",
3671 &op1->where, &op2->where);
3672 t = false;
3673 break;
3674 }
3675 }
3676 }
3677
3678 return t;
3679 }
3680
3681 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3682 For example A .AND. B becomes IAND(A, B). */
3683 static gfc_expr *
3684 logical_to_bitwise (gfc_expr *e)
3685 {
3686 gfc_expr *tmp, *op1, *op2;
3687 gfc_isym_id isym;
3688 gfc_actual_arglist *args = NULL;
3689
3690 gcc_assert (e->expr_type == EXPR_OP);
3691
3692 isym = GFC_ISYM_NONE;
3693 op1 = e->value.op.op1;
3694 op2 = e->value.op.op2;
3695
3696 switch (e->value.op.op)
3697 {
3698 case INTRINSIC_NOT:
3699 isym = GFC_ISYM_NOT;
3700 break;
3701 case INTRINSIC_AND:
3702 isym = GFC_ISYM_IAND;
3703 break;
3704 case INTRINSIC_OR:
3705 isym = GFC_ISYM_IOR;
3706 break;
3707 case INTRINSIC_NEQV:
3708 isym = GFC_ISYM_IEOR;
3709 break;
3710 case INTRINSIC_EQV:
3711 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3712 Change the old expression to NEQV, which will get replaced by IEOR,
3713 and wrap it in NOT. */
3714 tmp = gfc_copy_expr (e);
3715 tmp->value.op.op = INTRINSIC_NEQV;
3716 tmp = logical_to_bitwise (tmp);
3717 isym = GFC_ISYM_NOT;
3718 op1 = tmp;
3719 op2 = NULL;
3720 break;
3721 default:
3722 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3723 }
3724
3725 /* Inherit the original operation's operands as arguments. */
3726 args = gfc_get_actual_arglist ();
3727 args->expr = op1;
3728 if (op2)
3729 {
3730 args->next = gfc_get_actual_arglist ();
3731 args->next->expr = op2;
3732 }
3733
3734 /* Convert the expression to a function call. */
3735 e->expr_type = EXPR_FUNCTION;
3736 e->value.function.actual = args;
3737 e->value.function.isym = gfc_intrinsic_function_by_id (isym);
3738 e->value.function.name = e->value.function.isym->name;
3739 e->value.function.esym = NULL;
3740
3741 /* Make up a pre-resolved function call symtree if we need to. */
3742 if (!e->symtree || !e->symtree->n.sym)
3743 {
3744 gfc_symbol *sym;
3745 gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
3746 sym = e->symtree->n.sym;
3747 sym->result = sym;
3748 sym->attr.flavor = FL_PROCEDURE;
3749 sym->attr.function = 1;
3750 sym->attr.elemental = 1;
3751 sym->attr.pure = 1;
3752 sym->attr.referenced = 1;
3753 gfc_intrinsic_symbol (sym);
3754 gfc_commit_symbol (sym);
3755 }
3756
3757 args->name = e->value.function.isym->formal->name;
3758 if (e->value.function.isym->formal->next)
3759 args->next->name = e->value.function.isym->formal->next->name;
3760
3761 return e;
3762 }
3763
3764 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3765 candidates in CANDIDATES_LEN. */
3766 static void
3767 lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
3768 char **&candidates,
3769 size_t &candidates_len)
3770 {
3771 gfc_symtree *p;
3772
3773 if (uop == NULL)
3774 return;
3775
3776 /* Not sure how to properly filter here. Use all for a start.
3777 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3778 these as i suppose they don't make terribly sense. */
3779
3780 if (uop->n.uop->op != NULL)
3781 vec_push (candidates, candidates_len, uop->name);
3782
3783 p = uop->left;
3784 if (p)
3785 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3786
3787 p = uop->right;
3788 if (p)
3789 lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
3790 }
3791
3792 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3793
3794 static const char*
3795 lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
3796 {
3797 char **candidates = NULL;
3798 size_t candidates_len = 0;
3799 lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
3800 return gfc_closest_fuzzy_match (op, candidates);
3801 }
3802
3803
3804 /* Resolve an operator expression node. This can involve replacing the
3805 operation with a user defined function call. */
3806
3807 static bool
3808 resolve_operator (gfc_expr *e)
3809 {
3810 gfc_expr *op1, *op2;
3811 char msg[200];
3812 bool dual_locus_error;
3813 bool t;
3814
3815 /* Resolve all subnodes-- give them types. */
3816
3817 switch (e->value.op.op)
3818 {
3819 default:
3820 if (!gfc_resolve_expr (e->value.op.op2))
3821 return false;
3822
3823 /* Fall through. */
3824
3825 case INTRINSIC_NOT:
3826 case INTRINSIC_UPLUS:
3827 case INTRINSIC_UMINUS:
3828 case INTRINSIC_PARENTHESES:
3829 if (!gfc_resolve_expr (e->value.op.op1))
3830 return false;
3831 break;
3832 }
3833
3834 /* Typecheck the new node. */
3835
3836 op1 = e->value.op.op1;
3837 op2 = e->value.op.op2;
3838 dual_locus_error = false;
3839
3840 if ((op1 && op1->expr_type == EXPR_NULL)
3841 || (op2 && op2->expr_type == EXPR_NULL))
3842 {
3843 sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
3844 goto bad_op;
3845 }
3846
3847 switch (e->value.op.op)
3848 {
3849 case INTRINSIC_UPLUS:
3850 case INTRINSIC_UMINUS:
3851 if (op1->ts.type == BT_INTEGER
3852 || op1->ts.type == BT_REAL
3853 || op1->ts.type == BT_COMPLEX)
3854 {
3855 e->ts = op1->ts;
3856 break;
3857 }
3858
3859 sprintf (msg, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
3860 gfc_op2string (e->value.op.op), gfc_typename (&e->ts));
3861 goto bad_op;
3862
3863 case INTRINSIC_PLUS:
3864 case INTRINSIC_MINUS:
3865 case INTRINSIC_TIMES:
3866 case INTRINSIC_DIVIDE:
3867 case INTRINSIC_POWER:
3868 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3869 {
3870 gfc_type_convert_binary (e, 1);
3871 break;
3872 }
3873
3874 sprintf (msg,
3875 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
3876 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3877 gfc_typename (&op2->ts));
3878 goto bad_op;
3879
3880 case INTRINSIC_CONCAT:
3881 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3882 && op1->ts.kind == op2->ts.kind)
3883 {
3884 e->ts.type = BT_CHARACTER;
3885 e->ts.kind = op1->ts.kind;
3886 break;
3887 }
3888
3889 sprintf (msg,
3890 _("Operands of string concatenation operator at %%L are %s/%s"),
3891 gfc_typename (&op1->ts), gfc_typename (&op2->ts));
3892 goto bad_op;
3893
3894 case INTRINSIC_AND:
3895 case INTRINSIC_OR:
3896 case INTRINSIC_EQV:
3897 case INTRINSIC_NEQV:
3898 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
3899 {
3900 e->ts.type = BT_LOGICAL;
3901 e->ts.kind = gfc_kind_max (op1, op2);
3902 if (op1->ts.kind < e->ts.kind)
3903 gfc_convert_type (op1, &e->ts, 2);
3904 else if (op2->ts.kind < e->ts.kind)
3905 gfc_convert_type (op2, &e->ts, 2);
3906 break;
3907 }
3908
3909 /* Logical ops on integers become bitwise ops with -fdec. */
3910 else if (flag_dec
3911 && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
3912 {
3913 e->ts.type = BT_INTEGER;
3914 e->ts.kind = gfc_kind_max (op1, op2);
3915 if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
3916 gfc_convert_type (op1, &e->ts, 1);
3917 if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
3918 gfc_convert_type (op2, &e->ts, 1);
3919 e = logical_to_bitwise (e);
3920 return resolve_function (e);
3921 }
3922
3923 sprintf (msg, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
3924 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3925 gfc_typename (&op2->ts));
3926
3927 goto bad_op;
3928
3929 case INTRINSIC_NOT:
3930 /* Logical ops on integers become bitwise ops with -fdec. */
3931 if (flag_dec && op1->ts.type == BT_INTEGER)
3932 {
3933 e->ts.type = BT_INTEGER;
3934 e->ts.kind = op1->ts.kind;
3935 e = logical_to_bitwise (e);
3936 return resolve_function (e);
3937 }
3938
3939 if (op1->ts.type == BT_LOGICAL)
3940 {
3941 e->ts.type = BT_LOGICAL;
3942 e->ts.kind = op1->ts.kind;
3943 break;
3944 }
3945
3946 sprintf (msg, _("Operand of .not. operator at %%L is %s"),
3947 gfc_typename (&op1->ts));
3948 goto bad_op;
3949
3950 case INTRINSIC_GT:
3951 case INTRINSIC_GT_OS:
3952 case INTRINSIC_GE:
3953 case INTRINSIC_GE_OS:
3954 case INTRINSIC_LT:
3955 case INTRINSIC_LT_OS:
3956 case INTRINSIC_LE:
3957 case INTRINSIC_LE_OS:
3958 if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
3959 {
3960 strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
3961 goto bad_op;
3962 }
3963
3964 /* Fall through. */
3965
3966 case INTRINSIC_EQ:
3967 case INTRINSIC_EQ_OS:
3968 case INTRINSIC_NE:
3969 case INTRINSIC_NE_OS:
3970 if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3971 && op1->ts.kind == op2->ts.kind)
3972 {
3973 e->ts.type = BT_LOGICAL;
3974 e->ts.kind = gfc_default_logical_kind;
3975 break;
3976 }
3977
3978 if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3979 {
3980 gfc_type_convert_binary (e, 1);
3981
3982 e->ts.type = BT_LOGICAL;
3983 e->ts.kind = gfc_default_logical_kind;
3984
3985 if (warn_compare_reals)
3986 {
3987 gfc_intrinsic_op op = e->value.op.op;
3988
3989 /* Type conversion has made sure that the types of op1 and op2
3990 agree, so it is only necessary to check the first one. */
3991 if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
3992 && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
3993 || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
3994 {
3995 const char *msg;
3996
3997 if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
3998 msg = "Equality comparison for %s at %L";
3999 else
4000 msg = "Inequality comparison for %s at %L";
4001
4002 gfc_warning (OPT_Wcompare_reals, msg,
4003 gfc_typename (&op1->ts), &op1->where);
4004 }
4005 }
4006
4007 break;
4008 }
4009
4010 if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
4011 sprintf (msg,
4012 _("Logicals at %%L must be compared with %s instead of %s"),
4013 (e->value.op.op == INTRINSIC_EQ
4014 || e->value.op.op == INTRINSIC_EQ_OS)
4015 ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
4016 else
4017 sprintf (msg,
4018 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4019 gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
4020 gfc_typename (&op2->ts));
4021
4022 goto bad_op;
4023
4024 case INTRINSIC_USER:
4025 if (e->value.op.uop->op == NULL)
4026 {
4027 const char *name = e->value.op.uop->name;
4028 const char *guessed;
4029 guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
4030 if (guessed)
4031 sprintf (msg, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4032 name, guessed);
4033 else
4034 sprintf (msg, _("Unknown operator %%<%s%%> at %%L"), name);
4035 }
4036 else if (op2 == NULL)
4037 sprintf (msg, _("Operand of user operator %%<%s%%> at %%L is %s"),
4038 e->value.op.uop->name, gfc_typename (&op1->ts));
4039 else
4040 {
4041 sprintf (msg, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4042 e->value.op.uop->name, gfc_typename (&op1->ts),
4043 gfc_typename (&op2->ts));
4044 e->value.op.uop->op->sym->attr.referenced = 1;
4045 }
4046
4047 goto bad_op;
4048
4049 case INTRINSIC_PARENTHESES:
4050 e->ts = op1->ts;
4051 if (e->ts.type == BT_CHARACTER)
4052 e->ts.u.cl = op1->ts.u.cl;
4053 break;
4054
4055 default:
4056 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4057 }
4058
4059 /* Deal with arrayness of an operand through an operator. */
4060
4061 t = true;
4062
4063 switch (e->value.op.op)
4064 {
4065 case INTRINSIC_PLUS:
4066 case INTRINSIC_MINUS:
4067 case INTRINSIC_TIMES:
4068 case INTRINSIC_DIVIDE:
4069 case INTRINSIC_POWER:
4070 case INTRINSIC_CONCAT:
4071 case INTRINSIC_AND:
4072 case INTRINSIC_OR:
4073 case INTRINSIC_EQV:
4074 case INTRINSIC_NEQV:
4075 case INTRINSIC_EQ:
4076 case INTRINSIC_EQ_OS:
4077 case INTRINSIC_NE:
4078 case INTRINSIC_NE_OS:
4079 case INTRINSIC_GT:
4080 case INTRINSIC_GT_OS:
4081 case INTRINSIC_GE:
4082 case INTRINSIC_GE_OS:
4083 case INTRINSIC_LT:
4084 case INTRINSIC_LT_OS:
4085 case INTRINSIC_LE:
4086 case INTRINSIC_LE_OS:
4087
4088 if (op1->rank == 0 && op2->rank == 0)
4089 e->rank = 0;
4090
4091 if (op1->rank == 0 && op2->rank != 0)
4092 {
4093 e->rank = op2->rank;
4094
4095 if (e->shape == NULL)
4096 e->shape = gfc_copy_shape (op2->shape, op2->rank);
4097 }
4098
4099 if (op1->rank != 0 && op2->rank == 0)
4100 {
4101 e->rank = op1->rank;
4102
4103 if (e->shape == NULL)
4104 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4105 }
4106
4107 if (op1->rank != 0 && op2->rank != 0)
4108 {
4109 if (op1->rank == op2->rank)
4110 {
4111 e->rank = op1->rank;
4112 if (e->shape == NULL)
4113 {
4114 t = compare_shapes (op1, op2);
4115 if (!t)
4116 e->shape = NULL;
4117 else
4118 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4119 }
4120 }
4121 else
4122 {
4123 /* Allow higher level expressions to work. */
4124 e->rank = 0;
4125
4126 /* Try user-defined operators, and otherwise throw an error. */
4127 dual_locus_error = true;
4128 sprintf (msg,
4129 _("Inconsistent ranks for operator at %%L and %%L"));
4130 goto bad_op;
4131 }
4132 }
4133
4134 break;
4135
4136 case INTRINSIC_PARENTHESES:
4137 case INTRINSIC_NOT:
4138 case INTRINSIC_UPLUS:
4139 case INTRINSIC_UMINUS:
4140 /* Simply copy arrayness attribute */
4141 e->rank = op1->rank;
4142
4143 if (e->shape == NULL)
4144 e->shape = gfc_copy_shape (op1->shape, op1->rank);
4145
4146 break;
4147
4148 default:
4149 break;
4150 }
4151
4152 /* Attempt to simplify the expression. */
4153 if (t)
4154 {
4155 t = gfc_simplify_expr (e, 0);
4156 /* Some calls do not succeed in simplification and return false
4157 even though there is no error; e.g. variable references to
4158 PARAMETER arrays. */
4159 if (!gfc_is_constant_expr (e))
4160 t = true;
4161 }
4162 return t;
4163
4164 bad_op:
4165
4166 {
4167 match m = gfc_extend_expr (e);
4168 if (m == MATCH_YES)
4169 return true;
4170 if (m == MATCH_ERROR)
4171 return false;
4172 }
4173
4174 if (dual_locus_error)
4175 gfc_error (msg, &op1->where, &op2->where);
4176 else
4177 gfc_error (msg, &e->where);
4178
4179 return false;
4180 }
4181
4182
4183 /************** Array resolution subroutines **************/
4184
4185 enum compare_result
4186 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
4187
4188 /* Compare two integer expressions. */
4189
4190 static compare_result
4191 compare_bound (gfc_expr *a, gfc_expr *b)
4192 {
4193 int i;
4194
4195 if (a == NULL || a->expr_type != EXPR_CONSTANT
4196 || b == NULL || b->expr_type != EXPR_CONSTANT)
4197 return CMP_UNKNOWN;
4198
4199 /* If either of the types isn't INTEGER, we must have
4200 raised an error earlier. */
4201
4202 if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
4203 return CMP_UNKNOWN;
4204
4205 i = mpz_cmp (a->value.integer, b->value.integer);
4206
4207 if (i < 0)
4208 return CMP_LT;
4209 if (i > 0)
4210 return CMP_GT;
4211 return CMP_EQ;
4212 }
4213
4214
4215 /* Compare an integer expression with an integer. */
4216
4217 static compare_result
4218 compare_bound_int (gfc_expr *a, int b)
4219 {
4220 int i;
4221
4222 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4223 return CMP_UNKNOWN;
4224
4225 if (a->ts.type != BT_INTEGER)
4226 gfc_internal_error ("compare_bound_int(): Bad expression");
4227
4228 i = mpz_cmp_si (a->value.integer, b);
4229
4230 if (i < 0)
4231 return CMP_LT;
4232 if (i > 0)
4233 return CMP_GT;
4234 return CMP_EQ;
4235 }
4236
4237
4238 /* Compare an integer expression with a mpz_t. */
4239
4240 static compare_result
4241 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
4242 {
4243 int i;
4244
4245 if (a == NULL || a->expr_type != EXPR_CONSTANT)
4246 return CMP_UNKNOWN;
4247
4248 if (a->ts.type != BT_INTEGER)
4249 gfc_internal_error ("compare_bound_int(): Bad expression");
4250
4251 i = mpz_cmp (a->value.integer, b);
4252
4253 if (i < 0)
4254 return CMP_LT;
4255 if (i > 0)
4256 return CMP_GT;
4257 return CMP_EQ;
4258 }
4259
4260
4261 /* Compute the last value of a sequence given by a triplet.
4262 Return 0 if it wasn't able to compute the last value, or if the
4263 sequence if empty, and 1 otherwise. */
4264
4265 static int
4266 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
4267 gfc_expr *stride, mpz_t last)
4268 {
4269 mpz_t rem;
4270
4271 if (start == NULL || start->expr_type != EXPR_CONSTANT
4272 || end == NULL || end->expr_type != EXPR_CONSTANT
4273 || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
4274 return 0;
4275
4276 if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
4277 || (stride != NULL && stride->ts.type != BT_INTEGER))
4278 return 0;
4279
4280 if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
4281 {
4282 if (compare_bound (start, end) == CMP_GT)
4283 return 0;
4284 mpz_set (last, end->value.integer);
4285 return 1;
4286 }
4287
4288 if (compare_bound_int (stride, 0) == CMP_GT)
4289 {
4290 /* Stride is positive */
4291 if (mpz_cmp (start->value.integer, end->value.integer) > 0)
4292 return 0;
4293 }
4294 else
4295 {
4296 /* Stride is negative */
4297 if (mpz_cmp (start->value.integer, end->value.integer) < 0)
4298 return 0;
4299 }
4300
4301 mpz_init (rem);
4302 mpz_sub (rem, end->value.integer, start->value.integer);
4303 mpz_tdiv_r (rem, rem, stride->value.integer);
4304 mpz_sub (last, end->value.integer, rem);
4305 mpz_clear (rem);
4306
4307 return 1;
4308 }
4309
4310
4311 /* Compare a single dimension of an array reference to the array
4312 specification. */
4313
4314 static bool
4315 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
4316 {
4317 mpz_t last_value;
4318
4319 if (ar->dimen_type[i] == DIMEN_STAR)
4320 {
4321 gcc_assert (ar->stride[i] == NULL);
4322 /* This implies [*] as [*:] and [*:3] are not possible. */
4323 if (ar->start[i] == NULL)
4324 {
4325 gcc_assert (ar->end[i] == NULL);
4326 return true;
4327 }
4328 }
4329
4330 /* Given start, end and stride values, calculate the minimum and
4331 maximum referenced indexes. */
4332
4333 switch (ar->dimen_type[i])
4334 {
4335 case DIMEN_VECTOR:
4336 case DIMEN_THIS_IMAGE:
4337 break;
4338
4339 case DIMEN_STAR:
4340 case DIMEN_ELEMENT:
4341 if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
4342 {
4343 if (i < as->rank)
4344 gfc_warning (0, "Array reference at %L is out of bounds "
4345 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4346 mpz_get_si (ar->start[i]->value.integer),
4347 mpz_get_si (as->lower[i]->value.integer), i+1);
4348 else
4349 gfc_warning (0, "Array reference at %L is out of bounds "
4350 "(%ld < %ld) in codimension %d", &ar->c_where[i],
4351 mpz_get_si (ar->start[i]->value.integer),
4352 mpz_get_si (as->lower[i]->value.integer),
4353 i + 1 - as->rank);
4354 return true;
4355 }
4356 if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
4357 {
4358 if (i < as->rank)
4359 gfc_warning (0, "Array reference at %L is out of bounds "
4360 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4361 mpz_get_si (ar->start[i]->value.integer),
4362 mpz_get_si (as->upper[i]->value.integer), i+1);
4363 else
4364 gfc_warning (0, "Array reference at %L is out of bounds "
4365 "(%ld > %ld) in codimension %d", &ar->c_where[i],
4366 mpz_get_si (ar->start[i]->value.integer),
4367 mpz_get_si (as->upper[i]->value.integer),
4368 i + 1 - as->rank);
4369 return true;
4370 }
4371
4372 break;
4373
4374 case DIMEN_RANGE:
4375 {
4376 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4377 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4378
4379 compare_result comp_start_end = compare_bound (AR_START, AR_END);
4380
4381 /* Check for zero stride, which is not allowed. */
4382 if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
4383 {
4384 gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
4385 return false;
4386 }
4387
4388 /* if start == len || (stride > 0 && start < len)
4389 || (stride < 0 && start > len),
4390 then the array section contains at least one element. In this
4391 case, there is an out-of-bounds access if
4392 (start < lower || start > upper). */
4393 if (compare_bound (AR_START, AR_END) == CMP_EQ
4394 || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
4395 || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
4396 || (compare_bound_int (ar->stride[i], 0) == CMP_LT
4397 && comp_start_end == CMP_GT))
4398 {
4399 if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
4400 {
4401 gfc_warning (0, "Lower array reference at %L is out of bounds "
4402 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4403 mpz_get_si (AR_START->value.integer),
4404 mpz_get_si (as->lower[i]->value.integer), i+1);
4405 return true;
4406 }
4407 if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
4408 {
4409 gfc_warning (0, "Lower array reference at %L is out of bounds "
4410 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4411 mpz_get_si (AR_START->value.integer),
4412 mpz_get_si (as->upper[i]->value.integer), i+1);
4413 return true;
4414 }
4415 }
4416
4417 /* If we can compute the highest index of the array section,
4418 then it also has to be between lower and upper. */
4419 mpz_init (last_value);
4420 if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
4421 last_value))
4422 {
4423 if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
4424 {
4425 gfc_warning (0, "Upper array reference at %L is out of bounds "
4426 "(%ld < %ld) in dimension %d", &ar->c_where[i],
4427 mpz_get_si (last_value),
4428 mpz_get_si (as->lower[i]->value.integer), i+1);
4429 mpz_clear (last_value);
4430 return true;
4431 }
4432 if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
4433 {
4434 gfc_warning (0, "Upper array reference at %L is out of bounds "
4435 "(%ld > %ld) in dimension %d", &ar->c_where[i],
4436 mpz_get_si (last_value),
4437 mpz_get_si (as->upper[i]->value.integer), i+1);
4438 mpz_clear (last_value);
4439 return true;
4440 }
4441 }
4442 mpz_clear (last_value);
4443
4444 #undef AR_START
4445 #undef AR_END
4446 }
4447 break;
4448
4449 default:
4450 gfc_internal_error ("check_dimension(): Bad array reference");
4451 }
4452
4453 return true;
4454 }
4455
4456
4457 /* Compare an array reference with an array specification. */
4458
4459 static bool
4460 compare_spec_to_ref (gfc_array_ref *ar)
4461 {
4462 gfc_array_spec *as;
4463 int i;
4464
4465 as = ar->as;
4466 i = as->rank - 1;
4467 /* TODO: Full array sections are only allowed as actual parameters. */
4468 if (as->type == AS_ASSUMED_SIZE
4469 && (/*ar->type == AR_FULL
4470 ||*/ (ar->type == AR_SECTION
4471 && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
4472 {
4473 gfc_error ("Rightmost upper bound of assumed size array section "
4474 "not specified at %L", &ar->where);
4475 return false;
4476 }
4477
4478 if (ar->type == AR_FULL)
4479 return true;
4480
4481 if (as->rank != ar->dimen)
4482 {
4483 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4484 &ar->where, ar->dimen, as->rank);
4485 return false;
4486 }
4487
4488 /* ar->codimen == 0 is a local array. */
4489 if (as->corank != ar->codimen && ar->codimen != 0)
4490 {
4491 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4492 &ar->where, ar->codimen, as->corank);
4493 return false;
4494 }
4495
4496 for (i = 0; i < as->rank; i++)
4497 if (!check_dimension (i, ar, as))
4498 return false;
4499
4500 /* Local access has no coarray spec. */
4501 if (ar->codimen != 0)
4502 for (i = as->rank; i < as->rank + as->corank; i++)
4503 {
4504 if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
4505 && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
4506 {
4507 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4508 i + 1 - as->rank, &ar->where);
4509 return false;
4510 }
4511 if (!check_dimension (i, ar, as))
4512 return false;
4513 }
4514
4515 return true;
4516 }
4517
4518
4519 /* Resolve one part of an array index. */
4520
4521 static bool
4522 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
4523 int force_index_integer_kind)
4524 {
4525 gfc_typespec ts;
4526
4527 if (index == NULL)
4528 return true;
4529
4530 if (!gfc_resolve_expr (index))
4531 return false;
4532
4533 if (check_scalar && index->rank != 0)
4534 {
4535 gfc_error ("Array index at %L must be scalar", &index->where);
4536 return false;
4537 }
4538
4539 if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4540 {
4541 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4542 &index->where, gfc_basic_typename (index->ts.type));
4543 return false;
4544 }
4545
4546 if (index->ts.type == BT_REAL)
4547 if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
4548 &index->where))
4549 return false;
4550
4551 if ((index->ts.kind != gfc_index_integer_kind
4552 && force_index_integer_kind)
4553 || index->ts.type != BT_INTEGER)
4554 {
4555 gfc_clear_ts (&ts);
4556 ts.type = BT_INTEGER;
4557 ts.kind = gfc_index_integer_kind;
4558
4559 gfc_convert_type_warn (index, &ts, 2, 0);
4560 }
4561
4562 return true;
4563 }
4564
4565 /* Resolve one part of an array index. */
4566
4567 bool
4568 gfc_resolve_index (gfc_expr *index, int check_scalar)
4569 {
4570 return gfc_resolve_index_1 (index, check_scalar, 1);
4571 }
4572
4573 /* Resolve a dim argument to an intrinsic function. */
4574
4575 bool
4576 gfc_resolve_dim_arg (gfc_expr *dim)
4577 {
4578 if (dim == NULL)
4579 return true;
4580
4581 if (!gfc_resolve_expr (dim))
4582 return false;
4583
4584 if (dim->rank != 0)
4585 {
4586 gfc_error ("Argument dim at %L must be scalar", &dim->where);
4587 return false;
4588
4589 }
4590
4591 if (dim->ts.type != BT_INTEGER)
4592 {
4593 gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4594 return false;
4595 }
4596
4597 if (dim->ts.kind != gfc_index_integer_kind)
4598 {
4599 gfc_typespec ts;
4600
4601 gfc_clear_ts (&ts);
4602 ts.type = BT_INTEGER;
4603 ts.kind = gfc_index_integer_kind;
4604
4605 gfc_convert_type_warn (dim, &ts, 2, 0);
4606 }
4607
4608 return true;
4609 }
4610
4611 /* Given an expression that contains array references, update those array
4612 references to point to the right array specifications. While this is
4613 filled in during matching, this information is difficult to save and load
4614 in a module, so we take care of it here.
4615
4616 The idea here is that the original array reference comes from the
4617 base symbol. We traverse the list of reference structures, setting
4618 the stored reference to references. Component references can
4619 provide an additional array specification. */
4620
4621 static void
4622 find_array_spec (gfc_expr *e)
4623 {
4624 gfc_array_spec *as;
4625 gfc_component *c;
4626 gfc_ref *ref;
4627
4628 if (e->symtree->n.sym->ts.type == BT_CLASS)
4629 as = CLASS_DATA (e->symtree->n.sym)->as;
4630 else
4631 as = e->symtree->n.sym->as;
4632
4633 for (ref = e->ref; ref; ref = ref->next)
4634 switch (ref->type)
4635 {
4636 case REF_ARRAY:
4637 if (as == NULL)
4638 gfc_internal_error ("find_array_spec(): Missing spec");
4639
4640 ref->u.ar.as = as;
4641 as = NULL;
4642 break;
4643
4644 case REF_COMPONENT:
4645 c = ref->u.c.component;
4646 if (c->attr.dimension)
4647 {
4648 if (as != NULL)
4649 gfc_internal_error ("find_array_spec(): unused as(1)");
4650 as = c->as;
4651 }
4652
4653 break;
4654
4655 case REF_SUBSTRING:
4656 break;
4657 }
4658
4659 if (as != NULL)
4660 gfc_internal_error ("find_array_spec(): unused as(2)");
4661 }
4662
4663
4664 /* Resolve an array reference. */
4665
4666 static bool
4667 resolve_array_ref (gfc_array_ref *ar)
4668 {
4669 int i, check_scalar;
4670 gfc_expr *e;
4671
4672 for (i = 0; i < ar->dimen + ar->codimen; i++)
4673 {
4674 check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4675
4676 /* Do not force gfc_index_integer_kind for the start. We can
4677 do fine with any integer kind. This avoids temporary arrays
4678 created for indexing with a vector. */
4679 if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
4680 return false;
4681 if (!gfc_resolve_index (ar->end[i], check_scalar))
4682 return false;
4683 if (!gfc_resolve_index (ar->stride[i], check_scalar))
4684 return false;
4685
4686 e = ar->start[i];
4687
4688 if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4689 switch (e->rank)
4690 {
4691 case 0:
4692 ar->dimen_type[i] = DIMEN_ELEMENT;
4693 break;
4694
4695 case 1:
4696 ar->dimen_type[i] = DIMEN_VECTOR;
4697 if (e->expr_type == EXPR_VARIABLE
4698 && e->symtree->n.sym->ts.type == BT_DERIVED)
4699 ar->start[i] = gfc_get_parentheses (e);
4700 break;
4701
4702 default:
4703 gfc_error ("Array index at %L is an array of rank %d",
4704 &ar->c_where[i], e->rank);
4705 return false;
4706 }
4707
4708 /* Fill in the upper bound, which may be lower than the
4709 specified one for something like a(2:10:5), which is
4710 identical to a(2:7:5). Only relevant for strides not equal
4711 to one. Don't try a division by zero. */
4712 if (ar->dimen_type[i] == DIMEN_RANGE
4713 && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
4714 && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
4715 && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
4716 {
4717 mpz_t size, end;
4718
4719 if (gfc_ref_dimen_size (ar, i, &size, &end))
4720 {
4721 if (ar->end[i] == NULL)
4722 {
4723 ar->end[i] =
4724 gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
4725 &ar->where);
4726 mpz_set (ar->end[i]->value.integer, end);
4727 }
4728 else if (ar->end[i]->ts.type == BT_INTEGER
4729 && ar->end[i]->expr_type == EXPR_CONSTANT)
4730 {
4731 mpz_set (ar->end[i]->value.integer, end);
4732 }
4733 else
4734 gcc_unreachable ();
4735
4736 mpz_clear (size);
4737 mpz_clear (end);
4738 }
4739 }
4740 }
4741
4742 if (ar->type == AR_FULL)
4743 {
4744 if (ar->as->rank == 0)
4745 ar->type = AR_ELEMENT;
4746
4747 /* Make sure array is the same as array(:,:), this way
4748 we don't need to special case all the time. */
4749 ar->dimen = ar->as->rank;
4750 for (i = 0; i < ar->dimen; i++)
4751 {
4752 ar->dimen_type[i] = DIMEN_RANGE;
4753
4754 gcc_assert (ar->start[i] == NULL);
4755 gcc_assert (ar->end[i] == NULL);
4756 gcc_assert (ar->stride[i] == NULL);
4757 }
4758 }
4759
4760 /* If the reference type is unknown, figure out what kind it is. */
4761
4762 if (ar->type == AR_UNKNOWN)
4763 {
4764 ar->type = AR_ELEMENT;
4765 for (i = 0; i < ar->dimen; i++)
4766 if (ar->dimen_type[i] == DIMEN_RANGE
4767 || ar->dimen_type[i] == DIMEN_VECTOR)
4768 {
4769 ar->type = AR_SECTION;
4770 break;
4771 }
4772 }
4773
4774 if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
4775 return false;
4776
4777 if (ar->as->corank && ar->codimen == 0)
4778 {
4779 int n;
4780 ar->codimen = ar->as->corank;
4781 for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
4782 ar->dimen_type[n] = DIMEN_THIS_IMAGE;
4783 }
4784
4785 return true;
4786 }
4787
4788
4789 static bool
4790 resolve_substring (gfc_ref *ref)
4791 {
4792 int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
4793
4794 if (ref->u.ss.start != NULL)
4795 {
4796 if (!gfc_resolve_expr (ref->u.ss.start))
4797 return false;
4798
4799 if (ref->u.ss.start->ts.type != BT_INTEGER)
4800 {
4801 gfc_error ("Substring start index at %L must be of type INTEGER",
4802 &ref->u.ss.start->where);
4803 return false;
4804 }
4805
4806 if (ref->u.ss.start->rank != 0)
4807 {
4808 gfc_error ("Substring start index at %L must be scalar",
4809 &ref->u.ss.start->where);
4810 return false;
4811 }
4812
4813 if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
4814 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4815 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4816 {
4817 gfc_error ("Substring start index at %L is less than one",
4818 &ref->u.ss.start->where);
4819 return false;
4820 }
4821 }
4822
4823 if (ref->u.ss.end != NULL)
4824 {
4825 if (!gfc_resolve_expr (ref->u.ss.end))
4826 return false;
4827
4828 if (ref->u.ss.end->ts.type != BT_INTEGER)
4829 {
4830 gfc_error ("Substring end index at %L must be of type INTEGER",
4831 &ref->u.ss.end->where);
4832 return false;
4833 }
4834
4835 if (ref->u.ss.end->rank != 0)
4836 {
4837 gfc_error ("Substring end index at %L must be scalar",
4838 &ref->u.ss.end->where);
4839 return false;
4840 }
4841
4842 if (ref->u.ss.length != NULL
4843 && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
4844 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4845 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4846 {
4847 gfc_error ("Substring end index at %L exceeds the string length",
4848 &ref->u.ss.start->where);
4849 return false;
4850 }
4851
4852 if (compare_bound_mpz_t (ref->u.ss.end,
4853 gfc_integer_kinds[k].huge) == CMP_GT
4854 && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4855 || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4856 {
4857 gfc_error ("Substring end index at %L is too large",
4858 &ref->u.ss.end->where);
4859 return false;
4860 }
4861 }
4862
4863 return true;
4864 }
4865
4866
4867 /* This function supplies missing substring charlens. */
4868
4869 void
4870 gfc_resolve_substring_charlen (gfc_expr *e)
4871 {
4872 gfc_ref *char_ref;
4873 gfc_expr *start, *end;
4874 gfc_typespec *ts = NULL;
4875
4876 for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
4877 {
4878 if (char_ref->type == REF_SUBSTRING)
4879 break;
4880 if (char_ref->type == REF_COMPONENT)
4881 ts = &char_ref->u.c.component->ts;
4882 }
4883
4884 if (!char_ref)
4885 return;
4886
4887 gcc_assert (char_ref->next == NULL);
4888
4889 if (e->ts.u.cl)
4890 {
4891 if (e->ts.u.cl->length)
4892 gfc_free_expr (e->ts.u.cl->length);
4893 else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
4894 return;
4895 }
4896
4897 e->ts.type = BT_CHARACTER;
4898 e->ts.kind = gfc_default_character_kind;
4899
4900 if (!e->ts.u.cl)
4901 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4902
4903 if (char_ref->u.ss.start)
4904 start = gfc_copy_expr (char_ref->u.ss.start);
4905 else
4906 start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
4907
4908 if (char_ref->u.ss.end)
4909 end = gfc_copy_expr (char_ref->u.ss.end);
4910 else if (e->expr_type == EXPR_VARIABLE)
4911 {
4912 if (!ts)
4913 ts = &e->symtree->n.sym->ts;
4914 end = gfc_copy_expr (ts->u.cl->length);
4915 }
4916 else
4917 end = NULL;
4918
4919 if (!start || !end)
4920 {
4921 gfc_free_expr (start);
4922 gfc_free_expr (end);
4923 return;
4924 }
4925
4926 /* Length = (end - start + 1). */
4927 e->ts.u.cl->length = gfc_subtract (end, start);
4928 e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
4929 gfc_get_int_expr (gfc_charlen_int_kind,
4930 NULL, 1));
4931
4932 /* F2008, 6.4.1: Both the starting point and the ending point shall
4933 be within the range 1, 2, ..., n unless the starting point exceeds
4934 the ending point, in which case the substring has length zero. */
4935
4936 if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
4937 mpz_set_si (e->ts.u.cl->length->value.integer, 0);
4938
4939 e->ts.u.cl->length->ts.type = BT_INTEGER;
4940 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
4941
4942 /* Make sure that the length is simplified. */
4943 gfc_simplify_expr (e->ts.u.cl->length, 1);
4944 gfc_resolve_expr (e->ts.u.cl->length);
4945 }
4946
4947
4948 /* Resolve subtype references. */
4949
4950 static bool
4951 resolve_ref (gfc_expr *expr)
4952 {
4953 int current_part_dimension, n_components, seen_part_dimension;
4954 gfc_ref *ref;
4955
4956 for (ref = expr->ref; ref; ref = ref->next)
4957 if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
4958 {
4959 find_array_spec (expr);
4960 break;
4961 }
4962
4963 for (ref = expr->ref; ref; ref = ref->next)
4964 switch (ref->type)
4965 {
4966 case REF_ARRAY:
4967 if (!resolve_array_ref (&ref->u.ar))
4968 return false;
4969 break;
4970
4971 case REF_COMPONENT:
4972 break;
4973
4974 case REF_SUBSTRING:
4975 if (!resolve_substring (ref))
4976 return false;
4977 break;
4978 }
4979
4980 /* Check constraints on part references. */
4981
4982 current_part_dimension = 0;
4983 seen_part_dimension = 0;
4984 n_components = 0;
4985
4986 for (ref = expr->ref; ref; ref = ref->next)
4987 {
4988 switch (ref->type)
4989 {
4990 case REF_ARRAY:
4991 switch (ref->u.ar.type)
4992 {
4993 case AR_FULL:
4994 /* Coarray scalar. */
4995 if (ref->u.ar.as->rank == 0)
4996 {
4997 current_part_dimension = 0;
4998 break;
4999 }
5000 /* Fall through. */
5001 case AR_SECTION:
5002 current_part_dimension = 1;
5003 break;
5004
5005 case AR_ELEMENT:
5006 current_part_dimension = 0;
5007 break;
5008
5009 case AR_UNKNOWN:
5010 gfc_internal_error ("resolve_ref(): Bad array reference");
5011 }
5012
5013 break;
5014
5015 case REF_COMPONENT:
5016 if (current_part_dimension || seen_part_dimension)
5017 {
5018 /* F03:C614. */
5019 if (ref->u.c.component->attr.pointer
5020 || ref->u.c.component->attr.proc_pointer
5021 || (ref->u.c.component->ts.type == BT_CLASS
5022 && CLASS_DATA (ref->u.c.component)->attr.pointer))
5023 {
5024 gfc_error ("Component to the right of a part reference "
5025 "with nonzero rank must not have the POINTER "
5026 "attribute at %L", &expr->where);
5027 return false;
5028 }
5029 else if (ref->u.c.component->attr.allocatable
5030 || (ref->u.c.component->ts.type == BT_CLASS
5031 && CLASS_DATA (ref->u.c.component)->attr.allocatable))
5032
5033 {
5034 gfc_error ("Component to the right of a part reference "
5035 "with nonzero rank must not have the ALLOCATABLE "
5036 "attribute at %L", &expr->where);
5037 return false;
5038 }
5039 }
5040
5041 n_components++;
5042 break;
5043
5044 case REF_SUBSTRING:
5045 break;
5046 }
5047
5048 if (((ref->type == REF_COMPONENT && n_components > 1)
5049 || ref->next == NULL)
5050 && current_part_dimension
5051 && seen_part_dimension)
5052 {
5053 gfc_error ("Two or more part references with nonzero rank must "
5054 "not be specified at %L", &expr->where);
5055 return false;
5056 }
5057
5058 if (ref->type == REF_COMPONENT)
5059 {
5060 if (current_part_dimension)
5061 seen_part_dimension = 1;
5062
5063 /* reset to make sure */
5064 current_part_dimension = 0;
5065 }
5066 }
5067
5068 return true;
5069 }
5070
5071
5072 /* Given an expression, determine its shape. This is easier than it sounds.
5073 Leaves the shape array NULL if it is not possible to determine the shape. */
5074
5075 static void
5076 expression_shape (gfc_expr *e)
5077 {
5078 mpz_t array[GFC_MAX_DIMENSIONS];
5079 int i;
5080
5081 if (e->rank <= 0 || e->shape != NULL)
5082 return;
5083
5084 for (i = 0; i < e->rank; i++)
5085 if (!gfc_array_dimen_size (e, i, &array[i]))
5086 goto fail;
5087
5088 e->shape = gfc_get_shape (e->rank);
5089
5090 memcpy (e->shape, array, e->rank * sizeof (mpz_t));
5091
5092 return;
5093
5094 fail:
5095 for (i--; i >= 0; i--)
5096 mpz_clear (array[i]);
5097 }
5098
5099
5100 /* Given a variable expression node, compute the rank of the expression by
5101 examining the base symbol and any reference structures it may have. */
5102
5103 void
5104 expression_rank (gfc_expr *e)
5105 {
5106 gfc_ref *ref;
5107 int i, rank;
5108
5109 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5110 could lead to serious confusion... */
5111 gcc_assert (e->expr_type != EXPR_COMPCALL);
5112
5113 if (e->ref == NULL)
5114 {
5115 if (e->expr_type == EXPR_ARRAY)
5116 goto done;
5117 /* Constructors can have a rank different from one via RESHAPE(). */
5118
5119 if (e->symtree == NULL)
5120 {
5121 e->rank = 0;
5122 goto done;
5123 }
5124
5125 e->rank = (e->symtree->n.sym->as == NULL)
5126 ? 0 : e->symtree->n.sym->as->rank;
5127 goto done;
5128 }
5129
5130 rank = 0;
5131
5132 for (ref = e->ref; ref; ref = ref->next)
5133 {
5134 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
5135 && ref->u.c.component->attr.function && !ref->next)
5136 rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
5137
5138 if (ref->type != REF_ARRAY)
5139 continue;
5140
5141 if (ref->u.ar.type == AR_FULL)
5142 {
5143 rank = ref->u.ar.as->rank;
5144 break;
5145 }
5146
5147 if (ref->u.ar.type == AR_SECTION)
5148 {
5149 /* Figure out the rank of the section. */
5150 if (rank != 0)
5151 gfc_internal_error ("expression_rank(): Two array specs");
5152
5153 for (i = 0; i < ref->u.ar.dimen; i++)
5154 if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
5155 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
5156 rank++;
5157
5158 break;
5159 }
5160 }
5161
5162 e->rank = rank;
5163
5164 done:
5165 expression_shape (e);
5166 }
5167
5168
5169 static void
5170 add_caf_get_intrinsic (gfc_expr *e)
5171 {
5172 gfc_expr *wrapper, *tmp_expr;
5173 gfc_ref *ref;
5174 int n;
5175
5176 for (ref = e->ref; ref; ref = ref->next)
5177 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5178 break;
5179 if (ref == NULL)
5180 return;
5181
5182 for (n = ref->u.ar.dimen; n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
5183 if (ref->u.ar.dimen_type[n] != DIMEN_ELEMENT)
5184 return;
5185
5186 tmp_expr = XCNEW (gfc_expr);
5187 *tmp_expr = *e;
5188 wrapper = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_CAF_GET,
5189 "caf_get", tmp_expr->where, 1, tmp_expr);
5190 wrapper->ts = e->ts;
5191 wrapper->rank = e->rank;
5192 if (e->rank)
5193 wrapper->shape = gfc_copy_shape (e->shape, e->rank);
5194 *e = *wrapper;
5195 free (wrapper);
5196 }
5197
5198
5199 static void
5200 remove_caf_get_intrinsic (gfc_expr *e)
5201 {
5202 gcc_assert (e->expr_type == EXPR_FUNCTION && e->value.function.isym
5203 && e->value.function.isym->id == GFC_ISYM_CAF_GET);
5204 gfc_expr *e2 = e->value.function.actual->expr;
5205 e->value.function.actual->expr = NULL;
5206 gfc_free_actual_arglist (e->value.function.actual);
5207 gfc_free_shape (&e->shape, e->rank);
5208 *e = *e2;
5209 free (e2);
5210 }
5211
5212
5213 /* Resolve a variable expression. */
5214
5215 static bool
5216 resolve_variable (gfc_expr *e)
5217 {
5218 gfc_symbol *sym;
5219 bool t;
5220
5221 t = true;
5222
5223 if (e->symtree == NULL)
5224 return false;
5225 sym = e->symtree->n.sym;
5226
5227 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5228 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5229 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
5230 {
5231 if (!actual_arg || inquiry_argument)
5232 {
5233 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5234 "be used as actual argument", sym->name, &e->where);
5235 return false;
5236 }
5237 }
5238 /* TS 29113, 407b. */
5239 else if (e->ts.type == BT_ASSUMED)
5240 {
5241 if (!actual_arg)
5242 {
5243 gfc_error ("Assumed-type variable %s at %L may only be used "
5244 "as actual argument", sym->name, &e->where);
5245 return false;
5246 }
5247 else if (inquiry_argument && !first_actual_arg)
5248 {
5249 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5250 for all inquiry functions in resolve_function; the reason is
5251 that the function-name resolution happens too late in that
5252 function. */
5253 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5254 "an inquiry function shall be the first argument",
5255 sym->name, &e->where);
5256 return false;
5257 }
5258 }
5259 /* TS 29113, C535b. */
5260 else if ((sym->ts.type == BT_CLASS && sym->attr.class_ok
5261 && CLASS_DATA (sym)->as
5262 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5263 || (sym->ts.type != BT_CLASS && sym->as
5264 && sym->as->type == AS_ASSUMED_RANK))
5265 {
5266 if (!actual_arg)
5267 {
5268 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5269 "actual argument", sym->name, &e->where);
5270 return false;
5271 }
5272 else if (inquiry_argument && !first_actual_arg)
5273 {
5274 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5275 for all inquiry functions in resolve_function; the reason is
5276 that the function-name resolution happens too late in that
5277 function. */
5278 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5279 "to an inquiry function shall be the first argument",
5280 sym->name, &e->where);
5281 return false;
5282 }
5283 }
5284
5285 if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
5286 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5287 && e->ref->next == NULL))
5288 {
5289 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5290 "a subobject reference", sym->name, &e->ref->u.ar.where);
5291 return false;
5292 }
5293 /* TS 29113, 407b. */
5294 else if (e->ts.type == BT_ASSUMED && e->ref
5295 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5296 && e->ref->next == NULL))
5297 {
5298 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5299 "reference", sym->name, &e->ref->u.ar.where);
5300 return false;
5301 }
5302
5303 /* TS 29113, C535b. */
5304 if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
5305 && CLASS_DATA (sym)->as
5306 && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
5307 || (sym->ts.type != BT_CLASS && sym->as
5308 && sym->as->type == AS_ASSUMED_RANK))
5309 && e->ref
5310 && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
5311 && e->ref->next == NULL))
5312 {
5313 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5314 "reference", sym->name, &e->ref->u.ar.where);
5315 return false;
5316 }
5317
5318 /* For variables that are used in an associate (target => object) where
5319 the object's basetype is array valued while the target is scalar,
5320 the ts' type of the component refs is still array valued, which
5321 can't be translated that way. */
5322 if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
5323 && sym->assoc->target->ts.type == BT_CLASS
5324 && CLASS_DATA (sym->assoc->target)->as)
5325 {
5326 gfc_ref *ref = e->ref;
5327 while (ref)
5328 {
5329 switch (ref->type)
5330 {
5331 case REF_COMPONENT:
5332 ref->u.c.sym = sym->ts.u.derived;
5333 /* Stop the loop. */
5334 ref = NULL;
5335 break;
5336 default:
5337 ref = ref->next;
5338 break;
5339 }
5340 }
5341 }
5342
5343 /* If this is an associate-name, it may be parsed with an array reference
5344 in error even though the target is scalar. Fail directly in this case.
5345 TODO Understand why class scalar expressions must be excluded. */
5346 if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
5347 {
5348 if (sym->ts.type == BT_CLASS)
5349 gfc_fix_class_refs (e);
5350 if (!sym->attr.dimension && e->ref && e->ref->type == REF_ARRAY)
5351 return false;
5352 }
5353
5354 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
5355 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
5356
5357 /* On the other hand, the parser may not have known this is an array;
5358 in this case, we have to add a FULL reference. */
5359 if (sym->assoc && sym->attr.dimension && !e->ref)
5360 {
5361 e->ref = gfc_get_ref ();
5362 e->ref->type = REF_ARRAY;
5363 e->ref->u.ar.type = AR_FULL;
5364 e->ref->u.ar.dimen = 0;
5365 }
5366
5367 /* Like above, but for class types, where the checking whether an array
5368 ref is present is more complicated. Furthermore make sure not to add
5369 the full array ref to _vptr or _len refs. */
5370 if (sym->assoc && sym->ts.type == BT_CLASS
5371 && CLASS_DATA (sym)->attr.dimension
5372 && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
5373 {
5374 gfc_ref *ref, *newref;
5375
5376 newref = gfc_get_ref ();
5377 newref->type = REF_ARRAY;
5378 newref->u.ar.type = AR_FULL;
5379 newref->u.ar.dimen = 0;
5380 /* Because this is an associate var and the first ref either is a ref to
5381 the _data component or not, no traversal of the ref chain is
5382 needed. The array ref needs to be inserted after the _data ref,
5383 or when that is not present, which may happend for polymorphic
5384 types, then at the first position. */
5385 ref = e->ref;
5386 if (!ref)
5387 e->ref = newref;
5388 else if (ref->type == REF_COMPONENT
5389 && strcmp ("_data", ref->u.c.component->name) == 0)
5390 {
5391 if (!ref->next || ref->next->type != REF_ARRAY)
5392 {
5393 newref->next = ref->next;
5394 ref->next = newref;
5395 }
5396 else
5397 /* Array ref present already. */
5398 gfc_free_ref_list (newref);
5399 }
5400 else if (ref->type == REF_ARRAY)
5401 /* Array ref present already. */
5402 gfc_free_ref_list (newref);
5403 else
5404 {
5405 newref->next = ref;
5406 e->ref = newref;
5407 }
5408 }
5409
5410 if (e->ref && !resolve_ref (e))
5411 return false;
5412
5413 if (sym->attr.flavor == FL_PROCEDURE
5414 && (!sym->attr.function
5415 || (sym->attr.function && sym->result
5416 && sym->result->attr.proc_pointer
5417 && !sym->result->attr.function)))
5418 {
5419 e->ts.type = BT_PROCEDURE;
5420 goto resolve_procedure;
5421 }
5422
5423 if (sym->ts.type != BT_UNKNOWN)
5424 gfc_variable_attr (e, &e->ts);
5425 else if (sym->attr.flavor == FL_PROCEDURE
5426 && sym->attr.function && sym->result
5427 && sym->result->ts.type != BT_UNKNOWN
5428 && sym->result->attr.proc_pointer)
5429 e->ts = sym->result->ts;
5430 else
5431 {
5432 /* Must be a simple variable reference. */
5433 if (!gfc_set_default_type (sym, 1, sym->ns))
5434 return false;
5435 e->ts = sym->ts;
5436 }
5437
5438 if (check_assumed_size_reference (sym, e))
5439 return false;
5440
5441 /* Deal with forward references to entries during gfc_resolve_code, to
5442 satisfy, at least partially, 12.5.2.5. */
5443 if (gfc_current_ns->entries
5444 && current_entry_id == sym->entry_id
5445 && cs_base
5446 && cs_base->current
5447 && cs_base->current->op != EXEC_ENTRY)
5448 {
5449 gfc_entry_list *entry;
5450 gfc_formal_arglist *formal;
5451 int n;
5452 bool seen, saved_specification_expr;
5453
5454 /* If the symbol is a dummy... */
5455 if (sym->attr.dummy && sym->ns == gfc_current_ns)
5456 {
5457 entry = gfc_current_ns->entries;
5458 seen = false;
5459
5460 /* ...test if the symbol is a parameter of previous entries. */
5461 for (; entry && entry->id <= current_entry_id; entry = entry->next)
5462 for (formal = entry->sym->formal; formal; formal = formal->next)
5463 {
5464 if (formal->sym && sym->name == formal->sym->name)
5465 {
5466 seen = true;
5467 break;
5468 }
5469 }
5470
5471 /* If it has not been seen as a dummy, this is an error. */
5472 if (!seen)
5473 {
5474 if (specification_expr)
5475 gfc_error ("Variable %qs, used in a specification expression"
5476 ", is referenced at %L before the ENTRY statement "
5477 "in which it is a parameter",
5478 sym->name, &cs_base->current->loc);
5479 else
5480 gfc_error ("Variable %qs is used at %L before the ENTRY "
5481 "statement in which it is a parameter",
5482 sym->name, &cs_base->current->loc);
5483 t = false;
5484 }
5485 }
5486
5487 /* Now do the same check on the specification expressions. */
5488 saved_specification_expr = specification_expr;
5489 specification_expr = true;
5490 if (sym->ts.type == BT_CHARACTER
5491 && !gfc_resolve_expr (sym->ts.u.cl->length))
5492 t = false;
5493
5494 if (sym->as)
5495 for (n = 0; n < sym->as->rank; n++)
5496 {
5497 if (!gfc_resolve_expr (sym->as->lower[n]))
5498 t = false;
5499 if (!gfc_resolve_expr (sym->as->upper[n]))
5500 t = false;
5501 }
5502 specification_expr = saved_specification_expr;
5503
5504 if (t)
5505 /* Update the symbol's entry level. */
5506 sym->entry_id = current_entry_id + 1;
5507 }
5508
5509 /* If a symbol has been host_associated mark it. This is used latter,
5510 to identify if aliasing is possible via host association. */
5511 if (sym->attr.flavor == FL_VARIABLE
5512 && gfc_current_ns->parent
5513 && (gfc_current_ns->parent == sym->ns
5514 || (gfc_current_ns->parent->parent
5515 && gfc_current_ns->parent->parent == sym->ns)))
5516 sym->attr.host_assoc = 1;
5517
5518 if (gfc_current_ns->proc_name
5519 && sym->attr.dimension
5520 && (sym->ns != gfc_current_ns
5521 || sym->attr.use_assoc
5522 || sym->attr.in_common))
5523 gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
5524
5525 resolve_procedure:
5526 if (t && !resolve_procedure_expression (e))
5527 t = false;
5528
5529 /* F2008, C617 and C1229. */
5530 if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
5531 && gfc_is_coindexed (e))
5532 {
5533 gfc_ref *ref, *ref2 = NULL;
5534
5535 for (ref = e->ref; ref; ref = ref->next)
5536 {
5537 if (ref->type == REF_COMPONENT)
5538 ref2 = ref;
5539 if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
5540 break;
5541 }
5542
5543 for ( ; ref; ref = ref->next)
5544 if (ref->type == REF_COMPONENT)
5545 break;
5546
5547 /* Expression itself is not coindexed object. */
5548 if (ref && e->ts.type == BT_CLASS)
5549 {
5550 gfc_error ("Polymorphic subobject of coindexed object at %L",
5551 &e->where);
5552 t = false;
5553 }
5554
5555 /* Expression itself is coindexed object. */
5556 if (ref == NULL)
5557 {
5558 gfc_component *c;
5559 c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
5560 for ( ; c; c = c->next)
5561 if (c->attr.allocatable && c->ts.type == BT_CLASS)
5562 {
5563 gfc_error ("Coindexed object with polymorphic allocatable "
5564 "subcomponent at %L", &e->where);
5565 t = false;
5566 break;
5567 }
5568 }
5569 }
5570
5571 if (t)
5572 expression_rank (e);
5573
5574 if (t && flag_coarray == GFC_FCOARRAY_LIB && gfc_is_coindexed (e))
5575 add_caf_get_intrinsic (e);
5576
5577 return t;
5578 }
5579
5580
5581 /* Checks to see that the correct symbol has been host associated.
5582 The only situation where this arises is that in which a twice
5583 contained function is parsed after the host association is made.
5584 Therefore, on detecting this, change the symbol in the expression
5585 and convert the array reference into an actual arglist if the old
5586 symbol is a variable. */
5587 static bool
5588 check_host_association (gfc_expr *e)
5589 {
5590 gfc_symbol *sym, *old_sym;
5591 gfc_symtree *st;
5592 int n;
5593 gfc_ref *ref;
5594 gfc_actual_arglist *arg, *tail = NULL;
5595 bool retval = e->expr_type == EXPR_FUNCTION;
5596
5597 /* If the expression is the result of substitution in
5598 interface.c(gfc_extend_expr) because there is no way in
5599 which the host association can be wrong. */
5600 if (e->symtree == NULL
5601 || e->symtree->n.sym == NULL
5602 || e->user_operator)
5603 return retval;
5604
5605 old_sym = e->symtree->n.sym;
5606
5607 if (gfc_current_ns->parent
5608 && old_sym->ns != gfc_current_ns)
5609 {
5610 /* Use the 'USE' name so that renamed module symbols are
5611 correctly handled. */
5612 gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
5613
5614 if (sym && old_sym != sym
5615 && sym->ts.type == old_sym->ts.type
5616 && sym->attr.flavor == FL_PROCEDURE
5617 && sym->attr.contained)
5618 {
5619 /* Clear the shape, since it might not be valid. */
5620 gfc_free_shape (&e->shape, e->rank);
5621
5622 /* Give the expression the right symtree! */
5623 gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
5624 gcc_assert (st != NULL);
5625
5626 if (old_sym->attr.flavor == FL_PROCEDURE
5627 || e->expr_type == EXPR_FUNCTION)
5628 {
5629 /* Original was function so point to the new symbol, since
5630 the actual argument list is already attached to the
5631 expression. */
5632 e->value.function.esym = NULL;
5633 e->symtree = st;
5634 }
5635 else
5636 {
5637 /* Original was variable so convert array references into
5638 an actual arglist. This does not need any checking now
5639 since resolve_function will take care of it. */
5640 e->value.function.actual = NULL;
5641 e->expr_type = EXPR_FUNCTION;
5642 e->symtree = st;
5643
5644 /* Ambiguity will not arise if the array reference is not
5645 the last reference. */
5646 for (ref = e->ref; ref; ref = ref->next)
5647 if (ref->type == REF_ARRAY && ref->next == NULL)
5648 break;
5649
5650 gcc_assert (ref->type == REF_ARRAY);
5651
5652 /* Grab the start expressions from the array ref and
5653 copy them into actual arguments. */
5654 for (n = 0; n < ref->u.ar.dimen; n++)
5655 {
5656 arg = gfc_get_actual_arglist ();
5657 arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
5658 if (e->value.function.actual == NULL)
5659 tail = e->value.function.actual = arg;
5660 else
5661 {
5662 tail->next = arg;
5663 tail = arg;
5664 }
5665 }
5666
5667 /* Dump the reference list and set the rank. */
5668 gfc_free_ref_list (e->ref);
5669 e->ref = NULL;
5670 e->rank = sym->as ? sym->as->rank : 0;
5671 }
5672
5673 gfc_resolve_expr (e);
5674 sym->refs++;
5675 }
5676 }
5677 /* This might have changed! */
5678 return e->expr_type == EXPR_FUNCTION;
5679 }
5680
5681
5682 static void
5683 gfc_resolve_character_operator (gfc_expr *e)
5684 {
5685 gfc_expr *op1 = e->value.op.op1;
5686 gfc_expr *op2 = e->value.op.op2;
5687 gfc_expr *e1 = NULL;
5688 gfc_expr *e2 = NULL;
5689
5690 gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
5691
5692 if (op1->ts.u.cl && op1->ts.u.cl->length)
5693 e1 = gfc_copy_expr (op1->ts.u.cl->length);
5694 else if (op1->expr_type == EXPR_CONSTANT)
5695 e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5696 op1->value.character.length);
5697
5698 if (op2->ts.u.cl && op2->ts.u.cl->length)
5699 e2 = gfc_copy_expr (op2->ts.u.cl->length);
5700 else if (op2->expr_type == EXPR_CONSTANT)
5701 e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
5702 op2->value.character.length);
5703
5704 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5705
5706 if (!e1 || !e2)
5707 {
5708 gfc_free_expr (e1);
5709 gfc_free_expr (e2);
5710
5711 return;
5712 }
5713
5714 e->ts.u.cl->length = gfc_add (e1, e2);
5715 e->ts.u.cl->length->ts.type = BT_INTEGER;
5716 e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
5717 gfc_simplify_expr (e->ts.u.cl->length, 0);
5718 gfc_resolve_expr (e->ts.u.cl->length);
5719
5720 return;
5721 }
5722
5723
5724 /* Ensure that an character expression has a charlen and, if possible, a
5725 length expression. */
5726
5727 static void
5728 fixup_charlen (gfc_expr *e)
5729 {
5730 /* The cases fall through so that changes in expression type and the need
5731 for multiple fixes are picked up. In all circumstances, a charlen should
5732 be available for the middle end to hang a backend_decl on. */
5733 switch (e->expr_type)
5734 {
5735 case EXPR_OP:
5736 gfc_resolve_character_operator (e);
5737 /* FALLTHRU */
5738
5739 case EXPR_ARRAY:
5740 if (e->expr_type == EXPR_ARRAY)
5741 gfc_resolve_character_array_constructor (e);
5742 /* FALLTHRU */
5743
5744 case EXPR_SUBSTRING:
5745 if (!e->ts.u.cl && e->ref)
5746 gfc_resolve_substring_charlen (e);
5747 /* FALLTHRU */
5748
5749 default:
5750 if (!e->ts.u.cl)
5751 e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
5752
5753 break;
5754 }
5755 }
5756
5757
5758 /* Update an actual argument to include the passed-object for type-bound
5759 procedures at the right position. */
5760
5761 static gfc_actual_arglist*
5762 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
5763 const char *name)
5764 {
5765 gcc_assert (argpos > 0);
5766
5767 if (argpos == 1)
5768 {
5769 gfc_actual_arglist* result;
5770
5771 result = gfc_get_actual_arglist ();
5772 result->expr = po;
5773 result->next = lst;
5774 if (name)
5775 result->name = name;
5776
5777 return result;
5778 }
5779
5780 if (lst)
5781 lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
5782 else
5783 lst = update_arglist_pass (NULL, po, argpos - 1, name);
5784 return lst;
5785 }
5786
5787
5788 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
5789
5790 static gfc_expr*
5791 extract_compcall_passed_object (gfc_expr* e)
5792 {
5793 gfc_expr* po;
5794
5795 gcc_assert (e->expr_type == EXPR_COMPCALL);
5796
5797 if (e->value.compcall.base_object)
5798 po = gfc_copy_expr (e->value.compcall.base_object);
5799 else
5800 {
5801 po = gfc_get_expr ();
5802 po->expr_type = EXPR_VARIABLE;
5803 po->symtree = e->symtree;
5804 po->ref = gfc_copy_ref (e->ref);
5805 po->where = e->where;
5806 }
5807
5808 if (!gfc_resolve_expr (po))
5809 return NULL;
5810
5811 return po;
5812 }
5813
5814
5815 /* Update the arglist of an EXPR_COMPCALL expression to include the
5816 passed-object. */
5817
5818 static bool
5819 update_compcall_arglist (gfc_expr* e)
5820 {
5821 gfc_expr* po;
5822 gfc_typebound_proc* tbp;
5823
5824 tbp = e->value.compcall.tbp;
5825
5826 if (tbp->error)
5827 return false;
5828
5829 po = extract_compcall_passed_object (e);
5830 if (!po)
5831 return false;
5832
5833 if (tbp->nopass || e->value.compcall.ignore_pass)
5834 {
5835 gfc_free_expr (po);
5836 return true;
5837 }
5838
5839 if (tbp->pass_arg_num <= 0)
5840 return false;
5841
5842 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
5843 tbp->pass_arg_num,
5844 tbp->pass_arg);
5845
5846 return true;
5847 }
5848
5849
5850 /* Extract the passed object from a PPC call (a copy of it). */
5851
5852 static gfc_expr*
5853 extract_ppc_passed_object (gfc_expr *e)
5854 {
5855 gfc_expr *po;
5856 gfc_ref **ref;
5857
5858 po = gfc_get_expr ();
5859 po->expr_type = EXPR_VARIABLE;
5860 po->symtree = e->symtree;
5861 po->ref = gfc_copy_ref (e->ref);
5862 po->where = e->where;
5863
5864 /* Remove PPC reference. */
5865 ref = &po->ref;
5866 while ((*ref)->next)
5867 ref = &(*ref)->next;
5868 gfc_free_ref_list (*ref);
5869 *ref = NULL;
5870
5871 if (!gfc_resolve_expr (po))
5872 return NULL;
5873
5874 return po;
5875 }
5876
5877
5878 /* Update the actual arglist of a procedure pointer component to include the
5879 passed-object. */
5880
5881 static bool
5882 update_ppc_arglist (gfc_expr* e)
5883 {
5884 gfc_expr* po;
5885 gfc_component *ppc;
5886 gfc_typebound_proc* tb;
5887
5888 ppc = gfc_get_proc_ptr_comp (e);
5889 if (!ppc)
5890 return false;
5891
5892 tb = ppc->tb;
5893
5894 if (tb->error)
5895 return false;
5896 else if (tb->nopass)
5897 return true;
5898
5899 po = extract_ppc_passed_object (e);
5900 if (!po)
5901 return false;
5902
5903 /* F08:R739. */
5904 if (po->rank != 0)
5905 {
5906 gfc_error ("Passed-object at %L must be scalar", &e->where);
5907 return false;
5908 }
5909
5910 /* F08:C611. */
5911 if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
5912 {
5913 gfc_error ("Base object for procedure-pointer component call at %L is of"
5914 " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
5915 return false;
5916 }
5917
5918 gcc_assert (tb->pass_arg_num > 0);
5919 e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
5920 tb->pass_arg_num,
5921 tb->pass_arg);
5922
5923 return true;
5924 }
5925
5926
5927 /* Check that the object a TBP is called on is valid, i.e. it must not be
5928 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
5929
5930 static bool
5931 check_typebound_baseobject (gfc_expr* e)
5932 {
5933 gfc_expr* base;
5934 bool return_value = false;
5935
5936 base = extract_compcall_passed_object (e);
5937 if (!base)
5938 return false;
5939
5940 gcc_assert (base->ts.type == BT_DERIVED || base->ts.type == BT_CLASS);
5941
5942 if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
5943 return false;
5944
5945 /* F08:C611. */
5946 if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
5947 {
5948 gfc_error ("Base object for type-bound procedure call at %L is of"
5949 " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
5950 goto cleanup;
5951 }
5952
5953 /* F08:C1230. If the procedure called is NOPASS,
5954 the base object must be scalar. */
5955 if (e->value.compcall.tbp->nopass && base->rank != 0)
5956 {
5957 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
5958 " be scalar", &e->where);
5959 goto cleanup;
5960 }
5961
5962 return_value = true;
5963
5964 cleanup:
5965 gfc_free_expr (base);
5966 return return_value;
5967 }
5968
5969
5970 /* Resolve a call to a type-bound procedure, either function or subroutine,
5971 statically from the data in an EXPR_COMPCALL expression. The adapted
5972 arglist and the target-procedure symtree are returned. */
5973
5974 static bool
5975 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
5976 gfc_actual_arglist** actual)
5977 {
5978 gcc_assert (e->expr_type == EXPR_COMPCALL);
5979 gcc_assert (!e->value.compcall.tbp->is_generic);
5980
5981 /* Update the actual arglist for PASS. */
5982 if (!update_compcall_arglist (e))
5983 return false;
5984
5985 *actual = e->value.compcall.actual;
5986 *target = e->value.compcall.tbp->u.specific;
5987
5988 gfc_free_ref_list (e->ref);
5989 e->ref = NULL;
5990 e->value.compcall.actual = NULL;
5991
5992 /* If we find a deferred typebound procedure, check for derived types
5993 that an overriding typebound procedure has not been missed. */
5994 if (e->value.compcall.name
5995 && !e->value.compcall.tbp->non_overridable
5996 && e->value.compcall.base_object
5997 && e->value.compcall.base_object->ts.type == BT_DERIVED)
5998 {
5999 gfc_symtree *st;
6000 gfc_symbol *derived;
6001
6002 /* Use the derived type of the base_object. */
6003 derived = e->value.compcall.base_object->ts.u.derived;
6004 st = NULL;
6005
6006 /* If necessary, go through the inheritance chain. */
6007 while (!st && derived)
6008 {
6009 /* Look for the typebound procedure 'name'. */
6010 if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
6011 st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
6012 e->value.compcall.name);
6013 if (!st)
6014 derived = gfc_get_derived_super_type (derived);
6015 }
6016
6017 /* Now find the specific name in the derived type namespace. */
6018 if (st && st->n.tb && st->n.tb->u.specific)
6019 gfc_find_sym_tree (st->n.tb->u.specific->name,
6020 derived->ns, 1, &st);
6021 if (st)
6022 *target = st;
6023 }
6024 return true;
6025 }
6026
6027
6028 /* Get the ultimate declared type from an expression. In addition,
6029 return the last class/derived type reference and the copy of the
6030 reference list. If check_types is set true, derived types are
6031 identified as well as class references. */
6032 static gfc_symbol*
6033 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
6034 gfc_expr *e, bool check_types)
6035 {
6036 gfc_symbol *declared;
6037 gfc_ref *ref;
6038
6039 declared = NULL;
6040 if (class_ref)
6041 *class_ref = NULL;
6042 if (new_ref)
6043 *new_ref = gfc_copy_ref (e->ref);
6044
6045 for (ref = e->ref; ref; ref = ref->next)
6046 {
6047 if (ref->type != REF_COMPONENT)
6048 continue;
6049
6050 if ((ref->u.c.component->ts.type == BT_CLASS
6051 || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
6052 && ref->u.c.component->attr.flavor != FL_PROCEDURE)
6053 {
6054 declared = ref->u.c.component->ts.u.derived;
6055 if (class_ref)
6056 *class_ref = ref;
6057 }
6058 }
6059
6060 if (declared == NULL)
6061 declared = e->symtree->n.sym->ts.u.derived;
6062
6063 return declared;
6064 }
6065
6066
6067 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6068 which of the specific bindings (if any) matches the arglist and transform
6069 the expression into a call of that binding. */
6070
6071 static bool
6072 resolve_typebound_generic_call (gfc_expr* e, const char **name)
6073 {
6074 gfc_typebound_proc* genproc;
6075 const char* genname;
6076 gfc_symtree *st;
6077 gfc_symbol *derived;
6078
6079 gcc_assert (e->expr_type == EXPR_COMPCALL);
6080 genname = e->value.compcall.name;
6081 genproc = e->value.compcall.tbp;
6082
6083 if (!genproc->is_generic)
6084 return true;
6085
6086 /* Try the bindings on this type and in the inheritance hierarchy. */
6087 for (; genproc; genproc = genproc->overridden)
6088 {
6089 gfc_tbp_generic* g;
6090
6091 gcc_assert (genproc->is_generic);
6092 for (g = genproc->u.generic; g; g = g->next)
6093 {
6094 gfc_symbol* target;
6095 gfc_actual_arglist* args;
6096 bool matches;
6097
6098 gcc_assert (g->specific);
6099
6100 if (g->specific->error)
6101 continue;
6102
6103 target = g->specific->u.specific->n.sym;
6104
6105 /* Get the right arglist by handling PASS/NOPASS. */
6106 args = gfc_copy_actual_arglist (e->value.compcall.actual);
6107 if (!g->specific->nopass)
6108 {
6109 gfc_expr* po;
6110 po = extract_compcall_passed_object (e);
6111 if (!po)
6112 {
6113 gfc_free_actual_arglist (args);
6114 return false;
6115 }
6116
6117 gcc_assert (g->specific->pass_arg_num > 0);
6118 gcc_assert (!g->specific->error);
6119 args = update_arglist_pass (args, po, g->specific->pass_arg_num,
6120 g->specific->pass_arg);
6121 }
6122 resolve_actual_arglist (args, target->attr.proc,
6123 is_external_proc (target)
6124 && gfc_sym_get_dummy_args (target) == NULL);
6125
6126 /* Check if this arglist matches the formal. */
6127 matches = gfc_arglist_matches_symbol (&args, target);
6128
6129 /* Clean up and break out of the loop if we've found it. */
6130 gfc_free_actual_arglist (args);
6131 if (matches)
6132 {
6133 e->value.compcall.tbp = g->specific;
6134 genname = g->specific_st->name;
6135 /* Pass along the name for CLASS methods, where the vtab
6136 procedure pointer component has to be referenced. */
6137 if (name)
6138 *name = genname;
6139 goto success;
6140 }
6141 }
6142 }
6143
6144 /* Nothing matching found! */
6145 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6146 " %qs at %L", genname, &e->where);
6147 return false;
6148
6149 success:
6150 /* Make sure that we have the right specific instance for the name. */
6151 derived = get_declared_from_expr (NULL, NULL, e, true);
6152
6153 st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
6154 if (st)
6155 e->value.compcall.tbp = st->n.tb;
6156
6157 return true;
6158 }
6159
6160
6161 /* Resolve a call to a type-bound subroutine. */
6162
6163 static bool
6164 resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
6165 {
6166 gfc_actual_arglist* newactual;
6167 gfc_symtree* target;
6168
6169 /* Check that's really a SUBROUTINE. */
6170 if (!c->expr1->value.compcall.tbp->subroutine)
6171 {
6172 gfc_error ("%qs at %L should be a SUBROUTINE",
6173 c->expr1->value.compcall.name, &c->loc);
6174 return false;
6175 }
6176
6177 if (!check_typebound_baseobject (c->expr1))
6178 return false;
6179
6180 /* Pass along the name for CLASS methods, where the vtab
6181 procedure pointer component has to be referenced. */
6182 if (name)
6183 *name = c->expr1->value.compcall.name;
6184
6185 if (!resolve_typebound_generic_call (c->expr1, name))
6186 return false;
6187
6188 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6189 if (overridable)
6190 *overridable = !c->expr1->value.compcall.tbp->non_overridable;
6191
6192 /* Transform into an ordinary EXEC_CALL for now. */
6193
6194 if (!resolve_typebound_static (c->expr1, &target, &newactual))
6195 return false;
6196
6197 c->ext.actual = newactual;
6198 c->symtree = target;
6199 c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
6200
6201 gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
6202
6203 gfc_free_expr (c->expr1);
6204 c->expr1 = gfc_get_expr ();
6205 c->expr1->expr_type = EXPR_FUNCTION;
6206 c->expr1->symtree = target;
6207 c->expr1->where = c->loc;
6208
6209 return resolve_call (c);
6210 }
6211
6212
6213 /* Resolve a component-call expression. */
6214 static bool
6215 resolve_compcall (gfc_expr* e, const char **name)
6216 {
6217 gfc_actual_arglist* newactual;
6218 gfc_symtree* target;
6219
6220 /* Check that's really a FUNCTION. */
6221 if (!e->value.compcall.tbp->function)
6222 {
6223 gfc_error ("%qs at %L should be a FUNCTION",
6224 e->value.compcall.name, &e->where);
6225 return false;
6226 }
6227
6228 /* These must not be assign-calls! */
6229 gcc_assert (!e->value.compcall.assign);
6230
6231 if (!check_typebound_baseobject (e))
6232 return false;
6233
6234 /* Pass along the name for CLASS methods, where the vtab
6235 procedure pointer component has to be referenced. */
6236 if (name)
6237 *name = e->value.compcall.name;
6238
6239 if (!resolve_typebound_generic_call (e, name))
6240 return false;
6241 gcc_assert (!e->value.compcall.tbp->is_generic);
6242
6243 /* Take the rank from the function's symbol. */
6244 if (e->value.compcall.tbp->u.specific->n.sym->as)
6245 e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
6246
6247 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6248 arglist to the TBP's binding target. */
6249
6250 if (!resolve_typebound_static (e, &target, &newactual))
6251 return false;
6252
6253 e->value.function.actual = newactual;
6254 e->value.function.name = NULL;
6255 e->value.function.esym = target->n.sym;
6256 e->value.function.isym = NULL;
6257 e->symtree = target;
6258 e->ts = target->n.sym->ts;
6259 e->expr_type = EXPR_FUNCTION;
6260
6261 /* Resolution is not necessary if this is a class subroutine; this
6262 function only has to identify the specific proc. Resolution of
6263 the call will be done next in resolve_typebound_call. */
6264 return gfc_resolve_expr (e);
6265 }
6266
6267
6268 static bool resolve_fl_derived (gfc_symbol *sym);
6269
6270
6271 /* Resolve a typebound function, or 'method'. First separate all
6272 the non-CLASS references by calling resolve_compcall directly. */
6273
6274 static bool
6275 resolve_typebound_function (gfc_expr* e)
6276 {
6277 gfc_symbol *declared;
6278 gfc_component *c;
6279 gfc_ref *new_ref;
6280 gfc_ref *class_ref;
6281 gfc_symtree *st;
6282 const char *name;
6283 gfc_typespec ts;
6284 gfc_expr *expr;
6285 bool overridable;
6286
6287 st = e->symtree;
6288
6289 /* Deal with typebound operators for CLASS objects. */
6290 expr = e->value.compcall.base_object;
6291 overridable = !e->value.compcall.tbp->non_overridable;
6292 if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
6293 {
6294 /* If the base_object is not a variable, the corresponding actual
6295 argument expression must be stored in e->base_expression so
6296 that the corresponding tree temporary can be used as the base
6297 object in gfc_conv_procedure_call. */
6298 if (expr->expr_type != EXPR_VARIABLE)
6299 {
6300 gfc_actual_arglist *args;
6301
6302 for (args= e->value.function.actual; args; args = args->next)
6303 {
6304 if (expr == args->expr)
6305 expr = args->expr;
6306 }
6307 }
6308
6309 /* Since the typebound operators are generic, we have to ensure
6310 that any delays in resolution are corrected and that the vtab
6311 is present. */
6312 ts = expr->ts;
6313 declared = ts.u.derived;
6314 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6315 if (c->ts.u.derived == NULL)
6316 c->ts.u.derived = gfc_find_derived_vtab (declared);
6317
6318 if (!resolve_compcall (e, &name))
6319 return false;
6320
6321 /* Use the generic name if it is there. */
6322 name = name ? name : e->value.function.esym->name;
6323 e->symtree = expr->symtree;
6324 e->ref = gfc_copy_ref (expr->ref);
6325 get_declared_from_expr (&class_ref, NULL, e, false);
6326
6327 /* Trim away the extraneous references that emerge from nested
6328 use of interface.c (extend_expr). */
6329 if (class_ref && class_ref->next)
6330 {
6331 gfc_free_ref_list (class_ref->next);
6332 class_ref->next = NULL;
6333 }
6334 else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
6335 {
6336 gfc_free_ref_list (e->ref);
6337 e->ref = NULL;
6338 }
6339
6340 gfc_add_vptr_component (e);
6341 gfc_add_component_ref (e, name);
6342 e->value.function.esym = NULL;
6343 if (expr->expr_type != EXPR_VARIABLE)
6344 e->base_expr = expr;
6345 return true;
6346 }
6347
6348 if (st == NULL)
6349 return resolve_compcall (e, NULL);
6350
6351 if (!resolve_ref (e))
6352 return false;
6353
6354 /* Get the CLASS declared type. */
6355 declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
6356
6357 if (!resolve_fl_derived (declared))
6358 return false;
6359
6360 /* Weed out cases of the ultimate component being a derived type. */
6361 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6362 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6363 {
6364 gfc_free_ref_list (new_ref);
6365 return resolve_compcall (e, NULL);
6366 }
6367
6368 c = gfc_find_component (declared, "_data", true, true, NULL);
6369 declared = c->ts.u.derived;
6370
6371 /* Treat the call as if it is a typebound procedure, in order to roll
6372 out the correct name for the specific function. */
6373 if (!resolve_compcall (e, &name))
6374 {
6375 gfc_free_ref_list (new_ref);
6376 return false;
6377 }
6378 ts = e->ts;
6379
6380 if (overridable)
6381 {
6382 /* Convert the expression to a procedure pointer component call. */
6383 e->value.function.esym = NULL;
6384 e->symtree = st;
6385
6386 if (new_ref)
6387 e->ref = new_ref;
6388
6389 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6390 gfc_add_vptr_component (e);
6391 gfc_add_component_ref (e, name);
6392
6393 /* Recover the typespec for the expression. This is really only
6394 necessary for generic procedures, where the additional call
6395 to gfc_add_component_ref seems to throw the collection of the
6396 correct typespec. */
6397 e->ts = ts;
6398 }
6399 else if (new_ref)
6400 gfc_free_ref_list (new_ref);
6401
6402 return true;
6403 }
6404
6405 /* Resolve a typebound subroutine, or 'method'. First separate all
6406 the non-CLASS references by calling resolve_typebound_call
6407 directly. */
6408
6409 static bool
6410 resolve_typebound_subroutine (gfc_code *code)
6411 {
6412 gfc_symbol *declared;
6413 gfc_component *c;
6414 gfc_ref *new_ref;
6415 gfc_ref *class_ref;
6416 gfc_symtree *st;
6417 const char *name;
6418 gfc_typespec ts;
6419 gfc_expr *expr;
6420 bool overridable;
6421
6422 st = code->expr1->symtree;
6423
6424 /* Deal with typebound operators for CLASS objects. */
6425 expr = code->expr1->value.compcall.base_object;
6426 overridable = !code->expr1->value.compcall.tbp->non_overridable;
6427 if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
6428 {
6429 /* If the base_object is not a variable, the corresponding actual
6430 argument expression must be stored in e->base_expression so
6431 that the corresponding tree temporary can be used as the base
6432 object in gfc_conv_procedure_call. */
6433 if (expr->expr_type != EXPR_VARIABLE)
6434 {
6435 gfc_actual_arglist *args;
6436
6437 args= code->expr1->value.function.actual;
6438 for (; args; args = args->next)
6439 if (expr == args->expr)
6440 expr = args->expr;
6441 }
6442
6443 /* Since the typebound operators are generic, we have to ensure
6444 that any delays in resolution are corrected and that the vtab
6445 is present. */
6446 declared = expr->ts.u.derived;
6447 c = gfc_find_component (declared, "_vptr", true, true, NULL);
6448 if (c->ts.u.derived == NULL)
6449 c->ts.u.derived = gfc_find_derived_vtab (declared);
6450
6451 if (!resolve_typebound_call (code, &name, NULL))
6452 return false;
6453
6454 /* Use the generic name if it is there. */
6455 name = name ? name : code->expr1->value.function.esym->name;
6456 code->expr1->symtree = expr->symtree;
6457 code->expr1->ref = gfc_copy_ref (expr->ref);
6458
6459 /* Trim away the extraneous references that emerge from nested
6460 use of interface.c (extend_expr). */
6461 get_declared_from_expr (&class_ref, NULL, code->expr1, false);
6462 if (class_ref && class_ref->next)
6463 {
6464 gfc_free_ref_list (class_ref->next);
6465 class_ref->next = NULL;
6466 }
6467 else if (code->expr1->ref && !class_ref)
6468 {
6469 gfc_free_ref_list (code->expr1->ref);
6470 code->expr1->ref = NULL;
6471 }
6472
6473 /* Now use the procedure in the vtable. */
6474 gfc_add_vptr_component (code->expr1);
6475 gfc_add_component_ref (code->expr1, name);
6476 code->expr1->value.function.esym = NULL;
6477 if (expr->expr_type != EXPR_VARIABLE)
6478 code->expr1->base_expr = expr;
6479 return true;
6480 }
6481
6482 if (st == NULL)
6483 return resolve_typebound_call (code, NULL, NULL);
6484
6485 if (!resolve_ref (code->expr1))
6486 return false;
6487
6488 /* Get the CLASS declared type. */
6489 get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
6490
6491 /* Weed out cases of the ultimate component being a derived type. */
6492 if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
6493 || (!class_ref && st->n.sym->ts.type != BT_CLASS))
6494 {
6495 gfc_free_ref_list (new_ref);
6496 return resolve_typebound_call (code, NULL, NULL);
6497 }
6498
6499 if (!resolve_typebound_call (code, &name, &overridable))
6500 {
6501 gfc_free_ref_list (new_ref);
6502 return false;
6503 }
6504 ts = code->expr1->ts;
6505
6506 if (overridable)
6507 {
6508 /* Convert the expression to a procedure pointer component call. */
6509 code->expr1->value.function.esym = NULL;
6510 code->expr1->symtree = st;
6511
6512 if (new_ref)
6513 code->expr1->ref = new_ref;
6514
6515 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6516 gfc_add_vptr_component (code->expr1);
6517 gfc_add_component_ref (code->expr1, name);
6518
6519 /* Recover the typespec for the expression. This is really only
6520 necessary for generic procedures, where the additional call
6521 to gfc_add_component_ref seems to throw the collection of the
6522 correct typespec. */
6523 code->expr1->ts = ts;
6524 }
6525 else if (new_ref)
6526 gfc_free_ref_list (new_ref);
6527
6528 return true;
6529 }
6530
6531
6532 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6533
6534 static bool
6535 resolve_ppc_call (gfc_code* c)
6536 {
6537 gfc_component *comp;
6538
6539 comp = gfc_get_proc_ptr_comp (c->expr1);
6540 gcc_assert (comp != NULL);
6541
6542 c->resolved_sym = c->expr1->symtree->n.sym;
6543 c->expr1->expr_type = EXPR_VARIABLE;
6544
6545 if (!comp->attr.subroutine)
6546 gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
6547
6548 if (!resolve_ref (c->expr1))
6549 return false;
6550
6551 if (!update_ppc_arglist (c->expr1))
6552 return false;
6553
6554 c->ext.actual = c->expr1->value.compcall.actual;
6555
6556 if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
6557 !(comp->ts.interface
6558 && comp->ts.interface->formal)))
6559 return false;
6560
6561 if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
6562 return false;
6563
6564 gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
6565
6566 return true;
6567 }
6568
6569
6570 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6571
6572 static bool
6573 resolve_expr_ppc (gfc_expr* e)
6574 {
6575 gfc_component *comp;
6576
6577 comp = gfc_get_proc_ptr_comp (e);
6578 gcc_assert (comp != NULL);
6579
6580 /* Convert to EXPR_FUNCTION. */
6581 e->expr_type = EXPR_FUNCTION;
6582 e->value.function.isym = NULL;
6583 e->value.function.actual = e->value.compcall.actual;
6584 e->ts = comp->ts;
6585 if (comp->as != NULL)
6586 e->rank = comp->as->rank;
6587
6588 if (!comp->attr.function)
6589 gfc_add_function (&comp->attr, comp->name, &e->where);
6590
6591 if (!resolve_ref (e))
6592 return false;
6593
6594 if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
6595 !(comp->ts.interface
6596 && comp->ts.interface->formal)))
6597 return false;
6598
6599 if (!update_ppc_arglist (e))
6600 return false;
6601
6602 if (!check_pure_function(e))
6603 return false;
6604
6605 gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
6606
6607 return true;
6608 }
6609
6610
6611 static bool
6612 gfc_is_expandable_expr (gfc_expr *e)
6613 {
6614 gfc_constructor *con;
6615
6616 if (e->expr_type == EXPR_ARRAY)
6617 {
6618 /* Traverse the constructor looking for variables that are flavor
6619 parameter. Parameters must be expanded since they are fully used at
6620 compile time. */
6621 con = gfc_constructor_first (e->value.constructor);
6622 for (; con; con = gfc_constructor_next (con))
6623 {
6624 if (con->expr->expr_type == EXPR_VARIABLE
6625 && con->expr->symtree
6626 && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
6627 || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
6628 return true;
6629 if (con->expr->expr_type == EXPR_ARRAY
6630 && gfc_is_expandable_expr (con->expr))
6631 return true;
6632 }
6633 }
6634
6635 return false;
6636 }
6637
6638
6639 /* Sometimes variables in specification expressions of the result
6640 of module procedures in submodules wind up not being the 'real'
6641 dummy. Find this, if possible, in the namespace of the first
6642 formal argument. */
6643
6644 static void
6645 fixup_unique_dummy (gfc_expr *e)
6646 {
6647 gfc_symtree *st = NULL;
6648 gfc_symbol *s = NULL;
6649
6650 if (e->symtree->n.sym->ns->proc_name
6651 && e->symtree->n.sym->ns->proc_name->formal)
6652 s = e->symtree->n.sym->ns->proc_name->formal->sym;
6653
6654 if (s != NULL)
6655 st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
6656
6657 if (st != NULL
6658 && st->n.sym != NULL
6659 && st->n.sym->attr.dummy)
6660 e->symtree = st;
6661 }
6662
6663 /* Resolve an expression. That is, make sure that types of operands agree
6664 with their operators, intrinsic operators are converted to function calls
6665 for overloaded types and unresolved function references are resolved. */
6666
6667 bool
6668 gfc_resolve_expr (gfc_expr *e)
6669 {
6670 bool t;
6671 bool inquiry_save, actual_arg_save, first_actual_arg_save;
6672
6673 if (e == NULL)
6674 return true;
6675
6676 /* inquiry_argument only applies to variables. */
6677 inquiry_save = inquiry_argument;
6678 actual_arg_save = actual_arg;
6679 first_actual_arg_save = first_actual_arg;
6680
6681 if (e->expr_type != EXPR_VARIABLE)
6682 {
6683 inquiry_argument = false;
6684 actual_arg = false;
6685 first_actual_arg = false;
6686 }
6687 else if (e->symtree != NULL
6688 && *e->symtree->name == '@'
6689 && e->symtree->n.sym->attr.dummy)
6690 {
6691 /* Deal with submodule specification expressions that are not
6692 found to be referenced in module.c(read_cleanup). */
6693 fixup_unique_dummy (e);
6694 }
6695
6696 switch (e->expr_type)
6697 {
6698 case EXPR_OP:
6699 t = resolve_operator (e);
6700 break;
6701
6702 case EXPR_FUNCTION:
6703 case EXPR_VARIABLE:
6704
6705 if (check_host_association (e))
6706 t = resolve_function (e);
6707 else
6708 t = resolve_variable (e);
6709
6710 if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
6711 && e->ref->type != REF_SUBSTRING)
6712 gfc_resolve_substring_charlen (e);
6713
6714 break;
6715
6716 case EXPR_COMPCALL:
6717 t = resolve_typebound_function (e);
6718 break;
6719
6720 case EXPR_SUBSTRING:
6721 t = resolve_ref (e);
6722 break;
6723
6724 case EXPR_CONSTANT:
6725 case EXPR_NULL:
6726 t = true;
6727 break;
6728
6729 case EXPR_PPC:
6730 t = resolve_expr_ppc (e);
6731 break;
6732
6733 case EXPR_ARRAY:
6734 t = false;
6735 if (!resolve_ref (e))
6736 break;
6737
6738 t = gfc_resolve_array_constructor (e);
6739 /* Also try to expand a constructor. */
6740 if (t)
6741 {
6742 expression_rank (e);
6743 if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
6744 gfc_expand_constructor (e, false);
6745 }
6746
6747 /* This provides the opportunity for the length of constructors with
6748 character valued function elements to propagate the string length
6749 to the expression. */
6750 if (t && e->ts.type == BT_CHARACTER)
6751 {
6752 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
6753 here rather then add a duplicate test for it above. */
6754 gfc_expand_constructor (e, false);
6755 t = gfc_resolve_character_array_constructor (e);
6756 }
6757
6758 break;
6759
6760 case EXPR_STRUCTURE:
6761 t = resolve_ref (e);
6762 if (!t)
6763 break;
6764
6765 t = resolve_structure_cons (e, 0);
6766 if (!t)
6767 break;
6768
6769 t = gfc_simplify_expr (e, 0);
6770 break;
6771
6772 default:
6773 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
6774 }
6775
6776 if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
6777 fixup_charlen (e);
6778
6779 inquiry_argument = inquiry_save;
6780 actual_arg = actual_arg_save;
6781 first_actual_arg = first_actual_arg_save;
6782
6783 return t;
6784 }
6785
6786
6787 /* Resolve an expression from an iterator. They must be scalar and have
6788 INTEGER or (optionally) REAL type. */
6789
6790 static bool
6791 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
6792 const char *name_msgid)
6793 {
6794 if (!gfc_resolve_expr (expr))
6795 return false;
6796
6797 if (expr->rank != 0)
6798 {
6799 gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
6800 return false;
6801 }
6802
6803 if (expr->ts.type != BT_INTEGER)
6804 {
6805 if (expr->ts.type == BT_REAL)
6806 {
6807 if (real_ok)
6808 return gfc_notify_std (GFC_STD_F95_DEL,
6809 "%s at %L must be integer",
6810 _(name_msgid), &expr->where);
6811 else
6812 {
6813 gfc_error ("%s at %L must be INTEGER", _(name_msgid),
6814 &expr->where);
6815 return false;
6816 }
6817 }
6818 else
6819 {
6820 gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
6821 return false;
6822 }
6823 }
6824 return true;
6825 }
6826
6827
6828 /* Resolve the expressions in an iterator structure. If REAL_OK is
6829 false allow only INTEGER type iterators, otherwise allow REAL types.
6830 Set own_scope to true for ac-implied-do and data-implied-do as those
6831 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
6832
6833 bool
6834 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
6835 {
6836 if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
6837 return false;
6838
6839 if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
6840 _("iterator variable")))
6841 return false;
6842
6843 if (!gfc_resolve_iterator_expr (iter->start, real_ok,
6844 "Start expression in DO loop"))
6845 return false;
6846
6847 if (!gfc_resolve_iterator_expr (iter->end, real_ok,
6848 "End expression in DO loop"))
6849 return false;
6850
6851 if (!gfc_resolve_iterator_expr (iter->step, real_ok,
6852 "Step expression in DO loop"))
6853 return false;
6854
6855 if (iter->step->expr_type == EXPR_CONSTANT)
6856 {
6857 if ((iter->step->ts.type == BT_INTEGER
6858 && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
6859 || (iter->step->ts.type == BT_REAL
6860 && mpfr_sgn (iter->step->value.real) == 0))
6861 {
6862 gfc_error ("Step expression in DO loop at %L cannot be zero",
6863 &iter->step->where);
6864 return false;
6865 }
6866 }
6867
6868 /* Convert start, end, and step to the same type as var. */
6869 if (iter->start->ts.kind != iter->var->ts.kind
6870 || iter->start->ts.type != iter->var->ts.type)
6871 gfc_convert_type (iter->start, &iter->var->ts, 1);
6872
6873 if (iter->end->ts.kind != iter->var->ts.kind
6874 || iter->end->ts.type != iter->var->ts.type)
6875 gfc_convert_type (iter->end, &iter->var->ts, 1);
6876
6877 if (iter->step->ts.kind != iter->var->ts.kind
6878 || iter->step->ts.type != iter->var->ts.type)
6879 gfc_convert_type (iter->step, &iter->var->ts, 1);
6880
6881 if (iter->start->expr_type == EXPR_CONSTANT
6882 && iter->end->expr_type == EXPR_CONSTANT
6883 && iter->step->expr_type == EXPR_CONSTANT)
6884 {
6885 int sgn, cmp;
6886 if (iter->start->ts.type == BT_INTEGER)
6887 {
6888 sgn = mpz_cmp_ui (iter->step->value.integer, 0);
6889 cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
6890 }
6891 else
6892 {
6893 sgn = mpfr_sgn (iter->step->value.real);
6894 cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
6895 }
6896 if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
6897 gfc_warning (OPT_Wzerotrip,
6898 "DO loop at %L will be executed zero times",
6899 &iter->step->where);
6900 }
6901
6902 if (iter->end->expr_type == EXPR_CONSTANT
6903 && iter->end->ts.type == BT_INTEGER
6904 && iter->step->expr_type == EXPR_CONSTANT
6905 && iter->step->ts.type == BT_INTEGER
6906 && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
6907 || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
6908 {
6909 bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
6910 int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
6911
6912 if (is_step_positive
6913 && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
6914 gfc_warning (OPT_Wundefined_do_loop,
6915 "DO loop at %L is undefined as it overflows",
6916 &iter->step->where);
6917 else if (!is_step_positive
6918 && mpz_cmp (iter->end->value.integer,
6919 gfc_integer_kinds[k].min_int) == 0)
6920 gfc_warning (OPT_Wundefined_do_loop,
6921 "DO loop at %L is undefined as it underflows",
6922 &iter->step->where);
6923 }
6924
6925 return true;
6926 }
6927
6928
6929 /* Traversal function for find_forall_index. f == 2 signals that
6930 that variable itself is not to be checked - only the references. */
6931
6932 static bool
6933 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
6934 {
6935 if (expr->expr_type != EXPR_VARIABLE)
6936 return false;
6937
6938 /* A scalar assignment */
6939 if (!expr->ref || *f == 1)
6940 {
6941 if (expr->symtree->n.sym == sym)
6942 return true;
6943 else
6944 return false;
6945 }
6946
6947 if (*f == 2)
6948 *f = 1;
6949 return false;
6950 }
6951
6952
6953 /* Check whether the FORALL index appears in the expression or not.
6954 Returns true if SYM is found in EXPR. */
6955
6956 bool
6957 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
6958 {
6959 if (gfc_traverse_expr (expr, sym, forall_index, f))
6960 return true;
6961 else
6962 return false;
6963 }
6964
6965
6966 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
6967 to be a scalar INTEGER variable. The subscripts and stride are scalar
6968 INTEGERs, and if stride is a constant it must be nonzero.
6969 Furthermore "A subscript or stride in a forall-triplet-spec shall
6970 not contain a reference to any index-name in the
6971 forall-triplet-spec-list in which it appears." (7.5.4.1) */
6972
6973 static void
6974 resolve_forall_iterators (gfc_forall_iterator *it)
6975 {
6976 gfc_forall_iterator *iter, *iter2;
6977
6978 for (iter = it; iter; iter = iter->next)
6979 {
6980 if (gfc_resolve_expr (iter->var)
6981 && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
6982 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
6983 &iter->var->where);
6984
6985 if (gfc_resolve_expr (iter->start)
6986 && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
6987 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
6988 &iter->start->where);
6989 if (iter->var->ts.kind != iter->start->ts.kind)
6990 gfc_convert_type (iter->start, &iter->var->ts, 1);
6991
6992 if (gfc_resolve_expr (iter->end)
6993 && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
6994 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
6995 &iter->end->where);
6996 if (iter->var->ts.kind != iter->end->ts.kind)
6997 gfc_convert_type (iter->end, &iter->var->ts, 1);
6998
6999 if (gfc_resolve_expr (iter->stride))
7000 {
7001 if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
7002 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7003 &iter->stride->where, "INTEGER");
7004
7005 if (iter->stride->expr_type == EXPR_CONSTANT
7006 && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
7007 gfc_error ("FORALL stride expression at %L cannot be zero",
7008 &iter->stride->where);
7009 }
7010 if (iter->var->ts.kind != iter->stride->ts.kind)
7011 gfc_convert_type (iter->stride, &iter->var->ts, 1);
7012 }
7013
7014 for (iter = it; iter; iter = iter->next)
7015 for (iter2 = iter; iter2; iter2 = iter2->next)
7016 {
7017 if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
7018 || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
7019 || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
7020 gfc_error ("FORALL index %qs may not appear in triplet "
7021 "specification at %L", iter->var->symtree->name,
7022 &iter2->start->where);
7023 }
7024 }
7025
7026
7027 /* Given a pointer to a symbol that is a derived type, see if it's
7028 inaccessible, i.e. if it's defined in another module and the components are
7029 PRIVATE. The search is recursive if necessary. Returns zero if no
7030 inaccessible components are found, nonzero otherwise. */
7031
7032 static int
7033 derived_inaccessible (gfc_symbol *sym)
7034 {
7035 gfc_component *c;
7036
7037 if (sym->attr.use_assoc && sym->attr.private_comp)
7038 return 1;
7039
7040 for (c = sym->components; c; c = c->next)
7041 {
7042 /* Prevent an infinite loop through this function. */
7043 if (c->ts.type == BT_DERIVED && c->attr.pointer
7044 && sym == c->ts.u.derived)
7045 continue;
7046
7047 if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
7048 return 1;
7049 }
7050
7051 return 0;
7052 }
7053
7054
7055 /* Resolve the argument of a deallocate expression. The expression must be
7056 a pointer or a full array. */
7057
7058 static bool
7059 resolve_deallocate_expr (gfc_expr *e)
7060 {
7061 symbol_attribute attr;
7062 int allocatable, pointer;
7063 gfc_ref *ref;
7064 gfc_symbol *sym;
7065 gfc_component *c;
7066 bool unlimited;
7067
7068 if (!gfc_resolve_expr (e))
7069 return false;
7070
7071 if (e->expr_type != EXPR_VARIABLE)
7072 goto bad;
7073
7074 sym = e->symtree->n.sym;
7075 unlimited = UNLIMITED_POLY(sym);
7076
7077 if (sym->ts.type == BT_CLASS)
7078 {
7079 allocatable = CLASS_DATA (sym)->attr.allocatable;
7080 pointer = CLASS_DATA (sym)->attr.class_pointer;
7081 }
7082 else
7083 {
7084 allocatable = sym->attr.allocatable;
7085 pointer = sym->attr.pointer;
7086 }
7087 for (ref = e->ref; ref; ref = ref->next)
7088 {
7089 switch (ref->type)
7090 {
7091 case REF_ARRAY:
7092 if (ref->u.ar.type != AR_FULL
7093 && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
7094 && ref->u.ar.codimen && gfc_ref_this_image (ref)))
7095 allocatable = 0;
7096 break;
7097
7098 case REF_COMPONENT:
7099 c = ref->u.c.component;
7100 if (c->ts.type == BT_CLASS)
7101 {
7102 allocatable = CLASS_DATA (c)->attr.allocatable;
7103 pointer = CLASS_DATA (c)->attr.class_pointer;
7104 }
7105 else
7106 {
7107 allocatable = c->attr.allocatable;
7108 pointer = c->attr.pointer;
7109 }
7110 break;
7111
7112 case REF_SUBSTRING:
7113 allocatable = 0;
7114 break;
7115 }
7116 }
7117
7118 attr = gfc_expr_attr (e);
7119
7120 if (allocatable == 0 && attr.pointer == 0 && !unlimited)
7121 {
7122 bad:
7123 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7124 &e->where);
7125 return false;
7126 }
7127
7128 /* F2008, C644. */
7129 if (gfc_is_coindexed (e))
7130 {
7131 gfc_error ("Coindexed allocatable object at %L", &e->where);
7132 return false;
7133 }
7134
7135 if (pointer
7136 && !gfc_check_vardef_context (e, true, true, false,
7137 _("DEALLOCATE object")))
7138 return false;
7139 if (!gfc_check_vardef_context (e, false, true, false,
7140 _("DEALLOCATE object")))
7141 return false;
7142
7143 return true;
7144 }
7145
7146
7147 /* Returns true if the expression e contains a reference to the symbol sym. */
7148 static bool
7149 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
7150 {
7151 if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
7152 return true;
7153
7154 return false;
7155 }
7156
7157 bool
7158 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
7159 {
7160 return gfc_traverse_expr (e, sym, sym_in_expr, 0);
7161 }
7162
7163
7164 /* Given the expression node e for an allocatable/pointer of derived type to be
7165 allocated, get the expression node to be initialized afterwards (needed for
7166 derived types with default initializers, and derived types with allocatable
7167 components that need nullification.) */
7168
7169 gfc_expr *
7170 gfc_expr_to_initialize (gfc_expr *e)
7171 {
7172 gfc_expr *result;
7173 gfc_ref *ref;
7174 int i;
7175
7176 result = gfc_copy_expr (e);
7177
7178 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7179 for (ref = result->ref; ref; ref = ref->next)
7180 if (ref->type == REF_ARRAY && ref->next == NULL)
7181 {
7182 ref->u.ar.type = AR_FULL;
7183
7184 for (i = 0; i < ref->u.ar.dimen; i++)
7185 ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
7186
7187 break;
7188 }
7189
7190 gfc_free_shape (&result->shape, result->rank);
7191
7192 /* Recalculate rank, shape, etc. */
7193 gfc_resolve_expr (result);
7194 return result;
7195 }
7196
7197
7198 /* If the last ref of an expression is an array ref, return a copy of the
7199 expression with that one removed. Otherwise, a copy of the original
7200 expression. This is used for allocate-expressions and pointer assignment
7201 LHS, where there may be an array specification that needs to be stripped
7202 off when using gfc_check_vardef_context. */
7203
7204 static gfc_expr*
7205 remove_last_array_ref (gfc_expr* e)
7206 {
7207 gfc_expr* e2;
7208 gfc_ref** r;
7209
7210 e2 = gfc_copy_expr (e);
7211 for (r = &e2->ref; *r; r = &(*r)->next)
7212 if ((*r)->type == REF_ARRAY && !(*r)->next)
7213 {
7214 gfc_free_ref_list (*r);
7215 *r = NULL;
7216 break;
7217 }
7218
7219 return e2;
7220 }
7221
7222
7223 /* Used in resolve_allocate_expr to check that a allocation-object and
7224 a source-expr are conformable. This does not catch all possible
7225 cases; in particular a runtime checking is needed. */
7226
7227 static bool
7228 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
7229 {
7230 gfc_ref *tail;
7231 for (tail = e2->ref; tail && tail->next; tail = tail->next);
7232
7233 /* First compare rank. */
7234 if ((tail && e1->rank != tail->u.ar.as->rank)
7235 || (!tail && e1->rank != e2->rank))
7236 {
7237 gfc_error ("Source-expr at %L must be scalar or have the "
7238 "same rank as the allocate-object at %L",
7239 &e1->where, &e2->where);
7240 return false;
7241 }
7242
7243 if (e1->shape)
7244 {
7245 int i;
7246 mpz_t s;
7247
7248 mpz_init (s);
7249
7250 for (i = 0; i < e1->rank; i++)
7251 {
7252 if (tail->u.ar.start[i] == NULL)
7253 break;
7254
7255 if (tail->u.ar.end[i])
7256 {
7257 mpz_set (s, tail->u.ar.end[i]->value.integer);
7258 mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
7259 mpz_add_ui (s, s, 1);
7260 }
7261 else
7262 {
7263 mpz_set (s, tail->u.ar.start[i]->value.integer);
7264 }
7265
7266 if (mpz_cmp (e1->shape[i], s) != 0)
7267 {
7268 gfc_error ("Source-expr at %L and allocate-object at %L must "
7269 "have the same shape", &e1->where, &e2->where);
7270 mpz_clear (s);
7271 return false;
7272 }
7273 }
7274
7275 mpz_clear (s);
7276 }
7277
7278 return true;
7279 }
7280
7281
7282 /* Resolve the expression in an ALLOCATE statement, doing the additional
7283 checks to see whether the expression is OK or not. The expression must
7284 have a trailing array reference that gives the size of the array. */
7285
7286 static bool
7287 resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
7288 {
7289 int i, pointer, allocatable, dimension, is_abstract;
7290 int codimension;
7291 bool coindexed;
7292 bool unlimited;
7293 symbol_attribute attr;
7294 gfc_ref *ref, *ref2;
7295 gfc_expr *e2;
7296 gfc_array_ref *ar;
7297 gfc_symbol *sym = NULL;
7298 gfc_alloc *a;
7299 gfc_component *c;
7300 bool t;
7301
7302 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7303 checking of coarrays. */
7304 for (ref = e->ref; ref; ref = ref->next)
7305 if (ref->next == NULL)
7306 break;
7307
7308 if (ref && ref->type == REF_ARRAY)
7309 ref->u.ar.in_allocate = true;
7310
7311 if (!gfc_resolve_expr (e))
7312 goto failure;
7313
7314 /* Make sure the expression is allocatable or a pointer. If it is
7315 pointer, the next-to-last reference must be a pointer. */
7316
7317 ref2 = NULL;
7318 if (e->symtree)
7319 sym = e->symtree->n.sym;
7320
7321 /* Check whether ultimate component is abstract and CLASS. */
7322 is_abstract = 0;
7323
7324 /* Is the allocate-object unlimited polymorphic? */
7325 unlimited = UNLIMITED_POLY(e);
7326
7327 if (e->expr_type != EXPR_VARIABLE)
7328 {
7329 allocatable = 0;
7330 attr = gfc_expr_attr (e);
7331 pointer = attr.pointer;
7332 dimension = attr.dimension;
7333 codimension = attr.codimension;
7334 }
7335 else
7336 {
7337 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
7338 {
7339 allocatable = CLASS_DATA (sym)->attr.allocatable;
7340 pointer = CLASS_DATA (sym)->attr.class_pointer;
7341 dimension = CLASS_DATA (sym)->attr.dimension;
7342 codimension = CLASS_DATA (sym)->attr.codimension;
7343 is_abstract = CLASS_DATA (sym)->attr.abstract;
7344 }
7345 else
7346 {
7347 allocatable = sym->attr.allocatable;
7348 pointer = sym->attr.pointer;
7349 dimension = sym->attr.dimension;
7350 codimension = sym->attr.codimension;
7351 }
7352
7353 coindexed = false;
7354
7355 for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
7356 {
7357 switch (ref->type)
7358 {
7359 case REF_ARRAY:
7360 if (ref->u.ar.codimen > 0)
7361 {
7362 int n;
7363 for (n = ref->u.ar.dimen;
7364 n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
7365 if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
7366 {
7367 coindexed = true;
7368 break;
7369 }
7370 }
7371
7372 if (ref->next != NULL)
7373 pointer = 0;
7374 break;
7375
7376 case REF_COMPONENT:
7377 /* F2008, C644. */
7378 if (coindexed)
7379 {
7380 gfc_error ("Coindexed allocatable object at %L",
7381 &e->where);
7382 goto failure;
7383 }
7384
7385 c = ref->u.c.component;
7386 if (c->ts.type == BT_CLASS)
7387 {
7388 allocatable = CLASS_DATA (c)->attr.allocatable;
7389 pointer = CLASS_DATA (c)->attr.class_pointer;
7390 dimension = CLASS_DATA (c)->attr.dimension;
7391 codimension = CLASS_DATA (c)->attr.codimension;
7392 is_abstract = CLASS_DATA (c)->attr.abstract;
7393 }
7394 else
7395 {
7396 allocatable = c->attr.allocatable;
7397 pointer = c->attr.pointer;
7398 dimension = c->attr.dimension;
7399 codimension = c->attr.codimension;
7400 is_abstract = c->attr.abstract;
7401 }
7402 break;
7403
7404 case REF_SUBSTRING:
7405 allocatable = 0;
7406 pointer = 0;
7407 break;
7408 }
7409 }
7410 }
7411
7412 /* Check for F08:C628. */
7413 if (allocatable == 0 && pointer == 0 && !unlimited)
7414 {
7415 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7416 &e->where);
7417 goto failure;
7418 }
7419
7420 /* Some checks for the SOURCE tag. */
7421 if (code->expr3)
7422 {
7423 /* Check F03:C631. */
7424 if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
7425 {
7426 gfc_error ("Type of entity at %L is type incompatible with "
7427 "source-expr at %L", &e->where, &code->expr3->where);
7428 goto failure;
7429 }
7430
7431 /* Check F03:C632 and restriction following Note 6.18. */
7432 if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
7433 goto failure;
7434
7435 /* Check F03:C633. */
7436 if (code->expr3->ts.kind != e->ts.kind && !unlimited)
7437 {
7438 gfc_error ("The allocate-object at %L and the source-expr at %L "
7439 "shall have the same kind type parameter",
7440 &e->where, &code->expr3->where);
7441 goto failure;
7442 }
7443
7444 /* Check F2008, C642. */
7445 if (code->expr3->ts.type == BT_DERIVED
7446 && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
7447 || (code->expr3->ts.u.derived->from_intmod
7448 == INTMOD_ISO_FORTRAN_ENV
7449 && code->expr3->ts.u.derived->intmod_sym_id
7450 == ISOFORTRAN_LOCK_TYPE)))
7451 {
7452 gfc_error ("The source-expr at %L shall neither be of type "
7453 "LOCK_TYPE nor have a LOCK_TYPE component if "
7454 "allocate-object at %L is a coarray",
7455 &code->expr3->where, &e->where);
7456 goto failure;
7457 }
7458
7459 /* Check TS18508, C702/C703. */
7460 if (code->expr3->ts.type == BT_DERIVED
7461 && ((codimension && gfc_expr_attr (code->expr3).event_comp)
7462 || (code->expr3->ts.u.derived->from_intmod
7463 == INTMOD_ISO_FORTRAN_ENV
7464 && code->expr3->ts.u.derived->intmod_sym_id
7465 == ISOFORTRAN_EVENT_TYPE)))
7466 {
7467 gfc_error ("The source-expr at %L shall neither be of type "
7468 "EVENT_TYPE nor have a EVENT_TYPE component if "
7469 "allocate-object at %L is a coarray",
7470 &code->expr3->where, &e->where);
7471 goto failure;
7472 }
7473 }
7474
7475 /* Check F08:C629. */
7476 if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
7477 && !code->expr3)
7478 {
7479 gcc_assert (e->ts.type == BT_CLASS);
7480 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7481 "type-spec or source-expr", sym->name, &e->where);
7482 goto failure;
7483 }
7484
7485 /* Check F08:C632. */
7486 if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
7487 && !UNLIMITED_POLY (e))
7488 {
7489 int cmp;
7490
7491 if (!e->ts.u.cl->length)
7492 goto failure;
7493
7494 cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
7495 code->ext.alloc.ts.u.cl->length);
7496 if (cmp == 1 || cmp == -1 || cmp == -3)
7497 {
7498 gfc_error ("Allocating %s at %L with type-spec requires the same "
7499 "character-length parameter as in the declaration",
7500 sym->name, &e->where);
7501 goto failure;
7502 }
7503 }
7504
7505 /* In the variable definition context checks, gfc_expr_attr is used
7506 on the expression. This is fooled by the array specification
7507 present in e, thus we have to eliminate that one temporarily. */
7508 e2 = remove_last_array_ref (e);
7509 t = true;
7510 if (t && pointer)
7511 t = gfc_check_vardef_context (e2, true, true, false,
7512 _("ALLOCATE object"));
7513 if (t)
7514 t = gfc_check_vardef_context (e2, false, true, false,
7515 _("ALLOCATE object"));
7516 gfc_free_expr (e2);
7517 if (!t)
7518 goto failure;
7519
7520 if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
7521 && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
7522 {
7523 /* For class arrays, the initialization with SOURCE is done
7524 using _copy and trans_call. It is convenient to exploit that
7525 when the allocated type is different from the declared type but
7526 no SOURCE exists by setting expr3. */
7527 code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
7528 }
7529 else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
7530 && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
7531 && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
7532 {
7533 /* We have to zero initialize the integer variable. */
7534 code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
7535 }
7536
7537 if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
7538 {
7539 /* Make sure the vtab symbol is present when
7540 the module variables are generated. */
7541 gfc_typespec ts = e->ts;
7542 if (code->expr3)
7543 ts = code->expr3->ts;
7544 else if (code->ext.alloc.ts.type == BT_DERIVED)
7545 ts = code->ext.alloc.ts;
7546
7547 /* Finding the vtab also publishes the type's symbol. Therefore this
7548 statement is necessary. */
7549 gfc_find_derived_vtab (ts.u.derived);
7550 }
7551 else if (unlimited && !UNLIMITED_POLY (code->expr3))
7552 {
7553 /* Again, make sure the vtab symbol is present when
7554 the module variables are generated. */
7555 gfc_typespec *ts = NULL;
7556 if (code->expr3)
7557 ts = &code->expr3->ts;
7558 else
7559 ts = &code->ext.alloc.ts;
7560
7561 gcc_assert (ts);
7562
7563 /* Finding the vtab also publishes the type's symbol. Therefore this
7564 statement is necessary. */
7565 gfc_find_vtab (ts);
7566 }
7567
7568 if (dimension == 0 && codimension == 0)
7569 goto success;
7570
7571 /* Make sure the last reference node is an array specification. */
7572
7573 if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
7574 || (dimension && ref2->u.ar.dimen == 0))
7575 {
7576 /* F08:C633. */
7577 if (code->expr3)
7578 {
7579 if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
7580 "in ALLOCATE statement at %L", &e->where))
7581 goto failure;
7582 if (code->expr3->rank != 0)
7583 *array_alloc_wo_spec = true;
7584 else
7585 {
7586 gfc_error ("Array specification or array-valued SOURCE= "
7587 "expression required in ALLOCATE statement at %L",
7588 &e->where);
7589 goto failure;
7590 }
7591 }
7592 else
7593 {
7594 gfc_error ("Array specification required in ALLOCATE statement "
7595 "at %L", &e->where);
7596 goto failure;
7597 }
7598 }
7599
7600 /* Make sure that the array section reference makes sense in the
7601 context of an ALLOCATE specification. */
7602
7603 ar = &ref2->u.ar;
7604
7605 if (codimension)
7606 for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
7607 if (ar->dimen_type[i] == DIMEN_THIS_IMAGE)
7608 {
7609 gfc_error ("Coarray specification required in ALLOCATE statement "
7610 "at %L", &e->where);
7611 goto failure;
7612 }
7613
7614 for (i = 0; i < ar->dimen; i++)
7615 {
7616 if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
7617 goto check_symbols;
7618
7619 switch (ar->dimen_type[i])
7620 {
7621 case DIMEN_ELEMENT:
7622 break;
7623
7624 case DIMEN_RANGE:
7625 if (ar->start[i] != NULL
7626 && ar->end[i] != NULL
7627 && ar->stride[i] == NULL)
7628 break;
7629
7630 /* Fall through. */
7631
7632 case DIMEN_UNKNOWN:
7633 case DIMEN_VECTOR:
7634 case DIMEN_STAR:
7635 case DIMEN_THIS_IMAGE:
7636 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7637 &e->where);
7638 goto failure;
7639 }
7640
7641 check_symbols:
7642 for (a = code->ext.alloc.list; a; a = a->next)
7643 {
7644 sym = a->expr->symtree->n.sym;
7645
7646 /* TODO - check derived type components. */
7647 if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
7648 continue;
7649
7650 if ((ar->start[i] != NULL
7651 && gfc_find_sym_in_expr (sym, ar->start[i]))
7652 || (ar->end[i] != NULL
7653 && gfc_find_sym_in_expr (sym, ar->end[i])))
7654 {
7655 gfc_error ("%qs must not appear in the array specification at "
7656 "%L in the same ALLOCATE statement where it is "
7657 "itself allocated", sym->name, &ar->where);
7658 goto failure;
7659 }
7660 }
7661 }
7662
7663 for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
7664 {
7665 if (ar->dimen_type[i] == DIMEN_ELEMENT
7666 || ar->dimen_type[i] == DIMEN_RANGE)
7667 {
7668 if (i == (ar->dimen + ar->codimen - 1))
7669 {
7670 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
7671 "statement at %L", &e->where);
7672 goto failure;
7673 }
7674 continue;
7675 }
7676
7677 if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
7678 && ar->stride[i] == NULL)
7679 break;
7680
7681 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
7682 &e->where);
7683 goto failure;
7684 }
7685
7686 success:
7687 return true;
7688
7689 failure:
7690 return false;
7691 }
7692
7693
7694 static void
7695 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
7696 {
7697 gfc_expr *stat, *errmsg, *pe, *qe;
7698 gfc_alloc *a, *p, *q;
7699
7700 stat = code->expr1;
7701 errmsg = code->expr2;
7702
7703 /* Check the stat variable. */
7704 if (stat)
7705 {
7706 gfc_check_vardef_context (stat, false, false, false,
7707 _("STAT variable"));
7708
7709 if ((stat->ts.type != BT_INTEGER
7710 && !(stat->ref && (stat->ref->type == REF_ARRAY
7711 || stat->ref->type == REF_COMPONENT)))
7712 || stat->rank > 0)
7713 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
7714 "variable", &stat->where);
7715
7716 for (p = code->ext.alloc.list; p; p = p->next)
7717 if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
7718 {
7719 gfc_ref *ref1, *ref2;
7720 bool found = true;
7721
7722 for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
7723 ref1 = ref1->next, ref2 = ref2->next)
7724 {
7725 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7726 continue;
7727 if (ref1->u.c.component->name != ref2->u.c.component->name)
7728 {
7729 found = false;
7730 break;
7731 }
7732 }
7733
7734 if (found)
7735 {
7736 gfc_error ("Stat-variable at %L shall not be %sd within "
7737 "the same %s statement", &stat->where, fcn, fcn);
7738 break;
7739 }
7740 }
7741 }
7742
7743 /* Check the errmsg variable. */
7744 if (errmsg)
7745 {
7746 if (!stat)
7747 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
7748 &errmsg->where);
7749
7750 gfc_check_vardef_context (errmsg, false, false, false,
7751 _("ERRMSG variable"));
7752
7753 if ((errmsg->ts.type != BT_CHARACTER
7754 && !(errmsg->ref
7755 && (errmsg->ref->type == REF_ARRAY
7756 || errmsg->ref->type == REF_COMPONENT)))
7757 || errmsg->rank > 0 )
7758 gfc_error ("Errmsg-variable at %L must be a scalar CHARACTER "
7759 "variable", &errmsg->where);
7760
7761 for (p = code->ext.alloc.list; p; p = p->next)
7762 if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
7763 {
7764 gfc_ref *ref1, *ref2;
7765 bool found = true;
7766
7767 for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
7768 ref1 = ref1->next, ref2 = ref2->next)
7769 {
7770 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
7771 continue;
7772 if (ref1->u.c.component->name != ref2->u.c.component->name)
7773 {
7774 found = false;
7775 break;
7776 }
7777 }
7778
7779 if (found)
7780 {
7781 gfc_error ("Errmsg-variable at %L shall not be %sd within "
7782 "the same %s statement", &errmsg->where, fcn, fcn);
7783 break;
7784 }
7785 }
7786 }
7787
7788 /* Check that an allocate-object appears only once in the statement. */
7789
7790 for (p = code->ext.alloc.list; p; p = p->next)
7791 {
7792 pe = p->expr;
7793 for (q = p->next; q; q = q->next)
7794 {
7795 qe = q->expr;
7796 if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
7797 {
7798 /* This is a potential collision. */
7799 gfc_ref *pr = pe->ref;
7800 gfc_ref *qr = qe->ref;
7801
7802 /* Follow the references until
7803 a) They start to differ, in which case there is no error;
7804 you can deallocate a%b and a%c in a single statement
7805 b) Both of them stop, which is an error
7806 c) One of them stops, which is also an error. */
7807 while (1)
7808 {
7809 if (pr == NULL && qr == NULL)
7810 {
7811 gfc_error ("Allocate-object at %L also appears at %L",
7812 &pe->where, &qe->where);
7813 break;
7814 }
7815 else if (pr != NULL && qr == NULL)
7816 {
7817 gfc_error ("Allocate-object at %L is subobject of"
7818 " object at %L", &pe->where, &qe->where);
7819 break;
7820 }
7821 else if (pr == NULL && qr != NULL)
7822 {
7823 gfc_error ("Allocate-object at %L is subobject of"
7824 " object at %L", &qe->where, &pe->where);
7825 break;
7826 }
7827 /* Here, pr != NULL && qr != NULL */
7828 gcc_assert(pr->type == qr->type);
7829 if (pr->type == REF_ARRAY)
7830 {
7831 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
7832 which are legal. */
7833 gcc_assert (qr->type == REF_ARRAY);
7834
7835 if (pr->next && qr->next)
7836 {
7837 int i;
7838 gfc_array_ref *par = &(pr->u.ar);
7839 gfc_array_ref *qar = &(qr->u.ar);
7840
7841 for (i=0; i<par->dimen; i++)
7842 {
7843 if ((par->start[i] != NULL
7844 || qar->start[i] != NULL)
7845 && gfc_dep_compare_expr (par->start[i],
7846 qar->start[i]) != 0)
7847 goto break_label;
7848 }
7849 }
7850 }
7851 else
7852 {
7853 if (pr->u.c.component->name != qr->u.c.component->name)
7854 break;
7855 }
7856
7857 pr = pr->next;
7858 qr = qr->next;
7859 }
7860 break_label:
7861 ;
7862 }
7863 }
7864 }
7865
7866 if (strcmp (fcn, "ALLOCATE") == 0)
7867 {
7868 bool arr_alloc_wo_spec = false;
7869
7870 /* Resolving the expr3 in the loop over all objects to allocate would
7871 execute loop invariant code for each loop item. Therefore do it just
7872 once here. */
7873 if (code->expr3 && code->expr3->mold
7874 && code->expr3->ts.type == BT_DERIVED)
7875 {
7876 /* Default initialization via MOLD (non-polymorphic). */
7877 gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
7878 if (rhs != NULL)
7879 {
7880 gfc_resolve_expr (rhs);
7881 gfc_free_expr (code->expr3);
7882 code->expr3 = rhs;
7883 }
7884 }
7885 for (a = code->ext.alloc.list; a; a = a->next)
7886 resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
7887
7888 if (arr_alloc_wo_spec && code->expr3)
7889 {
7890 /* Mark the allocate to have to take the array specification
7891 from the expr3. */
7892 code->ext.alloc.arr_spec_from_expr3 = 1;
7893 }
7894 }
7895 else
7896 {
7897 for (a = code->ext.alloc.list; a; a = a->next)
7898 resolve_deallocate_expr (a->expr);
7899 }
7900 }
7901
7902
7903 /************ SELECT CASE resolution subroutines ************/
7904
7905 /* Callback function for our mergesort variant. Determines interval
7906 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
7907 op1 > op2. Assumes we're not dealing with the default case.
7908 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
7909 There are nine situations to check. */
7910
7911 static int
7912 compare_cases (const gfc_case *op1, const gfc_case *op2)
7913 {
7914 int retval;
7915
7916 if (op1->low == NULL) /* op1 = (:L) */
7917 {
7918 /* op2 = (:N), so overlap. */
7919 retval = 0;
7920 /* op2 = (M:) or (M:N), L < M */
7921 if (op2->low != NULL
7922 && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
7923 retval = -1;
7924 }
7925 else if (op1->high == NULL) /* op1 = (K:) */
7926 {
7927 /* op2 = (M:), so overlap. */
7928 retval = 0;
7929 /* op2 = (:N) or (M:N), K > N */
7930 if (op2->high != NULL
7931 && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
7932 retval = 1;
7933 }
7934 else /* op1 = (K:L) */
7935 {
7936 if (op2->low == NULL) /* op2 = (:N), K > N */
7937 retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
7938 ? 1 : 0;
7939 else if (op2->high == NULL) /* op2 = (M:), L < M */
7940 retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
7941 ? -1 : 0;
7942 else /* op2 = (M:N) */
7943 {
7944 retval = 0;
7945 /* L < M */
7946 if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
7947 retval = -1;
7948 /* K > N */
7949 else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
7950 retval = 1;
7951 }
7952 }
7953
7954 return retval;
7955 }
7956
7957
7958 /* Merge-sort a double linked case list, detecting overlap in the
7959 process. LIST is the head of the double linked case list before it
7960 is sorted. Returns the head of the sorted list if we don't see any
7961 overlap, or NULL otherwise. */
7962
7963 static gfc_case *
7964 check_case_overlap (gfc_case *list)
7965 {
7966 gfc_case *p, *q, *e, *tail;
7967 int insize, nmerges, psize, qsize, cmp, overlap_seen;
7968
7969 /* If the passed list was empty, return immediately. */
7970 if (!list)
7971 return NULL;
7972
7973 overlap_seen = 0;
7974 insize = 1;
7975
7976 /* Loop unconditionally. The only exit from this loop is a return
7977 statement, when we've finished sorting the case list. */
7978 for (;;)
7979 {
7980 p = list;
7981 list = NULL;
7982 tail = NULL;
7983
7984 /* Count the number of merges we do in this pass. */
7985 nmerges = 0;
7986
7987 /* Loop while there exists a merge to be done. */
7988 while (p)
7989 {
7990 int i;
7991
7992 /* Count this merge. */
7993 nmerges++;
7994
7995 /* Cut the list in two pieces by stepping INSIZE places
7996 forward in the list, starting from P. */
7997 psize = 0;
7998 q = p;
7999 for (i = 0; i < insize; i++)
8000 {
8001 psize++;
8002 q = q->right;
8003 if (!q)
8004 break;
8005 }
8006 qsize = insize;
8007
8008 /* Now we have two lists. Merge them! */
8009 while (psize > 0 || (qsize > 0 && q != NULL))
8010 {
8011 /* See from which the next case to merge comes from. */
8012 if (psize == 0)
8013 {
8014 /* P is empty so the next case must come from Q. */
8015 e = q;
8016 q = q->right;
8017 qsize--;
8018 }
8019 else if (qsize == 0 || q == NULL)
8020 {
8021 /* Q is empty. */
8022 e = p;
8023 p = p->right;
8024 psize--;
8025 }
8026 else
8027 {
8028 cmp = compare_cases (p, q);
8029 if (cmp < 0)
8030 {
8031 /* The whole case range for P is less than the
8032 one for Q. */
8033 e = p;
8034 p = p->right;
8035 psize--;
8036 }
8037 else if (cmp > 0)
8038 {
8039 /* The whole case range for Q is greater than
8040 the case range for P. */
8041 e = q;
8042 q = q->right;
8043 qsize--;
8044 }
8045 else
8046 {
8047 /* The cases overlap, or they are the same
8048 element in the list. Either way, we must
8049 issue an error and get the next case from P. */
8050 /* FIXME: Sort P and Q by line number. */
8051 gfc_error ("CASE label at %L overlaps with CASE "
8052 "label at %L", &p->where, &q->where);
8053 overlap_seen = 1;
8054 e = p;
8055 p = p->right;
8056 psize--;
8057 }
8058 }
8059
8060 /* Add the next element to the merged list. */
8061 if (tail)
8062 tail->right = e;
8063 else
8064 list = e;
8065 e->left = tail;
8066 tail = e;
8067 }
8068
8069 /* P has now stepped INSIZE places along, and so has Q. So
8070 they're the same. */
8071 p = q;
8072 }
8073 tail->right = NULL;
8074
8075 /* If we have done only one merge or none at all, we've
8076 finished sorting the cases. */
8077 if (nmerges <= 1)
8078 {
8079 if (!overlap_seen)
8080 return list;
8081 else
8082 return NULL;
8083 }
8084
8085 /* Otherwise repeat, merging lists twice the size. */
8086 insize *= 2;
8087 }
8088 }
8089
8090
8091 /* Check to see if an expression is suitable for use in a CASE statement.
8092 Makes sure that all case expressions are scalar constants of the same
8093 type. Return false if anything is wrong. */
8094
8095 static bool
8096 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
8097 {
8098 if (e == NULL) return true;
8099
8100 if (e->ts.type != case_expr->ts.type)
8101 {
8102 gfc_error ("Expression in CASE statement at %L must be of type %s",
8103 &e->where, gfc_basic_typename (case_expr->ts.type));
8104 return false;
8105 }
8106
8107 /* C805 (R808) For a given case-construct, each case-value shall be of
8108 the same type as case-expr. For character type, length differences
8109 are allowed, but the kind type parameters shall be the same. */
8110
8111 if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
8112 {
8113 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8114 &e->where, case_expr->ts.kind);
8115 return false;
8116 }
8117
8118 /* Convert the case value kind to that of case expression kind,
8119 if needed */
8120
8121 if (e->ts.kind != case_expr->ts.kind)
8122 gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
8123
8124 if (e->rank != 0)
8125 {
8126 gfc_error ("Expression in CASE statement at %L must be scalar",
8127 &e->where);
8128 return false;
8129 }
8130
8131 return true;
8132 }
8133
8134
8135 /* Given a completely parsed select statement, we:
8136
8137 - Validate all expressions and code within the SELECT.
8138 - Make sure that the selection expression is not of the wrong type.
8139 - Make sure that no case ranges overlap.
8140 - Eliminate unreachable cases and unreachable code resulting from
8141 removing case labels.
8142
8143 The standard does allow unreachable cases, e.g. CASE (5:3). But
8144 they are a hassle for code generation, and to prevent that, we just
8145 cut them out here. This is not necessary for overlapping cases
8146 because they are illegal and we never even try to generate code.
8147
8148 We have the additional caveat that a SELECT construct could have
8149 been a computed GOTO in the source code. Fortunately we can fairly
8150 easily work around that here: The case_expr for a "real" SELECT CASE
8151 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8152 we have to do is make sure that the case_expr is a scalar integer
8153 expression. */
8154
8155 static void
8156 resolve_select (gfc_code *code, bool select_type)
8157 {
8158 gfc_code *body;
8159 gfc_expr *case_expr;
8160 gfc_case *cp, *default_case, *tail, *head;
8161 int seen_unreachable;
8162 int seen_logical;
8163 int ncases;
8164 bt type;
8165 bool t;
8166
8167 if (code->expr1 == NULL)
8168 {
8169 /* This was actually a computed GOTO statement. */
8170 case_expr = code->expr2;
8171 if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
8172 gfc_error ("Selection expression in computed GOTO statement "
8173 "at %L must be a scalar integer expression",
8174 &case_expr->where);
8175
8176 /* Further checking is not necessary because this SELECT was built
8177 by the compiler, so it should always be OK. Just move the
8178 case_expr from expr2 to expr so that we can handle computed
8179 GOTOs as normal SELECTs from here on. */
8180 code->expr1 = code->expr2;
8181 code->expr2 = NULL;
8182 return;
8183 }
8184
8185 case_expr = code->expr1;
8186 type = case_expr->ts.type;
8187
8188 /* F08:C830. */
8189 if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
8190 {
8191 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8192 &case_expr->where, gfc_typename (&case_expr->ts));
8193
8194 /* Punt. Going on here just produce more garbage error messages. */
8195 return;
8196 }
8197
8198 /* F08:R842. */
8199 if (!select_type && case_expr->rank != 0)
8200 {
8201 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8202 "expression", &case_expr->where);
8203
8204 /* Punt. */
8205 return;
8206 }
8207
8208 /* Raise a warning if an INTEGER case value exceeds the range of
8209 the case-expr. Later, all expressions will be promoted to the
8210 largest kind of all case-labels. */
8211
8212 if (type == BT_INTEGER)
8213 for (body = code->block; body; body = body->block)
8214 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8215 {
8216 if (cp->low
8217 && gfc_check_integer_range (cp->low->value.integer,
8218 case_expr->ts.kind) != ARITH_OK)
8219 gfc_warning (0, "Expression in CASE statement at %L is "
8220 "not in the range of %s", &cp->low->where,
8221 gfc_typename (&case_expr->ts));
8222
8223 if (cp->high
8224 && cp->low != cp->high
8225 && gfc_check_integer_range (cp->high->value.integer,
8226 case_expr->ts.kind) != ARITH_OK)
8227 gfc_warning (0, "Expression in CASE statement at %L is "
8228 "not in the range of %s", &cp->high->where,
8229 gfc_typename (&case_expr->ts));
8230 }
8231
8232 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8233 of the SELECT CASE expression and its CASE values. Walk the lists
8234 of case values, and if we find a mismatch, promote case_expr to
8235 the appropriate kind. */
8236
8237 if (type == BT_LOGICAL || type == BT_INTEGER)
8238 {
8239 for (body = code->block; body; body = body->block)
8240 {
8241 /* Walk the case label list. */
8242 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8243 {
8244 /* Intercept the DEFAULT case. It does not have a kind. */
8245 if (cp->low == NULL && cp->high == NULL)
8246 continue;
8247
8248 /* Unreachable case ranges are discarded, so ignore. */
8249 if (cp->low != NULL && cp->high != NULL
8250 && cp->low != cp->high
8251 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8252 continue;
8253
8254 if (cp->low != NULL
8255 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
8256 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
8257
8258 if (cp->high != NULL
8259 && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
8260 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
8261 }
8262 }
8263 }
8264
8265 /* Assume there is no DEFAULT case. */
8266 default_case = NULL;
8267 head = tail = NULL;
8268 ncases = 0;
8269 seen_logical = 0;
8270
8271 for (body = code->block; body; body = body->block)
8272 {
8273 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8274 t = true;
8275 seen_unreachable = 0;
8276
8277 /* Walk the case label list, making sure that all case labels
8278 are legal. */
8279 for (cp = body->ext.block.case_list; cp; cp = cp->next)
8280 {
8281 /* Count the number of cases in the whole construct. */
8282 ncases++;
8283
8284 /* Intercept the DEFAULT case. */
8285 if (cp->low == NULL && cp->high == NULL)
8286 {
8287 if (default_case != NULL)
8288 {
8289 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8290 "by a second DEFAULT CASE at %L",
8291 &default_case->where, &cp->where);
8292 t = false;
8293 break;
8294 }
8295 else
8296 {
8297 default_case = cp;
8298 continue;
8299 }
8300 }
8301
8302 /* Deal with single value cases and case ranges. Errors are
8303 issued from the validation function. */
8304 if (!validate_case_label_expr (cp->low, case_expr)
8305 || !validate_case_label_expr (cp->high, case_expr))
8306 {
8307 t = false;
8308 break;
8309 }
8310
8311 if (type == BT_LOGICAL
8312 && ((cp->low == NULL || cp->high == NULL)
8313 || cp->low != cp->high))
8314 {
8315 gfc_error ("Logical range in CASE statement at %L is not "
8316 "allowed", &cp->low->where);
8317 t = false;
8318 break;
8319 }
8320
8321 if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
8322 {
8323 int value;
8324 value = cp->low->value.logical == 0 ? 2 : 1;
8325 if (value & seen_logical)
8326 {
8327 gfc_error ("Constant logical value in CASE statement "
8328 "is repeated at %L",
8329 &cp->low->where);
8330 t = false;
8331 break;
8332 }
8333 seen_logical |= value;
8334 }
8335
8336 if (cp->low != NULL && cp->high != NULL
8337 && cp->low != cp->high
8338 && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
8339 {
8340 if (warn_surprising)
8341 gfc_warning (OPT_Wsurprising,
8342 "Range specification at %L can never be matched",
8343 &cp->where);
8344
8345 cp->unreachable = 1;
8346 seen_unreachable = 1;
8347 }
8348 else
8349 {
8350 /* If the case range can be matched, it can also overlap with
8351 other cases. To make sure it does not, we put it in a
8352 double linked list here. We sort that with a merge sort
8353 later on to detect any overlapping cases. */
8354 if (!head)
8355 {
8356 head = tail = cp;
8357 head->right = head->left = NULL;
8358 }
8359 else
8360 {
8361 tail->right = cp;
8362 tail->right->left = tail;
8363 tail = tail->right;
8364 tail->right = NULL;
8365 }
8366 }
8367 }
8368
8369 /* It there was a failure in the previous case label, give up
8370 for this case label list. Continue with the next block. */
8371 if (!t)
8372 continue;
8373
8374 /* See if any case labels that are unreachable have been seen.
8375 If so, we eliminate them. This is a bit of a kludge because
8376 the case lists for a single case statement (label) is a
8377 single forward linked lists. */
8378 if (seen_unreachable)
8379 {
8380 /* Advance until the first case in the list is reachable. */
8381 while (body->ext.block.case_list != NULL
8382 && body->ext.block.case_list->unreachable)
8383 {
8384 gfc_case *n = body->ext.block.case_list;
8385 body->ext.block.case_list = body->ext.block.case_list->next;
8386 n->next = NULL;
8387 gfc_free_case_list (n);
8388 }
8389
8390 /* Strip all other unreachable cases. */
8391 if (body->ext.block.case_list)
8392 {
8393 for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
8394 {
8395 if (cp->next->unreachable)
8396 {
8397 gfc_case *n = cp->next;
8398 cp->next = cp->next->next;
8399 n->next = NULL;
8400 gfc_free_case_list (n);
8401 }
8402 }
8403 }
8404 }
8405 }
8406
8407 /* See if there were overlapping cases. If the check returns NULL,
8408 there was overlap. In that case we don't do anything. If head
8409 is non-NULL, we prepend the DEFAULT case. The sorted list can
8410 then used during code generation for SELECT CASE constructs with
8411 a case expression of a CHARACTER type. */
8412 if (head)
8413 {
8414 head = check_case_overlap (head);
8415
8416 /* Prepend the default_case if it is there. */
8417 if (head != NULL && default_case)
8418 {
8419 default_case->left = NULL;
8420 default_case->right = head;
8421 head->left = default_case;
8422 }
8423 }
8424
8425 /* Eliminate dead blocks that may be the result if we've seen
8426 unreachable case labels for a block. */
8427 for (body = code; body && body->block; body = body->block)
8428 {
8429 if (body->block->ext.block.case_list == NULL)
8430 {
8431 /* Cut the unreachable block from the code chain. */
8432 gfc_code *c = body->block;
8433 body->block = c->block;
8434
8435 /* Kill the dead block, but not the blocks below it. */
8436 c->block = NULL;
8437 gfc_free_statements (c);
8438 }
8439 }
8440
8441 /* More than two cases is legal but insane for logical selects.
8442 Issue a warning for it. */
8443 if (warn_surprising && type == BT_LOGICAL && ncases > 2)
8444 gfc_warning (OPT_Wsurprising,
8445 "Logical SELECT CASE block at %L has more that two cases",
8446 &code->loc);
8447 }
8448
8449
8450 /* Check if a derived type is extensible. */
8451
8452 bool
8453 gfc_type_is_extensible (gfc_symbol *sym)
8454 {
8455 return !(sym->attr.is_bind_c || sym->attr.sequence
8456 || (sym->attr.is_class
8457 && sym->components->ts.u.derived->attr.unlimited_polymorphic));
8458 }
8459
8460
8461 static void
8462 resolve_types (gfc_namespace *ns);
8463
8464 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8465 correct as well as possibly the array-spec. */
8466
8467 static void
8468 resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
8469 {
8470 gfc_expr* target;
8471
8472 gcc_assert (sym->assoc);
8473 gcc_assert (sym->attr.flavor == FL_VARIABLE);
8474
8475 /* If this is for SELECT TYPE, the target may not yet be set. In that
8476 case, return. Resolution will be called later manually again when
8477 this is done. */
8478 target = sym->assoc->target;
8479 if (!target)
8480 return;
8481 gcc_assert (!sym->assoc->dangling);
8482
8483 if (resolve_target && !gfc_resolve_expr (target))
8484 return;
8485
8486 /* For variable targets, we get some attributes from the target. */
8487 if (target->expr_type == EXPR_VARIABLE)
8488 {
8489 gfc_symbol* tsym;
8490
8491 gcc_assert (target->symtree);
8492 tsym = target->symtree->n.sym;
8493
8494 sym->attr.asynchronous = tsym->attr.asynchronous;
8495 sym->attr.volatile_ = tsym->attr.volatile_;
8496
8497 sym->attr.target = tsym->attr.target
8498 || gfc_expr_attr (target).pointer;
8499 if (is_subref_array (target))
8500 sym->attr.subref_array_pointer = 1;
8501 }
8502
8503 if (target->expr_type == EXPR_NULL)
8504 {
8505 gfc_error ("Selector at %L cannot be NULL()", &target->where);
8506 return;
8507 }
8508 else if (target->ts.type == BT_UNKNOWN)
8509 {
8510 gfc_error ("Selector at %L has no type", &target->where);
8511 return;
8512 }
8513
8514 /* Get type if this was not already set. Note that it can be
8515 some other type than the target in case this is a SELECT TYPE
8516 selector! So we must not update when the type is already there. */
8517 if (sym->ts.type == BT_UNKNOWN)
8518 sym->ts = target->ts;
8519
8520 gcc_assert (sym->ts.type != BT_UNKNOWN);
8521
8522 /* See if this is a valid association-to-variable. */
8523 sym->assoc->variable = (target->expr_type == EXPR_VARIABLE
8524 && !gfc_has_vector_subscript (target));
8525
8526 /* Finally resolve if this is an array or not. */
8527 if (sym->attr.dimension && target->rank == 0)
8528 {
8529 /* primary.c makes the assumption that a reference to an associate
8530 name followed by a left parenthesis is an array reference. */
8531 if (sym->ts.type != BT_CHARACTER)
8532 gfc_error ("Associate-name %qs at %L is used as array",
8533 sym->name, &sym->declared_at);
8534 sym->attr.dimension = 0;
8535 return;
8536 }
8537
8538
8539 /* We cannot deal with class selectors that need temporaries. */
8540 if (target->ts.type == BT_CLASS
8541 && gfc_ref_needs_temporary_p (target->ref))
8542 {
8543 gfc_error ("CLASS selector at %L needs a temporary which is not "
8544 "yet implemented", &target->where);
8545 return;
8546 }
8547
8548 if (target->ts.type == BT_CLASS)
8549 gfc_fix_class_refs (target);
8550
8551 if (target->rank != 0)
8552 {
8553 gfc_array_spec *as;
8554 /* The rank may be incorrectly guessed at parsing, therefore make sure
8555 it is corrected now. */
8556 if (sym->ts.type != BT_CLASS && (!sym->as || sym->assoc->rankguessed))
8557 {
8558 if (!sym->as)
8559 sym->as = gfc_get_array_spec ();
8560 as = sym->as;
8561 as->rank = target->rank;
8562 as->type = AS_DEFERRED;
8563 as->corank = gfc_get_corank (target);
8564 sym->attr.dimension = 1;
8565 if (as->corank != 0)
8566 sym->attr.codimension = 1;
8567 }
8568 }
8569 else
8570 {
8571 /* target's rank is 0, but the type of the sym is still array valued,
8572 which has to be corrected. */
8573 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
8574 {
8575 gfc_array_spec *as;
8576 symbol_attribute attr;
8577 /* The associated variable's type is still the array type
8578 correct this now. */
8579 gfc_typespec *ts = &target->ts;
8580 gfc_ref *ref;
8581 gfc_component *c;
8582 for (ref = target->ref; ref != NULL; ref = ref->next)
8583 {
8584 switch (ref->type)
8585 {
8586 case REF_COMPONENT:
8587 ts = &ref->u.c.component->ts;
8588 break;
8589 case REF_ARRAY:
8590 if (ts->type == BT_CLASS)
8591 ts = &ts->u.derived->components->ts;
8592 break;
8593 default:
8594 break;
8595 }
8596 }
8597 /* Create a scalar instance of the current class type. Because the
8598 rank of a class array goes into its name, the type has to be
8599 rebuild. The alternative of (re-)setting just the attributes
8600 and as in the current type, destroys the type also in other
8601 places. */
8602 as = NULL;
8603 sym->ts = *ts;
8604 sym->ts.type = BT_CLASS;
8605 attr = CLASS_DATA (sym)->attr;
8606 attr.class_ok = 0;
8607 attr.associate_var = 1;
8608 attr.dimension = attr.codimension = 0;
8609 attr.class_pointer = 1;
8610 if (!gfc_build_class_symbol (&sym->ts, &attr, &as))
8611 gcc_unreachable ();
8612 /* Make sure the _vptr is set. */
8613 c = gfc_find_component (sym->ts.u.derived, "_vptr", true, true, NULL);
8614 if (c->ts.u.derived == NULL)
8615 c->ts.u.derived = gfc_find_derived_vtab (sym->ts.u.derived);
8616 CLASS_DATA (sym)->attr.pointer = 1;
8617 CLASS_DATA (sym)->attr.class_pointer = 1;
8618 gfc_set_sym_referenced (sym->ts.u.derived);
8619 gfc_commit_symbol (sym->ts.u.derived);
8620 /* _vptr now has the _vtab in it, change it to the _vtype. */
8621 if (c->ts.u.derived->attr.vtab)
8622 c->ts.u.derived = c->ts.u.derived->ts.u.derived;
8623 c->ts.u.derived->ns->types_resolved = 0;
8624 resolve_types (c->ts.u.derived->ns);
8625 }
8626 }
8627
8628 /* Mark this as an associate variable. */
8629 sym->attr.associate_var = 1;
8630
8631 /* Fix up the type-spec for CHARACTER types. */
8632 if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
8633 {
8634 if (!sym->ts.u.cl)
8635 sym->ts.u.cl = target->ts.u.cl;
8636
8637 if (!sym->ts.u.cl->length && !sym->ts.deferred
8638 && target->expr_type == EXPR_CONSTANT)
8639 sym->ts.u.cl->length
8640 = gfc_get_int_expr (gfc_charlen_int_kind,
8641 NULL, target->value.character.length);
8642 }
8643
8644 /* If the target is a good class object, so is the associate variable. */
8645 if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
8646 sym->attr.class_ok = 1;
8647 }
8648
8649
8650 /* Ensure that SELECT TYPE expressions have the correct rank and a full
8651 array reference, where necessary. The symbols are artificial and so
8652 the dimension attribute and arrayspec can also be set. In addition,
8653 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
8654 This is corrected here as well.*/
8655
8656 static void
8657 fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2,
8658 int rank, gfc_ref *ref)
8659 {
8660 gfc_ref *nref = (*expr1)->ref;
8661 gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
8662 gfc_symbol *sym2 = expr2 ? expr2->symtree->n.sym : NULL;
8663 (*expr1)->rank = rank;
8664 if (sym1->ts.type == BT_CLASS)
8665 {
8666 if ((*expr1)->ts.type != BT_CLASS)
8667 (*expr1)->ts = sym1->ts;
8668
8669 CLASS_DATA (sym1)->attr.dimension = 1;
8670 if (CLASS_DATA (sym1)->as == NULL && sym2)
8671 CLASS_DATA (sym1)->as
8672 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
8673 }
8674 else
8675 {
8676 sym1->attr.dimension = 1;
8677 if (sym1->as == NULL && sym2)
8678 sym1->as = gfc_copy_array_spec (sym2->as);
8679 }
8680
8681 for (; nref; nref = nref->next)
8682 if (nref->next == NULL)
8683 break;
8684
8685 if (ref && nref && nref->type != REF_ARRAY)
8686 nref->next = gfc_copy_ref (ref);
8687 else if (ref && !nref)
8688 (*expr1)->ref = gfc_copy_ref (ref);
8689 }
8690
8691
8692 static gfc_expr *
8693 build_loc_call (gfc_expr *sym_expr)
8694 {
8695 gfc_expr *loc_call;
8696 loc_call = gfc_get_expr ();
8697 loc_call->expr_type = EXPR_FUNCTION;
8698 gfc_get_sym_tree ("loc", gfc_current_ns, &loc_call->symtree, false);
8699 loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
8700 loc_call->symtree->n.sym->attr.intrinsic = 1;
8701 loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
8702 gfc_commit_symbol (loc_call->symtree->n.sym);
8703 loc_call->ts.type = BT_INTEGER;
8704 loc_call->ts.kind = gfc_index_integer_kind;
8705 loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
8706 loc_call->value.function.actual = gfc_get_actual_arglist ();
8707 loc_call->value.function.actual->expr = sym_expr;
8708 loc_call->where = sym_expr->where;
8709 return loc_call;
8710 }
8711
8712 /* Resolve a SELECT TYPE statement. */
8713
8714 static void
8715 resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
8716 {
8717 gfc_symbol *selector_type;
8718 gfc_code *body, *new_st, *if_st, *tail;
8719 gfc_code *class_is = NULL, *default_case = NULL;
8720 gfc_case *c;
8721 gfc_symtree *st;
8722 char name[GFC_MAX_SYMBOL_LEN];
8723 gfc_namespace *ns;
8724 int error = 0;
8725 int rank = 0;
8726 gfc_ref* ref = NULL;
8727 gfc_expr *selector_expr = NULL;
8728
8729 ns = code->ext.block.ns;
8730 gfc_resolve (ns);
8731
8732 /* Check for F03:C813. */
8733 if (code->expr1->ts.type != BT_CLASS
8734 && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
8735 {
8736 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
8737 "at %L", &code->loc);
8738 return;
8739 }
8740
8741 if (!code->expr1->symtree->n.sym->attr.class_ok)
8742 return;
8743
8744 if (code->expr2)
8745 {
8746 if (code->expr1->symtree->n.sym->attr.untyped)
8747 code->expr1->symtree->n.sym->ts = code->expr2->ts;
8748 selector_type = CLASS_DATA (code->expr2)->ts.u.derived;
8749
8750 if (code->expr2->rank && CLASS_DATA (code->expr1)->as)
8751 CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
8752
8753 /* F2008: C803 The selector expression must not be coindexed. */
8754 if (gfc_is_coindexed (code->expr2))
8755 {
8756 gfc_error ("Selector at %L must not be coindexed",
8757 &code->expr2->where);
8758 return;
8759 }
8760
8761 }
8762 else
8763 {
8764 selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
8765
8766 if (gfc_is_coindexed (code->expr1))
8767 {
8768 gfc_error ("Selector at %L must not be coindexed",
8769 &code->expr1->where);
8770 return;
8771 }
8772 }
8773
8774 /* Loop over TYPE IS / CLASS IS cases. */
8775 for (body = code->block; body; body = body->block)
8776 {
8777 c = body->ext.block.case_list;
8778
8779 if (!error)
8780 {
8781 /* Check for repeated cases. */
8782 for (tail = code->block; tail; tail = tail->block)
8783 {
8784 gfc_case *d = tail->ext.block.case_list;
8785 if (tail == body)
8786 break;
8787
8788 if (c->ts.type == d->ts.type
8789 && ((c->ts.type == BT_DERIVED
8790 && c->ts.u.derived && d->ts.u.derived
8791 && !strcmp (c->ts.u.derived->name,
8792 d->ts.u.derived->name))
8793 || c->ts.type == BT_UNKNOWN
8794 || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8795 && c->ts.kind == d->ts.kind)))
8796 {
8797 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
8798 &c->where, &d->where);
8799 return;
8800 }
8801 }
8802 }
8803
8804 /* Check F03:C815. */
8805 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8806 && !selector_type->attr.unlimited_polymorphic
8807 && !gfc_type_is_extensible (c->ts.u.derived))
8808 {
8809 gfc_error ("Derived type %qs at %L must be extensible",
8810 c->ts.u.derived->name, &c->where);
8811 error++;
8812 continue;
8813 }
8814
8815 /* Check F03:C816. */
8816 if (c->ts.type != BT_UNKNOWN && !selector_type->attr.unlimited_polymorphic
8817 && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
8818 || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
8819 {
8820 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8821 gfc_error ("Derived type %qs at %L must be an extension of %qs",
8822 c->ts.u.derived->name, &c->where, selector_type->name);
8823 else
8824 gfc_error ("Unexpected intrinsic type %qs at %L",
8825 gfc_basic_typename (c->ts.type), &c->where);
8826 error++;
8827 continue;
8828 }
8829
8830 /* Check F03:C814. */
8831 if (c->ts.type == BT_CHARACTER
8832 && (c->ts.u.cl->length != NULL || c->ts.deferred))
8833 {
8834 gfc_error ("The type-spec at %L shall specify that each length "
8835 "type parameter is assumed", &c->where);
8836 error++;
8837 continue;
8838 }
8839
8840 /* Intercept the DEFAULT case. */
8841 if (c->ts.type == BT_UNKNOWN)
8842 {
8843 /* Check F03:C818. */
8844 if (default_case)
8845 {
8846 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8847 "by a second DEFAULT CASE at %L",
8848 &default_case->ext.block.case_list->where, &c->where);
8849 error++;
8850 continue;
8851 }
8852
8853 default_case = body;
8854 }
8855 }
8856
8857 if (error > 0)
8858 return;
8859
8860 /* Transform SELECT TYPE statement to BLOCK and associate selector to
8861 target if present. If there are any EXIT statements referring to the
8862 SELECT TYPE construct, this is no problem because the gfc_code
8863 reference stays the same and EXIT is equally possible from the BLOCK
8864 it is changed to. */
8865 code->op = EXEC_BLOCK;
8866 if (code->expr2)
8867 {
8868 gfc_association_list* assoc;
8869
8870 assoc = gfc_get_association_list ();
8871 assoc->st = code->expr1->symtree;
8872 assoc->target = gfc_copy_expr (code->expr2);
8873 assoc->target->where = code->expr2->where;
8874 /* assoc->variable will be set by resolve_assoc_var. */
8875
8876 code->ext.block.assoc = assoc;
8877 code->expr1->symtree->n.sym->assoc = assoc;
8878
8879 resolve_assoc_var (code->expr1->symtree->n.sym, false);
8880 }
8881 else
8882 code->ext.block.assoc = NULL;
8883
8884 /* Ensure that the selector rank and arrayspec are available to
8885 correct expressions in which they might be missing. */
8886 if (code->expr2 && code->expr2->rank)
8887 {
8888 rank = code->expr2->rank;
8889 for (ref = code->expr2->ref; ref; ref = ref->next)
8890 if (ref->next == NULL)
8891 break;
8892 if (ref && ref->type == REF_ARRAY)
8893 ref = gfc_copy_ref (ref);
8894
8895 /* Fixup expr1 if necessary. */
8896 if (rank)
8897 fixup_array_ref (&code->expr1, code->expr2, rank, ref);
8898 }
8899 else if (code->expr1->rank)
8900 {
8901 rank = code->expr1->rank;
8902 for (ref = code->expr1->ref; ref; ref = ref->next)
8903 if (ref->next == NULL)
8904 break;
8905 if (ref && ref->type == REF_ARRAY)
8906 ref = gfc_copy_ref (ref);
8907 }
8908
8909 /* Add EXEC_SELECT to switch on type. */
8910 new_st = gfc_get_code (code->op);
8911 new_st->expr1 = code->expr1;
8912 new_st->expr2 = code->expr2;
8913 new_st->block = code->block;
8914 code->expr1 = code->expr2 = NULL;
8915 code->block = NULL;
8916 if (!ns->code)
8917 ns->code = new_st;
8918 else
8919 ns->code->next = new_st;
8920 code = new_st;
8921 code->op = EXEC_SELECT_TYPE;
8922
8923 /* Use the intrinsic LOC function to generate an integer expression
8924 for the vtable of the selector. Note that the rank of the selector
8925 expression has to be set to zero. */
8926 gfc_add_vptr_component (code->expr1);
8927 code->expr1->rank = 0;
8928 code->expr1 = build_loc_call (code->expr1);
8929 selector_expr = code->expr1->value.function.actual->expr;
8930
8931 /* Loop over TYPE IS / CLASS IS cases. */
8932 for (body = code->block; body; body = body->block)
8933 {
8934 gfc_symbol *vtab;
8935 gfc_expr *e;
8936 c = body->ext.block.case_list;
8937
8938 /* Generate an index integer expression for address of the
8939 TYPE/CLASS vtable and store it in c->low. The hash expression
8940 is stored in c->high and is used to resolve intrinsic cases. */
8941 if (c->ts.type != BT_UNKNOWN)
8942 {
8943 if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
8944 {
8945 vtab = gfc_find_derived_vtab (c->ts.u.derived);
8946 gcc_assert (vtab);
8947 c->high = gfc_get_int_expr (gfc_default_integer_kind, NULL,
8948 c->ts.u.derived->hash_value);
8949 }
8950 else
8951 {
8952 vtab = gfc_find_vtab (&c->ts);
8953 gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
8954 e = CLASS_DATA (vtab)->initializer;
8955 c->high = gfc_copy_expr (e);
8956 }
8957
8958 e = gfc_lval_expr_from_sym (vtab);
8959 c->low = build_loc_call (e);
8960 }
8961 else
8962 continue;
8963
8964 /* Associate temporary to selector. This should only be done
8965 when this case is actually true, so build a new ASSOCIATE
8966 that does precisely this here (instead of using the
8967 'global' one). */
8968
8969 if (c->ts.type == BT_CLASS)
8970 sprintf (name, "__tmp_class_%s", c->ts.u.derived->name);
8971 else if (c->ts.type == BT_DERIVED)
8972 sprintf (name, "__tmp_type_%s", c->ts.u.derived->name);
8973 else if (c->ts.type == BT_CHARACTER)
8974 {
8975 HOST_WIDE_INT charlen = 0;
8976 if (c->ts.u.cl && c->ts.u.cl->length
8977 && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
8978 charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
8979 snprintf (name, sizeof (name),
8980 "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
8981 gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
8982 }
8983 else
8984 sprintf (name, "__tmp_%s_%d", gfc_basic_typename (c->ts.type),
8985 c->ts.kind);
8986
8987 st = gfc_find_symtree (ns->sym_root, name);
8988 gcc_assert (st->n.sym->assoc);
8989 st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
8990 st->n.sym->assoc->target->where = selector_expr->where;
8991 if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
8992 {
8993 gfc_add_data_component (st->n.sym->assoc->target);
8994 /* Fixup the target expression if necessary. */
8995 if (rank)
8996 fixup_array_ref (&st->n.sym->assoc->target, NULL, rank, ref);
8997 }
8998
8999 new_st = gfc_get_code (EXEC_BLOCK);
9000 new_st->ext.block.ns = gfc_build_block_ns (ns);
9001 new_st->ext.block.ns->code = body->next;
9002 body->next = new_st;
9003
9004 /* Chain in the new list only if it is marked as dangling. Otherwise
9005 there is a CASE label overlap and this is already used. Just ignore,
9006 the error is diagnosed elsewhere. */
9007 if (st->n.sym->assoc->dangling)
9008 {
9009 new_st->ext.block.assoc = st->n.sym->assoc;
9010 st->n.sym->assoc->dangling = 0;
9011 }
9012
9013 resolve_assoc_var (st->n.sym, false);
9014 }
9015
9016 /* Take out CLASS IS cases for separate treatment. */
9017 body = code;
9018 while (body && body->block)
9019 {
9020 if (body->block->ext.block.case_list->ts.type == BT_CLASS)
9021 {
9022 /* Add to class_is list. */
9023 if (class_is == NULL)
9024 {
9025 class_is = body->block;
9026 tail = class_is;
9027 }
9028 else
9029 {
9030 for (tail = class_is; tail->block; tail = tail->block) ;
9031 tail->block = body->block;
9032 tail = tail->block;
9033 }
9034 /* Remove from EXEC_SELECT list. */
9035 body->block = body->block->block;
9036 tail->block = NULL;
9037 }
9038 else
9039 body = body->block;
9040 }
9041
9042 if (class_is)
9043 {
9044 gfc_symbol *vtab;
9045
9046 if (!default_case)
9047 {
9048 /* Add a default case to hold the CLASS IS cases. */
9049 for (tail = code; tail->block; tail = tail->block) ;
9050 tail->block = gfc_get_code (EXEC_SELECT_TYPE);
9051 tail = tail->block;
9052 tail->ext.block.case_list = gfc_get_case ();
9053 tail->ext.block.case_list->ts.type = BT_UNKNOWN;
9054 tail->next = NULL;
9055 default_case = tail;
9056 }
9057
9058 /* More than one CLASS IS block? */
9059 if (class_is->block)
9060 {
9061 gfc_code **c1,*c2;
9062 bool swapped;
9063 /* Sort CLASS IS blocks by extension level. */
9064 do
9065 {
9066 swapped = false;
9067 for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
9068 {
9069 c2 = (*c1)->block;
9070 /* F03:C817 (check for doubles). */
9071 if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
9072 == c2->ext.block.case_list->ts.u.derived->hash_value)
9073 {
9074 gfc_error ("Double CLASS IS block in SELECT TYPE "
9075 "statement at %L",
9076 &c2->ext.block.case_list->where);
9077 return;
9078 }
9079 if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
9080 < c2->ext.block.case_list->ts.u.derived->attr.extension)
9081 {
9082 /* Swap. */
9083 (*c1)->block = c2->block;
9084 c2->block = *c1;
9085 *c1 = c2;
9086 swapped = true;
9087 }
9088 }
9089 }
9090 while (swapped);
9091 }
9092
9093 /* Generate IF chain. */
9094 if_st = gfc_get_code (EXEC_IF);
9095 new_st = if_st;
9096 for (body = class_is; body; body = body->block)
9097 {
9098 new_st->block = gfc_get_code (EXEC_IF);
9099 new_st = new_st->block;
9100 /* Set up IF condition: Call _gfortran_is_extension_of. */
9101 new_st->expr1 = gfc_get_expr ();
9102 new_st->expr1->expr_type = EXPR_FUNCTION;
9103 new_st->expr1->ts.type = BT_LOGICAL;
9104 new_st->expr1->ts.kind = 4;
9105 new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
9106 new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
9107 new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
9108 /* Set up arguments. */
9109 new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
9110 new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
9111 new_st->expr1->value.function.actual->expr->where = code->loc;
9112 new_st->expr1->where = code->loc;
9113 gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
9114 vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
9115 st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
9116 new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
9117 new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
9118 new_st->expr1->value.function.actual->next->expr->where = code->loc;
9119 new_st->next = body->next;
9120 }
9121 if (default_case->next)
9122 {
9123 new_st->block = gfc_get_code (EXEC_IF);
9124 new_st = new_st->block;
9125 new_st->next = default_case->next;
9126 }
9127
9128 /* Replace CLASS DEFAULT code by the IF chain. */
9129 default_case->next = if_st;
9130 }
9131
9132 /* Resolve the internal code. This can not be done earlier because
9133 it requires that the sym->assoc of selectors is set already. */
9134 gfc_current_ns = ns;
9135 gfc_resolve_blocks (code->block, gfc_current_ns);
9136 gfc_current_ns = old_ns;
9137
9138 if (ref)
9139 free (ref);
9140 }
9141
9142
9143 /* Resolve a transfer statement. This is making sure that:
9144 -- a derived type being transferred has only non-pointer components
9145 -- a derived type being transferred doesn't have private components, unless
9146 it's being transferred from the module where the type was defined
9147 -- we're not trying to transfer a whole assumed size array. */
9148
9149 static void
9150 resolve_transfer (gfc_code *code)
9151 {
9152 gfc_typespec *ts;
9153 gfc_symbol *sym, *derived;
9154 gfc_ref *ref;
9155 gfc_expr *exp;
9156 bool write = false;
9157 bool formatted = false;
9158 gfc_dt *dt = code->ext.dt;
9159 gfc_symbol *dtio_sub = NULL;
9160
9161 exp = code->expr1;
9162
9163 while (exp != NULL && exp->expr_type == EXPR_OP
9164 && exp->value.op.op == INTRINSIC_PARENTHESES)
9165 exp = exp->value.op.op1;
9166
9167 if (exp && exp->expr_type == EXPR_NULL
9168 && code->ext.dt)
9169 {
9170 gfc_error ("Invalid context for NULL () intrinsic at %L",
9171 &exp->where);
9172 return;
9173 }
9174
9175 if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
9176 && exp->expr_type != EXPR_FUNCTION
9177 && exp->expr_type != EXPR_STRUCTURE))
9178 return;
9179
9180 /* If we are reading, the variable will be changed. Note that
9181 code->ext.dt may be NULL if the TRANSFER is related to
9182 an INQUIRE statement -- but in this case, we are not reading, either. */
9183 if (dt && dt->dt_io_kind->value.iokind == M_READ
9184 && !gfc_check_vardef_context (exp, false, false, false,
9185 _("item in READ")))
9186 return;
9187
9188 ts = exp->expr_type == EXPR_STRUCTURE ? &exp->ts : &exp->symtree->n.sym->ts;
9189
9190 /* Go to actual component transferred. */
9191 for (ref = exp->ref; ref; ref = ref->next)
9192 if (ref->type == REF_COMPONENT)
9193 ts = &ref->u.c.component->ts;
9194
9195 if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
9196 && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
9197 {
9198 if (ts->type == BT_DERIVED || ts->type == BT_CLASS)
9199 derived = ts->u.derived;
9200 else
9201 derived = ts->u.derived->components->ts.u.derived;
9202
9203 /* Determine when to use the formatted DTIO procedure. */
9204 if (dt && (dt->format_expr || dt->format_label))
9205 formatted = true;
9206
9207 write = dt->dt_io_kind->value.iokind == M_WRITE
9208 || dt->dt_io_kind->value.iokind == M_PRINT;
9209 dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
9210
9211 if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
9212 {
9213 dt->udtio = exp;
9214 sym = exp->symtree->n.sym->ns->proc_name;
9215 /* Check to see if this is a nested DTIO call, with the
9216 dummy as the io-list object. */
9217 if (sym && sym == dtio_sub && sym->formal
9218 && sym->formal->sym == exp->symtree->n.sym
9219 && exp->ref == NULL)
9220 {
9221 if (!sym->attr.recursive)
9222 {
9223 gfc_error ("DTIO %s procedure at %L must be recursive",
9224 sym->name, &sym->declared_at);
9225 return;
9226 }
9227 }
9228 }
9229 }
9230
9231 if (ts->type == BT_CLASS && dtio_sub == NULL)
9232 {
9233 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9234 "it is processed by a defined input/output procedure",
9235 &code->loc);
9236 return;
9237 }
9238
9239 if (ts->type == BT_DERIVED)
9240 {
9241 /* Check that transferred derived type doesn't contain POINTER
9242 components unless it is processed by a defined input/output
9243 procedure". */
9244 if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
9245 {
9246 gfc_error ("Data transfer element at %L cannot have POINTER "
9247 "components unless it is processed by a defined "
9248 "input/output procedure", &code->loc);
9249 return;
9250 }
9251
9252 /* F08:C935. */
9253 if (ts->u.derived->attr.proc_pointer_comp)
9254 {
9255 gfc_error ("Data transfer element at %L cannot have "
9256 "procedure pointer components", &code->loc);
9257 return;
9258 }
9259
9260 if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
9261 {
9262 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9263 "components unless it is processed by a defined "
9264 "input/output procedure", &code->loc);
9265 return;
9266 }
9267
9268 /* C_PTR and C_FUNPTR have private components which means they can not
9269 be printed. However, if -std=gnu and not -pedantic, allow
9270 the component to be printed to help debugging. */
9271 if (ts->u.derived->ts.f90_type == BT_VOID)
9272 {
9273 if (!gfc_notify_std (GFC_STD_GNU, "Data transfer element at %L "
9274 "cannot have PRIVATE components", &code->loc))
9275 return;
9276 }
9277 else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
9278 {
9279 gfc_error ("Data transfer element at %L cannot have "
9280 "PRIVATE components unless it is processed by "
9281 "a defined input/output procedure", &code->loc);
9282 return;
9283 }
9284 }
9285
9286 if (exp->expr_type == EXPR_STRUCTURE)
9287 return;
9288
9289 sym = exp->symtree->n.sym;
9290
9291 if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
9292 && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
9293 {
9294 gfc_error ("Data transfer element at %L cannot be a full reference to "
9295 "an assumed-size array", &code->loc);
9296 return;
9297 }
9298
9299 if (async_io_dt && exp->expr_type == EXPR_VARIABLE)
9300 exp->symtree->n.sym->attr.asynchronous = 1;
9301 }
9302
9303
9304 /*********** Toplevel code resolution subroutines ***********/
9305
9306 /* Find the set of labels that are reachable from this block. We also
9307 record the last statement in each block. */
9308
9309 static void
9310 find_reachable_labels (gfc_code *block)
9311 {
9312 gfc_code *c;
9313
9314 if (!block)
9315 return;
9316
9317 cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
9318
9319 /* Collect labels in this block. We don't keep those corresponding
9320 to END {IF|SELECT}, these are checked in resolve_branch by going
9321 up through the code_stack. */
9322 for (c = block; c; c = c->next)
9323 {
9324 if (c->here && c->op != EXEC_END_NESTED_BLOCK)
9325 bitmap_set_bit (cs_base->reachable_labels, c->here->value);
9326 }
9327
9328 /* Merge with labels from parent block. */
9329 if (cs_base->prev)
9330 {
9331 gcc_assert (cs_base->prev->reachable_labels);
9332 bitmap_ior_into (cs_base->reachable_labels,
9333 cs_base->prev->reachable_labels);
9334 }
9335 }
9336
9337
9338 static void
9339 resolve_lock_unlock_event (gfc_code *code)
9340 {
9341 if (code->expr1->expr_type == EXPR_FUNCTION
9342 && code->expr1->value.function.isym
9343 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
9344 remove_caf_get_intrinsic (code->expr1);
9345
9346 if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
9347 && (code->expr1->ts.type != BT_DERIVED
9348 || code->expr1->expr_type != EXPR_VARIABLE
9349 || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
9350 || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
9351 || code->expr1->rank != 0
9352 || (!gfc_is_coarray (code->expr1) &&
9353 !gfc_is_coindexed (code->expr1))))
9354 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9355 &code->expr1->where);
9356 else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
9357 && (code->expr1->ts.type != BT_DERIVED
9358 || code->expr1->expr_type != EXPR_VARIABLE
9359 || code->expr1->ts.u.derived->from_intmod
9360 != INTMOD_ISO_FORTRAN_ENV
9361 || code->expr1->ts.u.derived->intmod_sym_id
9362 != ISOFORTRAN_EVENT_TYPE
9363 || code->expr1->rank != 0))
9364 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9365 &code->expr1->where);
9366 else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
9367 && !gfc_is_coindexed (code->expr1))
9368 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9369 &code->expr1->where);
9370 else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
9371 gfc_error ("Event variable argument at %L must be a coarray but not "
9372 "coindexed", &code->expr1->where);
9373
9374 /* Check STAT. */
9375 if (code->expr2
9376 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9377 || code->expr2->expr_type != EXPR_VARIABLE))
9378 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9379 &code->expr2->where);
9380
9381 if (code->expr2
9382 && !gfc_check_vardef_context (code->expr2, false, false, false,
9383 _("STAT variable")))
9384 return;
9385
9386 /* Check ERRMSG. */
9387 if (code->expr3
9388 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9389 || code->expr3->expr_type != EXPR_VARIABLE))
9390 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9391 &code->expr3->where);
9392
9393 if (code->expr3
9394 && !gfc_check_vardef_context (code->expr3, false, false, false,
9395 _("ERRMSG variable")))
9396 return;
9397
9398 /* Check for LOCK the ACQUIRED_LOCK. */
9399 if (code->op != EXEC_EVENT_WAIT && code->expr4
9400 && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
9401 || code->expr4->expr_type != EXPR_VARIABLE))
9402 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
9403 "variable", &code->expr4->where);
9404
9405 if (code->op != EXEC_EVENT_WAIT && code->expr4
9406 && !gfc_check_vardef_context (code->expr4, false, false, false,
9407 _("ACQUIRED_LOCK variable")))
9408 return;
9409
9410 /* Check for EVENT WAIT the UNTIL_COUNT. */
9411 if (code->op == EXEC_EVENT_WAIT && code->expr4)
9412 {
9413 if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
9414 || code->expr4->rank != 0)
9415 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
9416 "expression", &code->expr4->where);
9417 }
9418 }
9419
9420
9421 static void
9422 resolve_critical (gfc_code *code)
9423 {
9424 gfc_symtree *symtree;
9425 gfc_symbol *lock_type;
9426 char name[GFC_MAX_SYMBOL_LEN];
9427 static int serial = 0;
9428
9429 if (flag_coarray != GFC_FCOARRAY_LIB)
9430 return;
9431
9432 symtree = gfc_find_symtree (gfc_current_ns->sym_root,
9433 GFC_PREFIX ("lock_type"));
9434 if (symtree)
9435 lock_type = symtree->n.sym;
9436 else
9437 {
9438 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
9439 false) != 0)
9440 gcc_unreachable ();
9441 lock_type = symtree->n.sym;
9442 lock_type->attr.flavor = FL_DERIVED;
9443 lock_type->attr.zero_comp = 1;
9444 lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
9445 lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
9446 }
9447
9448 sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
9449 if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
9450 gcc_unreachable ();
9451
9452 code->resolved_sym = symtree->n.sym;
9453 symtree->n.sym->attr.flavor = FL_VARIABLE;
9454 symtree->n.sym->attr.referenced = 1;
9455 symtree->n.sym->attr.artificial = 1;
9456 symtree->n.sym->attr.codimension = 1;
9457 symtree->n.sym->ts.type = BT_DERIVED;
9458 symtree->n.sym->ts.u.derived = lock_type;
9459 symtree->n.sym->as = gfc_get_array_spec ();
9460 symtree->n.sym->as->corank = 1;
9461 symtree->n.sym->as->type = AS_EXPLICIT;
9462 symtree->n.sym->as->cotype = AS_EXPLICIT;
9463 symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
9464 NULL, 1);
9465 gfc_commit_symbols();
9466 }
9467
9468
9469 static void
9470 resolve_sync (gfc_code *code)
9471 {
9472 /* Check imageset. The * case matches expr1 == NULL. */
9473 if (code->expr1)
9474 {
9475 if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
9476 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
9477 "INTEGER expression", &code->expr1->where);
9478 if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
9479 && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
9480 gfc_error ("Imageset argument at %L must between 1 and num_images()",
9481 &code->expr1->where);
9482 else if (code->expr1->expr_type == EXPR_ARRAY
9483 && gfc_simplify_expr (code->expr1, 0))
9484 {
9485 gfc_constructor *cons;
9486 cons = gfc_constructor_first (code->expr1->value.constructor);
9487 for (; cons; cons = gfc_constructor_next (cons))
9488 if (cons->expr->expr_type == EXPR_CONSTANT
9489 && mpz_cmp_si (cons->expr->value.integer, 1) < 0)
9490 gfc_error ("Imageset argument at %L must between 1 and "
9491 "num_images()", &cons->expr->where);
9492 }
9493 }
9494
9495 /* Check STAT. */
9496 if (code->expr2
9497 && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
9498 || code->expr2->expr_type != EXPR_VARIABLE))
9499 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9500 &code->expr2->where);
9501
9502 /* Check ERRMSG. */
9503 if (code->expr3
9504 && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
9505 || code->expr3->expr_type != EXPR_VARIABLE))
9506 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9507 &code->expr3->where);
9508 }
9509
9510
9511 /* Given a branch to a label, see if the branch is conforming.
9512 The code node describes where the branch is located. */
9513
9514 static void
9515 resolve_branch (gfc_st_label *label, gfc_code *code)
9516 {
9517 code_stack *stack;
9518
9519 if (label == NULL)
9520 return;
9521
9522 /* Step one: is this a valid branching target? */
9523
9524 if (label->defined == ST_LABEL_UNKNOWN)
9525 {
9526 gfc_error ("Label %d referenced at %L is never defined", label->value,
9527 &code->loc);
9528 return;
9529 }
9530
9531 if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
9532 {
9533 gfc_error ("Statement at %L is not a valid branch target statement "
9534 "for the branch statement at %L", &label->where, &code->loc);
9535 return;
9536 }
9537
9538 /* Step two: make sure this branch is not a branch to itself ;-) */
9539
9540 if (code->here == label)
9541 {
9542 gfc_warning (0,
9543 "Branch at %L may result in an infinite loop", &code->loc);
9544 return;
9545 }
9546
9547 /* Step three: See if the label is in the same block as the
9548 branching statement. The hard work has been done by setting up
9549 the bitmap reachable_labels. */
9550
9551 if (bitmap_bit_p (cs_base->reachable_labels, label->value))
9552 {
9553 /* Check now whether there is a CRITICAL construct; if so, check
9554 whether the label is still visible outside of the CRITICAL block,
9555 which is invalid. */
9556 for (stack = cs_base; stack; stack = stack->prev)
9557 {
9558 if (stack->current->op == EXEC_CRITICAL
9559 && bitmap_bit_p (stack->reachable_labels, label->value))
9560 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
9561 "label at %L", &code->loc, &label->where);
9562 else if (stack->current->op == EXEC_DO_CONCURRENT
9563 && bitmap_bit_p (stack->reachable_labels, label->value))
9564 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
9565 "for label at %L", &code->loc, &label->where);
9566 }
9567
9568 return;
9569 }
9570
9571 /* Step four: If we haven't found the label in the bitmap, it may
9572 still be the label of the END of the enclosing block, in which
9573 case we find it by going up the code_stack. */
9574
9575 for (stack = cs_base; stack; stack = stack->prev)
9576 {
9577 if (stack->current->next && stack->current->next->here == label)
9578 break;
9579 if (stack->current->op == EXEC_CRITICAL)
9580 {
9581 /* Note: A label at END CRITICAL does not leave the CRITICAL
9582 construct as END CRITICAL is still part of it. */
9583 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
9584 " at %L", &code->loc, &label->where);
9585 return;
9586 }
9587 else if (stack->current->op == EXEC_DO_CONCURRENT)
9588 {
9589 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
9590 "label at %L", &code->loc, &label->where);
9591 return;
9592 }
9593 }
9594
9595 if (stack)
9596 {
9597 gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
9598 return;
9599 }
9600
9601 /* The label is not in an enclosing block, so illegal. This was
9602 allowed in Fortran 66, so we allow it as extension. No
9603 further checks are necessary in this case. */
9604 gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
9605 "as the GOTO statement at %L", &label->where,
9606 &code->loc);
9607 return;
9608 }
9609
9610
9611 /* Check whether EXPR1 has the same shape as EXPR2. */
9612
9613 static bool
9614 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
9615 {
9616 mpz_t shape[GFC_MAX_DIMENSIONS];
9617 mpz_t shape2[GFC_MAX_DIMENSIONS];
9618 bool result = false;
9619 int i;
9620
9621 /* Compare the rank. */
9622 if (expr1->rank != expr2->rank)
9623 return result;
9624
9625 /* Compare the size of each dimension. */
9626 for (i=0; i<expr1->rank; i++)
9627 {
9628 if (!gfc_array_dimen_size (expr1, i, &shape[i]))
9629 goto ignore;
9630
9631 if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
9632 goto ignore;
9633
9634 if (mpz_cmp (shape[i], shape2[i]))
9635 goto over;
9636 }
9637
9638 /* When either of the two expression is an assumed size array, we
9639 ignore the comparison of dimension sizes. */
9640 ignore:
9641 result = true;
9642
9643 over:
9644 gfc_clear_shape (shape, i);
9645 gfc_clear_shape (shape2, i);
9646 return result;
9647 }
9648
9649
9650 /* Check whether a WHERE assignment target or a WHERE mask expression
9651 has the same shape as the outmost WHERE mask expression. */
9652
9653 static void
9654 resolve_where (gfc_code *code, gfc_expr *mask)
9655 {
9656 gfc_code *cblock;
9657 gfc_code *cnext;
9658 gfc_expr *e = NULL;
9659
9660 cblock = code->block;
9661
9662 /* Store the first WHERE mask-expr of the WHERE statement or construct.
9663 In case of nested WHERE, only the outmost one is stored. */
9664 if (mask == NULL) /* outmost WHERE */
9665 e = cblock->expr1;
9666 else /* inner WHERE */
9667 e = mask;
9668
9669 while (cblock)
9670 {
9671 if (cblock->expr1)
9672 {
9673 /* Check if the mask-expr has a consistent shape with the
9674 outmost WHERE mask-expr. */
9675 if (!resolve_where_shape (cblock->expr1, e))
9676 gfc_error ("WHERE mask at %L has inconsistent shape",
9677 &cblock->expr1->where);
9678 }
9679
9680 /* the assignment statement of a WHERE statement, or the first
9681 statement in where-body-construct of a WHERE construct */
9682 cnext = cblock->next;
9683 while (cnext)
9684 {
9685 switch (cnext->op)
9686 {
9687 /* WHERE assignment statement */
9688 case EXEC_ASSIGN:
9689
9690 /* Check shape consistent for WHERE assignment target. */
9691 if (e && !resolve_where_shape (cnext->expr1, e))
9692 gfc_error ("WHERE assignment target at %L has "
9693 "inconsistent shape", &cnext->expr1->where);
9694 break;
9695
9696
9697 case EXEC_ASSIGN_CALL:
9698 resolve_call (cnext);
9699 if (!cnext->resolved_sym->attr.elemental)
9700 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9701 &cnext->ext.actual->expr->where);
9702 break;
9703
9704 /* WHERE or WHERE construct is part of a where-body-construct */
9705 case EXEC_WHERE:
9706 resolve_where (cnext, e);
9707 break;
9708
9709 default:
9710 gfc_error ("Unsupported statement inside WHERE at %L",
9711 &cnext->loc);
9712 }
9713 /* the next statement within the same where-body-construct */
9714 cnext = cnext->next;
9715 }
9716 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9717 cblock = cblock->block;
9718 }
9719 }
9720
9721
9722 /* Resolve assignment in FORALL construct.
9723 NVAR is the number of FORALL index variables, and VAR_EXPR records the
9724 FORALL index variables. */
9725
9726 static void
9727 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
9728 {
9729 int n;
9730
9731 for (n = 0; n < nvar; n++)
9732 {
9733 gfc_symbol *forall_index;
9734
9735 forall_index = var_expr[n]->symtree->n.sym;
9736
9737 /* Check whether the assignment target is one of the FORALL index
9738 variable. */
9739 if ((code->expr1->expr_type == EXPR_VARIABLE)
9740 && (code->expr1->symtree->n.sym == forall_index))
9741 gfc_error ("Assignment to a FORALL index variable at %L",
9742 &code->expr1->where);
9743 else
9744 {
9745 /* If one of the FORALL index variables doesn't appear in the
9746 assignment variable, then there could be a many-to-one
9747 assignment. Emit a warning rather than an error because the
9748 mask could be resolving this problem. */
9749 if (!find_forall_index (code->expr1, forall_index, 0))
9750 gfc_warning (0, "The FORALL with index %qs is not used on the "
9751 "left side of the assignment at %L and so might "
9752 "cause multiple assignment to this object",
9753 var_expr[n]->symtree->name, &code->expr1->where);
9754 }
9755 }
9756 }
9757
9758
9759 /* Resolve WHERE statement in FORALL construct. */
9760
9761 static void
9762 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
9763 gfc_expr **var_expr)
9764 {
9765 gfc_code *cblock;
9766 gfc_code *cnext;
9767
9768 cblock = code->block;
9769 while (cblock)
9770 {
9771 /* the assignment statement of a WHERE statement, or the first
9772 statement in where-body-construct of a WHERE construct */
9773 cnext = cblock->next;
9774 while (cnext)
9775 {
9776 switch (cnext->op)
9777 {
9778 /* WHERE assignment statement */
9779 case EXEC_ASSIGN:
9780 gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
9781 break;
9782
9783 /* WHERE operator assignment statement */
9784 case EXEC_ASSIGN_CALL:
9785 resolve_call (cnext);
9786 if (!cnext->resolved_sym->attr.elemental)
9787 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9788 &cnext->ext.actual->expr->where);
9789 break;
9790
9791 /* WHERE or WHERE construct is part of a where-body-construct */
9792 case EXEC_WHERE:
9793 gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
9794 break;
9795
9796 default:
9797 gfc_error ("Unsupported statement inside WHERE at %L",
9798 &cnext->loc);
9799 }
9800 /* the next statement within the same where-body-construct */
9801 cnext = cnext->next;
9802 }
9803 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9804 cblock = cblock->block;
9805 }
9806 }
9807
9808
9809 /* Traverse the FORALL body to check whether the following errors exist:
9810 1. For assignment, check if a many-to-one assignment happens.
9811 2. For WHERE statement, check the WHERE body to see if there is any
9812 many-to-one assignment. */
9813
9814 static void
9815 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
9816 {
9817 gfc_code *c;
9818
9819 c = code->block->next;
9820 while (c)
9821 {
9822 switch (c->op)
9823 {
9824 case EXEC_ASSIGN:
9825 case EXEC_POINTER_ASSIGN:
9826 gfc_resolve_assign_in_forall (c, nvar, var_expr);
9827 break;
9828
9829 case EXEC_ASSIGN_CALL:
9830 resolve_call (c);
9831 break;
9832
9833 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
9834 there is no need to handle it here. */
9835 case EXEC_FORALL:
9836 break;
9837 case EXEC_WHERE:
9838 gfc_resolve_where_code_in_forall(c, nvar, var_expr);
9839 break;
9840 default:
9841 break;
9842 }
9843 /* The next statement in the FORALL body. */
9844 c = c->next;
9845 }
9846 }
9847
9848
9849 /* Counts the number of iterators needed inside a forall construct, including
9850 nested forall constructs. This is used to allocate the needed memory
9851 in gfc_resolve_forall. */
9852
9853 static int
9854 gfc_count_forall_iterators (gfc_code *code)
9855 {
9856 int max_iters, sub_iters, current_iters;
9857 gfc_forall_iterator *fa;
9858
9859 gcc_assert(code->op == EXEC_FORALL);
9860 max_iters = 0;
9861 current_iters = 0;
9862
9863 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
9864 current_iters ++;
9865
9866 code = code->block->next;
9867
9868 while (code)
9869 {
9870 if (code->op == EXEC_FORALL)
9871 {
9872 sub_iters = gfc_count_forall_iterators (code);
9873 if (sub_iters > max_iters)
9874 max_iters = sub_iters;
9875 }
9876 code = code->next;
9877 }
9878
9879 return current_iters + max_iters;
9880 }
9881
9882
9883 /* Given a FORALL construct, first resolve the FORALL iterator, then call
9884 gfc_resolve_forall_body to resolve the FORALL body. */
9885
9886 static void
9887 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
9888 {
9889 static gfc_expr **var_expr;
9890 static int total_var = 0;
9891 static int nvar = 0;
9892 int i, old_nvar, tmp;
9893 gfc_forall_iterator *fa;
9894
9895 old_nvar = nvar;
9896
9897 /* Start to resolve a FORALL construct */
9898 if (forall_save == 0)
9899 {
9900 /* Count the total number of FORALL indices in the nested FORALL
9901 construct in order to allocate the VAR_EXPR with proper size. */
9902 total_var = gfc_count_forall_iterators (code);
9903
9904 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
9905 var_expr = XCNEWVEC (gfc_expr *, total_var);
9906 }
9907
9908 /* The information about FORALL iterator, including FORALL indices start, end
9909 and stride. An outer FORALL indice cannot appear in start, end or stride. */
9910 for (fa = code->ext.forall_iterator; fa; fa = fa->next)
9911 {
9912 /* Fortran 20008: C738 (R753). */
9913 if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
9914 {
9915 gfc_error ("FORALL index-name at %L must be a scalar variable "
9916 "of type integer", &fa->var->where);
9917 continue;
9918 }
9919
9920 /* Check if any outer FORALL index name is the same as the current
9921 one. */
9922 for (i = 0; i < nvar; i++)
9923 {
9924 if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
9925 gfc_error ("An outer FORALL construct already has an index "
9926 "with this name %L", &fa->var->where);
9927 }
9928
9929 /* Record the current FORALL index. */
9930 var_expr[nvar] = gfc_copy_expr (fa->var);
9931
9932 nvar++;
9933
9934 /* No memory leak. */
9935 gcc_assert (nvar <= total_var);
9936 }
9937
9938 /* Resolve the FORALL body. */
9939 gfc_resolve_forall_body (code, nvar, var_expr);
9940
9941 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
9942 gfc_resolve_blocks (code->block, ns);
9943
9944 tmp = nvar;
9945 nvar = old_nvar;
9946 /* Free only the VAR_EXPRs allocated in this frame. */
9947 for (i = nvar; i < tmp; i++)
9948 gfc_free_expr (var_expr[i]);
9949
9950 if (nvar == 0)
9951 {
9952 /* We are in the outermost FORALL construct. */
9953 gcc_assert (forall_save == 0);
9954
9955 /* VAR_EXPR is not needed any more. */
9956 free (var_expr);
9957 total_var = 0;
9958 }
9959 }
9960
9961
9962 /* Resolve a BLOCK construct statement. */
9963
9964 static void
9965 resolve_block_construct (gfc_code* code)
9966 {
9967 /* Resolve the BLOCK's namespace. */
9968 gfc_resolve (code->ext.block.ns);
9969
9970 /* For an ASSOCIATE block, the associations (and their targets) are already
9971 resolved during resolve_symbol. */
9972 }
9973
9974
9975 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
9976 DO code nodes. */
9977
9978 void
9979 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
9980 {
9981 bool t;
9982
9983 for (; b; b = b->block)
9984 {
9985 t = gfc_resolve_expr (b->expr1);
9986 if (!gfc_resolve_expr (b->expr2))
9987 t = false;
9988
9989 switch (b->op)
9990 {
9991 case EXEC_IF:
9992 if (t && b->expr1 != NULL
9993 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
9994 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
9995 &b->expr1->where);
9996 break;
9997
9998 case EXEC_WHERE:
9999 if (t
10000 && b->expr1 != NULL
10001 && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
10002 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10003 &b->expr1->where);
10004 break;
10005
10006 case EXEC_GOTO:
10007 resolve_branch (b->label1, b);
10008 break;
10009
10010 case EXEC_BLOCK:
10011 resolve_block_construct (b);
10012 break;
10013
10014 case EXEC_SELECT:
10015 case EXEC_SELECT_TYPE:
10016 case EXEC_FORALL:
10017 case EXEC_DO:
10018 case EXEC_DO_WHILE:
10019 case EXEC_DO_CONCURRENT:
10020 case EXEC_CRITICAL:
10021 case EXEC_READ:
10022 case EXEC_WRITE:
10023 case EXEC_IOLENGTH:
10024 case EXEC_WAIT:
10025 break;
10026
10027 case EXEC_OMP_ATOMIC:
10028 case EXEC_OACC_ATOMIC:
10029 {
10030 gfc_omp_atomic_op aop
10031 = (gfc_omp_atomic_op) (b->ext.omp_atomic & GFC_OMP_ATOMIC_MASK);
10032
10033 /* Verify this before calling gfc_resolve_code, which might
10034 change it. */
10035 gcc_assert (b->next && b->next->op == EXEC_ASSIGN);
10036 gcc_assert (((aop != GFC_OMP_ATOMIC_CAPTURE)
10037 && b->next->next == NULL)
10038 || ((aop == GFC_OMP_ATOMIC_CAPTURE)
10039 && b->next->next != NULL
10040 && b->next->next->op == EXEC_ASSIGN
10041 && b->next->next->next == NULL));
10042 }
10043 break;
10044
10045 case EXEC_OACC_PARALLEL_LOOP:
10046 case EXEC_OACC_PARALLEL:
10047 case EXEC_OACC_KERNELS_LOOP:
10048 case EXEC_OACC_KERNELS:
10049 case EXEC_OACC_DATA:
10050 case EXEC_OACC_HOST_DATA:
10051 case EXEC_OACC_LOOP:
10052 case EXEC_OACC_UPDATE:
10053 case EXEC_OACC_WAIT:
10054 case EXEC_OACC_CACHE:
10055 case EXEC_OACC_ENTER_DATA:
10056 case EXEC_OACC_EXIT_DATA:
10057 case EXEC_OACC_ROUTINE:
10058 case EXEC_OMP_CRITICAL:
10059 case EXEC_OMP_DISTRIBUTE:
10060 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
10061 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
10062 case EXEC_OMP_DISTRIBUTE_SIMD:
10063 case EXEC_OMP_DO:
10064 case EXEC_OMP_DO_SIMD:
10065 case EXEC_OMP_MASTER:
10066 case EXEC_OMP_ORDERED:
10067 case EXEC_OMP_PARALLEL:
10068 case EXEC_OMP_PARALLEL_DO:
10069 case EXEC_OMP_PARALLEL_DO_SIMD:
10070 case EXEC_OMP_PARALLEL_SECTIONS:
10071 case EXEC_OMP_PARALLEL_WORKSHARE:
10072 case EXEC_OMP_SECTIONS:
10073 case EXEC_OMP_SIMD:
10074 case EXEC_OMP_SINGLE:
10075 case EXEC_OMP_TARGET:
10076 case EXEC_OMP_TARGET_DATA:
10077 case EXEC_OMP_TARGET_ENTER_DATA:
10078 case EXEC_OMP_TARGET_EXIT_DATA:
10079 case EXEC_OMP_TARGET_PARALLEL:
10080 case EXEC_OMP_TARGET_PARALLEL_DO:
10081 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
10082 case EXEC_OMP_TARGET_SIMD:
10083 case EXEC_OMP_TARGET_TEAMS:
10084 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
10085 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
10086 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10087 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
10088 case EXEC_OMP_TARGET_UPDATE:
10089 case EXEC_OMP_TASK:
10090 case EXEC_OMP_TASKGROUP:
10091 case EXEC_OMP_TASKLOOP:
10092 case EXEC_OMP_TASKLOOP_SIMD:
10093 case EXEC_OMP_TASKWAIT:
10094 case EXEC_OMP_TASKYIELD:
10095 case EXEC_OMP_TEAMS:
10096 case EXEC_OMP_TEAMS_DISTRIBUTE:
10097 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
10098 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
10099 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
10100 case EXEC_OMP_WORKSHARE:
10101 break;
10102
10103 default:
10104 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10105 }
10106
10107 gfc_resolve_code (b->next, ns);
10108 }
10109 }
10110
10111
10112 /* Does everything to resolve an ordinary assignment. Returns true
10113 if this is an interface assignment. */
10114 static bool
10115 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
10116 {
10117 bool rval = false;
10118 gfc_expr *lhs;
10119 gfc_expr *rhs;
10120 int n;
10121 gfc_ref *ref;
10122 symbol_attribute attr;
10123
10124 if (gfc_extend_assign (code, ns))
10125 {
10126 gfc_expr** rhsptr;
10127
10128 if (code->op == EXEC_ASSIGN_CALL)
10129 {
10130 lhs = code->ext.actual->expr;
10131 rhsptr = &code->ext.actual->next->expr;
10132 }
10133 else
10134 {
10135 gfc_actual_arglist* args;
10136 gfc_typebound_proc* tbp;
10137
10138 gcc_assert (code->op == EXEC_COMPCALL);
10139
10140 args = code->expr1->value.compcall.actual;
10141 lhs = args->expr;
10142 rhsptr = &args->next->expr;
10143
10144 tbp = code->expr1->value.compcall.tbp;
10145 gcc_assert (!tbp->is_generic);
10146 }
10147
10148 /* Make a temporary rhs when there is a default initializer
10149 and rhs is the same symbol as the lhs. */
10150 if ((*rhsptr)->expr_type == EXPR_VARIABLE
10151 && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
10152 && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
10153 && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
10154 *rhsptr = gfc_get_parentheses (*rhsptr);
10155
10156 return true;
10157 }
10158
10159 lhs = code->expr1;
10160 rhs = code->expr2;
10161
10162 if (rhs->is_boz
10163 && !gfc_notify_std (GFC_STD_GNU, "BOZ literal at %L outside "
10164 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
10165 &code->loc))
10166 return false;
10167
10168 /* Handle the case of a BOZ literal on the RHS. */
10169 if (rhs->is_boz && lhs->ts.type != BT_INTEGER)
10170 {
10171 int rc;
10172 if (warn_surprising)
10173 gfc_warning (OPT_Wsurprising,
10174 "BOZ literal at %L is bitwise transferred "
10175 "non-integer symbol %qs", &code->loc,
10176 lhs->symtree->n.sym->name);
10177
10178 if (!gfc_convert_boz (rhs, &lhs->ts))
10179 return false;
10180 if ((rc = gfc_range_check (rhs)) != ARITH_OK)
10181 {
10182 if (rc == ARITH_UNDERFLOW)
10183 gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
10184 ". This check can be disabled with the option "
10185 "%<-fno-range-check%>", &rhs->where);
10186 else if (rc == ARITH_OVERFLOW)
10187 gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
10188 ". This check can be disabled with the option "
10189 "%<-fno-range-check%>", &rhs->where);
10190 else if (rc == ARITH_NAN)
10191 gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
10192 ". This check can be disabled with the option "
10193 "%<-fno-range-check%>", &rhs->where);
10194 return false;
10195 }
10196 }
10197
10198 if (lhs->ts.type == BT_CHARACTER
10199 && warn_character_truncation)
10200 {
10201 HOST_WIDE_INT llen = 0, rlen = 0;
10202 if (lhs->ts.u.cl != NULL
10203 && lhs->ts.u.cl->length != NULL
10204 && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10205 llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
10206
10207 if (rhs->expr_type == EXPR_CONSTANT)
10208 rlen = rhs->value.character.length;
10209
10210 else if (rhs->ts.u.cl != NULL
10211 && rhs->ts.u.cl->length != NULL
10212 && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
10213 rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
10214
10215 if (rlen && llen && rlen > llen)
10216 gfc_warning_now (OPT_Wcharacter_truncation,
10217 "CHARACTER expression will be truncated "
10218 "in assignment (%ld/%ld) at %L",
10219 (long) llen, (long) rlen, &code->loc);
10220 }
10221
10222 /* Ensure that a vector index expression for the lvalue is evaluated
10223 to a temporary if the lvalue symbol is referenced in it. */
10224 if (lhs->rank)
10225 {
10226 for (ref = lhs->ref; ref; ref= ref->next)
10227 if (ref->type == REF_ARRAY)
10228 {
10229 for (n = 0; n < ref->u.ar.dimen; n++)
10230 if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
10231 && gfc_find_sym_in_expr (lhs->symtree->n.sym,
10232 ref->u.ar.start[n]))
10233 ref->u.ar.start[n]
10234 = gfc_get_parentheses (ref->u.ar.start[n]);
10235 }
10236 }
10237
10238 if (gfc_pure (NULL))
10239 {
10240 if (lhs->ts.type == BT_DERIVED
10241 && lhs->expr_type == EXPR_VARIABLE
10242 && lhs->ts.u.derived->attr.pointer_comp
10243 && rhs->expr_type == EXPR_VARIABLE
10244 && (gfc_impure_variable (rhs->symtree->n.sym)
10245 || gfc_is_coindexed (rhs)))
10246 {
10247 /* F2008, C1283. */
10248 if (gfc_is_coindexed (rhs))
10249 gfc_error ("Coindexed expression at %L is assigned to "
10250 "a derived type variable with a POINTER "
10251 "component in a PURE procedure",
10252 &rhs->where);
10253 else
10254 gfc_error ("The impure variable at %L is assigned to "
10255 "a derived type variable with a POINTER "
10256 "component in a PURE procedure (12.6)",
10257 &rhs->where);
10258 return rval;
10259 }
10260
10261 /* Fortran 2008, C1283. */
10262 if (gfc_is_coindexed (lhs))
10263 {
10264 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10265 "procedure", &rhs->where);
10266 return rval;
10267 }
10268 }
10269
10270 if (gfc_implicit_pure (NULL))
10271 {
10272 if (lhs->expr_type == EXPR_VARIABLE
10273 && lhs->symtree->n.sym != gfc_current_ns->proc_name
10274 && lhs->symtree->n.sym->ns != gfc_current_ns)
10275 gfc_unset_implicit_pure (NULL);
10276
10277 if (lhs->ts.type == BT_DERIVED
10278 && lhs->expr_type == EXPR_VARIABLE
10279 && lhs->ts.u.derived->attr.pointer_comp
10280 && rhs->expr_type == EXPR_VARIABLE
10281 && (gfc_impure_variable (rhs->symtree->n.sym)
10282 || gfc_is_coindexed (rhs)))
10283 gfc_unset_implicit_pure (NULL);
10284
10285 /* Fortran 2008, C1283. */
10286 if (gfc_is_coindexed (lhs))
10287 gfc_unset_implicit_pure (NULL);
10288 }
10289
10290 /* F2008, 7.2.1.2. */
10291 attr = gfc_expr_attr (lhs);
10292 if (lhs->ts.type == BT_CLASS && attr.allocatable)
10293 {
10294 if (attr.codimension)
10295 {
10296 gfc_error ("Assignment to polymorphic coarray at %L is not "
10297 "permitted", &lhs->where);
10298 return false;
10299 }
10300 if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
10301 "polymorphic variable at %L", &lhs->where))
10302 return false;
10303 if (!flag_realloc_lhs)
10304 {
10305 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10306 "requires %<-frealloc-lhs%>", &lhs->where);
10307 return false;
10308 }
10309 }
10310 else if (lhs->ts.type == BT_CLASS)
10311 {
10312 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10313 "assignment at %L - check that there is a matching specific "
10314 "subroutine for '=' operator", &lhs->where);
10315 return false;
10316 }
10317
10318 bool lhs_coindexed = gfc_is_coindexed (lhs);
10319
10320 /* F2008, Section 7.2.1.2. */
10321 if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
10322 {
10323 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10324 "component in assignment at %L", &lhs->where);
10325 return false;
10326 }
10327
10328 /* Assign the 'data' of a class object to a derived type. */
10329 if (lhs->ts.type == BT_DERIVED
10330 && rhs->ts.type == BT_CLASS
10331 && rhs->expr_type != EXPR_ARRAY)
10332 gfc_add_data_component (rhs);
10333
10334 bool caf_convert_to_send = flag_coarray == GFC_FCOARRAY_LIB
10335 && (lhs_coindexed
10336 || (code->expr2->expr_type == EXPR_FUNCTION
10337 && code->expr2->value.function.isym
10338 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET
10339 && (code->expr1->rank == 0 || code->expr2->rank != 0)
10340 && !gfc_expr_attr (rhs).allocatable
10341 && !gfc_has_vector_subscript (rhs)));
10342
10343 gfc_check_assign (lhs, rhs, 1, !caf_convert_to_send);
10344
10345 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10346 Additionally, insert this code when the RHS is a CAF as we then use the
10347 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10348 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10349 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10350 path. */
10351 if (caf_convert_to_send)
10352 {
10353 if (code->expr2->expr_type == EXPR_FUNCTION
10354 && code->expr2->value.function.isym
10355 && code->expr2->value.function.isym->id == GFC_ISYM_CAF_GET)
10356 remove_caf_get_intrinsic (code->expr2);
10357 code->op = EXEC_CALL;
10358 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree, true);
10359 code->resolved_sym = code->symtree->n.sym;
10360 code->resolved_sym->attr.flavor = FL_PROCEDURE;
10361 code->resolved_sym->attr.intrinsic = 1;
10362 code->resolved_sym->attr.subroutine = 1;
10363 code->resolved_isym = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
10364 gfc_commit_symbol (code->resolved_sym);
10365 code->ext.actual = gfc_get_actual_arglist ();
10366 code->ext.actual->expr = lhs;
10367 code->ext.actual->next = gfc_get_actual_arglist ();
10368 code->ext.actual->next->expr = rhs;
10369 code->expr1 = NULL;
10370 code->expr2 = NULL;
10371 }
10372
10373 return false;
10374 }
10375
10376
10377 /* Add a component reference onto an expression. */
10378
10379 static void
10380 add_comp_ref (gfc_expr *e, gfc_component *c)
10381 {
10382 gfc_ref **ref;
10383 ref = &(e->ref);
10384 while (*ref)
10385 ref = &((*ref)->next);
10386 *ref = gfc_get_ref ();
10387 (*ref)->type = REF_COMPONENT;
10388 (*ref)->u.c.sym = e->ts.u.derived;
10389 (*ref)->u.c.component = c;
10390 e->ts = c->ts;
10391
10392 /* Add a full array ref, as necessary. */
10393 if (c->as)
10394 {
10395 gfc_add_full_array_ref (e, c->as);
10396 e->rank = c->as->rank;
10397 }
10398 }
10399
10400
10401 /* Build an assignment. Keep the argument 'op' for future use, so that
10402 pointer assignments can be made. */
10403
10404 static gfc_code *
10405 build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
10406 gfc_component *comp1, gfc_component *comp2, locus loc)
10407 {
10408 gfc_code *this_code;
10409
10410 this_code = gfc_get_code (op);
10411 this_code->next = NULL;
10412 this_code->expr1 = gfc_copy_expr (expr1);
10413 this_code->expr2 = gfc_copy_expr (expr2);
10414 this_code->loc = loc;
10415 if (comp1 && comp2)
10416 {
10417 add_comp_ref (this_code->expr1, comp1);
10418 add_comp_ref (this_code->expr2, comp2);
10419 }
10420
10421 return this_code;
10422 }
10423
10424
10425 /* Makes a temporary variable expression based on the characteristics of
10426 a given variable expression. */
10427
10428 static gfc_expr*
10429 get_temp_from_expr (gfc_expr *e, gfc_namespace *ns)
10430 {
10431 static int serial = 0;
10432 char name[GFC_MAX_SYMBOL_LEN];
10433 gfc_symtree *tmp;
10434 gfc_array_spec *as;
10435 gfc_array_ref *aref;
10436 gfc_ref *ref;
10437
10438 sprintf (name, GFC_PREFIX("DA%d"), serial++);
10439 gfc_get_sym_tree (name, ns, &tmp, false);
10440 gfc_add_type (tmp->n.sym, &e->ts, NULL);
10441
10442 as = NULL;
10443 ref = NULL;
10444 aref = NULL;
10445
10446 /* Obtain the arrayspec for the temporary. */
10447 if (e->rank && e->expr_type != EXPR_ARRAY
10448 && e->expr_type != EXPR_FUNCTION
10449 && e->expr_type != EXPR_OP)
10450 {
10451 aref = gfc_find_array_ref (e);
10452 if (e->expr_type == EXPR_VARIABLE
10453 && e->symtree->n.sym->as == aref->as)
10454 as = aref->as;
10455 else
10456 {
10457 for (ref = e->ref; ref; ref = ref->next)
10458 if (ref->type == REF_COMPONENT
10459 && ref->u.c.component->as == aref->as)
10460 {
10461 as = aref->as;
10462 break;
10463 }
10464 }
10465 }
10466
10467 /* Add the attributes and the arrayspec to the temporary. */
10468 tmp->n.sym->attr = gfc_expr_attr (e);
10469 tmp->n.sym->attr.function = 0;
10470 tmp->n.sym->attr.result = 0;
10471 tmp->n.sym->attr.flavor = FL_VARIABLE;
10472
10473 if (as)
10474 {
10475 tmp->n.sym->as = gfc_copy_array_spec (as);
10476 if (!ref)
10477 ref = e->ref;
10478 if (as->type == AS_DEFERRED)
10479 tmp->n.sym->attr.allocatable = 1;
10480 }
10481 else if (e->rank && (e->expr_type == EXPR_ARRAY
10482 || e->expr_type == EXPR_FUNCTION
10483 || e->expr_type == EXPR_OP))
10484 {
10485 tmp->n.sym->as = gfc_get_array_spec ();
10486 tmp->n.sym->as->type = AS_DEFERRED;
10487 tmp->n.sym->as->rank = e->rank;
10488 tmp->n.sym->attr.allocatable = 1;
10489 tmp->n.sym->attr.dimension = 1;
10490 }
10491 else
10492 tmp->n.sym->attr.dimension = 0;
10493
10494 gfc_set_sym_referenced (tmp->n.sym);
10495 gfc_commit_symbol (tmp->n.sym);
10496 e = gfc_lval_expr_from_sym (tmp->n.sym);
10497
10498 /* Should the lhs be a section, use its array ref for the
10499 temporary expression. */
10500 if (aref && aref->type != AR_FULL)
10501 {
10502 gfc_free_ref_list (e->ref);
10503 e->ref = gfc_copy_ref (ref);
10504 }
10505 return e;
10506 }
10507
10508
10509 /* Add one line of code to the code chain, making sure that 'head' and
10510 'tail' are appropriately updated. */
10511
10512 static void
10513 add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
10514 {
10515 gcc_assert (this_code);
10516 if (*head == NULL)
10517 *head = *tail = *this_code;
10518 else
10519 *tail = gfc_append_code (*tail, *this_code);
10520 *this_code = NULL;
10521 }
10522
10523
10524 /* Counts the potential number of part array references that would
10525 result from resolution of typebound defined assignments. */
10526
10527 static int
10528 nonscalar_typebound_assign (gfc_symbol *derived, int depth)
10529 {
10530 gfc_component *c;
10531 int c_depth = 0, t_depth;
10532
10533 for (c= derived->components; c; c = c->next)
10534 {
10535 if ((!gfc_bt_struct (c->ts.type)
10536 || c->attr.pointer
10537 || c->attr.allocatable
10538 || c->attr.proc_pointer_comp
10539 || c->attr.class_pointer
10540 || c->attr.proc_pointer)
10541 && !c->attr.defined_assign_comp)
10542 continue;
10543
10544 if (c->as && c_depth == 0)
10545 c_depth = 1;
10546
10547 if (c->ts.u.derived->attr.defined_assign_comp)
10548 t_depth = nonscalar_typebound_assign (c->ts.u.derived,
10549 c->as ? 1 : 0);
10550 else
10551 t_depth = 0;
10552
10553 c_depth = t_depth > c_depth ? t_depth : c_depth;
10554 }
10555 return depth + c_depth;
10556 }
10557
10558
10559 /* Implement 7.2.1.3 of the F08 standard:
10560 "An intrinsic assignment where the variable is of derived type is
10561 performed as if each component of the variable were assigned from the
10562 corresponding component of expr using pointer assignment (7.2.2) for
10563 each pointer component, defined assignment for each nonpointer
10564 nonallocatable component of a type that has a type-bound defined
10565 assignment consistent with the component, intrinsic assignment for
10566 each other nonpointer nonallocatable component, ..."
10567
10568 The pointer assignments are taken care of by the intrinsic
10569 assignment of the structure itself. This function recursively adds
10570 defined assignments where required. The recursion is accomplished
10571 by calling gfc_resolve_code.
10572
10573 When the lhs in a defined assignment has intent INOUT, we need a
10574 temporary for the lhs. In pseudo-code:
10575
10576 ! Only call function lhs once.
10577 if (lhs is not a constant or an variable)
10578 temp_x = expr2
10579 expr2 => temp_x
10580 ! Do the intrinsic assignment
10581 expr1 = expr2
10582 ! Now do the defined assignments
10583 do over components with typebound defined assignment [%cmp]
10584 #if one component's assignment procedure is INOUT
10585 t1 = expr1
10586 #if expr2 non-variable
10587 temp_x = expr2
10588 expr2 => temp_x
10589 # endif
10590 expr1 = expr2
10591 # for each cmp
10592 t1%cmp {defined=} expr2%cmp
10593 expr1%cmp = t1%cmp
10594 #else
10595 expr1 = expr2
10596
10597 # for each cmp
10598 expr1%cmp {defined=} expr2%cmp
10599 #endif
10600 */
10601
10602 /* The temporary assignments have to be put on top of the additional
10603 code to avoid the result being changed by the intrinsic assignment.
10604 */
10605 static int component_assignment_level = 0;
10606 static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
10607
10608 static void
10609 generate_component_assignments (gfc_code **code, gfc_namespace *ns)
10610 {
10611 gfc_component *comp1, *comp2;
10612 gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
10613 gfc_expr *t1;
10614 int error_count, depth;
10615
10616 gfc_get_errors (NULL, &error_count);
10617
10618 /* Filter out continuing processing after an error. */
10619 if (error_count
10620 || (*code)->expr1->ts.type != BT_DERIVED
10621 || (*code)->expr2->ts.type != BT_DERIVED)
10622 return;
10623
10624 /* TODO: Handle more than one part array reference in assignments. */
10625 depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
10626 (*code)->expr1->rank ? 1 : 0);
10627 if (depth > 1)
10628 {
10629 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
10630 "done because multiple part array references would "
10631 "occur in intermediate expressions.", &(*code)->loc);
10632 return;
10633 }
10634
10635 component_assignment_level++;
10636
10637 /* Create a temporary so that functions get called only once. */
10638 if ((*code)->expr2->expr_type != EXPR_VARIABLE
10639 && (*code)->expr2->expr_type != EXPR_CONSTANT)
10640 {
10641 gfc_expr *tmp_expr;
10642
10643 /* Assign the rhs to the temporary. */
10644 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
10645 this_code = build_assignment (EXEC_ASSIGN,
10646 tmp_expr, (*code)->expr2,
10647 NULL, NULL, (*code)->loc);
10648 /* Add the code and substitute the rhs expression. */
10649 add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
10650 gfc_free_expr ((*code)->expr2);
10651 (*code)->expr2 = tmp_expr;
10652 }
10653
10654 /* Do the intrinsic assignment. This is not needed if the lhs is one
10655 of the temporaries generated here, since the intrinsic assignment
10656 to the final result already does this. */
10657 if ((*code)->expr1->symtree->n.sym->name[2] != '@')
10658 {
10659 this_code = build_assignment (EXEC_ASSIGN,
10660 (*code)->expr1, (*code)->expr2,
10661 NULL, NULL, (*code)->loc);
10662 add_code_to_chain (&this_code, &head, &tail);
10663 }
10664
10665 comp1 = (*code)->expr1->ts.u.derived->components;
10666 comp2 = (*code)->expr2->ts.u.derived->components;
10667
10668 t1 = NULL;
10669 for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
10670 {
10671 bool inout = false;
10672
10673 /* The intrinsic assignment does the right thing for pointers
10674 of all kinds and allocatable components. */
10675 if (!gfc_bt_struct (comp1->ts.type)
10676 || comp1->attr.pointer
10677 || comp1->attr.allocatable
10678 || comp1->attr.proc_pointer_comp
10679 || comp1->attr.class_pointer
10680 || comp1->attr.proc_pointer)
10681 continue;
10682
10683 /* Make an assigment for this component. */
10684 this_code = build_assignment (EXEC_ASSIGN,
10685 (*code)->expr1, (*code)->expr2,
10686 comp1, comp2, (*code)->loc);
10687
10688 /* Convert the assignment if there is a defined assignment for
10689 this type. Otherwise, using the call from gfc_resolve_code,
10690 recurse into its components. */
10691 gfc_resolve_code (this_code, ns);
10692
10693 if (this_code->op == EXEC_ASSIGN_CALL)
10694 {
10695 gfc_formal_arglist *dummy_args;
10696 gfc_symbol *rsym;
10697 /* Check that there is a typebound defined assignment. If not,
10698 then this must be a module defined assignment. We cannot
10699 use the defined_assign_comp attribute here because it must
10700 be this derived type that has the defined assignment and not
10701 a parent type. */
10702 if (!(comp1->ts.u.derived->f2k_derived
10703 && comp1->ts.u.derived->f2k_derived
10704 ->tb_op[INTRINSIC_ASSIGN]))
10705 {
10706 gfc_free_statements (this_code);
10707 this_code = NULL;
10708 continue;
10709 }
10710
10711 /* If the first argument of the subroutine has intent INOUT
10712 a temporary must be generated and used instead. */
10713 rsym = this_code->resolved_sym;
10714 dummy_args = gfc_sym_get_dummy_args (rsym);
10715 if (dummy_args
10716 && dummy_args->sym->attr.intent == INTENT_INOUT)
10717 {
10718 gfc_code *temp_code;
10719 inout = true;
10720
10721 /* Build the temporary required for the assignment and put
10722 it at the head of the generated code. */
10723 if (!t1)
10724 {
10725 t1 = get_temp_from_expr ((*code)->expr1, ns);
10726 temp_code = build_assignment (EXEC_ASSIGN,
10727 t1, (*code)->expr1,
10728 NULL, NULL, (*code)->loc);
10729
10730 /* For allocatable LHS, check whether it is allocated. Note
10731 that allocatable components with defined assignment are
10732 not yet support. See PR 57696. */
10733 if ((*code)->expr1->symtree->n.sym->attr.allocatable)
10734 {
10735 gfc_code *block;
10736 gfc_expr *e =
10737 gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
10738 block = gfc_get_code (EXEC_IF);
10739 block->block = gfc_get_code (EXEC_IF);
10740 block->block->expr1
10741 = gfc_build_intrinsic_call (ns,
10742 GFC_ISYM_ALLOCATED, "allocated",
10743 (*code)->loc, 1, e);
10744 block->block->next = temp_code;
10745 temp_code = block;
10746 }
10747 add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
10748 }
10749
10750 /* Replace the first actual arg with the component of the
10751 temporary. */
10752 gfc_free_expr (this_code->ext.actual->expr);
10753 this_code->ext.actual->expr = gfc_copy_expr (t1);
10754 add_comp_ref (this_code->ext.actual->expr, comp1);
10755
10756 /* If the LHS variable is allocatable and wasn't allocated and
10757 the temporary is allocatable, pointer assign the address of
10758 the freshly allocated LHS to the temporary. */
10759 if ((*code)->expr1->symtree->n.sym->attr.allocatable
10760 && gfc_expr_attr ((*code)->expr1).allocatable)
10761 {
10762 gfc_code *block;
10763 gfc_expr *cond;
10764
10765 cond = gfc_get_expr ();
10766 cond->ts.type = BT_LOGICAL;
10767 cond->ts.kind = gfc_default_logical_kind;
10768 cond->expr_type = EXPR_OP;
10769 cond->where = (*code)->loc;
10770 cond->value.op.op = INTRINSIC_NOT;
10771 cond->value.op.op1 = gfc_build_intrinsic_call (ns,
10772 GFC_ISYM_ALLOCATED, "allocated",
10773 (*code)->loc, 1, gfc_copy_expr (t1));
10774 block = gfc_get_code (EXEC_IF);
10775 block->block = gfc_get_code (EXEC_IF);
10776 block->block->expr1 = cond;
10777 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
10778 t1, (*code)->expr1,
10779 NULL, NULL, (*code)->loc);
10780 add_code_to_chain (&block, &head, &tail);
10781 }
10782 }
10783 }
10784 else if (this_code->op == EXEC_ASSIGN && !this_code->next)
10785 {
10786 /* Don't add intrinsic assignments since they are already
10787 effected by the intrinsic assignment of the structure. */
10788 gfc_free_statements (this_code);
10789 this_code = NULL;
10790 continue;
10791 }
10792
10793 add_code_to_chain (&this_code, &head, &tail);
10794
10795 if (t1 && inout)
10796 {
10797 /* Transfer the value to the final result. */
10798 this_code = build_assignment (EXEC_ASSIGN,
10799 (*code)->expr1, t1,
10800 comp1, comp2, (*code)->loc);
10801 add_code_to_chain (&this_code, &head, &tail);
10802 }
10803 }
10804
10805 /* Put the temporary assignments at the top of the generated code. */
10806 if (tmp_head && component_assignment_level == 1)
10807 {
10808 gfc_append_code (tmp_head, head);
10809 head = tmp_head;
10810 tmp_head = tmp_tail = NULL;
10811 }
10812
10813 // If we did a pointer assignment - thus, we need to ensure that the LHS is
10814 // not accidentally deallocated. Hence, nullify t1.
10815 if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
10816 && gfc_expr_attr ((*code)->expr1).allocatable)
10817 {
10818 gfc_code *block;
10819 gfc_expr *cond;
10820 gfc_expr *e;
10821
10822 e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
10823 cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
10824 (*code)->loc, 2, gfc_copy_expr (t1), e);
10825 block = gfc_get_code (EXEC_IF);
10826 block->block = gfc_get_code (EXEC_IF);
10827 block->block->expr1 = cond;
10828 block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
10829 t1, gfc_get_null_expr (&(*code)->loc),
10830 NULL, NULL, (*code)->loc);
10831 gfc_append_code (tail, block);
10832 tail = block;
10833 }
10834
10835 /* Now attach the remaining code chain to the input code. Step on
10836 to the end of the new code since resolution is complete. */
10837 gcc_assert ((*code)->op == EXEC_ASSIGN);
10838 tail->next = (*code)->next;
10839 /* Overwrite 'code' because this would place the intrinsic assignment
10840 before the temporary for the lhs is created. */
10841 gfc_free_expr ((*code)->expr1);
10842 gfc_free_expr ((*code)->expr2);
10843 **code = *head;
10844 if (head != tail)
10845 free (head);
10846 *code = tail;
10847
10848 component_assignment_level--;
10849 }
10850
10851
10852 /* F2008: Pointer function assignments are of the form:
10853 ptr_fcn (args) = expr
10854 This function breaks these assignments into two statements:
10855 temporary_pointer => ptr_fcn(args)
10856 temporary_pointer = expr */
10857
10858 static bool
10859 resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
10860 {
10861 gfc_expr *tmp_ptr_expr;
10862 gfc_code *this_code;
10863 gfc_component *comp;
10864 gfc_symbol *s;
10865
10866 if ((*code)->expr1->expr_type != EXPR_FUNCTION)
10867 return false;
10868
10869 /* Even if standard does not support this feature, continue to build
10870 the two statements to avoid upsetting frontend_passes.c. */
10871 gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
10872 "%L", &(*code)->loc);
10873
10874 comp = gfc_get_proc_ptr_comp ((*code)->expr1);
10875
10876 if (comp)
10877 s = comp->ts.interface;
10878 else
10879 s = (*code)->expr1->symtree->n.sym;
10880
10881 if (s == NULL || !s->result->attr.pointer)
10882 {
10883 gfc_error ("The function result on the lhs of the assignment at "
10884 "%L must have the pointer attribute.",
10885 &(*code)->expr1->where);
10886 (*code)->op = EXEC_NOP;
10887 return false;
10888 }
10889
10890 tmp_ptr_expr = get_temp_from_expr ((*code)->expr2, ns);
10891
10892 /* get_temp_from_expression is set up for ordinary assignments. To that
10893 end, where array bounds are not known, arrays are made allocatable.
10894 Change the temporary to a pointer here. */
10895 tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
10896 tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
10897 tmp_ptr_expr->where = (*code)->loc;
10898
10899 this_code = build_assignment (EXEC_ASSIGN,
10900 tmp_ptr_expr, (*code)->expr2,
10901 NULL, NULL, (*code)->loc);
10902 this_code->next = (*code)->next;
10903 (*code)->next = this_code;
10904 (*code)->op = EXEC_POINTER_ASSIGN;
10905 (*code)->expr2 = (*code)->expr1;
10906 (*code)->expr1 = tmp_ptr_expr;
10907
10908 return true;
10909 }
10910
10911
10912 /* Deferred character length assignments from an operator expression
10913 require a temporary because the character length of the lhs can
10914 change in the course of the assignment. */
10915
10916 static bool
10917 deferred_op_assign (gfc_code **code, gfc_namespace *ns)
10918 {
10919 gfc_expr *tmp_expr;
10920 gfc_code *this_code;
10921
10922 if (!((*code)->expr1->ts.type == BT_CHARACTER
10923 && (*code)->expr1->ts.deferred && (*code)->expr1->rank
10924 && (*code)->expr2->expr_type == EXPR_OP))
10925 return false;
10926
10927 if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
10928 return false;
10929
10930 tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
10931 tmp_expr->where = (*code)->loc;
10932
10933 /* A new charlen is required to ensure that the variable string
10934 length is different to that of the original lhs. */
10935 tmp_expr->ts.u.cl = gfc_get_charlen();
10936 tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
10937 tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
10938 (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
10939
10940 tmp_expr->symtree->n.sym->ts.deferred = 1;
10941
10942 this_code = build_assignment (EXEC_ASSIGN,
10943 (*code)->expr1,
10944 gfc_copy_expr (tmp_expr),
10945 NULL, NULL, (*code)->loc);
10946
10947 (*code)->expr1 = tmp_expr;
10948
10949 this_code->next = (*code)->next;
10950 (*code)->next = this_code;
10951
10952 return true;
10953 }
10954
10955
10956 /* Given a block of code, recursively resolve everything pointed to by this
10957 code block. */
10958
10959 void
10960 gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
10961 {
10962 int omp_workshare_save;
10963 int forall_save, do_concurrent_save;
10964 code_stack frame;
10965 bool t;
10966
10967 frame.prev = cs_base;
10968 frame.head = code;
10969 cs_base = &frame;
10970
10971 find_reachable_labels (code);
10972
10973 for (; code; code = code->next)
10974 {
10975 frame.current = code;
10976 forall_save = forall_flag;
10977 do_concurrent_save = gfc_do_concurrent_flag;
10978
10979 if (code->op == EXEC_FORALL)
10980 {
10981 forall_flag = 1;
10982 gfc_resolve_forall (code, ns, forall_save);
10983 forall_flag = 2;
10984 }
10985 else if (code->block)
10986 {
10987 omp_workshare_save = -1;
10988 switch (code->op)
10989 {
10990 case EXEC_OACC_PARALLEL_LOOP:
10991 case EXEC_OACC_PARALLEL:
10992 case EXEC_OACC_KERNELS_LOOP:
10993 case EXEC_OACC_KERNELS:
10994 case EXEC_OACC_DATA:
10995 case EXEC_OACC_HOST_DATA:
10996 case EXEC_OACC_LOOP:
10997 gfc_resolve_oacc_blocks (code, ns);
10998 break;
10999 case EXEC_OMP_PARALLEL_WORKSHARE:
11000 omp_workshare_save = omp_workshare_flag;
11001 omp_workshare_flag = 1;
11002 gfc_resolve_omp_parallel_blocks (code, ns);
11003 break;
11004 case EXEC_OMP_PARALLEL:
11005 case EXEC_OMP_PARALLEL_DO:
11006 case EXEC_OMP_PARALLEL_DO_SIMD:
11007 case EXEC_OMP_PARALLEL_SECTIONS:
11008 case EXEC_OMP_TARGET_PARALLEL:
11009 case EXEC_OMP_TARGET_PARALLEL_DO:
11010 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11011 case EXEC_OMP_TARGET_TEAMS:
11012 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11013 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11014 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11015 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11016 case EXEC_OMP_TASK:
11017 case EXEC_OMP_TASKLOOP:
11018 case EXEC_OMP_TASKLOOP_SIMD:
11019 case EXEC_OMP_TEAMS:
11020 case EXEC_OMP_TEAMS_DISTRIBUTE:
11021 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11022 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11023 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11024 omp_workshare_save = omp_workshare_flag;
11025 omp_workshare_flag = 0;
11026 gfc_resolve_omp_parallel_blocks (code, ns);
11027 break;
11028 case EXEC_OMP_DISTRIBUTE:
11029 case EXEC_OMP_DISTRIBUTE_SIMD:
11030 case EXEC_OMP_DO:
11031 case EXEC_OMP_DO_SIMD:
11032 case EXEC_OMP_SIMD:
11033 case EXEC_OMP_TARGET_SIMD:
11034 gfc_resolve_omp_do_blocks (code, ns);
11035 break;
11036 case EXEC_SELECT_TYPE:
11037 /* Blocks are handled in resolve_select_type because we have
11038 to transform the SELECT TYPE into ASSOCIATE first. */
11039 break;
11040 case EXEC_DO_CONCURRENT:
11041 gfc_do_concurrent_flag = 1;
11042 gfc_resolve_blocks (code->block, ns);
11043 gfc_do_concurrent_flag = 2;
11044 break;
11045 case EXEC_OMP_WORKSHARE:
11046 omp_workshare_save = omp_workshare_flag;
11047 omp_workshare_flag = 1;
11048 /* FALL THROUGH */
11049 default:
11050 gfc_resolve_blocks (code->block, ns);
11051 break;
11052 }
11053
11054 if (omp_workshare_save != -1)
11055 omp_workshare_flag = omp_workshare_save;
11056 }
11057 start:
11058 t = true;
11059 if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
11060 t = gfc_resolve_expr (code->expr1);
11061 forall_flag = forall_save;
11062 gfc_do_concurrent_flag = do_concurrent_save;
11063
11064 if (!gfc_resolve_expr (code->expr2))
11065 t = false;
11066
11067 if (code->op == EXEC_ALLOCATE
11068 && !gfc_resolve_expr (code->expr3))
11069 t = false;
11070
11071 switch (code->op)
11072 {
11073 case EXEC_NOP:
11074 case EXEC_END_BLOCK:
11075 case EXEC_END_NESTED_BLOCK:
11076 case EXEC_CYCLE:
11077 case EXEC_PAUSE:
11078 case EXEC_STOP:
11079 case EXEC_ERROR_STOP:
11080 case EXEC_EXIT:
11081 case EXEC_CONTINUE:
11082 case EXEC_DT_END:
11083 case EXEC_ASSIGN_CALL:
11084 break;
11085
11086 case EXEC_CRITICAL:
11087 resolve_critical (code);
11088 break;
11089
11090 case EXEC_SYNC_ALL:
11091 case EXEC_SYNC_IMAGES:
11092 case EXEC_SYNC_MEMORY:
11093 resolve_sync (code);
11094 break;
11095
11096 case EXEC_LOCK:
11097 case EXEC_UNLOCK:
11098 case EXEC_EVENT_POST:
11099 case EXEC_EVENT_WAIT:
11100 resolve_lock_unlock_event (code);
11101 break;
11102
11103 case EXEC_FAIL_IMAGE:
11104 case EXEC_FORM_TEAM:
11105 case EXEC_CHANGE_TEAM:
11106 case EXEC_END_TEAM:
11107 case EXEC_SYNC_TEAM:
11108 break;
11109
11110 case EXEC_ENTRY:
11111 /* Keep track of which entry we are up to. */
11112 current_entry_id = code->ext.entry->id;
11113 break;
11114
11115 case EXEC_WHERE:
11116 resolve_where (code, NULL);
11117 break;
11118
11119 case EXEC_GOTO:
11120 if (code->expr1 != NULL)
11121 {
11122 if (code->expr1->ts.type != BT_INTEGER)
11123 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11124 "INTEGER variable", &code->expr1->where);
11125 else if (code->expr1->symtree->n.sym->attr.assign != 1)
11126 gfc_error ("Variable %qs has not been assigned a target "
11127 "label at %L", code->expr1->symtree->n.sym->name,
11128 &code->expr1->where);
11129 }
11130 else
11131 resolve_branch (code->label1, code);
11132 break;
11133
11134 case EXEC_RETURN:
11135 if (code->expr1 != NULL
11136 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
11137 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11138 "INTEGER return specifier", &code->expr1->where);
11139 break;
11140
11141 case EXEC_INIT_ASSIGN:
11142 case EXEC_END_PROCEDURE:
11143 break;
11144
11145 case EXEC_ASSIGN:
11146 if (!t)
11147 break;
11148
11149 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11150 the LHS. */
11151 if (code->expr1->expr_type == EXPR_FUNCTION
11152 && code->expr1->value.function.isym
11153 && code->expr1->value.function.isym->id == GFC_ISYM_CAF_GET)
11154 remove_caf_get_intrinsic (code->expr1);
11155
11156 /* If this is a pointer function in an lvalue variable context,
11157 the new code will have to be resolved afresh. This is also the
11158 case with an error, where the code is transformed into NOP to
11159 prevent ICEs downstream. */
11160 if (resolve_ptr_fcn_assign (&code, ns)
11161 || code->op == EXEC_NOP)
11162 goto start;
11163
11164 if (!gfc_check_vardef_context (code->expr1, false, false, false,
11165 _("assignment")))
11166 break;
11167
11168 if (resolve_ordinary_assign (code, ns))
11169 {
11170 if (code->op == EXEC_COMPCALL)
11171 goto compcall;
11172 else
11173 goto call;
11174 }
11175
11176 /* Check for dependencies in deferred character length array
11177 assignments and generate a temporary, if necessary. */
11178 if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
11179 break;
11180
11181 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11182 if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
11183 && code->expr1->ts.u.derived
11184 && code->expr1->ts.u.derived->attr.defined_assign_comp)
11185 generate_component_assignments (&code, ns);
11186
11187 break;
11188
11189 case EXEC_LABEL_ASSIGN:
11190 if (code->label1->defined == ST_LABEL_UNKNOWN)
11191 gfc_error ("Label %d referenced at %L is never defined",
11192 code->label1->value, &code->label1->where);
11193 if (t
11194 && (code->expr1->expr_type != EXPR_VARIABLE
11195 || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
11196 || code->expr1->symtree->n.sym->ts.kind
11197 != gfc_default_integer_kind
11198 || code->expr1->symtree->n.sym->as != NULL))
11199 gfc_error ("ASSIGN statement at %L requires a scalar "
11200 "default INTEGER variable", &code->expr1->where);
11201 break;
11202
11203 case EXEC_POINTER_ASSIGN:
11204 {
11205 gfc_expr* e;
11206
11207 if (!t)
11208 break;
11209
11210 /* This is both a variable definition and pointer assignment
11211 context, so check both of them. For rank remapping, a final
11212 array ref may be present on the LHS and fool gfc_expr_attr
11213 used in gfc_check_vardef_context. Remove it. */
11214 e = remove_last_array_ref (code->expr1);
11215 t = gfc_check_vardef_context (e, true, false, false,
11216 _("pointer assignment"));
11217 if (t)
11218 t = gfc_check_vardef_context (e, false, false, false,
11219 _("pointer assignment"));
11220 gfc_free_expr (e);
11221 if (!t)
11222 break;
11223
11224 gfc_check_pointer_assign (code->expr1, code->expr2);
11225
11226 /* Assigning a class object always is a regular assign. */
11227 if (code->expr2->ts.type == BT_CLASS
11228 && code->expr1->ts.type == BT_CLASS
11229 && !CLASS_DATA (code->expr2)->attr.dimension
11230 && !(gfc_expr_attr (code->expr1).proc_pointer
11231 && code->expr2->expr_type == EXPR_VARIABLE
11232 && code->expr2->symtree->n.sym->attr.flavor
11233 == FL_PROCEDURE))
11234 code->op = EXEC_ASSIGN;
11235 break;
11236 }
11237
11238 case EXEC_ARITHMETIC_IF:
11239 {
11240 gfc_expr *e = code->expr1;
11241
11242 gfc_resolve_expr (e);
11243 if (e->expr_type == EXPR_NULL)
11244 gfc_error ("Invalid NULL at %L", &e->where);
11245
11246 if (t && (e->rank > 0
11247 || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
11248 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11249 "REAL or INTEGER expression", &e->where);
11250
11251 resolve_branch (code->label1, code);
11252 resolve_branch (code->label2, code);
11253 resolve_branch (code->label3, code);
11254 }
11255 break;
11256
11257 case EXEC_IF:
11258 if (t && code->expr1 != NULL
11259 && (code->expr1->ts.type != BT_LOGICAL
11260 || code->expr1->rank != 0))
11261 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11262 &code->expr1->where);
11263 break;
11264
11265 case EXEC_CALL:
11266 call:
11267 resolve_call (code);
11268 break;
11269
11270 case EXEC_COMPCALL:
11271 compcall:
11272 resolve_typebound_subroutine (code);
11273 break;
11274
11275 case EXEC_CALL_PPC:
11276 resolve_ppc_call (code);
11277 break;
11278
11279 case EXEC_SELECT:
11280 /* Select is complicated. Also, a SELECT construct could be
11281 a transformed computed GOTO. */
11282 resolve_select (code, false);
11283 break;
11284
11285 case EXEC_SELECT_TYPE:
11286 resolve_select_type (code, ns);
11287 break;
11288
11289 case EXEC_BLOCK:
11290 resolve_block_construct (code);
11291 break;
11292
11293 case EXEC_DO:
11294 if (code->ext.iterator != NULL)
11295 {
11296 gfc_iterator *iter = code->ext.iterator;
11297 if (gfc_resolve_iterator (iter, true, false))
11298 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
11299 true);
11300 }
11301 break;
11302
11303 case EXEC_DO_WHILE:
11304 if (code->expr1 == NULL)
11305 gfc_internal_error ("gfc_resolve_code(): No expression on "
11306 "DO WHILE");
11307 if (t
11308 && (code->expr1->rank != 0
11309 || code->expr1->ts.type != BT_LOGICAL))
11310 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11311 "a scalar LOGICAL expression", &code->expr1->where);
11312 break;
11313
11314 case EXEC_ALLOCATE:
11315 if (t)
11316 resolve_allocate_deallocate (code, "ALLOCATE");
11317
11318 break;
11319
11320 case EXEC_DEALLOCATE:
11321 if (t)
11322 resolve_allocate_deallocate (code, "DEALLOCATE");
11323
11324 break;
11325
11326 case EXEC_OPEN:
11327 if (!gfc_resolve_open (code->ext.open))
11328 break;
11329
11330 resolve_branch (code->ext.open->err, code);
11331 break;
11332
11333 case EXEC_CLOSE:
11334 if (!gfc_resolve_close (code->ext.close))
11335 break;
11336
11337 resolve_branch (code->ext.close->err, code);
11338 break;
11339
11340 case EXEC_BACKSPACE:
11341 case EXEC_ENDFILE:
11342 case EXEC_REWIND:
11343 case EXEC_FLUSH:
11344 if (!gfc_resolve_filepos (code->ext.filepos))
11345 break;
11346
11347 resolve_branch (code->ext.filepos->err, code);
11348 break;
11349
11350 case EXEC_INQUIRE:
11351 if (!gfc_resolve_inquire (code->ext.inquire))
11352 break;
11353
11354 resolve_branch (code->ext.inquire->err, code);
11355 break;
11356
11357 case EXEC_IOLENGTH:
11358 gcc_assert (code->ext.inquire != NULL);
11359 if (!gfc_resolve_inquire (code->ext.inquire))
11360 break;
11361
11362 resolve_branch (code->ext.inquire->err, code);
11363 break;
11364
11365 case EXEC_WAIT:
11366 if (!gfc_resolve_wait (code->ext.wait))
11367 break;
11368
11369 resolve_branch (code->ext.wait->err, code);
11370 resolve_branch (code->ext.wait->end, code);
11371 resolve_branch (code->ext.wait->eor, code);
11372 break;
11373
11374 case EXEC_READ:
11375 case EXEC_WRITE:
11376 if (!gfc_resolve_dt (code->ext.dt, &code->loc))
11377 break;
11378
11379 resolve_branch (code->ext.dt->err, code);
11380 resolve_branch (code->ext.dt->end, code);
11381 resolve_branch (code->ext.dt->eor, code);
11382 break;
11383
11384 case EXEC_TRANSFER:
11385 resolve_transfer (code);
11386 break;
11387
11388 case EXEC_DO_CONCURRENT:
11389 case EXEC_FORALL:
11390 resolve_forall_iterators (code->ext.forall_iterator);
11391
11392 if (code->expr1 != NULL
11393 && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
11394 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
11395 "expression", &code->expr1->where);
11396 break;
11397
11398 case EXEC_OACC_PARALLEL_LOOP:
11399 case EXEC_OACC_PARALLEL:
11400 case EXEC_OACC_KERNELS_LOOP:
11401 case EXEC_OACC_KERNELS:
11402 case EXEC_OACC_DATA:
11403 case EXEC_OACC_HOST_DATA:
11404 case EXEC_OACC_LOOP:
11405 case EXEC_OACC_UPDATE:
11406 case EXEC_OACC_WAIT:
11407 case EXEC_OACC_CACHE:
11408 case EXEC_OACC_ENTER_DATA:
11409 case EXEC_OACC_EXIT_DATA:
11410 case EXEC_OACC_ATOMIC:
11411 case EXEC_OACC_DECLARE:
11412 gfc_resolve_oacc_directive (code, ns);
11413 break;
11414
11415 case EXEC_OMP_ATOMIC:
11416 case EXEC_OMP_BARRIER:
11417 case EXEC_OMP_CANCEL:
11418 case EXEC_OMP_CANCELLATION_POINT:
11419 case EXEC_OMP_CRITICAL:
11420 case EXEC_OMP_FLUSH:
11421 case EXEC_OMP_DISTRIBUTE:
11422 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
11423 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
11424 case EXEC_OMP_DISTRIBUTE_SIMD:
11425 case EXEC_OMP_DO:
11426 case EXEC_OMP_DO_SIMD:
11427 case EXEC_OMP_MASTER:
11428 case EXEC_OMP_ORDERED:
11429 case EXEC_OMP_SECTIONS:
11430 case EXEC_OMP_SIMD:
11431 case EXEC_OMP_SINGLE:
11432 case EXEC_OMP_TARGET:
11433 case EXEC_OMP_TARGET_DATA:
11434 case EXEC_OMP_TARGET_ENTER_DATA:
11435 case EXEC_OMP_TARGET_EXIT_DATA:
11436 case EXEC_OMP_TARGET_PARALLEL:
11437 case EXEC_OMP_TARGET_PARALLEL_DO:
11438 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
11439 case EXEC_OMP_TARGET_SIMD:
11440 case EXEC_OMP_TARGET_TEAMS:
11441 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
11442 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
11443 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11444 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
11445 case EXEC_OMP_TARGET_UPDATE:
11446 case EXEC_OMP_TASK:
11447 case EXEC_OMP_TASKGROUP:
11448 case EXEC_OMP_TASKLOOP:
11449 case EXEC_OMP_TASKLOOP_SIMD:
11450 case EXEC_OMP_TASKWAIT:
11451 case EXEC_OMP_TASKYIELD:
11452 case EXEC_OMP_TEAMS:
11453 case EXEC_OMP_TEAMS_DISTRIBUTE:
11454 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
11455 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
11456 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
11457 case EXEC_OMP_WORKSHARE:
11458 gfc_resolve_omp_directive (code, ns);
11459 break;
11460
11461 case EXEC_OMP_PARALLEL:
11462 case EXEC_OMP_PARALLEL_DO:
11463 case EXEC_OMP_PARALLEL_DO_SIMD:
11464 case EXEC_OMP_PARALLEL_SECTIONS:
11465 case EXEC_OMP_PARALLEL_WORKSHARE:
11466 omp_workshare_save = omp_workshare_flag;
11467 omp_workshare_flag = 0;
11468 gfc_resolve_omp_directive (code, ns);
11469 omp_workshare_flag = omp_workshare_save;
11470 break;
11471
11472 default:
11473 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
11474 }
11475 }
11476
11477 cs_base = frame.prev;
11478 }
11479
11480
11481 /* Resolve initial values and make sure they are compatible with
11482 the variable. */
11483
11484 static void
11485 resolve_values (gfc_symbol *sym)
11486 {
11487 bool t;
11488
11489 if (sym->value == NULL)
11490 return;
11491
11492 if (sym->value->expr_type == EXPR_STRUCTURE)
11493 t= resolve_structure_cons (sym->value, 1);
11494 else
11495 t = gfc_resolve_expr (sym->value);
11496
11497 if (!t)
11498 return;
11499
11500 gfc_check_assign_symbol (sym, NULL, sym->value);
11501 }
11502
11503
11504 /* Verify any BIND(C) derived types in the namespace so we can report errors
11505 for them once, rather than for each variable declared of that type. */
11506
11507 static void
11508 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
11509 {
11510 if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
11511 && derived_sym->attr.is_bind_c == 1)
11512 verify_bind_c_derived_type (derived_sym);
11513
11514 return;
11515 }
11516
11517
11518 /* Check the interfaces of DTIO procedures associated with derived
11519 type 'sym'. These procedures can either have typebound bindings or
11520 can appear in DTIO generic interfaces. */
11521
11522 static void
11523 gfc_verify_DTIO_procedures (gfc_symbol *sym)
11524 {
11525 if (!sym || sym->attr.flavor != FL_DERIVED)
11526 return;
11527
11528 gfc_check_dtio_interfaces (sym);
11529
11530 return;
11531 }
11532
11533 /* Verify that any binding labels used in a given namespace do not collide
11534 with the names or binding labels of any global symbols. Multiple INTERFACE
11535 for the same procedure are permitted. */
11536
11537 static void
11538 gfc_verify_binding_labels (gfc_symbol *sym)
11539 {
11540 gfc_gsymbol *gsym;
11541 const char *module;
11542
11543 if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
11544 || sym->attr.flavor == FL_DERIVED || !sym->binding_label)
11545 return;
11546
11547 gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
11548
11549 if (sym->module)
11550 module = sym->module;
11551 else if (sym->ns && sym->ns->proc_name
11552 && sym->ns->proc_name->attr.flavor == FL_MODULE)
11553 module = sym->ns->proc_name->name;
11554 else if (sym->ns && sym->ns->parent
11555 && sym->ns && sym->ns->parent->proc_name
11556 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
11557 module = sym->ns->parent->proc_name->name;
11558 else
11559 module = NULL;
11560
11561 if (!gsym
11562 || (!gsym->defined
11563 && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
11564 {
11565 if (!gsym)
11566 gsym = gfc_get_gsymbol (sym->binding_label);
11567 gsym->where = sym->declared_at;
11568 gsym->sym_name = sym->name;
11569 gsym->binding_label = sym->binding_label;
11570 gsym->ns = sym->ns;
11571 gsym->mod_name = module;
11572 if (sym->attr.function)
11573 gsym->type = GSYM_FUNCTION;
11574 else if (sym->attr.subroutine)
11575 gsym->type = GSYM_SUBROUTINE;
11576 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
11577 gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
11578 return;
11579 }
11580
11581 if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
11582 {
11583 gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
11584 "identifier as entity at %L", sym->name,
11585 sym->binding_label, &sym->declared_at, &gsym->where);
11586 /* Clear the binding label to prevent checking multiple times. */
11587 sym->binding_label = NULL;
11588
11589 }
11590 else if (sym->attr.flavor == FL_VARIABLE && module
11591 && (strcmp (module, gsym->mod_name) != 0
11592 || strcmp (sym->name, gsym->sym_name) != 0))
11593 {
11594 /* This can only happen if the variable is defined in a module - if it
11595 isn't the same module, reject it. */
11596 gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
11597 "uses the same global identifier as entity at %L from module %qs",
11598 sym->name, module, sym->binding_label,
11599 &sym->declared_at, &gsym->where, gsym->mod_name);
11600 sym->binding_label = NULL;
11601 }
11602 else if ((sym->attr.function || sym->attr.subroutine)
11603 && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
11604 || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
11605 && sym != gsym->ns->proc_name
11606 && (module != gsym->mod_name
11607 || strcmp (gsym->sym_name, sym->name) != 0
11608 || (module && strcmp (module, gsym->mod_name) != 0)))
11609 {
11610 /* Print an error if the procedure is defined multiple times; we have to
11611 exclude references to the same procedure via module association or
11612 multiple checks for the same procedure. */
11613 gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
11614 "global identifier as entity at %L", sym->name,
11615 sym->binding_label, &sym->declared_at, &gsym->where);
11616 sym->binding_label = NULL;
11617 }
11618 }
11619
11620
11621 /* Resolve an index expression. */
11622
11623 static bool
11624 resolve_index_expr (gfc_expr *e)
11625 {
11626 if (!gfc_resolve_expr (e))
11627 return false;
11628
11629 if (!gfc_simplify_expr (e, 0))
11630 return false;
11631
11632 if (!gfc_specification_expr (e))
11633 return false;
11634
11635 return true;
11636 }
11637
11638
11639 /* Resolve a charlen structure. */
11640
11641 static bool
11642 resolve_charlen (gfc_charlen *cl)
11643 {
11644 int k;
11645 bool saved_specification_expr;
11646
11647 if (cl->resolved)
11648 return true;
11649
11650 cl->resolved = 1;
11651 saved_specification_expr = specification_expr;
11652 specification_expr = true;
11653
11654 if (cl->length_from_typespec)
11655 {
11656 if (!gfc_resolve_expr (cl->length))
11657 {
11658 specification_expr = saved_specification_expr;
11659 return false;
11660 }
11661
11662 if (!gfc_simplify_expr (cl->length, 0))
11663 {
11664 specification_expr = saved_specification_expr;
11665 return false;
11666 }
11667
11668 /* cl->length has been resolved. It should have an integer type. */
11669 if (cl->length->ts.type != BT_INTEGER)
11670 {
11671 gfc_error ("Scalar INTEGER expression expected at %L",
11672 &cl->length->where);
11673 return false;
11674 }
11675 }
11676 else
11677 {
11678 if (!resolve_index_expr (cl->length))
11679 {
11680 specification_expr = saved_specification_expr;
11681 return false;
11682 }
11683 }
11684
11685 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
11686 a negative value, the length of character entities declared is zero. */
11687 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11688 && mpz_sgn (cl->length->value.integer) < 0)
11689 gfc_replace_expr (cl->length,
11690 gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
11691
11692 /* Check that the character length is not too large. */
11693 k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
11694 if (cl->length && cl->length->expr_type == EXPR_CONSTANT
11695 && cl->length->ts.type == BT_INTEGER
11696 && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
11697 {
11698 gfc_error ("String length at %L is too large", &cl->length->where);
11699 specification_expr = saved_specification_expr;
11700 return false;
11701 }
11702
11703 specification_expr = saved_specification_expr;
11704 return true;
11705 }
11706
11707
11708 /* Test for non-constant shape arrays. */
11709
11710 static bool
11711 is_non_constant_shape_array (gfc_symbol *sym)
11712 {
11713 gfc_expr *e;
11714 int i;
11715 bool not_constant;
11716
11717 not_constant = false;
11718 if (sym->as != NULL)
11719 {
11720 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
11721 has not been simplified; parameter array references. Do the
11722 simplification now. */
11723 for (i = 0; i < sym->as->rank + sym->as->corank; i++)
11724 {
11725 e = sym->as->lower[i];
11726 if (e && (!resolve_index_expr(e)
11727 || !gfc_is_constant_expr (e)))
11728 not_constant = true;
11729 e = sym->as->upper[i];
11730 if (e && (!resolve_index_expr(e)
11731 || !gfc_is_constant_expr (e)))
11732 not_constant = true;
11733 }
11734 }
11735 return not_constant;
11736 }
11737
11738 /* Given a symbol and an initialization expression, add code to initialize
11739 the symbol to the function entry. */
11740 static void
11741 build_init_assign (gfc_symbol *sym, gfc_expr *init)
11742 {
11743 gfc_expr *lval;
11744 gfc_code *init_st;
11745 gfc_namespace *ns = sym->ns;
11746
11747 /* Search for the function namespace if this is a contained
11748 function without an explicit result. */
11749 if (sym->attr.function && sym == sym->result
11750 && sym->name != sym->ns->proc_name->name)
11751 {
11752 ns = ns->contained;
11753 for (;ns; ns = ns->sibling)
11754 if (strcmp (ns->proc_name->name, sym->name) == 0)
11755 break;
11756 }
11757
11758 if (ns == NULL)
11759 {
11760 gfc_free_expr (init);
11761 return;
11762 }
11763
11764 /* Build an l-value expression for the result. */
11765 lval = gfc_lval_expr_from_sym (sym);
11766
11767 /* Add the code at scope entry. */
11768 init_st = gfc_get_code (EXEC_INIT_ASSIGN);
11769 init_st->next = ns->code;
11770 ns->code = init_st;
11771
11772 /* Assign the default initializer to the l-value. */
11773 init_st->loc = sym->declared_at;
11774 init_st->expr1 = lval;
11775 init_st->expr2 = init;
11776 }
11777
11778
11779 /* Whether or not we can generate a default initializer for a symbol. */
11780
11781 static bool
11782 can_generate_init (gfc_symbol *sym)
11783 {
11784 symbol_attribute *a;
11785 if (!sym)
11786 return false;
11787 a = &sym->attr;
11788
11789 /* These symbols should never have a default initialization. */
11790 return !(
11791 a->allocatable
11792 || a->external
11793 || a->pointer
11794 || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
11795 && (CLASS_DATA (sym)->attr.class_pointer
11796 || CLASS_DATA (sym)->attr.proc_pointer))
11797 || a->in_equivalence
11798 || a->in_common
11799 || a->data
11800 || sym->module
11801 || a->cray_pointee
11802 || a->cray_pointer
11803 || sym->assoc
11804 || (!a->referenced && !a->result)
11805 || (a->dummy && a->intent != INTENT_OUT)
11806 || (a->function && sym != sym->result)
11807 );
11808 }
11809
11810
11811 /* Assign the default initializer to a derived type variable or result. */
11812
11813 static void
11814 apply_default_init (gfc_symbol *sym)
11815 {
11816 gfc_expr *init = NULL;
11817
11818 if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
11819 return;
11820
11821 if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
11822 init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
11823
11824 if (init == NULL && sym->ts.type != BT_CLASS)
11825 return;
11826
11827 build_init_assign (sym, init);
11828 sym->attr.referenced = 1;
11829 }
11830
11831
11832 /* Build an initializer for a local. Returns null if the symbol should not have
11833 a default initialization. */
11834
11835 static gfc_expr *
11836 build_default_init_expr (gfc_symbol *sym)
11837 {
11838 /* These symbols should never have a default initialization. */
11839 if (sym->attr.allocatable
11840 || sym->attr.external
11841 || sym->attr.dummy
11842 || sym->attr.pointer
11843 || sym->attr.in_equivalence
11844 || sym->attr.in_common
11845 || sym->attr.data
11846 || sym->module
11847 || sym->attr.cray_pointee
11848 || sym->attr.cray_pointer
11849 || sym->assoc)
11850 return NULL;
11851
11852 /* Get the appropriate init expression. */
11853 return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
11854 }
11855
11856 /* Add an initialization expression to a local variable. */
11857 static void
11858 apply_default_init_local (gfc_symbol *sym)
11859 {
11860 gfc_expr *init = NULL;
11861
11862 /* The symbol should be a variable or a function return value. */
11863 if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
11864 || (sym->attr.function && sym->result != sym))
11865 return;
11866
11867 /* Try to build the initializer expression. If we can't initialize
11868 this symbol, then init will be NULL. */
11869 init = build_default_init_expr (sym);
11870 if (init == NULL)
11871 return;
11872
11873 /* For saved variables, we don't want to add an initializer at function
11874 entry, so we just add a static initializer. Note that automatic variables
11875 are stack allocated even with -fno-automatic; we have also to exclude
11876 result variable, which are also nonstatic. */
11877 if (!sym->attr.automatic
11878 && (sym->attr.save || sym->ns->save_all
11879 || (flag_max_stack_var_size == 0 && !sym->attr.result
11880 && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
11881 && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
11882 {
11883 /* Don't clobber an existing initializer! */
11884 gcc_assert (sym->value == NULL);
11885 sym->value = init;
11886 return;
11887 }
11888
11889 build_init_assign (sym, init);
11890 }
11891
11892
11893 /* Resolution of common features of flavors variable and procedure. */
11894
11895 static bool
11896 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
11897 {
11898 gfc_array_spec *as;
11899
11900 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
11901 as = CLASS_DATA (sym)->as;
11902 else
11903 as = sym->as;
11904
11905 /* Constraints on deferred shape variable. */
11906 if (as == NULL || as->type != AS_DEFERRED)
11907 {
11908 bool pointer, allocatable, dimension;
11909
11910 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
11911 {
11912 pointer = CLASS_DATA (sym)->attr.class_pointer;
11913 allocatable = CLASS_DATA (sym)->attr.allocatable;
11914 dimension = CLASS_DATA (sym)->attr.dimension;
11915 }
11916 else
11917 {
11918 pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
11919 allocatable = sym->attr.allocatable;
11920 dimension = sym->attr.dimension;
11921 }
11922
11923 if (allocatable)
11924 {
11925 if (dimension && as->type != AS_ASSUMED_RANK)
11926 {
11927 gfc_error ("Allocatable array %qs at %L must have a deferred "
11928 "shape or assumed rank", sym->name, &sym->declared_at);
11929 return false;
11930 }
11931 else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
11932 "%qs at %L may not be ALLOCATABLE",
11933 sym->name, &sym->declared_at))
11934 return false;
11935 }
11936
11937 if (pointer && dimension && as->type != AS_ASSUMED_RANK)
11938 {
11939 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
11940 "assumed rank", sym->name, &sym->declared_at);
11941 return false;
11942 }
11943 }
11944 else
11945 {
11946 if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
11947 && sym->ts.type != BT_CLASS && !sym->assoc)
11948 {
11949 gfc_error ("Array %qs at %L cannot have a deferred shape",
11950 sym->name, &sym->declared_at);
11951 return false;
11952 }
11953 }
11954
11955 /* Constraints on polymorphic variables. */
11956 if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
11957 {
11958 /* F03:C502. */
11959 if (sym->attr.class_ok
11960 && !sym->attr.select_type_temporary
11961 && !UNLIMITED_POLY (sym)
11962 && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
11963 {
11964 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
11965 CLASS_DATA (sym)->ts.u.derived->name, sym->name,
11966 &sym->declared_at);
11967 return false;
11968 }
11969
11970 /* F03:C509. */
11971 /* Assume that use associated symbols were checked in the module ns.
11972 Class-variables that are associate-names are also something special
11973 and excepted from the test. */
11974 if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc)
11975 {
11976 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
11977 "or pointer", sym->name, &sym->declared_at);
11978 return false;
11979 }
11980 }
11981
11982 return true;
11983 }
11984
11985
11986 /* Additional checks for symbols with flavor variable and derived
11987 type. To be called from resolve_fl_variable. */
11988
11989 static bool
11990 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
11991 {
11992 gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
11993
11994 /* Check to see if a derived type is blocked from being host
11995 associated by the presence of another class I symbol in the same
11996 namespace. 14.6.1.3 of the standard and the discussion on
11997 comp.lang.fortran. */
11998 if (sym->ns != sym->ts.u.derived->ns
11999 && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
12000 {
12001 gfc_symbol *s;
12002 gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
12003 if (s && s->attr.generic)
12004 s = gfc_find_dt_in_generic (s);
12005 if (s && !gfc_fl_struct (s->attr.flavor))
12006 {
12007 gfc_error ("The type %qs cannot be host associated at %L "
12008 "because it is blocked by an incompatible object "
12009 "of the same name declared at %L",
12010 sym->ts.u.derived->name, &sym->declared_at,
12011 &s->declared_at);
12012 return false;
12013 }
12014 }
12015
12016 /* 4th constraint in section 11.3: "If an object of a type for which
12017 component-initialization is specified (R429) appears in the
12018 specification-part of a module and does not have the ALLOCATABLE
12019 or POINTER attribute, the object shall have the SAVE attribute."
12020
12021 The check for initializers is performed with
12022 gfc_has_default_initializer because gfc_default_initializer generates
12023 a hidden default for allocatable components. */
12024 if (!(sym->value || no_init_flag) && sym->ns->proc_name
12025 && sym->ns->proc_name->attr.flavor == FL_MODULE
12026 && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
12027 && !sym->attr.pointer && !sym->attr.allocatable
12028 && gfc_has_default_initializer (sym->ts.u.derived)
12029 && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
12030 "%qs at %L, needed due to the default "
12031 "initialization", sym->name, &sym->declared_at))
12032 return false;
12033
12034 /* Assign default initializer. */
12035 if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
12036 && (!no_init_flag || sym->attr.intent == INTENT_OUT))
12037 sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
12038
12039 return true;
12040 }
12041
12042
12043 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12044 except in the declaration of an entity or component that has the POINTER
12045 or ALLOCATABLE attribute. */
12046
12047 static bool
12048 deferred_requirements (gfc_symbol *sym)
12049 {
12050 if (sym->ts.deferred
12051 && !(sym->attr.pointer
12052 || sym->attr.allocatable
12053 || sym->attr.associate_var
12054 || sym->attr.omp_udr_artificial_var))
12055 {
12056 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12057 "requires either the POINTER or ALLOCATABLE attribute",
12058 sym->name, &sym->declared_at);
12059 return false;
12060 }
12061 return true;
12062 }
12063
12064
12065 /* Resolve symbols with flavor variable. */
12066
12067 static bool
12068 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
12069 {
12070 int no_init_flag, automatic_flag;
12071 gfc_expr *e;
12072 const char *auto_save_msg;
12073 bool saved_specification_expr;
12074
12075 auto_save_msg = "Automatic object %qs at %L cannot have the "
12076 "SAVE attribute";
12077
12078 if (!resolve_fl_var_and_proc (sym, mp_flag))
12079 return false;
12080
12081 /* Set this flag to check that variables are parameters of all entries.
12082 This check is effected by the call to gfc_resolve_expr through
12083 is_non_constant_shape_array. */
12084 saved_specification_expr = specification_expr;
12085 specification_expr = true;
12086
12087 if (sym->ns->proc_name
12088 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12089 || sym->ns->proc_name->attr.is_main_program)
12090 && !sym->attr.use_assoc
12091 && !sym->attr.allocatable
12092 && !sym->attr.pointer
12093 && is_non_constant_shape_array (sym))
12094 {
12095 /* F08:C541. The shape of an array defined in a main program or module
12096 * needs to be constant. */
12097 gfc_error ("The module or main program array %qs at %L must "
12098 "have constant shape", sym->name, &sym->declared_at);
12099 specification_expr = saved_specification_expr;
12100 return false;
12101 }
12102
12103 /* Constraints on deferred type parameter. */
12104 if (!deferred_requirements (sym))
12105 return false;
12106
12107 if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
12108 {
12109 /* Make sure that character string variables with assumed length are
12110 dummy arguments. */
12111 e = sym->ts.u.cl->length;
12112 if (e == NULL && !sym->attr.dummy && !sym->attr.result
12113 && !sym->ts.deferred && !sym->attr.select_type_temporary
12114 && !sym->attr.omp_udr_artificial_var)
12115 {
12116 gfc_error ("Entity with assumed character length at %L must be a "
12117 "dummy argument or a PARAMETER", &sym->declared_at);
12118 specification_expr = saved_specification_expr;
12119 return false;
12120 }
12121
12122 if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
12123 {
12124 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12125 specification_expr = saved_specification_expr;
12126 return false;
12127 }
12128
12129 if (!gfc_is_constant_expr (e)
12130 && !(e->expr_type == EXPR_VARIABLE
12131 && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
12132 {
12133 if (!sym->attr.use_assoc && sym->ns->proc_name
12134 && (sym->ns->proc_name->attr.flavor == FL_MODULE
12135 || sym->ns->proc_name->attr.is_main_program))
12136 {
12137 gfc_error ("%qs at %L must have constant character length "
12138 "in this context", sym->name, &sym->declared_at);
12139 specification_expr = saved_specification_expr;
12140 return false;
12141 }
12142 if (sym->attr.in_common)
12143 {
12144 gfc_error ("COMMON variable %qs at %L must have constant "
12145 "character length", sym->name, &sym->declared_at);
12146 specification_expr = saved_specification_expr;
12147 return false;
12148 }
12149 }
12150 }
12151
12152 if (sym->value == NULL && sym->attr.referenced)
12153 apply_default_init_local (sym); /* Try to apply a default initialization. */
12154
12155 /* Determine if the symbol may not have an initializer. */
12156 no_init_flag = automatic_flag = 0;
12157 if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
12158 || sym->attr.intrinsic || sym->attr.result)
12159 no_init_flag = 1;
12160 else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
12161 && is_non_constant_shape_array (sym))
12162 {
12163 no_init_flag = automatic_flag = 1;
12164
12165 /* Also, they must not have the SAVE attribute.
12166 SAVE_IMPLICIT is checked below. */
12167 if (sym->as && sym->attr.codimension)
12168 {
12169 int corank = sym->as->corank;
12170 sym->as->corank = 0;
12171 no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
12172 sym->as->corank = corank;
12173 }
12174 if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
12175 {
12176 gfc_error (auto_save_msg, sym->name, &sym->declared_at);
12177 specification_expr = saved_specification_expr;
12178 return false;
12179 }
12180 }
12181
12182 /* Ensure that any initializer is simplified. */
12183 if (sym->value)
12184 gfc_simplify_expr (sym->value, 1);
12185
12186 /* Reject illegal initializers. */
12187 if (!sym->mark && sym->value)
12188 {
12189 if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
12190 && CLASS_DATA (sym)->attr.allocatable))
12191 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12192 sym->name, &sym->declared_at);
12193 else if (sym->attr.external)
12194 gfc_error ("External %qs at %L cannot have an initializer",
12195 sym->name, &sym->declared_at);
12196 else if (sym->attr.dummy
12197 && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
12198 gfc_error ("Dummy %qs at %L cannot have an initializer",
12199 sym->name, &sym->declared_at);
12200 else if (sym->attr.intrinsic)
12201 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12202 sym->name, &sym->declared_at);
12203 else if (sym->attr.result)
12204 gfc_error ("Function result %qs at %L cannot have an initializer",
12205 sym->name, &sym->declared_at);
12206 else if (automatic_flag)
12207 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12208 sym->name, &sym->declared_at);
12209 else
12210 goto no_init_error;
12211 specification_expr = saved_specification_expr;
12212 return false;
12213 }
12214
12215 no_init_error:
12216 if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
12217 {
12218 bool res = resolve_fl_variable_derived (sym, no_init_flag);
12219 specification_expr = saved_specification_expr;
12220 return res;
12221 }
12222
12223 specification_expr = saved_specification_expr;
12224 return true;
12225 }
12226
12227
12228 /* Compare the dummy characteristics of a module procedure interface
12229 declaration with the corresponding declaration in a submodule. */
12230 static gfc_formal_arglist *new_formal;
12231 static char errmsg[200];
12232
12233 static void
12234 compare_fsyms (gfc_symbol *sym)
12235 {
12236 gfc_symbol *fsym;
12237
12238 if (sym == NULL || new_formal == NULL)
12239 return;
12240
12241 fsym = new_formal->sym;
12242
12243 if (sym == fsym)
12244 return;
12245
12246 if (strcmp (sym->name, fsym->name) == 0)
12247 {
12248 if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
12249 gfc_error ("%s at %L", errmsg, &fsym->declared_at);
12250 }
12251 }
12252
12253
12254 /* Resolve a procedure. */
12255
12256 static bool
12257 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
12258 {
12259 gfc_formal_arglist *arg;
12260
12261 if (sym->attr.function
12262 && !resolve_fl_var_and_proc (sym, mp_flag))
12263 return false;
12264
12265 if (sym->ts.type == BT_CHARACTER)
12266 {
12267 gfc_charlen *cl = sym->ts.u.cl;
12268
12269 if (cl && cl->length && gfc_is_constant_expr (cl->length)
12270 && !resolve_charlen (cl))
12271 return false;
12272
12273 if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
12274 && sym->attr.proc == PROC_ST_FUNCTION)
12275 {
12276 gfc_error ("Character-valued statement function %qs at %L must "
12277 "have constant length", sym->name, &sym->declared_at);
12278 return false;
12279 }
12280 }
12281
12282 /* Ensure that derived type for are not of a private type. Internal
12283 module procedures are excluded by 2.2.3.3 - i.e., they are not
12284 externally accessible and can access all the objects accessible in
12285 the host. */
12286 if (!(sym->ns->parent
12287 && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
12288 && gfc_check_symbol_access (sym))
12289 {
12290 gfc_interface *iface;
12291
12292 for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
12293 {
12294 if (arg->sym
12295 && arg->sym->ts.type == BT_DERIVED
12296 && !arg->sym->ts.u.derived->attr.use_assoc
12297 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12298 && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
12299 "and cannot be a dummy argument"
12300 " of %qs, which is PUBLIC at %L",
12301 arg->sym->name, sym->name,
12302 &sym->declared_at))
12303 {
12304 /* Stop this message from recurring. */
12305 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12306 return false;
12307 }
12308 }
12309
12310 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12311 PRIVATE to the containing module. */
12312 for (iface = sym->generic; iface; iface = iface->next)
12313 {
12314 for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
12315 {
12316 if (arg->sym
12317 && arg->sym->ts.type == BT_DERIVED
12318 && !arg->sym->ts.u.derived->attr.use_assoc
12319 && !gfc_check_symbol_access (arg->sym->ts.u.derived)
12320 && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
12321 "PUBLIC interface %qs at %L "
12322 "takes dummy arguments of %qs which "
12323 "is PRIVATE", iface->sym->name,
12324 sym->name, &iface->sym->declared_at,
12325 gfc_typename(&arg->sym->ts)))
12326 {
12327 /* Stop this message from recurring. */
12328 arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
12329 return false;
12330 }
12331 }
12332 }
12333 }
12334
12335 if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
12336 && !sym->attr.proc_pointer)
12337 {
12338 gfc_error ("Function %qs at %L cannot have an initializer",
12339 sym->name, &sym->declared_at);
12340 return false;
12341 }
12342
12343 /* An external symbol may not have an initializer because it is taken to be
12344 a procedure. Exception: Procedure Pointers. */
12345 if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
12346 {
12347 gfc_error ("External object %qs at %L may not have an initializer",
12348 sym->name, &sym->declared_at);
12349 return false;
12350 }
12351
12352 /* An elemental function is required to return a scalar 12.7.1 */
12353 if (sym->attr.elemental && sym->attr.function && sym->as)
12354 {
12355 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
12356 "result", sym->name, &sym->declared_at);
12357 /* Reset so that the error only occurs once. */
12358 sym->attr.elemental = 0;
12359 return false;
12360 }
12361
12362 if (sym->attr.proc == PROC_ST_FUNCTION
12363 && (sym->attr.allocatable || sym->attr.pointer))
12364 {
12365 gfc_error ("Statement function %qs at %L may not have pointer or "
12366 "allocatable attribute", sym->name, &sym->declared_at);
12367 return false;
12368 }
12369
12370 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
12371 char-len-param shall not be array-valued, pointer-valued, recursive
12372 or pure. ....snip... A character value of * may only be used in the
12373 following ways: (i) Dummy arg of procedure - dummy associates with
12374 actual length; (ii) To declare a named constant; or (iii) External
12375 function - but length must be declared in calling scoping unit. */
12376 if (sym->attr.function
12377 && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
12378 && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
12379 {
12380 if ((sym->as && sym->as->rank) || (sym->attr.pointer)
12381 || (sym->attr.recursive) || (sym->attr.pure))
12382 {
12383 if (sym->as && sym->as->rank)
12384 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12385 "array-valued", sym->name, &sym->declared_at);
12386
12387 if (sym->attr.pointer)
12388 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12389 "pointer-valued", sym->name, &sym->declared_at);
12390
12391 if (sym->attr.pure)
12392 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12393 "pure", sym->name, &sym->declared_at);
12394
12395 if (sym->attr.recursive)
12396 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12397 "recursive", sym->name, &sym->declared_at);
12398
12399 return false;
12400 }
12401
12402 /* Appendix B.2 of the standard. Contained functions give an
12403 error anyway. Deferred character length is an F2003 feature.
12404 Don't warn on intrinsic conversion functions, which start
12405 with two underscores. */
12406 if (!sym->attr.contained && !sym->ts.deferred
12407 && (sym->name[0] != '_' || sym->name[1] != '_'))
12408 gfc_notify_std (GFC_STD_F95_OBS,
12409 "CHARACTER(*) function %qs at %L",
12410 sym->name, &sym->declared_at);
12411 }
12412
12413 /* F2008, C1218. */
12414 if (sym->attr.elemental)
12415 {
12416 if (sym->attr.proc_pointer)
12417 {
12418 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
12419 sym->name, &sym->declared_at);
12420 return false;
12421 }
12422 if (sym->attr.dummy)
12423 {
12424 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
12425 sym->name, &sym->declared_at);
12426 return false;
12427 }
12428 }
12429
12430 if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
12431 {
12432 gfc_formal_arglist *curr_arg;
12433 int has_non_interop_arg = 0;
12434
12435 if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
12436 sym->common_block))
12437 {
12438 /* Clear these to prevent looking at them again if there was an
12439 error. */
12440 sym->attr.is_bind_c = 0;
12441 sym->attr.is_c_interop = 0;
12442 sym->ts.is_c_interop = 0;
12443 }
12444 else
12445 {
12446 /* So far, no errors have been found. */
12447 sym->attr.is_c_interop = 1;
12448 sym->ts.is_c_interop = 1;
12449 }
12450
12451 curr_arg = gfc_sym_get_dummy_args (sym);
12452 while (curr_arg != NULL)
12453 {
12454 /* Skip implicitly typed dummy args here. */
12455 if (curr_arg->sym->attr.implicit_type == 0)
12456 if (!gfc_verify_c_interop_param (curr_arg->sym))
12457 /* If something is found to fail, record the fact so we
12458 can mark the symbol for the procedure as not being
12459 BIND(C) to try and prevent multiple errors being
12460 reported. */
12461 has_non_interop_arg = 1;
12462
12463 curr_arg = curr_arg->next;
12464 }
12465
12466 /* See if any of the arguments were not interoperable and if so, clear
12467 the procedure symbol to prevent duplicate error messages. */
12468 if (has_non_interop_arg != 0)
12469 {
12470 sym->attr.is_c_interop = 0;
12471 sym->ts.is_c_interop = 0;
12472 sym->attr.is_bind_c = 0;
12473 }
12474 }
12475
12476 if (!sym->attr.proc_pointer)
12477 {
12478 if (sym->attr.save == SAVE_EXPLICIT)
12479 {
12480 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
12481 "in %qs at %L", sym->name, &sym->declared_at);
12482 return false;
12483 }
12484 if (sym->attr.intent)
12485 {
12486 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
12487 "in %qs at %L", sym->name, &sym->declared_at);
12488 return false;
12489 }
12490 if (sym->attr.subroutine && sym->attr.result)
12491 {
12492 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
12493 "in %qs at %L", sym->name, &sym->declared_at);
12494 return false;
12495 }
12496 if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
12497 && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
12498 || sym->attr.contained))
12499 {
12500 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
12501 "in %qs at %L", sym->name, &sym->declared_at);
12502 return false;
12503 }
12504 if (strcmp ("ppr@", sym->name) == 0)
12505 {
12506 gfc_error ("Procedure pointer result %qs at %L "
12507 "is missing the pointer attribute",
12508 sym->ns->proc_name->name, &sym->declared_at);
12509 return false;
12510 }
12511 }
12512
12513 /* Assume that a procedure whose body is not known has references
12514 to external arrays. */
12515 if (sym->attr.if_source != IFSRC_DECL)
12516 sym->attr.array_outer_dependency = 1;
12517
12518 /* Compare the characteristics of a module procedure with the
12519 interface declaration. Ideally this would be done with
12520 gfc_compare_interfaces but, at present, the formal interface
12521 cannot be copied to the ts.interface. */
12522 if (sym->attr.module_procedure
12523 && sym->attr.if_source == IFSRC_DECL)
12524 {
12525 gfc_symbol *iface;
12526 char name[2*GFC_MAX_SYMBOL_LEN + 1];
12527 char *module_name;
12528 char *submodule_name;
12529 strcpy (name, sym->ns->proc_name->name);
12530 module_name = strtok (name, ".");
12531 submodule_name = strtok (NULL, ".");
12532
12533 iface = sym->tlink;
12534 sym->tlink = NULL;
12535
12536 /* Make sure that the result uses the correct charlen for deferred
12537 length results. */
12538 if (iface && sym->result
12539 && iface->ts.type == BT_CHARACTER
12540 && iface->ts.deferred)
12541 sym->result->ts.u.cl = iface->ts.u.cl;
12542
12543 if (iface == NULL)
12544 goto check_formal;
12545
12546 /* Check the procedure characteristics. */
12547 if (sym->attr.elemental != iface->attr.elemental)
12548 {
12549 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
12550 "PROCEDURE at %L and its interface in %s",
12551 &sym->declared_at, module_name);
12552 return false;
12553 }
12554
12555 if (sym->attr.pure != iface->attr.pure)
12556 {
12557 gfc_error ("Mismatch in PURE attribute between MODULE "
12558 "PROCEDURE at %L and its interface in %s",
12559 &sym->declared_at, module_name);
12560 return false;
12561 }
12562
12563 if (sym->attr.recursive != iface->attr.recursive)
12564 {
12565 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
12566 "PROCEDURE at %L and its interface in %s",
12567 &sym->declared_at, module_name);
12568 return false;
12569 }
12570
12571 /* Check the result characteristics. */
12572 if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
12573 {
12574 gfc_error ("%s between the MODULE PROCEDURE declaration "
12575 "in MODULE %qs and the declaration at %L in "
12576 "(SUB)MODULE %qs",
12577 errmsg, module_name, &sym->declared_at,
12578 submodule_name ? submodule_name : module_name);
12579 return false;
12580 }
12581
12582 check_formal:
12583 /* Check the characteristics of the formal arguments. */
12584 if (sym->formal && sym->formal_ns)
12585 {
12586 for (arg = sym->formal; arg && arg->sym; arg = arg->next)
12587 {
12588 new_formal = arg;
12589 gfc_traverse_ns (sym->formal_ns, compare_fsyms);
12590 }
12591 }
12592 }
12593 return true;
12594 }
12595
12596
12597 /* Resolve a list of finalizer procedures. That is, after they have hopefully
12598 been defined and we now know their defined arguments, check that they fulfill
12599 the requirements of the standard for procedures used as finalizers. */
12600
12601 static bool
12602 gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
12603 {
12604 gfc_finalizer* list;
12605 gfc_finalizer** prev_link; /* For removing wrong entries from the list. */
12606 bool result = true;
12607 bool seen_scalar = false;
12608 gfc_symbol *vtab;
12609 gfc_component *c;
12610 gfc_symbol *parent = gfc_get_derived_super_type (derived);
12611
12612 if (parent)
12613 gfc_resolve_finalizers (parent, finalizable);
12614
12615 /* Ensure that derived-type components have a their finalizers resolved. */
12616 bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
12617 for (c = derived->components; c; c = c->next)
12618 if (c->ts.type == BT_DERIVED
12619 && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
12620 {
12621 bool has_final2 = false;
12622 if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
12623 return false; /* Error. */
12624 has_final = has_final || has_final2;
12625 }
12626 /* Return early if not finalizable. */
12627 if (!has_final)
12628 {
12629 if (finalizable)
12630 *finalizable = false;
12631 return true;
12632 }
12633
12634 /* Walk over the list of finalizer-procedures, check them, and if any one
12635 does not fit in with the standard's definition, print an error and remove
12636 it from the list. */
12637 prev_link = &derived->f2k_derived->finalizers;
12638 for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
12639 {
12640 gfc_formal_arglist *dummy_args;
12641 gfc_symbol* arg;
12642 gfc_finalizer* i;
12643 int my_rank;
12644
12645 /* Skip this finalizer if we already resolved it. */
12646 if (list->proc_tree)
12647 {
12648 if (list->proc_tree->n.sym->formal->sym->as == NULL
12649 || list->proc_tree->n.sym->formal->sym->as->rank == 0)
12650 seen_scalar = true;
12651 prev_link = &(list->next);
12652 continue;
12653 }
12654
12655 /* Check this exists and is a SUBROUTINE. */
12656 if (!list->proc_sym->attr.subroutine)
12657 {
12658 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
12659 list->proc_sym->name, &list->where);
12660 goto error;
12661 }
12662
12663 /* We should have exactly one argument. */
12664 dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
12665 if (!dummy_args || dummy_args->next)
12666 {
12667 gfc_error ("FINAL procedure at %L must have exactly one argument",
12668 &list->where);
12669 goto error;
12670 }
12671 arg = dummy_args->sym;
12672
12673 /* This argument must be of our type. */
12674 if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
12675 {
12676 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
12677 &arg->declared_at, derived->name);
12678 goto error;
12679 }
12680
12681 /* It must neither be a pointer nor allocatable nor optional. */
12682 if (arg->attr.pointer)
12683 {
12684 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
12685 &arg->declared_at);
12686 goto error;
12687 }
12688 if (arg->attr.allocatable)
12689 {
12690 gfc_error ("Argument of FINAL procedure at %L must not be"
12691 " ALLOCATABLE", &arg->declared_at);
12692 goto error;
12693 }
12694 if (arg->attr.optional)
12695 {
12696 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
12697 &arg->declared_at);
12698 goto error;
12699 }
12700
12701 /* It must not be INTENT(OUT). */
12702 if (arg->attr.intent == INTENT_OUT)
12703 {
12704 gfc_error ("Argument of FINAL procedure at %L must not be"
12705 " INTENT(OUT)", &arg->declared_at);
12706 goto error;
12707 }
12708
12709 /* Warn if the procedure is non-scalar and not assumed shape. */
12710 if (warn_surprising && arg->as && arg->as->rank != 0
12711 && arg->as->type != AS_ASSUMED_SHAPE)
12712 gfc_warning (OPT_Wsurprising,
12713 "Non-scalar FINAL procedure at %L should have assumed"
12714 " shape argument", &arg->declared_at);
12715
12716 /* Check that it does not match in kind and rank with a FINAL procedure
12717 defined earlier. To really loop over the *earlier* declarations,
12718 we need to walk the tail of the list as new ones were pushed at the
12719 front. */
12720 /* TODO: Handle kind parameters once they are implemented. */
12721 my_rank = (arg->as ? arg->as->rank : 0);
12722 for (i = list->next; i; i = i->next)
12723 {
12724 gfc_formal_arglist *dummy_args;
12725
12726 /* Argument list might be empty; that is an error signalled earlier,
12727 but we nevertheless continued resolving. */
12728 dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
12729 if (dummy_args)
12730 {
12731 gfc_symbol* i_arg = dummy_args->sym;
12732 const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
12733 if (i_rank == my_rank)
12734 {
12735 gfc_error ("FINAL procedure %qs declared at %L has the same"
12736 " rank (%d) as %qs",
12737 list->proc_sym->name, &list->where, my_rank,
12738 i->proc_sym->name);
12739 goto error;
12740 }
12741 }
12742 }
12743
12744 /* Is this the/a scalar finalizer procedure? */
12745 if (my_rank == 0)
12746 seen_scalar = true;
12747
12748 /* Find the symtree for this procedure. */
12749 gcc_assert (!list->proc_tree);
12750 list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
12751
12752 prev_link = &list->next;
12753 continue;
12754
12755 /* Remove wrong nodes immediately from the list so we don't risk any
12756 troubles in the future when they might fail later expectations. */
12757 error:
12758 i = list;
12759 *prev_link = list->next;
12760 gfc_free_finalizer (i);
12761 result = false;
12762 }
12763
12764 if (result == false)
12765 return false;
12766
12767 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
12768 were nodes in the list, must have been for arrays. It is surely a good
12769 idea to have a scalar version there if there's something to finalize. */
12770 if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
12771 gfc_warning (OPT_Wsurprising,
12772 "Only array FINAL procedures declared for derived type %qs"
12773 " defined at %L, suggest also scalar one",
12774 derived->name, &derived->declared_at);
12775
12776 vtab = gfc_find_derived_vtab (derived);
12777 c = vtab->ts.u.derived->components->next->next->next->next->next;
12778 gfc_set_sym_referenced (c->initializer->symtree->n.sym);
12779
12780 if (finalizable)
12781 *finalizable = true;
12782
12783 return true;
12784 }
12785
12786
12787 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
12788
12789 static bool
12790 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
12791 const char* generic_name, locus where)
12792 {
12793 gfc_symbol *sym1, *sym2;
12794 const char *pass1, *pass2;
12795 gfc_formal_arglist *dummy_args;
12796
12797 gcc_assert (t1->specific && t2->specific);
12798 gcc_assert (!t1->specific->is_generic);
12799 gcc_assert (!t2->specific->is_generic);
12800 gcc_assert (t1->is_operator == t2->is_operator);
12801
12802 sym1 = t1->specific->u.specific->n.sym;
12803 sym2 = t2->specific->u.specific->n.sym;
12804
12805 if (sym1 == sym2)
12806 return true;
12807
12808 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
12809 if (sym1->attr.subroutine != sym2->attr.subroutine
12810 || sym1->attr.function != sym2->attr.function)
12811 {
12812 gfc_error ("%qs and %qs can't be mixed FUNCTION/SUBROUTINE for"
12813 " GENERIC %qs at %L",
12814 sym1->name, sym2->name, generic_name, &where);
12815 return false;
12816 }
12817
12818 /* Determine PASS arguments. */
12819 if (t1->specific->nopass)
12820 pass1 = NULL;
12821 else if (t1->specific->pass_arg)
12822 pass1 = t1->specific->pass_arg;
12823 else
12824 {
12825 dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
12826 if (dummy_args)
12827 pass1 = dummy_args->sym->name;
12828 else
12829 pass1 = NULL;
12830 }
12831 if (t2->specific->nopass)
12832 pass2 = NULL;
12833 else if (t2->specific->pass_arg)
12834 pass2 = t2->specific->pass_arg;
12835 else
12836 {
12837 dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
12838 if (dummy_args)
12839 pass2 = dummy_args->sym->name;
12840 else
12841 pass2 = NULL;
12842 }
12843
12844 /* Compare the interfaces. */
12845 if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
12846 NULL, 0, pass1, pass2))
12847 {
12848 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
12849 sym1->name, sym2->name, generic_name, &where);
12850 return false;
12851 }
12852
12853 return true;
12854 }
12855
12856
12857 /* Worker function for resolving a generic procedure binding; this is used to
12858 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
12859
12860 The difference between those cases is finding possible inherited bindings
12861 that are overridden, as one has to look for them in tb_sym_root,
12862 tb_uop_root or tb_op, respectively. Thus the caller must already find
12863 the super-type and set p->overridden correctly. */
12864
12865 static bool
12866 resolve_tb_generic_targets (gfc_symbol* super_type,
12867 gfc_typebound_proc* p, const char* name)
12868 {
12869 gfc_tbp_generic* target;
12870 gfc_symtree* first_target;
12871 gfc_symtree* inherited;
12872
12873 gcc_assert (p && p->is_generic);
12874
12875 /* Try to find the specific bindings for the symtrees in our target-list. */
12876 gcc_assert (p->u.generic);
12877 for (target = p->u.generic; target; target = target->next)
12878 if (!target->specific)
12879 {
12880 gfc_typebound_proc* overridden_tbp;
12881 gfc_tbp_generic* g;
12882 const char* target_name;
12883
12884 target_name = target->specific_st->name;
12885
12886 /* Defined for this type directly. */
12887 if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
12888 {
12889 target->specific = target->specific_st->n.tb;
12890 goto specific_found;
12891 }
12892
12893 /* Look for an inherited specific binding. */
12894 if (super_type)
12895 {
12896 inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
12897 true, NULL);
12898
12899 if (inherited)
12900 {
12901 gcc_assert (inherited->n.tb);
12902 target->specific = inherited->n.tb;
12903 goto specific_found;
12904 }
12905 }
12906
12907 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
12908 " at %L", target_name, name, &p->where);
12909 return false;
12910
12911 /* Once we've found the specific binding, check it is not ambiguous with
12912 other specifics already found or inherited for the same GENERIC. */
12913 specific_found:
12914 gcc_assert (target->specific);
12915
12916 /* This must really be a specific binding! */
12917 if (target->specific->is_generic)
12918 {
12919 gfc_error ("GENERIC %qs at %L must target a specific binding,"
12920 " %qs is GENERIC, too", name, &p->where, target_name);
12921 return false;
12922 }
12923
12924 /* Check those already resolved on this type directly. */
12925 for (g = p->u.generic; g; g = g->next)
12926 if (g != target && g->specific
12927 && !check_generic_tbp_ambiguity (target, g, name, p->where))
12928 return false;
12929
12930 /* Check for ambiguity with inherited specific targets. */
12931 for (overridden_tbp = p->overridden; overridden_tbp;
12932 overridden_tbp = overridden_tbp->overridden)
12933 if (overridden_tbp->is_generic)
12934 {
12935 for (g = overridden_tbp->u.generic; g; g = g->next)
12936 {
12937 gcc_assert (g->specific);
12938 if (!check_generic_tbp_ambiguity (target, g, name, p->where))
12939 return false;
12940 }
12941 }
12942 }
12943
12944 /* If we attempt to "overwrite" a specific binding, this is an error. */
12945 if (p->overridden && !p->overridden->is_generic)
12946 {
12947 gfc_error ("GENERIC %qs at %L can't overwrite specific binding with"
12948 " the same name", name, &p->where);
12949 return false;
12950 }
12951
12952 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
12953 all must have the same attributes here. */
12954 first_target = p->u.generic->specific->u.specific;
12955 gcc_assert (first_target);
12956 p->subroutine = first_target->n.sym->attr.subroutine;
12957 p->function = first_target->n.sym->attr.function;
12958
12959 return true;
12960 }
12961
12962
12963 /* Resolve a GENERIC procedure binding for a derived type. */
12964
12965 static bool
12966 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
12967 {
12968 gfc_symbol* super_type;
12969
12970 /* Find the overridden binding if any. */
12971 st->n.tb->overridden = NULL;
12972 super_type = gfc_get_derived_super_type (derived);
12973 if (super_type)
12974 {
12975 gfc_symtree* overridden;
12976 overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
12977 true, NULL);
12978
12979 if (overridden && overridden->n.tb)
12980 st->n.tb->overridden = overridden->n.tb;
12981 }
12982
12983 /* Resolve using worker function. */
12984 return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
12985 }
12986
12987
12988 /* Retrieve the target-procedure of an operator binding and do some checks in
12989 common for intrinsic and user-defined type-bound operators. */
12990
12991 static gfc_symbol*
12992 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
12993 {
12994 gfc_symbol* target_proc;
12995
12996 gcc_assert (target->specific && !target->specific->is_generic);
12997 target_proc = target->specific->u.specific->n.sym;
12998 gcc_assert (target_proc);
12999
13000 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
13001 if (target->specific->nopass)
13002 {
13003 gfc_error ("Type-bound operator at %L can't be NOPASS", &where);
13004 return NULL;
13005 }
13006
13007 return target_proc;
13008 }
13009
13010
13011 /* Resolve a type-bound intrinsic operator. */
13012
13013 static bool
13014 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
13015 gfc_typebound_proc* p)
13016 {
13017 gfc_symbol* super_type;
13018 gfc_tbp_generic* target;
13019
13020 /* If there's already an error here, do nothing (but don't fail again). */
13021 if (p->error)
13022 return true;
13023
13024 /* Operators should always be GENERIC bindings. */
13025 gcc_assert (p->is_generic);
13026
13027 /* Look for an overridden binding. */
13028 super_type = gfc_get_derived_super_type (derived);
13029 if (super_type && super_type->f2k_derived)
13030 p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
13031 op, true, NULL);
13032 else
13033 p->overridden = NULL;
13034
13035 /* Resolve general GENERIC properties using worker function. */
13036 if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
13037 goto error;
13038
13039 /* Check the targets to be procedures of correct interface. */
13040 for (target = p->u.generic; target; target = target->next)
13041 {
13042 gfc_symbol* target_proc;
13043
13044 target_proc = get_checked_tb_operator_target (target, p->where);
13045 if (!target_proc)
13046 goto error;
13047
13048 if (!gfc_check_operator_interface (target_proc, op, p->where))
13049 goto error;
13050
13051 /* Add target to non-typebound operator list. */
13052 if (!target->specific->deferred && !derived->attr.use_assoc
13053 && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
13054 {
13055 gfc_interface *head, *intr;
13056
13057 /* Preempt 'gfc_check_new_interface' for submodules, where the
13058 mechanism for handling module procedures winds up resolving
13059 operator interfaces twice and would otherwise cause an error. */
13060 for (intr = derived->ns->op[op]; intr; intr = intr->next)
13061 if (intr->sym == target_proc
13062 && target_proc->attr.used_in_submodule)
13063 return true;
13064
13065 if (!gfc_check_new_interface (derived->ns->op[op],
13066 target_proc, p->where))
13067 return false;
13068 head = derived->ns->op[op];
13069 intr = gfc_get_interface ();
13070 intr->sym = target_proc;
13071 intr->where = p->where;
13072 intr->next = head;
13073 derived->ns->op[op] = intr;
13074 }
13075 }
13076
13077 return true;
13078
13079 error:
13080 p->error = 1;
13081 return false;
13082 }
13083
13084
13085 /* Resolve a type-bound user operator (tree-walker callback). */
13086
13087 static gfc_symbol* resolve_bindings_derived;
13088 static bool resolve_bindings_result;
13089
13090 static bool check_uop_procedure (gfc_symbol* sym, locus where);
13091
13092 static void
13093 resolve_typebound_user_op (gfc_symtree* stree)
13094 {
13095 gfc_symbol* super_type;
13096 gfc_tbp_generic* target;
13097
13098 gcc_assert (stree && stree->n.tb);
13099
13100 if (stree->n.tb->error)
13101 return;
13102
13103 /* Operators should always be GENERIC bindings. */
13104 gcc_assert (stree->n.tb->is_generic);
13105
13106 /* Find overridden procedure, if any. */
13107 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13108 if (super_type && super_type->f2k_derived)
13109 {
13110 gfc_symtree* overridden;
13111 overridden = gfc_find_typebound_user_op (super_type, NULL,
13112 stree->name, true, NULL);
13113
13114 if (overridden && overridden->n.tb)
13115 stree->n.tb->overridden = overridden->n.tb;
13116 }
13117 else
13118 stree->n.tb->overridden = NULL;
13119
13120 /* Resolve basically using worker function. */
13121 if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
13122 goto error;
13123
13124 /* Check the targets to be functions of correct interface. */
13125 for (target = stree->n.tb->u.generic; target; target = target->next)
13126 {
13127 gfc_symbol* target_proc;
13128
13129 target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
13130 if (!target_proc)
13131 goto error;
13132
13133 if (!check_uop_procedure (target_proc, stree->n.tb->where))
13134 goto error;
13135 }
13136
13137 return;
13138
13139 error:
13140 resolve_bindings_result = false;
13141 stree->n.tb->error = 1;
13142 }
13143
13144
13145 /* Resolve the type-bound procedures for a derived type. */
13146
13147 static void
13148 resolve_typebound_procedure (gfc_symtree* stree)
13149 {
13150 gfc_symbol* proc;
13151 locus where;
13152 gfc_symbol* me_arg;
13153 gfc_symbol* super_type;
13154 gfc_component* comp;
13155
13156 gcc_assert (stree);
13157
13158 /* Undefined specific symbol from GENERIC target definition. */
13159 if (!stree->n.tb)
13160 return;
13161
13162 if (stree->n.tb->error)
13163 return;
13164
13165 /* If this is a GENERIC binding, use that routine. */
13166 if (stree->n.tb->is_generic)
13167 {
13168 if (!resolve_typebound_generic (resolve_bindings_derived, stree))
13169 goto error;
13170 return;
13171 }
13172
13173 /* Get the target-procedure to check it. */
13174 gcc_assert (!stree->n.tb->is_generic);
13175 gcc_assert (stree->n.tb->u.specific);
13176 proc = stree->n.tb->u.specific->n.sym;
13177 where = stree->n.tb->where;
13178
13179 /* Default access should already be resolved from the parser. */
13180 gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
13181
13182 if (stree->n.tb->deferred)
13183 {
13184 if (!check_proc_interface (proc, &where))
13185 goto error;
13186 }
13187 else
13188 {
13189 /* Check for F08:C465. */
13190 if ((!proc->attr.subroutine && !proc->attr.function)
13191 || (proc->attr.proc != PROC_MODULE
13192 && proc->attr.if_source != IFSRC_IFBODY)
13193 || proc->attr.abstract)
13194 {
13195 gfc_error ("%qs must be a module procedure or an external procedure with"
13196 " an explicit interface at %L", proc->name, &where);
13197 goto error;
13198 }
13199 }
13200
13201 stree->n.tb->subroutine = proc->attr.subroutine;
13202 stree->n.tb->function = proc->attr.function;
13203
13204 /* Find the super-type of the current derived type. We could do this once and
13205 store in a global if speed is needed, but as long as not I believe this is
13206 more readable and clearer. */
13207 super_type = gfc_get_derived_super_type (resolve_bindings_derived);
13208
13209 /* If PASS, resolve and check arguments if not already resolved / loaded
13210 from a .mod file. */
13211 if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
13212 {
13213 gfc_formal_arglist *dummy_args;
13214
13215 dummy_args = gfc_sym_get_dummy_args (proc);
13216 if (stree->n.tb->pass_arg)
13217 {
13218 gfc_formal_arglist *i;
13219
13220 /* If an explicit passing argument name is given, walk the arg-list
13221 and look for it. */
13222
13223 me_arg = NULL;
13224 stree->n.tb->pass_arg_num = 1;
13225 for (i = dummy_args; i; i = i->next)
13226 {
13227 if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
13228 {
13229 me_arg = i->sym;
13230 break;
13231 }
13232 ++stree->n.tb->pass_arg_num;
13233 }
13234
13235 if (!me_arg)
13236 {
13237 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13238 " argument %qs",
13239 proc->name, stree->n.tb->pass_arg, &where,
13240 stree->n.tb->pass_arg);
13241 goto error;
13242 }
13243 }
13244 else
13245 {
13246 /* Otherwise, take the first one; there should in fact be at least
13247 one. */
13248 stree->n.tb->pass_arg_num = 1;
13249 if (!dummy_args)
13250 {
13251 gfc_error ("Procedure %qs with PASS at %L must have at"
13252 " least one argument", proc->name, &where);
13253 goto error;
13254 }
13255 me_arg = dummy_args->sym;
13256 }
13257
13258 /* Now check that the argument-type matches and the passed-object
13259 dummy argument is generally fine. */
13260
13261 gcc_assert (me_arg);
13262
13263 if (me_arg->ts.type != BT_CLASS)
13264 {
13265 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13266 " at %L", proc->name, &where);
13267 goto error;
13268 }
13269
13270 if (CLASS_DATA (me_arg)->ts.u.derived
13271 != resolve_bindings_derived)
13272 {
13273 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13274 " the derived-type %qs", me_arg->name, proc->name,
13275 me_arg->name, &where, resolve_bindings_derived->name);
13276 goto error;
13277 }
13278
13279 gcc_assert (me_arg->ts.type == BT_CLASS);
13280 if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
13281 {
13282 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13283 " scalar", proc->name, &where);
13284 goto error;
13285 }
13286 if (CLASS_DATA (me_arg)->attr.allocatable)
13287 {
13288 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13289 " be ALLOCATABLE", proc->name, &where);
13290 goto error;
13291 }
13292 if (CLASS_DATA (me_arg)->attr.class_pointer)
13293 {
13294 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13295 " be POINTER", proc->name, &where);
13296 goto error;
13297 }
13298 }
13299
13300 /* If we are extending some type, check that we don't override a procedure
13301 flagged NON_OVERRIDABLE. */
13302 stree->n.tb->overridden = NULL;
13303 if (super_type)
13304 {
13305 gfc_symtree* overridden;
13306 overridden = gfc_find_typebound_proc (super_type, NULL,
13307 stree->name, true, NULL);
13308
13309 if (overridden)
13310 {
13311 if (overridden->n.tb)
13312 stree->n.tb->overridden = overridden->n.tb;
13313
13314 if (!gfc_check_typebound_override (stree, overridden))
13315 goto error;
13316 }
13317 }
13318
13319 /* See if there's a name collision with a component directly in this type. */
13320 for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
13321 if (!strcmp (comp->name, stree->name))
13322 {
13323 gfc_error ("Procedure %qs at %L has the same name as a component of"
13324 " %qs",
13325 stree->name, &where, resolve_bindings_derived->name);
13326 goto error;
13327 }
13328
13329 /* Try to find a name collision with an inherited component. */
13330 if (super_type && gfc_find_component (super_type, stree->name, true, true,
13331 NULL))
13332 {
13333 gfc_error ("Procedure %qs at %L has the same name as an inherited"
13334 " component of %qs",
13335 stree->name, &where, resolve_bindings_derived->name);
13336 goto error;
13337 }
13338
13339 stree->n.tb->error = 0;
13340 return;
13341
13342 error:
13343 resolve_bindings_result = false;
13344 stree->n.tb->error = 1;
13345 }
13346
13347
13348 static bool
13349 resolve_typebound_procedures (gfc_symbol* derived)
13350 {
13351 int op;
13352 gfc_symbol* super_type;
13353
13354 if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
13355 return true;
13356
13357 super_type = gfc_get_derived_super_type (derived);
13358 if (super_type)
13359 resolve_symbol (super_type);
13360
13361 resolve_bindings_derived = derived;
13362 resolve_bindings_result = true;
13363
13364 if (derived->f2k_derived->tb_sym_root)
13365 gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
13366 &resolve_typebound_procedure);
13367
13368 if (derived->f2k_derived->tb_uop_root)
13369 gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
13370 &resolve_typebound_user_op);
13371
13372 for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
13373 {
13374 gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
13375 if (p && !resolve_typebound_intrinsic_op (derived,
13376 (gfc_intrinsic_op)op, p))
13377 resolve_bindings_result = false;
13378 }
13379
13380 return resolve_bindings_result;
13381 }
13382
13383
13384 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
13385 to give all identical derived types the same backend_decl. */
13386 static void
13387 add_dt_to_dt_list (gfc_symbol *derived)
13388 {
13389 gfc_dt_list *dt_list;
13390
13391 for (dt_list = gfc_derived_types; dt_list; dt_list = dt_list->next)
13392 if (derived == dt_list->derived)
13393 return;
13394
13395 dt_list = gfc_get_dt_list ();
13396 dt_list->next = gfc_derived_types;
13397 dt_list->derived = derived;
13398 gfc_derived_types = dt_list;
13399 }
13400
13401
13402 /* Ensure that a derived-type is really not abstract, meaning that every
13403 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
13404
13405 static bool
13406 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
13407 {
13408 if (!st)
13409 return true;
13410
13411 if (!ensure_not_abstract_walker (sub, st->left))
13412 return false;
13413 if (!ensure_not_abstract_walker (sub, st->right))
13414 return false;
13415
13416 if (st->n.tb && st->n.tb->deferred)
13417 {
13418 gfc_symtree* overriding;
13419 overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
13420 if (!overriding)
13421 return false;
13422 gcc_assert (overriding->n.tb);
13423 if (overriding->n.tb->deferred)
13424 {
13425 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
13426 " %qs is DEFERRED and not overridden",
13427 sub->name, &sub->declared_at, st->name);
13428 return false;
13429 }
13430 }
13431
13432 return true;
13433 }
13434
13435 static bool
13436 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
13437 {
13438 /* The algorithm used here is to recursively travel up the ancestry of sub
13439 and for each ancestor-type, check all bindings. If any of them is
13440 DEFERRED, look it up starting from sub and see if the found (overriding)
13441 binding is not DEFERRED.
13442 This is not the most efficient way to do this, but it should be ok and is
13443 clearer than something sophisticated. */
13444
13445 gcc_assert (ancestor && !sub->attr.abstract);
13446
13447 if (!ancestor->attr.abstract)
13448 return true;
13449
13450 /* Walk bindings of this ancestor. */
13451 if (ancestor->f2k_derived)
13452 {
13453 bool t;
13454 t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
13455 if (!t)
13456 return false;
13457 }
13458
13459 /* Find next ancestor type and recurse on it. */
13460 ancestor = gfc_get_derived_super_type (ancestor);
13461 if (ancestor)
13462 return ensure_not_abstract (sub, ancestor);
13463
13464 return true;
13465 }
13466
13467
13468 /* This check for typebound defined assignments is done recursively
13469 since the order in which derived types are resolved is not always in
13470 order of the declarations. */
13471
13472 static void
13473 check_defined_assignments (gfc_symbol *derived)
13474 {
13475 gfc_component *c;
13476
13477 for (c = derived->components; c; c = c->next)
13478 {
13479 if (!gfc_bt_struct (c->ts.type)
13480 || c->attr.pointer
13481 || c->attr.allocatable
13482 || c->attr.proc_pointer_comp
13483 || c->attr.class_pointer
13484 || c->attr.proc_pointer)
13485 continue;
13486
13487 if (c->ts.u.derived->attr.defined_assign_comp
13488 || (c->ts.u.derived->f2k_derived
13489 && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
13490 {
13491 derived->attr.defined_assign_comp = 1;
13492 return;
13493 }
13494
13495 check_defined_assignments (c->ts.u.derived);
13496 if (c->ts.u.derived->attr.defined_assign_comp)
13497 {
13498 derived->attr.defined_assign_comp = 1;
13499 return;
13500 }
13501 }
13502 }
13503
13504
13505 /* Resolve a single component of a derived type or structure. */
13506
13507 static bool
13508 resolve_component (gfc_component *c, gfc_symbol *sym)
13509 {
13510 gfc_symbol *super_type;
13511
13512 if (c->attr.artificial)
13513 return true;
13514
13515 /* Do not allow vtype components to be resolved in nameless namespaces
13516 such as block data because the procedure pointers will cause ICEs
13517 and vtables are not needed in these contexts. */
13518 if (sym->attr.vtype && sym->attr.use_assoc
13519 && sym->ns->proc_name == NULL)
13520 return true;
13521
13522 /* F2008, C442. */
13523 if ((!sym->attr.is_class || c != sym->components)
13524 && c->attr.codimension
13525 && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
13526 {
13527 gfc_error ("Coarray component %qs at %L must be allocatable with "
13528 "deferred shape", c->name, &c->loc);
13529 return false;
13530 }
13531
13532 /* F2008, C443. */
13533 if (c->attr.codimension && c->ts.type == BT_DERIVED
13534 && c->ts.u.derived->ts.is_iso_c)
13535 {
13536 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
13537 "shall not be a coarray", c->name, &c->loc);
13538 return false;
13539 }
13540
13541 /* F2008, C444. */
13542 if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
13543 && (c->attr.codimension || c->attr.pointer || c->attr.dimension
13544 || c->attr.allocatable))
13545 {
13546 gfc_error ("Component %qs at %L with coarray component "
13547 "shall be a nonpointer, nonallocatable scalar",
13548 c->name, &c->loc);
13549 return false;
13550 }
13551
13552 /* F2008, C448. */
13553 if (c->attr.contiguous && (!c->attr.dimension || !c->attr.pointer))
13554 {
13555 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
13556 "is not an array pointer", c->name, &c->loc);
13557 return false;
13558 }
13559
13560 if (c->attr.proc_pointer && c->ts.interface)
13561 {
13562 gfc_symbol *ifc = c->ts.interface;
13563
13564 if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
13565 {
13566 c->tb->error = 1;
13567 return false;
13568 }
13569
13570 if (ifc->attr.if_source || ifc->attr.intrinsic)
13571 {
13572 /* Resolve interface and copy attributes. */
13573 if (ifc->formal && !ifc->formal_ns)
13574 resolve_symbol (ifc);
13575 if (ifc->attr.intrinsic)
13576 gfc_resolve_intrinsic (ifc, &ifc->declared_at);
13577
13578 if (ifc->result)
13579 {
13580 c->ts = ifc->result->ts;
13581 c->attr.allocatable = ifc->result->attr.allocatable;
13582 c->attr.pointer = ifc->result->attr.pointer;
13583 c->attr.dimension = ifc->result->attr.dimension;
13584 c->as = gfc_copy_array_spec (ifc->result->as);
13585 c->attr.class_ok = ifc->result->attr.class_ok;
13586 }
13587 else
13588 {
13589 c->ts = ifc->ts;
13590 c->attr.allocatable = ifc->attr.allocatable;
13591 c->attr.pointer = ifc->attr.pointer;
13592 c->attr.dimension = ifc->attr.dimension;
13593 c->as = gfc_copy_array_spec (ifc->as);
13594 c->attr.class_ok = ifc->attr.class_ok;
13595 }
13596 c->ts.interface = ifc;
13597 c->attr.function = ifc->attr.function;
13598 c->attr.subroutine = ifc->attr.subroutine;
13599
13600 c->attr.pure = ifc->attr.pure;
13601 c->attr.elemental = ifc->attr.elemental;
13602 c->attr.recursive = ifc->attr.recursive;
13603 c->attr.always_explicit = ifc->attr.always_explicit;
13604 c->attr.ext_attr |= ifc->attr.ext_attr;
13605 /* Copy char length. */
13606 if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
13607 {
13608 gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
13609 if (cl->length && !cl->resolved
13610 && !gfc_resolve_expr (cl->length))
13611 {
13612 c->tb->error = 1;
13613 return false;
13614 }
13615 c->ts.u.cl = cl;
13616 }
13617 }
13618 }
13619 else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
13620 {
13621 /* Since PPCs are not implicitly typed, a PPC without an explicit
13622 interface must be a subroutine. */
13623 gfc_add_subroutine (&c->attr, c->name, &c->loc);
13624 }
13625
13626 /* Procedure pointer components: Check PASS arg. */
13627 if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
13628 && !sym->attr.vtype)
13629 {
13630 gfc_symbol* me_arg;
13631
13632 if (c->tb->pass_arg)
13633 {
13634 gfc_formal_arglist* i;
13635
13636 /* If an explicit passing argument name is given, walk the arg-list
13637 and look for it. */
13638
13639 me_arg = NULL;
13640 c->tb->pass_arg_num = 1;
13641 for (i = c->ts.interface->formal; i; i = i->next)
13642 {
13643 if (!strcmp (i->sym->name, c->tb->pass_arg))
13644 {
13645 me_arg = i->sym;
13646 break;
13647 }
13648 c->tb->pass_arg_num++;
13649 }
13650
13651 if (!me_arg)
13652 {
13653 gfc_error ("Procedure pointer component %qs with PASS(%s) "
13654 "at %L has no argument %qs", c->name,
13655 c->tb->pass_arg, &c->loc, c->tb->pass_arg);
13656 c->tb->error = 1;
13657 return false;
13658 }
13659 }
13660 else
13661 {
13662 /* Otherwise, take the first one; there should in fact be at least
13663 one. */
13664 c->tb->pass_arg_num = 1;
13665 if (!c->ts.interface->formal)
13666 {
13667 gfc_error ("Procedure pointer component %qs with PASS at %L "
13668 "must have at least one argument",
13669 c->name, &c->loc);
13670 c->tb->error = 1;
13671 return false;
13672 }
13673 me_arg = c->ts.interface->formal->sym;
13674 }
13675
13676 /* Now check that the argument-type matches. */
13677 gcc_assert (me_arg);
13678 if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
13679 || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
13680 || (me_arg->ts.type == BT_CLASS
13681 && CLASS_DATA (me_arg)->ts.u.derived != sym))
13682 {
13683 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13684 " the derived type %qs", me_arg->name, c->name,
13685 me_arg->name, &c->loc, sym->name);
13686 c->tb->error = 1;
13687 return false;
13688 }
13689
13690 /* Check for C453. */
13691 if (me_arg->attr.dimension)
13692 {
13693 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13694 "must be scalar", me_arg->name, c->name, me_arg->name,
13695 &c->loc);
13696 c->tb->error = 1;
13697 return false;
13698 }
13699
13700 if (me_arg->attr.pointer)
13701 {
13702 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13703 "may not have the POINTER attribute", me_arg->name,
13704 c->name, me_arg->name, &c->loc);
13705 c->tb->error = 1;
13706 return false;
13707 }
13708
13709 if (me_arg->attr.allocatable)
13710 {
13711 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13712 "may not be ALLOCATABLE", me_arg->name, c->name,
13713 me_arg->name, &c->loc);
13714 c->tb->error = 1;
13715 return false;
13716 }
13717
13718 if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
13719 {
13720 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13721 " at %L", c->name, &c->loc);
13722 return false;
13723 }
13724
13725 }
13726
13727 /* Check type-spec if this is not the parent-type component. */
13728 if (((sym->attr.is_class
13729 && (!sym->components->ts.u.derived->attr.extension
13730 || c != sym->components->ts.u.derived->components))
13731 || (!sym->attr.is_class
13732 && (!sym->attr.extension || c != sym->components)))
13733 && !sym->attr.vtype
13734 && !resolve_typespec_used (&c->ts, &c->loc, c->name))
13735 return false;
13736
13737 super_type = gfc_get_derived_super_type (sym);
13738
13739 /* If this type is an extension, set the accessibility of the parent
13740 component. */
13741 if (super_type
13742 && ((sym->attr.is_class
13743 && c == sym->components->ts.u.derived->components)
13744 || (!sym->attr.is_class && c == sym->components))
13745 && strcmp (super_type->name, c->name) == 0)
13746 c->attr.access = super_type->attr.access;
13747
13748 /* If this type is an extension, see if this component has the same name
13749 as an inherited type-bound procedure. */
13750 if (super_type && !sym->attr.is_class
13751 && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
13752 {
13753 gfc_error ("Component %qs of %qs at %L has the same name as an"
13754 " inherited type-bound procedure",
13755 c->name, sym->name, &c->loc);
13756 return false;
13757 }
13758
13759 if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
13760 && !c->ts.deferred)
13761 {
13762 if (c->ts.u.cl->length == NULL
13763 || (!resolve_charlen(c->ts.u.cl))
13764 || !gfc_is_constant_expr (c->ts.u.cl->length))
13765 {
13766 gfc_error ("Character length of component %qs needs to "
13767 "be a constant specification expression at %L",
13768 c->name,
13769 c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
13770 return false;
13771 }
13772 }
13773
13774 if (c->ts.type == BT_CHARACTER && c->ts.deferred
13775 && !c->attr.pointer && !c->attr.allocatable)
13776 {
13777 gfc_error ("Character component %qs of %qs at %L with deferred "
13778 "length must be a POINTER or ALLOCATABLE",
13779 c->name, sym->name, &c->loc);
13780 return false;
13781 }
13782
13783 /* Add the hidden deferred length field. */
13784 if (c->ts.type == BT_CHARACTER
13785 && (c->ts.deferred || c->attr.pdt_string)
13786 && !c->attr.function
13787 && !sym->attr.is_class)
13788 {
13789 char name[GFC_MAX_SYMBOL_LEN+9];
13790 gfc_component *strlen;
13791 sprintf (name, "_%s_length", c->name);
13792 strlen = gfc_find_component (sym, name, true, true, NULL);
13793 if (strlen == NULL)
13794 {
13795 if (!gfc_add_component (sym, name, &strlen))
13796 return false;
13797 strlen->ts.type = BT_INTEGER;
13798 strlen->ts.kind = gfc_charlen_int_kind;
13799 strlen->attr.access = ACCESS_PRIVATE;
13800 strlen->attr.artificial = 1;
13801 }
13802 }
13803
13804 if (c->ts.type == BT_DERIVED
13805 && sym->component_access != ACCESS_PRIVATE
13806 && gfc_check_symbol_access (sym)
13807 && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
13808 && !c->ts.u.derived->attr.use_assoc
13809 && !gfc_check_symbol_access (c->ts.u.derived)
13810 && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
13811 "PRIVATE type and cannot be a component of "
13812 "%qs, which is PUBLIC at %L", c->name,
13813 sym->name, &sym->declared_at))
13814 return false;
13815
13816 if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
13817 {
13818 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
13819 "type %s", c->name, &c->loc, sym->name);
13820 return false;
13821 }
13822
13823 if (sym->attr.sequence)
13824 {
13825 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
13826 {
13827 gfc_error ("Component %s of SEQUENCE type declared at %L does "
13828 "not have the SEQUENCE attribute",
13829 c->ts.u.derived->name, &sym->declared_at);
13830 return false;
13831 }
13832 }
13833
13834 if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
13835 c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
13836 else if (c->ts.type == BT_CLASS && c->attr.class_ok
13837 && CLASS_DATA (c)->ts.u.derived->attr.generic)
13838 CLASS_DATA (c)->ts.u.derived
13839 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
13840
13841 if (!sym->attr.is_class && c->ts.type == BT_DERIVED && !sym->attr.vtype
13842 && c->attr.pointer && c->ts.u.derived->components == NULL
13843 && !c->ts.u.derived->attr.zero_comp)
13844 {
13845 gfc_error ("The pointer component %qs of %qs at %L is a type "
13846 "that has not been declared", c->name, sym->name,
13847 &c->loc);
13848 return false;
13849 }
13850
13851 if (c->ts.type == BT_CLASS && c->attr.class_ok
13852 && CLASS_DATA (c)->attr.class_pointer
13853 && CLASS_DATA (c)->ts.u.derived->components == NULL
13854 && !CLASS_DATA (c)->ts.u.derived->attr.zero_comp
13855 && !UNLIMITED_POLY (c))
13856 {
13857 gfc_error ("The pointer component %qs of %qs at %L is a type "
13858 "that has not been declared", c->name, sym->name,
13859 &c->loc);
13860 return false;
13861 }
13862
13863 /* If an allocatable component derived type is of the same type as
13864 the enclosing derived type, we need a vtable generating so that
13865 the __deallocate procedure is created. */
13866 if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
13867 && c->ts.u.derived == sym && c->attr.allocatable == 1)
13868 gfc_find_vtab (&c->ts);
13869
13870 /* Ensure that all the derived type components are put on the
13871 derived type list; even in formal namespaces, where derived type
13872 pointer components might not have been declared. */
13873 if (c->ts.type == BT_DERIVED
13874 && c->ts.u.derived
13875 && c->ts.u.derived->components
13876 && c->attr.pointer
13877 && sym != c->ts.u.derived)
13878 add_dt_to_dt_list (c->ts.u.derived);
13879
13880 if (!gfc_resolve_array_spec (c->as,
13881 !(c->attr.pointer || c->attr.proc_pointer
13882 || c->attr.allocatable)))
13883 return false;
13884
13885 if (c->initializer && !sym->attr.vtype
13886 && !c->attr.pdt_kind && !c->attr.pdt_len
13887 && !gfc_check_assign_symbol (sym, c, c->initializer))
13888 return false;
13889
13890 return true;
13891 }
13892
13893
13894 /* Be nice about the locus for a structure expression - show the locus of the
13895 first non-null sub-expression if we can. */
13896
13897 static locus *
13898 cons_where (gfc_expr *struct_expr)
13899 {
13900 gfc_constructor *cons;
13901
13902 gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
13903
13904 cons = gfc_constructor_first (struct_expr->value.constructor);
13905 for (; cons; cons = gfc_constructor_next (cons))
13906 {
13907 if (cons->expr && cons->expr->expr_type != EXPR_NULL)
13908 return &cons->expr->where;
13909 }
13910
13911 return &struct_expr->where;
13912 }
13913
13914 /* Resolve the components of a structure type. Much less work than derived
13915 types. */
13916
13917 static bool
13918 resolve_fl_struct (gfc_symbol *sym)
13919 {
13920 gfc_component *c;
13921 gfc_expr *init = NULL;
13922 bool success;
13923
13924 /* Make sure UNIONs do not have overlapping initializers. */
13925 if (sym->attr.flavor == FL_UNION)
13926 {
13927 for (c = sym->components; c; c = c->next)
13928 {
13929 if (init && c->initializer)
13930 {
13931 gfc_error ("Conflicting initializers in union at %L and %L",
13932 cons_where (init), cons_where (c->initializer));
13933 gfc_free_expr (c->initializer);
13934 c->initializer = NULL;
13935 }
13936 if (init == NULL)
13937 init = c->initializer;
13938 }
13939 }
13940
13941 success = true;
13942 for (c = sym->components; c; c = c->next)
13943 if (!resolve_component (c, sym))
13944 success = false;
13945
13946 if (!success)
13947 return false;
13948
13949 if (sym->components)
13950 add_dt_to_dt_list (sym);
13951
13952 return true;
13953 }
13954
13955
13956 /* Resolve the components of a derived type. This does not have to wait until
13957 resolution stage, but can be done as soon as the dt declaration has been
13958 parsed. */
13959
13960 static bool
13961 resolve_fl_derived0 (gfc_symbol *sym)
13962 {
13963 gfc_symbol* super_type;
13964 gfc_component *c;
13965 gfc_formal_arglist *f;
13966 bool success;
13967
13968 if (sym->attr.unlimited_polymorphic)
13969 return true;
13970
13971 super_type = gfc_get_derived_super_type (sym);
13972
13973 /* F2008, C432. */
13974 if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
13975 {
13976 gfc_error ("As extending type %qs at %L has a coarray component, "
13977 "parent type %qs shall also have one", sym->name,
13978 &sym->declared_at, super_type->name);
13979 return false;
13980 }
13981
13982 /* Ensure the extended type gets resolved before we do. */
13983 if (super_type && !resolve_fl_derived0 (super_type))
13984 return false;
13985
13986 /* An ABSTRACT type must be extensible. */
13987 if (sym->attr.abstract && !gfc_type_is_extensible (sym))
13988 {
13989 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
13990 sym->name, &sym->declared_at);
13991 return false;
13992 }
13993
13994 c = (sym->attr.is_class) ? sym->components->ts.u.derived->components
13995 : sym->components;
13996
13997 success = true;
13998 for ( ; c != NULL; c = c->next)
13999 if (!resolve_component (c, sym))
14000 success = false;
14001
14002 if (!success)
14003 return false;
14004
14005 /* Now add the caf token field, where needed. */
14006 if (flag_coarray != GFC_FCOARRAY_NONE
14007 && !sym->attr.is_class && !sym->attr.vtype)
14008 {
14009 for (c = sym->components; c; c = c->next)
14010 if (!c->attr.dimension && !c->attr.codimension
14011 && (c->attr.allocatable || c->attr.pointer))
14012 {
14013 char name[GFC_MAX_SYMBOL_LEN+9];
14014 gfc_component *token;
14015 sprintf (name, "_caf_%s", c->name);
14016 token = gfc_find_component (sym, name, true, true, NULL);
14017 if (token == NULL)
14018 {
14019 if (!gfc_add_component (sym, name, &token))
14020 return false;
14021 token->ts.type = BT_VOID;
14022 token->ts.kind = gfc_default_integer_kind;
14023 token->attr.access = ACCESS_PRIVATE;
14024 token->attr.artificial = 1;
14025 token->attr.caf_token = 1;
14026 }
14027 }
14028 }
14029
14030 check_defined_assignments (sym);
14031
14032 if (!sym->attr.defined_assign_comp && super_type)
14033 sym->attr.defined_assign_comp
14034 = super_type->attr.defined_assign_comp;
14035
14036 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
14037 all DEFERRED bindings are overridden. */
14038 if (super_type && super_type->attr.abstract && !sym->attr.abstract
14039 && !sym->attr.is_class
14040 && !ensure_not_abstract (sym, super_type))
14041 return false;
14042
14043 /* Check that there is a component for every PDT parameter. */
14044 if (sym->attr.pdt_template)
14045 {
14046 for (f = sym->formal; f; f = f->next)
14047 {
14048 if (!f->sym)
14049 continue;
14050 c = gfc_find_component (sym, f->sym->name, true, true, NULL);
14051 if (c == NULL)
14052 {
14053 gfc_error ("Parameterized type %qs does not have a component "
14054 "corresponding to parameter %qs at %L", sym->name,
14055 f->sym->name, &sym->declared_at);
14056 break;
14057 }
14058 }
14059 }
14060
14061 /* Add derived type to the derived type list. */
14062 add_dt_to_dt_list (sym);
14063
14064 return true;
14065 }
14066
14067
14068 /* The following procedure does the full resolution of a derived type,
14069 including resolution of all type-bound procedures (if present). In contrast
14070 to 'resolve_fl_derived0' this can only be done after the module has been
14071 parsed completely. */
14072
14073 static bool
14074 resolve_fl_derived (gfc_symbol *sym)
14075 {
14076 gfc_symbol *gen_dt = NULL;
14077
14078 if (sym->attr.unlimited_polymorphic)
14079 return true;
14080
14081 if (!sym->attr.is_class)
14082 gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
14083 if (gen_dt && gen_dt->generic && gen_dt->generic->next
14084 && (!gen_dt->generic->sym->attr.use_assoc
14085 || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
14086 && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
14087 "%qs at %L being the same name as derived "
14088 "type at %L", sym->name,
14089 gen_dt->generic->sym == sym
14090 ? gen_dt->generic->next->sym->name
14091 : gen_dt->generic->sym->name,
14092 gen_dt->generic->sym == sym
14093 ? &gen_dt->generic->next->sym->declared_at
14094 : &gen_dt->generic->sym->declared_at,
14095 &sym->declared_at))
14096 return false;
14097
14098 /* Resolve the finalizer procedures. */
14099 if (!gfc_resolve_finalizers (sym, NULL))
14100 return false;
14101
14102 if (sym->attr.is_class && sym->ts.u.derived == NULL)
14103 {
14104 /* Fix up incomplete CLASS symbols. */
14105 gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
14106 gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
14107
14108 /* Nothing more to do for unlimited polymorphic entities. */
14109 if (data->ts.u.derived->attr.unlimited_polymorphic)
14110 return true;
14111 else if (vptr->ts.u.derived == NULL)
14112 {
14113 gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
14114 gcc_assert (vtab);
14115 vptr->ts.u.derived = vtab->ts.u.derived;
14116 if (!resolve_fl_derived0 (vptr->ts.u.derived))
14117 return false;
14118 }
14119 }
14120
14121 if (!resolve_fl_derived0 (sym))
14122 return false;
14123
14124 /* Resolve the type-bound procedures. */
14125 if (!resolve_typebound_procedures (sym))
14126 return false;
14127
14128 /* Generate module vtables subject to their accessibility and their not
14129 being vtables or pdt templates. If this is not done class declarations
14130 in external procedures wind up with their own version and so SELECT TYPE
14131 fails because the vptrs do not have the same address. */
14132 if (gfc_option.allow_std & GFC_STD_F2003
14133 && sym->ns->proc_name
14134 && sym->ns->proc_name->attr.flavor == FL_MODULE
14135 && sym->attr.access != ACCESS_PRIVATE
14136 && !(sym->attr.use_assoc || sym->attr.vtype || sym->attr.pdt_template))
14137 {
14138 gfc_symbol *vtab = gfc_find_derived_vtab (sym);
14139 gfc_set_sym_referenced (vtab);
14140 }
14141
14142 return true;
14143 }
14144
14145
14146 static bool
14147 resolve_fl_namelist (gfc_symbol *sym)
14148 {
14149 gfc_namelist *nl;
14150 gfc_symbol *nlsym;
14151
14152 for (nl = sym->namelist; nl; nl = nl->next)
14153 {
14154 /* Check again, the check in match only works if NAMELIST comes
14155 after the decl. */
14156 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
14157 {
14158 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14159 "allowed", nl->sym->name, sym->name, &sym->declared_at);
14160 return false;
14161 }
14162
14163 if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
14164 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14165 "with assumed shape in namelist %qs at %L",
14166 nl->sym->name, sym->name, &sym->declared_at))
14167 return false;
14168
14169 if (is_non_constant_shape_array (nl->sym)
14170 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
14171 "with nonconstant shape in namelist %qs at %L",
14172 nl->sym->name, sym->name, &sym->declared_at))
14173 return false;
14174
14175 if (nl->sym->ts.type == BT_CHARACTER
14176 && (nl->sym->ts.u.cl->length == NULL
14177 || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
14178 && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
14179 "nonconstant character length in "
14180 "namelist %qs at %L", nl->sym->name,
14181 sym->name, &sym->declared_at))
14182 return false;
14183
14184 }
14185
14186 /* Reject PRIVATE objects in a PUBLIC namelist. */
14187 if (gfc_check_symbol_access (sym))
14188 {
14189 for (nl = sym->namelist; nl; nl = nl->next)
14190 {
14191 if (!nl->sym->attr.use_assoc
14192 && !is_sym_host_assoc (nl->sym, sym->ns)
14193 && !gfc_check_symbol_access (nl->sym))
14194 {
14195 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14196 "cannot be member of PUBLIC namelist %qs at %L",
14197 nl->sym->name, sym->name, &sym->declared_at);
14198 return false;
14199 }
14200
14201 if (nl->sym->ts.type == BT_DERIVED
14202 && (nl->sym->ts.u.derived->attr.alloc_comp
14203 || nl->sym->ts.u.derived->attr.pointer_comp))
14204 {
14205 if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
14206 "namelist %qs at %L with ALLOCATABLE "
14207 "or POINTER components", nl->sym->name,
14208 sym->name, &sym->declared_at))
14209 return false;
14210 return true;
14211 }
14212
14213 /* Types with private components that came here by USE-association. */
14214 if (nl->sym->ts.type == BT_DERIVED
14215 && derived_inaccessible (nl->sym->ts.u.derived))
14216 {
14217 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14218 "components and cannot be member of namelist %qs at %L",
14219 nl->sym->name, sym->name, &sym->declared_at);
14220 return false;
14221 }
14222
14223 /* Types with private components that are defined in the same module. */
14224 if (nl->sym->ts.type == BT_DERIVED
14225 && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
14226 && nl->sym->ts.u.derived->attr.private_comp)
14227 {
14228 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14229 "cannot be a member of PUBLIC namelist %qs at %L",
14230 nl->sym->name, sym->name, &sym->declared_at);
14231 return false;
14232 }
14233 }
14234 }
14235
14236
14237 /* 14.1.2 A module or internal procedure represent local entities
14238 of the same type as a namelist member and so are not allowed. */
14239 for (nl = sym->namelist; nl; nl = nl->next)
14240 {
14241 if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
14242 continue;
14243
14244 if (nl->sym->attr.function && nl->sym == nl->sym->result)
14245 if ((nl->sym == sym->ns->proc_name)
14246 ||
14247 (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
14248 continue;
14249
14250 nlsym = NULL;
14251 if (nl->sym->name)
14252 gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
14253 if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
14254 {
14255 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14256 "attribute in %qs at %L", nlsym->name,
14257 &sym->declared_at);
14258 return false;
14259 }
14260 }
14261
14262 if (async_io_dt)
14263 {
14264 for (nl = sym->namelist; nl; nl = nl->next)
14265 nl->sym->attr.asynchronous = 1;
14266 }
14267 return true;
14268 }
14269
14270
14271 static bool
14272 resolve_fl_parameter (gfc_symbol *sym)
14273 {
14274 /* A parameter array's shape needs to be constant. */
14275 if (sym->as != NULL
14276 && (sym->as->type == AS_DEFERRED
14277 || is_non_constant_shape_array (sym)))
14278 {
14279 gfc_error ("Parameter array %qs at %L cannot be automatic "
14280 "or of deferred shape", sym->name, &sym->declared_at);
14281 return false;
14282 }
14283
14284 /* Constraints on deferred type parameter. */
14285 if (!deferred_requirements (sym))
14286 return false;
14287
14288 /* Make sure a parameter that has been implicitly typed still
14289 matches the implicit type, since PARAMETER statements can precede
14290 IMPLICIT statements. */
14291 if (sym->attr.implicit_type
14292 && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
14293 sym->ns)))
14294 {
14295 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
14296 "later IMPLICIT type", sym->name, &sym->declared_at);
14297 return false;
14298 }
14299
14300 /* Make sure the types of derived parameters are consistent. This
14301 type checking is deferred until resolution because the type may
14302 refer to a derived type from the host. */
14303 if (sym->ts.type == BT_DERIVED
14304 && !gfc_compare_types (&sym->ts, &sym->value->ts))
14305 {
14306 gfc_error ("Incompatible derived type in PARAMETER at %L",
14307 &sym->value->where);
14308 return false;
14309 }
14310
14311 /* F03:C509,C514. */
14312 if (sym->ts.type == BT_CLASS)
14313 {
14314 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
14315 sym->name, &sym->declared_at);
14316 return false;
14317 }
14318
14319 return true;
14320 }
14321
14322
14323 /* Called by resolve_symbol to check PDTs. */
14324
14325 static void
14326 resolve_pdt (gfc_symbol* sym)
14327 {
14328 gfc_symbol *derived = NULL;
14329 gfc_actual_arglist *param;
14330 gfc_component *c;
14331 bool const_len_exprs = true;
14332 bool assumed_len_exprs = false;
14333 symbol_attribute *attr;
14334
14335 if (sym->ts.type == BT_DERIVED)
14336 {
14337 derived = sym->ts.u.derived;
14338 attr = &(sym->attr);
14339 }
14340 else if (sym->ts.type == BT_CLASS)
14341 {
14342 derived = CLASS_DATA (sym)->ts.u.derived;
14343 attr = &(CLASS_DATA (sym)->attr);
14344 }
14345 else
14346 gcc_unreachable ();
14347
14348 gcc_assert (derived->attr.pdt_type);
14349
14350 for (param = sym->param_list; param; param = param->next)
14351 {
14352 c = gfc_find_component (derived, param->name, false, true, NULL);
14353 gcc_assert (c);
14354 if (c->attr.pdt_kind)
14355 continue;
14356
14357 if (param->expr && !gfc_is_constant_expr (param->expr)
14358 && c->attr.pdt_len)
14359 const_len_exprs = false;
14360 else if (param->spec_type == SPEC_ASSUMED)
14361 assumed_len_exprs = true;
14362
14363 if (param->spec_type == SPEC_DEFERRED
14364 && !attr->allocatable && !attr->pointer)
14365 gfc_error ("The object %qs at %L has a deferred LEN "
14366 "parameter %qs and is neither allocatable "
14367 "nor a pointer", sym->name, &sym->declared_at,
14368 param->name);
14369
14370 }
14371
14372 if (!const_len_exprs
14373 && (sym->ns->proc_name->attr.is_main_program
14374 || sym->ns->proc_name->attr.flavor == FL_MODULE
14375 || sym->attr.save != SAVE_NONE))
14376 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
14377 "SAVE attribute or be a variable declared in the "
14378 "main program, a module or a submodule(F08/C513)",
14379 sym->name, &sym->declared_at);
14380
14381 if (assumed_len_exprs && !(sym->attr.dummy
14382 || sym->attr.select_type_temporary || sym->attr.associate_var))
14383 gfc_error ("The object %qs at %L with ASSUMED type parameters "
14384 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
14385 sym->name, &sym->declared_at);
14386 }
14387
14388
14389 /* Do anything necessary to resolve a symbol. Right now, we just
14390 assume that an otherwise unknown symbol is a variable. This sort
14391 of thing commonly happens for symbols in module. */
14392
14393 static void
14394 resolve_symbol (gfc_symbol *sym)
14395 {
14396 int check_constant, mp_flag;
14397 gfc_symtree *symtree;
14398 gfc_symtree *this_symtree;
14399 gfc_namespace *ns;
14400 gfc_component *c;
14401 symbol_attribute class_attr;
14402 gfc_array_spec *as;
14403 bool saved_specification_expr;
14404
14405 if (sym->resolved)
14406 return;
14407 sym->resolved = 1;
14408
14409 /* No symbol will ever have union type; only components can be unions.
14410 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
14411 (just like derived type declaration symbols have flavor FL_DERIVED). */
14412 gcc_assert (sym->ts.type != BT_UNION);
14413
14414 /* Coarrayed polymorphic objects with allocatable or pointer components are
14415 yet unsupported for -fcoarray=lib. */
14416 if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
14417 && sym->ts.u.derived && CLASS_DATA (sym)
14418 && CLASS_DATA (sym)->attr.codimension
14419 && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
14420 || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
14421 {
14422 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
14423 "type coarrays at %L are unsupported", &sym->declared_at);
14424 return;
14425 }
14426
14427 if (sym->attr.artificial)
14428 return;
14429
14430 if (sym->attr.unlimited_polymorphic)
14431 return;
14432
14433 if (sym->attr.flavor == FL_UNKNOWN
14434 || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
14435 && !sym->attr.generic && !sym->attr.external
14436 && sym->attr.if_source == IFSRC_UNKNOWN
14437 && sym->ts.type == BT_UNKNOWN))
14438 {
14439
14440 /* If we find that a flavorless symbol is an interface in one of the
14441 parent namespaces, find its symtree in this namespace, free the
14442 symbol and set the symtree to point to the interface symbol. */
14443 for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
14444 {
14445 symtree = gfc_find_symtree (ns->sym_root, sym->name);
14446 if (symtree && (symtree->n.sym->generic ||
14447 (symtree->n.sym->attr.flavor == FL_PROCEDURE
14448 && sym->ns->construct_entities)))
14449 {
14450 this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
14451 sym->name);
14452 if (this_symtree->n.sym == sym)
14453 {
14454 symtree->n.sym->refs++;
14455 gfc_release_symbol (sym);
14456 this_symtree->n.sym = symtree->n.sym;
14457 return;
14458 }
14459 }
14460 }
14461
14462 /* Otherwise give it a flavor according to such attributes as
14463 it has. */
14464 if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
14465 && sym->attr.intrinsic == 0)
14466 sym->attr.flavor = FL_VARIABLE;
14467 else if (sym->attr.flavor == FL_UNKNOWN)
14468 {
14469 sym->attr.flavor = FL_PROCEDURE;
14470 if (sym->attr.dimension)
14471 sym->attr.function = 1;
14472 }
14473 }
14474
14475 if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
14476 gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
14477
14478 if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
14479 && !resolve_procedure_interface (sym))
14480 return;
14481
14482 if (sym->attr.is_protected && !sym->attr.proc_pointer
14483 && (sym->attr.procedure || sym->attr.external))
14484 {
14485 if (sym->attr.external)
14486 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
14487 "at %L", &sym->declared_at);
14488 else
14489 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
14490 "at %L", &sym->declared_at);
14491
14492 return;
14493 }
14494
14495 if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
14496 return;
14497
14498 else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
14499 && !resolve_fl_struct (sym))
14500 return;
14501
14502 /* Symbols that are module procedures with results (functions) have
14503 the types and array specification copied for type checking in
14504 procedures that call them, as well as for saving to a module
14505 file. These symbols can't stand the scrutiny that their results
14506 can. */
14507 mp_flag = (sym->result != NULL && sym->result != sym);
14508
14509 /* Make sure that the intrinsic is consistent with its internal
14510 representation. This needs to be done before assigning a default
14511 type to avoid spurious warnings. */
14512 if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
14513 && !gfc_resolve_intrinsic (sym, &sym->declared_at))
14514 return;
14515
14516 /* Resolve associate names. */
14517 if (sym->assoc)
14518 resolve_assoc_var (sym, true);
14519
14520 /* Assign default type to symbols that need one and don't have one. */
14521 if (sym->ts.type == BT_UNKNOWN)
14522 {
14523 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
14524 {
14525 gfc_set_default_type (sym, 1, NULL);
14526 }
14527
14528 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
14529 && !sym->attr.function && !sym->attr.subroutine
14530 && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
14531 gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
14532
14533 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14534 {
14535 /* The specific case of an external procedure should emit an error
14536 in the case that there is no implicit type. */
14537 if (!mp_flag)
14538 {
14539 if (!sym->attr.mixed_entry_master)
14540 gfc_set_default_type (sym, sym->attr.external, NULL);
14541 }
14542 else
14543 {
14544 /* Result may be in another namespace. */
14545 resolve_symbol (sym->result);
14546
14547 if (!sym->result->attr.proc_pointer)
14548 {
14549 sym->ts = sym->result->ts;
14550 sym->as = gfc_copy_array_spec (sym->result->as);
14551 sym->attr.dimension = sym->result->attr.dimension;
14552 sym->attr.pointer = sym->result->attr.pointer;
14553 sym->attr.allocatable = sym->result->attr.allocatable;
14554 sym->attr.contiguous = sym->result->attr.contiguous;
14555 }
14556 }
14557 }
14558 }
14559 else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
14560 {
14561 bool saved_specification_expr = specification_expr;
14562 specification_expr = true;
14563 gfc_resolve_array_spec (sym->result->as, false);
14564 specification_expr = saved_specification_expr;
14565 }
14566
14567 if (sym->ts.type == BT_CLASS && sym->attr.class_ok)
14568 {
14569 as = CLASS_DATA (sym)->as;
14570 class_attr = CLASS_DATA (sym)->attr;
14571 class_attr.pointer = class_attr.class_pointer;
14572 }
14573 else
14574 {
14575 class_attr = sym->attr;
14576 as = sym->as;
14577 }
14578
14579 /* F2008, C530. */
14580 if (sym->attr.contiguous
14581 && (!class_attr.dimension
14582 || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
14583 && !class_attr.pointer)))
14584 {
14585 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
14586 "array pointer or an assumed-shape or assumed-rank array",
14587 sym->name, &sym->declared_at);
14588 return;
14589 }
14590
14591 /* Assumed size arrays and assumed shape arrays must be dummy
14592 arguments. Array-spec's of implied-shape should have been resolved to
14593 AS_EXPLICIT already. */
14594
14595 if (as)
14596 {
14597 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
14598 specification expression. */
14599 if (as->type == AS_IMPLIED_SHAPE)
14600 {
14601 int i;
14602 for (i=0; i<as->rank; i++)
14603 {
14604 if (as->lower[i] != NULL && as->upper[i] == NULL)
14605 {
14606 gfc_error ("Bad specification for assumed size array at %L",
14607 &as->lower[i]->where);
14608 return;
14609 }
14610 }
14611 gcc_unreachable();
14612 }
14613
14614 if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
14615 || as->type == AS_ASSUMED_SHAPE)
14616 && !sym->attr.dummy && !sym->attr.select_type_temporary)
14617 {
14618 if (as->type == AS_ASSUMED_SIZE)
14619 gfc_error ("Assumed size array at %L must be a dummy argument",
14620 &sym->declared_at);
14621 else
14622 gfc_error ("Assumed shape array at %L must be a dummy argument",
14623 &sym->declared_at);
14624 return;
14625 }
14626 /* TS 29113, C535a. */
14627 if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
14628 && !sym->attr.select_type_temporary)
14629 {
14630 gfc_error ("Assumed-rank array at %L must be a dummy argument",
14631 &sym->declared_at);
14632 return;
14633 }
14634 if (as->type == AS_ASSUMED_RANK
14635 && (sym->attr.codimension || sym->attr.value))
14636 {
14637 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
14638 "CODIMENSION attribute", &sym->declared_at);
14639 return;
14640 }
14641 }
14642
14643 /* Make sure symbols with known intent or optional are really dummy
14644 variable. Because of ENTRY statement, this has to be deferred
14645 until resolution time. */
14646
14647 if (!sym->attr.dummy
14648 && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
14649 {
14650 gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
14651 return;
14652 }
14653
14654 if (sym->attr.value && !sym->attr.dummy)
14655 {
14656 gfc_error ("%qs at %L cannot have the VALUE attribute because "
14657 "it is not a dummy argument", sym->name, &sym->declared_at);
14658 return;
14659 }
14660
14661 if (sym->attr.value && sym->ts.type == BT_CHARACTER)
14662 {
14663 gfc_charlen *cl = sym->ts.u.cl;
14664 if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
14665 {
14666 gfc_error ("Character dummy variable %qs at %L with VALUE "
14667 "attribute must have constant length",
14668 sym->name, &sym->declared_at);
14669 return;
14670 }
14671
14672 if (sym->ts.is_c_interop
14673 && mpz_cmp_si (cl->length->value.integer, 1) != 0)
14674 {
14675 gfc_error ("C interoperable character dummy variable %qs at %L "
14676 "with VALUE attribute must have length one",
14677 sym->name, &sym->declared_at);
14678 return;
14679 }
14680 }
14681
14682 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
14683 && sym->ts.u.derived->attr.generic)
14684 {
14685 sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
14686 if (!sym->ts.u.derived)
14687 {
14688 gfc_error ("The derived type %qs at %L is of type %qs, "
14689 "which has not been defined", sym->name,
14690 &sym->declared_at, sym->ts.u.derived->name);
14691 sym->ts.type = BT_UNKNOWN;
14692 return;
14693 }
14694 }
14695
14696 /* Use the same constraints as TYPE(*), except for the type check
14697 and that only scalars and assumed-size arrays are permitted. */
14698 if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
14699 {
14700 if (!sym->attr.dummy)
14701 {
14702 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14703 "a dummy argument", sym->name, &sym->declared_at);
14704 return;
14705 }
14706
14707 if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
14708 && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
14709 && sym->ts.type != BT_COMPLEX)
14710 {
14711 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14712 "of type TYPE(*) or of an numeric intrinsic type",
14713 sym->name, &sym->declared_at);
14714 return;
14715 }
14716
14717 if (sym->attr.allocatable || sym->attr.codimension
14718 || sym->attr.pointer || sym->attr.value)
14719 {
14720 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14721 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
14722 "attribute", sym->name, &sym->declared_at);
14723 return;
14724 }
14725
14726 if (sym->attr.intent == INTENT_OUT)
14727 {
14728 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14729 "have the INTENT(OUT) attribute",
14730 sym->name, &sym->declared_at);
14731 return;
14732 }
14733 if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
14734 {
14735 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
14736 "either be a scalar or an assumed-size array",
14737 sym->name, &sym->declared_at);
14738 return;
14739 }
14740
14741 /* Set the type to TYPE(*) and add a dimension(*) to ensure
14742 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
14743 packing. */
14744 sym->ts.type = BT_ASSUMED;
14745 sym->as = gfc_get_array_spec ();
14746 sym->as->type = AS_ASSUMED_SIZE;
14747 sym->as->rank = 1;
14748 sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
14749 }
14750 else if (sym->ts.type == BT_ASSUMED)
14751 {
14752 /* TS 29113, C407a. */
14753 if (!sym->attr.dummy)
14754 {
14755 gfc_error ("Assumed type of variable %s at %L is only permitted "
14756 "for dummy variables", sym->name, &sym->declared_at);
14757 return;
14758 }
14759 if (sym->attr.allocatable || sym->attr.codimension
14760 || sym->attr.pointer || sym->attr.value)
14761 {
14762 gfc_error ("Assumed-type variable %s at %L may not have the "
14763 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
14764 sym->name, &sym->declared_at);
14765 return;
14766 }
14767 if (sym->attr.intent == INTENT_OUT)
14768 {
14769 gfc_error ("Assumed-type variable %s at %L may not have the "
14770 "INTENT(OUT) attribute",
14771 sym->name, &sym->declared_at);
14772 return;
14773 }
14774 if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
14775 {
14776 gfc_error ("Assumed-type variable %s at %L shall not be an "
14777 "explicit-shape array", sym->name, &sym->declared_at);
14778 return;
14779 }
14780 }
14781
14782 /* If the symbol is marked as bind(c), that it is declared at module level
14783 scope and verify its type and kind. Do not do the latter for symbols
14784 that are implicitly typed because that is handled in
14785 gfc_set_default_type. Handle dummy arguments and procedure definitions
14786 separately. Also, anything that is use associated is not handled here
14787 but instead is handled in the module it is declared in. Finally, derived
14788 type definitions are allowed to be BIND(C) since that only implies that
14789 they're interoperable, and they are checked fully for interoperability
14790 when a variable is declared of that type. */
14791 if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
14792 && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
14793 && sym->attr.flavor != FL_DERIVED)
14794 {
14795 bool t = true;
14796
14797 /* First, make sure the variable is declared at the
14798 module-level scope (J3/04-007, Section 15.3). */
14799 if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
14800 sym->attr.in_common == 0)
14801 {
14802 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
14803 "is neither a COMMON block nor declared at the "
14804 "module level scope", sym->name, &(sym->declared_at));
14805 t = false;
14806 }
14807 else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
14808 {
14809 t = verify_com_block_vars_c_interop (sym->common_head);
14810 }
14811 else if (sym->attr.implicit_type == 0)
14812 {
14813 /* If type() declaration, we need to verify that the components
14814 of the given type are all C interoperable, etc. */
14815 if (sym->ts.type == BT_DERIVED &&
14816 sym->ts.u.derived->attr.is_c_interop != 1)
14817 {
14818 /* Make sure the user marked the derived type as BIND(C). If
14819 not, call the verify routine. This could print an error
14820 for the derived type more than once if multiple variables
14821 of that type are declared. */
14822 if (sym->ts.u.derived->attr.is_bind_c != 1)
14823 verify_bind_c_derived_type (sym->ts.u.derived);
14824 t = false;
14825 }
14826
14827 /* Verify the variable itself as C interoperable if it
14828 is BIND(C). It is not possible for this to succeed if
14829 the verify_bind_c_derived_type failed, so don't have to handle
14830 any error returned by verify_bind_c_derived_type. */
14831 t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
14832 sym->common_block);
14833 }
14834
14835 if (!t)
14836 {
14837 /* clear the is_bind_c flag to prevent reporting errors more than
14838 once if something failed. */
14839 sym->attr.is_bind_c = 0;
14840 return;
14841 }
14842 }
14843
14844 /* If a derived type symbol has reached this point, without its
14845 type being declared, we have an error. Notice that most
14846 conditions that produce undefined derived types have already
14847 been dealt with. However, the likes of:
14848 implicit type(t) (t) ..... call foo (t) will get us here if
14849 the type is not declared in the scope of the implicit
14850 statement. Change the type to BT_UNKNOWN, both because it is so
14851 and to prevent an ICE. */
14852 if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
14853 && sym->ts.u.derived->components == NULL
14854 && !sym->ts.u.derived->attr.zero_comp)
14855 {
14856 gfc_error ("The derived type %qs at %L is of type %qs, "
14857 "which has not been defined", sym->name,
14858 &sym->declared_at, sym->ts.u.derived->name);
14859 sym->ts.type = BT_UNKNOWN;
14860 return;
14861 }
14862
14863 /* Make sure that the derived type has been resolved and that the
14864 derived type is visible in the symbol's namespace, if it is a
14865 module function and is not PRIVATE. */
14866 if (sym->ts.type == BT_DERIVED
14867 && sym->ts.u.derived->attr.use_assoc
14868 && sym->ns->proc_name
14869 && sym->ns->proc_name->attr.flavor == FL_MODULE
14870 && !resolve_fl_derived (sym->ts.u.derived))
14871 return;
14872
14873 /* Unless the derived-type declaration is use associated, Fortran 95
14874 does not allow public entries of private derived types.
14875 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
14876 161 in 95-006r3. */
14877 if (sym->ts.type == BT_DERIVED
14878 && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
14879 && !sym->ts.u.derived->attr.use_assoc
14880 && gfc_check_symbol_access (sym)
14881 && !gfc_check_symbol_access (sym->ts.u.derived)
14882 && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
14883 "derived type %qs",
14884 (sym->attr.flavor == FL_PARAMETER)
14885 ? "parameter" : "variable",
14886 sym->name, &sym->declared_at,
14887 sym->ts.u.derived->name))
14888 return;
14889
14890 /* F2008, C1302. */
14891 if (sym->ts.type == BT_DERIVED
14892 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
14893 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
14894 || sym->ts.u.derived->attr.lock_comp)
14895 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
14896 {
14897 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
14898 "type LOCK_TYPE must be a coarray", sym->name,
14899 &sym->declared_at);
14900 return;
14901 }
14902
14903 /* TS18508, C702/C703. */
14904 if (sym->ts.type == BT_DERIVED
14905 && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
14906 && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
14907 || sym->ts.u.derived->attr.event_comp)
14908 && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
14909 {
14910 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
14911 "type EVENT_TYPE must be a coarray", sym->name,
14912 &sym->declared_at);
14913 return;
14914 }
14915
14916 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
14917 default initialization is defined (5.1.2.4.4). */
14918 if (sym->ts.type == BT_DERIVED
14919 && sym->attr.dummy
14920 && sym->attr.intent == INTENT_OUT
14921 && sym->as
14922 && sym->as->type == AS_ASSUMED_SIZE)
14923 {
14924 for (c = sym->ts.u.derived->components; c; c = c->next)
14925 {
14926 if (c->initializer)
14927 {
14928 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
14929 "ASSUMED SIZE and so cannot have a default initializer",
14930 sym->name, &sym->declared_at);
14931 return;
14932 }
14933 }
14934 }
14935
14936 /* F2008, C542. */
14937 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
14938 && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
14939 {
14940 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
14941 "INTENT(OUT)", sym->name, &sym->declared_at);
14942 return;
14943 }
14944
14945 /* TS18508. */
14946 if (sym->ts.type == BT_DERIVED && sym->attr.dummy
14947 && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
14948 {
14949 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
14950 "INTENT(OUT)", sym->name, &sym->declared_at);
14951 return;
14952 }
14953
14954 /* F2008, C525. */
14955 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
14956 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
14957 && CLASS_DATA (sym)->attr.coarray_comp))
14958 || class_attr.codimension)
14959 && (sym->attr.result || sym->result == sym))
14960 {
14961 gfc_error ("Function result %qs at %L shall not be a coarray or have "
14962 "a coarray component", sym->name, &sym->declared_at);
14963 return;
14964 }
14965
14966 /* F2008, C524. */
14967 if (sym->attr.codimension && sym->ts.type == BT_DERIVED
14968 && sym->ts.u.derived->ts.is_iso_c)
14969 {
14970 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
14971 "shall not be a coarray", sym->name, &sym->declared_at);
14972 return;
14973 }
14974
14975 /* F2008, C525. */
14976 if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
14977 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
14978 && CLASS_DATA (sym)->attr.coarray_comp))
14979 && (class_attr.codimension || class_attr.pointer || class_attr.dimension
14980 || class_attr.allocatable))
14981 {
14982 gfc_error ("Variable %qs at %L with coarray component shall be a "
14983 "nonpointer, nonallocatable scalar, which is not a coarray",
14984 sym->name, &sym->declared_at);
14985 return;
14986 }
14987
14988 /* F2008, C526. The function-result case was handled above. */
14989 if (class_attr.codimension
14990 && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
14991 || sym->attr.select_type_temporary
14992 || sym->attr.associate_var
14993 || (sym->ns->save_all && !sym->attr.automatic)
14994 || sym->ns->proc_name->attr.flavor == FL_MODULE
14995 || sym->ns->proc_name->attr.is_main_program
14996 || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
14997 {
14998 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
14999 "nor a dummy argument", sym->name, &sym->declared_at);
15000 return;
15001 }
15002 /* F2008, C528. */
15003 else if (class_attr.codimension && !sym->attr.select_type_temporary
15004 && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
15005 {
15006 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
15007 "deferred shape", sym->name, &sym->declared_at);
15008 return;
15009 }
15010 else if (class_attr.codimension && class_attr.allocatable && as
15011 && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
15012 {
15013 gfc_error ("Allocatable coarray variable %qs at %L must have "
15014 "deferred shape", sym->name, &sym->declared_at);
15015 return;
15016 }
15017
15018 /* F2008, C541. */
15019 if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
15020 || (sym->ts.type == BT_CLASS && sym->attr.class_ok
15021 && CLASS_DATA (sym)->attr.coarray_comp))
15022 || (class_attr.codimension && class_attr.allocatable))
15023 && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
15024 {
15025 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
15026 "allocatable coarray or have coarray components",
15027 sym->name, &sym->declared_at);
15028 return;
15029 }
15030
15031 if (class_attr.codimension && sym->attr.dummy
15032 && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
15033 {
15034 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
15035 "procedure %qs", sym->name, &sym->declared_at,
15036 sym->ns->proc_name->name);
15037 return;
15038 }
15039
15040 if (sym->ts.type == BT_LOGICAL
15041 && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
15042 || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
15043 && sym->ns->proc_name->attr.is_bind_c)))
15044 {
15045 int i;
15046 for (i = 0; gfc_logical_kinds[i].kind; i++)
15047 if (gfc_logical_kinds[i].kind == sym->ts.kind)
15048 break;
15049 if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
15050 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
15051 "%L with non-C_Bool kind in BIND(C) procedure "
15052 "%qs", sym->name, &sym->declared_at,
15053 sym->ns->proc_name->name))
15054 return;
15055 else if (!gfc_logical_kinds[i].c_bool
15056 && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
15057 "%qs at %L with non-C_Bool kind in "
15058 "BIND(C) procedure %qs", sym->name,
15059 &sym->declared_at,
15060 sym->attr.function ? sym->name
15061 : sym->ns->proc_name->name))
15062 return;
15063 }
15064
15065 switch (sym->attr.flavor)
15066 {
15067 case FL_VARIABLE:
15068 if (!resolve_fl_variable (sym, mp_flag))
15069 return;
15070 break;
15071
15072 case FL_PROCEDURE:
15073 if (sym->formal && !sym->formal_ns)
15074 {
15075 /* Check that none of the arguments are a namelist. */
15076 gfc_formal_arglist *formal = sym->formal;
15077
15078 for (; formal; formal = formal->next)
15079 if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
15080 {
15081 gfc_error ("Namelist %qs can not be an argument to "
15082 "subroutine or function at %L",
15083 formal->sym->name, &sym->declared_at);
15084 return;
15085 }
15086 }
15087
15088 if (!resolve_fl_procedure (sym, mp_flag))
15089 return;
15090 break;
15091
15092 case FL_NAMELIST:
15093 if (!resolve_fl_namelist (sym))
15094 return;
15095 break;
15096
15097 case FL_PARAMETER:
15098 if (!resolve_fl_parameter (sym))
15099 return;
15100 break;
15101
15102 default:
15103 break;
15104 }
15105
15106 /* Resolve array specifier. Check as well some constraints
15107 on COMMON blocks. */
15108
15109 check_constant = sym->attr.in_common && !sym->attr.pointer;
15110
15111 /* Set the formal_arg_flag so that check_conflict will not throw
15112 an error for host associated variables in the specification
15113 expression for an array_valued function. */
15114 if (sym->attr.function && sym->as)
15115 formal_arg_flag = true;
15116
15117 saved_specification_expr = specification_expr;
15118 specification_expr = true;
15119 gfc_resolve_array_spec (sym->as, check_constant);
15120 specification_expr = saved_specification_expr;
15121
15122 formal_arg_flag = false;
15123
15124 /* Resolve formal namespaces. */
15125 if (sym->formal_ns && sym->formal_ns != gfc_current_ns
15126 && !sym->attr.contained && !sym->attr.intrinsic)
15127 gfc_resolve (sym->formal_ns);
15128
15129 /* Make sure the formal namespace is present. */
15130 if (sym->formal && !sym->formal_ns)
15131 {
15132 gfc_formal_arglist *formal = sym->formal;
15133 while (formal && !formal->sym)
15134 formal = formal->next;
15135
15136 if (formal)
15137 {
15138 sym->formal_ns = formal->sym->ns;
15139 if (sym->ns != formal->sym->ns)
15140 sym->formal_ns->refs++;
15141 }
15142 }
15143
15144 /* Check threadprivate restrictions. */
15145 if (sym->attr.threadprivate && !sym->attr.save
15146 && !(sym->ns->save_all && !sym->attr.automatic)
15147 && (!sym->attr.in_common
15148 && sym->module == NULL
15149 && (sym->ns->proc_name == NULL
15150 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15151 gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
15152
15153 /* Check omp declare target restrictions. */
15154 if (sym->attr.omp_declare_target
15155 && sym->attr.flavor == FL_VARIABLE
15156 && !sym->attr.save
15157 && !(sym->ns->save_all && !sym->attr.automatic)
15158 && (!sym->attr.in_common
15159 && sym->module == NULL
15160 && (sym->ns->proc_name == NULL
15161 || sym->ns->proc_name->attr.flavor != FL_MODULE)))
15162 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15163 sym->name, &sym->declared_at);
15164
15165 /* If we have come this far we can apply default-initializers, as
15166 described in 14.7.5, to those variables that have not already
15167 been assigned one. */
15168 if (sym->ts.type == BT_DERIVED
15169 && !sym->value
15170 && !sym->attr.allocatable
15171 && !sym->attr.alloc_comp)
15172 {
15173 symbol_attribute *a = &sym->attr;
15174
15175 if ((!a->save && !a->dummy && !a->pointer
15176 && !a->in_common && !a->use_assoc
15177 && a->referenced
15178 && !((a->function || a->result)
15179 && (!a->dimension
15180 || sym->ts.u.derived->attr.alloc_comp
15181 || sym->ts.u.derived->attr.pointer_comp))
15182 && !(a->function && sym != sym->result))
15183 || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
15184 apply_default_init (sym);
15185 else if (a->function && sym->result && a->access != ACCESS_PRIVATE
15186 && (sym->ts.u.derived->attr.alloc_comp
15187 || sym->ts.u.derived->attr.pointer_comp))
15188 /* Mark the result symbol to be referenced, when it has allocatable
15189 components. */
15190 sym->result->attr.referenced = 1;
15191 }
15192
15193 if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
15194 && sym->attr.dummy && sym->attr.intent == INTENT_OUT
15195 && !CLASS_DATA (sym)->attr.class_pointer
15196 && !CLASS_DATA (sym)->attr.allocatable)
15197 apply_default_init (sym);
15198
15199 /* If this symbol has a type-spec, check it. */
15200 if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
15201 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
15202 if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
15203 return;
15204
15205 if (sym->param_list)
15206 resolve_pdt (sym);
15207 }
15208
15209
15210 /************* Resolve DATA statements *************/
15211
15212 static struct
15213 {
15214 gfc_data_value *vnode;
15215 mpz_t left;
15216 }
15217 values;
15218
15219
15220 /* Advance the values structure to point to the next value in the data list. */
15221
15222 static bool
15223 next_data_value (void)
15224 {
15225 while (mpz_cmp_ui (values.left, 0) == 0)
15226 {
15227
15228 if (values.vnode->next == NULL)
15229 return false;
15230
15231 values.vnode = values.vnode->next;
15232 mpz_set (values.left, values.vnode->repeat);
15233 }
15234
15235 return true;
15236 }
15237
15238
15239 static bool
15240 check_data_variable (gfc_data_variable *var, locus *where)
15241 {
15242 gfc_expr *e;
15243 mpz_t size;
15244 mpz_t offset;
15245 bool t;
15246 ar_type mark = AR_UNKNOWN;
15247 int i;
15248 mpz_t section_index[GFC_MAX_DIMENSIONS];
15249 gfc_ref *ref;
15250 gfc_array_ref *ar;
15251 gfc_symbol *sym;
15252 int has_pointer;
15253
15254 if (!gfc_resolve_expr (var->expr))
15255 return false;
15256
15257 ar = NULL;
15258 mpz_init_set_si (offset, 0);
15259 e = var->expr;
15260
15261 if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
15262 && e->value.function.isym->id == GFC_ISYM_CAF_GET)
15263 e = e->value.function.actual->expr;
15264
15265 if (e->expr_type != EXPR_VARIABLE)
15266 gfc_internal_error ("check_data_variable(): Bad expression");
15267
15268 sym = e->symtree->n.sym;
15269
15270 if (sym->ns->is_block_data && !sym->attr.in_common)
15271 {
15272 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15273 sym->name, &sym->declared_at);
15274 }
15275
15276 if (e->ref == NULL && sym->as)
15277 {
15278 gfc_error ("DATA array %qs at %L must be specified in a previous"
15279 " declaration", sym->name, where);
15280 return false;
15281 }
15282
15283 has_pointer = sym->attr.pointer;
15284
15285 if (gfc_is_coindexed (e))
15286 {
15287 gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
15288 where);
15289 return false;
15290 }
15291
15292 for (ref = e->ref; ref; ref = ref->next)
15293 {
15294 if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
15295 has_pointer = 1;
15296
15297 if (has_pointer
15298 && ref->type == REF_ARRAY
15299 && ref->u.ar.type != AR_FULL)
15300 {
15301 gfc_error ("DATA element %qs at %L is a pointer and so must "
15302 "be a full array", sym->name, where);
15303 return false;
15304 }
15305 }
15306
15307 if (e->rank == 0 || has_pointer)
15308 {
15309 mpz_init_set_ui (size, 1);
15310 ref = NULL;
15311 }
15312 else
15313 {
15314 ref = e->ref;
15315
15316 /* Find the array section reference. */
15317 for (ref = e->ref; ref; ref = ref->next)
15318 {
15319 if (ref->type != REF_ARRAY)
15320 continue;
15321 if (ref->u.ar.type == AR_ELEMENT)
15322 continue;
15323 break;
15324 }
15325 gcc_assert (ref);
15326
15327 /* Set marks according to the reference pattern. */
15328 switch (ref->u.ar.type)
15329 {
15330 case AR_FULL:
15331 mark = AR_FULL;
15332 break;
15333
15334 case AR_SECTION:
15335 ar = &ref->u.ar;
15336 /* Get the start position of array section. */
15337 gfc_get_section_index (ar, section_index, &offset);
15338 mark = AR_SECTION;
15339 break;
15340
15341 default:
15342 gcc_unreachable ();
15343 }
15344
15345 if (!gfc_array_size (e, &size))
15346 {
15347 gfc_error ("Nonconstant array section at %L in DATA statement",
15348 where);
15349 mpz_clear (offset);
15350 return false;
15351 }
15352 }
15353
15354 t = true;
15355
15356 while (mpz_cmp_ui (size, 0) > 0)
15357 {
15358 if (!next_data_value ())
15359 {
15360 gfc_error ("DATA statement at %L has more variables than values",
15361 where);
15362 t = false;
15363 break;
15364 }
15365
15366 t = gfc_check_assign (var->expr, values.vnode->expr, 0);
15367 if (!t)
15368 break;
15369
15370 /* If we have more than one element left in the repeat count,
15371 and we have more than one element left in the target variable,
15372 then create a range assignment. */
15373 /* FIXME: Only done for full arrays for now, since array sections
15374 seem tricky. */
15375 if (mark == AR_FULL && ref && ref->next == NULL
15376 && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
15377 {
15378 mpz_t range;
15379
15380 if (mpz_cmp (size, values.left) >= 0)
15381 {
15382 mpz_init_set (range, values.left);
15383 mpz_sub (size, size, values.left);
15384 mpz_set_ui (values.left, 0);
15385 }
15386 else
15387 {
15388 mpz_init_set (range, size);
15389 mpz_sub (values.left, values.left, size);
15390 mpz_set_ui (size, 0);
15391 }
15392
15393 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15394 offset, &range);
15395
15396 mpz_add (offset, offset, range);
15397 mpz_clear (range);
15398
15399 if (!t)
15400 break;
15401 }
15402
15403 /* Assign initial value to symbol. */
15404 else
15405 {
15406 mpz_sub_ui (values.left, values.left, 1);
15407 mpz_sub_ui (size, size, 1);
15408
15409 t = gfc_assign_data_value (var->expr, values.vnode->expr,
15410 offset, NULL);
15411 if (!t)
15412 break;
15413
15414 if (mark == AR_FULL)
15415 mpz_add_ui (offset, offset, 1);
15416
15417 /* Modify the array section indexes and recalculate the offset
15418 for next element. */
15419 else if (mark == AR_SECTION)
15420 gfc_advance_section (section_index, ar, &offset);
15421 }
15422 }
15423
15424 if (mark == AR_SECTION)
15425 {
15426 for (i = 0; i < ar->dimen; i++)
15427 mpz_clear (section_index[i]);
15428 }
15429
15430 mpz_clear (size);
15431 mpz_clear (offset);
15432
15433 return t;
15434 }
15435
15436
15437 static bool traverse_data_var (gfc_data_variable *, locus *);
15438
15439 /* Iterate over a list of elements in a DATA statement. */
15440
15441 static bool
15442 traverse_data_list (gfc_data_variable *var, locus *where)
15443 {
15444 mpz_t trip;
15445 iterator_stack frame;
15446 gfc_expr *e, *start, *end, *step;
15447 bool retval = true;
15448
15449 mpz_init (frame.value);
15450 mpz_init (trip);
15451
15452 start = gfc_copy_expr (var->iter.start);
15453 end = gfc_copy_expr (var->iter.end);
15454 step = gfc_copy_expr (var->iter.step);
15455
15456 if (!gfc_simplify_expr (start, 1)
15457 || start->expr_type != EXPR_CONSTANT)
15458 {
15459 gfc_error ("start of implied-do loop at %L could not be "
15460 "simplified to a constant value", &start->where);
15461 retval = false;
15462 goto cleanup;
15463 }
15464 if (!gfc_simplify_expr (end, 1)
15465 || end->expr_type != EXPR_CONSTANT)
15466 {
15467 gfc_error ("end of implied-do loop at %L could not be "
15468 "simplified to a constant value", &start->where);
15469 retval = false;
15470 goto cleanup;
15471 }
15472 if (!gfc_simplify_expr (step, 1)
15473 || step->expr_type != EXPR_CONSTANT)
15474 {
15475 gfc_error ("step of implied-do loop at %L could not be "
15476 "simplified to a constant value", &start->where);
15477 retval = false;
15478 goto cleanup;
15479 }
15480
15481 mpz_set (trip, end->value.integer);
15482 mpz_sub (trip, trip, start->value.integer);
15483 mpz_add (trip, trip, step->value.integer);
15484
15485 mpz_div (trip, trip, step->value.integer);
15486
15487 mpz_set (frame.value, start->value.integer);
15488
15489 frame.prev = iter_stack;
15490 frame.variable = var->iter.var->symtree;
15491 iter_stack = &frame;
15492
15493 while (mpz_cmp_ui (trip, 0) > 0)
15494 {
15495 if (!traverse_data_var (var->list, where))
15496 {
15497 retval = false;
15498 goto cleanup;
15499 }
15500
15501 e = gfc_copy_expr (var->expr);
15502 if (!gfc_simplify_expr (e, 1))
15503 {
15504 gfc_free_expr (e);
15505 retval = false;
15506 goto cleanup;
15507 }
15508
15509 mpz_add (frame.value, frame.value, step->value.integer);
15510
15511 mpz_sub_ui (trip, trip, 1);
15512 }
15513
15514 cleanup:
15515 mpz_clear (frame.value);
15516 mpz_clear (trip);
15517
15518 gfc_free_expr (start);
15519 gfc_free_expr (end);
15520 gfc_free_expr (step);
15521
15522 iter_stack = frame.prev;
15523 return retval;
15524 }
15525
15526
15527 /* Type resolve variables in the variable list of a DATA statement. */
15528
15529 static bool
15530 traverse_data_var (gfc_data_variable *var, locus *where)
15531 {
15532 bool t;
15533
15534 for (; var; var = var->next)
15535 {
15536 if (var->expr == NULL)
15537 t = traverse_data_list (var, where);
15538 else
15539 t = check_data_variable (var, where);
15540
15541 if (!t)
15542 return false;
15543 }
15544
15545 return true;
15546 }
15547
15548
15549 /* Resolve the expressions and iterators associated with a data statement.
15550 This is separate from the assignment checking because data lists should
15551 only be resolved once. */
15552
15553 static bool
15554 resolve_data_variables (gfc_data_variable *d)
15555 {
15556 for (; d; d = d->next)
15557 {
15558 if (d->list == NULL)
15559 {
15560 if (!gfc_resolve_expr (d->expr))
15561 return false;
15562 }
15563 else
15564 {
15565 if (!gfc_resolve_iterator (&d->iter, false, true))
15566 return false;
15567
15568 if (!resolve_data_variables (d->list))
15569 return false;
15570 }
15571 }
15572
15573 return true;
15574 }
15575
15576
15577 /* Resolve a single DATA statement. We implement this by storing a pointer to
15578 the value list into static variables, and then recursively traversing the
15579 variables list, expanding iterators and such. */
15580
15581 static void
15582 resolve_data (gfc_data *d)
15583 {
15584
15585 if (!resolve_data_variables (d->var))
15586 return;
15587
15588 values.vnode = d->value;
15589 if (d->value == NULL)
15590 mpz_set_ui (values.left, 0);
15591 else
15592 mpz_set (values.left, d->value->repeat);
15593
15594 if (!traverse_data_var (d->var, &d->where))
15595 return;
15596
15597 /* At this point, we better not have any values left. */
15598
15599 if (next_data_value ())
15600 gfc_error ("DATA statement at %L has more values than variables",
15601 &d->where);
15602 }
15603
15604
15605 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
15606 accessed by host or use association, is a dummy argument to a pure function,
15607 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
15608 is storage associated with any such variable, shall not be used in the
15609 following contexts: (clients of this function). */
15610
15611 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
15612 procedure. Returns zero if assignment is OK, nonzero if there is a
15613 problem. */
15614 int
15615 gfc_impure_variable (gfc_symbol *sym)
15616 {
15617 gfc_symbol *proc;
15618 gfc_namespace *ns;
15619
15620 if (sym->attr.use_assoc || sym->attr.in_common)
15621 return 1;
15622
15623 /* Check if the symbol's ns is inside the pure procedure. */
15624 for (ns = gfc_current_ns; ns; ns = ns->parent)
15625 {
15626 if (ns == sym->ns)
15627 break;
15628 if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
15629 return 1;
15630 }
15631
15632 proc = sym->ns->proc_name;
15633 if (sym->attr.dummy
15634 && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
15635 || proc->attr.function))
15636 return 1;
15637
15638 /* TODO: Sort out what can be storage associated, if anything, and include
15639 it here. In principle equivalences should be scanned but it does not
15640 seem to be possible to storage associate an impure variable this way. */
15641 return 0;
15642 }
15643
15644
15645 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
15646 current namespace is inside a pure procedure. */
15647
15648 int
15649 gfc_pure (gfc_symbol *sym)
15650 {
15651 symbol_attribute attr;
15652 gfc_namespace *ns;
15653
15654 if (sym == NULL)
15655 {
15656 /* Check if the current namespace or one of its parents
15657 belongs to a pure procedure. */
15658 for (ns = gfc_current_ns; ns; ns = ns->parent)
15659 {
15660 sym = ns->proc_name;
15661 if (sym == NULL)
15662 return 0;
15663 attr = sym->attr;
15664 if (attr.flavor == FL_PROCEDURE && attr.pure)
15665 return 1;
15666 }
15667 return 0;
15668 }
15669
15670 attr = sym->attr;
15671
15672 return attr.flavor == FL_PROCEDURE && attr.pure;
15673 }
15674
15675
15676 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
15677 checks if the current namespace is implicitly pure. Note that this
15678 function returns false for a PURE procedure. */
15679
15680 int
15681 gfc_implicit_pure (gfc_symbol *sym)
15682 {
15683 gfc_namespace *ns;
15684
15685 if (sym == NULL)
15686 {
15687 /* Check if the current procedure is implicit_pure. Walk up
15688 the procedure list until we find a procedure. */
15689 for (ns = gfc_current_ns; ns; ns = ns->parent)
15690 {
15691 sym = ns->proc_name;
15692 if (sym == NULL)
15693 return 0;
15694
15695 if (sym->attr.flavor == FL_PROCEDURE)
15696 break;
15697 }
15698 }
15699
15700 return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
15701 && !sym->attr.pure;
15702 }
15703
15704
15705 void
15706 gfc_unset_implicit_pure (gfc_symbol *sym)
15707 {
15708 gfc_namespace *ns;
15709
15710 if (sym == NULL)
15711 {
15712 /* Check if the current procedure is implicit_pure. Walk up
15713 the procedure list until we find a procedure. */
15714 for (ns = gfc_current_ns; ns; ns = ns->parent)
15715 {
15716 sym = ns->proc_name;
15717 if (sym == NULL)
15718 return;
15719
15720 if (sym->attr.flavor == FL_PROCEDURE)
15721 break;
15722 }
15723 }
15724
15725 if (sym->attr.flavor == FL_PROCEDURE)
15726 sym->attr.implicit_pure = 0;
15727 else
15728 sym->attr.pure = 0;
15729 }
15730
15731
15732 /* Test whether the current procedure is elemental or not. */
15733
15734 int
15735 gfc_elemental (gfc_symbol *sym)
15736 {
15737 symbol_attribute attr;
15738
15739 if (sym == NULL)
15740 sym = gfc_current_ns->proc_name;
15741 if (sym == NULL)
15742 return 0;
15743 attr = sym->attr;
15744
15745 return attr.flavor == FL_PROCEDURE && attr.elemental;
15746 }
15747
15748
15749 /* Warn about unused labels. */
15750
15751 static void
15752 warn_unused_fortran_label (gfc_st_label *label)
15753 {
15754 if (label == NULL)
15755 return;
15756
15757 warn_unused_fortran_label (label->left);
15758
15759 if (label->defined == ST_LABEL_UNKNOWN)
15760 return;
15761
15762 switch (label->referenced)
15763 {
15764 case ST_LABEL_UNKNOWN:
15765 gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
15766 label->value, &label->where);
15767 break;
15768
15769 case ST_LABEL_BAD_TARGET:
15770 gfc_warning (OPT_Wunused_label,
15771 "Label %d at %L defined but cannot be used",
15772 label->value, &label->where);
15773 break;
15774
15775 default:
15776 break;
15777 }
15778
15779 warn_unused_fortran_label (label->right);
15780 }
15781
15782
15783 /* Returns the sequence type of a symbol or sequence. */
15784
15785 static seq_type
15786 sequence_type (gfc_typespec ts)
15787 {
15788 seq_type result;
15789 gfc_component *c;
15790
15791 switch (ts.type)
15792 {
15793 case BT_DERIVED:
15794
15795 if (ts.u.derived->components == NULL)
15796 return SEQ_NONDEFAULT;
15797
15798 result = sequence_type (ts.u.derived->components->ts);
15799 for (c = ts.u.derived->components->next; c; c = c->next)
15800 if (sequence_type (c->ts) != result)
15801 return SEQ_MIXED;
15802
15803 return result;
15804
15805 case BT_CHARACTER:
15806 if (ts.kind != gfc_default_character_kind)
15807 return SEQ_NONDEFAULT;
15808
15809 return SEQ_CHARACTER;
15810
15811 case BT_INTEGER:
15812 if (ts.kind != gfc_default_integer_kind)
15813 return SEQ_NONDEFAULT;
15814
15815 return SEQ_NUMERIC;
15816
15817 case BT_REAL:
15818 if (!(ts.kind == gfc_default_real_kind
15819 || ts.kind == gfc_default_double_kind))
15820 return SEQ_NONDEFAULT;
15821
15822 return SEQ_NUMERIC;
15823
15824 case BT_COMPLEX:
15825 if (ts.kind != gfc_default_complex_kind)
15826 return SEQ_NONDEFAULT;
15827
15828 return SEQ_NUMERIC;
15829
15830 case BT_LOGICAL:
15831 if (ts.kind != gfc_default_logical_kind)
15832 return SEQ_NONDEFAULT;
15833
15834 return SEQ_NUMERIC;
15835
15836 default:
15837 return SEQ_NONDEFAULT;
15838 }
15839 }
15840
15841
15842 /* Resolve derived type EQUIVALENCE object. */
15843
15844 static bool
15845 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
15846 {
15847 gfc_component *c = derived->components;
15848
15849 if (!derived)
15850 return true;
15851
15852 /* Shall not be an object of nonsequence derived type. */
15853 if (!derived->attr.sequence)
15854 {
15855 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
15856 "attribute to be an EQUIVALENCE object", sym->name,
15857 &e->where);
15858 return false;
15859 }
15860
15861 /* Shall not have allocatable components. */
15862 if (derived->attr.alloc_comp)
15863 {
15864 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
15865 "components to be an EQUIVALENCE object",sym->name,
15866 &e->where);
15867 return false;
15868 }
15869
15870 if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
15871 {
15872 gfc_error ("Derived type variable %qs at %L with default "
15873 "initialization cannot be in EQUIVALENCE with a variable "
15874 "in COMMON", sym->name, &e->where);
15875 return false;
15876 }
15877
15878 for (; c ; c = c->next)
15879 {
15880 if (gfc_bt_struct (c->ts.type)
15881 && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
15882 return false;
15883
15884 /* Shall not be an object of sequence derived type containing a pointer
15885 in the structure. */
15886 if (c->attr.pointer)
15887 {
15888 gfc_error ("Derived type variable %qs at %L with pointer "
15889 "component(s) cannot be an EQUIVALENCE object",
15890 sym->name, &e->where);
15891 return false;
15892 }
15893 }
15894 return true;
15895 }
15896
15897
15898 /* Resolve equivalence object.
15899 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
15900 an allocatable array, an object of nonsequence derived type, an object of
15901 sequence derived type containing a pointer at any level of component
15902 selection, an automatic object, a function name, an entry name, a result
15903 name, a named constant, a structure component, or a subobject of any of
15904 the preceding objects. A substring shall not have length zero. A
15905 derived type shall not have components with default initialization nor
15906 shall two objects of an equivalence group be initialized.
15907 Either all or none of the objects shall have an protected attribute.
15908 The simple constraints are done in symbol.c(check_conflict) and the rest
15909 are implemented here. */
15910
15911 static void
15912 resolve_equivalence (gfc_equiv *eq)
15913 {
15914 gfc_symbol *sym;
15915 gfc_symbol *first_sym;
15916 gfc_expr *e;
15917 gfc_ref *r;
15918 locus *last_where = NULL;
15919 seq_type eq_type, last_eq_type;
15920 gfc_typespec *last_ts;
15921 int object, cnt_protected;
15922 const char *msg;
15923
15924 last_ts = &eq->expr->symtree->n.sym->ts;
15925
15926 first_sym = eq->expr->symtree->n.sym;
15927
15928 cnt_protected = 0;
15929
15930 for (object = 1; eq; eq = eq->eq, object++)
15931 {
15932 e = eq->expr;
15933
15934 e->ts = e->symtree->n.sym->ts;
15935 /* match_varspec might not know yet if it is seeing
15936 array reference or substring reference, as it doesn't
15937 know the types. */
15938 if (e->ref && e->ref->type == REF_ARRAY)
15939 {
15940 gfc_ref *ref = e->ref;
15941 sym = e->symtree->n.sym;
15942
15943 if (sym->attr.dimension)
15944 {
15945 ref->u.ar.as = sym->as;
15946 ref = ref->next;
15947 }
15948
15949 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
15950 if (e->ts.type == BT_CHARACTER
15951 && ref
15952 && ref->type == REF_ARRAY
15953 && ref->u.ar.dimen == 1
15954 && ref->u.ar.dimen_type[0] == DIMEN_RANGE
15955 && ref->u.ar.stride[0] == NULL)
15956 {
15957 gfc_expr *start = ref->u.ar.start[0];
15958 gfc_expr *end = ref->u.ar.end[0];
15959 void *mem = NULL;
15960
15961 /* Optimize away the (:) reference. */
15962 if (start == NULL && end == NULL)
15963 {
15964 if (e->ref == ref)
15965 e->ref = ref->next;
15966 else
15967 e->ref->next = ref->next;
15968 mem = ref;
15969 }
15970 else
15971 {
15972 ref->type = REF_SUBSTRING;
15973 if (start == NULL)
15974 start = gfc_get_int_expr (gfc_charlen_int_kind,
15975 NULL, 1);
15976 ref->u.ss.start = start;
15977 if (end == NULL && e->ts.u.cl)
15978 end = gfc_copy_expr (e->ts.u.cl->length);
15979 ref->u.ss.end = end;
15980 ref->u.ss.length = e->ts.u.cl;
15981 e->ts.u.cl = NULL;
15982 }
15983 ref = ref->next;
15984 free (mem);
15985 }
15986
15987 /* Any further ref is an error. */
15988 if (ref)
15989 {
15990 gcc_assert (ref->type == REF_ARRAY);
15991 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
15992 &ref->u.ar.where);
15993 continue;
15994 }
15995 }
15996
15997 if (!gfc_resolve_expr (e))
15998 continue;
15999
16000 sym = e->symtree->n.sym;
16001
16002 if (sym->attr.is_protected)
16003 cnt_protected++;
16004 if (cnt_protected > 0 && cnt_protected != object)
16005 {
16006 gfc_error ("Either all or none of the objects in the "
16007 "EQUIVALENCE set at %L shall have the "
16008 "PROTECTED attribute",
16009 &e->where);
16010 break;
16011 }
16012
16013 /* Shall not equivalence common block variables in a PURE procedure. */
16014 if (sym->ns->proc_name
16015 && sym->ns->proc_name->attr.pure
16016 && sym->attr.in_common)
16017 {
16018 /* Need to check for symbols that may have entered the pure
16019 procedure via a USE statement. */
16020 bool saw_sym = false;
16021 if (sym->ns->use_stmts)
16022 {
16023 gfc_use_rename *r;
16024 for (r = sym->ns->use_stmts->rename; r; r = r->next)
16025 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
16026 }
16027 else
16028 saw_sym = true;
16029
16030 if (saw_sym)
16031 gfc_error ("COMMON block member %qs at %L cannot be an "
16032 "EQUIVALENCE object in the pure procedure %qs",
16033 sym->name, &e->where, sym->ns->proc_name->name);
16034 break;
16035 }
16036
16037 /* Shall not be a named constant. */
16038 if (e->expr_type == EXPR_CONSTANT)
16039 {
16040 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
16041 "object", sym->name, &e->where);
16042 continue;
16043 }
16044
16045 if (e->ts.type == BT_DERIVED
16046 && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
16047 continue;
16048
16049 /* Check that the types correspond correctly:
16050 Note 5.28:
16051 A numeric sequence structure may be equivalenced to another sequence
16052 structure, an object of default integer type, default real type, double
16053 precision real type, default logical type such that components of the
16054 structure ultimately only become associated to objects of the same
16055 kind. A character sequence structure may be equivalenced to an object
16056 of default character kind or another character sequence structure.
16057 Other objects may be equivalenced only to objects of the same type and
16058 kind parameters. */
16059
16060 /* Identical types are unconditionally OK. */
16061 if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
16062 goto identical_types;
16063
16064 last_eq_type = sequence_type (*last_ts);
16065 eq_type = sequence_type (sym->ts);
16066
16067 /* Since the pair of objects is not of the same type, mixed or
16068 non-default sequences can be rejected. */
16069
16070 msg = "Sequence %s with mixed components in EQUIVALENCE "
16071 "statement at %L with different type objects";
16072 if ((object ==2
16073 && last_eq_type == SEQ_MIXED
16074 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16075 || (eq_type == SEQ_MIXED
16076 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16077 continue;
16078
16079 msg = "Non-default type object or sequence %s in EQUIVALENCE "
16080 "statement at %L with objects of different type";
16081 if ((object ==2
16082 && last_eq_type == SEQ_NONDEFAULT
16083 && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
16084 || (eq_type == SEQ_NONDEFAULT
16085 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
16086 continue;
16087
16088 msg ="Non-CHARACTER object %qs in default CHARACTER "
16089 "EQUIVALENCE statement at %L";
16090 if (last_eq_type == SEQ_CHARACTER
16091 && eq_type != SEQ_CHARACTER
16092 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16093 continue;
16094
16095 msg ="Non-NUMERIC object %qs in default NUMERIC "
16096 "EQUIVALENCE statement at %L";
16097 if (last_eq_type == SEQ_NUMERIC
16098 && eq_type != SEQ_NUMERIC
16099 && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
16100 continue;
16101
16102 identical_types:
16103 last_ts =&sym->ts;
16104 last_where = &e->where;
16105
16106 if (!e->ref)
16107 continue;
16108
16109 /* Shall not be an automatic array. */
16110 if (e->ref->type == REF_ARRAY
16111 && !gfc_resolve_array_spec (e->ref->u.ar.as, 1))
16112 {
16113 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16114 "an EQUIVALENCE object", sym->name, &e->where);
16115 continue;
16116 }
16117
16118 r = e->ref;
16119 while (r)
16120 {
16121 /* Shall not be a structure component. */
16122 if (r->type == REF_COMPONENT)
16123 {
16124 gfc_error ("Structure component %qs at %L cannot be an "
16125 "EQUIVALENCE object",
16126 r->u.c.component->name, &e->where);
16127 break;
16128 }
16129
16130 /* A substring shall not have length zero. */
16131 if (r->type == REF_SUBSTRING)
16132 {
16133 if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
16134 {
16135 gfc_error ("Substring at %L has length zero",
16136 &r->u.ss.start->where);
16137 break;
16138 }
16139 }
16140 r = r->next;
16141 }
16142 }
16143 }
16144
16145
16146 /* Function called by resolve_fntype to flag other symbol used in the
16147 length type parameter specification of function resuls. */
16148
16149 static bool
16150 flag_fn_result_spec (gfc_expr *expr,
16151 gfc_symbol *sym ATTRIBUTE_UNUSED,
16152 int *f ATTRIBUTE_UNUSED)
16153 {
16154 gfc_namespace *ns;
16155 gfc_symbol *s;
16156
16157 if (expr->expr_type == EXPR_VARIABLE)
16158 {
16159 s = expr->symtree->n.sym;
16160 for (ns = s->ns; ns; ns = ns->parent)
16161 if (!ns->parent)
16162 break;
16163
16164 if (!s->fn_result_spec
16165 && s->attr.flavor == FL_PARAMETER)
16166 {
16167 /* Function contained in a module.... */
16168 if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
16169 {
16170 gfc_symtree *st;
16171 s->fn_result_spec = 1;
16172 /* Make sure that this symbol is translated as a module
16173 variable. */
16174 st = gfc_get_unique_symtree (ns);
16175 st->n.sym = s;
16176 s->refs++;
16177 }
16178 /* ... which is use associated and called. */
16179 else if (s->attr.use_assoc || s->attr.used_in_submodule
16180 ||
16181 /* External function matched with an interface. */
16182 (s->ns->proc_name
16183 && ((s->ns == ns
16184 && s->ns->proc_name->attr.if_source == IFSRC_DECL)
16185 || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
16186 && s->ns->proc_name->attr.function))
16187 s->fn_result_spec = 1;
16188 }
16189 }
16190 return false;
16191 }
16192
16193
16194 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16195
16196 static void
16197 resolve_fntype (gfc_namespace *ns)
16198 {
16199 gfc_entry_list *el;
16200 gfc_symbol *sym;
16201
16202 if (ns->proc_name == NULL || !ns->proc_name->attr.function)
16203 return;
16204
16205 /* If there are any entries, ns->proc_name is the entry master
16206 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16207 if (ns->entries)
16208 sym = ns->entries->sym;
16209 else
16210 sym = ns->proc_name;
16211 if (sym->result == sym
16212 && sym->ts.type == BT_UNKNOWN
16213 && !gfc_set_default_type (sym, 0, NULL)
16214 && !sym->attr.untyped)
16215 {
16216 gfc_error ("Function %qs at %L has no IMPLICIT type",
16217 sym->name, &sym->declared_at);
16218 sym->attr.untyped = 1;
16219 }
16220
16221 if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
16222 && !sym->attr.contained
16223 && !gfc_check_symbol_access (sym->ts.u.derived)
16224 && gfc_check_symbol_access (sym))
16225 {
16226 gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
16227 "%L of PRIVATE type %qs", sym->name,
16228 &sym->declared_at, sym->ts.u.derived->name);
16229 }
16230
16231 if (ns->entries)
16232 for (el = ns->entries->next; el; el = el->next)
16233 {
16234 if (el->sym->result == el->sym
16235 && el->sym->ts.type == BT_UNKNOWN
16236 && !gfc_set_default_type (el->sym, 0, NULL)
16237 && !el->sym->attr.untyped)
16238 {
16239 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16240 el->sym->name, &el->sym->declared_at);
16241 el->sym->attr.untyped = 1;
16242 }
16243 }
16244
16245 if (sym->ts.type == BT_CHARACTER)
16246 gfc_traverse_expr (sym->ts.u.cl->length, NULL, flag_fn_result_spec, 0);
16247 }
16248
16249
16250 /* 12.3.2.1.1 Defined operators. */
16251
16252 static bool
16253 check_uop_procedure (gfc_symbol *sym, locus where)
16254 {
16255 gfc_formal_arglist *formal;
16256
16257 if (!sym->attr.function)
16258 {
16259 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16260 sym->name, &where);
16261 return false;
16262 }
16263
16264 if (sym->ts.type == BT_CHARACTER
16265 && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
16266 && !(sym->result && ((sym->result->ts.u.cl
16267 && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
16268 {
16269 gfc_error ("User operator procedure %qs at %L cannot be assumed "
16270 "character length", sym->name, &where);
16271 return false;
16272 }
16273
16274 formal = gfc_sym_get_dummy_args (sym);
16275 if (!formal || !formal->sym)
16276 {
16277 gfc_error ("User operator procedure %qs at %L must have at least "
16278 "one argument", sym->name, &where);
16279 return false;
16280 }
16281
16282 if (formal->sym->attr.intent != INTENT_IN)
16283 {
16284 gfc_error ("First argument of operator interface at %L must be "
16285 "INTENT(IN)", &where);
16286 return false;
16287 }
16288
16289 if (formal->sym->attr.optional)
16290 {
16291 gfc_error ("First argument of operator interface at %L cannot be "
16292 "optional", &where);
16293 return false;
16294 }
16295
16296 formal = formal->next;
16297 if (!formal || !formal->sym)
16298 return true;
16299
16300 if (formal->sym->attr.intent != INTENT_IN)
16301 {
16302 gfc_error ("Second argument of operator interface at %L must be "
16303 "INTENT(IN)", &where);
16304 return false;
16305 }
16306
16307 if (formal->sym->attr.optional)
16308 {
16309 gfc_error ("Second argument of operator interface at %L cannot be "
16310 "optional", &where);
16311 return false;
16312 }
16313
16314 if (formal->next)
16315 {
16316 gfc_error ("Operator interface at %L must have, at most, two "
16317 "arguments", &where);
16318 return false;
16319 }
16320
16321 return true;
16322 }
16323
16324 static void
16325 gfc_resolve_uops (gfc_symtree *symtree)
16326 {
16327 gfc_interface *itr;
16328
16329 if (symtree == NULL)
16330 return;
16331
16332 gfc_resolve_uops (symtree->left);
16333 gfc_resolve_uops (symtree->right);
16334
16335 for (itr = symtree->n.uop->op; itr; itr = itr->next)
16336 check_uop_procedure (itr->sym, itr->sym->declared_at);
16337 }
16338
16339
16340 /* Examine all of the expressions associated with a program unit,
16341 assign types to all intermediate expressions, make sure that all
16342 assignments are to compatible types and figure out which names
16343 refer to which functions or subroutines. It doesn't check code
16344 block, which is handled by gfc_resolve_code. */
16345
16346 static void
16347 resolve_types (gfc_namespace *ns)
16348 {
16349 gfc_namespace *n;
16350 gfc_charlen *cl;
16351 gfc_data *d;
16352 gfc_equiv *eq;
16353 gfc_namespace* old_ns = gfc_current_ns;
16354
16355 if (ns->types_resolved)
16356 return;
16357
16358 /* Check that all IMPLICIT types are ok. */
16359 if (!ns->seen_implicit_none)
16360 {
16361 unsigned letter;
16362 for (letter = 0; letter != GFC_LETTERS; ++letter)
16363 if (ns->set_flag[letter]
16364 && !resolve_typespec_used (&ns->default_type[letter],
16365 &ns->implicit_loc[letter], NULL))
16366 return;
16367 }
16368
16369 gfc_current_ns = ns;
16370
16371 resolve_entries (ns);
16372
16373 resolve_common_vars (&ns->blank_common, false);
16374 resolve_common_blocks (ns->common_root);
16375
16376 resolve_contained_functions (ns);
16377
16378 if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
16379 && ns->proc_name->attr.if_source == IFSRC_IFBODY)
16380 resolve_formal_arglist (ns->proc_name);
16381
16382 gfc_traverse_ns (ns, resolve_bind_c_derived_types);
16383
16384 for (cl = ns->cl_list; cl; cl = cl->next)
16385 resolve_charlen (cl);
16386
16387 gfc_traverse_ns (ns, resolve_symbol);
16388
16389 resolve_fntype (ns);
16390
16391 for (n = ns->contained; n; n = n->sibling)
16392 {
16393 if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
16394 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
16395 "also be PURE", n->proc_name->name,
16396 &n->proc_name->declared_at);
16397
16398 resolve_types (n);
16399 }
16400
16401 forall_flag = 0;
16402 gfc_do_concurrent_flag = 0;
16403 gfc_check_interfaces (ns);
16404
16405 gfc_traverse_ns (ns, resolve_values);
16406
16407 if (ns->save_all)
16408 gfc_save_all (ns);
16409
16410 iter_stack = NULL;
16411 for (d = ns->data; d; d = d->next)
16412 resolve_data (d);
16413
16414 iter_stack = NULL;
16415 gfc_traverse_ns (ns, gfc_formalize_init_value);
16416
16417 gfc_traverse_ns (ns, gfc_verify_binding_labels);
16418
16419 for (eq = ns->equiv; eq; eq = eq->next)
16420 resolve_equivalence (eq);
16421
16422 /* Warn about unused labels. */
16423 if (warn_unused_label)
16424 warn_unused_fortran_label (ns->st_labels);
16425
16426 gfc_resolve_uops (ns->uop_root);
16427
16428 gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
16429
16430 gfc_resolve_omp_declare_simd (ns);
16431
16432 gfc_resolve_omp_udrs (ns->omp_udr_root);
16433
16434 ns->types_resolved = 1;
16435
16436 gfc_current_ns = old_ns;
16437 }
16438
16439
16440 /* Call gfc_resolve_code recursively. */
16441
16442 static void
16443 resolve_codes (gfc_namespace *ns)
16444 {
16445 gfc_namespace *n;
16446 bitmap_obstack old_obstack;
16447
16448 if (ns->resolved == 1)
16449 return;
16450
16451 for (n = ns->contained; n; n = n->sibling)
16452 resolve_codes (n);
16453
16454 gfc_current_ns = ns;
16455
16456 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
16457 if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
16458 cs_base = NULL;
16459
16460 /* Set to an out of range value. */
16461 current_entry_id = -1;
16462
16463 old_obstack = labels_obstack;
16464 bitmap_obstack_initialize (&labels_obstack);
16465
16466 gfc_resolve_oacc_declare (ns);
16467 gfc_resolve_omp_local_vars (ns);
16468 gfc_resolve_code (ns->code, ns);
16469
16470 bitmap_obstack_release (&labels_obstack);
16471 labels_obstack = old_obstack;
16472 }
16473
16474
16475 /* This function is called after a complete program unit has been compiled.
16476 Its purpose is to examine all of the expressions associated with a program
16477 unit, assign types to all intermediate expressions, make sure that all
16478 assignments are to compatible types and figure out which names refer to
16479 which functions or subroutines. */
16480
16481 void
16482 gfc_resolve (gfc_namespace *ns)
16483 {
16484 gfc_namespace *old_ns;
16485 code_stack *old_cs_base;
16486 struct gfc_omp_saved_state old_omp_state;
16487
16488 if (ns->resolved)
16489 return;
16490
16491 ns->resolved = -1;
16492 old_ns = gfc_current_ns;
16493 old_cs_base = cs_base;
16494
16495 /* As gfc_resolve can be called during resolution of an OpenMP construct
16496 body, we should clear any state associated to it, so that say NS's
16497 DO loops are not interpreted as OpenMP loops. */
16498 if (!ns->construct_entities)
16499 gfc_omp_save_and_clear_state (&old_omp_state);
16500
16501 resolve_types (ns);
16502 component_assignment_level = 0;
16503 resolve_codes (ns);
16504
16505 gfc_current_ns = old_ns;
16506 cs_base = old_cs_base;
16507 ns->resolved = 1;
16508
16509 gfc_run_passes (ns);
16510
16511 if (!ns->construct_entities)
16512 gfc_omp_restore_state (&old_omp_state);
16513 }