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