1 /* Deal with interfaces.
2 Copyright (C) 2000-2014 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/>. */
22 /* Deal with interfaces. An explicit interface is represented as a
23 singly linked list of formal argument structures attached to the
24 relevant symbols. For an implicit interface, the arguments don't
25 point to symbols. Explicit interfaces point to namespaces that
26 contain the symbols within that interface.
28 Implicit interfaces are linked together in a singly linked list
29 along the next_if member of symbol nodes. Since a particular
30 symbol can only have a single explicit interface, the symbol cannot
31 be part of multiple lists and a single next-member suffices.
33 This is not the case for general classes, though. An operator
34 definition is independent of just about all other uses and has it's
38 Nameless interfaces create symbols with explicit interfaces within
39 the current namespace. They are otherwise unlinked.
42 The generic name points to a linked list of symbols. Each symbol
43 has an explicit interface. Each explicit interface has its own
44 namespace containing the arguments. Module procedures are symbols in
45 which the interface is added later when the module procedure is parsed.
48 User-defined operators are stored in a their own set of symtrees
49 separate from regular symbols. The symtrees point to gfc_user_op
50 structures which in turn head up a list of relevant interfaces.
52 Extended intrinsics and assignment:
53 The head of these interface lists are stored in the containing namespace.
56 An implicit interface is represented as a singly linked list of
57 formal argument list structures that don't point to any symbol
58 nodes -- they just contain types.
61 When a subprogram is defined, the program unit's name points to an
62 interface as usual, but the link to the namespace is NULL and the
63 formal argument list points to symbols within the same namespace as
64 the program unit name. */
68 #include "coretypes.h"
73 /* The current_interface structure holds information about the
74 interface currently being parsed. This structure is saved and
75 restored during recursive interfaces. */
77 gfc_interface_info current_interface
;
80 /* Free a singly linked list of gfc_interface structures. */
83 gfc_free_interface (gfc_interface
*intr
)
87 for (; intr
; intr
= next
)
95 /* Change the operators unary plus and minus into binary plus and
96 minus respectively, leaving the rest unchanged. */
98 static gfc_intrinsic_op
99 fold_unary_intrinsic (gfc_intrinsic_op op
)
103 case INTRINSIC_UPLUS
:
106 case INTRINSIC_UMINUS
:
107 op
= INTRINSIC_MINUS
;
117 /* Match a generic specification. Depending on which type of
118 interface is found, the 'name' or 'op' pointers may be set.
119 This subroutine doesn't return MATCH_NO. */
122 gfc_match_generic_spec (interface_type
*type
,
124 gfc_intrinsic_op
*op
)
126 char buffer
[GFC_MAX_SYMBOL_LEN
+ 1];
130 if (gfc_match (" assignment ( = )") == MATCH_YES
)
132 *type
= INTERFACE_INTRINSIC_OP
;
133 *op
= INTRINSIC_ASSIGN
;
137 if (gfc_match (" operator ( %o )", &i
) == MATCH_YES
)
139 *type
= INTERFACE_INTRINSIC_OP
;
140 *op
= fold_unary_intrinsic (i
);
144 *op
= INTRINSIC_NONE
;
145 if (gfc_match (" operator ( ") == MATCH_YES
)
147 m
= gfc_match_defined_op_name (buffer
, 1);
153 m
= gfc_match_char (')');
159 strcpy (name
, buffer
);
160 *type
= INTERFACE_USER_OP
;
164 if (gfc_match_name (buffer
) == MATCH_YES
)
166 strcpy (name
, buffer
);
167 *type
= INTERFACE_GENERIC
;
171 *type
= INTERFACE_NAMELESS
;
175 gfc_error ("Syntax error in generic specification at %C");
180 /* Match one of the five F95 forms of an interface statement. The
181 matcher for the abstract interface follows. */
184 gfc_match_interface (void)
186 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
192 m
= gfc_match_space ();
194 if (gfc_match_generic_spec (&type
, name
, &op
) == MATCH_ERROR
)
197 /* If we're not looking at the end of the statement now, or if this
198 is not a nameless interface but we did not see a space, punt. */
199 if (gfc_match_eos () != MATCH_YES
200 || (type
!= INTERFACE_NAMELESS
&& m
!= MATCH_YES
))
202 gfc_error ("Syntax error: Trailing garbage in INTERFACE statement "
207 current_interface
.type
= type
;
211 case INTERFACE_GENERIC
:
212 if (gfc_get_symbol (name
, NULL
, &sym
))
215 if (!sym
->attr
.generic
216 && !gfc_add_generic (&sym
->attr
, sym
->name
, NULL
))
221 gfc_error ("Dummy procedure '%s' at %C cannot have a "
222 "generic interface", sym
->name
);
226 current_interface
.sym
= gfc_new_block
= sym
;
229 case INTERFACE_USER_OP
:
230 current_interface
.uop
= gfc_get_uop (name
);
233 case INTERFACE_INTRINSIC_OP
:
234 current_interface
.op
= op
;
237 case INTERFACE_NAMELESS
:
238 case INTERFACE_ABSTRACT
:
247 /* Match a F2003 abstract interface. */
250 gfc_match_abstract_interface (void)
254 if (!gfc_notify_std (GFC_STD_F2003
, "ABSTRACT INTERFACE at %C"))
257 m
= gfc_match_eos ();
261 gfc_error ("Syntax error in ABSTRACT INTERFACE statement at %C");
265 current_interface
.type
= INTERFACE_ABSTRACT
;
271 /* Match the different sort of generic-specs that can be present after
272 the END INTERFACE itself. */
275 gfc_match_end_interface (void)
277 char name
[GFC_MAX_SYMBOL_LEN
+ 1];
282 m
= gfc_match_space ();
284 if (gfc_match_generic_spec (&type
, name
, &op
) == MATCH_ERROR
)
287 /* If we're not looking at the end of the statement now, or if this
288 is not a nameless interface but we did not see a space, punt. */
289 if (gfc_match_eos () != MATCH_YES
290 || (type
!= INTERFACE_NAMELESS
&& m
!= MATCH_YES
))
292 gfc_error ("Syntax error: Trailing garbage in END INTERFACE "
299 switch (current_interface
.type
)
301 case INTERFACE_NAMELESS
:
302 case INTERFACE_ABSTRACT
:
303 if (type
!= INTERFACE_NAMELESS
)
305 gfc_error ("Expected a nameless interface at %C");
311 case INTERFACE_INTRINSIC_OP
:
312 if (type
!= current_interface
.type
|| op
!= current_interface
.op
)
315 if (current_interface
.op
== INTRINSIC_ASSIGN
)
318 gfc_error ("Expected 'END INTERFACE ASSIGNMENT (=)' at %C");
323 s1
= gfc_op2string (current_interface
.op
);
324 s2
= gfc_op2string (op
);
326 /* The following if-statements are used to enforce C1202
328 if ((strcmp(s1
, "==") == 0 && strcmp (s2
, ".eq.") == 0)
329 || (strcmp(s1
, ".eq.") == 0 && strcmp (s2
, "==") == 0))
331 if ((strcmp(s1
, "/=") == 0 && strcmp (s2
, ".ne.") == 0)
332 || (strcmp(s1
, ".ne.") == 0 && strcmp (s2
, "/=") == 0))
334 if ((strcmp(s1
, "<=") == 0 && strcmp (s2
, ".le.") == 0)
335 || (strcmp(s1
, ".le.") == 0 && strcmp (s2
, "<=") == 0))
337 if ((strcmp(s1
, "<") == 0 && strcmp (s2
, ".lt.") == 0)
338 || (strcmp(s1
, ".lt.") == 0 && strcmp (s2
, "<") == 0))
340 if ((strcmp(s1
, ">=") == 0 && strcmp (s2
, ".ge.") == 0)
341 || (strcmp(s1
, ".ge.") == 0 && strcmp (s2
, ">=") == 0))
343 if ((strcmp(s1
, ">") == 0 && strcmp (s2
, ".gt.") == 0)
344 || (strcmp(s1
, ".gt.") == 0 && strcmp (s2
, ">") == 0))
348 gfc_error ("Expecting 'END INTERFACE OPERATOR (%s)' at %C, "
349 "but got %s", s1
, s2
);
356 case INTERFACE_USER_OP
:
357 /* Comparing the symbol node names is OK because only use-associated
358 symbols can be renamed. */
359 if (type
!= current_interface
.type
360 || strcmp (current_interface
.uop
->name
, name
) != 0)
362 gfc_error ("Expecting 'END INTERFACE OPERATOR (.%s.)' at %C",
363 current_interface
.uop
->name
);
369 case INTERFACE_GENERIC
:
370 if (type
!= current_interface
.type
371 || strcmp (current_interface
.sym
->name
, name
) != 0)
373 gfc_error ("Expecting 'END INTERFACE %s' at %C",
374 current_interface
.sym
->name
);
385 /* Compare two derived types using the criteria in 4.4.2 of the standard,
386 recursing through gfc_compare_types for the components. */
389 gfc_compare_derived_types (gfc_symbol
*derived1
, gfc_symbol
*derived2
)
391 gfc_component
*dt1
, *dt2
;
393 if (derived1
== derived2
)
396 gcc_assert (derived1
&& derived2
);
398 /* Special case for comparing derived types across namespaces. If the
399 true names and module names are the same and the module name is
400 nonnull, then they are equal. */
401 if (strcmp (derived1
->name
, derived2
->name
) == 0
402 && derived1
->module
!= NULL
&& derived2
->module
!= NULL
403 && strcmp (derived1
->module
, derived2
->module
) == 0)
406 /* Compare type via the rules of the standard. Both types must have
407 the SEQUENCE or BIND(C) attribute to be equal. */
409 if (strcmp (derived1
->name
, derived2
->name
))
412 if (derived1
->component_access
== ACCESS_PRIVATE
413 || derived2
->component_access
== ACCESS_PRIVATE
)
416 if (!(derived1
->attr
.sequence
&& derived2
->attr
.sequence
)
417 && !(derived1
->attr
.is_bind_c
&& derived2
->attr
.is_bind_c
))
420 dt1
= derived1
->components
;
421 dt2
= derived2
->components
;
423 /* Since subtypes of SEQUENCE types must be SEQUENCE types as well, a
424 simple test can speed things up. Otherwise, lots of things have to
428 if (strcmp (dt1
->name
, dt2
->name
) != 0)
431 if (dt1
->attr
.access
!= dt2
->attr
.access
)
434 if (dt1
->attr
.pointer
!= dt2
->attr
.pointer
)
437 if (dt1
->attr
.dimension
!= dt2
->attr
.dimension
)
440 if (dt1
->attr
.allocatable
!= dt2
->attr
.allocatable
)
443 if (dt1
->attr
.dimension
&& gfc_compare_array_spec (dt1
->as
, dt2
->as
) == 0)
446 /* Make sure that link lists do not put this function into an
447 endless recursive loop! */
448 if (!(dt1
->ts
.type
== BT_DERIVED
&& derived1
== dt1
->ts
.u
.derived
)
449 && !(dt2
->ts
.type
== BT_DERIVED
&& derived2
== dt2
->ts
.u
.derived
)
450 && gfc_compare_types (&dt1
->ts
, &dt2
->ts
) == 0)
453 else if ((dt1
->ts
.type
== BT_DERIVED
&& derived1
== dt1
->ts
.u
.derived
)
454 && !(dt1
->ts
.type
== BT_DERIVED
&& derived1
== dt1
->ts
.u
.derived
))
457 else if (!(dt1
->ts
.type
== BT_DERIVED
&& derived1
== dt1
->ts
.u
.derived
)
458 && (dt1
->ts
.type
== BT_DERIVED
&& derived1
== dt1
->ts
.u
.derived
))
464 if (dt1
== NULL
&& dt2
== NULL
)
466 if (dt1
== NULL
|| dt2
== NULL
)
474 /* Compare two typespecs, recursively if necessary. */
477 gfc_compare_types (gfc_typespec
*ts1
, gfc_typespec
*ts2
)
479 /* See if one of the typespecs is a BT_VOID, which is what is being used
480 to allow the funcs like c_f_pointer to accept any pointer type.
481 TODO: Possibly should narrow this to just the one typespec coming in
482 that is for the formal arg, but oh well. */
483 if (ts1
->type
== BT_VOID
|| ts2
->type
== BT_VOID
)
486 if (ts1
->type
== BT_CLASS
487 && ts1
->u
.derived
->components
->ts
.u
.derived
->attr
.unlimited_polymorphic
)
491 if (ts2
->type
== BT_CLASS
&& ts1
->type
== BT_DERIVED
492 && ts2
->u
.derived
->components
->ts
.u
.derived
->attr
.unlimited_polymorphic
493 && (ts1
->u
.derived
->attr
.sequence
|| ts1
->u
.derived
->attr
.is_bind_c
))
496 if (ts1
->type
!= ts2
->type
497 && ((ts1
->type
!= BT_DERIVED
&& ts1
->type
!= BT_CLASS
)
498 || (ts2
->type
!= BT_DERIVED
&& ts2
->type
!= BT_CLASS
)))
500 if (ts1
->type
!= BT_DERIVED
&& ts1
->type
!= BT_CLASS
)
501 return (ts1
->kind
== ts2
->kind
);
503 /* Compare derived types. */
504 if (gfc_type_compatible (ts1
, ts2
))
507 return gfc_compare_derived_types (ts1
->u
.derived
,ts2
->u
.derived
);
512 compare_type (gfc_symbol
*s1
, gfc_symbol
*s2
)
514 if (s2
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
))
517 /* TYPE and CLASS of the same declared type are type compatible,
518 but have different characteristics. */
519 if ((s1
->ts
.type
== BT_CLASS
&& s2
->ts
.type
== BT_DERIVED
)
520 || (s1
->ts
.type
== BT_DERIVED
&& s2
->ts
.type
== BT_CLASS
))
523 return gfc_compare_types (&s1
->ts
, &s2
->ts
) || s2
->ts
.type
== BT_ASSUMED
;
528 compare_rank (gfc_symbol
*s1
, gfc_symbol
*s2
)
530 gfc_array_spec
*as1
, *as2
;
533 if (s2
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
))
536 as1
= (s1
->ts
.type
== BT_CLASS
) ? CLASS_DATA (s1
)->as
: s1
->as
;
537 as2
= (s2
->ts
.type
== BT_CLASS
) ? CLASS_DATA (s2
)->as
: s2
->as
;
539 r1
= as1
? as1
->rank
: 0;
540 r2
= as2
? as2
->rank
: 0;
542 if (r1
!= r2
&& (!as2
|| as2
->type
!= AS_ASSUMED_RANK
))
543 return 0; /* Ranks differ. */
549 /* Given two symbols that are formal arguments, compare their ranks
550 and types. Returns nonzero if they have the same rank and type,
554 compare_type_rank (gfc_symbol
*s1
, gfc_symbol
*s2
)
556 return compare_type (s1
, s2
) && compare_rank (s1
, s2
);
560 /* Given two symbols that are formal arguments, compare their types
561 and rank and their formal interfaces if they are both dummy
562 procedures. Returns nonzero if the same, zero if different. */
565 compare_type_rank_if (gfc_symbol
*s1
, gfc_symbol
*s2
)
567 if (s1
== NULL
|| s2
== NULL
)
568 return s1
== s2
? 1 : 0;
573 if (s1
->attr
.flavor
!= FL_PROCEDURE
&& s2
->attr
.flavor
!= FL_PROCEDURE
)
574 return compare_type_rank (s1
, s2
);
576 if (s1
->attr
.flavor
!= FL_PROCEDURE
|| s2
->attr
.flavor
!= FL_PROCEDURE
)
579 /* At this point, both symbols are procedures. It can happen that
580 external procedures are compared, where one is identified by usage
581 to be a function or subroutine but the other is not. Check TKR
582 nonetheless for these cases. */
583 if (s1
->attr
.function
== 0 && s1
->attr
.subroutine
== 0)
584 return s1
->attr
.external
== 1 ? compare_type_rank (s1
, s2
) : 0;
586 if (s2
->attr
.function
== 0 && s2
->attr
.subroutine
== 0)
587 return s2
->attr
.external
== 1 ? compare_type_rank (s1
, s2
) : 0;
589 /* Now the type of procedure has been identified. */
590 if (s1
->attr
.function
!= s2
->attr
.function
591 || s1
->attr
.subroutine
!= s2
->attr
.subroutine
)
594 if (s1
->attr
.function
&& compare_type_rank (s1
, s2
) == 0)
597 /* Originally, gfortran recursed here to check the interfaces of passed
598 procedures. This is explicitly not required by the standard. */
603 /* Given a formal argument list and a keyword name, search the list
604 for that keyword. Returns the correct symbol node if found, NULL
608 find_keyword_arg (const char *name
, gfc_formal_arglist
*f
)
610 for (; f
; f
= f
->next
)
611 if (strcmp (f
->sym
->name
, name
) == 0)
618 /******** Interface checking subroutines **********/
621 /* Given an operator interface and the operator, make sure that all
622 interfaces for that operator are legal. */
625 gfc_check_operator_interface (gfc_symbol
*sym
, gfc_intrinsic_op op
,
628 gfc_formal_arglist
*formal
;
631 int args
, r1
, r2
, k1
, k2
;
636 t1
= t2
= BT_UNKNOWN
;
637 i1
= i2
= INTENT_UNKNOWN
;
641 for (formal
= gfc_sym_get_dummy_args (sym
); formal
; formal
= formal
->next
)
643 gfc_symbol
*fsym
= formal
->sym
;
646 gfc_error ("Alternate return cannot appear in operator "
647 "interface at %L", &sym
->declared_at
);
653 i1
= fsym
->attr
.intent
;
654 r1
= (fsym
->as
!= NULL
) ? fsym
->as
->rank
: 0;
660 i2
= fsym
->attr
.intent
;
661 r2
= (fsym
->as
!= NULL
) ? fsym
->as
->rank
: 0;
667 /* Only +, - and .not. can be unary operators.
668 .not. cannot be a binary operator. */
669 if (args
== 0 || args
> 2 || (args
== 1 && op
!= INTRINSIC_PLUS
670 && op
!= INTRINSIC_MINUS
671 && op
!= INTRINSIC_NOT
)
672 || (args
== 2 && op
== INTRINSIC_NOT
))
674 if (op
== INTRINSIC_ASSIGN
)
675 gfc_error ("Assignment operator interface at %L must have "
676 "two arguments", &sym
->declared_at
);
678 gfc_error ("Operator interface at %L has the wrong number of arguments",
683 /* Check that intrinsics are mapped to functions, except
684 INTRINSIC_ASSIGN which should map to a subroutine. */
685 if (op
== INTRINSIC_ASSIGN
)
687 gfc_formal_arglist
*dummy_args
;
689 if (!sym
->attr
.subroutine
)
691 gfc_error ("Assignment operator interface at %L must be "
692 "a SUBROUTINE", &sym
->declared_at
);
696 /* Allowed are (per F2003, 12.3.2.1.2 Defined assignments):
697 - First argument an array with different rank than second,
698 - First argument is a scalar and second an array,
699 - Types and kinds do not conform, or
700 - First argument is of derived type. */
701 dummy_args
= gfc_sym_get_dummy_args (sym
);
702 if (dummy_args
->sym
->ts
.type
!= BT_DERIVED
703 && dummy_args
->sym
->ts
.type
!= BT_CLASS
704 && (r2
== 0 || r1
== r2
)
705 && (dummy_args
->sym
->ts
.type
== dummy_args
->next
->sym
->ts
.type
706 || (gfc_numeric_ts (&dummy_args
->sym
->ts
)
707 && gfc_numeric_ts (&dummy_args
->next
->sym
->ts
))))
709 gfc_error ("Assignment operator interface at %L must not redefine "
710 "an INTRINSIC type assignment", &sym
->declared_at
);
716 if (!sym
->attr
.function
)
718 gfc_error ("Intrinsic operator interface at %L must be a FUNCTION",
724 /* Check intents on operator interfaces. */
725 if (op
== INTRINSIC_ASSIGN
)
727 if (i1
!= INTENT_OUT
&& i1
!= INTENT_INOUT
)
729 gfc_error ("First argument of defined assignment at %L must be "
730 "INTENT(OUT) or INTENT(INOUT)", &sym
->declared_at
);
736 gfc_error ("Second argument of defined assignment at %L must be "
737 "INTENT(IN)", &sym
->declared_at
);
745 gfc_error ("First argument of operator interface at %L must be "
746 "INTENT(IN)", &sym
->declared_at
);
750 if (args
== 2 && i2
!= INTENT_IN
)
752 gfc_error ("Second argument of operator interface at %L must be "
753 "INTENT(IN)", &sym
->declared_at
);
758 /* From now on, all we have to do is check that the operator definition
759 doesn't conflict with an intrinsic operator. The rules for this
760 game are defined in 7.1.2 and 7.1.3 of both F95 and F2003 standards,
761 as well as 12.3.2.1.1 of Fortran 2003:
763 "If the operator is an intrinsic-operator (R310), the number of
764 function arguments shall be consistent with the intrinsic uses of
765 that operator, and the types, kind type parameters, or ranks of the
766 dummy arguments shall differ from those required for the intrinsic
767 operation (7.1.2)." */
769 #define IS_NUMERIC_TYPE(t) \
770 ((t) == BT_INTEGER || (t) == BT_REAL || (t) == BT_COMPLEX)
772 /* Unary ops are easy, do them first. */
773 if (op
== INTRINSIC_NOT
)
775 if (t1
== BT_LOGICAL
)
781 if (args
== 1 && (op
== INTRINSIC_PLUS
|| op
== INTRINSIC_MINUS
))
783 if (IS_NUMERIC_TYPE (t1
))
789 /* Character intrinsic operators have same character kind, thus
790 operator definitions with operands of different character kinds
792 if (t1
== BT_CHARACTER
&& t2
== BT_CHARACTER
&& k1
!= k2
)
795 /* Intrinsic operators always perform on arguments of same rank,
796 so different ranks is also always safe. (rank == 0) is an exception
797 to that, because all intrinsic operators are elemental. */
798 if (r1
!= r2
&& r1
!= 0 && r2
!= 0)
804 case INTRINSIC_EQ_OS
:
806 case INTRINSIC_NE_OS
:
807 if (t1
== BT_CHARACTER
&& t2
== BT_CHARACTER
)
812 case INTRINSIC_MINUS
:
813 case INTRINSIC_TIMES
:
814 case INTRINSIC_DIVIDE
:
815 case INTRINSIC_POWER
:
816 if (IS_NUMERIC_TYPE (t1
) && IS_NUMERIC_TYPE (t2
))
821 case INTRINSIC_GT_OS
:
823 case INTRINSIC_GE_OS
:
825 case INTRINSIC_LT_OS
:
827 case INTRINSIC_LE_OS
:
828 if (t1
== BT_CHARACTER
&& t2
== BT_CHARACTER
)
830 if ((t1
== BT_INTEGER
|| t1
== BT_REAL
)
831 && (t2
== BT_INTEGER
|| t2
== BT_REAL
))
835 case INTRINSIC_CONCAT
:
836 if (t1
== BT_CHARACTER
&& t2
== BT_CHARACTER
)
844 if (t1
== BT_LOGICAL
&& t2
== BT_LOGICAL
)
854 #undef IS_NUMERIC_TYPE
857 gfc_error ("Operator interface at %L conflicts with intrinsic interface",
863 /* Given a pair of formal argument lists, we see if the two lists can
864 be distinguished by counting the number of nonoptional arguments of
865 a given type/rank in f1 and seeing if there are less then that
866 number of those arguments in f2 (including optional arguments).
867 Since this test is asymmetric, it has to be called twice to make it
868 symmetric. Returns nonzero if the argument lists are incompatible
869 by this test. This subroutine implements rule 1 of section F03:16.2.3.
870 'p1' and 'p2' are the PASS arguments of both procedures (if applicable). */
873 count_types_test (gfc_formal_arglist
*f1
, gfc_formal_arglist
*f2
,
874 const char *p1
, const char *p2
)
876 int rc
, ac1
, ac2
, i
, j
, k
, n1
;
877 gfc_formal_arglist
*f
;
890 for (f
= f1
; f
; f
= f
->next
)
893 /* Build an array of integers that gives the same integer to
894 arguments of the same type/rank. */
895 arg
= XCNEWVEC (arginfo
, n1
);
898 for (i
= 0; i
< n1
; i
++, f
= f
->next
)
906 for (i
= 0; i
< n1
; i
++)
908 if (arg
[i
].flag
!= -1)
911 if (arg
[i
].sym
&& (arg
[i
].sym
->attr
.optional
912 || (p1
&& strcmp (arg
[i
].sym
->name
, p1
) == 0)))
913 continue; /* Skip OPTIONAL and PASS arguments. */
917 /* Find other non-optional, non-pass arguments of the same type/rank. */
918 for (j
= i
+ 1; j
< n1
; j
++)
919 if ((arg
[j
].sym
== NULL
920 || !(arg
[j
].sym
->attr
.optional
921 || (p1
&& strcmp (arg
[j
].sym
->name
, p1
) == 0)))
922 && (compare_type_rank_if (arg
[i
].sym
, arg
[j
].sym
)
923 || compare_type_rank_if (arg
[j
].sym
, arg
[i
].sym
)))
929 /* Now loop over each distinct type found in f1. */
933 for (i
= 0; i
< n1
; i
++)
935 if (arg
[i
].flag
!= k
)
939 for (j
= i
+ 1; j
< n1
; j
++)
940 if (arg
[j
].flag
== k
)
943 /* Count the number of non-pass arguments in f2 with that type,
944 including those that are optional. */
947 for (f
= f2
; f
; f
= f
->next
)
948 if ((!p2
|| strcmp (f
->sym
->name
, p2
) != 0)
949 && (compare_type_rank_if (arg
[i
].sym
, f
->sym
)
950 || compare_type_rank_if (f
->sym
, arg
[i
].sym
)))
968 /* Perform the correspondence test in rule (3) of F08:C1215.
969 Returns zero if no argument is found that satisfies this rule,
970 nonzero otherwise. 'p1' and 'p2' are the PASS arguments of both procedures
973 This test is also not symmetric in f1 and f2 and must be called
974 twice. This test finds problems caused by sorting the actual
975 argument list with keywords. For example:
979 INTEGER :: A ; REAL :: B
983 INTEGER :: A ; REAL :: B
987 At this point, 'CALL FOO(A=1, B=1.0)' is ambiguous. */
990 generic_correspondence (gfc_formal_arglist
*f1
, gfc_formal_arglist
*f2
,
991 const char *p1
, const char *p2
)
993 gfc_formal_arglist
*f2_save
, *g
;
1000 if (f1
->sym
->attr
.optional
)
1003 if (p1
&& strcmp (f1
->sym
->name
, p1
) == 0)
1005 if (f2
&& p2
&& strcmp (f2
->sym
->name
, p2
) == 0)
1008 if (f2
!= NULL
&& (compare_type_rank (f1
->sym
, f2
->sym
)
1009 || compare_type_rank (f2
->sym
, f1
->sym
))
1010 && !((gfc_option
.allow_std
& GFC_STD_F2008
)
1011 && ((f1
->sym
->attr
.allocatable
&& f2
->sym
->attr
.pointer
)
1012 || (f2
->sym
->attr
.allocatable
&& f1
->sym
->attr
.pointer
))))
1015 /* Now search for a disambiguating keyword argument starting at
1016 the current non-match. */
1017 for (g
= f1
; g
; g
= g
->next
)
1019 if (g
->sym
->attr
.optional
|| (p1
&& strcmp (g
->sym
->name
, p1
) == 0))
1022 sym
= find_keyword_arg (g
->sym
->name
, f2_save
);
1023 if (sym
== NULL
|| !compare_type_rank (g
->sym
, sym
)
1024 || ((gfc_option
.allow_std
& GFC_STD_F2008
)
1025 && ((sym
->attr
.allocatable
&& g
->sym
->attr
.pointer
)
1026 || (sym
->attr
.pointer
&& g
->sym
->attr
.allocatable
))))
1042 symbol_rank (gfc_symbol
*sym
)
1045 as
= (sym
->ts
.type
== BT_CLASS
) ? CLASS_DATA (sym
)->as
: sym
->as
;
1046 return as
? as
->rank
: 0;
1050 /* Check if the characteristics of two dummy arguments match,
1054 check_dummy_characteristics (gfc_symbol
*s1
, gfc_symbol
*s2
,
1055 bool type_must_agree
, char *errmsg
, int err_len
)
1057 if (s1
== NULL
|| s2
== NULL
)
1058 return s1
== s2
? true : false;
1060 /* Check type and rank. */
1061 if (type_must_agree
)
1063 if (!compare_type (s1
, s2
) || !compare_type (s2
, s1
))
1065 snprintf (errmsg
, err_len
, "Type mismatch in argument '%s' (%s/%s)",
1066 s1
->name
, gfc_typename (&s1
->ts
), gfc_typename (&s2
->ts
));
1069 if (!compare_rank (s1
, s2
))
1071 snprintf (errmsg
, err_len
, "Rank mismatch in argument '%s' (%i/%i)",
1072 s1
->name
, symbol_rank (s1
), symbol_rank (s2
));
1078 if (s1
->attr
.intent
!= s2
->attr
.intent
)
1080 snprintf (errmsg
, err_len
, "INTENT mismatch in argument '%s'",
1085 /* Check OPTIONAL attribute. */
1086 if (s1
->attr
.optional
!= s2
->attr
.optional
)
1088 snprintf (errmsg
, err_len
, "OPTIONAL mismatch in argument '%s'",
1093 /* Check ALLOCATABLE attribute. */
1094 if (s1
->attr
.allocatable
!= s2
->attr
.allocatable
)
1096 snprintf (errmsg
, err_len
, "ALLOCATABLE mismatch in argument '%s'",
1101 /* Check POINTER attribute. */
1102 if (s1
->attr
.pointer
!= s2
->attr
.pointer
)
1104 snprintf (errmsg
, err_len
, "POINTER mismatch in argument '%s'",
1109 /* Check TARGET attribute. */
1110 if (s1
->attr
.target
!= s2
->attr
.target
)
1112 snprintf (errmsg
, err_len
, "TARGET mismatch in argument '%s'",
1117 /* Check ASYNCHRONOUS attribute. */
1118 if (s1
->attr
.asynchronous
!= s2
->attr
.asynchronous
)
1120 snprintf (errmsg
, err_len
, "ASYNCHRONOUS mismatch in argument '%s'",
1125 /* Check CONTIGUOUS attribute. */
1126 if (s1
->attr
.contiguous
!= s2
->attr
.contiguous
)
1128 snprintf (errmsg
, err_len
, "CONTIGUOUS mismatch in argument '%s'",
1133 /* Check VALUE attribute. */
1134 if (s1
->attr
.value
!= s2
->attr
.value
)
1136 snprintf (errmsg
, err_len
, "VALUE mismatch in argument '%s'",
1141 /* Check VOLATILE attribute. */
1142 if (s1
->attr
.volatile_
!= s2
->attr
.volatile_
)
1144 snprintf (errmsg
, err_len
, "VOLATILE mismatch in argument '%s'",
1149 /* Check interface of dummy procedures. */
1150 if (s1
->attr
.flavor
== FL_PROCEDURE
)
1153 if (!gfc_compare_interfaces (s1
, s2
, s2
->name
, 0, 1, err
, sizeof(err
),
1156 snprintf (errmsg
, err_len
, "Interface mismatch in dummy procedure "
1157 "'%s': %s", s1
->name
, err
);
1162 /* Check string length. */
1163 if (s1
->ts
.type
== BT_CHARACTER
1164 && s1
->ts
.u
.cl
&& s1
->ts
.u
.cl
->length
1165 && s2
->ts
.u
.cl
&& s2
->ts
.u
.cl
->length
)
1167 int compval
= gfc_dep_compare_expr (s1
->ts
.u
.cl
->length
,
1168 s2
->ts
.u
.cl
->length
);
1174 snprintf (errmsg
, err_len
, "Character length mismatch "
1175 "in argument '%s'", s1
->name
);
1179 /* FIXME: Implement a warning for this case.
1180 gfc_warning ("Possible character length mismatch in argument '%s'",
1188 gfc_internal_error ("check_dummy_characteristics: Unexpected result "
1189 "%i of gfc_dep_compare_expr", compval
);
1194 /* Check array shape. */
1195 if (s1
->as
&& s2
->as
)
1198 gfc_expr
*shape1
, *shape2
;
1200 if (s1
->as
->type
!= s2
->as
->type
)
1202 snprintf (errmsg
, err_len
, "Shape mismatch in argument '%s'",
1207 if (s1
->as
->type
== AS_EXPLICIT
)
1208 for (i
= 0; i
< s1
->as
->rank
+ s1
->as
->corank
; i
++)
1210 shape1
= gfc_subtract (gfc_copy_expr (s1
->as
->upper
[i
]),
1211 gfc_copy_expr (s1
->as
->lower
[i
]));
1212 shape2
= gfc_subtract (gfc_copy_expr (s2
->as
->upper
[i
]),
1213 gfc_copy_expr (s2
->as
->lower
[i
]));
1214 compval
= gfc_dep_compare_expr (shape1
, shape2
);
1215 gfc_free_expr (shape1
);
1216 gfc_free_expr (shape2
);
1222 snprintf (errmsg
, err_len
, "Shape mismatch in dimension %i of "
1223 "argument '%s'", i
+ 1, s1
->name
);
1227 /* FIXME: Implement a warning for this case.
1228 gfc_warning ("Possible shape mismatch in argument '%s'",
1236 gfc_internal_error ("check_dummy_characteristics: Unexpected "
1237 "result %i of gfc_dep_compare_expr",
1248 /* Check if the characteristics of two function results match,
1252 check_result_characteristics (gfc_symbol
*s1
, gfc_symbol
*s2
,
1253 char *errmsg
, int err_len
)
1255 gfc_symbol
*r1
, *r2
;
1257 if (s1
->ts
.interface
&& s1
->ts
.interface
->result
)
1258 r1
= s1
->ts
.interface
->result
;
1260 r1
= s1
->result
? s1
->result
: s1
;
1262 if (s2
->ts
.interface
&& s2
->ts
.interface
->result
)
1263 r2
= s2
->ts
.interface
->result
;
1265 r2
= s2
->result
? s2
->result
: s2
;
1267 if (r1
->ts
.type
== BT_UNKNOWN
)
1270 /* Check type and rank. */
1271 if (!compare_type (r1
, r2
))
1273 snprintf (errmsg
, err_len
, "Type mismatch in function result (%s/%s)",
1274 gfc_typename (&r1
->ts
), gfc_typename (&r2
->ts
));
1277 if (!compare_rank (r1
, r2
))
1279 snprintf (errmsg
, err_len
, "Rank mismatch in function result (%i/%i)",
1280 symbol_rank (r1
), symbol_rank (r2
));
1284 /* Check ALLOCATABLE attribute. */
1285 if (r1
->attr
.allocatable
!= r2
->attr
.allocatable
)
1287 snprintf (errmsg
, err_len
, "ALLOCATABLE attribute mismatch in "
1292 /* Check POINTER attribute. */
1293 if (r1
->attr
.pointer
!= r2
->attr
.pointer
)
1295 snprintf (errmsg
, err_len
, "POINTER attribute mismatch in "
1300 /* Check CONTIGUOUS attribute. */
1301 if (r1
->attr
.contiguous
!= r2
->attr
.contiguous
)
1303 snprintf (errmsg
, err_len
, "CONTIGUOUS attribute mismatch in "
1308 /* Check PROCEDURE POINTER attribute. */
1309 if (r1
!= s1
&& r1
->attr
.proc_pointer
!= r2
->attr
.proc_pointer
)
1311 snprintf (errmsg
, err_len
, "PROCEDURE POINTER mismatch in "
1316 /* Check string length. */
1317 if (r1
->ts
.type
== BT_CHARACTER
&& r1
->ts
.u
.cl
&& r2
->ts
.u
.cl
)
1319 if (r1
->ts
.deferred
!= r2
->ts
.deferred
)
1321 snprintf (errmsg
, err_len
, "Character length mismatch "
1322 "in function result");
1326 if (r1
->ts
.u
.cl
->length
&& r2
->ts
.u
.cl
->length
)
1328 int compval
= gfc_dep_compare_expr (r1
->ts
.u
.cl
->length
,
1329 r2
->ts
.u
.cl
->length
);
1335 snprintf (errmsg
, err_len
, "Character length mismatch "
1336 "in function result");
1340 /* FIXME: Implement a warning for this case.
1341 snprintf (errmsg, err_len, "Possible character length mismatch "
1342 "in function result");*/
1349 gfc_internal_error ("check_result_characteristics (1): Unexpected "
1350 "result %i of gfc_dep_compare_expr", compval
);
1356 /* Check array shape. */
1357 if (!r1
->attr
.allocatable
&& !r1
->attr
.pointer
&& r1
->as
&& r2
->as
)
1360 gfc_expr
*shape1
, *shape2
;
1362 if (r1
->as
->type
!= r2
->as
->type
)
1364 snprintf (errmsg
, err_len
, "Shape mismatch in function result");
1368 if (r1
->as
->type
== AS_EXPLICIT
)
1369 for (i
= 0; i
< r1
->as
->rank
+ r1
->as
->corank
; i
++)
1371 shape1
= gfc_subtract (gfc_copy_expr (r1
->as
->upper
[i
]),
1372 gfc_copy_expr (r1
->as
->lower
[i
]));
1373 shape2
= gfc_subtract (gfc_copy_expr (r2
->as
->upper
[i
]),
1374 gfc_copy_expr (r2
->as
->lower
[i
]));
1375 compval
= gfc_dep_compare_expr (shape1
, shape2
);
1376 gfc_free_expr (shape1
);
1377 gfc_free_expr (shape2
);
1383 snprintf (errmsg
, err_len
, "Shape mismatch in dimension %i of "
1384 "function result", i
+ 1);
1388 /* FIXME: Implement a warning for this case.
1389 gfc_warning ("Possible shape mismatch in return value");*/
1396 gfc_internal_error ("check_result_characteristics (2): "
1397 "Unexpected result %i of "
1398 "gfc_dep_compare_expr", compval
);
1408 /* 'Compare' two formal interfaces associated with a pair of symbols.
1409 We return nonzero if there exists an actual argument list that
1410 would be ambiguous between the two interfaces, zero otherwise.
1411 'strict_flag' specifies whether all the characteristics are
1412 required to match, which is not the case for ambiguity checks.
1413 'p1' and 'p2' are the PASS arguments of both procedures (if applicable). */
1416 gfc_compare_interfaces (gfc_symbol
*s1
, gfc_symbol
*s2
, const char *name2
,
1417 int generic_flag
, int strict_flag
,
1418 char *errmsg
, int err_len
,
1419 const char *p1
, const char *p2
)
1421 gfc_formal_arglist
*f1
, *f2
;
1423 gcc_assert (name2
!= NULL
);
1425 if (s1
->attr
.function
&& (s2
->attr
.subroutine
1426 || (!s2
->attr
.function
&& s2
->ts
.type
== BT_UNKNOWN
1427 && gfc_get_default_type (name2
, s2
->ns
)->type
== BT_UNKNOWN
)))
1430 snprintf (errmsg
, err_len
, "'%s' is not a function", name2
);
1434 if (s1
->attr
.subroutine
&& s2
->attr
.function
)
1437 snprintf (errmsg
, err_len
, "'%s' is not a subroutine", name2
);
1441 /* Do strict checks on all characteristics
1442 (for dummy procedures and procedure pointer assignments). */
1443 if (!generic_flag
&& strict_flag
)
1445 if (s1
->attr
.function
&& s2
->attr
.function
)
1447 /* If both are functions, check result characteristics. */
1448 if (!check_result_characteristics (s1
, s2
, errmsg
, err_len
)
1449 || !check_result_characteristics (s2
, s1
, errmsg
, err_len
))
1453 if (s1
->attr
.pure
&& !s2
->attr
.pure
)
1455 snprintf (errmsg
, err_len
, "Mismatch in PURE attribute");
1458 if (s1
->attr
.elemental
&& !s2
->attr
.elemental
)
1460 snprintf (errmsg
, err_len
, "Mismatch in ELEMENTAL attribute");
1465 if (s1
->attr
.if_source
== IFSRC_UNKNOWN
1466 || s2
->attr
.if_source
== IFSRC_UNKNOWN
)
1469 f1
= gfc_sym_get_dummy_args (s1
);
1470 f2
= gfc_sym_get_dummy_args (s2
);
1472 if (f1
== NULL
&& f2
== NULL
)
1473 return 1; /* Special case: No arguments. */
1477 if (count_types_test (f1
, f2
, p1
, p2
)
1478 || count_types_test (f2
, f1
, p2
, p1
))
1480 if (generic_correspondence (f1
, f2
, p1
, p2
)
1481 || generic_correspondence (f2
, f1
, p2
, p1
))
1485 /* Perform the abbreviated correspondence test for operators (the
1486 arguments cannot be optional and are always ordered correctly).
1487 This is also done when comparing interfaces for dummy procedures and in
1488 procedure pointer assignments. */
1492 /* Check existence. */
1493 if (f1
== NULL
&& f2
== NULL
)
1495 if (f1
== NULL
|| f2
== NULL
)
1498 snprintf (errmsg
, err_len
, "'%s' has the wrong number of "
1499 "arguments", name2
);
1503 if (UNLIMITED_POLY (f1
->sym
))
1508 /* Check all characteristics. */
1509 if (!check_dummy_characteristics (f1
->sym
, f2
->sym
, true,
1515 /* Only check type and rank. */
1516 if (!compare_type (f2
->sym
, f1
->sym
))
1519 snprintf (errmsg
, err_len
, "Type mismatch in argument '%s' "
1520 "(%s/%s)", f1
->sym
->name
,
1521 gfc_typename (&f1
->sym
->ts
),
1522 gfc_typename (&f2
->sym
->ts
));
1525 if (!compare_rank (f2
->sym
, f1
->sym
))
1528 snprintf (errmsg
, err_len
, "Rank mismatch in argument '%s' "
1529 "(%i/%i)", f1
->sym
->name
, symbol_rank (f1
->sym
),
1530 symbol_rank (f2
->sym
));
1543 /* Given a pointer to an interface pointer, remove duplicate
1544 interfaces and make sure that all symbols are either functions
1545 or subroutines, and all of the same kind. Returns nonzero if
1546 something goes wrong. */
1549 check_interface0 (gfc_interface
*p
, const char *interface_name
)
1551 gfc_interface
*psave
, *q
, *qlast
;
1554 for (; p
; p
= p
->next
)
1556 /* Make sure all symbols in the interface have been defined as
1557 functions or subroutines. */
1558 if (((!p
->sym
->attr
.function
&& !p
->sym
->attr
.subroutine
)
1559 || !p
->sym
->attr
.if_source
)
1560 && p
->sym
->attr
.flavor
!= FL_DERIVED
)
1562 if (p
->sym
->attr
.external
)
1563 gfc_error ("Procedure '%s' in %s at %L has no explicit interface",
1564 p
->sym
->name
, interface_name
, &p
->sym
->declared_at
);
1566 gfc_error ("Procedure '%s' in %s at %L is neither function nor "
1567 "subroutine", p
->sym
->name
, interface_name
,
1568 &p
->sym
->declared_at
);
1572 /* Verify that procedures are either all SUBROUTINEs or all FUNCTIONs. */
1573 if ((psave
->sym
->attr
.function
&& !p
->sym
->attr
.function
1574 && p
->sym
->attr
.flavor
!= FL_DERIVED
)
1575 || (psave
->sym
->attr
.subroutine
&& !p
->sym
->attr
.subroutine
))
1577 if (p
->sym
->attr
.flavor
!= FL_DERIVED
)
1578 gfc_error ("In %s at %L procedures must be either all SUBROUTINEs"
1579 " or all FUNCTIONs", interface_name
,
1580 &p
->sym
->declared_at
);
1582 gfc_error ("In %s at %L procedures must be all FUNCTIONs as the "
1583 "generic name is also the name of a derived type",
1584 interface_name
, &p
->sym
->declared_at
);
1588 /* F2003, C1207. F2008, C1207. */
1589 if (p
->sym
->attr
.proc
== PROC_INTERNAL
1590 && !gfc_notify_std (GFC_STD_F2008
, "Internal procedure "
1591 "'%s' in %s at %L", p
->sym
->name
,
1592 interface_name
, &p
->sym
->declared_at
))
1597 /* Remove duplicate interfaces in this interface list. */
1598 for (; p
; p
= p
->next
)
1602 for (q
= p
->next
; q
;)
1604 if (p
->sym
!= q
->sym
)
1611 /* Duplicate interface. */
1612 qlast
->next
= q
->next
;
1623 /* Check lists of interfaces to make sure that no two interfaces are
1624 ambiguous. Duplicate interfaces (from the same symbol) are OK here. */
1627 check_interface1 (gfc_interface
*p
, gfc_interface
*q0
,
1628 int generic_flag
, const char *interface_name
,
1632 for (; p
; p
= p
->next
)
1633 for (q
= q0
; q
; q
= q
->next
)
1635 if (p
->sym
== q
->sym
)
1636 continue; /* Duplicates OK here. */
1638 if (p
->sym
->name
== q
->sym
->name
&& p
->sym
->module
== q
->sym
->module
)
1641 if (p
->sym
->attr
.flavor
!= FL_DERIVED
1642 && q
->sym
->attr
.flavor
!= FL_DERIVED
1643 && gfc_compare_interfaces (p
->sym
, q
->sym
, q
->sym
->name
,
1644 generic_flag
, 0, NULL
, 0, NULL
, NULL
))
1647 gfc_error ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1648 p
->sym
->name
, q
->sym
->name
, interface_name
,
1650 else if (!p
->sym
->attr
.use_assoc
&& q
->sym
->attr
.use_assoc
)
1651 gfc_warning ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1652 p
->sym
->name
, q
->sym
->name
, interface_name
,
1655 gfc_warning ("Although not referenced, '%s' has ambiguous "
1656 "interfaces at %L", interface_name
, &p
->where
);
1664 /* Check the generic and operator interfaces of symbols to make sure
1665 that none of the interfaces conflict. The check has to be done
1666 after all of the symbols are actually loaded. */
1669 check_sym_interfaces (gfc_symbol
*sym
)
1671 char interface_name
[100];
1674 if (sym
->ns
!= gfc_current_ns
)
1677 if (sym
->generic
!= NULL
)
1679 sprintf (interface_name
, "generic interface '%s'", sym
->name
);
1680 if (check_interface0 (sym
->generic
, interface_name
))
1683 for (p
= sym
->generic
; p
; p
= p
->next
)
1685 if (p
->sym
->attr
.mod_proc
1686 && (p
->sym
->attr
.if_source
!= IFSRC_DECL
1687 || p
->sym
->attr
.procedure
))
1689 gfc_error ("'%s' at %L is not a module procedure",
1690 p
->sym
->name
, &p
->where
);
1695 /* Originally, this test was applied to host interfaces too;
1696 this is incorrect since host associated symbols, from any
1697 source, cannot be ambiguous with local symbols. */
1698 check_interface1 (sym
->generic
, sym
->generic
, 1, interface_name
,
1699 sym
->attr
.referenced
|| !sym
->attr
.use_assoc
);
1705 check_uop_interfaces (gfc_user_op
*uop
)
1707 char interface_name
[100];
1711 sprintf (interface_name
, "operator interface '%s'", uop
->name
);
1712 if (check_interface0 (uop
->op
, interface_name
))
1715 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
1717 uop2
= gfc_find_uop (uop
->name
, ns
);
1721 check_interface1 (uop
->op
, uop2
->op
, 0,
1722 interface_name
, true);
1726 /* Given an intrinsic op, return an equivalent op if one exists,
1727 or INTRINSIC_NONE otherwise. */
1730 gfc_equivalent_op (gfc_intrinsic_op op
)
1735 return INTRINSIC_EQ_OS
;
1737 case INTRINSIC_EQ_OS
:
1738 return INTRINSIC_EQ
;
1741 return INTRINSIC_NE_OS
;
1743 case INTRINSIC_NE_OS
:
1744 return INTRINSIC_NE
;
1747 return INTRINSIC_GT_OS
;
1749 case INTRINSIC_GT_OS
:
1750 return INTRINSIC_GT
;
1753 return INTRINSIC_GE_OS
;
1755 case INTRINSIC_GE_OS
:
1756 return INTRINSIC_GE
;
1759 return INTRINSIC_LT_OS
;
1761 case INTRINSIC_LT_OS
:
1762 return INTRINSIC_LT
;
1765 return INTRINSIC_LE_OS
;
1767 case INTRINSIC_LE_OS
:
1768 return INTRINSIC_LE
;
1771 return INTRINSIC_NONE
;
1775 /* For the namespace, check generic, user operator and intrinsic
1776 operator interfaces for consistency and to remove duplicate
1777 interfaces. We traverse the whole namespace, counting on the fact
1778 that most symbols will not have generic or operator interfaces. */
1781 gfc_check_interfaces (gfc_namespace
*ns
)
1783 gfc_namespace
*old_ns
, *ns2
;
1784 char interface_name
[100];
1787 old_ns
= gfc_current_ns
;
1788 gfc_current_ns
= ns
;
1790 gfc_traverse_ns (ns
, check_sym_interfaces
);
1792 gfc_traverse_user_op (ns
, check_uop_interfaces
);
1794 for (i
= GFC_INTRINSIC_BEGIN
; i
!= GFC_INTRINSIC_END
; i
++)
1796 if (i
== INTRINSIC_USER
)
1799 if (i
== INTRINSIC_ASSIGN
)
1800 strcpy (interface_name
, "intrinsic assignment operator");
1802 sprintf (interface_name
, "intrinsic '%s' operator",
1803 gfc_op2string ((gfc_intrinsic_op
) i
));
1805 if (check_interface0 (ns
->op
[i
], interface_name
))
1809 gfc_check_operator_interface (ns
->op
[i
]->sym
, (gfc_intrinsic_op
) i
,
1812 for (ns2
= ns
; ns2
; ns2
= ns2
->parent
)
1814 gfc_intrinsic_op other_op
;
1816 if (check_interface1 (ns
->op
[i
], ns2
->op
[i
], 0,
1817 interface_name
, true))
1820 /* i should be gfc_intrinsic_op, but has to be int with this cast
1821 here for stupid C++ compatibility rules. */
1822 other_op
= gfc_equivalent_op ((gfc_intrinsic_op
) i
);
1823 if (other_op
!= INTRINSIC_NONE
1824 && check_interface1 (ns
->op
[i
], ns2
->op
[other_op
],
1825 0, interface_name
, true))
1831 gfc_current_ns
= old_ns
;
1835 /* Given a symbol of a formal argument list and an expression, if the
1836 formal argument is allocatable, check that the actual argument is
1837 allocatable. Returns nonzero if compatible, zero if not compatible. */
1840 compare_allocatable (gfc_symbol
*formal
, gfc_expr
*actual
)
1842 symbol_attribute attr
;
1844 if (formal
->attr
.allocatable
1845 || (formal
->ts
.type
== BT_CLASS
&& CLASS_DATA (formal
)->attr
.allocatable
))
1847 attr
= gfc_expr_attr (actual
);
1848 if (!attr
.allocatable
)
1856 /* Given a symbol of a formal argument list and an expression, if the
1857 formal argument is a pointer, see if the actual argument is a
1858 pointer. Returns nonzero if compatible, zero if not compatible. */
1861 compare_pointer (gfc_symbol
*formal
, gfc_expr
*actual
)
1863 symbol_attribute attr
;
1865 if (formal
->attr
.pointer
1866 || (formal
->ts
.type
== BT_CLASS
&& CLASS_DATA (formal
)
1867 && CLASS_DATA (formal
)->attr
.class_pointer
))
1869 attr
= gfc_expr_attr (actual
);
1871 /* Fortran 2008 allows non-pointer actual arguments. */
1872 if (!attr
.pointer
&& attr
.target
&& formal
->attr
.intent
== INTENT_IN
)
1883 /* Emit clear error messages for rank mismatch. */
1886 argument_rank_mismatch (const char *name
, locus
*where
,
1887 int rank1
, int rank2
)
1890 /* TS 29113, C407b. */
1893 gfc_error ("The assumed-rank array at %L requires that the dummy argument"
1894 " '%s' has assumed-rank", where
, name
);
1896 else if (rank1
== 0)
1898 gfc_error ("Rank mismatch in argument '%s' at %L "
1899 "(scalar and rank-%d)", name
, where
, rank2
);
1901 else if (rank2
== 0)
1903 gfc_error ("Rank mismatch in argument '%s' at %L "
1904 "(rank-%d and scalar)", name
, where
, rank1
);
1908 gfc_error ("Rank mismatch in argument '%s' at %L "
1909 "(rank-%d and rank-%d)", name
, where
, rank1
, rank2
);
1914 /* Given a symbol of a formal argument list and an expression, see if
1915 the two are compatible as arguments. Returns nonzero if
1916 compatible, zero if not compatible. */
1919 compare_parameter (gfc_symbol
*formal
, gfc_expr
*actual
,
1920 int ranks_must_agree
, int is_elemental
, locus
*where
)
1923 bool rank_check
, is_pointer
;
1925 /* If the formal arg has type BT_VOID, it's to one of the iso_c_binding
1926 procs c_f_pointer or c_f_procpointer, and we need to accept most
1927 pointers the user could give us. This should allow that. */
1928 if (formal
->ts
.type
== BT_VOID
)
1931 if (formal
->ts
.type
== BT_DERIVED
1932 && formal
->ts
.u
.derived
&& formal
->ts
.u
.derived
->ts
.is_iso_c
1933 && actual
->ts
.type
== BT_DERIVED
1934 && actual
->ts
.u
.derived
&& actual
->ts
.u
.derived
->ts
.is_iso_c
)
1937 if (formal
->ts
.type
== BT_CLASS
&& actual
->ts
.type
== BT_DERIVED
)
1938 /* Make sure the vtab symbol is present when
1939 the module variables are generated. */
1940 gfc_find_derived_vtab (actual
->ts
.u
.derived
);
1942 if (actual
->ts
.type
== BT_PROCEDURE
)
1945 gfc_symbol
*act_sym
= actual
->symtree
->n
.sym
;
1947 if (formal
->attr
.flavor
!= FL_PROCEDURE
)
1950 gfc_error ("Invalid procedure argument at %L", &actual
->where
);
1954 if (!gfc_compare_interfaces (formal
, act_sym
, act_sym
->name
, 0, 1, err
,
1955 sizeof(err
), NULL
, NULL
))
1958 gfc_error ("Interface mismatch in dummy procedure '%s' at %L: %s",
1959 formal
->name
, &actual
->where
, err
);
1963 if (formal
->attr
.function
&& !act_sym
->attr
.function
)
1965 gfc_add_function (&act_sym
->attr
, act_sym
->name
,
1966 &act_sym
->declared_at
);
1967 if (act_sym
->ts
.type
== BT_UNKNOWN
1968 && !gfc_set_default_type (act_sym
, 1, act_sym
->ns
))
1971 else if (formal
->attr
.subroutine
&& !act_sym
->attr
.subroutine
)
1972 gfc_add_subroutine (&act_sym
->attr
, act_sym
->name
,
1973 &act_sym
->declared_at
);
1979 if (formal
->attr
.pointer
&& formal
->attr
.contiguous
1980 && !gfc_is_simply_contiguous (actual
, true))
1983 gfc_error ("Actual argument to contiguous pointer dummy '%s' at %L "
1984 "must be simply contiguous", formal
->name
, &actual
->where
);
1988 if ((actual
->expr_type
!= EXPR_NULL
|| actual
->ts
.type
!= BT_UNKNOWN
)
1989 && actual
->ts
.type
!= BT_HOLLERITH
1990 && formal
->ts
.type
!= BT_ASSUMED
1991 && !(formal
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
))
1992 && !gfc_compare_types (&formal
->ts
, &actual
->ts
)
1993 && !(formal
->ts
.type
== BT_DERIVED
&& actual
->ts
.type
== BT_CLASS
1994 && gfc_compare_derived_types (formal
->ts
.u
.derived
,
1995 CLASS_DATA (actual
)->ts
.u
.derived
)))
1998 gfc_error ("Type mismatch in argument '%s' at %L; passed %s to %s",
1999 formal
->name
, &actual
->where
, gfc_typename (&actual
->ts
),
2000 gfc_typename (&formal
->ts
));
2004 if (actual
->ts
.type
== BT_ASSUMED
&& formal
->ts
.type
!= BT_ASSUMED
)
2007 gfc_error ("Assumed-type actual argument at %L requires that dummy "
2008 "argument '%s' is of assumed type", &actual
->where
,
2013 /* F2008, 12.5.2.5; IR F08/0073. */
2014 if (formal
->ts
.type
== BT_CLASS
&& formal
->attr
.class_ok
2015 && actual
->expr_type
!= EXPR_NULL
2016 && ((CLASS_DATA (formal
)->attr
.class_pointer
2017 && formal
->attr
.intent
!= INTENT_IN
)
2018 || CLASS_DATA (formal
)->attr
.allocatable
))
2020 if (actual
->ts
.type
!= BT_CLASS
)
2023 gfc_error ("Actual argument to '%s' at %L must be polymorphic",
2024 formal
->name
, &actual
->where
);
2028 if (!gfc_expr_attr (actual
).class_ok
)
2031 if ((!UNLIMITED_POLY (formal
) || !UNLIMITED_POLY(actual
))
2032 && !gfc_compare_derived_types (CLASS_DATA (actual
)->ts
.u
.derived
,
2033 CLASS_DATA (formal
)->ts
.u
.derived
))
2036 gfc_error ("Actual argument to '%s' at %L must have the same "
2037 "declared type", formal
->name
, &actual
->where
);
2042 /* F08: 12.5.2.5 Allocatable and pointer dummy variables. However, this
2043 is necessary also for F03, so retain error for both.
2044 NOTE: Other type/kind errors pre-empt this error. Since they are F03
2045 compatible, no attempt has been made to channel to this one. */
2046 if (UNLIMITED_POLY (formal
) && !UNLIMITED_POLY (actual
)
2047 && (CLASS_DATA (formal
)->attr
.allocatable
2048 ||CLASS_DATA (formal
)->attr
.class_pointer
))
2051 gfc_error ("Actual argument to '%s' at %L must be unlimited "
2052 "polymorphic since the formal argument is a "
2053 "pointer or allocatable unlimited polymorphic "
2054 "entity [F2008: 12.5.2.5]", formal
->name
,
2059 if (formal
->attr
.codimension
&& !gfc_is_coarray (actual
))
2062 gfc_error ("Actual argument to '%s' at %L must be a coarray",
2063 formal
->name
, &actual
->where
);
2067 if (formal
->attr
.codimension
&& formal
->attr
.allocatable
)
2069 gfc_ref
*last
= NULL
;
2071 for (ref
= actual
->ref
; ref
; ref
= ref
->next
)
2072 if (ref
->type
== REF_COMPONENT
)
2075 /* F2008, 12.5.2.6. */
2076 if ((last
&& last
->u
.c
.component
->as
->corank
!= formal
->as
->corank
)
2078 && actual
->symtree
->n
.sym
->as
->corank
!= formal
->as
->corank
))
2081 gfc_error ("Corank mismatch in argument '%s' at %L (%d and %d)",
2082 formal
->name
, &actual
->where
, formal
->as
->corank
,
2083 last
? last
->u
.c
.component
->as
->corank
2084 : actual
->symtree
->n
.sym
->as
->corank
);
2089 if (formal
->attr
.codimension
)
2091 /* F2008, 12.5.2.8. */
2092 if (formal
->attr
.dimension
2093 && (formal
->attr
.contiguous
|| formal
->as
->type
!= AS_ASSUMED_SHAPE
)
2094 && gfc_expr_attr (actual
).dimension
2095 && !gfc_is_simply_contiguous (actual
, true))
2098 gfc_error ("Actual argument to '%s' at %L must be simply "
2099 "contiguous", formal
->name
, &actual
->where
);
2103 /* F2008, C1303 and C1304. */
2104 if (formal
->attr
.intent
!= INTENT_INOUT
2105 && (((formal
->ts
.type
== BT_DERIVED
|| formal
->ts
.type
== BT_CLASS
)
2106 && formal
->ts
.u
.derived
->from_intmod
== INTMOD_ISO_FORTRAN_ENV
2107 && formal
->ts
.u
.derived
->intmod_sym_id
== ISOFORTRAN_LOCK_TYPE
)
2108 || formal
->attr
.lock_comp
))
2112 gfc_error ("Actual argument to non-INTENT(INOUT) dummy '%s' at %L, "
2113 "which is LOCK_TYPE or has a LOCK_TYPE component",
2114 formal
->name
, &actual
->where
);
2119 /* F2008, C1239/C1240. */
2120 if (actual
->expr_type
== EXPR_VARIABLE
2121 && (actual
->symtree
->n
.sym
->attr
.asynchronous
2122 || actual
->symtree
->n
.sym
->attr
.volatile_
)
2123 && (formal
->attr
.asynchronous
|| formal
->attr
.volatile_
)
2124 && actual
->rank
&& formal
->as
&& !gfc_is_simply_contiguous (actual
, true)
2125 && ((formal
->as
->type
!= AS_ASSUMED_SHAPE
2126 && formal
->as
->type
!= AS_ASSUMED_RANK
&& !formal
->attr
.pointer
)
2127 || formal
->attr
.contiguous
))
2130 gfc_error ("Dummy argument '%s' has to be a pointer, assumed-shape or "
2131 "assumed-rank array without CONTIGUOUS attribute - as actual"
2132 " argument at %L is not simply contiguous and both are "
2133 "ASYNCHRONOUS or VOLATILE", formal
->name
, &actual
->where
);
2137 if (formal
->attr
.allocatable
&& !formal
->attr
.codimension
2138 && gfc_expr_attr (actual
).codimension
)
2140 if (formal
->attr
.intent
== INTENT_OUT
)
2143 gfc_error ("Passing coarray at %L to allocatable, noncoarray, "
2144 "INTENT(OUT) dummy argument '%s'", &actual
->where
,
2148 else if (gfc_option
.warn_surprising
&& where
2149 && formal
->attr
.intent
!= INTENT_IN
)
2150 gfc_warning ("Passing coarray at %L to allocatable, noncoarray dummy "
2151 "argument '%s', which is invalid if the allocation status"
2152 " is modified", &actual
->where
, formal
->name
);
2155 /* If the rank is the same or the formal argument has assumed-rank. */
2156 if (symbol_rank (formal
) == actual
->rank
|| symbol_rank (formal
) == -1)
2159 if (actual
->ts
.type
== BT_CLASS
&& CLASS_DATA (actual
)->as
2160 && CLASS_DATA (actual
)->as
->rank
== symbol_rank (formal
))
2163 rank_check
= where
!= NULL
&& !is_elemental
&& formal
->as
2164 && (formal
->as
->type
== AS_ASSUMED_SHAPE
2165 || formal
->as
->type
== AS_DEFERRED
)
2166 && actual
->expr_type
!= EXPR_NULL
;
2168 /* Skip rank checks for NO_ARG_CHECK. */
2169 if (formal
->attr
.ext_attr
& (1 << EXT_ATTR_NO_ARG_CHECK
))
2172 /* Scalar & coindexed, see: F2008, Section 12.5.2.4. */
2173 if (rank_check
|| ranks_must_agree
2174 || (formal
->attr
.pointer
&& actual
->expr_type
!= EXPR_NULL
)
2175 || (actual
->rank
!= 0 && !(is_elemental
|| formal
->attr
.dimension
))
2176 || (actual
->rank
== 0
2177 && ((formal
->ts
.type
== BT_CLASS
2178 && CLASS_DATA (formal
)->as
->type
== AS_ASSUMED_SHAPE
)
2179 || (formal
->ts
.type
!= BT_CLASS
2180 && formal
->as
->type
== AS_ASSUMED_SHAPE
))
2181 && actual
->expr_type
!= EXPR_NULL
)
2182 || (actual
->rank
== 0 && formal
->attr
.dimension
2183 && gfc_is_coindexed (actual
)))
2186 argument_rank_mismatch (formal
->name
, &actual
->where
,
2187 symbol_rank (formal
), actual
->rank
);
2190 else if (actual
->rank
!= 0 && (is_elemental
|| formal
->attr
.dimension
))
2193 /* At this point, we are considering a scalar passed to an array. This
2194 is valid (cf. F95 12.4.1.1, F2003 12.4.1.2, and F2008 12.5.2.4),
2195 - if the actual argument is (a substring of) an element of a
2196 non-assumed-shape/non-pointer/non-polymorphic array; or
2197 - (F2003) if the actual argument is of type character of default/c_char
2200 is_pointer
= actual
->expr_type
== EXPR_VARIABLE
2201 ? actual
->symtree
->n
.sym
->attr
.pointer
: false;
2203 for (ref
= actual
->ref
; ref
; ref
= ref
->next
)
2205 if (ref
->type
== REF_COMPONENT
)
2206 is_pointer
= ref
->u
.c
.component
->attr
.pointer
;
2207 else if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.type
== AR_ELEMENT
2208 && ref
->u
.ar
.dimen
> 0
2210 || (ref
->next
->type
== REF_SUBSTRING
&& !ref
->next
->next
)))
2214 if (actual
->ts
.type
== BT_CLASS
&& actual
->expr_type
!= EXPR_NULL
)
2217 gfc_error ("Polymorphic scalar passed to array dummy argument '%s' "
2218 "at %L", formal
->name
, &actual
->where
);
2222 if (actual
->expr_type
!= EXPR_NULL
&& ref
&& actual
->ts
.type
!= BT_CHARACTER
2223 && (is_pointer
|| ref
->u
.ar
.as
->type
== AS_ASSUMED_SHAPE
))
2226 gfc_error ("Element of assumed-shaped or pointer "
2227 "array passed to array dummy argument '%s' at %L",
2228 formal
->name
, &actual
->where
);
2232 if (actual
->ts
.type
== BT_CHARACTER
&& actual
->expr_type
!= EXPR_NULL
2233 && (!ref
|| is_pointer
|| ref
->u
.ar
.as
->type
== AS_ASSUMED_SHAPE
))
2235 if (formal
->ts
.kind
!= 1 && (gfc_option
.allow_std
& GFC_STD_GNU
) == 0)
2238 gfc_error ("Extension: Scalar non-default-kind, non-C_CHAR-kind "
2239 "CHARACTER actual argument with array dummy argument "
2240 "'%s' at %L", formal
->name
, &actual
->where
);
2244 if (where
&& (gfc_option
.allow_std
& GFC_STD_F2003
) == 0)
2246 gfc_error ("Fortran 2003: Scalar CHARACTER actual argument with "
2247 "array dummy argument '%s' at %L",
2248 formal
->name
, &actual
->where
);
2251 else if ((gfc_option
.allow_std
& GFC_STD_F2003
) == 0)
2257 if (ref
== NULL
&& actual
->expr_type
!= EXPR_NULL
)
2260 argument_rank_mismatch (formal
->name
, &actual
->where
,
2261 symbol_rank (formal
), actual
->rank
);
2269 /* Returns the storage size of a symbol (formal argument) or
2270 zero if it cannot be determined. */
2272 static unsigned long
2273 get_sym_storage_size (gfc_symbol
*sym
)
2276 unsigned long strlen
, elements
;
2278 if (sym
->ts
.type
== BT_CHARACTER
)
2280 if (sym
->ts
.u
.cl
&& sym
->ts
.u
.cl
->length
2281 && sym
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
2282 strlen
= mpz_get_ui (sym
->ts
.u
.cl
->length
->value
.integer
);
2289 if (symbol_rank (sym
) == 0)
2293 if (sym
->as
->type
!= AS_EXPLICIT
)
2295 for (i
= 0; i
< sym
->as
->rank
; i
++)
2297 if (sym
->as
->upper
[i
]->expr_type
!= EXPR_CONSTANT
2298 || sym
->as
->lower
[i
]->expr_type
!= EXPR_CONSTANT
)
2301 elements
*= mpz_get_si (sym
->as
->upper
[i
]->value
.integer
)
2302 - mpz_get_si (sym
->as
->lower
[i
]->value
.integer
) + 1L;
2305 return strlen
*elements
;
2309 /* Returns the storage size of an expression (actual argument) or
2310 zero if it cannot be determined. For an array element, it returns
2311 the remaining size as the element sequence consists of all storage
2312 units of the actual argument up to the end of the array. */
2314 static unsigned long
2315 get_expr_storage_size (gfc_expr
*e
)
2318 long int strlen
, elements
;
2319 long int substrlen
= 0;
2320 bool is_str_storage
= false;
2326 if (e
->ts
.type
== BT_CHARACTER
)
2328 if (e
->ts
.u
.cl
&& e
->ts
.u
.cl
->length
2329 && e
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
)
2330 strlen
= mpz_get_si (e
->ts
.u
.cl
->length
->value
.integer
);
2331 else if (e
->expr_type
== EXPR_CONSTANT
2332 && (e
->ts
.u
.cl
== NULL
|| e
->ts
.u
.cl
->length
== NULL
))
2333 strlen
= e
->value
.character
.length
;
2338 strlen
= 1; /* Length per element. */
2340 if (e
->rank
== 0 && !e
->ref
)
2348 for (i
= 0; i
< e
->rank
; i
++)
2349 elements
*= mpz_get_si (e
->shape
[i
]);
2350 return elements
*strlen
;
2353 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
2355 if (ref
->type
== REF_SUBSTRING
&& ref
->u
.ss
.start
2356 && ref
->u
.ss
.start
->expr_type
== EXPR_CONSTANT
)
2360 /* The string length is the substring length.
2361 Set now to full string length. */
2362 if (!ref
->u
.ss
.length
|| !ref
->u
.ss
.length
->length
2363 || ref
->u
.ss
.length
->length
->expr_type
!= EXPR_CONSTANT
)
2366 strlen
= mpz_get_ui (ref
->u
.ss
.length
->length
->value
.integer
);
2368 substrlen
= strlen
- mpz_get_ui (ref
->u
.ss
.start
->value
.integer
) + 1;
2372 if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.type
== AR_SECTION
)
2373 for (i
= 0; i
< ref
->u
.ar
.dimen
; i
++)
2375 long int start
, end
, stride
;
2378 if (ref
->u
.ar
.stride
[i
])
2380 if (ref
->u
.ar
.stride
[i
]->expr_type
== EXPR_CONSTANT
)
2381 stride
= mpz_get_si (ref
->u
.ar
.stride
[i
]->value
.integer
);
2386 if (ref
->u
.ar
.start
[i
])
2388 if (ref
->u
.ar
.start
[i
]->expr_type
== EXPR_CONSTANT
)
2389 start
= mpz_get_si (ref
->u
.ar
.start
[i
]->value
.integer
);
2393 else if (ref
->u
.ar
.as
->lower
[i
]
2394 && ref
->u
.ar
.as
->lower
[i
]->expr_type
== EXPR_CONSTANT
)
2395 start
= mpz_get_si (ref
->u
.ar
.as
->lower
[i
]->value
.integer
);
2399 if (ref
->u
.ar
.end
[i
])
2401 if (ref
->u
.ar
.end
[i
]->expr_type
== EXPR_CONSTANT
)
2402 end
= mpz_get_si (ref
->u
.ar
.end
[i
]->value
.integer
);
2406 else if (ref
->u
.ar
.as
->upper
[i
]
2407 && ref
->u
.ar
.as
->upper
[i
]->expr_type
== EXPR_CONSTANT
)
2408 end
= mpz_get_si (ref
->u
.ar
.as
->upper
[i
]->value
.integer
);
2412 elements
*= (end
- start
)/stride
+ 1L;
2414 else if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.type
== AR_FULL
)
2415 for (i
= 0; i
< ref
->u
.ar
.as
->rank
; i
++)
2417 if (ref
->u
.ar
.as
->lower
[i
] && ref
->u
.ar
.as
->upper
[i
]
2418 && ref
->u
.ar
.as
->lower
[i
]->expr_type
== EXPR_CONSTANT
2419 && ref
->u
.ar
.as
->upper
[i
]->expr_type
== EXPR_CONSTANT
)
2420 elements
*= mpz_get_si (ref
->u
.ar
.as
->upper
[i
]->value
.integer
)
2421 - mpz_get_si (ref
->u
.ar
.as
->lower
[i
]->value
.integer
)
2426 else if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.type
== AR_ELEMENT
2427 && e
->expr_type
== EXPR_VARIABLE
)
2429 if (ref
->u
.ar
.as
->type
== AS_ASSUMED_SHAPE
2430 || e
->symtree
->n
.sym
->attr
.pointer
)
2436 /* Determine the number of remaining elements in the element
2437 sequence for array element designators. */
2438 is_str_storage
= true;
2439 for (i
= ref
->u
.ar
.dimen
- 1; i
>= 0; i
--)
2441 if (ref
->u
.ar
.start
[i
] == NULL
2442 || ref
->u
.ar
.start
[i
]->expr_type
!= EXPR_CONSTANT
2443 || ref
->u
.ar
.as
->upper
[i
] == NULL
2444 || ref
->u
.ar
.as
->lower
[i
] == NULL
2445 || ref
->u
.ar
.as
->upper
[i
]->expr_type
!= EXPR_CONSTANT
2446 || ref
->u
.ar
.as
->lower
[i
]->expr_type
!= EXPR_CONSTANT
)
2451 * (mpz_get_si (ref
->u
.ar
.as
->upper
[i
]->value
.integer
)
2452 - mpz_get_si (ref
->u
.ar
.as
->lower
[i
]->value
.integer
)
2454 - (mpz_get_si (ref
->u
.ar
.start
[i
]->value
.integer
)
2455 - mpz_get_si (ref
->u
.ar
.as
->lower
[i
]->value
.integer
));
2458 else if (ref
->type
== REF_COMPONENT
&& ref
->u
.c
.component
->attr
.function
2459 && ref
->u
.c
.component
->attr
.proc_pointer
2460 && ref
->u
.c
.component
->attr
.dimension
)
2462 /* Array-valued procedure-pointer components. */
2463 gfc_array_spec
*as
= ref
->u
.c
.component
->as
;
2464 for (i
= 0; i
< as
->rank
; i
++)
2466 if (!as
->upper
[i
] || !as
->lower
[i
]
2467 || as
->upper
[i
]->expr_type
!= EXPR_CONSTANT
2468 || as
->lower
[i
]->expr_type
!= EXPR_CONSTANT
)
2472 * (mpz_get_si (as
->upper
[i
]->value
.integer
)
2473 - mpz_get_si (as
->lower
[i
]->value
.integer
) + 1L);
2479 return (is_str_storage
) ? substrlen
+ (elements
-1)*strlen
2482 return elements
*strlen
;
2486 /* Given an expression, check whether it is an array section
2487 which has a vector subscript. If it has, one is returned,
2491 gfc_has_vector_subscript (gfc_expr
*e
)
2496 if (e
== NULL
|| e
->rank
== 0 || e
->expr_type
!= EXPR_VARIABLE
)
2499 for (ref
= e
->ref
; ref
; ref
= ref
->next
)
2500 if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.type
== AR_SECTION
)
2501 for (i
= 0; i
< ref
->u
.ar
.dimen
; i
++)
2502 if (ref
->u
.ar
.dimen_type
[i
] == DIMEN_VECTOR
)
2509 /* Given formal and actual argument lists, see if they are compatible.
2510 If they are compatible, the actual argument list is sorted to
2511 correspond with the formal list, and elements for missing optional
2512 arguments are inserted. If WHERE pointer is nonnull, then we issue
2513 errors when things don't match instead of just returning the status
2517 compare_actual_formal (gfc_actual_arglist
**ap
, gfc_formal_arglist
*formal
,
2518 int ranks_must_agree
, int is_elemental
, locus
*where
)
2520 gfc_actual_arglist
**new_arg
, *a
, *actual
, temp
;
2521 gfc_formal_arglist
*f
;
2523 unsigned long actual_size
, formal_size
;
2524 bool full_array
= false;
2528 if (actual
== NULL
&& formal
== NULL
)
2532 for (f
= formal
; f
; f
= f
->next
)
2535 new_arg
= XALLOCAVEC (gfc_actual_arglist
*, n
);
2537 for (i
= 0; i
< n
; i
++)
2544 for (a
= actual
; a
; a
= a
->next
, f
= f
->next
)
2546 /* Look for keywords but ignore g77 extensions like %VAL. */
2547 if (a
->name
!= NULL
&& a
->name
[0] != '%')
2550 for (f
= formal
; f
; f
= f
->next
, i
++)
2554 if (strcmp (f
->sym
->name
, a
->name
) == 0)
2561 gfc_error ("Keyword argument '%s' at %L is not in "
2562 "the procedure", a
->name
, &a
->expr
->where
);
2566 if (new_arg
[i
] != NULL
)
2569 gfc_error ("Keyword argument '%s' at %L is already associated "
2570 "with another actual argument", a
->name
,
2579 gfc_error ("More actual than formal arguments in procedure "
2580 "call at %L", where
);
2585 if (f
->sym
== NULL
&& a
->expr
== NULL
)
2591 gfc_error ("Missing alternate return spec in subroutine call "
2596 if (a
->expr
== NULL
)
2599 gfc_error ("Unexpected alternate return spec in subroutine "
2600 "call at %L", where
);
2604 /* Make sure that intrinsic vtables exist for calls to unlimited
2605 polymorphic formal arguments. */
2606 if (UNLIMITED_POLY (f
->sym
)
2607 && a
->expr
->ts
.type
!= BT_DERIVED
2608 && a
->expr
->ts
.type
!= BT_CLASS
)
2609 gfc_find_vtab (&a
->expr
->ts
);
2611 if (a
->expr
->expr_type
== EXPR_NULL
2612 && ((f
->sym
->ts
.type
!= BT_CLASS
&& !f
->sym
->attr
.pointer
2613 && (f
->sym
->attr
.allocatable
|| !f
->sym
->attr
.optional
2614 || (gfc_option
.allow_std
& GFC_STD_F2008
) == 0))
2615 || (f
->sym
->ts
.type
== BT_CLASS
2616 && !CLASS_DATA (f
->sym
)->attr
.class_pointer
2617 && (CLASS_DATA (f
->sym
)->attr
.allocatable
2618 || !f
->sym
->attr
.optional
2619 || (gfc_option
.allow_std
& GFC_STD_F2008
) == 0))))
2622 && (!f
->sym
->attr
.optional
2623 || (f
->sym
->ts
.type
!= BT_CLASS
&& f
->sym
->attr
.allocatable
)
2624 || (f
->sym
->ts
.type
== BT_CLASS
2625 && CLASS_DATA (f
->sym
)->attr
.allocatable
)))
2626 gfc_error ("Unexpected NULL() intrinsic at %L to dummy '%s'",
2627 where
, f
->sym
->name
);
2629 gfc_error ("Fortran 2008: Null pointer at %L to non-pointer "
2630 "dummy '%s'", where
, f
->sym
->name
);
2635 if (!compare_parameter (f
->sym
, a
->expr
, ranks_must_agree
,
2636 is_elemental
, where
))
2639 /* TS 29113, 6.3p2. */
2640 if (f
->sym
->ts
.type
== BT_ASSUMED
2641 && (a
->expr
->ts
.type
== BT_DERIVED
2642 || (a
->expr
->ts
.type
== BT_CLASS
&& CLASS_DATA (a
->expr
))))
2644 gfc_namespace
*f2k_derived
;
2646 f2k_derived
= a
->expr
->ts
.type
== BT_DERIVED
2647 ? a
->expr
->ts
.u
.derived
->f2k_derived
2648 : CLASS_DATA (a
->expr
)->ts
.u
.derived
->f2k_derived
;
2651 && (f2k_derived
->finalizers
|| f2k_derived
->tb_sym_root
))
2653 gfc_error ("Actual argument at %L to assumed-type dummy is of "
2654 "derived type with type-bound or FINAL procedures",
2660 /* Special case for character arguments. For allocatable, pointer
2661 and assumed-shape dummies, the string length needs to match
2663 if (a
->expr
->ts
.type
== BT_CHARACTER
2664 && a
->expr
->ts
.u
.cl
&& a
->expr
->ts
.u
.cl
->length
2665 && a
->expr
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
2666 && f
->sym
->ts
.u
.cl
&& f
->sym
->ts
.u
.cl
&& f
->sym
->ts
.u
.cl
->length
2667 && f
->sym
->ts
.u
.cl
->length
->expr_type
== EXPR_CONSTANT
2668 && (f
->sym
->attr
.pointer
|| f
->sym
->attr
.allocatable
2669 || (f
->sym
->as
&& f
->sym
->as
->type
== AS_ASSUMED_SHAPE
))
2670 && (mpz_cmp (a
->expr
->ts
.u
.cl
->length
->value
.integer
,
2671 f
->sym
->ts
.u
.cl
->length
->value
.integer
) != 0))
2673 if (where
&& (f
->sym
->attr
.pointer
|| f
->sym
->attr
.allocatable
))
2674 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
2675 "argument and pointer or allocatable dummy argument "
2677 mpz_get_si (a
->expr
->ts
.u
.cl
->length
->value
.integer
),
2678 mpz_get_si (f
->sym
->ts
.u
.cl
->length
->value
.integer
),
2679 f
->sym
->name
, &a
->expr
->where
);
2681 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
2682 "argument and assumed-shape dummy argument '%s' "
2684 mpz_get_si (a
->expr
->ts
.u
.cl
->length
->value
.integer
),
2685 mpz_get_si (f
->sym
->ts
.u
.cl
->length
->value
.integer
),
2686 f
->sym
->name
, &a
->expr
->where
);
2690 if ((f
->sym
->attr
.pointer
|| f
->sym
->attr
.allocatable
)
2691 && f
->sym
->ts
.deferred
!= a
->expr
->ts
.deferred
2692 && a
->expr
->ts
.type
== BT_CHARACTER
)
2695 gfc_error ("Actual argument at %L to allocatable or "
2696 "pointer dummy argument '%s' must have a deferred "
2697 "length type parameter if and only if the dummy has one",
2698 &a
->expr
->where
, f
->sym
->name
);
2702 if (f
->sym
->ts
.type
== BT_CLASS
)
2703 goto skip_size_check
;
2705 actual_size
= get_expr_storage_size (a
->expr
);
2706 formal_size
= get_sym_storage_size (f
->sym
);
2707 if (actual_size
!= 0 && actual_size
< formal_size
2708 && a
->expr
->ts
.type
!= BT_PROCEDURE
2709 && f
->sym
->attr
.flavor
!= FL_PROCEDURE
)
2711 if (a
->expr
->ts
.type
== BT_CHARACTER
&& !f
->sym
->as
&& where
)
2712 gfc_warning ("Character length of actual argument shorter "
2713 "than of dummy argument '%s' (%lu/%lu) at %L",
2714 f
->sym
->name
, actual_size
, formal_size
,
2717 gfc_warning ("Actual argument contains too few "
2718 "elements for dummy argument '%s' (%lu/%lu) at %L",
2719 f
->sym
->name
, actual_size
, formal_size
,
2726 /* Satisfy F03:12.4.1.3 by ensuring that a procedure pointer actual
2727 argument is provided for a procedure pointer formal argument. */
2728 if (f
->sym
->attr
.proc_pointer
2729 && !((a
->expr
->expr_type
== EXPR_VARIABLE
2730 && a
->expr
->symtree
->n
.sym
->attr
.proc_pointer
)
2731 || (a
->expr
->expr_type
== EXPR_FUNCTION
2732 && a
->expr
->symtree
->n
.sym
->result
->attr
.proc_pointer
)
2733 || gfc_is_proc_ptr_comp (a
->expr
)))
2736 gfc_error ("Expected a procedure pointer for argument '%s' at %L",
2737 f
->sym
->name
, &a
->expr
->where
);
2741 /* Satisfy F03:12.4.1.3 by ensuring that a procedure actual argument is
2742 provided for a procedure formal argument. */
2743 if (f
->sym
->attr
.flavor
== FL_PROCEDURE
2744 && gfc_expr_attr (a
->expr
).flavor
!= FL_PROCEDURE
)
2747 gfc_error ("Expected a procedure for argument '%s' at %L",
2748 f
->sym
->name
, &a
->expr
->where
);
2752 if (f
->sym
->as
&& f
->sym
->as
->type
== AS_ASSUMED_SHAPE
2753 && a
->expr
->expr_type
== EXPR_VARIABLE
2754 && a
->expr
->symtree
->n
.sym
->as
2755 && a
->expr
->symtree
->n
.sym
->as
->type
== AS_ASSUMED_SIZE
2756 && (a
->expr
->ref
== NULL
2757 || (a
->expr
->ref
->type
== REF_ARRAY
2758 && a
->expr
->ref
->u
.ar
.type
== AR_FULL
)))
2761 gfc_error ("Actual argument for '%s' cannot be an assumed-size"
2762 " array at %L", f
->sym
->name
, where
);
2766 if (a
->expr
->expr_type
!= EXPR_NULL
2767 && compare_pointer (f
->sym
, a
->expr
) == 0)
2770 gfc_error ("Actual argument for '%s' must be a pointer at %L",
2771 f
->sym
->name
, &a
->expr
->where
);
2775 if (a
->expr
->expr_type
!= EXPR_NULL
2776 && (gfc_option
.allow_std
& GFC_STD_F2008
) == 0
2777 && compare_pointer (f
->sym
, a
->expr
) == 2)
2780 gfc_error ("Fortran 2008: Non-pointer actual argument at %L to "
2781 "pointer dummy '%s'", &a
->expr
->where
,f
->sym
->name
);
2786 /* Fortran 2008, C1242. */
2787 if (f
->sym
->attr
.pointer
&& gfc_is_coindexed (a
->expr
))
2790 gfc_error ("Coindexed actual argument at %L to pointer "
2792 &a
->expr
->where
, f
->sym
->name
);
2796 /* Fortran 2008, 12.5.2.5 (no constraint). */
2797 if (a
->expr
->expr_type
== EXPR_VARIABLE
2798 && f
->sym
->attr
.intent
!= INTENT_IN
2799 && f
->sym
->attr
.allocatable
2800 && gfc_is_coindexed (a
->expr
))
2803 gfc_error ("Coindexed actual argument at %L to allocatable "
2804 "dummy '%s' requires INTENT(IN)",
2805 &a
->expr
->where
, f
->sym
->name
);
2809 /* Fortran 2008, C1237. */
2810 if (a
->expr
->expr_type
== EXPR_VARIABLE
2811 && (f
->sym
->attr
.asynchronous
|| f
->sym
->attr
.volatile_
)
2812 && gfc_is_coindexed (a
->expr
)
2813 && (a
->expr
->symtree
->n
.sym
->attr
.volatile_
2814 || a
->expr
->symtree
->n
.sym
->attr
.asynchronous
))
2817 gfc_error ("Coindexed ASYNCHRONOUS or VOLATILE actual argument at "
2818 "%L requires that dummy '%s' has neither "
2819 "ASYNCHRONOUS nor VOLATILE", &a
->expr
->where
,
2824 /* Fortran 2008, 12.5.2.4 (no constraint). */
2825 if (a
->expr
->expr_type
== EXPR_VARIABLE
2826 && f
->sym
->attr
.intent
!= INTENT_IN
&& !f
->sym
->attr
.value
2827 && gfc_is_coindexed (a
->expr
)
2828 && gfc_has_ultimate_allocatable (a
->expr
))
2831 gfc_error ("Coindexed actual argument at %L with allocatable "
2832 "ultimate component to dummy '%s' requires either VALUE "
2833 "or INTENT(IN)", &a
->expr
->where
, f
->sym
->name
);
2837 if (f
->sym
->ts
.type
== BT_CLASS
2838 && CLASS_DATA (f
->sym
)->attr
.allocatable
2839 && gfc_is_class_array_ref (a
->expr
, &full_array
)
2843 gfc_error ("Actual CLASS array argument for '%s' must be a full "
2844 "array at %L", f
->sym
->name
, &a
->expr
->where
);
2849 if (a
->expr
->expr_type
!= EXPR_NULL
2850 && compare_allocatable (f
->sym
, a
->expr
) == 0)
2853 gfc_error ("Actual argument for '%s' must be ALLOCATABLE at %L",
2854 f
->sym
->name
, &a
->expr
->where
);
2858 /* Check intent = OUT/INOUT for definable actual argument. */
2859 if ((f
->sym
->attr
.intent
== INTENT_OUT
2860 || f
->sym
->attr
.intent
== INTENT_INOUT
))
2862 const char* context
= (where
2863 ? _("actual argument to INTENT = OUT/INOUT")
2866 if (((f
->sym
->ts
.type
== BT_CLASS
&& f
->sym
->attr
.class_ok
2867 && CLASS_DATA (f
->sym
)->attr
.class_pointer
)
2868 || (f
->sym
->ts
.type
!= BT_CLASS
&& f
->sym
->attr
.pointer
))
2869 && !gfc_check_vardef_context (a
->expr
, true, false, false, context
))
2871 if (!gfc_check_vardef_context (a
->expr
, false, false, false, context
))
2875 if ((f
->sym
->attr
.intent
== INTENT_OUT
2876 || f
->sym
->attr
.intent
== INTENT_INOUT
2877 || f
->sym
->attr
.volatile_
2878 || f
->sym
->attr
.asynchronous
)
2879 && gfc_has_vector_subscript (a
->expr
))
2882 gfc_error ("Array-section actual argument with vector "
2883 "subscripts at %L is incompatible with INTENT(OUT), "
2884 "INTENT(INOUT), VOLATILE or ASYNCHRONOUS attribute "
2885 "of the dummy argument '%s'",
2886 &a
->expr
->where
, f
->sym
->name
);
2890 /* C1232 (R1221) For an actual argument which is an array section or
2891 an assumed-shape array, the dummy argument shall be an assumed-
2892 shape array, if the dummy argument has the VOLATILE attribute. */
2894 if (f
->sym
->attr
.volatile_
2895 && a
->expr
->symtree
->n
.sym
->as
2896 && a
->expr
->symtree
->n
.sym
->as
->type
== AS_ASSUMED_SHAPE
2897 && !(f
->sym
->as
&& f
->sym
->as
->type
== AS_ASSUMED_SHAPE
))
2900 gfc_error ("Assumed-shape actual argument at %L is "
2901 "incompatible with the non-assumed-shape "
2902 "dummy argument '%s' due to VOLATILE attribute",
2903 &a
->expr
->where
,f
->sym
->name
);
2907 if (f
->sym
->attr
.volatile_
2908 && a
->expr
->ref
&& a
->expr
->ref
->u
.ar
.type
== AR_SECTION
2909 && !(f
->sym
->as
&& f
->sym
->as
->type
== AS_ASSUMED_SHAPE
))
2912 gfc_error ("Array-section actual argument at %L is "
2913 "incompatible with the non-assumed-shape "
2914 "dummy argument '%s' due to VOLATILE attribute",
2915 &a
->expr
->where
,f
->sym
->name
);
2919 /* C1233 (R1221) For an actual argument which is a pointer array, the
2920 dummy argument shall be an assumed-shape or pointer array, if the
2921 dummy argument has the VOLATILE attribute. */
2923 if (f
->sym
->attr
.volatile_
2924 && a
->expr
->symtree
->n
.sym
->attr
.pointer
2925 && a
->expr
->symtree
->n
.sym
->as
2927 && (f
->sym
->as
->type
== AS_ASSUMED_SHAPE
2928 || f
->sym
->attr
.pointer
)))
2931 gfc_error ("Pointer-array actual argument at %L requires "
2932 "an assumed-shape or pointer-array dummy "
2933 "argument '%s' due to VOLATILE attribute",
2934 &a
->expr
->where
,f
->sym
->name
);
2945 /* Make sure missing actual arguments are optional. */
2947 for (f
= formal
; f
; f
= f
->next
, i
++)
2949 if (new_arg
[i
] != NULL
)
2954 gfc_error ("Missing alternate return spec in subroutine call "
2958 if (!f
->sym
->attr
.optional
)
2961 gfc_error ("Missing actual argument for argument '%s' at %L",
2962 f
->sym
->name
, where
);
2967 /* The argument lists are compatible. We now relink a new actual
2968 argument list with null arguments in the right places. The head
2969 of the list remains the head. */
2970 for (i
= 0; i
< n
; i
++)
2971 if (new_arg
[i
] == NULL
)
2972 new_arg
[i
] = gfc_get_actual_arglist ();
2977 *new_arg
[0] = *actual
;
2981 new_arg
[0] = new_arg
[na
];
2985 for (i
= 0; i
< n
- 1; i
++)
2986 new_arg
[i
]->next
= new_arg
[i
+ 1];
2988 new_arg
[i
]->next
= NULL
;
2990 if (*ap
== NULL
&& n
> 0)
2993 /* Note the types of omitted optional arguments. */
2994 for (a
= *ap
, f
= formal
; a
; a
= a
->next
, f
= f
->next
)
2995 if (a
->expr
== NULL
&& a
->label
== NULL
)
2996 a
->missing_arg_type
= f
->sym
->ts
.type
;
3004 gfc_formal_arglist
*f
;
3005 gfc_actual_arglist
*a
;
3009 /* qsort comparison function for argument pairs, with the following
3011 - p->a->expr == NULL
3012 - p->a->expr->expr_type != EXPR_VARIABLE
3013 - growing p->a->expr->symbol. */
3016 pair_cmp (const void *p1
, const void *p2
)
3018 const gfc_actual_arglist
*a1
, *a2
;
3020 /* *p1 and *p2 are elements of the to-be-sorted array. */
3021 a1
= ((const argpair
*) p1
)->a
;
3022 a2
= ((const argpair
*) p2
)->a
;
3031 if (a1
->expr
->expr_type
!= EXPR_VARIABLE
)
3033 if (a2
->expr
->expr_type
!= EXPR_VARIABLE
)
3037 if (a2
->expr
->expr_type
!= EXPR_VARIABLE
)
3039 return a1
->expr
->symtree
->n
.sym
< a2
->expr
->symtree
->n
.sym
;
3043 /* Given two expressions from some actual arguments, test whether they
3044 refer to the same expression. The analysis is conservative.
3045 Returning false will produce no warning. */
3048 compare_actual_expr (gfc_expr
*e1
, gfc_expr
*e2
)
3050 const gfc_ref
*r1
, *r2
;
3053 || e1
->expr_type
!= EXPR_VARIABLE
3054 || e2
->expr_type
!= EXPR_VARIABLE
3055 || e1
->symtree
->n
.sym
!= e2
->symtree
->n
.sym
)
3058 /* TODO: improve comparison, see expr.c:show_ref(). */
3059 for (r1
= e1
->ref
, r2
= e2
->ref
; r1
&& r2
; r1
= r1
->next
, r2
= r2
->next
)
3061 if (r1
->type
!= r2
->type
)
3066 if (r1
->u
.ar
.type
!= r2
->u
.ar
.type
)
3068 /* TODO: At the moment, consider only full arrays;
3069 we could do better. */
3070 if (r1
->u
.ar
.type
!= AR_FULL
|| r2
->u
.ar
.type
!= AR_FULL
)
3075 if (r1
->u
.c
.component
!= r2
->u
.c
.component
)
3083 gfc_internal_error ("compare_actual_expr(): Bad component code");
3092 /* Given formal and actual argument lists that correspond to one
3093 another, check that identical actual arguments aren't not
3094 associated with some incompatible INTENTs. */
3097 check_some_aliasing (gfc_formal_arglist
*f
, gfc_actual_arglist
*a
)
3099 sym_intent f1_intent
, f2_intent
;
3100 gfc_formal_arglist
*f1
;
3101 gfc_actual_arglist
*a1
;
3107 for (f1
= f
, a1
= a
;; f1
= f1
->next
, a1
= a1
->next
)
3109 if (f1
== NULL
&& a1
== NULL
)
3111 if (f1
== NULL
|| a1
== NULL
)
3112 gfc_internal_error ("check_some_aliasing(): List mismatch");
3117 p
= XALLOCAVEC (argpair
, n
);
3119 for (i
= 0, f1
= f
, a1
= a
; i
< n
; i
++, f1
= f1
->next
, a1
= a1
->next
)
3125 qsort (p
, n
, sizeof (argpair
), pair_cmp
);
3127 for (i
= 0; i
< n
; i
++)
3130 || p
[i
].a
->expr
->expr_type
!= EXPR_VARIABLE
3131 || p
[i
].a
->expr
->ts
.type
== BT_PROCEDURE
)
3133 f1_intent
= p
[i
].f
->sym
->attr
.intent
;
3134 for (j
= i
+ 1; j
< n
; j
++)
3136 /* Expected order after the sort. */
3137 if (!p
[j
].a
->expr
|| p
[j
].a
->expr
->expr_type
!= EXPR_VARIABLE
)
3138 gfc_internal_error ("check_some_aliasing(): corrupted data");
3140 /* Are the expression the same? */
3141 if (!compare_actual_expr (p
[i
].a
->expr
, p
[j
].a
->expr
))
3143 f2_intent
= p
[j
].f
->sym
->attr
.intent
;
3144 if ((f1_intent
== INTENT_IN
&& f2_intent
== INTENT_OUT
)
3145 || (f1_intent
== INTENT_OUT
&& f2_intent
== INTENT_IN
)
3146 || (f1_intent
== INTENT_OUT
&& f2_intent
== INTENT_OUT
))
3148 gfc_warning ("Same actual argument associated with INTENT(%s) "
3149 "argument '%s' and INTENT(%s) argument '%s' at %L",
3150 gfc_intent_string (f1_intent
), p
[i
].f
->sym
->name
,
3151 gfc_intent_string (f2_intent
), p
[j
].f
->sym
->name
,
3152 &p
[i
].a
->expr
->where
);
3162 /* Given formal and actual argument lists that correspond to one
3163 another, check that they are compatible in the sense that intents
3164 are not mismatched. */
3167 check_intents (gfc_formal_arglist
*f
, gfc_actual_arglist
*a
)
3169 sym_intent f_intent
;
3171 for (;; f
= f
->next
, a
= a
->next
)
3175 if (f
== NULL
&& a
== NULL
)
3177 if (f
== NULL
|| a
== NULL
)
3178 gfc_internal_error ("check_intents(): List mismatch");
3180 if (a
->expr
&& a
->expr
->expr_type
== EXPR_FUNCTION
3181 && a
->expr
->value
.function
.isym
3182 && a
->expr
->value
.function
.isym
->id
== GFC_ISYM_CAF_GET
)
3183 expr
= a
->expr
->value
.function
.actual
->expr
;
3187 if (expr
== NULL
|| expr
->expr_type
!= EXPR_VARIABLE
)
3190 f_intent
= f
->sym
->attr
.intent
;
3192 if (gfc_pure (NULL
) && gfc_impure_variable (expr
->symtree
->n
.sym
))
3194 if ((f
->sym
->ts
.type
== BT_CLASS
&& f
->sym
->attr
.class_ok
3195 && CLASS_DATA (f
->sym
)->attr
.class_pointer
)
3196 || (f
->sym
->ts
.type
!= BT_CLASS
&& f
->sym
->attr
.pointer
))
3198 gfc_error ("Procedure argument at %L is local to a PURE "
3199 "procedure and has the POINTER attribute",
3205 /* Fortran 2008, C1283. */
3206 if (gfc_pure (NULL
) && gfc_is_coindexed (expr
))
3208 if (f_intent
== INTENT_INOUT
|| f_intent
== INTENT_OUT
)
3210 gfc_error ("Coindexed actual argument at %L in PURE procedure "
3211 "is passed to an INTENT(%s) argument",
3212 &expr
->where
, gfc_intent_string (f_intent
));
3216 if ((f
->sym
->ts
.type
== BT_CLASS
&& f
->sym
->attr
.class_ok
3217 && CLASS_DATA (f
->sym
)->attr
.class_pointer
)
3218 || (f
->sym
->ts
.type
!= BT_CLASS
&& f
->sym
->attr
.pointer
))
3220 gfc_error ("Coindexed actual argument at %L in PURE procedure "
3221 "is passed to a POINTER dummy argument",
3227 /* F2008, Section 12.5.2.4. */
3228 if (expr
->ts
.type
== BT_CLASS
&& f
->sym
->ts
.type
== BT_CLASS
3229 && gfc_is_coindexed (expr
))
3231 gfc_error ("Coindexed polymorphic actual argument at %L is passed "
3232 "polymorphic dummy argument '%s'",
3233 &expr
->where
, f
->sym
->name
);
3242 /* Check how a procedure is used against its interface. If all goes
3243 well, the actual argument list will also end up being properly
3247 gfc_procedure_use (gfc_symbol
*sym
, gfc_actual_arglist
**ap
, locus
*where
)
3249 gfc_formal_arglist
*dummy_args
;
3251 /* Warn about calls with an implicit interface. Special case
3252 for calling a ISO_C_BINDING because c_loc and c_funloc
3253 are pseudo-unknown. Additionally, warn about procedures not
3254 explicitly declared at all if requested. */
3255 if (sym
->attr
.if_source
== IFSRC_UNKNOWN
&& !sym
->attr
.is_iso_c
)
3257 if (sym
->ns
->has_implicit_none_export
&& sym
->attr
.proc
== PROC_UNKNOWN
)
3259 gfc_error ("Procedure '%s' called at %L is not explicitly declared",
3263 if (gfc_option
.warn_implicit_interface
)
3264 gfc_warning ("Procedure '%s' called with an implicit interface at %L",
3266 else if (gfc_option
.warn_implicit_procedure
3267 && sym
->attr
.proc
== PROC_UNKNOWN
)
3268 gfc_warning ("Procedure '%s' called at %L is not explicitly declared",
3272 if (sym
->attr
.if_source
== IFSRC_UNKNOWN
)
3274 gfc_actual_arglist
*a
;
3276 if (sym
->attr
.pointer
)
3278 gfc_error("The pointer object '%s' at %L must have an explicit "
3279 "function interface or be declared as array",
3284 if (sym
->attr
.allocatable
&& !sym
->attr
.external
)
3286 gfc_error("The allocatable object '%s' at %L must have an explicit "
3287 "function interface or be declared as array",
3292 if (sym
->attr
.allocatable
)
3294 gfc_error("Allocatable function '%s' at %L must have an explicit "
3295 "function interface", sym
->name
, where
);
3299 for (a
= *ap
; a
; a
= a
->next
)
3301 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
3302 if (a
->name
!= NULL
&& a
->name
[0] != '%')
3304 gfc_error("Keyword argument requires explicit interface "
3305 "for procedure '%s' at %L", sym
->name
, &a
->expr
->where
);
3309 /* TS 29113, 6.2. */
3310 if (a
->expr
&& a
->expr
->ts
.type
== BT_ASSUMED
3311 && sym
->intmod_sym_id
!= ISOCBINDING_LOC
)
3313 gfc_error ("Assumed-type argument %s at %L requires an explicit "
3314 "interface", a
->expr
->symtree
->n
.sym
->name
,
3319 /* F2008, C1303 and C1304. */
3321 && (a
->expr
->ts
.type
== BT_DERIVED
|| a
->expr
->ts
.type
== BT_CLASS
)
3322 && ((a
->expr
->ts
.u
.derived
->from_intmod
== INTMOD_ISO_FORTRAN_ENV
3323 && a
->expr
->ts
.u
.derived
->intmod_sym_id
== ISOFORTRAN_LOCK_TYPE
)
3324 || gfc_expr_attr (a
->expr
).lock_comp
))
3326 gfc_error("Actual argument of LOCK_TYPE or with LOCK_TYPE "
3327 "component at %L requires an explicit interface for "
3328 "procedure '%s'", &a
->expr
->where
, sym
->name
);
3332 if (a
->expr
&& a
->expr
->expr_type
== EXPR_NULL
3333 && a
->expr
->ts
.type
== BT_UNKNOWN
)
3335 gfc_error ("MOLD argument to NULL required at %L", &a
->expr
->where
);
3339 /* TS 29113, C407b. */
3340 if (a
->expr
&& a
->expr
->expr_type
== EXPR_VARIABLE
3341 && symbol_rank (a
->expr
->symtree
->n
.sym
) == -1)
3343 gfc_error ("Assumed-rank argument requires an explicit interface "
3344 "at %L", &a
->expr
->where
);
3352 dummy_args
= gfc_sym_get_dummy_args (sym
);
3354 if (!compare_actual_formal (ap
, dummy_args
, 0, sym
->attr
.elemental
, where
))
3357 if (!check_intents (dummy_args
, *ap
))
3360 if (gfc_option
.warn_aliasing
)
3361 check_some_aliasing (dummy_args
, *ap
);
3367 /* Check how a procedure pointer component is used against its interface.
3368 If all goes well, the actual argument list will also end up being properly
3369 sorted. Completely analogous to gfc_procedure_use. */
3372 gfc_ppc_use (gfc_component
*comp
, gfc_actual_arglist
**ap
, locus
*where
)
3374 /* Warn about calls with an implicit interface. Special case
3375 for calling a ISO_C_BINDING because c_loc and c_funloc
3376 are pseudo-unknown. */
3377 if (gfc_option
.warn_implicit_interface
3378 && comp
->attr
.if_source
== IFSRC_UNKNOWN
3379 && !comp
->attr
.is_iso_c
)
3380 gfc_warning ("Procedure pointer component '%s' called with an implicit "
3381 "interface at %L", comp
->name
, where
);
3383 if (comp
->attr
.if_source
== IFSRC_UNKNOWN
)
3385 gfc_actual_arglist
*a
;
3386 for (a
= *ap
; a
; a
= a
->next
)
3388 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
3389 if (a
->name
!= NULL
&& a
->name
[0] != '%')
3391 gfc_error("Keyword argument requires explicit interface "
3392 "for procedure pointer component '%s' at %L",
3393 comp
->name
, &a
->expr
->where
);
3401 if (!compare_actual_formal (ap
, comp
->ts
.interface
->formal
, 0,
3402 comp
->attr
.elemental
, where
))
3405 check_intents (comp
->ts
.interface
->formal
, *ap
);
3406 if (gfc_option
.warn_aliasing
)
3407 check_some_aliasing (comp
->ts
.interface
->formal
, *ap
);
3411 /* Try if an actual argument list matches the formal list of a symbol,
3412 respecting the symbol's attributes like ELEMENTAL. This is used for
3413 GENERIC resolution. */
3416 gfc_arglist_matches_symbol (gfc_actual_arglist
** args
, gfc_symbol
* sym
)
3418 gfc_formal_arglist
*dummy_args
;
3421 gcc_assert (sym
->attr
.flavor
== FL_PROCEDURE
);
3423 dummy_args
= gfc_sym_get_dummy_args (sym
);
3425 r
= !sym
->attr
.elemental
;
3426 if (compare_actual_formal (args
, dummy_args
, r
, !r
, NULL
))
3428 check_intents (dummy_args
, *args
);
3429 if (gfc_option
.warn_aliasing
)
3430 check_some_aliasing (dummy_args
, *args
);
3438 /* Given an interface pointer and an actual argument list, search for
3439 a formal argument list that matches the actual. If found, returns
3440 a pointer to the symbol of the correct interface. Returns NULL if
3444 gfc_search_interface (gfc_interface
*intr
, int sub_flag
,
3445 gfc_actual_arglist
**ap
)
3447 gfc_symbol
*elem_sym
= NULL
;
3448 gfc_symbol
*null_sym
= NULL
;
3449 locus null_expr_loc
;
3450 gfc_actual_arglist
*a
;
3451 bool has_null_arg
= false;
3453 for (a
= *ap
; a
; a
= a
->next
)
3454 if (a
->expr
&& a
->expr
->expr_type
== EXPR_NULL
3455 && a
->expr
->ts
.type
== BT_UNKNOWN
)
3457 has_null_arg
= true;
3458 null_expr_loc
= a
->expr
->where
;
3462 for (; intr
; intr
= intr
->next
)
3464 if (intr
->sym
->attr
.flavor
== FL_DERIVED
)
3466 if (sub_flag
&& intr
->sym
->attr
.function
)
3468 if (!sub_flag
&& intr
->sym
->attr
.subroutine
)
3471 if (gfc_arglist_matches_symbol (ap
, intr
->sym
))
3473 if (has_null_arg
&& null_sym
)
3475 gfc_error ("MOLD= required in NULL() argument at %L: Ambiguity "
3476 "between specific functions %s and %s",
3477 &null_expr_loc
, null_sym
->name
, intr
->sym
->name
);
3480 else if (has_null_arg
)
3482 null_sym
= intr
->sym
;
3486 /* Satisfy 12.4.4.1 such that an elemental match has lower
3487 weight than a non-elemental match. */
3488 if (intr
->sym
->attr
.elemental
)
3490 elem_sym
= intr
->sym
;
3500 return elem_sym
? elem_sym
: NULL
;
3504 /* Do a brute force recursive search for a symbol. */
3506 static gfc_symtree
*
3507 find_symtree0 (gfc_symtree
*root
, gfc_symbol
*sym
)
3511 if (root
->n
.sym
== sym
)
3516 st
= find_symtree0 (root
->left
, sym
);
3517 if (root
->right
&& ! st
)
3518 st
= find_symtree0 (root
->right
, sym
);
3523 /* Find a symtree for a symbol. */
3526 gfc_find_sym_in_symtree (gfc_symbol
*sym
)
3531 /* First try to find it by name. */
3532 gfc_find_sym_tree (sym
->name
, gfc_current_ns
, 1, &st
);
3533 if (st
&& st
->n
.sym
== sym
)
3536 /* If it's been renamed, resort to a brute-force search. */
3537 /* TODO: avoid having to do this search. If the symbol doesn't exist
3538 in the symtree for the current namespace, it should probably be added. */
3539 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
3541 st
= find_symtree0 (ns
->sym_root
, sym
);
3545 gfc_internal_error ("Unable to find symbol %s", sym
->name
);
3550 /* See if the arglist to an operator-call contains a derived-type argument
3551 with a matching type-bound operator. If so, return the matching specific
3552 procedure defined as operator-target as well as the base-object to use
3553 (which is the found derived-type argument with operator). The generic
3554 name, if any, is transmitted to the final expression via 'gname'. */
3556 static gfc_typebound_proc
*
3557 matching_typebound_op (gfc_expr
** tb_base
,
3558 gfc_actual_arglist
* args
,
3559 gfc_intrinsic_op op
, const char* uop
,
3560 const char ** gname
)
3562 gfc_actual_arglist
* base
;
3564 for (base
= args
; base
; base
= base
->next
)
3565 if (base
->expr
->ts
.type
== BT_DERIVED
|| base
->expr
->ts
.type
== BT_CLASS
)
3567 gfc_typebound_proc
* tb
;
3568 gfc_symbol
* derived
;
3571 while (base
->expr
->expr_type
== EXPR_OP
3572 && base
->expr
->value
.op
.op
== INTRINSIC_PARENTHESES
)
3573 base
->expr
= base
->expr
->value
.op
.op1
;
3575 if (base
->expr
->ts
.type
== BT_CLASS
)
3577 if (CLASS_DATA (base
->expr
) == NULL
3578 || !gfc_expr_attr (base
->expr
).class_ok
)
3580 derived
= CLASS_DATA (base
->expr
)->ts
.u
.derived
;
3583 derived
= base
->expr
->ts
.u
.derived
;
3585 if (op
== INTRINSIC_USER
)
3587 gfc_symtree
* tb_uop
;
3590 tb_uop
= gfc_find_typebound_user_op (derived
, &result
, uop
,
3599 tb
= gfc_find_typebound_intrinsic_op (derived
, &result
, op
,
3602 /* This means we hit a PRIVATE operator which is use-associated and
3603 should thus not be seen. */
3607 /* Look through the super-type hierarchy for a matching specific
3609 for (; tb
; tb
= tb
->overridden
)
3613 gcc_assert (tb
->is_generic
);
3614 for (g
= tb
->u
.generic
; g
; g
= g
->next
)
3617 gfc_actual_arglist
* argcopy
;
3620 gcc_assert (g
->specific
);
3621 if (g
->specific
->error
)
3624 target
= g
->specific
->u
.specific
->n
.sym
;
3626 /* Check if this arglist matches the formal. */
3627 argcopy
= gfc_copy_actual_arglist (args
);
3628 matches
= gfc_arglist_matches_symbol (&argcopy
, target
);
3629 gfc_free_actual_arglist (argcopy
);
3631 /* Return if we found a match. */
3634 *tb_base
= base
->expr
;
3635 *gname
= g
->specific_st
->name
;
3646 /* For the 'actual arglist' of an operator call and a specific typebound
3647 procedure that has been found the target of a type-bound operator, build the
3648 appropriate EXPR_COMPCALL and resolve it. We take this indirection over
3649 type-bound procedures rather than resolving type-bound operators 'directly'
3650 so that we can reuse the existing logic. */
3653 build_compcall_for_operator (gfc_expr
* e
, gfc_actual_arglist
* actual
,
3654 gfc_expr
* base
, gfc_typebound_proc
* target
,
3657 e
->expr_type
= EXPR_COMPCALL
;
3658 e
->value
.compcall
.tbp
= target
;
3659 e
->value
.compcall
.name
= gname
? gname
: "$op";
3660 e
->value
.compcall
.actual
= actual
;
3661 e
->value
.compcall
.base_object
= base
;
3662 e
->value
.compcall
.ignore_pass
= 1;
3663 e
->value
.compcall
.assign
= 0;
3664 if (e
->ts
.type
== BT_UNKNOWN
3665 && target
->function
)
3667 if (target
->is_generic
)
3668 e
->ts
= target
->u
.generic
->specific
->u
.specific
->n
.sym
->ts
;
3670 e
->ts
= target
->u
.specific
->n
.sym
->ts
;
3675 /* This subroutine is called when an expression is being resolved.
3676 The expression node in question is either a user defined operator
3677 or an intrinsic operator with arguments that aren't compatible
3678 with the operator. This subroutine builds an actual argument list
3679 corresponding to the operands, then searches for a compatible
3680 interface. If one is found, the expression node is replaced with
3681 the appropriate function call. We use the 'match' enum to specify
3682 whether a replacement has been made or not, or if an error occurred. */
3685 gfc_extend_expr (gfc_expr
*e
)
3687 gfc_actual_arglist
*actual
;
3696 actual
= gfc_get_actual_arglist ();
3697 actual
->expr
= e
->value
.op
.op1
;
3701 if (e
->value
.op
.op2
!= NULL
)
3703 actual
->next
= gfc_get_actual_arglist ();
3704 actual
->next
->expr
= e
->value
.op
.op2
;
3707 i
= fold_unary_intrinsic (e
->value
.op
.op
);
3709 if (i
== INTRINSIC_USER
)
3711 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
3713 uop
= gfc_find_uop (e
->value
.op
.uop
->name
, ns
);
3717 sym
= gfc_search_interface (uop
->op
, 0, &actual
);
3724 for (ns
= gfc_current_ns
; ns
; ns
= ns
->parent
)
3726 /* Due to the distinction between '==' and '.eq.' and friends, one has
3727 to check if either is defined. */
3730 #define CHECK_OS_COMPARISON(comp) \
3731 case INTRINSIC_##comp: \
3732 case INTRINSIC_##comp##_OS: \
3733 sym = gfc_search_interface (ns->op[INTRINSIC_##comp], 0, &actual); \
3735 sym = gfc_search_interface (ns->op[INTRINSIC_##comp##_OS], 0, &actual); \
3737 CHECK_OS_COMPARISON(EQ
)
3738 CHECK_OS_COMPARISON(NE
)
3739 CHECK_OS_COMPARISON(GT
)
3740 CHECK_OS_COMPARISON(GE
)
3741 CHECK_OS_COMPARISON(LT
)
3742 CHECK_OS_COMPARISON(LE
)
3743 #undef CHECK_OS_COMPARISON
3746 sym
= gfc_search_interface (ns
->op
[i
], 0, &actual
);
3754 /* TODO: Do an ambiguity-check and error if multiple matching interfaces are
3755 found rather than just taking the first one and not checking further. */
3759 gfc_typebound_proc
* tbo
;
3762 /* See if we find a matching type-bound operator. */
3763 if (i
== INTRINSIC_USER
)
3764 tbo
= matching_typebound_op (&tb_base
, actual
,
3765 i
, e
->value
.op
.uop
->name
, &gname
);
3769 #define CHECK_OS_COMPARISON(comp) \
3770 case INTRINSIC_##comp: \
3771 case INTRINSIC_##comp##_OS: \
3772 tbo = matching_typebound_op (&tb_base, actual, \
3773 INTRINSIC_##comp, NULL, &gname); \
3775 tbo = matching_typebound_op (&tb_base, actual, \
3776 INTRINSIC_##comp##_OS, NULL, &gname); \
3778 CHECK_OS_COMPARISON(EQ
)
3779 CHECK_OS_COMPARISON(NE
)
3780 CHECK_OS_COMPARISON(GT
)
3781 CHECK_OS_COMPARISON(GE
)
3782 CHECK_OS_COMPARISON(LT
)
3783 CHECK_OS_COMPARISON(LE
)
3784 #undef CHECK_OS_COMPARISON
3787 tbo
= matching_typebound_op (&tb_base
, actual
, i
, NULL
, &gname
);
3791 /* If there is a matching typebound-operator, replace the expression with
3792 a call to it and succeed. */
3797 gcc_assert (tb_base
);
3798 build_compcall_for_operator (e
, actual
, tb_base
, tbo
, gname
);
3800 result
= gfc_resolve_expr (e
);
3807 /* Don't use gfc_free_actual_arglist(). */
3808 free (actual
->next
);
3814 /* Change the expression node to a function call. */
3815 e
->expr_type
= EXPR_FUNCTION
;
3816 e
->symtree
= gfc_find_sym_in_symtree (sym
);
3817 e
->value
.function
.actual
= actual
;
3818 e
->value
.function
.esym
= NULL
;
3819 e
->value
.function
.isym
= NULL
;
3820 e
->value
.function
.name
= NULL
;
3821 e
->user_operator
= 1;
3823 if (!gfc_resolve_expr (e
))
3830 /* Tries to replace an assignment code node with a subroutine call to the
3831 subroutine associated with the assignment operator. Return true if the node
3832 was replaced. On false, no error is generated. */
3835 gfc_extend_assign (gfc_code
*c
, gfc_namespace
*ns
)
3837 gfc_actual_arglist
*actual
;
3838 gfc_expr
*lhs
, *rhs
, *tb_base
;
3839 gfc_symbol
*sym
= NULL
;
3840 const char *gname
= NULL
;
3841 gfc_typebound_proc
* tbo
;
3846 /* Don't allow an intrinsic assignment to be replaced. */
3847 if (lhs
->ts
.type
!= BT_DERIVED
&& lhs
->ts
.type
!= BT_CLASS
3848 && (rhs
->rank
== 0 || rhs
->rank
== lhs
->rank
)
3849 && (lhs
->ts
.type
== rhs
->ts
.type
3850 || (gfc_numeric_ts (&lhs
->ts
) && gfc_numeric_ts (&rhs
->ts
))))
3853 actual
= gfc_get_actual_arglist ();
3856 actual
->next
= gfc_get_actual_arglist ();
3857 actual
->next
->expr
= rhs
;
3859 /* TODO: Ambiguity-check, see above for gfc_extend_expr. */
3861 /* See if we find a matching type-bound assignment. */
3862 tbo
= matching_typebound_op (&tb_base
, actual
, INTRINSIC_ASSIGN
,
3867 /* Success: Replace the expression with a type-bound call. */
3868 gcc_assert (tb_base
);
3869 c
->expr1
= gfc_get_expr ();
3870 build_compcall_for_operator (c
->expr1
, actual
, tb_base
, tbo
, gname
);
3871 c
->expr1
->value
.compcall
.assign
= 1;
3872 c
->expr1
->where
= c
->loc
;
3874 c
->op
= EXEC_COMPCALL
;
3878 /* See if we find an 'ordinary' (non-typebound) assignment procedure. */
3879 for (; ns
; ns
= ns
->parent
)
3881 sym
= gfc_search_interface (ns
->op
[INTRINSIC_ASSIGN
], 1, &actual
);
3888 /* Success: Replace the assignment with the call. */
3889 c
->op
= EXEC_ASSIGN_CALL
;
3890 c
->symtree
= gfc_find_sym_in_symtree (sym
);
3893 c
->ext
.actual
= actual
;
3897 /* Failure: No assignment procedure found. */
3898 free (actual
->next
);
3904 /* Make sure that the interface just parsed is not already present in
3905 the given interface list. Ambiguity isn't checked yet since module
3906 procedures can be present without interfaces. */
3909 gfc_check_new_interface (gfc_interface
*base
, gfc_symbol
*new_sym
, locus loc
)
3913 for (ip
= base
; ip
; ip
= ip
->next
)
3915 if (ip
->sym
== new_sym
)
3917 gfc_error ("Entity '%s' at %L is already present in the interface",
3918 new_sym
->name
, &loc
);
3927 /* Add a symbol to the current interface. */
3930 gfc_add_interface (gfc_symbol
*new_sym
)
3932 gfc_interface
**head
, *intr
;
3936 switch (current_interface
.type
)
3938 case INTERFACE_NAMELESS
:
3939 case INTERFACE_ABSTRACT
:
3942 case INTERFACE_INTRINSIC_OP
:
3943 for (ns
= current_interface
.ns
; ns
; ns
= ns
->parent
)
3944 switch (current_interface
.op
)
3947 case INTRINSIC_EQ_OS
:
3948 if (!gfc_check_new_interface (ns
->op
[INTRINSIC_EQ
], new_sym
,
3950 || !gfc_check_new_interface (ns
->op
[INTRINSIC_EQ_OS
],
3951 new_sym
, gfc_current_locus
))
3956 case INTRINSIC_NE_OS
:
3957 if (!gfc_check_new_interface (ns
->op
[INTRINSIC_NE
], new_sym
,
3959 || !gfc_check_new_interface (ns
->op
[INTRINSIC_NE_OS
],
3960 new_sym
, gfc_current_locus
))
3965 case INTRINSIC_GT_OS
:
3966 if (!gfc_check_new_interface (ns
->op
[INTRINSIC_GT
],
3967 new_sym
, gfc_current_locus
)
3968 || !gfc_check_new_interface (ns
->op
[INTRINSIC_GT_OS
],
3969 new_sym
, gfc_current_locus
))
3974 case INTRINSIC_GE_OS
:
3975 if (!gfc_check_new_interface (ns
->op
[INTRINSIC_GE
],
3976 new_sym
, gfc_current_locus
)
3977 || !gfc_check_new_interface (ns
->op
[INTRINSIC_GE_OS
],
3978 new_sym
, gfc_current_locus
))
3983 case INTRINSIC_LT_OS
:
3984 if (!gfc_check_new_interface (ns
->op
[INTRINSIC_LT
],
3985 new_sym
, gfc_current_locus
)
3986 || !gfc_check_new_interface (ns
->op
[INTRINSIC_LT_OS
],
3987 new_sym
, gfc_current_locus
))
3992 case INTRINSIC_LE_OS
:
3993 if (!gfc_check_new_interface (ns
->op
[INTRINSIC_LE
],
3994 new_sym
, gfc_current_locus
)
3995 || !gfc_check_new_interface (ns
->op
[INTRINSIC_LE_OS
],
3996 new_sym
, gfc_current_locus
))
4001 if (!gfc_check_new_interface (ns
->op
[current_interface
.op
],
4002 new_sym
, gfc_current_locus
))
4006 head
= ¤t_interface
.ns
->op
[current_interface
.op
];
4009 case INTERFACE_GENERIC
:
4010 for (ns
= current_interface
.ns
; ns
; ns
= ns
->parent
)
4012 gfc_find_symbol (current_interface
.sym
->name
, ns
, 0, &sym
);
4016 if (!gfc_check_new_interface (sym
->generic
,
4017 new_sym
, gfc_current_locus
))
4021 head
= ¤t_interface
.sym
->generic
;
4024 case INTERFACE_USER_OP
:
4025 if (!gfc_check_new_interface (current_interface
.uop
->op
,
4026 new_sym
, gfc_current_locus
))
4029 head
= ¤t_interface
.uop
->op
;
4033 gfc_internal_error ("gfc_add_interface(): Bad interface type");
4036 intr
= gfc_get_interface ();
4037 intr
->sym
= new_sym
;
4038 intr
->where
= gfc_current_locus
;
4048 gfc_current_interface_head (void)
4050 switch (current_interface
.type
)
4052 case INTERFACE_INTRINSIC_OP
:
4053 return current_interface
.ns
->op
[current_interface
.op
];
4056 case INTERFACE_GENERIC
:
4057 return current_interface
.sym
->generic
;
4060 case INTERFACE_USER_OP
:
4061 return current_interface
.uop
->op
;
4071 gfc_set_current_interface_head (gfc_interface
*i
)
4073 switch (current_interface
.type
)
4075 case INTERFACE_INTRINSIC_OP
:
4076 current_interface
.ns
->op
[current_interface
.op
] = i
;
4079 case INTERFACE_GENERIC
:
4080 current_interface
.sym
->generic
= i
;
4083 case INTERFACE_USER_OP
:
4084 current_interface
.uop
->op
= i
;
4093 /* Gets rid of a formal argument list. We do not free symbols.
4094 Symbols are freed when a namespace is freed. */
4097 gfc_free_formal_arglist (gfc_formal_arglist
*p
)
4099 gfc_formal_arglist
*q
;
4109 /* Check that it is ok for the type-bound procedure 'proc' to override the
4110 procedure 'old', cf. F08:4.5.7.3. */
4113 gfc_check_typebound_override (gfc_symtree
* proc
, gfc_symtree
* old
)
4116 gfc_symbol
*proc_target
, *old_target
;
4117 unsigned proc_pass_arg
, old_pass_arg
, argpos
;
4118 gfc_formal_arglist
*proc_formal
, *old_formal
;
4122 /* This procedure should only be called for non-GENERIC proc. */
4123 gcc_assert (!proc
->n
.tb
->is_generic
);
4125 /* If the overwritten procedure is GENERIC, this is an error. */
4126 if (old
->n
.tb
->is_generic
)
4128 gfc_error ("Can't overwrite GENERIC '%s' at %L",
4129 old
->name
, &proc
->n
.tb
->where
);
4133 where
= proc
->n
.tb
->where
;
4134 proc_target
= proc
->n
.tb
->u
.specific
->n
.sym
;
4135 old_target
= old
->n
.tb
->u
.specific
->n
.sym
;
4137 /* Check that overridden binding is not NON_OVERRIDABLE. */
4138 if (old
->n
.tb
->non_overridable
)
4140 gfc_error ("'%s' at %L overrides a procedure binding declared"
4141 " NON_OVERRIDABLE", proc
->name
, &where
);
4145 /* It's an error to override a non-DEFERRED procedure with a DEFERRED one. */
4146 if (!old
->n
.tb
->deferred
&& proc
->n
.tb
->deferred
)
4148 gfc_error ("'%s' at %L must not be DEFERRED as it overrides a"
4149 " non-DEFERRED binding", proc
->name
, &where
);
4153 /* If the overridden binding is PURE, the overriding must be, too. */
4154 if (old_target
->attr
.pure
&& !proc_target
->attr
.pure
)
4156 gfc_error ("'%s' at %L overrides a PURE procedure and must also be PURE",
4157 proc
->name
, &where
);
4161 /* If the overridden binding is ELEMENTAL, the overriding must be, too. If it
4162 is not, the overriding must not be either. */
4163 if (old_target
->attr
.elemental
&& !proc_target
->attr
.elemental
)
4165 gfc_error ("'%s' at %L overrides an ELEMENTAL procedure and must also be"
4166 " ELEMENTAL", proc
->name
, &where
);
4169 if (!old_target
->attr
.elemental
&& proc_target
->attr
.elemental
)
4171 gfc_error ("'%s' at %L overrides a non-ELEMENTAL procedure and must not"
4172 " be ELEMENTAL, either", proc
->name
, &where
);
4176 /* If the overridden binding is a SUBROUTINE, the overriding must also be a
4178 if (old_target
->attr
.subroutine
&& !proc_target
->attr
.subroutine
)
4180 gfc_error ("'%s' at %L overrides a SUBROUTINE and must also be a"
4181 " SUBROUTINE", proc
->name
, &where
);
4185 /* If the overridden binding is a FUNCTION, the overriding must also be a
4186 FUNCTION and have the same characteristics. */
4187 if (old_target
->attr
.function
)
4189 if (!proc_target
->attr
.function
)
4191 gfc_error ("'%s' at %L overrides a FUNCTION and must also be a"
4192 " FUNCTION", proc
->name
, &where
);
4196 if (!check_result_characteristics (proc_target
, old_target
, err
,
4199 gfc_error ("Result mismatch for the overriding procedure "
4200 "'%s' at %L: %s", proc
->name
, &where
, err
);
4205 /* If the overridden binding is PUBLIC, the overriding one must not be
4207 if (old
->n
.tb
->access
== ACCESS_PUBLIC
4208 && proc
->n
.tb
->access
== ACCESS_PRIVATE
)
4210 gfc_error ("'%s' at %L overrides a PUBLIC procedure and must not be"
4211 " PRIVATE", proc
->name
, &where
);
4215 /* Compare the formal argument lists of both procedures. This is also abused
4216 to find the position of the passed-object dummy arguments of both
4217 bindings as at least the overridden one might not yet be resolved and we
4218 need those positions in the check below. */
4219 proc_pass_arg
= old_pass_arg
= 0;
4220 if (!proc
->n
.tb
->nopass
&& !proc
->n
.tb
->pass_arg
)
4222 if (!old
->n
.tb
->nopass
&& !old
->n
.tb
->pass_arg
)
4225 proc_formal
= gfc_sym_get_dummy_args (proc_target
);
4226 old_formal
= gfc_sym_get_dummy_args (old_target
);
4227 for ( ; proc_formal
&& old_formal
;
4228 proc_formal
= proc_formal
->next
, old_formal
= old_formal
->next
)
4230 if (proc
->n
.tb
->pass_arg
4231 && !strcmp (proc
->n
.tb
->pass_arg
, proc_formal
->sym
->name
))
4232 proc_pass_arg
= argpos
;
4233 if (old
->n
.tb
->pass_arg
4234 && !strcmp (old
->n
.tb
->pass_arg
, old_formal
->sym
->name
))
4235 old_pass_arg
= argpos
;
4237 /* Check that the names correspond. */
4238 if (strcmp (proc_formal
->sym
->name
, old_formal
->sym
->name
))
4240 gfc_error ("Dummy argument '%s' of '%s' at %L should be named '%s' as"
4241 " to match the corresponding argument of the overridden"
4242 " procedure", proc_formal
->sym
->name
, proc
->name
, &where
,
4243 old_formal
->sym
->name
);
4247 check_type
= proc_pass_arg
!= argpos
&& old_pass_arg
!= argpos
;
4248 if (!check_dummy_characteristics (proc_formal
->sym
, old_formal
->sym
,
4249 check_type
, err
, sizeof(err
)))
4251 gfc_error ("Argument mismatch for the overriding procedure "
4252 "'%s' at %L: %s", proc
->name
, &where
, err
);
4258 if (proc_formal
|| old_formal
)
4260 gfc_error ("'%s' at %L must have the same number of formal arguments as"
4261 " the overridden procedure", proc
->name
, &where
);
4265 /* If the overridden binding is NOPASS, the overriding one must also be
4267 if (old
->n
.tb
->nopass
&& !proc
->n
.tb
->nopass
)
4269 gfc_error ("'%s' at %L overrides a NOPASS binding and must also be"
4270 " NOPASS", proc
->name
, &where
);
4274 /* If the overridden binding is PASS(x), the overriding one must also be
4275 PASS and the passed-object dummy arguments must correspond. */
4276 if (!old
->n
.tb
->nopass
)
4278 if (proc
->n
.tb
->nopass
)
4280 gfc_error ("'%s' at %L overrides a binding with PASS and must also be"
4281 " PASS", proc
->name
, &where
);
4285 if (proc_pass_arg
!= old_pass_arg
)
4287 gfc_error ("Passed-object dummy argument of '%s' at %L must be at"
4288 " the same position as the passed-object dummy argument of"
4289 " the overridden procedure", proc
->name
, &where
);