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