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