]> gcc.gnu.org Git - gcc.git/blame - gcc/fortran/interface.c
ChangeLog: Fix whitespace.
[gcc.git] / gcc / fortran / interface.c
CommitLineData
6de9cd9a 1/* Deal with interfaces.
8b791297 2 Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009
b251af97 3 Free Software Foundation, Inc.
6de9cd9a
DN
4 Contributed by Andy Vaught
5
9fc4d79b 6This file is part of GCC.
6de9cd9a 7
9fc4d79b
TS
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
d234d788 10Software Foundation; either version 3, or (at your option) any later
9fc4d79b 11version.
6de9cd9a 12
9fc4d79b
TS
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
6de9cd9a
DN
17
18You should have received a copy of the GNU General Public License
d234d788
NC
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
6de9cd9a
DN
21
22
23/* Deal with interfaces. An explicit interface is represented as a
24 singly linked list of formal argument structures attached to the
25 relevant symbols. For an implicit interface, the arguments don't
26 point to symbols. Explicit interfaces point to namespaces that
27 contain the symbols within that interface.
28
29 Implicit interfaces are linked together in a singly linked list
30 along the next_if member of symbol nodes. Since a particular
31 symbol can only have a single explicit interface, the symbol cannot
32 be part of multiple lists and a single next-member suffices.
33
34 This is not the case for general classes, though. An operator
35 definition is independent of just about all other uses and has it's
36 own head pointer.
37
38 Nameless interfaces:
39 Nameless interfaces create symbols with explicit interfaces within
40 the current namespace. They are otherwise unlinked.
41
42 Generic interfaces:
43 The generic name points to a linked list of symbols. Each symbol
6892757c 44 has an explicit interface. Each explicit interface has its own
6de9cd9a
DN
45 namespace containing the arguments. Module procedures are symbols in
46 which the interface is added later when the module procedure is parsed.
47
48 User operators:
49 User-defined operators are stored in a their own set of symtrees
50 separate from regular symbols. The symtrees point to gfc_user_op
51 structures which in turn head up a list of relevant interfaces.
52
53 Extended intrinsics and assignment:
54 The head of these interface lists are stored in the containing namespace.
55
56 Implicit interfaces:
57 An implicit interface is represented as a singly linked list of
58 formal argument list structures that don't point to any symbol
59 nodes -- they just contain types.
60
61
62 When a subprogram is defined, the program unit's name points to an
63 interface as usual, but the link to the namespace is NULL and the
64 formal argument list points to symbols within the same namespace as
65 the program unit name. */
66
67#include "config.h"
d22e4895 68#include "system.h"
6de9cd9a
DN
69#include "gfortran.h"
70#include "match.h"
71
6de9cd9a
DN
72/* The current_interface structure holds information about the
73 interface currently being parsed. This structure is saved and
74 restored during recursive interfaces. */
75
76gfc_interface_info current_interface;
77
78
79/* Free a singly linked list of gfc_interface structures. */
80
81void
b251af97 82gfc_free_interface (gfc_interface *intr)
6de9cd9a
DN
83{
84 gfc_interface *next;
85
86 for (; intr; intr = next)
87 {
88 next = intr->next;
89 gfc_free (intr);
90 }
91}
92
93
94/* Change the operators unary plus and minus into binary plus and
95 minus respectively, leaving the rest unchanged. */
96
97static gfc_intrinsic_op
e8d4f3fc 98fold_unary_intrinsic (gfc_intrinsic_op op)
6de9cd9a 99{
a1ee985f 100 switch (op)
6de9cd9a
DN
101 {
102 case INTRINSIC_UPLUS:
a1ee985f 103 op = INTRINSIC_PLUS;
6de9cd9a
DN
104 break;
105 case INTRINSIC_UMINUS:
a1ee985f 106 op = INTRINSIC_MINUS;
6de9cd9a
DN
107 break;
108 default:
109 break;
110 }
111
a1ee985f 112 return op;
6de9cd9a
DN
113}
114
115
116/* Match a generic specification. Depending on which type of
a1ee985f 117 interface is found, the 'name' or 'op' pointers may be set.
6de9cd9a
DN
118 This subroutine doesn't return MATCH_NO. */
119
120match
b251af97 121gfc_match_generic_spec (interface_type *type,
6de9cd9a 122 char *name,
a1ee985f 123 gfc_intrinsic_op *op)
6de9cd9a
DN
124{
125 char buffer[GFC_MAX_SYMBOL_LEN + 1];
126 match m;
127 gfc_intrinsic_op i;
128
129 if (gfc_match (" assignment ( = )") == MATCH_YES)
130 {
131 *type = INTERFACE_INTRINSIC_OP;
a1ee985f 132 *op = INTRINSIC_ASSIGN;
6de9cd9a
DN
133 return MATCH_YES;
134 }
135
136 if (gfc_match (" operator ( %o )", &i) == MATCH_YES)
137 { /* Operator i/f */
138 *type = INTERFACE_INTRINSIC_OP;
e8d4f3fc 139 *op = fold_unary_intrinsic (i);
6de9cd9a
DN
140 return MATCH_YES;
141 }
142
e8d4f3fc 143 *op = INTRINSIC_NONE;
6de9cd9a
DN
144 if (gfc_match (" operator ( ") == MATCH_YES)
145 {
146 m = gfc_match_defined_op_name (buffer, 1);
147 if (m == MATCH_NO)
148 goto syntax;
149 if (m != MATCH_YES)
150 return MATCH_ERROR;
151
152 m = gfc_match_char (')');
153 if (m == MATCH_NO)
154 goto syntax;
155 if (m != MATCH_YES)
156 return MATCH_ERROR;
157
158 strcpy (name, buffer);
159 *type = INTERFACE_USER_OP;
160 return MATCH_YES;
161 }
162
163 if (gfc_match_name (buffer) == MATCH_YES)
164 {
165 strcpy (name, buffer);
166 *type = INTERFACE_GENERIC;
167 return MATCH_YES;
168 }
169
170 *type = INTERFACE_NAMELESS;
171 return MATCH_YES;
172
173syntax:
174 gfc_error ("Syntax error in generic specification at %C");
175 return MATCH_ERROR;
176}
177
178
9e1d712c
TB
179/* Match one of the five F95 forms of an interface statement. The
180 matcher for the abstract interface follows. */
6de9cd9a
DN
181
182match
183gfc_match_interface (void)
184{
185 char name[GFC_MAX_SYMBOL_LEN + 1];
186 interface_type type;
187 gfc_symbol *sym;
a1ee985f 188 gfc_intrinsic_op op;
6de9cd9a
DN
189 match m;
190
191 m = gfc_match_space ();
192
a1ee985f 193 if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
6de9cd9a
DN
194 return MATCH_ERROR;
195
6de9cd9a
DN
196 /* If we're not looking at the end of the statement now, or if this
197 is not a nameless interface but we did not see a space, punt. */
198 if (gfc_match_eos () != MATCH_YES
b251af97 199 || (type != INTERFACE_NAMELESS && m != MATCH_YES))
6de9cd9a 200 {
b251af97
SK
201 gfc_error ("Syntax error: Trailing garbage in INTERFACE statement "
202 "at %C");
6de9cd9a
DN
203 return MATCH_ERROR;
204 }
205
206 current_interface.type = type;
207
208 switch (type)
209 {
210 case INTERFACE_GENERIC:
211 if (gfc_get_symbol (name, NULL, &sym))
212 return MATCH_ERROR;
213
231b2fcc
TS
214 if (!sym->attr.generic
215 && gfc_add_generic (&sym->attr, sym->name, NULL) == FAILURE)
6de9cd9a
DN
216 return MATCH_ERROR;
217
e5d7f6f7
FXC
218 if (sym->attr.dummy)
219 {
220 gfc_error ("Dummy procedure '%s' at %C cannot have a "
221 "generic interface", sym->name);
222 return MATCH_ERROR;
223 }
224
6de9cd9a
DN
225 current_interface.sym = gfc_new_block = sym;
226 break;
227
228 case INTERFACE_USER_OP:
229 current_interface.uop = gfc_get_uop (name);
230 break;
231
232 case INTERFACE_INTRINSIC_OP:
a1ee985f 233 current_interface.op = op;
6de9cd9a
DN
234 break;
235
236 case INTERFACE_NAMELESS:
9e1d712c 237 case INTERFACE_ABSTRACT:
6de9cd9a
DN
238 break;
239 }
240
241 return MATCH_YES;
242}
243
244
9e1d712c
TB
245
246/* Match a F2003 abstract interface. */
247
248match
249gfc_match_abstract_interface (void)
250{
251 match m;
252
253 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ABSTRACT INTERFACE at %C")
254 == FAILURE)
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)
316 gfc_error ("Expected 'END INTERFACE ASSIGNMENT (=)' at %C");
317 else
318 gfc_error ("Expecting 'END INTERFACE OPERATOR (%s)' at %C",
319 gfc_op2string (current_interface.op));
320
321 m = MATCH_ERROR;
322 }
323
324 break;
325
326 case INTERFACE_USER_OP:
327 /* Comparing the symbol node names is OK because only use-associated
b251af97 328 symbols can be renamed. */
6de9cd9a 329 if (type != current_interface.type
9b46f94f 330 || strcmp (current_interface.uop->name, name) != 0)
6de9cd9a
DN
331 {
332 gfc_error ("Expecting 'END INTERFACE OPERATOR (.%s.)' at %C",
55898b2c 333 current_interface.uop->name);
6de9cd9a
DN
334 m = MATCH_ERROR;
335 }
336
337 break;
338
339 case INTERFACE_GENERIC:
340 if (type != current_interface.type
341 || strcmp (current_interface.sym->name, name) != 0)
342 {
343 gfc_error ("Expecting 'END INTERFACE %s' at %C",
344 current_interface.sym->name);
345 m = MATCH_ERROR;
346 }
347
348 break;
349 }
350
351 return m;
352}
353
354
e0e85e06
PT
355/* Compare two derived types using the criteria in 4.4.2 of the standard,
356 recursing through gfc_compare_types for the components. */
6de9cd9a
DN
357
358int
b251af97 359gfc_compare_derived_types (gfc_symbol *derived1, gfc_symbol *derived2)
6de9cd9a
DN
360{
361 gfc_component *dt1, *dt2;
362
6de9cd9a
DN
363 /* Special case for comparing derived types across namespaces. If the
364 true names and module names are the same and the module name is
365 nonnull, then they are equal. */
a8b3b0b6
CR
366 if (derived1 != NULL && derived2 != NULL
367 && strcmp (derived1->name, derived2->name) == 0
b251af97
SK
368 && derived1->module != NULL && derived2->module != NULL
369 && strcmp (derived1->module, derived2->module) == 0)
6de9cd9a
DN
370 return 1;
371
372 /* Compare type via the rules of the standard. Both types must have
373 the SEQUENCE attribute to be equal. */
374
e0e85e06 375 if (strcmp (derived1->name, derived2->name))
6de9cd9a
DN
376 return 0;
377
e0e85e06 378 if (derived1->component_access == ACCESS_PRIVATE
b251af97 379 || derived2->component_access == ACCESS_PRIVATE)
e0e85e06 380 return 0;
6de9cd9a 381
e0e85e06 382 if (derived1->attr.sequence == 0 || derived2->attr.sequence == 0)
6de9cd9a
DN
383 return 0;
384
e0e85e06
PT
385 dt1 = derived1->components;
386 dt2 = derived2->components;
387
6de9cd9a
DN
388 /* Since subtypes of SEQUENCE types must be SEQUENCE types as well, a
389 simple test can speed things up. Otherwise, lots of things have to
390 match. */
391 for (;;)
392 {
393 if (strcmp (dt1->name, dt2->name) != 0)
394 return 0;
395
d4b7d0f0 396 if (dt1->attr.access != dt2->attr.access)
2eae3dc7
TB
397 return 0;
398
d4b7d0f0 399 if (dt1->attr.pointer != dt2->attr.pointer)
6de9cd9a
DN
400 return 0;
401
d4b7d0f0 402 if (dt1->attr.dimension != dt2->attr.dimension)
6de9cd9a
DN
403 return 0;
404
d4b7d0f0 405 if (dt1->attr.allocatable != dt2->attr.allocatable)
5046aff5
PT
406 return 0;
407
d4b7d0f0 408 if (dt1->attr.dimension && gfc_compare_array_spec (dt1->as, dt2->as) == 0)
6de9cd9a
DN
409 return 0;
410
6669dbdf
PT
411 /* Make sure that link lists do not put this function into an
412 endless recursive loop! */
63287e10
PT
413 if (!(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.derived)
414 && !(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.derived)
415 && gfc_compare_types (&dt1->ts, &dt2->ts) == 0)
416 return 0;
417
6669dbdf
PT
418 else if ((dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.derived)
419 && !(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.derived))
420 return 0;
421
422 else if (!(dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.derived)
423 && (dt1->ts.type == BT_DERIVED && derived1 == dt1->ts.derived))
6de9cd9a
DN
424 return 0;
425
426 dt1 = dt1->next;
427 dt2 = dt2->next;
428
429 if (dt1 == NULL && dt2 == NULL)
430 break;
431 if (dt1 == NULL || dt2 == NULL)
432 return 0;
433 }
434
435 return 1;
436}
437
b251af97 438
e0e85e06
PT
439/* Compare two typespecs, recursively if necessary. */
440
441int
b251af97 442gfc_compare_types (gfc_typespec *ts1, gfc_typespec *ts2)
e0e85e06 443{
a8b3b0b6
CR
444 /* See if one of the typespecs is a BT_VOID, which is what is being used
445 to allow the funcs like c_f_pointer to accept any pointer type.
446 TODO: Possibly should narrow this to just the one typespec coming in
447 that is for the formal arg, but oh well. */
448 if (ts1->type == BT_VOID || ts2->type == BT_VOID)
449 return 1;
450
e0e85e06
PT
451 if (ts1->type != ts2->type)
452 return 0;
453 if (ts1->type != BT_DERIVED)
454 return (ts1->kind == ts2->kind);
455
456 /* Compare derived types. */
457 if (ts1->derived == ts2->derived)
458 return 1;
459
460 return gfc_compare_derived_types (ts1->derived ,ts2->derived);
461}
462
6de9cd9a
DN
463
464/* Given two symbols that are formal arguments, compare their ranks
465 and types. Returns nonzero if they have the same rank and type,
466 zero otherwise. */
467
468static int
b251af97 469compare_type_rank (gfc_symbol *s1, gfc_symbol *s2)
6de9cd9a
DN
470{
471 int r1, r2;
472
473 r1 = (s1->as != NULL) ? s1->as->rank : 0;
474 r2 = (s2->as != NULL) ? s2->as->rank : 0;
475
476 if (r1 != r2)
66e4ab31 477 return 0; /* Ranks differ. */
6de9cd9a
DN
478
479 return gfc_compare_types (&s1->ts, &s2->ts);
480}
481
482
6de9cd9a
DN
483/* Given two symbols that are formal arguments, compare their types
484 and rank and their formal interfaces if they are both dummy
485 procedures. Returns nonzero if the same, zero if different. */
486
487static int
b251af97 488compare_type_rank_if (gfc_symbol *s1, gfc_symbol *s2)
6de9cd9a 489{
26f2ca2b
PT
490 if (s1 == NULL || s2 == NULL)
491 return s1 == s2 ? 1 : 0;
6de9cd9a 492
489ec4e3
PT
493 if (s1 == s2)
494 return 1;
495
6de9cd9a
DN
496 if (s1->attr.flavor != FL_PROCEDURE && s2->attr.flavor != FL_PROCEDURE)
497 return compare_type_rank (s1, s2);
498
499 if (s1->attr.flavor != FL_PROCEDURE || s2->attr.flavor != FL_PROCEDURE)
500 return 0;
501
489ec4e3
PT
502 /* At this point, both symbols are procedures. It can happen that
503 external procedures are compared, where one is identified by usage
504 to be a function or subroutine but the other is not. Check TKR
505 nonetheless for these cases. */
506 if (s1->attr.function == 0 && s1->attr.subroutine == 0)
507 return s1->attr.external == 1 ? compare_type_rank (s1, s2) : 0;
508
509 if (s2->attr.function == 0 && s2->attr.subroutine == 0)
510 return s2->attr.external == 1 ? compare_type_rank (s1, s2) : 0;
6de9cd9a 511
489ec4e3 512 /* Now the type of procedure has been identified. */
6de9cd9a
DN
513 if (s1->attr.function != s2->attr.function
514 || s1->attr.subroutine != s2->attr.subroutine)
515 return 0;
516
517 if (s1->attr.function && compare_type_rank (s1, s2) == 0)
518 return 0;
519
993ef28f
PT
520 /* Originally, gfortran recursed here to check the interfaces of passed
521 procedures. This is explicitly not required by the standard. */
522 return 1;
6de9cd9a
DN
523}
524
525
526/* Given a formal argument list and a keyword name, search the list
527 for that keyword. Returns the correct symbol node if found, NULL
528 if not found. */
529
530static gfc_symbol *
b251af97 531find_keyword_arg (const char *name, gfc_formal_arglist *f)
6de9cd9a 532{
6de9cd9a
DN
533 for (; f; f = f->next)
534 if (strcmp (f->sym->name, name) == 0)
535 return f->sym;
536
537 return NULL;
538}
539
540
541/******** Interface checking subroutines **********/
542
543
544/* Given an operator interface and the operator, make sure that all
545 interfaces for that operator are legal. */
546
94747289
DK
547bool
548gfc_check_operator_interface (gfc_symbol *sym, gfc_intrinsic_op op,
549 locus opwhere)
6de9cd9a
DN
550{
551 gfc_formal_arglist *formal;
552 sym_intent i1, i2;
6de9cd9a 553 bt t1, t2;
27189292 554 int args, r1, r2, k1, k2;
6de9cd9a 555
94747289 556 gcc_assert (sym);
6de9cd9a
DN
557
558 args = 0;
559 t1 = t2 = BT_UNKNOWN;
560 i1 = i2 = INTENT_UNKNOWN;
27189292
FXC
561 r1 = r2 = -1;
562 k1 = k2 = -1;
6de9cd9a 563
94747289 564 for (formal = sym->formal; formal; formal = formal->next)
6de9cd9a 565 {
94747289
DK
566 gfc_symbol *fsym = formal->sym;
567 if (fsym == NULL)
8c086c9c
PT
568 {
569 gfc_error ("Alternate return cannot appear in operator "
94747289
DK
570 "interface at %L", &sym->declared_at);
571 return false;
8c086c9c 572 }
6de9cd9a
DN
573 if (args == 0)
574 {
94747289
DK
575 t1 = fsym->ts.type;
576 i1 = fsym->attr.intent;
577 r1 = (fsym->as != NULL) ? fsym->as->rank : 0;
578 k1 = fsym->ts.kind;
6de9cd9a
DN
579 }
580 if (args == 1)
581 {
94747289
DK
582 t2 = fsym->ts.type;
583 i2 = fsym->attr.intent;
584 r2 = (fsym->as != NULL) ? fsym->as->rank : 0;
585 k2 = fsym->ts.kind;
6de9cd9a
DN
586 }
587 args++;
588 }
589
27189292
FXC
590 /* Only +, - and .not. can be unary operators.
591 .not. cannot be a binary operator. */
a1ee985f
KG
592 if (args == 0 || args > 2 || (args == 1 && op != INTRINSIC_PLUS
593 && op != INTRINSIC_MINUS
594 && op != INTRINSIC_NOT)
595 || (args == 2 && op == INTRINSIC_NOT))
27189292
FXC
596 {
597 gfc_error ("Operator interface at %L has the wrong number of arguments",
94747289
DK
598 &sym->declared_at);
599 return false;
27189292
FXC
600 }
601
602 /* Check that intrinsics are mapped to functions, except
603 INTRINSIC_ASSIGN which should map to a subroutine. */
a1ee985f 604 if (op == INTRINSIC_ASSIGN)
6de9cd9a
DN
605 {
606 if (!sym->attr.subroutine)
607 {
b251af97 608 gfc_error ("Assignment operator interface at %L must be "
94747289
DK
609 "a SUBROUTINE", &sym->declared_at);
610 return false;
6de9cd9a 611 }
8c086c9c
PT
612 if (args != 2)
613 {
b251af97 614 gfc_error ("Assignment operator interface at %L must have "
94747289
DK
615 "two arguments", &sym->declared_at);
616 return false;
8c086c9c 617 }
e19bb186
TB
618
619 /* Allowed are (per F2003, 12.3.2.1.2 Defined assignments):
94747289
DK
620 - First argument an array with different rank than second,
621 - Types and kinds do not conform, and
622 - First argument is of derived type. */
8c086c9c 623 if (sym->formal->sym->ts.type != BT_DERIVED
e19bb186 624 && (r1 == 0 || r1 == r2)
b251af97
SK
625 && (sym->formal->sym->ts.type == sym->formal->next->sym->ts.type
626 || (gfc_numeric_ts (&sym->formal->sym->ts)
627 && gfc_numeric_ts (&sym->formal->next->sym->ts))))
8c086c9c 628 {
b251af97 629 gfc_error ("Assignment operator interface at %L must not redefine "
94747289
DK
630 "an INTRINSIC type assignment", &sym->declared_at);
631 return false;
8c086c9c 632 }
6de9cd9a
DN
633 }
634 else
635 {
636 if (!sym->attr.function)
637 {
638 gfc_error ("Intrinsic operator interface at %L must be a FUNCTION",
94747289
DK
639 &sym->declared_at);
640 return false;
6de9cd9a
DN
641 }
642 }
643
27189292 644 /* Check intents on operator interfaces. */
a1ee985f 645 if (op == INTRINSIC_ASSIGN)
6de9cd9a 646 {
27189292 647 if (i1 != INTENT_OUT && i1 != INTENT_INOUT)
94747289
DK
648 {
649 gfc_error ("First argument of defined assignment at %L must be "
650 "INTENT(OUT) or INTENT(INOUT)", &sym->declared_at);
651 return false;
652 }
27189292
FXC
653
654 if (i2 != INTENT_IN)
94747289
DK
655 {
656 gfc_error ("Second argument of defined assignment at %L must be "
657 "INTENT(IN)", &sym->declared_at);
658 return false;
659 }
27189292
FXC
660 }
661 else
662 {
663 if (i1 != INTENT_IN)
94747289
DK
664 {
665 gfc_error ("First argument of operator interface at %L must be "
666 "INTENT(IN)", &sym->declared_at);
667 return false;
668 }
27189292
FXC
669
670 if (args == 2 && i2 != INTENT_IN)
94747289
DK
671 {
672 gfc_error ("Second argument of operator interface at %L must be "
673 "INTENT(IN)", &sym->declared_at);
674 return false;
675 }
27189292
FXC
676 }
677
678 /* From now on, all we have to do is check that the operator definition
679 doesn't conflict with an intrinsic operator. The rules for this
680 game are defined in 7.1.2 and 7.1.3 of both F95 and F2003 standards,
681 as well as 12.3.2.1.1 of Fortran 2003:
682
683 "If the operator is an intrinsic-operator (R310), the number of
684 function arguments shall be consistent with the intrinsic uses of
685 that operator, and the types, kind type parameters, or ranks of the
686 dummy arguments shall differ from those required for the intrinsic
687 operation (7.1.2)." */
688
689#define IS_NUMERIC_TYPE(t) \
690 ((t) == BT_INTEGER || (t) == BT_REAL || (t) == BT_COMPLEX)
691
692 /* Unary ops are easy, do them first. */
a1ee985f 693 if (op == INTRINSIC_NOT)
27189292
FXC
694 {
695 if (t1 == BT_LOGICAL)
6de9cd9a 696 goto bad_repl;
27189292 697 else
94747289 698 return true;
27189292 699 }
6de9cd9a 700
a1ee985f 701 if (args == 1 && (op == INTRINSIC_PLUS || op == INTRINSIC_MINUS))
27189292
FXC
702 {
703 if (IS_NUMERIC_TYPE (t1))
6de9cd9a 704 goto bad_repl;
27189292 705 else
94747289 706 return true;
27189292 707 }
6de9cd9a 708
27189292
FXC
709 /* Character intrinsic operators have same character kind, thus
710 operator definitions with operands of different character kinds
711 are always safe. */
712 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER && k1 != k2)
94747289 713 return true;
6de9cd9a 714
27189292
FXC
715 /* Intrinsic operators always perform on arguments of same rank,
716 so different ranks is also always safe. (rank == 0) is an exception
717 to that, because all intrinsic operators are elemental. */
718 if (r1 != r2 && r1 != 0 && r2 != 0)
94747289 719 return true;
6de9cd9a 720
a1ee985f 721 switch (op)
27189292 722 {
6de9cd9a 723 case INTRINSIC_EQ:
3bed9dd0 724 case INTRINSIC_EQ_OS:
6de9cd9a 725 case INTRINSIC_NE:
3bed9dd0 726 case INTRINSIC_NE_OS:
27189292 727 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
6de9cd9a 728 goto bad_repl;
27189292 729 /* Fall through. */
6de9cd9a 730
27189292
FXC
731 case INTRINSIC_PLUS:
732 case INTRINSIC_MINUS:
733 case INTRINSIC_TIMES:
734 case INTRINSIC_DIVIDE:
735 case INTRINSIC_POWER:
736 if (IS_NUMERIC_TYPE (t1) && IS_NUMERIC_TYPE (t2))
737 goto bad_repl;
6de9cd9a
DN
738 break;
739
6de9cd9a 740 case INTRINSIC_GT:
3bed9dd0 741 case INTRINSIC_GT_OS:
27189292 742 case INTRINSIC_GE:
3bed9dd0 743 case INTRINSIC_GE_OS:
27189292 744 case INTRINSIC_LT:
3bed9dd0 745 case INTRINSIC_LT_OS:
27189292 746 case INTRINSIC_LE:
3bed9dd0 747 case INTRINSIC_LE_OS:
27189292
FXC
748 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
749 goto bad_repl;
6de9cd9a
DN
750 if ((t1 == BT_INTEGER || t1 == BT_REAL)
751 && (t2 == BT_INTEGER || t2 == BT_REAL))
752 goto bad_repl;
27189292 753 break;
6de9cd9a 754
27189292
FXC
755 case INTRINSIC_CONCAT:
756 if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
757 goto bad_repl;
6de9cd9a
DN
758 break;
759
6de9cd9a 760 case INTRINSIC_AND:
27189292 761 case INTRINSIC_OR:
6de9cd9a
DN
762 case INTRINSIC_EQV:
763 case INTRINSIC_NEQV:
6de9cd9a
DN
764 if (t1 == BT_LOGICAL && t2 == BT_LOGICAL)
765 goto bad_repl;
766 break;
767
6de9cd9a 768 default:
27189292
FXC
769 break;
770 }
6de9cd9a 771
94747289 772 return true;
6de9cd9a 773
27189292
FXC
774#undef IS_NUMERIC_TYPE
775
6de9cd9a
DN
776bad_repl:
777 gfc_error ("Operator interface at %L conflicts with intrinsic interface",
94747289
DK
778 &opwhere);
779 return false;
6de9cd9a
DN
780}
781
782
783/* Given a pair of formal argument lists, we see if the two lists can
784 be distinguished by counting the number of nonoptional arguments of
785 a given type/rank in f1 and seeing if there are less then that
786 number of those arguments in f2 (including optional arguments).
787 Since this test is asymmetric, it has to be called twice to make it
788 symmetric. Returns nonzero if the argument lists are incompatible
789 by this test. This subroutine implements rule 1 of section
8ad15a0a 790 14.1.2.3 in the Fortran 95 standard. */
6de9cd9a
DN
791
792static int
b251af97 793count_types_test (gfc_formal_arglist *f1, gfc_formal_arglist *f2)
6de9cd9a
DN
794{
795 int rc, ac1, ac2, i, j, k, n1;
796 gfc_formal_arglist *f;
797
798 typedef struct
799 {
800 int flag;
801 gfc_symbol *sym;
802 }
803 arginfo;
804
805 arginfo *arg;
806
807 n1 = 0;
808
809 for (f = f1; f; f = f->next)
810 n1++;
811
812 /* Build an array of integers that gives the same integer to
813 arguments of the same type/rank. */
ece3f663 814 arg = XCNEWVEC (arginfo, n1);
6de9cd9a
DN
815
816 f = f1;
817 for (i = 0; i < n1; i++, f = f->next)
818 {
819 arg[i].flag = -1;
820 arg[i].sym = f->sym;
821 }
822
823 k = 0;
824
825 for (i = 0; i < n1; i++)
826 {
827 if (arg[i].flag != -1)
828 continue;
829
26f2ca2b 830 if (arg[i].sym && arg[i].sym->attr.optional)
66e4ab31 831 continue; /* Skip optional arguments. */
6de9cd9a
DN
832
833 arg[i].flag = k;
834
835 /* Find other nonoptional arguments of the same type/rank. */
836 for (j = i + 1; j < n1; j++)
26f2ca2b 837 if ((arg[j].sym == NULL || !arg[j].sym->attr.optional)
6de9cd9a
DN
838 && compare_type_rank_if (arg[i].sym, arg[j].sym))
839 arg[j].flag = k;
840
841 k++;
842 }
843
844 /* Now loop over each distinct type found in f1. */
845 k = 0;
846 rc = 0;
847
848 for (i = 0; i < n1; i++)
849 {
850 if (arg[i].flag != k)
851 continue;
852
853 ac1 = 1;
854 for (j = i + 1; j < n1; j++)
855 if (arg[j].flag == k)
856 ac1++;
857
858 /* Count the number of arguments in f2 with that type, including
b251af97 859 those that are optional. */
6de9cd9a
DN
860 ac2 = 0;
861
862 for (f = f2; f; f = f->next)
863 if (compare_type_rank_if (arg[i].sym, f->sym))
864 ac2++;
865
866 if (ac1 > ac2)
867 {
868 rc = 1;
869 break;
870 }
871
872 k++;
873 }
874
875 gfc_free (arg);
876
877 return rc;
878}
879
880
6de9cd9a 881/* Perform the correspondence test in rule 2 of section 14.1.2.3.
69de3b83 882 Returns zero if no argument is found that satisfies rule 2, nonzero
6de9cd9a
DN
883 otherwise.
884
885 This test is also not symmetric in f1 and f2 and must be called
886 twice. This test finds problems caused by sorting the actual
887 argument list with keywords. For example:
888
889 INTERFACE FOO
890 SUBROUTINE F1(A, B)
b251af97 891 INTEGER :: A ; REAL :: B
6de9cd9a
DN
892 END SUBROUTINE F1
893
894 SUBROUTINE F2(B, A)
b251af97 895 INTEGER :: A ; REAL :: B
6de9cd9a
DN
896 END SUBROUTINE F1
897 END INTERFACE FOO
898
899 At this point, 'CALL FOO(A=1, B=1.0)' is ambiguous. */
900
901static int
b251af97 902generic_correspondence (gfc_formal_arglist *f1, gfc_formal_arglist *f2)
6de9cd9a 903{
6de9cd9a
DN
904 gfc_formal_arglist *f2_save, *g;
905 gfc_symbol *sym;
906
907 f2_save = f2;
908
909 while (f1)
910 {
911 if (f1->sym->attr.optional)
912 goto next;
913
914 if (f2 != NULL && compare_type_rank (f1->sym, f2->sym))
915 goto next;
916
917 /* Now search for a disambiguating keyword argument starting at
b251af97 918 the current non-match. */
6de9cd9a
DN
919 for (g = f1; g; g = g->next)
920 {
921 if (g->sym->attr.optional)
922 continue;
923
924 sym = find_keyword_arg (g->sym->name, f2_save);
925 if (sym == NULL || !compare_type_rank (g->sym, sym))
926 return 1;
927 }
928
929 next:
930 f1 = f1->next;
931 if (f2 != NULL)
932 f2 = f2->next;
933 }
934
935 return 0;
936}
937
938
939/* 'Compare' two formal interfaces associated with a pair of symbols.
940 We return nonzero if there exists an actual argument list that
8ad15a0a
JW
941 would be ambiguous between the two interfaces, zero otherwise.
942 'intent_flag' specifies whether INTENT and OPTIONAL of the arguments are
943 required to match, which is not the case for ambiguity checks.*/
6de9cd9a 944
e157f736 945int
23e38561 946gfc_compare_interfaces (gfc_symbol *s1, gfc_symbol *s2, int generic_flag,
8ad15a0a 947 int intent_flag, char *errmsg, int err_len)
6de9cd9a
DN
948{
949 gfc_formal_arglist *f1, *f2;
950
9b63f282
JW
951 if (s1->attr.function && (s2->attr.subroutine
952 || (!s2->attr.function && s2->ts.type == BT_UNKNOWN
953 && gfc_get_default_type (s2->name, s2->ns)->type == BT_UNKNOWN)))
8ad15a0a
JW
954 {
955 if (errmsg != NULL)
956 snprintf (errmsg, err_len, "'%s' is not a function", s2->name);
957 return 0;
958 }
959
960 if (s1->attr.subroutine && s2->attr.function)
961 {
962 if (errmsg != NULL)
963 snprintf (errmsg, err_len, "'%s' is not a subroutine", s2->name);
964 return 0;
965 }
3afadac3 966
c73b6478
JW
967 /* If the arguments are functions, check type and kind
968 (only for dummy procedures and procedure pointer assignments). */
969 if ((s1->attr.dummy || s1->attr.proc_pointer)
970 && s1->attr.function && s2->attr.function)
6cc309c9 971 {
c73b6478
JW
972 if (s1->ts.type == BT_UNKNOWN)
973 return 1;
974 if ((s1->ts.type != s2->ts.type) || (s1->ts.kind != s2->ts.kind))
8ad15a0a
JW
975 {
976 if (errmsg != NULL)
977 snprintf (errmsg, err_len, "Type/kind mismatch in return value "
978 "of '%s'", s2->name);
979 return 0;
980 }
6cc309c9 981 }
26033479 982
8ad15a0a
JW
983 if (s1->attr.if_source == IFSRC_UNKNOWN
984 || s2->attr.if_source == IFSRC_UNKNOWN)
26033479 985 return 1;
26033479 986
c73b6478
JW
987 f1 = s1->formal;
988 f2 = s2->formal;
26033479 989
c73b6478 990 if (f1 == NULL && f2 == NULL)
8ad15a0a 991 return 1; /* Special case: No arguments. */
6cc309c9 992
c73b6478 993 if (generic_flag)
6cc309c9 994 {
e26f5548
JW
995 if (count_types_test (f1, f2) || count_types_test (f2, f1))
996 return 0;
c73b6478 997 if (generic_correspondence (f1, f2) || generic_correspondence (f2, f1))
6cc309c9 998 return 0;
6cc309c9 999 }
c73b6478 1000 else
8ad15a0a
JW
1001 /* Perform the abbreviated correspondence test for operators (the
1002 arguments cannot be optional and are always ordered correctly).
1003 This is also done when comparing interfaces for dummy procedures and in
1004 procedure pointer assignments. */
1005
1006 for (;;)
1007 {
1008 /* Check existence. */
1009 if (f1 == NULL && f2 == NULL)
1010 break;
1011 if (f1 == NULL || f2 == NULL)
1012 {
1013 if (errmsg != NULL)
1014 snprintf (errmsg, err_len, "'%s' has the wrong number of "
1015 "arguments", s2->name);
1016 return 0;
1017 }
1018
1019 /* Check type and rank. */
1020 if (!compare_type_rank (f1->sym, f2->sym))
1021 {
1022 if (errmsg != NULL)
1023 snprintf (errmsg, err_len, "Type/rank mismatch in argument '%s'",
1024 f1->sym->name);
1025 return 0;
1026 }
1027
1028 /* Check INTENT. */
1029 if (intent_flag && (f1->sym->attr.intent != f2->sym->attr.intent))
1030 {
1031 snprintf (errmsg, err_len, "INTENT mismatch in argument '%s'",
1032 f1->sym->name);
1033 return 0;
1034 }
1035
1036 /* Check OPTIONAL. */
1037 if (intent_flag && (f1->sym->attr.optional != f2->sym->attr.optional))
1038 {
1039 snprintf (errmsg, err_len, "OPTIONAL mismatch in argument '%s'",
1040 f1->sym->name);
1041 return 0;
1042 }
1043
1044 f1 = f1->next;
1045 f2 = f2->next;
1046 }
1047
6cc309c9
JD
1048 return 1;
1049}
1050
1051
6de9cd9a
DN
1052/* Given a pointer to an interface pointer, remove duplicate
1053 interfaces and make sure that all symbols are either functions or
1054 subroutines. Returns nonzero if something goes wrong. */
1055
1056static int
b251af97 1057check_interface0 (gfc_interface *p, const char *interface_name)
6de9cd9a
DN
1058{
1059 gfc_interface *psave, *q, *qlast;
1060
1061 psave = p;
1062 /* Make sure all symbols in the interface have been defined as
1063 functions or subroutines. */
1064 for (; p; p = p->next)
69773742
JW
1065 if ((!p->sym->attr.function && !p->sym->attr.subroutine)
1066 || !p->sym->attr.if_source)
6de9cd9a 1067 {
e9f63ace
TB
1068 if (p->sym->attr.external)
1069 gfc_error ("Procedure '%s' in %s at %L has no explicit interface",
1070 p->sym->name, interface_name, &p->sym->declared_at);
1071 else
1072 gfc_error ("Procedure '%s' in %s at %L is neither function nor "
1073 "subroutine", p->sym->name, interface_name,
1074 &p->sym->declared_at);
6de9cd9a
DN
1075 return 1;
1076 }
1077 p = psave;
1078
1079 /* Remove duplicate interfaces in this interface list. */
1080 for (; p; p = p->next)
1081 {
1082 qlast = p;
1083
1084 for (q = p->next; q;)
1085 {
1086 if (p->sym != q->sym)
1087 {
1088 qlast = q;
1089 q = q->next;
6de9cd9a
DN
1090 }
1091 else
1092 {
66e4ab31 1093 /* Duplicate interface. */
6de9cd9a
DN
1094 qlast->next = q->next;
1095 gfc_free (q);
1096 q = qlast->next;
1097 }
1098 }
1099 }
1100
1101 return 0;
1102}
1103
1104
1105/* Check lists of interfaces to make sure that no two interfaces are
66e4ab31 1106 ambiguous. Duplicate interfaces (from the same symbol) are OK here. */
6de9cd9a
DN
1107
1108static int
b251af97 1109check_interface1 (gfc_interface *p, gfc_interface *q0,
993ef28f 1110 int generic_flag, const char *interface_name,
26f2ca2b 1111 bool referenced)
6de9cd9a 1112{
b251af97 1113 gfc_interface *q;
6de9cd9a 1114 for (; p; p = p->next)
991f3b12 1115 for (q = q0; q; q = q->next)
6de9cd9a
DN
1116 {
1117 if (p->sym == q->sym)
66e4ab31 1118 continue; /* Duplicates OK here. */
6de9cd9a 1119
312ae8f4 1120 if (p->sym->name == q->sym->name && p->sym->module == q->sym->module)
6de9cd9a
DN
1121 continue;
1122
8ad15a0a 1123 if (gfc_compare_interfaces (p->sym, q->sym, generic_flag, 0, NULL, 0))
6de9cd9a 1124 {
993ef28f
PT
1125 if (referenced)
1126 {
1127 gfc_error ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1128 p->sym->name, q->sym->name, interface_name,
1129 &p->where);
1130 }
1131
1132 if (!p->sym->attr.use_assoc && q->sym->attr.use_assoc)
1133 gfc_warning ("Ambiguous interfaces '%s' and '%s' in %s at %L",
1134 p->sym->name, q->sym->name, interface_name,
1135 &p->where);
6de9cd9a
DN
1136 return 1;
1137 }
1138 }
6de9cd9a
DN
1139 return 0;
1140}
1141
1142
1143/* Check the generic and operator interfaces of symbols to make sure
1144 that none of the interfaces conflict. The check has to be done
1145 after all of the symbols are actually loaded. */
1146
1147static void
b251af97 1148check_sym_interfaces (gfc_symbol *sym)
6de9cd9a
DN
1149{
1150 char interface_name[100];
26f2ca2b 1151 bool k;
71f77fd7 1152 gfc_interface *p;
6de9cd9a
DN
1153
1154 if (sym->ns != gfc_current_ns)
1155 return;
1156
1157 if (sym->generic != NULL)
1158 {
1159 sprintf (interface_name, "generic interface '%s'", sym->name);
1160 if (check_interface0 (sym->generic, interface_name))
1161 return;
1162
71f77fd7
PT
1163 for (p = sym->generic; p; p = p->next)
1164 {
abf86978
TB
1165 if (p->sym->attr.mod_proc
1166 && (p->sym->attr.if_source != IFSRC_DECL
1167 || p->sym->attr.procedure))
71f77fd7 1168 {
e9f63ace
TB
1169 gfc_error ("'%s' at %L is not a module procedure",
1170 p->sym->name, &p->where);
71f77fd7
PT
1171 return;
1172 }
1173 }
1174
4c256e34 1175 /* Originally, this test was applied to host interfaces too;
993ef28f
PT
1176 this is incorrect since host associated symbols, from any
1177 source, cannot be ambiguous with local symbols. */
1178 k = sym->attr.referenced || !sym->attr.use_assoc;
b251af97 1179 if (check_interface1 (sym->generic, sym->generic, 1, interface_name, k))
993ef28f 1180 sym->attr.ambiguous_interfaces = 1;
6de9cd9a
DN
1181 }
1182}
1183
1184
1185static void
b251af97 1186check_uop_interfaces (gfc_user_op *uop)
6de9cd9a
DN
1187{
1188 char interface_name[100];
1189 gfc_user_op *uop2;
1190 gfc_namespace *ns;
1191
1192 sprintf (interface_name, "operator interface '%s'", uop->name);
a1ee985f 1193 if (check_interface0 (uop->op, interface_name))
6de9cd9a
DN
1194 return;
1195
1196 for (ns = gfc_current_ns; ns; ns = ns->parent)
1197 {
1198 uop2 = gfc_find_uop (uop->name, ns);
1199 if (uop2 == NULL)
1200 continue;
1201
a1ee985f 1202 check_interface1 (uop->op, uop2->op, 0,
26f2ca2b 1203 interface_name, true);
6de9cd9a
DN
1204 }
1205}
1206
1207
1208/* For the namespace, check generic, user operator and intrinsic
1209 operator interfaces for consistency and to remove duplicate
1210 interfaces. We traverse the whole namespace, counting on the fact
1211 that most symbols will not have generic or operator interfaces. */
1212
1213void
b251af97 1214gfc_check_interfaces (gfc_namespace *ns)
6de9cd9a
DN
1215{
1216 gfc_namespace *old_ns, *ns2;
1217 char interface_name[100];
09639a83 1218 int i;
6de9cd9a
DN
1219
1220 old_ns = gfc_current_ns;
1221 gfc_current_ns = ns;
1222
1223 gfc_traverse_ns (ns, check_sym_interfaces);
1224
1225 gfc_traverse_user_op (ns, check_uop_interfaces);
1226
1227 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
1228 {
1229 if (i == INTRINSIC_USER)
1230 continue;
1231
1232 if (i == INTRINSIC_ASSIGN)
1233 strcpy (interface_name, "intrinsic assignment operator");
1234 else
1235 sprintf (interface_name, "intrinsic '%s' operator",
09639a83 1236 gfc_op2string ((gfc_intrinsic_op) i));
6de9cd9a 1237
a1ee985f 1238 if (check_interface0 (ns->op[i], interface_name))
6de9cd9a
DN
1239 continue;
1240
94747289
DK
1241 if (ns->op[i])
1242 gfc_check_operator_interface (ns->op[i]->sym, (gfc_intrinsic_op) i,
1243 ns->op[i]->where);
6de9cd9a 1244
3bed9dd0
DF
1245 for (ns2 = ns; ns2; ns2 = ns2->parent)
1246 {
a1ee985f 1247 if (check_interface1 (ns->op[i], ns2->op[i], 0,
3bed9dd0
DF
1248 interface_name, true))
1249 goto done;
1250
1251 switch (i)
1252 {
1253 case INTRINSIC_EQ:
a1ee985f 1254 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_EQ_OS],
3bed9dd0
DF
1255 0, interface_name, true)) goto done;
1256 break;
1257
1258 case INTRINSIC_EQ_OS:
a1ee985f 1259 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_EQ],
3bed9dd0
DF
1260 0, interface_name, true)) goto done;
1261 break;
1262
1263 case INTRINSIC_NE:
a1ee985f 1264 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_NE_OS],
3bed9dd0
DF
1265 0, interface_name, true)) goto done;
1266 break;
1267
1268 case INTRINSIC_NE_OS:
a1ee985f 1269 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_NE],
3bed9dd0
DF
1270 0, interface_name, true)) goto done;
1271 break;
1272
1273 case INTRINSIC_GT:
a1ee985f 1274 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_GT_OS],
3bed9dd0
DF
1275 0, interface_name, true)) goto done;
1276 break;
1277
1278 case INTRINSIC_GT_OS:
a1ee985f 1279 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_GT],
3bed9dd0
DF
1280 0, interface_name, true)) goto done;
1281 break;
1282
1283 case INTRINSIC_GE:
a1ee985f 1284 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_GE_OS],
3bed9dd0
DF
1285 0, interface_name, true)) goto done;
1286 break;
1287
1288 case INTRINSIC_GE_OS:
a1ee985f 1289 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_GE],
3bed9dd0
DF
1290 0, interface_name, true)) goto done;
1291 break;
1292
1293 case INTRINSIC_LT:
a1ee985f 1294 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_LT_OS],
3bed9dd0
DF
1295 0, interface_name, true)) goto done;
1296 break;
1297
1298 case INTRINSIC_LT_OS:
a1ee985f 1299 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_LT],
3bed9dd0
DF
1300 0, interface_name, true)) goto done;
1301 break;
1302
1303 case INTRINSIC_LE:
a1ee985f 1304 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_LE_OS],
3bed9dd0
DF
1305 0, interface_name, true)) goto done;
1306 break;
1307
1308 case INTRINSIC_LE_OS:
a1ee985f 1309 if (check_interface1 (ns->op[i], ns2->op[INTRINSIC_LE],
3bed9dd0
DF
1310 0, interface_name, true)) goto done;
1311 break;
1312
1313 default:
1314 break;
1315 }
1316 }
6de9cd9a
DN
1317 }
1318
3bed9dd0 1319done:
6de9cd9a
DN
1320 gfc_current_ns = old_ns;
1321}
1322
1323
1324static int
b251af97 1325symbol_rank (gfc_symbol *sym)
6de9cd9a 1326{
6de9cd9a
DN
1327 return (sym->as == NULL) ? 0 : sym->as->rank;
1328}
1329
1330
aa08038d
EE
1331/* Given a symbol of a formal argument list and an expression, if the
1332 formal argument is allocatable, check that the actual argument is
1333 allocatable. Returns nonzero if compatible, zero if not compatible. */
1334
1335static int
b251af97 1336compare_allocatable (gfc_symbol *formal, gfc_expr *actual)
aa08038d
EE
1337{
1338 symbol_attribute attr;
1339
1340 if (formal->attr.allocatable)
1341 {
1342 attr = gfc_expr_attr (actual);
1343 if (!attr.allocatable)
1344 return 0;
1345 }
1346
1347 return 1;
1348}
1349
1350
6de9cd9a
DN
1351/* Given a symbol of a formal argument list and an expression, if the
1352 formal argument is a pointer, see if the actual argument is a
1353 pointer. Returns nonzero if compatible, zero if not compatible. */
1354
1355static int
b251af97 1356compare_pointer (gfc_symbol *formal, gfc_expr *actual)
6de9cd9a
DN
1357{
1358 symbol_attribute attr;
1359
1360 if (formal->attr.pointer)
1361 {
1362 attr = gfc_expr_attr (actual);
1363 if (!attr.pointer)
1364 return 0;
1365 }
1366
1367 return 1;
1368}
1369
1370
1371/* Given a symbol of a formal argument list and an expression, see if
1372 the two are compatible as arguments. Returns nonzero if
1373 compatible, zero if not compatible. */
1374
1375static int
b251af97 1376compare_parameter (gfc_symbol *formal, gfc_expr *actual,
5ad6345e 1377 int ranks_must_agree, int is_elemental, locus *where)
6de9cd9a
DN
1378{
1379 gfc_ref *ref;
5ad6345e 1380 bool rank_check;
6de9cd9a 1381
a8b3b0b6
CR
1382 /* If the formal arg has type BT_VOID, it's to one of the iso_c_binding
1383 procs c_f_pointer or c_f_procpointer, and we need to accept most
1384 pointers the user could give us. This should allow that. */
1385 if (formal->ts.type == BT_VOID)
1386 return 1;
1387
1388 if (formal->ts.type == BT_DERIVED
1389 && formal->ts.derived && formal->ts.derived->ts.is_iso_c
1390 && actual->ts.type == BT_DERIVED
1391 && actual->ts.derived && actual->ts.derived->ts.is_iso_c)
1392 return 1;
1393
6de9cd9a
DN
1394 if (actual->ts.type == BT_PROCEDURE)
1395 {
8ad15a0a 1396 char err[200];
9b63f282 1397 gfc_symbol *act_sym = actual->symtree->n.sym;
6de9cd9a 1398
8ad15a0a
JW
1399 if (formal->attr.flavor != FL_PROCEDURE)
1400 {
1401 if (where)
1402 gfc_error ("Invalid procedure argument at %L", &actual->where);
1403 return 0;
1404 }
6de9cd9a 1405
9b63f282 1406 if (!gfc_compare_interfaces (formal, act_sym, 0, 1, err,
8ad15a0a
JW
1407 sizeof(err)))
1408 {
1409 if (where)
1410 gfc_error ("Interface mismatch in dummy procedure '%s' at %L: %s",
1411 formal->name, &actual->where, err);
1412 return 0;
1413 }
5ad6345e 1414
9b63f282 1415 if (formal->attr.function && !act_sym->attr.function)
03bd096b
JW
1416 {
1417 gfc_add_function (&act_sym->attr, act_sym->name,
1418 &act_sym->declared_at);
1419 if (act_sym->ts.type == BT_UNKNOWN
1420 && gfc_set_default_type (act_sym, 1, act_sym->ns) == FAILURE)
1421 return 0;
1422 }
1423 else if (formal->attr.subroutine && !act_sym->attr.subroutine)
9b63f282
JW
1424 gfc_add_subroutine (&act_sym->attr, act_sym->name,
1425 &act_sym->declared_at);
1426
5ad6345e 1427 return 1;
6de9cd9a
DN
1428 }
1429
90aeadcb 1430 if ((actual->expr_type != EXPR_NULL || actual->ts.type != BT_UNKNOWN)
1600fe22 1431 && !gfc_compare_types (&formal->ts, &actual->ts))
5ad6345e 1432 {
d68e117b 1433 if (where)
5ad6345e 1434 gfc_error ("Type mismatch in argument '%s' at %L; passed %s to %s",
d68e117b
TB
1435 formal->name, &actual->where, gfc_typename (&actual->ts),
1436 gfc_typename (&formal->ts));
5ad6345e
TB
1437 return 0;
1438 }
6de9cd9a
DN
1439
1440 if (symbol_rank (formal) == actual->rank)
1441 return 1;
1442
5ad6345e
TB
1443 rank_check = where != NULL && !is_elemental && formal->as
1444 && (formal->as->type == AS_ASSUMED_SHAPE
1445 || formal->as->type == AS_DEFERRED);
6de9cd9a 1446
5ad6345e
TB
1447 if (rank_check || ranks_must_agree || formal->attr.pointer
1448 || (actual->rank != 0 && !(is_elemental || formal->attr.dimension))
1449 || (actual->rank == 0 && formal->as->type == AS_ASSUMED_SHAPE))
1450 {
1451 if (where)
1452 gfc_error ("Rank mismatch in argument '%s' at %L (%d and %d)",
1453 formal->name, &actual->where, symbol_rank (formal),
1454 actual->rank);
6de9cd9a 1455 return 0;
5ad6345e
TB
1456 }
1457 else if (actual->rank != 0 && (is_elemental || formal->attr.dimension))
1458 return 1;
1459
1460 /* At this point, we are considering a scalar passed to an array. This
1461 is valid (cf. F95 12.4.1.1; F2003 12.4.1.2),
1462 - if the actual argument is (a substring of) an element of a
1463 non-assumed-shape/non-pointer array;
1464 - (F2003) if the actual argument is of type character. */
6de9cd9a
DN
1465
1466 for (ref = actual->ref; ref; ref = ref->next)
1467 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT)
1468 break;
1469
5ad6345e
TB
1470 /* Not an array element. */
1471 if (formal->ts.type == BT_CHARACTER
1472 && (ref == NULL
1473 || (actual->expr_type == EXPR_VARIABLE
1474 && (actual->symtree->n.sym->as->type == AS_ASSUMED_SHAPE
6da0839a 1475 || actual->symtree->n.sym->attr.pointer))))
5ad6345e
TB
1476 {
1477 if (where && (gfc_option.allow_std & GFC_STD_F2003) == 0)
1478 {
1479 gfc_error ("Fortran 2003: Scalar CHARACTER actual argument with "
1480 "array dummy argument '%s' at %L",
1481 formal->name, &actual->where);
1482 return 0;
1483 }
1484 else if ((gfc_option.allow_std & GFC_STD_F2003) == 0)
1485 return 0;
1486 else
1487 return 1;
1488 }
1489 else if (ref == NULL)
1490 {
1491 if (where)
1492 gfc_error ("Rank mismatch in argument '%s' at %L (%d and %d)",
1493 formal->name, &actual->where, symbol_rank (formal),
1494 actual->rank);
1495 return 0;
1496 }
1497
1498 if (actual->expr_type == EXPR_VARIABLE
1499 && actual->symtree->n.sym->as
1500 && (actual->symtree->n.sym->as->type == AS_ASSUMED_SHAPE
6da0839a 1501 || actual->symtree->n.sym->attr.pointer))
5ad6345e
TB
1502 {
1503 if (where)
1504 gfc_error ("Element of assumed-shaped array passed to dummy "
1505 "argument '%s' at %L", formal->name, &actual->where);
1506 return 0;
1507 }
6de9cd9a
DN
1508
1509 return 1;
1510}
1511
1512
ee7e677f
TB
1513/* Given a symbol of a formal argument list and an expression, see if
1514 the two are compatible as arguments. Returns nonzero if
1515 compatible, zero if not compatible. */
1516
1517static int
b251af97 1518compare_parameter_protected (gfc_symbol *formal, gfc_expr *actual)
ee7e677f
TB
1519{
1520 if (actual->expr_type != EXPR_VARIABLE)
1521 return 1;
1522
9aa433c2 1523 if (!actual->symtree->n.sym->attr.is_protected)
ee7e677f
TB
1524 return 1;
1525
1526 if (!actual->symtree->n.sym->attr.use_assoc)
1527 return 1;
1528
1529 if (formal->attr.intent == INTENT_IN
1530 || formal->attr.intent == INTENT_UNKNOWN)
1531 return 1;
1532
1533 if (!actual->symtree->n.sym->attr.pointer)
1534 return 0;
1535
1536 if (actual->symtree->n.sym->attr.pointer && formal->attr.pointer)
1537 return 0;
1538
1539 return 1;
1540}
1541
1542
2d5b90b2
TB
1543/* Returns the storage size of a symbol (formal argument) or
1544 zero if it cannot be determined. */
1545
1546static unsigned long
1547get_sym_storage_size (gfc_symbol *sym)
1548{
1549 int i;
1550 unsigned long strlen, elements;
1551
1552 if (sym->ts.type == BT_CHARACTER)
1553 {
1554 if (sym->ts.cl && sym->ts.cl->length
1555 && sym->ts.cl->length->expr_type == EXPR_CONSTANT)
1556 strlen = mpz_get_ui (sym->ts.cl->length->value.integer);
1557 else
1558 return 0;
1559 }
1560 else
1561 strlen = 1;
1562
1563 if (symbol_rank (sym) == 0)
1564 return strlen;
1565
1566 elements = 1;
1567 if (sym->as->type != AS_EXPLICIT)
1568 return 0;
1569 for (i = 0; i < sym->as->rank; i++)
1570 {
1571 if (!sym->as || sym->as->upper[i]->expr_type != EXPR_CONSTANT
1572 || sym->as->lower[i]->expr_type != EXPR_CONSTANT)
1573 return 0;
1574
1575 elements *= mpz_get_ui (sym->as->upper[i]->value.integer)
1576 - mpz_get_ui (sym->as->lower[i]->value.integer) + 1L;
1577 }
1578
1579 return strlen*elements;
1580}
1581
1582
1583/* Returns the storage size of an expression (actual argument) or
1584 zero if it cannot be determined. For an array element, it returns
1207ac67 1585 the remaining size as the element sequence consists of all storage
2d5b90b2
TB
1586 units of the actual argument up to the end of the array. */
1587
1588static unsigned long
1589get_expr_storage_size (gfc_expr *e)
1590{
1591 int i;
1592 long int strlen, elements;
6da0839a 1593 long int substrlen = 0;
a0710c29 1594 bool is_str_storage = false;
2d5b90b2
TB
1595 gfc_ref *ref;
1596
1597 if (e == NULL)
1598 return 0;
1599
1600 if (e->ts.type == BT_CHARACTER)
1601 {
1602 if (e->ts.cl && e->ts.cl->length
1603 && e->ts.cl->length->expr_type == EXPR_CONSTANT)
1604 strlen = mpz_get_si (e->ts.cl->length->value.integer);
1605 else if (e->expr_type == EXPR_CONSTANT
1606 && (e->ts.cl == NULL || e->ts.cl->length == NULL))
1607 strlen = e->value.character.length;
1608 else
1609 return 0;
1610 }
1611 else
1612 strlen = 1; /* Length per element. */
1613
1614 if (e->rank == 0 && !e->ref)
1615 return strlen;
1616
1617 elements = 1;
1618 if (!e->ref)
1619 {
1620 if (!e->shape)
1621 return 0;
1622 for (i = 0; i < e->rank; i++)
1623 elements *= mpz_get_si (e->shape[i]);
1624 return elements*strlen;
1625 }
1626
1627 for (ref = e->ref; ref; ref = ref->next)
1628 {
6da0839a
TB
1629 if (ref->type == REF_SUBSTRING && ref->u.ss.start
1630 && ref->u.ss.start->expr_type == EXPR_CONSTANT)
1631 {
a0710c29
TB
1632 if (is_str_storage)
1633 {
1634 /* The string length is the substring length.
1635 Set now to full string length. */
1636 if (ref->u.ss.length == NULL
1637 || ref->u.ss.length->length->expr_type != EXPR_CONSTANT)
1638 return 0;
1639
1640 strlen = mpz_get_ui (ref->u.ss.length->length->value.integer);
1641 }
1642 substrlen = strlen - mpz_get_ui (ref->u.ss.start->value.integer) + 1;
6da0839a
TB
1643 continue;
1644 }
1645
2d5b90b2
TB
1646 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION
1647 && ref->u.ar.start && ref->u.ar.end && ref->u.ar.stride
1648 && ref->u.ar.as->upper)
1649 for (i = 0; i < ref->u.ar.dimen; i++)
1650 {
1651 long int start, end, stride;
1652 stride = 1;
37639728 1653
2d5b90b2
TB
1654 if (ref->u.ar.stride[i])
1655 {
1656 if (ref->u.ar.stride[i]->expr_type == EXPR_CONSTANT)
1657 stride = mpz_get_si (ref->u.ar.stride[i]->value.integer);
1658 else
1659 return 0;
1660 }
1661
1662 if (ref->u.ar.start[i])
1663 {
1664 if (ref->u.ar.start[i]->expr_type == EXPR_CONSTANT)
1665 start = mpz_get_si (ref->u.ar.start[i]->value.integer);
1666 else
1667 return 0;
1668 }
37639728
TB
1669 else if (ref->u.ar.as->lower[i]
1670 && ref->u.ar.as->lower[i]->expr_type == EXPR_CONSTANT)
1671 start = mpz_get_si (ref->u.ar.as->lower[i]->value.integer);
1672 else
1673 return 0;
2d5b90b2
TB
1674
1675 if (ref->u.ar.end[i])
1676 {
1677 if (ref->u.ar.end[i]->expr_type == EXPR_CONSTANT)
1678 end = mpz_get_si (ref->u.ar.end[i]->value.integer);
1679 else
1680 return 0;
1681 }
1682 else if (ref->u.ar.as->upper[i]
1683 && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT)
1684 end = mpz_get_si (ref->u.ar.as->upper[i]->value.integer);
1685 else
1686 return 0;
1687
1688 elements *= (end - start)/stride + 1L;
1689 }
1690 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_FULL
1691 && ref->u.ar.as->lower && ref->u.ar.as->upper)
1692 for (i = 0; i < ref->u.ar.as->rank; i++)
1693 {
1694 if (ref->u.ar.as->lower[i] && ref->u.ar.as->upper[i]
1695 && ref->u.ar.as->lower[i]->expr_type == EXPR_CONSTANT
1696 && ref->u.ar.as->upper[i]->expr_type == EXPR_CONSTANT)
da9ad923
TB
1697 elements *= mpz_get_si (ref->u.ar.as->upper[i]->value.integer)
1698 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer)
2d5b90b2
TB
1699 + 1L;
1700 else
1701 return 0;
1702 }
6da0839a 1703 else if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT
a0710c29
TB
1704 && e->expr_type == EXPR_VARIABLE)
1705 {
1706 if (e->symtree->n.sym->as->type == AS_ASSUMED_SHAPE
1707 || e->symtree->n.sym->attr.pointer)
1708 {
1709 elements = 1;
1710 continue;
1711 }
1712
1713 /* Determine the number of remaining elements in the element
1714 sequence for array element designators. */
1715 is_str_storage = true;
1716 for (i = ref->u.ar.dimen - 1; i >= 0; i--)
1717 {
1718 if (ref->u.ar.start[i] == NULL
1719 || ref->u.ar.start[i]->expr_type != EXPR_CONSTANT
1720 || ref->u.ar.as->upper[i] == NULL
1721 || ref->u.ar.as->lower[i] == NULL
1722 || ref->u.ar.as->upper[i]->expr_type != EXPR_CONSTANT
1723 || ref->u.ar.as->lower[i]->expr_type != EXPR_CONSTANT)
1724 return 0;
1725
1726 elements
1727 = elements
1728 * (mpz_get_si (ref->u.ar.as->upper[i]->value.integer)
1729 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer)
1730 + 1L)
1731 - (mpz_get_si (ref->u.ar.start[i]->value.integer)
1732 - mpz_get_si (ref->u.ar.as->lower[i]->value.integer));
1733 }
1734 }
2d5b90b2 1735 else
2d5b90b2
TB
1736 return 0;
1737 }
1738
6da0839a 1739 if (substrlen)
a0710c29
TB
1740 return (is_str_storage) ? substrlen + (elements-1)*strlen
1741 : elements*strlen;
1742 else
1743 return elements*strlen;
2d5b90b2
TB
1744}
1745
1746
59be8071
TB
1747/* Given an expression, check whether it is an array section
1748 which has a vector subscript. If it has, one is returned,
1749 otherwise zero. */
1750
1751static int
1752has_vector_subscript (gfc_expr *e)
1753{
1754 int i;
1755 gfc_ref *ref;
1756
1757 if (e == NULL || e->rank == 0 || e->expr_type != EXPR_VARIABLE)
1758 return 0;
1759
1760 for (ref = e->ref; ref; ref = ref->next)
1761 if (ref->type == REF_ARRAY && ref->u.ar.type == AR_SECTION)
1762 for (i = 0; i < ref->u.ar.dimen; i++)
1763 if (ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
1764 return 1;
1765
1766 return 0;
1767}
1768
1769
6de9cd9a
DN
1770/* Given formal and actual argument lists, see if they are compatible.
1771 If they are compatible, the actual argument list is sorted to
1772 correspond with the formal list, and elements for missing optional
1773 arguments are inserted. If WHERE pointer is nonnull, then we issue
1774 errors when things don't match instead of just returning the status
1775 code. */
1776
f0ac18b7
DK
1777static int
1778compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
1779 int ranks_must_agree, int is_elemental, locus *where)
6de9cd9a 1780{
7b901ac4 1781 gfc_actual_arglist **new_arg, *a, *actual, temp;
6de9cd9a
DN
1782 gfc_formal_arglist *f;
1783 int i, n, na;
2d5b90b2 1784 unsigned long actual_size, formal_size;
6de9cd9a
DN
1785
1786 actual = *ap;
1787
1788 if (actual == NULL && formal == NULL)
1789 return 1;
1790
1791 n = 0;
1792 for (f = formal; f; f = f->next)
1793 n++;
1794
7b901ac4 1795 new_arg = (gfc_actual_arglist **) alloca (n * sizeof (gfc_actual_arglist *));
6de9cd9a
DN
1796
1797 for (i = 0; i < n; i++)
7b901ac4 1798 new_arg[i] = NULL;
6de9cd9a
DN
1799
1800 na = 0;
1801 f = formal;
1802 i = 0;
1803
1804 for (a = actual; a; a = a->next, f = f->next)
1805 {
7fcafa71
PT
1806 /* Look for keywords but ignore g77 extensions like %VAL. */
1807 if (a->name != NULL && a->name[0] != '%')
6de9cd9a
DN
1808 {
1809 i = 0;
1810 for (f = formal; f; f = f->next, i++)
1811 {
1812 if (f->sym == NULL)
1813 continue;
1814 if (strcmp (f->sym->name, a->name) == 0)
1815 break;
1816 }
1817
1818 if (f == NULL)
1819 {
1820 if (where)
b251af97
SK
1821 gfc_error ("Keyword argument '%s' at %L is not in "
1822 "the procedure", a->name, &a->expr->where);
6de9cd9a
DN
1823 return 0;
1824 }
1825
7b901ac4 1826 if (new_arg[i] != NULL)
6de9cd9a
DN
1827 {
1828 if (where)
b251af97
SK
1829 gfc_error ("Keyword argument '%s' at %L is already associated "
1830 "with another actual argument", a->name,
1831 &a->expr->where);
6de9cd9a
DN
1832 return 0;
1833 }
1834 }
1835
1836 if (f == NULL)
1837 {
1838 if (where)
b251af97
SK
1839 gfc_error ("More actual than formal arguments in procedure "
1840 "call at %L", where);
6de9cd9a
DN
1841
1842 return 0;
1843 }
1844
1845 if (f->sym == NULL && a->expr == NULL)
1846 goto match;
1847
1848 if (f->sym == NULL)
1849 {
1850 if (where)
b251af97
SK
1851 gfc_error ("Missing alternate return spec in subroutine call "
1852 "at %L", where);
6de9cd9a
DN
1853 return 0;
1854 }
1855
1856 if (a->expr == NULL)
1857 {
1858 if (where)
b251af97
SK
1859 gfc_error ("Unexpected alternate return spec in subroutine "
1860 "call at %L", where);
6de9cd9a
DN
1861 return 0;
1862 }
5ad6345e
TB
1863
1864 if (!compare_parameter (f->sym, a->expr, ranks_must_agree,
1865 is_elemental, where))
1866 return 0;
6de9cd9a 1867
a0710c29
TB
1868 /* Special case for character arguments. For allocatable, pointer
1869 and assumed-shape dummies, the string length needs to match
1870 exactly. */
2d5b90b2 1871 if (a->expr->ts.type == BT_CHARACTER
a0324f7b
TB
1872 && a->expr->ts.cl && a->expr->ts.cl->length
1873 && a->expr->ts.cl->length->expr_type == EXPR_CONSTANT
1874 && f->sym->ts.cl && f->sym->ts.cl && f->sym->ts.cl->length
a0710c29
TB
1875 && f->sym->ts.cl->length->expr_type == EXPR_CONSTANT
1876 && (f->sym->attr.pointer || f->sym->attr.allocatable
1877 || (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
1878 && (mpz_cmp (a->expr->ts.cl->length->value.integer,
1879 f->sym->ts.cl->length->value.integer) != 0))
a0324f7b 1880 {
a0710c29
TB
1881 if (where && (f->sym->attr.pointer || f->sym->attr.allocatable))
1882 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
1883 "argument and pointer or allocatable dummy argument "
1884 "'%s' at %L",
1885 mpz_get_si (a->expr->ts.cl->length->value.integer),
1886 mpz_get_si (f->sym->ts.cl->length->value.integer),
1887 f->sym->name, &a->expr->where);
1888 else if (where)
1889 gfc_warning ("Character length mismatch (%ld/%ld) between actual "
1890 "argument and assumed-shape dummy argument '%s' "
1891 "at %L",
1892 mpz_get_si (a->expr->ts.cl->length->value.integer),
1893 mpz_get_si (f->sym->ts.cl->length->value.integer),
1894 f->sym->name, &a->expr->where);
1895 return 0;
a0324f7b
TB
1896 }
1897
37639728
TB
1898 actual_size = get_expr_storage_size (a->expr);
1899 formal_size = get_sym_storage_size (f->sym);
16f2a7a4
PT
1900 if (actual_size != 0
1901 && actual_size < formal_size
1902 && a->expr->ts.type != BT_PROCEDURE)
2d5b90b2
TB
1903 {
1904 if (a->expr->ts.type == BT_CHARACTER && !f->sym->as && where)
1905 gfc_warning ("Character length of actual argument shorter "
096f0d9d
FXC
1906 "than of dummy argument '%s' (%lu/%lu) at %L",
1907 f->sym->name, actual_size, formal_size,
1908 &a->expr->where);
2d5b90b2
TB
1909 else if (where)
1910 gfc_warning ("Actual argument contains too few "
096f0d9d
FXC
1911 "elements for dummy argument '%s' (%lu/%lu) at %L",
1912 f->sym->name, actual_size, formal_size,
1913 &a->expr->where);
2d5b90b2
TB
1914 return 0;
1915 }
1916
8fb74da4
JW
1917 /* Satisfy 12.4.1.3 by ensuring that a procedure pointer actual argument
1918 is provided for a procedure pointer formal argument. */
1919 if (f->sym->attr.proc_pointer
a7c0b11d
JW
1920 && !((a->expr->expr_type == EXPR_VARIABLE
1921 && a->expr->symtree->n.sym->attr.proc_pointer)
1922 || (a->expr->expr_type == EXPR_FUNCTION
1923 && a->expr->symtree->n.sym->result->attr.proc_pointer)
f64edc8b 1924 || gfc_is_proc_ptr_comp (a->expr, NULL)))
8fb74da4
JW
1925 {
1926 if (where)
1927 gfc_error ("Expected a procedure pointer for argument '%s' at %L",
1928 f->sym->name, &a->expr->where);
1929 return 0;
1930 }
1931
699fa7aa
PT
1932 /* Satisfy 12.4.1.2 by ensuring that a procedure actual argument is
1933 provided for a procedure formal argument. */
f64edc8b 1934 if (a->expr->ts.type != BT_PROCEDURE && !gfc_is_proc_ptr_comp (a->expr, NULL)
699fa7aa
PT
1935 && a->expr->expr_type == EXPR_VARIABLE
1936 && f->sym->attr.flavor == FL_PROCEDURE)
1937 {
9914f8cf
PT
1938 if (where)
1939 gfc_error ("Expected a procedure for argument '%s' at %L",
1940 f->sym->name, &a->expr->where);
1941 return 0;
699fa7aa
PT
1942 }
1943
b251af97
SK
1944 if (f->sym->attr.flavor == FL_PROCEDURE && f->sym->attr.pure
1945 && a->expr->ts.type == BT_PROCEDURE
1946 && !a->expr->symtree->n.sym->attr.pure)
d68bd5a8
PT
1947 {
1948 if (where)
1949 gfc_error ("Expected a PURE procedure for argument '%s' at %L",
1950 f->sym->name, &a->expr->where);
1951 return 0;
1952 }
1953
b251af97 1954 if (f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE
bf9d2177
JJ
1955 && a->expr->expr_type == EXPR_VARIABLE
1956 && a->expr->symtree->n.sym->as
1957 && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SIZE
1958 && (a->expr->ref == NULL
1959 || (a->expr->ref->type == REF_ARRAY
1960 && a->expr->ref->u.ar.type == AR_FULL)))
1961 {
1962 if (where)
1963 gfc_error ("Actual argument for '%s' cannot be an assumed-size"
1964 " array at %L", f->sym->name, where);
1965 return 0;
1966 }
1967
1600fe22
TS
1968 if (a->expr->expr_type != EXPR_NULL
1969 && compare_pointer (f->sym, a->expr) == 0)
6de9cd9a
DN
1970 {
1971 if (where)
1972 gfc_error ("Actual argument for '%s' must be a pointer at %L",
1973 f->sym->name, &a->expr->where);
1974 return 0;
1975 }
1976
aa08038d
EE
1977 if (a->expr->expr_type != EXPR_NULL
1978 && compare_allocatable (f->sym, a->expr) == 0)
1979 {
1980 if (where)
1981 gfc_error ("Actual argument for '%s' must be ALLOCATABLE at %L",
1982 f->sym->name, &a->expr->where);
1983 return 0;
1984 }
1985
a920e94a 1986 /* Check intent = OUT/INOUT for definable actual argument. */
a5c655e8 1987 if ((a->expr->expr_type != EXPR_VARIABLE
ac61ba6a
TB
1988 || (a->expr->symtree->n.sym->attr.flavor != FL_VARIABLE
1989 && a->expr->symtree->n.sym->attr.flavor != FL_PROCEDURE))
b251af97
SK
1990 && (f->sym->attr.intent == INTENT_OUT
1991 || f->sym->attr.intent == INTENT_INOUT))
a920e94a 1992 {
536afc35 1993 if (where)
a5c655e8
TB
1994 gfc_error ("Actual argument at %L must be definable as "
1995 "the dummy argument '%s' is INTENT = OUT/INOUT",
1996 &a->expr->where, f->sym->name);
b251af97
SK
1997 return 0;
1998 }
a920e94a 1999
ee7e677f
TB
2000 if (!compare_parameter_protected(f->sym, a->expr))
2001 {
2002 if (where)
2003 gfc_error ("Actual argument at %L is use-associated with "
2004 "PROTECTED attribute and dummy argument '%s' is "
2005 "INTENT = OUT/INOUT",
2006 &a->expr->where,f->sym->name);
b251af97 2007 return 0;
ee7e677f
TB
2008 }
2009
59be8071
TB
2010 if ((f->sym->attr.intent == INTENT_OUT
2011 || f->sym->attr.intent == INTENT_INOUT
2012 || f->sym->attr.volatile_)
2013 && has_vector_subscript (a->expr))
2014 {
2015 if (where)
2016 gfc_error ("Array-section actual argument with vector subscripts "
a0710c29 2017 "at %L is incompatible with INTENT(OUT), INTENT(INOUT) "
59be8071
TB
2018 "or VOLATILE attribute of the dummy argument '%s'",
2019 &a->expr->where, f->sym->name);
2020 return 0;
2021 }
2022
9bce3c1c
TB
2023 /* C1232 (R1221) For an actual argument which is an array section or
2024 an assumed-shape array, the dummy argument shall be an assumed-
2025 shape array, if the dummy argument has the VOLATILE attribute. */
2026
2027 if (f->sym->attr.volatile_
2028 && a->expr->symtree->n.sym->as
2029 && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SHAPE
2030 && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2031 {
2032 if (where)
2033 gfc_error ("Assumed-shape actual argument at %L is "
2034 "incompatible with the non-assumed-shape "
2035 "dummy argument '%s' due to VOLATILE attribute",
2036 &a->expr->where,f->sym->name);
2037 return 0;
2038 }
2039
2040 if (f->sym->attr.volatile_
2041 && a->expr->ref && a->expr->ref->u.ar.type == AR_SECTION
2042 && !(f->sym->as && f->sym->as->type == AS_ASSUMED_SHAPE))
2043 {
2044 if (where)
2045 gfc_error ("Array-section actual argument at %L is "
2046 "incompatible with the non-assumed-shape "
2047 "dummy argument '%s' due to VOLATILE attribute",
2048 &a->expr->where,f->sym->name);
2049 return 0;
2050 }
2051
2052 /* C1233 (R1221) For an actual argument which is a pointer array, the
2053 dummy argument shall be an assumed-shape or pointer array, if the
2054 dummy argument has the VOLATILE attribute. */
2055
2056 if (f->sym->attr.volatile_
2057 && a->expr->symtree->n.sym->attr.pointer
2058 && a->expr->symtree->n.sym->as
2059 && !(f->sym->as
2060 && (f->sym->as->type == AS_ASSUMED_SHAPE
2061 || f->sym->attr.pointer)))
2062 {
2063 if (where)
2064 gfc_error ("Pointer-array actual argument at %L requires "
2065 "an assumed-shape or pointer-array dummy "
2066 "argument '%s' due to VOLATILE attribute",
2067 &a->expr->where,f->sym->name);
2068 return 0;
2069 }
2070
6de9cd9a
DN
2071 match:
2072 if (a == actual)
2073 na = i;
2074
7b901ac4 2075 new_arg[i++] = a;
6de9cd9a
DN
2076 }
2077
2078 /* Make sure missing actual arguments are optional. */
2079 i = 0;
2080 for (f = formal; f; f = f->next, i++)
2081 {
7b901ac4 2082 if (new_arg[i] != NULL)
6de9cd9a 2083 continue;
3ab7b3de
BM
2084 if (f->sym == NULL)
2085 {
2086 if (where)
b251af97
SK
2087 gfc_error ("Missing alternate return spec in subroutine call "
2088 "at %L", where);
3ab7b3de
BM
2089 return 0;
2090 }
6de9cd9a
DN
2091 if (!f->sym->attr.optional)
2092 {
2093 if (where)
2094 gfc_error ("Missing actual argument for argument '%s' at %L",
2095 f->sym->name, where);
2096 return 0;
2097 }
2098 }
2099
2100 /* The argument lists are compatible. We now relink a new actual
2101 argument list with null arguments in the right places. The head
2102 of the list remains the head. */
2103 for (i = 0; i < n; i++)
7b901ac4
KG
2104 if (new_arg[i] == NULL)
2105 new_arg[i] = gfc_get_actual_arglist ();
6de9cd9a
DN
2106
2107 if (na != 0)
2108 {
7b901ac4
KG
2109 temp = *new_arg[0];
2110 *new_arg[0] = *actual;
6de9cd9a
DN
2111 *actual = temp;
2112
7b901ac4
KG
2113 a = new_arg[0];
2114 new_arg[0] = new_arg[na];
2115 new_arg[na] = a;
6de9cd9a
DN
2116 }
2117
2118 for (i = 0; i < n - 1; i++)
7b901ac4 2119 new_arg[i]->next = new_arg[i + 1];
6de9cd9a 2120
7b901ac4 2121 new_arg[i]->next = NULL;
6de9cd9a
DN
2122
2123 if (*ap == NULL && n > 0)
7b901ac4 2124 *ap = new_arg[0];
6de9cd9a 2125
1600fe22 2126 /* Note the types of omitted optional arguments. */
b5ca4fd2 2127 for (a = *ap, f = formal; a; a = a->next, f = f->next)
1600fe22
TS
2128 if (a->expr == NULL && a->label == NULL)
2129 a->missing_arg_type = f->sym->ts.type;
2130
6de9cd9a
DN
2131 return 1;
2132}
2133
2134
2135typedef struct
2136{
2137 gfc_formal_arglist *f;
2138 gfc_actual_arglist *a;
2139}
2140argpair;
2141
2142/* qsort comparison function for argument pairs, with the following
2143 order:
2144 - p->a->expr == NULL
2145 - p->a->expr->expr_type != EXPR_VARIABLE
f7b529fa 2146 - growing p->a->expr->symbol. */
6de9cd9a
DN
2147
2148static int
2149pair_cmp (const void *p1, const void *p2)
2150{
2151 const gfc_actual_arglist *a1, *a2;
2152
2153 /* *p1 and *p2 are elements of the to-be-sorted array. */
2154 a1 = ((const argpair *) p1)->a;
2155 a2 = ((const argpair *) p2)->a;
2156 if (!a1->expr)
2157 {
2158 if (!a2->expr)
2159 return 0;
2160 return -1;
2161 }
2162 if (!a2->expr)
2163 return 1;
2164 if (a1->expr->expr_type != EXPR_VARIABLE)
2165 {
2166 if (a2->expr->expr_type != EXPR_VARIABLE)
2167 return 0;
2168 return -1;
2169 }
2170 if (a2->expr->expr_type != EXPR_VARIABLE)
2171 return 1;
2172 return a1->expr->symtree->n.sym < a2->expr->symtree->n.sym;
2173}
2174
2175
2176/* Given two expressions from some actual arguments, test whether they
2177 refer to the same expression. The analysis is conservative.
2178 Returning FAILURE will produce no warning. */
2179
17b1d2a0 2180static gfc_try
b251af97 2181compare_actual_expr (gfc_expr *e1, gfc_expr *e2)
6de9cd9a
DN
2182{
2183 const gfc_ref *r1, *r2;
2184
2185 if (!e1 || !e2
2186 || e1->expr_type != EXPR_VARIABLE
2187 || e2->expr_type != EXPR_VARIABLE
2188 || e1->symtree->n.sym != e2->symtree->n.sym)
2189 return FAILURE;
2190
2191 /* TODO: improve comparison, see expr.c:show_ref(). */
2192 for (r1 = e1->ref, r2 = e2->ref; r1 && r2; r1 = r1->next, r2 = r2->next)
2193 {
2194 if (r1->type != r2->type)
2195 return FAILURE;
2196 switch (r1->type)
2197 {
2198 case REF_ARRAY:
2199 if (r1->u.ar.type != r2->u.ar.type)
2200 return FAILURE;
2201 /* TODO: At the moment, consider only full arrays;
2202 we could do better. */
2203 if (r1->u.ar.type != AR_FULL || r2->u.ar.type != AR_FULL)
2204 return FAILURE;
2205 break;
2206
2207 case REF_COMPONENT:
2208 if (r1->u.c.component != r2->u.c.component)
2209 return FAILURE;
2210 break;
2211
2212 case REF_SUBSTRING:
2213 return FAILURE;
2214
2215 default:
2216 gfc_internal_error ("compare_actual_expr(): Bad component code");
2217 }
2218 }
2219 if (!r1 && !r2)
2220 return SUCCESS;
2221 return FAILURE;
2222}
2223
b251af97 2224
6de9cd9a
DN
2225/* Given formal and actual argument lists that correspond to one
2226 another, check that identical actual arguments aren't not
2227 associated with some incompatible INTENTs. */
2228
17b1d2a0 2229static gfc_try
b251af97 2230check_some_aliasing (gfc_formal_arglist *f, gfc_actual_arglist *a)
6de9cd9a
DN
2231{
2232 sym_intent f1_intent, f2_intent;
2233 gfc_formal_arglist *f1;
2234 gfc_actual_arglist *a1;
2235 size_t n, i, j;
2236 argpair *p;
17b1d2a0 2237 gfc_try t = SUCCESS;
6de9cd9a
DN
2238
2239 n = 0;
2240 for (f1 = f, a1 = a;; f1 = f1->next, a1 = a1->next)
2241 {
2242 if (f1 == NULL && a1 == NULL)
2243 break;
2244 if (f1 == NULL || a1 == NULL)
2245 gfc_internal_error ("check_some_aliasing(): List mismatch");
2246 n++;
2247 }
2248 if (n == 0)
2249 return t;
2250 p = (argpair *) alloca (n * sizeof (argpair));
2251
2252 for (i = 0, f1 = f, a1 = a; i < n; i++, f1 = f1->next, a1 = a1->next)
2253 {
2254 p[i].f = f1;
2255 p[i].a = a1;
2256 }
2257
2258 qsort (p, n, sizeof (argpair), pair_cmp);
2259
2260 for (i = 0; i < n; i++)
2261 {
2262 if (!p[i].a->expr
2263 || p[i].a->expr->expr_type != EXPR_VARIABLE
2264 || p[i].a->expr->ts.type == BT_PROCEDURE)
2265 continue;
2266 f1_intent = p[i].f->sym->attr.intent;
2267 for (j = i + 1; j < n; j++)
2268 {
2269 /* Expected order after the sort. */
2270 if (!p[j].a->expr || p[j].a->expr->expr_type != EXPR_VARIABLE)
2271 gfc_internal_error ("check_some_aliasing(): corrupted data");
2272
2273 /* Are the expression the same? */
2274 if (compare_actual_expr (p[i].a->expr, p[j].a->expr) == FAILURE)
2275 break;
2276 f2_intent = p[j].f->sym->attr.intent;
2277 if ((f1_intent == INTENT_IN && f2_intent == INTENT_OUT)
2278 || (f1_intent == INTENT_OUT && f2_intent == INTENT_IN))
2279 {
2280 gfc_warning ("Same actual argument associated with INTENT(%s) "
2281 "argument '%s' and INTENT(%s) argument '%s' at %L",
2282 gfc_intent_string (f1_intent), p[i].f->sym->name,
2283 gfc_intent_string (f2_intent), p[j].f->sym->name,
2284 &p[i].a->expr->where);
2285 t = FAILURE;
2286 }
2287 }
2288 }
2289
2290 return t;
2291}
2292
2293
f17facac 2294/* Given a symbol of a formal argument list and an expression,
86bf520d 2295 return nonzero if their intents are compatible, zero otherwise. */
f17facac
TB
2296
2297static int
b251af97 2298compare_parameter_intent (gfc_symbol *formal, gfc_expr *actual)
f17facac 2299{
b251af97 2300 if (actual->symtree->n.sym->attr.pointer && !formal->attr.pointer)
f17facac
TB
2301 return 1;
2302
2303 if (actual->symtree->n.sym->attr.intent != INTENT_IN)
2304 return 1;
2305
b251af97 2306 if (formal->attr.intent == INTENT_INOUT || formal->attr.intent == INTENT_OUT)
f17facac
TB
2307 return 0;
2308
2309 return 1;
2310}
2311
2312
6de9cd9a
DN
2313/* Given formal and actual argument lists that correspond to one
2314 another, check that they are compatible in the sense that intents
2315 are not mismatched. */
2316
17b1d2a0 2317static gfc_try
b251af97 2318check_intents (gfc_formal_arglist *f, gfc_actual_arglist *a)
6de9cd9a 2319{
f17facac 2320 sym_intent f_intent;
6de9cd9a
DN
2321
2322 for (;; f = f->next, a = a->next)
2323 {
2324 if (f == NULL && a == NULL)
2325 break;
2326 if (f == NULL || a == NULL)
2327 gfc_internal_error ("check_intents(): List mismatch");
2328
2329 if (a->expr == NULL || a->expr->expr_type != EXPR_VARIABLE)
2330 continue;
2331
6de9cd9a
DN
2332 f_intent = f->sym->attr.intent;
2333
f17facac 2334 if (!compare_parameter_intent(f->sym, a->expr))
6de9cd9a 2335 {
6de9cd9a
DN
2336 gfc_error ("Procedure argument at %L is INTENT(IN) while interface "
2337 "specifies INTENT(%s)", &a->expr->where,
2338 gfc_intent_string (f_intent));
2339 return FAILURE;
2340 }
2341
2342 if (gfc_pure (NULL) && gfc_impure_variable (a->expr->symtree->n.sym))
2343 {
2344 if (f_intent == INTENT_INOUT || f_intent == INTENT_OUT)
2345 {
b251af97
SK
2346 gfc_error ("Procedure argument at %L is local to a PURE "
2347 "procedure and is passed to an INTENT(%s) argument",
2348 &a->expr->where, gfc_intent_string (f_intent));
6de9cd9a
DN
2349 return FAILURE;
2350 }
2351
c4e3543d 2352 if (f->sym->attr.pointer)
6de9cd9a 2353 {
b251af97
SK
2354 gfc_error ("Procedure argument at %L is local to a PURE "
2355 "procedure and has the POINTER attribute",
2356 &a->expr->where);
6de9cd9a
DN
2357 return FAILURE;
2358 }
2359 }
2360 }
2361
2362 return SUCCESS;
2363}
2364
2365
2366/* Check how a procedure is used against its interface. If all goes
2367 well, the actual argument list will also end up being properly
2368 sorted. */
2369
2370void
b251af97 2371gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where)
6de9cd9a 2372{
c4bbc105 2373
a9c5fe7e
TK
2374 /* Warn about calls with an implicit interface. Special case
2375 for calling a ISO_C_BINDING becase c_loc and c_funloc
2376 are pseudo-unknown. */
6de9cd9a 2377 if (gfc_option.warn_implicit_interface
a9c5fe7e
TK
2378 && sym->attr.if_source == IFSRC_UNKNOWN
2379 && ! sym->attr.is_iso_c)
6de9cd9a 2380 gfc_warning ("Procedure '%s' called with an implicit interface at %L",
b251af97 2381 sym->name, where);
6de9cd9a 2382
e6895430 2383 if (sym->attr.if_source == IFSRC_UNKNOWN)
ac05557c
DF
2384 {
2385 gfc_actual_arglist *a;
2386 for (a = *ap; a; a = a->next)
2387 {
2388 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
2389 if (a->name != NULL && a->name[0] != '%')
2390 {
2391 gfc_error("Keyword argument requires explicit interface "
2392 "for procedure '%s' at %L", sym->name, &a->expr->where);
2393 break;
2394 }
2395 }
2396
2397 return;
2398 }
2399
f0ac18b7 2400 if (!compare_actual_formal (ap, sym->formal, 0, sym->attr.elemental, where))
6de9cd9a
DN
2401 return;
2402
2403 check_intents (sym->formal, *ap);
2404 if (gfc_option.warn_aliasing)
2405 check_some_aliasing (sym->formal, *ap);
2406}
2407
2408
7e196f89
JW
2409/* Check how a procedure pointer component is used against its interface.
2410 If all goes well, the actual argument list will also end up being properly
2411 sorted. Completely analogous to gfc_procedure_use. */
2412
2413void
2414gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where)
2415{
2416
2417 /* Warn about calls with an implicit interface. Special case
2418 for calling a ISO_C_BINDING becase c_loc and c_funloc
2419 are pseudo-unknown. */
2420 if (gfc_option.warn_implicit_interface
2421 && comp->attr.if_source == IFSRC_UNKNOWN
2422 && !comp->attr.is_iso_c)
2423 gfc_warning ("Procedure pointer component '%s' called with an implicit "
2424 "interface at %L", comp->name, where);
2425
2426 if (comp->attr.if_source == IFSRC_UNKNOWN)
2427 {
2428 gfc_actual_arglist *a;
2429 for (a = *ap; a; a = a->next)
2430 {
2431 /* Skip g77 keyword extensions like %VAL, %REF, %LOC. */
2432 if (a->name != NULL && a->name[0] != '%')
2433 {
2434 gfc_error("Keyword argument requires explicit interface "
2435 "for procedure pointer component '%s' at %L",
2436 comp->name, &a->expr->where);
2437 break;
2438 }
2439 }
2440
2441 return;
2442 }
2443
2444 if (!compare_actual_formal (ap, comp->formal, 0, comp->attr.elemental, where))
2445 return;
2446
2447 check_intents (comp->formal, *ap);
2448 if (gfc_option.warn_aliasing)
2449 check_some_aliasing (comp->formal, *ap);
2450}
2451
2452
f0ac18b7
DK
2453/* Try if an actual argument list matches the formal list of a symbol,
2454 respecting the symbol's attributes like ELEMENTAL. This is used for
2455 GENERIC resolution. */
2456
2457bool
2458gfc_arglist_matches_symbol (gfc_actual_arglist** args, gfc_symbol* sym)
2459{
2460 bool r;
2461
2462 gcc_assert (sym->attr.flavor == FL_PROCEDURE);
2463
2464 r = !sym->attr.elemental;
2465 if (compare_actual_formal (args, sym->formal, r, !r, NULL))
2466 {
2467 check_intents (sym->formal, *args);
2468 if (gfc_option.warn_aliasing)
2469 check_some_aliasing (sym->formal, *args);
2470 return true;
2471 }
2472
2473 return false;
2474}
2475
2476
6de9cd9a
DN
2477/* Given an interface pointer and an actual argument list, search for
2478 a formal argument list that matches the actual. If found, returns
2479 a pointer to the symbol of the correct interface. Returns NULL if
2480 not found. */
2481
2482gfc_symbol *
b251af97
SK
2483gfc_search_interface (gfc_interface *intr, int sub_flag,
2484 gfc_actual_arglist **ap)
6de9cd9a 2485{
22a0a780 2486 gfc_symbol *elem_sym = NULL;
6de9cd9a
DN
2487 for (; intr; intr = intr->next)
2488 {
2489 if (sub_flag && intr->sym->attr.function)
2490 continue;
2491 if (!sub_flag && intr->sym->attr.subroutine)
2492 continue;
2493
f0ac18b7 2494 if (gfc_arglist_matches_symbol (ap, intr->sym))
22a0a780
PT
2495 {
2496 /* Satisfy 12.4.4.1 such that an elemental match has lower
2497 weight than a non-elemental match. */
2498 if (intr->sym->attr.elemental)
2499 {
2500 elem_sym = intr->sym;
2501 continue;
2502 }
2503 return intr->sym;
2504 }
6de9cd9a
DN
2505 }
2506
22a0a780 2507 return elem_sym ? elem_sym : NULL;
6de9cd9a
DN
2508}
2509
2510
2511/* Do a brute force recursive search for a symbol. */
2512
2513static gfc_symtree *
b251af97 2514find_symtree0 (gfc_symtree *root, gfc_symbol *sym)
6de9cd9a
DN
2515{
2516 gfc_symtree * st;
2517
2518 if (root->n.sym == sym)
2519 return root;
2520
2521 st = NULL;
2522 if (root->left)
2523 st = find_symtree0 (root->left, sym);
2524 if (root->right && ! st)
2525 st = find_symtree0 (root->right, sym);
2526 return st;
2527}
2528
2529
2530/* Find a symtree for a symbol. */
2531
f6fad28e
DK
2532gfc_symtree *
2533gfc_find_sym_in_symtree (gfc_symbol *sym)
6de9cd9a
DN
2534{
2535 gfc_symtree *st;
2536 gfc_namespace *ns;
2537
2538 /* First try to find it by name. */
2539 gfc_find_sym_tree (sym->name, gfc_current_ns, 1, &st);
2540 if (st && st->n.sym == sym)
2541 return st;
2542
66e4ab31 2543 /* If it's been renamed, resort to a brute-force search. */
6de9cd9a
DN
2544 /* TODO: avoid having to do this search. If the symbol doesn't exist
2545 in the symtree for the current namespace, it should probably be added. */
2546 for (ns = gfc_current_ns; ns; ns = ns->parent)
2547 {
2548 st = find_symtree0 (ns->sym_root, sym);
2549 if (st)
b251af97 2550 return st;
6de9cd9a
DN
2551 }
2552 gfc_internal_error ("Unable to find symbol %s", sym->name);
66e4ab31 2553 /* Not reached. */
6de9cd9a
DN
2554}
2555
2556
2557/* This subroutine is called when an expression is being resolved.
2558 The expression node in question is either a user defined operator
1f2959f0 2559 or an intrinsic operator with arguments that aren't compatible
6de9cd9a
DN
2560 with the operator. This subroutine builds an actual argument list
2561 corresponding to the operands, then searches for a compatible
2562 interface. If one is found, the expression node is replaced with
2563 the appropriate function call. */
2564
17b1d2a0 2565gfc_try
b251af97 2566gfc_extend_expr (gfc_expr *e)
6de9cd9a
DN
2567{
2568 gfc_actual_arglist *actual;
2569 gfc_symbol *sym;
2570 gfc_namespace *ns;
2571 gfc_user_op *uop;
2572 gfc_intrinsic_op i;
2573
2574 sym = NULL;
2575
2576 actual = gfc_get_actual_arglist ();
58b03ab2 2577 actual->expr = e->value.op.op1;
6de9cd9a 2578
58b03ab2 2579 if (e->value.op.op2 != NULL)
6de9cd9a
DN
2580 {
2581 actual->next = gfc_get_actual_arglist ();
58b03ab2 2582 actual->next->expr = e->value.op.op2;
6de9cd9a
DN
2583 }
2584
e8d4f3fc 2585 i = fold_unary_intrinsic (e->value.op.op);
6de9cd9a
DN
2586
2587 if (i == INTRINSIC_USER)
2588 {
2589 for (ns = gfc_current_ns; ns; ns = ns->parent)
2590 {
58b03ab2 2591 uop = gfc_find_uop (e->value.op.uop->name, ns);
6de9cd9a
DN
2592 if (uop == NULL)
2593 continue;
2594
a1ee985f 2595 sym = gfc_search_interface (uop->op, 0, &actual);
6de9cd9a
DN
2596 if (sym != NULL)
2597 break;
2598 }
2599 }
2600 else
2601 {
2602 for (ns = gfc_current_ns; ns; ns = ns->parent)
2603 {
3bed9dd0
DF
2604 /* Due to the distinction between '==' and '.eq.' and friends, one has
2605 to check if either is defined. */
2606 switch (i)
2607 {
2608 case INTRINSIC_EQ:
2609 case INTRINSIC_EQ_OS:
a1ee985f 2610 sym = gfc_search_interface (ns->op[INTRINSIC_EQ], 0, &actual);
3bed9dd0 2611 if (sym == NULL)
a1ee985f 2612 sym = gfc_search_interface (ns->op[INTRINSIC_EQ_OS], 0, &actual);
3bed9dd0
DF
2613 break;
2614
2615 case INTRINSIC_NE:
2616 case INTRINSIC_NE_OS:
a1ee985f 2617 sym = gfc_search_interface (ns->op[INTRINSIC_NE], 0, &actual);
3bed9dd0 2618 if (sym == NULL)
a1ee985f 2619 sym = gfc_search_interface (ns->op[INTRINSIC_NE_OS], 0, &actual);
3bed9dd0
DF
2620 break;
2621
2622 case INTRINSIC_GT:
2623 case INTRINSIC_GT_OS:
a1ee985f 2624 sym = gfc_search_interface (ns->op[INTRINSIC_GT], 0, &actual);
3bed9dd0 2625 if (sym == NULL)
a1ee985f 2626 sym = gfc_search_interface (ns->op[INTRINSIC_GT_OS], 0, &actual);
3bed9dd0
DF
2627 break;
2628
2629 case INTRINSIC_GE:
2630 case INTRINSIC_GE_OS:
a1ee985f 2631 sym = gfc_search_interface (ns->op[INTRINSIC_GE], 0, &actual);
3bed9dd0 2632 if (sym == NULL)
a1ee985f 2633 sym = gfc_search_interface (ns->op[INTRINSIC_GE_OS], 0, &actual);
3bed9dd0
DF
2634 break;
2635
2636 case INTRINSIC_LT:
2637 case INTRINSIC_LT_OS:
a1ee985f 2638 sym = gfc_search_interface (ns->op[INTRINSIC_LT], 0, &actual);
3bed9dd0 2639 if (sym == NULL)
a1ee985f 2640 sym = gfc_search_interface (ns->op[INTRINSIC_LT_OS], 0, &actual);
3bed9dd0
DF
2641 break;
2642
2643 case INTRINSIC_LE:
2644 case INTRINSIC_LE_OS:
a1ee985f 2645 sym = gfc_search_interface (ns->op[INTRINSIC_LE], 0, &actual);
3bed9dd0 2646 if (sym == NULL)
a1ee985f 2647 sym = gfc_search_interface (ns->op[INTRINSIC_LE_OS], 0, &actual);
3bed9dd0
DF
2648 break;
2649
2650 default:
a1ee985f 2651 sym = gfc_search_interface (ns->op[i], 0, &actual);
3bed9dd0
DF
2652 }
2653
6de9cd9a
DN
2654 if (sym != NULL)
2655 break;
2656 }
2657 }
2658
2659 if (sym == NULL)
2660 {
66e4ab31 2661 /* Don't use gfc_free_actual_arglist(). */
6de9cd9a
DN
2662 if (actual->next != NULL)
2663 gfc_free (actual->next);
2664 gfc_free (actual);
2665
2666 return FAILURE;
2667 }
2668
2669 /* Change the expression node to a function call. */
2670 e->expr_type = EXPR_FUNCTION;
f6fad28e 2671 e->symtree = gfc_find_sym_in_symtree (sym);
6de9cd9a 2672 e->value.function.actual = actual;
58b03ab2
TS
2673 e->value.function.esym = NULL;
2674 e->value.function.isym = NULL;
cf013e9f 2675 e->value.function.name = NULL;
a1ab6660 2676 e->user_operator = 1;
6de9cd9a
DN
2677
2678 if (gfc_pure (NULL) && !gfc_pure (sym))
2679 {
b251af97
SK
2680 gfc_error ("Function '%s' called in lieu of an operator at %L must "
2681 "be PURE", sym->name, &e->where);
6de9cd9a
DN
2682 return FAILURE;
2683 }
2684
2685 if (gfc_resolve_expr (e) == FAILURE)
2686 return FAILURE;
2687
2688 return SUCCESS;
2689}
2690
2691
2692/* Tries to replace an assignment code node with a subroutine call to
2693 the subroutine associated with the assignment operator. Return
2694 SUCCESS if the node was replaced. On FAILURE, no error is
2695 generated. */
2696
17b1d2a0 2697gfc_try
b251af97 2698gfc_extend_assign (gfc_code *c, gfc_namespace *ns)
6de9cd9a
DN
2699{
2700 gfc_actual_arglist *actual;
2701 gfc_expr *lhs, *rhs;
2702 gfc_symbol *sym;
2703
a513927a 2704 lhs = c->expr1;
6de9cd9a
DN
2705 rhs = c->expr2;
2706
2707 /* Don't allow an intrinsic assignment to be replaced. */
e19bb186
TB
2708 if (lhs->ts.type != BT_DERIVED
2709 && (rhs->rank == 0 || rhs->rank == lhs->rank)
6de9cd9a 2710 && (lhs->ts.type == rhs->ts.type
b251af97 2711 || (gfc_numeric_ts (&lhs->ts) && gfc_numeric_ts (&rhs->ts))))
6de9cd9a
DN
2712 return FAILURE;
2713
2714 actual = gfc_get_actual_arglist ();
2715 actual->expr = lhs;
2716
2717 actual->next = gfc_get_actual_arglist ();
2718 actual->next->expr = rhs;
2719
2720 sym = NULL;
2721
2722 for (; ns; ns = ns->parent)
2723 {
a1ee985f 2724 sym = gfc_search_interface (ns->op[INTRINSIC_ASSIGN], 1, &actual);
6de9cd9a
DN
2725 if (sym != NULL)
2726 break;
2727 }
2728
2729 if (sym == NULL)
2730 {
2731 gfc_free (actual->next);
2732 gfc_free (actual);
2733 return FAILURE;
2734 }
2735
2736 /* Replace the assignment with the call. */
476220e7 2737 c->op = EXEC_ASSIGN_CALL;
f6fad28e 2738 c->symtree = gfc_find_sym_in_symtree (sym);
a513927a 2739 c->expr1 = NULL;
6de9cd9a
DN
2740 c->expr2 = NULL;
2741 c->ext.actual = actual;
2742
6de9cd9a
DN
2743 return SUCCESS;
2744}
2745
2746
2747/* Make sure that the interface just parsed is not already present in
2748 the given interface list. Ambiguity isn't checked yet since module
2749 procedures can be present without interfaces. */
2750
17b1d2a0 2751static gfc_try
7b901ac4 2752check_new_interface (gfc_interface *base, gfc_symbol *new_sym)
6de9cd9a
DN
2753{
2754 gfc_interface *ip;
2755
2756 for (ip = base; ip; ip = ip->next)
2757 {
7b901ac4 2758 if (ip->sym == new_sym)
6de9cd9a
DN
2759 {
2760 gfc_error ("Entity '%s' at %C is already present in the interface",
7b901ac4 2761 new_sym->name);
6de9cd9a
DN
2762 return FAILURE;
2763 }
2764 }
2765
2766 return SUCCESS;
2767}
2768
2769
2770/* Add a symbol to the current interface. */
2771
17b1d2a0 2772gfc_try
7b901ac4 2773gfc_add_interface (gfc_symbol *new_sym)
6de9cd9a
DN
2774{
2775 gfc_interface **head, *intr;
2776 gfc_namespace *ns;
2777 gfc_symbol *sym;
2778
2779 switch (current_interface.type)
2780 {
2781 case INTERFACE_NAMELESS:
9e1d712c 2782 case INTERFACE_ABSTRACT:
6de9cd9a
DN
2783 return SUCCESS;
2784
2785 case INTERFACE_INTRINSIC_OP:
2786 for (ns = current_interface.ns; ns; ns = ns->parent)
3bed9dd0
DF
2787 switch (current_interface.op)
2788 {
2789 case INTRINSIC_EQ:
2790 case INTRINSIC_EQ_OS:
7b901ac4
KG
2791 if (check_new_interface (ns->op[INTRINSIC_EQ], new_sym) == FAILURE ||
2792 check_new_interface (ns->op[INTRINSIC_EQ_OS], new_sym) == FAILURE)
3bed9dd0
DF
2793 return FAILURE;
2794 break;
2795
2796 case INTRINSIC_NE:
2797 case INTRINSIC_NE_OS:
7b901ac4
KG
2798 if (check_new_interface (ns->op[INTRINSIC_NE], new_sym) == FAILURE ||
2799 check_new_interface (ns->op[INTRINSIC_NE_OS], new_sym) == FAILURE)
3bed9dd0
DF
2800 return FAILURE;
2801 break;
2802
2803 case INTRINSIC_GT:
2804 case INTRINSIC_GT_OS:
7b901ac4
KG
2805 if (check_new_interface (ns->op[INTRINSIC_GT], new_sym) == FAILURE ||
2806 check_new_interface (ns->op[INTRINSIC_GT_OS], new_sym) == FAILURE)
3bed9dd0
DF
2807 return FAILURE;
2808 break;
2809
2810 case INTRINSIC_GE:
2811 case INTRINSIC_GE_OS:
7b901ac4
KG
2812 if (check_new_interface (ns->op[INTRINSIC_GE], new_sym) == FAILURE ||
2813 check_new_interface (ns->op[INTRINSIC_GE_OS], new_sym) == FAILURE)
3bed9dd0
DF
2814 return FAILURE;
2815 break;
2816
2817 case INTRINSIC_LT:
2818 case INTRINSIC_LT_OS:
7b901ac4
KG
2819 if (check_new_interface (ns->op[INTRINSIC_LT], new_sym) == FAILURE ||
2820 check_new_interface (ns->op[INTRINSIC_LT_OS], new_sym) == FAILURE)
3bed9dd0
DF
2821 return FAILURE;
2822 break;
2823
2824 case INTRINSIC_LE:
2825 case INTRINSIC_LE_OS:
7b901ac4
KG
2826 if (check_new_interface (ns->op[INTRINSIC_LE], new_sym) == FAILURE ||
2827 check_new_interface (ns->op[INTRINSIC_LE_OS], new_sym) == FAILURE)
3bed9dd0
DF
2828 return FAILURE;
2829 break;
2830
2831 default:
7b901ac4 2832 if (check_new_interface (ns->op[current_interface.op], new_sym) == FAILURE)
3bed9dd0
DF
2833 return FAILURE;
2834 }
6de9cd9a 2835
a1ee985f 2836 head = &current_interface.ns->op[current_interface.op];
6de9cd9a
DN
2837 break;
2838
2839 case INTERFACE_GENERIC:
2840 for (ns = current_interface.ns; ns; ns = ns->parent)
2841 {
2842 gfc_find_symbol (current_interface.sym->name, ns, 0, &sym);
2843 if (sym == NULL)
2844 continue;
2845
7b901ac4 2846 if (check_new_interface (sym->generic, new_sym) == FAILURE)
6de9cd9a
DN
2847 return FAILURE;
2848 }
2849
2850 head = &current_interface.sym->generic;
2851 break;
2852
2853 case INTERFACE_USER_OP:
7b901ac4 2854 if (check_new_interface (current_interface.uop->op, new_sym)
b251af97 2855 == FAILURE)
6de9cd9a
DN
2856 return FAILURE;
2857
a1ee985f 2858 head = &current_interface.uop->op;
6de9cd9a
DN
2859 break;
2860
2861 default:
2862 gfc_internal_error ("gfc_add_interface(): Bad interface type");
2863 }
2864
2865 intr = gfc_get_interface ();
7b901ac4 2866 intr->sym = new_sym;
63645982 2867 intr->where = gfc_current_locus;
6de9cd9a
DN
2868
2869 intr->next = *head;
2870 *head = intr;
2871
2872 return SUCCESS;
2873}
2874
2875
2b77e908
FXC
2876gfc_interface *
2877gfc_current_interface_head (void)
2878{
2879 switch (current_interface.type)
2880 {
2881 case INTERFACE_INTRINSIC_OP:
a1ee985f 2882 return current_interface.ns->op[current_interface.op];
2b77e908
FXC
2883 break;
2884
2885 case INTERFACE_GENERIC:
2886 return current_interface.sym->generic;
2887 break;
2888
2889 case INTERFACE_USER_OP:
a1ee985f 2890 return current_interface.uop->op;
2b77e908
FXC
2891 break;
2892
2893 default:
2894 gcc_unreachable ();
2895 }
2896}
2897
2898
2899void
2900gfc_set_current_interface_head (gfc_interface *i)
2901{
2902 switch (current_interface.type)
2903 {
2904 case INTERFACE_INTRINSIC_OP:
a1ee985f 2905 current_interface.ns->op[current_interface.op] = i;
2b77e908
FXC
2906 break;
2907
2908 case INTERFACE_GENERIC:
2909 current_interface.sym->generic = i;
2910 break;
2911
2912 case INTERFACE_USER_OP:
a1ee985f 2913 current_interface.uop->op = i;
2b77e908
FXC
2914 break;
2915
2916 default:
2917 gcc_unreachable ();
2918 }
2919}
2920
2921
6de9cd9a
DN
2922/* Gets rid of a formal argument list. We do not free symbols.
2923 Symbols are freed when a namespace is freed. */
2924
2925void
b251af97 2926gfc_free_formal_arglist (gfc_formal_arglist *p)
6de9cd9a
DN
2927{
2928 gfc_formal_arglist *q;
2929
2930 for (; p; p = q)
2931 {
2932 q = p->next;
2933 gfc_free (p);
2934 }
2935}
This page took 1.808581 seconds and 5 git commands to generate.