cgraph.c (cgraph_turn_edge_to_speculative): Fix debug output.
[official-gcc.git] / gcc / fortran / interface.c
blobaa88b3c3fa67ff7692793e04b395ffef4b9e53c8
1 /* Deal with interfaces.
2 Copyright (C) 2000-2013 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
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
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
35 own head pointer.
37 Nameless interfaces:
38 Nameless interfaces create symbols with explicit interfaces within
39 the current namespace. They are otherwise unlinked.
41 Generic interfaces:
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.
47 User operators:
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.
55 Implicit interfaces:
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. */
66 #include "config.h"
67 #include "system.h"
68 #include "coretypes.h"
69 #include "gfortran.h"
70 #include "match.h"
71 #include "arith.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. */
82 void
83 gfc_free_interface (gfc_interface *intr)
85 gfc_interface *next;
87 for (; intr; intr = next)
89 next = intr->next;
90 free (intr);
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)
101 switch (op)
103 case INTRINSIC_UPLUS:
104 op = INTRINSIC_PLUS;
105 break;
106 case INTRINSIC_UMINUS:
107 op = INTRINSIC_MINUS;
108 break;
109 default:
110 break;
113 return op;
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. */
121 match
122 gfc_match_generic_spec (interface_type *type,
123 char *name,
124 gfc_intrinsic_op *op)
126 char buffer[GFC_MAX_SYMBOL_LEN + 1];
127 match m;
128 gfc_intrinsic_op i;
130 if (gfc_match (" assignment ( = )") == MATCH_YES)
132 *type = INTERFACE_INTRINSIC_OP;
133 *op = INTRINSIC_ASSIGN;
134 return MATCH_YES;
137 if (gfc_match (" operator ( %o )", &i) == MATCH_YES)
138 { /* Operator i/f */
139 *type = INTERFACE_INTRINSIC_OP;
140 *op = fold_unary_intrinsic (i);
141 return MATCH_YES;
144 *op = INTRINSIC_NONE;
145 if (gfc_match (" operator ( ") == MATCH_YES)
147 m = gfc_match_defined_op_name (buffer, 1);
148 if (m == MATCH_NO)
149 goto syntax;
150 if (m != MATCH_YES)
151 return MATCH_ERROR;
153 m = gfc_match_char (')');
154 if (m == MATCH_NO)
155 goto syntax;
156 if (m != MATCH_YES)
157 return MATCH_ERROR;
159 strcpy (name, buffer);
160 *type = INTERFACE_USER_OP;
161 return MATCH_YES;
164 if (gfc_match_name (buffer) == MATCH_YES)
166 strcpy (name, buffer);
167 *type = INTERFACE_GENERIC;
168 return MATCH_YES;
171 *type = INTERFACE_NAMELESS;
172 return MATCH_YES;
174 syntax:
175 gfc_error ("Syntax error in generic specification at %C");
176 return MATCH_ERROR;
180 /* Match one of the five F95 forms of an interface statement. The
181 matcher for the abstract interface follows. */
183 match
184 gfc_match_interface (void)
186 char name[GFC_MAX_SYMBOL_LEN + 1];
187 interface_type type;
188 gfc_symbol *sym;
189 gfc_intrinsic_op op;
190 match m;
192 m = gfc_match_space ();
194 if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
195 return 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 "
203 "at %C");
204 return MATCH_ERROR;
207 current_interface.type = type;
209 switch (type)
211 case INTERFACE_GENERIC:
212 if (gfc_get_symbol (name, NULL, &sym))
213 return MATCH_ERROR;
215 if (!sym->attr.generic
216 && !gfc_add_generic (&sym->attr, sym->name, NULL))
217 return MATCH_ERROR;
219 if (sym->attr.dummy)
221 gfc_error ("Dummy procedure '%s' at %C cannot have a "
222 "generic interface", sym->name);
223 return MATCH_ERROR;
226 current_interface.sym = gfc_new_block = sym;
227 break;
229 case INTERFACE_USER_OP:
230 current_interface.uop = gfc_get_uop (name);
231 break;
233 case INTERFACE_INTRINSIC_OP:
234 current_interface.op = op;
235 break;
237 case INTERFACE_NAMELESS:
238 case INTERFACE_ABSTRACT:
239 break;
242 return MATCH_YES;
247 /* Match a F2003 abstract interface. */
249 match
250 gfc_match_abstract_interface (void)
252 match m;
254 if (!gfc_notify_std (GFC_STD_F2003, "ABSTRACT INTERFACE at %C"))
255 return MATCH_ERROR;
257 m = gfc_match_eos ();
259 if (m != MATCH_YES)
261 gfc_error ("Syntax error in ABSTRACT INTERFACE statement at %C");
262 return MATCH_ERROR;
265 current_interface.type = INTERFACE_ABSTRACT;
267 return m;
271 /* Match the different sort of generic-specs that can be present after
272 the END INTERFACE itself. */
274 match
275 gfc_match_end_interface (void)
277 char name[GFC_MAX_SYMBOL_LEN + 1];
278 interface_type type;
279 gfc_intrinsic_op op;
280 match m;
282 m = gfc_match_space ();
284 if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
285 return 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 "
293 "statement at %C");
294 return MATCH_ERROR;
297 m = MATCH_YES;
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");
306 m = MATCH_ERROR;
309 break;
311 case INTERFACE_INTRINSIC_OP:
312 if (type != current_interface.type || op != current_interface.op)
315 if (current_interface.op == INTRINSIC_ASSIGN)
317 m = MATCH_ERROR;
318 gfc_error ("Expected 'END INTERFACE ASSIGNMENT (=)' at %C");
320 else
322 const char *s1, *s2;
323 s1 = gfc_op2string (current_interface.op);
324 s2 = gfc_op2string (op);
326 /* The following if-statements are used to enforce C1202
327 from F2003. */
328 if ((strcmp(s1, "==") == 0 && strcmp (s2, ".eq.") == 0)
329 || (strcmp(s1, ".eq.") == 0 && strcmp (s2, "==") == 0))
330 break;
331 if ((strcmp(s1, "/=") == 0 && strcmp (s2, ".ne.") == 0)
332 || (strcmp(s1, ".ne.") == 0 && strcmp (s2, "/=") == 0))
333 break;
334 if ((strcmp(s1, "<=") == 0 && strcmp (s2, ".le.") == 0)
335 || (strcmp(s1, ".le.") == 0 && strcmp (s2, "<=") == 0))
336 break;
337 if ((strcmp(s1, "<") == 0 && strcmp (s2, ".lt.") == 0)
338 || (strcmp(s1, ".lt.") == 0 && strcmp (s2, "<") == 0))
339 break;
340 if ((strcmp(s1, ">=") == 0 && strcmp (s2, ".ge.") == 0)
341 || (strcmp(s1, ".ge.") == 0 && strcmp (s2, ">=") == 0))
342 break;
343 if ((strcmp(s1, ">") == 0 && strcmp (s2, ".gt.") == 0)
344 || (strcmp(s1, ".gt.") == 0 && strcmp (s2, ">") == 0))
345 break;
347 m = MATCH_ERROR;
348 gfc_error ("Expecting 'END INTERFACE OPERATOR (%s)' at %C, "
349 "but got %s", s1, s2);
354 break;
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);
364 m = MATCH_ERROR;
367 break;
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);
375 m = MATCH_ERROR;
378 break;
381 return m;
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)
394 return 1;
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)
404 return 1;
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))
410 return 0;
412 if (derived1->component_access == ACCESS_PRIVATE
413 || derived2->component_access == ACCESS_PRIVATE)
414 return 0;
416 if (!(derived1->attr.sequence && derived2->attr.sequence)
417 && !(derived1->attr.is_bind_c && derived2->attr.is_bind_c))
418 return 0;
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
425 match. */
426 for (;;)
428 if (strcmp (dt1->name, dt2->name) != 0)
429 return 0;
431 if (dt1->attr.access != dt2->attr.access)
432 return 0;
434 if (dt1->attr.pointer != dt2->attr.pointer)
435 return 0;
437 if (dt1->attr.dimension != dt2->attr.dimension)
438 return 0;
440 if (dt1->attr.allocatable != dt2->attr.allocatable)
441 return 0;
443 if (dt1->attr.dimension && gfc_compare_array_spec (dt1->as, dt2->as) == 0)
444 return 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)
451 return 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))
455 return 0;
457 else if (!(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
458 && (dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived))
459 return 0;
461 dt1 = dt1->next;
462 dt2 = dt2->next;
464 if (dt1 == NULL && dt2 == NULL)
465 break;
466 if (dt1 == NULL || dt2 == NULL)
467 return 0;
470 return 1;
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)
484 return 1;
486 if (ts1->type == BT_CLASS
487 && ts1->u.derived->components->ts.u.derived->attr.unlimited_polymorphic)
488 return 1;
490 /* F2003: C717 */
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))
494 return 1;
496 if (ts1->type != ts2->type
497 && ((ts1->type != BT_DERIVED && ts1->type != BT_CLASS)
498 || (ts2->type != BT_DERIVED && ts2->type != BT_CLASS)))
499 return 0;
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))
505 return 1;
507 return gfc_compare_derived_types (ts1->u.derived ,ts2->u.derived);
511 static int
512 compare_type (gfc_symbol *s1, gfc_symbol *s2)
514 if (s2->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
515 return 1;
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))
521 return 0;
523 return gfc_compare_types (&s1->ts, &s2->ts) || s2->ts.type == BT_ASSUMED;
527 static int
528 compare_rank (gfc_symbol *s1, gfc_symbol *s2)
530 gfc_array_spec *as1, *as2;
531 int r1, r2;
533 if (s2->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
534 return 1;
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. */
545 return 1;
549 /* Given two symbols that are formal arguments, compare their ranks
550 and types. Returns nonzero if they have the same rank and type,
551 zero otherwise. */
553 static int
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. */
564 static int
565 compare_type_rank_if (gfc_symbol *s1, gfc_symbol *s2)
567 if (s1 == NULL || s2 == NULL)
568 return s1 == s2 ? 1 : 0;
570 if (s1 == s2)
571 return 1;
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)
577 return 0;
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)
592 return 0;
594 if (s1->attr.function && compare_type_rank (s1, s2) == 0)
595 return 0;
597 /* Originally, gfortran recursed here to check the interfaces of passed
598 procedures. This is explicitly not required by the standard. */
599 return 1;
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
605 if not found. */
607 static gfc_symbol *
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)
612 return f->sym;
614 return NULL;
618 /******** Interface checking subroutines **********/
621 /* Given an operator interface and the operator, make sure that all
622 interfaces for that operator are legal. */
624 bool
625 gfc_check_operator_interface (gfc_symbol *sym, gfc_intrinsic_op op,
626 locus opwhere)
628 gfc_formal_arglist *formal;
629 sym_intent i1, i2;
630 bt t1, t2;
631 int args, r1, r2, k1, k2;
633 gcc_assert (sym);
635 args = 0;
636 t1 = t2 = BT_UNKNOWN;
637 i1 = i2 = INTENT_UNKNOWN;
638 r1 = r2 = -1;
639 k1 = k2 = -1;
641 for (formal = gfc_sym_get_dummy_args (sym); formal; formal = formal->next)
643 gfc_symbol *fsym = formal->sym;
644 if (fsym == NULL)
646 gfc_error ("Alternate return cannot appear in operator "
647 "interface at %L", &sym->declared_at);
648 return false;
650 if (args == 0)
652 t1 = fsym->ts.type;
653 i1 = fsym->attr.intent;
654 r1 = (fsym->as != NULL) ? fsym->as->rank : 0;
655 k1 = fsym->ts.kind;
657 if (args == 1)
659 t2 = fsym->ts.type;
660 i2 = fsym->attr.intent;
661 r2 = (fsym->as != NULL) ? fsym->as->rank : 0;
662 k2 = fsym->ts.kind;
664 args++;
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);
677 else
678 gfc_error ("Operator interface at %L has the wrong number of arguments",
679 &sym->declared_at);
680 return false;
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);
693 return false;
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);
711 return false;
714 else
716 if (!sym->attr.function)
718 gfc_error ("Intrinsic operator interface at %L must be a FUNCTION",
719 &sym->declared_at);
720 return false;
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);
731 return false;
734 if (i2 != INTENT_IN)
736 gfc_error ("Second argument of defined assignment at %L must be "
737 "INTENT(IN)", &sym->declared_at);
738 return false;
741 else
743 if (i1 != INTENT_IN)
745 gfc_error ("First argument of operator interface at %L must be "
746 "INTENT(IN)", &sym->declared_at);
747 return false;
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);
754 return false;
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)
776 goto bad_repl;
777 else
778 return true;
781 if (args == 1 && (op == INTRINSIC_PLUS || op == INTRINSIC_MINUS))
783 if (IS_NUMERIC_TYPE (t1))
784 goto bad_repl;
785 else
786 return true;
789 /* Character intrinsic operators have same character kind, thus
790 operator definitions with operands of different character kinds
791 are always safe. */
792 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER && k1 != k2)
793 return true;
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)
799 return true;
801 switch (op)
803 case INTRINSIC_EQ:
804 case INTRINSIC_EQ_OS:
805 case INTRINSIC_NE:
806 case INTRINSIC_NE_OS:
807 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
808 goto bad_repl;
809 /* Fall through. */
811 case INTRINSIC_PLUS:
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))
817 goto bad_repl;
818 break;
820 case INTRINSIC_GT:
821 case INTRINSIC_GT_OS:
822 case INTRINSIC_GE:
823 case INTRINSIC_GE_OS:
824 case INTRINSIC_LT:
825 case INTRINSIC_LT_OS:
826 case INTRINSIC_LE:
827 case INTRINSIC_LE_OS:
828 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
829 goto bad_repl;
830 if ((t1 == BT_INTEGER || t1 == BT_REAL)
831 && (t2 == BT_INTEGER || t2 == BT_REAL))
832 goto bad_repl;
833 break;
835 case INTRINSIC_CONCAT:
836 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
837 goto bad_repl;
838 break;
840 case INTRINSIC_AND:
841 case INTRINSIC_OR:
842 case INTRINSIC_EQV:
843 case INTRINSIC_NEQV:
844 if (t1 == BT_LOGICAL && t2 == BT_LOGICAL)
845 goto bad_repl;
846 break;
848 default:
849 break;
852 return true;
854 #undef IS_NUMERIC_TYPE
856 bad_repl:
857 gfc_error ("Operator interface at %L conflicts with intrinsic interface",
858 &opwhere);
859 return false;
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). */
872 static int
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;
879 typedef struct
881 int flag;
882 gfc_symbol *sym;
884 arginfo;
886 arginfo *arg;
888 n1 = 0;
890 for (f = f1; f; f = f->next)
891 n1++;
893 /* Build an array of integers that gives the same integer to
894 arguments of the same type/rank. */
895 arg = XCNEWVEC (arginfo, n1);
897 f = f1;
898 for (i = 0; i < n1; i++, f = f->next)
900 arg[i].flag = -1;
901 arg[i].sym = f->sym;
904 k = 0;
906 for (i = 0; i < n1; i++)
908 if (arg[i].flag != -1)
909 continue;
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. */
915 arg[i].flag = k;
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)))
924 arg[j].flag = k;
926 k++;
929 /* Now loop over each distinct type found in f1. */
930 k = 0;
931 rc = 0;
933 for (i = 0; i < n1; i++)
935 if (arg[i].flag != k)
936 continue;
938 ac1 = 1;
939 for (j = i + 1; j < n1; j++)
940 if (arg[j].flag == k)
941 ac1++;
943 /* Count the number of non-pass arguments in f2 with that type,
944 including those that are optional. */
945 ac2 = 0;
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)))
951 ac2++;
953 if (ac1 > ac2)
955 rc = 1;
956 break;
959 k++;
962 free (arg);
964 return rc;
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
971 (if applicable).
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:
977 INTERFACE FOO
978 SUBROUTINE F1(A, B)
979 INTEGER :: A ; REAL :: B
980 END SUBROUTINE F1
982 SUBROUTINE F2(B, A)
983 INTEGER :: A ; REAL :: B
984 END SUBROUTINE F1
985 END INTERFACE FOO
987 At this point, 'CALL FOO(A=1, B=1.0)' is ambiguous. */
989 static int
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;
994 gfc_symbol *sym;
996 f2_save = f2;
998 while (f1)
1000 if (f1->sym->attr.optional)
1001 goto next;
1003 if (p1 && strcmp (f1->sym->name, p1) == 0)
1004 f1 = f1->next;
1005 if (f2 && p2 && strcmp (f2->sym->name, p2) == 0)
1006 f2 = f2->next;
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))))
1013 goto next;
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))
1020 continue;
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))))
1027 return 1;
1030 next:
1031 if (f1 != NULL)
1032 f1 = f1->next;
1033 if (f2 != NULL)
1034 f2 = f2->next;
1037 return 0;
1041 static int
1042 symbol_rank (gfc_symbol *sym)
1044 gfc_array_spec *as;
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,
1051 cf. F08:12.3.2. */
1053 static bool
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));
1067 return false;
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));
1073 return false;
1077 /* Check INTENT. */
1078 if (s1->attr.intent != s2->attr.intent)
1080 snprintf (errmsg, err_len, "INTENT mismatch in argument '%s'",
1081 s1->name);
1082 return false;
1085 /* Check OPTIONAL attribute. */
1086 if (s1->attr.optional != s2->attr.optional)
1088 snprintf (errmsg, err_len, "OPTIONAL mismatch in argument '%s'",
1089 s1->name);
1090 return false;
1093 /* Check ALLOCATABLE attribute. */
1094 if (s1->attr.allocatable != s2->attr.allocatable)
1096 snprintf (errmsg, err_len, "ALLOCATABLE mismatch in argument '%s'",
1097 s1->name);
1098 return false;
1101 /* Check POINTER attribute. */
1102 if (s1->attr.pointer != s2->attr.pointer)
1104 snprintf (errmsg, err_len, "POINTER mismatch in argument '%s'",
1105 s1->name);
1106 return false;
1109 /* Check TARGET attribute. */
1110 if (s1->attr.target != s2->attr.target)
1112 snprintf (errmsg, err_len, "TARGET mismatch in argument '%s'",
1113 s1->name);
1114 return false;
1117 /* FIXME: Do more comprehensive testing of attributes, like e.g.
1118 ASYNCHRONOUS, CONTIGUOUS, VALUE, VOLATILE, etc. */
1120 /* Check interface of dummy procedures. */
1121 if (s1->attr.flavor == FL_PROCEDURE)
1123 char err[200];
1124 if (!gfc_compare_interfaces (s1, s2, s2->name, 0, 1, err, sizeof(err),
1125 NULL, NULL))
1127 snprintf (errmsg, err_len, "Interface mismatch in dummy procedure "
1128 "'%s': %s", s1->name, err);
1129 return false;
1133 /* Check string length. */
1134 if (s1->ts.type == BT_CHARACTER
1135 && s1->ts.u.cl && s1->ts.u.cl->length
1136 && s2->ts.u.cl && s2->ts.u.cl->length)
1138 int compval = gfc_dep_compare_expr (s1->ts.u.cl->length,
1139 s2->ts.u.cl->length);
1140 switch (compval)
1142 case -1:
1143 case 1:
1144 case -3:
1145 snprintf (errmsg, err_len, "Character length mismatch "
1146 "in argument '%s'", s1->name);
1147 return false;
1149 case -2:
1150 /* FIXME: Implement a warning for this case.
1151 gfc_warning ("Possible character length mismatch in argument '%s'",
1152 s1->name);*/
1153 break;
1155 case 0:
1156 break;
1158 default:
1159 gfc_internal_error ("check_dummy_characteristics: Unexpected result "
1160 "%i of gfc_dep_compare_expr", compval);
1161 break;
1165 /* Check array shape. */
1166 if (s1->as && s2->as)
1168 int i, compval;
1169 gfc_expr *shape1, *shape2;
1171 if (s1->as->type != s2->as->type)
1173 snprintf (errmsg, err_len, "Shape mismatch in argument '%s'",
1174 s1->name);
1175 return false;
1178 if (s1->as->type == AS_EXPLICIT)
1179 for (i = 0; i < s1->as->rank + s1->as->corank; i++)
1181 shape1 = gfc_subtract (gfc_copy_expr (s1->as->upper[i]),
1182 gfc_copy_expr (s1->as->lower[i]));
1183 shape2 = gfc_subtract (gfc_copy_expr (s2->as->upper[i]),
1184 gfc_copy_expr (s2->as->lower[i]));
1185 compval = gfc_dep_compare_expr (shape1, shape2);
1186 gfc_free_expr (shape1);
1187 gfc_free_expr (shape2);
1188 switch (compval)
1190 case -1:
1191 case 1:
1192 case -3:
1193 snprintf (errmsg, err_len, "Shape mismatch in dimension %i of "
1194 "argument '%s'", i + 1, s1->name);
1195 return false;
1197 case -2:
1198 /* FIXME: Implement a warning for this case.
1199 gfc_warning ("Possible shape mismatch in argument '%s'",
1200 s1->name);*/
1201 break;
1203 case 0:
1204 break;
1206 default:
1207 gfc_internal_error ("check_dummy_characteristics: Unexpected "
1208 "result %i of gfc_dep_compare_expr",
1209 compval);
1210 break;
1215 return true;
1219 /* Check if the characteristics of two function results match,
1220 cf. F08:12.3.3. */
1222 static bool
1223 check_result_characteristics (gfc_symbol *s1, gfc_symbol *s2,
1224 char *errmsg, int err_len)
1226 gfc_symbol *r1, *r2;
1228 if (s1->ts.interface && s1->ts.interface->result)
1229 r1 = s1->ts.interface->result;
1230 else
1231 r1 = s1->result ? s1->result : s1;
1233 if (s2->ts.interface && s2->ts.interface->result)
1234 r2 = s2->ts.interface->result;
1235 else
1236 r2 = s2->result ? s2->result : s2;
1238 if (r1->ts.type == BT_UNKNOWN)
1239 return true;
1241 /* Check type and rank. */
1242 if (!compare_type (r1, r2))
1244 snprintf (errmsg, err_len, "Type mismatch in function result (%s/%s)",
1245 gfc_typename (&r1->ts), gfc_typename (&r2->ts));
1246 return false;
1248 if (!compare_rank (r1, r2))
1250 snprintf (errmsg, err_len, "Rank mismatch in function result (%i/%i)",
1251 symbol_rank (r1), symbol_rank (r2));
1252 return false;
1255 /* Check ALLOCATABLE attribute. */
1256 if (r1->attr.allocatable != r2->attr.allocatable)
1258 snprintf (errmsg, err_len, "ALLOCATABLE attribute mismatch in "
1259 "function result");
1260 return false;
1263 /* Check POINTER attribute. */
1264 if (r1->attr.pointer != r2->attr.pointer)
1266 snprintf (errmsg, err_len, "POINTER attribute mismatch in "
1267 "function result");
1268 return false;
1271 /* Check CONTIGUOUS attribute. */
1272 if (r1->attr.contiguous != r2->attr.contiguous)
1274 snprintf (errmsg, err_len, "CONTIGUOUS attribute mismatch in "
1275 "function result");
1276 return false;
1279 /* Check PROCEDURE POINTER attribute. */
1280 if (r1 != s1 && r1->attr.proc_pointer != r2->attr.proc_pointer)
1282 snprintf (errmsg, err_len, "PROCEDURE POINTER mismatch in "
1283 "function result");
1284 return false;
1287 /* Check string length. */
1288 if (r1->ts.type == BT_CHARACTER && r1->ts.u.cl && r2->ts.u.cl)
1290 if (r1->ts.deferred != r2->ts.deferred)
1292 snprintf (errmsg, err_len, "Character length mismatch "
1293 "in function result");
1294 return false;
1297 if (r1->ts.u.cl->length && r2->ts.u.cl->length)
1299 int compval = gfc_dep_compare_expr (r1->ts.u.cl->length,
1300 r2->ts.u.cl->length);
1301 switch (compval)
1303 case -1:
1304 case 1:
1305 case -3:
1306 snprintf (errmsg, err_len, "Character length mismatch "
1307 "in function result");
1308 return false;
1310 case -2:
1311 /* FIXME: Implement a warning for this case.
1312 snprintf (errmsg, err_len, "Possible character length mismatch "
1313 "in function result");*/
1314 break;
1316 case 0:
1317 break;
1319 default:
1320 gfc_internal_error ("check_result_characteristics (1): Unexpected "
1321 "result %i of gfc_dep_compare_expr", compval);
1322 break;
1327 /* Check array shape. */
1328 if (!r1->attr.allocatable && !r1->attr.pointer && r1->as && r2->as)
1330 int i, compval;
1331 gfc_expr *shape1, *shape2;
1333 if (r1->as->type != r2->as->type)
1335 snprintf (errmsg, err_len, "Shape mismatch in function result");
1336 return false;
1339 if (r1->as->type == AS_EXPLICIT)
1340 for (i = 0; i < r1->as->rank + r1->as->corank; i++)
1342 shape1 = gfc_subtract (gfc_copy_expr (r1->as->upper[i]),
1343 gfc_copy_expr (r1->as->lower[i]));
1344 shape2 = gfc_subtract (gfc_copy_expr (r2->as->upper[i]),
1345 gfc_copy_expr (r2->as->lower[i]));
1346 compval = gfc_dep_compare_expr (shape1, shape2);
1347 gfc_free_expr (shape1);
1348 gfc_free_expr (shape2);
1349 switch (compval)
1351 case -1:
1352 case 1:
1353 case -3:
1354 snprintf (errmsg, err_len, "Shape mismatch in dimension %i of "
1355 "function result", i + 1);
1356 return false;
1358 case -2:
1359 /* FIXME: Implement a warning for this case.
1360 gfc_warning ("Possible shape mismatch in return value");*/
1361 break;
1363 case 0:
1364 break;
1366 default:
1367 gfc_internal_error ("check_result_characteristics (2): "
1368 "Unexpected result %i of "
1369 "gfc_dep_compare_expr", compval);
1370 break;
1375 return true;
1379 /* 'Compare' two formal interfaces associated with a pair of symbols.
1380 We return nonzero if there exists an actual argument list that
1381 would be ambiguous between the two interfaces, zero otherwise.
1382 'strict_flag' specifies whether all the characteristics are
1383 required to match, which is not the case for ambiguity checks.
1384 'p1' and 'p2' are the PASS arguments of both procedures (if applicable). */
1387 gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
1388 int generic_flag, int strict_flag,
1389 char *errmsg, int err_len,
1390 const char *p1, const char *p2)
1392 gfc_formal_arglist *f1, *f2;
1394 gcc_assert (name2 != NULL);
1396 if (s1->attr.function && (s2->attr.subroutine
1397 || (!s2->attr.function && s2->ts.type == BT_UNKNOWN
1398 && gfc_get_default_type (name2, s2->ns)->type == BT_UNKNOWN)))
1400 if (errmsg != NULL)
1401 snprintf (errmsg, err_len, "'%s' is not a function", name2);
1402 return 0;
1405 if (s1->attr.subroutine && s2->attr.function)
1407 if (errmsg != NULL)
1408 snprintf (errmsg, err_len, "'%s' is not a subroutine", name2);
1409 return 0;
1412 /* Do strict checks on all characteristics
1413 (for dummy procedures and procedure pointer assignments). */
1414 if (!generic_flag && strict_flag)
1416 if (s1->attr.function && s2->attr.function)
1418 /* If both are functions, check result characteristics. */
1419 if (!check_result_characteristics (s1, s2, errmsg, err_len))
1420 return 0;
1423 if (s1->attr.pure && !s2->attr.pure)
1425 snprintf (errmsg, err_len, "Mismatch in PURE attribute");
1426 return 0;
1428 if (s1->attr.elemental && !s2->attr.elemental)
1430 snprintf (errmsg, err_len, "Mismatch in ELEMENTAL attribute");
1431 return 0;
1435 if (s1->attr.if_source == IFSRC_UNKNOWN
1436 || s2->attr.if_source == IFSRC_UNKNOWN)
1437 return 1;
1439 f1 = gfc_sym_get_dummy_args (s1);
1440 f2 = gfc_sym_get_dummy_args (s2);
1442 if (f1 == NULL && f2 == NULL)
1443 return 1; /* Special case: No arguments. */
1445 if (generic_flag)
1447 if (count_types_test (f1, f2, p1, p2)
1448 || count_types_test (f2, f1, p2, p1))
1449 return 0;
1450 if (generic_correspondence (f1, f2, p1, p2)
1451 || generic_correspondence (f2, f1, p2, p1))
1452 return 0;
1454 else
1455 /* Perform the abbreviated correspondence test for operators (the
1456 arguments cannot be optional and are always ordered correctly).
1457 This is also done when comparing interfaces for dummy procedures and in
1458 procedure pointer assignments. */
1460 for (;;)
1462 /* Check existence. */
1463 if (f1 == NULL && f2 == NULL)
1464 break;
1465 if (f1 == NULL || f2 == NULL)
1467 if (errmsg != NULL)
1468 snprintf (errmsg, err_len, "'%s' has the wrong number of "
1469 "arguments", name2);
1470 return 0;
1473 if (UNLIMITED_POLY (f1->sym))
1474 goto next;
1476 if (strict_flag)
1478 /* Check all characteristics. */
1479 if (!check_dummy_characteristics (f1->sym, f2->sym, true,
1480 errmsg, err_len))
1481 return 0;
1483 else
1485 /* Only check type and rank. */
1486 if (!compare_type (f2->sym, f1->sym))
1488 if (errmsg != NULL)
1489 snprintf (errmsg, err_len, "Type mismatch in argument '%s' "
1490 "(%s/%s)", f1->sym->name,
1491 gfc_typename (&f1->sym->ts),
1492 gfc_typename (&f2->sym->ts));
1493 return 0;
1495 if (!compare_rank (f2->sym, f1->sym))
1497 if (errmsg != NULL)
1498 snprintf (errmsg, err_len, "Rank mismatch in argument '%s' "
1499 "(%i/%i)", f1->sym->name, symbol_rank (f1->sym),
1500 symbol_rank (f2->sym));
1501 return 0;
1504 next:
1505 f1 = f1->next;
1506 f2 = f2->next;
1509 return 1;
1513 /* Given a pointer to an interface pointer, remove duplicate
1514 interfaces and make sure that all symbols are either functions
1515 or subroutines, and all of the same kind. Returns nonzero if
1516 something goes wrong. */
1518 static int
1519 check_interface0 (gfc_interface *p, const char *interface_name)
1521 gfc_interface *psave, *q, *qlast;
1523 psave = p;
1524 for (; p; p = p->next)
1526 /* Make sure all symbols in the interface have been defined as
1527 functions or subroutines. */
1528 if (((!p->sym->attr.function && !p->sym->attr.subroutine)
1529 || !p->sym->attr.if_source)
1530 && p->sym->attr.flavor != FL_DERIVED)
1532 if (p->sym->attr.external)
1533 gfc_error ("Procedure '%s' in %s at %L has no explicit interface",
1534 p->sym->name, interface_name, &p->sym->declared_at);
1535 else
1536 gfc_error ("Procedure '%s' in %s at %L is neither function nor "
1537 "subroutine", p->sym->name, interface_name,
1538 &p->sym->declared_at);
1539 return 1;
1542 /* Verify that procedures are either all SUBROUTINEs or all FUNCTIONs. */
1543 if ((psave->sym->attr.function && !p->sym->attr.function
1544 && p->sym->attr.flavor != FL_DERIVED)
1545 || (psave->sym->attr.subroutine && !p->sym->attr.subroutine))
1547 if (p->sym->attr.flavor != FL_DERIVED)
1548 gfc_error ("In %s at %L procedures must be either all SUBROUTINEs"
1549 " or all FUNCTIONs", interface_name,
1550 &p->sym->declared_at);
1551 else
1552 gfc_error ("In %s at %L procedures must be all FUNCTIONs as the "
1553 "generic name is also the name of a derived type",
1554 interface_name, &p->sym->declared_at);
1555 return 1;
1558 /* F2003, C1207. F2008, C1207. */
1559 if (p->sym->attr.proc == PROC_INTERNAL
1560 && !gfc_notify_std (GFC_STD_F2008, "Internal procedure "
1561 "'%s' in %s at %L", p->sym->name,
1562 interface_name, &p->sym->declared_at))
1563 return 1;
1565 p = psave;
1567 /* Remove duplicate interfaces in this interface list. */
1568 for (; p; p = p->next)
1570 qlast = p;
1572 for (q = p->next; q;)
1574 if (p->sym != q->sym)
1576 qlast = q;
1577 q = q->next;
1579 else
1581 /* Duplicate interface. */
1582 qlast->next = q->next;
1583 free (q);
1584 q = qlast->next;
1589 return 0;
1593 /* Check lists of interfaces to make sure that no two interfaces are
1594 ambiguous. Duplicate interfaces (from the same symbol) are OK here. */
1596 static int
1597 check_interface1 (gfc_interface *p, gfc_interface *q0,
1598 int generic_flag, const char *interface_name,
1599 bool referenced)
1601 gfc_interface *q;
1602 for (; p; p = p->next)
1603 for (q = q0; q; q = q->next)
1605 if (p->sym == q->sym)
1606 continue; /* Duplicates OK here. */
1608 if (p->sym->name == q->sym->name && p->sym->module == q->sym->module)
1609 continue;
1611 if (p->sym->attr.flavor != FL_DERIVED
1612 && q->sym->attr.flavor != FL_DERIVED
1613 && gfc_compare_interfaces (p->sym, q->sym, q->sym->name,
1614 generic_flag, 0, NULL, 0, NULL, NULL))
1616 if (referenced)
1617 gfc_error ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1618 p->sym->name, q->sym->name, interface_name,
1619 &p->where);
1620 else if (!p->sym->attr.use_assoc && q->sym->attr.use_assoc)
1621 gfc_warning ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1622 p->sym->name, q->sym->name, interface_name,
1623 &p->where);
1624 else
1625 gfc_warning ("Although not referenced, '%s' has ambiguous "
1626 "interfaces at %L", interface_name, &p->where);
1627 return 1;
1630 return 0;
1634 /* Check the generic and operator interfaces of symbols to make sure
1635 that none of the interfaces conflict. The check has to be done
1636 after all of the symbols are actually loaded. */
1638 static void
1639 check_sym_interfaces (gfc_symbol *sym)
1641 char interface_name[100];
1642 gfc_interface *p;
1644 if (sym->ns != gfc_current_ns)
1645 return;
1647 if (sym->generic != NULL)
1649 sprintf (interface_name, "generic interface '%s'", sym->name);
1650 if (check_interface0 (sym->generic, interface_name))
1651 return;
1653 for (p = sym->generic; p; p = p->next)
1655 if (p->sym->attr.mod_proc
1656 && (p->sym->attr.if_source != IFSRC_DECL
1657 || p->sym->attr.procedure))
1659 gfc_error ("'%s' at %L is not a module procedure",
1660 p->sym->name, &p->where);
1661 return;
1665 /* Originally, this test was applied to host interfaces too;
1666 this is incorrect since host associated symbols, from any
1667 source, cannot be ambiguous with local symbols. */
1668 check_interface1 (sym->generic, sym->generic, 1, interface_name,
1669 sym->attr.referenced || !sym->attr.use_assoc);
1674 static void
1675 check_uop_interfaces (gfc_user_op *uop)
1677 char interface_name[100];
1678 gfc_user_op *uop2;
1679 gfc_namespace *ns;
1681 sprintf (interface_name, "operator interface '%s'", uop->name);
1682 if (check_interface0 (uop->op, interface_name))
1683 return;
1685 for (ns = gfc_current_ns; ns; ns = ns->parent)
1687 uop2 = gfc_find_uop (uop->name, ns);
1688 if (uop2 == NULL)
1689 continue;
1691 check_interface1 (uop->op, uop2->op, 0,
1692 interface_name, true);
1696 /* Given an intrinsic op, return an equivalent op if one exists,
1697 or INTRINSIC_NONE otherwise. */
1699 gfc_intrinsic_op
1700 gfc_equivalent_op (gfc_intrinsic_op op)
1702 switch(op)
1704 case INTRINSIC_EQ:
1705 return INTRINSIC_EQ_OS;
1707 case INTRINSIC_EQ_OS:
1708 return INTRINSIC_EQ;
1710 case INTRINSIC_NE:
1711 return INTRINSIC_NE_OS;
1713 case INTRINSIC_NE_OS:
1714 return INTRINSIC_NE;
1716 case INTRINSIC_GT:
1717 return INTRINSIC_GT_OS;
1719 case INTRINSIC_GT_OS:
1720 return INTRINSIC_GT;
1722 case INTRINSIC_GE:
1723 return INTRINSIC_GE_OS;
1725 case INTRINSIC_GE_OS:
1726 return INTRINSIC_GE;
1728 case INTRINSIC_LT:
1729 return INTRINSIC_LT_OS;
1731 case INTRINSIC_LT_OS:
1732 return INTRINSIC_LT;
1734 case INTRINSIC_LE:
1735 return INTRINSIC_LE_OS;
1737 case INTRINSIC_LE_OS:
1738 return INTRINSIC_LE;
1740 default:
1741 return INTRINSIC_NONE;
1745 /* For the namespace, check generic, user operator and intrinsic
1746 operator interfaces for consistency and to remove duplicate
1747 interfaces. We traverse the whole namespace, counting on the fact
1748 that most symbols will not have generic or operator interfaces. */
1750 void
1751 gfc_check_interfaces (gfc_namespace *ns)
1753 gfc_namespace *old_ns, *ns2;
1754 char interface_name[100];
1755 int i;
1757 old_ns = gfc_current_ns;
1758 gfc_current_ns = ns;
1760 gfc_traverse_ns (ns, check_sym_interfaces);
1762 gfc_traverse_user_op (ns, check_uop_interfaces);
1764 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
1766 if (i == INTRINSIC_USER)
1767 continue;
1769 if (i == INTRINSIC_ASSIGN)
1770 strcpy (interface_name, "intrinsic assignment operator");
1771 else
1772 sprintf (interface_name, "intrinsic '%s' operator",
1773 gfc_op2string ((gfc_intrinsic_op) i));
1775 if (check_interface0 (ns->op[i], interface_name))
1776 continue;
1778 if (ns->op[i])
1779 gfc_check_operator_interface (ns->op[i]->sym, (gfc_intrinsic_op) i,
1780 ns->op[i]->where);
1782 for (ns2 = ns; ns2; ns2 = ns2->parent)
1784 gfc_intrinsic_op other_op;
1786 if (check_interface1 (ns->op[i], ns2->op[i], 0,
1787 interface_name, true))
1788 goto done;
1790 /* i should be gfc_intrinsic_op, but has to be int with this cast
1791 here for stupid C++ compatibility rules. */
1792 other_op = gfc_equivalent_op ((gfc_intrinsic_op) i);
1793 if (other_op != INTRINSIC_NONE
1794 && check_interface1 (ns->op[i], ns2->op[other_op],
1795 0, interface_name, true))
1796 goto done;
1800 done:
1801 gfc_current_ns = old_ns;
1805 /* Given a symbol of a formal argument list and an expression, if the
1806 formal argument is allocatable, check that the actual argument is
1807 allocatable. Returns nonzero if compatible, zero if not compatible. */
1809 static int
1810 compare_allocatable (gfc_symbol *formal, gfc_expr *actual)
1812 symbol_attribute attr;
1814 if (formal->attr.allocatable
1815 || (formal->ts.type == BT_CLASS && CLASS_DATA (formal)->attr.allocatable))
1817 attr = gfc_expr_attr (actual);
1818 if (!attr.allocatable)
1819 return 0;
1822 return 1;
1826 /* Given a symbol of a formal argument list and an expression, if the
1827 formal argument is a pointer, see if the actual argument is a
1828 pointer. Returns nonzero if compatible, zero if not compatible. */
1830 static int
1831 compare_pointer (gfc_symbol *formal, gfc_expr *actual)
1833 symbol_attribute attr;
1835 if (formal->attr.pointer
1836 || (formal->ts.type == BT_CLASS && CLASS_DATA (formal)
1837 && CLASS_DATA (formal)->attr.class_pointer))
1839 attr = gfc_expr_attr (actual);
1841 /* Fortran 2008 allows non-pointer actual arguments. */
1842 if (!attr.pointer && attr.target && formal->attr.intent == INTENT_IN)
1843 return 2;
1845 if (!attr.pointer)
1846 return 0;
1849 return 1;
1853 /* Emit clear error messages for rank mismatch. */
1855 static void
1856 argument_rank_mismatch (const char *name, locus *where,
1857 int rank1, int rank2)
1860 /* TS 29113, C407b. */
1861 if (rank2 == -1)
1863 gfc_error ("The assumed-rank array at %L requires that the dummy argument"
1864 " '%s' has assumed-rank", where, name);
1866 else if (rank1 == 0)
1868 gfc_error ("Rank mismatch in argument '%s' at %L "
1869 "(scalar and rank-%d)", name, where, rank2);
1871 else if (rank2 == 0)
1873 gfc_error ("Rank mismatch in argument '%s' at %L "
1874 "(rank-%d and scalar)", name, where, rank1);
1876 else
1878 gfc_error ("Rank mismatch in argument '%s' at %L "
1879 "(rank-%d and rank-%d)", name, where, rank1, rank2);
1884 /* Given a symbol of a formal argument list and an expression, see if
1885 the two are compatible as arguments. Returns nonzero if
1886 compatible, zero if not compatible. */
1888 static int
1889 compare_parameter (gfc_symbol *formal, gfc_expr *actual,
1890 int ranks_must_agree, int is_elemental, locus *where)
1892 gfc_ref *ref;
1893 bool rank_check, is_pointer;
1895 /* If the formal arg has type BT_VOID, it's to one of the iso_c_binding
1896 procs c_f_pointer or c_f_procpointer, and we need to accept most
1897 pointers the user could give us. This should allow that. */
1898 if (formal->ts.type == BT_VOID)
1899 return 1;
1901 if (formal->ts.type == BT_DERIVED
1902 && formal->ts.u.derived && formal->ts.u.derived->ts.is_iso_c
1903 && actual->ts.type == BT_DERIVED
1904 && actual->ts.u.derived && actual->ts.u.derived->ts.is_iso_c)
1905 return 1;
1907 if (formal->ts.type == BT_CLASS && actual->ts.type == BT_DERIVED)
1908 /* Make sure the vtab symbol is present when
1909 the module variables are generated. */
1910 gfc_find_derived_vtab (actual->ts.u.derived);
1912 if (actual->ts.type == BT_PROCEDURE)
1914 char err[200];
1915 gfc_symbol *act_sym = actual->symtree->n.sym;
1917 if (formal->attr.flavor != FL_PROCEDURE)
1919 if (where)
1920 gfc_error ("Invalid procedure argument at %L", &actual->where);
1921 return 0;
1924 if (!gfc_compare_interfaces (formal, act_sym, act_sym->name, 0, 1, err,
1925 sizeof(err), NULL, NULL))
1927 if (where)
1928 gfc_error ("Interface mismatch in dummy procedure '%s' at %L: %s",
1929 formal->name, &actual->where, err);
1930 return 0;
1933 if (formal->attr.function && !act_sym->attr.function)
1935 gfc_add_function (&act_sym->attr, act_sym->name,
1936 &act_sym->declared_at);
1937 if (act_sym->ts.type == BT_UNKNOWN
1938 && !gfc_set_default_type (act_sym, 1, act_sym->ns))
1939 return 0;
1941 else if (formal->attr.subroutine && !act_sym->attr.subroutine)
1942 gfc_add_subroutine (&act_sym->attr, act_sym->name,
1943 &act_sym->declared_at);
1945 return 1;
1948 /* F2008, C1241. */
1949 if (formal->attr.pointer && formal->attr.contiguous
1950 && !gfc_is_simply_contiguous (actual, true))
1952 if (where)
1953 gfc_error ("Actual argument to contiguous pointer dummy '%s' at %L "
1954 "must be simply contiguous", formal->name, &actual->where);
1955 return 0;
1958 if ((actual->expr_type != EXPR_NULL || actual->ts.type != BT_UNKNOWN)
1959 && actual->ts.type != BT_HOLLERITH
1960 && formal->ts.type != BT_ASSUMED
1961 && !(formal->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
1962 && !gfc_compare_types (&formal->ts, &actual->ts)
1963 && !(formal->ts.type == BT_DERIVED && actual->ts.type == BT_CLASS
1964 && gfc_compare_derived_types (formal->ts.u.derived,
1965 CLASS_DATA (actual)->ts.u.derived)))
1967 if (where)
1968 gfc_error ("Type mismatch in argument '%s' at %L; passed %s to %s",
1969 formal->name, &actual->where, gfc_typename (&actual->ts),
1970 gfc_typename (&formal->ts));
1971 return 0;
1974 /* F2008, 12.5.2.5; IR F08/0073. */
1975 if (formal->ts.type == BT_CLASS && formal->attr.class_ok
1976 && actual->expr_type != EXPR_NULL
1977 && ((CLASS_DATA (formal)->attr.class_pointer
1978 && !formal->attr.intent == INTENT_IN)
1979 || CLASS_DATA (formal)->attr.allocatable))
1981 if (actual->ts.type != BT_CLASS)
1983 if (where)
1984 gfc_error ("Actual argument to '%s' at %L must be polymorphic",
1985 formal->name, &actual->where);
1986 return 0;
1989 if (!gfc_expr_attr (actual).class_ok)
1990 return 0;
1992 if (!gfc_compare_derived_types (CLASS_DATA (actual)->ts.u.derived,
1993 CLASS_DATA (formal)->ts.u.derived))
1995 if (where)
1996 gfc_error ("Actual argument to '%s' at %L must have the same "
1997 "declared type", formal->name, &actual->where);
1998 return 0;
2002 /* F08: 12.5.2.5 Allocatable and pointer dummy variables. However, this
2003 is necessary also for F03, so retain error for both.
2004 NOTE: Other type/kind errors pre-empt this error. Since they are F03
2005 compatible, no attempt has been made to channel to this one. */
2006 if (UNLIMITED_POLY (formal) && !UNLIMITED_POLY (actual)
2007 && (CLASS_DATA (formal)->attr.allocatable
2008 ||CLASS_DATA (formal)->attr.class_pointer))
2010 if (where)
2011 gfc_error ("Actual argument to '%s' at %L must be unlimited "
2012 "polymorphic since the formal argument is a "
2013 "pointer or allocatable unlimited polymorphic "
2014 "entity [F2008: 12.5.2.5]", formal->name,
2015 &actual->where);
2016 return 0;
2019 if (formal->attr.codimension && !gfc_is_coarray (actual))
2021 if (where)
2022 gfc_error ("Actual argument to '%s' at %L must be a coarray",
2023 formal->name, &actual->where);
2024 return 0;
2027 if (formal->attr.codimension && formal->attr.allocatable)
2029 gfc_ref *last = NULL;
2031 for (ref = actual->ref; ref; ref = ref->next)
2032 if (ref->type == REF_COMPONENT)
2033 last = ref;
2035 /* F2008, 12.5.2.6. */
2036 if ((last && last->u.c.component->as->corank != formal->as->corank)
2037 || (!last
2038 && actual->symtree->n.sym->as->corank != formal->as->corank))
2040 if (where)
2041 gfc_error ("Corank mismatch in argument '%s' at %L (%d and %d)",
2042 formal->name, &actual->where, formal->as->corank,
2043 last ? last->u.c.component->as->corank
2044 : actual->symtree->n.sym->as->corank);
2045 return 0;
2049 if (formal->attr.codimension)
2051 /* F2008, 12.5.2.8. */
2052 if (formal->attr.dimension
2053 && (formal->attr.contiguous || formal->as->type != AS_ASSUMED_SHAPE)
2054 && gfc_expr_attr (actual).dimension
2055 && !gfc_is_simply_contiguous (actual, true))
2057 if (where)
2058 gfc_error ("Actual argument to '%s' at %L must be simply "
2059 "contiguous", formal->name, &actual->where);
2060 return 0;
2063 /* F2008, C1303 and C1304. */
2064 if (formal->attr.intent != INTENT_INOUT
2065 && (((formal->ts.type == BT_DERIVED || formal->ts.type == BT_CLASS)
2066 && formal->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
2067 && formal->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
2068 || formal->attr.lock_comp))
2071 if (where)
2072 gfc_error ("Actual argument to non-INTENT(INOUT) dummy '%s' at %L, "
2073 "which is LOCK_TYPE or has a LOCK_TYPE component",
2074 formal->name, &actual->where);
2075 return 0;
2079 /* F2008, C1239/C1240. */
2080 if (actual->expr_type == EXPR_VARIABLE
2081 && (actual->symtree->n.sym->attr.asynchronous
2082 || actual->symtree->n.sym->attr.volatile_)
2083 && (formal->attr.asynchronous || formal->attr.volatile_)
2084 && actual->rank && !gfc_is_simply_contiguous (actual, true)
2085 && ((formal->as->type != AS_ASSUMED_SHAPE
2086 && formal->as->type != AS_ASSUMED_RANK && !formal->attr.pointer)
2087 || formal->attr.contiguous))
2089 if (where)
2090 gfc_error ("Dummy argument '%s' has to be a pointer, assumed-shape or "
2091 "assumed-rank array without CONTIGUOUS attribute - as actual"
2092 " argument at %L is not simply contiguous and both are "
2093 "ASYNCHRONOUS or VOLATILE", formal->name, &actual->where);
2094 return 0;
2097 if (formal->attr.allocatable && !formal->attr.codimension
2098 && gfc_expr_attr (actual).codimension)
2100 if (formal->attr.intent == INTENT_OUT)
2102 if (where)
2103 gfc_error ("Passing coarray at %L to allocatable, noncoarray, "
2104 "INTENT(OUT) dummy argument '%s'", &actual->where,
2105 formal->name);
2106 return 0;
2108 else if (gfc_option.warn_surprising && where
2109 && formal->attr.intent != INTENT_IN)
2110 gfc_warning ("Passing coarray at %L to allocatable, noncoarray dummy "
2111 "argument '%s', which is invalid if the allocation status"
2112 " is modified", &actual->where, formal->name);
2115 /* If the rank is the same or the formal argument has assumed-rank. */
2116 if (symbol_rank (formal) == actual->rank || symbol_rank (formal) == -1)
2117 return 1;
2119 if (actual->ts.type == BT_CLASS && CLASS_DATA (actual)->as
2120 && CLASS_DATA (actual)->as->rank == symbol_rank (formal))
2121 return 1;
2123 rank_check = where != NULL && !is_elemental && formal->as
2124 && (formal->as->type == AS_ASSUMED_SHAPE
2125 || formal->as->type == AS_DEFERRED)
2126 && actual->expr_type != EXPR_NULL;
2128 /* Skip rank checks for NO_ARG_CHECK. */
2129 if (formal->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
2130 return 1;
2132 /* Scalar & coindexed, see: F2008, Section 12.5.2.4. */
2133 if (rank_check || ranks_must_agree
2134 || (formal->attr.pointer && actual->expr_type != EXPR_NULL)
2135 || (actual->rank != 0 && !(is_elemental || formal->attr.dimension))
2136 || (actual->rank == 0
2137 && ((formal->ts.type == BT_CLASS
2138 && CLASS_DATA (formal)->as->type == AS_ASSUMED_SHAPE)
2139 || (formal->ts.type != BT_CLASS
2140 && formal->as->type == AS_ASSUMED_SHAPE))
2141 && actual->expr_type != EXPR_NULL)
2142 || (actual->rank == 0 && formal->attr.dimension
2143 && gfc_is_coindexed (actual)))
2145 if (where)
2146 argument_rank_mismatch (formal->name, &actual->where,
2147 symbol_rank (formal), actual->rank);
2148 return 0;
2150 else if (actual->rank != 0 && (is_elemental || formal->attr.dimension))
2151 return 1;
2153 /* At this point, we are considering a scalar passed to an array. This
2154 is valid (cf. F95 12.4.1.1, F2003 12.4.1.2, and F2008 12.5.2.4),
2155 - if the actual argument is (a substring of) an element of a
2156 non-assumed-shape/non-pointer/non-polymorphic array; or
2157 - (F2003) if the actual argument is of type character of default/c_char
2158 kind. */
2160 is_pointer = actual->expr_type == EXPR_VARIABLE
2161 ? actual->symtree->n.sym->attr.pointer : false;
2163 for (ref = actual->ref; ref; ref = ref->next)
2165 if (ref->type == REF_COMPONENT)
2166 is_pointer = ref->u.c.component->attr.pointer;
2167 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT
2168 && ref->u.ar.dimen > 0
2169 && (!ref->next
2170 || (ref->next->type == REF_SUBSTRING && !ref->next->next)))
2171 break;
2174 if (actual->ts.type == BT_CLASS && actual->expr_type != EXPR_NULL)
2176 if (where)
2177 gfc_error ("Polymorphic scalar passed to array dummy argument '%s' "
2178 "at %L", formal->name, &actual->where);
2179 return 0;
2182 if (actual->expr_type != EXPR_NULL && ref && actual->ts.type != BT_CHARACTER
2183 && (is_pointer || ref->u.ar.as->type == AS_ASSUMED_SHAPE))
2185 if (where)
2186 gfc_error ("Element of assumed-shaped or pointer "
2187 "array passed to array dummy argument '%s' at %L",
2188 formal->name, &actual->where);
2189 return 0;
2192 if (actual->ts.type == BT_CHARACTER && actual->expr_type != EXPR_NULL
2193 && (!ref || is_pointer || ref->u.ar.as->type == AS_ASSUMED_SHAPE))
2195 if (formal->ts.kind != 1 && (gfc_option.allow_std & GFC_STD_GNU) == 0)
2197 if (where)
2198 gfc_error ("Extension: Scalar non-default-kind, non-C_CHAR-kind "
2199 "CHARACTER actual argument with array dummy argument "
2200 "'%s' at %L", formal->name, &actual->where);
2201 return 0;
2204 if (where && (gfc_option.allow_std & GFC_STD_F2003) == 0)
2206 gfc_error ("Fortran 2003: Scalar CHARACTER actual argument with "
2207 "array dummy argument '%s' at %L",
2208 formal->name, &actual->where);
2209 return 0;
2211 else if ((gfc_option.allow_std & GFC_STD_F2003) == 0)
2212 return 0;
2213 else
2214 return 1;
2217 if (ref == NULL && actual->expr_type != EXPR_NULL)
2219 if (where)
2220 argument_rank_mismatch (formal->name, &actual->where,
2221 symbol_rank (formal), actual->rank);
2222 return 0;
2225 return 1;
2229 /* Returns the storage size of a symbol (formal argument) or
2230 zero if it cannot be determined. */
2232 static unsigned long
2233 get_sym_storage_size (gfc_symbol *sym)
2235 int i;
2236 unsigned long strlen, elements;
2238 if (sym->ts.type == BT_CHARACTER)
2240 if (sym->ts.u.cl && sym->ts.u.cl->length
2241 && sym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
2242 strlen = mpz_get_ui (sym->ts.u.cl->length->value.integer);
2243 else
2244 return 0;
2246 else
2247 strlen = 1;
2249 if (symbol_rank (sym) == 0)
2250 return strlen;
2252 elements = 1;
2253 if (sym->as->type != AS_EXPLICIT)
2254 return 0;
2255 for (i = 0; i < sym->as->rank; i++)
2257 if (sym->as->upper[i]->expr_type != EXPR_CONSTANT
2258 || sym->as->lower[i]->expr_type != EXPR_CONSTANT)
2259 return 0;
2261 elements *= mpz_get_si (sym->as->upper[i]->value.integer)
2262 - mpz_get_si (sym->as->lower[i]->value.integer) + 1L;
2265 return strlen*elements;
2269 /* Returns the storage size of an expression (actual argument) or
2270 zero if it cannot be determined. For an array element, it returns
2271 the remaining size as the element sequence consists of all storage
2272 units of the actual argument up to the end of the array. */
2274 static unsigned long
2275 get_expr_storage_size (gfc_expr *e)
2277 int i;
2278 long int strlen, elements;
2279 long int substrlen = 0;
2280 bool is_str_storage = false;
2281 gfc_ref *ref;
2283 if (e == NULL)
2284 return 0;
2286 if (e->ts.type == BT_CHARACTER)
2288 if (e->ts.u.cl && e->ts.u.cl->length
2289 && e->ts.u.cl->length->expr_type == EXPR_CONSTANT)
2290 strlen = mpz_get_si (e->ts.u.cl->length->value.integer);
2291 else if (e->expr_type == EXPR_CONSTANT
2292 && (e->ts.u.cl == NULL || e->ts.u.cl->length == NULL))
2293 strlen = e->value.character.length;
2294 else
2295 return 0;
2297 else
2298 strlen = 1; /* Length per element. */
2300 if (e->rank == 0 && !e->ref)
2301 return strlen;
2303 elements = 1;
2304 if (!e->ref)
2306 if (!e->shape)
2307 return 0;
2308 for (i = 0; i < e->rank; i++)
2309 elements *= mpz_get_si (e->shape[i]);
2310 return elements*strlen;
2313 for (ref = e->ref; ref; ref = ref->next)
2315 if (ref->type == REF_SUBSTRING && ref->u.ss.start
2316 && ref->u.ss.start->expr_type == EXPR_CONSTANT)
2318 if (is_str_storage)
2320 /* The string length is the substring length.
2321 Set now to full string length. */
2322 if (!ref->u.ss.length || !ref->u.ss.length->length
2323 || ref->u.ss.length->length->expr_type != EXPR_CONSTANT)
2324 return 0;
2326 strlen = mpz_get_ui (ref->u.ss.length->length->value.integer);
2328 substrlen = strlen - mpz_get_ui (ref->u.ss.start->value.integer) + 1;
2329 continue;
2332 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
2333 for (i = 0; i < ref->u.ar.dimen; i++)
2335 long int start, end, stride;
2336 stride = 1;
2338 if (ref->u.ar.stride[i])
2340 if (ref->u.ar.stride[i]->expr_type == EXPR_CONSTANT)
2341 stride = mpz_get_si (ref->u.ar.stride[i]->value.integer);
2342 else
2343 return 0;
2346 if (ref->u.ar.start[i])
2348 if (ref->u.ar.start[i]->expr_type == EXPR_CONSTANT)
2349 start = mpz_get_si (ref->u.ar.start[i]->value.integer);
2350 else
2351 return 0;
2353 else if (ref->u.ar.as->lower[i]
2354 && ref->u.ar.as->lower[i]->expr_type == EXPR_CONSTANT)
2355 start = mpz_get_si (ref->u.ar.as->lower[i]->value.integer);
2356 else
2357 return 0;
2359 if (ref->u.ar.end[i])
2361 if (ref->u.ar.end[i]->expr_type == EXPR_CONSTANT)
2362 end = mpz_get_si (ref->u.ar.end[i]->value.integer);
2363 else
2364 return 0;
2366 else if (ref->u.ar.as->upper[i]
2367 && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT)
2368 end = mpz_get_si (ref->u.ar.as->upper[i]->value.integer);
2369 else
2370 return 0;
2372 elements *= (end - start)/stride + 1L;
2374 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_FULL)
2375 for (i = 0; i < ref->u.ar.as->rank; i++)
2377 if (ref->u.ar.as->lower[i] && ref->u.ar.as->upper[i]
2378 && ref->u.ar.as->lower[i]->expr_type == EXPR_CONSTANT
2379 && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT)
2380 elements *= mpz_get_si (ref->u.ar.as->upper[i]->value.integer)
2381 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer)
2382 + 1L;
2383 else
2384 return 0;
2386 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT
2387 && e->expr_type == EXPR_VARIABLE)
2389 if (ref->u.ar.as->type == AS_ASSUMED_SHAPE
2390 || e->symtree->n.sym->attr.pointer)
2392 elements = 1;
2393 continue;
2396 /* Determine the number of remaining elements in the element
2397 sequence for array element designators. */
2398 is_str_storage = true;
2399 for (i = ref->u.ar.dimen - 1; i >= 0; i--)
2401 if (ref->u.ar.start[i] == NULL
2402 || ref->u.ar.start[i]->expr_type != EXPR_CONSTANT
2403 || ref->u.ar.as->upper[i] == NULL
2404 || ref->u.ar.as->lower[i] == NULL
2405 || ref->u.ar.as->upper[i]->expr_type != EXPR_CONSTANT
2406 || ref->u.ar.as->lower[i]->expr_type != EXPR_CONSTANT)
2407 return 0;
2409 elements
2410 = elements
2411 * (mpz_get_si (ref->u.ar.as->upper[i]->value.integer)
2412 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer)
2413 + 1L)
2414 - (mpz_get_si (ref->u.ar.start[i]->value.integer)
2415 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer));
2420 if (substrlen)
2421 return (is_str_storage) ? substrlen + (elements-1)*strlen
2422 : elements*strlen;
2423 else
2424 return elements*strlen;
2428 /* Given an expression, check whether it is an array section
2429 which has a vector subscript. If it has, one is returned,
2430 otherwise zero. */
2433 gfc_has_vector_subscript (gfc_expr *e)
2435 int i;
2436 gfc_ref *ref;
2438 if (e == NULL || e->rank == 0 || e->expr_type != EXPR_VARIABLE)
2439 return 0;
2441 for (ref = e->ref; ref; ref = ref->next)
2442 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
2443 for (i = 0; i < ref->u.ar.dimen; i++)
2444 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
2445 return 1;
2447 return 0;
2451 /* Given formal and actual argument lists, see if they are compatible.
2452 If they are compatible, the actual argument list is sorted to
2453 correspond with the formal list, and elements for missing optional
2454 arguments are inserted. If WHERE pointer is nonnull, then we issue
2455 errors when things don't match instead of just returning the status
2456 code. */
2458 static int
2459 compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
2460 int ranks_must_agree, int is_elemental, locus *where)
2462 gfc_actual_arglist **new_arg, *a, *actual, temp;
2463 gfc_formal_arglist *f;
2464 int i, n, na;
2465 unsigned long actual_size, formal_size;
2466 bool full_array = false;
2468 actual = *ap;
2470 if (actual == NULL && formal == NULL)
2471 return 1;
2473 n = 0;
2474 for (f = formal; f; f = f->next)
2475 n++;
2477 new_arg = XALLOCAVEC (gfc_actual_arglist *, n);
2479 for (i = 0; i < n; i++)
2480 new_arg[i] = NULL;
2482 na = 0;
2483 f = formal;
2484 i = 0;
2486 for (a = actual; a; a = a->next, f = f->next)
2488 /* Look for keywords but ignore g77 extensions like %VAL. */
2489 if (a->name != NULL && a->name[0] != '%')
2491 i = 0;
2492 for (f = formal; f; f = f->next, i++)
2494 if (f->sym == NULL)
2495 continue;
2496 if (strcmp (f->sym->name, a->name) == 0)
2497 break;
2500 if (f == NULL)
2502 if (where)
2503 gfc_error ("Keyword argument '%s' at %L is not in "
2504 "the procedure", a->name, &a->expr->where);
2505 return 0;
2508 if (new_arg[i] != NULL)
2510 if (where)
2511 gfc_error ("Keyword argument '%s' at %L is already associated "
2512 "with another actual argument", a->name,
2513 &a->expr->where);
2514 return 0;
2518 if (f == NULL)
2520 if (where)
2521 gfc_error ("More actual than formal arguments in procedure "
2522 "call at %L", where);
2524 return 0;
2527 if (f->sym == NULL && a->expr == NULL)
2528 goto match;
2530 if (f->sym == NULL)
2532 if (where)
2533 gfc_error ("Missing alternate return spec in subroutine call "
2534 "at %L", where);
2535 return 0;
2538 if (a->expr == NULL)
2540 if (where)
2541 gfc_error ("Unexpected alternate return spec in subroutine "
2542 "call at %L", where);
2543 return 0;
2546 /* Make sure that intrinsic vtables exist for calls to unlimited
2547 polymorphic formal arguments. */
2548 if (UNLIMITED_POLY (f->sym)
2549 && a->expr->ts.type != BT_DERIVED
2550 && a->expr->ts.type != BT_CLASS)
2551 gfc_find_intrinsic_vtab (&a->expr->ts);
2553 if (a->expr->expr_type == EXPR_NULL
2554 && ((f->sym->ts.type != BT_CLASS && !f->sym->attr.pointer
2555 && (f->sym->attr.allocatable || !f->sym->attr.optional
2556 || (gfc_option.allow_std & GFC_STD_F2008) == 0))
2557 || (f->sym->ts.type == BT_CLASS
2558 && !CLASS_DATA (f->sym)->attr.class_pointer
2559 && (CLASS_DATA (f->sym)->attr.allocatable
2560 || !f->sym->attr.optional
2561 || (gfc_option.allow_std & GFC_STD_F2008) == 0))))
2563 if (where
2564 && (!f->sym->attr.optional
2565 || (f->sym->ts.type != BT_CLASS && f->sym->attr.allocatable)
2566 || (f->sym->ts.type == BT_CLASS
2567 && CLASS_DATA (f->sym)->attr.allocatable)))
2568 gfc_error ("Unexpected NULL() intrinsic at %L to dummy '%s'",
2569 where, f->sym->name);
2570 else if (where)
2571 gfc_error ("Fortran 2008: Null pointer at %L to non-pointer "
2572 "dummy '%s'", where, f->sym->name);
2574 return 0;
2577 if (!compare_parameter (f->sym, a->expr, ranks_must_agree,
2578 is_elemental, where))
2579 return 0;
2581 /* TS 29113, 6.3p2. */
2582 if (f->sym->ts.type == BT_ASSUMED
2583 && (a->expr->ts.type == BT_DERIVED
2584 || (a->expr->ts.type == BT_CLASS && CLASS_DATA (a->expr))))
2586 gfc_namespace *f2k_derived;
2588 f2k_derived = a->expr->ts.type == BT_DERIVED
2589 ? a->expr->ts.u.derived->f2k_derived
2590 : CLASS_DATA (a->expr)->ts.u.derived->f2k_derived;
2592 if (f2k_derived
2593 && (f2k_derived->finalizers || f2k_derived->tb_sym_root))
2595 gfc_error ("Actual argument at %L to assumed-type dummy is of "
2596 "derived type with type-bound or FINAL procedures",
2597 &a->expr->where);
2598 return false;
2602 /* Special case for character arguments. For allocatable, pointer
2603 and assumed-shape dummies, the string length needs to match
2604 exactly. */
2605 if (a->expr->ts.type == BT_CHARACTER
2606 && a->expr->ts.u.cl && a->expr->ts.u.cl->length
2607 && a->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
2608 && f->sym->ts.u.cl && f->sym->ts.u.cl && f->sym->ts.u.cl->length
2609 && f->sym->ts.u.cl->length->expr_type == EXPR_CONSTANT
2610 && (f->sym->attr.pointer || f->sym->attr.allocatable
2611 || (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2612 && (mpz_cmp (a->expr->ts.u.cl->length->value.integer,
2613 f->sym->ts.u.cl->length->value.integer) != 0))
2615 if (where && (f->sym->attr.pointer || f->sym->attr.allocatable))
2616 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
2617 "argument and pointer or allocatable dummy argument "
2618 "'%s' at %L",
2619 mpz_get_si (a->expr->ts.u.cl->length->value.integer),
2620 mpz_get_si (f->sym->ts.u.cl->length->value.integer),
2621 f->sym->name, &a->expr->where);
2622 else if (where)
2623 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
2624 "argument and assumed-shape dummy argument '%s' "
2625 "at %L",
2626 mpz_get_si (a->expr->ts.u.cl->length->value.integer),
2627 mpz_get_si (f->sym->ts.u.cl->length->value.integer),
2628 f->sym->name, &a->expr->where);
2629 return 0;
2632 if ((f->sym->attr.pointer || f->sym->attr.allocatable)
2633 && f->sym->ts.deferred != a->expr->ts.deferred
2634 && a->expr->ts.type == BT_CHARACTER)
2636 if (where)
2637 gfc_error ("Actual argument at %L to allocatable or "
2638 "pointer dummy argument '%s' must have a deferred "
2639 "length type parameter if and only if the dummy has one",
2640 &a->expr->where, f->sym->name);
2641 return 0;
2644 if (f->sym->ts.type == BT_CLASS)
2645 goto skip_size_check;
2647 actual_size = get_expr_storage_size (a->expr);
2648 formal_size = get_sym_storage_size (f->sym);
2649 if (actual_size != 0 && actual_size < formal_size
2650 && a->expr->ts.type != BT_PROCEDURE
2651 && f->sym->attr.flavor != FL_PROCEDURE)
2653 if (a->expr->ts.type == BT_CHARACTER && !f->sym->as && where)
2654 gfc_warning ("Character length of actual argument shorter "
2655 "than of dummy argument '%s' (%lu/%lu) at %L",
2656 f->sym->name, actual_size, formal_size,
2657 &a->expr->where);
2658 else if (where)
2659 gfc_warning ("Actual argument contains too few "
2660 "elements for dummy argument '%s' (%lu/%lu) at %L",
2661 f->sym->name, actual_size, formal_size,
2662 &a->expr->where);
2663 return 0;
2666 skip_size_check:
2668 /* Satisfy F03:12.4.1.3 by ensuring that a procedure pointer actual
2669 argument is provided for a procedure pointer formal argument. */
2670 if (f->sym->attr.proc_pointer
2671 && !((a->expr->expr_type == EXPR_VARIABLE
2672 && a->expr->symtree->n.sym->attr.proc_pointer)
2673 || (a->expr->expr_type == EXPR_FUNCTION
2674 && a->expr->symtree->n.sym->result->attr.proc_pointer)
2675 || gfc_is_proc_ptr_comp (a->expr)))
2677 if (where)
2678 gfc_error ("Expected a procedure pointer for argument '%s' at %L",
2679 f->sym->name, &a->expr->where);
2680 return 0;
2683 /* Satisfy F03:12.4.1.3 by ensuring that a procedure actual argument is
2684 provided for a procedure formal argument. */
2685 if (f->sym->attr.flavor == FL_PROCEDURE
2686 && gfc_expr_attr (a->expr).flavor != FL_PROCEDURE)
2688 if (where)
2689 gfc_error ("Expected a procedure for argument '%s' at %L",
2690 f->sym->name, &a->expr->where);
2691 return 0;
2694 if (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE
2695 && a->expr->expr_type == EXPR_VARIABLE
2696 && a->expr->symtree->n.sym->as
2697 && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SIZE
2698 && (a->expr->ref == NULL
2699 || (a->expr->ref->type == REF_ARRAY
2700 && a->expr->ref->u.ar.type == AR_FULL)))
2702 if (where)
2703 gfc_error ("Actual argument for '%s' cannot be an assumed-size"
2704 " array at %L", f->sym->name, where);
2705 return 0;
2708 if (a->expr->expr_type != EXPR_NULL
2709 && compare_pointer (f->sym, a->expr) == 0)
2711 if (where)
2712 gfc_error ("Actual argument for '%s' must be a pointer at %L",
2713 f->sym->name, &a->expr->where);
2714 return 0;
2717 if (a->expr->expr_type != EXPR_NULL
2718 && (gfc_option.allow_std & GFC_STD_F2008) == 0
2719 && compare_pointer (f->sym, a->expr) == 2)
2721 if (where)
2722 gfc_error ("Fortran 2008: Non-pointer actual argument at %L to "
2723 "pointer dummy '%s'", &a->expr->where,f->sym->name);
2724 return 0;
2728 /* Fortran 2008, C1242. */
2729 if (f->sym->attr.pointer && gfc_is_coindexed (a->expr))
2731 if (where)
2732 gfc_error ("Coindexed actual argument at %L to pointer "
2733 "dummy '%s'",
2734 &a->expr->where, f->sym->name);
2735 return 0;
2738 /* Fortran 2008, 12.5.2.5 (no constraint). */
2739 if (a->expr->expr_type == EXPR_VARIABLE
2740 && f->sym->attr.intent != INTENT_IN
2741 && f->sym->attr.allocatable
2742 && gfc_is_coindexed (a->expr))
2744 if (where)
2745 gfc_error ("Coindexed actual argument at %L to allocatable "
2746 "dummy '%s' requires INTENT(IN)",
2747 &a->expr->where, f->sym->name);
2748 return 0;
2751 /* Fortran 2008, C1237. */
2752 if (a->expr->expr_type == EXPR_VARIABLE
2753 && (f->sym->attr.asynchronous || f->sym->attr.volatile_)
2754 && gfc_is_coindexed (a->expr)
2755 && (a->expr->symtree->n.sym->attr.volatile_
2756 || a->expr->symtree->n.sym->attr.asynchronous))
2758 if (where)
2759 gfc_error ("Coindexed ASYNCHRONOUS or VOLATILE actual argument at "
2760 "%L requires that dummy '%s' has neither "
2761 "ASYNCHRONOUS nor VOLATILE", &a->expr->where,
2762 f->sym->name);
2763 return 0;
2766 /* Fortran 2008, 12.5.2.4 (no constraint). */
2767 if (a->expr->expr_type == EXPR_VARIABLE
2768 && f->sym->attr.intent != INTENT_IN && !f->sym->attr.value
2769 && gfc_is_coindexed (a->expr)
2770 && gfc_has_ultimate_allocatable (a->expr))
2772 if (where)
2773 gfc_error ("Coindexed actual argument at %L with allocatable "
2774 "ultimate component to dummy '%s' requires either VALUE "
2775 "or INTENT(IN)", &a->expr->where, f->sym->name);
2776 return 0;
2779 if (f->sym->ts.type == BT_CLASS
2780 && CLASS_DATA (f->sym)->attr.allocatable
2781 && gfc_is_class_array_ref (a->expr, &full_array)
2782 && !full_array)
2784 if (where)
2785 gfc_error ("Actual CLASS array argument for '%s' must be a full "
2786 "array at %L", f->sym->name, &a->expr->where);
2787 return 0;
2791 if (a->expr->expr_type != EXPR_NULL
2792 && compare_allocatable (f->sym, a->expr) == 0)
2794 if (where)
2795 gfc_error ("Actual argument for '%s' must be ALLOCATABLE at %L",
2796 f->sym->name, &a->expr->where);
2797 return 0;
2800 /* Check intent = OUT/INOUT for definable actual argument. */
2801 if ((f->sym->attr.intent == INTENT_OUT
2802 || f->sym->attr.intent == INTENT_INOUT))
2804 const char* context = (where
2805 ? _("actual argument to INTENT = OUT/INOUT")
2806 : NULL);
2808 if (((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
2809 && CLASS_DATA (f->sym)->attr.class_pointer)
2810 || (f->sym->ts.type != BT_CLASS && f->sym->attr.pointer))
2811 && !gfc_check_vardef_context (a->expr, true, false, false, context))
2812 return 0;
2813 if (!gfc_check_vardef_context (a->expr, false, false, false, context))
2814 return 0;
2817 if ((f->sym->attr.intent == INTENT_OUT
2818 || f->sym->attr.intent == INTENT_INOUT
2819 || f->sym->attr.volatile_
2820 || f->sym->attr.asynchronous)
2821 && gfc_has_vector_subscript (a->expr))
2823 if (where)
2824 gfc_error ("Array-section actual argument with vector "
2825 "subscripts at %L is incompatible with INTENT(OUT), "
2826 "INTENT(INOUT), VOLATILE or ASYNCHRONOUS attribute "
2827 "of the dummy argument '%s'",
2828 &a->expr->where, f->sym->name);
2829 return 0;
2832 /* C1232 (R1221) For an actual argument which is an array section or
2833 an assumed-shape array, the dummy argument shall be an assumed-
2834 shape array, if the dummy argument has the VOLATILE attribute. */
2836 if (f->sym->attr.volatile_
2837 && a->expr->symtree->n.sym->as
2838 && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SHAPE
2839 && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2841 if (where)
2842 gfc_error ("Assumed-shape actual argument at %L is "
2843 "incompatible with the non-assumed-shape "
2844 "dummy argument '%s' due to VOLATILE attribute",
2845 &a->expr->where,f->sym->name);
2846 return 0;
2849 if (f->sym->attr.volatile_
2850 && a->expr->ref && a->expr->ref->u.ar.type == AR_SECTION
2851 && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2853 if (where)
2854 gfc_error ("Array-section actual argument at %L is "
2855 "incompatible with the non-assumed-shape "
2856 "dummy argument '%s' due to VOLATILE attribute",
2857 &a->expr->where,f->sym->name);
2858 return 0;
2861 /* C1233 (R1221) For an actual argument which is a pointer array, the
2862 dummy argument shall be an assumed-shape or pointer array, if the
2863 dummy argument has the VOLATILE attribute. */
2865 if (f->sym->attr.volatile_
2866 && a->expr->symtree->n.sym->attr.pointer
2867 && a->expr->symtree->n.sym->as
2868 && !(f->sym->as
2869 && (f->sym->as->type == AS_ASSUMED_SHAPE
2870 || f->sym->attr.pointer)))
2872 if (where)
2873 gfc_error ("Pointer-array actual argument at %L requires "
2874 "an assumed-shape or pointer-array dummy "
2875 "argument '%s' due to VOLATILE attribute",
2876 &a->expr->where,f->sym->name);
2877 return 0;
2880 match:
2881 if (a == actual)
2882 na = i;
2884 new_arg[i++] = a;
2887 /* Make sure missing actual arguments are optional. */
2888 i = 0;
2889 for (f = formal; f; f = f->next, i++)
2891 if (new_arg[i] != NULL)
2892 continue;
2893 if (f->sym == NULL)
2895 if (where)
2896 gfc_error ("Missing alternate return spec in subroutine call "
2897 "at %L", where);
2898 return 0;
2900 if (!f->sym->attr.optional)
2902 if (where)
2903 gfc_error ("Missing actual argument for argument '%s' at %L",
2904 f->sym->name, where);
2905 return 0;
2909 /* The argument lists are compatible. We now relink a new actual
2910 argument list with null arguments in the right places. The head
2911 of the list remains the head. */
2912 for (i = 0; i < n; i++)
2913 if (new_arg[i] == NULL)
2914 new_arg[i] = gfc_get_actual_arglist ();
2916 if (na != 0)
2918 temp = *new_arg[0];
2919 *new_arg[0] = *actual;
2920 *actual = temp;
2922 a = new_arg[0];
2923 new_arg[0] = new_arg[na];
2924 new_arg[na] = a;
2927 for (i = 0; i < n - 1; i++)
2928 new_arg[i]->next = new_arg[i + 1];
2930 new_arg[i]->next = NULL;
2932 if (*ap == NULL && n > 0)
2933 *ap = new_arg[0];
2935 /* Note the types of omitted optional arguments. */
2936 for (a = *ap, f = formal; a; a = a->next, f = f->next)
2937 if (a->expr == NULL && a->label == NULL)
2938 a->missing_arg_type = f->sym->ts.type;
2940 return 1;
2944 typedef struct
2946 gfc_formal_arglist *f;
2947 gfc_actual_arglist *a;
2949 argpair;
2951 /* qsort comparison function for argument pairs, with the following
2952 order:
2953 - p->a->expr == NULL
2954 - p->a->expr->expr_type != EXPR_VARIABLE
2955 - growing p->a->expr->symbol. */
2957 static int
2958 pair_cmp (const void *p1, const void *p2)
2960 const gfc_actual_arglist *a1, *a2;
2962 /* *p1 and *p2 are elements of the to-be-sorted array. */
2963 a1 = ((const argpair *) p1)->a;
2964 a2 = ((const argpair *) p2)->a;
2965 if (!a1->expr)
2967 if (!a2->expr)
2968 return 0;
2969 return -1;
2971 if (!a2->expr)
2972 return 1;
2973 if (a1->expr->expr_type != EXPR_VARIABLE)
2975 if (a2->expr->expr_type != EXPR_VARIABLE)
2976 return 0;
2977 return -1;
2979 if (a2->expr->expr_type != EXPR_VARIABLE)
2980 return 1;
2981 return a1->expr->symtree->n.sym < a2->expr->symtree->n.sym;
2985 /* Given two expressions from some actual arguments, test whether they
2986 refer to the same expression. The analysis is conservative.
2987 Returning false will produce no warning. */
2989 static bool
2990 compare_actual_expr (gfc_expr *e1, gfc_expr *e2)
2992 const gfc_ref *r1, *r2;
2994 if (!e1 || !e2
2995 || e1->expr_type != EXPR_VARIABLE
2996 || e2->expr_type != EXPR_VARIABLE
2997 || e1->symtree->n.sym != e2->symtree->n.sym)
2998 return false;
3000 /* TODO: improve comparison, see expr.c:show_ref(). */
3001 for (r1 = e1->ref, r2 = e2->ref; r1 && r2; r1 = r1->next, r2 = r2->next)
3003 if (r1->type != r2->type)
3004 return false;
3005 switch (r1->type)
3007 case REF_ARRAY:
3008 if (r1->u.ar.type != r2->u.ar.type)
3009 return false;
3010 /* TODO: At the moment, consider only full arrays;
3011 we could do better. */
3012 if (r1->u.ar.type != AR_FULL || r2->u.ar.type != AR_FULL)
3013 return false;
3014 break;
3016 case REF_COMPONENT:
3017 if (r1->u.c.component != r2->u.c.component)
3018 return false;
3019 break;
3021 case REF_SUBSTRING:
3022 return false;
3024 default:
3025 gfc_internal_error ("compare_actual_expr(): Bad component code");
3028 if (!r1 && !r2)
3029 return true;
3030 return false;
3034 /* Given formal and actual argument lists that correspond to one
3035 another, check that identical actual arguments aren't not
3036 associated with some incompatible INTENTs. */
3038 static bool
3039 check_some_aliasing (gfc_formal_arglist *f, gfc_actual_arglist *a)
3041 sym_intent f1_intent, f2_intent;
3042 gfc_formal_arglist *f1;
3043 gfc_actual_arglist *a1;
3044 size_t n, i, j;
3045 argpair *p;
3046 bool t = true;
3048 n = 0;
3049 for (f1 = f, a1 = a;; f1 = f1->next, a1 = a1->next)
3051 if (f1 == NULL && a1 == NULL)
3052 break;
3053 if (f1 == NULL || a1 == NULL)
3054 gfc_internal_error ("check_some_aliasing(): List mismatch");
3055 n++;
3057 if (n == 0)
3058 return t;
3059 p = XALLOCAVEC (argpair, n);
3061 for (i = 0, f1 = f, a1 = a; i < n; i++, f1 = f1->next, a1 = a1->next)
3063 p[i].f = f1;
3064 p[i].a = a1;
3067 qsort (p, n, sizeof (argpair), pair_cmp);
3069 for (i = 0; i < n; i++)
3071 if (!p[i].a->expr
3072 || p[i].a->expr->expr_type != EXPR_VARIABLE
3073 || p[i].a->expr->ts.type == BT_PROCEDURE)
3074 continue;
3075 f1_intent = p[i].f->sym->attr.intent;
3076 for (j = i + 1; j < n; j++)
3078 /* Expected order after the sort. */
3079 if (!p[j].a->expr || p[j].a->expr->expr_type != EXPR_VARIABLE)
3080 gfc_internal_error ("check_some_aliasing(): corrupted data");
3082 /* Are the expression the same? */
3083 if (!compare_actual_expr (p[i].a->expr, p[j].a->expr))
3084 break;
3085 f2_intent = p[j].f->sym->attr.intent;
3086 if ((f1_intent == INTENT_IN && f2_intent == INTENT_OUT)
3087 || (f1_intent == INTENT_OUT && f2_intent == INTENT_IN)
3088 || (f1_intent == INTENT_OUT && f2_intent == INTENT_OUT))
3090 gfc_warning ("Same actual argument associated with INTENT(%s) "
3091 "argument '%s' and INTENT(%s) argument '%s' at %L",
3092 gfc_intent_string (f1_intent), p[i].f->sym->name,
3093 gfc_intent_string (f2_intent), p[j].f->sym->name,
3094 &p[i].a->expr->where);
3095 t = false;
3100 return t;
3104 /* Given formal and actual argument lists that correspond to one
3105 another, check that they are compatible in the sense that intents
3106 are not mismatched. */
3108 static bool
3109 check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
3111 sym_intent f_intent;
3113 for (;; f = f->next, a = a->next)
3115 if (f == NULL && a == NULL)
3116 break;
3117 if (f == NULL || a == NULL)
3118 gfc_internal_error ("check_intents(): List mismatch");
3120 if (a->expr == NULL || a->expr->expr_type != EXPR_VARIABLE)
3121 continue;
3123 f_intent = f->sym->attr.intent;
3125 if (gfc_pure (NULL) && gfc_impure_variable (a->expr->symtree->n.sym))
3127 if ((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
3128 && CLASS_DATA (f->sym)->attr.class_pointer)
3129 || (f->sym->ts.type != BT_CLASS && f->sym->attr.pointer))
3131 gfc_error ("Procedure argument at %L is local to a PURE "
3132 "procedure and has the POINTER attribute",
3133 &a->expr->where);
3134 return false;
3138 /* Fortran 2008, C1283. */
3139 if (gfc_pure (NULL) && gfc_is_coindexed (a->expr))
3141 if (f_intent == INTENT_INOUT || f_intent == INTENT_OUT)
3143 gfc_error ("Coindexed actual argument at %L in PURE procedure "
3144 "is passed to an INTENT(%s) argument",
3145 &a->expr->where, gfc_intent_string (f_intent));
3146 return false;
3149 if ((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
3150 && CLASS_DATA (f->sym)->attr.class_pointer)
3151 || (f->sym->ts.type != BT_CLASS && f->sym->attr.pointer))
3153 gfc_error ("Coindexed actual argument at %L in PURE procedure "
3154 "is passed to a POINTER dummy argument",
3155 &a->expr->where);
3156 return false;
3160 /* F2008, Section 12.5.2.4. */
3161 if (a->expr->ts.type == BT_CLASS && f->sym->ts.type == BT_CLASS
3162 && gfc_is_coindexed (a->expr))
3164 gfc_error ("Coindexed polymorphic actual argument at %L is passed "
3165 "polymorphic dummy argument '%s'",
3166 &a->expr->where, f->sym->name);
3167 return false;
3171 return true;
3175 /* Check how a procedure is used against its interface. If all goes
3176 well, the actual argument list will also end up being properly
3177 sorted. */
3179 bool
3180 gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
3182 gfc_formal_arglist *dummy_args;
3184 /* Warn about calls with an implicit interface. Special case
3185 for calling a ISO_C_BINDING because c_loc and c_funloc
3186 are pseudo-unknown. Additionally, warn about procedures not
3187 explicitly declared at all if requested. */
3188 if (sym->attr.if_source == IFSRC_UNKNOWN && ! sym->attr.is_iso_c)
3190 if (gfc_option.warn_implicit_interface)
3191 gfc_warning ("Procedure '%s' called with an implicit interface at %L",
3192 sym->name, where);
3193 else if (gfc_option.warn_implicit_procedure
3194 && sym->attr.proc == PROC_UNKNOWN)
3195 gfc_warning ("Procedure '%s' called at %L is not explicitly declared",
3196 sym->name, where);
3199 if (sym->attr.if_source == IFSRC_UNKNOWN)
3201 gfc_actual_arglist *a;
3203 if (sym->attr.pointer)
3205 gfc_error("The pointer object '%s' at %L must have an explicit "
3206 "function interface or be declared as array",
3207 sym->name, where);
3208 return false;
3211 if (sym->attr.allocatable && !sym->attr.external)
3213 gfc_error("The allocatable object '%s' at %L must have an explicit "
3214 "function interface or be declared as array",
3215 sym->name, where);
3216 return false;
3219 if (sym->attr.allocatable)
3221 gfc_error("Allocatable function '%s' at %L must have an explicit "
3222 "function interface", sym->name, where);
3223 return false;
3226 for (a = *ap; a; a = a->next)
3228 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
3229 if (a->name != NULL && a->name[0] != '%')
3231 gfc_error("Keyword argument requires explicit interface "
3232 "for procedure '%s' at %L", sym->name, &a->expr->where);
3233 break;
3236 /* TS 29113, 6.2. */
3237 if (a->expr && a->expr->ts.type == BT_ASSUMED
3238 && sym->intmod_sym_id != ISOCBINDING_LOC)
3240 gfc_error ("Assumed-type argument %s at %L requires an explicit "
3241 "interface", a->expr->symtree->n.sym->name,
3242 &a->expr->where);
3243 break;
3246 /* F2008, C1303 and C1304. */
3247 if (a->expr
3248 && (a->expr->ts.type == BT_DERIVED || a->expr->ts.type == BT_CLASS)
3249 && ((a->expr->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
3250 && a->expr->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
3251 || gfc_expr_attr (a->expr).lock_comp))
3253 gfc_error("Actual argument of LOCK_TYPE or with LOCK_TYPE "
3254 "component at %L requires an explicit interface for "
3255 "procedure '%s'", &a->expr->where, sym->name);
3256 break;
3259 if (a->expr && a->expr->expr_type == EXPR_NULL
3260 && a->expr->ts.type == BT_UNKNOWN)
3262 gfc_error ("MOLD argument to NULL required at %L", &a->expr->where);
3263 return false;
3266 /* TS 29113, C407b. */
3267 if (a->expr && a->expr->expr_type == EXPR_VARIABLE
3268 && symbol_rank (a->expr->symtree->n.sym) == -1)
3270 gfc_error ("Assumed-rank argument requires an explicit interface "
3271 "at %L", &a->expr->where);
3272 return false;
3276 return true;
3279 dummy_args = gfc_sym_get_dummy_args (sym);
3281 if (!compare_actual_formal (ap, dummy_args, 0, sym->attr.elemental, where))
3282 return false;
3284 if (!check_intents (dummy_args, *ap))
3285 return false;
3287 if (gfc_option.warn_aliasing)
3288 check_some_aliasing (dummy_args, *ap);
3290 return true;
3294 /* Check how a procedure pointer component is used against its interface.
3295 If all goes well, the actual argument list will also end up being properly
3296 sorted. Completely analogous to gfc_procedure_use. */
3298 void
3299 gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where)
3301 /* Warn about calls with an implicit interface. Special case
3302 for calling a ISO_C_BINDING because c_loc and c_funloc
3303 are pseudo-unknown. */
3304 if (gfc_option.warn_implicit_interface
3305 && comp->attr.if_source == IFSRC_UNKNOWN
3306 && !comp->attr.is_iso_c)
3307 gfc_warning ("Procedure pointer component '%s' called with an implicit "
3308 "interface at %L", comp->name, where);
3310 if (comp->attr.if_source == IFSRC_UNKNOWN)
3312 gfc_actual_arglist *a;
3313 for (a = *ap; a; a = a->next)
3315 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
3316 if (a->name != NULL && a->name[0] != '%')
3318 gfc_error("Keyword argument requires explicit interface "
3319 "for procedure pointer component '%s' at %L",
3320 comp->name, &a->expr->where);
3321 break;
3325 return;
3328 if (!compare_actual_formal (ap, comp->ts.interface->formal, 0,
3329 comp->attr.elemental, where))
3330 return;
3332 check_intents (comp->ts.interface->formal, *ap);
3333 if (gfc_option.warn_aliasing)
3334 check_some_aliasing (comp->ts.interface->formal, *ap);
3338 /* Try if an actual argument list matches the formal list of a symbol,
3339 respecting the symbol's attributes like ELEMENTAL. This is used for
3340 GENERIC resolution. */
3342 bool
3343 gfc_arglist_matches_symbol (gfc_actual_arglist** args, gfc_symbol* sym)
3345 gfc_formal_arglist *dummy_args;
3346 bool r;
3348 gcc_assert (sym->attr.flavor == FL_PROCEDURE);
3350 dummy_args = gfc_sym_get_dummy_args (sym);
3352 r = !sym->attr.elemental;
3353 if (compare_actual_formal (args, dummy_args, r, !r, NULL))
3355 check_intents (dummy_args, *args);
3356 if (gfc_option.warn_aliasing)
3357 check_some_aliasing (dummy_args, *args);
3358 return true;
3361 return false;
3365 /* Given an interface pointer and an actual argument list, search for
3366 a formal argument list that matches the actual. If found, returns
3367 a pointer to the symbol of the correct interface. Returns NULL if
3368 not found. */
3370 gfc_symbol *
3371 gfc_search_interface (gfc_interface *intr, int sub_flag,
3372 gfc_actual_arglist **ap)
3374 gfc_symbol *elem_sym = NULL;
3375 gfc_symbol *null_sym = NULL;
3376 locus null_expr_loc;
3377 gfc_actual_arglist *a;
3378 bool has_null_arg = false;
3380 for (a = *ap; a; a = a->next)
3381 if (a->expr && a->expr->expr_type == EXPR_NULL
3382 && a->expr->ts.type == BT_UNKNOWN)
3384 has_null_arg = true;
3385 null_expr_loc = a->expr->where;
3386 break;
3389 for (; intr; intr = intr->next)
3391 if (intr->sym->attr.flavor == FL_DERIVED)
3392 continue;
3393 if (sub_flag && intr->sym->attr.function)
3394 continue;
3395 if (!sub_flag && intr->sym->attr.subroutine)
3396 continue;
3398 if (gfc_arglist_matches_symbol (ap, intr->sym))
3400 if (has_null_arg && null_sym)
3402 gfc_error ("MOLD= required in NULL() argument at %L: Ambiguity "
3403 "between specific functions %s and %s",
3404 &null_expr_loc, null_sym->name, intr->sym->name);
3405 return NULL;
3407 else if (has_null_arg)
3409 null_sym = intr->sym;
3410 continue;
3413 /* Satisfy 12.4.4.1 such that an elemental match has lower
3414 weight than a non-elemental match. */
3415 if (intr->sym->attr.elemental)
3417 elem_sym = intr->sym;
3418 continue;
3420 return intr->sym;
3424 if (null_sym)
3425 return null_sym;
3427 return elem_sym ? elem_sym : NULL;
3431 /* Do a brute force recursive search for a symbol. */
3433 static gfc_symtree *
3434 find_symtree0 (gfc_symtree *root, gfc_symbol *sym)
3436 gfc_symtree * st;
3438 if (root->n.sym == sym)
3439 return root;
3441 st = NULL;
3442 if (root->left)
3443 st = find_symtree0 (root->left, sym);
3444 if (root->right && ! st)
3445 st = find_symtree0 (root->right, sym);
3446 return st;
3450 /* Find a symtree for a symbol. */
3452 gfc_symtree *
3453 gfc_find_sym_in_symtree (gfc_symbol *sym)
3455 gfc_symtree *st;
3456 gfc_namespace *ns;
3458 /* First try to find it by name. */
3459 gfc_find_sym_tree (sym->name, gfc_current_ns, 1, &st);
3460 if (st && st->n.sym == sym)
3461 return st;
3463 /* If it's been renamed, resort to a brute-force search. */
3464 /* TODO: avoid having to do this search. If the symbol doesn't exist
3465 in the symtree for the current namespace, it should probably be added. */
3466 for (ns = gfc_current_ns; ns; ns = ns->parent)
3468 st = find_symtree0 (ns->sym_root, sym);
3469 if (st)
3470 return st;
3472 gfc_internal_error ("Unable to find symbol %s", sym->name);
3473 /* Not reached. */
3477 /* See if the arglist to an operator-call contains a derived-type argument
3478 with a matching type-bound operator. If so, return the matching specific
3479 procedure defined as operator-target as well as the base-object to use
3480 (which is the found derived-type argument with operator). The generic
3481 name, if any, is transmitted to the final expression via 'gname'. */
3483 static gfc_typebound_proc*
3484 matching_typebound_op (gfc_expr** tb_base,
3485 gfc_actual_arglist* args,
3486 gfc_intrinsic_op op, const char* uop,
3487 const char ** gname)
3489 gfc_actual_arglist* base;
3491 for (base = args; base; base = base->next)
3492 if (base->expr->ts.type == BT_DERIVED || base->expr->ts.type == BT_CLASS)
3494 gfc_typebound_proc* tb;
3495 gfc_symbol* derived;
3496 bool result;
3498 while (base->expr->expr_type == EXPR_OP
3499 && base->expr->value.op.op == INTRINSIC_PARENTHESES)
3500 base->expr = base->expr->value.op.op1;
3502 if (base->expr->ts.type == BT_CLASS)
3504 if (CLASS_DATA (base->expr) == NULL
3505 || !gfc_expr_attr (base->expr).class_ok)
3506 continue;
3507 derived = CLASS_DATA (base->expr)->ts.u.derived;
3509 else
3510 derived = base->expr->ts.u.derived;
3512 if (op == INTRINSIC_USER)
3514 gfc_symtree* tb_uop;
3516 gcc_assert (uop);
3517 tb_uop = gfc_find_typebound_user_op (derived, &result, uop,
3518 false, NULL);
3520 if (tb_uop)
3521 tb = tb_uop->n.tb;
3522 else
3523 tb = NULL;
3525 else
3526 tb = gfc_find_typebound_intrinsic_op (derived, &result, op,
3527 false, NULL);
3529 /* This means we hit a PRIVATE operator which is use-associated and
3530 should thus not be seen. */
3531 if (!result)
3532 tb = NULL;
3534 /* Look through the super-type hierarchy for a matching specific
3535 binding. */
3536 for (; tb; tb = tb->overridden)
3538 gfc_tbp_generic* g;
3540 gcc_assert (tb->is_generic);
3541 for (g = tb->u.generic; g; g = g->next)
3543 gfc_symbol* target;
3544 gfc_actual_arglist* argcopy;
3545 bool matches;
3547 gcc_assert (g->specific);
3548 if (g->specific->error)
3549 continue;
3551 target = g->specific->u.specific->n.sym;
3553 /* Check if this arglist matches the formal. */
3554 argcopy = gfc_copy_actual_arglist (args);
3555 matches = gfc_arglist_matches_symbol (&argcopy, target);
3556 gfc_free_actual_arglist (argcopy);
3558 /* Return if we found a match. */
3559 if (matches)
3561 *tb_base = base->expr;
3562 *gname = g->specific_st->name;
3563 return g->specific;
3569 return NULL;
3573 /* For the 'actual arglist' of an operator call and a specific typebound
3574 procedure that has been found the target of a type-bound operator, build the
3575 appropriate EXPR_COMPCALL and resolve it. We take this indirection over
3576 type-bound procedures rather than resolving type-bound operators 'directly'
3577 so that we can reuse the existing logic. */
3579 static void
3580 build_compcall_for_operator (gfc_expr* e, gfc_actual_arglist* actual,
3581 gfc_expr* base, gfc_typebound_proc* target,
3582 const char *gname)
3584 e->expr_type = EXPR_COMPCALL;
3585 e->value.compcall.tbp = target;
3586 e->value.compcall.name = gname ? gname : "$op";
3587 e->value.compcall.actual = actual;
3588 e->value.compcall.base_object = base;
3589 e->value.compcall.ignore_pass = 1;
3590 e->value.compcall.assign = 0;
3591 if (e->ts.type == BT_UNKNOWN
3592 && target->function)
3594 if (target->is_generic)
3595 e->ts = target->u.generic->specific->u.specific->n.sym->ts;
3596 else
3597 e->ts = target->u.specific->n.sym->ts;
3602 /* This subroutine is called when an expression is being resolved.
3603 The expression node in question is either a user defined operator
3604 or an intrinsic operator with arguments that aren't compatible
3605 with the operator. This subroutine builds an actual argument list
3606 corresponding to the operands, then searches for a compatible
3607 interface. If one is found, the expression node is replaced with
3608 the appropriate function call. We use the 'match' enum to specify
3609 whether a replacement has been made or not, or if an error occurred. */
3611 match
3612 gfc_extend_expr (gfc_expr *e)
3614 gfc_actual_arglist *actual;
3615 gfc_symbol *sym;
3616 gfc_namespace *ns;
3617 gfc_user_op *uop;
3618 gfc_intrinsic_op i;
3619 const char *gname;
3621 sym = NULL;
3623 actual = gfc_get_actual_arglist ();
3624 actual->expr = e->value.op.op1;
3626 gname = NULL;
3628 if (e->value.op.op2 != NULL)
3630 actual->next = gfc_get_actual_arglist ();
3631 actual->next->expr = e->value.op.op2;
3634 i = fold_unary_intrinsic (e->value.op.op);
3636 if (i == INTRINSIC_USER)
3638 for (ns = gfc_current_ns; ns; ns = ns->parent)
3640 uop = gfc_find_uop (e->value.op.uop->name, ns);
3641 if (uop == NULL)
3642 continue;
3644 sym = gfc_search_interface (uop->op, 0, &actual);
3645 if (sym != NULL)
3646 break;
3649 else
3651 for (ns = gfc_current_ns; ns; ns = ns->parent)
3653 /* Due to the distinction between '==' and '.eq.' and friends, one has
3654 to check if either is defined. */
3655 switch (i)
3657 #define CHECK_OS_COMPARISON(comp) \
3658 case INTRINSIC_##comp: \
3659 case INTRINSIC_##comp##_OS: \
3660 sym = gfc_search_interface (ns->op[INTRINSIC_##comp], 0, &actual); \
3661 if (!sym) \
3662 sym = gfc_search_interface (ns->op[INTRINSIC_##comp##_OS], 0, &actual); \
3663 break;
3664 CHECK_OS_COMPARISON(EQ)
3665 CHECK_OS_COMPARISON(NE)
3666 CHECK_OS_COMPARISON(GT)
3667 CHECK_OS_COMPARISON(GE)
3668 CHECK_OS_COMPARISON(LT)
3669 CHECK_OS_COMPARISON(LE)
3670 #undef CHECK_OS_COMPARISON
3672 default:
3673 sym = gfc_search_interface (ns->op[i], 0, &actual);
3676 if (sym != NULL)
3677 break;
3681 /* TODO: Do an ambiguity-check and error if multiple matching interfaces are
3682 found rather than just taking the first one and not checking further. */
3684 if (sym == NULL)
3686 gfc_typebound_proc* tbo;
3687 gfc_expr* tb_base;
3689 /* See if we find a matching type-bound operator. */
3690 if (i == INTRINSIC_USER)
3691 tbo = matching_typebound_op (&tb_base, actual,
3692 i, e->value.op.uop->name, &gname);
3693 else
3694 switch (i)
3696 #define CHECK_OS_COMPARISON(comp) \
3697 case INTRINSIC_##comp: \
3698 case INTRINSIC_##comp##_OS: \
3699 tbo = matching_typebound_op (&tb_base, actual, \
3700 INTRINSIC_##comp, NULL, &gname); \
3701 if (!tbo) \
3702 tbo = matching_typebound_op (&tb_base, actual, \
3703 INTRINSIC_##comp##_OS, NULL, &gname); \
3704 break;
3705 CHECK_OS_COMPARISON(EQ)
3706 CHECK_OS_COMPARISON(NE)
3707 CHECK_OS_COMPARISON(GT)
3708 CHECK_OS_COMPARISON(GE)
3709 CHECK_OS_COMPARISON(LT)
3710 CHECK_OS_COMPARISON(LE)
3711 #undef CHECK_OS_COMPARISON
3713 default:
3714 tbo = matching_typebound_op (&tb_base, actual, i, NULL, &gname);
3715 break;
3718 /* If there is a matching typebound-operator, replace the expression with
3719 a call to it and succeed. */
3720 if (tbo)
3722 bool result;
3724 gcc_assert (tb_base);
3725 build_compcall_for_operator (e, actual, tb_base, tbo, gname);
3727 result = gfc_resolve_expr (e);
3728 if (!result)
3729 return MATCH_ERROR;
3731 return MATCH_YES;
3734 /* Don't use gfc_free_actual_arglist(). */
3735 free (actual->next);
3736 free (actual);
3738 return MATCH_NO;
3741 /* Change the expression node to a function call. */
3742 e->expr_type = EXPR_FUNCTION;
3743 e->symtree = gfc_find_sym_in_symtree (sym);
3744 e->value.function.actual = actual;
3745 e->value.function.esym = NULL;
3746 e->value.function.isym = NULL;
3747 e->value.function.name = NULL;
3748 e->user_operator = 1;
3750 if (!gfc_resolve_expr (e))
3751 return MATCH_ERROR;
3753 return MATCH_YES;
3757 /* Tries to replace an assignment code node with a subroutine call to the
3758 subroutine associated with the assignment operator. Return true if the node
3759 was replaced. On false, no error is generated. */
3761 bool
3762 gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
3764 gfc_actual_arglist *actual;
3765 gfc_expr *lhs, *rhs, *tb_base;
3766 gfc_symbol *sym = NULL;
3767 const char *gname = NULL;
3768 gfc_typebound_proc* tbo;
3770 lhs = c->expr1;
3771 rhs = c->expr2;
3773 /* Don't allow an intrinsic assignment to be replaced. */
3774 if (lhs->ts.type != BT_DERIVED && lhs->ts.type != BT_CLASS
3775 && (rhs->rank == 0 || rhs->rank == lhs->rank)
3776 && (lhs->ts.type == rhs->ts.type
3777 || (gfc_numeric_ts (&lhs->ts) && gfc_numeric_ts (&rhs->ts))))
3778 return false;
3780 actual = gfc_get_actual_arglist ();
3781 actual->expr = lhs;
3783 actual->next = gfc_get_actual_arglist ();
3784 actual->next->expr = rhs;
3786 /* TODO: Ambiguity-check, see above for gfc_extend_expr. */
3788 /* See if we find a matching type-bound assignment. */
3789 tbo = matching_typebound_op (&tb_base, actual, INTRINSIC_ASSIGN,
3790 NULL, &gname);
3792 if (tbo)
3794 /* Success: Replace the expression with a type-bound call. */
3795 gcc_assert (tb_base);
3796 c->expr1 = gfc_get_expr ();
3797 build_compcall_for_operator (c->expr1, actual, tb_base, tbo, gname);
3798 c->expr1->value.compcall.assign = 1;
3799 c->expr1->where = c->loc;
3800 c->expr2 = NULL;
3801 c->op = EXEC_COMPCALL;
3802 return true;
3805 /* See if we find an 'ordinary' (non-typebound) assignment procedure. */
3806 for (; ns; ns = ns->parent)
3808 sym = gfc_search_interface (ns->op[INTRINSIC_ASSIGN], 1, &actual);
3809 if (sym != NULL)
3810 break;
3813 if (sym)
3815 /* Success: Replace the assignment with the call. */
3816 c->op = EXEC_ASSIGN_CALL;
3817 c->symtree = gfc_find_sym_in_symtree (sym);
3818 c->expr1 = NULL;
3819 c->expr2 = NULL;
3820 c->ext.actual = actual;
3821 return true;
3824 /* Failure: No assignment procedure found. */
3825 free (actual->next);
3826 free (actual);
3827 return false;
3831 /* Make sure that the interface just parsed is not already present in
3832 the given interface list. Ambiguity isn't checked yet since module
3833 procedures can be present without interfaces. */
3835 bool
3836 gfc_check_new_interface (gfc_interface *base, gfc_symbol *new_sym, locus loc)
3838 gfc_interface *ip;
3840 for (ip = base; ip; ip = ip->next)
3842 if (ip->sym == new_sym)
3844 gfc_error ("Entity '%s' at %L is already present in the interface",
3845 new_sym->name, &loc);
3846 return false;
3850 return true;
3854 /* Add a symbol to the current interface. */
3856 bool
3857 gfc_add_interface (gfc_symbol *new_sym)
3859 gfc_interface **head, *intr;
3860 gfc_namespace *ns;
3861 gfc_symbol *sym;
3863 switch (current_interface.type)
3865 case INTERFACE_NAMELESS:
3866 case INTERFACE_ABSTRACT:
3867 return true;
3869 case INTERFACE_INTRINSIC_OP:
3870 for (ns = current_interface.ns; ns; ns = ns->parent)
3871 switch (current_interface.op)
3873 case INTRINSIC_EQ:
3874 case INTRINSIC_EQ_OS:
3875 if (!gfc_check_new_interface (ns->op[INTRINSIC_EQ], new_sym,
3876 gfc_current_locus)
3877 || !gfc_check_new_interface (ns->op[INTRINSIC_EQ_OS],
3878 new_sym, gfc_current_locus))
3879 return false;
3880 break;
3882 case INTRINSIC_NE:
3883 case INTRINSIC_NE_OS:
3884 if (!gfc_check_new_interface (ns->op[INTRINSIC_NE], new_sym,
3885 gfc_current_locus)
3886 || !gfc_check_new_interface (ns->op[INTRINSIC_NE_OS],
3887 new_sym, gfc_current_locus))
3888 return false;
3889 break;
3891 case INTRINSIC_GT:
3892 case INTRINSIC_GT_OS:
3893 if (!gfc_check_new_interface (ns->op[INTRINSIC_GT],
3894 new_sym, gfc_current_locus)
3895 || !gfc_check_new_interface (ns->op[INTRINSIC_GT_OS],
3896 new_sym, gfc_current_locus))
3897 return false;
3898 break;
3900 case INTRINSIC_GE:
3901 case INTRINSIC_GE_OS:
3902 if (!gfc_check_new_interface (ns->op[INTRINSIC_GE],
3903 new_sym, gfc_current_locus)
3904 || !gfc_check_new_interface (ns->op[INTRINSIC_GE_OS],
3905 new_sym, gfc_current_locus))
3906 return false;
3907 break;
3909 case INTRINSIC_LT:
3910 case INTRINSIC_LT_OS:
3911 if (!gfc_check_new_interface (ns->op[INTRINSIC_LT],
3912 new_sym, gfc_current_locus)
3913 || !gfc_check_new_interface (ns->op[INTRINSIC_LT_OS],
3914 new_sym, gfc_current_locus))
3915 return false;
3916 break;
3918 case INTRINSIC_LE:
3919 case INTRINSIC_LE_OS:
3920 if (!gfc_check_new_interface (ns->op[INTRINSIC_LE],
3921 new_sym, gfc_current_locus)
3922 || !gfc_check_new_interface (ns->op[INTRINSIC_LE_OS],
3923 new_sym, gfc_current_locus))
3924 return false;
3925 break;
3927 default:
3928 if (!gfc_check_new_interface (ns->op[current_interface.op],
3929 new_sym, gfc_current_locus))
3930 return false;
3933 head = &current_interface.ns->op[current_interface.op];
3934 break;
3936 case INTERFACE_GENERIC:
3937 for (ns = current_interface.ns; ns; ns = ns->parent)
3939 gfc_find_symbol (current_interface.sym->name, ns, 0, &sym);
3940 if (sym == NULL)
3941 continue;
3943 if (!gfc_check_new_interface (sym->generic,
3944 new_sym, gfc_current_locus))
3945 return false;
3948 head = &current_interface.sym->generic;
3949 break;
3951 case INTERFACE_USER_OP:
3952 if (!gfc_check_new_interface (current_interface.uop->op,
3953 new_sym, gfc_current_locus))
3954 return false;
3956 head = &current_interface.uop->op;
3957 break;
3959 default:
3960 gfc_internal_error ("gfc_add_interface(): Bad interface type");
3963 intr = gfc_get_interface ();
3964 intr->sym = new_sym;
3965 intr->where = gfc_current_locus;
3967 intr->next = *head;
3968 *head = intr;
3970 return true;
3974 gfc_interface *
3975 gfc_current_interface_head (void)
3977 switch (current_interface.type)
3979 case INTERFACE_INTRINSIC_OP:
3980 return current_interface.ns->op[current_interface.op];
3981 break;
3983 case INTERFACE_GENERIC:
3984 return current_interface.sym->generic;
3985 break;
3987 case INTERFACE_USER_OP:
3988 return current_interface.uop->op;
3989 break;
3991 default:
3992 gcc_unreachable ();
3997 void
3998 gfc_set_current_interface_head (gfc_interface *i)
4000 switch (current_interface.type)
4002 case INTERFACE_INTRINSIC_OP:
4003 current_interface.ns->op[current_interface.op] = i;
4004 break;
4006 case INTERFACE_GENERIC:
4007 current_interface.sym->generic = i;
4008 break;
4010 case INTERFACE_USER_OP:
4011 current_interface.uop->op = i;
4012 break;
4014 default:
4015 gcc_unreachable ();
4020 /* Gets rid of a formal argument list. We do not free symbols.
4021 Symbols are freed when a namespace is freed. */
4023 void
4024 gfc_free_formal_arglist (gfc_formal_arglist *p)
4026 gfc_formal_arglist *q;
4028 for (; p; p = q)
4030 q = p->next;
4031 free (p);
4036 /* Check that it is ok for the type-bound procedure 'proc' to override the
4037 procedure 'old', cf. F08:4.5.7.3. */
4039 bool
4040 gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
4042 locus where;
4043 gfc_symbol *proc_target, *old_target;
4044 unsigned proc_pass_arg, old_pass_arg, argpos;
4045 gfc_formal_arglist *proc_formal, *old_formal;
4046 bool check_type;
4047 char err[200];
4049 /* This procedure should only be called for non-GENERIC proc. */
4050 gcc_assert (!proc->n.tb->is_generic);
4052 /* If the overwritten procedure is GENERIC, this is an error. */
4053 if (old->n.tb->is_generic)
4055 gfc_error ("Can't overwrite GENERIC '%s' at %L",
4056 old->name, &proc->n.tb->where);
4057 return false;
4060 where = proc->n.tb->where;
4061 proc_target = proc->n.tb->u.specific->n.sym;
4062 old_target = old->n.tb->u.specific->n.sym;
4064 /* Check that overridden binding is not NON_OVERRIDABLE. */
4065 if (old->n.tb->non_overridable)
4067 gfc_error ("'%s' at %L overrides a procedure binding declared"
4068 " NON_OVERRIDABLE", proc->name, &where);
4069 return false;
4072 /* It's an error to override a non-DEFERRED procedure with a DEFERRED one. */
4073 if (!old->n.tb->deferred && proc->n.tb->deferred)
4075 gfc_error ("'%s' at %L must not be DEFERRED as it overrides a"
4076 " non-DEFERRED binding", proc->name, &where);
4077 return false;
4080 /* If the overridden binding is PURE, the overriding must be, too. */
4081 if (old_target->attr.pure && !proc_target->attr.pure)
4083 gfc_error ("'%s' at %L overrides a PURE procedure and must also be PURE",
4084 proc->name, &where);
4085 return false;
4088 /* If the overridden binding is ELEMENTAL, the overriding must be, too. If it
4089 is not, the overriding must not be either. */
4090 if (old_target->attr.elemental && !proc_target->attr.elemental)
4092 gfc_error ("'%s' at %L overrides an ELEMENTAL procedure and must also be"
4093 " ELEMENTAL", proc->name, &where);
4094 return false;
4096 if (!old_target->attr.elemental && proc_target->attr.elemental)
4098 gfc_error ("'%s' at %L overrides a non-ELEMENTAL procedure and must not"
4099 " be ELEMENTAL, either", proc->name, &where);
4100 return false;
4103 /* If the overridden binding is a SUBROUTINE, the overriding must also be a
4104 SUBROUTINE. */
4105 if (old_target->attr.subroutine && !proc_target->attr.subroutine)
4107 gfc_error ("'%s' at %L overrides a SUBROUTINE and must also be a"
4108 " SUBROUTINE", proc->name, &where);
4109 return false;
4112 /* If the overridden binding is a FUNCTION, the overriding must also be a
4113 FUNCTION and have the same characteristics. */
4114 if (old_target->attr.function)
4116 if (!proc_target->attr.function)
4118 gfc_error ("'%s' at %L overrides a FUNCTION and must also be a"
4119 " FUNCTION", proc->name, &where);
4120 return false;
4123 if (!check_result_characteristics (proc_target, old_target, err,
4124 sizeof(err)))
4126 gfc_error ("Result mismatch for the overriding procedure "
4127 "'%s' at %L: %s", proc->name, &where, err);
4128 return false;
4132 /* If the overridden binding is PUBLIC, the overriding one must not be
4133 PRIVATE. */
4134 if (old->n.tb->access == ACCESS_PUBLIC
4135 && proc->n.tb->access == ACCESS_PRIVATE)
4137 gfc_error ("'%s' at %L overrides a PUBLIC procedure and must not be"
4138 " PRIVATE", proc->name, &where);
4139 return false;
4142 /* Compare the formal argument lists of both procedures. This is also abused
4143 to find the position of the passed-object dummy arguments of both
4144 bindings as at least the overridden one might not yet be resolved and we
4145 need those positions in the check below. */
4146 proc_pass_arg = old_pass_arg = 0;
4147 if (!proc->n.tb->nopass && !proc->n.tb->pass_arg)
4148 proc_pass_arg = 1;
4149 if (!old->n.tb->nopass && !old->n.tb->pass_arg)
4150 old_pass_arg = 1;
4151 argpos = 1;
4152 proc_formal = gfc_sym_get_dummy_args (proc_target);
4153 old_formal = gfc_sym_get_dummy_args (old_target);
4154 for ( ; proc_formal && old_formal;
4155 proc_formal = proc_formal->next, old_formal = old_formal->next)
4157 if (proc->n.tb->pass_arg
4158 && !strcmp (proc->n.tb->pass_arg, proc_formal->sym->name))
4159 proc_pass_arg = argpos;
4160 if (old->n.tb->pass_arg
4161 && !strcmp (old->n.tb->pass_arg, old_formal->sym->name))
4162 old_pass_arg = argpos;
4164 /* Check that the names correspond. */
4165 if (strcmp (proc_formal->sym->name, old_formal->sym->name))
4167 gfc_error ("Dummy argument '%s' of '%s' at %L should be named '%s' as"
4168 " to match the corresponding argument of the overridden"
4169 " procedure", proc_formal->sym->name, proc->name, &where,
4170 old_formal->sym->name);
4171 return false;
4174 check_type = proc_pass_arg != argpos && old_pass_arg != argpos;
4175 if (!check_dummy_characteristics (proc_formal->sym, old_formal->sym,
4176 check_type, err, sizeof(err)))
4178 gfc_error ("Argument mismatch for the overriding procedure "
4179 "'%s' at %L: %s", proc->name, &where, err);
4180 return false;
4183 ++argpos;
4185 if (proc_formal || old_formal)
4187 gfc_error ("'%s' at %L must have the same number of formal arguments as"
4188 " the overridden procedure", proc->name, &where);
4189 return false;
4192 /* If the overridden binding is NOPASS, the overriding one must also be
4193 NOPASS. */
4194 if (old->n.tb->nopass && !proc->n.tb->nopass)
4196 gfc_error ("'%s' at %L overrides a NOPASS binding and must also be"
4197 " NOPASS", proc->name, &where);
4198 return false;
4201 /* If the overridden binding is PASS(x), the overriding one must also be
4202 PASS and the passed-object dummy arguments must correspond. */
4203 if (!old->n.tb->nopass)
4205 if (proc->n.tb->nopass)
4207 gfc_error ("'%s' at %L overrides a binding with PASS and must also be"
4208 " PASS", proc->name, &where);
4209 return false;
4212 if (proc_pass_arg != old_pass_arg)
4214 gfc_error ("Passed-object dummy argument of '%s' at %L must be at"
4215 " the same position as the passed-object dummy argument of"
4216 " the overridden procedure", proc->name, &where);
4217 return false;
4221 return true;