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