1 /* Perform type resolution on the various structures.
2 Copyright (C) 2001-2017 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
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
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
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/>. */
23 #include "coretypes.h"
27 #include "arith.h" /* For gfc_compare_expr(). */
28 #include "dependency.h"
30 #include "target-memory.h" /* for gfc_simplify_transfer */
31 #include "constructor.h"
33 /* Types used in equivalence statements. */
37 SEQ_NONDEFAULT
, SEQ_NUMERIC
, SEQ_CHARACTER
, SEQ_MIXED
40 /* Stack to keep track of the nesting of blocks as we move through the
41 code. See resolve_branch() and gfc_resolve_code(). */
43 typedef struct code_stack
45 struct gfc_code
*head
, *current
;
46 struct code_stack
*prev
;
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
51 bitmap reachable_labels
;
55 static code_stack
*cs_base
= NULL
;
58 /* Nonzero if we're inside a FORALL or DO CONCURRENT block. */
60 static int forall_flag
;
61 int gfc_do_concurrent_flag
;
63 /* True when we are resolving an expression that is an actual argument to
65 static bool actual_arg
= false;
66 /* True when we are resolving an expression that is the first actual argument
68 static bool first_actual_arg
= false;
71 /* Nonzero if we're inside a OpenMP WORKSHARE or PARALLEL WORKSHARE block. */
73 static int omp_workshare_flag
;
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;
79 /* True if we are resolving a specification expression. */
80 static bool specification_expr
= false;
82 /* The id of the last entry seen. */
83 static int current_entry_id
;
85 /* We use bitmaps to determine if a branch target is valid. */
86 static bitmap_obstack labels_obstack
;
88 /* True when simplifying a EXPR_VARIABLE argument to an inquiry function. */
89 static bool inquiry_argument
= false;
93 gfc_is_formal_arg (void)
95 return formal_arg_flag
;
98 /* Is the symbol host associated? */
100 is_sym_host_assoc (gfc_symbol
*sym
, gfc_namespace
*ns
)
102 for (ns
= ns
->parent
; ns
; ns
= ns
->parent
)
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. */
116 resolve_typespec_used (gfc_typespec
* ts
, locus
* where
, const char* name
)
118 if (ts
->type
== BT_DERIVED
&& ts
->u
.derived
->attr
.abstract
)
123 gfc_error ("%qs at %L is of the ABSTRACT type %qs",
124 name
, where
, ts
->u
.derived
->name
);
126 gfc_error ("ABSTRACT type %qs used at %L",
127 ts
->u
.derived
->name
, where
);
138 check_proc_interface (gfc_symbol
*ifc
, locus
*where
)
140 /* Several checks for F08:C1216. */
141 if (ifc
->attr
.procedure
)
143 gfc_error ("Interface %qs at %L is declared "
144 "in a later PROCEDURE statement", ifc
->name
, where
);
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)
156 gfc_error ("Interface %qs at %L may not be generic",
161 if (ifc
->attr
.proc
== PROC_ST_FUNCTION
)
163 gfc_error ("Interface %qs at %L may not be a statement function",
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))
172 gfc_error ("Intrinsic procedure %qs not allowed in "
173 "PROCEDURE statement at %L", ifc
->name
, where
);
176 if (!ifc
->attr
.if_source
&& !ifc
->attr
.intrinsic
&& ifc
->name
[0] != '\0')
178 gfc_error ("Interface %qs at %L must be explicit", ifc
->name
, where
);
185 static void resolve_symbol (gfc_symbol
*sym
);
188 /* Resolve the interface for a PROCEDURE declaration or procedure pointer. */
191 resolve_procedure_interface (gfc_symbol
*sym
)
193 gfc_symbol
*ifc
= sym
->ts
.interface
;
200 gfc_error ("PROCEDURE %qs at %L may not be used as its own interface",
201 sym
->name
, &sym
->declared_at
);
204 if (!check_proc_interface (ifc
, &sym
->declared_at
))
207 if (ifc
->attr
.if_source
|| ifc
->attr
.intrinsic
)
209 /* Resolve interface and copy attributes. */
210 resolve_symbol (ifc
);
211 if (ifc
->attr
.intrinsic
)
212 gfc_resolve_intrinsic (ifc
, &ifc
->declared_at
);
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
);
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
);
233 sym
->ts
.interface
= ifc
;
234 sym
->attr
.function
= ifc
->attr
.function
;
235 sym
->attr
.subroutine
= ifc
->attr
.subroutine
;
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
)
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
))
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.
264 Since a dummy argument cannot be a non-dummy procedure, the only
265 resort left for untyped names are the IMPLICIT types. */
268 resolve_formal_arglist (gfc_symbol
*proc
)
270 gfc_formal_arglist
*f
;
272 bool saved_specification_expr
;
275 if (proc
->result
!= NULL
)
280 if (gfc_elemental (proc
)
281 || sym
->attr
.pointer
|| sym
->attr
.allocatable
282 || (sym
->as
&& sym
->as
->rank
!= 0))
284 proc
->attr
.always_explicit
= 1;
285 sym
->attr
.always_explicit
= 1;
288 formal_arg_flag
= true;
290 for (f
= proc
->formal
; f
; f
= f
->next
)
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
,
303 if (proc
->attr
.function
)
304 gfc_error ("Alternate return specifier in function "
305 "%qs at %L is not allowed", proc
->name
,
309 else if (sym
->attr
.procedure
&& sym
->attr
.if_source
!= IFSRC_DECL
310 && !resolve_procedure_interface (sym
))
313 if (strcmp (proc
->name
, sym
->name
) == 0)
315 gfc_error ("Self-referential argument "
316 "%qs at %L is not allowed", sym
->name
,
321 if (sym
->attr
.if_source
!= IFSRC_UNKNOWN
)
322 resolve_formal_arglist (sym
);
324 if (sym
->attr
.subroutine
|| sym
->attr
.external
)
326 if (sym
->attr
.flavor
== FL_UNKNOWN
)
327 gfc_add_flavor (&sym
->attr
, FL_PROCEDURE
, sym
->name
, &sym
->declared_at
);
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
);
336 as
= sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
337 ? CLASS_DATA (sym
)->as
: sym
->as
;
339 saved_specification_expr
= specification_expr
;
340 specification_expr
= true;
341 gfc_resolve_array_spec (as
, 0);
342 specification_expr
= saved_specification_expr
;
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.
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
)
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);
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
)
369 proc
->attr
.always_explicit
= 1;
371 proc
->result
->attr
.always_explicit
= 1;
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. */
377 if (sym
->attr
.flavor
== FL_UNKNOWN
)
378 gfc_add_flavor (&sym
->attr
, FL_VARIABLE
, sym
->name
, &sym
->declared_at
);
382 if (sym
->attr
.flavor
== FL_PROCEDURE
)
387 gfc_error ("Dummy procedure %qs of PURE procedure at %L must "
388 "also be PURE", sym
->name
, &sym
->declared_at
);
392 else if (!sym
->attr
.pointer
)
394 if (proc
->attr
.function
&& sym
->attr
.intent
!= INTENT_IN
)
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
);
402 gfc_error ("Argument %qs of pure function %qs at %L must "
403 "be INTENT(IN) or VALUE", sym
->name
, proc
->name
,
407 if (proc
->attr
.subroutine
&& sym
->attr
.intent
== INTENT_UNKNOWN
)
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
);
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
,
423 if (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.intent
== INTENT_OUT
)
425 gfc_error ("INTENT(OUT) argument %qs of pure procedure %qs at %L"
426 " may not be polymorphic", sym
->name
, proc
->name
,
432 if (proc
->attr
.implicit_pure
)
434 if (sym
->attr
.flavor
== FL_PROCEDURE
)
437 proc
->attr
.implicit_pure
= 0;
439 else if (!sym
->attr
.pointer
)
441 if (proc
->attr
.function
&& sym
->attr
.intent
!= INTENT_IN
443 proc
->attr
.implicit_pure
= 0;
445 if (proc
->attr
.subroutine
&& sym
->attr
.intent
== INTENT_UNKNOWN
447 proc
->attr
.implicit_pure
= 0;
451 if (gfc_elemental (proc
))
454 if (sym
->attr
.codimension
455 || (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)
456 && CLASS_DATA (sym
)->attr
.codimension
))
458 gfc_error ("Coarray dummy argument %qs at %L to elemental "
459 "procedure", sym
->name
, &sym
->declared_at
);
463 if (sym
->as
|| (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)
464 && CLASS_DATA (sym
)->as
))
466 gfc_error ("Argument %qs of elemental procedure at %L must "
467 "be scalar", sym
->name
, &sym
->declared_at
);
471 if (sym
->attr
.allocatable
472 || (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)
473 && CLASS_DATA (sym
)->attr
.allocatable
))
475 gfc_error ("Argument %qs of elemental procedure at %L cannot "
476 "have the ALLOCATABLE attribute", sym
->name
,
481 if (sym
->attr
.pointer
482 || (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)
483 && CLASS_DATA (sym
)->attr
.class_pointer
))
485 gfc_error ("Argument %qs of elemental procedure at %L cannot "
486 "have the POINTER attribute", sym
->name
,
491 if (sym
->attr
.flavor
== FL_PROCEDURE
)
493 gfc_error ("Dummy procedure %qs not allowed in elemental "
494 "procedure %qs at %L", sym
->name
, proc
->name
,
499 /* Fortran 2008 Corrigendum 1, C1290a. */
500 if (sym
->attr
.intent
== INTENT_UNKNOWN
&& !sym
->attr
.value
)
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
,
510 /* Each dummy shall be specified to be scalar. */
511 if (proc
->attr
.proc
== PROC_ST_FUNCTION
)
515 gfc_error ("Argument %qs of statement function at %L must "
516 "be scalar", sym
->name
, &sym
->declared_at
);
520 if (sym
->ts
.type
== BT_CHARACTER
)
522 gfc_charlen
*cl
= sym
->ts
.u
.cl
;
523 if (!cl
|| !cl
->length
|| cl
->length
->expr_type
!= EXPR_CONSTANT
)
525 gfc_error ("Character-valued argument %qs of statement "
526 "function at %L must have constant length",
527 sym
->name
, &sym
->declared_at
);
533 formal_arg_flag
= false;
537 /* Work function called when searching for symbols that have argument lists
538 associated with them. */
541 find_arglists (gfc_symbol
*sym
)
543 if (sym
->attr
.if_source
== IFSRC_UNKNOWN
|| sym
->ns
!= gfc_current_ns
544 || gfc_fl_struct (sym
->attr
.flavor
) || sym
->attr
.intrinsic
)
547 resolve_formal_arglist (sym
);
551 /* Given a namespace, resolve all formal argument lists within the namespace.
555 resolve_formal_arglists (gfc_namespace
*ns
)
560 gfc_traverse_ns (ns
, find_arglists
);
565 resolve_contained_fntype (gfc_symbol
*sym
, gfc_namespace
*ns
)
569 if (sym
&& sym
->attr
.flavor
== FL_PROCEDURE
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
);
577 /* If this namespace is not a function or an entry master function,
579 if (! sym
|| !(sym
->attr
.function
|| sym
->attr
.flavor
== FL_VARIABLE
)
580 || sym
->attr
.entry_master
)
583 /* Try to find out of what the return type is. */
584 if (sym
->result
->ts
.type
== BT_UNKNOWN
&& sym
->result
->ts
.interface
== NULL
)
586 t
= gfc_set_default_type (sym
->result
, 0, ns
);
588 if (!t
&& !sym
->result
->attr
.untyped
)
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;
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. */
607 if (sym
->result
->ts
.type
== BT_CHARACTER
)
609 gfc_charlen
*cl
= sym
->result
->ts
.u
.cl
;
610 if ((!cl
|| !cl
->length
) && !sym
->result
->ts
.deferred
)
612 /* See if this is a module-procedure and adapt error message
615 gcc_assert (ns
->parent
&& ns
->parent
->proc_name
);
616 module_proc
= (ns
->parent
->proc_name
->attr
.flavor
== FL_MODULE
);
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
);
629 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
630 introduce duplicates. */
633 merge_argument_lists (gfc_symbol
*proc
, gfc_formal_arglist
*new_args
)
635 gfc_formal_arglist
*f
, *new_arglist
;
638 for (; new_args
!= NULL
; new_args
= new_args
->next
)
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
)
644 if (new_sym
== f
->sym
)
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
;
660 /* Flag the arguments that are not present in all entries. */
663 check_argument_lists (gfc_symbol
*proc
, gfc_formal_arglist
*new_args
)
665 gfc_formal_arglist
*f
, *head
;
668 for (f
= proc
->formal
; f
; f
= f
->next
)
673 for (new_args
= head
; new_args
; new_args
= new_args
->next
)
675 if (new_args
->sym
== f
->sym
)
682 f
->sym
->attr
.not_always_present
= 1;
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. */
692 resolve_entries (gfc_namespace
*ns
)
694 gfc_namespace
*old_ns
;
698 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
699 static int master_count
= 0;
701 if (ns
->proc_name
== NULL
)
704 /* No need to do anything if this procedure doesn't have alternate entry
709 /* We may already have resolved alternate entry points. */
710 if (ns
->proc_name
->attr
.entry_master
)
713 /* If this isn't a procedure something has gone horribly wrong. */
714 gcc_assert (ns
->proc_name
->attr
.flavor
== FL_PROCEDURE
);
716 /* Remember the current namespace. */
717 old_ns
= gfc_current_ns
;
721 /* Add the main entry point to the list of entry points. */
722 el
= gfc_get_entry_list ();
723 el
->sym
= ns
->proc_name
;
725 el
->next
= ns
->entries
;
727 ns
->proc_name
->attr
.entry
= 1;
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
)
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
)
747 /* Add an entry statement for it. */
748 c
= gfc_get_code (EXEC_ENTRY
);
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
);
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
);
768 gfc_typespec
*ts
, *fts
;
769 gfc_array_spec
*as
, *fas
;
770 gfc_add_function (&proc
->attr
, proc
->name
, NULL
);
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
)
779 ts
= &el
->sym
->result
->ts
;
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
);
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
))
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
))
804 && ts
->u
.cl
->length
->expr_type
805 != fts
->u
.cl
->length
->expr_type
)
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
);
818 sym
= ns
->entries
->sym
->result
;
819 /* All result types the same. */
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
);
828 /* Otherwise the result will be passed through a union by
830 proc
->attr
.mixed_entry_master
= 1;
831 for (el
= ns
->entries
; el
; el
= el
->next
)
833 sym
= el
->sym
->result
;
834 if (sym
->attr
.dimension
)
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
);
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
);
845 else if (sym
->attr
.pointer
)
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
);
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
);
859 if (ts
->type
== BT_UNKNOWN
)
860 ts
= gfc_get_default_type (sym
->name
, NULL
);
864 if (ts
->kind
== gfc_default_integer_kind
)
868 if (ts
->kind
== gfc_default_real_kind
869 || ts
->kind
== gfc_default_double_kind
)
873 if (ts
->kind
== gfc_default_complex_kind
)
877 if (ts
->kind
== gfc_default_logical_kind
)
881 /* We will issue error elsewhere. */
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
,
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
,
904 proc
->attr
.access
= ACCESS_PRIVATE
;
905 proc
->attr
.entry_master
= 1;
907 /* Merge all the entry point arguments. */
908 for (el
= ns
->entries
; el
; el
= el
->next
)
909 merge_argument_lists (proc
, el
->sym
->formal
);
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
);
916 /* Use the master function for the function body. */
917 ns
->proc_name
= proc
;
919 /* Finalize the new symbols. */
920 gfc_commit_symbols ();
922 /* Restore the original namespace. */
923 gfc_current_ns
= old_ns
;
927 /* Resolve common variables. */
929 resolve_common_vars (gfc_common_head
*common_block
, bool named_common
)
931 gfc_symbol
*csym
= common_block
->head
;
933 for (; csym
; csym
= csym
->common_next
)
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
);
941 if (csym
->value
|| csym
->attr
.data
)
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
,
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
);
958 if (csym
->ts
.type
!= BT_DERIVED
)
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
,
975 if (csym
->attr
.flavor
== FL_UNKNOWN
&& !csym
->attr
.proc_pointer
)
976 gfc_add_flavor (&csym
->attr
, FL_VARIABLE
, csym
->name
, &csym
->declared_at
);
980 /* Resolve common blocks. */
982 resolve_common_blocks (gfc_symtree
*common_root
)
987 if (common_root
== NULL
)
990 if (common_root
->left
)
991 resolve_common_blocks (common_root
->left
);
992 if (common_root
->right
)
993 resolve_common_blocks (common_root
->right
);
995 resolve_common_vars (common_root
->n
.common
, true);
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
1000 if (!common_root
->n
.common
->binding_label
1001 || gfc_notification_std (GFC_STD_F2008
))
1003 gsym
= gfc_find_gsymbol (gfc_gsym_root
,
1004 common_root
->n
.common
->name
);
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
)))
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
,
1020 common_root
->n
.common
->binding_label
1021 ? common_root
->n
.common
->binding_label
: "(blank)",
1022 gsym
->binding_label
? gsym
->binding_label
: "(blank)");
1026 if (gsym
&& gsym
->type
!= GSYM_COMMON
1027 && !common_root
->n
.common
->binding_label
)
1029 gfc_error ("COMMON block %qs at %L uses the same global identifier "
1031 common_root
->n
.common
->name
, &common_root
->n
.common
->where
,
1035 if (gsym
&& gsym
->type
!= GSYM_COMMON
)
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
);
1045 gsym
= gfc_get_gsymbol (common_root
->n
.common
->name
);
1046 gsym
->type
= GSYM_COMMON
;
1047 gsym
->where
= common_root
->n
.common
->where
;
1053 if (common_root
->n
.common
->binding_label
)
1055 gsym
= gfc_find_gsymbol (gfc_gsym_root
,
1056 common_root
->n
.common
->binding_label
);
1057 if (gsym
&& gsym
->type
!= GSYM_COMMON
)
1059 gfc_error ("COMMON block at %L with binding label %s 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
);
1067 gsym
= gfc_get_gsymbol (common_root
->n
.common
->binding_label
);
1068 gsym
->type
= GSYM_COMMON
;
1069 gsym
->where
= common_root
->n
.common
->where
;
1075 gfc_find_symbol (common_root
->name
, gfc_current_ns
, 0, &sym
);
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
);
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
);
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
);
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
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. */
1113 resolve_contained_functions (gfc_namespace
*ns
)
1115 gfc_namespace
*child
;
1118 resolve_formal_arglists (ns
);
1120 for (child
= ns
->contained
; child
; child
= child
->sibling
)
1122 /* Resolve alternate entry points first. */
1123 resolve_entries (child
);
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
);
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. */
1140 static gfc_actual_arglist
*param_list
, *param_tail
, *param
;
1143 get_pdt_spec_expr (gfc_component
*c
, gfc_expr
*expr
)
1145 param
= gfc_get_actual_arglist ();
1147 param_list
= param_tail
= param
;
1150 param_tail
->next
= param
;
1151 param_tail
= param_tail
->next
;
1154 param_tail
->name
= c
->name
;
1156 param_tail
->expr
= gfc_copy_expr (expr
);
1157 else if (c
->initializer
)
1158 param_tail
->expr
= gfc_copy_expr (c
->initializer
);
1161 param_tail
->spec_type
= SPEC_ASSUMED
;
1162 if (c
->attr
.pdt_kind
)
1164 gfc_error ("The KIND parameter %qs in the PDT constructor "
1165 "at %C has no value", param
->name
);
1174 get_pdt_constructor (gfc_expr
*expr
, gfc_constructor
**constr
,
1175 gfc_symbol
*derived
)
1177 gfc_constructor
*cons
;
1178 gfc_component
*comp
;
1181 if (expr
&& expr
->expr_type
== EXPR_STRUCTURE
)
1182 cons
= gfc_constructor_first (expr
->value
.constructor
);
1187 comp
= derived
->components
;
1189 for (; comp
&& cons
; comp
= comp
->next
, cons
= gfc_constructor_next (cons
))
1192 && cons
->expr
->expr_type
== EXPR_STRUCTURE
1193 && comp
->ts
.type
== BT_DERIVED
)
1195 t
= get_pdt_constructor (cons
->expr
, NULL
, comp
->ts
.u
.derived
);
1199 else if (comp
->ts
.type
== BT_DERIVED
)
1201 t
= get_pdt_constructor (NULL
, &cons
, comp
->ts
.u
.derived
);
1205 else if ((comp
->attr
.pdt_kind
|| comp
->attr
.pdt_len
)
1206 && derived
->attr
.pdt_template
)
1208 t
= get_pdt_spec_expr (comp
, cons
->expr
);
1217 static bool resolve_fl_derived0 (gfc_symbol
*sym
);
1218 static bool resolve_fl_struct (gfc_symbol
*sym
);
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. */
1226 resolve_structure_cons (gfc_expr
*expr
, int init
)
1228 gfc_constructor
*cons
;
1229 gfc_component
*comp
;
1235 if (expr
->ts
.type
== BT_DERIVED
|| expr
->ts
.type
== BT_UNION
)
1237 if (expr
->ts
.u
.derived
->attr
.flavor
== FL_DERIVED
)
1238 resolve_fl_derived0 (expr
->ts
.u
.derived
);
1240 resolve_fl_struct (expr
->ts
.u
.derived
);
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
)
1247 t
= get_pdt_constructor (expr
, NULL
, expr
->ts
.u
.derived
);
1250 gfc_get_pdt_instance (param_list
, &expr
->ts
.u
.derived
, NULL
);
1252 expr
->param_list
= gfc_copy_actual_arglist (param_list
);
1255 gfc_free_actual_arglist (param_list
);
1257 if (!expr
->ts
.u
.derived
->attr
.pdt_type
)
1262 cons
= gfc_constructor_first (expr
->value
.constructor
);
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
1268 comp
= expr
->ref
->u
.c
.sym
->components
;
1270 comp
= expr
->ts
.u
.derived
->components
;
1272 for (; comp
&& cons
; comp
= comp
->next
, cons
= gfc_constructor_next (cons
))
1279 /* Unions use an EXPR_NULL contrived expression to tell the translation
1280 phase to generate an initializer of the appropriate length.
1282 if (cons
->expr
->ts
.type
== BT_UNION
&& cons
->expr
->expr_type
== EXPR_NULL
)
1285 if (!gfc_resolve_expr (cons
->expr
))
1291 rank
= comp
->as
? comp
->as
->rank
: 0;
1292 if (comp
->ts
.type
== BT_CLASS
&& CLASS_DATA (comp
)->as
)
1293 rank
= CLASS_DATA (comp
)->as
->rank
;
1295 if (cons
->expr
->expr_type
!= EXPR_NULL
&& rank
!= cons
->expr
->rank
1296 && (comp
->attr
.allocatable
|| cons
->expr
->rank
))
1298 gfc_error ("The rank of the element in the structure "
1299 "constructor at %L does not match that of the "
1300 "component (%d/%d)", &cons
->expr
->where
,
1301 cons
->expr
->rank
, rank
);
1305 /* If we don't have the right type, try to convert it. */
1307 if (!comp
->attr
.proc_pointer
&&
1308 !gfc_compare_types (&cons
->expr
->ts
, &comp
->ts
))
1310 if (strcmp (comp
->name
, "_extends") == 0)
1312 /* Can afford to be brutal with the _extends initializer.
1313 The derived type can get lost because it is PRIVATE
1314 but it is not usage constrained by the standard. */
1315 cons
->expr
->ts
= comp
->ts
;
1317 else if (comp
->attr
.pointer
&& cons
->expr
->ts
.type
!= BT_UNKNOWN
)
1319 gfc_error ("The element in the structure constructor at %L, "
1320 "for pointer component %qs, is %s but should be %s",
1321 &cons
->expr
->where
, comp
->name
,
1322 gfc_basic_typename (cons
->expr
->ts
.type
),
1323 gfc_basic_typename (comp
->ts
.type
));
1328 bool t2
= gfc_convert_type (cons
->expr
, &comp
->ts
, 1);
1334 /* For strings, the length of the constructor should be the same as
1335 the one of the structure, ensure this if the lengths are known at
1336 compile time and when we are dealing with PARAMETER or structure
1338 if (cons
->expr
->ts
.type
== BT_CHARACTER
&& comp
->ts
.u
.cl
1339 && comp
->ts
.u
.cl
->length
1340 && comp
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
1341 && cons
->expr
->ts
.u
.cl
&& cons
->expr
->ts
.u
.cl
->length
1342 && cons
->expr
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
1343 && cons
->expr
->rank
!= 0
1344 && mpz_cmp (cons
->expr
->ts
.u
.cl
->length
->value
.integer
,
1345 comp
->ts
.u
.cl
->length
->value
.integer
) != 0)
1347 if (cons
->expr
->expr_type
== EXPR_VARIABLE
1348 && cons
->expr
->symtree
->n
.sym
->attr
.flavor
== FL_PARAMETER
)
1350 /* Wrap the parameter in an array constructor (EXPR_ARRAY)
1351 to make use of the gfc_resolve_character_array_constructor
1352 machinery. The expression is later simplified away to
1353 an array of string literals. */
1354 gfc_expr
*para
= cons
->expr
;
1355 cons
->expr
= gfc_get_expr ();
1356 cons
->expr
->ts
= para
->ts
;
1357 cons
->expr
->where
= para
->where
;
1358 cons
->expr
->expr_type
= EXPR_ARRAY
;
1359 cons
->expr
->rank
= para
->rank
;
1360 cons
->expr
->shape
= gfc_copy_shape (para
->shape
, para
->rank
);
1361 gfc_constructor_append_expr (&cons
->expr
->value
.constructor
,
1362 para
, &cons
->expr
->where
);
1365 if (cons
->expr
->expr_type
== EXPR_ARRAY
)
1367 /* Rely on the cleanup of the namespace to deal correctly with
1368 the old charlen. (There was a block here that attempted to
1369 remove the charlen but broke the chain in so doing.) */
1370 cons
->expr
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
1371 cons
->expr
->ts
.u
.cl
->length_from_typespec
= true;
1372 cons
->expr
->ts
.u
.cl
->length
= gfc_copy_expr (comp
->ts
.u
.cl
->length
);
1373 gfc_resolve_character_array_constructor (cons
->expr
);
1377 if (cons
->expr
->expr_type
== EXPR_NULL
1378 && !(comp
->attr
.pointer
|| comp
->attr
.allocatable
1379 || comp
->attr
.proc_pointer
|| comp
->ts
.f90_type
== BT_VOID
1380 || (comp
->ts
.type
== BT_CLASS
1381 && (CLASS_DATA (comp
)->attr
.class_pointer
1382 || CLASS_DATA (comp
)->attr
.allocatable
))))
1385 gfc_error ("The NULL in the structure constructor at %L is "
1386 "being applied to component %qs, which is neither "
1387 "a POINTER nor ALLOCATABLE", &cons
->expr
->where
,
1391 if (comp
->attr
.proc_pointer
&& comp
->ts
.interface
)
1393 /* Check procedure pointer interface. */
1394 gfc_symbol
*s2
= NULL
;
1399 c2
= gfc_get_proc_ptr_comp (cons
->expr
);
1402 s2
= c2
->ts
.interface
;
1405 else if (cons
->expr
->expr_type
== EXPR_FUNCTION
)
1407 s2
= cons
->expr
->symtree
->n
.sym
->result
;
1408 name
= cons
->expr
->symtree
->n
.sym
->result
->name
;
1410 else if (cons
->expr
->expr_type
!= EXPR_NULL
)
1412 s2
= cons
->expr
->symtree
->n
.sym
;
1413 name
= cons
->expr
->symtree
->n
.sym
->name
;
1416 if (s2
&& !gfc_compare_interfaces (comp
->ts
.interface
, s2
, name
, 0, 1,
1417 err
, sizeof (err
), NULL
, NULL
))
1419 gfc_error_opt (OPT_Wargument_mismatch
,
1420 "Interface mismatch for procedure-pointer "
1421 "component %qs in structure constructor at %L:"
1422 " %s", comp
->name
, &cons
->expr
->where
, err
);
1427 if (!comp
->attr
.pointer
|| comp
->attr
.proc_pointer
1428 || cons
->expr
->expr_type
== EXPR_NULL
)
1431 a
= gfc_expr_attr (cons
->expr
);
1433 if (!a
.pointer
&& !a
.target
)
1436 gfc_error ("The element in the structure constructor at %L, "
1437 "for pointer component %qs should be a POINTER or "
1438 "a TARGET", &cons
->expr
->where
, comp
->name
);
1443 /* F08:C461. Additional checks for pointer initialization. */
1447 gfc_error ("Pointer initialization target at %L "
1448 "must not be ALLOCATABLE", &cons
->expr
->where
);
1453 gfc_error ("Pointer initialization target at %L "
1454 "must have the SAVE attribute", &cons
->expr
->where
);
1458 /* F2003, C1272 (3). */
1459 bool impure
= cons
->expr
->expr_type
== EXPR_VARIABLE
1460 && (gfc_impure_variable (cons
->expr
->symtree
->n
.sym
)
1461 || gfc_is_coindexed (cons
->expr
));
1462 if (impure
&& gfc_pure (NULL
))
1465 gfc_error ("Invalid expression in the structure constructor for "
1466 "pointer component %qs at %L in PURE procedure",
1467 comp
->name
, &cons
->expr
->where
);
1471 gfc_unset_implicit_pure (NULL
);
1478 /****************** Expression name resolution ******************/
1480 /* Returns 0 if a symbol was not declared with a type or
1481 attribute declaration statement, nonzero otherwise. */
1484 was_declared (gfc_symbol
*sym
)
1490 if (!a
.implicit_type
&& sym
->ts
.type
!= BT_UNKNOWN
)
1493 if (a
.allocatable
|| a
.dimension
|| a
.dummy
|| a
.external
|| a
.intrinsic
1494 || a
.optional
|| a
.pointer
|| a
.save
|| a
.target
|| a
.volatile_
1495 || a
.value
|| a
.access
!= ACCESS_UNKNOWN
|| a
.intent
!= INTENT_UNKNOWN
1496 || a
.asynchronous
|| a
.codimension
)
1503 /* Determine if a symbol is generic or not. */
1506 generic_sym (gfc_symbol
*sym
)
1510 if (sym
->attr
.generic
||
1511 (sym
->attr
.intrinsic
&& gfc_generic_intrinsic (sym
->name
)))
1514 if (was_declared (sym
) || sym
->ns
->parent
== NULL
)
1517 gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &s
);
1524 return generic_sym (s
);
1531 /* Determine if a symbol is specific or not. */
1534 specific_sym (gfc_symbol
*sym
)
1538 if (sym
->attr
.if_source
== IFSRC_IFBODY
1539 || sym
->attr
.proc
== PROC_MODULE
1540 || sym
->attr
.proc
== PROC_INTERNAL
1541 || sym
->attr
.proc
== PROC_ST_FUNCTION
1542 || (sym
->attr
.intrinsic
&& gfc_specific_intrinsic (sym
->name
))
1543 || sym
->attr
.external
)
1546 if (was_declared (sym
) || sym
->ns
->parent
== NULL
)
1549 gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &s
);
1551 return (s
== NULL
) ? 0 : specific_sym (s
);
1555 /* Figure out if the procedure is specific, generic or unknown. */
1558 { PTYPE_GENERIC
= 1, PTYPE_SPECIFIC
, PTYPE_UNKNOWN
};
1561 procedure_kind (gfc_symbol
*sym
)
1563 if (generic_sym (sym
))
1564 return PTYPE_GENERIC
;
1566 if (specific_sym (sym
))
1567 return PTYPE_SPECIFIC
;
1569 return PTYPE_UNKNOWN
;
1572 /* Check references to assumed size arrays. The flag need_full_assumed_size
1573 is nonzero when matching actual arguments. */
1575 static int need_full_assumed_size
= 0;
1578 check_assumed_size_reference (gfc_symbol
*sym
, gfc_expr
*e
)
1580 if (need_full_assumed_size
|| !(sym
->as
&& sym
->as
->type
== AS_ASSUMED_SIZE
))
1583 /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1584 What should it be? */
1585 if (e
->ref
&& (e
->ref
->u
.ar
.end
[e
->ref
->u
.ar
.as
->rank
- 1] == NULL
)
1586 && (e
->ref
->u
.ar
.as
->type
== AS_ASSUMED_SIZE
)
1587 && (e
->ref
->u
.ar
.type
== AR_FULL
))
1589 gfc_error ("The upper bound in the last dimension must "
1590 "appear in the reference to the assumed size "
1591 "array %qs at %L", sym
->name
, &e
->where
);
1598 /* Look for bad assumed size array references in argument expressions
1599 of elemental and array valued intrinsic procedures. Since this is
1600 called from procedure resolution functions, it only recurses at
1604 resolve_assumed_size_actual (gfc_expr
*e
)
1609 switch (e
->expr_type
)
1612 if (e
->symtree
&& check_assumed_size_reference (e
->symtree
->n
.sym
, e
))
1617 if (resolve_assumed_size_actual (e
->value
.op
.op1
)
1618 || resolve_assumed_size_actual (e
->value
.op
.op2
))
1629 /* Check a generic procedure, passed as an actual argument, to see if
1630 there is a matching specific name. If none, it is an error, and if
1631 more than one, the reference is ambiguous. */
1633 count_specific_procs (gfc_expr
*e
)
1640 sym
= e
->symtree
->n
.sym
;
1642 for (p
= sym
->generic
; p
; p
= p
->next
)
1643 if (strcmp (sym
->name
, p
->sym
->name
) == 0)
1645 e
->symtree
= gfc_find_symtree (p
->sym
->ns
->sym_root
,
1651 gfc_error ("%qs at %L is ambiguous", e
->symtree
->n
.sym
->name
,
1655 gfc_error ("GENERIC procedure %qs is not allowed as an actual "
1656 "argument at %L", sym
->name
, &e
->where
);
1662 /* See if a call to sym could possibly be a not allowed RECURSION because of
1663 a missing RECURSIVE declaration. This means that either sym is the current
1664 context itself, or sym is the parent of a contained procedure calling its
1665 non-RECURSIVE containing procedure.
1666 This also works if sym is an ENTRY. */
1669 is_illegal_recursion (gfc_symbol
* sym
, gfc_namespace
* context
)
1671 gfc_symbol
* proc_sym
;
1672 gfc_symbol
* context_proc
;
1673 gfc_namespace
* real_context
;
1675 if (sym
->attr
.flavor
== FL_PROGRAM
1676 || gfc_fl_struct (sym
->attr
.flavor
))
1679 gcc_assert (sym
->attr
.flavor
== FL_PROCEDURE
);
1681 /* If we've got an ENTRY, find real procedure. */
1682 if (sym
->attr
.entry
&& sym
->ns
->entries
)
1683 proc_sym
= sym
->ns
->entries
->sym
;
1687 /* If sym is RECURSIVE, all is well of course. */
1688 if (proc_sym
->attr
.recursive
|| flag_recursive
)
1691 /* Find the context procedure's "real" symbol if it has entries.
1692 We look for a procedure symbol, so recurse on the parents if we don't
1693 find one (like in case of a BLOCK construct). */
1694 for (real_context
= context
; ; real_context
= real_context
->parent
)
1696 /* We should find something, eventually! */
1697 gcc_assert (real_context
);
1699 context_proc
= (real_context
->entries
? real_context
->entries
->sym
1700 : real_context
->proc_name
);
1702 /* In some special cases, there may not be a proc_name, like for this
1704 real(bad_kind()) function foo () ...
1705 when checking the call to bad_kind ().
1706 In these cases, we simply return here and assume that the
1711 if (context_proc
->attr
.flavor
!= FL_LABEL
)
1715 /* A call from sym's body to itself is recursion, of course. */
1716 if (context_proc
== proc_sym
)
1719 /* The same is true if context is a contained procedure and sym the
1721 if (context_proc
->attr
.contained
)
1723 gfc_symbol
* parent_proc
;
1725 gcc_assert (context
->parent
);
1726 parent_proc
= (context
->parent
->entries
? context
->parent
->entries
->sym
1727 : context
->parent
->proc_name
);
1729 if (parent_proc
== proc_sym
)
1737 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1738 its typespec and formal argument list. */
1741 gfc_resolve_intrinsic (gfc_symbol
*sym
, locus
*loc
)
1743 gfc_intrinsic_sym
* isym
= NULL
;
1749 /* Already resolved. */
1750 if (sym
->from_intmod
&& sym
->ts
.type
!= BT_UNKNOWN
)
1753 /* We already know this one is an intrinsic, so we don't call
1754 gfc_is_intrinsic for full checking but rather use gfc_find_function and
1755 gfc_find_subroutine directly to check whether it is a function or
1758 if (sym
->intmod_sym_id
&& sym
->attr
.subroutine
)
1760 gfc_isym_id id
= gfc_isym_id_by_intmod_sym (sym
);
1761 isym
= gfc_intrinsic_subroutine_by_id (id
);
1763 else if (sym
->intmod_sym_id
)
1765 gfc_isym_id id
= gfc_isym_id_by_intmod_sym (sym
);
1766 isym
= gfc_intrinsic_function_by_id (id
);
1768 else if (!sym
->attr
.subroutine
)
1769 isym
= gfc_find_function (sym
->name
);
1771 if (isym
&& !sym
->attr
.subroutine
)
1773 if (sym
->ts
.type
!= BT_UNKNOWN
&& warn_surprising
1774 && !sym
->attr
.implicit_type
)
1775 gfc_warning (OPT_Wsurprising
,
1776 "Type specified for intrinsic function %qs at %L is"
1777 " ignored", sym
->name
, &sym
->declared_at
);
1779 if (!sym
->attr
.function
&&
1780 !gfc_add_function(&sym
->attr
, sym
->name
, loc
))
1785 else if (isym
|| (isym
= gfc_find_subroutine (sym
->name
)))
1787 if (sym
->ts
.type
!= BT_UNKNOWN
&& !sym
->attr
.implicit_type
)
1789 gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
1790 " specifier", sym
->name
, &sym
->declared_at
);
1794 if (!sym
->attr
.subroutine
&&
1795 !gfc_add_subroutine(&sym
->attr
, sym
->name
, loc
))
1800 gfc_error ("%qs declared INTRINSIC at %L does not exist", sym
->name
,
1805 gfc_copy_formal_args_intr (sym
, isym
, NULL
);
1807 sym
->attr
.pure
= isym
->pure
;
1808 sym
->attr
.elemental
= isym
->elemental
;
1810 /* Check it is actually available in the standard settings. */
1811 if (!gfc_check_intrinsic_standard (isym
, &symstd
, false, sym
->declared_at
))
1813 gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
1814 "available in the current standard settings but %s. Use "
1815 "an appropriate %<-std=*%> option or enable "
1816 "%<-fall-intrinsics%> in order to use it.",
1817 sym
->name
, &sym
->declared_at
, symstd
);
1825 /* Resolve a procedure expression, like passing it to a called procedure or as
1826 RHS for a procedure pointer assignment. */
1829 resolve_procedure_expression (gfc_expr
* expr
)
1833 if (expr
->expr_type
!= EXPR_VARIABLE
)
1835 gcc_assert (expr
->symtree
);
1837 sym
= expr
->symtree
->n
.sym
;
1839 if (sym
->attr
.intrinsic
)
1840 gfc_resolve_intrinsic (sym
, &expr
->where
);
1842 if (sym
->attr
.flavor
!= FL_PROCEDURE
1843 || (sym
->attr
.function
&& sym
->result
== sym
))
1846 /* A non-RECURSIVE procedure that is used as procedure expression within its
1847 own body is in danger of being called recursively. */
1848 if (is_illegal_recursion (sym
, gfc_current_ns
))
1849 gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
1850 " itself recursively. Declare it RECURSIVE or use"
1851 " %<-frecursive%>", sym
->name
, &expr
->where
);
1857 /* Resolve an actual argument list. Most of the time, this is just
1858 resolving the expressions in the list.
1859 The exception is that we sometimes have to decide whether arguments
1860 that look like procedure arguments are really simple variable
1864 resolve_actual_arglist (gfc_actual_arglist
*arg
, procedure_type ptype
,
1865 bool no_formal_args
)
1868 gfc_symtree
*parent_st
;
1870 gfc_component
*comp
;
1871 int save_need_full_assumed_size
;
1872 bool return_value
= false;
1873 bool actual_arg_sav
= actual_arg
, first_actual_arg_sav
= first_actual_arg
;
1876 first_actual_arg
= true;
1878 for (; arg
; arg
= arg
->next
)
1883 /* Check the label is a valid branching target. */
1886 if (arg
->label
->defined
== ST_LABEL_UNKNOWN
)
1888 gfc_error ("Label %d referenced at %L is never defined",
1889 arg
->label
->value
, &arg
->label
->where
);
1893 first_actual_arg
= false;
1897 if (e
->expr_type
== EXPR_VARIABLE
1898 && e
->symtree
->n
.sym
->attr
.generic
1900 && count_specific_procs (e
) != 1)
1903 if (e
->ts
.type
!= BT_PROCEDURE
)
1905 save_need_full_assumed_size
= need_full_assumed_size
;
1906 if (e
->expr_type
!= EXPR_VARIABLE
)
1907 need_full_assumed_size
= 0;
1908 if (!gfc_resolve_expr (e
))
1910 need_full_assumed_size
= save_need_full_assumed_size
;
1914 /* See if the expression node should really be a variable reference. */
1916 sym
= e
->symtree
->n
.sym
;
1918 if (sym
->attr
.flavor
== FL_PROCEDURE
1919 || sym
->attr
.intrinsic
1920 || sym
->attr
.external
)
1924 /* If a procedure is not already determined to be something else
1925 check if it is intrinsic. */
1926 if (gfc_is_intrinsic (sym
, sym
->attr
.subroutine
, e
->where
))
1927 sym
->attr
.intrinsic
= 1;
1929 if (sym
->attr
.proc
== PROC_ST_FUNCTION
)
1931 gfc_error ("Statement function %qs at %L is not allowed as an "
1932 "actual argument", sym
->name
, &e
->where
);
1935 actual_ok
= gfc_intrinsic_actual_ok (sym
->name
,
1936 sym
->attr
.subroutine
);
1937 if (sym
->attr
.intrinsic
&& actual_ok
== 0)
1939 gfc_error ("Intrinsic %qs at %L is not allowed as an "
1940 "actual argument", sym
->name
, &e
->where
);
1943 if (sym
->attr
.contained
&& !sym
->attr
.use_assoc
1944 && sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
)
1946 if (!gfc_notify_std (GFC_STD_F2008
, "Internal procedure %qs is"
1947 " used as actual argument at %L",
1948 sym
->name
, &e
->where
))
1952 if (sym
->attr
.elemental
&& !sym
->attr
.intrinsic
)
1954 gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
1955 "allowed as an actual argument at %L", sym
->name
,
1959 /* Check if a generic interface has a specific procedure
1960 with the same name before emitting an error. */
1961 if (sym
->attr
.generic
&& count_specific_procs (e
) != 1)
1964 /* Just in case a specific was found for the expression. */
1965 sym
= e
->symtree
->n
.sym
;
1967 /* If the symbol is the function that names the current (or
1968 parent) scope, then we really have a variable reference. */
1970 if (gfc_is_function_return_value (sym
, sym
->ns
))
1973 /* If all else fails, see if we have a specific intrinsic. */
1974 if (sym
->ts
.type
== BT_UNKNOWN
&& sym
->attr
.intrinsic
)
1976 gfc_intrinsic_sym
*isym
;
1978 isym
= gfc_find_function (sym
->name
);
1979 if (isym
== NULL
|| !isym
->specific
)
1981 gfc_error ("Unable to find a specific INTRINSIC procedure "
1982 "for the reference %qs at %L", sym
->name
,
1987 sym
->attr
.intrinsic
= 1;
1988 sym
->attr
.function
= 1;
1991 if (!gfc_resolve_expr (e
))
1996 /* See if the name is a module procedure in a parent unit. */
1998 if (was_declared (sym
) || sym
->ns
->parent
== NULL
)
2001 if (gfc_find_sym_tree (sym
->name
, sym
->ns
->parent
, 1, &parent_st
))
2003 gfc_error ("Symbol %qs at %L is ambiguous", sym
->name
, &e
->where
);
2007 if (parent_st
== NULL
)
2010 sym
= parent_st
->n
.sym
;
2011 e
->symtree
= parent_st
; /* Point to the right thing. */
2013 if (sym
->attr
.flavor
== FL_PROCEDURE
2014 || sym
->attr
.intrinsic
2015 || sym
->attr
.external
)
2017 if (!gfc_resolve_expr (e
))
2023 e
->expr_type
= EXPR_VARIABLE
;
2025 if ((sym
->as
!= NULL
&& sym
->ts
.type
!= BT_CLASS
)
2026 || (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
2027 && CLASS_DATA (sym
)->as
))
2029 e
->rank
= sym
->ts
.type
== BT_CLASS
2030 ? CLASS_DATA (sym
)->as
->rank
: sym
->as
->rank
;
2031 e
->ref
= gfc_get_ref ();
2032 e
->ref
->type
= REF_ARRAY
;
2033 e
->ref
->u
.ar
.type
= AR_FULL
;
2034 e
->ref
->u
.ar
.as
= sym
->ts
.type
== BT_CLASS
2035 ? CLASS_DATA (sym
)->as
: sym
->as
;
2038 /* Expressions are assigned a default ts.type of BT_PROCEDURE in
2039 primary.c (match_actual_arg). If above code determines that it
2040 is a variable instead, it needs to be resolved as it was not
2041 done at the beginning of this function. */
2042 save_need_full_assumed_size
= need_full_assumed_size
;
2043 if (e
->expr_type
!= EXPR_VARIABLE
)
2044 need_full_assumed_size
= 0;
2045 if (!gfc_resolve_expr (e
))
2047 need_full_assumed_size
= save_need_full_assumed_size
;
2050 /* Check argument list functions %VAL, %LOC and %REF. There is
2051 nothing to do for %REF. */
2052 if (arg
->name
&& arg
->name
[0] == '%')
2054 if (strncmp ("%VAL", arg
->name
, 4) == 0)
2056 if (e
->ts
.type
== BT_CHARACTER
|| e
->ts
.type
== BT_DERIVED
)
2058 gfc_error ("By-value argument at %L is not of numeric "
2065 gfc_error ("By-value argument at %L cannot be an array or "
2066 "an array section", &e
->where
);
2070 /* Intrinsics are still PROC_UNKNOWN here. However,
2071 since same file external procedures are not resolvable
2072 in gfortran, it is a good deal easier to leave them to
2074 if (ptype
!= PROC_UNKNOWN
2075 && ptype
!= PROC_DUMMY
2076 && ptype
!= PROC_EXTERNAL
2077 && ptype
!= PROC_MODULE
)
2079 gfc_error ("By-value argument at %L is not allowed "
2080 "in this context", &e
->where
);
2085 /* Statement functions have already been excluded above. */
2086 else if (strncmp ("%LOC", arg
->name
, 4) == 0
2087 && e
->ts
.type
== BT_PROCEDURE
)
2089 if (e
->symtree
->n
.sym
->attr
.proc
== PROC_INTERNAL
)
2091 gfc_error ("Passing internal procedure at %L by location "
2092 "not allowed", &e
->where
);
2098 comp
= gfc_get_proc_ptr_comp(e
);
2099 if (e
->expr_type
== EXPR_VARIABLE
2100 && comp
&& comp
->attr
.elemental
)
2102 gfc_error ("ELEMENTAL procedure pointer component %qs is not "
2103 "allowed as an actual argument at %L", comp
->name
,
2107 /* Fortran 2008, C1237. */
2108 if (e
->expr_type
== EXPR_VARIABLE
&& gfc_is_coindexed (e
)
2109 && gfc_has_ultimate_pointer (e
))
2111 gfc_error ("Coindexed actual argument at %L with ultimate pointer "
2112 "component", &e
->where
);
2116 first_actual_arg
= false;
2119 return_value
= true;
2122 actual_arg
= actual_arg_sav
;
2123 first_actual_arg
= first_actual_arg_sav
;
2125 return return_value
;
2129 /* Do the checks of the actual argument list that are specific to elemental
2130 procedures. If called with c == NULL, we have a function, otherwise if
2131 expr == NULL, we have a subroutine. */
2134 resolve_elemental_actual (gfc_expr
*expr
, gfc_code
*c
)
2136 gfc_actual_arglist
*arg0
;
2137 gfc_actual_arglist
*arg
;
2138 gfc_symbol
*esym
= NULL
;
2139 gfc_intrinsic_sym
*isym
= NULL
;
2141 gfc_intrinsic_arg
*iformal
= NULL
;
2142 gfc_formal_arglist
*eformal
= NULL
;
2143 bool formal_optional
= false;
2144 bool set_by_optional
= false;
2148 /* Is this an elemental procedure? */
2149 if (expr
&& expr
->value
.function
.actual
!= NULL
)
2151 if (expr
->value
.function
.esym
!= NULL
2152 && expr
->value
.function
.esym
->attr
.elemental
)
2154 arg0
= expr
->value
.function
.actual
;
2155 esym
= expr
->value
.function
.esym
;
2157 else if (expr
->value
.function
.isym
!= NULL
2158 && expr
->value
.function
.isym
->elemental
)
2160 arg0
= expr
->value
.function
.actual
;
2161 isym
= expr
->value
.function
.isym
;
2166 else if (c
&& c
->ext
.actual
!= NULL
)
2168 arg0
= c
->ext
.actual
;
2170 if (c
->resolved_sym
)
2171 esym
= c
->resolved_sym
;
2173 esym
= c
->symtree
->n
.sym
;
2176 if (!esym
->attr
.elemental
)
2182 /* The rank of an elemental is the rank of its array argument(s). */
2183 for (arg
= arg0
; arg
; arg
= arg
->next
)
2185 if (arg
->expr
!= NULL
&& arg
->expr
->rank
!= 0)
2187 rank
= arg
->expr
->rank
;
2188 if (arg
->expr
->expr_type
== EXPR_VARIABLE
2189 && arg
->expr
->symtree
->n
.sym
->attr
.optional
)
2190 set_by_optional
= true;
2192 /* Function specific; set the result rank and shape. */
2196 if (!expr
->shape
&& arg
->expr
->shape
)
2198 expr
->shape
= gfc_get_shape (rank
);
2199 for (i
= 0; i
< rank
; i
++)
2200 mpz_init_set (expr
->shape
[i
], arg
->expr
->shape
[i
]);
2207 /* If it is an array, it shall not be supplied as an actual argument
2208 to an elemental procedure unless an array of the same rank is supplied
2209 as an actual argument corresponding to a nonoptional dummy argument of
2210 that elemental procedure(12.4.1.5). */
2211 formal_optional
= false;
2213 iformal
= isym
->formal
;
2215 eformal
= esym
->formal
;
2217 for (arg
= arg0
; arg
; arg
= arg
->next
)
2221 if (eformal
->sym
&& eformal
->sym
->attr
.optional
)
2222 formal_optional
= true;
2223 eformal
= eformal
->next
;
2225 else if (isym
&& iformal
)
2227 if (iformal
->optional
)
2228 formal_optional
= true;
2229 iformal
= iformal
->next
;
2232 formal_optional
= true;
2234 if (pedantic
&& arg
->expr
!= NULL
2235 && arg
->expr
->expr_type
== EXPR_VARIABLE
2236 && arg
->expr
->symtree
->n
.sym
->attr
.optional
2239 && (set_by_optional
|| arg
->expr
->rank
!= rank
)
2240 && !(isym
&& isym
->id
== GFC_ISYM_CONVERSION
))
2242 gfc_warning (OPT_Wpedantic
,
2243 "%qs at %L is an array and OPTIONAL; IF IT IS "
2244 "MISSING, it cannot be the actual argument of an "
2245 "ELEMENTAL procedure unless there is a non-optional "
2246 "argument with the same rank (12.4.1.5)",
2247 arg
->expr
->symtree
->n
.sym
->name
, &arg
->expr
->where
);
2251 for (arg
= arg0
; arg
; arg
= arg
->next
)
2253 if (arg
->expr
== NULL
|| arg
->expr
->rank
== 0)
2256 /* Being elemental, the last upper bound of an assumed size array
2257 argument must be present. */
2258 if (resolve_assumed_size_actual (arg
->expr
))
2261 /* Elemental procedure's array actual arguments must conform. */
2264 if (!gfc_check_conformance (arg
->expr
, e
, "elemental procedure"))
2271 /* INTENT(OUT) is only allowed for subroutines; if any actual argument
2272 is an array, the intent inout/out variable needs to be also an array. */
2273 if (rank
> 0 && esym
&& expr
== NULL
)
2274 for (eformal
= esym
->formal
, arg
= arg0
; arg
&& eformal
;
2275 arg
= arg
->next
, eformal
= eformal
->next
)
2276 if ((eformal
->sym
->attr
.intent
== INTENT_OUT
2277 || eformal
->sym
->attr
.intent
== INTENT_INOUT
)
2278 && arg
->expr
&& arg
->expr
->rank
== 0)
2280 gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
2281 "ELEMENTAL subroutine %qs is a scalar, but another "
2282 "actual argument is an array", &arg
->expr
->where
,
2283 (eformal
->sym
->attr
.intent
== INTENT_OUT
) ? "OUT"
2284 : "INOUT", eformal
->sym
->name
, esym
->name
);
2291 /* This function does the checking of references to global procedures
2292 as defined in sections 18.1 and 14.1, respectively, of the Fortran
2293 77 and 95 standards. It checks for a gsymbol for the name, making
2294 one if it does not already exist. If it already exists, then the
2295 reference being resolved must correspond to the type of gsymbol.
2296 Otherwise, the new symbol is equipped with the attributes of the
2297 reference. The corresponding code that is called in creating
2298 global entities is parse.c.
2300 In addition, for all but -std=legacy, the gsymbols are used to
2301 check the interfaces of external procedures from the same file.
2302 The namespace of the gsymbol is resolved and then, once this is
2303 done the interface is checked. */
2307 not_in_recursive (gfc_symbol
*sym
, gfc_namespace
*gsym_ns
)
2309 if (!gsym_ns
->proc_name
->attr
.recursive
)
2312 if (sym
->ns
== gsym_ns
)
2315 if (sym
->ns
->parent
&& sym
->ns
->parent
== gsym_ns
)
2322 not_entry_self_reference (gfc_symbol
*sym
, gfc_namespace
*gsym_ns
)
2324 if (gsym_ns
->entries
)
2326 gfc_entry_list
*entry
= gsym_ns
->entries
;
2328 for (; entry
; entry
= entry
->next
)
2330 if (strcmp (sym
->name
, entry
->sym
->name
) == 0)
2332 if (strcmp (gsym_ns
->proc_name
->name
,
2333 sym
->ns
->proc_name
->name
) == 0)
2337 && strcmp (gsym_ns
->proc_name
->name
,
2338 sym
->ns
->parent
->proc_name
->name
) == 0)
2347 /* Check for the requirement of an explicit interface. F08:12.4.2.2. */
2350 gfc_explicit_interface_required (gfc_symbol
*sym
, char *errmsg
, int err_len
)
2352 gfc_formal_arglist
*arg
= gfc_sym_get_dummy_args (sym
);
2354 for ( ; arg
; arg
= arg
->next
)
2359 if (arg
->sym
->attr
.allocatable
) /* (2a) */
2361 strncpy (errmsg
, _("allocatable argument"), err_len
);
2364 else if (arg
->sym
->attr
.asynchronous
)
2366 strncpy (errmsg
, _("asynchronous argument"), err_len
);
2369 else if (arg
->sym
->attr
.optional
)
2371 strncpy (errmsg
, _("optional argument"), err_len
);
2374 else if (arg
->sym
->attr
.pointer
)
2376 strncpy (errmsg
, _("pointer argument"), err_len
);
2379 else if (arg
->sym
->attr
.target
)
2381 strncpy (errmsg
, _("target argument"), err_len
);
2384 else if (arg
->sym
->attr
.value
)
2386 strncpy (errmsg
, _("value argument"), err_len
);
2389 else if (arg
->sym
->attr
.volatile_
)
2391 strncpy (errmsg
, _("volatile argument"), err_len
);
2394 else if (arg
->sym
->as
&& arg
->sym
->as
->type
== AS_ASSUMED_SHAPE
) /* (2b) */
2396 strncpy (errmsg
, _("assumed-shape argument"), err_len
);
2399 else if (arg
->sym
->as
&& arg
->sym
->as
->type
== AS_ASSUMED_RANK
) /* TS 29113, 6.2. */
2401 strncpy (errmsg
, _("assumed-rank argument"), err_len
);
2404 else if (arg
->sym
->attr
.codimension
) /* (2c) */
2406 strncpy (errmsg
, _("coarray argument"), err_len
);
2409 else if (false) /* (2d) TODO: parametrized derived type */
2411 strncpy (errmsg
, _("parametrized derived type argument"), err_len
);
2414 else if (arg
->sym
->ts
.type
== BT_CLASS
) /* (2e) */
2416 strncpy (errmsg
, _("polymorphic argument"), err_len
);
2419 else if (arg
->sym
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
))
2421 strncpy (errmsg
, _("NO_ARG_CHECK attribute"), err_len
);
2424 else if (arg
->sym
->ts
.type
== BT_ASSUMED
)
2426 /* As assumed-type is unlimited polymorphic (cf. above).
2427 See also TS 29113, Note 6.1. */
2428 strncpy (errmsg
, _("assumed-type argument"), err_len
);
2433 if (sym
->attr
.function
)
2435 gfc_symbol
*res
= sym
->result
? sym
->result
: sym
;
2437 if (res
->attr
.dimension
) /* (3a) */
2439 strncpy (errmsg
, _("array result"), err_len
);
2442 else if (res
->attr
.pointer
|| res
->attr
.allocatable
) /* (3b) */
2444 strncpy (errmsg
, _("pointer or allocatable result"), err_len
);
2447 else if (res
->ts
.type
== BT_CHARACTER
&& res
->ts
.u
.cl
2448 && res
->ts
.u
.cl
->length
2449 && res
->ts
.u
.cl
->length
->expr_type
!= EXPR_CONSTANT
) /* (3c) */
2451 strncpy (errmsg
, _("result with non-constant character length"), err_len
);
2456 if (sym
->attr
.elemental
&& !sym
->attr
.intrinsic
) /* (4) */
2458 strncpy (errmsg
, _("elemental procedure"), err_len
);
2461 else if (sym
->attr
.is_bind_c
) /* (5) */
2463 strncpy (errmsg
, _("bind(c) procedure"), err_len
);
2472 resolve_global_procedure (gfc_symbol
*sym
, locus
*where
,
2473 gfc_actual_arglist
**actual
, int sub
)
2477 enum gfc_symbol_type type
;
2480 type
= sub
? GSYM_SUBROUTINE
: GSYM_FUNCTION
;
2482 gsym
= gfc_get_gsymbol (sym
->binding_label
? sym
->binding_label
: sym
->name
);
2484 if ((gsym
->type
!= GSYM_UNKNOWN
&& gsym
->type
!= type
))
2485 gfc_global_used (gsym
, where
);
2487 if ((sym
->attr
.if_source
== IFSRC_UNKNOWN
2488 || sym
->attr
.if_source
== IFSRC_IFBODY
)
2489 && gsym
->type
!= GSYM_UNKNOWN
2490 && !gsym
->binding_label
2492 && gsym
->ns
->resolved
!= -1
2493 && gsym
->ns
->proc_name
2494 && not_in_recursive (sym
, gsym
->ns
)
2495 && not_entry_self_reference (sym
, gsym
->ns
))
2497 gfc_symbol
*def_sym
;
2499 /* Resolve the gsymbol namespace if needed. */
2500 if (!gsym
->ns
->resolved
)
2502 gfc_dt_list
*old_dt_list
;
2504 /* Stash away derived types so that the backend_decls do not
2506 old_dt_list
= gfc_derived_types
;
2507 gfc_derived_types
= NULL
;
2509 gfc_resolve (gsym
->ns
);
2511 /* Store the new derived types with the global namespace. */
2512 if (gfc_derived_types
)
2513 gsym
->ns
->derived_types
= gfc_derived_types
;
2515 /* Restore the derived types of this namespace. */
2516 gfc_derived_types
= old_dt_list
;
2519 /* Make sure that translation for the gsymbol occurs before
2520 the procedure currently being resolved. */
2521 ns
= gfc_global_ns_list
;
2522 for (; ns
&& ns
!= gsym
->ns
; ns
= ns
->sibling
)
2524 if (ns
->sibling
== gsym
->ns
)
2526 ns
->sibling
= gsym
->ns
->sibling
;
2527 gsym
->ns
->sibling
= gfc_global_ns_list
;
2528 gfc_global_ns_list
= gsym
->ns
;
2533 def_sym
= gsym
->ns
->proc_name
;
2535 /* This can happen if a binding name has been specified. */
2536 if (gsym
->binding_label
&& gsym
->sym_name
!= def_sym
->name
)
2537 gfc_find_symbol (gsym
->sym_name
, gsym
->ns
, 0, &def_sym
);
2539 if (def_sym
->attr
.entry_master
)
2541 gfc_entry_list
*entry
;
2542 for (entry
= gsym
->ns
->entries
; entry
; entry
= entry
->next
)
2543 if (strcmp (entry
->sym
->name
, sym
->name
) == 0)
2545 def_sym
= entry
->sym
;
2550 if (sym
->attr
.function
&& !gfc_compare_types (&sym
->ts
, &def_sym
->ts
))
2552 gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
2553 sym
->name
, &sym
->declared_at
, gfc_typename (&sym
->ts
),
2554 gfc_typename (&def_sym
->ts
));
2558 if (sym
->attr
.if_source
== IFSRC_UNKNOWN
2559 && gfc_explicit_interface_required (def_sym
, reason
, sizeof(reason
)))
2561 gfc_error ("Explicit interface required for %qs at %L: %s",
2562 sym
->name
, &sym
->declared_at
, reason
);
2566 if (!pedantic
&& (gfc_option
.allow_std
& GFC_STD_GNU
))
2567 /* Turn erros into warnings with -std=gnu and -std=legacy. */
2568 gfc_errors_to_warnings (true);
2570 if (!gfc_compare_interfaces (sym
, def_sym
, sym
->name
, 0, 1,
2571 reason
, sizeof(reason
), NULL
, NULL
))
2573 gfc_error_opt (OPT_Wargument_mismatch
,
2574 "Interface mismatch in global procedure %qs at %L:"
2575 " %s", sym
->name
, &sym
->declared_at
, reason
);
2580 || ((gfc_option
.warn_std
& GFC_STD_LEGACY
)
2581 && !(gfc_option
.warn_std
& GFC_STD_GNU
)))
2582 gfc_errors_to_warnings (true);
2584 if (sym
->attr
.if_source
!= IFSRC_IFBODY
)
2585 gfc_procedure_use (def_sym
, actual
, where
);
2589 gfc_errors_to_warnings (false);
2591 if (gsym
->type
== GSYM_UNKNOWN
)
2594 gsym
->where
= *where
;
2601 /************* Function resolution *************/
2603 /* Resolve a function call known to be generic.
2604 Section 14.1.2.4.1. */
2607 resolve_generic_f0 (gfc_expr
*expr
, gfc_symbol
*sym
)
2611 if (sym
->attr
.generic
)
2613 s
= gfc_search_interface (sym
->generic
, 0, &expr
->value
.function
.actual
);
2616 expr
->value
.function
.name
= s
->name
;
2617 expr
->value
.function
.esym
= s
;
2619 if (s
->ts
.type
!= BT_UNKNOWN
)
2621 else if (s
->result
!= NULL
&& s
->result
->ts
.type
!= BT_UNKNOWN
)
2622 expr
->ts
= s
->result
->ts
;
2625 expr
->rank
= s
->as
->rank
;
2626 else if (s
->result
!= NULL
&& s
->result
->as
!= NULL
)
2627 expr
->rank
= s
->result
->as
->rank
;
2629 gfc_set_sym_referenced (expr
->value
.function
.esym
);
2634 /* TODO: Need to search for elemental references in generic
2638 if (sym
->attr
.intrinsic
)
2639 return gfc_intrinsic_func_interface (expr
, 0);
2646 resolve_generic_f (gfc_expr
*expr
)
2650 gfc_interface
*intr
= NULL
;
2652 sym
= expr
->symtree
->n
.sym
;
2656 m
= resolve_generic_f0 (expr
, sym
);
2659 else if (m
== MATCH_ERROR
)
2664 for (intr
= sym
->generic
; intr
; intr
= intr
->next
)
2665 if (gfc_fl_struct (intr
->sym
->attr
.flavor
))
2668 if (sym
->ns
->parent
== NULL
)
2670 gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &sym
);
2674 if (!generic_sym (sym
))
2678 /* Last ditch attempt. See if the reference is to an intrinsic
2679 that possesses a matching interface. 14.1.2.4 */
2680 if (sym
&& !intr
&& !gfc_is_intrinsic (sym
, 0, expr
->where
))
2682 if (gfc_init_expr_flag
)
2683 gfc_error ("Function %qs in initialization expression at %L "
2684 "must be an intrinsic function",
2685 expr
->symtree
->n
.sym
->name
, &expr
->where
);
2687 gfc_error ("There is no specific function for the generic %qs "
2688 "at %L", expr
->symtree
->n
.sym
->name
, &expr
->where
);
2694 if (!gfc_convert_to_structure_constructor (expr
, intr
->sym
, NULL
,
2697 if (!gfc_use_derived (expr
->ts
.u
.derived
))
2699 return resolve_structure_cons (expr
, 0);
2702 m
= gfc_intrinsic_func_interface (expr
, 0);
2707 gfc_error ("Generic function %qs at %L is not consistent with a "
2708 "specific intrinsic interface", expr
->symtree
->n
.sym
->name
,
2715 /* Resolve a function call known to be specific. */
2718 resolve_specific_f0 (gfc_symbol
*sym
, gfc_expr
*expr
)
2722 if (sym
->attr
.external
|| sym
->attr
.if_source
== IFSRC_IFBODY
)
2724 if (sym
->attr
.dummy
)
2726 sym
->attr
.proc
= PROC_DUMMY
;
2730 sym
->attr
.proc
= PROC_EXTERNAL
;
2734 if (sym
->attr
.proc
== PROC_MODULE
2735 || sym
->attr
.proc
== PROC_ST_FUNCTION
2736 || sym
->attr
.proc
== PROC_INTERNAL
)
2739 if (sym
->attr
.intrinsic
)
2741 m
= gfc_intrinsic_func_interface (expr
, 1);
2745 gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
2746 "with an intrinsic", sym
->name
, &expr
->where
);
2754 gfc_procedure_use (sym
, &expr
->value
.function
.actual
, &expr
->where
);
2757 expr
->ts
= sym
->result
->ts
;
2760 expr
->value
.function
.name
= sym
->name
;
2761 expr
->value
.function
.esym
= sym
;
2762 /* Prevent crash when sym->ts.u.derived->components is not set due to previous
2764 if (sym
->ts
.type
== BT_CLASS
&& !CLASS_DATA (sym
))
2766 if (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)->as
)
2767 expr
->rank
= CLASS_DATA (sym
)->as
->rank
;
2768 else if (sym
->as
!= NULL
)
2769 expr
->rank
= sym
->as
->rank
;
2776 resolve_specific_f (gfc_expr
*expr
)
2781 sym
= expr
->symtree
->n
.sym
;
2785 m
= resolve_specific_f0 (sym
, expr
);
2788 if (m
== MATCH_ERROR
)
2791 if (sym
->ns
->parent
== NULL
)
2794 gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &sym
);
2800 gfc_error ("Unable to resolve the specific function %qs at %L",
2801 expr
->symtree
->n
.sym
->name
, &expr
->where
);
2806 /* Recursively append candidate SYM to CANDIDATES. Store the number of
2807 candidates in CANDIDATES_LEN. */
2810 lookup_function_fuzzy_find_candidates (gfc_symtree
*sym
,
2812 size_t &candidates_len
)
2818 if ((sym
->n
.sym
->ts
.type
!= BT_UNKNOWN
|| sym
->n
.sym
->attr
.external
)
2819 && sym
->n
.sym
->attr
.flavor
== FL_PROCEDURE
)
2820 vec_push (candidates
, candidates_len
, sym
->name
);
2824 lookup_function_fuzzy_find_candidates (p
, candidates
, candidates_len
);
2828 lookup_function_fuzzy_find_candidates (p
, candidates
, candidates_len
);
2832 /* Lookup function FN fuzzily, taking names in SYMROOT into account. */
2835 gfc_lookup_function_fuzzy (const char *fn
, gfc_symtree
*symroot
)
2837 char **candidates
= NULL
;
2838 size_t candidates_len
= 0;
2839 lookup_function_fuzzy_find_candidates (symroot
, candidates
, candidates_len
);
2840 return gfc_closest_fuzzy_match (fn
, candidates
);
2844 /* Resolve a procedure call not known to be generic nor specific. */
2847 resolve_unknown_f (gfc_expr
*expr
)
2852 sym
= expr
->symtree
->n
.sym
;
2854 if (sym
->attr
.dummy
)
2856 sym
->attr
.proc
= PROC_DUMMY
;
2857 expr
->value
.function
.name
= sym
->name
;
2861 /* See if we have an intrinsic function reference. */
2863 if (gfc_is_intrinsic (sym
, 0, expr
->where
))
2865 if (gfc_intrinsic_func_interface (expr
, 1) == MATCH_YES
)
2870 /* The reference is to an external name. */
2872 sym
->attr
.proc
= PROC_EXTERNAL
;
2873 expr
->value
.function
.name
= sym
->name
;
2874 expr
->value
.function
.esym
= expr
->symtree
->n
.sym
;
2876 if (sym
->as
!= NULL
)
2877 expr
->rank
= sym
->as
->rank
;
2879 /* Type of the expression is either the type of the symbol or the
2880 default type of the symbol. */
2883 gfc_procedure_use (sym
, &expr
->value
.function
.actual
, &expr
->where
);
2885 if (sym
->ts
.type
!= BT_UNKNOWN
)
2889 ts
= gfc_get_default_type (sym
->name
, sym
->ns
);
2891 if (ts
->type
== BT_UNKNOWN
)
2894 = gfc_lookup_function_fuzzy (sym
->name
, sym
->ns
->sym_root
);
2896 gfc_error ("Function %qs at %L has no IMPLICIT type"
2897 "; did you mean %qs?",
2898 sym
->name
, &expr
->where
, guessed
);
2900 gfc_error ("Function %qs at %L has no IMPLICIT type",
2901 sym
->name
, &expr
->where
);
2912 /* Return true, if the symbol is an external procedure. */
2914 is_external_proc (gfc_symbol
*sym
)
2916 if (!sym
->attr
.dummy
&& !sym
->attr
.contained
2917 && !gfc_is_intrinsic (sym
, sym
->attr
.subroutine
, sym
->declared_at
)
2918 && sym
->attr
.proc
!= PROC_ST_FUNCTION
2919 && !sym
->attr
.proc_pointer
2920 && !sym
->attr
.use_assoc
2928 /* Figure out if a function reference is pure or not. Also set the name
2929 of the function for a potential error message. Return nonzero if the
2930 function is PURE, zero if not. */
2932 pure_stmt_function (gfc_expr
*, gfc_symbol
*);
2935 pure_function (gfc_expr
*e
, const char **name
)
2938 gfc_component
*comp
;
2942 if (e
->symtree
!= NULL
2943 && e
->symtree
->n
.sym
!= NULL
2944 && e
->symtree
->n
.sym
->attr
.proc
== PROC_ST_FUNCTION
)
2945 return pure_stmt_function (e
, e
->symtree
->n
.sym
);
2947 comp
= gfc_get_proc_ptr_comp (e
);
2950 pure
= gfc_pure (comp
->ts
.interface
);
2953 else if (e
->value
.function
.esym
)
2955 pure
= gfc_pure (e
->value
.function
.esym
);
2956 *name
= e
->value
.function
.esym
->name
;
2958 else if (e
->value
.function
.isym
)
2960 pure
= e
->value
.function
.isym
->pure
2961 || e
->value
.function
.isym
->elemental
;
2962 *name
= e
->value
.function
.isym
->name
;
2966 /* Implicit functions are not pure. */
2968 *name
= e
->value
.function
.name
;
2976 impure_stmt_fcn (gfc_expr
*e
, gfc_symbol
*sym
,
2977 int *f ATTRIBUTE_UNUSED
)
2981 /* Don't bother recursing into other statement functions
2982 since they will be checked individually for purity. */
2983 if (e
->expr_type
!= EXPR_FUNCTION
2985 || e
->symtree
->n
.sym
== sym
2986 || e
->symtree
->n
.sym
->attr
.proc
== PROC_ST_FUNCTION
)
2989 return pure_function (e
, &name
) ? false : true;
2994 pure_stmt_function (gfc_expr
*e
, gfc_symbol
*sym
)
2996 return gfc_traverse_expr (e
, sym
, impure_stmt_fcn
, 0) ? 0 : 1;
3000 /* Check if an impure function is allowed in the current context. */
3002 static bool check_pure_function (gfc_expr
*e
)
3004 const char *name
= NULL
;
3005 if (!pure_function (e
, &name
) && name
)
3009 gfc_error ("Reference to impure function %qs at %L inside a "
3010 "FORALL %s", name
, &e
->where
,
3011 forall_flag
== 2 ? "mask" : "block");
3014 else if (gfc_do_concurrent_flag
)
3016 gfc_error ("Reference to impure function %qs at %L inside a "
3017 "DO CONCURRENT %s", name
, &e
->where
,
3018 gfc_do_concurrent_flag
== 2 ? "mask" : "block");
3021 else if (gfc_pure (NULL
))
3023 gfc_error ("Reference to impure function %qs at %L "
3024 "within a PURE procedure", name
, &e
->where
);
3027 gfc_unset_implicit_pure (NULL
);
3033 /* Update current procedure's array_outer_dependency flag, considering
3034 a call to procedure SYM. */
3037 update_current_proc_array_outer_dependency (gfc_symbol
*sym
)
3039 /* Check to see if this is a sibling function that has not yet
3041 gfc_namespace
*sibling
= gfc_current_ns
->sibling
;
3042 for (; sibling
; sibling
= sibling
->sibling
)
3044 if (sibling
->proc_name
== sym
)
3046 gfc_resolve (sibling
);
3051 /* If SYM has references to outer arrays, so has the procedure calling
3052 SYM. If SYM is a procedure pointer, we can assume the worst. */
3053 if (sym
->attr
.array_outer_dependency
3054 || sym
->attr
.proc_pointer
)
3055 gfc_current_ns
->proc_name
->attr
.array_outer_dependency
= 1;
3059 /* Resolve a function call, which means resolving the arguments, then figuring
3060 out which entity the name refers to. */
3063 resolve_function (gfc_expr
*expr
)
3065 gfc_actual_arglist
*arg
;
3069 procedure_type p
= PROC_INTRINSIC
;
3070 bool no_formal_args
;
3074 sym
= expr
->symtree
->n
.sym
;
3076 /* If this is a procedure pointer component, it has already been resolved. */
3077 if (gfc_is_proc_ptr_comp (expr
))
3080 /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
3082 if (sym
&& sym
->attr
.intrinsic
3083 && (sym
->intmod_sym_id
== GFC_ISYM_CAF_GET
3084 || sym
->intmod_sym_id
== GFC_ISYM_CAF_SEND
))
3087 if (sym
&& sym
->attr
.intrinsic
3088 && !gfc_resolve_intrinsic (sym
, &expr
->where
))
3091 if (sym
&& (sym
->attr
.flavor
== FL_VARIABLE
|| sym
->attr
.subroutine
))
3093 gfc_error ("%qs at %L is not a function", sym
->name
, &expr
->where
);
3097 /* If this ia a deferred TBP with an abstract interface (which may
3098 of course be referenced), expr->value.function.esym will be set. */
3099 if (sym
&& sym
->attr
.abstract
&& !expr
->value
.function
.esym
)
3101 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3102 sym
->name
, &expr
->where
);
3106 /* Switch off assumed size checking and do this again for certain kinds
3107 of procedure, once the procedure itself is resolved. */
3108 need_full_assumed_size
++;
3110 if (expr
->symtree
&& expr
->symtree
->n
.sym
)
3111 p
= expr
->symtree
->n
.sym
->attr
.proc
;
3113 if (expr
->value
.function
.isym
&& expr
->value
.function
.isym
->inquiry
)
3114 inquiry_argument
= true;
3115 no_formal_args
= sym
&& is_external_proc (sym
)
3116 && gfc_sym_get_dummy_args (sym
) == NULL
;
3118 if (!resolve_actual_arglist (expr
->value
.function
.actual
,
3121 inquiry_argument
= false;
3125 inquiry_argument
= false;
3127 /* Resume assumed_size checking. */
3128 need_full_assumed_size
--;
3130 /* If the procedure is external, check for usage. */
3131 if (sym
&& is_external_proc (sym
))
3132 resolve_global_procedure (sym
, &expr
->where
,
3133 &expr
->value
.function
.actual
, 0);
3135 if (sym
&& sym
->ts
.type
== BT_CHARACTER
3137 && sym
->ts
.u
.cl
->length
== NULL
3139 && !sym
->ts
.deferred
3140 && expr
->value
.function
.esym
== NULL
3141 && !sym
->attr
.contained
)
3143 /* Internal procedures are taken care of in resolve_contained_fntype. */
3144 gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
3145 "be used at %L since it is not a dummy argument",
3146 sym
->name
, &expr
->where
);
3150 /* See if function is already resolved. */
3152 if (expr
->value
.function
.name
!= NULL
3153 || expr
->value
.function
.isym
!= NULL
)
3155 if (expr
->ts
.type
== BT_UNKNOWN
)
3161 /* Apply the rules of section 14.1.2. */
3163 switch (procedure_kind (sym
))
3166 t
= resolve_generic_f (expr
);
3169 case PTYPE_SPECIFIC
:
3170 t
= resolve_specific_f (expr
);
3174 t
= resolve_unknown_f (expr
);
3178 gfc_internal_error ("resolve_function(): bad function type");
3182 /* If the expression is still a function (it might have simplified),
3183 then we check to see if we are calling an elemental function. */
3185 if (expr
->expr_type
!= EXPR_FUNCTION
)
3188 temp
= need_full_assumed_size
;
3189 need_full_assumed_size
= 0;
3191 if (!resolve_elemental_actual (expr
, NULL
))
3194 if (omp_workshare_flag
3195 && expr
->value
.function
.esym
3196 && ! gfc_elemental (expr
->value
.function
.esym
))
3198 gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
3199 "in WORKSHARE construct", expr
->value
.function
.esym
->name
,
3204 #define GENERIC_ID expr->value.function.isym->id
3205 else if (expr
->value
.function
.actual
!= NULL
3206 && expr
->value
.function
.isym
!= NULL
3207 && GENERIC_ID
!= GFC_ISYM_LBOUND
3208 && GENERIC_ID
!= GFC_ISYM_LCOBOUND
3209 && GENERIC_ID
!= GFC_ISYM_UCOBOUND
3210 && GENERIC_ID
!= GFC_ISYM_LEN
3211 && GENERIC_ID
!= GFC_ISYM_LOC
3212 && GENERIC_ID
!= GFC_ISYM_C_LOC
3213 && GENERIC_ID
!= GFC_ISYM_PRESENT
)
3215 /* Array intrinsics must also have the last upper bound of an
3216 assumed size array argument. UBOUND and SIZE have to be
3217 excluded from the check if the second argument is anything
3220 for (arg
= expr
->value
.function
.actual
; arg
; arg
= arg
->next
)
3222 if ((GENERIC_ID
== GFC_ISYM_UBOUND
|| GENERIC_ID
== GFC_ISYM_SIZE
)
3223 && arg
== expr
->value
.function
.actual
3224 && arg
->next
!= NULL
&& arg
->next
->expr
)
3226 if (arg
->next
->expr
->expr_type
!= EXPR_CONSTANT
)
3229 if (arg
->next
->name
&& strncmp (arg
->next
->name
, "kind", 4) == 0)
3232 if ((int)mpz_get_si (arg
->next
->expr
->value
.integer
)
3237 if (arg
->expr
!= NULL
3238 && arg
->expr
->rank
> 0
3239 && resolve_assumed_size_actual (arg
->expr
))
3245 need_full_assumed_size
= temp
;
3247 if (!check_pure_function(expr
))
3250 /* Functions without the RECURSIVE attribution are not allowed to
3251 * call themselves. */
3252 if (expr
->value
.function
.esym
&& !expr
->value
.function
.esym
->attr
.recursive
)
3255 esym
= expr
->value
.function
.esym
;
3257 if (is_illegal_recursion (esym
, gfc_current_ns
))
3259 if (esym
->attr
.entry
&& esym
->ns
->entries
)
3260 gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
3261 " function %qs is not RECURSIVE",
3262 esym
->name
, &expr
->where
, esym
->ns
->entries
->sym
->name
);
3264 gfc_error ("Function %qs at %L cannot be called recursively, as it"
3265 " is not RECURSIVE", esym
->name
, &expr
->where
);
3271 /* Character lengths of use associated functions may contains references to
3272 symbols not referenced from the current program unit otherwise. Make sure
3273 those symbols are marked as referenced. */
3275 if (expr
->ts
.type
== BT_CHARACTER
&& expr
->value
.function
.esym
3276 && expr
->value
.function
.esym
->attr
.use_assoc
)
3278 gfc_expr_set_symbols_referenced (expr
->ts
.u
.cl
->length
);
3281 /* Make sure that the expression has a typespec that works. */
3282 if (expr
->ts
.type
== BT_UNKNOWN
)
3284 if (expr
->symtree
->n
.sym
->result
3285 && expr
->symtree
->n
.sym
->result
->ts
.type
!= BT_UNKNOWN
3286 && !expr
->symtree
->n
.sym
->result
->attr
.proc_pointer
)
3287 expr
->ts
= expr
->symtree
->n
.sym
->result
->ts
;
3290 if (!expr
->ref
&& !expr
->value
.function
.isym
)
3292 if (expr
->value
.function
.esym
)
3293 update_current_proc_array_outer_dependency (expr
->value
.function
.esym
);
3295 update_current_proc_array_outer_dependency (sym
);
3298 /* typebound procedure: Assume the worst. */
3299 gfc_current_ns
->proc_name
->attr
.array_outer_dependency
= 1;
3305 /************* Subroutine resolution *************/
3308 pure_subroutine (gfc_symbol
*sym
, const char *name
, locus
*loc
)
3315 gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
3319 else if (gfc_do_concurrent_flag
)
3321 gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
3325 else if (gfc_pure (NULL
))
3327 gfc_error ("Subroutine call to %qs at %L is not PURE", name
, loc
);
3331 gfc_unset_implicit_pure (NULL
);
3337 resolve_generic_s0 (gfc_code
*c
, gfc_symbol
*sym
)
3341 if (sym
->attr
.generic
)
3343 s
= gfc_search_interface (sym
->generic
, 1, &c
->ext
.actual
);
3346 c
->resolved_sym
= s
;
3347 if (!pure_subroutine (s
, s
->name
, &c
->loc
))
3352 /* TODO: Need to search for elemental references in generic interface. */
3355 if (sym
->attr
.intrinsic
)
3356 return gfc_intrinsic_sub_interface (c
, 0);
3363 resolve_generic_s (gfc_code
*c
)
3368 sym
= c
->symtree
->n
.sym
;
3372 m
= resolve_generic_s0 (c
, sym
);
3375 else if (m
== MATCH_ERROR
)
3379 if (sym
->ns
->parent
== NULL
)
3381 gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &sym
);
3385 if (!generic_sym (sym
))
3389 /* Last ditch attempt. See if the reference is to an intrinsic
3390 that possesses a matching interface. 14.1.2.4 */
3391 sym
= c
->symtree
->n
.sym
;
3393 if (!gfc_is_intrinsic (sym
, 1, c
->loc
))
3395 gfc_error ("There is no specific subroutine for the generic %qs at %L",
3396 sym
->name
, &c
->loc
);
3400 m
= gfc_intrinsic_sub_interface (c
, 0);
3404 gfc_error ("Generic subroutine %qs at %L is not consistent with an "
3405 "intrinsic subroutine interface", sym
->name
, &c
->loc
);
3411 /* Resolve a subroutine call known to be specific. */
3414 resolve_specific_s0 (gfc_code
*c
, gfc_symbol
*sym
)
3418 if (sym
->attr
.external
|| sym
->attr
.if_source
== IFSRC_IFBODY
)
3420 if (sym
->attr
.dummy
)
3422 sym
->attr
.proc
= PROC_DUMMY
;
3426 sym
->attr
.proc
= PROC_EXTERNAL
;
3430 if (sym
->attr
.proc
== PROC_MODULE
|| sym
->attr
.proc
== PROC_INTERNAL
)
3433 if (sym
->attr
.intrinsic
)
3435 m
= gfc_intrinsic_sub_interface (c
, 1);
3439 gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
3440 "with an intrinsic", sym
->name
, &c
->loc
);
3448 gfc_procedure_use (sym
, &c
->ext
.actual
, &c
->loc
);
3450 c
->resolved_sym
= sym
;
3451 if (!pure_subroutine (sym
, sym
->name
, &c
->loc
))
3459 resolve_specific_s (gfc_code
*c
)
3464 sym
= c
->symtree
->n
.sym
;
3468 m
= resolve_specific_s0 (c
, sym
);
3471 if (m
== MATCH_ERROR
)
3474 if (sym
->ns
->parent
== NULL
)
3477 gfc_find_symbol (sym
->name
, sym
->ns
->parent
, 1, &sym
);
3483 sym
= c
->symtree
->n
.sym
;
3484 gfc_error ("Unable to resolve the specific subroutine %qs at %L",
3485 sym
->name
, &c
->loc
);
3491 /* Resolve a subroutine call not known to be generic nor specific. */
3494 resolve_unknown_s (gfc_code
*c
)
3498 sym
= c
->symtree
->n
.sym
;
3500 if (sym
->attr
.dummy
)
3502 sym
->attr
.proc
= PROC_DUMMY
;
3506 /* See if we have an intrinsic function reference. */
3508 if (gfc_is_intrinsic (sym
, 1, c
->loc
))
3510 if (gfc_intrinsic_sub_interface (c
, 1) == MATCH_YES
)
3515 /* The reference is to an external name. */
3518 gfc_procedure_use (sym
, &c
->ext
.actual
, &c
->loc
);
3520 c
->resolved_sym
= sym
;
3522 return pure_subroutine (sym
, sym
->name
, &c
->loc
);
3526 /* Resolve a subroutine call. Although it was tempting to use the same code
3527 for functions, subroutines and functions are stored differently and this
3528 makes things awkward. */
3531 resolve_call (gfc_code
*c
)
3534 procedure_type ptype
= PROC_INTRINSIC
;
3535 gfc_symbol
*csym
, *sym
;
3536 bool no_formal_args
;
3538 csym
= c
->symtree
? c
->symtree
->n
.sym
: NULL
;
3540 if (csym
&& csym
->ts
.type
!= BT_UNKNOWN
)
3542 gfc_error ("%qs at %L has a type, which is not consistent with "
3543 "the CALL at %L", csym
->name
, &csym
->declared_at
, &c
->loc
);
3547 if (csym
&& gfc_current_ns
->parent
&& csym
->ns
!= gfc_current_ns
)
3550 gfc_find_sym_tree (c
->symtree
->name
, gfc_current_ns
, 1, &st
);
3551 sym
= st
? st
->n
.sym
: NULL
;
3552 if (sym
&& csym
!= sym
3553 && sym
->ns
== gfc_current_ns
3554 && sym
->attr
.flavor
== FL_PROCEDURE
3555 && sym
->attr
.contained
)
3558 if (csym
->attr
.generic
)
3559 c
->symtree
->n
.sym
= sym
;
3562 csym
= c
->symtree
->n
.sym
;
3566 /* If this ia a deferred TBP, c->expr1 will be set. */
3567 if (!c
->expr1
&& csym
)
3569 if (csym
->attr
.abstract
)
3571 gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
3572 csym
->name
, &c
->loc
);
3576 /* Subroutines without the RECURSIVE attribution are not allowed to
3578 if (is_illegal_recursion (csym
, gfc_current_ns
))
3580 if (csym
->attr
.entry
&& csym
->ns
->entries
)
3581 gfc_error ("ENTRY %qs at %L cannot be called recursively, "
3582 "as subroutine %qs is not RECURSIVE",
3583 csym
->name
, &c
->loc
, csym
->ns
->entries
->sym
->name
);
3585 gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
3586 "as it is not RECURSIVE", csym
->name
, &c
->loc
);
3592 /* Switch off assumed size checking and do this again for certain kinds
3593 of procedure, once the procedure itself is resolved. */
3594 need_full_assumed_size
++;
3597 ptype
= csym
->attr
.proc
;
3599 no_formal_args
= csym
&& is_external_proc (csym
)
3600 && gfc_sym_get_dummy_args (csym
) == NULL
;
3601 if (!resolve_actual_arglist (c
->ext
.actual
, ptype
, no_formal_args
))
3604 /* Resume assumed_size checking. */
3605 need_full_assumed_size
--;
3607 /* If external, check for usage. */
3608 if (csym
&& is_external_proc (csym
))
3609 resolve_global_procedure (csym
, &c
->loc
, &c
->ext
.actual
, 1);
3612 if (c
->resolved_sym
== NULL
)
3614 c
->resolved_isym
= NULL
;
3615 switch (procedure_kind (csym
))
3618 t
= resolve_generic_s (c
);
3621 case PTYPE_SPECIFIC
:
3622 t
= resolve_specific_s (c
);
3626 t
= resolve_unknown_s (c
);
3630 gfc_internal_error ("resolve_subroutine(): bad function type");
3634 /* Some checks of elemental subroutine actual arguments. */
3635 if (!resolve_elemental_actual (NULL
, c
))
3639 update_current_proc_array_outer_dependency (csym
);
3641 /* Typebound procedure: Assume the worst. */
3642 gfc_current_ns
->proc_name
->attr
.array_outer_dependency
= 1;
3648 /* Compare the shapes of two arrays that have non-NULL shapes. If both
3649 op1->shape and op2->shape are non-NULL return true if their shapes
3650 match. If both op1->shape and op2->shape are non-NULL return false
3651 if their shapes do not match. If either op1->shape or op2->shape is
3652 NULL, return true. */
3655 compare_shapes (gfc_expr
*op1
, gfc_expr
*op2
)
3662 if (op1
->shape
!= NULL
&& op2
->shape
!= NULL
)
3664 for (i
= 0; i
< op1
->rank
; i
++)
3666 if (mpz_cmp (op1
->shape
[i
], op2
->shape
[i
]) != 0)
3668 gfc_error ("Shapes for operands at %L and %L are not conformable",
3669 &op1
->where
, &op2
->where
);
3679 /* Convert a logical operator to the corresponding bitwise intrinsic call.
3680 For example A .AND. B becomes IAND(A, B). */
3682 logical_to_bitwise (gfc_expr
*e
)
3684 gfc_expr
*tmp
, *op1
, *op2
;
3686 gfc_actual_arglist
*args
= NULL
;
3688 gcc_assert (e
->expr_type
== EXPR_OP
);
3690 isym
= GFC_ISYM_NONE
;
3691 op1
= e
->value
.op
.op1
;
3692 op2
= e
->value
.op
.op2
;
3694 switch (e
->value
.op
.op
)
3697 isym
= GFC_ISYM_NOT
;
3700 isym
= GFC_ISYM_IAND
;
3703 isym
= GFC_ISYM_IOR
;
3705 case INTRINSIC_NEQV
:
3706 isym
= GFC_ISYM_IEOR
;
3709 /* "Bitwise eqv" is just the complement of NEQV === IEOR.
3710 Change the old expression to NEQV, which will get replaced by IEOR,
3711 and wrap it in NOT. */
3712 tmp
= gfc_copy_expr (e
);
3713 tmp
->value
.op
.op
= INTRINSIC_NEQV
;
3714 tmp
= logical_to_bitwise (tmp
);
3715 isym
= GFC_ISYM_NOT
;
3720 gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
3723 /* Inherit the original operation's operands as arguments. */
3724 args
= gfc_get_actual_arglist ();
3728 args
->next
= gfc_get_actual_arglist ();
3729 args
->next
->expr
= op2
;
3732 /* Convert the expression to a function call. */
3733 e
->expr_type
= EXPR_FUNCTION
;
3734 e
->value
.function
.actual
= args
;
3735 e
->value
.function
.isym
= gfc_intrinsic_function_by_id (isym
);
3736 e
->value
.function
.name
= e
->value
.function
.isym
->name
;
3737 e
->value
.function
.esym
= NULL
;
3739 /* Make up a pre-resolved function call symtree if we need to. */
3740 if (!e
->symtree
|| !e
->symtree
->n
.sym
)
3743 gfc_get_ha_sym_tree (e
->value
.function
.isym
->name
, &e
->symtree
);
3744 sym
= e
->symtree
->n
.sym
;
3746 sym
->attr
.flavor
= FL_PROCEDURE
;
3747 sym
->attr
.function
= 1;
3748 sym
->attr
.elemental
= 1;
3750 sym
->attr
.referenced
= 1;
3751 gfc_intrinsic_symbol (sym
);
3752 gfc_commit_symbol (sym
);
3755 args
->name
= e
->value
.function
.isym
->formal
->name
;
3756 if (e
->value
.function
.isym
->formal
->next
)
3757 args
->next
->name
= e
->value
.function
.isym
->formal
->next
->name
;
3762 /* Recursively append candidate UOP to CANDIDATES. Store the number of
3763 candidates in CANDIDATES_LEN. */
3765 lookup_uop_fuzzy_find_candidates (gfc_symtree
*uop
,
3767 size_t &candidates_len
)
3774 /* Not sure how to properly filter here. Use all for a start.
3775 n.uop.op is NULL for empty interface operators (is that legal?) disregard
3776 these as i suppose they don't make terribly sense. */
3778 if (uop
->n
.uop
->op
!= NULL
)
3779 vec_push (candidates
, candidates_len
, uop
->name
);
3783 lookup_uop_fuzzy_find_candidates (p
, candidates
, candidates_len
);
3787 lookup_uop_fuzzy_find_candidates (p
, candidates
, candidates_len
);
3790 /* Lookup user-operator OP fuzzily, taking names in UOP into account. */
3793 lookup_uop_fuzzy (const char *op
, gfc_symtree
*uop
)
3795 char **candidates
= NULL
;
3796 size_t candidates_len
= 0;
3797 lookup_uop_fuzzy_find_candidates (uop
, candidates
, candidates_len
);
3798 return gfc_closest_fuzzy_match (op
, candidates
);
3802 /* Resolve an operator expression node. This can involve replacing the
3803 operation with a user defined function call. */
3806 resolve_operator (gfc_expr
*e
)
3808 gfc_expr
*op1
, *op2
;
3810 bool dual_locus_error
;
3813 /* Resolve all subnodes-- give them types. */
3815 switch (e
->value
.op
.op
)
3818 if (!gfc_resolve_expr (e
->value
.op
.op2
))
3824 case INTRINSIC_UPLUS
:
3825 case INTRINSIC_UMINUS
:
3826 case INTRINSIC_PARENTHESES
:
3827 if (!gfc_resolve_expr (e
->value
.op
.op1
))
3832 /* Typecheck the new node. */
3834 op1
= e
->value
.op
.op1
;
3835 op2
= e
->value
.op
.op2
;
3836 dual_locus_error
= false;
3838 if ((op1
&& op1
->expr_type
== EXPR_NULL
)
3839 || (op2
&& op2
->expr_type
== EXPR_NULL
))
3841 sprintf (msg
, _("Invalid context for NULL() pointer at %%L"));
3845 switch (e
->value
.op
.op
)
3847 case INTRINSIC_UPLUS
:
3848 case INTRINSIC_UMINUS
:
3849 if (op1
->ts
.type
== BT_INTEGER
3850 || op1
->ts
.type
== BT_REAL
3851 || op1
->ts
.type
== BT_COMPLEX
)
3857 sprintf (msg
, _("Operand of unary numeric operator %%<%s%%> at %%L is %s"),
3858 gfc_op2string (e
->value
.op
.op
), gfc_typename (&e
->ts
));
3861 case INTRINSIC_PLUS
:
3862 case INTRINSIC_MINUS
:
3863 case INTRINSIC_TIMES
:
3864 case INTRINSIC_DIVIDE
:
3865 case INTRINSIC_POWER
:
3866 if (gfc_numeric_ts (&op1
->ts
) && gfc_numeric_ts (&op2
->ts
))
3868 gfc_type_convert_binary (e
, 1);
3873 _("Operands of binary numeric operator %%<%s%%> at %%L are %s/%s"),
3874 gfc_op2string (e
->value
.op
.op
), gfc_typename (&op1
->ts
),
3875 gfc_typename (&op2
->ts
));
3878 case INTRINSIC_CONCAT
:
3879 if (op1
->ts
.type
== BT_CHARACTER
&& op2
->ts
.type
== BT_CHARACTER
3880 && op1
->ts
.kind
== op2
->ts
.kind
)
3882 e
->ts
.type
= BT_CHARACTER
;
3883 e
->ts
.kind
= op1
->ts
.kind
;
3888 _("Operands of string concatenation operator at %%L are %s/%s"),
3889 gfc_typename (&op1
->ts
), gfc_typename (&op2
->ts
));
3895 case INTRINSIC_NEQV
:
3896 if (op1
->ts
.type
== BT_LOGICAL
&& op2
->ts
.type
== BT_LOGICAL
)
3898 e
->ts
.type
= BT_LOGICAL
;
3899 e
->ts
.kind
= gfc_kind_max (op1
, op2
);
3900 if (op1
->ts
.kind
< e
->ts
.kind
)
3901 gfc_convert_type (op1
, &e
->ts
, 2);
3902 else if (op2
->ts
.kind
< e
->ts
.kind
)
3903 gfc_convert_type (op2
, &e
->ts
, 2);
3907 /* Logical ops on integers become bitwise ops with -fdec. */
3909 && (op1
->ts
.type
== BT_INTEGER
|| op2
->ts
.type
== BT_INTEGER
))
3911 e
->ts
.type
= BT_INTEGER
;
3912 e
->ts
.kind
= gfc_kind_max (op1
, op2
);
3913 if (op1
->ts
.type
!= e
->ts
.type
|| op1
->ts
.kind
!= e
->ts
.kind
)
3914 gfc_convert_type (op1
, &e
->ts
, 1);
3915 if (op2
->ts
.type
!= e
->ts
.type
|| op2
->ts
.kind
!= e
->ts
.kind
)
3916 gfc_convert_type (op2
, &e
->ts
, 1);
3917 e
= logical_to_bitwise (e
);
3918 return resolve_function (e
);
3921 sprintf (msg
, _("Operands of logical operator %%<%s%%> at %%L are %s/%s"),
3922 gfc_op2string (e
->value
.op
.op
), gfc_typename (&op1
->ts
),
3923 gfc_typename (&op2
->ts
));
3928 /* Logical ops on integers become bitwise ops with -fdec. */
3929 if (flag_dec
&& op1
->ts
.type
== BT_INTEGER
)
3931 e
->ts
.type
= BT_INTEGER
;
3932 e
->ts
.kind
= op1
->ts
.kind
;
3933 e
= logical_to_bitwise (e
);
3934 return resolve_function (e
);
3937 if (op1
->ts
.type
== BT_LOGICAL
)
3939 e
->ts
.type
= BT_LOGICAL
;
3940 e
->ts
.kind
= op1
->ts
.kind
;
3944 sprintf (msg
, _("Operand of .not. operator at %%L is %s"),
3945 gfc_typename (&op1
->ts
));
3949 case INTRINSIC_GT_OS
:
3951 case INTRINSIC_GE_OS
:
3953 case INTRINSIC_LT_OS
:
3955 case INTRINSIC_LE_OS
:
3956 if (op1
->ts
.type
== BT_COMPLEX
|| op2
->ts
.type
== BT_COMPLEX
)
3958 strcpy (msg
, _("COMPLEX quantities cannot be compared at %L"));
3965 case INTRINSIC_EQ_OS
:
3967 case INTRINSIC_NE_OS
:
3968 if (op1
->ts
.type
== BT_CHARACTER
&& op2
->ts
.type
== BT_CHARACTER
3969 && op1
->ts
.kind
== op2
->ts
.kind
)
3971 e
->ts
.type
= BT_LOGICAL
;
3972 e
->ts
.kind
= gfc_default_logical_kind
;
3976 if (gfc_numeric_ts (&op1
->ts
) && gfc_numeric_ts (&op2
->ts
))
3978 gfc_type_convert_binary (e
, 1);
3980 e
->ts
.type
= BT_LOGICAL
;
3981 e
->ts
.kind
= gfc_default_logical_kind
;
3983 if (warn_compare_reals
)
3985 gfc_intrinsic_op op
= e
->value
.op
.op
;
3987 /* Type conversion has made sure that the types of op1 and op2
3988 agree, so it is only necessary to check the first one. */
3989 if ((op1
->ts
.type
== BT_REAL
|| op1
->ts
.type
== BT_COMPLEX
)
3990 && (op
== INTRINSIC_EQ
|| op
== INTRINSIC_EQ_OS
3991 || op
== INTRINSIC_NE
|| op
== INTRINSIC_NE_OS
))
3995 if (op
== INTRINSIC_EQ
|| op
== INTRINSIC_EQ_OS
)
3996 msg
= "Equality comparison for %s at %L";
3998 msg
= "Inequality comparison for %s at %L";
4000 gfc_warning (OPT_Wcompare_reals
, msg
,
4001 gfc_typename (&op1
->ts
), &op1
->where
);
4008 if (op1
->ts
.type
== BT_LOGICAL
&& op2
->ts
.type
== BT_LOGICAL
)
4010 _("Logicals at %%L must be compared with %s instead of %s"),
4011 (e
->value
.op
.op
== INTRINSIC_EQ
4012 || e
->value
.op
.op
== INTRINSIC_EQ_OS
)
4013 ? ".eqv." : ".neqv.", gfc_op2string (e
->value
.op
.op
));
4016 _("Operands of comparison operator %%<%s%%> at %%L are %s/%s"),
4017 gfc_op2string (e
->value
.op
.op
), gfc_typename (&op1
->ts
),
4018 gfc_typename (&op2
->ts
));
4022 case INTRINSIC_USER
:
4023 if (e
->value
.op
.uop
->op
== NULL
)
4025 const char *name
= e
->value
.op
.uop
->name
;
4026 const char *guessed
;
4027 guessed
= lookup_uop_fuzzy (name
, e
->value
.op
.uop
->ns
->uop_root
);
4029 sprintf (msg
, _("Unknown operator %%<%s%%> at %%L; did you mean '%s'?"),
4032 sprintf (msg
, _("Unknown operator %%<%s%%> at %%L"), name
);
4034 else if (op2
== NULL
)
4035 sprintf (msg
, _("Operand of user operator %%<%s%%> at %%L is %s"),
4036 e
->value
.op
.uop
->name
, gfc_typename (&op1
->ts
));
4039 sprintf (msg
, _("Operands of user operator %%<%s%%> at %%L are %s/%s"),
4040 e
->value
.op
.uop
->name
, gfc_typename (&op1
->ts
),
4041 gfc_typename (&op2
->ts
));
4042 e
->value
.op
.uop
->op
->sym
->attr
.referenced
= 1;
4047 case INTRINSIC_PARENTHESES
:
4049 if (e
->ts
.type
== BT_CHARACTER
)
4050 e
->ts
.u
.cl
= op1
->ts
.u
.cl
;
4054 gfc_internal_error ("resolve_operator(): Bad intrinsic");
4057 /* Deal with arrayness of an operand through an operator. */
4061 switch (e
->value
.op
.op
)
4063 case INTRINSIC_PLUS
:
4064 case INTRINSIC_MINUS
:
4065 case INTRINSIC_TIMES
:
4066 case INTRINSIC_DIVIDE
:
4067 case INTRINSIC_POWER
:
4068 case INTRINSIC_CONCAT
:
4072 case INTRINSIC_NEQV
:
4074 case INTRINSIC_EQ_OS
:
4076 case INTRINSIC_NE_OS
:
4078 case INTRINSIC_GT_OS
:
4080 case INTRINSIC_GE_OS
:
4082 case INTRINSIC_LT_OS
:
4084 case INTRINSIC_LE_OS
:
4086 if (op1
->rank
== 0 && op2
->rank
== 0)
4089 if (op1
->rank
== 0 && op2
->rank
!= 0)
4091 e
->rank
= op2
->rank
;
4093 if (e
->shape
== NULL
)
4094 e
->shape
= gfc_copy_shape (op2
->shape
, op2
->rank
);
4097 if (op1
->rank
!= 0 && op2
->rank
== 0)
4099 e
->rank
= op1
->rank
;
4101 if (e
->shape
== NULL
)
4102 e
->shape
= gfc_copy_shape (op1
->shape
, op1
->rank
);
4105 if (op1
->rank
!= 0 && op2
->rank
!= 0)
4107 if (op1
->rank
== op2
->rank
)
4109 e
->rank
= op1
->rank
;
4110 if (e
->shape
== NULL
)
4112 t
= compare_shapes (op1
, op2
);
4116 e
->shape
= gfc_copy_shape (op1
->shape
, op1
->rank
);
4121 /* Allow higher level expressions to work. */
4124 /* Try user-defined operators, and otherwise throw an error. */
4125 dual_locus_error
= true;
4127 _("Inconsistent ranks for operator at %%L and %%L"));
4134 case INTRINSIC_PARENTHESES
:
4136 case INTRINSIC_UPLUS
:
4137 case INTRINSIC_UMINUS
:
4138 /* Simply copy arrayness attribute */
4139 e
->rank
= op1
->rank
;
4141 if (e
->shape
== NULL
)
4142 e
->shape
= gfc_copy_shape (op1
->shape
, op1
->rank
);
4150 /* Attempt to simplify the expression. */
4153 t
= gfc_simplify_expr (e
, 0);
4154 /* Some calls do not succeed in simplification and return false
4155 even though there is no error; e.g. variable references to
4156 PARAMETER arrays. */
4157 if (!gfc_is_constant_expr (e
))
4165 match m
= gfc_extend_expr (e
);
4168 if (m
== MATCH_ERROR
)
4172 if (dual_locus_error
)
4173 gfc_error (msg
, &op1
->where
, &op2
->where
);
4175 gfc_error (msg
, &e
->where
);
4181 /************** Array resolution subroutines **************/
4184 { CMP_LT
, CMP_EQ
, CMP_GT
, CMP_UNKNOWN
};
4186 /* Compare two integer expressions. */
4188 static compare_result
4189 compare_bound (gfc_expr
*a
, gfc_expr
*b
)
4193 if (a
== NULL
|| a
->expr_type
!= EXPR_CONSTANT
4194 || b
== NULL
|| b
->expr_type
!= EXPR_CONSTANT
)
4197 /* If either of the types isn't INTEGER, we must have
4198 raised an error earlier. */
4200 if (a
->ts
.type
!= BT_INTEGER
|| b
->ts
.type
!= BT_INTEGER
)
4203 i
= mpz_cmp (a
->value
.integer
, b
->value
.integer
);
4213 /* Compare an integer expression with an integer. */
4215 static compare_result
4216 compare_bound_int (gfc_expr
*a
, int b
)
4220 if (a
== NULL
|| a
->expr_type
!= EXPR_CONSTANT
)
4223 if (a
->ts
.type
!= BT_INTEGER
)
4224 gfc_internal_error ("compare_bound_int(): Bad expression");
4226 i
= mpz_cmp_si (a
->value
.integer
, b
);
4236 /* Compare an integer expression with a mpz_t. */
4238 static compare_result
4239 compare_bound_mpz_t (gfc_expr
*a
, mpz_t b
)
4243 if (a
== NULL
|| a
->expr_type
!= EXPR_CONSTANT
)
4246 if (a
->ts
.type
!= BT_INTEGER
)
4247 gfc_internal_error ("compare_bound_int(): Bad expression");
4249 i
= mpz_cmp (a
->value
.integer
, b
);
4259 /* Compute the last value of a sequence given by a triplet.
4260 Return 0 if it wasn't able to compute the last value, or if the
4261 sequence if empty, and 1 otherwise. */
4264 compute_last_value_for_triplet (gfc_expr
*start
, gfc_expr
*end
,
4265 gfc_expr
*stride
, mpz_t last
)
4269 if (start
== NULL
|| start
->expr_type
!= EXPR_CONSTANT
4270 || end
== NULL
|| end
->expr_type
!= EXPR_CONSTANT
4271 || (stride
!= NULL
&& stride
->expr_type
!= EXPR_CONSTANT
))
4274 if (start
->ts
.type
!= BT_INTEGER
|| end
->ts
.type
!= BT_INTEGER
4275 || (stride
!= NULL
&& stride
->ts
.type
!= BT_INTEGER
))
4278 if (stride
== NULL
|| compare_bound_int (stride
, 1) == CMP_EQ
)
4280 if (compare_bound (start
, end
) == CMP_GT
)
4282 mpz_set (last
, end
->value
.integer
);
4286 if (compare_bound_int (stride
, 0) == CMP_GT
)
4288 /* Stride is positive */
4289 if (mpz_cmp (start
->value
.integer
, end
->value
.integer
) > 0)
4294 /* Stride is negative */
4295 if (mpz_cmp (start
->value
.integer
, end
->value
.integer
) < 0)
4300 mpz_sub (rem
, end
->value
.integer
, start
->value
.integer
);
4301 mpz_tdiv_r (rem
, rem
, stride
->value
.integer
);
4302 mpz_sub (last
, end
->value
.integer
, rem
);
4309 /* Compare a single dimension of an array reference to the array
4313 check_dimension (int i
, gfc_array_ref
*ar
, gfc_array_spec
*as
)
4317 if (ar
->dimen_type
[i
] == DIMEN_STAR
)
4319 gcc_assert (ar
->stride
[i
] == NULL
);
4320 /* This implies [*] as [*:] and [*:3] are not possible. */
4321 if (ar
->start
[i
] == NULL
)
4323 gcc_assert (ar
->end
[i
] == NULL
);
4328 /* Given start, end and stride values, calculate the minimum and
4329 maximum referenced indexes. */
4331 switch (ar
->dimen_type
[i
])
4334 case DIMEN_THIS_IMAGE
:
4339 if (compare_bound (ar
->start
[i
], as
->lower
[i
]) == CMP_LT
)
4342 gfc_warning (0, "Array reference at %L is out of bounds "
4343 "(%ld < %ld) in dimension %d", &ar
->c_where
[i
],
4344 mpz_get_si (ar
->start
[i
]->value
.integer
),
4345 mpz_get_si (as
->lower
[i
]->value
.integer
), i
+1);
4347 gfc_warning (0, "Array reference at %L is out of bounds "
4348 "(%ld < %ld) in codimension %d", &ar
->c_where
[i
],
4349 mpz_get_si (ar
->start
[i
]->value
.integer
),
4350 mpz_get_si (as
->lower
[i
]->value
.integer
),
4354 if (compare_bound (ar
->start
[i
], as
->upper
[i
]) == CMP_GT
)
4357 gfc_warning (0, "Array reference at %L is out of bounds "
4358 "(%ld > %ld) in dimension %d", &ar
->c_where
[i
],
4359 mpz_get_si (ar
->start
[i
]->value
.integer
),
4360 mpz_get_si (as
->upper
[i
]->value
.integer
), i
+1);
4362 gfc_warning (0, "Array reference at %L is out of bounds "
4363 "(%ld > %ld) in codimension %d", &ar
->c_where
[i
],
4364 mpz_get_si (ar
->start
[i
]->value
.integer
),
4365 mpz_get_si (as
->upper
[i
]->value
.integer
),
4374 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
4375 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
4377 compare_result comp_start_end
= compare_bound (AR_START
, AR_END
);
4379 /* Check for zero stride, which is not allowed. */
4380 if (compare_bound_int (ar
->stride
[i
], 0) == CMP_EQ
)
4382 gfc_error ("Illegal stride of zero at %L", &ar
->c_where
[i
]);
4386 /* if start == len || (stride > 0 && start < len)
4387 || (stride < 0 && start > len),
4388 then the array section contains at least one element. In this
4389 case, there is an out-of-bounds access if
4390 (start < lower || start > upper). */
4391 if (compare_bound (AR_START
, AR_END
) == CMP_EQ
4392 || ((compare_bound_int (ar
->stride
[i
], 0) == CMP_GT
4393 || ar
->stride
[i
] == NULL
) && comp_start_end
== CMP_LT
)
4394 || (compare_bound_int (ar
->stride
[i
], 0) == CMP_LT
4395 && comp_start_end
== CMP_GT
))
4397 if (compare_bound (AR_START
, as
->lower
[i
]) == CMP_LT
)
4399 gfc_warning (0, "Lower array reference at %L is out of bounds "
4400 "(%ld < %ld) in dimension %d", &ar
->c_where
[i
],
4401 mpz_get_si (AR_START
->value
.integer
),
4402 mpz_get_si (as
->lower
[i
]->value
.integer
), i
+1);
4405 if (compare_bound (AR_START
, as
->upper
[i
]) == CMP_GT
)
4407 gfc_warning (0, "Lower array reference at %L is out of bounds "
4408 "(%ld > %ld) in dimension %d", &ar
->c_where
[i
],
4409 mpz_get_si (AR_START
->value
.integer
),
4410 mpz_get_si (as
->upper
[i
]->value
.integer
), i
+1);
4415 /* If we can compute the highest index of the array section,
4416 then it also has to be between lower and upper. */
4417 mpz_init (last_value
);
4418 if (compute_last_value_for_triplet (AR_START
, AR_END
, ar
->stride
[i
],
4421 if (compare_bound_mpz_t (as
->lower
[i
], last_value
) == CMP_GT
)
4423 gfc_warning (0, "Upper array reference at %L is out of bounds "
4424 "(%ld < %ld) in dimension %d", &ar
->c_where
[i
],
4425 mpz_get_si (last_value
),
4426 mpz_get_si (as
->lower
[i
]->value
.integer
), i
+1);
4427 mpz_clear (last_value
);
4430 if (compare_bound_mpz_t (as
->upper
[i
], last_value
) == CMP_LT
)
4432 gfc_warning (0, "Upper array reference at %L is out of bounds "
4433 "(%ld > %ld) in dimension %d", &ar
->c_where
[i
],
4434 mpz_get_si (last_value
),
4435 mpz_get_si (as
->upper
[i
]->value
.integer
), i
+1);
4436 mpz_clear (last_value
);
4440 mpz_clear (last_value
);
4448 gfc_internal_error ("check_dimension(): Bad array reference");
4455 /* Compare an array reference with an array specification. */
4458 compare_spec_to_ref (gfc_array_ref
*ar
)
4465 /* TODO: Full array sections are only allowed as actual parameters. */
4466 if (as
->type
== AS_ASSUMED_SIZE
4467 && (/*ar->type == AR_FULL
4468 ||*/ (ar
->type
== AR_SECTION
4469 && ar
->dimen_type
[i
] == DIMEN_RANGE
&& ar
->end
[i
] == NULL
)))
4471 gfc_error ("Rightmost upper bound of assumed size array section "
4472 "not specified at %L", &ar
->where
);
4476 if (ar
->type
== AR_FULL
)
4479 if (as
->rank
!= ar
->dimen
)
4481 gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
4482 &ar
->where
, ar
->dimen
, as
->rank
);
4486 /* ar->codimen == 0 is a local array. */
4487 if (as
->corank
!= ar
->codimen
&& ar
->codimen
!= 0)
4489 gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
4490 &ar
->where
, ar
->codimen
, as
->corank
);
4494 for (i
= 0; i
< as
->rank
; i
++)
4495 if (!check_dimension (i
, ar
, as
))
4498 /* Local access has no coarray spec. */
4499 if (ar
->codimen
!= 0)
4500 for (i
= as
->rank
; i
< as
->rank
+ as
->corank
; i
++)
4502 if (ar
->dimen_type
[i
] != DIMEN_ELEMENT
&& !ar
->in_allocate
4503 && ar
->dimen_type
[i
] != DIMEN_THIS_IMAGE
)
4505 gfc_error ("Coindex of codimension %d must be a scalar at %L",
4506 i
+ 1 - as
->rank
, &ar
->where
);
4509 if (!check_dimension (i
, ar
, as
))
4517 /* Resolve one part of an array index. */
4520 gfc_resolve_index_1 (gfc_expr
*index
, int check_scalar
,
4521 int force_index_integer_kind
)
4528 if (!gfc_resolve_expr (index
))
4531 if (check_scalar
&& index
->rank
!= 0)
4533 gfc_error ("Array index at %L must be scalar", &index
->where
);
4537 if (index
->ts
.type
!= BT_INTEGER
&& index
->ts
.type
!= BT_REAL
)
4539 gfc_error ("Array index at %L must be of INTEGER type, found %s",
4540 &index
->where
, gfc_basic_typename (index
->ts
.type
));
4544 if (index
->ts
.type
== BT_REAL
)
4545 if (!gfc_notify_std (GFC_STD_LEGACY
, "REAL array index at %L",
4549 if ((index
->ts
.kind
!= gfc_index_integer_kind
4550 && force_index_integer_kind
)
4551 || index
->ts
.type
!= BT_INTEGER
)
4554 ts
.type
= BT_INTEGER
;
4555 ts
.kind
= gfc_index_integer_kind
;
4557 gfc_convert_type_warn (index
, &ts
, 2, 0);
4563 /* Resolve one part of an array index. */
4566 gfc_resolve_index (gfc_expr
*index
, int check_scalar
)
4568 return gfc_resolve_index_1 (index
, check_scalar
, 1);
4571 /* Resolve a dim argument to an intrinsic function. */
4574 gfc_resolve_dim_arg (gfc_expr
*dim
)
4579 if (!gfc_resolve_expr (dim
))
4584 gfc_error ("Argument dim at %L must be scalar", &dim
->where
);
4589 if (dim
->ts
.type
!= BT_INTEGER
)
4591 gfc_error ("Argument dim at %L must be of INTEGER type", &dim
->where
);
4595 if (dim
->ts
.kind
!= gfc_index_integer_kind
)
4600 ts
.type
= BT_INTEGER
;
4601 ts
.kind
= gfc_index_integer_kind
;
4603 gfc_convert_type_warn (dim
, &ts
, 2, 0);
4609 /* Given an expression that contains array references, update those array
4610 references to point to the right array specifications. While this is
4611 filled in during matching, this information is difficult to save and load
4612 in a module, so we take care of it here.
4614 The idea here is that the original array reference comes from the
4615 base symbol. We traverse the list of reference structures, setting
4616 the stored reference to references. Component references can
4617 provide an additional array specification. */
4620 find_array_spec (gfc_expr
*e
)
4626 if (e
->symtree
->n
.sym
->ts
.type
== BT_CLASS
)
4627 as
= CLASS_DATA (e
->symtree
->n
.sym
)->as
;
4629 as
= e
->symtree
->n
.sym
->as
;
4631 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
4636 gfc_internal_error ("find_array_spec(): Missing spec");
4643 c
= ref
->u
.c
.component
;
4644 if (c
->attr
.dimension
)
4647 gfc_internal_error ("find_array_spec(): unused as(1)");
4658 gfc_internal_error ("find_array_spec(): unused as(2)");
4662 /* Resolve an array reference. */
4665 resolve_array_ref (gfc_array_ref
*ar
)
4667 int i
, check_scalar
;
4670 for (i
= 0; i
< ar
->dimen
+ ar
->codimen
; i
++)
4672 check_scalar
= ar
->dimen_type
[i
] == DIMEN_RANGE
;
4674 /* Do not force gfc_index_integer_kind for the start. We can
4675 do fine with any integer kind. This avoids temporary arrays
4676 created for indexing with a vector. */
4677 if (!gfc_resolve_index_1 (ar
->start
[i
], check_scalar
, 0))
4679 if (!gfc_resolve_index (ar
->end
[i
], check_scalar
))
4681 if (!gfc_resolve_index (ar
->stride
[i
], check_scalar
))
4686 if (ar
->dimen_type
[i
] == DIMEN_UNKNOWN
)
4690 ar
->dimen_type
[i
] = DIMEN_ELEMENT
;
4694 ar
->dimen_type
[i
] = DIMEN_VECTOR
;
4695 if (e
->expr_type
== EXPR_VARIABLE
4696 && e
->symtree
->n
.sym
->ts
.type
== BT_DERIVED
)
4697 ar
->start
[i
] = gfc_get_parentheses (e
);
4701 gfc_error ("Array index at %L is an array of rank %d",
4702 &ar
->c_where
[i
], e
->rank
);
4706 /* Fill in the upper bound, which may be lower than the
4707 specified one for something like a(2:10:5), which is
4708 identical to a(2:7:5). Only relevant for strides not equal
4709 to one. Don't try a division by zero. */
4710 if (ar
->dimen_type
[i
] == DIMEN_RANGE
4711 && ar
->stride
[i
] != NULL
&& ar
->stride
[i
]->expr_type
== EXPR_CONSTANT
4712 && mpz_cmp_si (ar
->stride
[i
]->value
.integer
, 1L) != 0
4713 && mpz_cmp_si (ar
->stride
[i
]->value
.integer
, 0L) != 0)
4717 if (gfc_ref_dimen_size (ar
, i
, &size
, &end
))
4719 if (ar
->end
[i
] == NULL
)
4722 gfc_get_constant_expr (BT_INTEGER
, gfc_index_integer_kind
,
4724 mpz_set (ar
->end
[i
]->value
.integer
, end
);
4726 else if (ar
->end
[i
]->ts
.type
== BT_INTEGER
4727 && ar
->end
[i
]->expr_type
== EXPR_CONSTANT
)
4729 mpz_set (ar
->end
[i
]->value
.integer
, end
);
4740 if (ar
->type
== AR_FULL
)
4742 if (ar
->as
->rank
== 0)
4743 ar
->type
= AR_ELEMENT
;
4745 /* Make sure array is the same as array(:,:), this way
4746 we don't need to special case all the time. */
4747 ar
->dimen
= ar
->as
->rank
;
4748 for (i
= 0; i
< ar
->dimen
; i
++)
4750 ar
->dimen_type
[i
] = DIMEN_RANGE
;
4752 gcc_assert (ar
->start
[i
] == NULL
);
4753 gcc_assert (ar
->end
[i
] == NULL
);
4754 gcc_assert (ar
->stride
[i
] == NULL
);
4758 /* If the reference type is unknown, figure out what kind it is. */
4760 if (ar
->type
== AR_UNKNOWN
)
4762 ar
->type
= AR_ELEMENT
;
4763 for (i
= 0; i
< ar
->dimen
; i
++)
4764 if (ar
->dimen_type
[i
] == DIMEN_RANGE
4765 || ar
->dimen_type
[i
] == DIMEN_VECTOR
)
4767 ar
->type
= AR_SECTION
;
4772 if (!ar
->as
->cray_pointee
&& !compare_spec_to_ref (ar
))
4775 if (ar
->as
->corank
&& ar
->codimen
== 0)
4778 ar
->codimen
= ar
->as
->corank
;
4779 for (n
= ar
->dimen
; n
< ar
->dimen
+ ar
->codimen
; n
++)
4780 ar
->dimen_type
[n
] = DIMEN_THIS_IMAGE
;
4788 resolve_substring (gfc_ref
*ref
)
4790 int k
= gfc_validate_kind (BT_INTEGER
, gfc_charlen_int_kind
, false);
4792 if (ref
->u
.ss
.start
!= NULL
)
4794 if (!gfc_resolve_expr (ref
->u
.ss
.start
))
4797 if (ref
->u
.ss
.start
->ts
.type
!= BT_INTEGER
)
4799 gfc_error ("Substring start index at %L must be of type INTEGER",
4800 &ref
->u
.ss
.start
->where
);
4804 if (ref
->u
.ss
.start
->rank
!= 0)
4806 gfc_error ("Substring start index at %L must be scalar",
4807 &ref
->u
.ss
.start
->where
);
4811 if (compare_bound_int (ref
->u
.ss
.start
, 1) == CMP_LT
4812 && (compare_bound (ref
->u
.ss
.end
, ref
->u
.ss
.start
) == CMP_EQ
4813 || compare_bound (ref
->u
.ss
.end
, ref
->u
.ss
.start
) == CMP_GT
))
4815 gfc_error ("Substring start index at %L is less than one",
4816 &ref
->u
.ss
.start
->where
);
4821 if (ref
->u
.ss
.end
!= NULL
)
4823 if (!gfc_resolve_expr (ref
->u
.ss
.end
))
4826 if (ref
->u
.ss
.end
->ts
.type
!= BT_INTEGER
)
4828 gfc_error ("Substring end index at %L must be of type INTEGER",
4829 &ref
->u
.ss
.end
->where
);
4833 if (ref
->u
.ss
.end
->rank
!= 0)
4835 gfc_error ("Substring end index at %L must be scalar",
4836 &ref
->u
.ss
.end
->where
);
4840 if (ref
->u
.ss
.length
!= NULL
4841 && compare_bound (ref
->u
.ss
.end
, ref
->u
.ss
.length
->length
) == CMP_GT
4842 && (compare_bound (ref
->u
.ss
.end
, ref
->u
.ss
.start
) == CMP_EQ
4843 || compare_bound (ref
->u
.ss
.end
, ref
->u
.ss
.start
) == CMP_GT
))
4845 gfc_error ("Substring end index at %L exceeds the string length",
4846 &ref
->u
.ss
.start
->where
);
4850 if (compare_bound_mpz_t (ref
->u
.ss
.end
,
4851 gfc_integer_kinds
[k
].huge
) == CMP_GT
4852 && (compare_bound (ref
->u
.ss
.end
, ref
->u
.ss
.start
) == CMP_EQ
4853 || compare_bound (ref
->u
.ss
.end
, ref
->u
.ss
.start
) == CMP_GT
))
4855 gfc_error ("Substring end index at %L is too large",
4856 &ref
->u
.ss
.end
->where
);
4865 /* This function supplies missing substring charlens. */
4868 gfc_resolve_substring_charlen (gfc_expr
*e
)
4871 gfc_expr
*start
, *end
;
4872 gfc_typespec
*ts
= NULL
;
4874 for (char_ref
= e
->ref
; char_ref
; char_ref
= char_ref
->next
)
4876 if (char_ref
->type
== REF_SUBSTRING
)
4878 if (char_ref
->type
== REF_COMPONENT
)
4879 ts
= &char_ref
->u
.c
.component
->ts
;
4885 gcc_assert (char_ref
->next
== NULL
);
4889 if (e
->ts
.u
.cl
->length
)
4890 gfc_free_expr (e
->ts
.u
.cl
->length
);
4891 else if (e
->expr_type
== EXPR_VARIABLE
&& e
->symtree
->n
.sym
->attr
.dummy
)
4895 e
->ts
.type
= BT_CHARACTER
;
4896 e
->ts
.kind
= gfc_default_character_kind
;
4899 e
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
4901 if (char_ref
->u
.ss
.start
)
4902 start
= gfc_copy_expr (char_ref
->u
.ss
.start
);
4904 start
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
, 1);
4906 if (char_ref
->u
.ss
.end
)
4907 end
= gfc_copy_expr (char_ref
->u
.ss
.end
);
4908 else if (e
->expr_type
== EXPR_VARIABLE
)
4911 ts
= &e
->symtree
->n
.sym
->ts
;
4912 end
= gfc_copy_expr (ts
->u
.cl
->length
);
4919 gfc_free_expr (start
);
4920 gfc_free_expr (end
);
4924 /* Length = (end - start + 1). */
4925 e
->ts
.u
.cl
->length
= gfc_subtract (end
, start
);
4926 e
->ts
.u
.cl
->length
= gfc_add (e
->ts
.u
.cl
->length
,
4927 gfc_get_int_expr (gfc_default_integer_kind
,
4930 /* F2008, 6.4.1: Both the starting point and the ending point shall
4931 be within the range 1, 2, ..., n unless the starting point exceeds
4932 the ending point, in which case the substring has length zero. */
4934 if (mpz_cmp_si (e
->ts
.u
.cl
->length
->value
.integer
, 0) < 0)
4935 mpz_set_si (e
->ts
.u
.cl
->length
->value
.integer
, 0);
4937 e
->ts
.u
.cl
->length
->ts
.type
= BT_INTEGER
;
4938 e
->ts
.u
.cl
->length
->ts
.kind
= gfc_charlen_int_kind
;
4940 /* Make sure that the length is simplified. */
4941 gfc_simplify_expr (e
->ts
.u
.cl
->length
, 1);
4942 gfc_resolve_expr (e
->ts
.u
.cl
->length
);
4946 /* Resolve subtype references. */
4949 resolve_ref (gfc_expr
*expr
)
4951 int current_part_dimension
, n_components
, seen_part_dimension
;
4954 for (ref
= expr
->ref
; ref
; ref
= ref
->next
)
4955 if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.as
== NULL
)
4957 find_array_spec (expr
);
4961 for (ref
= expr
->ref
; ref
; ref
= ref
->next
)
4965 if (!resolve_array_ref (&ref
->u
.ar
))
4973 if (!resolve_substring (ref
))
4978 /* Check constraints on part references. */
4980 current_part_dimension
= 0;
4981 seen_part_dimension
= 0;
4984 for (ref
= expr
->ref
; ref
; ref
= ref
->next
)
4989 switch (ref
->u
.ar
.type
)
4992 /* Coarray scalar. */
4993 if (ref
->u
.ar
.as
->rank
== 0)
4995 current_part_dimension
= 0;
5000 current_part_dimension
= 1;
5004 current_part_dimension
= 0;
5008 gfc_internal_error ("resolve_ref(): Bad array reference");
5014 if (current_part_dimension
|| seen_part_dimension
)
5017 if (ref
->u
.c
.component
->attr
.pointer
5018 || ref
->u
.c
.component
->attr
.proc_pointer
5019 || (ref
->u
.c
.component
->ts
.type
== BT_CLASS
5020 && CLASS_DATA (ref
->u
.c
.component
)->attr
.pointer
))
5022 gfc_error ("Component to the right of a part reference "
5023 "with nonzero rank must not have the POINTER "
5024 "attribute at %L", &expr
->where
);
5027 else if (ref
->u
.c
.component
->attr
.allocatable
5028 || (ref
->u
.c
.component
->ts
.type
== BT_CLASS
5029 && CLASS_DATA (ref
->u
.c
.component
)->attr
.allocatable
))
5032 gfc_error ("Component to the right of a part reference "
5033 "with nonzero rank must not have the ALLOCATABLE "
5034 "attribute at %L", &expr
->where
);
5046 if (((ref
->type
== REF_COMPONENT
&& n_components
> 1)
5047 || ref
->next
== NULL
)
5048 && current_part_dimension
5049 && seen_part_dimension
)
5051 gfc_error ("Two or more part references with nonzero rank must "
5052 "not be specified at %L", &expr
->where
);
5056 if (ref
->type
== REF_COMPONENT
)
5058 if (current_part_dimension
)
5059 seen_part_dimension
= 1;
5061 /* reset to make sure */
5062 current_part_dimension
= 0;
5070 /* Given an expression, determine its shape. This is easier than it sounds.
5071 Leaves the shape array NULL if it is not possible to determine the shape. */
5074 expression_shape (gfc_expr
*e
)
5076 mpz_t array
[GFC_MAX_DIMENSIONS
];
5079 if (e
->rank
<= 0 || e
->shape
!= NULL
)
5082 for (i
= 0; i
< e
->rank
; i
++)
5083 if (!gfc_array_dimen_size (e
, i
, &array
[i
]))
5086 e
->shape
= gfc_get_shape (e
->rank
);
5088 memcpy (e
->shape
, array
, e
->rank
* sizeof (mpz_t
));
5093 for (i
--; i
>= 0; i
--)
5094 mpz_clear (array
[i
]);
5098 /* Given a variable expression node, compute the rank of the expression by
5099 examining the base symbol and any reference structures it may have. */
5102 expression_rank (gfc_expr
*e
)
5107 /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
5108 could lead to serious confusion... */
5109 gcc_assert (e
->expr_type
!= EXPR_COMPCALL
);
5113 if (e
->expr_type
== EXPR_ARRAY
)
5115 /* Constructors can have a rank different from one via RESHAPE(). */
5117 if (e
->symtree
== NULL
)
5123 e
->rank
= (e
->symtree
->n
.sym
->as
== NULL
)
5124 ? 0 : e
->symtree
->n
.sym
->as
->rank
;
5130 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
5132 if (ref
->type
== REF_COMPONENT
&& ref
->u
.c
.component
->attr
.proc_pointer
5133 && ref
->u
.c
.component
->attr
.function
&& !ref
->next
)
5134 rank
= ref
->u
.c
.component
->as
? ref
->u
.c
.component
->as
->rank
: 0;
5136 if (ref
->type
!= REF_ARRAY
)
5139 if (ref
->u
.ar
.type
== AR_FULL
)
5141 rank
= ref
->u
.ar
.as
->rank
;
5145 if (ref
->u
.ar
.type
== AR_SECTION
)
5147 /* Figure out the rank of the section. */
5149 gfc_internal_error ("expression_rank(): Two array specs");
5151 for (i
= 0; i
< ref
->u
.ar
.dimen
; i
++)
5152 if (ref
->u
.ar
.dimen_type
[i
] == DIMEN_RANGE
5153 || ref
->u
.ar
.dimen_type
[i
] == DIMEN_VECTOR
)
5163 expression_shape (e
);
5168 add_caf_get_intrinsic (gfc_expr
*e
)
5170 gfc_expr
*wrapper
, *tmp_expr
;
5174 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
5175 if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.codimen
> 0)
5180 for (n
= ref
->u
.ar
.dimen
; n
< ref
->u
.ar
.dimen
+ ref
->u
.ar
.codimen
; n
++)
5181 if (ref
->u
.ar
.dimen_type
[n
] != DIMEN_ELEMENT
)
5184 tmp_expr
= XCNEW (gfc_expr
);
5186 wrapper
= gfc_build_intrinsic_call (gfc_current_ns
, GFC_ISYM_CAF_GET
,
5187 "caf_get", tmp_expr
->where
, 1, tmp_expr
);
5188 wrapper
->ts
= e
->ts
;
5189 wrapper
->rank
= e
->rank
;
5191 wrapper
->shape
= gfc_copy_shape (e
->shape
, e
->rank
);
5198 remove_caf_get_intrinsic (gfc_expr
*e
)
5200 gcc_assert (e
->expr_type
== EXPR_FUNCTION
&& e
->value
.function
.isym
5201 && e
->value
.function
.isym
->id
== GFC_ISYM_CAF_GET
);
5202 gfc_expr
*e2
= e
->value
.function
.actual
->expr
;
5203 e
->value
.function
.actual
->expr
= NULL
;
5204 gfc_free_actual_arglist (e
->value
.function
.actual
);
5205 gfc_free_shape (&e
->shape
, e
->rank
);
5211 /* Resolve a variable expression. */
5214 resolve_variable (gfc_expr
*e
)
5221 if (e
->symtree
== NULL
)
5223 sym
= e
->symtree
->n
.sym
;
5225 /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
5226 as ts.type is set to BT_ASSUMED in resolve_symbol. */
5227 if (sym
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
))
5229 if (!actual_arg
|| inquiry_argument
)
5231 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
5232 "be used as actual argument", sym
->name
, &e
->where
);
5236 /* TS 29113, 407b. */
5237 else if (e
->ts
.type
== BT_ASSUMED
)
5241 gfc_error ("Assumed-type variable %s at %L may only be used "
5242 "as actual argument", sym
->name
, &e
->where
);
5245 else if (inquiry_argument
&& !first_actual_arg
)
5247 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5248 for all inquiry functions in resolve_function; the reason is
5249 that the function-name resolution happens too late in that
5251 gfc_error ("Assumed-type variable %s at %L as actual argument to "
5252 "an inquiry function shall be the first argument",
5253 sym
->name
, &e
->where
);
5257 /* TS 29113, C535b. */
5258 else if ((sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
5259 && CLASS_DATA (sym
)->as
5260 && CLASS_DATA (sym
)->as
->type
== AS_ASSUMED_RANK
)
5261 || (sym
->ts
.type
!= BT_CLASS
&& sym
->as
5262 && sym
->as
->type
== AS_ASSUMED_RANK
))
5266 gfc_error ("Assumed-rank variable %s at %L may only be used as "
5267 "actual argument", sym
->name
, &e
->where
);
5270 else if (inquiry_argument
&& !first_actual_arg
)
5272 /* FIXME: It doesn't work reliably as inquiry_argument is not set
5273 for all inquiry functions in resolve_function; the reason is
5274 that the function-name resolution happens too late in that
5276 gfc_error ("Assumed-rank variable %s at %L as actual argument "
5277 "to an inquiry function shall be the first argument",
5278 sym
->name
, &e
->where
);
5283 if ((sym
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
)) && e
->ref
5284 && !(e
->ref
->type
== REF_ARRAY
&& e
->ref
->u
.ar
.type
== AR_FULL
5285 && e
->ref
->next
== NULL
))
5287 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
5288 "a subobject reference", sym
->name
, &e
->ref
->u
.ar
.where
);
5291 /* TS 29113, 407b. */
5292 else if (e
->ts
.type
== BT_ASSUMED
&& e
->ref
5293 && !(e
->ref
->type
== REF_ARRAY
&& e
->ref
->u
.ar
.type
== AR_FULL
5294 && e
->ref
->next
== NULL
))
5296 gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
5297 "reference", sym
->name
, &e
->ref
->u
.ar
.where
);
5301 /* TS 29113, C535b. */
5302 if (((sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
5303 && CLASS_DATA (sym
)->as
5304 && CLASS_DATA (sym
)->as
->type
== AS_ASSUMED_RANK
)
5305 || (sym
->ts
.type
!= BT_CLASS
&& sym
->as
5306 && sym
->as
->type
== AS_ASSUMED_RANK
))
5308 && !(e
->ref
->type
== REF_ARRAY
&& e
->ref
->u
.ar
.type
== AR_FULL
5309 && e
->ref
->next
== NULL
))
5311 gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
5312 "reference", sym
->name
, &e
->ref
->u
.ar
.where
);
5316 /* For variables that are used in an associate (target => object) where
5317 the object's basetype is array valued while the target is scalar,
5318 the ts' type of the component refs is still array valued, which
5319 can't be translated that way. */
5320 if (sym
->assoc
&& e
->rank
== 0 && e
->ref
&& sym
->ts
.type
== BT_CLASS
5321 && sym
->assoc
->target
->ts
.type
== BT_CLASS
5322 && CLASS_DATA (sym
->assoc
->target
)->as
)
5324 gfc_ref
*ref
= e
->ref
;
5330 ref
->u
.c
.sym
= sym
->ts
.u
.derived
;
5331 /* Stop the loop. */
5341 /* If this is an associate-name, it may be parsed with an array reference
5342 in error even though the target is scalar. Fail directly in this case.
5343 TODO Understand why class scalar expressions must be excluded. */
5344 if (sym
->assoc
&& !(sym
->ts
.type
== BT_CLASS
&& e
->rank
== 0))
5346 if (sym
->ts
.type
== BT_CLASS
)
5347 gfc_fix_class_refs (e
);
5348 if (!sym
->attr
.dimension
&& e
->ref
&& e
->ref
->type
== REF_ARRAY
)
5352 if (sym
->ts
.type
== BT_DERIVED
&& sym
->ts
.u
.derived
->attr
.generic
)
5353 sym
->ts
.u
.derived
= gfc_find_dt_in_generic (sym
->ts
.u
.derived
);
5355 /* On the other hand, the parser may not have known this is an array;
5356 in this case, we have to add a FULL reference. */
5357 if (sym
->assoc
&& sym
->attr
.dimension
&& !e
->ref
)
5359 e
->ref
= gfc_get_ref ();
5360 e
->ref
->type
= REF_ARRAY
;
5361 e
->ref
->u
.ar
.type
= AR_FULL
;
5362 e
->ref
->u
.ar
.dimen
= 0;
5365 /* Like above, but for class types, where the checking whether an array
5366 ref is present is more complicated. Furthermore make sure not to add
5367 the full array ref to _vptr or _len refs. */
5368 if (sym
->assoc
&& sym
->ts
.type
== BT_CLASS
5369 && CLASS_DATA (sym
)->attr
.dimension
5370 && (e
->ts
.type
!= BT_DERIVED
|| !e
->ts
.u
.derived
->attr
.vtype
))
5372 gfc_ref
*ref
, *newref
;
5374 newref
= gfc_get_ref ();
5375 newref
->type
= REF_ARRAY
;
5376 newref
->u
.ar
.type
= AR_FULL
;
5377 newref
->u
.ar
.dimen
= 0;
5378 /* Because this is an associate var and the first ref either is a ref to
5379 the _data component or not, no traversal of the ref chain is
5380 needed. The array ref needs to be inserted after the _data ref,
5381 or when that is not present, which may happend for polymorphic
5382 types, then at the first position. */
5386 else if (ref
->type
== REF_COMPONENT
5387 && strcmp ("_data", ref
->u
.c
.component
->name
) == 0)
5389 if (!ref
->next
|| ref
->next
->type
!= REF_ARRAY
)
5391 newref
->next
= ref
->next
;
5395 /* Array ref present already. */
5396 gfc_free_ref_list (newref
);
5398 else if (ref
->type
== REF_ARRAY
)
5399 /* Array ref present already. */
5400 gfc_free_ref_list (newref
);
5408 if (e
->ref
&& !resolve_ref (e
))
5411 if (sym
->attr
.flavor
== FL_PROCEDURE
5412 && (!sym
->attr
.function
5413 || (sym
->attr
.function
&& sym
->result
5414 && sym
->result
->attr
.proc_pointer
5415 && !sym
->result
->attr
.function
)))
5417 e
->ts
.type
= BT_PROCEDURE
;
5418 goto resolve_procedure
;
5421 if (sym
->ts
.type
!= BT_UNKNOWN
)
5422 gfc_variable_attr (e
, &e
->ts
);
5423 else if (sym
->attr
.flavor
== FL_PROCEDURE
5424 && sym
->attr
.function
&& sym
->result
5425 && sym
->result
->ts
.type
!= BT_UNKNOWN
5426 && sym
->result
->attr
.proc_pointer
)
5427 e
->ts
= sym
->result
->ts
;
5430 /* Must be a simple variable reference. */
5431 if (!gfc_set_default_type (sym
, 1, sym
->ns
))
5436 if (check_assumed_size_reference (sym
, e
))
5439 /* Deal with forward references to entries during gfc_resolve_code, to
5440 satisfy, at least partially, 12.5.2.5. */
5441 if (gfc_current_ns
->entries
5442 && current_entry_id
== sym
->entry_id
5445 && cs_base
->current
->op
!= EXEC_ENTRY
)
5447 gfc_entry_list
*entry
;
5448 gfc_formal_arglist
*formal
;
5450 bool seen
, saved_specification_expr
;
5452 /* If the symbol is a dummy... */
5453 if (sym
->attr
.dummy
&& sym
->ns
== gfc_current_ns
)
5455 entry
= gfc_current_ns
->entries
;
5458 /* ...test if the symbol is a parameter of previous entries. */
5459 for (; entry
&& entry
->id
<= current_entry_id
; entry
= entry
->next
)
5460 for (formal
= entry
->sym
->formal
; formal
; formal
= formal
->next
)
5462 if (formal
->sym
&& sym
->name
== formal
->sym
->name
)
5469 /* If it has not been seen as a dummy, this is an error. */
5472 if (specification_expr
)
5473 gfc_error ("Variable %qs, used in a specification expression"
5474 ", is referenced at %L before the ENTRY statement "
5475 "in which it is a parameter",
5476 sym
->name
, &cs_base
->current
->loc
);
5478 gfc_error ("Variable %qs is used at %L before the ENTRY "
5479 "statement in which it is a parameter",
5480 sym
->name
, &cs_base
->current
->loc
);
5485 /* Now do the same check on the specification expressions. */
5486 saved_specification_expr
= specification_expr
;
5487 specification_expr
= true;
5488 if (sym
->ts
.type
== BT_CHARACTER
5489 && !gfc_resolve_expr (sym
->ts
.u
.cl
->length
))
5493 for (n
= 0; n
< sym
->as
->rank
; n
++)
5495 if (!gfc_resolve_expr (sym
->as
->lower
[n
]))
5497 if (!gfc_resolve_expr (sym
->as
->upper
[n
]))
5500 specification_expr
= saved_specification_expr
;
5503 /* Update the symbol's entry level. */
5504 sym
->entry_id
= current_entry_id
+ 1;
5507 /* If a symbol has been host_associated mark it. This is used latter,
5508 to identify if aliasing is possible via host association. */
5509 if (sym
->attr
.flavor
== FL_VARIABLE
5510 && gfc_current_ns
->parent
5511 && (gfc_current_ns
->parent
== sym
->ns
5512 || (gfc_current_ns
->parent
->parent
5513 && gfc_current_ns
->parent
->parent
== sym
->ns
)))
5514 sym
->attr
.host_assoc
= 1;
5516 if (gfc_current_ns
->proc_name
5517 && sym
->attr
.dimension
5518 && (sym
->ns
!= gfc_current_ns
5519 || sym
->attr
.use_assoc
5520 || sym
->attr
.in_common
))
5521 gfc_current_ns
->proc_name
->attr
.array_outer_dependency
= 1;
5524 if (t
&& !resolve_procedure_expression (e
))
5527 /* F2008, C617 and C1229. */
5528 if (!inquiry_argument
&& (e
->ts
.type
== BT_CLASS
|| e
->ts
.type
== BT_DERIVED
)
5529 && gfc_is_coindexed (e
))
5531 gfc_ref
*ref
, *ref2
= NULL
;
5533 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
5535 if (ref
->type
== REF_COMPONENT
)
5537 if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.codimen
> 0)
5541 for ( ; ref
; ref
= ref
->next
)
5542 if (ref
->type
== REF_COMPONENT
)
5545 /* Expression itself is not coindexed object. */
5546 if (ref
&& e
->ts
.type
== BT_CLASS
)
5548 gfc_error ("Polymorphic subobject of coindexed object at %L",
5553 /* Expression itself is coindexed object. */
5557 c
= ref2
? ref2
->u
.c
.component
: e
->symtree
->n
.sym
->components
;
5558 for ( ; c
; c
= c
->next
)
5559 if (c
->attr
.allocatable
&& c
->ts
.type
== BT_CLASS
)
5561 gfc_error ("Coindexed object with polymorphic allocatable "
5562 "subcomponent at %L", &e
->where
);
5570 expression_rank (e
);
5572 if (t
&& flag_coarray
== GFC_FCOARRAY_LIB
&& gfc_is_coindexed (e
))
5573 add_caf_get_intrinsic (e
);
5579 /* Checks to see that the correct symbol has been host associated.
5580 The only situation where this arises is that in which a twice
5581 contained function is parsed after the host association is made.
5582 Therefore, on detecting this, change the symbol in the expression
5583 and convert the array reference into an actual arglist if the old
5584 symbol is a variable. */
5586 check_host_association (gfc_expr
*e
)
5588 gfc_symbol
*sym
, *old_sym
;
5592 gfc_actual_arglist
*arg
, *tail
= NULL
;
5593 bool retval
= e
->expr_type
== EXPR_FUNCTION
;
5595 /* If the expression is the result of substitution in
5596 interface.c(gfc_extend_expr) because there is no way in
5597 which the host association can be wrong. */
5598 if (e
->symtree
== NULL
5599 || e
->symtree
->n
.sym
== NULL
5600 || e
->user_operator
)
5603 old_sym
= e
->symtree
->n
.sym
;
5605 if (gfc_current_ns
->parent
5606 && old_sym
->ns
!= gfc_current_ns
)
5608 /* Use the 'USE' name so that renamed module symbols are
5609 correctly handled. */
5610 gfc_find_symbol (e
->symtree
->name
, gfc_current_ns
, 1, &sym
);
5612 if (sym
&& old_sym
!= sym
5613 && sym
->ts
.type
== old_sym
->ts
.type
5614 && sym
->attr
.flavor
== FL_PROCEDURE
5615 && sym
->attr
.contained
)
5617 /* Clear the shape, since it might not be valid. */
5618 gfc_free_shape (&e
->shape
, e
->rank
);
5620 /* Give the expression the right symtree! */
5621 gfc_find_sym_tree (e
->symtree
->name
, NULL
, 1, &st
);
5622 gcc_assert (st
!= NULL
);
5624 if (old_sym
->attr
.flavor
== FL_PROCEDURE
5625 || e
->expr_type
== EXPR_FUNCTION
)
5627 /* Original was function so point to the new symbol, since
5628 the actual argument list is already attached to the
5630 e
->value
.function
.esym
= NULL
;
5635 /* Original was variable so convert array references into
5636 an actual arglist. This does not need any checking now
5637 since resolve_function will take care of it. */
5638 e
->value
.function
.actual
= NULL
;
5639 e
->expr_type
= EXPR_FUNCTION
;
5642 /* Ambiguity will not arise if the array reference is not
5643 the last reference. */
5644 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
5645 if (ref
->type
== REF_ARRAY
&& ref
->next
== NULL
)
5648 gcc_assert (ref
->type
== REF_ARRAY
);
5650 /* Grab the start expressions from the array ref and
5651 copy them into actual arguments. */
5652 for (n
= 0; n
< ref
->u
.ar
.dimen
; n
++)
5654 arg
= gfc_get_actual_arglist ();
5655 arg
->expr
= gfc_copy_expr (ref
->u
.ar
.start
[n
]);
5656 if (e
->value
.function
.actual
== NULL
)
5657 tail
= e
->value
.function
.actual
= arg
;
5665 /* Dump the reference list and set the rank. */
5666 gfc_free_ref_list (e
->ref
);
5668 e
->rank
= sym
->as
? sym
->as
->rank
: 0;
5671 gfc_resolve_expr (e
);
5675 /* This might have changed! */
5676 return e
->expr_type
== EXPR_FUNCTION
;
5681 gfc_resolve_character_operator (gfc_expr
*e
)
5683 gfc_expr
*op1
= e
->value
.op
.op1
;
5684 gfc_expr
*op2
= e
->value
.op
.op2
;
5685 gfc_expr
*e1
= NULL
;
5686 gfc_expr
*e2
= NULL
;
5688 gcc_assert (e
->value
.op
.op
== INTRINSIC_CONCAT
);
5690 if (op1
->ts
.u
.cl
&& op1
->ts
.u
.cl
->length
)
5691 e1
= gfc_copy_expr (op1
->ts
.u
.cl
->length
);
5692 else if (op1
->expr_type
== EXPR_CONSTANT
)
5693 e1
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
,
5694 op1
->value
.character
.length
);
5696 if (op2
->ts
.u
.cl
&& op2
->ts
.u
.cl
->length
)
5697 e2
= gfc_copy_expr (op2
->ts
.u
.cl
->length
);
5698 else if (op2
->expr_type
== EXPR_CONSTANT
)
5699 e2
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
,
5700 op2
->value
.character
.length
);
5702 e
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
5712 e
->ts
.u
.cl
->length
= gfc_add (e1
, e2
);
5713 e
->ts
.u
.cl
->length
->ts
.type
= BT_INTEGER
;
5714 e
->ts
.u
.cl
->length
->ts
.kind
= gfc_charlen_int_kind
;
5715 gfc_simplify_expr (e
->ts
.u
.cl
->length
, 0);
5716 gfc_resolve_expr (e
->ts
.u
.cl
->length
);
5722 /* Ensure that an character expression has a charlen and, if possible, a
5723 length expression. */
5726 fixup_charlen (gfc_expr
*e
)
5728 /* The cases fall through so that changes in expression type and the need
5729 for multiple fixes are picked up. In all circumstances, a charlen should
5730 be available for the middle end to hang a backend_decl on. */
5731 switch (e
->expr_type
)
5734 gfc_resolve_character_operator (e
);
5738 if (e
->expr_type
== EXPR_ARRAY
)
5739 gfc_resolve_character_array_constructor (e
);
5742 case EXPR_SUBSTRING
:
5743 if (!e
->ts
.u
.cl
&& e
->ref
)
5744 gfc_resolve_substring_charlen (e
);
5749 e
->ts
.u
.cl
= gfc_new_charlen (gfc_current_ns
, NULL
);
5756 /* Update an actual argument to include the passed-object for type-bound
5757 procedures at the right position. */
5759 static gfc_actual_arglist
*
5760 update_arglist_pass (gfc_actual_arglist
* lst
, gfc_expr
* po
, unsigned argpos
,
5763 gcc_assert (argpos
> 0);
5767 gfc_actual_arglist
* result
;
5769 result
= gfc_get_actual_arglist ();
5773 result
->name
= name
;
5779 lst
->next
= update_arglist_pass (lst
->next
, po
, argpos
- 1, name
);
5781 lst
= update_arglist_pass (NULL
, po
, argpos
- 1, name
);
5786 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it). */
5789 extract_compcall_passed_object (gfc_expr
* e
)
5793 gcc_assert (e
->expr_type
== EXPR_COMPCALL
);
5795 if (e
->value
.compcall
.base_object
)
5796 po
= gfc_copy_expr (e
->value
.compcall
.base_object
);
5799 po
= gfc_get_expr ();
5800 po
->expr_type
= EXPR_VARIABLE
;
5801 po
->symtree
= e
->symtree
;
5802 po
->ref
= gfc_copy_ref (e
->ref
);
5803 po
->where
= e
->where
;
5806 if (!gfc_resolve_expr (po
))
5813 /* Update the arglist of an EXPR_COMPCALL expression to include the
5817 update_compcall_arglist (gfc_expr
* e
)
5820 gfc_typebound_proc
* tbp
;
5822 tbp
= e
->value
.compcall
.tbp
;
5827 po
= extract_compcall_passed_object (e
);
5831 if (tbp
->nopass
|| e
->value
.compcall
.ignore_pass
)
5837 if (tbp
->pass_arg_num
<= 0)
5840 e
->value
.compcall
.actual
= update_arglist_pass (e
->value
.compcall
.actual
, po
,
5848 /* Extract the passed object from a PPC call (a copy of it). */
5851 extract_ppc_passed_object (gfc_expr
*e
)
5856 po
= gfc_get_expr ();
5857 po
->expr_type
= EXPR_VARIABLE
;
5858 po
->symtree
= e
->symtree
;
5859 po
->ref
= gfc_copy_ref (e
->ref
);
5860 po
->where
= e
->where
;
5862 /* Remove PPC reference. */
5864 while ((*ref
)->next
)
5865 ref
= &(*ref
)->next
;
5866 gfc_free_ref_list (*ref
);
5869 if (!gfc_resolve_expr (po
))
5876 /* Update the actual arglist of a procedure pointer component to include the
5880 update_ppc_arglist (gfc_expr
* e
)
5884 gfc_typebound_proc
* tb
;
5886 ppc
= gfc_get_proc_ptr_comp (e
);
5894 else if (tb
->nopass
)
5897 po
= extract_ppc_passed_object (e
);
5904 gfc_error ("Passed-object at %L must be scalar", &e
->where
);
5909 if (po
->ts
.type
== BT_DERIVED
&& po
->ts
.u
.derived
->attr
.abstract
)
5911 gfc_error ("Base object for procedure-pointer component call at %L is of"
5912 " ABSTRACT type %qs", &e
->where
, po
->ts
.u
.derived
->name
);
5916 gcc_assert (tb
->pass_arg_num
> 0);
5917 e
->value
.compcall
.actual
= update_arglist_pass (e
->value
.compcall
.actual
, po
,
5925 /* Check that the object a TBP is called on is valid, i.e. it must not be
5926 of ABSTRACT type (as in subobject%abstract_parent%tbp()). */
5929 check_typebound_baseobject (gfc_expr
* e
)
5932 bool return_value
= false;
5934 base
= extract_compcall_passed_object (e
);
5938 gcc_assert (base
->ts
.type
== BT_DERIVED
|| base
->ts
.type
== BT_CLASS
);
5940 if (base
->ts
.type
== BT_CLASS
&& !gfc_expr_attr (base
).class_ok
)
5944 if (base
->ts
.type
== BT_DERIVED
&& base
->ts
.u
.derived
->attr
.abstract
)
5946 gfc_error ("Base object for type-bound procedure call at %L is of"
5947 " ABSTRACT type %qs", &e
->where
, base
->ts
.u
.derived
->name
);
5951 /* F08:C1230. If the procedure called is NOPASS,
5952 the base object must be scalar. */
5953 if (e
->value
.compcall
.tbp
->nopass
&& base
->rank
!= 0)
5955 gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
5956 " be scalar", &e
->where
);
5960 return_value
= true;
5963 gfc_free_expr (base
);
5964 return return_value
;
5968 /* Resolve a call to a type-bound procedure, either function or subroutine,
5969 statically from the data in an EXPR_COMPCALL expression. The adapted
5970 arglist and the target-procedure symtree are returned. */
5973 resolve_typebound_static (gfc_expr
* e
, gfc_symtree
** target
,
5974 gfc_actual_arglist
** actual
)
5976 gcc_assert (e
->expr_type
== EXPR_COMPCALL
);
5977 gcc_assert (!e
->value
.compcall
.tbp
->is_generic
);
5979 /* Update the actual arglist for PASS. */
5980 if (!update_compcall_arglist (e
))
5983 *actual
= e
->value
.compcall
.actual
;
5984 *target
= e
->value
.compcall
.tbp
->u
.specific
;
5986 gfc_free_ref_list (e
->ref
);
5988 e
->value
.compcall
.actual
= NULL
;
5990 /* If we find a deferred typebound procedure, check for derived types
5991 that an overriding typebound procedure has not been missed. */
5992 if (e
->value
.compcall
.name
5993 && !e
->value
.compcall
.tbp
->non_overridable
5994 && e
->value
.compcall
.base_object
5995 && e
->value
.compcall
.base_object
->ts
.type
== BT_DERIVED
)
5998 gfc_symbol
*derived
;
6000 /* Use the derived type of the base_object. */
6001 derived
= e
->value
.compcall
.base_object
->ts
.u
.derived
;
6004 /* If necessary, go through the inheritance chain. */
6005 while (!st
&& derived
)
6007 /* Look for the typebound procedure 'name'. */
6008 if (derived
->f2k_derived
&& derived
->f2k_derived
->tb_sym_root
)
6009 st
= gfc_find_symtree (derived
->f2k_derived
->tb_sym_root
,
6010 e
->value
.compcall
.name
);
6012 derived
= gfc_get_derived_super_type (derived
);
6015 /* Now find the specific name in the derived type namespace. */
6016 if (st
&& st
->n
.tb
&& st
->n
.tb
->u
.specific
)
6017 gfc_find_sym_tree (st
->n
.tb
->u
.specific
->name
,
6018 derived
->ns
, 1, &st
);
6026 /* Get the ultimate declared type from an expression. In addition,
6027 return the last class/derived type reference and the copy of the
6028 reference list. If check_types is set true, derived types are
6029 identified as well as class references. */
6031 get_declared_from_expr (gfc_ref
**class_ref
, gfc_ref
**new_ref
,
6032 gfc_expr
*e
, bool check_types
)
6034 gfc_symbol
*declared
;
6041 *new_ref
= gfc_copy_ref (e
->ref
);
6043 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
6045 if (ref
->type
!= REF_COMPONENT
)
6048 if ((ref
->u
.c
.component
->ts
.type
== BT_CLASS
6049 || (check_types
&& gfc_bt_struct (ref
->u
.c
.component
->ts
.type
)))
6050 && ref
->u
.c
.component
->attr
.flavor
!= FL_PROCEDURE
)
6052 declared
= ref
->u
.c
.component
->ts
.u
.derived
;
6058 if (declared
== NULL
)
6059 declared
= e
->symtree
->n
.sym
->ts
.u
.derived
;
6065 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
6066 which of the specific bindings (if any) matches the arglist and transform
6067 the expression into a call of that binding. */
6070 resolve_typebound_generic_call (gfc_expr
* e
, const char **name
)
6072 gfc_typebound_proc
* genproc
;
6073 const char* genname
;
6075 gfc_symbol
*derived
;
6077 gcc_assert (e
->expr_type
== EXPR_COMPCALL
);
6078 genname
= e
->value
.compcall
.name
;
6079 genproc
= e
->value
.compcall
.tbp
;
6081 if (!genproc
->is_generic
)
6084 /* Try the bindings on this type and in the inheritance hierarchy. */
6085 for (; genproc
; genproc
= genproc
->overridden
)
6089 gcc_assert (genproc
->is_generic
);
6090 for (g
= genproc
->u
.generic
; g
; g
= g
->next
)
6093 gfc_actual_arglist
* args
;
6096 gcc_assert (g
->specific
);
6098 if (g
->specific
->error
)
6101 target
= g
->specific
->u
.specific
->n
.sym
;
6103 /* Get the right arglist by handling PASS/NOPASS. */
6104 args
= gfc_copy_actual_arglist (e
->value
.compcall
.actual
);
6105 if (!g
->specific
->nopass
)
6108 po
= extract_compcall_passed_object (e
);
6111 gfc_free_actual_arglist (args
);
6115 gcc_assert (g
->specific
->pass_arg_num
> 0);
6116 gcc_assert (!g
->specific
->error
);
6117 args
= update_arglist_pass (args
, po
, g
->specific
->pass_arg_num
,
6118 g
->specific
->pass_arg
);
6120 resolve_actual_arglist (args
, target
->attr
.proc
,
6121 is_external_proc (target
)
6122 && gfc_sym_get_dummy_args (target
) == NULL
);
6124 /* Check if this arglist matches the formal. */
6125 matches
= gfc_arglist_matches_symbol (&args
, target
);
6127 /* Clean up and break out of the loop if we've found it. */
6128 gfc_free_actual_arglist (args
);
6131 e
->value
.compcall
.tbp
= g
->specific
;
6132 genname
= g
->specific_st
->name
;
6133 /* Pass along the name for CLASS methods, where the vtab
6134 procedure pointer component has to be referenced. */
6142 /* Nothing matching found! */
6143 gfc_error ("Found no matching specific binding for the call to the GENERIC"
6144 " %qs at %L", genname
, &e
->where
);
6148 /* Make sure that we have the right specific instance for the name. */
6149 derived
= get_declared_from_expr (NULL
, NULL
, e
, true);
6151 st
= gfc_find_typebound_proc (derived
, NULL
, genname
, true, &e
->where
);
6153 e
->value
.compcall
.tbp
= st
->n
.tb
;
6159 /* Resolve a call to a type-bound subroutine. */
6162 resolve_typebound_call (gfc_code
* c
, const char **name
, bool *overridable
)
6164 gfc_actual_arglist
* newactual
;
6165 gfc_symtree
* target
;
6167 /* Check that's really a SUBROUTINE. */
6168 if (!c
->expr1
->value
.compcall
.tbp
->subroutine
)
6170 gfc_error ("%qs at %L should be a SUBROUTINE",
6171 c
->expr1
->value
.compcall
.name
, &c
->loc
);
6175 if (!check_typebound_baseobject (c
->expr1
))
6178 /* Pass along the name for CLASS methods, where the vtab
6179 procedure pointer component has to be referenced. */
6181 *name
= c
->expr1
->value
.compcall
.name
;
6183 if (!resolve_typebound_generic_call (c
->expr1
, name
))
6186 /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
6188 *overridable
= !c
->expr1
->value
.compcall
.tbp
->non_overridable
;
6190 /* Transform into an ordinary EXEC_CALL for now. */
6192 if (!resolve_typebound_static (c
->expr1
, &target
, &newactual
))
6195 c
->ext
.actual
= newactual
;
6196 c
->symtree
= target
;
6197 c
->op
= (c
->expr1
->value
.compcall
.assign
? EXEC_ASSIGN_CALL
: EXEC_CALL
);
6199 gcc_assert (!c
->expr1
->ref
&& !c
->expr1
->value
.compcall
.actual
);
6201 gfc_free_expr (c
->expr1
);
6202 c
->expr1
= gfc_get_expr ();
6203 c
->expr1
->expr_type
= EXPR_FUNCTION
;
6204 c
->expr1
->symtree
= target
;
6205 c
->expr1
->where
= c
->loc
;
6207 return resolve_call (c
);
6211 /* Resolve a component-call expression. */
6213 resolve_compcall (gfc_expr
* e
, const char **name
)
6215 gfc_actual_arglist
* newactual
;
6216 gfc_symtree
* target
;
6218 /* Check that's really a FUNCTION. */
6219 if (!e
->value
.compcall
.tbp
->function
)
6221 gfc_error ("%qs at %L should be a FUNCTION",
6222 e
->value
.compcall
.name
, &e
->where
);
6226 /* These must not be assign-calls! */
6227 gcc_assert (!e
->value
.compcall
.assign
);
6229 if (!check_typebound_baseobject (e
))
6232 /* Pass along the name for CLASS methods, where the vtab
6233 procedure pointer component has to be referenced. */
6235 *name
= e
->value
.compcall
.name
;
6237 if (!resolve_typebound_generic_call (e
, name
))
6239 gcc_assert (!e
->value
.compcall
.tbp
->is_generic
);
6241 /* Take the rank from the function's symbol. */
6242 if (e
->value
.compcall
.tbp
->u
.specific
->n
.sym
->as
)
6243 e
->rank
= e
->value
.compcall
.tbp
->u
.specific
->n
.sym
->as
->rank
;
6245 /* For now, we simply transform it into an EXPR_FUNCTION call with the same
6246 arglist to the TBP's binding target. */
6248 if (!resolve_typebound_static (e
, &target
, &newactual
))
6251 e
->value
.function
.actual
= newactual
;
6252 e
->value
.function
.name
= NULL
;
6253 e
->value
.function
.esym
= target
->n
.sym
;
6254 e
->value
.function
.isym
= NULL
;
6255 e
->symtree
= target
;
6256 e
->ts
= target
->n
.sym
->ts
;
6257 e
->expr_type
= EXPR_FUNCTION
;
6259 /* Resolution is not necessary if this is a class subroutine; this
6260 function only has to identify the specific proc. Resolution of
6261 the call will be done next in resolve_typebound_call. */
6262 return gfc_resolve_expr (e
);
6266 static bool resolve_fl_derived (gfc_symbol
*sym
);
6269 /* Resolve a typebound function, or 'method'. First separate all
6270 the non-CLASS references by calling resolve_compcall directly. */
6273 resolve_typebound_function (gfc_expr
* e
)
6275 gfc_symbol
*declared
;
6287 /* Deal with typebound operators for CLASS objects. */
6288 expr
= e
->value
.compcall
.base_object
;
6289 overridable
= !e
->value
.compcall
.tbp
->non_overridable
;
6290 if (expr
&& expr
->ts
.type
== BT_CLASS
&& e
->value
.compcall
.name
)
6292 /* If the base_object is not a variable, the corresponding actual
6293 argument expression must be stored in e->base_expression so
6294 that the corresponding tree temporary can be used as the base
6295 object in gfc_conv_procedure_call. */
6296 if (expr
->expr_type
!= EXPR_VARIABLE
)
6298 gfc_actual_arglist
*args
;
6300 for (args
= e
->value
.function
.actual
; args
; args
= args
->next
)
6302 if (expr
== args
->expr
)
6307 /* Since the typebound operators are generic, we have to ensure
6308 that any delays in resolution are corrected and that the vtab
6311 declared
= ts
.u
.derived
;
6312 c
= gfc_find_component (declared
, "_vptr", true, true, NULL
);
6313 if (c
->ts
.u
.derived
== NULL
)
6314 c
->ts
.u
.derived
= gfc_find_derived_vtab (declared
);
6316 if (!resolve_compcall (e
, &name
))
6319 /* Use the generic name if it is there. */
6320 name
= name
? name
: e
->value
.function
.esym
->name
;
6321 e
->symtree
= expr
->symtree
;
6322 e
->ref
= gfc_copy_ref (expr
->ref
);
6323 get_declared_from_expr (&class_ref
, NULL
, e
, false);
6325 /* Trim away the extraneous references that emerge from nested
6326 use of interface.c (extend_expr). */
6327 if (class_ref
&& class_ref
->next
)
6329 gfc_free_ref_list (class_ref
->next
);
6330 class_ref
->next
= NULL
;
6332 else if (e
->ref
&& !class_ref
&& expr
->ts
.type
!= BT_CLASS
)
6334 gfc_free_ref_list (e
->ref
);
6338 gfc_add_vptr_component (e
);
6339 gfc_add_component_ref (e
, name
);
6340 e
->value
.function
.esym
= NULL
;
6341 if (expr
->expr_type
!= EXPR_VARIABLE
)
6342 e
->base_expr
= expr
;
6347 return resolve_compcall (e
, NULL
);
6349 if (!resolve_ref (e
))
6352 /* Get the CLASS declared type. */
6353 declared
= get_declared_from_expr (&class_ref
, &new_ref
, e
, true);
6355 if (!resolve_fl_derived (declared
))
6358 /* Weed out cases of the ultimate component being a derived type. */
6359 if ((class_ref
&& gfc_bt_struct (class_ref
->u
.c
.component
->ts
.type
))
6360 || (!class_ref
&& st
->n
.sym
->ts
.type
!= BT_CLASS
))
6362 gfc_free_ref_list (new_ref
);
6363 return resolve_compcall (e
, NULL
);
6366 c
= gfc_find_component (declared
, "_data", true, true, NULL
);
6367 declared
= c
->ts
.u
.derived
;
6369 /* Treat the call as if it is a typebound procedure, in order to roll
6370 out the correct name for the specific function. */
6371 if (!resolve_compcall (e
, &name
))
6373 gfc_free_ref_list (new_ref
);
6380 /* Convert the expression to a procedure pointer component call. */
6381 e
->value
.function
.esym
= NULL
;
6387 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6388 gfc_add_vptr_component (e
);
6389 gfc_add_component_ref (e
, name
);
6391 /* Recover the typespec for the expression. This is really only
6392 necessary for generic procedures, where the additional call
6393 to gfc_add_component_ref seems to throw the collection of the
6394 correct typespec. */
6398 gfc_free_ref_list (new_ref
);
6403 /* Resolve a typebound subroutine, or 'method'. First separate all
6404 the non-CLASS references by calling resolve_typebound_call
6408 resolve_typebound_subroutine (gfc_code
*code
)
6410 gfc_symbol
*declared
;
6420 st
= code
->expr1
->symtree
;
6422 /* Deal with typebound operators for CLASS objects. */
6423 expr
= code
->expr1
->value
.compcall
.base_object
;
6424 overridable
= !code
->expr1
->value
.compcall
.tbp
->non_overridable
;
6425 if (expr
&& expr
->ts
.type
== BT_CLASS
&& code
->expr1
->value
.compcall
.name
)
6427 /* If the base_object is not a variable, the corresponding actual
6428 argument expression must be stored in e->base_expression so
6429 that the corresponding tree temporary can be used as the base
6430 object in gfc_conv_procedure_call. */
6431 if (expr
->expr_type
!= EXPR_VARIABLE
)
6433 gfc_actual_arglist
*args
;
6435 args
= code
->expr1
->value
.function
.actual
;
6436 for (; args
; args
= args
->next
)
6437 if (expr
== args
->expr
)
6441 /* Since the typebound operators are generic, we have to ensure
6442 that any delays in resolution are corrected and that the vtab
6444 declared
= expr
->ts
.u
.derived
;
6445 c
= gfc_find_component (declared
, "_vptr", true, true, NULL
);
6446 if (c
->ts
.u
.derived
== NULL
)
6447 c
->ts
.u
.derived
= gfc_find_derived_vtab (declared
);
6449 if (!resolve_typebound_call (code
, &name
, NULL
))
6452 /* Use the generic name if it is there. */
6453 name
= name
? name
: code
->expr1
->value
.function
.esym
->name
;
6454 code
->expr1
->symtree
= expr
->symtree
;
6455 code
->expr1
->ref
= gfc_copy_ref (expr
->ref
);
6457 /* Trim away the extraneous references that emerge from nested
6458 use of interface.c (extend_expr). */
6459 get_declared_from_expr (&class_ref
, NULL
, code
->expr1
, false);
6460 if (class_ref
&& class_ref
->next
)
6462 gfc_free_ref_list (class_ref
->next
);
6463 class_ref
->next
= NULL
;
6465 else if (code
->expr1
->ref
&& !class_ref
)
6467 gfc_free_ref_list (code
->expr1
->ref
);
6468 code
->expr1
->ref
= NULL
;
6471 /* Now use the procedure in the vtable. */
6472 gfc_add_vptr_component (code
->expr1
);
6473 gfc_add_component_ref (code
->expr1
, name
);
6474 code
->expr1
->value
.function
.esym
= NULL
;
6475 if (expr
->expr_type
!= EXPR_VARIABLE
)
6476 code
->expr1
->base_expr
= expr
;
6481 return resolve_typebound_call (code
, NULL
, NULL
);
6483 if (!resolve_ref (code
->expr1
))
6486 /* Get the CLASS declared type. */
6487 get_declared_from_expr (&class_ref
, &new_ref
, code
->expr1
, true);
6489 /* Weed out cases of the ultimate component being a derived type. */
6490 if ((class_ref
&& gfc_bt_struct (class_ref
->u
.c
.component
->ts
.type
))
6491 || (!class_ref
&& st
->n
.sym
->ts
.type
!= BT_CLASS
))
6493 gfc_free_ref_list (new_ref
);
6494 return resolve_typebound_call (code
, NULL
, NULL
);
6497 if (!resolve_typebound_call (code
, &name
, &overridable
))
6499 gfc_free_ref_list (new_ref
);
6502 ts
= code
->expr1
->ts
;
6506 /* Convert the expression to a procedure pointer component call. */
6507 code
->expr1
->value
.function
.esym
= NULL
;
6508 code
->expr1
->symtree
= st
;
6511 code
->expr1
->ref
= new_ref
;
6513 /* '_vptr' points to the vtab, which contains the procedure pointers. */
6514 gfc_add_vptr_component (code
->expr1
);
6515 gfc_add_component_ref (code
->expr1
, name
);
6517 /* Recover the typespec for the expression. This is really only
6518 necessary for generic procedures, where the additional call
6519 to gfc_add_component_ref seems to throw the collection of the
6520 correct typespec. */
6521 code
->expr1
->ts
= ts
;
6524 gfc_free_ref_list (new_ref
);
6530 /* Resolve a CALL to a Procedure Pointer Component (Subroutine). */
6533 resolve_ppc_call (gfc_code
* c
)
6535 gfc_component
*comp
;
6537 comp
= gfc_get_proc_ptr_comp (c
->expr1
);
6538 gcc_assert (comp
!= NULL
);
6540 c
->resolved_sym
= c
->expr1
->symtree
->n
.sym
;
6541 c
->expr1
->expr_type
= EXPR_VARIABLE
;
6543 if (!comp
->attr
.subroutine
)
6544 gfc_add_subroutine (&comp
->attr
, comp
->name
, &c
->expr1
->where
);
6546 if (!resolve_ref (c
->expr1
))
6549 if (!update_ppc_arglist (c
->expr1
))
6552 c
->ext
.actual
= c
->expr1
->value
.compcall
.actual
;
6554 if (!resolve_actual_arglist (c
->ext
.actual
, comp
->attr
.proc
,
6555 !(comp
->ts
.interface
6556 && comp
->ts
.interface
->formal
)))
6559 if (!pure_subroutine (comp
->ts
.interface
, comp
->name
, &c
->expr1
->where
))
6562 gfc_ppc_use (comp
, &c
->expr1
->value
.compcall
.actual
, &c
->expr1
->where
);
6568 /* Resolve a Function Call to a Procedure Pointer Component (Function). */
6571 resolve_expr_ppc (gfc_expr
* e
)
6573 gfc_component
*comp
;
6575 comp
= gfc_get_proc_ptr_comp (e
);
6576 gcc_assert (comp
!= NULL
);
6578 /* Convert to EXPR_FUNCTION. */
6579 e
->expr_type
= EXPR_FUNCTION
;
6580 e
->value
.function
.isym
= NULL
;
6581 e
->value
.function
.actual
= e
->value
.compcall
.actual
;
6583 if (comp
->as
!= NULL
)
6584 e
->rank
= comp
->as
->rank
;
6586 if (!comp
->attr
.function
)
6587 gfc_add_function (&comp
->attr
, comp
->name
, &e
->where
);
6589 if (!resolve_ref (e
))
6592 if (!resolve_actual_arglist (e
->value
.function
.actual
, comp
->attr
.proc
,
6593 !(comp
->ts
.interface
6594 && comp
->ts
.interface
->formal
)))
6597 if (!update_ppc_arglist (e
))
6600 if (!check_pure_function(e
))
6603 gfc_ppc_use (comp
, &e
->value
.compcall
.actual
, &e
->where
);
6610 gfc_is_expandable_expr (gfc_expr
*e
)
6612 gfc_constructor
*con
;
6614 if (e
->expr_type
== EXPR_ARRAY
)
6616 /* Traverse the constructor looking for variables that are flavor
6617 parameter. Parameters must be expanded since they are fully used at
6619 con
= gfc_constructor_first (e
->value
.constructor
);
6620 for (; con
; con
= gfc_constructor_next (con
))
6622 if (con
->expr
->expr_type
== EXPR_VARIABLE
6623 && con
->expr
->symtree
6624 && (con
->expr
->symtree
->n
.sym
->attr
.flavor
== FL_PARAMETER
6625 || con
->expr
->symtree
->n
.sym
->attr
.flavor
== FL_VARIABLE
))
6627 if (con
->expr
->expr_type
== EXPR_ARRAY
6628 && gfc_is_expandable_expr (con
->expr
))
6637 /* Sometimes variables in specification expressions of the result
6638 of module procedures in submodules wind up not being the 'real'
6639 dummy. Find this, if possible, in the namespace of the first
6643 fixup_unique_dummy (gfc_expr
*e
)
6645 gfc_symtree
*st
= NULL
;
6646 gfc_symbol
*s
= NULL
;
6648 if (e
->symtree
->n
.sym
->ns
->proc_name
6649 && e
->symtree
->n
.sym
->ns
->proc_name
->formal
)
6650 s
= e
->symtree
->n
.sym
->ns
->proc_name
->formal
->sym
;
6653 st
= gfc_find_symtree (s
->ns
->sym_root
, e
->symtree
->n
.sym
->name
);
6656 && st
->n
.sym
!= NULL
6657 && st
->n
.sym
->attr
.dummy
)
6661 /* Resolve an expression. That is, make sure that types of operands agree
6662 with their operators, intrinsic operators are converted to function calls
6663 for overloaded types and unresolved function references are resolved. */
6666 gfc_resolve_expr (gfc_expr
*e
)
6669 bool inquiry_save
, actual_arg_save
, first_actual_arg_save
;
6674 /* inquiry_argument only applies to variables. */
6675 inquiry_save
= inquiry_argument
;
6676 actual_arg_save
= actual_arg
;
6677 first_actual_arg_save
= first_actual_arg
;
6679 if (e
->expr_type
!= EXPR_VARIABLE
)
6681 inquiry_argument
= false;
6683 first_actual_arg
= false;
6685 else if (e
->symtree
!= NULL
6686 && *e
->symtree
->name
== '@'
6687 && e
->symtree
->n
.sym
->attr
.dummy
)
6689 /* Deal with submodule specification expressions that are not
6690 found to be referenced in module.c(read_cleanup). */
6691 fixup_unique_dummy (e
);
6694 switch (e
->expr_type
)
6697 t
= resolve_operator (e
);
6703 if (check_host_association (e
))
6704 t
= resolve_function (e
);
6706 t
= resolve_variable (e
);
6708 if (e
->ts
.type
== BT_CHARACTER
&& e
->ts
.u
.cl
== NULL
&& e
->ref
6709 && e
->ref
->type
!= REF_SUBSTRING
)
6710 gfc_resolve_substring_charlen (e
);
6715 t
= resolve_typebound_function (e
);
6718 case EXPR_SUBSTRING
:
6719 t
= resolve_ref (e
);
6728 t
= resolve_expr_ppc (e
);
6733 if (!resolve_ref (e
))
6736 t
= gfc_resolve_array_constructor (e
);
6737 /* Also try to expand a constructor. */
6740 expression_rank (e
);
6741 if (gfc_is_constant_expr (e
) || gfc_is_expandable_expr (e
))
6742 gfc_expand_constructor (e
, false);
6745 /* This provides the opportunity for the length of constructors with
6746 character valued function elements to propagate the string length
6747 to the expression. */
6748 if (t
&& e
->ts
.type
== BT_CHARACTER
)
6750 /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
6751 here rather then add a duplicate test for it above. */
6752 gfc_expand_constructor (e
, false);
6753 t
= gfc_resolve_character_array_constructor (e
);
6758 case EXPR_STRUCTURE
:
6759 t
= resolve_ref (e
);
6763 t
= resolve_structure_cons (e
, 0);
6767 t
= gfc_simplify_expr (e
, 0);
6771 gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
6774 if (e
->ts
.type
== BT_CHARACTER
&& t
&& !e
->ts
.u
.cl
)
6777 inquiry_argument
= inquiry_save
;
6778 actual_arg
= actual_arg_save
;
6779 first_actual_arg
= first_actual_arg_save
;
6785 /* Resolve an expression from an iterator. They must be scalar and have
6786 INTEGER or (optionally) REAL type. */
6789 gfc_resolve_iterator_expr (gfc_expr
*expr
, bool real_ok
,
6790 const char *name_msgid
)
6792 if (!gfc_resolve_expr (expr
))
6795 if (expr
->rank
!= 0)
6797 gfc_error ("%s at %L must be a scalar", _(name_msgid
), &expr
->where
);
6801 if (expr
->ts
.type
!= BT_INTEGER
)
6803 if (expr
->ts
.type
== BT_REAL
)
6806 return gfc_notify_std (GFC_STD_F95_DEL
,
6807 "%s at %L must be integer",
6808 _(name_msgid
), &expr
->where
);
6811 gfc_error ("%s at %L must be INTEGER", _(name_msgid
),
6818 gfc_error ("%s at %L must be INTEGER", _(name_msgid
), &expr
->where
);
6826 /* Resolve the expressions in an iterator structure. If REAL_OK is
6827 false allow only INTEGER type iterators, otherwise allow REAL types.
6828 Set own_scope to true for ac-implied-do and data-implied-do as those
6829 have a separate scope such that, e.g., a INTENT(IN) doesn't apply. */
6832 gfc_resolve_iterator (gfc_iterator
*iter
, bool real_ok
, bool own_scope
)
6834 if (!gfc_resolve_iterator_expr (iter
->var
, real_ok
, "Loop variable"))
6837 if (!gfc_check_vardef_context (iter
->var
, false, false, own_scope
,
6838 _("iterator variable")))
6841 if (!gfc_resolve_iterator_expr (iter
->start
, real_ok
,
6842 "Start expression in DO loop"))
6845 if (!gfc_resolve_iterator_expr (iter
->end
, real_ok
,
6846 "End expression in DO loop"))
6849 if (!gfc_resolve_iterator_expr (iter
->step
, real_ok
,
6850 "Step expression in DO loop"))
6853 if (iter
->step
->expr_type
== EXPR_CONSTANT
)
6855 if ((iter
->step
->ts
.type
== BT_INTEGER
6856 && mpz_cmp_ui (iter
->step
->value
.integer
, 0) == 0)
6857 || (iter
->step
->ts
.type
== BT_REAL
6858 && mpfr_sgn (iter
->step
->value
.real
) == 0))
6860 gfc_error ("Step expression in DO loop at %L cannot be zero",
6861 &iter
->step
->where
);
6866 /* Convert start, end, and step to the same type as var. */
6867 if (iter
->start
->ts
.kind
!= iter
->var
->ts
.kind
6868 || iter
->start
->ts
.type
!= iter
->var
->ts
.type
)
6869 gfc_convert_type (iter
->start
, &iter
->var
->ts
, 1);
6871 if (iter
->end
->ts
.kind
!= iter
->var
->ts
.kind
6872 || iter
->end
->ts
.type
!= iter
->var
->ts
.type
)
6873 gfc_convert_type (iter
->end
, &iter
->var
->ts
, 1);
6875 if (iter
->step
->ts
.kind
!= iter
->var
->ts
.kind
6876 || iter
->step
->ts
.type
!= iter
->var
->ts
.type
)
6877 gfc_convert_type (iter
->step
, &iter
->var
->ts
, 1);
6879 if (iter
->start
->expr_type
== EXPR_CONSTANT
6880 && iter
->end
->expr_type
== EXPR_CONSTANT
6881 && iter
->step
->expr_type
== EXPR_CONSTANT
)
6884 if (iter
->start
->ts
.type
== BT_INTEGER
)
6886 sgn
= mpz_cmp_ui (iter
->step
->value
.integer
, 0);
6887 cmp
= mpz_cmp (iter
->end
->value
.integer
, iter
->start
->value
.integer
);
6891 sgn
= mpfr_sgn (iter
->step
->value
.real
);
6892 cmp
= mpfr_cmp (iter
->end
->value
.real
, iter
->start
->value
.real
);
6894 if (warn_zerotrip
&& ((sgn
> 0 && cmp
< 0) || (sgn
< 0 && cmp
> 0)))
6895 gfc_warning (OPT_Wzerotrip
,
6896 "DO loop at %L will be executed zero times",
6897 &iter
->step
->where
);
6900 if (iter
->end
->expr_type
== EXPR_CONSTANT
6901 && iter
->end
->ts
.type
== BT_INTEGER
6902 && iter
->step
->expr_type
== EXPR_CONSTANT
6903 && iter
->step
->ts
.type
== BT_INTEGER
6904 && (mpz_cmp_si (iter
->step
->value
.integer
, -1L) == 0
6905 || mpz_cmp_si (iter
->step
->value
.integer
, 1L) == 0))
6907 bool is_step_positive
= mpz_cmp_ui (iter
->step
->value
.integer
, 1) == 0;
6908 int k
= gfc_validate_kind (BT_INTEGER
, iter
->end
->ts
.kind
, false);
6910 if (is_step_positive
6911 && mpz_cmp (iter
->end
->value
.integer
, gfc_integer_kinds
[k
].huge
) == 0)
6912 gfc_warning (OPT_Wundefined_do_loop
,
6913 "DO loop at %L is undefined as it overflows",
6914 &iter
->step
->where
);
6915 else if (!is_step_positive
6916 && mpz_cmp (iter
->end
->value
.integer
,
6917 gfc_integer_kinds
[k
].min_int
) == 0)
6918 gfc_warning (OPT_Wundefined_do_loop
,
6919 "DO loop at %L is undefined as it underflows",
6920 &iter
->step
->where
);
6927 /* Traversal function for find_forall_index. f == 2 signals that
6928 that variable itself is not to be checked - only the references. */
6931 forall_index (gfc_expr
*expr
, gfc_symbol
*sym
, int *f
)
6933 if (expr
->expr_type
!= EXPR_VARIABLE
)
6936 /* A scalar assignment */
6937 if (!expr
->ref
|| *f
== 1)
6939 if (expr
->symtree
->n
.sym
== sym
)
6951 /* Check whether the FORALL index appears in the expression or not.
6952 Returns true if SYM is found in EXPR. */
6955 find_forall_index (gfc_expr
*expr
, gfc_symbol
*sym
, int f
)
6957 if (gfc_traverse_expr (expr
, sym
, forall_index
, f
))
6964 /* Resolve a list of FORALL iterators. The FORALL index-name is constrained
6965 to be a scalar INTEGER variable. The subscripts and stride are scalar
6966 INTEGERs, and if stride is a constant it must be nonzero.
6967 Furthermore "A subscript or stride in a forall-triplet-spec shall
6968 not contain a reference to any index-name in the
6969 forall-triplet-spec-list in which it appears." (7.5.4.1) */
6972 resolve_forall_iterators (gfc_forall_iterator
*it
)
6974 gfc_forall_iterator
*iter
, *iter2
;
6976 for (iter
= it
; iter
; iter
= iter
->next
)
6978 if (gfc_resolve_expr (iter
->var
)
6979 && (iter
->var
->ts
.type
!= BT_INTEGER
|| iter
->var
->rank
!= 0))
6980 gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
6983 if (gfc_resolve_expr (iter
->start
)
6984 && (iter
->start
->ts
.type
!= BT_INTEGER
|| iter
->start
->rank
!= 0))
6985 gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
6986 &iter
->start
->where
);
6987 if (iter
->var
->ts
.kind
!= iter
->start
->ts
.kind
)
6988 gfc_convert_type (iter
->start
, &iter
->var
->ts
, 1);
6990 if (gfc_resolve_expr (iter
->end
)
6991 && (iter
->end
->ts
.type
!= BT_INTEGER
|| iter
->end
->rank
!= 0))
6992 gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
6994 if (iter
->var
->ts
.kind
!= iter
->end
->ts
.kind
)
6995 gfc_convert_type (iter
->end
, &iter
->var
->ts
, 1);
6997 if (gfc_resolve_expr (iter
->stride
))
6999 if (iter
->stride
->ts
.type
!= BT_INTEGER
|| iter
->stride
->rank
!= 0)
7000 gfc_error ("FORALL stride expression at %L must be a scalar %s",
7001 &iter
->stride
->where
, "INTEGER");
7003 if (iter
->stride
->expr_type
== EXPR_CONSTANT
7004 && mpz_cmp_ui (iter
->stride
->value
.integer
, 0) == 0)
7005 gfc_error ("FORALL stride expression at %L cannot be zero",
7006 &iter
->stride
->where
);
7008 if (iter
->var
->ts
.kind
!= iter
->stride
->ts
.kind
)
7009 gfc_convert_type (iter
->stride
, &iter
->var
->ts
, 1);
7012 for (iter
= it
; iter
; iter
= iter
->next
)
7013 for (iter2
= iter
; iter2
; iter2
= iter2
->next
)
7015 if (find_forall_index (iter2
->start
, iter
->var
->symtree
->n
.sym
, 0)
7016 || find_forall_index (iter2
->end
, iter
->var
->symtree
->n
.sym
, 0)
7017 || find_forall_index (iter2
->stride
, iter
->var
->symtree
->n
.sym
, 0))
7018 gfc_error ("FORALL index %qs may not appear in triplet "
7019 "specification at %L", iter
->var
->symtree
->name
,
7020 &iter2
->start
->where
);
7025 /* Given a pointer to a symbol that is a derived type, see if it's
7026 inaccessible, i.e. if it's defined in another module and the components are
7027 PRIVATE. The search is recursive if necessary. Returns zero if no
7028 inaccessible components are found, nonzero otherwise. */
7031 derived_inaccessible (gfc_symbol
*sym
)
7035 if (sym
->attr
.use_assoc
&& sym
->attr
.private_comp
)
7038 for (c
= sym
->components
; c
; c
= c
->next
)
7040 /* Prevent an infinite loop through this function. */
7041 if (c
->ts
.type
== BT_DERIVED
&& c
->attr
.pointer
7042 && sym
== c
->ts
.u
.derived
)
7045 if (c
->ts
.type
== BT_DERIVED
&& derived_inaccessible (c
->ts
.u
.derived
))
7053 /* Resolve the argument of a deallocate expression. The expression must be
7054 a pointer or a full array. */
7057 resolve_deallocate_expr (gfc_expr
*e
)
7059 symbol_attribute attr
;
7060 int allocatable
, pointer
;
7066 if (!gfc_resolve_expr (e
))
7069 if (e
->expr_type
!= EXPR_VARIABLE
)
7072 sym
= e
->symtree
->n
.sym
;
7073 unlimited
= UNLIMITED_POLY(sym
);
7075 if (sym
->ts
.type
== BT_CLASS
)
7077 allocatable
= CLASS_DATA (sym
)->attr
.allocatable
;
7078 pointer
= CLASS_DATA (sym
)->attr
.class_pointer
;
7082 allocatable
= sym
->attr
.allocatable
;
7083 pointer
= sym
->attr
.pointer
;
7085 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
7090 if (ref
->u
.ar
.type
!= AR_FULL
7091 && !(ref
->u
.ar
.type
== AR_ELEMENT
&& ref
->u
.ar
.as
->rank
== 0
7092 && ref
->u
.ar
.codimen
&& gfc_ref_this_image (ref
)))
7097 c
= ref
->u
.c
.component
;
7098 if (c
->ts
.type
== BT_CLASS
)
7100 allocatable
= CLASS_DATA (c
)->attr
.allocatable
;
7101 pointer
= CLASS_DATA (c
)->attr
.class_pointer
;
7105 allocatable
= c
->attr
.allocatable
;
7106 pointer
= c
->attr
.pointer
;
7116 attr
= gfc_expr_attr (e
);
7118 if (allocatable
== 0 && attr
.pointer
== 0 && !unlimited
)
7121 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7127 if (gfc_is_coindexed (e
))
7129 gfc_error ("Coindexed allocatable object at %L", &e
->where
);
7134 && !gfc_check_vardef_context (e
, true, true, false,
7135 _("DEALLOCATE object")))
7137 if (!gfc_check_vardef_context (e
, false, true, false,
7138 _("DEALLOCATE object")))
7145 /* Returns true if the expression e contains a reference to the symbol sym. */
7147 sym_in_expr (gfc_expr
*e
, gfc_symbol
*sym
, int *f ATTRIBUTE_UNUSED
)
7149 if (e
->expr_type
== EXPR_VARIABLE
&& e
->symtree
->n
.sym
== sym
)
7156 gfc_find_sym_in_expr (gfc_symbol
*sym
, gfc_expr
*e
)
7158 return gfc_traverse_expr (e
, sym
, sym_in_expr
, 0);
7162 /* Given the expression node e for an allocatable/pointer of derived type to be
7163 allocated, get the expression node to be initialized afterwards (needed for
7164 derived types with default initializers, and derived types with allocatable
7165 components that need nullification.) */
7168 gfc_expr_to_initialize (gfc_expr
*e
)
7174 result
= gfc_copy_expr (e
);
7176 /* Change the last array reference from AR_ELEMENT to AR_FULL. */
7177 for (ref
= result
->ref
; ref
; ref
= ref
->next
)
7178 if (ref
->type
== REF_ARRAY
&& ref
->next
== NULL
)
7180 ref
->u
.ar
.type
= AR_FULL
;
7182 for (i
= 0; i
< ref
->u
.ar
.dimen
; i
++)
7183 ref
->u
.ar
.start
[i
] = ref
->u
.ar
.end
[i
] = ref
->u
.ar
.stride
[i
] = NULL
;
7188 gfc_free_shape (&result
->shape
, result
->rank
);
7190 /* Recalculate rank, shape, etc. */
7191 gfc_resolve_expr (result
);
7196 /* If the last ref of an expression is an array ref, return a copy of the
7197 expression with that one removed. Otherwise, a copy of the original
7198 expression. This is used for allocate-expressions and pointer assignment
7199 LHS, where there may be an array specification that needs to be stripped
7200 off when using gfc_check_vardef_context. */
7203 remove_last_array_ref (gfc_expr
* e
)
7208 e2
= gfc_copy_expr (e
);
7209 for (r
= &e2
->ref
; *r
; r
= &(*r
)->next
)
7210 if ((*r
)->type
== REF_ARRAY
&& !(*r
)->next
)
7212 gfc_free_ref_list (*r
);
7221 /* Used in resolve_allocate_expr to check that a allocation-object and
7222 a source-expr are conformable. This does not catch all possible
7223 cases; in particular a runtime checking is needed. */
7226 conformable_arrays (gfc_expr
*e1
, gfc_expr
*e2
)
7229 for (tail
= e2
->ref
; tail
&& tail
->next
; tail
= tail
->next
);
7231 /* First compare rank. */
7232 if ((tail
&& e1
->rank
!= tail
->u
.ar
.as
->rank
)
7233 || (!tail
&& e1
->rank
!= e2
->rank
))
7235 gfc_error ("Source-expr at %L must be scalar or have the "
7236 "same rank as the allocate-object at %L",
7237 &e1
->where
, &e2
->where
);
7248 for (i
= 0; i
< e1
->rank
; i
++)
7250 if (tail
->u
.ar
.start
[i
] == NULL
)
7253 if (tail
->u
.ar
.end
[i
])
7255 mpz_set (s
, tail
->u
.ar
.end
[i
]->value
.integer
);
7256 mpz_sub (s
, s
, tail
->u
.ar
.start
[i
]->value
.integer
);
7257 mpz_add_ui (s
, s
, 1);
7261 mpz_set (s
, tail
->u
.ar
.start
[i
]->value
.integer
);
7264 if (mpz_cmp (e1
->shape
[i
], s
) != 0)
7266 gfc_error ("Source-expr at %L and allocate-object at %L must "
7267 "have the same shape", &e1
->where
, &e2
->where
);
7280 /* Resolve the expression in an ALLOCATE statement, doing the additional
7281 checks to see whether the expression is OK or not. The expression must
7282 have a trailing array reference that gives the size of the array. */
7285 resolve_allocate_expr (gfc_expr
*e
, gfc_code
*code
, bool *array_alloc_wo_spec
)
7287 int i
, pointer
, allocatable
, dimension
, is_abstract
;
7291 symbol_attribute attr
;
7292 gfc_ref
*ref
, *ref2
;
7295 gfc_symbol
*sym
= NULL
;
7300 /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
7301 checking of coarrays. */
7302 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
7303 if (ref
->next
== NULL
)
7306 if (ref
&& ref
->type
== REF_ARRAY
)
7307 ref
->u
.ar
.in_allocate
= true;
7309 if (!gfc_resolve_expr (e
))
7312 /* Make sure the expression is allocatable or a pointer. If it is
7313 pointer, the next-to-last reference must be a pointer. */
7317 sym
= e
->symtree
->n
.sym
;
7319 /* Check whether ultimate component is abstract and CLASS. */
7322 /* Is the allocate-object unlimited polymorphic? */
7323 unlimited
= UNLIMITED_POLY(e
);
7325 if (e
->expr_type
!= EXPR_VARIABLE
)
7328 attr
= gfc_expr_attr (e
);
7329 pointer
= attr
.pointer
;
7330 dimension
= attr
.dimension
;
7331 codimension
= attr
.codimension
;
7335 if (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
))
7337 allocatable
= CLASS_DATA (sym
)->attr
.allocatable
;
7338 pointer
= CLASS_DATA (sym
)->attr
.class_pointer
;
7339 dimension
= CLASS_DATA (sym
)->attr
.dimension
;
7340 codimension
= CLASS_DATA (sym
)->attr
.codimension
;
7341 is_abstract
= CLASS_DATA (sym
)->attr
.abstract
;
7345 allocatable
= sym
->attr
.allocatable
;
7346 pointer
= sym
->attr
.pointer
;
7347 dimension
= sym
->attr
.dimension
;
7348 codimension
= sym
->attr
.codimension
;
7353 for (ref
= e
->ref
; ref
; ref2
= ref
, ref
= ref
->next
)
7358 if (ref
->u
.ar
.codimen
> 0)
7361 for (n
= ref
->u
.ar
.dimen
;
7362 n
< ref
->u
.ar
.dimen
+ ref
->u
.ar
.codimen
; n
++)
7363 if (ref
->u
.ar
.dimen_type
[n
] != DIMEN_THIS_IMAGE
)
7370 if (ref
->next
!= NULL
)
7378 gfc_error ("Coindexed allocatable object at %L",
7383 c
= ref
->u
.c
.component
;
7384 if (c
->ts
.type
== BT_CLASS
)
7386 allocatable
= CLASS_DATA (c
)->attr
.allocatable
;
7387 pointer
= CLASS_DATA (c
)->attr
.class_pointer
;
7388 dimension
= CLASS_DATA (c
)->attr
.dimension
;
7389 codimension
= CLASS_DATA (c
)->attr
.codimension
;
7390 is_abstract
= CLASS_DATA (c
)->attr
.abstract
;
7394 allocatable
= c
->attr
.allocatable
;
7395 pointer
= c
->attr
.pointer
;
7396 dimension
= c
->attr
.dimension
;
7397 codimension
= c
->attr
.codimension
;
7398 is_abstract
= c
->attr
.abstract
;
7410 /* Check for F08:C628. */
7411 if (allocatable
== 0 && pointer
== 0 && !unlimited
)
7413 gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
7418 /* Some checks for the SOURCE tag. */
7421 /* Check F03:C631. */
7422 if (!gfc_type_compatible (&e
->ts
, &code
->expr3
->ts
))
7424 gfc_error ("Type of entity at %L is type incompatible with "
7425 "source-expr at %L", &e
->where
, &code
->expr3
->where
);
7429 /* Check F03:C632 and restriction following Note 6.18. */
7430 if (code
->expr3
->rank
> 0 && !conformable_arrays (code
->expr3
, e
))
7433 /* Check F03:C633. */
7434 if (code
->expr3
->ts
.kind
!= e
->ts
.kind
&& !unlimited
)
7436 gfc_error ("The allocate-object at %L and the source-expr at %L "
7437 "shall have the same kind type parameter",
7438 &e
->where
, &code
->expr3
->where
);
7442 /* Check F2008, C642. */
7443 if (code
->expr3
->ts
.type
== BT_DERIVED
7444 && ((codimension
&& gfc_expr_attr (code
->expr3
).lock_comp
)
7445 || (code
->expr3
->ts
.u
.derived
->from_intmod
7446 == INTMOD_ISO_FORTRAN_ENV
7447 && code
->expr3
->ts
.u
.derived
->intmod_sym_id
7448 == ISOFORTRAN_LOCK_TYPE
)))
7450 gfc_error ("The source-expr at %L shall neither be of type "
7451 "LOCK_TYPE nor have a LOCK_TYPE component if "
7452 "allocate-object at %L is a coarray",
7453 &code
->expr3
->where
, &e
->where
);
7457 /* Check TS18508, C702/C703. */
7458 if (code
->expr3
->ts
.type
== BT_DERIVED
7459 && ((codimension
&& gfc_expr_attr (code
->expr3
).event_comp
)
7460 || (code
->expr3
->ts
.u
.derived
->from_intmod
7461 == INTMOD_ISO_FORTRAN_ENV
7462 && code
->expr3
->ts
.u
.derived
->intmod_sym_id
7463 == ISOFORTRAN_EVENT_TYPE
)))
7465 gfc_error ("The source-expr at %L shall neither be of type "
7466 "EVENT_TYPE nor have a EVENT_TYPE component if "
7467 "allocate-object at %L is a coarray",
7468 &code
->expr3
->where
, &e
->where
);
7473 /* Check F08:C629. */
7474 if (is_abstract
&& code
->ext
.alloc
.ts
.type
== BT_UNKNOWN
7477 gcc_assert (e
->ts
.type
== BT_CLASS
);
7478 gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
7479 "type-spec or source-expr", sym
->name
, &e
->where
);
7483 /* Check F08:C632. */
7484 if (code
->ext
.alloc
.ts
.type
== BT_CHARACTER
&& !e
->ts
.deferred
7485 && !UNLIMITED_POLY (e
))
7487 int cmp
= gfc_dep_compare_expr (e
->ts
.u
.cl
->length
,
7488 code
->ext
.alloc
.ts
.u
.cl
->length
);
7489 if (cmp
== 1 || cmp
== -1 || cmp
== -3)
7491 gfc_error ("Allocating %s at %L with type-spec requires the same "
7492 "character-length parameter as in the declaration",
7493 sym
->name
, &e
->where
);
7498 /* In the variable definition context checks, gfc_expr_attr is used
7499 on the expression. This is fooled by the array specification
7500 present in e, thus we have to eliminate that one temporarily. */
7501 e2
= remove_last_array_ref (e
);
7504 t
= gfc_check_vardef_context (e2
, true, true, false,
7505 _("ALLOCATE object"));
7507 t
= gfc_check_vardef_context (e2
, false, true, false,
7508 _("ALLOCATE object"));
7513 if (e
->ts
.type
== BT_CLASS
&& CLASS_DATA (e
)->attr
.dimension
7514 && !code
->expr3
&& code
->ext
.alloc
.ts
.type
== BT_DERIVED
)
7516 /* For class arrays, the initialization with SOURCE is done
7517 using _copy and trans_call. It is convenient to exploit that
7518 when the allocated type is different from the declared type but
7519 no SOURCE exists by setting expr3. */
7520 code
->expr3
= gfc_default_initializer (&code
->ext
.alloc
.ts
);
7522 else if (flag_coarray
!= GFC_FCOARRAY_LIB
&& e
->ts
.type
== BT_DERIVED
7523 && e
->ts
.u
.derived
->from_intmod
== INTMOD_ISO_FORTRAN_ENV
7524 && e
->ts
.u
.derived
->intmod_sym_id
== ISOFORTRAN_EVENT_TYPE
)
7526 /* We have to zero initialize the integer variable. */
7527 code
->expr3
= gfc_get_int_expr (gfc_default_integer_kind
, &e
->where
, 0);
7530 if (e
->ts
.type
== BT_CLASS
&& !unlimited
&& !UNLIMITED_POLY (code
->expr3
))
7532 /* Make sure the vtab symbol is present when
7533 the module variables are generated. */
7534 gfc_typespec ts
= e
->ts
;
7536 ts
= code
->expr3
->ts
;
7537 else if (code
->ext
.alloc
.ts
.type
== BT_DERIVED
)
7538 ts
= code
->ext
.alloc
.ts
;
7540 /* Finding the vtab also publishes the type's symbol. Therefore this
7541 statement is necessary. */
7542 gfc_find_derived_vtab (ts
.u
.derived
);
7544 else if (unlimited
&& !UNLIMITED_POLY (code
->expr3
))
7546 /* Again, make sure the vtab symbol is present when
7547 the module variables are generated. */
7548 gfc_typespec
*ts
= NULL
;
7550 ts
= &code
->expr3
->ts
;
7552 ts
= &code
->ext
.alloc
.ts
;
7556 /* Finding the vtab also publishes the type's symbol. Therefore this
7557 statement is necessary. */
7561 if (dimension
== 0 && codimension
== 0)
7564 /* Make sure the last reference node is an array specification. */
7566 if (!ref2
|| ref2
->type
!= REF_ARRAY
|| ref2
->u
.ar
.type
== AR_FULL
7567 || (dimension
&& ref2
->u
.ar
.dimen
== 0))
7572 if (!gfc_notify_std (GFC_STD_F2008
, "Array specification required "
7573 "in ALLOCATE statement at %L", &e
->where
))
7575 if (code
->expr3
->rank
!= 0)
7576 *array_alloc_wo_spec
= true;
7579 gfc_error ("Array specification or array-valued SOURCE= "
7580 "expression required in ALLOCATE statement at %L",
7587 gfc_error ("Array specification required in ALLOCATE statement "
7588 "at %L", &e
->where
);
7593 /* Make sure that the array section reference makes sense in the
7594 context of an ALLOCATE specification. */
7599 for (i
= ar
->dimen
; i
< ar
->dimen
+ ar
->codimen
; i
++)
7600 if (ar
->dimen_type
[i
] == DIMEN_THIS_IMAGE
)
7602 gfc_error ("Coarray specification required in ALLOCATE statement "
7603 "at %L", &e
->where
);
7607 for (i
= 0; i
< ar
->dimen
; i
++)
7609 if (ar
->type
== AR_ELEMENT
|| ar
->type
== AR_FULL
)
7612 switch (ar
->dimen_type
[i
])
7618 if (ar
->start
[i
] != NULL
7619 && ar
->end
[i
] != NULL
7620 && ar
->stride
[i
] == NULL
)
7628 case DIMEN_THIS_IMAGE
:
7629 gfc_error ("Bad array specification in ALLOCATE statement at %L",
7635 for (a
= code
->ext
.alloc
.list
; a
; a
= a
->next
)
7637 sym
= a
->expr
->symtree
->n
.sym
;
7639 /* TODO - check derived type components. */
7640 if (gfc_bt_struct (sym
->ts
.type
) || sym
->ts
.type
== BT_CLASS
)
7643 if ((ar
->start
[i
] != NULL
7644 && gfc_find_sym_in_expr (sym
, ar
->start
[i
]))
7645 || (ar
->end
[i
] != NULL
7646 && gfc_find_sym_in_expr (sym
, ar
->end
[i
])))
7648 gfc_error ("%qs must not appear in the array specification at "
7649 "%L in the same ALLOCATE statement where it is "
7650 "itself allocated", sym
->name
, &ar
->where
);
7656 for (i
= ar
->dimen
; i
< ar
->codimen
+ ar
->dimen
; i
++)
7658 if (ar
->dimen_type
[i
] == DIMEN_ELEMENT
7659 || ar
->dimen_type
[i
] == DIMEN_RANGE
)
7661 if (i
== (ar
->dimen
+ ar
->codimen
- 1))
7663 gfc_error ("Expected '*' in coindex specification in ALLOCATE "
7664 "statement at %L", &e
->where
);
7670 if (ar
->dimen_type
[i
] == DIMEN_STAR
&& i
== (ar
->dimen
+ ar
->codimen
- 1)
7671 && ar
->stride
[i
] == NULL
)
7674 gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
7688 resolve_allocate_deallocate (gfc_code
*code
, const char *fcn
)
7690 gfc_expr
*stat
, *errmsg
, *pe
, *qe
;
7691 gfc_alloc
*a
, *p
, *q
;
7694 errmsg
= code
->expr2
;
7696 /* Check the stat variable. */
7699 gfc_check_vardef_context (stat
, false, false, false,
7700 _("STAT variable"));
7702 if ((stat
->ts
.type
!= BT_INTEGER
7703 && !(stat
->ref
&& (stat
->ref
->type
== REF_ARRAY
7704 || stat
->ref
->type
== REF_COMPONENT
)))
7706 gfc_error ("Stat-variable at %L must be a scalar INTEGER "
7707 "variable", &stat
->where
);
7709 for (p
= code
->ext
.alloc
.list
; p
; p
= p
->next
)
7710 if (p
->expr
->symtree
->n
.sym
->name
== stat
->symtree
->n
.sym
->name
)
7712 gfc_ref
*ref1
, *ref2
;
7715 for (ref1
= p
->expr
->ref
, ref2
= stat
->ref
; ref1
&& ref2
;
7716 ref1
= ref1
->next
, ref2
= ref2
->next
)
7718 if (ref1
->type
!= REF_COMPONENT
|| ref2
->type
!= REF_COMPONENT
)
7720 if (ref1
->u
.c
.component
->name
!= ref2
->u
.c
.component
->name
)
7729 gfc_error ("Stat-variable at %L shall not be %sd within "
7730 "the same %s statement", &stat
->where
, fcn
, fcn
);
7736 /* Check the errmsg variable. */
7740 gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
7743 gfc_check_vardef_context (errmsg
, false, false, false,
7744 _("ERRMSG variable"));
7746 if ((errmsg
->ts
.type
!= BT_CHARACTER
7748 && (errmsg
->ref
->type
== REF_ARRAY
7749 || errmsg
->ref
->type
== REF_COMPONENT
)))
7750 || errmsg
->rank
> 0 )
7751 gfc_error ("Errmsg-variable at %L must be a scalar CHARACTER "
7752 "variable", &errmsg
->where
);
7754 for (p
= code
->ext
.alloc
.list
; p
; p
= p
->next
)
7755 if (p
->expr
->symtree
->n
.sym
->name
== errmsg
->symtree
->n
.sym
->name
)
7757 gfc_ref
*ref1
, *ref2
;
7760 for (ref1
= p
->expr
->ref
, ref2
= errmsg
->ref
; ref1
&& ref2
;
7761 ref1
= ref1
->next
, ref2
= ref2
->next
)
7763 if (ref1
->type
!= REF_COMPONENT
|| ref2
->type
!= REF_COMPONENT
)
7765 if (ref1
->u
.c
.component
->name
!= ref2
->u
.c
.component
->name
)
7774 gfc_error ("Errmsg-variable at %L shall not be %sd within "
7775 "the same %s statement", &errmsg
->where
, fcn
, fcn
);
7781 /* Check that an allocate-object appears only once in the statement. */
7783 for (p
= code
->ext
.alloc
.list
; p
; p
= p
->next
)
7786 for (q
= p
->next
; q
; q
= q
->next
)
7789 if (pe
->symtree
->n
.sym
->name
== qe
->symtree
->n
.sym
->name
)
7791 /* This is a potential collision. */
7792 gfc_ref
*pr
= pe
->ref
;
7793 gfc_ref
*qr
= qe
->ref
;
7795 /* Follow the references until
7796 a) They start to differ, in which case there is no error;
7797 you can deallocate a%b and a%c in a single statement
7798 b) Both of them stop, which is an error
7799 c) One of them stops, which is also an error. */
7802 if (pr
== NULL
&& qr
== NULL
)
7804 gfc_error ("Allocate-object at %L also appears at %L",
7805 &pe
->where
, &qe
->where
);
7808 else if (pr
!= NULL
&& qr
== NULL
)
7810 gfc_error ("Allocate-object at %L is subobject of"
7811 " object at %L", &pe
->where
, &qe
->where
);
7814 else if (pr
== NULL
&& qr
!= NULL
)
7816 gfc_error ("Allocate-object at %L is subobject of"
7817 " object at %L", &qe
->where
, &pe
->where
);
7820 /* Here, pr != NULL && qr != NULL */
7821 gcc_assert(pr
->type
== qr
->type
);
7822 if (pr
->type
== REF_ARRAY
)
7824 /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
7826 gcc_assert (qr
->type
== REF_ARRAY
);
7828 if (pr
->next
&& qr
->next
)
7831 gfc_array_ref
*par
= &(pr
->u
.ar
);
7832 gfc_array_ref
*qar
= &(qr
->u
.ar
);
7834 for (i
=0; i
<par
->dimen
; i
++)
7836 if ((par
->start
[i
] != NULL
7837 || qar
->start
[i
] != NULL
)
7838 && gfc_dep_compare_expr (par
->start
[i
],
7839 qar
->start
[i
]) != 0)
7846 if (pr
->u
.c
.component
->name
!= qr
->u
.c
.component
->name
)
7859 if (strcmp (fcn
, "ALLOCATE") == 0)
7861 bool arr_alloc_wo_spec
= false;
7863 /* Resolving the expr3 in the loop over all objects to allocate would
7864 execute loop invariant code for each loop item. Therefore do it just
7866 if (code
->expr3
&& code
->expr3
->mold
7867 && code
->expr3
->ts
.type
== BT_DERIVED
)
7869 /* Default initialization via MOLD (non-polymorphic). */
7870 gfc_expr
*rhs
= gfc_default_initializer (&code
->expr3
->ts
);
7873 gfc_resolve_expr (rhs
);
7874 gfc_free_expr (code
->expr3
);
7878 for (a
= code
->ext
.alloc
.list
; a
; a
= a
->next
)
7879 resolve_allocate_expr (a
->expr
, code
, &arr_alloc_wo_spec
);
7881 if (arr_alloc_wo_spec
&& code
->expr3
)
7883 /* Mark the allocate to have to take the array specification
7885 code
->ext
.alloc
.arr_spec_from_expr3
= 1;
7890 for (a
= code
->ext
.alloc
.list
; a
; a
= a
->next
)
7891 resolve_deallocate_expr (a
->expr
);
7896 /************ SELECT CASE resolution subroutines ************/
7898 /* Callback function for our mergesort variant. Determines interval
7899 overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
7900 op1 > op2. Assumes we're not dealing with the default case.
7901 We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
7902 There are nine situations to check. */
7905 compare_cases (const gfc_case
*op1
, const gfc_case
*op2
)
7909 if (op1
->low
== NULL
) /* op1 = (:L) */
7911 /* op2 = (:N), so overlap. */
7913 /* op2 = (M:) or (M:N), L < M */
7914 if (op2
->low
!= NULL
7915 && gfc_compare_expr (op1
->high
, op2
->low
, INTRINSIC_LT
) < 0)
7918 else if (op1
->high
== NULL
) /* op1 = (K:) */
7920 /* op2 = (M:), so overlap. */
7922 /* op2 = (:N) or (M:N), K > N */
7923 if (op2
->high
!= NULL
7924 && gfc_compare_expr (op1
->low
, op2
->high
, INTRINSIC_GT
) > 0)
7927 else /* op1 = (K:L) */
7929 if (op2
->low
== NULL
) /* op2 = (:N), K > N */
7930 retval
= (gfc_compare_expr (op1
->low
, op2
->high
, INTRINSIC_GT
) > 0)
7932 else if (op2
->high
== NULL
) /* op2 = (M:), L < M */
7933 retval
= (gfc_compare_expr (op1
->high
, op2
->low
, INTRINSIC_LT
) < 0)
7935 else /* op2 = (M:N) */
7939 if (gfc_compare_expr (op1
->high
, op2
->low
, INTRINSIC_LT
) < 0)
7942 else if (gfc_compare_expr (op1
->low
, op2
->high
, INTRINSIC_GT
) > 0)
7951 /* Merge-sort a double linked case list, detecting overlap in the
7952 process. LIST is the head of the double linked case list before it
7953 is sorted. Returns the head of the sorted list if we don't see any
7954 overlap, or NULL otherwise. */
7957 check_case_overlap (gfc_case
*list
)
7959 gfc_case
*p
, *q
, *e
, *tail
;
7960 int insize
, nmerges
, psize
, qsize
, cmp
, overlap_seen
;
7962 /* If the passed list was empty, return immediately. */
7969 /* Loop unconditionally. The only exit from this loop is a return
7970 statement, when we've finished sorting the case list. */
7977 /* Count the number of merges we do in this pass. */
7980 /* Loop while there exists a merge to be done. */
7985 /* Count this merge. */
7988 /* Cut the list in two pieces by stepping INSIZE places
7989 forward in the list, starting from P. */
7992 for (i
= 0; i
< insize
; i
++)
8001 /* Now we have two lists. Merge them! */
8002 while (psize
> 0 || (qsize
> 0 && q
!= NULL
))
8004 /* See from which the next case to merge comes from. */
8007 /* P is empty so the next case must come from Q. */
8012 else if (qsize
== 0 || q
== NULL
)
8021 cmp
= compare_cases (p
, q
);
8024 /* The whole case range for P is less than the
8032 /* The whole case range for Q is greater than
8033 the case range for P. */
8040 /* The cases overlap, or they are the same
8041 element in the list. Either way, we must
8042 issue an error and get the next case from P. */
8043 /* FIXME: Sort P and Q by line number. */
8044 gfc_error ("CASE label at %L overlaps with CASE "
8045 "label at %L", &p
->where
, &q
->where
);
8053 /* Add the next element to the merged list. */
8062 /* P has now stepped INSIZE places along, and so has Q. So
8063 they're the same. */
8068 /* If we have done only one merge or none at all, we've
8069 finished sorting the cases. */
8078 /* Otherwise repeat, merging lists twice the size. */
8084 /* Check to see if an expression is suitable for use in a CASE statement.
8085 Makes sure that all case expressions are scalar constants of the same
8086 type. Return false if anything is wrong. */
8089 validate_case_label_expr (gfc_expr
*e
, gfc_expr
*case_expr
)
8091 if (e
== NULL
) return true;
8093 if (e
->ts
.type
!= case_expr
->ts
.type
)
8095 gfc_error ("Expression in CASE statement at %L must be of type %s",
8096 &e
->where
, gfc_basic_typename (case_expr
->ts
.type
));
8100 /* C805 (R808) For a given case-construct, each case-value shall be of
8101 the same type as case-expr. For character type, length differences
8102 are allowed, but the kind type parameters shall be the same. */
8104 if (case_expr
->ts
.type
== BT_CHARACTER
&& e
->ts
.kind
!= case_expr
->ts
.kind
)
8106 gfc_error ("Expression in CASE statement at %L must be of kind %d",
8107 &e
->where
, case_expr
->ts
.kind
);
8111 /* Convert the case value kind to that of case expression kind,
8114 if (e
->ts
.kind
!= case_expr
->ts
.kind
)
8115 gfc_convert_type_warn (e
, &case_expr
->ts
, 2, 0);
8119 gfc_error ("Expression in CASE statement at %L must be scalar",
8128 /* Given a completely parsed select statement, we:
8130 - Validate all expressions and code within the SELECT.
8131 - Make sure that the selection expression is not of the wrong type.
8132 - Make sure that no case ranges overlap.
8133 - Eliminate unreachable cases and unreachable code resulting from
8134 removing case labels.
8136 The standard does allow unreachable cases, e.g. CASE (5:3). But
8137 they are a hassle for code generation, and to prevent that, we just
8138 cut them out here. This is not necessary for overlapping cases
8139 because they are illegal and we never even try to generate code.
8141 We have the additional caveat that a SELECT construct could have
8142 been a computed GOTO in the source code. Fortunately we can fairly
8143 easily work around that here: The case_expr for a "real" SELECT CASE
8144 is in code->expr1, but for a computed GOTO it is in code->expr2. All
8145 we have to do is make sure that the case_expr is a scalar integer
8149 resolve_select (gfc_code
*code
, bool select_type
)
8152 gfc_expr
*case_expr
;
8153 gfc_case
*cp
, *default_case
, *tail
, *head
;
8154 int seen_unreachable
;
8160 if (code
->expr1
== NULL
)
8162 /* This was actually a computed GOTO statement. */
8163 case_expr
= code
->expr2
;
8164 if (case_expr
->ts
.type
!= BT_INTEGER
|| case_expr
->rank
!= 0)
8165 gfc_error ("Selection expression in computed GOTO statement "
8166 "at %L must be a scalar integer expression",
8169 /* Further checking is not necessary because this SELECT was built
8170 by the compiler, so it should always be OK. Just move the
8171 case_expr from expr2 to expr so that we can handle computed
8172 GOTOs as normal SELECTs from here on. */
8173 code
->expr1
= code
->expr2
;
8178 case_expr
= code
->expr1
;
8179 type
= case_expr
->ts
.type
;
8182 if (type
!= BT_LOGICAL
&& type
!= BT_INTEGER
&& type
!= BT_CHARACTER
)
8184 gfc_error ("Argument of SELECT statement at %L cannot be %s",
8185 &case_expr
->where
, gfc_typename (&case_expr
->ts
));
8187 /* Punt. Going on here just produce more garbage error messages. */
8192 if (!select_type
&& case_expr
->rank
!= 0)
8194 gfc_error ("Argument of SELECT statement at %L must be a scalar "
8195 "expression", &case_expr
->where
);
8201 /* Raise a warning if an INTEGER case value exceeds the range of
8202 the case-expr. Later, all expressions will be promoted to the
8203 largest kind of all case-labels. */
8205 if (type
== BT_INTEGER
)
8206 for (body
= code
->block
; body
; body
= body
->block
)
8207 for (cp
= body
->ext
.block
.case_list
; cp
; cp
= cp
->next
)
8210 && gfc_check_integer_range (cp
->low
->value
.integer
,
8211 case_expr
->ts
.kind
) != ARITH_OK
)
8212 gfc_warning (0, "Expression in CASE statement at %L is "
8213 "not in the range of %s", &cp
->low
->where
,
8214 gfc_typename (&case_expr
->ts
));
8217 && cp
->low
!= cp
->high
8218 && gfc_check_integer_range (cp
->high
->value
.integer
,
8219 case_expr
->ts
.kind
) != ARITH_OK
)
8220 gfc_warning (0, "Expression in CASE statement at %L is "
8221 "not in the range of %s", &cp
->high
->where
,
8222 gfc_typename (&case_expr
->ts
));
8225 /* PR 19168 has a long discussion concerning a mismatch of the kinds
8226 of the SELECT CASE expression and its CASE values. Walk the lists
8227 of case values, and if we find a mismatch, promote case_expr to
8228 the appropriate kind. */
8230 if (type
== BT_LOGICAL
|| type
== BT_INTEGER
)
8232 for (body
= code
->block
; body
; body
= body
->block
)
8234 /* Walk the case label list. */
8235 for (cp
= body
->ext
.block
.case_list
; cp
; cp
= cp
->next
)
8237 /* Intercept the DEFAULT case. It does not have a kind. */
8238 if (cp
->low
== NULL
&& cp
->high
== NULL
)
8241 /* Unreachable case ranges are discarded, so ignore. */
8242 if (cp
->low
!= NULL
&& cp
->high
!= NULL
8243 && cp
->low
!= cp
->high
8244 && gfc_compare_expr (cp
->low
, cp
->high
, INTRINSIC_GT
) > 0)
8248 && case_expr
->ts
.kind
!= gfc_kind_max(case_expr
, cp
->low
))
8249 gfc_convert_type_warn (case_expr
, &cp
->low
->ts
, 2, 0);
8251 if (cp
->high
!= NULL
8252 && case_expr
->ts
.kind
!= gfc_kind_max(case_expr
, cp
->high
))
8253 gfc_convert_type_warn (case_expr
, &cp
->high
->ts
, 2, 0);
8258 /* Assume there is no DEFAULT case. */
8259 default_case
= NULL
;
8264 for (body
= code
->block
; body
; body
= body
->block
)
8266 /* Assume the CASE list is OK, and all CASE labels can be matched. */
8268 seen_unreachable
= 0;
8270 /* Walk the case label list, making sure that all case labels
8272 for (cp
= body
->ext
.block
.case_list
; cp
; cp
= cp
->next
)
8274 /* Count the number of cases in the whole construct. */
8277 /* Intercept the DEFAULT case. */
8278 if (cp
->low
== NULL
&& cp
->high
== NULL
)
8280 if (default_case
!= NULL
)
8282 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8283 "by a second DEFAULT CASE at %L",
8284 &default_case
->where
, &cp
->where
);
8295 /* Deal with single value cases and case ranges. Errors are
8296 issued from the validation function. */
8297 if (!validate_case_label_expr (cp
->low
, case_expr
)
8298 || !validate_case_label_expr (cp
->high
, case_expr
))
8304 if (type
== BT_LOGICAL
8305 && ((cp
->low
== NULL
|| cp
->high
== NULL
)
8306 || cp
->low
!= cp
->high
))
8308 gfc_error ("Logical range in CASE statement at %L is not "
8309 "allowed", &cp
->low
->where
);
8314 if (type
== BT_LOGICAL
&& cp
->low
->expr_type
== EXPR_CONSTANT
)
8317 value
= cp
->low
->value
.logical
== 0 ? 2 : 1;
8318 if (value
& seen_logical
)
8320 gfc_error ("Constant logical value in CASE statement "
8321 "is repeated at %L",
8326 seen_logical
|= value
;
8329 if (cp
->low
!= NULL
&& cp
->high
!= NULL
8330 && cp
->low
!= cp
->high
8331 && gfc_compare_expr (cp
->low
, cp
->high
, INTRINSIC_GT
) > 0)
8333 if (warn_surprising
)
8334 gfc_warning (OPT_Wsurprising
,
8335 "Range specification at %L can never be matched",
8338 cp
->unreachable
= 1;
8339 seen_unreachable
= 1;
8343 /* If the case range can be matched, it can also overlap with
8344 other cases. To make sure it does not, we put it in a
8345 double linked list here. We sort that with a merge sort
8346 later on to detect any overlapping cases. */
8350 head
->right
= head
->left
= NULL
;
8355 tail
->right
->left
= tail
;
8362 /* It there was a failure in the previous case label, give up
8363 for this case label list. Continue with the next block. */
8367 /* See if any case labels that are unreachable have been seen.
8368 If so, we eliminate them. This is a bit of a kludge because
8369 the case lists for a single case statement (label) is a
8370 single forward linked lists. */
8371 if (seen_unreachable
)
8373 /* Advance until the first case in the list is reachable. */
8374 while (body
->ext
.block
.case_list
!= NULL
8375 && body
->ext
.block
.case_list
->unreachable
)
8377 gfc_case
*n
= body
->ext
.block
.case_list
;
8378 body
->ext
.block
.case_list
= body
->ext
.block
.case_list
->next
;
8380 gfc_free_case_list (n
);
8383 /* Strip all other unreachable cases. */
8384 if (body
->ext
.block
.case_list
)
8386 for (cp
= body
->ext
.block
.case_list
; cp
&& cp
->next
; cp
= cp
->next
)
8388 if (cp
->next
->unreachable
)
8390 gfc_case
*n
= cp
->next
;
8391 cp
->next
= cp
->next
->next
;
8393 gfc_free_case_list (n
);
8400 /* See if there were overlapping cases. If the check returns NULL,
8401 there was overlap. In that case we don't do anything. If head
8402 is non-NULL, we prepend the DEFAULT case. The sorted list can
8403 then used during code generation for SELECT CASE constructs with
8404 a case expression of a CHARACTER type. */
8407 head
= check_case_overlap (head
);
8409 /* Prepend the default_case if it is there. */
8410 if (head
!= NULL
&& default_case
)
8412 default_case
->left
= NULL
;
8413 default_case
->right
= head
;
8414 head
->left
= default_case
;
8418 /* Eliminate dead blocks that may be the result if we've seen
8419 unreachable case labels for a block. */
8420 for (body
= code
; body
&& body
->block
; body
= body
->block
)
8422 if (body
->block
->ext
.block
.case_list
== NULL
)
8424 /* Cut the unreachable block from the code chain. */
8425 gfc_code
*c
= body
->block
;
8426 body
->block
= c
->block
;
8428 /* Kill the dead block, but not the blocks below it. */
8430 gfc_free_statements (c
);
8434 /* More than two cases is legal but insane for logical selects.
8435 Issue a warning for it. */
8436 if (warn_surprising
&& type
== BT_LOGICAL
&& ncases
> 2)
8437 gfc_warning (OPT_Wsurprising
,
8438 "Logical SELECT CASE block at %L has more that two cases",
8443 /* Check if a derived type is extensible. */
8446 gfc_type_is_extensible (gfc_symbol
*sym
)
8448 return !(sym
->attr
.is_bind_c
|| sym
->attr
.sequence
8449 || (sym
->attr
.is_class
8450 && sym
->components
->ts
.u
.derived
->attr
.unlimited_polymorphic
));
8455 resolve_types (gfc_namespace
*ns
);
8457 /* Resolve an associate-name: Resolve target and ensure the type-spec is
8458 correct as well as possibly the array-spec. */
8461 resolve_assoc_var (gfc_symbol
* sym
, bool resolve_target
)
8465 gcc_assert (sym
->assoc
);
8466 gcc_assert (sym
->attr
.flavor
== FL_VARIABLE
);
8468 /* If this is for SELECT TYPE, the target may not yet be set. In that
8469 case, return. Resolution will be called later manually again when
8471 target
= sym
->assoc
->target
;
8474 gcc_assert (!sym
->assoc
->dangling
);
8476 if (resolve_target
&& !gfc_resolve_expr (target
))
8479 /* For variable targets, we get some attributes from the target. */
8480 if (target
->expr_type
== EXPR_VARIABLE
)
8484 gcc_assert (target
->symtree
);
8485 tsym
= target
->symtree
->n
.sym
;
8487 sym
->attr
.asynchronous
= tsym
->attr
.asynchronous
;
8488 sym
->attr
.volatile_
= tsym
->attr
.volatile_
;
8490 sym
->attr
.target
= tsym
->attr
.target
8491 || gfc_expr_attr (target
).pointer
;
8492 if (is_subref_array (target
))
8493 sym
->attr
.subref_array_pointer
= 1;
8496 if (target
->expr_type
== EXPR_NULL
)
8498 gfc_error ("Selector at %L cannot be NULL()", &target
->where
);
8501 else if (target
->ts
.type
== BT_UNKNOWN
)
8503 gfc_error ("Selector at %L has no type", &target
->where
);
8507 /* Get type if this was not already set. Note that it can be
8508 some other type than the target in case this is a SELECT TYPE
8509 selector! So we must not update when the type is already there. */
8510 if (sym
->ts
.type
== BT_UNKNOWN
)
8511 sym
->ts
= target
->ts
;
8513 gcc_assert (sym
->ts
.type
!= BT_UNKNOWN
);
8515 /* See if this is a valid association-to-variable. */
8516 sym
->assoc
->variable
= (target
->expr_type
== EXPR_VARIABLE
8517 && !gfc_has_vector_subscript (target
));
8519 /* Finally resolve if this is an array or not. */
8520 if (sym
->attr
.dimension
&& target
->rank
== 0)
8522 /* primary.c makes the assumption that a reference to an associate
8523 name followed by a left parenthesis is an array reference. */
8524 if (sym
->ts
.type
!= BT_CHARACTER
)
8525 gfc_error ("Associate-name %qs at %L is used as array",
8526 sym
->name
, &sym
->declared_at
);
8527 sym
->attr
.dimension
= 0;
8532 /* We cannot deal with class selectors that need temporaries. */
8533 if (target
->ts
.type
== BT_CLASS
8534 && gfc_ref_needs_temporary_p (target
->ref
))
8536 gfc_error ("CLASS selector at %L needs a temporary which is not "
8537 "yet implemented", &target
->where
);
8541 if (target
->ts
.type
== BT_CLASS
)
8542 gfc_fix_class_refs (target
);
8544 if (target
->rank
!= 0)
8547 /* The rank may be incorrectly guessed at parsing, therefore make sure
8548 it is corrected now. */
8549 if (sym
->ts
.type
!= BT_CLASS
&& (!sym
->as
|| sym
->assoc
->rankguessed
))
8552 sym
->as
= gfc_get_array_spec ();
8554 as
->rank
= target
->rank
;
8555 as
->type
= AS_DEFERRED
;
8556 as
->corank
= gfc_get_corank (target
);
8557 sym
->attr
.dimension
= 1;
8558 if (as
->corank
!= 0)
8559 sym
->attr
.codimension
= 1;
8564 /* target's rank is 0, but the type of the sym is still array valued,
8565 which has to be corrected. */
8566 if (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)->as
)
8569 symbol_attribute attr
;
8570 /* The associated variable's type is still the array type
8571 correct this now. */
8572 gfc_typespec
*ts
= &target
->ts
;
8575 for (ref
= target
->ref
; ref
!= NULL
; ref
= ref
->next
)
8580 ts
= &ref
->u
.c
.component
->ts
;
8583 if (ts
->type
== BT_CLASS
)
8584 ts
= &ts
->u
.derived
->components
->ts
;
8590 /* Create a scalar instance of the current class type. Because the
8591 rank of a class array goes into its name, the type has to be
8592 rebuild. The alternative of (re-)setting just the attributes
8593 and as in the current type, destroys the type also in other
8597 sym
->ts
.type
= BT_CLASS
;
8598 attr
= CLASS_DATA (sym
)->attr
;
8600 attr
.associate_var
= 1;
8601 attr
.dimension
= attr
.codimension
= 0;
8602 attr
.class_pointer
= 1;
8603 if (!gfc_build_class_symbol (&sym
->ts
, &attr
, &as
))
8605 /* Make sure the _vptr is set. */
8606 c
= gfc_find_component (sym
->ts
.u
.derived
, "_vptr", true, true, NULL
);
8607 if (c
->ts
.u
.derived
== NULL
)
8608 c
->ts
.u
.derived
= gfc_find_derived_vtab (sym
->ts
.u
.derived
);
8609 CLASS_DATA (sym
)->attr
.pointer
= 1;
8610 CLASS_DATA (sym
)->attr
.class_pointer
= 1;
8611 gfc_set_sym_referenced (sym
->ts
.u
.derived
);
8612 gfc_commit_symbol (sym
->ts
.u
.derived
);
8613 /* _vptr now has the _vtab in it, change it to the _vtype. */
8614 if (c
->ts
.u
.derived
->attr
.vtab
)
8615 c
->ts
.u
.derived
= c
->ts
.u
.derived
->ts
.u
.derived
;
8616 c
->ts
.u
.derived
->ns
->types_resolved
= 0;
8617 resolve_types (c
->ts
.u
.derived
->ns
);
8621 /* Mark this as an associate variable. */
8622 sym
->attr
.associate_var
= 1;
8624 /* Fix up the type-spec for CHARACTER types. */
8625 if (sym
->ts
.type
== BT_CHARACTER
&& !sym
->attr
.select_type_temporary
)
8628 sym
->ts
.u
.cl
= target
->ts
.u
.cl
;
8630 if (!sym
->ts
.u
.cl
->length
&& !sym
->ts
.deferred
)
8631 sym
->ts
.u
.cl
->length
8632 = gfc_get_int_expr (gfc_default_integer_kind
,
8633 NULL
, target
->value
.character
.length
);
8636 /* If the target is a good class object, so is the associate variable. */
8637 if (sym
->ts
.type
== BT_CLASS
&& gfc_expr_attr (target
).class_ok
)
8638 sym
->attr
.class_ok
= 1;
8642 /* Ensure that SELECT TYPE expressions have the correct rank and a full
8643 array reference, where necessary. The symbols are artificial and so
8644 the dimension attribute and arrayspec can also be set. In addition,
8645 sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
8646 This is corrected here as well.*/
8649 fixup_array_ref (gfc_expr
**expr1
, gfc_expr
*expr2
,
8650 int rank
, gfc_ref
*ref
)
8652 gfc_ref
*nref
= (*expr1
)->ref
;
8653 gfc_symbol
*sym1
= (*expr1
)->symtree
->n
.sym
;
8654 gfc_symbol
*sym2
= expr2
? expr2
->symtree
->n
.sym
: NULL
;
8655 (*expr1
)->rank
= rank
;
8656 if (sym1
->ts
.type
== BT_CLASS
)
8658 if ((*expr1
)->ts
.type
!= BT_CLASS
)
8659 (*expr1
)->ts
= sym1
->ts
;
8661 CLASS_DATA (sym1
)->attr
.dimension
= 1;
8662 if (CLASS_DATA (sym1
)->as
== NULL
&& sym2
)
8663 CLASS_DATA (sym1
)->as
8664 = gfc_copy_array_spec (CLASS_DATA (sym2
)->as
);
8668 sym1
->attr
.dimension
= 1;
8669 if (sym1
->as
== NULL
&& sym2
)
8670 sym1
->as
= gfc_copy_array_spec (sym2
->as
);
8673 for (; nref
; nref
= nref
->next
)
8674 if (nref
->next
== NULL
)
8677 if (ref
&& nref
&& nref
->type
!= REF_ARRAY
)
8678 nref
->next
= gfc_copy_ref (ref
);
8679 else if (ref
&& !nref
)
8680 (*expr1
)->ref
= gfc_copy_ref (ref
);
8685 build_loc_call (gfc_expr
*sym_expr
)
8688 loc_call
= gfc_get_expr ();
8689 loc_call
->expr_type
= EXPR_FUNCTION
;
8690 gfc_get_sym_tree ("loc", gfc_current_ns
, &loc_call
->symtree
, false);
8691 loc_call
->symtree
->n
.sym
->attr
.flavor
= FL_PROCEDURE
;
8692 loc_call
->symtree
->n
.sym
->attr
.intrinsic
= 1;
8693 loc_call
->symtree
->n
.sym
->result
= loc_call
->symtree
->n
.sym
;
8694 gfc_commit_symbol (loc_call
->symtree
->n
.sym
);
8695 loc_call
->ts
.type
= BT_INTEGER
;
8696 loc_call
->ts
.kind
= gfc_index_integer_kind
;
8697 loc_call
->value
.function
.isym
= gfc_intrinsic_function_by_id (GFC_ISYM_LOC
);
8698 loc_call
->value
.function
.actual
= gfc_get_actual_arglist ();
8699 loc_call
->value
.function
.actual
->expr
= sym_expr
;
8700 loc_call
->where
= sym_expr
->where
;
8704 /* Resolve a SELECT TYPE statement. */
8707 resolve_select_type (gfc_code
*code
, gfc_namespace
*old_ns
)
8709 gfc_symbol
*selector_type
;
8710 gfc_code
*body
, *new_st
, *if_st
, *tail
;
8711 gfc_code
*class_is
= NULL
, *default_case
= NULL
;
8714 char name
[GFC_MAX_SYMBOL_LEN
];
8719 gfc_ref
* ref
= NULL
;
8720 gfc_expr
*selector_expr
= NULL
;
8722 ns
= code
->ext
.block
.ns
;
8725 /* Check for F03:C813. */
8726 if (code
->expr1
->ts
.type
!= BT_CLASS
8727 && !(code
->expr2
&& code
->expr2
->ts
.type
== BT_CLASS
))
8729 gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
8730 "at %L", &code
->loc
);
8734 if (!code
->expr1
->symtree
->n
.sym
->attr
.class_ok
)
8739 if (code
->expr1
->symtree
->n
.sym
->attr
.untyped
)
8740 code
->expr1
->symtree
->n
.sym
->ts
= code
->expr2
->ts
;
8741 selector_type
= CLASS_DATA (code
->expr2
)->ts
.u
.derived
;
8743 /* F2008: C803 The selector expression must not be coindexed. */
8744 if (gfc_is_coindexed (code
->expr2
))
8746 gfc_error ("Selector at %L must not be coindexed",
8747 &code
->expr2
->where
);
8754 selector_type
= CLASS_DATA (code
->expr1
)->ts
.u
.derived
;
8756 if (gfc_is_coindexed (code
->expr1
))
8758 gfc_error ("Selector at %L must not be coindexed",
8759 &code
->expr1
->where
);
8764 /* Loop over TYPE IS / CLASS IS cases. */
8765 for (body
= code
->block
; body
; body
= body
->block
)
8767 c
= body
->ext
.block
.case_list
;
8771 /* Check for repeated cases. */
8772 for (tail
= code
->block
; tail
; tail
= tail
->block
)
8774 gfc_case
*d
= tail
->ext
.block
.case_list
;
8778 if (c
->ts
.type
== d
->ts
.type
8779 && ((c
->ts
.type
== BT_DERIVED
8780 && c
->ts
.u
.derived
&& d
->ts
.u
.derived
8781 && !strcmp (c
->ts
.u
.derived
->name
,
8782 d
->ts
.u
.derived
->name
))
8783 || c
->ts
.type
== BT_UNKNOWN
8784 || (!(c
->ts
.type
== BT_DERIVED
|| c
->ts
.type
== BT_CLASS
)
8785 && c
->ts
.kind
== d
->ts
.kind
)))
8787 gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
8788 &c
->where
, &d
->where
);
8794 /* Check F03:C815. */
8795 if ((c
->ts
.type
== BT_DERIVED
|| c
->ts
.type
== BT_CLASS
)
8796 && !selector_type
->attr
.unlimited_polymorphic
8797 && !gfc_type_is_extensible (c
->ts
.u
.derived
))
8799 gfc_error ("Derived type %qs at %L must be extensible",
8800 c
->ts
.u
.derived
->name
, &c
->where
);
8805 /* Check F03:C816. */
8806 if (c
->ts
.type
!= BT_UNKNOWN
&& !selector_type
->attr
.unlimited_polymorphic
8807 && ((c
->ts
.type
!= BT_DERIVED
&& c
->ts
.type
!= BT_CLASS
)
8808 || !gfc_type_is_extension_of (selector_type
, c
->ts
.u
.derived
)))
8810 if (c
->ts
.type
== BT_DERIVED
|| c
->ts
.type
== BT_CLASS
)
8811 gfc_error ("Derived type %qs at %L must be an extension of %qs",
8812 c
->ts
.u
.derived
->name
, &c
->where
, selector_type
->name
);
8814 gfc_error ("Unexpected intrinsic type %qs at %L",
8815 gfc_basic_typename (c
->ts
.type
), &c
->where
);
8820 /* Check F03:C814. */
8821 if (c
->ts
.type
== BT_CHARACTER
8822 && (c
->ts
.u
.cl
->length
!= NULL
|| c
->ts
.deferred
))
8824 gfc_error ("The type-spec at %L shall specify that each length "
8825 "type parameter is assumed", &c
->where
);
8830 /* Intercept the DEFAULT case. */
8831 if (c
->ts
.type
== BT_UNKNOWN
)
8833 /* Check F03:C818. */
8836 gfc_error ("The DEFAULT CASE at %L cannot be followed "
8837 "by a second DEFAULT CASE at %L",
8838 &default_case
->ext
.block
.case_list
->where
, &c
->where
);
8843 default_case
= body
;
8850 /* Transform SELECT TYPE statement to BLOCK and associate selector to
8851 target if present. If there are any EXIT statements referring to the
8852 SELECT TYPE construct, this is no problem because the gfc_code
8853 reference stays the same and EXIT is equally possible from the BLOCK
8854 it is changed to. */
8855 code
->op
= EXEC_BLOCK
;
8858 gfc_association_list
* assoc
;
8860 assoc
= gfc_get_association_list ();
8861 assoc
->st
= code
->expr1
->symtree
;
8862 assoc
->target
= gfc_copy_expr (code
->expr2
);
8863 assoc
->target
->where
= code
->expr2
->where
;
8864 /* assoc->variable will be set by resolve_assoc_var. */
8866 code
->ext
.block
.assoc
= assoc
;
8867 code
->expr1
->symtree
->n
.sym
->assoc
= assoc
;
8869 resolve_assoc_var (code
->expr1
->symtree
->n
.sym
, false);
8872 code
->ext
.block
.assoc
= NULL
;
8874 /* Ensure that the selector rank and arrayspec are available to
8875 correct expressions in which they might be missing. */
8876 if (code
->expr2
&& code
->expr2
->rank
)
8878 rank
= code
->expr2
->rank
;
8879 for (ref
= code
->expr2
->ref
; ref
; ref
= ref
->next
)
8880 if (ref
->next
== NULL
)
8882 if (ref
&& ref
->type
== REF_ARRAY
)
8883 ref
= gfc_copy_ref (ref
);
8885 /* Fixup expr1 if necessary. */
8887 fixup_array_ref (&code
->expr1
, code
->expr2
, rank
, ref
);
8889 else if (code
->expr1
->rank
)
8891 rank
= code
->expr1
->rank
;
8892 for (ref
= code
->expr1
->ref
; ref
; ref
= ref
->next
)
8893 if (ref
->next
== NULL
)
8895 if (ref
&& ref
->type
== REF_ARRAY
)
8896 ref
= gfc_copy_ref (ref
);
8899 /* Add EXEC_SELECT to switch on type. */
8900 new_st
= gfc_get_code (code
->op
);
8901 new_st
->expr1
= code
->expr1
;
8902 new_st
->expr2
= code
->expr2
;
8903 new_st
->block
= code
->block
;
8904 code
->expr1
= code
->expr2
= NULL
;
8909 ns
->code
->next
= new_st
;
8911 code
->op
= EXEC_SELECT_TYPE
;
8913 /* Use the intrinsic LOC function to generate an integer expression
8914 for the vtable of the selector. Note that the rank of the selector
8915 expression has to be set to zero. */
8916 gfc_add_vptr_component (code
->expr1
);
8917 code
->expr1
->rank
= 0;
8918 code
->expr1
= build_loc_call (code
->expr1
);
8919 selector_expr
= code
->expr1
->value
.function
.actual
->expr
;
8921 /* Loop over TYPE IS / CLASS IS cases. */
8922 for (body
= code
->block
; body
; body
= body
->block
)
8926 c
= body
->ext
.block
.case_list
;
8928 /* Generate an index integer expression for address of the
8929 TYPE/CLASS vtable and store it in c->low. The hash expression
8930 is stored in c->high and is used to resolve intrinsic cases. */
8931 if (c
->ts
.type
!= BT_UNKNOWN
)
8933 if (c
->ts
.type
== BT_DERIVED
|| c
->ts
.type
== BT_CLASS
)
8935 vtab
= gfc_find_derived_vtab (c
->ts
.u
.derived
);
8937 c
->high
= gfc_get_int_expr (gfc_default_integer_kind
, NULL
,
8938 c
->ts
.u
.derived
->hash_value
);
8942 vtab
= gfc_find_vtab (&c
->ts
);
8943 gcc_assert (vtab
&& CLASS_DATA (vtab
)->initializer
);
8944 e
= CLASS_DATA (vtab
)->initializer
;
8945 c
->high
= gfc_copy_expr (e
);
8948 e
= gfc_lval_expr_from_sym (vtab
);
8949 c
->low
= build_loc_call (e
);
8954 /* Associate temporary to selector. This should only be done
8955 when this case is actually true, so build a new ASSOCIATE
8956 that does precisely this here (instead of using the
8959 if (c
->ts
.type
== BT_CLASS
)
8960 sprintf (name
, "__tmp_class_%s", c
->ts
.u
.derived
->name
);
8961 else if (c
->ts
.type
== BT_DERIVED
)
8962 sprintf (name
, "__tmp_type_%s", c
->ts
.u
.derived
->name
);
8963 else if (c
->ts
.type
== BT_CHARACTER
)
8965 if (c
->ts
.u
.cl
&& c
->ts
.u
.cl
->length
8966 && c
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
8967 charlen
= mpz_get_si (c
->ts
.u
.cl
->length
->value
.integer
);
8968 sprintf (name
, "__tmp_%s_%d_%d", gfc_basic_typename (c
->ts
.type
),
8969 charlen
, c
->ts
.kind
);
8972 sprintf (name
, "__tmp_%s_%d", gfc_basic_typename (c
->ts
.type
),
8975 st
= gfc_find_symtree (ns
->sym_root
, name
);
8976 gcc_assert (st
->n
.sym
->assoc
);
8977 st
->n
.sym
->assoc
->target
= gfc_get_variable_expr (selector_expr
->symtree
);
8978 st
->n
.sym
->assoc
->target
->where
= selector_expr
->where
;
8979 if (c
->ts
.type
!= BT_CLASS
&& c
->ts
.type
!= BT_UNKNOWN
)
8981 gfc_add_data_component (st
->n
.sym
->assoc
->target
);
8982 /* Fixup the target expression if necessary. */
8984 fixup_array_ref (&st
->n
.sym
->assoc
->target
, NULL
, rank
, ref
);
8987 new_st
= gfc_get_code (EXEC_BLOCK
);
8988 new_st
->ext
.block
.ns
= gfc_build_block_ns (ns
);
8989 new_st
->ext
.block
.ns
->code
= body
->next
;
8990 body
->next
= new_st
;
8992 /* Chain in the new list only if it is marked as dangling. Otherwise
8993 there is a CASE label overlap and this is already used. Just ignore,
8994 the error is diagnosed elsewhere. */
8995 if (st
->n
.sym
->assoc
->dangling
)
8997 new_st
->ext
.block
.assoc
= st
->n
.sym
->assoc
;
8998 st
->n
.sym
->assoc
->dangling
= 0;
9001 resolve_assoc_var (st
->n
.sym
, false);
9004 /* Take out CLASS IS cases for separate treatment. */
9006 while (body
&& body
->block
)
9008 if (body
->block
->ext
.block
.case_list
->ts
.type
== BT_CLASS
)
9010 /* Add to class_is list. */
9011 if (class_is
== NULL
)
9013 class_is
= body
->block
;
9018 for (tail
= class_is
; tail
->block
; tail
= tail
->block
) ;
9019 tail
->block
= body
->block
;
9022 /* Remove from EXEC_SELECT list. */
9023 body
->block
= body
->block
->block
;
9036 /* Add a default case to hold the CLASS IS cases. */
9037 for (tail
= code
; tail
->block
; tail
= tail
->block
) ;
9038 tail
->block
= gfc_get_code (EXEC_SELECT_TYPE
);
9040 tail
->ext
.block
.case_list
= gfc_get_case ();
9041 tail
->ext
.block
.case_list
->ts
.type
= BT_UNKNOWN
;
9043 default_case
= tail
;
9046 /* More than one CLASS IS block? */
9047 if (class_is
->block
)
9051 /* Sort CLASS IS blocks by extension level. */
9055 for (c1
= &class_is
; (*c1
) && (*c1
)->block
; c1
= &((*c1
)->block
))
9058 /* F03:C817 (check for doubles). */
9059 if ((*c1
)->ext
.block
.case_list
->ts
.u
.derived
->hash_value
9060 == c2
->ext
.block
.case_list
->ts
.u
.derived
->hash_value
)
9062 gfc_error ("Double CLASS IS block in SELECT TYPE "
9064 &c2
->ext
.block
.case_list
->where
);
9067 if ((*c1
)->ext
.block
.case_list
->ts
.u
.derived
->attr
.extension
9068 < c2
->ext
.block
.case_list
->ts
.u
.derived
->attr
.extension
)
9071 (*c1
)->block
= c2
->block
;
9081 /* Generate IF chain. */
9082 if_st
= gfc_get_code (EXEC_IF
);
9084 for (body
= class_is
; body
; body
= body
->block
)
9086 new_st
->block
= gfc_get_code (EXEC_IF
);
9087 new_st
= new_st
->block
;
9088 /* Set up IF condition: Call _gfortran_is_extension_of. */
9089 new_st
->expr1
= gfc_get_expr ();
9090 new_st
->expr1
->expr_type
= EXPR_FUNCTION
;
9091 new_st
->expr1
->ts
.type
= BT_LOGICAL
;
9092 new_st
->expr1
->ts
.kind
= 4;
9093 new_st
->expr1
->value
.function
.name
= gfc_get_string (PREFIX ("is_extension_of"));
9094 new_st
->expr1
->value
.function
.isym
= XCNEW (gfc_intrinsic_sym
);
9095 new_st
->expr1
->value
.function
.isym
->id
= GFC_ISYM_EXTENDS_TYPE_OF
;
9096 /* Set up arguments. */
9097 new_st
->expr1
->value
.function
.actual
= gfc_get_actual_arglist ();
9098 new_st
->expr1
->value
.function
.actual
->expr
= gfc_get_variable_expr (selector_expr
->symtree
);
9099 new_st
->expr1
->value
.function
.actual
->expr
->where
= code
->loc
;
9100 new_st
->expr1
->where
= code
->loc
;
9101 gfc_add_vptr_component (new_st
->expr1
->value
.function
.actual
->expr
);
9102 vtab
= gfc_find_derived_vtab (body
->ext
.block
.case_list
->ts
.u
.derived
);
9103 st
= gfc_find_symtree (vtab
->ns
->sym_root
, vtab
->name
);
9104 new_st
->expr1
->value
.function
.actual
->next
= gfc_get_actual_arglist ();
9105 new_st
->expr1
->value
.function
.actual
->next
->expr
= gfc_get_variable_expr (st
);
9106 new_st
->expr1
->value
.function
.actual
->next
->expr
->where
= code
->loc
;
9107 new_st
->next
= body
->next
;
9109 if (default_case
->next
)
9111 new_st
->block
= gfc_get_code (EXEC_IF
);
9112 new_st
= new_st
->block
;
9113 new_st
->next
= default_case
->next
;
9116 /* Replace CLASS DEFAULT code by the IF chain. */
9117 default_case
->next
= if_st
;
9120 /* Resolve the internal code. This can not be done earlier because
9121 it requires that the sym->assoc of selectors is set already. */
9122 gfc_current_ns
= ns
;
9123 gfc_resolve_blocks (code
->block
, gfc_current_ns
);
9124 gfc_current_ns
= old_ns
;
9131 /* Resolve a transfer statement. This is making sure that:
9132 -- a derived type being transferred has only non-pointer components
9133 -- a derived type being transferred doesn't have private components, unless
9134 it's being transferred from the module where the type was defined
9135 -- we're not trying to transfer a whole assumed size array. */
9138 resolve_transfer (gfc_code
*code
)
9141 gfc_symbol
*sym
, *derived
;
9145 bool formatted
= false;
9146 gfc_dt
*dt
= code
->ext
.dt
;
9147 gfc_symbol
*dtio_sub
= NULL
;
9151 while (exp
!= NULL
&& exp
->expr_type
== EXPR_OP
9152 && exp
->value
.op
.op
== INTRINSIC_PARENTHESES
)
9153 exp
= exp
->value
.op
.op1
;
9155 if (exp
&& exp
->expr_type
== EXPR_NULL
9158 gfc_error ("Invalid context for NULL () intrinsic at %L",
9163 if (exp
== NULL
|| (exp
->expr_type
!= EXPR_VARIABLE
9164 && exp
->expr_type
!= EXPR_FUNCTION
9165 && exp
->expr_type
!= EXPR_STRUCTURE
))
9168 /* If we are reading, the variable will be changed. Note that
9169 code->ext.dt may be NULL if the TRANSFER is related to
9170 an INQUIRE statement -- but in this case, we are not reading, either. */
9171 if (dt
&& dt
->dt_io_kind
->value
.iokind
== M_READ
9172 && !gfc_check_vardef_context (exp
, false, false, false,
9176 ts
= exp
->expr_type
== EXPR_STRUCTURE
? &exp
->ts
: &exp
->symtree
->n
.sym
->ts
;
9178 /* Go to actual component transferred. */
9179 for (ref
= exp
->ref
; ref
; ref
= ref
->next
)
9180 if (ref
->type
== REF_COMPONENT
)
9181 ts
= &ref
->u
.c
.component
->ts
;
9183 if (dt
&& dt
->dt_io_kind
->value
.iokind
!= M_INQUIRE
9184 && (ts
->type
== BT_DERIVED
|| ts
->type
== BT_CLASS
))
9186 if (ts
->type
== BT_DERIVED
|| ts
->type
== BT_CLASS
)
9187 derived
= ts
->u
.derived
;
9189 derived
= ts
->u
.derived
->components
->ts
.u
.derived
;
9191 if (dt
->format_expr
)
9194 fmt
= gfc_widechar_to_char (dt
->format_expr
->value
.character
.string
,
9196 if (strtok (fmt
, "DT") != NULL
)
9199 else if (dt
->format_label
== &format_asterisk
)
9201 /* List directed io must call the formatted DTIO procedure. */
9205 write
= dt
->dt_io_kind
->value
.iokind
== M_WRITE
9206 || dt
->dt_io_kind
->value
.iokind
== M_PRINT
;
9207 dtio_sub
= gfc_find_specific_dtio_proc (derived
, write
, formatted
);
9209 if (dtio_sub
!= NULL
&& exp
->expr_type
== EXPR_VARIABLE
)
9212 sym
= exp
->symtree
->n
.sym
->ns
->proc_name
;
9213 /* Check to see if this is a nested DTIO call, with the
9214 dummy as the io-list object. */
9215 if (sym
&& sym
== dtio_sub
&& sym
->formal
9216 && sym
->formal
->sym
== exp
->symtree
->n
.sym
9217 && exp
->ref
== NULL
)
9219 if (!sym
->attr
.recursive
)
9221 gfc_error ("DTIO %s procedure at %L must be recursive",
9222 sym
->name
, &sym
->declared_at
);
9229 if (ts
->type
== BT_CLASS
&& dtio_sub
== NULL
)
9231 gfc_error ("Data transfer element at %L cannot be polymorphic unless "
9232 "it is processed by a defined input/output procedure",
9237 if (ts
->type
== BT_DERIVED
)
9239 /* Check that transferred derived type doesn't contain POINTER
9240 components unless it is processed by a defined input/output
9242 if (ts
->u
.derived
->attr
.pointer_comp
&& dtio_sub
== NULL
)
9244 gfc_error ("Data transfer element at %L cannot have POINTER "
9245 "components unless it is processed by a defined "
9246 "input/output procedure", &code
->loc
);
9251 if (ts
->u
.derived
->attr
.proc_pointer_comp
)
9253 gfc_error ("Data transfer element at %L cannot have "
9254 "procedure pointer components", &code
->loc
);
9258 if (ts
->u
.derived
->attr
.alloc_comp
&& dtio_sub
== NULL
)
9260 gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
9261 "components unless it is processed by a defined "
9262 "input/output procedure", &code
->loc
);
9266 /* C_PTR and C_FUNPTR have private components which means they can not
9267 be printed. However, if -std=gnu and not -pedantic, allow
9268 the component to be printed to help debugging. */
9269 if (ts
->u
.derived
->ts
.f90_type
== BT_VOID
)
9271 if (!gfc_notify_std (GFC_STD_GNU
, "Data transfer element at %L "
9272 "cannot have PRIVATE components", &code
->loc
))
9275 else if (derived_inaccessible (ts
->u
.derived
) && dtio_sub
== NULL
)
9277 gfc_error ("Data transfer element at %L cannot have "
9278 "PRIVATE components unless it is processed by "
9279 "a defined input/output procedure", &code
->loc
);
9284 if (exp
->expr_type
== EXPR_STRUCTURE
)
9287 sym
= exp
->symtree
->n
.sym
;
9289 if (sym
->as
!= NULL
&& sym
->as
->type
== AS_ASSUMED_SIZE
&& exp
->ref
9290 && exp
->ref
->type
== REF_ARRAY
&& exp
->ref
->u
.ar
.type
== AR_FULL
)
9292 gfc_error ("Data transfer element at %L cannot be a full reference to "
9293 "an assumed-size array", &code
->loc
);
9297 if (async_io_dt
&& exp
->expr_type
== EXPR_VARIABLE
)
9298 exp
->symtree
->n
.sym
->attr
.asynchronous
= 1;
9302 /*********** Toplevel code resolution subroutines ***********/
9304 /* Find the set of labels that are reachable from this block. We also
9305 record the last statement in each block. */
9308 find_reachable_labels (gfc_code
*block
)
9315 cs_base
->reachable_labels
= bitmap_alloc (&labels_obstack
);
9317 /* Collect labels in this block. We don't keep those corresponding
9318 to END {IF|SELECT}, these are checked in resolve_branch by going
9319 up through the code_stack. */
9320 for (c
= block
; c
; c
= c
->next
)
9322 if (c
->here
&& c
->op
!= EXEC_END_NESTED_BLOCK
)
9323 bitmap_set_bit (cs_base
->reachable_labels
, c
->here
->value
);
9326 /* Merge with labels from parent block. */
9329 gcc_assert (cs_base
->prev
->reachable_labels
);
9330 bitmap_ior_into (cs_base
->reachable_labels
,
9331 cs_base
->prev
->reachable_labels
);
9337 resolve_lock_unlock_event (gfc_code
*code
)
9339 if (code
->expr1
->expr_type
== EXPR_FUNCTION
9340 && code
->expr1
->value
.function
.isym
9341 && code
->expr1
->value
.function
.isym
->id
== GFC_ISYM_CAF_GET
)
9342 remove_caf_get_intrinsic (code
->expr1
);
9344 if ((code
->op
== EXEC_LOCK
|| code
->op
== EXEC_UNLOCK
)
9345 && (code
->expr1
->ts
.type
!= BT_DERIVED
9346 || code
->expr1
->expr_type
!= EXPR_VARIABLE
9347 || code
->expr1
->ts
.u
.derived
->from_intmod
!= INTMOD_ISO_FORTRAN_ENV
9348 || code
->expr1
->ts
.u
.derived
->intmod_sym_id
!= ISOFORTRAN_LOCK_TYPE
9349 || code
->expr1
->rank
!= 0
9350 || (!gfc_is_coarray (code
->expr1
) &&
9351 !gfc_is_coindexed (code
->expr1
))))
9352 gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
9353 &code
->expr1
->where
);
9354 else if ((code
->op
== EXEC_EVENT_POST
|| code
->op
== EXEC_EVENT_WAIT
)
9355 && (code
->expr1
->ts
.type
!= BT_DERIVED
9356 || code
->expr1
->expr_type
!= EXPR_VARIABLE
9357 || code
->expr1
->ts
.u
.derived
->from_intmod
9358 != INTMOD_ISO_FORTRAN_ENV
9359 || code
->expr1
->ts
.u
.derived
->intmod_sym_id
9360 != ISOFORTRAN_EVENT_TYPE
9361 || code
->expr1
->rank
!= 0))
9362 gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
9363 &code
->expr1
->where
);
9364 else if (code
->op
== EXEC_EVENT_POST
&& !gfc_is_coarray (code
->expr1
)
9365 && !gfc_is_coindexed (code
->expr1
))
9366 gfc_error ("Event variable argument at %L must be a coarray or coindexed",
9367 &code
->expr1
->where
);
9368 else if (code
->op
== EXEC_EVENT_WAIT
&& !gfc_is_coarray (code
->expr1
))
9369 gfc_error ("Event variable argument at %L must be a coarray but not "
9370 "coindexed", &code
->expr1
->where
);
9374 && (code
->expr2
->ts
.type
!= BT_INTEGER
|| code
->expr2
->rank
!= 0
9375 || code
->expr2
->expr_type
!= EXPR_VARIABLE
))
9376 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9377 &code
->expr2
->where
);
9380 && !gfc_check_vardef_context (code
->expr2
, false, false, false,
9381 _("STAT variable")))
9386 && (code
->expr3
->ts
.type
!= BT_CHARACTER
|| code
->expr3
->rank
!= 0
9387 || code
->expr3
->expr_type
!= EXPR_VARIABLE
))
9388 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9389 &code
->expr3
->where
);
9392 && !gfc_check_vardef_context (code
->expr3
, false, false, false,
9393 _("ERRMSG variable")))
9396 /* Check for LOCK the ACQUIRED_LOCK. */
9397 if (code
->op
!= EXEC_EVENT_WAIT
&& code
->expr4
9398 && (code
->expr4
->ts
.type
!= BT_LOGICAL
|| code
->expr4
->rank
!= 0
9399 || code
->expr4
->expr_type
!= EXPR_VARIABLE
))
9400 gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
9401 "variable", &code
->expr4
->where
);
9403 if (code
->op
!= EXEC_EVENT_WAIT
&& code
->expr4
9404 && !gfc_check_vardef_context (code
->expr4
, false, false, false,
9405 _("ACQUIRED_LOCK variable")))
9408 /* Check for EVENT WAIT the UNTIL_COUNT. */
9409 if (code
->op
== EXEC_EVENT_WAIT
&& code
->expr4
)
9411 if (!gfc_resolve_expr (code
->expr4
) || code
->expr4
->ts
.type
!= BT_INTEGER
9412 || code
->expr4
->rank
!= 0)
9413 gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
9414 "expression", &code
->expr4
->where
);
9420 resolve_critical (gfc_code
*code
)
9422 gfc_symtree
*symtree
;
9423 gfc_symbol
*lock_type
;
9424 char name
[GFC_MAX_SYMBOL_LEN
];
9425 static int serial
= 0;
9427 if (flag_coarray
!= GFC_FCOARRAY_LIB
)
9430 symtree
= gfc_find_symtree (gfc_current_ns
->sym_root
,
9431 GFC_PREFIX ("lock_type"));
9433 lock_type
= symtree
->n
.sym
;
9436 if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns
, &symtree
,
9439 lock_type
= symtree
->n
.sym
;
9440 lock_type
->attr
.flavor
= FL_DERIVED
;
9441 lock_type
->attr
.zero_comp
= 1;
9442 lock_type
->from_intmod
= INTMOD_ISO_FORTRAN_ENV
;
9443 lock_type
->intmod_sym_id
= ISOFORTRAN_LOCK_TYPE
;
9446 sprintf(name
, GFC_PREFIX ("lock_var") "%d",serial
++);
9447 if (gfc_get_sym_tree (name
, gfc_current_ns
, &symtree
, false) != 0)
9450 code
->resolved_sym
= symtree
->n
.sym
;
9451 symtree
->n
.sym
->attr
.flavor
= FL_VARIABLE
;
9452 symtree
->n
.sym
->attr
.referenced
= 1;
9453 symtree
->n
.sym
->attr
.artificial
= 1;
9454 symtree
->n
.sym
->attr
.codimension
= 1;
9455 symtree
->n
.sym
->ts
.type
= BT_DERIVED
;
9456 symtree
->n
.sym
->ts
.u
.derived
= lock_type
;
9457 symtree
->n
.sym
->as
= gfc_get_array_spec ();
9458 symtree
->n
.sym
->as
->corank
= 1;
9459 symtree
->n
.sym
->as
->type
= AS_EXPLICIT
;
9460 symtree
->n
.sym
->as
->cotype
= AS_EXPLICIT
;
9461 symtree
->n
.sym
->as
->lower
[0] = gfc_get_int_expr (gfc_default_integer_kind
,
9463 gfc_commit_symbols();
9468 resolve_sync (gfc_code
*code
)
9470 /* Check imageset. The * case matches expr1 == NULL. */
9473 if (code
->expr1
->ts
.type
!= BT_INTEGER
|| code
->expr1
->rank
> 1)
9474 gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
9475 "INTEGER expression", &code
->expr1
->where
);
9476 if (code
->expr1
->expr_type
== EXPR_CONSTANT
&& code
->expr1
->rank
== 0
9477 && mpz_cmp_si (code
->expr1
->value
.integer
, 1) < 0)
9478 gfc_error ("Imageset argument at %L must between 1 and num_images()",
9479 &code
->expr1
->where
);
9480 else if (code
->expr1
->expr_type
== EXPR_ARRAY
9481 && gfc_simplify_expr (code
->expr1
, 0))
9483 gfc_constructor
*cons
;
9484 cons
= gfc_constructor_first (code
->expr1
->value
.constructor
);
9485 for (; cons
; cons
= gfc_constructor_next (cons
))
9486 if (cons
->expr
->expr_type
== EXPR_CONSTANT
9487 && mpz_cmp_si (cons
->expr
->value
.integer
, 1) < 0)
9488 gfc_error ("Imageset argument at %L must between 1 and "
9489 "num_images()", &cons
->expr
->where
);
9495 && (code
->expr2
->ts
.type
!= BT_INTEGER
|| code
->expr2
->rank
!= 0
9496 || code
->expr2
->expr_type
!= EXPR_VARIABLE
))
9497 gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
9498 &code
->expr2
->where
);
9502 && (code
->expr3
->ts
.type
!= BT_CHARACTER
|| code
->expr3
->rank
!= 0
9503 || code
->expr3
->expr_type
!= EXPR_VARIABLE
))
9504 gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
9505 &code
->expr3
->where
);
9509 /* Given a branch to a label, see if the branch is conforming.
9510 The code node describes where the branch is located. */
9513 resolve_branch (gfc_st_label
*label
, gfc_code
*code
)
9520 /* Step one: is this a valid branching target? */
9522 if (label
->defined
== ST_LABEL_UNKNOWN
)
9524 gfc_error ("Label %d referenced at %L is never defined", label
->value
,
9529 if (label
->defined
!= ST_LABEL_TARGET
&& label
->defined
!= ST_LABEL_DO_TARGET
)
9531 gfc_error ("Statement at %L is not a valid branch target statement "
9532 "for the branch statement at %L", &label
->where
, &code
->loc
);
9536 /* Step two: make sure this branch is not a branch to itself ;-) */
9538 if (code
->here
== label
)
9541 "Branch at %L may result in an infinite loop", &code
->loc
);
9545 /* Step three: See if the label is in the same block as the
9546 branching statement. The hard work has been done by setting up
9547 the bitmap reachable_labels. */
9549 if (bitmap_bit_p (cs_base
->reachable_labels
, label
->value
))
9551 /* Check now whether there is a CRITICAL construct; if so, check
9552 whether the label is still visible outside of the CRITICAL block,
9553 which is invalid. */
9554 for (stack
= cs_base
; stack
; stack
= stack
->prev
)
9556 if (stack
->current
->op
== EXEC_CRITICAL
9557 && bitmap_bit_p (stack
->reachable_labels
, label
->value
))
9558 gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
9559 "label at %L", &code
->loc
, &label
->where
);
9560 else if (stack
->current
->op
== EXEC_DO_CONCURRENT
9561 && bitmap_bit_p (stack
->reachable_labels
, label
->value
))
9562 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
9563 "for label at %L", &code
->loc
, &label
->where
);
9569 /* Step four: If we haven't found the label in the bitmap, it may
9570 still be the label of the END of the enclosing block, in which
9571 case we find it by going up the code_stack. */
9573 for (stack
= cs_base
; stack
; stack
= stack
->prev
)
9575 if (stack
->current
->next
&& stack
->current
->next
->here
== label
)
9577 if (stack
->current
->op
== EXEC_CRITICAL
)
9579 /* Note: A label at END CRITICAL does not leave the CRITICAL
9580 construct as END CRITICAL is still part of it. */
9581 gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
9582 " at %L", &code
->loc
, &label
->where
);
9585 else if (stack
->current
->op
== EXEC_DO_CONCURRENT
)
9587 gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
9588 "label at %L", &code
->loc
, &label
->where
);
9595 gcc_assert (stack
->current
->next
->op
== EXEC_END_NESTED_BLOCK
);
9599 /* The label is not in an enclosing block, so illegal. This was
9600 allowed in Fortran 66, so we allow it as extension. No
9601 further checks are necessary in this case. */
9602 gfc_notify_std (GFC_STD_LEGACY
, "Label at %L is not in the same block "
9603 "as the GOTO statement at %L", &label
->where
,
9609 /* Check whether EXPR1 has the same shape as EXPR2. */
9612 resolve_where_shape (gfc_expr
*expr1
, gfc_expr
*expr2
)
9614 mpz_t shape
[GFC_MAX_DIMENSIONS
];
9615 mpz_t shape2
[GFC_MAX_DIMENSIONS
];
9616 bool result
= false;
9619 /* Compare the rank. */
9620 if (expr1
->rank
!= expr2
->rank
)
9623 /* Compare the size of each dimension. */
9624 for (i
=0; i
<expr1
->rank
; i
++)
9626 if (!gfc_array_dimen_size (expr1
, i
, &shape
[i
]))
9629 if (!gfc_array_dimen_size (expr2
, i
, &shape2
[i
]))
9632 if (mpz_cmp (shape
[i
], shape2
[i
]))
9636 /* When either of the two expression is an assumed size array, we
9637 ignore the comparison of dimension sizes. */
9642 gfc_clear_shape (shape
, i
);
9643 gfc_clear_shape (shape2
, i
);
9648 /* Check whether a WHERE assignment target or a WHERE mask expression
9649 has the same shape as the outmost WHERE mask expression. */
9652 resolve_where (gfc_code
*code
, gfc_expr
*mask
)
9658 cblock
= code
->block
;
9660 /* Store the first WHERE mask-expr of the WHERE statement or construct.
9661 In case of nested WHERE, only the outmost one is stored. */
9662 if (mask
== NULL
) /* outmost WHERE */
9664 else /* inner WHERE */
9671 /* Check if the mask-expr has a consistent shape with the
9672 outmost WHERE mask-expr. */
9673 if (!resolve_where_shape (cblock
->expr1
, e
))
9674 gfc_error ("WHERE mask at %L has inconsistent shape",
9675 &cblock
->expr1
->where
);
9678 /* the assignment statement of a WHERE statement, or the first
9679 statement in where-body-construct of a WHERE construct */
9680 cnext
= cblock
->next
;
9685 /* WHERE assignment statement */
9688 /* Check shape consistent for WHERE assignment target. */
9689 if (e
&& !resolve_where_shape (cnext
->expr1
, e
))
9690 gfc_error ("WHERE assignment target at %L has "
9691 "inconsistent shape", &cnext
->expr1
->where
);
9695 case EXEC_ASSIGN_CALL
:
9696 resolve_call (cnext
);
9697 if (!cnext
->resolved_sym
->attr
.elemental
)
9698 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9699 &cnext
->ext
.actual
->expr
->where
);
9702 /* WHERE or WHERE construct is part of a where-body-construct */
9704 resolve_where (cnext
, e
);
9708 gfc_error ("Unsupported statement inside WHERE at %L",
9711 /* the next statement within the same where-body-construct */
9712 cnext
= cnext
->next
;
9714 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9715 cblock
= cblock
->block
;
9720 /* Resolve assignment in FORALL construct.
9721 NVAR is the number of FORALL index variables, and VAR_EXPR records the
9722 FORALL index variables. */
9725 gfc_resolve_assign_in_forall (gfc_code
*code
, int nvar
, gfc_expr
**var_expr
)
9729 for (n
= 0; n
< nvar
; n
++)
9731 gfc_symbol
*forall_index
;
9733 forall_index
= var_expr
[n
]->symtree
->n
.sym
;
9735 /* Check whether the assignment target is one of the FORALL index
9737 if ((code
->expr1
->expr_type
== EXPR_VARIABLE
)
9738 && (code
->expr1
->symtree
->n
.sym
== forall_index
))
9739 gfc_error ("Assignment to a FORALL index variable at %L",
9740 &code
->expr1
->where
);
9743 /* If one of the FORALL index variables doesn't appear in the
9744 assignment variable, then there could be a many-to-one
9745 assignment. Emit a warning rather than an error because the
9746 mask could be resolving this problem. */
9747 if (!find_forall_index (code
->expr1
, forall_index
, 0))
9748 gfc_warning (0, "The FORALL with index %qs is not used on the "
9749 "left side of the assignment at %L and so might "
9750 "cause multiple assignment to this object",
9751 var_expr
[n
]->symtree
->name
, &code
->expr1
->where
);
9757 /* Resolve WHERE statement in FORALL construct. */
9760 gfc_resolve_where_code_in_forall (gfc_code
*code
, int nvar
,
9761 gfc_expr
**var_expr
)
9766 cblock
= code
->block
;
9769 /* the assignment statement of a WHERE statement, or the first
9770 statement in where-body-construct of a WHERE construct */
9771 cnext
= cblock
->next
;
9776 /* WHERE assignment statement */
9778 gfc_resolve_assign_in_forall (cnext
, nvar
, var_expr
);
9781 /* WHERE operator assignment statement */
9782 case EXEC_ASSIGN_CALL
:
9783 resolve_call (cnext
);
9784 if (!cnext
->resolved_sym
->attr
.elemental
)
9785 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
9786 &cnext
->ext
.actual
->expr
->where
);
9789 /* WHERE or WHERE construct is part of a where-body-construct */
9791 gfc_resolve_where_code_in_forall (cnext
, nvar
, var_expr
);
9795 gfc_error ("Unsupported statement inside WHERE at %L",
9798 /* the next statement within the same where-body-construct */
9799 cnext
= cnext
->next
;
9801 /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
9802 cblock
= cblock
->block
;
9807 /* Traverse the FORALL body to check whether the following errors exist:
9808 1. For assignment, check if a many-to-one assignment happens.
9809 2. For WHERE statement, check the WHERE body to see if there is any
9810 many-to-one assignment. */
9813 gfc_resolve_forall_body (gfc_code
*code
, int nvar
, gfc_expr
**var_expr
)
9817 c
= code
->block
->next
;
9823 case EXEC_POINTER_ASSIGN
:
9824 gfc_resolve_assign_in_forall (c
, nvar
, var_expr
);
9827 case EXEC_ASSIGN_CALL
:
9831 /* Because the gfc_resolve_blocks() will handle the nested FORALL,
9832 there is no need to handle it here. */
9836 gfc_resolve_where_code_in_forall(c
, nvar
, var_expr
);
9841 /* The next statement in the FORALL body. */
9847 /* Counts the number of iterators needed inside a forall construct, including
9848 nested forall constructs. This is used to allocate the needed memory
9849 in gfc_resolve_forall. */
9852 gfc_count_forall_iterators (gfc_code
*code
)
9854 int max_iters
, sub_iters
, current_iters
;
9855 gfc_forall_iterator
*fa
;
9857 gcc_assert(code
->op
== EXEC_FORALL
);
9861 for (fa
= code
->ext
.forall_iterator
; fa
; fa
= fa
->next
)
9864 code
= code
->block
->next
;
9868 if (code
->op
== EXEC_FORALL
)
9870 sub_iters
= gfc_count_forall_iterators (code
);
9871 if (sub_iters
> max_iters
)
9872 max_iters
= sub_iters
;
9877 return current_iters
+ max_iters
;
9881 /* Given a FORALL construct, first resolve the FORALL iterator, then call
9882 gfc_resolve_forall_body to resolve the FORALL body. */
9885 gfc_resolve_forall (gfc_code
*code
, gfc_namespace
*ns
, int forall_save
)
9887 static gfc_expr
**var_expr
;
9888 static int total_var
= 0;
9889 static int nvar
= 0;
9890 int i
, old_nvar
, tmp
;
9891 gfc_forall_iterator
*fa
;
9895 /* Start to resolve a FORALL construct */
9896 if (forall_save
== 0)
9898 /* Count the total number of FORALL indices in the nested FORALL
9899 construct in order to allocate the VAR_EXPR with proper size. */
9900 total_var
= gfc_count_forall_iterators (code
);
9902 /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements. */
9903 var_expr
= XCNEWVEC (gfc_expr
*, total_var
);
9906 /* The information about FORALL iterator, including FORALL indices start, end
9907 and stride. An outer FORALL indice cannot appear in start, end or stride. */
9908 for (fa
= code
->ext
.forall_iterator
; fa
; fa
= fa
->next
)
9910 /* Fortran 20008: C738 (R753). */
9911 if (fa
->var
->ref
&& fa
->var
->ref
->type
== REF_ARRAY
)
9913 gfc_error ("FORALL index-name at %L must be a scalar variable "
9914 "of type integer", &fa
->var
->where
);
9918 /* Check if any outer FORALL index name is the same as the current
9920 for (i
= 0; i
< nvar
; i
++)
9922 if (fa
->var
->symtree
->n
.sym
== var_expr
[i
]->symtree
->n
.sym
)
9923 gfc_error ("An outer FORALL construct already has an index "
9924 "with this name %L", &fa
->var
->where
);
9927 /* Record the current FORALL index. */
9928 var_expr
[nvar
] = gfc_copy_expr (fa
->var
);
9932 /* No memory leak. */
9933 gcc_assert (nvar
<= total_var
);
9936 /* Resolve the FORALL body. */
9937 gfc_resolve_forall_body (code
, nvar
, var_expr
);
9939 /* May call gfc_resolve_forall to resolve the inner FORALL loop. */
9940 gfc_resolve_blocks (code
->block
, ns
);
9944 /* Free only the VAR_EXPRs allocated in this frame. */
9945 for (i
= nvar
; i
< tmp
; i
++)
9946 gfc_free_expr (var_expr
[i
]);
9950 /* We are in the outermost FORALL construct. */
9951 gcc_assert (forall_save
== 0);
9953 /* VAR_EXPR is not needed any more. */
9960 /* Resolve a BLOCK construct statement. */
9963 resolve_block_construct (gfc_code
* code
)
9965 /* Resolve the BLOCK's namespace. */
9966 gfc_resolve (code
->ext
.block
.ns
);
9968 /* For an ASSOCIATE block, the associations (and their targets) are already
9969 resolved during resolve_symbol. */
9973 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
9977 gfc_resolve_blocks (gfc_code
*b
, gfc_namespace
*ns
)
9981 for (; b
; b
= b
->block
)
9983 t
= gfc_resolve_expr (b
->expr1
);
9984 if (!gfc_resolve_expr (b
->expr2
))
9990 if (t
&& b
->expr1
!= NULL
9991 && (b
->expr1
->ts
.type
!= BT_LOGICAL
|| b
->expr1
->rank
!= 0))
9992 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
9999 && (b
->expr1
->ts
.type
!= BT_LOGICAL
|| b
->expr1
->rank
== 0))
10000 gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
10005 resolve_branch (b
->label1
, b
);
10009 resolve_block_construct (b
);
10013 case EXEC_SELECT_TYPE
:
10016 case EXEC_DO_WHILE
:
10017 case EXEC_DO_CONCURRENT
:
10018 case EXEC_CRITICAL
:
10021 case EXEC_IOLENGTH
:
10025 case EXEC_OMP_ATOMIC
:
10026 case EXEC_OACC_ATOMIC
:
10028 gfc_omp_atomic_op aop
10029 = (gfc_omp_atomic_op
) (b
->ext
.omp_atomic
& GFC_OMP_ATOMIC_MASK
);
10031 /* Verify this before calling gfc_resolve_code, which might
10033 gcc_assert (b
->next
&& b
->next
->op
== EXEC_ASSIGN
);
10034 gcc_assert (((aop
!= GFC_OMP_ATOMIC_CAPTURE
)
10035 && b
->next
->next
== NULL
)
10036 || ((aop
== GFC_OMP_ATOMIC_CAPTURE
)
10037 && b
->next
->next
!= NULL
10038 && b
->next
->next
->op
== EXEC_ASSIGN
10039 && b
->next
->next
->next
== NULL
));
10043 case EXEC_OACC_PARALLEL_LOOP
:
10044 case EXEC_OACC_PARALLEL
:
10045 case EXEC_OACC_KERNELS_LOOP
:
10046 case EXEC_OACC_KERNELS
:
10047 case EXEC_OACC_DATA
:
10048 case EXEC_OACC_HOST_DATA
:
10049 case EXEC_OACC_LOOP
:
10050 case EXEC_OACC_UPDATE
:
10051 case EXEC_OACC_WAIT
:
10052 case EXEC_OACC_CACHE
:
10053 case EXEC_OACC_ENTER_DATA
:
10054 case EXEC_OACC_EXIT_DATA
:
10055 case EXEC_OACC_ROUTINE
:
10056 case EXEC_OMP_CRITICAL
:
10057 case EXEC_OMP_DISTRIBUTE
:
10058 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO
:
10059 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD
:
10060 case EXEC_OMP_DISTRIBUTE_SIMD
:
10062 case EXEC_OMP_DO_SIMD
:
10063 case EXEC_OMP_MASTER
:
10064 case EXEC_OMP_ORDERED
:
10065 case EXEC_OMP_PARALLEL
:
10066 case EXEC_OMP_PARALLEL_DO
:
10067 case EXEC_OMP_PARALLEL_DO_SIMD
:
10068 case EXEC_OMP_PARALLEL_SECTIONS
:
10069 case EXEC_OMP_PARALLEL_WORKSHARE
:
10070 case EXEC_OMP_SECTIONS
:
10071 case EXEC_OMP_SIMD
:
10072 case EXEC_OMP_SINGLE
:
10073 case EXEC_OMP_TARGET
:
10074 case EXEC_OMP_TARGET_DATA
:
10075 case EXEC_OMP_TARGET_ENTER_DATA
:
10076 case EXEC_OMP_TARGET_EXIT_DATA
:
10077 case EXEC_OMP_TARGET_PARALLEL
:
10078 case EXEC_OMP_TARGET_PARALLEL_DO
:
10079 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD
:
10080 case EXEC_OMP_TARGET_SIMD
:
10081 case EXEC_OMP_TARGET_TEAMS
:
10082 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE
:
10083 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
10084 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
10085 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
:
10086 case EXEC_OMP_TARGET_UPDATE
:
10087 case EXEC_OMP_TASK
:
10088 case EXEC_OMP_TASKGROUP
:
10089 case EXEC_OMP_TASKLOOP
:
10090 case EXEC_OMP_TASKLOOP_SIMD
:
10091 case EXEC_OMP_TASKWAIT
:
10092 case EXEC_OMP_TASKYIELD
:
10093 case EXEC_OMP_TEAMS
:
10094 case EXEC_OMP_TEAMS_DISTRIBUTE
:
10095 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
:
10096 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
10097 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD
:
10098 case EXEC_OMP_WORKSHARE
:
10102 gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
10105 gfc_resolve_code (b
->next
, ns
);
10110 /* Does everything to resolve an ordinary assignment. Returns true
10111 if this is an interface assignment. */
10113 resolve_ordinary_assign (gfc_code
*code
, gfc_namespace
*ns
)
10122 symbol_attribute attr
;
10124 if (gfc_extend_assign (code
, ns
))
10128 if (code
->op
== EXEC_ASSIGN_CALL
)
10130 lhs
= code
->ext
.actual
->expr
;
10131 rhsptr
= &code
->ext
.actual
->next
->expr
;
10135 gfc_actual_arglist
* args
;
10136 gfc_typebound_proc
* tbp
;
10138 gcc_assert (code
->op
== EXEC_COMPCALL
);
10140 args
= code
->expr1
->value
.compcall
.actual
;
10142 rhsptr
= &args
->next
->expr
;
10144 tbp
= code
->expr1
->value
.compcall
.tbp
;
10145 gcc_assert (!tbp
->is_generic
);
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
);
10163 && !gfc_notify_std (GFC_STD_GNU
, "BOZ literal at %L outside "
10164 "a DATA statement and outside INT/REAL/DBLE/CMPLX",
10168 /* Handle the case of a BOZ literal on the RHS. */
10169 if (rhs
->is_boz
&& lhs
->ts
.type
!= BT_INTEGER
)
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
);
10178 if (!gfc_convert_boz (rhs
, &lhs
->ts
))
10180 if ((rc
= gfc_range_check (rhs
)) != ARITH_OK
)
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
);
10198 if (lhs
->ts
.type
== BT_CHARACTER
10199 && warn_character_truncation
)
10201 if (lhs
->ts
.u
.cl
!= NULL
10202 && lhs
->ts
.u
.cl
->length
!= NULL
10203 && lhs
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
10204 llen
= mpz_get_si (lhs
->ts
.u
.cl
->length
->value
.integer
);
10206 if (rhs
->expr_type
== EXPR_CONSTANT
)
10207 rlen
= rhs
->value
.character
.length
;
10209 else if (rhs
->ts
.u
.cl
!= NULL
10210 && rhs
->ts
.u
.cl
->length
!= NULL
10211 && rhs
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
10212 rlen
= mpz_get_si (rhs
->ts
.u
.cl
->length
->value
.integer
);
10214 if (rlen
&& llen
&& rlen
> llen
)
10215 gfc_warning_now (OPT_Wcharacter_truncation
,
10216 "CHARACTER expression will be truncated "
10217 "in assignment (%d/%d) at %L",
10218 llen
, rlen
, &code
->loc
);
10221 /* Ensure that a vector index expression for the lvalue is evaluated
10222 to a temporary if the lvalue symbol is referenced in it. */
10225 for (ref
= lhs
->ref
; ref
; ref
= ref
->next
)
10226 if (ref
->type
== REF_ARRAY
)
10228 for (n
= 0; n
< ref
->u
.ar
.dimen
; n
++)
10229 if (ref
->u
.ar
.dimen_type
[n
] == DIMEN_VECTOR
10230 && gfc_find_sym_in_expr (lhs
->symtree
->n
.sym
,
10231 ref
->u
.ar
.start
[n
]))
10233 = gfc_get_parentheses (ref
->u
.ar
.start
[n
]);
10237 if (gfc_pure (NULL
))
10239 if (lhs
->ts
.type
== BT_DERIVED
10240 && lhs
->expr_type
== EXPR_VARIABLE
10241 && lhs
->ts
.u
.derived
->attr
.pointer_comp
10242 && rhs
->expr_type
== EXPR_VARIABLE
10243 && (gfc_impure_variable (rhs
->symtree
->n
.sym
)
10244 || gfc_is_coindexed (rhs
)))
10246 /* F2008, C1283. */
10247 if (gfc_is_coindexed (rhs
))
10248 gfc_error ("Coindexed expression at %L is assigned to "
10249 "a derived type variable with a POINTER "
10250 "component in a PURE procedure",
10253 gfc_error ("The impure variable at %L is assigned to "
10254 "a derived type variable with a POINTER "
10255 "component in a PURE procedure (12.6)",
10260 /* Fortran 2008, C1283. */
10261 if (gfc_is_coindexed (lhs
))
10263 gfc_error ("Assignment to coindexed variable at %L in a PURE "
10264 "procedure", &rhs
->where
);
10269 if (gfc_implicit_pure (NULL
))
10271 if (lhs
->expr_type
== EXPR_VARIABLE
10272 && lhs
->symtree
->n
.sym
!= gfc_current_ns
->proc_name
10273 && lhs
->symtree
->n
.sym
->ns
!= gfc_current_ns
)
10274 gfc_unset_implicit_pure (NULL
);
10276 if (lhs
->ts
.type
== BT_DERIVED
10277 && lhs
->expr_type
== EXPR_VARIABLE
10278 && lhs
->ts
.u
.derived
->attr
.pointer_comp
10279 && rhs
->expr_type
== EXPR_VARIABLE
10280 && (gfc_impure_variable (rhs
->symtree
->n
.sym
)
10281 || gfc_is_coindexed (rhs
)))
10282 gfc_unset_implicit_pure (NULL
);
10284 /* Fortran 2008, C1283. */
10285 if (gfc_is_coindexed (lhs
))
10286 gfc_unset_implicit_pure (NULL
);
10289 /* F2008, 7.2.1.2. */
10290 attr
= gfc_expr_attr (lhs
);
10291 if (lhs
->ts
.type
== BT_CLASS
&& attr
.allocatable
)
10293 if (attr
.codimension
)
10295 gfc_error ("Assignment to polymorphic coarray at %L is not "
10296 "permitted", &lhs
->where
);
10299 if (!gfc_notify_std (GFC_STD_F2008
, "Assignment to an allocatable "
10300 "polymorphic variable at %L", &lhs
->where
))
10302 if (!flag_realloc_lhs
)
10304 gfc_error ("Assignment to an allocatable polymorphic variable at %L "
10305 "requires %<-frealloc-lhs%>", &lhs
->where
);
10309 else if (lhs
->ts
.type
== BT_CLASS
)
10311 gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
10312 "assignment at %L - check that there is a matching specific "
10313 "subroutine for '=' operator", &lhs
->where
);
10317 bool lhs_coindexed
= gfc_is_coindexed (lhs
);
10319 /* F2008, Section 7.2.1.2. */
10320 if (lhs_coindexed
&& gfc_has_ultimate_allocatable (lhs
))
10322 gfc_error ("Coindexed variable must not have an allocatable ultimate "
10323 "component in assignment at %L", &lhs
->where
);
10327 /* Assign the 'data' of a class object to a derived type. */
10328 if (lhs
->ts
.type
== BT_DERIVED
10329 && rhs
->ts
.type
== BT_CLASS
10330 && rhs
->expr_type
!= EXPR_ARRAY
)
10331 gfc_add_data_component (rhs
);
10333 bool caf_convert_to_send
= flag_coarray
== GFC_FCOARRAY_LIB
10335 || (code
->expr2
->expr_type
== EXPR_FUNCTION
10336 && code
->expr2
->value
.function
.isym
10337 && code
->expr2
->value
.function
.isym
->id
== GFC_ISYM_CAF_GET
10338 && (code
->expr1
->rank
== 0 || code
->expr2
->rank
!= 0)
10339 && !gfc_expr_attr (rhs
).allocatable
10340 && !gfc_has_vector_subscript (rhs
)));
10342 gfc_check_assign (lhs
, rhs
, 1, !caf_convert_to_send
);
10344 /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a coindexed variable.
10345 Additionally, insert this code when the RHS is a CAF as we then use the
10346 GFC_ISYM_CAF_SEND intrinsic just to avoid a temporary; but do not do so if
10347 the LHS is (re)allocatable or has a vector subscript. If the LHS is a
10348 noncoindexed array and the RHS is a coindexed scalar, use the normal code
10350 if (caf_convert_to_send
)
10352 if (code
->expr2
->expr_type
== EXPR_FUNCTION
10353 && code
->expr2
->value
.function
.isym
10354 && code
->expr2
->value
.function
.isym
->id
== GFC_ISYM_CAF_GET
)
10355 remove_caf_get_intrinsic (code
->expr2
);
10356 code
->op
= EXEC_CALL
;
10357 gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns
, &code
->symtree
, true);
10358 code
->resolved_sym
= code
->symtree
->n
.sym
;
10359 code
->resolved_sym
->attr
.flavor
= FL_PROCEDURE
;
10360 code
->resolved_sym
->attr
.intrinsic
= 1;
10361 code
->resolved_sym
->attr
.subroutine
= 1;
10362 code
->resolved_isym
= gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND
);
10363 gfc_commit_symbol (code
->resolved_sym
);
10364 code
->ext
.actual
= gfc_get_actual_arglist ();
10365 code
->ext
.actual
->expr
= lhs
;
10366 code
->ext
.actual
->next
= gfc_get_actual_arglist ();
10367 code
->ext
.actual
->next
->expr
= rhs
;
10368 code
->expr1
= NULL
;
10369 code
->expr2
= NULL
;
10376 /* Add a component reference onto an expression. */
10379 add_comp_ref (gfc_expr
*e
, gfc_component
*c
)
10384 ref
= &((*ref
)->next
);
10385 *ref
= gfc_get_ref ();
10386 (*ref
)->type
= REF_COMPONENT
;
10387 (*ref
)->u
.c
.sym
= e
->ts
.u
.derived
;
10388 (*ref
)->u
.c
.component
= c
;
10391 /* Add a full array ref, as necessary. */
10394 gfc_add_full_array_ref (e
, c
->as
);
10395 e
->rank
= c
->as
->rank
;
10400 /* Build an assignment. Keep the argument 'op' for future use, so that
10401 pointer assignments can be made. */
10404 build_assignment (gfc_exec_op op
, gfc_expr
*expr1
, gfc_expr
*expr2
,
10405 gfc_component
*comp1
, gfc_component
*comp2
, locus loc
)
10407 gfc_code
*this_code
;
10409 this_code
= gfc_get_code (op
);
10410 this_code
->next
= NULL
;
10411 this_code
->expr1
= gfc_copy_expr (expr1
);
10412 this_code
->expr2
= gfc_copy_expr (expr2
);
10413 this_code
->loc
= loc
;
10414 if (comp1
&& comp2
)
10416 add_comp_ref (this_code
->expr1
, comp1
);
10417 add_comp_ref (this_code
->expr2
, comp2
);
10424 /* Makes a temporary variable expression based on the characteristics of
10425 a given variable expression. */
10428 get_temp_from_expr (gfc_expr
*e
, gfc_namespace
*ns
)
10430 static int serial
= 0;
10431 char name
[GFC_MAX_SYMBOL_LEN
];
10433 gfc_array_spec
*as
;
10434 gfc_array_ref
*aref
;
10437 sprintf (name
, GFC_PREFIX("DA%d"), serial
++);
10438 gfc_get_sym_tree (name
, ns
, &tmp
, false);
10439 gfc_add_type (tmp
->n
.sym
, &e
->ts
, NULL
);
10445 /* Obtain the arrayspec for the temporary. */
10446 if (e
->rank
&& e
->expr_type
!= EXPR_ARRAY
10447 && e
->expr_type
!= EXPR_FUNCTION
10448 && e
->expr_type
!= EXPR_OP
)
10450 aref
= gfc_find_array_ref (e
);
10451 if (e
->expr_type
== EXPR_VARIABLE
10452 && e
->symtree
->n
.sym
->as
== aref
->as
)
10456 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
10457 if (ref
->type
== REF_COMPONENT
10458 && ref
->u
.c
.component
->as
== aref
->as
)
10466 /* Add the attributes and the arrayspec to the temporary. */
10467 tmp
->n
.sym
->attr
= gfc_expr_attr (e
);
10468 tmp
->n
.sym
->attr
.function
= 0;
10469 tmp
->n
.sym
->attr
.result
= 0;
10470 tmp
->n
.sym
->attr
.flavor
= FL_VARIABLE
;
10474 tmp
->n
.sym
->as
= gfc_copy_array_spec (as
);
10477 if (as
->type
== AS_DEFERRED
)
10478 tmp
->n
.sym
->attr
.allocatable
= 1;
10480 else if (e
->rank
&& (e
->expr_type
== EXPR_ARRAY
10481 || e
->expr_type
== EXPR_FUNCTION
10482 || e
->expr_type
== EXPR_OP
))
10484 tmp
->n
.sym
->as
= gfc_get_array_spec ();
10485 tmp
->n
.sym
->as
->type
= AS_DEFERRED
;
10486 tmp
->n
.sym
->as
->rank
= e
->rank
;
10487 tmp
->n
.sym
->attr
.allocatable
= 1;
10488 tmp
->n
.sym
->attr
.dimension
= 1;
10491 tmp
->n
.sym
->attr
.dimension
= 0;
10493 gfc_set_sym_referenced (tmp
->n
.sym
);
10494 gfc_commit_symbol (tmp
->n
.sym
);
10495 e
= gfc_lval_expr_from_sym (tmp
->n
.sym
);
10497 /* Should the lhs be a section, use its array ref for the
10498 temporary expression. */
10499 if (aref
&& aref
->type
!= AR_FULL
)
10501 gfc_free_ref_list (e
->ref
);
10502 e
->ref
= gfc_copy_ref (ref
);
10508 /* Add one line of code to the code chain, making sure that 'head' and
10509 'tail' are appropriately updated. */
10512 add_code_to_chain (gfc_code
**this_code
, gfc_code
**head
, gfc_code
**tail
)
10514 gcc_assert (this_code
);
10516 *head
= *tail
= *this_code
;
10518 *tail
= gfc_append_code (*tail
, *this_code
);
10523 /* Counts the potential number of part array references that would
10524 result from resolution of typebound defined assignments. */
10527 nonscalar_typebound_assign (gfc_symbol
*derived
, int depth
)
10530 int c_depth
= 0, t_depth
;
10532 for (c
= derived
->components
; c
; c
= c
->next
)
10534 if ((!gfc_bt_struct (c
->ts
.type
)
10536 || c
->attr
.allocatable
10537 || c
->attr
.proc_pointer_comp
10538 || c
->attr
.class_pointer
10539 || c
->attr
.proc_pointer
)
10540 && !c
->attr
.defined_assign_comp
)
10543 if (c
->as
&& c_depth
== 0)
10546 if (c
->ts
.u
.derived
->attr
.defined_assign_comp
)
10547 t_depth
= nonscalar_typebound_assign (c
->ts
.u
.derived
,
10552 c_depth
= t_depth
> c_depth
? t_depth
: c_depth
;
10554 return depth
+ c_depth
;
10558 /* Implement 7.2.1.3 of the F08 standard:
10559 "An intrinsic assignment where the variable is of derived type is
10560 performed as if each component of the variable were assigned from the
10561 corresponding component of expr using pointer assignment (7.2.2) for
10562 each pointer component, defined assignment for each nonpointer
10563 nonallocatable component of a type that has a type-bound defined
10564 assignment consistent with the component, intrinsic assignment for
10565 each other nonpointer nonallocatable component, ..."
10567 The pointer assignments are taken care of by the intrinsic
10568 assignment of the structure itself. This function recursively adds
10569 defined assignments where required. The recursion is accomplished
10570 by calling gfc_resolve_code.
10572 When the lhs in a defined assignment has intent INOUT, we need a
10573 temporary for the lhs. In pseudo-code:
10575 ! Only call function lhs once.
10576 if (lhs is not a constant or an variable)
10579 ! Do the intrinsic assignment
10581 ! Now do the defined assignments
10582 do over components with typebound defined assignment [%cmp]
10583 #if one component's assignment procedure is INOUT
10585 #if expr2 non-variable
10591 t1%cmp {defined=} expr2%cmp
10597 expr1%cmp {defined=} expr2%cmp
10601 /* The temporary assignments have to be put on top of the additional
10602 code to avoid the result being changed by the intrinsic assignment.
10604 static int component_assignment_level
= 0;
10605 static gfc_code
*tmp_head
= NULL
, *tmp_tail
= NULL
;
10608 generate_component_assignments (gfc_code
**code
, gfc_namespace
*ns
)
10610 gfc_component
*comp1
, *comp2
;
10611 gfc_code
*this_code
= NULL
, *head
= NULL
, *tail
= NULL
;
10613 int error_count
, depth
;
10615 gfc_get_errors (NULL
, &error_count
);
10617 /* Filter out continuing processing after an error. */
10619 || (*code
)->expr1
->ts
.type
!= BT_DERIVED
10620 || (*code
)->expr2
->ts
.type
!= BT_DERIVED
)
10623 /* TODO: Handle more than one part array reference in assignments. */
10624 depth
= nonscalar_typebound_assign ((*code
)->expr1
->ts
.u
.derived
,
10625 (*code
)->expr1
->rank
? 1 : 0);
10628 gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
10629 "done because multiple part array references would "
10630 "occur in intermediate expressions.", &(*code
)->loc
);
10634 component_assignment_level
++;
10636 /* Create a temporary so that functions get called only once. */
10637 if ((*code
)->expr2
->expr_type
!= EXPR_VARIABLE
10638 && (*code
)->expr2
->expr_type
!= EXPR_CONSTANT
)
10640 gfc_expr
*tmp_expr
;
10642 /* Assign the rhs to the temporary. */
10643 tmp_expr
= get_temp_from_expr ((*code
)->expr1
, ns
);
10644 this_code
= build_assignment (EXEC_ASSIGN
,
10645 tmp_expr
, (*code
)->expr2
,
10646 NULL
, NULL
, (*code
)->loc
);
10647 /* Add the code and substitute the rhs expression. */
10648 add_code_to_chain (&this_code
, &tmp_head
, &tmp_tail
);
10649 gfc_free_expr ((*code
)->expr2
);
10650 (*code
)->expr2
= tmp_expr
;
10653 /* Do the intrinsic assignment. This is not needed if the lhs is one
10654 of the temporaries generated here, since the intrinsic assignment
10655 to the final result already does this. */
10656 if ((*code
)->expr1
->symtree
->n
.sym
->name
[2] != '@')
10658 this_code
= build_assignment (EXEC_ASSIGN
,
10659 (*code
)->expr1
, (*code
)->expr2
,
10660 NULL
, NULL
, (*code
)->loc
);
10661 add_code_to_chain (&this_code
, &head
, &tail
);
10664 comp1
= (*code
)->expr1
->ts
.u
.derived
->components
;
10665 comp2
= (*code
)->expr2
->ts
.u
.derived
->components
;
10668 for (; comp1
; comp1
= comp1
->next
, comp2
= comp2
->next
)
10670 bool inout
= false;
10672 /* The intrinsic assignment does the right thing for pointers
10673 of all kinds and allocatable components. */
10674 if (!gfc_bt_struct (comp1
->ts
.type
)
10675 || comp1
->attr
.pointer
10676 || comp1
->attr
.allocatable
10677 || comp1
->attr
.proc_pointer_comp
10678 || comp1
->attr
.class_pointer
10679 || comp1
->attr
.proc_pointer
)
10682 /* Make an assigment for this component. */
10683 this_code
= build_assignment (EXEC_ASSIGN
,
10684 (*code
)->expr1
, (*code
)->expr2
,
10685 comp1
, comp2
, (*code
)->loc
);
10687 /* Convert the assignment if there is a defined assignment for
10688 this type. Otherwise, using the call from gfc_resolve_code,
10689 recurse into its components. */
10690 gfc_resolve_code (this_code
, ns
);
10692 if (this_code
->op
== EXEC_ASSIGN_CALL
)
10694 gfc_formal_arglist
*dummy_args
;
10696 /* Check that there is a typebound defined assignment. If not,
10697 then this must be a module defined assignment. We cannot
10698 use the defined_assign_comp attribute here because it must
10699 be this derived type that has the defined assignment and not
10701 if (!(comp1
->ts
.u
.derived
->f2k_derived
10702 && comp1
->ts
.u
.derived
->f2k_derived
10703 ->tb_op
[INTRINSIC_ASSIGN
]))
10705 gfc_free_statements (this_code
);
10710 /* If the first argument of the subroutine has intent INOUT
10711 a temporary must be generated and used instead. */
10712 rsym
= this_code
->resolved_sym
;
10713 dummy_args
= gfc_sym_get_dummy_args (rsym
);
10715 && dummy_args
->sym
->attr
.intent
== INTENT_INOUT
)
10717 gfc_code
*temp_code
;
10720 /* Build the temporary required for the assignment and put
10721 it at the head of the generated code. */
10724 t1
= get_temp_from_expr ((*code
)->expr1
, ns
);
10725 temp_code
= build_assignment (EXEC_ASSIGN
,
10726 t1
, (*code
)->expr1
,
10727 NULL
, NULL
, (*code
)->loc
);
10729 /* For allocatable LHS, check whether it is allocated. Note
10730 that allocatable components with defined assignment are
10731 not yet support. See PR 57696. */
10732 if ((*code
)->expr1
->symtree
->n
.sym
->attr
.allocatable
)
10736 gfc_lval_expr_from_sym ((*code
)->expr1
->symtree
->n
.sym
);
10737 block
= gfc_get_code (EXEC_IF
);
10738 block
->block
= gfc_get_code (EXEC_IF
);
10739 block
->block
->expr1
10740 = gfc_build_intrinsic_call (ns
,
10741 GFC_ISYM_ALLOCATED
, "allocated",
10742 (*code
)->loc
, 1, e
);
10743 block
->block
->next
= temp_code
;
10746 add_code_to_chain (&temp_code
, &tmp_head
, &tmp_tail
);
10749 /* Replace the first actual arg with the component of the
10751 gfc_free_expr (this_code
->ext
.actual
->expr
);
10752 this_code
->ext
.actual
->expr
= gfc_copy_expr (t1
);
10753 add_comp_ref (this_code
->ext
.actual
->expr
, comp1
);
10755 /* If the LHS variable is allocatable and wasn't allocated and
10756 the temporary is allocatable, pointer assign the address of
10757 the freshly allocated LHS to the temporary. */
10758 if ((*code
)->expr1
->symtree
->n
.sym
->attr
.allocatable
10759 && gfc_expr_attr ((*code
)->expr1
).allocatable
)
10764 cond
= gfc_get_expr ();
10765 cond
->ts
.type
= BT_LOGICAL
;
10766 cond
->ts
.kind
= gfc_default_logical_kind
;
10767 cond
->expr_type
= EXPR_OP
;
10768 cond
->where
= (*code
)->loc
;
10769 cond
->value
.op
.op
= INTRINSIC_NOT
;
10770 cond
->value
.op
.op1
= gfc_build_intrinsic_call (ns
,
10771 GFC_ISYM_ALLOCATED
, "allocated",
10772 (*code
)->loc
, 1, gfc_copy_expr (t1
));
10773 block
= gfc_get_code (EXEC_IF
);
10774 block
->block
= gfc_get_code (EXEC_IF
);
10775 block
->block
->expr1
= cond
;
10776 block
->block
->next
= build_assignment (EXEC_POINTER_ASSIGN
,
10777 t1
, (*code
)->expr1
,
10778 NULL
, NULL
, (*code
)->loc
);
10779 add_code_to_chain (&block
, &head
, &tail
);
10783 else if (this_code
->op
== EXEC_ASSIGN
&& !this_code
->next
)
10785 /* Don't add intrinsic assignments since they are already
10786 effected by the intrinsic assignment of the structure. */
10787 gfc_free_statements (this_code
);
10792 add_code_to_chain (&this_code
, &head
, &tail
);
10796 /* Transfer the value to the final result. */
10797 this_code
= build_assignment (EXEC_ASSIGN
,
10798 (*code
)->expr1
, t1
,
10799 comp1
, comp2
, (*code
)->loc
);
10800 add_code_to_chain (&this_code
, &head
, &tail
);
10804 /* Put the temporary assignments at the top of the generated code. */
10805 if (tmp_head
&& component_assignment_level
== 1)
10807 gfc_append_code (tmp_head
, head
);
10809 tmp_head
= tmp_tail
= NULL
;
10812 // If we did a pointer assignment - thus, we need to ensure that the LHS is
10813 // not accidentally deallocated. Hence, nullify t1.
10814 if (t1
&& (*code
)->expr1
->symtree
->n
.sym
->attr
.allocatable
10815 && gfc_expr_attr ((*code
)->expr1
).allocatable
)
10821 e
= gfc_lval_expr_from_sym ((*code
)->expr1
->symtree
->n
.sym
);
10822 cond
= gfc_build_intrinsic_call (ns
, GFC_ISYM_ASSOCIATED
, "associated",
10823 (*code
)->loc
, 2, gfc_copy_expr (t1
), e
);
10824 block
= gfc_get_code (EXEC_IF
);
10825 block
->block
= gfc_get_code (EXEC_IF
);
10826 block
->block
->expr1
= cond
;
10827 block
->block
->next
= build_assignment (EXEC_POINTER_ASSIGN
,
10828 t1
, gfc_get_null_expr (&(*code
)->loc
),
10829 NULL
, NULL
, (*code
)->loc
);
10830 gfc_append_code (tail
, block
);
10834 /* Now attach the remaining code chain to the input code. Step on
10835 to the end of the new code since resolution is complete. */
10836 gcc_assert ((*code
)->op
== EXEC_ASSIGN
);
10837 tail
->next
= (*code
)->next
;
10838 /* Overwrite 'code' because this would place the intrinsic assignment
10839 before the temporary for the lhs is created. */
10840 gfc_free_expr ((*code
)->expr1
);
10841 gfc_free_expr ((*code
)->expr2
);
10847 component_assignment_level
--;
10851 /* F2008: Pointer function assignments are of the form:
10852 ptr_fcn (args) = expr
10853 This function breaks these assignments into two statements:
10854 temporary_pointer => ptr_fcn(args)
10855 temporary_pointer = expr */
10858 resolve_ptr_fcn_assign (gfc_code
**code
, gfc_namespace
*ns
)
10860 gfc_expr
*tmp_ptr_expr
;
10861 gfc_code
*this_code
;
10862 gfc_component
*comp
;
10865 if ((*code
)->expr1
->expr_type
!= EXPR_FUNCTION
)
10868 /* Even if standard does not support this feature, continue to build
10869 the two statements to avoid upsetting frontend_passes.c. */
10870 gfc_notify_std (GFC_STD_F2008
, "Pointer procedure assignment at "
10871 "%L", &(*code
)->loc
);
10873 comp
= gfc_get_proc_ptr_comp ((*code
)->expr1
);
10876 s
= comp
->ts
.interface
;
10878 s
= (*code
)->expr1
->symtree
->n
.sym
;
10880 if (s
== NULL
|| !s
->result
->attr
.pointer
)
10882 gfc_error ("The function result on the lhs of the assignment at "
10883 "%L must have the pointer attribute.",
10884 &(*code
)->expr1
->where
);
10885 (*code
)->op
= EXEC_NOP
;
10889 tmp_ptr_expr
= get_temp_from_expr ((*code
)->expr2
, ns
);
10891 /* get_temp_from_expression is set up for ordinary assignments. To that
10892 end, where array bounds are not known, arrays are made allocatable.
10893 Change the temporary to a pointer here. */
10894 tmp_ptr_expr
->symtree
->n
.sym
->attr
.pointer
= 1;
10895 tmp_ptr_expr
->symtree
->n
.sym
->attr
.allocatable
= 0;
10896 tmp_ptr_expr
->where
= (*code
)->loc
;
10898 this_code
= build_assignment (EXEC_ASSIGN
,
10899 tmp_ptr_expr
, (*code
)->expr2
,
10900 NULL
, NULL
, (*code
)->loc
);
10901 this_code
->next
= (*code
)->next
;
10902 (*code
)->next
= this_code
;
10903 (*code
)->op
= EXEC_POINTER_ASSIGN
;
10904 (*code
)->expr2
= (*code
)->expr1
;
10905 (*code
)->expr1
= tmp_ptr_expr
;
10911 /* Deferred character length assignments from an operator expression
10912 require a temporary because the character length of the lhs can
10913 change in the course of the assignment. */
10916 deferred_op_assign (gfc_code
**code
, gfc_namespace
*ns
)
10918 gfc_expr
*tmp_expr
;
10919 gfc_code
*this_code
;
10921 if (!((*code
)->expr1
->ts
.type
== BT_CHARACTER
10922 && (*code
)->expr1
->ts
.deferred
&& (*code
)->expr1
->rank
10923 && (*code
)->expr2
->expr_type
== EXPR_OP
))
10926 if (!gfc_check_dependency ((*code
)->expr1
, (*code
)->expr2
, 1))
10929 tmp_expr
= get_temp_from_expr ((*code
)->expr1
, ns
);
10930 tmp_expr
->where
= (*code
)->loc
;
10932 /* A new charlen is required to ensure that the variable string
10933 length is different to that of the original lhs. */
10934 tmp_expr
->ts
.u
.cl
= gfc_get_charlen();
10935 tmp_expr
->symtree
->n
.sym
->ts
.u
.cl
= tmp_expr
->ts
.u
.cl
;
10936 tmp_expr
->ts
.u
.cl
->next
= (*code
)->expr2
->ts
.u
.cl
->next
;
10937 (*code
)->expr2
->ts
.u
.cl
->next
= tmp_expr
->ts
.u
.cl
;
10939 tmp_expr
->symtree
->n
.sym
->ts
.deferred
= 1;
10941 this_code
= build_assignment (EXEC_ASSIGN
,
10943 gfc_copy_expr (tmp_expr
),
10944 NULL
, NULL
, (*code
)->loc
);
10946 (*code
)->expr1
= tmp_expr
;
10948 this_code
->next
= (*code
)->next
;
10949 (*code
)->next
= this_code
;
10955 /* Given a block of code, recursively resolve everything pointed to by this
10959 gfc_resolve_code (gfc_code
*code
, gfc_namespace
*ns
)
10961 int omp_workshare_save
;
10962 int forall_save
, do_concurrent_save
;
10966 frame
.prev
= cs_base
;
10970 find_reachable_labels (code
);
10972 for (; code
; code
= code
->next
)
10974 frame
.current
= code
;
10975 forall_save
= forall_flag
;
10976 do_concurrent_save
= gfc_do_concurrent_flag
;
10978 if (code
->op
== EXEC_FORALL
)
10981 gfc_resolve_forall (code
, ns
, forall_save
);
10984 else if (code
->block
)
10986 omp_workshare_save
= -1;
10989 case EXEC_OACC_PARALLEL_LOOP
:
10990 case EXEC_OACC_PARALLEL
:
10991 case EXEC_OACC_KERNELS_LOOP
:
10992 case EXEC_OACC_KERNELS
:
10993 case EXEC_OACC_DATA
:
10994 case EXEC_OACC_HOST_DATA
:
10995 case EXEC_OACC_LOOP
:
10996 gfc_resolve_oacc_blocks (code
, ns
);
10998 case EXEC_OMP_PARALLEL_WORKSHARE
:
10999 omp_workshare_save
= omp_workshare_flag
;
11000 omp_workshare_flag
= 1;
11001 gfc_resolve_omp_parallel_blocks (code
, ns
);
11003 case EXEC_OMP_PARALLEL
:
11004 case EXEC_OMP_PARALLEL_DO
:
11005 case EXEC_OMP_PARALLEL_DO_SIMD
:
11006 case EXEC_OMP_PARALLEL_SECTIONS
:
11007 case EXEC_OMP_TARGET_PARALLEL
:
11008 case EXEC_OMP_TARGET_PARALLEL_DO
:
11009 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD
:
11010 case EXEC_OMP_TARGET_TEAMS
:
11011 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE
:
11012 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
11013 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
11014 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
:
11015 case EXEC_OMP_TASK
:
11016 case EXEC_OMP_TASKLOOP
:
11017 case EXEC_OMP_TASKLOOP_SIMD
:
11018 case EXEC_OMP_TEAMS
:
11019 case EXEC_OMP_TEAMS_DISTRIBUTE
:
11020 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
:
11021 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
11022 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD
:
11023 omp_workshare_save
= omp_workshare_flag
;
11024 omp_workshare_flag
= 0;
11025 gfc_resolve_omp_parallel_blocks (code
, ns
);
11027 case EXEC_OMP_DISTRIBUTE
:
11028 case EXEC_OMP_DISTRIBUTE_SIMD
:
11030 case EXEC_OMP_DO_SIMD
:
11031 case EXEC_OMP_SIMD
:
11032 case EXEC_OMP_TARGET_SIMD
:
11033 gfc_resolve_omp_do_blocks (code
, ns
);
11035 case EXEC_SELECT_TYPE
:
11036 /* Blocks are handled in resolve_select_type because we have
11037 to transform the SELECT TYPE into ASSOCIATE first. */
11039 case EXEC_DO_CONCURRENT
:
11040 gfc_do_concurrent_flag
= 1;
11041 gfc_resolve_blocks (code
->block
, ns
);
11042 gfc_do_concurrent_flag
= 2;
11044 case EXEC_OMP_WORKSHARE
:
11045 omp_workshare_save
= omp_workshare_flag
;
11046 omp_workshare_flag
= 1;
11049 gfc_resolve_blocks (code
->block
, ns
);
11053 if (omp_workshare_save
!= -1)
11054 omp_workshare_flag
= omp_workshare_save
;
11058 if (code
->op
!= EXEC_COMPCALL
&& code
->op
!= EXEC_CALL_PPC
)
11059 t
= gfc_resolve_expr (code
->expr1
);
11060 forall_flag
= forall_save
;
11061 gfc_do_concurrent_flag
= do_concurrent_save
;
11063 if (!gfc_resolve_expr (code
->expr2
))
11066 if (code
->op
== EXEC_ALLOCATE
11067 && !gfc_resolve_expr (code
->expr3
))
11073 case EXEC_END_BLOCK
:
11074 case EXEC_END_NESTED_BLOCK
:
11078 case EXEC_ERROR_STOP
:
11080 case EXEC_CONTINUE
:
11082 case EXEC_ASSIGN_CALL
:
11085 case EXEC_CRITICAL
:
11086 resolve_critical (code
);
11089 case EXEC_SYNC_ALL
:
11090 case EXEC_SYNC_IMAGES
:
11091 case EXEC_SYNC_MEMORY
:
11092 resolve_sync (code
);
11097 case EXEC_EVENT_POST
:
11098 case EXEC_EVENT_WAIT
:
11099 resolve_lock_unlock_event (code
);
11102 case EXEC_FAIL_IMAGE
:
11106 /* Keep track of which entry we are up to. */
11107 current_entry_id
= code
->ext
.entry
->id
;
11111 resolve_where (code
, NULL
);
11115 if (code
->expr1
!= NULL
)
11117 if (code
->expr1
->ts
.type
!= BT_INTEGER
)
11118 gfc_error ("ASSIGNED GOTO statement at %L requires an "
11119 "INTEGER variable", &code
->expr1
->where
);
11120 else if (code
->expr1
->symtree
->n
.sym
->attr
.assign
!= 1)
11121 gfc_error ("Variable %qs has not been assigned a target "
11122 "label at %L", code
->expr1
->symtree
->n
.sym
->name
,
11123 &code
->expr1
->where
);
11126 resolve_branch (code
->label1
, code
);
11130 if (code
->expr1
!= NULL
11131 && (code
->expr1
->ts
.type
!= BT_INTEGER
|| code
->expr1
->rank
))
11132 gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
11133 "INTEGER return specifier", &code
->expr1
->where
);
11136 case EXEC_INIT_ASSIGN
:
11137 case EXEC_END_PROCEDURE
:
11144 /* Remove a GFC_ISYM_CAF_GET inserted for a coindexed variable on
11146 if (code
->expr1
->expr_type
== EXPR_FUNCTION
11147 && code
->expr1
->value
.function
.isym
11148 && code
->expr1
->value
.function
.isym
->id
== GFC_ISYM_CAF_GET
)
11149 remove_caf_get_intrinsic (code
->expr1
);
11151 /* If this is a pointer function in an lvalue variable context,
11152 the new code will have to be resolved afresh. This is also the
11153 case with an error, where the code is transformed into NOP to
11154 prevent ICEs downstream. */
11155 if (resolve_ptr_fcn_assign (&code
, ns
)
11156 || code
->op
== EXEC_NOP
)
11159 if (!gfc_check_vardef_context (code
->expr1
, false, false, false,
11163 if (resolve_ordinary_assign (code
, ns
))
11165 if (code
->op
== EXEC_COMPCALL
)
11171 /* Check for dependencies in deferred character length array
11172 assignments and generate a temporary, if necessary. */
11173 if (code
->op
== EXEC_ASSIGN
&& deferred_op_assign (&code
, ns
))
11176 /* F03 7.4.1.3 for non-allocatable, non-pointer components. */
11177 if (code
->op
!= EXEC_CALL
&& code
->expr1
->ts
.type
== BT_DERIVED
11178 && code
->expr1
->ts
.u
.derived
11179 && code
->expr1
->ts
.u
.derived
->attr
.defined_assign_comp
)
11180 generate_component_assignments (&code
, ns
);
11184 case EXEC_LABEL_ASSIGN
:
11185 if (code
->label1
->defined
== ST_LABEL_UNKNOWN
)
11186 gfc_error ("Label %d referenced at %L is never defined",
11187 code
->label1
->value
, &code
->label1
->where
);
11189 && (code
->expr1
->expr_type
!= EXPR_VARIABLE
11190 || code
->expr1
->symtree
->n
.sym
->ts
.type
!= BT_INTEGER
11191 || code
->expr1
->symtree
->n
.sym
->ts
.kind
11192 != gfc_default_integer_kind
11193 || code
->expr1
->symtree
->n
.sym
->as
!= NULL
))
11194 gfc_error ("ASSIGN statement at %L requires a scalar "
11195 "default INTEGER variable", &code
->expr1
->where
);
11198 case EXEC_POINTER_ASSIGN
:
11205 /* This is both a variable definition and pointer assignment
11206 context, so check both of them. For rank remapping, a final
11207 array ref may be present on the LHS and fool gfc_expr_attr
11208 used in gfc_check_vardef_context. Remove it. */
11209 e
= remove_last_array_ref (code
->expr1
);
11210 t
= gfc_check_vardef_context (e
, true, false, false,
11211 _("pointer assignment"));
11213 t
= gfc_check_vardef_context (e
, false, false, false,
11214 _("pointer assignment"));
11219 gfc_check_pointer_assign (code
->expr1
, code
->expr2
);
11221 /* Assigning a class object always is a regular assign. */
11222 if (code
->expr2
->ts
.type
== BT_CLASS
11223 && code
->expr1
->ts
.type
== BT_CLASS
11224 && !CLASS_DATA (code
->expr2
)->attr
.dimension
11225 && !(gfc_expr_attr (code
->expr1
).proc_pointer
11226 && code
->expr2
->expr_type
== EXPR_VARIABLE
11227 && code
->expr2
->symtree
->n
.sym
->attr
.flavor
11229 code
->op
= EXEC_ASSIGN
;
11233 case EXEC_ARITHMETIC_IF
:
11235 gfc_expr
*e
= code
->expr1
;
11237 gfc_resolve_expr (e
);
11238 if (e
->expr_type
== EXPR_NULL
)
11239 gfc_error ("Invalid NULL at %L", &e
->where
);
11241 if (t
&& (e
->rank
> 0
11242 || !(e
->ts
.type
== BT_REAL
|| e
->ts
.type
== BT_INTEGER
)))
11243 gfc_error ("Arithmetic IF statement at %L requires a scalar "
11244 "REAL or INTEGER expression", &e
->where
);
11246 resolve_branch (code
->label1
, code
);
11247 resolve_branch (code
->label2
, code
);
11248 resolve_branch (code
->label3
, code
);
11253 if (t
&& code
->expr1
!= NULL
11254 && (code
->expr1
->ts
.type
!= BT_LOGICAL
11255 || code
->expr1
->rank
!= 0))
11256 gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
11257 &code
->expr1
->where
);
11262 resolve_call (code
);
11265 case EXEC_COMPCALL
:
11267 resolve_typebound_subroutine (code
);
11270 case EXEC_CALL_PPC
:
11271 resolve_ppc_call (code
);
11275 /* Select is complicated. Also, a SELECT construct could be
11276 a transformed computed GOTO. */
11277 resolve_select (code
, false);
11280 case EXEC_SELECT_TYPE
:
11281 resolve_select_type (code
, ns
);
11285 resolve_block_construct (code
);
11289 if (code
->ext
.iterator
!= NULL
)
11291 gfc_iterator
*iter
= code
->ext
.iterator
;
11292 if (gfc_resolve_iterator (iter
, true, false))
11293 gfc_resolve_do_iterator (code
, iter
->var
->symtree
->n
.sym
,
11298 case EXEC_DO_WHILE
:
11299 if (code
->expr1
== NULL
)
11300 gfc_internal_error ("gfc_resolve_code(): No expression on "
11303 && (code
->expr1
->rank
!= 0
11304 || code
->expr1
->ts
.type
!= BT_LOGICAL
))
11305 gfc_error ("Exit condition of DO WHILE loop at %L must be "
11306 "a scalar LOGICAL expression", &code
->expr1
->where
);
11309 case EXEC_ALLOCATE
:
11311 resolve_allocate_deallocate (code
, "ALLOCATE");
11315 case EXEC_DEALLOCATE
:
11317 resolve_allocate_deallocate (code
, "DEALLOCATE");
11322 if (!gfc_resolve_open (code
->ext
.open
))
11325 resolve_branch (code
->ext
.open
->err
, code
);
11329 if (!gfc_resolve_close (code
->ext
.close
))
11332 resolve_branch (code
->ext
.close
->err
, code
);
11335 case EXEC_BACKSPACE
:
11339 if (!gfc_resolve_filepos (code
->ext
.filepos
))
11342 resolve_branch (code
->ext
.filepos
->err
, code
);
11346 if (!gfc_resolve_inquire (code
->ext
.inquire
))
11349 resolve_branch (code
->ext
.inquire
->err
, code
);
11352 case EXEC_IOLENGTH
:
11353 gcc_assert (code
->ext
.inquire
!= NULL
);
11354 if (!gfc_resolve_inquire (code
->ext
.inquire
))
11357 resolve_branch (code
->ext
.inquire
->err
, code
);
11361 if (!gfc_resolve_wait (code
->ext
.wait
))
11364 resolve_branch (code
->ext
.wait
->err
, code
);
11365 resolve_branch (code
->ext
.wait
->end
, code
);
11366 resolve_branch (code
->ext
.wait
->eor
, code
);
11371 if (!gfc_resolve_dt (code
->ext
.dt
, &code
->loc
))
11374 resolve_branch (code
->ext
.dt
->err
, code
);
11375 resolve_branch (code
->ext
.dt
->end
, code
);
11376 resolve_branch (code
->ext
.dt
->eor
, code
);
11379 case EXEC_TRANSFER
:
11380 resolve_transfer (code
);
11383 case EXEC_DO_CONCURRENT
:
11385 resolve_forall_iterators (code
->ext
.forall_iterator
);
11387 if (code
->expr1
!= NULL
11388 && (code
->expr1
->ts
.type
!= BT_LOGICAL
|| code
->expr1
->rank
))
11389 gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
11390 "expression", &code
->expr1
->where
);
11393 case EXEC_OACC_PARALLEL_LOOP
:
11394 case EXEC_OACC_PARALLEL
:
11395 case EXEC_OACC_KERNELS_LOOP
:
11396 case EXEC_OACC_KERNELS
:
11397 case EXEC_OACC_DATA
:
11398 case EXEC_OACC_HOST_DATA
:
11399 case EXEC_OACC_LOOP
:
11400 case EXEC_OACC_UPDATE
:
11401 case EXEC_OACC_WAIT
:
11402 case EXEC_OACC_CACHE
:
11403 case EXEC_OACC_ENTER_DATA
:
11404 case EXEC_OACC_EXIT_DATA
:
11405 case EXEC_OACC_ATOMIC
:
11406 case EXEC_OACC_DECLARE
:
11407 gfc_resolve_oacc_directive (code
, ns
);
11410 case EXEC_OMP_ATOMIC
:
11411 case EXEC_OMP_BARRIER
:
11412 case EXEC_OMP_CANCEL
:
11413 case EXEC_OMP_CANCELLATION_POINT
:
11414 case EXEC_OMP_CRITICAL
:
11415 case EXEC_OMP_FLUSH
:
11416 case EXEC_OMP_DISTRIBUTE
:
11417 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO
:
11418 case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD
:
11419 case EXEC_OMP_DISTRIBUTE_SIMD
:
11421 case EXEC_OMP_DO_SIMD
:
11422 case EXEC_OMP_MASTER
:
11423 case EXEC_OMP_ORDERED
:
11424 case EXEC_OMP_SECTIONS
:
11425 case EXEC_OMP_SIMD
:
11426 case EXEC_OMP_SINGLE
:
11427 case EXEC_OMP_TARGET
:
11428 case EXEC_OMP_TARGET_DATA
:
11429 case EXEC_OMP_TARGET_ENTER_DATA
:
11430 case EXEC_OMP_TARGET_EXIT_DATA
:
11431 case EXEC_OMP_TARGET_PARALLEL
:
11432 case EXEC_OMP_TARGET_PARALLEL_DO
:
11433 case EXEC_OMP_TARGET_PARALLEL_DO_SIMD
:
11434 case EXEC_OMP_TARGET_SIMD
:
11435 case EXEC_OMP_TARGET_TEAMS
:
11436 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE
:
11437 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO
:
11438 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
11439 case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD
:
11440 case EXEC_OMP_TARGET_UPDATE
:
11441 case EXEC_OMP_TASK
:
11442 case EXEC_OMP_TASKGROUP
:
11443 case EXEC_OMP_TASKLOOP
:
11444 case EXEC_OMP_TASKLOOP_SIMD
:
11445 case EXEC_OMP_TASKWAIT
:
11446 case EXEC_OMP_TASKYIELD
:
11447 case EXEC_OMP_TEAMS
:
11448 case EXEC_OMP_TEAMS_DISTRIBUTE
:
11449 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO
:
11450 case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD
:
11451 case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD
:
11452 case EXEC_OMP_WORKSHARE
:
11453 gfc_resolve_omp_directive (code
, ns
);
11456 case EXEC_OMP_PARALLEL
:
11457 case EXEC_OMP_PARALLEL_DO
:
11458 case EXEC_OMP_PARALLEL_DO_SIMD
:
11459 case EXEC_OMP_PARALLEL_SECTIONS
:
11460 case EXEC_OMP_PARALLEL_WORKSHARE
:
11461 omp_workshare_save
= omp_workshare_flag
;
11462 omp_workshare_flag
= 0;
11463 gfc_resolve_omp_directive (code
, ns
);
11464 omp_workshare_flag
= omp_workshare_save
;
11468 gfc_internal_error ("gfc_resolve_code(): Bad statement code");
11472 cs_base
= frame
.prev
;
11476 /* Resolve initial values and make sure they are compatible with
11480 resolve_values (gfc_symbol
*sym
)
11484 if (sym
->value
== NULL
)
11487 if (sym
->value
->expr_type
== EXPR_STRUCTURE
)
11488 t
= resolve_structure_cons (sym
->value
, 1);
11490 t
= gfc_resolve_expr (sym
->value
);
11495 gfc_check_assign_symbol (sym
, NULL
, sym
->value
);
11499 /* Verify any BIND(C) derived types in the namespace so we can report errors
11500 for them once, rather than for each variable declared of that type. */
11503 resolve_bind_c_derived_types (gfc_symbol
*derived_sym
)
11505 if (derived_sym
!= NULL
&& derived_sym
->attr
.flavor
== FL_DERIVED
11506 && derived_sym
->attr
.is_bind_c
== 1)
11507 verify_bind_c_derived_type (derived_sym
);
11513 /* Check the interfaces of DTIO procedures associated with derived
11514 type 'sym'. These procedures can either have typebound bindings or
11515 can appear in DTIO generic interfaces. */
11518 gfc_verify_DTIO_procedures (gfc_symbol
*sym
)
11520 if (!sym
|| sym
->attr
.flavor
!= FL_DERIVED
)
11523 gfc_check_dtio_interfaces (sym
);
11528 /* Verify that any binding labels used in a given namespace do not collide
11529 with the names or binding labels of any global symbols. Multiple INTERFACE
11530 for the same procedure are permitted. */
11533 gfc_verify_binding_labels (gfc_symbol
*sym
)
11536 const char *module
;
11538 if (!sym
|| !sym
->attr
.is_bind_c
|| sym
->attr
.is_iso_c
11539 || sym
->attr
.flavor
== FL_DERIVED
|| !sym
->binding_label
)
11542 gsym
= gfc_find_gsymbol (gfc_gsym_root
, sym
->binding_label
);
11545 module
= sym
->module
;
11546 else if (sym
->ns
&& sym
->ns
->proc_name
11547 && sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
)
11548 module
= sym
->ns
->proc_name
->name
;
11549 else if (sym
->ns
&& sym
->ns
->parent
11550 && sym
->ns
&& sym
->ns
->parent
->proc_name
11551 && sym
->ns
->parent
->proc_name
->attr
.flavor
== FL_MODULE
)
11552 module
= sym
->ns
->parent
->proc_name
->name
;
11558 && (gsym
->type
== GSYM_FUNCTION
|| gsym
->type
== GSYM_SUBROUTINE
)))
11561 gsym
= gfc_get_gsymbol (sym
->binding_label
);
11562 gsym
->where
= sym
->declared_at
;
11563 gsym
->sym_name
= sym
->name
;
11564 gsym
->binding_label
= sym
->binding_label
;
11565 gsym
->ns
= sym
->ns
;
11566 gsym
->mod_name
= module
;
11567 if (sym
->attr
.function
)
11568 gsym
->type
= GSYM_FUNCTION
;
11569 else if (sym
->attr
.subroutine
)
11570 gsym
->type
= GSYM_SUBROUTINE
;
11571 /* Mark as variable/procedure as defined, unless its an INTERFACE. */
11572 gsym
->defined
= sym
->attr
.if_source
!= IFSRC_IFBODY
;
11576 if (sym
->attr
.flavor
== FL_VARIABLE
&& gsym
->type
!= GSYM_UNKNOWN
)
11578 gfc_error ("Variable %s with binding label %s at %L uses the same global "
11579 "identifier as entity at %L", sym
->name
,
11580 sym
->binding_label
, &sym
->declared_at
, &gsym
->where
);
11581 /* Clear the binding label to prevent checking multiple times. */
11582 sym
->binding_label
= NULL
;
11585 else if (sym
->attr
.flavor
== FL_VARIABLE
&& module
11586 && (strcmp (module
, gsym
->mod_name
) != 0
11587 || strcmp (sym
->name
, gsym
->sym_name
) != 0))
11589 /* This can only happen if the variable is defined in a module - if it
11590 isn't the same module, reject it. */
11591 gfc_error ("Variable %s from module %s with binding label %s at %L uses "
11592 "the same global identifier as entity at %L from module %s",
11593 sym
->name
, module
, sym
->binding_label
,
11594 &sym
->declared_at
, &gsym
->where
, gsym
->mod_name
);
11595 sym
->binding_label
= NULL
;
11597 else if ((sym
->attr
.function
|| sym
->attr
.subroutine
)
11598 && ((gsym
->type
!= GSYM_SUBROUTINE
&& gsym
->type
!= GSYM_FUNCTION
)
11599 || (gsym
->defined
&& sym
->attr
.if_source
!= IFSRC_IFBODY
))
11600 && sym
!= gsym
->ns
->proc_name
11601 && (module
!= gsym
->mod_name
11602 || strcmp (gsym
->sym_name
, sym
->name
) != 0
11603 || (module
&& strcmp (module
, gsym
->mod_name
) != 0)))
11605 /* Print an error if the procedure is defined multiple times; we have to
11606 exclude references to the same procedure via module association or
11607 multiple checks for the same procedure. */
11608 gfc_error ("Procedure %s with binding label %s at %L uses the same "
11609 "global identifier as entity at %L", sym
->name
,
11610 sym
->binding_label
, &sym
->declared_at
, &gsym
->where
);
11611 sym
->binding_label
= NULL
;
11616 /* Resolve an index expression. */
11619 resolve_index_expr (gfc_expr
*e
)
11621 if (!gfc_resolve_expr (e
))
11624 if (!gfc_simplify_expr (e
, 0))
11627 if (!gfc_specification_expr (e
))
11634 /* Resolve a charlen structure. */
11637 resolve_charlen (gfc_charlen
*cl
)
11640 bool saved_specification_expr
;
11646 saved_specification_expr
= specification_expr
;
11647 specification_expr
= true;
11649 if (cl
->length_from_typespec
)
11651 if (!gfc_resolve_expr (cl
->length
))
11653 specification_expr
= saved_specification_expr
;
11657 if (!gfc_simplify_expr (cl
->length
, 0))
11659 specification_expr
= saved_specification_expr
;
11666 if (!resolve_index_expr (cl
->length
))
11668 specification_expr
= saved_specification_expr
;
11673 /* F2008, 4.4.3.2: If the character length parameter value evaluates to
11674 a negative value, the length of character entities declared is zero. */
11675 if (cl
->length
&& !gfc_extract_int (cl
->length
, &i
) && i
< 0)
11676 gfc_replace_expr (cl
->length
,
11677 gfc_get_int_expr (gfc_default_integer_kind
, NULL
, 0));
11679 /* Check that the character length is not too large. */
11680 k
= gfc_validate_kind (BT_INTEGER
, gfc_charlen_int_kind
, false);
11681 if (cl
->length
&& cl
->length
->expr_type
== EXPR_CONSTANT
11682 && cl
->length
->ts
.type
== BT_INTEGER
11683 && mpz_cmp (cl
->length
->value
.integer
, gfc_integer_kinds
[k
].huge
) > 0)
11685 gfc_error ("String length at %L is too large", &cl
->length
->where
);
11686 specification_expr
= saved_specification_expr
;
11690 specification_expr
= saved_specification_expr
;
11695 /* Test for non-constant shape arrays. */
11698 is_non_constant_shape_array (gfc_symbol
*sym
)
11704 not_constant
= false;
11705 if (sym
->as
!= NULL
)
11707 /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
11708 has not been simplified; parameter array references. Do the
11709 simplification now. */
11710 for (i
= 0; i
< sym
->as
->rank
+ sym
->as
->corank
; i
++)
11712 e
= sym
->as
->lower
[i
];
11713 if (e
&& (!resolve_index_expr(e
)
11714 || !gfc_is_constant_expr (e
)))
11715 not_constant
= true;
11716 e
= sym
->as
->upper
[i
];
11717 if (e
&& (!resolve_index_expr(e
)
11718 || !gfc_is_constant_expr (e
)))
11719 not_constant
= true;
11722 return not_constant
;
11725 /* Given a symbol and an initialization expression, add code to initialize
11726 the symbol to the function entry. */
11728 build_init_assign (gfc_symbol
*sym
, gfc_expr
*init
)
11732 gfc_namespace
*ns
= sym
->ns
;
11734 /* Search for the function namespace if this is a contained
11735 function without an explicit result. */
11736 if (sym
->attr
.function
&& sym
== sym
->result
11737 && sym
->name
!= sym
->ns
->proc_name
->name
)
11739 ns
= ns
->contained
;
11740 for (;ns
; ns
= ns
->sibling
)
11741 if (strcmp (ns
->proc_name
->name
, sym
->name
) == 0)
11747 gfc_free_expr (init
);
11751 /* Build an l-value expression for the result. */
11752 lval
= gfc_lval_expr_from_sym (sym
);
11754 /* Add the code at scope entry. */
11755 init_st
= gfc_get_code (EXEC_INIT_ASSIGN
);
11756 init_st
->next
= ns
->code
;
11757 ns
->code
= init_st
;
11759 /* Assign the default initializer to the l-value. */
11760 init_st
->loc
= sym
->declared_at
;
11761 init_st
->expr1
= lval
;
11762 init_st
->expr2
= init
;
11766 /* Whether or not we can generate a default initializer for a symbol. */
11769 can_generate_init (gfc_symbol
*sym
)
11771 symbol_attribute
*a
;
11776 /* These symbols should never have a default initialization. */
11781 || (sym
->ts
.type
== BT_CLASS
&& CLASS_DATA (sym
)
11782 && (CLASS_DATA (sym
)->attr
.class_pointer
11783 || CLASS_DATA (sym
)->attr
.proc_pointer
))
11784 || a
->in_equivalence
11791 || (!a
->referenced
&& !a
->result
)
11792 || (a
->dummy
&& a
->intent
!= INTENT_OUT
)
11793 || (a
->function
&& sym
!= sym
->result
)
11798 /* Assign the default initializer to a derived type variable or result. */
11801 apply_default_init (gfc_symbol
*sym
)
11803 gfc_expr
*init
= NULL
;
11805 if (sym
->attr
.flavor
!= FL_VARIABLE
&& !sym
->attr
.function
)
11808 if (sym
->ts
.type
== BT_DERIVED
&& sym
->ts
.u
.derived
)
11809 init
= gfc_generate_initializer (&sym
->ts
, can_generate_init (sym
));
11811 if (init
== NULL
&& sym
->ts
.type
!= BT_CLASS
)
11814 build_init_assign (sym
, init
);
11815 sym
->attr
.referenced
= 1;
11819 /* Build an initializer for a local. Returns null if the symbol should not have
11820 a default initialization. */
11823 build_default_init_expr (gfc_symbol
*sym
)
11825 /* These symbols should never have a default initialization. */
11826 if (sym
->attr
.allocatable
11827 || sym
->attr
.external
11829 || sym
->attr
.pointer
11830 || sym
->attr
.in_equivalence
11831 || sym
->attr
.in_common
11834 || sym
->attr
.cray_pointee
11835 || sym
->attr
.cray_pointer
11839 /* Get the appropriate init expression. */
11840 return gfc_build_default_init_expr (&sym
->ts
, &sym
->declared_at
);
11843 /* Add an initialization expression to a local variable. */
11845 apply_default_init_local (gfc_symbol
*sym
)
11847 gfc_expr
*init
= NULL
;
11849 /* The symbol should be a variable or a function return value. */
11850 if ((sym
->attr
.flavor
!= FL_VARIABLE
&& !sym
->attr
.function
)
11851 || (sym
->attr
.function
&& sym
->result
!= sym
))
11854 /* Try to build the initializer expression. If we can't initialize
11855 this symbol, then init will be NULL. */
11856 init
= build_default_init_expr (sym
);
11860 /* For saved variables, we don't want to add an initializer at function
11861 entry, so we just add a static initializer. Note that automatic variables
11862 are stack allocated even with -fno-automatic; we have also to exclude
11863 result variable, which are also nonstatic. */
11864 if (!sym
->attr
.automatic
11865 && (sym
->attr
.save
|| sym
->ns
->save_all
11866 || (flag_max_stack_var_size
== 0 && !sym
->attr
.result
11867 && (sym
->ns
->proc_name
&& !sym
->ns
->proc_name
->attr
.recursive
)
11868 && (!sym
->attr
.dimension
|| !is_non_constant_shape_array (sym
)))))
11870 /* Don't clobber an existing initializer! */
11871 gcc_assert (sym
->value
== NULL
);
11876 build_init_assign (sym
, init
);
11880 /* Resolution of common features of flavors variable and procedure. */
11883 resolve_fl_var_and_proc (gfc_symbol
*sym
, int mp_flag
)
11885 gfc_array_spec
*as
;
11887 if (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
)
11888 as
= CLASS_DATA (sym
)->as
;
11892 /* Constraints on deferred shape variable. */
11893 if (as
== NULL
|| as
->type
!= AS_DEFERRED
)
11895 bool pointer
, allocatable
, dimension
;
11897 if (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
)
11899 pointer
= CLASS_DATA (sym
)->attr
.class_pointer
;
11900 allocatable
= CLASS_DATA (sym
)->attr
.allocatable
;
11901 dimension
= CLASS_DATA (sym
)->attr
.dimension
;
11905 pointer
= sym
->attr
.pointer
&& !sym
->attr
.select_type_temporary
;
11906 allocatable
= sym
->attr
.allocatable
;
11907 dimension
= sym
->attr
.dimension
;
11912 if (dimension
&& as
->type
!= AS_ASSUMED_RANK
)
11914 gfc_error ("Allocatable array %qs at %L must have a deferred "
11915 "shape or assumed rank", sym
->name
, &sym
->declared_at
);
11918 else if (!gfc_notify_std (GFC_STD_F2003
, "Scalar object "
11919 "%qs at %L may not be ALLOCATABLE",
11920 sym
->name
, &sym
->declared_at
))
11924 if (pointer
&& dimension
&& as
->type
!= AS_ASSUMED_RANK
)
11926 gfc_error ("Array pointer %qs at %L must have a deferred shape or "
11927 "assumed rank", sym
->name
, &sym
->declared_at
);
11933 if (!mp_flag
&& !sym
->attr
.allocatable
&& !sym
->attr
.pointer
11934 && sym
->ts
.type
!= BT_CLASS
&& !sym
->assoc
)
11936 gfc_error ("Array %qs at %L cannot have a deferred shape",
11937 sym
->name
, &sym
->declared_at
);
11942 /* Constraints on polymorphic variables. */
11943 if (sym
->ts
.type
== BT_CLASS
&& !(sym
->result
&& sym
->result
!= sym
))
11946 if (sym
->attr
.class_ok
11947 && !sym
->attr
.select_type_temporary
11948 && !UNLIMITED_POLY (sym
)
11949 && !gfc_type_is_extensible (CLASS_DATA (sym
)->ts
.u
.derived
))
11951 gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
11952 CLASS_DATA (sym
)->ts
.u
.derived
->name
, sym
->name
,
11953 &sym
->declared_at
);
11958 /* Assume that use associated symbols were checked in the module ns.
11959 Class-variables that are associate-names are also something special
11960 and excepted from the test. */
11961 if (!sym
->attr
.class_ok
&& !sym
->attr
.use_assoc
&& !sym
->assoc
)
11963 gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
11964 "or pointer", sym
->name
, &sym
->declared_at
);
11973 /* Additional checks for symbols with flavor variable and derived
11974 type. To be called from resolve_fl_variable. */
11977 resolve_fl_variable_derived (gfc_symbol
*sym
, int no_init_flag
)
11979 gcc_assert (sym
->ts
.type
== BT_DERIVED
|| sym
->ts
.type
== BT_CLASS
);
11981 /* Check to see if a derived type is blocked from being host
11982 associated by the presence of another class I symbol in the same
11983 namespace. 14.6.1.3 of the standard and the discussion on
11984 comp.lang.fortran. */
11985 if (sym
->ns
!= sym
->ts
.u
.derived
->ns
11986 && sym
->ns
->proc_name
->attr
.if_source
!= IFSRC_IFBODY
)
11989 gfc_find_symbol (sym
->ts
.u
.derived
->name
, sym
->ns
, 0, &s
);
11990 if (s
&& s
->attr
.generic
)
11991 s
= gfc_find_dt_in_generic (s
);
11992 if (s
&& !gfc_fl_struct (s
->attr
.flavor
))
11994 gfc_error ("The type %qs cannot be host associated at %L "
11995 "because it is blocked by an incompatible object "
11996 "of the same name declared at %L",
11997 sym
->ts
.u
.derived
->name
, &sym
->declared_at
,
12003 /* 4th constraint in section 11.3: "If an object of a type for which
12004 component-initialization is specified (R429) appears in the
12005 specification-part of a module and does not have the ALLOCATABLE
12006 or POINTER attribute, the object shall have the SAVE attribute."
12008 The check for initializers is performed with
12009 gfc_has_default_initializer because gfc_default_initializer generates
12010 a hidden default for allocatable components. */
12011 if (!(sym
->value
|| no_init_flag
) && sym
->ns
->proc_name
12012 && sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
12013 && !(sym
->ns
->save_all
&& !sym
->attr
.automatic
) && !sym
->attr
.save
12014 && !sym
->attr
.pointer
&& !sym
->attr
.allocatable
12015 && gfc_has_default_initializer (sym
->ts
.u
.derived
)
12016 && !gfc_notify_std (GFC_STD_F2008
, "Implied SAVE for module variable "
12017 "%qs at %L, needed due to the default "
12018 "initialization", sym
->name
, &sym
->declared_at
))
12021 /* Assign default initializer. */
12022 if (!(sym
->value
|| sym
->attr
.pointer
|| sym
->attr
.allocatable
)
12023 && (!no_init_flag
|| sym
->attr
.intent
== INTENT_OUT
))
12024 sym
->value
= gfc_generate_initializer (&sym
->ts
, can_generate_init (sym
));
12030 /* F2008, C402 (R401): A colon shall not be used as a type-param-value
12031 except in the declaration of an entity or component that has the POINTER
12032 or ALLOCATABLE attribute. */
12035 deferred_requirements (gfc_symbol
*sym
)
12037 if (sym
->ts
.deferred
12038 && !(sym
->attr
.pointer
12039 || sym
->attr
.allocatable
12040 || sym
->attr
.associate_var
12041 || sym
->attr
.omp_udr_artificial_var
))
12043 gfc_error ("Entity %qs at %L has a deferred type parameter and "
12044 "requires either the POINTER or ALLOCATABLE attribute",
12045 sym
->name
, &sym
->declared_at
);
12052 /* Resolve symbols with flavor variable. */
12055 resolve_fl_variable (gfc_symbol
*sym
, int mp_flag
)
12057 int no_init_flag
, automatic_flag
;
12059 const char *auto_save_msg
;
12060 bool saved_specification_expr
;
12062 auto_save_msg
= "Automatic object %qs at %L cannot have the "
12065 if (!resolve_fl_var_and_proc (sym
, mp_flag
))
12068 /* Set this flag to check that variables are parameters of all entries.
12069 This check is effected by the call to gfc_resolve_expr through
12070 is_non_constant_shape_array. */
12071 saved_specification_expr
= specification_expr
;
12072 specification_expr
= true;
12074 if (sym
->ns
->proc_name
12075 && (sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
12076 || sym
->ns
->proc_name
->attr
.is_main_program
)
12077 && !sym
->attr
.use_assoc
12078 && !sym
->attr
.allocatable
12079 && !sym
->attr
.pointer
12080 && is_non_constant_shape_array (sym
))
12082 /* F08:C541. The shape of an array defined in a main program or module
12083 * needs to be constant. */
12084 gfc_error ("The module or main program array %qs at %L must "
12085 "have constant shape", sym
->name
, &sym
->declared_at
);
12086 specification_expr
= saved_specification_expr
;
12090 /* Constraints on deferred type parameter. */
12091 if (!deferred_requirements (sym
))
12094 if (sym
->ts
.type
== BT_CHARACTER
&& !sym
->attr
.associate_var
)
12096 /* Make sure that character string variables with assumed length are
12097 dummy arguments. */
12098 e
= sym
->ts
.u
.cl
->length
;
12099 if (e
== NULL
&& !sym
->attr
.dummy
&& !sym
->attr
.result
12100 && !sym
->ts
.deferred
&& !sym
->attr
.select_type_temporary
12101 && !sym
->attr
.omp_udr_artificial_var
)
12103 gfc_error ("Entity with assumed character length at %L must be a "
12104 "dummy argument or a PARAMETER", &sym
->declared_at
);
12105 specification_expr
= saved_specification_expr
;
12109 if (e
&& sym
->attr
.save
== SAVE_EXPLICIT
&& !gfc_is_constant_expr (e
))
12111 gfc_error (auto_save_msg
, sym
->name
, &sym
->declared_at
);
12112 specification_expr
= saved_specification_expr
;
12116 if (!gfc_is_constant_expr (e
)
12117 && !(e
->expr_type
== EXPR_VARIABLE
12118 && e
->symtree
->n
.sym
->attr
.flavor
== FL_PARAMETER
))
12120 if (!sym
->attr
.use_assoc
&& sym
->ns
->proc_name
12121 && (sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
12122 || sym
->ns
->proc_name
->attr
.is_main_program
))
12124 gfc_error ("%qs at %L must have constant character length "
12125 "in this context", sym
->name
, &sym
->declared_at
);
12126 specification_expr
= saved_specification_expr
;
12129 if (sym
->attr
.in_common
)
12131 gfc_error ("COMMON variable %qs at %L must have constant "
12132 "character length", sym
->name
, &sym
->declared_at
);
12133 specification_expr
= saved_specification_expr
;
12139 if (sym
->value
== NULL
&& sym
->attr
.referenced
)
12140 apply_default_init_local (sym
); /* Try to apply a default initialization. */
12142 /* Determine if the symbol may not have an initializer. */
12143 no_init_flag
= automatic_flag
= 0;
12144 if (sym
->attr
.allocatable
|| sym
->attr
.external
|| sym
->attr
.dummy
12145 || sym
->attr
.intrinsic
|| sym
->attr
.result
)
12147 else if ((sym
->attr
.dimension
|| sym
->attr
.codimension
) && !sym
->attr
.pointer
12148 && is_non_constant_shape_array (sym
))
12150 no_init_flag
= automatic_flag
= 1;
12152 /* Also, they must not have the SAVE attribute.
12153 SAVE_IMPLICIT is checked below. */
12154 if (sym
->as
&& sym
->attr
.codimension
)
12156 int corank
= sym
->as
->corank
;
12157 sym
->as
->corank
= 0;
12158 no_init_flag
= automatic_flag
= is_non_constant_shape_array (sym
);
12159 sym
->as
->corank
= corank
;
12161 if (automatic_flag
&& sym
->attr
.save
== SAVE_EXPLICIT
)
12163 gfc_error (auto_save_msg
, sym
->name
, &sym
->declared_at
);
12164 specification_expr
= saved_specification_expr
;
12169 /* Ensure that any initializer is simplified. */
12171 gfc_simplify_expr (sym
->value
, 1);
12173 /* Reject illegal initializers. */
12174 if (!sym
->mark
&& sym
->value
)
12176 if (sym
->attr
.allocatable
|| (sym
->ts
.type
== BT_CLASS
12177 && CLASS_DATA (sym
)->attr
.allocatable
))
12178 gfc_error ("Allocatable %qs at %L cannot have an initializer",
12179 sym
->name
, &sym
->declared_at
);
12180 else if (sym
->attr
.external
)
12181 gfc_error ("External %qs at %L cannot have an initializer",
12182 sym
->name
, &sym
->declared_at
);
12183 else if (sym
->attr
.dummy
12184 && !(sym
->ts
.type
== BT_DERIVED
&& sym
->attr
.intent
== INTENT_OUT
))
12185 gfc_error ("Dummy %qs at %L cannot have an initializer",
12186 sym
->name
, &sym
->declared_at
);
12187 else if (sym
->attr
.intrinsic
)
12188 gfc_error ("Intrinsic %qs at %L cannot have an initializer",
12189 sym
->name
, &sym
->declared_at
);
12190 else if (sym
->attr
.result
)
12191 gfc_error ("Function result %qs at %L cannot have an initializer",
12192 sym
->name
, &sym
->declared_at
);
12193 else if (automatic_flag
)
12194 gfc_error ("Automatic array %qs at %L cannot have an initializer",
12195 sym
->name
, &sym
->declared_at
);
12197 goto no_init_error
;
12198 specification_expr
= saved_specification_expr
;
12203 if (sym
->ts
.type
== BT_DERIVED
|| sym
->ts
.type
== BT_CLASS
)
12205 bool res
= resolve_fl_variable_derived (sym
, no_init_flag
);
12206 specification_expr
= saved_specification_expr
;
12210 specification_expr
= saved_specification_expr
;
12215 /* Compare the dummy characteristics of a module procedure interface
12216 declaration with the corresponding declaration in a submodule. */
12217 static gfc_formal_arglist
*new_formal
;
12218 static char errmsg
[200];
12221 compare_fsyms (gfc_symbol
*sym
)
12225 if (sym
== NULL
|| new_formal
== NULL
)
12228 fsym
= new_formal
->sym
;
12233 if (strcmp (sym
->name
, fsym
->name
) == 0)
12235 if (!gfc_check_dummy_characteristics (fsym
, sym
, true, errmsg
, 200))
12236 gfc_error ("%s at %L", errmsg
, &fsym
->declared_at
);
12241 /* Resolve a procedure. */
12244 resolve_fl_procedure (gfc_symbol
*sym
, int mp_flag
)
12246 gfc_formal_arglist
*arg
;
12248 if (sym
->attr
.function
12249 && !resolve_fl_var_and_proc (sym
, mp_flag
))
12252 if (sym
->ts
.type
== BT_CHARACTER
)
12254 gfc_charlen
*cl
= sym
->ts
.u
.cl
;
12256 if (cl
&& cl
->length
&& gfc_is_constant_expr (cl
->length
)
12257 && !resolve_charlen (cl
))
12260 if ((!cl
|| !cl
->length
|| cl
->length
->expr_type
!= EXPR_CONSTANT
)
12261 && sym
->attr
.proc
== PROC_ST_FUNCTION
)
12263 gfc_error ("Character-valued statement function %qs at %L must "
12264 "have constant length", sym
->name
, &sym
->declared_at
);
12269 /* Ensure that derived type for are not of a private type. Internal
12270 module procedures are excluded by 2.2.3.3 - i.e., they are not
12271 externally accessible and can access all the objects accessible in
12273 if (!(sym
->ns
->parent
12274 && sym
->ns
->parent
->proc_name
->attr
.flavor
== FL_MODULE
)
12275 && gfc_check_symbol_access (sym
))
12277 gfc_interface
*iface
;
12279 for (arg
= gfc_sym_get_dummy_args (sym
); arg
; arg
= arg
->next
)
12282 && arg
->sym
->ts
.type
== BT_DERIVED
12283 && !arg
->sym
->ts
.u
.derived
->attr
.use_assoc
12284 && !gfc_check_symbol_access (arg
->sym
->ts
.u
.derived
)
12285 && !gfc_notify_std (GFC_STD_F2003
, "%qs is of a PRIVATE type "
12286 "and cannot be a dummy argument"
12287 " of %qs, which is PUBLIC at %L",
12288 arg
->sym
->name
, sym
->name
,
12289 &sym
->declared_at
))
12291 /* Stop this message from recurring. */
12292 arg
->sym
->ts
.u
.derived
->attr
.access
= ACCESS_PUBLIC
;
12297 /* PUBLIC interfaces may expose PRIVATE procedures that take types
12298 PRIVATE to the containing module. */
12299 for (iface
= sym
->generic
; iface
; iface
= iface
->next
)
12301 for (arg
= gfc_sym_get_dummy_args (iface
->sym
); arg
; arg
= arg
->next
)
12304 && arg
->sym
->ts
.type
== BT_DERIVED
12305 && !arg
->sym
->ts
.u
.derived
->attr
.use_assoc
12306 && !gfc_check_symbol_access (arg
->sym
->ts
.u
.derived
)
12307 && !gfc_notify_std (GFC_STD_F2003
, "Procedure %qs in "
12308 "PUBLIC interface %qs at %L "
12309 "takes dummy arguments of %qs which "
12310 "is PRIVATE", iface
->sym
->name
,
12311 sym
->name
, &iface
->sym
->declared_at
,
12312 gfc_typename(&arg
->sym
->ts
)))
12314 /* Stop this message from recurring. */
12315 arg
->sym
->ts
.u
.derived
->attr
.access
= ACCESS_PUBLIC
;
12322 if (sym
->attr
.function
&& sym
->value
&& sym
->attr
.proc
!= PROC_ST_FUNCTION
12323 && !sym
->attr
.proc_pointer
)
12325 gfc_error ("Function %qs at %L cannot have an initializer",
12326 sym
->name
, &sym
->declared_at
);
12330 /* An external symbol may not have an initializer because it is taken to be
12331 a procedure. Exception: Procedure Pointers. */
12332 if (sym
->attr
.external
&& sym
->value
&& !sym
->attr
.proc_pointer
)
12334 gfc_error ("External object %qs at %L may not have an initializer",
12335 sym
->name
, &sym
->declared_at
);
12339 /* An elemental function is required to return a scalar 12.7.1 */
12340 if (sym
->attr
.elemental
&& sym
->attr
.function
&& sym
->as
)
12342 gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
12343 "result", sym
->name
, &sym
->declared_at
);
12344 /* Reset so that the error only occurs once. */
12345 sym
->attr
.elemental
= 0;
12349 if (sym
->attr
.proc
== PROC_ST_FUNCTION
12350 && (sym
->attr
.allocatable
|| sym
->attr
.pointer
))
12352 gfc_error ("Statement function %qs at %L may not have pointer or "
12353 "allocatable attribute", sym
->name
, &sym
->declared_at
);
12357 /* 5.1.1.5 of the Standard: A function name declared with an asterisk
12358 char-len-param shall not be array-valued, pointer-valued, recursive
12359 or pure. ....snip... A character value of * may only be used in the
12360 following ways: (i) Dummy arg of procedure - dummy associates with
12361 actual length; (ii) To declare a named constant; or (iii) External
12362 function - but length must be declared in calling scoping unit. */
12363 if (sym
->attr
.function
12364 && sym
->ts
.type
== BT_CHARACTER
&& !sym
->ts
.deferred
12365 && sym
->ts
.u
.cl
&& sym
->ts
.u
.cl
->length
== NULL
)
12367 if ((sym
->as
&& sym
->as
->rank
) || (sym
->attr
.pointer
)
12368 || (sym
->attr
.recursive
) || (sym
->attr
.pure
))
12370 if (sym
->as
&& sym
->as
->rank
)
12371 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12372 "array-valued", sym
->name
, &sym
->declared_at
);
12374 if (sym
->attr
.pointer
)
12375 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12376 "pointer-valued", sym
->name
, &sym
->declared_at
);
12378 if (sym
->attr
.pure
)
12379 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12380 "pure", sym
->name
, &sym
->declared_at
);
12382 if (sym
->attr
.recursive
)
12383 gfc_error ("CHARACTER(*) function %qs at %L cannot be "
12384 "recursive", sym
->name
, &sym
->declared_at
);
12389 /* Appendix B.2 of the standard. Contained functions give an
12390 error anyway. Deferred character length is an F2003 feature.
12391 Don't warn on intrinsic conversion functions, which start
12392 with two underscores. */
12393 if (!sym
->attr
.contained
&& !sym
->ts
.deferred
12394 && (sym
->name
[0] != '_' || sym
->name
[1] != '_'))
12395 gfc_notify_std (GFC_STD_F95_OBS
,
12396 "CHARACTER(*) function %qs at %L",
12397 sym
->name
, &sym
->declared_at
);
12400 /* F2008, C1218. */
12401 if (sym
->attr
.elemental
)
12403 if (sym
->attr
.proc_pointer
)
12405 gfc_error ("Procedure pointer %qs at %L shall not be elemental",
12406 sym
->name
, &sym
->declared_at
);
12409 if (sym
->attr
.dummy
)
12411 gfc_error ("Dummy procedure %qs at %L shall not be elemental",
12412 sym
->name
, &sym
->declared_at
);
12417 if (sym
->attr
.is_bind_c
&& sym
->attr
.is_c_interop
!= 1)
12419 gfc_formal_arglist
*curr_arg
;
12420 int has_non_interop_arg
= 0;
12422 if (!verify_bind_c_sym (sym
, &(sym
->ts
), sym
->attr
.in_common
,
12423 sym
->common_block
))
12425 /* Clear these to prevent looking at them again if there was an
12427 sym
->attr
.is_bind_c
= 0;
12428 sym
->attr
.is_c_interop
= 0;
12429 sym
->ts
.is_c_interop
= 0;
12433 /* So far, no errors have been found. */
12434 sym
->attr
.is_c_interop
= 1;
12435 sym
->ts
.is_c_interop
= 1;
12438 curr_arg
= gfc_sym_get_dummy_args (sym
);
12439 while (curr_arg
!= NULL
)
12441 /* Skip implicitly typed dummy args here. */
12442 if (curr_arg
->sym
->attr
.implicit_type
== 0)
12443 if (!gfc_verify_c_interop_param (curr_arg
->sym
))
12444 /* If something is found to fail, record the fact so we
12445 can mark the symbol for the procedure as not being
12446 BIND(C) to try and prevent multiple errors being
12448 has_non_interop_arg
= 1;
12450 curr_arg
= curr_arg
->next
;
12453 /* See if any of the arguments were not interoperable and if so, clear
12454 the procedure symbol to prevent duplicate error messages. */
12455 if (has_non_interop_arg
!= 0)
12457 sym
->attr
.is_c_interop
= 0;
12458 sym
->ts
.is_c_interop
= 0;
12459 sym
->attr
.is_bind_c
= 0;
12463 if (!sym
->attr
.proc_pointer
)
12465 if (sym
->attr
.save
== SAVE_EXPLICIT
)
12467 gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
12468 "in %qs at %L", sym
->name
, &sym
->declared_at
);
12471 if (sym
->attr
.intent
)
12473 gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
12474 "in %qs at %L", sym
->name
, &sym
->declared_at
);
12477 if (sym
->attr
.subroutine
&& sym
->attr
.result
)
12479 gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
12480 "in %qs at %L", sym
->name
, &sym
->declared_at
);
12483 if (sym
->attr
.external
&& sym
->attr
.function
&& !sym
->attr
.module_procedure
12484 && ((sym
->attr
.if_source
== IFSRC_DECL
&& !sym
->attr
.procedure
)
12485 || sym
->attr
.contained
))
12487 gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
12488 "in %qs at %L", sym
->name
, &sym
->declared_at
);
12491 if (strcmp ("ppr@", sym
->name
) == 0)
12493 gfc_error ("Procedure pointer result %qs at %L "
12494 "is missing the pointer attribute",
12495 sym
->ns
->proc_name
->name
, &sym
->declared_at
);
12500 /* Assume that a procedure whose body is not known has references
12501 to external arrays. */
12502 if (sym
->attr
.if_source
!= IFSRC_DECL
)
12503 sym
->attr
.array_outer_dependency
= 1;
12505 /* Compare the characteristics of a module procedure with the
12506 interface declaration. Ideally this would be done with
12507 gfc_compare_interfaces but, at present, the formal interface
12508 cannot be copied to the ts.interface. */
12509 if (sym
->attr
.module_procedure
12510 && sym
->attr
.if_source
== IFSRC_DECL
)
12513 char name
[2*GFC_MAX_SYMBOL_LEN
+ 1];
12515 char *submodule_name
;
12516 strcpy (name
, sym
->ns
->proc_name
->name
);
12517 module_name
= strtok (name
, ".");
12518 submodule_name
= strtok (NULL
, ".");
12520 iface
= sym
->tlink
;
12523 /* Make sure that the result uses the correct charlen for deferred
12525 if (iface
&& sym
->result
12526 && iface
->ts
.type
== BT_CHARACTER
12527 && iface
->ts
.deferred
)
12528 sym
->result
->ts
.u
.cl
= iface
->ts
.u
.cl
;
12533 /* Check the procedure characteristics. */
12534 if (sym
->attr
.elemental
!= iface
->attr
.elemental
)
12536 gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
12537 "PROCEDURE at %L and its interface in %s",
12538 &sym
->declared_at
, module_name
);
12542 if (sym
->attr
.pure
!= iface
->attr
.pure
)
12544 gfc_error ("Mismatch in PURE attribute between MODULE "
12545 "PROCEDURE at %L and its interface in %s",
12546 &sym
->declared_at
, module_name
);
12550 if (sym
->attr
.recursive
!= iface
->attr
.recursive
)
12552 gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
12553 "PROCEDURE at %L and its interface in %s",
12554 &sym
->declared_at
, module_name
);
12558 /* Check the result characteristics. */
12559 if (!gfc_check_result_characteristics (sym
, iface
, errmsg
, 200))
12561 gfc_error ("%s between the MODULE PROCEDURE declaration "
12562 "in MODULE %qs and the declaration at %L in "
12564 errmsg
, module_name
, &sym
->declared_at
,
12565 submodule_name
? submodule_name
: module_name
);
12570 /* Check the characteristics of the formal arguments. */
12571 if (sym
->formal
&& sym
->formal_ns
)
12573 for (arg
= sym
->formal
; arg
&& arg
->sym
; arg
= arg
->next
)
12576 gfc_traverse_ns (sym
->formal_ns
, compare_fsyms
);
12584 /* Resolve a list of finalizer procedures. That is, after they have hopefully
12585 been defined and we now know their defined arguments, check that they fulfill
12586 the requirements of the standard for procedures used as finalizers. */
12589 gfc_resolve_finalizers (gfc_symbol
* derived
, bool *finalizable
)
12591 gfc_finalizer
* list
;
12592 gfc_finalizer
** prev_link
; /* For removing wrong entries from the list. */
12593 bool result
= true;
12594 bool seen_scalar
= false;
12597 gfc_symbol
*parent
= gfc_get_derived_super_type (derived
);
12600 gfc_resolve_finalizers (parent
, finalizable
);
12602 /* Ensure that derived-type components have a their finalizers resolved. */
12603 bool has_final
= derived
->f2k_derived
&& derived
->f2k_derived
->finalizers
;
12604 for (c
= derived
->components
; c
; c
= c
->next
)
12605 if (c
->ts
.type
== BT_DERIVED
12606 && !c
->attr
.pointer
&& !c
->attr
.proc_pointer
&& !c
->attr
.allocatable
)
12608 bool has_final2
= false;
12609 if (!gfc_resolve_finalizers (c
->ts
.u
.derived
, &has_final2
))
12610 return false; /* Error. */
12611 has_final
= has_final
|| has_final2
;
12613 /* Return early if not finalizable. */
12617 *finalizable
= false;
12621 /* Walk over the list of finalizer-procedures, check them, and if any one
12622 does not fit in with the standard's definition, print an error and remove
12623 it from the list. */
12624 prev_link
= &derived
->f2k_derived
->finalizers
;
12625 for (list
= derived
->f2k_derived
->finalizers
; list
; list
= *prev_link
)
12627 gfc_formal_arglist
*dummy_args
;
12632 /* Skip this finalizer if we already resolved it. */
12633 if (list
->proc_tree
)
12635 if (list
->proc_tree
->n
.sym
->formal
->sym
->as
== NULL
12636 || list
->proc_tree
->n
.sym
->formal
->sym
->as
->rank
== 0)
12637 seen_scalar
= true;
12638 prev_link
= &(list
->next
);
12642 /* Check this exists and is a SUBROUTINE. */
12643 if (!list
->proc_sym
->attr
.subroutine
)
12645 gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
12646 list
->proc_sym
->name
, &list
->where
);
12650 /* We should have exactly one argument. */
12651 dummy_args
= gfc_sym_get_dummy_args (list
->proc_sym
);
12652 if (!dummy_args
|| dummy_args
->next
)
12654 gfc_error ("FINAL procedure at %L must have exactly one argument",
12658 arg
= dummy_args
->sym
;
12660 /* This argument must be of our type. */
12661 if (arg
->ts
.type
!= BT_DERIVED
|| arg
->ts
.u
.derived
!= derived
)
12663 gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
12664 &arg
->declared_at
, derived
->name
);
12668 /* It must neither be a pointer nor allocatable nor optional. */
12669 if (arg
->attr
.pointer
)
12671 gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
12672 &arg
->declared_at
);
12675 if (arg
->attr
.allocatable
)
12677 gfc_error ("Argument of FINAL procedure at %L must not be"
12678 " ALLOCATABLE", &arg
->declared_at
);
12681 if (arg
->attr
.optional
)
12683 gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
12684 &arg
->declared_at
);
12688 /* It must not be INTENT(OUT). */
12689 if (arg
->attr
.intent
== INTENT_OUT
)
12691 gfc_error ("Argument of FINAL procedure at %L must not be"
12692 " INTENT(OUT)", &arg
->declared_at
);
12696 /* Warn if the procedure is non-scalar and not assumed shape. */
12697 if (warn_surprising
&& arg
->as
&& arg
->as
->rank
!= 0
12698 && arg
->as
->type
!= AS_ASSUMED_SHAPE
)
12699 gfc_warning (OPT_Wsurprising
,
12700 "Non-scalar FINAL procedure at %L should have assumed"
12701 " shape argument", &arg
->declared_at
);
12703 /* Check that it does not match in kind and rank with a FINAL procedure
12704 defined earlier. To really loop over the *earlier* declarations,
12705 we need to walk the tail of the list as new ones were pushed at the
12707 /* TODO: Handle kind parameters once they are implemented. */
12708 my_rank
= (arg
->as
? arg
->as
->rank
: 0);
12709 for (i
= list
->next
; i
; i
= i
->next
)
12711 gfc_formal_arglist
*dummy_args
;
12713 /* Argument list might be empty; that is an error signalled earlier,
12714 but we nevertheless continued resolving. */
12715 dummy_args
= gfc_sym_get_dummy_args (i
->proc_sym
);
12718 gfc_symbol
* i_arg
= dummy_args
->sym
;
12719 const int i_rank
= (i_arg
->as
? i_arg
->as
->rank
: 0);
12720 if (i_rank
== my_rank
)
12722 gfc_error ("FINAL procedure %qs declared at %L has the same"
12723 " rank (%d) as %qs",
12724 list
->proc_sym
->name
, &list
->where
, my_rank
,
12725 i
->proc_sym
->name
);
12731 /* Is this the/a scalar finalizer procedure? */
12733 seen_scalar
= true;
12735 /* Find the symtree for this procedure. */
12736 gcc_assert (!list
->proc_tree
);
12737 list
->proc_tree
= gfc_find_sym_in_symtree (list
->proc_sym
);
12739 prev_link
= &list
->next
;
12742 /* Remove wrong nodes immediately from the list so we don't risk any
12743 troubles in the future when they might fail later expectations. */
12746 *prev_link
= list
->next
;
12747 gfc_free_finalizer (i
);
12751 if (result
== false)
12754 /* Warn if we haven't seen a scalar finalizer procedure (but we know there
12755 were nodes in the list, must have been for arrays. It is surely a good
12756 idea to have a scalar version there if there's something to finalize. */
12757 if (warn_surprising
&& derived
->f2k_derived
->finalizers
&& !seen_scalar
)
12758 gfc_warning (OPT_Wsurprising
,
12759 "Only array FINAL procedures declared for derived type %qs"
12760 " defined at %L, suggest also scalar one",
12761 derived
->name
, &derived
->declared_at
);
12763 vtab
= gfc_find_derived_vtab (derived
);
12764 c
= vtab
->ts
.u
.derived
->components
->next
->next
->next
->next
->next
;
12765 gfc_set_sym_referenced (c
->initializer
->symtree
->n
.sym
);
12768 *finalizable
= true;
12774 /* Check if two GENERIC targets are ambiguous and emit an error is they are. */
12777 check_generic_tbp_ambiguity (gfc_tbp_generic
* t1
, gfc_tbp_generic
* t2
,
12778 const char* generic_name
, locus where
)
12780 gfc_symbol
*sym1
, *sym2
;
12781 const char *pass1
, *pass2
;
12782 gfc_formal_arglist
*dummy_args
;
12784 gcc_assert (t1
->specific
&& t2
->specific
);
12785 gcc_assert (!t1
->specific
->is_generic
);
12786 gcc_assert (!t2
->specific
->is_generic
);
12787 gcc_assert (t1
->is_operator
== t2
->is_operator
);
12789 sym1
= t1
->specific
->u
.specific
->n
.sym
;
12790 sym2
= t2
->specific
->u
.specific
->n
.sym
;
12795 /* Both must be SUBROUTINEs or both must be FUNCTIONs. */
12796 if (sym1
->attr
.subroutine
!= sym2
->attr
.subroutine
12797 || sym1
->attr
.function
!= sym2
->attr
.function
)
12799 gfc_error ("%qs and %qs can't be mixed FUNCTION/SUBROUTINE for"
12800 " GENERIC %qs at %L",
12801 sym1
->name
, sym2
->name
, generic_name
, &where
);
12805 /* Determine PASS arguments. */
12806 if (t1
->specific
->nopass
)
12808 else if (t1
->specific
->pass_arg
)
12809 pass1
= t1
->specific
->pass_arg
;
12812 dummy_args
= gfc_sym_get_dummy_args (t1
->specific
->u
.specific
->n
.sym
);
12814 pass1
= dummy_args
->sym
->name
;
12818 if (t2
->specific
->nopass
)
12820 else if (t2
->specific
->pass_arg
)
12821 pass2
= t2
->specific
->pass_arg
;
12824 dummy_args
= gfc_sym_get_dummy_args (t2
->specific
->u
.specific
->n
.sym
);
12826 pass2
= dummy_args
->sym
->name
;
12831 /* Compare the interfaces. */
12832 if (gfc_compare_interfaces (sym1
, sym2
, sym2
->name
, !t1
->is_operator
, 0,
12833 NULL
, 0, pass1
, pass2
))
12835 gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
12836 sym1
->name
, sym2
->name
, generic_name
, &where
);
12844 /* Worker function for resolving a generic procedure binding; this is used to
12845 resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
12847 The difference between those cases is finding possible inherited bindings
12848 that are overridden, as one has to look for them in tb_sym_root,
12849 tb_uop_root or tb_op, respectively. Thus the caller must already find
12850 the super-type and set p->overridden correctly. */
12853 resolve_tb_generic_targets (gfc_symbol
* super_type
,
12854 gfc_typebound_proc
* p
, const char* name
)
12856 gfc_tbp_generic
* target
;
12857 gfc_symtree
* first_target
;
12858 gfc_symtree
* inherited
;
12860 gcc_assert (p
&& p
->is_generic
);
12862 /* Try to find the specific bindings for the symtrees in our target-list. */
12863 gcc_assert (p
->u
.generic
);
12864 for (target
= p
->u
.generic
; target
; target
= target
->next
)
12865 if (!target
->specific
)
12867 gfc_typebound_proc
* overridden_tbp
;
12868 gfc_tbp_generic
* g
;
12869 const char* target_name
;
12871 target_name
= target
->specific_st
->name
;
12873 /* Defined for this type directly. */
12874 if (target
->specific_st
->n
.tb
&& !target
->specific_st
->n
.tb
->error
)
12876 target
->specific
= target
->specific_st
->n
.tb
;
12877 goto specific_found
;
12880 /* Look for an inherited specific binding. */
12883 inherited
= gfc_find_typebound_proc (super_type
, NULL
, target_name
,
12888 gcc_assert (inherited
->n
.tb
);
12889 target
->specific
= inherited
->n
.tb
;
12890 goto specific_found
;
12894 gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
12895 " at %L", target_name
, name
, &p
->where
);
12898 /* Once we've found the specific binding, check it is not ambiguous with
12899 other specifics already found or inherited for the same GENERIC. */
12901 gcc_assert (target
->specific
);
12903 /* This must really be a specific binding! */
12904 if (target
->specific
->is_generic
)
12906 gfc_error ("GENERIC %qs at %L must target a specific binding,"
12907 " %qs is GENERIC, too", name
, &p
->where
, target_name
);
12911 /* Check those already resolved on this type directly. */
12912 for (g
= p
->u
.generic
; g
; g
= g
->next
)
12913 if (g
!= target
&& g
->specific
12914 && !check_generic_tbp_ambiguity (target
, g
, name
, p
->where
))
12917 /* Check for ambiguity with inherited specific targets. */
12918 for (overridden_tbp
= p
->overridden
; overridden_tbp
;
12919 overridden_tbp
= overridden_tbp
->overridden
)
12920 if (overridden_tbp
->is_generic
)
12922 for (g
= overridden_tbp
->u
.generic
; g
; g
= g
->next
)
12924 gcc_assert (g
->specific
);
12925 if (!check_generic_tbp_ambiguity (target
, g
, name
, p
->where
))
12931 /* If we attempt to "overwrite" a specific binding, this is an error. */
12932 if (p
->overridden
&& !p
->overridden
->is_generic
)
12934 gfc_error ("GENERIC %qs at %L can't overwrite specific binding with"
12935 " the same name", name
, &p
->where
);
12939 /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
12940 all must have the same attributes here. */
12941 first_target
= p
->u
.generic
->specific
->u
.specific
;
12942 gcc_assert (first_target
);
12943 p
->subroutine
= first_target
->n
.sym
->attr
.subroutine
;
12944 p
->function
= first_target
->n
.sym
->attr
.function
;
12950 /* Resolve a GENERIC procedure binding for a derived type. */
12953 resolve_typebound_generic (gfc_symbol
* derived
, gfc_symtree
* st
)
12955 gfc_symbol
* super_type
;
12957 /* Find the overridden binding if any. */
12958 st
->n
.tb
->overridden
= NULL
;
12959 super_type
= gfc_get_derived_super_type (derived
);
12962 gfc_symtree
* overridden
;
12963 overridden
= gfc_find_typebound_proc (super_type
, NULL
, st
->name
,
12966 if (overridden
&& overridden
->n
.tb
)
12967 st
->n
.tb
->overridden
= overridden
->n
.tb
;
12970 /* Resolve using worker function. */
12971 return resolve_tb_generic_targets (super_type
, st
->n
.tb
, st
->name
);
12975 /* Retrieve the target-procedure of an operator binding and do some checks in
12976 common for intrinsic and user-defined type-bound operators. */
12979 get_checked_tb_operator_target (gfc_tbp_generic
* target
, locus where
)
12981 gfc_symbol
* target_proc
;
12983 gcc_assert (target
->specific
&& !target
->specific
->is_generic
);
12984 target_proc
= target
->specific
->u
.specific
->n
.sym
;
12985 gcc_assert (target_proc
);
12987 /* F08:C468. All operator bindings must have a passed-object dummy argument. */
12988 if (target
->specific
->nopass
)
12990 gfc_error ("Type-bound operator at %L can't be NOPASS", &where
);
12994 return target_proc
;
12998 /* Resolve a type-bound intrinsic operator. */
13001 resolve_typebound_intrinsic_op (gfc_symbol
* derived
, gfc_intrinsic_op op
,
13002 gfc_typebound_proc
* p
)
13004 gfc_symbol
* super_type
;
13005 gfc_tbp_generic
* target
;
13007 /* If there's already an error here, do nothing (but don't fail again). */
13011 /* Operators should always be GENERIC bindings. */
13012 gcc_assert (p
->is_generic
);
13014 /* Look for an overridden binding. */
13015 super_type
= gfc_get_derived_super_type (derived
);
13016 if (super_type
&& super_type
->f2k_derived
)
13017 p
->overridden
= gfc_find_typebound_intrinsic_op (super_type
, NULL
,
13020 p
->overridden
= NULL
;
13022 /* Resolve general GENERIC properties using worker function. */
13023 if (!resolve_tb_generic_targets (super_type
, p
, gfc_op2string(op
)))
13026 /* Check the targets to be procedures of correct interface. */
13027 for (target
= p
->u
.generic
; target
; target
= target
->next
)
13029 gfc_symbol
* target_proc
;
13031 target_proc
= get_checked_tb_operator_target (target
, p
->where
);
13035 if (!gfc_check_operator_interface (target_proc
, op
, p
->where
))
13038 /* Add target to non-typebound operator list. */
13039 if (!target
->specific
->deferred
&& !derived
->attr
.use_assoc
13040 && p
->access
!= ACCESS_PRIVATE
&& derived
->ns
== gfc_current_ns
)
13042 gfc_interface
*head
, *intr
;
13044 /* Preempt 'gfc_check_new_interface' for submodules, where the
13045 mechanism for handling module procedures winds up resolving
13046 operator interfaces twice and would otherwise cause an error. */
13047 for (intr
= derived
->ns
->op
[op
]; intr
; intr
= intr
->next
)
13048 if (intr
->sym
== target_proc
13049 && target_proc
->attr
.used_in_submodule
)
13052 if (!gfc_check_new_interface (derived
->ns
->op
[op
],
13053 target_proc
, p
->where
))
13055 head
= derived
->ns
->op
[op
];
13056 intr
= gfc_get_interface ();
13057 intr
->sym
= target_proc
;
13058 intr
->where
= p
->where
;
13060 derived
->ns
->op
[op
] = intr
;
13072 /* Resolve a type-bound user operator (tree-walker callback). */
13074 static gfc_symbol
* resolve_bindings_derived
;
13075 static bool resolve_bindings_result
;
13077 static bool check_uop_procedure (gfc_symbol
* sym
, locus where
);
13080 resolve_typebound_user_op (gfc_symtree
* stree
)
13082 gfc_symbol
* super_type
;
13083 gfc_tbp_generic
* target
;
13085 gcc_assert (stree
&& stree
->n
.tb
);
13087 if (stree
->n
.tb
->error
)
13090 /* Operators should always be GENERIC bindings. */
13091 gcc_assert (stree
->n
.tb
->is_generic
);
13093 /* Find overridden procedure, if any. */
13094 super_type
= gfc_get_derived_super_type (resolve_bindings_derived
);
13095 if (super_type
&& super_type
->f2k_derived
)
13097 gfc_symtree
* overridden
;
13098 overridden
= gfc_find_typebound_user_op (super_type
, NULL
,
13099 stree
->name
, true, NULL
);
13101 if (overridden
&& overridden
->n
.tb
)
13102 stree
->n
.tb
->overridden
= overridden
->n
.tb
;
13105 stree
->n
.tb
->overridden
= NULL
;
13107 /* Resolve basically using worker function. */
13108 if (!resolve_tb_generic_targets (super_type
, stree
->n
.tb
, stree
->name
))
13111 /* Check the targets to be functions of correct interface. */
13112 for (target
= stree
->n
.tb
->u
.generic
; target
; target
= target
->next
)
13114 gfc_symbol
* target_proc
;
13116 target_proc
= get_checked_tb_operator_target (target
, stree
->n
.tb
->where
);
13120 if (!check_uop_procedure (target_proc
, stree
->n
.tb
->where
))
13127 resolve_bindings_result
= false;
13128 stree
->n
.tb
->error
= 1;
13132 /* Resolve the type-bound procedures for a derived type. */
13135 resolve_typebound_procedure (gfc_symtree
* stree
)
13139 gfc_symbol
* me_arg
;
13140 gfc_symbol
* super_type
;
13141 gfc_component
* comp
;
13143 gcc_assert (stree
);
13145 /* Undefined specific symbol from GENERIC target definition. */
13149 if (stree
->n
.tb
->error
)
13152 /* If this is a GENERIC binding, use that routine. */
13153 if (stree
->n
.tb
->is_generic
)
13155 if (!resolve_typebound_generic (resolve_bindings_derived
, stree
))
13160 /* Get the target-procedure to check it. */
13161 gcc_assert (!stree
->n
.tb
->is_generic
);
13162 gcc_assert (stree
->n
.tb
->u
.specific
);
13163 proc
= stree
->n
.tb
->u
.specific
->n
.sym
;
13164 where
= stree
->n
.tb
->where
;
13166 /* Default access should already be resolved from the parser. */
13167 gcc_assert (stree
->n
.tb
->access
!= ACCESS_UNKNOWN
);
13169 if (stree
->n
.tb
->deferred
)
13171 if (!check_proc_interface (proc
, &where
))
13176 /* Check for F08:C465. */
13177 if ((!proc
->attr
.subroutine
&& !proc
->attr
.function
)
13178 || (proc
->attr
.proc
!= PROC_MODULE
13179 && proc
->attr
.if_source
!= IFSRC_IFBODY
)
13180 || proc
->attr
.abstract
)
13182 gfc_error ("%qs must be a module procedure or an external procedure with"
13183 " an explicit interface at %L", proc
->name
, &where
);
13188 stree
->n
.tb
->subroutine
= proc
->attr
.subroutine
;
13189 stree
->n
.tb
->function
= proc
->attr
.function
;
13191 /* Find the super-type of the current derived type. We could do this once and
13192 store in a global if speed is needed, but as long as not I believe this is
13193 more readable and clearer. */
13194 super_type
= gfc_get_derived_super_type (resolve_bindings_derived
);
13196 /* If PASS, resolve and check arguments if not already resolved / loaded
13197 from a .mod file. */
13198 if (!stree
->n
.tb
->nopass
&& stree
->n
.tb
->pass_arg_num
== 0)
13200 gfc_formal_arglist
*dummy_args
;
13202 dummy_args
= gfc_sym_get_dummy_args (proc
);
13203 if (stree
->n
.tb
->pass_arg
)
13205 gfc_formal_arglist
*i
;
13207 /* If an explicit passing argument name is given, walk the arg-list
13208 and look for it. */
13211 stree
->n
.tb
->pass_arg_num
= 1;
13212 for (i
= dummy_args
; i
; i
= i
->next
)
13214 if (!strcmp (i
->sym
->name
, stree
->n
.tb
->pass_arg
))
13219 ++stree
->n
.tb
->pass_arg_num
;
13224 gfc_error ("Procedure %qs with PASS(%s) at %L has no"
13226 proc
->name
, stree
->n
.tb
->pass_arg
, &where
,
13227 stree
->n
.tb
->pass_arg
);
13233 /* Otherwise, take the first one; there should in fact be at least
13235 stree
->n
.tb
->pass_arg_num
= 1;
13238 gfc_error ("Procedure %qs with PASS at %L must have at"
13239 " least one argument", proc
->name
, &where
);
13242 me_arg
= dummy_args
->sym
;
13245 /* Now check that the argument-type matches and the passed-object
13246 dummy argument is generally fine. */
13248 gcc_assert (me_arg
);
13250 if (me_arg
->ts
.type
!= BT_CLASS
)
13252 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13253 " at %L", proc
->name
, &where
);
13257 if (CLASS_DATA (me_arg
)->ts
.u
.derived
13258 != resolve_bindings_derived
)
13260 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13261 " the derived-type %qs", me_arg
->name
, proc
->name
,
13262 me_arg
->name
, &where
, resolve_bindings_derived
->name
);
13266 gcc_assert (me_arg
->ts
.type
== BT_CLASS
);
13267 if (CLASS_DATA (me_arg
)->as
&& CLASS_DATA (me_arg
)->as
->rank
!= 0)
13269 gfc_error ("Passed-object dummy argument of %qs at %L must be"
13270 " scalar", proc
->name
, &where
);
13273 if (CLASS_DATA (me_arg
)->attr
.allocatable
)
13275 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13276 " be ALLOCATABLE", proc
->name
, &where
);
13279 if (CLASS_DATA (me_arg
)->attr
.class_pointer
)
13281 gfc_error ("Passed-object dummy argument of %qs at %L must not"
13282 " be POINTER", proc
->name
, &where
);
13287 /* If we are extending some type, check that we don't override a procedure
13288 flagged NON_OVERRIDABLE. */
13289 stree
->n
.tb
->overridden
= NULL
;
13292 gfc_symtree
* overridden
;
13293 overridden
= gfc_find_typebound_proc (super_type
, NULL
,
13294 stree
->name
, true, NULL
);
13298 if (overridden
->n
.tb
)
13299 stree
->n
.tb
->overridden
= overridden
->n
.tb
;
13301 if (!gfc_check_typebound_override (stree
, overridden
))
13306 /* See if there's a name collision with a component directly in this type. */
13307 for (comp
= resolve_bindings_derived
->components
; comp
; comp
= comp
->next
)
13308 if (!strcmp (comp
->name
, stree
->name
))
13310 gfc_error ("Procedure %qs at %L has the same name as a component of"
13312 stree
->name
, &where
, resolve_bindings_derived
->name
);
13316 /* Try to find a name collision with an inherited component. */
13317 if (super_type
&& gfc_find_component (super_type
, stree
->name
, true, true,
13320 gfc_error ("Procedure %qs at %L has the same name as an inherited"
13321 " component of %qs",
13322 stree
->name
, &where
, resolve_bindings_derived
->name
);
13326 stree
->n
.tb
->error
= 0;
13330 resolve_bindings_result
= false;
13331 stree
->n
.tb
->error
= 1;
13336 resolve_typebound_procedures (gfc_symbol
* derived
)
13339 gfc_symbol
* super_type
;
13341 if (!derived
->f2k_derived
|| !derived
->f2k_derived
->tb_sym_root
)
13344 super_type
= gfc_get_derived_super_type (derived
);
13346 resolve_symbol (super_type
);
13348 resolve_bindings_derived
= derived
;
13349 resolve_bindings_result
= true;
13351 if (derived
->f2k_derived
->tb_sym_root
)
13352 gfc_traverse_symtree (derived
->f2k_derived
->tb_sym_root
,
13353 &resolve_typebound_procedure
);
13355 if (derived
->f2k_derived
->tb_uop_root
)
13356 gfc_traverse_symtree (derived
->f2k_derived
->tb_uop_root
,
13357 &resolve_typebound_user_op
);
13359 for (op
= 0; op
!= GFC_INTRINSIC_OPS
; ++op
)
13361 gfc_typebound_proc
* p
= derived
->f2k_derived
->tb_op
[op
];
13362 if (p
&& !resolve_typebound_intrinsic_op (derived
,
13363 (gfc_intrinsic_op
)op
, p
))
13364 resolve_bindings_result
= false;
13367 return resolve_bindings_result
;
13371 /* Add a derived type to the dt_list. The dt_list is used in trans-types.c
13372 to give all identical derived types the same backend_decl. */
13374 add_dt_to_dt_list (gfc_symbol
*derived
)
13376 gfc_dt_list
*dt_list
;
13378 for (dt_list
= gfc_derived_types
; dt_list
; dt_list
= dt_list
->next
)
13379 if (derived
== dt_list
->derived
)
13382 dt_list
= gfc_get_dt_list ();
13383 dt_list
->next
= gfc_derived_types
;
13384 dt_list
->derived
= derived
;
13385 gfc_derived_types
= dt_list
;
13389 /* Ensure that a derived-type is really not abstract, meaning that every
13390 inherited DEFERRED binding is overridden by a non-DEFERRED one. */
13393 ensure_not_abstract_walker (gfc_symbol
* sub
, gfc_symtree
* st
)
13398 if (!ensure_not_abstract_walker (sub
, st
->left
))
13400 if (!ensure_not_abstract_walker (sub
, st
->right
))
13403 if (st
->n
.tb
&& st
->n
.tb
->deferred
)
13405 gfc_symtree
* overriding
;
13406 overriding
= gfc_find_typebound_proc (sub
, NULL
, st
->name
, true, NULL
);
13409 gcc_assert (overriding
->n
.tb
);
13410 if (overriding
->n
.tb
->deferred
)
13412 gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
13413 " %qs is DEFERRED and not overridden",
13414 sub
->name
, &sub
->declared_at
, st
->name
);
13423 ensure_not_abstract (gfc_symbol
* sub
, gfc_symbol
* ancestor
)
13425 /* The algorithm used here is to recursively travel up the ancestry of sub
13426 and for each ancestor-type, check all bindings. If any of them is
13427 DEFERRED, look it up starting from sub and see if the found (overriding)
13428 binding is not DEFERRED.
13429 This is not the most efficient way to do this, but it should be ok and is
13430 clearer than something sophisticated. */
13432 gcc_assert (ancestor
&& !sub
->attr
.abstract
);
13434 if (!ancestor
->attr
.abstract
)
13437 /* Walk bindings of this ancestor. */
13438 if (ancestor
->f2k_derived
)
13441 t
= ensure_not_abstract_walker (sub
, ancestor
->f2k_derived
->tb_sym_root
);
13446 /* Find next ancestor type and recurse on it. */
13447 ancestor
= gfc_get_derived_super_type (ancestor
);
13449 return ensure_not_abstract (sub
, ancestor
);
13455 /* This check for typebound defined assignments is done recursively
13456 since the order in which derived types are resolved is not always in
13457 order of the declarations. */
13460 check_defined_assignments (gfc_symbol
*derived
)
13464 for (c
= derived
->components
; c
; c
= c
->next
)
13466 if (!gfc_bt_struct (c
->ts
.type
)
13468 || c
->attr
.allocatable
13469 || c
->attr
.proc_pointer_comp
13470 || c
->attr
.class_pointer
13471 || c
->attr
.proc_pointer
)
13474 if (c
->ts
.u
.derived
->attr
.defined_assign_comp
13475 || (c
->ts
.u
.derived
->f2k_derived
13476 && c
->ts
.u
.derived
->f2k_derived
->tb_op
[INTRINSIC_ASSIGN
]))
13478 derived
->attr
.defined_assign_comp
= 1;
13482 check_defined_assignments (c
->ts
.u
.derived
);
13483 if (c
->ts
.u
.derived
->attr
.defined_assign_comp
)
13485 derived
->attr
.defined_assign_comp
= 1;
13492 /* Resolve a single component of a derived type or structure. */
13495 resolve_component (gfc_component
*c
, gfc_symbol
*sym
)
13497 gfc_symbol
*super_type
;
13499 if (c
->attr
.artificial
)
13502 if (sym
->attr
.vtype
&& sym
->attr
.use_assoc
)
13506 if ((!sym
->attr
.is_class
|| c
!= sym
->components
)
13507 && c
->attr
.codimension
13508 && (!c
->attr
.allocatable
|| (c
->as
&& c
->as
->type
!= AS_DEFERRED
)))
13510 gfc_error ("Coarray component %qs at %L must be allocatable with "
13511 "deferred shape", c
->name
, &c
->loc
);
13516 if (c
->attr
.codimension
&& c
->ts
.type
== BT_DERIVED
13517 && c
->ts
.u
.derived
->ts
.is_iso_c
)
13519 gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
13520 "shall not be a coarray", c
->name
, &c
->loc
);
13525 if (gfc_bt_struct (c
->ts
.type
) && c
->ts
.u
.derived
->attr
.coarray_comp
13526 && (c
->attr
.codimension
|| c
->attr
.pointer
|| c
->attr
.dimension
13527 || c
->attr
.allocatable
))
13529 gfc_error ("Component %qs at %L with coarray component "
13530 "shall be a nonpointer, nonallocatable scalar",
13536 if (c
->attr
.contiguous
&& (!c
->attr
.dimension
|| !c
->attr
.pointer
))
13538 gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
13539 "is not an array pointer", c
->name
, &c
->loc
);
13543 if (c
->attr
.proc_pointer
&& c
->ts
.interface
)
13545 gfc_symbol
*ifc
= c
->ts
.interface
;
13547 if (!sym
->attr
.vtype
&& !check_proc_interface (ifc
, &c
->loc
))
13553 if (ifc
->attr
.if_source
|| ifc
->attr
.intrinsic
)
13555 /* Resolve interface and copy attributes. */
13556 if (ifc
->formal
&& !ifc
->formal_ns
)
13557 resolve_symbol (ifc
);
13558 if (ifc
->attr
.intrinsic
)
13559 gfc_resolve_intrinsic (ifc
, &ifc
->declared_at
);
13563 c
->ts
= ifc
->result
->ts
;
13564 c
->attr
.allocatable
= ifc
->result
->attr
.allocatable
;
13565 c
->attr
.pointer
= ifc
->result
->attr
.pointer
;
13566 c
->attr
.dimension
= ifc
->result
->attr
.dimension
;
13567 c
->as
= gfc_copy_array_spec (ifc
->result
->as
);
13568 c
->attr
.class_ok
= ifc
->result
->attr
.class_ok
;
13573 c
->attr
.allocatable
= ifc
->attr
.allocatable
;
13574 c
->attr
.pointer
= ifc
->attr
.pointer
;
13575 c
->attr
.dimension
= ifc
->attr
.dimension
;
13576 c
->as
= gfc_copy_array_spec (ifc
->as
);
13577 c
->attr
.class_ok
= ifc
->attr
.class_ok
;
13579 c
->ts
.interface
= ifc
;
13580 c
->attr
.function
= ifc
->attr
.function
;
13581 c
->attr
.subroutine
= ifc
->attr
.subroutine
;
13583 c
->attr
.pure
= ifc
->attr
.pure
;
13584 c
->attr
.elemental
= ifc
->attr
.elemental
;
13585 c
->attr
.recursive
= ifc
->attr
.recursive
;
13586 c
->attr
.always_explicit
= ifc
->attr
.always_explicit
;
13587 c
->attr
.ext_attr
|= ifc
->attr
.ext_attr
;
13588 /* Copy char length. */
13589 if (ifc
->ts
.type
== BT_CHARACTER
&& ifc
->ts
.u
.cl
)
13591 gfc_charlen
*cl
= gfc_new_charlen (sym
->ns
, ifc
->ts
.u
.cl
);
13592 if (cl
->length
&& !cl
->resolved
13593 && !gfc_resolve_expr (cl
->length
))
13602 else if (c
->attr
.proc_pointer
&& c
->ts
.type
== BT_UNKNOWN
)
13604 /* Since PPCs are not implicitly typed, a PPC without an explicit
13605 interface must be a subroutine. */
13606 gfc_add_subroutine (&c
->attr
, c
->name
, &c
->loc
);
13609 /* Procedure pointer components: Check PASS arg. */
13610 if (c
->attr
.proc_pointer
&& !c
->tb
->nopass
&& c
->tb
->pass_arg_num
== 0
13611 && !sym
->attr
.vtype
)
13613 gfc_symbol
* me_arg
;
13615 if (c
->tb
->pass_arg
)
13617 gfc_formal_arglist
* i
;
13619 /* If an explicit passing argument name is given, walk the arg-list
13620 and look for it. */
13623 c
->tb
->pass_arg_num
= 1;
13624 for (i
= c
->ts
.interface
->formal
; i
; i
= i
->next
)
13626 if (!strcmp (i
->sym
->name
, c
->tb
->pass_arg
))
13631 c
->tb
->pass_arg_num
++;
13636 gfc_error ("Procedure pointer component %qs with PASS(%s) "
13637 "at %L has no argument %qs", c
->name
,
13638 c
->tb
->pass_arg
, &c
->loc
, c
->tb
->pass_arg
);
13645 /* Otherwise, take the first one; there should in fact be at least
13647 c
->tb
->pass_arg_num
= 1;
13648 if (!c
->ts
.interface
->formal
)
13650 gfc_error ("Procedure pointer component %qs with PASS at %L "
13651 "must have at least one argument",
13656 me_arg
= c
->ts
.interface
->formal
->sym
;
13659 /* Now check that the argument-type matches. */
13660 gcc_assert (me_arg
);
13661 if ((me_arg
->ts
.type
!= BT_DERIVED
&& me_arg
->ts
.type
!= BT_CLASS
)
13662 || (me_arg
->ts
.type
== BT_DERIVED
&& me_arg
->ts
.u
.derived
!= sym
)
13663 || (me_arg
->ts
.type
== BT_CLASS
13664 && CLASS_DATA (me_arg
)->ts
.u
.derived
!= sym
))
13666 gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
13667 " the derived type %qs", me_arg
->name
, c
->name
,
13668 me_arg
->name
, &c
->loc
, sym
->name
);
13673 /* Check for C453. */
13674 if (me_arg
->attr
.dimension
)
13676 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13677 "must be scalar", me_arg
->name
, c
->name
, me_arg
->name
,
13683 if (me_arg
->attr
.pointer
)
13685 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13686 "may not have the POINTER attribute", me_arg
->name
,
13687 c
->name
, me_arg
->name
, &c
->loc
);
13692 if (me_arg
->attr
.allocatable
)
13694 gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
13695 "may not be ALLOCATABLE", me_arg
->name
, c
->name
,
13696 me_arg
->name
, &c
->loc
);
13701 if (gfc_type_is_extensible (sym
) && me_arg
->ts
.type
!= BT_CLASS
)
13703 gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
13704 " at %L", c
->name
, &c
->loc
);
13710 /* Check type-spec if this is not the parent-type component. */
13711 if (((sym
->attr
.is_class
13712 && (!sym
->components
->ts
.u
.derived
->attr
.extension
13713 || c
!= sym
->components
->ts
.u
.derived
->components
))
13714 || (!sym
->attr
.is_class
13715 && (!sym
->attr
.extension
|| c
!= sym
->components
)))
13716 && !sym
->attr
.vtype
13717 && !resolve_typespec_used (&c
->ts
, &c
->loc
, c
->name
))
13720 super_type
= gfc_get_derived_super_type (sym
);
13722 /* If this type is an extension, set the accessibility of the parent
13725 && ((sym
->attr
.is_class
13726 && c
== sym
->components
->ts
.u
.derived
->components
)
13727 || (!sym
->attr
.is_class
&& c
== sym
->components
))
13728 && strcmp (super_type
->name
, c
->name
) == 0)
13729 c
->attr
.access
= super_type
->attr
.access
;
13731 /* If this type is an extension, see if this component has the same name
13732 as an inherited type-bound procedure. */
13733 if (super_type
&& !sym
->attr
.is_class
13734 && gfc_find_typebound_proc (super_type
, NULL
, c
->name
, true, NULL
))
13736 gfc_error ("Component %qs of %qs at %L has the same name as an"
13737 " inherited type-bound procedure",
13738 c
->name
, sym
->name
, &c
->loc
);
13742 if (c
->ts
.type
== BT_CHARACTER
&& !c
->attr
.proc_pointer
13743 && !c
->ts
.deferred
)
13745 if (c
->ts
.u
.cl
->length
== NULL
13746 || (!resolve_charlen(c
->ts
.u
.cl
))
13747 || !gfc_is_constant_expr (c
->ts
.u
.cl
->length
))
13749 gfc_error ("Character length of component %qs needs to "
13750 "be a constant specification expression at %L",
13752 c
->ts
.u
.cl
->length
? &c
->ts
.u
.cl
->length
->where
: &c
->loc
);
13757 if (c
->ts
.type
== BT_CHARACTER
&& c
->ts
.deferred
13758 && !c
->attr
.pointer
&& !c
->attr
.allocatable
)
13760 gfc_error ("Character component %qs of %qs at %L with deferred "
13761 "length must be a POINTER or ALLOCATABLE",
13762 c
->name
, sym
->name
, &c
->loc
);
13766 /* Add the hidden deferred length field. */
13767 if (c
->ts
.type
== BT_CHARACTER
13768 && (c
->ts
.deferred
|| c
->attr
.pdt_string
)
13769 && !c
->attr
.function
13770 && !sym
->attr
.is_class
)
13772 char name
[GFC_MAX_SYMBOL_LEN
+9];
13773 gfc_component
*strlen
;
13774 sprintf (name
, "_%s_length", c
->name
);
13775 strlen
= gfc_find_component (sym
, name
, true, true, NULL
);
13776 if (strlen
== NULL
)
13778 if (!gfc_add_component (sym
, name
, &strlen
))
13780 strlen
->ts
.type
= BT_INTEGER
;
13781 strlen
->ts
.kind
= gfc_charlen_int_kind
;
13782 strlen
->attr
.access
= ACCESS_PRIVATE
;
13783 strlen
->attr
.artificial
= 1;
13787 if (c
->ts
.type
== BT_DERIVED
13788 && sym
->component_access
!= ACCESS_PRIVATE
13789 && gfc_check_symbol_access (sym
)
13790 && !is_sym_host_assoc (c
->ts
.u
.derived
, sym
->ns
)
13791 && !c
->ts
.u
.derived
->attr
.use_assoc
13792 && !gfc_check_symbol_access (c
->ts
.u
.derived
)
13793 && !gfc_notify_std (GFC_STD_F2003
, "the component %qs is a "
13794 "PRIVATE type and cannot be a component of "
13795 "%qs, which is PUBLIC at %L", c
->name
,
13796 sym
->name
, &sym
->declared_at
))
13799 if ((sym
->attr
.sequence
|| sym
->attr
.is_bind_c
) && c
->ts
.type
== BT_CLASS
)
13801 gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
13802 "type %s", c
->name
, &c
->loc
, sym
->name
);
13806 if (sym
->attr
.sequence
)
13808 if (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.sequence
== 0)
13810 gfc_error ("Component %s of SEQUENCE type declared at %L does "
13811 "not have the SEQUENCE attribute",
13812 c
->ts
.u
.derived
->name
, &sym
->declared_at
);
13817 if (c
->ts
.type
== BT_DERIVED
&& c
->ts
.u
.derived
->attr
.generic
)
13818 c
->ts
.u
.derived
= gfc_find_dt_in_generic (c
->ts
.u
.derived
);
13819 else if (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
13820 && CLASS_DATA (c
)->ts
.u
.derived
->attr
.generic
)
13821 CLASS_DATA (c
)->ts
.u
.derived
13822 = gfc_find_dt_in_generic (CLASS_DATA (c
)->ts
.u
.derived
);
13824 if (!sym
->attr
.is_class
&& c
->ts
.type
== BT_DERIVED
&& !sym
->attr
.vtype
13825 && c
->attr
.pointer
&& c
->ts
.u
.derived
->components
== NULL
13826 && !c
->ts
.u
.derived
->attr
.zero_comp
)
13828 gfc_error ("The pointer component %qs of %qs at %L is a type "
13829 "that has not been declared", c
->name
, sym
->name
,
13834 if (c
->ts
.type
== BT_CLASS
&& c
->attr
.class_ok
13835 && CLASS_DATA (c
)->attr
.class_pointer
13836 && CLASS_DATA (c
)->ts
.u
.derived
->components
== NULL
13837 && !CLASS_DATA (c
)->ts
.u
.derived
->attr
.zero_comp
13838 && !UNLIMITED_POLY (c
))
13840 gfc_error ("The pointer component %qs of %qs at %L is a type "
13841 "that has not been declared", c
->name
, sym
->name
,
13846 /* If an allocatable component derived type is of the same type as
13847 the enclosing derived type, we need a vtable generating so that
13848 the __deallocate procedure is created. */
13849 if ((c
->ts
.type
== BT_DERIVED
|| c
->ts
.type
== BT_CLASS
)
13850 && c
->ts
.u
.derived
== sym
&& c
->attr
.allocatable
== 1)
13851 gfc_find_vtab (&c
->ts
);
13853 /* Ensure that all the derived type components are put on the
13854 derived type list; even in formal namespaces, where derived type
13855 pointer components might not have been declared. */
13856 if (c
->ts
.type
== BT_DERIVED
13858 && c
->ts
.u
.derived
->components
13860 && sym
!= c
->ts
.u
.derived
)
13861 add_dt_to_dt_list (c
->ts
.u
.derived
);
13863 if (!gfc_resolve_array_spec (c
->as
,
13864 !(c
->attr
.pointer
|| c
->attr
.proc_pointer
13865 || c
->attr
.allocatable
)))
13868 if (c
->initializer
&& !sym
->attr
.vtype
13869 && !c
->attr
.pdt_kind
&& !c
->attr
.pdt_len
13870 && !gfc_check_assign_symbol (sym
, c
, c
->initializer
))
13877 /* Be nice about the locus for a structure expression - show the locus of the
13878 first non-null sub-expression if we can. */
13881 cons_where (gfc_expr
*struct_expr
)
13883 gfc_constructor
*cons
;
13885 gcc_assert (struct_expr
&& struct_expr
->expr_type
== EXPR_STRUCTURE
);
13887 cons
= gfc_constructor_first (struct_expr
->value
.constructor
);
13888 for (; cons
; cons
= gfc_constructor_next (cons
))
13890 if (cons
->expr
&& cons
->expr
->expr_type
!= EXPR_NULL
)
13891 return &cons
->expr
->where
;
13894 return &struct_expr
->where
;
13897 /* Resolve the components of a structure type. Much less work than derived
13901 resolve_fl_struct (gfc_symbol
*sym
)
13904 gfc_expr
*init
= NULL
;
13907 /* Make sure UNIONs do not have overlapping initializers. */
13908 if (sym
->attr
.flavor
== FL_UNION
)
13910 for (c
= sym
->components
; c
; c
= c
->next
)
13912 if (init
&& c
->initializer
)
13914 gfc_error ("Conflicting initializers in union at %L and %L",
13915 cons_where (init
), cons_where (c
->initializer
));
13916 gfc_free_expr (c
->initializer
);
13917 c
->initializer
= NULL
;
13920 init
= c
->initializer
;
13925 for (c
= sym
->components
; c
; c
= c
->next
)
13926 if (!resolve_component (c
, sym
))
13932 if (sym
->components
)
13933 add_dt_to_dt_list (sym
);
13939 /* Resolve the components of a derived type. This does not have to wait until
13940 resolution stage, but can be done as soon as the dt declaration has been
13944 resolve_fl_derived0 (gfc_symbol
*sym
)
13946 gfc_symbol
* super_type
;
13948 gfc_formal_arglist
*f
;
13951 if (sym
->attr
.unlimited_polymorphic
)
13954 super_type
= gfc_get_derived_super_type (sym
);
13957 if (super_type
&& sym
->attr
.coarray_comp
&& !super_type
->attr
.coarray_comp
)
13959 gfc_error ("As extending type %qs at %L has a coarray component, "
13960 "parent type %qs shall also have one", sym
->name
,
13961 &sym
->declared_at
, super_type
->name
);
13965 /* Ensure the extended type gets resolved before we do. */
13966 if (super_type
&& !resolve_fl_derived0 (super_type
))
13969 /* An ABSTRACT type must be extensible. */
13970 if (sym
->attr
.abstract
&& !gfc_type_is_extensible (sym
))
13972 gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
13973 sym
->name
, &sym
->declared_at
);
13977 c
= (sym
->attr
.is_class
) ? sym
->components
->ts
.u
.derived
->components
13981 for ( ; c
!= NULL
; c
= c
->next
)
13982 if (!resolve_component (c
, sym
))
13988 check_defined_assignments (sym
);
13990 if (!sym
->attr
.defined_assign_comp
&& super_type
)
13991 sym
->attr
.defined_assign_comp
13992 = super_type
->attr
.defined_assign_comp
;
13994 /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
13995 all DEFERRED bindings are overridden. */
13996 if (super_type
&& super_type
->attr
.abstract
&& !sym
->attr
.abstract
13997 && !sym
->attr
.is_class
13998 && !ensure_not_abstract (sym
, super_type
))
14001 /* Check that there is a component for every PDT parameter. */
14002 if (sym
->attr
.pdt_template
)
14004 for (f
= sym
->formal
; f
; f
= f
->next
)
14006 c
= gfc_find_component (sym
, f
->sym
->name
, true, true, NULL
);
14009 gfc_error ("Parameterized type %qs does not have a component "
14010 "corresponding to parameter %qs at %L", sym
->name
,
14011 f
->sym
->name
, &sym
->declared_at
);
14017 /* Add derived type to the derived type list. */
14018 add_dt_to_dt_list (sym
);
14024 /* The following procedure does the full resolution of a derived type,
14025 including resolution of all type-bound procedures (if present). In contrast
14026 to 'resolve_fl_derived0' this can only be done after the module has been
14027 parsed completely. */
14030 resolve_fl_derived (gfc_symbol
*sym
)
14032 gfc_symbol
*gen_dt
= NULL
;
14034 if (sym
->attr
.unlimited_polymorphic
)
14037 if (!sym
->attr
.is_class
)
14038 gfc_find_symbol (sym
->name
, sym
->ns
, 0, &gen_dt
);
14039 if (gen_dt
&& gen_dt
->generic
&& gen_dt
->generic
->next
14040 && (!gen_dt
->generic
->sym
->attr
.use_assoc
14041 || gen_dt
->generic
->sym
->module
!= gen_dt
->generic
->next
->sym
->module
)
14042 && !gfc_notify_std (GFC_STD_F2003
, "Generic name %qs of function "
14043 "%qs at %L being the same name as derived "
14044 "type at %L", sym
->name
,
14045 gen_dt
->generic
->sym
== sym
14046 ? gen_dt
->generic
->next
->sym
->name
14047 : gen_dt
->generic
->sym
->name
,
14048 gen_dt
->generic
->sym
== sym
14049 ? &gen_dt
->generic
->next
->sym
->declared_at
14050 : &gen_dt
->generic
->sym
->declared_at
,
14051 &sym
->declared_at
))
14054 /* Resolve the finalizer procedures. */
14055 if (!gfc_resolve_finalizers (sym
, NULL
))
14058 if (sym
->attr
.is_class
&& sym
->ts
.u
.derived
== NULL
)
14060 /* Fix up incomplete CLASS symbols. */
14061 gfc_component
*data
= gfc_find_component (sym
, "_data", true, true, NULL
);
14062 gfc_component
*vptr
= gfc_find_component (sym
, "_vptr", true, true, NULL
);
14064 /* Nothing more to do for unlimited polymorphic entities. */
14065 if (data
->ts
.u
.derived
->attr
.unlimited_polymorphic
)
14067 else if (vptr
->ts
.u
.derived
== NULL
)
14069 gfc_symbol
*vtab
= gfc_find_derived_vtab (data
->ts
.u
.derived
);
14071 vptr
->ts
.u
.derived
= vtab
->ts
.u
.derived
;
14072 if (!resolve_fl_derived0 (vptr
->ts
.u
.derived
))
14077 if (!resolve_fl_derived0 (sym
))
14080 /* Resolve the type-bound procedures. */
14081 if (!resolve_typebound_procedures (sym
))
14084 /* Generate module vtables subject to their accessibility and their not
14085 being vtables or pdt templates. If this is not done class declarations
14086 in external procedures wind up with their own version and so SELECT TYPE
14087 fails because the vptrs do not have the same address. */
14088 if (gfc_option
.allow_std
& GFC_STD_F2003
14089 && sym
->ns
->proc_name
14090 && sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
14091 && sym
->attr
.access
!= ACCESS_PRIVATE
14092 && !(sym
->attr
.use_assoc
|| sym
->attr
.vtype
|| sym
->attr
.pdt_template
))
14094 gfc_symbol
*vtab
= gfc_find_derived_vtab (sym
);
14095 gfc_set_sym_referenced (vtab
);
14103 resolve_fl_namelist (gfc_symbol
*sym
)
14108 for (nl
= sym
->namelist
; nl
; nl
= nl
->next
)
14110 /* Check again, the check in match only works if NAMELIST comes
14112 if (nl
->sym
->as
&& nl
->sym
->as
->type
== AS_ASSUMED_SIZE
)
14114 gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
14115 "allowed", nl
->sym
->name
, sym
->name
, &sym
->declared_at
);
14119 if (nl
->sym
->as
&& nl
->sym
->as
->type
== AS_ASSUMED_SHAPE
14120 && !gfc_notify_std (GFC_STD_F2003
, "NAMELIST array object %qs "
14121 "with assumed shape in namelist %qs at %L",
14122 nl
->sym
->name
, sym
->name
, &sym
->declared_at
))
14125 if (is_non_constant_shape_array (nl
->sym
)
14126 && !gfc_notify_std (GFC_STD_F2003
, "NAMELIST array object %qs "
14127 "with nonconstant shape in namelist %qs at %L",
14128 nl
->sym
->name
, sym
->name
, &sym
->declared_at
))
14131 if (nl
->sym
->ts
.type
== BT_CHARACTER
14132 && (nl
->sym
->ts
.u
.cl
->length
== NULL
14133 || !gfc_is_constant_expr (nl
->sym
->ts
.u
.cl
->length
))
14134 && !gfc_notify_std (GFC_STD_F2003
, "NAMELIST object %qs with "
14135 "nonconstant character length in "
14136 "namelist %qs at %L", nl
->sym
->name
,
14137 sym
->name
, &sym
->declared_at
))
14142 /* Reject PRIVATE objects in a PUBLIC namelist. */
14143 if (gfc_check_symbol_access (sym
))
14145 for (nl
= sym
->namelist
; nl
; nl
= nl
->next
)
14147 if (!nl
->sym
->attr
.use_assoc
14148 && !is_sym_host_assoc (nl
->sym
, sym
->ns
)
14149 && !gfc_check_symbol_access (nl
->sym
))
14151 gfc_error ("NAMELIST object %qs was declared PRIVATE and "
14152 "cannot be member of PUBLIC namelist %qs at %L",
14153 nl
->sym
->name
, sym
->name
, &sym
->declared_at
);
14157 if (nl
->sym
->ts
.type
== BT_DERIVED
14158 && (nl
->sym
->ts
.u
.derived
->attr
.alloc_comp
14159 || nl
->sym
->ts
.u
.derived
->attr
.pointer_comp
))
14161 if (!gfc_notify_std (GFC_STD_F2003
, "NAMELIST object %qs in "
14162 "namelist %qs at %L with ALLOCATABLE "
14163 "or POINTER components", nl
->sym
->name
,
14164 sym
->name
, &sym
->declared_at
))
14169 /* Types with private components that came here by USE-association. */
14170 if (nl
->sym
->ts
.type
== BT_DERIVED
14171 && derived_inaccessible (nl
->sym
->ts
.u
.derived
))
14173 gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
14174 "components and cannot be member of namelist %qs at %L",
14175 nl
->sym
->name
, sym
->name
, &sym
->declared_at
);
14179 /* Types with private components that are defined in the same module. */
14180 if (nl
->sym
->ts
.type
== BT_DERIVED
14181 && !is_sym_host_assoc (nl
->sym
->ts
.u
.derived
, sym
->ns
)
14182 && nl
->sym
->ts
.u
.derived
->attr
.private_comp
)
14184 gfc_error ("NAMELIST object %qs has PRIVATE components and "
14185 "cannot be a member of PUBLIC namelist %qs at %L",
14186 nl
->sym
->name
, sym
->name
, &sym
->declared_at
);
14193 /* 14.1.2 A module or internal procedure represent local entities
14194 of the same type as a namelist member and so are not allowed. */
14195 for (nl
= sym
->namelist
; nl
; nl
= nl
->next
)
14197 if (nl
->sym
->ts
.kind
!= 0 && nl
->sym
->attr
.flavor
== FL_VARIABLE
)
14200 if (nl
->sym
->attr
.function
&& nl
->sym
== nl
->sym
->result
)
14201 if ((nl
->sym
== sym
->ns
->proc_name
)
14203 (sym
->ns
->parent
&& nl
->sym
== sym
->ns
->parent
->proc_name
))
14208 gfc_find_symbol (nl
->sym
->name
, sym
->ns
, 1, &nlsym
);
14209 if (nlsym
&& nlsym
->attr
.flavor
== FL_PROCEDURE
)
14211 gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
14212 "attribute in %qs at %L", nlsym
->name
,
14213 &sym
->declared_at
);
14220 for (nl
= sym
->namelist
; nl
; nl
= nl
->next
)
14221 nl
->sym
->attr
.asynchronous
= 1;
14228 resolve_fl_parameter (gfc_symbol
*sym
)
14230 /* A parameter array's shape needs to be constant. */
14231 if (sym
->as
!= NULL
14232 && (sym
->as
->type
== AS_DEFERRED
14233 || is_non_constant_shape_array (sym
)))
14235 gfc_error ("Parameter array %qs at %L cannot be automatic "
14236 "or of deferred shape", sym
->name
, &sym
->declared_at
);
14240 /* Constraints on deferred type parameter. */
14241 if (!deferred_requirements (sym
))
14244 /* Make sure a parameter that has been implicitly typed still
14245 matches the implicit type, since PARAMETER statements can precede
14246 IMPLICIT statements. */
14247 if (sym
->attr
.implicit_type
14248 && !gfc_compare_types (&sym
->ts
, gfc_get_default_type (sym
->name
,
14251 gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
14252 "later IMPLICIT type", sym
->name
, &sym
->declared_at
);
14256 /* Make sure the types of derived parameters are consistent. This
14257 type checking is deferred until resolution because the type may
14258 refer to a derived type from the host. */
14259 if (sym
->ts
.type
== BT_DERIVED
14260 && !gfc_compare_types (&sym
->ts
, &sym
->value
->ts
))
14262 gfc_error ("Incompatible derived type in PARAMETER at %L",
14263 &sym
->value
->where
);
14267 /* F03:C509,C514. */
14268 if (sym
->ts
.type
== BT_CLASS
)
14270 gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
14271 sym
->name
, &sym
->declared_at
);
14279 /* Called by resolve_symbol to chack PDTs. */
14282 resolve_pdt (gfc_symbol
* sym
)
14284 gfc_symbol
*derived
= NULL
;
14285 gfc_actual_arglist
*param
;
14287 bool const_len_exprs
= true;
14288 bool assumed_len_exprs
= false;
14290 if (sym
->ts
.type
== BT_DERIVED
)
14291 derived
= sym
->ts
.u
.derived
;
14292 else if (sym
->ts
.type
== BT_CLASS
)
14293 derived
= CLASS_DATA (sym
)->ts
.u
.derived
;
14295 gcc_unreachable ();
14297 gcc_assert (derived
->attr
.pdt_type
);
14299 for (param
= sym
->param_list
; param
; param
= param
->next
)
14301 c
= gfc_find_component (derived
, param
->name
, false, true, NULL
);
14303 if (c
->attr
.pdt_kind
)
14306 if (param
->expr
&& !gfc_is_constant_expr (param
->expr
)
14307 && c
->attr
.pdt_len
)
14308 const_len_exprs
= false;
14309 else if (param
->spec_type
== SPEC_ASSUMED
)
14310 assumed_len_exprs
= true;
14313 if (!const_len_exprs
14314 && (sym
->ns
->proc_name
->attr
.is_main_program
14315 || sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
14316 || sym
->attr
.save
!= SAVE_NONE
))
14317 gfc_error ("The AUTOMATIC object %qs at %L must not have the "
14318 "SAVE attribute or be a variable declared in the "
14319 "main program, a module or a submodule(F08/C513)",
14320 sym
->name
, &sym
->declared_at
);
14322 if (assumed_len_exprs
&& !(sym
->attr
.dummy
14323 || sym
->attr
.select_type_temporary
|| sym
->attr
.associate_var
))
14324 gfc_error ("The object %qs at %L with ASSUMED type parameters "
14325 "must be a dummy or a SELECT TYPE selector(F08/4.2)",
14326 sym
->name
, &sym
->declared_at
);
14330 /* Do anything necessary to resolve a symbol. Right now, we just
14331 assume that an otherwise unknown symbol is a variable. This sort
14332 of thing commonly happens for symbols in module. */
14335 resolve_symbol (gfc_symbol
*sym
)
14337 int check_constant
, mp_flag
;
14338 gfc_symtree
*symtree
;
14339 gfc_symtree
*this_symtree
;
14342 symbol_attribute class_attr
;
14343 gfc_array_spec
*as
;
14344 bool saved_specification_expr
;
14350 /* No symbol will ever have union type; only components can be unions.
14351 Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
14352 (just like derived type declaration symbols have flavor FL_DERIVED). */
14353 gcc_assert (sym
->ts
.type
!= BT_UNION
);
14355 /* Coarrayed polymorphic objects with allocatable or pointer components are
14356 yet unsupported for -fcoarray=lib. */
14357 if (flag_coarray
== GFC_FCOARRAY_LIB
&& sym
->ts
.type
== BT_CLASS
14358 && sym
->ts
.u
.derived
&& CLASS_DATA (sym
)
14359 && CLASS_DATA (sym
)->attr
.codimension
14360 && (CLASS_DATA (sym
)->ts
.u
.derived
->attr
.alloc_comp
14361 || CLASS_DATA (sym
)->ts
.u
.derived
->attr
.pointer_comp
))
14363 gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
14364 "type coarrays at %L are unsupported", &sym
->declared_at
);
14368 if (sym
->attr
.artificial
)
14371 if (sym
->attr
.unlimited_polymorphic
)
14374 if (sym
->attr
.flavor
== FL_UNKNOWN
14375 || (sym
->attr
.flavor
== FL_PROCEDURE
&& !sym
->attr
.intrinsic
14376 && !sym
->attr
.generic
&& !sym
->attr
.external
14377 && sym
->attr
.if_source
== IFSRC_UNKNOWN
14378 && sym
->ts
.type
== BT_UNKNOWN
))
14381 /* If we find that a flavorless symbol is an interface in one of the
14382 parent namespaces, find its symtree in this namespace, free the
14383 symbol and set the symtree to point to the interface symbol. */
14384 for (ns
= gfc_current_ns
->parent
; ns
; ns
= ns
->parent
)
14386 symtree
= gfc_find_symtree (ns
->sym_root
, sym
->name
);
14387 if (symtree
&& (symtree
->n
.sym
->generic
||
14388 (symtree
->n
.sym
->attr
.flavor
== FL_PROCEDURE
14389 && sym
->ns
->construct_entities
)))
14391 this_symtree
= gfc_find_symtree (gfc_current_ns
->sym_root
,
14393 if (this_symtree
->n
.sym
== sym
)
14395 symtree
->n
.sym
->refs
++;
14396 gfc_release_symbol (sym
);
14397 this_symtree
->n
.sym
= symtree
->n
.sym
;
14403 /* Otherwise give it a flavor according to such attributes as
14405 if (sym
->attr
.flavor
== FL_UNKNOWN
&& sym
->attr
.external
== 0
14406 && sym
->attr
.intrinsic
== 0)
14407 sym
->attr
.flavor
= FL_VARIABLE
;
14408 else if (sym
->attr
.flavor
== FL_UNKNOWN
)
14410 sym
->attr
.flavor
= FL_PROCEDURE
;
14411 if (sym
->attr
.dimension
)
14412 sym
->attr
.function
= 1;
14416 if (sym
->attr
.external
&& sym
->ts
.type
!= BT_UNKNOWN
&& !sym
->attr
.function
)
14417 gfc_add_function (&sym
->attr
, sym
->name
, &sym
->declared_at
);
14419 if (sym
->attr
.procedure
&& sym
->attr
.if_source
!= IFSRC_DECL
14420 && !resolve_procedure_interface (sym
))
14423 if (sym
->attr
.is_protected
&& !sym
->attr
.proc_pointer
14424 && (sym
->attr
.procedure
|| sym
->attr
.external
))
14426 if (sym
->attr
.external
)
14427 gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
14428 "at %L", &sym
->declared_at
);
14430 gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
14431 "at %L", &sym
->declared_at
);
14436 if (sym
->attr
.flavor
== FL_DERIVED
&& !resolve_fl_derived (sym
))
14439 else if ((sym
->attr
.flavor
== FL_STRUCT
|| sym
->attr
.flavor
== FL_UNION
)
14440 && !resolve_fl_struct (sym
))
14443 /* Symbols that are module procedures with results (functions) have
14444 the types and array specification copied for type checking in
14445 procedures that call them, as well as for saving to a module
14446 file. These symbols can't stand the scrutiny that their results
14448 mp_flag
= (sym
->result
!= NULL
&& sym
->result
!= sym
);
14450 /* Make sure that the intrinsic is consistent with its internal
14451 representation. This needs to be done before assigning a default
14452 type to avoid spurious warnings. */
14453 if (sym
->attr
.flavor
!= FL_MODULE
&& sym
->attr
.intrinsic
14454 && !gfc_resolve_intrinsic (sym
, &sym
->declared_at
))
14457 /* Resolve associate names. */
14459 resolve_assoc_var (sym
, true);
14461 /* Assign default type to symbols that need one and don't have one. */
14462 if (sym
->ts
.type
== BT_UNKNOWN
)
14464 if (sym
->attr
.flavor
== FL_VARIABLE
|| sym
->attr
.flavor
== FL_PARAMETER
)
14466 gfc_set_default_type (sym
, 1, NULL
);
14469 if (sym
->attr
.flavor
== FL_PROCEDURE
&& sym
->attr
.external
14470 && !sym
->attr
.function
&& !sym
->attr
.subroutine
14471 && gfc_get_default_type (sym
->name
, sym
->ns
)->type
== BT_UNKNOWN
)
14472 gfc_add_subroutine (&sym
->attr
, sym
->name
, &sym
->declared_at
);
14474 if (sym
->attr
.flavor
== FL_PROCEDURE
&& sym
->attr
.function
)
14476 /* The specific case of an external procedure should emit an error
14477 in the case that there is no implicit type. */
14480 if (!sym
->attr
.mixed_entry_master
)
14481 gfc_set_default_type (sym
, sym
->attr
.external
, NULL
);
14485 /* Result may be in another namespace. */
14486 resolve_symbol (sym
->result
);
14488 if (!sym
->result
->attr
.proc_pointer
)
14490 sym
->ts
= sym
->result
->ts
;
14491 sym
->as
= gfc_copy_array_spec (sym
->result
->as
);
14492 sym
->attr
.dimension
= sym
->result
->attr
.dimension
;
14493 sym
->attr
.pointer
= sym
->result
->attr
.pointer
;
14494 sym
->attr
.allocatable
= sym
->result
->attr
.allocatable
;
14495 sym
->attr
.contiguous
= sym
->result
->attr
.contiguous
;
14500 else if (mp_flag
&& sym
->attr
.flavor
== FL_PROCEDURE
&& sym
->attr
.function
)
14502 bool saved_specification_expr
= specification_expr
;
14503 specification_expr
= true;
14504 gfc_resolve_array_spec (sym
->result
->as
, false);
14505 specification_expr
= saved_specification_expr
;
14508 if (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
)
14510 as
= CLASS_DATA (sym
)->as
;
14511 class_attr
= CLASS_DATA (sym
)->attr
;
14512 class_attr
.pointer
= class_attr
.class_pointer
;
14516 class_attr
= sym
->attr
;
14521 if (sym
->attr
.contiguous
14522 && (!class_attr
.dimension
14523 || (as
->type
!= AS_ASSUMED_SHAPE
&& as
->type
!= AS_ASSUMED_RANK
14524 && !class_attr
.pointer
)))
14526 gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
14527 "array pointer or an assumed-shape or assumed-rank array",
14528 sym
->name
, &sym
->declared_at
);
14532 /* Assumed size arrays and assumed shape arrays must be dummy
14533 arguments. Array-spec's of implied-shape should have been resolved to
14534 AS_EXPLICIT already. */
14538 /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
14539 specification expression. */
14540 if (as
->type
== AS_IMPLIED_SHAPE
)
14543 for (i
=0; i
<as
->rank
; i
++)
14545 if (as
->lower
[i
] != NULL
&& as
->upper
[i
] == NULL
)
14547 gfc_error ("Bad specification for assumed size array at %L",
14548 &as
->lower
[i
]->where
);
14555 if (((as
->type
== AS_ASSUMED_SIZE
&& !as
->cp_was_assumed
)
14556 || as
->type
== AS_ASSUMED_SHAPE
)
14557 && !sym
->attr
.dummy
&& !sym
->attr
.select_type_temporary
)
14559 if (as
->type
== AS_ASSUMED_SIZE
)
14560 gfc_error ("Assumed size array at %L must be a dummy argument",
14561 &sym
->declared_at
);
14563 gfc_error ("Assumed shape array at %L must be a dummy argument",
14564 &sym
->declared_at
);
14567 /* TS 29113, C535a. */
14568 if (as
->type
== AS_ASSUMED_RANK
&& !sym
->attr
.dummy
14569 && !sym
->attr
.select_type_temporary
)
14571 gfc_error ("Assumed-rank array at %L must be a dummy argument",
14572 &sym
->declared_at
);
14575 if (as
->type
== AS_ASSUMED_RANK
14576 && (sym
->attr
.codimension
|| sym
->attr
.value
))
14578 gfc_error ("Assumed-rank array at %L may not have the VALUE or "
14579 "CODIMENSION attribute", &sym
->declared_at
);
14584 /* Make sure symbols with known intent or optional are really dummy
14585 variable. Because of ENTRY statement, this has to be deferred
14586 until resolution time. */
14588 if (!sym
->attr
.dummy
14589 && (sym
->attr
.optional
|| sym
->attr
.intent
!= INTENT_UNKNOWN
))
14591 gfc_error ("Symbol at %L is not a DUMMY variable", &sym
->declared_at
);
14595 if (sym
->attr
.value
&& !sym
->attr
.dummy
)
14597 gfc_error ("%qs at %L cannot have the VALUE attribute because "
14598 "it is not a dummy argument", sym
->name
, &sym
->declared_at
);
14602 if (sym
->attr
.value
&& sym
->ts
.type
== BT_CHARACTER
)
14604 gfc_charlen
*cl
= sym
->ts
.u
.cl
;
14605 if (!cl
|| !cl
->length
|| cl
->length
->expr_type
!= EXPR_CONSTANT
)
14607 gfc_error ("Character dummy variable %qs at %L with VALUE "
14608 "attribute must have constant length",
14609 sym
->name
, &sym
->declared_at
);
14613 if (sym
->ts
.is_c_interop
14614 && mpz_cmp_si (cl
->length
->value
.integer
, 1) != 0)
14616 gfc_error ("C interoperable character dummy variable %qs at %L "
14617 "with VALUE attribute must have length one",
14618 sym
->name
, &sym
->declared_at
);
14623 if (sym
->ts
.type
== BT_DERIVED
&& !sym
->attr
.is_iso_c
14624 && sym
->ts
.u
.derived
->attr
.generic
)
14626 sym
->ts
.u
.derived
= gfc_find_dt_in_generic (sym
->ts
.u
.derived
);
14627 if (!sym
->ts
.u
.derived
)
14629 gfc_error ("The derived type %qs at %L is of type %qs, "
14630 "which has not been defined", sym
->name
,
14631 &sym
->declared_at
, sym
->ts
.u
.derived
->name
);
14632 sym
->ts
.type
= BT_UNKNOWN
;
14637 /* Use the same constraints as TYPE(*), except for the type check
14638 and that only scalars and assumed-size arrays are permitted. */
14639 if (sym
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
))
14641 if (!sym
->attr
.dummy
)
14643 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14644 "a dummy argument", sym
->name
, &sym
->declared_at
);
14648 if (sym
->ts
.type
!= BT_ASSUMED
&& sym
->ts
.type
!= BT_INTEGER
14649 && sym
->ts
.type
!= BT_REAL
&& sym
->ts
.type
!= BT_LOGICAL
14650 && sym
->ts
.type
!= BT_COMPLEX
)
14652 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
14653 "of type TYPE(*) or of an numeric intrinsic type",
14654 sym
->name
, &sym
->declared_at
);
14658 if (sym
->attr
.allocatable
|| sym
->attr
.codimension
14659 || sym
->attr
.pointer
|| sym
->attr
.value
)
14661 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14662 "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
14663 "attribute", sym
->name
, &sym
->declared_at
);
14667 if (sym
->attr
.intent
== INTENT_OUT
)
14669 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
14670 "have the INTENT(OUT) attribute",
14671 sym
->name
, &sym
->declared_at
);
14674 if (sym
->attr
.dimension
&& sym
->as
->type
!= AS_ASSUMED_SIZE
)
14676 gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
14677 "either be a scalar or an assumed-size array",
14678 sym
->name
, &sym
->declared_at
);
14682 /* Set the type to TYPE(*) and add a dimension(*) to ensure
14683 NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
14685 sym
->ts
.type
= BT_ASSUMED
;
14686 sym
->as
= gfc_get_array_spec ();
14687 sym
->as
->type
= AS_ASSUMED_SIZE
;
14689 sym
->as
->lower
[0] = gfc_get_int_expr (gfc_default_integer_kind
, NULL
, 1);
14691 else if (sym
->ts
.type
== BT_ASSUMED
)
14693 /* TS 29113, C407a. */
14694 if (!sym
->attr
.dummy
)
14696 gfc_error ("Assumed type of variable %s at %L is only permitted "
14697 "for dummy variables", sym
->name
, &sym
->declared_at
);
14700 if (sym
->attr
.allocatable
|| sym
->attr
.codimension
14701 || sym
->attr
.pointer
|| sym
->attr
.value
)
14703 gfc_error ("Assumed-type variable %s at %L may not have the "
14704 "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
14705 sym
->name
, &sym
->declared_at
);
14708 if (sym
->attr
.intent
== INTENT_OUT
)
14710 gfc_error ("Assumed-type variable %s at %L may not have the "
14711 "INTENT(OUT) attribute",
14712 sym
->name
, &sym
->declared_at
);
14715 if (sym
->attr
.dimension
&& sym
->as
->type
== AS_EXPLICIT
)
14717 gfc_error ("Assumed-type variable %s at %L shall not be an "
14718 "explicit-shape array", sym
->name
, &sym
->declared_at
);
14723 /* If the symbol is marked as bind(c), that it is declared at module level
14724 scope and verify its type and kind. Do not do the latter for symbols
14725 that are implicitly typed because that is handled in
14726 gfc_set_default_type. Handle dummy arguments and procedure definitions
14727 separately. Also, anything that is use associated is not handled here
14728 but instead is handled in the module it is declared in. Finally, derived
14729 type definitions are allowed to be BIND(C) since that only implies that
14730 they're interoperable, and they are checked fully for interoperability
14731 when a variable is declared of that type. */
14732 if (sym
->attr
.is_bind_c
&& sym
->attr
.use_assoc
== 0
14733 && sym
->attr
.dummy
== 0 && sym
->attr
.flavor
!= FL_PROCEDURE
14734 && sym
->attr
.flavor
!= FL_DERIVED
)
14738 /* First, make sure the variable is declared at the
14739 module-level scope (J3/04-007, Section 15.3). */
14740 if (sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
&&
14741 sym
->attr
.in_common
== 0)
14743 gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
14744 "is neither a COMMON block nor declared at the "
14745 "module level scope", sym
->name
, &(sym
->declared_at
));
14748 else if (sym
->common_head
!= NULL
&& sym
->attr
.implicit_type
== 0)
14750 t
= verify_com_block_vars_c_interop (sym
->common_head
);
14752 else if (sym
->attr
.implicit_type
== 0)
14754 /* If type() declaration, we need to verify that the components
14755 of the given type are all C interoperable, etc. */
14756 if (sym
->ts
.type
== BT_DERIVED
&&
14757 sym
->ts
.u
.derived
->attr
.is_c_interop
!= 1)
14759 /* Make sure the user marked the derived type as BIND(C). If
14760 not, call the verify routine. This could print an error
14761 for the derived type more than once if multiple variables
14762 of that type are declared. */
14763 if (sym
->ts
.u
.derived
->attr
.is_bind_c
!= 1)
14764 verify_bind_c_derived_type (sym
->ts
.u
.derived
);
14768 /* Verify the variable itself as C interoperable if it
14769 is BIND(C). It is not possible for this to succeed if
14770 the verify_bind_c_derived_type failed, so don't have to handle
14771 any error returned by verify_bind_c_derived_type. */
14772 t
= verify_bind_c_sym (sym
, &(sym
->ts
), sym
->attr
.in_common
,
14773 sym
->common_block
);
14778 /* clear the is_bind_c flag to prevent reporting errors more than
14779 once if something failed. */
14780 sym
->attr
.is_bind_c
= 0;
14785 /* If a derived type symbol has reached this point, without its
14786 type being declared, we have an error. Notice that most
14787 conditions that produce undefined derived types have already
14788 been dealt with. However, the likes of:
14789 implicit type(t) (t) ..... call foo (t) will get us here if
14790 the type is not declared in the scope of the implicit
14791 statement. Change the type to BT_UNKNOWN, both because it is so
14792 and to prevent an ICE. */
14793 if (sym
->ts
.type
== BT_DERIVED
&& !sym
->attr
.is_iso_c
14794 && sym
->ts
.u
.derived
->components
== NULL
14795 && !sym
->ts
.u
.derived
->attr
.zero_comp
)
14797 gfc_error ("The derived type %qs at %L is of type %qs, "
14798 "which has not been defined", sym
->name
,
14799 &sym
->declared_at
, sym
->ts
.u
.derived
->name
);
14800 sym
->ts
.type
= BT_UNKNOWN
;
14804 /* Make sure that the derived type has been resolved and that the
14805 derived type is visible in the symbol's namespace, if it is a
14806 module function and is not PRIVATE. */
14807 if (sym
->ts
.type
== BT_DERIVED
14808 && sym
->ts
.u
.derived
->attr
.use_assoc
14809 && sym
->ns
->proc_name
14810 && sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
14811 && !resolve_fl_derived (sym
->ts
.u
.derived
))
14814 /* Unless the derived-type declaration is use associated, Fortran 95
14815 does not allow public entries of private derived types.
14816 See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
14817 161 in 95-006r3. */
14818 if (sym
->ts
.type
== BT_DERIVED
14819 && sym
->ns
->proc_name
&& sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
14820 && !sym
->ts
.u
.derived
->attr
.use_assoc
14821 && gfc_check_symbol_access (sym
)
14822 && !gfc_check_symbol_access (sym
->ts
.u
.derived
)
14823 && !gfc_notify_std (GFC_STD_F2003
, "PUBLIC %s %qs at %L of PRIVATE "
14824 "derived type %qs",
14825 (sym
->attr
.flavor
== FL_PARAMETER
)
14826 ? "parameter" : "variable",
14827 sym
->name
, &sym
->declared_at
,
14828 sym
->ts
.u
.derived
->name
))
14831 /* F2008, C1302. */
14832 if (sym
->ts
.type
== BT_DERIVED
14833 && ((sym
->ts
.u
.derived
->from_intmod
== INTMOD_ISO_FORTRAN_ENV
14834 && sym
->ts
.u
.derived
->intmod_sym_id
== ISOFORTRAN_LOCK_TYPE
)
14835 || sym
->ts
.u
.derived
->attr
.lock_comp
)
14836 && !sym
->attr
.codimension
&& !sym
->ts
.u
.derived
->attr
.coarray_comp
)
14838 gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
14839 "type LOCK_TYPE must be a coarray", sym
->name
,
14840 &sym
->declared_at
);
14844 /* TS18508, C702/C703. */
14845 if (sym
->ts
.type
== BT_DERIVED
14846 && ((sym
->ts
.u
.derived
->from_intmod
== INTMOD_ISO_FORTRAN_ENV
14847 && sym
->ts
.u
.derived
->intmod_sym_id
== ISOFORTRAN_EVENT_TYPE
)
14848 || sym
->ts
.u
.derived
->attr
.event_comp
)
14849 && !sym
->attr
.codimension
&& !sym
->ts
.u
.derived
->attr
.coarray_comp
)
14851 gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
14852 "type EVENT_TYPE must be a coarray", sym
->name
,
14853 &sym
->declared_at
);
14857 /* An assumed-size array with INTENT(OUT) shall not be of a type for which
14858 default initialization is defined (5.1.2.4.4). */
14859 if (sym
->ts
.type
== BT_DERIVED
14861 && sym
->attr
.intent
== INTENT_OUT
14863 && sym
->as
->type
== AS_ASSUMED_SIZE
)
14865 for (c
= sym
->ts
.u
.derived
->components
; c
; c
= c
->next
)
14867 if (c
->initializer
)
14869 gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
14870 "ASSUMED SIZE and so cannot have a default initializer",
14871 sym
->name
, &sym
->declared_at
);
14878 if (sym
->ts
.type
== BT_DERIVED
&& sym
->attr
.dummy
14879 && sym
->attr
.intent
== INTENT_OUT
&& sym
->attr
.lock_comp
)
14881 gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
14882 "INTENT(OUT)", sym
->name
, &sym
->declared_at
);
14887 if (sym
->ts
.type
== BT_DERIVED
&& sym
->attr
.dummy
14888 && sym
->attr
.intent
== INTENT_OUT
&& sym
->attr
.event_comp
)
14890 gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
14891 "INTENT(OUT)", sym
->name
, &sym
->declared_at
);
14896 if ((((sym
->ts
.type
== BT_DERIVED
&& sym
->ts
.u
.derived
->attr
.coarray_comp
)
14897 || (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
14898 && CLASS_DATA (sym
)->attr
.coarray_comp
))
14899 || class_attr
.codimension
)
14900 && (sym
->attr
.result
|| sym
->result
== sym
))
14902 gfc_error ("Function result %qs at %L shall not be a coarray or have "
14903 "a coarray component", sym
->name
, &sym
->declared_at
);
14908 if (sym
->attr
.codimension
&& sym
->ts
.type
== BT_DERIVED
14909 && sym
->ts
.u
.derived
->ts
.is_iso_c
)
14911 gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
14912 "shall not be a coarray", sym
->name
, &sym
->declared_at
);
14917 if (((sym
->ts
.type
== BT_DERIVED
&& sym
->ts
.u
.derived
->attr
.coarray_comp
)
14918 || (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
14919 && CLASS_DATA (sym
)->attr
.coarray_comp
))
14920 && (class_attr
.codimension
|| class_attr
.pointer
|| class_attr
.dimension
14921 || class_attr
.allocatable
))
14923 gfc_error ("Variable %qs at %L with coarray component shall be a "
14924 "nonpointer, nonallocatable scalar, which is not a coarray",
14925 sym
->name
, &sym
->declared_at
);
14929 /* F2008, C526. The function-result case was handled above. */
14930 if (class_attr
.codimension
14931 && !(class_attr
.allocatable
|| sym
->attr
.dummy
|| sym
->attr
.save
14932 || sym
->attr
.select_type_temporary
14933 || sym
->attr
.associate_var
14934 || (sym
->ns
->save_all
&& !sym
->attr
.automatic
)
14935 || sym
->ns
->proc_name
->attr
.flavor
== FL_MODULE
14936 || sym
->ns
->proc_name
->attr
.is_main_program
14937 || sym
->attr
.function
|| sym
->attr
.result
|| sym
->attr
.use_assoc
))
14939 gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
14940 "nor a dummy argument", sym
->name
, &sym
->declared_at
);
14944 else if (class_attr
.codimension
&& !sym
->attr
.select_type_temporary
14945 && !class_attr
.allocatable
&& as
&& as
->cotype
== AS_DEFERRED
)
14947 gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
14948 "deferred shape", sym
->name
, &sym
->declared_at
);
14951 else if (class_attr
.codimension
&& class_attr
.allocatable
&& as
14952 && (as
->cotype
!= AS_DEFERRED
|| as
->type
!= AS_DEFERRED
))
14954 gfc_error ("Allocatable coarray variable %qs at %L must have "
14955 "deferred shape", sym
->name
, &sym
->declared_at
);
14960 if ((((sym
->ts
.type
== BT_DERIVED
&& sym
->ts
.u
.derived
->attr
.coarray_comp
)
14961 || (sym
->ts
.type
== BT_CLASS
&& sym
->attr
.class_ok
14962 && CLASS_DATA (sym
)->attr
.coarray_comp
))
14963 || (class_attr
.codimension
&& class_attr
.allocatable
))
14964 && sym
->attr
.dummy
&& sym
->attr
.intent
== INTENT_OUT
)
14966 gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
14967 "allocatable coarray or have coarray components",
14968 sym
->name
, &sym
->declared_at
);
14972 if (class_attr
.codimension
&& sym
->attr
.dummy
14973 && sym
->ns
->proc_name
&& sym
->ns
->proc_name
->attr
.is_bind_c
)
14975 gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
14976 "procedure %qs", sym
->name
, &sym
->declared_at
,
14977 sym
->ns
->proc_name
->name
);
14981 if (sym
->ts
.type
== BT_LOGICAL
14982 && ((sym
->attr
.function
&& sym
->attr
.is_bind_c
&& sym
->result
== sym
)
14983 || ((sym
->attr
.dummy
|| sym
->attr
.result
) && sym
->ns
->proc_name
14984 && sym
->ns
->proc_name
->attr
.is_bind_c
)))
14987 for (i
= 0; gfc_logical_kinds
[i
].kind
; i
++)
14988 if (gfc_logical_kinds
[i
].kind
== sym
->ts
.kind
)
14990 if (!gfc_logical_kinds
[i
].c_bool
&& sym
->attr
.dummy
14991 && !gfc_notify_std (GFC_STD_GNU
, "LOGICAL dummy argument %qs at "
14992 "%L with non-C_Bool kind in BIND(C) procedure "
14993 "%qs", sym
->name
, &sym
->declared_at
,
14994 sym
->ns
->proc_name
->name
))
14996 else if (!gfc_logical_kinds
[i
].c_bool
14997 && !gfc_notify_std (GFC_STD_GNU
, "LOGICAL result variable "
14998 "%qs at %L with non-C_Bool kind in "
14999 "BIND(C) procedure %qs", sym
->name
,
15001 sym
->attr
.function
? sym
->name
15002 : sym
->ns
->proc_name
->name
))
15006 switch (sym
->attr
.flavor
)
15009 if (!resolve_fl_variable (sym
, mp_flag
))
15014 if (sym
->formal
&& !sym
->formal_ns
)
15016 /* Check that none of the arguments are a namelist. */
15017 gfc_formal_arglist
*formal
= sym
->formal
;
15019 for (; formal
; formal
= formal
->next
)
15020 if (formal
->sym
&& formal
->sym
->attr
.flavor
== FL_NAMELIST
)
15022 gfc_error ("Namelist %qs can not be an argument to "
15023 "subroutine or function at %L",
15024 formal
->sym
->name
, &sym
->declared_at
);
15029 if (!resolve_fl_procedure (sym
, mp_flag
))
15034 if (!resolve_fl_namelist (sym
))
15039 if (!resolve_fl_parameter (sym
))
15047 /* Resolve array specifier. Check as well some constraints
15048 on COMMON blocks. */
15050 check_constant
= sym
->attr
.in_common
&& !sym
->attr
.pointer
;
15052 /* Set the formal_arg_flag so that check_conflict will not throw
15053 an error for host associated variables in the specification
15054 expression for an array_valued function. */
15055 if (sym
->attr
.function
&& sym
->as
)
15056 formal_arg_flag
= true;
15058 saved_specification_expr
= specification_expr
;
15059 specification_expr
= true;
15060 gfc_resolve_array_spec (sym
->as
, check_constant
);
15061 specification_expr
= saved_specification_expr
;
15063 formal_arg_flag
= false;
15065 /* Resolve formal namespaces. */
15066 if (sym
->formal_ns
&& sym
->formal_ns
!= gfc_current_ns
15067 && !sym
->attr
.contained
&& !sym
->attr
.intrinsic
)
15068 gfc_resolve (sym
->formal_ns
);
15070 /* Make sure the formal namespace is present. */
15071 if (sym
->formal
&& !sym
->formal_ns
)
15073 gfc_formal_arglist
*formal
= sym
->formal
;
15074 while (formal
&& !formal
->sym
)
15075 formal
= formal
->next
;
15079 sym
->formal_ns
= formal
->sym
->ns
;
15080 if (sym
->ns
!= formal
->sym
->ns
)
15081 sym
->formal_ns
->refs
++;
15085 /* Check threadprivate restrictions. */
15086 if (sym
->attr
.threadprivate
&& !sym
->attr
.save
15087 && !(sym
->ns
->save_all
&& !sym
->attr
.automatic
)
15088 && (!sym
->attr
.in_common
15089 && sym
->module
== NULL
15090 && (sym
->ns
->proc_name
== NULL
15091 || sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
)))
15092 gfc_error ("Threadprivate at %L isn't SAVEd", &sym
->declared_at
);
15094 /* Check omp declare target restrictions. */
15095 if (sym
->attr
.omp_declare_target
15096 && sym
->attr
.flavor
== FL_VARIABLE
15098 && !(sym
->ns
->save_all
&& !sym
->attr
.automatic
)
15099 && (!sym
->attr
.in_common
15100 && sym
->module
== NULL
15101 && (sym
->ns
->proc_name
== NULL
15102 || sym
->ns
->proc_name
->attr
.flavor
!= FL_MODULE
)))
15103 gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
15104 sym
->name
, &sym
->declared_at
);
15106 /* If we have come this far we can apply default-initializers, as
15107 described in 14.7.5, to those variables that have not already
15108 been assigned one. */
15109 if (sym
->ts
.type
== BT_DERIVED
15111 && !sym
->attr
.allocatable
15112 && !sym
->attr
.alloc_comp
)
15114 symbol_attribute
*a
= &sym
->attr
;
15116 if ((!a
->save
&& !a
->dummy
&& !a
->pointer
15117 && !a
->in_common
&& !a
->use_assoc
15119 && !((a
->function
|| a
->result
)
15121 || sym
->ts
.u
.derived
->attr
.alloc_comp
15122 || sym
->ts
.u
.derived
->attr
.pointer_comp
))
15123 && !(a
->function
&& sym
!= sym
->result
))
15124 || (a
->dummy
&& a
->intent
== INTENT_OUT
&& !a
->pointer
))
15125 apply_default_init (sym
);
15126 else if (a
->function
&& sym
->result
&& a
->access
!= ACCESS_PRIVATE
15127 && (sym
->ts
.u
.derived
->attr
.alloc_comp
15128 || sym
->ts
.u
.derived
->attr
.pointer_comp
))
15129 /* Mark the result symbol to be referenced, when it has allocatable
15131 sym
->result
->attr
.referenced
= 1;
15134 if (sym
->ts
.type
== BT_CLASS
&& sym
->ns
== gfc_current_ns
15135 && sym
->attr
.dummy
&& sym
->attr
.intent
== INTENT_OUT
15136 && !CLASS_DATA (sym
)->attr
.class_pointer
15137 && !CLASS_DATA (sym
)->attr
.allocatable
)
15138 apply_default_init (sym
);
15140 /* If this symbol has a type-spec, check it. */
15141 if (sym
->attr
.flavor
== FL_VARIABLE
|| sym
->attr
.flavor
== FL_PARAMETER
15142 || (sym
->attr
.flavor
== FL_PROCEDURE
&& sym
->attr
.function
))
15143 if (!resolve_typespec_used (&sym
->ts
, &sym
->declared_at
, sym
->name
))
15146 if (sym
->param_list
)
15151 /************* Resolve DATA statements *************/
15155 gfc_data_value
*vnode
;
15161 /* Advance the values structure to point to the next value in the data list. */
15164 next_data_value (void)
15166 while (mpz_cmp_ui (values
.left
, 0) == 0)
15169 if (values
.vnode
->next
== NULL
)
15172 values
.vnode
= values
.vnode
->next
;
15173 mpz_set (values
.left
, values
.vnode
->repeat
);
15181 check_data_variable (gfc_data_variable
*var
, locus
*where
)
15187 ar_type mark
= AR_UNKNOWN
;
15189 mpz_t section_index
[GFC_MAX_DIMENSIONS
];
15195 if (!gfc_resolve_expr (var
->expr
))
15199 mpz_init_set_si (offset
, 0);
15202 if (e
->expr_type
== EXPR_FUNCTION
&& e
->value
.function
.isym
15203 && e
->value
.function
.isym
->id
== GFC_ISYM_CAF_GET
)
15204 e
= e
->value
.function
.actual
->expr
;
15206 if (e
->expr_type
!= EXPR_VARIABLE
)
15207 gfc_internal_error ("check_data_variable(): Bad expression");
15209 sym
= e
->symtree
->n
.sym
;
15211 if (sym
->ns
->is_block_data
&& !sym
->attr
.in_common
)
15213 gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
15214 sym
->name
, &sym
->declared_at
);
15217 if (e
->ref
== NULL
&& sym
->as
)
15219 gfc_error ("DATA array %qs at %L must be specified in a previous"
15220 " declaration", sym
->name
, where
);
15224 has_pointer
= sym
->attr
.pointer
;
15226 if (gfc_is_coindexed (e
))
15228 gfc_error ("DATA element %qs at %L cannot have a coindex", sym
->name
,
15233 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
15235 if (ref
->type
== REF_COMPONENT
&& ref
->u
.c
.component
->attr
.pointer
)
15239 && ref
->type
== REF_ARRAY
15240 && ref
->u
.ar
.type
!= AR_FULL
)
15242 gfc_error ("DATA element %qs at %L is a pointer and so must "
15243 "be a full array", sym
->name
, where
);
15248 if (e
->rank
== 0 || has_pointer
)
15250 mpz_init_set_ui (size
, 1);
15257 /* Find the array section reference. */
15258 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
15260 if (ref
->type
!= REF_ARRAY
)
15262 if (ref
->u
.ar
.type
== AR_ELEMENT
)
15268 /* Set marks according to the reference pattern. */
15269 switch (ref
->u
.ar
.type
)
15277 /* Get the start position of array section. */
15278 gfc_get_section_index (ar
, section_index
, &offset
);
15283 gcc_unreachable ();
15286 if (!gfc_array_size (e
, &size
))
15288 gfc_error ("Nonconstant array section at %L in DATA statement",
15290 mpz_clear (offset
);
15297 while (mpz_cmp_ui (size
, 0) > 0)
15299 if (!next_data_value ())
15301 gfc_error ("DATA statement at %L has more variables than values",
15307 t
= gfc_check_assign (var
->expr
, values
.vnode
->expr
, 0);
15311 /* If we have more than one element left in the repeat count,
15312 and we have more than one element left in the target variable,
15313 then create a range assignment. */
15314 /* FIXME: Only done for full arrays for now, since array sections
15316 if (mark
== AR_FULL
&& ref
&& ref
->next
== NULL
15317 && mpz_cmp_ui (values
.left
, 1) > 0 && mpz_cmp_ui (size
, 1) > 0)
15321 if (mpz_cmp (size
, values
.left
) >= 0)
15323 mpz_init_set (range
, values
.left
);
15324 mpz_sub (size
, size
, values
.left
);
15325 mpz_set_ui (values
.left
, 0);
15329 mpz_init_set (range
, size
);
15330 mpz_sub (values
.left
, values
.left
, size
);
15331 mpz_set_ui (size
, 0);
15334 t
= gfc_assign_data_value (var
->expr
, values
.vnode
->expr
,
15337 mpz_add (offset
, offset
, range
);
15344 /* Assign initial value to symbol. */
15347 mpz_sub_ui (values
.left
, values
.left
, 1);
15348 mpz_sub_ui (size
, size
, 1);
15350 t
= gfc_assign_data_value (var
->expr
, values
.vnode
->expr
,
15355 if (mark
== AR_FULL
)
15356 mpz_add_ui (offset
, offset
, 1);
15358 /* Modify the array section indexes and recalculate the offset
15359 for next element. */
15360 else if (mark
== AR_SECTION
)
15361 gfc_advance_section (section_index
, ar
, &offset
);
15365 if (mark
== AR_SECTION
)
15367 for (i
= 0; i
< ar
->dimen
; i
++)
15368 mpz_clear (section_index
[i
]);
15372 mpz_clear (offset
);
15378 static bool traverse_data_var (gfc_data_variable
*, locus
*);
15380 /* Iterate over a list of elements in a DATA statement. */
15383 traverse_data_list (gfc_data_variable
*var
, locus
*where
)
15386 iterator_stack frame
;
15387 gfc_expr
*e
, *start
, *end
, *step
;
15388 bool retval
= true;
15390 mpz_init (frame
.value
);
15393 start
= gfc_copy_expr (var
->iter
.start
);
15394 end
= gfc_copy_expr (var
->iter
.end
);
15395 step
= gfc_copy_expr (var
->iter
.step
);
15397 if (!gfc_simplify_expr (start
, 1)
15398 || start
->expr_type
!= EXPR_CONSTANT
)
15400 gfc_error ("start of implied-do loop at %L could not be "
15401 "simplified to a constant value", &start
->where
);
15405 if (!gfc_simplify_expr (end
, 1)
15406 || end
->expr_type
!= EXPR_CONSTANT
)
15408 gfc_error ("end of implied-do loop at %L could not be "
15409 "simplified to a constant value", &start
->where
);
15413 if (!gfc_simplify_expr (step
, 1)
15414 || step
->expr_type
!= EXPR_CONSTANT
)
15416 gfc_error ("step of implied-do loop at %L could not be "
15417 "simplified to a constant value", &start
->where
);
15422 mpz_set (trip
, end
->value
.integer
);
15423 mpz_sub (trip
, trip
, start
->value
.integer
);
15424 mpz_add (trip
, trip
, step
->value
.integer
);
15426 mpz_div (trip
, trip
, step
->value
.integer
);
15428 mpz_set (frame
.value
, start
->value
.integer
);
15430 frame
.prev
= iter_stack
;
15431 frame
.variable
= var
->iter
.var
->symtree
;
15432 iter_stack
= &frame
;
15434 while (mpz_cmp_ui (trip
, 0) > 0)
15436 if (!traverse_data_var (var
->list
, where
))
15442 e
= gfc_copy_expr (var
->expr
);
15443 if (!gfc_simplify_expr (e
, 1))
15450 mpz_add (frame
.value
, frame
.value
, step
->value
.integer
);
15452 mpz_sub_ui (trip
, trip
, 1);
15456 mpz_clear (frame
.value
);
15459 gfc_free_expr (start
);
15460 gfc_free_expr (end
);
15461 gfc_free_expr (step
);
15463 iter_stack
= frame
.prev
;
15468 /* Type resolve variables in the variable list of a DATA statement. */
15471 traverse_data_var (gfc_data_variable
*var
, locus
*where
)
15475 for (; var
; var
= var
->next
)
15477 if (var
->expr
== NULL
)
15478 t
= traverse_data_list (var
, where
);
15480 t
= check_data_variable (var
, where
);
15490 /* Resolve the expressions and iterators associated with a data statement.
15491 This is separate from the assignment checking because data lists should
15492 only be resolved once. */
15495 resolve_data_variables (gfc_data_variable
*d
)
15497 for (; d
; d
= d
->next
)
15499 if (d
->list
== NULL
)
15501 if (!gfc_resolve_expr (d
->expr
))
15506 if (!gfc_resolve_iterator (&d
->iter
, false, true))
15509 if (!resolve_data_variables (d
->list
))
15518 /* Resolve a single DATA statement. We implement this by storing a pointer to
15519 the value list into static variables, and then recursively traversing the
15520 variables list, expanding iterators and such. */
15523 resolve_data (gfc_data
*d
)
15526 if (!resolve_data_variables (d
->var
))
15529 values
.vnode
= d
->value
;
15530 if (d
->value
== NULL
)
15531 mpz_set_ui (values
.left
, 0);
15533 mpz_set (values
.left
, d
->value
->repeat
);
15535 if (!traverse_data_var (d
->var
, &d
->where
))
15538 /* At this point, we better not have any values left. */
15540 if (next_data_value ())
15541 gfc_error ("DATA statement at %L has more values than variables",
15546 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
15547 accessed by host or use association, is a dummy argument to a pure function,
15548 is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
15549 is storage associated with any such variable, shall not be used in the
15550 following contexts: (clients of this function). */
15552 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
15553 procedure. Returns zero if assignment is OK, nonzero if there is a
15556 gfc_impure_variable (gfc_symbol
*sym
)
15561 if (sym
->attr
.use_assoc
|| sym
->attr
.in_common
)
15564 /* Check if the symbol's ns is inside the pure procedure. */
15565 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
15569 if (ns
->proc_name
->attr
.flavor
== FL_PROCEDURE
&& !sym
->attr
.function
)
15573 proc
= sym
->ns
->proc_name
;
15574 if (sym
->attr
.dummy
15575 && ((proc
->attr
.subroutine
&& sym
->attr
.intent
== INTENT_IN
)
15576 || proc
->attr
.function
))
15579 /* TODO: Sort out what can be storage associated, if anything, and include
15580 it here. In principle equivalences should be scanned but it does not
15581 seem to be possible to storage associate an impure variable this way. */
15586 /* Test whether a symbol is pure or not. For a NULL pointer, checks if the
15587 current namespace is inside a pure procedure. */
15590 gfc_pure (gfc_symbol
*sym
)
15592 symbol_attribute attr
;
15597 /* Check if the current namespace or one of its parents
15598 belongs to a pure procedure. */
15599 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
15601 sym
= ns
->proc_name
;
15605 if (attr
.flavor
== FL_PROCEDURE
&& attr
.pure
)
15613 return attr
.flavor
== FL_PROCEDURE
&& attr
.pure
;
15617 /* Test whether a symbol is implicitly pure or not. For a NULL pointer,
15618 checks if the current namespace is implicitly pure. Note that this
15619 function returns false for a PURE procedure. */
15622 gfc_implicit_pure (gfc_symbol
*sym
)
15628 /* Check if the current procedure is implicit_pure. Walk up
15629 the procedure list until we find a procedure. */
15630 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
15632 sym
= ns
->proc_name
;
15636 if (sym
->attr
.flavor
== FL_PROCEDURE
)
15641 return sym
->attr
.flavor
== FL_PROCEDURE
&& sym
->attr
.implicit_pure
15642 && !sym
->attr
.pure
;
15647 gfc_unset_implicit_pure (gfc_symbol
*sym
)
15653 /* Check if the current procedure is implicit_pure. Walk up
15654 the procedure list until we find a procedure. */
15655 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
15657 sym
= ns
->proc_name
;
15661 if (sym
->attr
.flavor
== FL_PROCEDURE
)
15666 if (sym
->attr
.flavor
== FL_PROCEDURE
)
15667 sym
->attr
.implicit_pure
= 0;
15669 sym
->attr
.pure
= 0;
15673 /* Test whether the current procedure is elemental or not. */
15676 gfc_elemental (gfc_symbol
*sym
)
15678 symbol_attribute attr
;
15681 sym
= gfc_current_ns
->proc_name
;
15686 return attr
.flavor
== FL_PROCEDURE
&& attr
.elemental
;
15690 /* Warn about unused labels. */
15693 warn_unused_fortran_label (gfc_st_label
*label
)
15698 warn_unused_fortran_label (label
->left
);
15700 if (label
->defined
== ST_LABEL_UNKNOWN
)
15703 switch (label
->referenced
)
15705 case ST_LABEL_UNKNOWN
:
15706 gfc_warning (OPT_Wunused_label
, "Label %d at %L defined but not used",
15707 label
->value
, &label
->where
);
15710 case ST_LABEL_BAD_TARGET
:
15711 gfc_warning (OPT_Wunused_label
,
15712 "Label %d at %L defined but cannot be used",
15713 label
->value
, &label
->where
);
15720 warn_unused_fortran_label (label
->right
);
15724 /* Returns the sequence type of a symbol or sequence. */
15727 sequence_type (gfc_typespec ts
)
15736 if (ts
.u
.derived
->components
== NULL
)
15737 return SEQ_NONDEFAULT
;
15739 result
= sequence_type (ts
.u
.derived
->components
->ts
);
15740 for (c
= ts
.u
.derived
->components
->next
; c
; c
= c
->next
)
15741 if (sequence_type (c
->ts
) != result
)
15747 if (ts
.kind
!= gfc_default_character_kind
)
15748 return SEQ_NONDEFAULT
;
15750 return SEQ_CHARACTER
;
15753 if (ts
.kind
!= gfc_default_integer_kind
)
15754 return SEQ_NONDEFAULT
;
15756 return SEQ_NUMERIC
;
15759 if (!(ts
.kind
== gfc_default_real_kind
15760 || ts
.kind
== gfc_default_double_kind
))
15761 return SEQ_NONDEFAULT
;
15763 return SEQ_NUMERIC
;
15766 if (ts
.kind
!= gfc_default_complex_kind
)
15767 return SEQ_NONDEFAULT
;
15769 return SEQ_NUMERIC
;
15772 if (ts
.kind
!= gfc_default_logical_kind
)
15773 return SEQ_NONDEFAULT
;
15775 return SEQ_NUMERIC
;
15778 return SEQ_NONDEFAULT
;
15783 /* Resolve derived type EQUIVALENCE object. */
15786 resolve_equivalence_derived (gfc_symbol
*derived
, gfc_symbol
*sym
, gfc_expr
*e
)
15788 gfc_component
*c
= derived
->components
;
15793 /* Shall not be an object of nonsequence derived type. */
15794 if (!derived
->attr
.sequence
)
15796 gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
15797 "attribute to be an EQUIVALENCE object", sym
->name
,
15802 /* Shall not have allocatable components. */
15803 if (derived
->attr
.alloc_comp
)
15805 gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
15806 "components to be an EQUIVALENCE object",sym
->name
,
15811 if (sym
->attr
.in_common
&& gfc_has_default_initializer (sym
->ts
.u
.derived
))
15813 gfc_error ("Derived type variable %qs at %L with default "
15814 "initialization cannot be in EQUIVALENCE with a variable "
15815 "in COMMON", sym
->name
, &e
->where
);
15819 for (; c
; c
= c
->next
)
15821 if (gfc_bt_struct (c
->ts
.type
)
15822 && (!resolve_equivalence_derived(c
->ts
.u
.derived
, sym
, e
)))
15825 /* Shall not be an object of sequence derived type containing a pointer
15826 in the structure. */
15827 if (c
->attr
.pointer
)
15829 gfc_error ("Derived type variable %qs at %L with pointer "
15830 "component(s) cannot be an EQUIVALENCE object",
15831 sym
->name
, &e
->where
);
15839 /* Resolve equivalence object.
15840 An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
15841 an allocatable array, an object of nonsequence derived type, an object of
15842 sequence derived type containing a pointer at any level of component
15843 selection, an automatic object, a function name, an entry name, a result
15844 name, a named constant, a structure component, or a subobject of any of
15845 the preceding objects. A substring shall not have length zero. A
15846 derived type shall not have components with default initialization nor
15847 shall two objects of an equivalence group be initialized.
15848 Either all or none of the objects shall have an protected attribute.
15849 The simple constraints are done in symbol.c(check_conflict) and the rest
15850 are implemented here. */
15853 resolve_equivalence (gfc_equiv
*eq
)
15856 gfc_symbol
*first_sym
;
15859 locus
*last_where
= NULL
;
15860 seq_type eq_type
, last_eq_type
;
15861 gfc_typespec
*last_ts
;
15862 int object
, cnt_protected
;
15865 last_ts
= &eq
->expr
->symtree
->n
.sym
->ts
;
15867 first_sym
= eq
->expr
->symtree
->n
.sym
;
15871 for (object
= 1; eq
; eq
= eq
->eq
, object
++)
15875 e
->ts
= e
->symtree
->n
.sym
->ts
;
15876 /* match_varspec might not know yet if it is seeing
15877 array reference or substring reference, as it doesn't
15879 if (e
->ref
&& e
->ref
->type
== REF_ARRAY
)
15881 gfc_ref
*ref
= e
->ref
;
15882 sym
= e
->symtree
->n
.sym
;
15884 if (sym
->attr
.dimension
)
15886 ref
->u
.ar
.as
= sym
->as
;
15890 /* For substrings, convert REF_ARRAY into REF_SUBSTRING. */
15891 if (e
->ts
.type
== BT_CHARACTER
15893 && ref
->type
== REF_ARRAY
15894 && ref
->u
.ar
.dimen
== 1
15895 && ref
->u
.ar
.dimen_type
[0] == DIMEN_RANGE
15896 && ref
->u
.ar
.stride
[0] == NULL
)
15898 gfc_expr
*start
= ref
->u
.ar
.start
[0];
15899 gfc_expr
*end
= ref
->u
.ar
.end
[0];
15902 /* Optimize away the (:) reference. */
15903 if (start
== NULL
&& end
== NULL
)
15906 e
->ref
= ref
->next
;
15908 e
->ref
->next
= ref
->next
;
15913 ref
->type
= REF_SUBSTRING
;
15915 start
= gfc_get_int_expr (gfc_default_integer_kind
,
15917 ref
->u
.ss
.start
= start
;
15918 if (end
== NULL
&& e
->ts
.u
.cl
)
15919 end
= gfc_copy_expr (e
->ts
.u
.cl
->length
);
15920 ref
->u
.ss
.end
= end
;
15921 ref
->u
.ss
.length
= e
->ts
.u
.cl
;
15928 /* Any further ref is an error. */
15931 gcc_assert (ref
->type
== REF_ARRAY
);
15932 gfc_error ("Syntax error in EQUIVALENCE statement at %L",
15938 if (!gfc_resolve_expr (e
))
15941 sym
= e
->symtree
->n
.sym
;
15943 if (sym
->attr
.is_protected
)
15945 if (cnt_protected
> 0 && cnt_protected
!= object
)
15947 gfc_error ("Either all or none of the objects in the "
15948 "EQUIVALENCE set at %L shall have the "
15949 "PROTECTED attribute",
15954 /* Shall not equivalence common block variables in a PURE procedure. */
15955 if (sym
->ns
->proc_name
15956 && sym
->ns
->proc_name
->attr
.pure
15957 && sym
->attr
.in_common
)
15959 /* Need to check for symbols that may have entered the pure
15960 procedure via a USE statement. */
15961 bool saw_sym
= false;
15962 if (sym
->ns
->use_stmts
)
15965 for (r
= sym
->ns
->use_stmts
->rename
; r
; r
= r
->next
)
15966 if (strcmp(r
->use_name
, sym
->name
) == 0) saw_sym
= true;
15972 gfc_error ("COMMON block member %qs at %L cannot be an "
15973 "EQUIVALENCE object in the pure procedure %qs",
15974 sym
->name
, &e
->where
, sym
->ns
->proc_name
->name
);
15978 /* Shall not be a named constant. */
15979 if (e
->expr_type
== EXPR_CONSTANT
)
15981 gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
15982 "object", sym
->name
, &e
->where
);
15986 if (e
->ts
.type
== BT_DERIVED
15987 && !resolve_equivalence_derived (e
->ts
.u
.derived
, sym
, e
))
15990 /* Check that the types correspond correctly:
15992 A numeric sequence structure may be equivalenced to another sequence
15993 structure, an object of default integer type, default real type, double
15994 precision real type, default logical type such that components of the
15995 structure ultimately only become associated to objects of the same
15996 kind. A character sequence structure may be equivalenced to an object
15997 of default character kind or another character sequence structure.
15998 Other objects may be equivalenced only to objects of the same type and
15999 kind parameters. */
16001 /* Identical types are unconditionally OK. */
16002 if (object
== 1 || gfc_compare_types (last_ts
, &sym
->ts
))
16003 goto identical_types
;
16005 last_eq_type
= sequence_type (*last_ts
);
16006 eq_type
= sequence_type (sym
->ts
);
16008 /* Since the pair of objects is not of the same type, mixed or
16009 non-default sequences can be rejected. */
16011 msg
= "Sequence %s with mixed components in EQUIVALENCE "
16012 "statement at %L with different type objects";
16014 && last_eq_type
== SEQ_MIXED
16015 && !gfc_notify_std (GFC_STD_GNU
, msg
, first_sym
->name
, last_where
))
16016 || (eq_type
== SEQ_MIXED
16017 && !gfc_notify_std (GFC_STD_GNU
, msg
, sym
->name
, &e
->where
)))
16020 msg
= "Non-default type object or sequence %s in EQUIVALENCE "
16021 "statement at %L with objects of different type";
16023 && last_eq_type
== SEQ_NONDEFAULT
16024 && !gfc_notify_std (GFC_STD_GNU
, msg
, first_sym
->name
, last_where
))
16025 || (eq_type
== SEQ_NONDEFAULT
16026 && !gfc_notify_std (GFC_STD_GNU
, msg
, sym
->name
, &e
->where
)))
16029 msg
="Non-CHARACTER object %qs in default CHARACTER "
16030 "EQUIVALENCE statement at %L";
16031 if (last_eq_type
== SEQ_CHARACTER
16032 && eq_type
!= SEQ_CHARACTER
16033 && !gfc_notify_std (GFC_STD_GNU
, msg
, sym
->name
, &e
->where
))
16036 msg
="Non-NUMERIC object %qs in default NUMERIC "
16037 "EQUIVALENCE statement at %L";
16038 if (last_eq_type
== SEQ_NUMERIC
16039 && eq_type
!= SEQ_NUMERIC
16040 && !gfc_notify_std (GFC_STD_GNU
, msg
, sym
->name
, &e
->where
))
16045 last_where
= &e
->where
;
16050 /* Shall not be an automatic array. */
16051 if (e
->ref
->type
== REF_ARRAY
16052 && !gfc_resolve_array_spec (e
->ref
->u
.ar
.as
, 1))
16054 gfc_error ("Array %qs at %L with non-constant bounds cannot be "
16055 "an EQUIVALENCE object", sym
->name
, &e
->where
);
16062 /* Shall not be a structure component. */
16063 if (r
->type
== REF_COMPONENT
)
16065 gfc_error ("Structure component %qs at %L cannot be an "
16066 "EQUIVALENCE object",
16067 r
->u
.c
.component
->name
, &e
->where
);
16071 /* A substring shall not have length zero. */
16072 if (r
->type
== REF_SUBSTRING
)
16074 if (compare_bound (r
->u
.ss
.start
, r
->u
.ss
.end
) == CMP_GT
)
16076 gfc_error ("Substring at %L has length zero",
16077 &r
->u
.ss
.start
->where
);
16087 /* Function called by resolve_fntype to flag other symbol used in the
16088 length type parameter specification of function resuls. */
16091 flag_fn_result_spec (gfc_expr
*expr
,
16092 gfc_symbol
*sym ATTRIBUTE_UNUSED
,
16093 int *f ATTRIBUTE_UNUSED
)
16098 if (expr
->expr_type
== EXPR_VARIABLE
)
16100 s
= expr
->symtree
->n
.sym
;
16101 for (ns
= s
->ns
; ns
; ns
= ns
->parent
)
16105 if (!s
->fn_result_spec
16106 && s
->attr
.flavor
== FL_PARAMETER
)
16108 /* Function contained in a module.... */
16109 if (ns
->proc_name
&& ns
->proc_name
->attr
.flavor
== FL_MODULE
)
16112 s
->fn_result_spec
= 1;
16113 /* Make sure that this symbol is translated as a module
16115 st
= gfc_get_unique_symtree (ns
);
16119 /* ... which is use associated and called. */
16120 else if (s
->attr
.use_assoc
|| s
->attr
.used_in_submodule
16122 /* External function matched with an interface. */
16125 && s
->ns
->proc_name
->attr
.if_source
== IFSRC_DECL
)
16126 || s
->ns
->proc_name
->attr
.if_source
== IFSRC_IFBODY
)
16127 && s
->ns
->proc_name
->attr
.function
))
16128 s
->fn_result_spec
= 1;
16135 /* Resolve function and ENTRY types, issue diagnostics if needed. */
16138 resolve_fntype (gfc_namespace
*ns
)
16140 gfc_entry_list
*el
;
16143 if (ns
->proc_name
== NULL
|| !ns
->proc_name
->attr
.function
)
16146 /* If there are any entries, ns->proc_name is the entry master
16147 synthetic symbol and ns->entries->sym actual FUNCTION symbol. */
16149 sym
= ns
->entries
->sym
;
16151 sym
= ns
->proc_name
;
16152 if (sym
->result
== sym
16153 && sym
->ts
.type
== BT_UNKNOWN
16154 && !gfc_set_default_type (sym
, 0, NULL
)
16155 && !sym
->attr
.untyped
)
16157 gfc_error ("Function %qs at %L has no IMPLICIT type",
16158 sym
->name
, &sym
->declared_at
);
16159 sym
->attr
.untyped
= 1;
16162 if (sym
->ts
.type
== BT_DERIVED
&& !sym
->ts
.u
.derived
->attr
.use_assoc
16163 && !sym
->attr
.contained
16164 && !gfc_check_symbol_access (sym
->ts
.u
.derived
)
16165 && gfc_check_symbol_access (sym
))
16167 gfc_notify_std (GFC_STD_F2003
, "PUBLIC function %qs at "
16168 "%L of PRIVATE type %qs", sym
->name
,
16169 &sym
->declared_at
, sym
->ts
.u
.derived
->name
);
16173 for (el
= ns
->entries
->next
; el
; el
= el
->next
)
16175 if (el
->sym
->result
== el
->sym
16176 && el
->sym
->ts
.type
== BT_UNKNOWN
16177 && !gfc_set_default_type (el
->sym
, 0, NULL
)
16178 && !el
->sym
->attr
.untyped
)
16180 gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
16181 el
->sym
->name
, &el
->sym
->declared_at
);
16182 el
->sym
->attr
.untyped
= 1;
16186 if (sym
->ts
.type
== BT_CHARACTER
)
16187 gfc_traverse_expr (sym
->ts
.u
.cl
->length
, NULL
, flag_fn_result_spec
, 0);
16191 /* 12.3.2.1.1 Defined operators. */
16194 check_uop_procedure (gfc_symbol
*sym
, locus where
)
16196 gfc_formal_arglist
*formal
;
16198 if (!sym
->attr
.function
)
16200 gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
16201 sym
->name
, &where
);
16205 if (sym
->ts
.type
== BT_CHARACTER
16206 && !((sym
->ts
.u
.cl
&& sym
->ts
.u
.cl
->length
) || sym
->ts
.deferred
)
16207 && !(sym
->result
&& ((sym
->result
->ts
.u
.cl
16208 && sym
->result
->ts
.u
.cl
->length
) || sym
->result
->ts
.deferred
)))
16210 gfc_error ("User operator procedure %qs at %L cannot be assumed "
16211 "character length", sym
->name
, &where
);
16215 formal
= gfc_sym_get_dummy_args (sym
);
16216 if (!formal
|| !formal
->sym
)
16218 gfc_error ("User operator procedure %qs at %L must have at least "
16219 "one argument", sym
->name
, &where
);
16223 if (formal
->sym
->attr
.intent
!= INTENT_IN
)
16225 gfc_error ("First argument of operator interface at %L must be "
16226 "INTENT(IN)", &where
);
16230 if (formal
->sym
->attr
.optional
)
16232 gfc_error ("First argument of operator interface at %L cannot be "
16233 "optional", &where
);
16237 formal
= formal
->next
;
16238 if (!formal
|| !formal
->sym
)
16241 if (formal
->sym
->attr
.intent
!= INTENT_IN
)
16243 gfc_error ("Second argument of operator interface at %L must be "
16244 "INTENT(IN)", &where
);
16248 if (formal
->sym
->attr
.optional
)
16250 gfc_error ("Second argument of operator interface at %L cannot be "
16251 "optional", &where
);
16257 gfc_error ("Operator interface at %L must have, at most, two "
16258 "arguments", &where
);
16266 gfc_resolve_uops (gfc_symtree
*symtree
)
16268 gfc_interface
*itr
;
16270 if (symtree
== NULL
)
16273 gfc_resolve_uops (symtree
->left
);
16274 gfc_resolve_uops (symtree
->right
);
16276 for (itr
= symtree
->n
.uop
->op
; itr
; itr
= itr
->next
)
16277 check_uop_procedure (itr
->sym
, itr
->sym
->declared_at
);
16281 /* Examine all of the expressions associated with a program unit,
16282 assign types to all intermediate expressions, make sure that all
16283 assignments are to compatible types and figure out which names
16284 refer to which functions or subroutines. It doesn't check code
16285 block, which is handled by gfc_resolve_code. */
16288 resolve_types (gfc_namespace
*ns
)
16294 gfc_namespace
* old_ns
= gfc_current_ns
;
16296 if (ns
->types_resolved
)
16299 /* Check that all IMPLICIT types are ok. */
16300 if (!ns
->seen_implicit_none
)
16303 for (letter
= 0; letter
!= GFC_LETTERS
; ++letter
)
16304 if (ns
->set_flag
[letter
]
16305 && !resolve_typespec_used (&ns
->default_type
[letter
],
16306 &ns
->implicit_loc
[letter
], NULL
))
16310 gfc_current_ns
= ns
;
16312 resolve_entries (ns
);
16314 resolve_common_vars (&ns
->blank_common
, false);
16315 resolve_common_blocks (ns
->common_root
);
16317 resolve_contained_functions (ns
);
16319 if (ns
->proc_name
&& ns
->proc_name
->attr
.flavor
== FL_PROCEDURE
16320 && ns
->proc_name
->attr
.if_source
== IFSRC_IFBODY
)
16321 resolve_formal_arglist (ns
->proc_name
);
16323 gfc_traverse_ns (ns
, resolve_bind_c_derived_types
);
16325 for (cl
= ns
->cl_list
; cl
; cl
= cl
->next
)
16326 resolve_charlen (cl
);
16328 gfc_traverse_ns (ns
, resolve_symbol
);
16330 resolve_fntype (ns
);
16332 for (n
= ns
->contained
; n
; n
= n
->sibling
)
16334 if (gfc_pure (ns
->proc_name
) && !gfc_pure (n
->proc_name
))
16335 gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
16336 "also be PURE", n
->proc_name
->name
,
16337 &n
->proc_name
->declared_at
);
16343 gfc_do_concurrent_flag
= 0;
16344 gfc_check_interfaces (ns
);
16346 gfc_traverse_ns (ns
, resolve_values
);
16352 for (d
= ns
->data
; d
; d
= d
->next
)
16356 gfc_traverse_ns (ns
, gfc_formalize_init_value
);
16358 gfc_traverse_ns (ns
, gfc_verify_binding_labels
);
16360 for (eq
= ns
->equiv
; eq
; eq
= eq
->next
)
16361 resolve_equivalence (eq
);
16363 /* Warn about unused labels. */
16364 if (warn_unused_label
)
16365 warn_unused_fortran_label (ns
->st_labels
);
16367 gfc_resolve_uops (ns
->uop_root
);
16369 gfc_traverse_ns (ns
, gfc_verify_DTIO_procedures
);
16371 gfc_resolve_omp_declare_simd (ns
);
16373 gfc_resolve_omp_udrs (ns
->omp_udr_root
);
16375 ns
->types_resolved
= 1;
16377 gfc_current_ns
= old_ns
;
16381 /* Call gfc_resolve_code recursively. */
16384 resolve_codes (gfc_namespace
*ns
)
16387 bitmap_obstack old_obstack
;
16389 if (ns
->resolved
== 1)
16392 for (n
= ns
->contained
; n
; n
= n
->sibling
)
16395 gfc_current_ns
= ns
;
16397 /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct. */
16398 if (!(ns
->proc_name
&& ns
->proc_name
->attr
.flavor
== FL_LABEL
))
16401 /* Set to an out of range value. */
16402 current_entry_id
= -1;
16404 old_obstack
= labels_obstack
;
16405 bitmap_obstack_initialize (&labels_obstack
);
16407 gfc_resolve_oacc_declare (ns
);
16408 gfc_resolve_omp_local_vars (ns
);
16409 gfc_resolve_code (ns
->code
, ns
);
16411 bitmap_obstack_release (&labels_obstack
);
16412 labels_obstack
= old_obstack
;
16416 /* This function is called after a complete program unit has been compiled.
16417 Its purpose is to examine all of the expressions associated with a program
16418 unit, assign types to all intermediate expressions, make sure that all
16419 assignments are to compatible types and figure out which names refer to
16420 which functions or subroutines. */
16423 gfc_resolve (gfc_namespace
*ns
)
16425 gfc_namespace
*old_ns
;
16426 code_stack
*old_cs_base
;
16427 struct gfc_omp_saved_state old_omp_state
;
16433 old_ns
= gfc_current_ns
;
16434 old_cs_base
= cs_base
;
16436 /* As gfc_resolve can be called during resolution of an OpenMP construct
16437 body, we should clear any state associated to it, so that say NS's
16438 DO loops are not interpreted as OpenMP loops. */
16439 if (!ns
->construct_entities
)
16440 gfc_omp_save_and_clear_state (&old_omp_state
);
16442 resolve_types (ns
);
16443 component_assignment_level
= 0;
16444 resolve_codes (ns
);
16446 gfc_current_ns
= old_ns
;
16447 cs_base
= old_cs_base
;
16450 gfc_run_passes (ns
);
16452 if (!ns
->construct_entities
)
16453 gfc_omp_restore_state (&old_omp_state
);