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