]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/fortran/interface.c
expr.c (scalarize_intrinsic_call): Plug memory leak.
[thirdparty/gcc.git] / gcc / fortran / interface.c
1 /* Deal with interfaces.
2 Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009,
3 2010, 2011, 2012
4 Free Software Foundation, Inc.
5 Contributed by Andy Vaught
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
22
23
24 /* Deal with interfaces. An explicit interface is represented as a
25 singly linked list of formal argument structures attached to the
26 relevant symbols. For an implicit interface, the arguments don't
27 point to symbols. Explicit interfaces point to namespaces that
28 contain the symbols within that interface.
29
30 Implicit interfaces are linked together in a singly linked list
31 along the next_if member of symbol nodes. Since a particular
32 symbol can only have a single explicit interface, the symbol cannot
33 be part of multiple lists and a single next-member suffices.
34
35 This is not the case for general classes, though. An operator
36 definition is independent of just about all other uses and has it's
37 own head pointer.
38
39 Nameless interfaces:
40 Nameless interfaces create symbols with explicit interfaces within
41 the current namespace. They are otherwise unlinked.
42
43 Generic interfaces:
44 The generic name points to a linked list of symbols. Each symbol
45 has an explicit interface. Each explicit interface has its own
46 namespace containing the arguments. Module procedures are symbols in
47 which the interface is added later when the module procedure is parsed.
48
49 User operators:
50 User-defined operators are stored in a their own set of symtrees
51 separate from regular symbols. The symtrees point to gfc_user_op
52 structures which in turn head up a list of relevant interfaces.
53
54 Extended intrinsics and assignment:
55 The head of these interface lists are stored in the containing namespace.
56
57 Implicit interfaces:
58 An implicit interface is represented as a singly linked list of
59 formal argument list structures that don't point to any symbol
60 nodes -- they just contain types.
61
62
63 When a subprogram is defined, the program unit's name points to an
64 interface as usual, but the link to the namespace is NULL and the
65 formal argument list points to symbols within the same namespace as
66 the program unit name. */
67
68 #include "config.h"
69 #include "system.h"
70 #include "coretypes.h"
71 #include "gfortran.h"
72 #include "match.h"
73 #include "arith.h"
74
75 /* The current_interface structure holds information about the
76 interface currently being parsed. This structure is saved and
77 restored during recursive interfaces. */
78
79 gfc_interface_info current_interface;
80
81
82 /* Free a singly linked list of gfc_interface structures. */
83
84 void
85 gfc_free_interface (gfc_interface *intr)
86 {
87 gfc_interface *next;
88
89 for (; intr; intr = next)
90 {
91 next = intr->next;
92 free (intr);
93 }
94 }
95
96
97 /* Change the operators unary plus and minus into binary plus and
98 minus respectively, leaving the rest unchanged. */
99
100 static gfc_intrinsic_op
101 fold_unary_intrinsic (gfc_intrinsic_op op)
102 {
103 switch (op)
104 {
105 case INTRINSIC_UPLUS:
106 op = INTRINSIC_PLUS;
107 break;
108 case INTRINSIC_UMINUS:
109 op = INTRINSIC_MINUS;
110 break;
111 default:
112 break;
113 }
114
115 return op;
116 }
117
118
119 /* Match a generic specification. Depending on which type of
120 interface is found, the 'name' or 'op' pointers may be set.
121 This subroutine doesn't return MATCH_NO. */
122
123 match
124 gfc_match_generic_spec (interface_type *type,
125 char *name,
126 gfc_intrinsic_op *op)
127 {
128 char buffer[GFC_MAX_SYMBOL_LEN + 1];
129 match m;
130 gfc_intrinsic_op i;
131
132 if (gfc_match (" assignment ( = )") == MATCH_YES)
133 {
134 *type = INTERFACE_INTRINSIC_OP;
135 *op = INTRINSIC_ASSIGN;
136 return MATCH_YES;
137 }
138
139 if (gfc_match (" operator ( %o )", &i) == MATCH_YES)
140 { /* Operator i/f */
141 *type = INTERFACE_INTRINSIC_OP;
142 *op = fold_unary_intrinsic (i);
143 return MATCH_YES;
144 }
145
146 *op = INTRINSIC_NONE;
147 if (gfc_match (" operator ( ") == MATCH_YES)
148 {
149 m = gfc_match_defined_op_name (buffer, 1);
150 if (m == MATCH_NO)
151 goto syntax;
152 if (m != MATCH_YES)
153 return MATCH_ERROR;
154
155 m = gfc_match_char (')');
156 if (m == MATCH_NO)
157 goto syntax;
158 if (m != MATCH_YES)
159 return MATCH_ERROR;
160
161 strcpy (name, buffer);
162 *type = INTERFACE_USER_OP;
163 return MATCH_YES;
164 }
165
166 if (gfc_match_name (buffer) == MATCH_YES)
167 {
168 strcpy (name, buffer);
169 *type = INTERFACE_GENERIC;
170 return MATCH_YES;
171 }
172
173 *type = INTERFACE_NAMELESS;
174 return MATCH_YES;
175
176 syntax:
177 gfc_error ("Syntax error in generic specification at %C");
178 return MATCH_ERROR;
179 }
180
181
182 /* Match one of the five F95 forms of an interface statement. The
183 matcher for the abstract interface follows. */
184
185 match
186 gfc_match_interface (void)
187 {
188 char name[GFC_MAX_SYMBOL_LEN + 1];
189 interface_type type;
190 gfc_symbol *sym;
191 gfc_intrinsic_op op;
192 match m;
193
194 m = gfc_match_space ();
195
196 if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
197 return MATCH_ERROR;
198
199 /* If we're not looking at the end of the statement now, or if this
200 is not a nameless interface but we did not see a space, punt. */
201 if (gfc_match_eos () != MATCH_YES
202 || (type != INTERFACE_NAMELESS && m != MATCH_YES))
203 {
204 gfc_error ("Syntax error: Trailing garbage in INTERFACE statement "
205 "at %C");
206 return MATCH_ERROR;
207 }
208
209 current_interface.type = type;
210
211 switch (type)
212 {
213 case INTERFACE_GENERIC:
214 if (gfc_get_symbol (name, NULL, &sym))
215 return MATCH_ERROR;
216
217 if (!sym->attr.generic
218 && gfc_add_generic (&sym->attr, sym->name, NULL) == FAILURE)
219 return MATCH_ERROR;
220
221 if (sym->attr.dummy)
222 {
223 gfc_error ("Dummy procedure '%s' at %C cannot have a "
224 "generic interface", sym->name);
225 return MATCH_ERROR;
226 }
227
228 current_interface.sym = gfc_new_block = sym;
229 break;
230
231 case INTERFACE_USER_OP:
232 current_interface.uop = gfc_get_uop (name);
233 break;
234
235 case INTERFACE_INTRINSIC_OP:
236 current_interface.op = op;
237 break;
238
239 case INTERFACE_NAMELESS:
240 case INTERFACE_ABSTRACT:
241 break;
242 }
243
244 return MATCH_YES;
245 }
246
247
248
249 /* Match a F2003 abstract interface. */
250
251 match
252 gfc_match_abstract_interface (void)
253 {
254 match m;
255
256 if (gfc_notify_std (GFC_STD_F2003, "ABSTRACT INTERFACE at %C")
257 == FAILURE)
258 return MATCH_ERROR;
259
260 m = gfc_match_eos ();
261
262 if (m != MATCH_YES)
263 {
264 gfc_error ("Syntax error in ABSTRACT INTERFACE statement at %C");
265 return MATCH_ERROR;
266 }
267
268 current_interface.type = INTERFACE_ABSTRACT;
269
270 return m;
271 }
272
273
274 /* Match the different sort of generic-specs that can be present after
275 the END INTERFACE itself. */
276
277 match
278 gfc_match_end_interface (void)
279 {
280 char name[GFC_MAX_SYMBOL_LEN + 1];
281 interface_type type;
282 gfc_intrinsic_op op;
283 match m;
284
285 m = gfc_match_space ();
286
287 if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
288 return MATCH_ERROR;
289
290 /* If we're not looking at the end of the statement now, or if this
291 is not a nameless interface but we did not see a space, punt. */
292 if (gfc_match_eos () != MATCH_YES
293 || (type != INTERFACE_NAMELESS && m != MATCH_YES))
294 {
295 gfc_error ("Syntax error: Trailing garbage in END INTERFACE "
296 "statement at %C");
297 return MATCH_ERROR;
298 }
299
300 m = MATCH_YES;
301
302 switch (current_interface.type)
303 {
304 case INTERFACE_NAMELESS:
305 case INTERFACE_ABSTRACT:
306 if (type != INTERFACE_NAMELESS)
307 {
308 gfc_error ("Expected a nameless interface at %C");
309 m = MATCH_ERROR;
310 }
311
312 break;
313
314 case INTERFACE_INTRINSIC_OP:
315 if (type != current_interface.type || op != current_interface.op)
316 {
317
318 if (current_interface.op == INTRINSIC_ASSIGN)
319 {
320 m = MATCH_ERROR;
321 gfc_error ("Expected 'END INTERFACE ASSIGNMENT (=)' at %C");
322 }
323 else
324 {
325 const char *s1, *s2;
326 s1 = gfc_op2string (current_interface.op);
327 s2 = gfc_op2string (op);
328
329 /* The following if-statements are used to enforce C1202
330 from F2003. */
331 if ((strcmp(s1, "==") == 0 && strcmp(s2, ".eq.") == 0)
332 || (strcmp(s1, ".eq.") == 0 && strcmp(s2, "==") == 0))
333 break;
334 if ((strcmp(s1, "/=") == 0 && strcmp(s2, ".ne.") == 0)
335 || (strcmp(s1, ".ne.") == 0 && strcmp(s2, "/=") == 0))
336 break;
337 if ((strcmp(s1, "<=") == 0 && strcmp(s2, ".le.") == 0)
338 || (strcmp(s1, ".le.") == 0 && strcmp(s2, "<=") == 0))
339 break;
340 if ((strcmp(s1, "<") == 0 && strcmp(s2, ".lt.") == 0)
341 || (strcmp(s1, ".lt.") == 0 && strcmp(s2, "<") == 0))
342 break;
343 if ((strcmp(s1, ">=") == 0 && strcmp(s2, ".ge.") == 0)
344 || (strcmp(s1, ".ge.") == 0 && strcmp(s2, ">=") == 0))
345 break;
346 if ((strcmp(s1, ">") == 0 && strcmp(s2, ".gt.") == 0)
347 || (strcmp(s1, ".gt.") == 0 && strcmp(s2, ">") == 0))
348 break;
349
350 m = MATCH_ERROR;
351 gfc_error ("Expecting 'END INTERFACE OPERATOR (%s)' at %C, "
352 "but got %s", s1, s2);
353 }
354
355 }
356
357 break;
358
359 case INTERFACE_USER_OP:
360 /* Comparing the symbol node names is OK because only use-associated
361 symbols can be renamed. */
362 if (type != current_interface.type
363 || strcmp (current_interface.uop->name, name) != 0)
364 {
365 gfc_error ("Expecting 'END INTERFACE OPERATOR (.%s.)' at %C",
366 current_interface.uop->name);
367 m = MATCH_ERROR;
368 }
369
370 break;
371
372 case INTERFACE_GENERIC:
373 if (type != current_interface.type
374 || strcmp (current_interface.sym->name, name) != 0)
375 {
376 gfc_error ("Expecting 'END INTERFACE %s' at %C",
377 current_interface.sym->name);
378 m = MATCH_ERROR;
379 }
380
381 break;
382 }
383
384 return m;
385 }
386
387
388 /* Compare two derived types using the criteria in 4.4.2 of the standard,
389 recursing through gfc_compare_types for the components. */
390
391 int
392 gfc_compare_derived_types (gfc_symbol *derived1, gfc_symbol *derived2)
393 {
394 gfc_component *dt1, *dt2;
395
396 if (derived1 == derived2)
397 return 1;
398
399 gcc_assert (derived1 && derived2);
400
401 /* Special case for comparing derived types across namespaces. If the
402 true names and module names are the same and the module name is
403 nonnull, then they are equal. */
404 if (strcmp (derived1->name, derived2->name) == 0
405 && derived1->module != NULL && derived2->module != NULL
406 && strcmp (derived1->module, derived2->module) == 0)
407 return 1;
408
409 /* Compare type via the rules of the standard. Both types must have
410 the SEQUENCE or BIND(C) attribute to be equal. */
411
412 if (strcmp (derived1->name, derived2->name))
413 return 0;
414
415 if (derived1->component_access == ACCESS_PRIVATE
416 || derived2->component_access == ACCESS_PRIVATE)
417 return 0;
418
419 if (!(derived1->attr.sequence && derived2->attr.sequence)
420 && !(derived1->attr.is_bind_c && derived2->attr.is_bind_c))
421 return 0;
422
423 dt1 = derived1->components;
424 dt2 = derived2->components;
425
426 /* Since subtypes of SEQUENCE types must be SEQUENCE types as well, a
427 simple test can speed things up. Otherwise, lots of things have to
428 match. */
429 for (;;)
430 {
431 if (strcmp (dt1->name, dt2->name) != 0)
432 return 0;
433
434 if (dt1->attr.access != dt2->attr.access)
435 return 0;
436
437 if (dt1->attr.pointer != dt2->attr.pointer)
438 return 0;
439
440 if (dt1->attr.dimension != dt2->attr.dimension)
441 return 0;
442
443 if (dt1->attr.allocatable != dt2->attr.allocatable)
444 return 0;
445
446 if (dt1->attr.dimension && gfc_compare_array_spec (dt1->as, dt2->as) == 0)
447 return 0;
448
449 /* Make sure that link lists do not put this function into an
450 endless recursive loop! */
451 if (!(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
452 && !(dt2->ts.type == BT_DERIVED && derived2 == dt2->ts.u.derived)
453 && gfc_compare_types (&dt1->ts, &dt2->ts) == 0)
454 return 0;
455
456 else if ((dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
457 && !(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived))
458 return 0;
459
460 else if (!(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived)
461 && (dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.u.derived))
462 return 0;
463
464 dt1 = dt1->next;
465 dt2 = dt2->next;
466
467 if (dt1 == NULL && dt2 == NULL)
468 break;
469 if (dt1 == NULL || dt2 == NULL)
470 return 0;
471 }
472
473 return 1;
474 }
475
476
477 /* Compare two typespecs, recursively if necessary. */
478
479 int
480 gfc_compare_types (gfc_typespec *ts1, gfc_typespec *ts2)
481 {
482 /* See if one of the typespecs is a BT_VOID, which is what is being used
483 to allow the funcs like c_f_pointer to accept any pointer type.
484 TODO: Possibly should narrow this to just the one typespec coming in
485 that is for the formal arg, but oh well. */
486 if (ts1->type == BT_VOID || ts2->type == BT_VOID)
487 return 1;
488
489 if (ts1->type != ts2->type
490 && ((ts1->type != BT_DERIVED && ts1->type != BT_CLASS)
491 || (ts2->type != BT_DERIVED && ts2->type != BT_CLASS)))
492 return 0;
493 if (ts1->type != BT_DERIVED && ts1->type != BT_CLASS)
494 return (ts1->kind == ts2->kind);
495
496 /* Compare derived types. */
497 if (gfc_type_compatible (ts1, ts2))
498 return 1;
499
500 return gfc_compare_derived_types (ts1->u.derived ,ts2->u.derived);
501 }
502
503
504 /* Given two symbols that are formal arguments, compare their ranks
505 and types. Returns nonzero if they have the same rank and type,
506 zero otherwise. */
507
508 static int
509 compare_type_rank (gfc_symbol *s1, gfc_symbol *s2)
510 {
511 gfc_array_spec *as1, *as2;
512 int r1, r2;
513
514 as1 = (s1->ts.type == BT_CLASS) ? CLASS_DATA (s1)->as : s1->as;
515 as2 = (s2->ts.type == BT_CLASS) ? CLASS_DATA (s2)->as : s2->as;
516
517 r1 = as1 ? as1->rank : 0;
518 r2 = as2 ? as2->rank : 0;
519
520 if (r1 != r2
521 && (!as1 || as1->type != AS_ASSUMED_RANK)
522 && (!as2 || as2->type != AS_ASSUMED_RANK))
523 return 0; /* Ranks differ. */
524
525 return gfc_compare_types (&s1->ts, &s2->ts)
526 || s1->ts.type == BT_ASSUMED || s2->ts.type == BT_ASSUMED;
527 }
528
529
530 /* Given two symbols that are formal arguments, compare their types
531 and rank and their formal interfaces if they are both dummy
532 procedures. Returns nonzero if the same, zero if different. */
533
534 static int
535 compare_type_rank_if (gfc_symbol *s1, gfc_symbol *s2)
536 {
537 if (s1 == NULL || s2 == NULL)
538 return s1 == s2 ? 1 : 0;
539
540 if (s1 == s2)
541 return 1;
542
543 if (s1->attr.flavor != FL_PROCEDURE && s2->attr.flavor != FL_PROCEDURE)
544 return compare_type_rank (s1, s2);
545
546 if (s1->attr.flavor != FL_PROCEDURE || s2->attr.flavor != FL_PROCEDURE)
547 return 0;
548
549 /* At this point, both symbols are procedures. It can happen that
550 external procedures are compared, where one is identified by usage
551 to be a function or subroutine but the other is not. Check TKR
552 nonetheless for these cases. */
553 if (s1->attr.function == 0 && s1->attr.subroutine == 0)
554 return s1->attr.external == 1 ? compare_type_rank (s1, s2) : 0;
555
556 if (s2->attr.function == 0 && s2->attr.subroutine == 0)
557 return s2->attr.external == 1 ? compare_type_rank (s1, s2) : 0;
558
559 /* Now the type of procedure has been identified. */
560 if (s1->attr.function != s2->attr.function
561 || s1->attr.subroutine != s2->attr.subroutine)
562 return 0;
563
564 if (s1->attr.function && compare_type_rank (s1, s2) == 0)
565 return 0;
566
567 /* Originally, gfortran recursed here to check the interfaces of passed
568 procedures. This is explicitly not required by the standard. */
569 return 1;
570 }
571
572
573 /* Given a formal argument list and a keyword name, search the list
574 for that keyword. Returns the correct symbol node if found, NULL
575 if not found. */
576
577 static gfc_symbol *
578 find_keyword_arg (const char *name, gfc_formal_arglist *f)
579 {
580 for (; f; f = f->next)
581 if (strcmp (f->sym->name, name) == 0)
582 return f->sym;
583
584 return NULL;
585 }
586
587
588 /******** Interface checking subroutines **********/
589
590
591 /* Given an operator interface and the operator, make sure that all
592 interfaces for that operator are legal. */
593
594 bool
595 gfc_check_operator_interface (gfc_symbol *sym, gfc_intrinsic_op op,
596 locus opwhere)
597 {
598 gfc_formal_arglist *formal;
599 sym_intent i1, i2;
600 bt t1, t2;
601 int args, r1, r2, k1, k2;
602
603 gcc_assert (sym);
604
605 args = 0;
606 t1 = t2 = BT_UNKNOWN;
607 i1 = i2 = INTENT_UNKNOWN;
608 r1 = r2 = -1;
609 k1 = k2 = -1;
610
611 for (formal = sym->formal; formal; formal = formal->next)
612 {
613 gfc_symbol *fsym = formal->sym;
614 if (fsym == NULL)
615 {
616 gfc_error ("Alternate return cannot appear in operator "
617 "interface at %L", &sym->declared_at);
618 return false;
619 }
620 if (args == 0)
621 {
622 t1 = fsym->ts.type;
623 i1 = fsym->attr.intent;
624 r1 = (fsym->as != NULL) ? fsym->as->rank : 0;
625 k1 = fsym->ts.kind;
626 }
627 if (args == 1)
628 {
629 t2 = fsym->ts.type;
630 i2 = fsym->attr.intent;
631 r2 = (fsym->as != NULL) ? fsym->as->rank : 0;
632 k2 = fsym->ts.kind;
633 }
634 args++;
635 }
636
637 /* Only +, - and .not. can be unary operators.
638 .not. cannot be a binary operator. */
639 if (args == 0 || args > 2 || (args == 1 && op != INTRINSIC_PLUS
640 && op != INTRINSIC_MINUS
641 && op != INTRINSIC_NOT)
642 || (args == 2 && op == INTRINSIC_NOT))
643 {
644 if (op == INTRINSIC_ASSIGN)
645 gfc_error ("Assignment operator interface at %L must have "
646 "two arguments", &sym->declared_at);
647 else
648 gfc_error ("Operator interface at %L has the wrong number of arguments",
649 &sym->declared_at);
650 return false;
651 }
652
653 /* Check that intrinsics are mapped to functions, except
654 INTRINSIC_ASSIGN which should map to a subroutine. */
655 if (op == INTRINSIC_ASSIGN)
656 {
657 if (!sym->attr.subroutine)
658 {
659 gfc_error ("Assignment operator interface at %L must be "
660 "a SUBROUTINE", &sym->declared_at);
661 return false;
662 }
663
664 /* Allowed are (per F2003, 12.3.2.1.2 Defined assignments):
665 - First argument an array with different rank than second,
666 - First argument is a scalar and second an array,
667 - Types and kinds do not conform, or
668 - First argument is of derived type. */
669 if (sym->formal->sym->ts.type != BT_DERIVED
670 && sym->formal->sym->ts.type != BT_CLASS
671 && (r2 == 0 || r1 == r2)
672 && (sym->formal->sym->ts.type == sym->formal->next->sym->ts.type
673 || (gfc_numeric_ts (&sym->formal->sym->ts)
674 && gfc_numeric_ts (&sym->formal->next->sym->ts))))
675 {
676 gfc_error ("Assignment operator interface at %L must not redefine "
677 "an INTRINSIC type assignment", &sym->declared_at);
678 return false;
679 }
680 }
681 else
682 {
683 if (!sym->attr.function)
684 {
685 gfc_error ("Intrinsic operator interface at %L must be a FUNCTION",
686 &sym->declared_at);
687 return false;
688 }
689 }
690
691 /* Check intents on operator interfaces. */
692 if (op == INTRINSIC_ASSIGN)
693 {
694 if (i1 != INTENT_OUT && i1 != INTENT_INOUT)
695 {
696 gfc_error ("First argument of defined assignment at %L must be "
697 "INTENT(OUT) or INTENT(INOUT)", &sym->declared_at);
698 return false;
699 }
700
701 if (i2 != INTENT_IN)
702 {
703 gfc_error ("Second argument of defined assignment at %L must be "
704 "INTENT(IN)", &sym->declared_at);
705 return false;
706 }
707 }
708 else
709 {
710 if (i1 != INTENT_IN)
711 {
712 gfc_error ("First argument of operator interface at %L must be "
713 "INTENT(IN)", &sym->declared_at);
714 return false;
715 }
716
717 if (args == 2 && i2 != INTENT_IN)
718 {
719 gfc_error ("Second argument of operator interface at %L must be "
720 "INTENT(IN)", &sym->declared_at);
721 return false;
722 }
723 }
724
725 /* From now on, all we have to do is check that the operator definition
726 doesn't conflict with an intrinsic operator. The rules for this
727 game are defined in 7.1.2 and 7.1.3 of both F95 and F2003 standards,
728 as well as 12.3.2.1.1 of Fortran 2003:
729
730 "If the operator is an intrinsic-operator (R310), the number of
731 function arguments shall be consistent with the intrinsic uses of
732 that operator, and the types, kind type parameters, or ranks of the
733 dummy arguments shall differ from those required for the intrinsic
734 operation (7.1.2)." */
735
736 #define IS_NUMERIC_TYPE(t) \
737 ((t) == BT_INTEGER || (t) == BT_REAL || (t) == BT_COMPLEX)
738
739 /* Unary ops are easy, do them first. */
740 if (op == INTRINSIC_NOT)
741 {
742 if (t1 == BT_LOGICAL)
743 goto bad_repl;
744 else
745 return true;
746 }
747
748 if (args == 1 && (op == INTRINSIC_PLUS || op == INTRINSIC_MINUS))
749 {
750 if (IS_NUMERIC_TYPE (t1))
751 goto bad_repl;
752 else
753 return true;
754 }
755
756 /* Character intrinsic operators have same character kind, thus
757 operator definitions with operands of different character kinds
758 are always safe. */
759 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER && k1 != k2)
760 return true;
761
762 /* Intrinsic operators always perform on arguments of same rank,
763 so different ranks is also always safe. (rank == 0) is an exception
764 to that, because all intrinsic operators are elemental. */
765 if (r1 != r2 && r1 != 0 && r2 != 0)
766 return true;
767
768 switch (op)
769 {
770 case INTRINSIC_EQ:
771 case INTRINSIC_EQ_OS:
772 case INTRINSIC_NE:
773 case INTRINSIC_NE_OS:
774 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
775 goto bad_repl;
776 /* Fall through. */
777
778 case INTRINSIC_PLUS:
779 case INTRINSIC_MINUS:
780 case INTRINSIC_TIMES:
781 case INTRINSIC_DIVIDE:
782 case INTRINSIC_POWER:
783 if (IS_NUMERIC_TYPE (t1) && IS_NUMERIC_TYPE (t2))
784 goto bad_repl;
785 break;
786
787 case INTRINSIC_GT:
788 case INTRINSIC_GT_OS:
789 case INTRINSIC_GE:
790 case INTRINSIC_GE_OS:
791 case INTRINSIC_LT:
792 case INTRINSIC_LT_OS:
793 case INTRINSIC_LE:
794 case INTRINSIC_LE_OS:
795 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
796 goto bad_repl;
797 if ((t1 == BT_INTEGER || t1 == BT_REAL)
798 && (t2 == BT_INTEGER || t2 == BT_REAL))
799 goto bad_repl;
800 break;
801
802 case INTRINSIC_CONCAT:
803 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
804 goto bad_repl;
805 break;
806
807 case INTRINSIC_AND:
808 case INTRINSIC_OR:
809 case INTRINSIC_EQV:
810 case INTRINSIC_NEQV:
811 if (t1 == BT_LOGICAL && t2 == BT_LOGICAL)
812 goto bad_repl;
813 break;
814
815 default:
816 break;
817 }
818
819 return true;
820
821 #undef IS_NUMERIC_TYPE
822
823 bad_repl:
824 gfc_error ("Operator interface at %L conflicts with intrinsic interface",
825 &opwhere);
826 return false;
827 }
828
829
830 /* Given a pair of formal argument lists, we see if the two lists can
831 be distinguished by counting the number of nonoptional arguments of
832 a given type/rank in f1 and seeing if there are less then that
833 number of those arguments in f2 (including optional arguments).
834 Since this test is asymmetric, it has to be called twice to make it
835 symmetric. Returns nonzero if the argument lists are incompatible
836 by this test. This subroutine implements rule 1 of section F03:16.2.3.
837 'p1' and 'p2' are the PASS arguments of both procedures (if applicable). */
838
839 static int
840 count_types_test (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
841 const char *p1, const char *p2)
842 {
843 int rc, ac1, ac2, i, j, k, n1;
844 gfc_formal_arglist *f;
845
846 typedef struct
847 {
848 int flag;
849 gfc_symbol *sym;
850 }
851 arginfo;
852
853 arginfo *arg;
854
855 n1 = 0;
856
857 for (f = f1; f; f = f->next)
858 n1++;
859
860 /* Build an array of integers that gives the same integer to
861 arguments of the same type/rank. */
862 arg = XCNEWVEC (arginfo, n1);
863
864 f = f1;
865 for (i = 0; i < n1; i++, f = f->next)
866 {
867 arg[i].flag = -1;
868 arg[i].sym = f->sym;
869 }
870
871 k = 0;
872
873 for (i = 0; i < n1; i++)
874 {
875 if (arg[i].flag != -1)
876 continue;
877
878 if (arg[i].sym && (arg[i].sym->attr.optional
879 || (p1 && strcmp (arg[i].sym->name, p1) == 0)))
880 continue; /* Skip OPTIONAL and PASS arguments. */
881
882 arg[i].flag = k;
883
884 /* Find other non-optional, non-pass arguments of the same type/rank. */
885 for (j = i + 1; j < n1; j++)
886 if ((arg[j].sym == NULL
887 || !(arg[j].sym->attr.optional
888 || (p1 && strcmp (arg[j].sym->name, p1) == 0)))
889 && (compare_type_rank_if (arg[i].sym, arg[j].sym)
890 || compare_type_rank_if (arg[j].sym, arg[i].sym)))
891 arg[j].flag = k;
892
893 k++;
894 }
895
896 /* Now loop over each distinct type found in f1. */
897 k = 0;
898 rc = 0;
899
900 for (i = 0; i < n1; i++)
901 {
902 if (arg[i].flag != k)
903 continue;
904
905 ac1 = 1;
906 for (j = i + 1; j < n1; j++)
907 if (arg[j].flag == k)
908 ac1++;
909
910 /* Count the number of non-pass arguments in f2 with that type,
911 including those that are optional. */
912 ac2 = 0;
913
914 for (f = f2; f; f = f->next)
915 if ((!p2 || strcmp (f->sym->name, p2) != 0)
916 && (compare_type_rank_if (arg[i].sym, f->sym)
917 || compare_type_rank_if (f->sym, arg[i].sym)))
918 ac2++;
919
920 if (ac1 > ac2)
921 {
922 rc = 1;
923 break;
924 }
925
926 k++;
927 }
928
929 free (arg);
930
931 return rc;
932 }
933
934
935 /* Perform the correspondence test in rule 3 of section F03:16.2.3.
936 Returns zero if no argument is found that satisfies rule 3, nonzero
937 otherwise. 'p1' and 'p2' are the PASS arguments of both procedures
938 (if applicable).
939
940 This test is also not symmetric in f1 and f2 and must be called
941 twice. This test finds problems caused by sorting the actual
942 argument list with keywords. For example:
943
944 INTERFACE FOO
945 SUBROUTINE F1(A, B)
946 INTEGER :: A ; REAL :: B
947 END SUBROUTINE F1
948
949 SUBROUTINE F2(B, A)
950 INTEGER :: A ; REAL :: B
951 END SUBROUTINE F1
952 END INTERFACE FOO
953
954 At this point, 'CALL FOO(A=1, B=1.0)' is ambiguous. */
955
956 static int
957 generic_correspondence (gfc_formal_arglist *f1, gfc_formal_arglist *f2,
958 const char *p1, const char *p2)
959 {
960 gfc_formal_arglist *f2_save, *g;
961 gfc_symbol *sym;
962
963 f2_save = f2;
964
965 while (f1)
966 {
967 if (f1->sym->attr.optional)
968 goto next;
969
970 if (p1 && strcmp (f1->sym->name, p1) == 0)
971 f1 = f1->next;
972 if (f2 && p2 && strcmp (f2->sym->name, p2) == 0)
973 f2 = f2->next;
974
975 if (f2 != NULL && (compare_type_rank (f1->sym, f2->sym)
976 || compare_type_rank (f2->sym, f1->sym)))
977 goto next;
978
979 /* Now search for a disambiguating keyword argument starting at
980 the current non-match. */
981 for (g = f1; g; g = g->next)
982 {
983 if (g->sym->attr.optional || (p1 && strcmp (g->sym->name, p1) == 0))
984 continue;
985
986 sym = find_keyword_arg (g->sym->name, f2_save);
987 if (sym == NULL || !compare_type_rank (g->sym, sym))
988 return 1;
989 }
990
991 next:
992 if (f1 != NULL)
993 f1 = f1->next;
994 if (f2 != NULL)
995 f2 = f2->next;
996 }
997
998 return 0;
999 }
1000
1001
1002 /* Check if the characteristics of two dummy arguments match,
1003 cf. F08:12.3.2. */
1004
1005 static gfc_try
1006 check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
1007 bool type_must_agree, char *errmsg, int err_len)
1008 {
1009 /* Check type and rank. */
1010 if (type_must_agree && !compare_type_rank (s2, s1))
1011 {
1012 snprintf (errmsg, err_len, "Type/rank mismatch in argument '%s'",
1013 s1->name);
1014 return FAILURE;
1015 }
1016
1017 /* Check INTENT. */
1018 if (s1->attr.intent != s2->attr.intent)
1019 {
1020 snprintf (errmsg, err_len, "INTENT mismatch in argument '%s'",
1021 s1->name);
1022 return FAILURE;
1023 }
1024
1025 /* Check OPTIONAL attribute. */
1026 if (s1->attr.optional != s2->attr.optional)
1027 {
1028 snprintf (errmsg, err_len, "OPTIONAL mismatch in argument '%s'",
1029 s1->name);
1030 return FAILURE;
1031 }
1032
1033 /* Check ALLOCATABLE attribute. */
1034 if (s1->attr.allocatable != s2->attr.allocatable)
1035 {
1036 snprintf (errmsg, err_len, "ALLOCATABLE mismatch in argument '%s'",
1037 s1->name);
1038 return FAILURE;
1039 }
1040
1041 /* Check POINTER attribute. */
1042 if (s1->attr.pointer != s2->attr.pointer)
1043 {
1044 snprintf (errmsg, err_len, "POINTER mismatch in argument '%s'",
1045 s1->name);
1046 return FAILURE;
1047 }
1048
1049 /* Check TARGET attribute. */
1050 if (s1->attr.target != s2->attr.target)
1051 {
1052 snprintf (errmsg, err_len, "TARGET mismatch in argument '%s'",
1053 s1->name);
1054 return FAILURE;
1055 }
1056
1057 /* FIXME: Do more comprehensive testing of attributes, like e.g.
1058 ASYNCHRONOUS, CONTIGUOUS, VALUE, VOLATILE, etc. */
1059
1060 /* Check string length. */
1061 if (s1->ts.type == BT_CHARACTER
1062 && s1->ts.u.cl && s1->ts.u.cl->length
1063 && s2->ts.u.cl && s2->ts.u.cl->length)
1064 {
1065 int compval = gfc_dep_compare_expr (s1->ts.u.cl->length,
1066 s2->ts.u.cl->length);
1067 switch (compval)
1068 {
1069 case -1:
1070 case 1:
1071 case -3:
1072 snprintf (errmsg, err_len, "Character length mismatch "
1073 "in argument '%s'", s1->name);
1074 return FAILURE;
1075
1076 case -2:
1077 /* FIXME: Implement a warning for this case.
1078 gfc_warning ("Possible character length mismatch in argument '%s'",
1079 s1->name);*/
1080 break;
1081
1082 case 0:
1083 break;
1084
1085 default:
1086 gfc_internal_error ("check_dummy_characteristics: Unexpected result "
1087 "%i of gfc_dep_compare_expr", compval);
1088 break;
1089 }
1090 }
1091
1092 /* Check array shape. */
1093 if (s1->as && s2->as)
1094 {
1095 int i, compval;
1096 gfc_expr *shape1, *shape2;
1097
1098 if (s1->as->type != s2->as->type)
1099 {
1100 snprintf (errmsg, err_len, "Shape mismatch in argument '%s'",
1101 s1->name);
1102 return FAILURE;
1103 }
1104
1105 if (s1->as->type == AS_EXPLICIT)
1106 for (i = 0; i < s1->as->rank + s1->as->corank; i++)
1107 {
1108 shape1 = gfc_subtract (gfc_copy_expr (s1->as->upper[i]),
1109 gfc_copy_expr (s1->as->lower[i]));
1110 shape2 = gfc_subtract (gfc_copy_expr (s2->as->upper[i]),
1111 gfc_copy_expr (s2->as->lower[i]));
1112 compval = gfc_dep_compare_expr (shape1, shape2);
1113 gfc_free_expr (shape1);
1114 gfc_free_expr (shape2);
1115 switch (compval)
1116 {
1117 case -1:
1118 case 1:
1119 case -3:
1120 snprintf (errmsg, err_len, "Shape mismatch in dimension %i of "
1121 "argument '%s'", i + 1, s1->name);
1122 return FAILURE;
1123
1124 case -2:
1125 /* FIXME: Implement a warning for this case.
1126 gfc_warning ("Possible shape mismatch in argument '%s'",
1127 s1->name);*/
1128 break;
1129
1130 case 0:
1131 break;
1132
1133 default:
1134 gfc_internal_error ("check_dummy_characteristics: Unexpected "
1135 "result %i of gfc_dep_compare_expr",
1136 compval);
1137 break;
1138 }
1139 }
1140 }
1141
1142 return SUCCESS;
1143 }
1144
1145
1146 /* Check if the characteristics of two function results match,
1147 cf. F08:12.3.3. */
1148
1149 static gfc_try
1150 check_result_characteristics (gfc_symbol *s1, gfc_symbol *s2,
1151 char *errmsg, int err_len)
1152 {
1153 gfc_symbol *r1, *r2;
1154
1155 r1 = s1->result ? s1->result : s1;
1156 r2 = s2->result ? s2->result : s2;
1157
1158 if (r1->ts.type == BT_UNKNOWN)
1159 return SUCCESS;
1160
1161 /* Check type and rank. */
1162 if (!compare_type_rank (r1, r2))
1163 {
1164 snprintf (errmsg, err_len, "Type/rank mismatch in function result");
1165 return FAILURE;
1166 }
1167
1168 /* Check ALLOCATABLE attribute. */
1169 if (r1->attr.allocatable != r2->attr.allocatable)
1170 {
1171 snprintf (errmsg, err_len, "ALLOCATABLE attribute mismatch in "
1172 "function result");
1173 return FAILURE;
1174 }
1175
1176 /* Check POINTER attribute. */
1177 if (r1->attr.pointer != r2->attr.pointer)
1178 {
1179 snprintf (errmsg, err_len, "POINTER attribute mismatch in "
1180 "function result");
1181 return FAILURE;
1182 }
1183
1184 /* Check CONTIGUOUS attribute. */
1185 if (r1->attr.contiguous != r2->attr.contiguous)
1186 {
1187 snprintf (errmsg, err_len, "CONTIGUOUS attribute mismatch in "
1188 "function result");
1189 return FAILURE;
1190 }
1191
1192 /* Check PROCEDURE POINTER attribute. */
1193 if (r1 != s1 && r1->attr.proc_pointer != r2->attr.proc_pointer)
1194 {
1195 snprintf (errmsg, err_len, "PROCEDURE POINTER mismatch in "
1196 "function result");
1197 return FAILURE;
1198 }
1199
1200 /* Check string length. */
1201 if (r1->ts.type == BT_CHARACTER && r1->ts.u.cl && r2->ts.u.cl)
1202 {
1203 if (r1->ts.deferred != r2->ts.deferred)
1204 {
1205 snprintf (errmsg, err_len, "Character length mismatch "
1206 "in function result");
1207 return FAILURE;
1208 }
1209
1210 if (r1->ts.u.cl->length)
1211 {
1212 int compval = gfc_dep_compare_expr (r1->ts.u.cl->length,
1213 r2->ts.u.cl->length);
1214 switch (compval)
1215 {
1216 case -1:
1217 case 1:
1218 case -3:
1219 snprintf (errmsg, err_len, "Character length mismatch "
1220 "in function result");
1221 return FAILURE;
1222
1223 case -2:
1224 /* FIXME: Implement a warning for this case.
1225 snprintf (errmsg, err_len, "Possible character length mismatch "
1226 "in function result");*/
1227 break;
1228
1229 case 0:
1230 break;
1231
1232 default:
1233 gfc_internal_error ("check_result_characteristics (1): Unexpected "
1234 "result %i of gfc_dep_compare_expr", compval);
1235 break;
1236 }
1237 }
1238 }
1239
1240 /* Check array shape. */
1241 if (!r1->attr.allocatable && !r1->attr.pointer && r1->as && r2->as)
1242 {
1243 int i, compval;
1244 gfc_expr *shape1, *shape2;
1245
1246 if (r1->as->type != r2->as->type)
1247 {
1248 snprintf (errmsg, err_len, "Shape mismatch in function result");
1249 return FAILURE;
1250 }
1251
1252 if (r1->as->type == AS_EXPLICIT)
1253 for (i = 0; i < r1->as->rank + r1->as->corank; i++)
1254 {
1255 shape1 = gfc_subtract (gfc_copy_expr (r1->as->upper[i]),
1256 gfc_copy_expr (r1->as->lower[i]));
1257 shape2 = gfc_subtract (gfc_copy_expr (r2->as->upper[i]),
1258 gfc_copy_expr (r2->as->lower[i]));
1259 compval = gfc_dep_compare_expr (shape1, shape2);
1260 gfc_free_expr (shape1);
1261 gfc_free_expr (shape2);
1262 switch (compval)
1263 {
1264 case -1:
1265 case 1:
1266 case -3:
1267 snprintf (errmsg, err_len, "Shape mismatch in dimension %i of "
1268 "function result", i + 1);
1269 return FAILURE;
1270
1271 case -2:
1272 /* FIXME: Implement a warning for this case.
1273 gfc_warning ("Possible shape mismatch in return value");*/
1274 break;
1275
1276 case 0:
1277 break;
1278
1279 default:
1280 gfc_internal_error ("check_result_characteristics (2): "
1281 "Unexpected result %i of "
1282 "gfc_dep_compare_expr", compval);
1283 break;
1284 }
1285 }
1286 }
1287
1288 return SUCCESS;
1289 }
1290
1291
1292 /* 'Compare' two formal interfaces associated with a pair of symbols.
1293 We return nonzero if there exists an actual argument list that
1294 would be ambiguous between the two interfaces, zero otherwise.
1295 'strict_flag' specifies whether all the characteristics are
1296 required to match, which is not the case for ambiguity checks.
1297 'p1' and 'p2' are the PASS arguments of both procedures (if applicable). */
1298
1299 int
1300 gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, const char *name2,
1301 int generic_flag, int strict_flag,
1302 char *errmsg, int err_len,
1303 const char *p1, const char *p2)
1304 {
1305 gfc_formal_arglist *f1, *f2;
1306
1307 gcc_assert (name2 != NULL);
1308
1309 if (s1->attr.function && (s2->attr.subroutine
1310 || (!s2->attr.function && s2->ts.type == BT_UNKNOWN
1311 && gfc_get_default_type (name2, s2->ns)->type == BT_UNKNOWN)))
1312 {
1313 if (errmsg != NULL)
1314 snprintf (errmsg, err_len, "'%s' is not a function", name2);
1315 return 0;
1316 }
1317
1318 if (s1->attr.subroutine && s2->attr.function)
1319 {
1320 if (errmsg != NULL)
1321 snprintf (errmsg, err_len, "'%s' is not a subroutine", name2);
1322 return 0;
1323 }
1324
1325 /* Do strict checks on all characteristics
1326 (for dummy procedures and procedure pointer assignments). */
1327 if (!generic_flag && strict_flag)
1328 {
1329 if (s1->attr.function && s2->attr.function)
1330 {
1331 /* If both are functions, check result characteristics. */
1332 if (check_result_characteristics (s1, s2, errmsg, err_len)
1333 == FAILURE)
1334 return 0;
1335 }
1336
1337 if (s1->attr.pure && !s2->attr.pure)
1338 {
1339 snprintf (errmsg, err_len, "Mismatch in PURE attribute");
1340 return 0;
1341 }
1342 if (s1->attr.elemental && !s2->attr.elemental)
1343 {
1344 snprintf (errmsg, err_len, "Mismatch in ELEMENTAL attribute");
1345 return 0;
1346 }
1347 }
1348
1349 if (s1->attr.if_source == IFSRC_UNKNOWN
1350 || s2->attr.if_source == IFSRC_UNKNOWN)
1351 return 1;
1352
1353 f1 = s1->formal;
1354 f2 = s2->formal;
1355
1356 if (f1 == NULL && f2 == NULL)
1357 return 1; /* Special case: No arguments. */
1358
1359 if (generic_flag)
1360 {
1361 if (count_types_test (f1, f2, p1, p2)
1362 || count_types_test (f2, f1, p2, p1))
1363 return 0;
1364 if (generic_correspondence (f1, f2, p1, p2)
1365 || generic_correspondence (f2, f1, p2, p1))
1366 return 0;
1367 }
1368 else
1369 /* Perform the abbreviated correspondence test for operators (the
1370 arguments cannot be optional and are always ordered correctly).
1371 This is also done when comparing interfaces for dummy procedures and in
1372 procedure pointer assignments. */
1373
1374 for (;;)
1375 {
1376 /* Check existence. */
1377 if (f1 == NULL && f2 == NULL)
1378 break;
1379 if (f1 == NULL || f2 == NULL)
1380 {
1381 if (errmsg != NULL)
1382 snprintf (errmsg, err_len, "'%s' has the wrong number of "
1383 "arguments", name2);
1384 return 0;
1385 }
1386
1387 if (strict_flag)
1388 {
1389 /* Check all characteristics. */
1390 if (check_dummy_characteristics (f1->sym, f2->sym,
1391 true, errmsg, err_len) == FAILURE)
1392 return 0;
1393 }
1394 else if (!compare_type_rank (f2->sym, f1->sym))
1395 {
1396 /* Only check type and rank. */
1397 if (errmsg != NULL)
1398 snprintf (errmsg, err_len, "Type/rank mismatch in argument '%s'",
1399 f1->sym->name);
1400 return 0;
1401 }
1402
1403 f1 = f1->next;
1404 f2 = f2->next;
1405 }
1406
1407 return 1;
1408 }
1409
1410
1411 /* Given a pointer to an interface pointer, remove duplicate
1412 interfaces and make sure that all symbols are either functions
1413 or subroutines, and all of the same kind. Returns nonzero if
1414 something goes wrong. */
1415
1416 static int
1417 check_interface0 (gfc_interface *p, const char *interface_name)
1418 {
1419 gfc_interface *psave, *q, *qlast;
1420
1421 psave = p;
1422 for (; p; p = p->next)
1423 {
1424 /* Make sure all symbols in the interface have been defined as
1425 functions or subroutines. */
1426 if (((!p->sym->attr.function && !p->sym->attr.subroutine)
1427 || !p->sym->attr.if_source)
1428 && p->sym->attr.flavor != FL_DERIVED)
1429 {
1430 if (p->sym->attr.external)
1431 gfc_error ("Procedure '%s' in %s at %L has no explicit interface",
1432 p->sym->name, interface_name, &p->sym->declared_at);
1433 else
1434 gfc_error ("Procedure '%s' in %s at %L is neither function nor "
1435 "subroutine", p->sym->name, interface_name,
1436 &p->sym->declared_at);
1437 return 1;
1438 }
1439
1440 /* Verify that procedures are either all SUBROUTINEs or all FUNCTIONs. */
1441 if ((psave->sym->attr.function && !p->sym->attr.function
1442 && p->sym->attr.flavor != FL_DERIVED)
1443 || (psave->sym->attr.subroutine && !p->sym->attr.subroutine))
1444 {
1445 if (p->sym->attr.flavor != FL_DERIVED)
1446 gfc_error ("In %s at %L procedures must be either all SUBROUTINEs"
1447 " or all FUNCTIONs", interface_name,
1448 &p->sym->declared_at);
1449 else
1450 gfc_error ("In %s at %L procedures must be all FUNCTIONs as the "
1451 "generic name is also the name of a derived type",
1452 interface_name, &p->sym->declared_at);
1453 return 1;
1454 }
1455
1456 /* F2003, C1207. F2008, C1207. */
1457 if (p->sym->attr.proc == PROC_INTERNAL
1458 && gfc_notify_std (GFC_STD_F2008, "Internal procedure "
1459 "'%s' in %s at %L", p->sym->name, interface_name,
1460 &p->sym->declared_at) == FAILURE)
1461 return 1;
1462 }
1463 p = psave;
1464
1465 /* Remove duplicate interfaces in this interface list. */
1466 for (; p; p = p->next)
1467 {
1468 qlast = p;
1469
1470 for (q = p->next; q;)
1471 {
1472 if (p->sym != q->sym)
1473 {
1474 qlast = q;
1475 q = q->next;
1476 }
1477 else
1478 {
1479 /* Duplicate interface. */
1480 qlast->next = q->next;
1481 free (q);
1482 q = qlast->next;
1483 }
1484 }
1485 }
1486
1487 return 0;
1488 }
1489
1490
1491 /* Check lists of interfaces to make sure that no two interfaces are
1492 ambiguous. Duplicate interfaces (from the same symbol) are OK here. */
1493
1494 static int
1495 check_interface1 (gfc_interface *p, gfc_interface *q0,
1496 int generic_flag, const char *interface_name,
1497 bool referenced)
1498 {
1499 gfc_interface *q;
1500 for (; p; p = p->next)
1501 for (q = q0; q; q = q->next)
1502 {
1503 if (p->sym == q->sym)
1504 continue; /* Duplicates OK here. */
1505
1506 if (p->sym->name == q->sym->name && p->sym->module == q->sym->module)
1507 continue;
1508
1509 if (p->sym->attr.flavor != FL_DERIVED
1510 && q->sym->attr.flavor != FL_DERIVED
1511 && gfc_compare_interfaces (p->sym, q->sym, q->sym->name,
1512 generic_flag, 0, NULL, 0, NULL, NULL))
1513 {
1514 if (referenced)
1515 gfc_error ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1516 p->sym->name, q->sym->name, interface_name,
1517 &p->where);
1518 else if (!p->sym->attr.use_assoc && q->sym->attr.use_assoc)
1519 gfc_warning ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1520 p->sym->name, q->sym->name, interface_name,
1521 &p->where);
1522 else
1523 gfc_warning ("Although not referenced, '%s' has ambiguous "
1524 "interfaces at %L", interface_name, &p->where);
1525 return 1;
1526 }
1527 }
1528 return 0;
1529 }
1530
1531
1532 /* Check the generic and operator interfaces of symbols to make sure
1533 that none of the interfaces conflict. The check has to be done
1534 after all of the symbols are actually loaded. */
1535
1536 static void
1537 check_sym_interfaces (gfc_symbol *sym)
1538 {
1539 char interface_name[100];
1540 gfc_interface *p;
1541
1542 if (sym->ns != gfc_current_ns)
1543 return;
1544
1545 if (sym->generic != NULL)
1546 {
1547 sprintf (interface_name, "generic interface '%s'", sym->name);
1548 if (check_interface0 (sym->generic, interface_name))
1549 return;
1550
1551 for (p = sym->generic; p; p = p->next)
1552 {
1553 if (sym->attr.access != ACCESS_PRIVATE)
1554 p->sym->attr.public_used = 1;
1555
1556 if (p->sym->attr.mod_proc
1557 && (p->sym->attr.if_source != IFSRC_DECL
1558 || p->sym->attr.procedure))
1559 {
1560 gfc_error ("'%s' at %L is not a module procedure",
1561 p->sym->name, &p->where);
1562 return;
1563 }
1564 }
1565
1566 /* Originally, this test was applied to host interfaces too;
1567 this is incorrect since host associated symbols, from any
1568 source, cannot be ambiguous with local symbols. */
1569 check_interface1 (sym->generic, sym->generic, 1, interface_name,
1570 sym->attr.referenced || !sym->attr.use_assoc);
1571 }
1572 }
1573
1574
1575 static void
1576 check_uop_interfaces (gfc_user_op *uop)
1577 {
1578 char interface_name[100];
1579 gfc_user_op *uop2;
1580 gfc_namespace *ns;
1581 gfc_interface *p;
1582
1583 sprintf (interface_name, "operator interface '%s'", uop->name);
1584 if (check_interface0 (uop->op, interface_name))
1585 return;
1586
1587 if (uop->access != ACCESS_PRIVATE)
1588 for (p = uop->op; p; p = p->next)
1589 p->sym->attr.public_used = 1;
1590
1591 for (ns = gfc_current_ns; ns; ns = ns->parent)
1592 {
1593 uop2 = gfc_find_uop (uop->name, ns);
1594 if (uop2 == NULL)
1595 continue;
1596
1597 check_interface1 (uop->op, uop2->op, 0,
1598 interface_name, true);
1599 }
1600 }
1601
1602 /* Given an intrinsic op, return an equivalent op if one exists,
1603 or INTRINSIC_NONE otherwise. */
1604
1605 gfc_intrinsic_op
1606 gfc_equivalent_op (gfc_intrinsic_op op)
1607 {
1608 switch(op)
1609 {
1610 case INTRINSIC_EQ:
1611 return INTRINSIC_EQ_OS;
1612
1613 case INTRINSIC_EQ_OS:
1614 return INTRINSIC_EQ;
1615
1616 case INTRINSIC_NE:
1617 return INTRINSIC_NE_OS;
1618
1619 case INTRINSIC_NE_OS:
1620 return INTRINSIC_NE;
1621
1622 case INTRINSIC_GT:
1623 return INTRINSIC_GT_OS;
1624
1625 case INTRINSIC_GT_OS:
1626 return INTRINSIC_GT;
1627
1628 case INTRINSIC_GE:
1629 return INTRINSIC_GE_OS;
1630
1631 case INTRINSIC_GE_OS:
1632 return INTRINSIC_GE;
1633
1634 case INTRINSIC_LT:
1635 return INTRINSIC_LT_OS;
1636
1637 case INTRINSIC_LT_OS:
1638 return INTRINSIC_LT;
1639
1640 case INTRINSIC_LE:
1641 return INTRINSIC_LE_OS;
1642
1643 case INTRINSIC_LE_OS:
1644 return INTRINSIC_LE;
1645
1646 default:
1647 return INTRINSIC_NONE;
1648 }
1649 }
1650
1651 /* For the namespace, check generic, user operator and intrinsic
1652 operator interfaces for consistency and to remove duplicate
1653 interfaces. We traverse the whole namespace, counting on the fact
1654 that most symbols will not have generic or operator interfaces. */
1655
1656 void
1657 gfc_check_interfaces (gfc_namespace *ns)
1658 {
1659 gfc_namespace *old_ns, *ns2;
1660 gfc_interface *p;
1661 char interface_name[100];
1662 int i;
1663
1664 old_ns = gfc_current_ns;
1665 gfc_current_ns = ns;
1666
1667 gfc_traverse_ns (ns, check_sym_interfaces);
1668
1669 gfc_traverse_user_op (ns, check_uop_interfaces);
1670
1671 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
1672 {
1673 if (i == INTRINSIC_USER)
1674 continue;
1675
1676 if (i == INTRINSIC_ASSIGN)
1677 strcpy (interface_name, "intrinsic assignment operator");
1678 else
1679 sprintf (interface_name, "intrinsic '%s' operator",
1680 gfc_op2string ((gfc_intrinsic_op) i));
1681
1682 if (check_interface0 (ns->op[i], interface_name))
1683 continue;
1684
1685 for (p = ns->op[i]; p; p = p->next)
1686 p->sym->attr.public_used = 1;
1687
1688
1689 if (ns->op[i])
1690 gfc_check_operator_interface (ns->op[i]->sym, (gfc_intrinsic_op) i,
1691 ns->op[i]->where);
1692
1693 for (ns2 = ns; ns2; ns2 = ns2->parent)
1694 {
1695 gfc_intrinsic_op other_op;
1696
1697 if (check_interface1 (ns->op[i], ns2->op[i], 0,
1698 interface_name, true))
1699 goto done;
1700
1701 /* i should be gfc_intrinsic_op, but has to be int with this cast
1702 here for stupid C++ compatibility rules. */
1703 other_op = gfc_equivalent_op ((gfc_intrinsic_op) i);
1704 if (other_op != INTRINSIC_NONE
1705 && check_interface1 (ns->op[i], ns2->op[other_op],
1706 0, interface_name, true))
1707 goto done;
1708 }
1709 }
1710
1711 done:
1712 gfc_current_ns = old_ns;
1713 }
1714
1715
1716 static int
1717 symbol_rank (gfc_symbol *sym)
1718 {
1719 if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
1720 return CLASS_DATA (sym)->as->rank;
1721
1722 return (sym->as == NULL) ? 0 : sym->as->rank;
1723 }
1724
1725
1726 /* Given a symbol of a formal argument list and an expression, if the
1727 formal argument is allocatable, check that the actual argument is
1728 allocatable. Returns nonzero if compatible, zero if not compatible. */
1729
1730 static int
1731 compare_allocatable (gfc_symbol *formal, gfc_expr *actual)
1732 {
1733 symbol_attribute attr;
1734
1735 if (formal->attr.allocatable
1736 || (formal->ts.type == BT_CLASS && CLASS_DATA (formal)->attr.allocatable))
1737 {
1738 attr = gfc_expr_attr (actual);
1739 if (!attr.allocatable)
1740 return 0;
1741 }
1742
1743 return 1;
1744 }
1745
1746
1747 /* Given a symbol of a formal argument list and an expression, if the
1748 formal argument is a pointer, see if the actual argument is a
1749 pointer. Returns nonzero if compatible, zero if not compatible. */
1750
1751 static int
1752 compare_pointer (gfc_symbol *formal, gfc_expr *actual)
1753 {
1754 symbol_attribute attr;
1755
1756 if (formal->attr.pointer
1757 || (formal->ts.type == BT_CLASS && CLASS_DATA (formal)
1758 && CLASS_DATA (formal)->attr.class_pointer))
1759 {
1760 attr = gfc_expr_attr (actual);
1761
1762 /* Fortran 2008 allows non-pointer actual arguments. */
1763 if (!attr.pointer && attr.target && formal->attr.intent == INTENT_IN)
1764 return 2;
1765
1766 if (!attr.pointer)
1767 return 0;
1768 }
1769
1770 return 1;
1771 }
1772
1773
1774 /* Emit clear error messages for rank mismatch. */
1775
1776 static void
1777 argument_rank_mismatch (const char *name, locus *where,
1778 int rank1, int rank2)
1779 {
1780
1781 /* TS 29113, C407b. */
1782 if (rank2 == -1)
1783 {
1784 gfc_error ("The assumed-rank array at %L requires that the dummy argument"
1785 " '%s' has assumed-rank", where, name);
1786 }
1787 else if (rank1 == 0)
1788 {
1789 gfc_error ("Rank mismatch in argument '%s' at %L "
1790 "(scalar and rank-%d)", name, where, rank2);
1791 }
1792 else if (rank2 == 0)
1793 {
1794 gfc_error ("Rank mismatch in argument '%s' at %L "
1795 "(rank-%d and scalar)", name, where, rank1);
1796 }
1797 else
1798 {
1799 gfc_error ("Rank mismatch in argument '%s' at %L "
1800 "(rank-%d and rank-%d)", name, where, rank1, rank2);
1801 }
1802 }
1803
1804
1805 /* Given a symbol of a formal argument list and an expression, see if
1806 the two are compatible as arguments. Returns nonzero if
1807 compatible, zero if not compatible. */
1808
1809 static int
1810 compare_parameter (gfc_symbol *formal, gfc_expr *actual,
1811 int ranks_must_agree, int is_elemental, locus *where)
1812 {
1813 gfc_ref *ref;
1814 bool rank_check, is_pointer;
1815
1816 /* If the formal arg has type BT_VOID, it's to one of the iso_c_binding
1817 procs c_f_pointer or c_f_procpointer, and we need to accept most
1818 pointers the user could give us. This should allow that. */
1819 if (formal->ts.type == BT_VOID)
1820 return 1;
1821
1822 if (formal->ts.type == BT_DERIVED
1823 && formal->ts.u.derived && formal->ts.u.derived->ts.is_iso_c
1824 && actual->ts.type == BT_DERIVED
1825 && actual->ts.u.derived && actual->ts.u.derived->ts.is_iso_c)
1826 return 1;
1827
1828 if (formal->ts.type == BT_CLASS && actual->ts.type == BT_DERIVED)
1829 /* Make sure the vtab symbol is present when
1830 the module variables are generated. */
1831 gfc_find_derived_vtab (actual->ts.u.derived);
1832
1833 if (actual->ts.type == BT_PROCEDURE)
1834 {
1835 char err[200];
1836 gfc_symbol *act_sym = actual->symtree->n.sym;
1837
1838 if (formal->attr.flavor != FL_PROCEDURE)
1839 {
1840 if (where)
1841 gfc_error ("Invalid procedure argument at %L", &actual->where);
1842 return 0;
1843 }
1844
1845 if (!gfc_compare_interfaces (formal, act_sym, act_sym->name, 0, 1, err,
1846 sizeof(err), NULL, NULL))
1847 {
1848 if (where)
1849 gfc_error ("Interface mismatch in dummy procedure '%s' at %L: %s",
1850 formal->name, &actual->where, err);
1851 return 0;
1852 }
1853
1854 if (formal->attr.function && !act_sym->attr.function)
1855 {
1856 gfc_add_function (&act_sym->attr, act_sym->name,
1857 &act_sym->declared_at);
1858 if (act_sym->ts.type == BT_UNKNOWN
1859 && gfc_set_default_type (act_sym, 1, act_sym->ns) == FAILURE)
1860 return 0;
1861 }
1862 else if (formal->attr.subroutine && !act_sym->attr.subroutine)
1863 gfc_add_subroutine (&act_sym->attr, act_sym->name,
1864 &act_sym->declared_at);
1865
1866 return 1;
1867 }
1868
1869 /* F2008, C1241. */
1870 if (formal->attr.pointer && formal->attr.contiguous
1871 && !gfc_is_simply_contiguous (actual, true))
1872 {
1873 if (where)
1874 gfc_error ("Actual argument to contiguous pointer dummy '%s' at %L "
1875 "must be simply contiguous", formal->name, &actual->where);
1876 return 0;
1877 }
1878
1879 if ((actual->expr_type != EXPR_NULL || actual->ts.type != BT_UNKNOWN)
1880 && actual->ts.type != BT_HOLLERITH
1881 && formal->ts.type != BT_ASSUMED
1882 && !gfc_compare_types (&formal->ts, &actual->ts)
1883 && !(formal->ts.type == BT_DERIVED && actual->ts.type == BT_CLASS
1884 && gfc_compare_derived_types (formal->ts.u.derived,
1885 CLASS_DATA (actual)->ts.u.derived)))
1886 {
1887 if (where)
1888 gfc_error ("Type mismatch in argument '%s' at %L; passed %s to %s",
1889 formal->name, &actual->where, gfc_typename (&actual->ts),
1890 gfc_typename (&formal->ts));
1891 return 0;
1892 }
1893
1894 /* F2008, 12.5.2.5; IR F08/0073. */
1895 if (formal->ts.type == BT_CLASS && actual->expr_type != EXPR_NULL
1896 && ((CLASS_DATA (formal)->attr.class_pointer
1897 && !formal->attr.intent == INTENT_IN)
1898 || CLASS_DATA (formal)->attr.allocatable))
1899 {
1900 if (actual->ts.type != BT_CLASS)
1901 {
1902 if (where)
1903 gfc_error ("Actual argument to '%s' at %L must be polymorphic",
1904 formal->name, &actual->where);
1905 return 0;
1906 }
1907 if (!gfc_compare_derived_types (CLASS_DATA (actual)->ts.u.derived,
1908 CLASS_DATA (formal)->ts.u.derived))
1909 {
1910 if (where)
1911 gfc_error ("Actual argument to '%s' at %L must have the same "
1912 "declared type", formal->name, &actual->where);
1913 return 0;
1914 }
1915 }
1916
1917 if (formal->attr.codimension && !gfc_is_coarray (actual))
1918 {
1919 if (where)
1920 gfc_error ("Actual argument to '%s' at %L must be a coarray",
1921 formal->name, &actual->where);
1922 return 0;
1923 }
1924
1925 if (formal->attr.codimension && formal->attr.allocatable)
1926 {
1927 gfc_ref *last = NULL;
1928
1929 for (ref = actual->ref; ref; ref = ref->next)
1930 if (ref->type == REF_COMPONENT)
1931 last = ref;
1932
1933 /* F2008, 12.5.2.6. */
1934 if ((last && last->u.c.component->as->corank != formal->as->corank)
1935 || (!last
1936 && actual->symtree->n.sym->as->corank != formal->as->corank))
1937 {
1938 if (where)
1939 gfc_error ("Corank mismatch in argument '%s' at %L (%d and %d)",
1940 formal->name, &actual->where, formal->as->corank,
1941 last ? last->u.c.component->as->corank
1942 : actual->symtree->n.sym->as->corank);
1943 return 0;
1944 }
1945 }
1946
1947 if (formal->attr.codimension)
1948 {
1949 /* F2008, 12.5.2.8. */
1950 if (formal->attr.dimension
1951 && (formal->attr.contiguous || formal->as->type != AS_ASSUMED_SHAPE)
1952 && gfc_expr_attr (actual).dimension
1953 && !gfc_is_simply_contiguous (actual, true))
1954 {
1955 if (where)
1956 gfc_error ("Actual argument to '%s' at %L must be simply "
1957 "contiguous", formal->name, &actual->where);
1958 return 0;
1959 }
1960
1961 /* F2008, C1303 and C1304. */
1962 if (formal->attr.intent != INTENT_INOUT
1963 && (((formal->ts.type == BT_DERIVED || formal->ts.type == BT_CLASS)
1964 && formal->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
1965 && formal->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
1966 || formal->attr.lock_comp))
1967
1968 {
1969 if (where)
1970 gfc_error ("Actual argument to non-INTENT(INOUT) dummy '%s' at %L, "
1971 "which is LOCK_TYPE or has a LOCK_TYPE component",
1972 formal->name, &actual->where);
1973 return 0;
1974 }
1975 }
1976
1977 /* F2008, C1239/C1240. */
1978 if (actual->expr_type == EXPR_VARIABLE
1979 && (actual->symtree->n.sym->attr.asynchronous
1980 || actual->symtree->n.sym->attr.volatile_)
1981 && (formal->attr.asynchronous || formal->attr.volatile_)
1982 && actual->rank && !gfc_is_simply_contiguous (actual, true)
1983 && ((formal->as->type != AS_ASSUMED_SHAPE && !formal->attr.pointer)
1984 || formal->attr.contiguous))
1985 {
1986 if (where)
1987 gfc_error ("Dummy argument '%s' has to be a pointer or assumed-shape "
1988 "array without CONTIGUOUS attribute - as actual argument at"
1989 " %L is not simply contiguous and both are ASYNCHRONOUS "
1990 "or VOLATILE", formal->name, &actual->where);
1991 return 0;
1992 }
1993
1994 if (formal->attr.allocatable && !formal->attr.codimension
1995 && gfc_expr_attr (actual).codimension)
1996 {
1997 if (formal->attr.intent == INTENT_OUT)
1998 {
1999 if (where)
2000 gfc_error ("Passing coarray at %L to allocatable, noncoarray, "
2001 "INTENT(OUT) dummy argument '%s'", &actual->where,
2002 formal->name);
2003 return 0;
2004 }
2005 else if (gfc_option.warn_surprising && where
2006 && formal->attr.intent != INTENT_IN)
2007 gfc_warning ("Passing coarray at %L to allocatable, noncoarray dummy "
2008 "argument '%s', which is invalid if the allocation status"
2009 " is modified", &actual->where, formal->name);
2010 }
2011
2012 /* If the rank is the same or the formal argument has assumed-rank. */
2013 if (symbol_rank (formal) == actual->rank || symbol_rank (formal) == -1)
2014 return 1;
2015
2016 if (actual->ts.type == BT_CLASS && CLASS_DATA (actual)->as
2017 && CLASS_DATA (actual)->as->rank == symbol_rank (formal))
2018 return 1;
2019
2020 rank_check = where != NULL && !is_elemental && formal->as
2021 && (formal->as->type == AS_ASSUMED_SHAPE
2022 || formal->as->type == AS_DEFERRED)
2023 && actual->expr_type != EXPR_NULL;
2024
2025 /* Scalar & coindexed, see: F2008, Section 12.5.2.4. */
2026 if (rank_check || ranks_must_agree
2027 || (formal->attr.pointer && actual->expr_type != EXPR_NULL)
2028 || (actual->rank != 0 && !(is_elemental || formal->attr.dimension))
2029 || (actual->rank == 0
2030 && ((formal->ts.type == BT_CLASS
2031 && CLASS_DATA (formal)->as->type == AS_ASSUMED_SHAPE)
2032 || (formal->ts.type != BT_CLASS
2033 && formal->as->type == AS_ASSUMED_SHAPE))
2034 && actual->expr_type != EXPR_NULL)
2035 || (actual->rank == 0 && formal->attr.dimension
2036 && gfc_is_coindexed (actual)))
2037 {
2038 if (where)
2039 argument_rank_mismatch (formal->name, &actual->where,
2040 symbol_rank (formal), actual->rank);
2041 return 0;
2042 }
2043 else if (actual->rank != 0 && (is_elemental || formal->attr.dimension))
2044 return 1;
2045
2046 /* At this point, we are considering a scalar passed to an array. This
2047 is valid (cf. F95 12.4.1.1, F2003 12.4.1.2, and F2008 12.5.2.4),
2048 - if the actual argument is (a substring of) an element of a
2049 non-assumed-shape/non-pointer/non-polymorphic array; or
2050 - (F2003) if the actual argument is of type character of default/c_char
2051 kind. */
2052
2053 is_pointer = actual->expr_type == EXPR_VARIABLE
2054 ? actual->symtree->n.sym->attr.pointer : false;
2055
2056 for (ref = actual->ref; ref; ref = ref->next)
2057 {
2058 if (ref->type == REF_COMPONENT)
2059 is_pointer = ref->u.c.component->attr.pointer;
2060 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT
2061 && ref->u.ar.dimen > 0
2062 && (!ref->next
2063 || (ref->next->type == REF_SUBSTRING && !ref->next->next)))
2064 break;
2065 }
2066
2067 if (actual->ts.type == BT_CLASS && actual->expr_type != EXPR_NULL)
2068 {
2069 if (where)
2070 gfc_error ("Polymorphic scalar passed to array dummy argument '%s' "
2071 "at %L", formal->name, &actual->where);
2072 return 0;
2073 }
2074
2075 if (actual->expr_type != EXPR_NULL && ref && actual->ts.type != BT_CHARACTER
2076 && (is_pointer || ref->u.ar.as->type == AS_ASSUMED_SHAPE))
2077 {
2078 if (where)
2079 gfc_error ("Element of assumed-shaped or pointer "
2080 "array passed to array dummy argument '%s' at %L",
2081 formal->name, &actual->where);
2082 return 0;
2083 }
2084
2085 if (actual->ts.type == BT_CHARACTER && actual->expr_type != EXPR_NULL
2086 && (!ref || is_pointer || ref->u.ar.as->type == AS_ASSUMED_SHAPE))
2087 {
2088 if (formal->ts.kind != 1 && (gfc_option.allow_std & GFC_STD_GNU) == 0)
2089 {
2090 if (where)
2091 gfc_error ("Extension: Scalar non-default-kind, non-C_CHAR-kind "
2092 "CHARACTER actual argument with array dummy argument "
2093 "'%s' at %L", formal->name, &actual->where);
2094 return 0;
2095 }
2096
2097 if (where && (gfc_option.allow_std & GFC_STD_F2003) == 0)
2098 {
2099 gfc_error ("Fortran 2003: Scalar CHARACTER actual argument with "
2100 "array dummy argument '%s' at %L",
2101 formal->name, &actual->where);
2102 return 0;
2103 }
2104 else if ((gfc_option.allow_std & GFC_STD_F2003) == 0)
2105 return 0;
2106 else
2107 return 1;
2108 }
2109
2110 if (ref == NULL && actual->expr_type != EXPR_NULL)
2111 {
2112 if (where)
2113 argument_rank_mismatch (formal->name, &actual->where,
2114 symbol_rank (formal), actual->rank);
2115 return 0;
2116 }
2117
2118 return 1;
2119 }
2120
2121
2122 /* Returns the storage size of a symbol (formal argument) or
2123 zero if it cannot be determined. */
2124
2125 static unsigned long
2126 get_sym_storage_size (gfc_symbol *sym)
2127 {
2128 int i;
2129 unsigned long strlen, elements;
2130
2131 if (sym->ts.type == BT_CHARACTER)
2132 {
2133 if (sym->ts.u.cl && sym->ts.u.cl->length
2134 && sym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
2135 strlen = mpz_get_ui (sym->ts.u.cl->length->value.integer);
2136 else
2137 return 0;
2138 }
2139 else
2140 strlen = 1;
2141
2142 if (symbol_rank (sym) == 0)
2143 return strlen;
2144
2145 elements = 1;
2146 if (sym->as->type != AS_EXPLICIT)
2147 return 0;
2148 for (i = 0; i < sym->as->rank; i++)
2149 {
2150 if (sym->as->upper[i]->expr_type != EXPR_CONSTANT
2151 || sym->as->lower[i]->expr_type != EXPR_CONSTANT)
2152 return 0;
2153
2154 elements *= mpz_get_si (sym->as->upper[i]->value.integer)
2155 - mpz_get_si (sym->as->lower[i]->value.integer) + 1L;
2156 }
2157
2158 return strlen*elements;
2159 }
2160
2161
2162 /* Returns the storage size of an expression (actual argument) or
2163 zero if it cannot be determined. For an array element, it returns
2164 the remaining size as the element sequence consists of all storage
2165 units of the actual argument up to the end of the array. */
2166
2167 static unsigned long
2168 get_expr_storage_size (gfc_expr *e)
2169 {
2170 int i;
2171 long int strlen, elements;
2172 long int substrlen = 0;
2173 bool is_str_storage = false;
2174 gfc_ref *ref;
2175
2176 if (e == NULL)
2177 return 0;
2178
2179 if (e->ts.type == BT_CHARACTER)
2180 {
2181 if (e->ts.u.cl && e->ts.u.cl->length
2182 && e->ts.u.cl->length->expr_type == EXPR_CONSTANT)
2183 strlen = mpz_get_si (e->ts.u.cl->length->value.integer);
2184 else if (e->expr_type == EXPR_CONSTANT
2185 && (e->ts.u.cl == NULL || e->ts.u.cl->length == NULL))
2186 strlen = e->value.character.length;
2187 else
2188 return 0;
2189 }
2190 else
2191 strlen = 1; /* Length per element. */
2192
2193 if (e->rank == 0 && !e->ref)
2194 return strlen;
2195
2196 elements = 1;
2197 if (!e->ref)
2198 {
2199 if (!e->shape)
2200 return 0;
2201 for (i = 0; i < e->rank; i++)
2202 elements *= mpz_get_si (e->shape[i]);
2203 return elements*strlen;
2204 }
2205
2206 for (ref = e->ref; ref; ref = ref->next)
2207 {
2208 if (ref->type == REF_SUBSTRING && ref->u.ss.start
2209 && ref->u.ss.start->expr_type == EXPR_CONSTANT)
2210 {
2211 if (is_str_storage)
2212 {
2213 /* The string length is the substring length.
2214 Set now to full string length. */
2215 if (!ref->u.ss.length || !ref->u.ss.length->length
2216 || ref->u.ss.length->length->expr_type != EXPR_CONSTANT)
2217 return 0;
2218
2219 strlen = mpz_get_ui (ref->u.ss.length->length->value.integer);
2220 }
2221 substrlen = strlen - mpz_get_ui (ref->u.ss.start->value.integer) + 1;
2222 continue;
2223 }
2224
2225 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
2226 for (i = 0; i < ref->u.ar.dimen; i++)
2227 {
2228 long int start, end, stride;
2229 stride = 1;
2230
2231 if (ref->u.ar.stride[i])
2232 {
2233 if (ref->u.ar.stride[i]->expr_type == EXPR_CONSTANT)
2234 stride = mpz_get_si (ref->u.ar.stride[i]->value.integer);
2235 else
2236 return 0;
2237 }
2238
2239 if (ref->u.ar.start[i])
2240 {
2241 if (ref->u.ar.start[i]->expr_type == EXPR_CONSTANT)
2242 start = mpz_get_si (ref->u.ar.start[i]->value.integer);
2243 else
2244 return 0;
2245 }
2246 else if (ref->u.ar.as->lower[i]
2247 && ref->u.ar.as->lower[i]->expr_type == EXPR_CONSTANT)
2248 start = mpz_get_si (ref->u.ar.as->lower[i]->value.integer);
2249 else
2250 return 0;
2251
2252 if (ref->u.ar.end[i])
2253 {
2254 if (ref->u.ar.end[i]->expr_type == EXPR_CONSTANT)
2255 end = mpz_get_si (ref->u.ar.end[i]->value.integer);
2256 else
2257 return 0;
2258 }
2259 else if (ref->u.ar.as->upper[i]
2260 && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT)
2261 end = mpz_get_si (ref->u.ar.as->upper[i]->value.integer);
2262 else
2263 return 0;
2264
2265 elements *= (end - start)/stride + 1L;
2266 }
2267 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_FULL)
2268 for (i = 0; i < ref->u.ar.as->rank; i++)
2269 {
2270 if (ref->u.ar.as->lower[i] && ref->u.ar.as->upper[i]
2271 && ref->u.ar.as->lower[i]->expr_type == EXPR_CONSTANT
2272 && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT)
2273 elements *= mpz_get_si (ref->u.ar.as->upper[i]->value.integer)
2274 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer)
2275 + 1L;
2276 else
2277 return 0;
2278 }
2279 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT
2280 && e->expr_type == EXPR_VARIABLE)
2281 {
2282 if (ref->u.ar.as->type == AS_ASSUMED_SHAPE
2283 || e->symtree->n.sym->attr.pointer)
2284 {
2285 elements = 1;
2286 continue;
2287 }
2288
2289 /* Determine the number of remaining elements in the element
2290 sequence for array element designators. */
2291 is_str_storage = true;
2292 for (i = ref->u.ar.dimen - 1; i >= 0; i--)
2293 {
2294 if (ref->u.ar.start[i] == NULL
2295 || ref->u.ar.start[i]->expr_type != EXPR_CONSTANT
2296 || ref->u.ar.as->upper[i] == NULL
2297 || ref->u.ar.as->lower[i] == NULL
2298 || ref->u.ar.as->upper[i]->expr_type != EXPR_CONSTANT
2299 || ref->u.ar.as->lower[i]->expr_type != EXPR_CONSTANT)
2300 return 0;
2301
2302 elements
2303 = elements
2304 * (mpz_get_si (ref->u.ar.as->upper[i]->value.integer)
2305 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer)
2306 + 1L)
2307 - (mpz_get_si (ref->u.ar.start[i]->value.integer)
2308 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer));
2309 }
2310 }
2311 }
2312
2313 if (substrlen)
2314 return (is_str_storage) ? substrlen + (elements-1)*strlen
2315 : elements*strlen;
2316 else
2317 return elements*strlen;
2318 }
2319
2320
2321 /* Given an expression, check whether it is an array section
2322 which has a vector subscript. If it has, one is returned,
2323 otherwise zero. */
2324
2325 int
2326 gfc_has_vector_subscript (gfc_expr *e)
2327 {
2328 int i;
2329 gfc_ref *ref;
2330
2331 if (e == NULL || e->rank == 0 || e->expr_type != EXPR_VARIABLE)
2332 return 0;
2333
2334 for (ref = e->ref; ref; ref = ref->next)
2335 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
2336 for (i = 0; i < ref->u.ar.dimen; i++)
2337 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
2338 return 1;
2339
2340 return 0;
2341 }
2342
2343
2344 /* Given formal and actual argument lists, see if they are compatible.
2345 If they are compatible, the actual argument list is sorted to
2346 correspond with the formal list, and elements for missing optional
2347 arguments are inserted. If WHERE pointer is nonnull, then we issue
2348 errors when things don't match instead of just returning the status
2349 code. */
2350
2351 static int
2352 compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
2353 int ranks_must_agree, int is_elemental, locus *where)
2354 {
2355 gfc_actual_arglist **new_arg, *a, *actual, temp;
2356 gfc_formal_arglist *f;
2357 int i, n, na;
2358 unsigned long actual_size, formal_size;
2359 bool full_array = false;
2360
2361 actual = *ap;
2362
2363 if (actual == NULL && formal == NULL)
2364 return 1;
2365
2366 n = 0;
2367 for (f = formal; f; f = f->next)
2368 n++;
2369
2370 new_arg = XALLOCAVEC (gfc_actual_arglist *, n);
2371
2372 for (i = 0; i < n; i++)
2373 new_arg[i] = NULL;
2374
2375 na = 0;
2376 f = formal;
2377 i = 0;
2378
2379 for (a = actual; a; a = a->next, f = f->next)
2380 {
2381 /* Look for keywords but ignore g77 extensions like %VAL. */
2382 if (a->name != NULL && a->name[0] != '%')
2383 {
2384 i = 0;
2385 for (f = formal; f; f = f->next, i++)
2386 {
2387 if (f->sym == NULL)
2388 continue;
2389 if (strcmp (f->sym->name, a->name) == 0)
2390 break;
2391 }
2392
2393 if (f == NULL)
2394 {
2395 if (where)
2396 gfc_error ("Keyword argument '%s' at %L is not in "
2397 "the procedure", a->name, &a->expr->where);
2398 return 0;
2399 }
2400
2401 if (new_arg[i] != NULL)
2402 {
2403 if (where)
2404 gfc_error ("Keyword argument '%s' at %L is already associated "
2405 "with another actual argument", a->name,
2406 &a->expr->where);
2407 return 0;
2408 }
2409 }
2410
2411 if (f == NULL)
2412 {
2413 if (where)
2414 gfc_error ("More actual than formal arguments in procedure "
2415 "call at %L", where);
2416
2417 return 0;
2418 }
2419
2420 if (f->sym == NULL && a->expr == NULL)
2421 goto match;
2422
2423 if (f->sym == NULL)
2424 {
2425 if (where)
2426 gfc_error ("Missing alternate return spec in subroutine call "
2427 "at %L", where);
2428 return 0;
2429 }
2430
2431 if (a->expr == NULL)
2432 {
2433 if (where)
2434 gfc_error ("Unexpected alternate return spec in subroutine "
2435 "call at %L", where);
2436 return 0;
2437 }
2438
2439 if (a->expr->expr_type == EXPR_NULL
2440 && ((f->sym->ts.type != BT_CLASS && !f->sym->attr.pointer
2441 && (f->sym->attr.allocatable || !f->sym->attr.optional
2442 || (gfc_option.allow_std & GFC_STD_F2008) == 0))
2443 || (f->sym->ts.type == BT_CLASS
2444 && !CLASS_DATA (f->sym)->attr.class_pointer
2445 && (CLASS_DATA (f->sym)->attr.allocatable
2446 || !f->sym->attr.optional
2447 || (gfc_option.allow_std & GFC_STD_F2008) == 0))))
2448 {
2449 if (where
2450 && (!f->sym->attr.optional
2451 || (f->sym->ts.type != BT_CLASS && f->sym->attr.allocatable)
2452 || (f->sym->ts.type == BT_CLASS
2453 && CLASS_DATA (f->sym)->attr.allocatable)))
2454 gfc_error ("Unexpected NULL() intrinsic at %L to dummy '%s'",
2455 where, f->sym->name);
2456 else if (where)
2457 gfc_error ("Fortran 2008: Null pointer at %L to non-pointer "
2458 "dummy '%s'", where, f->sym->name);
2459
2460 return 0;
2461 }
2462
2463 if (!compare_parameter (f->sym, a->expr, ranks_must_agree,
2464 is_elemental, where))
2465 return 0;
2466
2467 /* TS 29113, 6.3p2. */
2468 if (f->sym->ts.type == BT_ASSUMED
2469 && (a->expr->ts.type == BT_DERIVED
2470 || (a->expr->ts.type == BT_CLASS && CLASS_DATA (a->expr))))
2471 {
2472 gfc_namespace *f2k_derived;
2473
2474 f2k_derived = a->expr->ts.type == BT_DERIVED
2475 ? a->expr->ts.u.derived->f2k_derived
2476 : CLASS_DATA (a->expr)->ts.u.derived->f2k_derived;
2477
2478 if (f2k_derived
2479 && (f2k_derived->finalizers || f2k_derived->tb_sym_root))
2480 {
2481 gfc_error ("Actual argument at %L to assumed-type dummy is of "
2482 "derived type with type-bound or FINAL procedures",
2483 &a->expr->where);
2484 return FAILURE;
2485 }
2486 }
2487
2488 /* Special case for character arguments. For allocatable, pointer
2489 and assumed-shape dummies, the string length needs to match
2490 exactly. */
2491 if (a->expr->ts.type == BT_CHARACTER
2492 && a->expr->ts.u.cl && a->expr->ts.u.cl->length
2493 && a->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
2494 && f->sym->ts.u.cl && f->sym->ts.u.cl && f->sym->ts.u.cl->length
2495 && f->sym->ts.u.cl->length->expr_type == EXPR_CONSTANT
2496 && (f->sym->attr.pointer || f->sym->attr.allocatable
2497 || (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2498 && (mpz_cmp (a->expr->ts.u.cl->length->value.integer,
2499 f->sym->ts.u.cl->length->value.integer) != 0))
2500 {
2501 if (where && (f->sym->attr.pointer || f->sym->attr.allocatable))
2502 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
2503 "argument and pointer or allocatable dummy argument "
2504 "'%s' at %L",
2505 mpz_get_si (a->expr->ts.u.cl->length->value.integer),
2506 mpz_get_si (f->sym->ts.u.cl->length->value.integer),
2507 f->sym->name, &a->expr->where);
2508 else if (where)
2509 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
2510 "argument and assumed-shape dummy argument '%s' "
2511 "at %L",
2512 mpz_get_si (a->expr->ts.u.cl->length->value.integer),
2513 mpz_get_si (f->sym->ts.u.cl->length->value.integer),
2514 f->sym->name, &a->expr->where);
2515 return 0;
2516 }
2517
2518 if ((f->sym->attr.pointer || f->sym->attr.allocatable)
2519 && f->sym->ts.deferred != a->expr->ts.deferred
2520 && a->expr->ts.type == BT_CHARACTER)
2521 {
2522 if (where)
2523 gfc_error ("Actual argument at %L to allocatable or "
2524 "pointer dummy argument '%s' must have a deferred "
2525 "length type parameter if and only if the dummy has one",
2526 &a->expr->where, f->sym->name);
2527 return 0;
2528 }
2529
2530 if (f->sym->ts.type == BT_CLASS)
2531 goto skip_size_check;
2532
2533 actual_size = get_expr_storage_size (a->expr);
2534 formal_size = get_sym_storage_size (f->sym);
2535 if (actual_size != 0 && actual_size < formal_size
2536 && a->expr->ts.type != BT_PROCEDURE
2537 && f->sym->attr.flavor != FL_PROCEDURE)
2538 {
2539 if (a->expr->ts.type == BT_CHARACTER && !f->sym->as && where)
2540 gfc_warning ("Character length of actual argument shorter "
2541 "than of dummy argument '%s' (%lu/%lu) at %L",
2542 f->sym->name, actual_size, formal_size,
2543 &a->expr->where);
2544 else if (where)
2545 gfc_warning ("Actual argument contains too few "
2546 "elements for dummy argument '%s' (%lu/%lu) at %L",
2547 f->sym->name, actual_size, formal_size,
2548 &a->expr->where);
2549 return 0;
2550 }
2551
2552 skip_size_check:
2553
2554 /* Satisfy 12.4.1.3 by ensuring that a procedure pointer actual argument
2555 is provided for a procedure pointer formal argument. */
2556 if (f->sym->attr.proc_pointer
2557 && !((a->expr->expr_type == EXPR_VARIABLE
2558 && a->expr->symtree->n.sym->attr.proc_pointer)
2559 || (a->expr->expr_type == EXPR_FUNCTION
2560 && a->expr->symtree->n.sym->result->attr.proc_pointer)
2561 || gfc_is_proc_ptr_comp (a->expr)))
2562 {
2563 if (where)
2564 gfc_error ("Expected a procedure pointer for argument '%s' at %L",
2565 f->sym->name, &a->expr->where);
2566 return 0;
2567 }
2568
2569 /* Satisfy 12.4.1.2 by ensuring that a procedure actual argument is
2570 provided for a procedure formal argument. */
2571 if (a->expr->ts.type != BT_PROCEDURE && !gfc_is_proc_ptr_comp (a->expr)
2572 && a->expr->expr_type == EXPR_VARIABLE
2573 && f->sym->attr.flavor == FL_PROCEDURE)
2574 {
2575 if (where)
2576 gfc_error ("Expected a procedure for argument '%s' at %L",
2577 f->sym->name, &a->expr->where);
2578 return 0;
2579 }
2580
2581 if (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE
2582 && a->expr->expr_type == EXPR_VARIABLE
2583 && a->expr->symtree->n.sym->as
2584 && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SIZE
2585 && (a->expr->ref == NULL
2586 || (a->expr->ref->type == REF_ARRAY
2587 && a->expr->ref->u.ar.type == AR_FULL)))
2588 {
2589 if (where)
2590 gfc_error ("Actual argument for '%s' cannot be an assumed-size"
2591 " array at %L", f->sym->name, where);
2592 return 0;
2593 }
2594
2595 if (a->expr->expr_type != EXPR_NULL
2596 && compare_pointer (f->sym, a->expr) == 0)
2597 {
2598 if (where)
2599 gfc_error ("Actual argument for '%s' must be a pointer at %L",
2600 f->sym->name, &a->expr->where);
2601 return 0;
2602 }
2603
2604 if (a->expr->expr_type != EXPR_NULL
2605 && (gfc_option.allow_std & GFC_STD_F2008) == 0
2606 && compare_pointer (f->sym, a->expr) == 2)
2607 {
2608 if (where)
2609 gfc_error ("Fortran 2008: Non-pointer actual argument at %L to "
2610 "pointer dummy '%s'", &a->expr->where,f->sym->name);
2611 return 0;
2612 }
2613
2614
2615 /* Fortran 2008, C1242. */
2616 if (f->sym->attr.pointer && gfc_is_coindexed (a->expr))
2617 {
2618 if (where)
2619 gfc_error ("Coindexed actual argument at %L to pointer "
2620 "dummy '%s'",
2621 &a->expr->where, f->sym->name);
2622 return 0;
2623 }
2624
2625 /* Fortran 2008, 12.5.2.5 (no constraint). */
2626 if (a->expr->expr_type == EXPR_VARIABLE
2627 && f->sym->attr.intent != INTENT_IN
2628 && f->sym->attr.allocatable
2629 && gfc_is_coindexed (a->expr))
2630 {
2631 if (where)
2632 gfc_error ("Coindexed actual argument at %L to allocatable "
2633 "dummy '%s' requires INTENT(IN)",
2634 &a->expr->where, f->sym->name);
2635 return 0;
2636 }
2637
2638 /* Fortran 2008, C1237. */
2639 if (a->expr->expr_type == EXPR_VARIABLE
2640 && (f->sym->attr.asynchronous || f->sym->attr.volatile_)
2641 && gfc_is_coindexed (a->expr)
2642 && (a->expr->symtree->n.sym->attr.volatile_
2643 || a->expr->symtree->n.sym->attr.asynchronous))
2644 {
2645 if (where)
2646 gfc_error ("Coindexed ASYNCHRONOUS or VOLATILE actual argument at "
2647 "%L requires that dummy '%s' has neither "
2648 "ASYNCHRONOUS nor VOLATILE", &a->expr->where,
2649 f->sym->name);
2650 return 0;
2651 }
2652
2653 /* Fortran 2008, 12.5.2.4 (no constraint). */
2654 if (a->expr->expr_type == EXPR_VARIABLE
2655 && f->sym->attr.intent != INTENT_IN && !f->sym->attr.value
2656 && gfc_is_coindexed (a->expr)
2657 && gfc_has_ultimate_allocatable (a->expr))
2658 {
2659 if (where)
2660 gfc_error ("Coindexed actual argument at %L with allocatable "
2661 "ultimate component to dummy '%s' requires either VALUE "
2662 "or INTENT(IN)", &a->expr->where, f->sym->name);
2663 return 0;
2664 }
2665
2666 if (f->sym->ts.type == BT_CLASS
2667 && CLASS_DATA (f->sym)->attr.allocatable
2668 && gfc_is_class_array_ref (a->expr, &full_array)
2669 && !full_array)
2670 {
2671 if (where)
2672 gfc_error ("Actual CLASS array argument for '%s' must be a full "
2673 "array at %L", f->sym->name, &a->expr->where);
2674 return 0;
2675 }
2676
2677
2678 if (a->expr->expr_type != EXPR_NULL
2679 && compare_allocatable (f->sym, a->expr) == 0)
2680 {
2681 if (where)
2682 gfc_error ("Actual argument for '%s' must be ALLOCATABLE at %L",
2683 f->sym->name, &a->expr->where);
2684 return 0;
2685 }
2686
2687 /* Check intent = OUT/INOUT for definable actual argument. */
2688 if ((f->sym->attr.intent == INTENT_OUT
2689 || f->sym->attr.intent == INTENT_INOUT))
2690 {
2691 const char* context = (where
2692 ? _("actual argument to INTENT = OUT/INOUT")
2693 : NULL);
2694
2695 if (((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
2696 && CLASS_DATA (f->sym)->attr.class_pointer)
2697 || (f->sym->ts.type != BT_CLASS && f->sym->attr.pointer))
2698 && gfc_check_vardef_context (a->expr, true, false, context)
2699 == FAILURE)
2700 return 0;
2701 if (gfc_check_vardef_context (a->expr, false, false, context)
2702 == FAILURE)
2703 return 0;
2704 }
2705
2706 if ((f->sym->attr.intent == INTENT_OUT
2707 || f->sym->attr.intent == INTENT_INOUT
2708 || f->sym->attr.volatile_
2709 || f->sym->attr.asynchronous)
2710 && gfc_has_vector_subscript (a->expr))
2711 {
2712 if (where)
2713 gfc_error ("Array-section actual argument with vector "
2714 "subscripts at %L is incompatible with INTENT(OUT), "
2715 "INTENT(INOUT), VOLATILE or ASYNCHRONOUS attribute "
2716 "of the dummy argument '%s'",
2717 &a->expr->where, f->sym->name);
2718 return 0;
2719 }
2720
2721 /* C1232 (R1221) For an actual argument which is an array section or
2722 an assumed-shape array, the dummy argument shall be an assumed-
2723 shape array, if the dummy argument has the VOLATILE attribute. */
2724
2725 if (f->sym->attr.volatile_
2726 && a->expr->symtree->n.sym->as
2727 && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SHAPE
2728 && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2729 {
2730 if (where)
2731 gfc_error ("Assumed-shape actual argument at %L is "
2732 "incompatible with the non-assumed-shape "
2733 "dummy argument '%s' due to VOLATILE attribute",
2734 &a->expr->where,f->sym->name);
2735 return 0;
2736 }
2737
2738 if (f->sym->attr.volatile_
2739 && a->expr->ref && a->expr->ref->u.ar.type == AR_SECTION
2740 && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2741 {
2742 if (where)
2743 gfc_error ("Array-section actual argument at %L is "
2744 "incompatible with the non-assumed-shape "
2745 "dummy argument '%s' due to VOLATILE attribute",
2746 &a->expr->where,f->sym->name);
2747 return 0;
2748 }
2749
2750 /* C1233 (R1221) For an actual argument which is a pointer array, the
2751 dummy argument shall be an assumed-shape or pointer array, if the
2752 dummy argument has the VOLATILE attribute. */
2753
2754 if (f->sym->attr.volatile_
2755 && a->expr->symtree->n.sym->attr.pointer
2756 && a->expr->symtree->n.sym->as
2757 && !(f->sym->as
2758 && (f->sym->as->type == AS_ASSUMED_SHAPE
2759 || f->sym->attr.pointer)))
2760 {
2761 if (where)
2762 gfc_error ("Pointer-array actual argument at %L requires "
2763 "an assumed-shape or pointer-array dummy "
2764 "argument '%s' due to VOLATILE attribute",
2765 &a->expr->where,f->sym->name);
2766 return 0;
2767 }
2768
2769 match:
2770 if (a == actual)
2771 na = i;
2772
2773 new_arg[i++] = a;
2774 }
2775
2776 /* Make sure missing actual arguments are optional. */
2777 i = 0;
2778 for (f = formal; f; f = f->next, i++)
2779 {
2780 if (new_arg[i] != NULL)
2781 continue;
2782 if (f->sym == NULL)
2783 {
2784 if (where)
2785 gfc_error ("Missing alternate return spec in subroutine call "
2786 "at %L", where);
2787 return 0;
2788 }
2789 if (!f->sym->attr.optional)
2790 {
2791 if (where)
2792 gfc_error ("Missing actual argument for argument '%s' at %L",
2793 f->sym->name, where);
2794 return 0;
2795 }
2796 }
2797
2798 /* The argument lists are compatible. We now relink a new actual
2799 argument list with null arguments in the right places. The head
2800 of the list remains the head. */
2801 for (i = 0; i < n; i++)
2802 if (new_arg[i] == NULL)
2803 new_arg[i] = gfc_get_actual_arglist ();
2804
2805 if (na != 0)
2806 {
2807 temp = *new_arg[0];
2808 *new_arg[0] = *actual;
2809 *actual = temp;
2810
2811 a = new_arg[0];
2812 new_arg[0] = new_arg[na];
2813 new_arg[na] = a;
2814 }
2815
2816 for (i = 0; i < n - 1; i++)
2817 new_arg[i]->next = new_arg[i + 1];
2818
2819 new_arg[i]->next = NULL;
2820
2821 if (*ap == NULL && n > 0)
2822 *ap = new_arg[0];
2823
2824 /* Note the types of omitted optional arguments. */
2825 for (a = *ap, f = formal; a; a = a->next, f = f->next)
2826 if (a->expr == NULL && a->label == NULL)
2827 a->missing_arg_type = f->sym->ts.type;
2828
2829 return 1;
2830 }
2831
2832
2833 typedef struct
2834 {
2835 gfc_formal_arglist *f;
2836 gfc_actual_arglist *a;
2837 }
2838 argpair;
2839
2840 /* qsort comparison function for argument pairs, with the following
2841 order:
2842 - p->a->expr == NULL
2843 - p->a->expr->expr_type != EXPR_VARIABLE
2844 - growing p->a->expr->symbol. */
2845
2846 static int
2847 pair_cmp (const void *p1, const void *p2)
2848 {
2849 const gfc_actual_arglist *a1, *a2;
2850
2851 /* *p1 and *p2 are elements of the to-be-sorted array. */
2852 a1 = ((const argpair *) p1)->a;
2853 a2 = ((const argpair *) p2)->a;
2854 if (!a1->expr)
2855 {
2856 if (!a2->expr)
2857 return 0;
2858 return -1;
2859 }
2860 if (!a2->expr)
2861 return 1;
2862 if (a1->expr->expr_type != EXPR_VARIABLE)
2863 {
2864 if (a2->expr->expr_type != EXPR_VARIABLE)
2865 return 0;
2866 return -1;
2867 }
2868 if (a2->expr->expr_type != EXPR_VARIABLE)
2869 return 1;
2870 return a1->expr->symtree->n.sym < a2->expr->symtree->n.sym;
2871 }
2872
2873
2874 /* Given two expressions from some actual arguments, test whether they
2875 refer to the same expression. The analysis is conservative.
2876 Returning FAILURE will produce no warning. */
2877
2878 static gfc_try
2879 compare_actual_expr (gfc_expr *e1, gfc_expr *e2)
2880 {
2881 const gfc_ref *r1, *r2;
2882
2883 if (!e1 || !e2
2884 || e1->expr_type != EXPR_VARIABLE
2885 || e2->expr_type != EXPR_VARIABLE
2886 || e1->symtree->n.sym != e2->symtree->n.sym)
2887 return FAILURE;
2888
2889 /* TODO: improve comparison, see expr.c:show_ref(). */
2890 for (r1 = e1->ref, r2 = e2->ref; r1 && r2; r1 = r1->next, r2 = r2->next)
2891 {
2892 if (r1->type != r2->type)
2893 return FAILURE;
2894 switch (r1->type)
2895 {
2896 case REF_ARRAY:
2897 if (r1->u.ar.type != r2->u.ar.type)
2898 return FAILURE;
2899 /* TODO: At the moment, consider only full arrays;
2900 we could do better. */
2901 if (r1->u.ar.type != AR_FULL || r2->u.ar.type != AR_FULL)
2902 return FAILURE;
2903 break;
2904
2905 case REF_COMPONENT:
2906 if (r1->u.c.component != r2->u.c.component)
2907 return FAILURE;
2908 break;
2909
2910 case REF_SUBSTRING:
2911 return FAILURE;
2912
2913 default:
2914 gfc_internal_error ("compare_actual_expr(): Bad component code");
2915 }
2916 }
2917 if (!r1 && !r2)
2918 return SUCCESS;
2919 return FAILURE;
2920 }
2921
2922
2923 /* Given formal and actual argument lists that correspond to one
2924 another, check that identical actual arguments aren't not
2925 associated with some incompatible INTENTs. */
2926
2927 static gfc_try
2928 check_some_aliasing (gfc_formal_arglist *f, gfc_actual_arglist *a)
2929 {
2930 sym_intent f1_intent, f2_intent;
2931 gfc_formal_arglist *f1;
2932 gfc_actual_arglist *a1;
2933 size_t n, i, j;
2934 argpair *p;
2935 gfc_try t = SUCCESS;
2936
2937 n = 0;
2938 for (f1 = f, a1 = a;; f1 = f1->next, a1 = a1->next)
2939 {
2940 if (f1 == NULL && a1 == NULL)
2941 break;
2942 if (f1 == NULL || a1 == NULL)
2943 gfc_internal_error ("check_some_aliasing(): List mismatch");
2944 n++;
2945 }
2946 if (n == 0)
2947 return t;
2948 p = XALLOCAVEC (argpair, n);
2949
2950 for (i = 0, f1 = f, a1 = a; i < n; i++, f1 = f1->next, a1 = a1->next)
2951 {
2952 p[i].f = f1;
2953 p[i].a = a1;
2954 }
2955
2956 qsort (p, n, sizeof (argpair), pair_cmp);
2957
2958 for (i = 0; i < n; i++)
2959 {
2960 if (!p[i].a->expr
2961 || p[i].a->expr->expr_type != EXPR_VARIABLE
2962 || p[i].a->expr->ts.type == BT_PROCEDURE)
2963 continue;
2964 f1_intent = p[i].f->sym->attr.intent;
2965 for (j = i + 1; j < n; j++)
2966 {
2967 /* Expected order after the sort. */
2968 if (!p[j].a->expr || p[j].a->expr->expr_type != EXPR_VARIABLE)
2969 gfc_internal_error ("check_some_aliasing(): corrupted data");
2970
2971 /* Are the expression the same? */
2972 if (compare_actual_expr (p[i].a->expr, p[j].a->expr) == FAILURE)
2973 break;
2974 f2_intent = p[j].f->sym->attr.intent;
2975 if ((f1_intent == INTENT_IN && f2_intent == INTENT_OUT)
2976 || (f1_intent == INTENT_OUT && f2_intent == INTENT_IN))
2977 {
2978 gfc_warning ("Same actual argument associated with INTENT(%s) "
2979 "argument '%s' and INTENT(%s) argument '%s' at %L",
2980 gfc_intent_string (f1_intent), p[i].f->sym->name,
2981 gfc_intent_string (f2_intent), p[j].f->sym->name,
2982 &p[i].a->expr->where);
2983 t = FAILURE;
2984 }
2985 }
2986 }
2987
2988 return t;
2989 }
2990
2991
2992 /* Given formal and actual argument lists that correspond to one
2993 another, check that they are compatible in the sense that intents
2994 are not mismatched. */
2995
2996 static gfc_try
2997 check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
2998 {
2999 sym_intent f_intent;
3000
3001 for (;; f = f->next, a = a->next)
3002 {
3003 if (f == NULL && a == NULL)
3004 break;
3005 if (f == NULL || a == NULL)
3006 gfc_internal_error ("check_intents(): List mismatch");
3007
3008 if (a->expr == NULL || a->expr->expr_type != EXPR_VARIABLE)
3009 continue;
3010
3011 f_intent = f->sym->attr.intent;
3012
3013 if (gfc_pure (NULL) && gfc_impure_variable (a->expr->symtree->n.sym))
3014 {
3015 if ((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
3016 && CLASS_DATA (f->sym)->attr.class_pointer)
3017 || (f->sym->ts.type != BT_CLASS && f->sym->attr.pointer))
3018 {
3019 gfc_error ("Procedure argument at %L is local to a PURE "
3020 "procedure and has the POINTER attribute",
3021 &a->expr->where);
3022 return FAILURE;
3023 }
3024 }
3025
3026 /* Fortran 2008, C1283. */
3027 if (gfc_pure (NULL) && gfc_is_coindexed (a->expr))
3028 {
3029 if (f_intent == INTENT_INOUT || f_intent == INTENT_OUT)
3030 {
3031 gfc_error ("Coindexed actual argument at %L in PURE procedure "
3032 "is passed to an INTENT(%s) argument",
3033 &a->expr->where, gfc_intent_string (f_intent));
3034 return FAILURE;
3035 }
3036
3037 if ((f->sym->ts.type == BT_CLASS && f->sym->attr.class_ok
3038 && CLASS_DATA (f->sym)->attr.class_pointer)
3039 || (f->sym->ts.type != BT_CLASS && f->sym->attr.pointer))
3040 {
3041 gfc_error ("Coindexed actual argument at %L in PURE procedure "
3042 "is passed to a POINTER dummy argument",
3043 &a->expr->where);
3044 return FAILURE;
3045 }
3046 }
3047
3048 /* F2008, Section 12.5.2.4. */
3049 if (a->expr->ts.type == BT_CLASS && f->sym->ts.type == BT_CLASS
3050 && gfc_is_coindexed (a->expr))
3051 {
3052 gfc_error ("Coindexed polymorphic actual argument at %L is passed "
3053 "polymorphic dummy argument '%s'",
3054 &a->expr->where, f->sym->name);
3055 return FAILURE;
3056 }
3057 }
3058
3059 return SUCCESS;
3060 }
3061
3062
3063 /* Check how a procedure is used against its interface. If all goes
3064 well, the actual argument list will also end up being properly
3065 sorted. */
3066
3067 gfc_try
3068 gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
3069 {
3070 /* Warn about calls with an implicit interface. Special case
3071 for calling a ISO_C_BINDING becase c_loc and c_funloc
3072 are pseudo-unknown. Additionally, warn about procedures not
3073 explicitly declared at all if requested. */
3074 if (sym->attr.if_source == IFSRC_UNKNOWN && ! sym->attr.is_iso_c)
3075 {
3076 if (gfc_option.warn_implicit_interface)
3077 gfc_warning ("Procedure '%s' called with an implicit interface at %L",
3078 sym->name, where);
3079 else if (gfc_option.warn_implicit_procedure
3080 && sym->attr.proc == PROC_UNKNOWN)
3081 gfc_warning ("Procedure '%s' called at %L is not explicitly declared",
3082 sym->name, where);
3083 }
3084
3085 if (sym->attr.if_source == IFSRC_UNKNOWN)
3086 {
3087 gfc_actual_arglist *a;
3088
3089 if (sym->attr.pointer)
3090 {
3091 gfc_error("The pointer object '%s' at %L must have an explicit "
3092 "function interface or be declared as array",
3093 sym->name, where);
3094 return FAILURE;
3095 }
3096
3097 if (sym->attr.allocatable && !sym->attr.external)
3098 {
3099 gfc_error("The allocatable object '%s' at %L must have an explicit "
3100 "function interface or be declared as array",
3101 sym->name, where);
3102 return FAILURE;
3103 }
3104
3105 if (sym->attr.allocatable)
3106 {
3107 gfc_error("Allocatable function '%s' at %L must have an explicit "
3108 "function interface", sym->name, where);
3109 return FAILURE;
3110 }
3111
3112 for (a = *ap; a; a = a->next)
3113 {
3114 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
3115 if (a->name != NULL && a->name[0] != '%')
3116 {
3117 gfc_error("Keyword argument requires explicit interface "
3118 "for procedure '%s' at %L", sym->name, &a->expr->where);
3119 break;
3120 }
3121
3122 /* TS 29113, 6.2. */
3123 if (a->expr && a->expr->ts.type == BT_ASSUMED
3124 && sym->intmod_sym_id != ISOCBINDING_LOC)
3125 {
3126 gfc_error ("Assumed-type argument %s at %L requires an explicit "
3127 "interface", a->expr->symtree->n.sym->name,
3128 &a->expr->where);
3129 break;
3130 }
3131
3132 /* F2008, C1303 and C1304. */
3133 if (a->expr
3134 && (a->expr->ts.type == BT_DERIVED || a->expr->ts.type == BT_CLASS)
3135 && ((a->expr->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
3136 && a->expr->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
3137 || gfc_expr_attr (a->expr).lock_comp))
3138 {
3139 gfc_error("Actual argument of LOCK_TYPE or with LOCK_TYPE "
3140 "component at %L requires an explicit interface for "
3141 "procedure '%s'", &a->expr->where, sym->name);
3142 break;
3143 }
3144
3145 if (a->expr && a->expr->expr_type == EXPR_NULL
3146 && a->expr->ts.type == BT_UNKNOWN)
3147 {
3148 gfc_error ("MOLD argument to NULL required at %L", &a->expr->where);
3149 return FAILURE;
3150 }
3151
3152 /* TS 29113, C407b. */
3153 if (a->expr && a->expr->expr_type == EXPR_VARIABLE
3154 && symbol_rank (a->expr->symtree->n.sym) == -1)
3155 {
3156 gfc_error ("Assumed-rank argument requires an explicit interface "
3157 "at %L", &a->expr->where);
3158 return FAILURE;
3159 }
3160 }
3161
3162 return SUCCESS;
3163 }
3164
3165 if (!compare_actual_formal (ap, sym->formal, 0, sym->attr.elemental, where))
3166 return FAILURE;
3167
3168 if (check_intents (sym->formal, *ap) == FAILURE)
3169 return FAILURE;
3170
3171 if (gfc_option.warn_aliasing)
3172 check_some_aliasing (sym->formal, *ap);
3173
3174 return SUCCESS;
3175 }
3176
3177
3178 /* Check how a procedure pointer component is used against its interface.
3179 If all goes well, the actual argument list will also end up being properly
3180 sorted. Completely analogous to gfc_procedure_use. */
3181
3182 void
3183 gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where)
3184 {
3185
3186 /* Warn about calls with an implicit interface. Special case
3187 for calling a ISO_C_BINDING becase c_loc and c_funloc
3188 are pseudo-unknown. */
3189 if (gfc_option.warn_implicit_interface
3190 && comp->attr.if_source == IFSRC_UNKNOWN
3191 && !comp->attr.is_iso_c)
3192 gfc_warning ("Procedure pointer component '%s' called with an implicit "
3193 "interface at %L", comp->name, where);
3194
3195 if (comp->attr.if_source == IFSRC_UNKNOWN)
3196 {
3197 gfc_actual_arglist *a;
3198 for (a = *ap; a; a = a->next)
3199 {
3200 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
3201 if (a->name != NULL && a->name[0] != '%')
3202 {
3203 gfc_error("Keyword argument requires explicit interface "
3204 "for procedure pointer component '%s' at %L",
3205 comp->name, &a->expr->where);
3206 break;
3207 }
3208 }
3209
3210 return;
3211 }
3212
3213 if (!compare_actual_formal (ap, comp->formal, 0, comp->attr.elemental, where))
3214 return;
3215
3216 check_intents (comp->formal, *ap);
3217 if (gfc_option.warn_aliasing)
3218 check_some_aliasing (comp->formal, *ap);
3219 }
3220
3221
3222 /* Try if an actual argument list matches the formal list of a symbol,
3223 respecting the symbol's attributes like ELEMENTAL. This is used for
3224 GENERIC resolution. */
3225
3226 bool
3227 gfc_arglist_matches_symbol (gfc_actual_arglist** args, gfc_symbol* sym)
3228 {
3229 bool r;
3230
3231 gcc_assert (sym->attr.flavor == FL_PROCEDURE);
3232
3233 r = !sym->attr.elemental;
3234 if (compare_actual_formal (args, sym->formal, r, !r, NULL))
3235 {
3236 check_intents (sym->formal, *args);
3237 if (gfc_option.warn_aliasing)
3238 check_some_aliasing (sym->formal, *args);
3239 return true;
3240 }
3241
3242 return false;
3243 }
3244
3245
3246 /* Given an interface pointer and an actual argument list, search for
3247 a formal argument list that matches the actual. If found, returns
3248 a pointer to the symbol of the correct interface. Returns NULL if
3249 not found. */
3250
3251 gfc_symbol *
3252 gfc_search_interface (gfc_interface *intr, int sub_flag,
3253 gfc_actual_arglist **ap)
3254 {
3255 gfc_symbol *elem_sym = NULL;
3256 gfc_symbol *null_sym = NULL;
3257 locus null_expr_loc;
3258 gfc_actual_arglist *a;
3259 bool has_null_arg = false;
3260
3261 for (a = *ap; a; a = a->next)
3262 if (a->expr && a->expr->expr_type == EXPR_NULL
3263 && a->expr->ts.type == BT_UNKNOWN)
3264 {
3265 has_null_arg = true;
3266 null_expr_loc = a->expr->where;
3267 break;
3268 }
3269
3270 for (; intr; intr = intr->next)
3271 {
3272 if (intr->sym->attr.flavor == FL_DERIVED)
3273 continue;
3274 if (sub_flag && intr->sym->attr.function)
3275 continue;
3276 if (!sub_flag && intr->sym->attr.subroutine)
3277 continue;
3278
3279 if (gfc_arglist_matches_symbol (ap, intr->sym))
3280 {
3281 if (has_null_arg && null_sym)
3282 {
3283 gfc_error ("MOLD= required in NULL() argument at %L: Ambiguity "
3284 "between specific functions %s and %s",
3285 &null_expr_loc, null_sym->name, intr->sym->name);
3286 return NULL;
3287 }
3288 else if (has_null_arg)
3289 {
3290 null_sym = intr->sym;
3291 continue;
3292 }
3293
3294 /* Satisfy 12.4.4.1 such that an elemental match has lower
3295 weight than a non-elemental match. */
3296 if (intr->sym->attr.elemental)
3297 {
3298 elem_sym = intr->sym;
3299 continue;
3300 }
3301 return intr->sym;
3302 }
3303 }
3304
3305 if (null_sym)
3306 return null_sym;
3307
3308 return elem_sym ? elem_sym : NULL;
3309 }
3310
3311
3312 /* Do a brute force recursive search for a symbol. */
3313
3314 static gfc_symtree *
3315 find_symtree0 (gfc_symtree *root, gfc_symbol *sym)
3316 {
3317 gfc_symtree * st;
3318
3319 if (root->n.sym == sym)
3320 return root;
3321
3322 st = NULL;
3323 if (root->left)
3324 st = find_symtree0 (root->left, sym);
3325 if (root->right && ! st)
3326 st = find_symtree0 (root->right, sym);
3327 return st;
3328 }
3329
3330
3331 /* Find a symtree for a symbol. */
3332
3333 gfc_symtree *
3334 gfc_find_sym_in_symtree (gfc_symbol *sym)
3335 {
3336 gfc_symtree *st;
3337 gfc_namespace *ns;
3338
3339 /* First try to find it by name. */
3340 gfc_find_sym_tree (sym->name, gfc_current_ns, 1, &st);
3341 if (st && st->n.sym == sym)
3342 return st;
3343
3344 /* If it's been renamed, resort to a brute-force search. */
3345 /* TODO: avoid having to do this search. If the symbol doesn't exist
3346 in the symtree for the current namespace, it should probably be added. */
3347 for (ns = gfc_current_ns; ns; ns = ns->parent)
3348 {
3349 st = find_symtree0 (ns->sym_root, sym);
3350 if (st)
3351 return st;
3352 }
3353 gfc_internal_error ("Unable to find symbol %s", sym->name);
3354 /* Not reached. */
3355 }
3356
3357
3358 /* See if the arglist to an operator-call contains a derived-type argument
3359 with a matching type-bound operator. If so, return the matching specific
3360 procedure defined as operator-target as well as the base-object to use
3361 (which is the found derived-type argument with operator). The generic
3362 name, if any, is transmitted to the final expression via 'gname'. */
3363
3364 static gfc_typebound_proc*
3365 matching_typebound_op (gfc_expr** tb_base,
3366 gfc_actual_arglist* args,
3367 gfc_intrinsic_op op, const char* uop,
3368 const char ** gname)
3369 {
3370 gfc_actual_arglist* base;
3371
3372 for (base = args; base; base = base->next)
3373 if (base->expr->ts.type == BT_DERIVED || base->expr->ts.type == BT_CLASS)
3374 {
3375 gfc_typebound_proc* tb;
3376 gfc_symbol* derived;
3377 gfc_try result;
3378
3379 while (base->expr->expr_type == EXPR_OP
3380 && base->expr->value.op.op == INTRINSIC_PARENTHESES)
3381 base->expr = base->expr->value.op.op1;
3382
3383 if (base->expr->ts.type == BT_CLASS)
3384 {
3385 if (CLASS_DATA (base->expr) == NULL
3386 || !gfc_expr_attr (base->expr).class_ok)
3387 continue;
3388 derived = CLASS_DATA (base->expr)->ts.u.derived;
3389 }
3390 else
3391 derived = base->expr->ts.u.derived;
3392
3393 if (op == INTRINSIC_USER)
3394 {
3395 gfc_symtree* tb_uop;
3396
3397 gcc_assert (uop);
3398 tb_uop = gfc_find_typebound_user_op (derived, &result, uop,
3399 false, NULL);
3400
3401 if (tb_uop)
3402 tb = tb_uop->n.tb;
3403 else
3404 tb = NULL;
3405 }
3406 else
3407 tb = gfc_find_typebound_intrinsic_op (derived, &result, op,
3408 false, NULL);
3409
3410 /* This means we hit a PRIVATE operator which is use-associated and
3411 should thus not be seen. */
3412 if (result == FAILURE)
3413 tb = NULL;
3414
3415 /* Look through the super-type hierarchy for a matching specific
3416 binding. */
3417 for (; tb; tb = tb->overridden)
3418 {
3419 gfc_tbp_generic* g;
3420
3421 gcc_assert (tb->is_generic);
3422 for (g = tb->u.generic; g; g = g->next)
3423 {
3424 gfc_symbol* target;
3425 gfc_actual_arglist* argcopy;
3426 bool matches;
3427
3428 gcc_assert (g->specific);
3429 if (g->specific->error)
3430 continue;
3431
3432 target = g->specific->u.specific->n.sym;
3433
3434 /* Check if this arglist matches the formal. */
3435 argcopy = gfc_copy_actual_arglist (args);
3436 matches = gfc_arglist_matches_symbol (&argcopy, target);
3437 gfc_free_actual_arglist (argcopy);
3438
3439 /* Return if we found a match. */
3440 if (matches)
3441 {
3442 *tb_base = base->expr;
3443 *gname = g->specific_st->name;
3444 return g->specific;
3445 }
3446 }
3447 }
3448 }
3449
3450 return NULL;
3451 }
3452
3453
3454 /* For the 'actual arglist' of an operator call and a specific typebound
3455 procedure that has been found the target of a type-bound operator, build the
3456 appropriate EXPR_COMPCALL and resolve it. We take this indirection over
3457 type-bound procedures rather than resolving type-bound operators 'directly'
3458 so that we can reuse the existing logic. */
3459
3460 static void
3461 build_compcall_for_operator (gfc_expr* e, gfc_actual_arglist* actual,
3462 gfc_expr* base, gfc_typebound_proc* target,
3463 const char *gname)
3464 {
3465 e->expr_type = EXPR_COMPCALL;
3466 e->value.compcall.tbp = target;
3467 e->value.compcall.name = gname ? gname : "$op";
3468 e->value.compcall.actual = actual;
3469 e->value.compcall.base_object = base;
3470 e->value.compcall.ignore_pass = 1;
3471 e->value.compcall.assign = 0;
3472 if (e->ts.type == BT_UNKNOWN
3473 && target->function)
3474 {
3475 if (target->is_generic)
3476 e->ts = target->u.generic->specific->u.specific->n.sym->ts;
3477 else
3478 e->ts = target->u.specific->n.sym->ts;
3479 }
3480 }
3481
3482
3483 /* This subroutine is called when an expression is being resolved.
3484 The expression node in question is either a user defined operator
3485 or an intrinsic operator with arguments that aren't compatible
3486 with the operator. This subroutine builds an actual argument list
3487 corresponding to the operands, then searches for a compatible
3488 interface. If one is found, the expression node is replaced with
3489 the appropriate function call. We use the 'match' enum to specify
3490 whether a replacement has been made or not, or if an error occurred. */
3491
3492 match
3493 gfc_extend_expr (gfc_expr *e)
3494 {
3495 gfc_actual_arglist *actual;
3496 gfc_symbol *sym;
3497 gfc_namespace *ns;
3498 gfc_user_op *uop;
3499 gfc_intrinsic_op i;
3500 const char *gname;
3501
3502 sym = NULL;
3503
3504 actual = gfc_get_actual_arglist ();
3505 actual->expr = e->value.op.op1;
3506
3507 gname = NULL;
3508
3509 if (e->value.op.op2 != NULL)
3510 {
3511 actual->next = gfc_get_actual_arglist ();
3512 actual->next->expr = e->value.op.op2;
3513 }
3514
3515 i = fold_unary_intrinsic (e->value.op.op);
3516
3517 if (i == INTRINSIC_USER)
3518 {
3519 for (ns = gfc_current_ns; ns; ns = ns->parent)
3520 {
3521 uop = gfc_find_uop (e->value.op.uop->name, ns);
3522 if (uop == NULL)
3523 continue;
3524
3525 sym = gfc_search_interface (uop->op, 0, &actual);
3526 if (sym != NULL)
3527 break;
3528 }
3529 }
3530 else
3531 {
3532 for (ns = gfc_current_ns; ns; ns = ns->parent)
3533 {
3534 /* Due to the distinction between '==' and '.eq.' and friends, one has
3535 to check if either is defined. */
3536 switch (i)
3537 {
3538 #define CHECK_OS_COMPARISON(comp) \
3539 case INTRINSIC_##comp: \
3540 case INTRINSIC_##comp##_OS: \
3541 sym = gfc_search_interface (ns->op[INTRINSIC_##comp], 0, &actual); \
3542 if (!sym) \
3543 sym = gfc_search_interface (ns->op[INTRINSIC_##comp##_OS], 0, &actual); \
3544 break;
3545 CHECK_OS_COMPARISON(EQ)
3546 CHECK_OS_COMPARISON(NE)
3547 CHECK_OS_COMPARISON(GT)
3548 CHECK_OS_COMPARISON(GE)
3549 CHECK_OS_COMPARISON(LT)
3550 CHECK_OS_COMPARISON(LE)
3551 #undef CHECK_OS_COMPARISON
3552
3553 default:
3554 sym = gfc_search_interface (ns->op[i], 0, &actual);
3555 }
3556
3557 if (sym != NULL)
3558 break;
3559 }
3560 }
3561
3562 /* TODO: Do an ambiguity-check and error if multiple matching interfaces are
3563 found rather than just taking the first one and not checking further. */
3564
3565 if (sym == NULL)
3566 {
3567 gfc_typebound_proc* tbo;
3568 gfc_expr* tb_base;
3569
3570 /* See if we find a matching type-bound operator. */
3571 if (i == INTRINSIC_USER)
3572 tbo = matching_typebound_op (&tb_base, actual,
3573 i, e->value.op.uop->name, &gname);
3574 else
3575 switch (i)
3576 {
3577 #define CHECK_OS_COMPARISON(comp) \
3578 case INTRINSIC_##comp: \
3579 case INTRINSIC_##comp##_OS: \
3580 tbo = matching_typebound_op (&tb_base, actual, \
3581 INTRINSIC_##comp, NULL, &gname); \
3582 if (!tbo) \
3583 tbo = matching_typebound_op (&tb_base, actual, \
3584 INTRINSIC_##comp##_OS, NULL, &gname); \
3585 break;
3586 CHECK_OS_COMPARISON(EQ)
3587 CHECK_OS_COMPARISON(NE)
3588 CHECK_OS_COMPARISON(GT)
3589 CHECK_OS_COMPARISON(GE)
3590 CHECK_OS_COMPARISON(LT)
3591 CHECK_OS_COMPARISON(LE)
3592 #undef CHECK_OS_COMPARISON
3593
3594 default:
3595 tbo = matching_typebound_op (&tb_base, actual, i, NULL, &gname);
3596 break;
3597 }
3598
3599 /* If there is a matching typebound-operator, replace the expression with
3600 a call to it and succeed. */
3601 if (tbo)
3602 {
3603 gfc_try result;
3604
3605 gcc_assert (tb_base);
3606 build_compcall_for_operator (e, actual, tb_base, tbo, gname);
3607
3608 result = gfc_resolve_expr (e);
3609 if (result == FAILURE)
3610 return MATCH_ERROR;
3611
3612 return MATCH_YES;
3613 }
3614
3615 /* Don't use gfc_free_actual_arglist(). */
3616 free (actual->next);
3617 free (actual);
3618
3619 return MATCH_NO;
3620 }
3621
3622 /* Change the expression node to a function call. */
3623 e->expr_type = EXPR_FUNCTION;
3624 e->symtree = gfc_find_sym_in_symtree (sym);
3625 e->value.function.actual = actual;
3626 e->value.function.esym = NULL;
3627 e->value.function.isym = NULL;
3628 e->value.function.name = NULL;
3629 e->user_operator = 1;
3630
3631 if (gfc_resolve_expr (e) == FAILURE)
3632 return MATCH_ERROR;
3633
3634 return MATCH_YES;
3635 }
3636
3637
3638 /* Tries to replace an assignment code node with a subroutine call to
3639 the subroutine associated with the assignment operator. Return
3640 SUCCESS if the node was replaced. On FAILURE, no error is
3641 generated. */
3642
3643 gfc_try
3644 gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
3645 {
3646 gfc_actual_arglist *actual;
3647 gfc_expr *lhs, *rhs;
3648 gfc_symbol *sym;
3649 const char *gname;
3650
3651 gname = NULL;
3652
3653 lhs = c->expr1;
3654 rhs = c->expr2;
3655
3656 /* Don't allow an intrinsic assignment to be replaced. */
3657 if (lhs->ts.type != BT_DERIVED && lhs->ts.type != BT_CLASS
3658 && (rhs->rank == 0 || rhs->rank == lhs->rank)
3659 && (lhs->ts.type == rhs->ts.type
3660 || (gfc_numeric_ts (&lhs->ts) && gfc_numeric_ts (&rhs->ts))))
3661 return FAILURE;
3662
3663 actual = gfc_get_actual_arglist ();
3664 actual->expr = lhs;
3665
3666 actual->next = gfc_get_actual_arglist ();
3667 actual->next->expr = rhs;
3668
3669 sym = NULL;
3670
3671 for (; ns; ns = ns->parent)
3672 {
3673 sym = gfc_search_interface (ns->op[INTRINSIC_ASSIGN], 1, &actual);
3674 if (sym != NULL)
3675 break;
3676 }
3677
3678 /* TODO: Ambiguity-check, see above for gfc_extend_expr. */
3679
3680 if (sym == NULL)
3681 {
3682 gfc_typebound_proc* tbo;
3683 gfc_expr* tb_base;
3684
3685 /* See if we find a matching type-bound assignment. */
3686 tbo = matching_typebound_op (&tb_base, actual,
3687 INTRINSIC_ASSIGN, NULL, &gname);
3688
3689 /* If there is one, replace the expression with a call to it and
3690 succeed. */
3691 if (tbo)
3692 {
3693 gcc_assert (tb_base);
3694 c->expr1 = gfc_get_expr ();
3695 build_compcall_for_operator (c->expr1, actual, tb_base, tbo, gname);
3696 c->expr1->value.compcall.assign = 1;
3697 c->expr1->where = c->loc;
3698 c->expr2 = NULL;
3699 c->op = EXEC_COMPCALL;
3700
3701 /* c is resolved from the caller, so no need to do it here. */
3702
3703 return SUCCESS;
3704 }
3705
3706 free (actual->next);
3707 free (actual);
3708 return FAILURE;
3709 }
3710
3711 /* Replace the assignment with the call. */
3712 c->op = EXEC_ASSIGN_CALL;
3713 c->symtree = gfc_find_sym_in_symtree (sym);
3714 c->expr1 = NULL;
3715 c->expr2 = NULL;
3716 c->ext.actual = actual;
3717
3718 return SUCCESS;
3719 }
3720
3721
3722 /* Make sure that the interface just parsed is not already present in
3723 the given interface list. Ambiguity isn't checked yet since module
3724 procedures can be present without interfaces. */
3725
3726 gfc_try
3727 gfc_check_new_interface (gfc_interface *base, gfc_symbol *new_sym, locus loc)
3728 {
3729 gfc_interface *ip;
3730
3731 for (ip = base; ip; ip = ip->next)
3732 {
3733 if (ip->sym == new_sym)
3734 {
3735 gfc_error ("Entity '%s' at %L is already present in the interface",
3736 new_sym->name, &loc);
3737 return FAILURE;
3738 }
3739 }
3740
3741 return SUCCESS;
3742 }
3743
3744
3745 /* Add a symbol to the current interface. */
3746
3747 gfc_try
3748 gfc_add_interface (gfc_symbol *new_sym)
3749 {
3750 gfc_interface **head, *intr;
3751 gfc_namespace *ns;
3752 gfc_symbol *sym;
3753
3754 switch (current_interface.type)
3755 {
3756 case INTERFACE_NAMELESS:
3757 case INTERFACE_ABSTRACT:
3758 return SUCCESS;
3759
3760 case INTERFACE_INTRINSIC_OP:
3761 for (ns = current_interface.ns; ns; ns = ns->parent)
3762 switch (current_interface.op)
3763 {
3764 case INTRINSIC_EQ:
3765 case INTRINSIC_EQ_OS:
3766 if (gfc_check_new_interface (ns->op[INTRINSIC_EQ], new_sym,
3767 gfc_current_locus) == FAILURE
3768 || gfc_check_new_interface (ns->op[INTRINSIC_EQ_OS], new_sym,
3769 gfc_current_locus) == FAILURE)
3770 return FAILURE;
3771 break;
3772
3773 case INTRINSIC_NE:
3774 case INTRINSIC_NE_OS:
3775 if (gfc_check_new_interface (ns->op[INTRINSIC_NE], new_sym,
3776 gfc_current_locus) == FAILURE
3777 || gfc_check_new_interface (ns->op[INTRINSIC_NE_OS], new_sym,
3778 gfc_current_locus) == FAILURE)
3779 return FAILURE;
3780 break;
3781
3782 case INTRINSIC_GT:
3783 case INTRINSIC_GT_OS:
3784 if (gfc_check_new_interface (ns->op[INTRINSIC_GT], new_sym,
3785 gfc_current_locus) == FAILURE
3786 || gfc_check_new_interface (ns->op[INTRINSIC_GT_OS], new_sym,
3787 gfc_current_locus) == FAILURE)
3788 return FAILURE;
3789 break;
3790
3791 case INTRINSIC_GE:
3792 case INTRINSIC_GE_OS:
3793 if (gfc_check_new_interface (ns->op[INTRINSIC_GE], new_sym,
3794 gfc_current_locus) == FAILURE
3795 || gfc_check_new_interface (ns->op[INTRINSIC_GE_OS], new_sym,
3796 gfc_current_locus) == FAILURE)
3797 return FAILURE;
3798 break;
3799
3800 case INTRINSIC_LT:
3801 case INTRINSIC_LT_OS:
3802 if (gfc_check_new_interface (ns->op[INTRINSIC_LT], new_sym,
3803 gfc_current_locus) == FAILURE
3804 || gfc_check_new_interface (ns->op[INTRINSIC_LT_OS], new_sym,
3805 gfc_current_locus) == FAILURE)
3806 return FAILURE;
3807 break;
3808
3809 case INTRINSIC_LE:
3810 case INTRINSIC_LE_OS:
3811 if (gfc_check_new_interface (ns->op[INTRINSIC_LE], new_sym,
3812 gfc_current_locus) == FAILURE
3813 || gfc_check_new_interface (ns->op[INTRINSIC_LE_OS], new_sym,
3814 gfc_current_locus) == FAILURE)
3815 return FAILURE;
3816 break;
3817
3818 default:
3819 if (gfc_check_new_interface (ns->op[current_interface.op], new_sym,
3820 gfc_current_locus) == FAILURE)
3821 return FAILURE;
3822 }
3823
3824 head = &current_interface.ns->op[current_interface.op];
3825 break;
3826
3827 case INTERFACE_GENERIC:
3828 for (ns = current_interface.ns; ns; ns = ns->parent)
3829 {
3830 gfc_find_symbol (current_interface.sym->name, ns, 0, &sym);
3831 if (sym == NULL)
3832 continue;
3833
3834 if (gfc_check_new_interface (sym->generic, new_sym, gfc_current_locus)
3835 == FAILURE)
3836 return FAILURE;
3837 }
3838
3839 head = &current_interface.sym->generic;
3840 break;
3841
3842 case INTERFACE_USER_OP:
3843 if (gfc_check_new_interface (current_interface.uop->op, new_sym,
3844 gfc_current_locus) == FAILURE)
3845 return FAILURE;
3846
3847 head = &current_interface.uop->op;
3848 break;
3849
3850 default:
3851 gfc_internal_error ("gfc_add_interface(): Bad interface type");
3852 }
3853
3854 intr = gfc_get_interface ();
3855 intr->sym = new_sym;
3856 intr->where = gfc_current_locus;
3857
3858 intr->next = *head;
3859 *head = intr;
3860
3861 return SUCCESS;
3862 }
3863
3864
3865 gfc_interface *
3866 gfc_current_interface_head (void)
3867 {
3868 switch (current_interface.type)
3869 {
3870 case INTERFACE_INTRINSIC_OP:
3871 return current_interface.ns->op[current_interface.op];
3872 break;
3873
3874 case INTERFACE_GENERIC:
3875 return current_interface.sym->generic;
3876 break;
3877
3878 case INTERFACE_USER_OP:
3879 return current_interface.uop->op;
3880 break;
3881
3882 default:
3883 gcc_unreachable ();
3884 }
3885 }
3886
3887
3888 void
3889 gfc_set_current_interface_head (gfc_interface *i)
3890 {
3891 switch (current_interface.type)
3892 {
3893 case INTERFACE_INTRINSIC_OP:
3894 current_interface.ns->op[current_interface.op] = i;
3895 break;
3896
3897 case INTERFACE_GENERIC:
3898 current_interface.sym->generic = i;
3899 break;
3900
3901 case INTERFACE_USER_OP:
3902 current_interface.uop->op = i;
3903 break;
3904
3905 default:
3906 gcc_unreachable ();
3907 }
3908 }
3909
3910
3911 /* Gets rid of a formal argument list. We do not free symbols.
3912 Symbols are freed when a namespace is freed. */
3913
3914 void
3915 gfc_free_formal_arglist (gfc_formal_arglist *p)
3916 {
3917 gfc_formal_arglist *q;
3918
3919 for (; p; p = q)
3920 {
3921 q = p->next;
3922 free (p);
3923 }
3924 }
3925
3926
3927 /* Check that it is ok for the type-bound procedure 'proc' to override the
3928 procedure 'old', cf. F08:4.5.7.3. */
3929
3930 gfc_try
3931 gfc_check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
3932 {
3933 locus where;
3934 gfc_symbol *proc_target, *old_target;
3935 unsigned proc_pass_arg, old_pass_arg, argpos;
3936 gfc_formal_arglist *proc_formal, *old_formal;
3937 bool check_type;
3938 char err[200];
3939
3940 /* This procedure should only be called for non-GENERIC proc. */
3941 gcc_assert (!proc->n.tb->is_generic);
3942
3943 /* If the overwritten procedure is GENERIC, this is an error. */
3944 if (old->n.tb->is_generic)
3945 {
3946 gfc_error ("Can't overwrite GENERIC '%s' at %L",
3947 old->name, &proc->n.tb->where);
3948 return FAILURE;
3949 }
3950
3951 where = proc->n.tb->where;
3952 proc_target = proc->n.tb->u.specific->n.sym;
3953 old_target = old->n.tb->u.specific->n.sym;
3954
3955 /* Check that overridden binding is not NON_OVERRIDABLE. */
3956 if (old->n.tb->non_overridable)
3957 {
3958 gfc_error ("'%s' at %L overrides a procedure binding declared"
3959 " NON_OVERRIDABLE", proc->name, &where);
3960 return FAILURE;
3961 }
3962
3963 /* It's an error to override a non-DEFERRED procedure with a DEFERRED one. */
3964 if (!old->n.tb->deferred && proc->n.tb->deferred)
3965 {
3966 gfc_error ("'%s' at %L must not be DEFERRED as it overrides a"
3967 " non-DEFERRED binding", proc->name, &where);
3968 return FAILURE;
3969 }
3970
3971 /* If the overridden binding is PURE, the overriding must be, too. */
3972 if (old_target->attr.pure && !proc_target->attr.pure)
3973 {
3974 gfc_error ("'%s' at %L overrides a PURE procedure and must also be PURE",
3975 proc->name, &where);
3976 return FAILURE;
3977 }
3978
3979 /* If the overridden binding is ELEMENTAL, the overriding must be, too. If it
3980 is not, the overriding must not be either. */
3981 if (old_target->attr.elemental && !proc_target->attr.elemental)
3982 {
3983 gfc_error ("'%s' at %L overrides an ELEMENTAL procedure and must also be"
3984 " ELEMENTAL", proc->name, &where);
3985 return FAILURE;
3986 }
3987 if (!old_target->attr.elemental && proc_target->attr.elemental)
3988 {
3989 gfc_error ("'%s' at %L overrides a non-ELEMENTAL procedure and must not"
3990 " be ELEMENTAL, either", proc->name, &where);
3991 return FAILURE;
3992 }
3993
3994 /* If the overridden binding is a SUBROUTINE, the overriding must also be a
3995 SUBROUTINE. */
3996 if (old_target->attr.subroutine && !proc_target->attr.subroutine)
3997 {
3998 gfc_error ("'%s' at %L overrides a SUBROUTINE and must also be a"
3999 " SUBROUTINE", proc->name, &where);
4000 return FAILURE;
4001 }
4002
4003 /* If the overridden binding is a FUNCTION, the overriding must also be a
4004 FUNCTION and have the same characteristics. */
4005 if (old_target->attr.function)
4006 {
4007 if (!proc_target->attr.function)
4008 {
4009 gfc_error ("'%s' at %L overrides a FUNCTION and must also be a"
4010 " FUNCTION", proc->name, &where);
4011 return FAILURE;
4012 }
4013
4014 if (check_result_characteristics (proc_target, old_target,
4015 err, sizeof(err)) == FAILURE)
4016 {
4017 gfc_error ("Result mismatch for the overriding procedure "
4018 "'%s' at %L: %s", proc->name, &where, err);
4019 return FAILURE;
4020 }
4021 }
4022
4023 /* If the overridden binding is PUBLIC, the overriding one must not be
4024 PRIVATE. */
4025 if (old->n.tb->access == ACCESS_PUBLIC
4026 && proc->n.tb->access == ACCESS_PRIVATE)
4027 {
4028 gfc_error ("'%s' at %L overrides a PUBLIC procedure and must not be"
4029 " PRIVATE", proc->name, &where);
4030 return FAILURE;
4031 }
4032
4033 /* Compare the formal argument lists of both procedures. This is also abused
4034 to find the position of the passed-object dummy arguments of both
4035 bindings as at least the overridden one might not yet be resolved and we
4036 need those positions in the check below. */
4037 proc_pass_arg = old_pass_arg = 0;
4038 if (!proc->n.tb->nopass && !proc->n.tb->pass_arg)
4039 proc_pass_arg = 1;
4040 if (!old->n.tb->nopass && !old->n.tb->pass_arg)
4041 old_pass_arg = 1;
4042 argpos = 1;
4043 for (proc_formal = proc_target->formal, old_formal = old_target->formal;
4044 proc_formal && old_formal;
4045 proc_formal = proc_formal->next, old_formal = old_formal->next)
4046 {
4047 if (proc->n.tb->pass_arg
4048 && !strcmp (proc->n.tb->pass_arg, proc_formal->sym->name))
4049 proc_pass_arg = argpos;
4050 if (old->n.tb->pass_arg
4051 && !strcmp (old->n.tb->pass_arg, old_formal->sym->name))
4052 old_pass_arg = argpos;
4053
4054 /* Check that the names correspond. */
4055 if (strcmp (proc_formal->sym->name, old_formal->sym->name))
4056 {
4057 gfc_error ("Dummy argument '%s' of '%s' at %L should be named '%s' as"
4058 " to match the corresponding argument of the overridden"
4059 " procedure", proc_formal->sym->name, proc->name, &where,
4060 old_formal->sym->name);
4061 return FAILURE;
4062 }
4063
4064 check_type = proc_pass_arg != argpos && old_pass_arg != argpos;
4065 if (check_dummy_characteristics (proc_formal->sym, old_formal->sym,
4066 check_type, err, sizeof(err)) == FAILURE)
4067 {
4068 gfc_error ("Argument mismatch for the overriding procedure "
4069 "'%s' at %L: %s", proc->name, &where, err);
4070 return FAILURE;
4071 }
4072
4073 ++argpos;
4074 }
4075 if (proc_formal || old_formal)
4076 {
4077 gfc_error ("'%s' at %L must have the same number of formal arguments as"
4078 " the overridden procedure", proc->name, &where);
4079 return FAILURE;
4080 }
4081
4082 /* If the overridden binding is NOPASS, the overriding one must also be
4083 NOPASS. */
4084 if (old->n.tb->nopass && !proc->n.tb->nopass)
4085 {
4086 gfc_error ("'%s' at %L overrides a NOPASS binding and must also be"
4087 " NOPASS", proc->name, &where);
4088 return FAILURE;
4089 }
4090
4091 /* If the overridden binding is PASS(x), the overriding one must also be
4092 PASS and the passed-object dummy arguments must correspond. */
4093 if (!old->n.tb->nopass)
4094 {
4095 if (proc->n.tb->nopass)
4096 {
4097 gfc_error ("'%s' at %L overrides a binding with PASS and must also be"
4098 " PASS", proc->name, &where);
4099 return FAILURE;
4100 }
4101
4102 if (proc_pass_arg != old_pass_arg)
4103 {
4104 gfc_error ("Passed-object dummy argument of '%s' at %L must be at"
4105 " the same position as the passed-object dummy argument of"
4106 " the overridden procedure", proc->name, &where);
4107 return FAILURE;
4108 }
4109 }
4110
4111 return SUCCESS;
4112 }