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