OSDN Git Service

2006-07-23 Steven Bosscher <steven@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / interface.c
1 /* Deal with interfaces.
2    Copyright (C) 2000, 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
3    Contributed by Andy Vaught
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA.  */
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
44      has an explicit interface.  Each explicit interface has its own
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"
68 #include "system.h"
69 #include "gfortran.h"
70 #include "match.h"
71
72
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
77 gfc_interface_info current_interface;
78
79
80 /* Free a singly linked list of gfc_interface structures.  */
81
82 void
83 gfc_free_interface (gfc_interface * intr)
84 {
85   gfc_interface *next;
86
87   for (; intr; intr = next)
88     {
89       next = intr->next;
90       gfc_free (intr);
91     }
92 }
93
94
95 /* Change the operators unary plus and minus into binary plus and
96    minus respectively, leaving the rest unchanged.  */
97
98 static gfc_intrinsic_op
99 fold_unary (gfc_intrinsic_op operator)
100 {
101
102   switch (operator)
103     {
104     case INTRINSIC_UPLUS:
105       operator = INTRINSIC_PLUS;
106       break;
107     case INTRINSIC_UMINUS:
108       operator = INTRINSIC_MINUS;
109       break;
110     default:
111       break;
112     }
113
114   return operator;
115 }
116
117
118 /* Match a generic specification.  Depending on which type of
119    interface is found, the 'name' or 'operator' pointers may be set.
120    This subroutine doesn't return MATCH_NO.  */
121
122 match
123 gfc_match_generic_spec (interface_type * type,
124                         char *name,
125                         gfc_intrinsic_op *operator)
126 {
127   char buffer[GFC_MAX_SYMBOL_LEN + 1];
128   match m;
129   gfc_intrinsic_op i;
130
131   if (gfc_match (" assignment ( = )") == MATCH_YES)
132     {
133       *type = INTERFACE_INTRINSIC_OP;
134       *operator = INTRINSIC_ASSIGN;
135       return MATCH_YES;
136     }
137
138   if (gfc_match (" operator ( %o )", &i) == MATCH_YES)
139     {                           /* Operator i/f */
140       *type = INTERFACE_INTRINSIC_OP;
141       *operator = fold_unary (i);
142       return MATCH_YES;
143     }
144
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
174 syntax:
175   gfc_error ("Syntax error in generic specification at %C");
176   return MATCH_ERROR;
177 }
178
179
180 /* Match one of the five forms of an interface statement.  */
181
182 match
183 gfc_match_interface (void)
184 {
185   char name[GFC_MAX_SYMBOL_LEN + 1];
186   interface_type type;
187   gfc_symbol *sym;
188   gfc_intrinsic_op operator;
189   match m;
190
191   m = gfc_match_space ();
192
193   if (gfc_match_generic_spec (&type, name, &operator) == MATCH_ERROR)
194     return MATCH_ERROR;
195
196
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
200       || (type != INTERFACE_NAMELESS
201           && m != MATCH_YES))
202     {
203       gfc_error
204         ("Syntax error: Trailing garbage in INTERFACE statement at %C");
205       return MATCH_ERROR;
206     }
207
208   current_interface.type = type;
209
210   switch (type)
211     {
212     case INTERFACE_GENERIC:
213       if (gfc_get_symbol (name, NULL, &sym))
214         return MATCH_ERROR;
215
216       if (!sym->attr.generic 
217           && gfc_add_generic (&sym->attr, sym->name, NULL) == FAILURE)
218         return MATCH_ERROR;
219
220       if (sym->attr.dummy)
221         {
222           gfc_error ("Dummy procedure '%s' at %C cannot have a "
223                      "generic interface", sym->name);
224           return MATCH_ERROR;
225         }
226
227       current_interface.sym = gfc_new_block = sym;
228       break;
229
230     case INTERFACE_USER_OP:
231       current_interface.uop = gfc_get_uop (name);
232       break;
233
234     case INTERFACE_INTRINSIC_OP:
235       current_interface.op = operator;
236       break;
237
238     case INTERFACE_NAMELESS:
239       break;
240     }
241
242   return MATCH_YES;
243 }
244
245
246 /* Match the different sort of generic-specs that can be present after
247    the END INTERFACE itself.  */
248
249 match
250 gfc_match_end_interface (void)
251 {
252   char name[GFC_MAX_SYMBOL_LEN + 1];
253   interface_type type;
254   gfc_intrinsic_op operator;
255   match m;
256
257   m = gfc_match_space ();
258
259   if (gfc_match_generic_spec (&type, name, &operator) == MATCH_ERROR)
260     return MATCH_ERROR;
261
262   /* If we're not looking at the end of the statement now, or if this
263      is not a nameless interface but we did not see a space, punt.  */
264   if (gfc_match_eos () != MATCH_YES
265       || (type != INTERFACE_NAMELESS
266           && m != MATCH_YES))
267     {
268       gfc_error
269         ("Syntax error: Trailing garbage in END INTERFACE statement at %C");
270       return MATCH_ERROR;
271     }
272
273   m = MATCH_YES;
274
275   switch (current_interface.type)
276     {
277     case INTERFACE_NAMELESS:
278       if (type != current_interface.type)
279         {
280           gfc_error ("Expected a nameless interface at %C");
281           m = MATCH_ERROR;
282         }
283
284       break;
285
286     case INTERFACE_INTRINSIC_OP:
287       if (type != current_interface.type || operator != current_interface.op)
288         {
289
290           if (current_interface.op == INTRINSIC_ASSIGN)
291             gfc_error ("Expected 'END INTERFACE ASSIGNMENT (=)' at %C");
292           else
293             gfc_error ("Expecting 'END INTERFACE OPERATOR (%s)' at %C",
294                        gfc_op2string (current_interface.op));
295
296           m = MATCH_ERROR;
297         }
298
299       break;
300
301     case INTERFACE_USER_OP:
302       /* Comparing the symbol node names is OK because only use-associated
303          symbols can be renamed.  */
304       if (type != current_interface.type
305           || strcmp (current_interface.uop->name, name) != 0)
306         {
307           gfc_error ("Expecting 'END INTERFACE OPERATOR (.%s.)' at %C",
308                      current_interface.uop->name);
309           m = MATCH_ERROR;
310         }
311
312       break;
313
314     case INTERFACE_GENERIC:
315       if (type != current_interface.type
316           || strcmp (current_interface.sym->name, name) != 0)
317         {
318           gfc_error ("Expecting 'END INTERFACE %s' at %C",
319                      current_interface.sym->name);
320           m = MATCH_ERROR;
321         }
322
323       break;
324     }
325
326   return m;
327 }
328
329
330 /* Compare two derived types using the criteria in 4.4.2 of the standard,
331    recursing through gfc_compare_types for the components.  */
332
333 int
334 gfc_compare_derived_types (gfc_symbol * derived1, gfc_symbol * derived2)
335 {
336   gfc_component *dt1, *dt2;
337
338   /* Special case for comparing derived types across namespaces.  If the
339      true names and module names are the same and the module name is
340      nonnull, then they are equal.  */
341   if (strcmp (derived1->name, derived2->name) == 0
342         && derived1 != NULL && derived2 != NULL
343         && derived1->module != NULL && derived2->module != NULL
344         && strcmp (derived1->module, derived2->module) == 0)
345     return 1;
346
347   /* Compare type via the rules of the standard.  Both types must have
348      the SEQUENCE attribute to be equal.  */
349
350   if (strcmp (derived1->name, derived2->name))
351     return 0;
352
353   if (derived1->component_access == ACCESS_PRIVATE
354         || derived2->component_access == ACCESS_PRIVATE)
355     return 0;
356
357   if (derived1->attr.sequence == 0 || derived2->attr.sequence == 0)
358     return 0;
359
360   dt1 = derived1->components;
361   dt2 = derived2->components;
362
363   /* Since subtypes of SEQUENCE types must be SEQUENCE types as well, a
364      simple test can speed things up.  Otherwise, lots of things have to
365      match.  */
366   for (;;)
367     {
368       if (strcmp (dt1->name, dt2->name) != 0)
369         return 0;
370
371       if (dt1->pointer != dt2->pointer)
372         return 0;
373
374       if (dt1->dimension != dt2->dimension)
375         return 0;
376
377       if (dt1->dimension && gfc_compare_array_spec (dt1->as, dt2->as) == 0)
378         return 0;
379
380       if (gfc_compare_types (&dt1->ts, &dt2->ts) == 0)
381         return 0;
382
383       dt1 = dt1->next;
384       dt2 = dt2->next;
385
386       if (dt1 == NULL && dt2 == NULL)
387         break;
388       if (dt1 == NULL || dt2 == NULL)
389         return 0;
390     }
391
392   return 1;
393 }
394
395 /* Compare two typespecs, recursively if necessary.  */
396
397 int
398 gfc_compare_types (gfc_typespec * ts1, gfc_typespec * ts2)
399 {
400
401   if (ts1->type != ts2->type)
402     return 0;
403   if (ts1->type != BT_DERIVED)
404     return (ts1->kind == ts2->kind);
405
406   /* Compare derived types.  */
407   if (ts1->derived == ts2->derived)
408     return 1;
409
410   return gfc_compare_derived_types (ts1->derived ,ts2->derived);
411 }
412
413
414 /* Given two symbols that are formal arguments, compare their ranks
415    and types.  Returns nonzero if they have the same rank and type,
416    zero otherwise.  */
417
418 static int
419 compare_type_rank (gfc_symbol * s1, gfc_symbol * s2)
420 {
421   int r1, r2;
422
423   r1 = (s1->as != NULL) ? s1->as->rank : 0;
424   r2 = (s2->as != NULL) ? s2->as->rank : 0;
425
426   if (r1 != r2)
427     return 0;                   /* Ranks differ */
428
429   return gfc_compare_types (&s1->ts, &s2->ts);
430 }
431
432
433 static int compare_interfaces (gfc_symbol *, gfc_symbol *, int);
434
435 /* Given two symbols that are formal arguments, compare their types
436    and rank and their formal interfaces if they are both dummy
437    procedures.  Returns nonzero if the same, zero if different.  */
438
439 static int
440 compare_type_rank_if (gfc_symbol * s1, gfc_symbol * s2)
441 {
442
443   if (s1->attr.flavor != FL_PROCEDURE && s2->attr.flavor != FL_PROCEDURE)
444     return compare_type_rank (s1, s2);
445
446   if (s1->attr.flavor != FL_PROCEDURE || s2->attr.flavor != FL_PROCEDURE)
447     return 0;
448
449   /* At this point, both symbols are procedures.  */
450   if ((s1->attr.function == 0 && s1->attr.subroutine == 0)
451       || (s2->attr.function == 0 && s2->attr.subroutine == 0))
452     return 0;
453
454   if (s1->attr.function != s2->attr.function
455       || s1->attr.subroutine != s2->attr.subroutine)
456     return 0;
457
458   if (s1->attr.function && compare_type_rank (s1, s2) == 0)
459     return 0;
460
461   return compare_interfaces (s1, s2, 0);        /* Recurse! */
462 }
463
464
465 /* Given a formal argument list and a keyword name, search the list
466    for that keyword.  Returns the correct symbol node if found, NULL
467    if not found.  */
468
469 static gfc_symbol *
470 find_keyword_arg (const char *name, gfc_formal_arglist * f)
471 {
472
473   for (; f; f = f->next)
474     if (strcmp (f->sym->name, name) == 0)
475       return f->sym;
476
477   return NULL;
478 }
479
480
481 /******** Interface checking subroutines **********/
482
483
484 /* Given an operator interface and the operator, make sure that all
485    interfaces for that operator are legal.  */
486
487 static void
488 check_operator_interface (gfc_interface * intr, gfc_intrinsic_op operator)
489 {
490   gfc_formal_arglist *formal;
491   sym_intent i1, i2;
492   gfc_symbol *sym;
493   bt t1, t2;
494   int args;
495
496   if (intr == NULL)
497     return;
498
499   args = 0;
500   t1 = t2 = BT_UNKNOWN;
501   i1 = i2 = INTENT_UNKNOWN;
502
503   for (formal = intr->sym->formal; formal; formal = formal->next)
504     {
505       sym = formal->sym;
506
507       if (args == 0)
508         {
509           t1 = sym->ts.type;
510           i1 = sym->attr.intent;
511         }
512       if (args == 1)
513         {
514           t2 = sym->ts.type;
515           i2 = sym->attr.intent;
516         }
517       args++;
518     }
519
520   if (args == 0 || args > 2)
521     goto num_args;
522
523   sym = intr->sym;
524
525   if (operator == INTRINSIC_ASSIGN)
526     {
527       if (!sym->attr.subroutine)
528         {
529           gfc_error
530             ("Assignment operator interface at %L must be a SUBROUTINE",
531              &intr->where);
532           return;
533         }
534     }
535   else
536     {
537       if (!sym->attr.function)
538         {
539           gfc_error ("Intrinsic operator interface at %L must be a FUNCTION",
540                      &intr->where);
541           return;
542         }
543     }
544
545   switch (operator)
546     {
547     case INTRINSIC_PLUS:        /* Numeric unary or binary */
548     case INTRINSIC_MINUS:
549       if ((args == 1)
550           && (t1 == BT_INTEGER
551               || t1 == BT_REAL
552               || t1 == BT_COMPLEX))
553         goto bad_repl;
554
555       if ((args == 2)
556           && (t1 == BT_INTEGER || t1 == BT_REAL || t1 == BT_COMPLEX)
557           && (t2 == BT_INTEGER || t2 == BT_REAL || t2 == BT_COMPLEX))
558         goto bad_repl;
559
560       break;
561
562     case INTRINSIC_POWER:       /* Binary numeric */
563     case INTRINSIC_TIMES:
564     case INTRINSIC_DIVIDE:
565
566     case INTRINSIC_EQ:
567     case INTRINSIC_NE:
568       if (args == 1)
569         goto num_args;
570
571       if ((t1 == BT_INTEGER || t1 == BT_REAL || t1 == BT_COMPLEX)
572           && (t2 == BT_INTEGER || t2 == BT_REAL || t2 == BT_COMPLEX))
573         goto bad_repl;
574
575       break;
576
577     case INTRINSIC_GE:          /* Binary numeric operators that do not support */
578     case INTRINSIC_LE:          /* complex numbers */
579     case INTRINSIC_LT:
580     case INTRINSIC_GT:
581       if (args == 1)
582         goto num_args;
583
584       if ((t1 == BT_INTEGER || t1 == BT_REAL)
585           && (t2 == BT_INTEGER || t2 == BT_REAL))
586         goto bad_repl;
587
588       break;
589
590     case INTRINSIC_OR:          /* Binary logical */
591     case INTRINSIC_AND:
592     case INTRINSIC_EQV:
593     case INTRINSIC_NEQV:
594       if (args == 1)
595         goto num_args;
596       if (t1 == BT_LOGICAL && t2 == BT_LOGICAL)
597         goto bad_repl;
598       break;
599
600     case INTRINSIC_NOT: /* Unary logical */
601       if (args != 1)
602         goto num_args;
603       if (t1 == BT_LOGICAL)
604         goto bad_repl;
605       break;
606
607     case INTRINSIC_CONCAT:      /* Binary string */
608       if (args != 2)
609         goto num_args;
610       if (t1 == BT_CHARACTER && t2 == BT_CHARACTER)
611         goto bad_repl;
612       break;
613
614     case INTRINSIC_ASSIGN:      /* Class by itself */
615       if (args != 2)
616         goto num_args;
617       break;
618     default:
619       gfc_internal_error ("check_operator_interface(): Bad operator");
620     }
621
622   /* Check intents on operator interfaces.  */
623   if (operator == INTRINSIC_ASSIGN)
624     {
625       if (i1 != INTENT_OUT && i1 != INTENT_INOUT)
626         gfc_error ("First argument of defined assignment at %L must be "
627                    "INTENT(IN) or INTENT(INOUT)", &intr->where);
628
629       if (i2 != INTENT_IN)
630         gfc_error ("Second argument of defined assignment at %L must be "
631                    "INTENT(IN)", &intr->where);
632     }
633   else
634     {
635       if (i1 != INTENT_IN)
636         gfc_error ("First argument of operator interface at %L must be "
637                    "INTENT(IN)", &intr->where);
638
639       if (args == 2 && i2 != INTENT_IN)
640         gfc_error ("Second argument of operator interface at %L must be "
641                    "INTENT(IN)", &intr->where);
642     }
643
644   return;
645
646 bad_repl:
647   gfc_error ("Operator interface at %L conflicts with intrinsic interface",
648              &intr->where);
649   return;
650
651 num_args:
652   gfc_error ("Operator interface at %L has the wrong number of arguments",
653              &intr->where);
654   return;
655 }
656
657
658 /* Given a pair of formal argument lists, we see if the two lists can
659    be distinguished by counting the number of nonoptional arguments of
660    a given type/rank in f1 and seeing if there are less then that
661    number of those arguments in f2 (including optional arguments).
662    Since this test is asymmetric, it has to be called twice to make it
663    symmetric.  Returns nonzero if the argument lists are incompatible
664    by this test.  This subroutine implements rule 1 of section
665    14.1.2.3.  */
666
667 static int
668 count_types_test (gfc_formal_arglist * f1, gfc_formal_arglist * f2)
669 {
670   int rc, ac1, ac2, i, j, k, n1;
671   gfc_formal_arglist *f;
672
673   typedef struct
674   {
675     int flag;
676     gfc_symbol *sym;
677   }
678   arginfo;
679
680   arginfo *arg;
681
682   n1 = 0;
683
684   for (f = f1; f; f = f->next)
685     n1++;
686
687   /* Build an array of integers that gives the same integer to
688      arguments of the same type/rank.  */
689   arg = gfc_getmem (n1 * sizeof (arginfo));
690
691   f = f1;
692   for (i = 0; i < n1; i++, f = f->next)
693     {
694       arg[i].flag = -1;
695       arg[i].sym = f->sym;
696     }
697
698   k = 0;
699
700   for (i = 0; i < n1; i++)
701     {
702       if (arg[i].flag != -1)
703         continue;
704
705       if (arg[i].sym->attr.optional)
706         continue;               /* Skip optional arguments */
707
708       arg[i].flag = k;
709
710       /* Find other nonoptional arguments of the same type/rank.  */
711       for (j = i + 1; j < n1; j++)
712         if (!arg[j].sym->attr.optional
713             && compare_type_rank_if (arg[i].sym, arg[j].sym))
714           arg[j].flag = k;
715
716       k++;
717     }
718
719   /* Now loop over each distinct type found in f1.  */
720   k = 0;
721   rc = 0;
722
723   for (i = 0; i < n1; i++)
724     {
725       if (arg[i].flag != k)
726         continue;
727
728       ac1 = 1;
729       for (j = i + 1; j < n1; j++)
730         if (arg[j].flag == k)
731           ac1++;
732
733       /* Count the number of arguments in f2 with that type, including
734          those that are optional.  */
735       ac2 = 0;
736
737       for (f = f2; f; f = f->next)
738         if (compare_type_rank_if (arg[i].sym, f->sym))
739           ac2++;
740
741       if (ac1 > ac2)
742         {
743           rc = 1;
744           break;
745         }
746
747       k++;
748     }
749
750   gfc_free (arg);
751
752   return rc;
753 }
754
755
756 /* Perform the abbreviated correspondence test for operators.  The
757    arguments cannot be optional and are always ordered correctly,
758    which makes this test much easier than that for generic tests.
759
760    This subroutine is also used when comparing a formal and actual
761    argument list when an actual parameter is a dummy procedure.  At
762    that point, two formal interfaces must be compared for equality
763    which is what happens here.  */
764
765 static int
766 operator_correspondence (gfc_formal_arglist * f1, gfc_formal_arglist * f2)
767 {
768   for (;;)
769     {
770       if (f1 == NULL && f2 == NULL)
771         break;
772       if (f1 == NULL || f2 == NULL)
773         return 1;
774
775       if (!compare_type_rank (f1->sym, f2->sym))
776         return 1;
777
778       f1 = f1->next;
779       f2 = f2->next;
780     }
781
782   return 0;
783 }
784
785
786 /* Perform the correspondence test in rule 2 of section 14.1.2.3.
787    Returns zero if no argument is found that satisfies rule 2, nonzero
788    otherwise.
789
790    This test is also not symmetric in f1 and f2 and must be called
791    twice.  This test finds problems caused by sorting the actual
792    argument list with keywords.  For example:
793
794    INTERFACE FOO
795        SUBROUTINE F1(A, B)
796            INTEGER :: A ; REAL :: B
797        END SUBROUTINE F1
798
799        SUBROUTINE F2(B, A)
800            INTEGER :: A ; REAL :: B
801        END SUBROUTINE F1
802    END INTERFACE FOO
803
804    At this point, 'CALL FOO(A=1, B=1.0)' is ambiguous.  */
805
806 static int
807 generic_correspondence (gfc_formal_arglist * f1, gfc_formal_arglist * f2)
808 {
809
810   gfc_formal_arglist *f2_save, *g;
811   gfc_symbol *sym;
812
813   f2_save = f2;
814
815   while (f1)
816     {
817       if (f1->sym->attr.optional)
818         goto next;
819
820       if (f2 != NULL && compare_type_rank (f1->sym, f2->sym))
821         goto next;
822
823       /* Now search for a disambiguating keyword argument starting at
824          the current non-match.  */
825       for (g = f1; g; g = g->next)
826         {
827           if (g->sym->attr.optional)
828             continue;
829
830           sym = find_keyword_arg (g->sym->name, f2_save);
831           if (sym == NULL || !compare_type_rank (g->sym, sym))
832             return 1;
833         }
834
835     next:
836       f1 = f1->next;
837       if (f2 != NULL)
838         f2 = f2->next;
839     }
840
841   return 0;
842 }
843
844
845 /* 'Compare' two formal interfaces associated with a pair of symbols.
846    We return nonzero if there exists an actual argument list that
847    would be ambiguous between the two interfaces, zero otherwise.  */
848
849 static int
850 compare_interfaces (gfc_symbol * s1, gfc_symbol * s2, int generic_flag)
851 {
852   gfc_formal_arglist *f1, *f2;
853
854   if (s1->attr.function != s2->attr.function
855       && s1->attr.subroutine != s2->attr.subroutine)
856     return 0;                   /* disagreement between function/subroutine */
857
858   f1 = s1->formal;
859   f2 = s2->formal;
860
861   if (f1 == NULL && f2 == NULL)
862     return 1;                   /* Special case */
863
864   if (count_types_test (f1, f2))
865     return 0;
866   if (count_types_test (f2, f1))
867     return 0;
868
869   if (generic_flag)
870     {
871       if (generic_correspondence (f1, f2))
872         return 0;
873       if (generic_correspondence (f2, f1))
874         return 0;
875     }
876   else
877     {
878       if (operator_correspondence (f1, f2))
879         return 0;
880     }
881
882   return 1;
883 }
884
885
886 /* Given a pointer to an interface pointer, remove duplicate
887    interfaces and make sure that all symbols are either functions or
888    subroutines.  Returns nonzero if something goes wrong.  */
889
890 static int
891 check_interface0 (gfc_interface * p, const char *interface_name)
892 {
893   gfc_interface *psave, *q, *qlast;
894
895   psave = p;
896   /* Make sure all symbols in the interface have been defined as
897      functions or subroutines.  */
898   for (; p; p = p->next)
899     if (!p->sym->attr.function && !p->sym->attr.subroutine)
900       {
901         gfc_error ("Procedure '%s' in %s at %L is neither function nor "
902                    "subroutine", p->sym->name, interface_name,
903                    &p->sym->declared_at);
904         return 1;
905       }
906   p = psave;
907
908   /* Remove duplicate interfaces in this interface list.  */
909   for (; p; p = p->next)
910     {
911       qlast = p;
912
913       for (q = p->next; q;)
914         {
915           if (p->sym != q->sym)
916             {
917               qlast = q;
918               q = q->next;
919
920             }
921           else
922             {
923               /* Duplicate interface */
924               qlast->next = q->next;
925               gfc_free (q);
926               q = qlast->next;
927             }
928         }
929     }
930
931   return 0;
932 }
933
934
935 /* Check lists of interfaces to make sure that no two interfaces are
936    ambiguous.  Duplicate interfaces (from the same symbol) are OK
937    here.  */
938
939 static int
940 check_interface1 (gfc_interface * p, gfc_interface * q,
941                   int generic_flag, const char *interface_name)
942 {
943
944   for (; p; p = p->next)
945     for (; q; q = q->next)
946       {
947         if (p->sym == q->sym)
948           continue;             /* Duplicates OK here */
949
950         if (p->sym->name == q->sym->name && p->sym->module == q->sym->module)
951           continue;
952
953         if (compare_interfaces (p->sym, q->sym, generic_flag))
954           {
955             gfc_error ("Ambiguous interfaces '%s' and '%s' in %s at %L",
956                        p->sym->name, q->sym->name, interface_name, &p->where);
957             return 1;
958           }
959       }
960
961   return 0;
962 }
963
964
965 /* Check the generic and operator interfaces of symbols to make sure
966    that none of the interfaces conflict.  The check has to be done
967    after all of the symbols are actually loaded.  */
968
969 static void
970 check_sym_interfaces (gfc_symbol * sym)
971 {
972   char interface_name[100];
973   gfc_symbol *s2;
974
975   if (sym->ns != gfc_current_ns)
976     return;
977
978   if (sym->generic != NULL)
979     {
980       sprintf (interface_name, "generic interface '%s'", sym->name);
981       if (check_interface0 (sym->generic, interface_name))
982         return;
983
984       s2 = sym;
985       while (s2 != NULL)
986         {
987           if (check_interface1 (sym->generic, s2->generic, 1, interface_name))
988             return;
989
990           if (s2->ns->parent == NULL)
991             break;
992           if (gfc_find_symbol (sym->name, s2->ns->parent, 1, &s2))
993             break;
994         }
995     }
996 }
997
998
999 static void
1000 check_uop_interfaces (gfc_user_op * uop)
1001 {
1002   char interface_name[100];
1003   gfc_user_op *uop2;
1004   gfc_namespace *ns;
1005
1006   sprintf (interface_name, "operator interface '%s'", uop->name);
1007   if (check_interface0 (uop->operator, interface_name))
1008     return;
1009
1010   for (ns = gfc_current_ns; ns; ns = ns->parent)
1011     {
1012       uop2 = gfc_find_uop (uop->name, ns);
1013       if (uop2 == NULL)
1014         continue;
1015
1016       check_interface1 (uop->operator, uop2->operator, 0, interface_name);
1017     }
1018 }
1019
1020
1021 /* For the namespace, check generic, user operator and intrinsic
1022    operator interfaces for consistency and to remove duplicate
1023    interfaces.  We traverse the whole namespace, counting on the fact
1024    that most symbols will not have generic or operator interfaces.  */
1025
1026 void
1027 gfc_check_interfaces (gfc_namespace * ns)
1028 {
1029   gfc_namespace *old_ns, *ns2;
1030   char interface_name[100];
1031   gfc_intrinsic_op i;
1032
1033   old_ns = gfc_current_ns;
1034   gfc_current_ns = ns;
1035
1036   gfc_traverse_ns (ns, check_sym_interfaces);
1037
1038   gfc_traverse_user_op (ns, check_uop_interfaces);
1039
1040   for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
1041     {
1042       if (i == INTRINSIC_USER)
1043         continue;
1044
1045       if (i == INTRINSIC_ASSIGN)
1046         strcpy (interface_name, "intrinsic assignment operator");
1047       else
1048         sprintf (interface_name, "intrinsic '%s' operator",
1049                  gfc_op2string (i));
1050
1051       if (check_interface0 (ns->operator[i], interface_name))
1052         continue;
1053
1054       check_operator_interface (ns->operator[i], i);
1055
1056       for (ns2 = ns->parent; ns2; ns2 = ns2->parent)
1057         if (check_interface1 (ns->operator[i], ns2->operator[i], 0,
1058                               interface_name))
1059           break;
1060     }
1061
1062   gfc_current_ns = old_ns;
1063 }
1064
1065
1066 static int
1067 symbol_rank (gfc_symbol * sym)
1068 {
1069
1070   return (sym->as == NULL) ? 0 : sym->as->rank;
1071 }
1072
1073
1074 /* Given a symbol of a formal argument list and an expression, if the
1075    formal argument is allocatable, check that the actual argument is
1076    allocatable. Returns nonzero if compatible, zero if not compatible.  */
1077
1078 static int
1079 compare_allocatable (gfc_symbol * formal, gfc_expr * actual)
1080 {
1081   symbol_attribute attr;
1082
1083   if (formal->attr.allocatable)
1084     {
1085       attr = gfc_expr_attr (actual);
1086       if (!attr.allocatable)
1087         return 0;
1088     }
1089
1090   return 1;
1091 }
1092
1093
1094 /* Given a symbol of a formal argument list and an expression, if the
1095    formal argument is a pointer, see if the actual argument is a
1096    pointer. Returns nonzero if compatible, zero if not compatible.  */
1097
1098 static int
1099 compare_pointer (gfc_symbol * formal, gfc_expr * actual)
1100 {
1101   symbol_attribute attr;
1102
1103   if (formal->attr.pointer)
1104     {
1105       attr = gfc_expr_attr (actual);
1106       if (!attr.pointer)
1107         return 0;
1108     }
1109
1110   return 1;
1111 }
1112
1113
1114 /* Given a symbol of a formal argument list and an expression, see if
1115    the two are compatible as arguments.  Returns nonzero if
1116    compatible, zero if not compatible.  */
1117
1118 static int
1119 compare_parameter (gfc_symbol * formal, gfc_expr * actual,
1120                    int ranks_must_agree, int is_elemental)
1121 {
1122   gfc_ref *ref;
1123
1124   if (actual->ts.type == BT_PROCEDURE)
1125     {
1126       if (formal->attr.flavor != FL_PROCEDURE)
1127         return 0;
1128
1129       if (formal->attr.function
1130           && !compare_type_rank (formal, actual->symtree->n.sym))
1131         return 0;
1132
1133       if (formal->attr.if_source == IFSRC_UNKNOWN
1134             || actual->symtree->n.sym->attr.external)
1135         return 1;               /* Assume match */
1136
1137       return compare_interfaces (formal, actual->symtree->n.sym, 0);
1138     }
1139
1140   if ((actual->expr_type != EXPR_NULL || actual->ts.type != BT_UNKNOWN)
1141       && !gfc_compare_types (&formal->ts, &actual->ts))
1142     return 0;
1143
1144   if (symbol_rank (formal) == actual->rank)
1145     return 1;
1146
1147   /* At this point the ranks didn't agree.  */
1148   if (ranks_must_agree || formal->attr.pointer)
1149     return 0;
1150
1151   if (actual->rank != 0)
1152     return is_elemental || formal->attr.dimension;
1153
1154   /* At this point, we are considering a scalar passed to an array.
1155      This is legal if the scalar is an array element of the right sort.  */
1156   if (formal->as->type == AS_ASSUMED_SHAPE)
1157     return 0;
1158
1159   for (ref = actual->ref; ref; ref = ref->next)
1160     if (ref->type == REF_SUBSTRING)
1161       return 0;
1162
1163   for (ref = actual->ref; ref; ref = ref->next)
1164     if (ref->type == REF_ARRAY && ref->u.ar.type == AR_ELEMENT)
1165       break;
1166
1167   if (ref == NULL)
1168     return 0;                   /* Not an array element */
1169
1170   return 1;
1171 }
1172
1173
1174 /* Given formal and actual argument lists, see if they are compatible.
1175    If they are compatible, the actual argument list is sorted to
1176    correspond with the formal list, and elements for missing optional
1177    arguments are inserted. If WHERE pointer is nonnull, then we issue
1178    errors when things don't match instead of just returning the status
1179    code.  */
1180
1181 static int
1182 compare_actual_formal (gfc_actual_arglist ** ap,
1183                        gfc_formal_arglist * formal,
1184                        int ranks_must_agree, int is_elemental, locus * where)
1185 {
1186   gfc_actual_arglist **new, *a, *actual, temp;
1187   gfc_formal_arglist *f;
1188   gfc_gsymbol *gsym;
1189   int i, n, na;
1190   bool rank_check;
1191
1192   actual = *ap;
1193
1194   if (actual == NULL && formal == NULL)
1195     return 1;
1196
1197   n = 0;
1198   for (f = formal; f; f = f->next)
1199     n++;
1200
1201   new = (gfc_actual_arglist **) alloca (n * sizeof (gfc_actual_arglist *));
1202
1203   for (i = 0; i < n; i++)
1204     new[i] = NULL;
1205
1206   na = 0;
1207   f = formal;
1208   i = 0;
1209
1210   for (a = actual; a; a = a->next, f = f->next)
1211     {
1212       if (a->name != NULL)
1213         {
1214           i = 0;
1215           for (f = formal; f; f = f->next, i++)
1216             {
1217               if (f->sym == NULL)
1218                 continue;
1219               if (strcmp (f->sym->name, a->name) == 0)
1220                 break;
1221             }
1222
1223           if (f == NULL)
1224             {
1225               if (where)
1226                 gfc_error
1227                   ("Keyword argument '%s' at %L is not in the procedure",
1228                    a->name, &a->expr->where);
1229               return 0;
1230             }
1231
1232           if (new[i] != NULL)
1233             {
1234               if (where)
1235                 gfc_error
1236                   ("Keyword argument '%s' at %L is already associated "
1237                    "with another actual argument", a->name, &a->expr->where);
1238               return 0;
1239             }
1240         }
1241
1242       if (f == NULL)
1243         {
1244           if (where)
1245             gfc_error
1246               ("More actual than formal arguments in procedure call at %L",
1247                where);
1248
1249           return 0;
1250         }
1251
1252       if (f->sym == NULL && a->expr == NULL)
1253         goto match;
1254
1255       if (f->sym == NULL)
1256         {
1257           if (where)
1258             gfc_error
1259               ("Missing alternate return spec in subroutine call at %L",
1260                where);
1261           return 0;
1262         }
1263
1264       if (a->expr == NULL)
1265         {
1266           if (where)
1267             gfc_error
1268               ("Unexpected alternate return spec in subroutine call at %L",
1269                where);
1270           return 0;
1271         }
1272
1273       rank_check = where != NULL
1274                      && !is_elemental
1275                      && f->sym->as
1276                      && (f->sym->as->type == AS_ASSUMED_SHAPE
1277                            || f->sym->as->type == AS_DEFERRED);
1278
1279       if (!compare_parameter
1280           (f->sym, a->expr, ranks_must_agree || rank_check, is_elemental))
1281         {
1282           if (where)
1283             gfc_error ("Type/rank mismatch in argument '%s' at %L",
1284                        f->sym->name, &a->expr->where);
1285           return 0;
1286         }
1287
1288       /* Satisfy 12.4.1.2 by ensuring that a procedure actual argument is
1289          provided for a procedure formal argument.  */
1290       if (a->expr->ts.type != BT_PROCEDURE
1291           && a->expr->expr_type == EXPR_VARIABLE
1292           && f->sym->attr.flavor == FL_PROCEDURE)
1293         {
1294           gsym = gfc_find_gsymbol (gfc_gsym_root,
1295                                    a->expr->symtree->n.sym->name);
1296           if (gsym == NULL || (gsym->type != GSYM_FUNCTION
1297                 && gsym->type != GSYM_SUBROUTINE))
1298             {
1299               if (where)
1300                 gfc_error ("Expected a procedure for argument '%s' at %L",
1301                            f->sym->name, &a->expr->where);
1302               return 0;
1303             }
1304         }
1305
1306       if (f->sym->attr.flavor == FL_PROCEDURE
1307             && f->sym->attr.pure
1308             && a->expr->ts.type == BT_PROCEDURE
1309             && !a->expr->symtree->n.sym->attr.pure)
1310         {
1311           if (where)
1312             gfc_error ("Expected a PURE procedure for argument '%s' at %L",
1313                        f->sym->name, &a->expr->where);
1314           return 0;
1315         }
1316
1317       if (f->sym->as
1318           && f->sym->as->type == AS_ASSUMED_SHAPE
1319           && a->expr->expr_type == EXPR_VARIABLE
1320           && a->expr->symtree->n.sym->as
1321           && a->expr->symtree->n.sym->as->type == AS_ASSUMED_SIZE
1322           && (a->expr->ref == NULL
1323               || (a->expr->ref->type == REF_ARRAY
1324                   && a->expr->ref->u.ar.type == AR_FULL)))
1325         {
1326           if (where)
1327             gfc_error ("Actual argument for '%s' cannot be an assumed-size"
1328                        " array at %L", f->sym->name, where);
1329           return 0;
1330         }
1331
1332       if (a->expr->expr_type != EXPR_NULL
1333           && compare_pointer (f->sym, a->expr) == 0)
1334         {
1335           if (where)
1336             gfc_error ("Actual argument for '%s' must be a pointer at %L",
1337                        f->sym->name, &a->expr->where);
1338           return 0;
1339         }
1340
1341       if (a->expr->expr_type != EXPR_NULL
1342           && compare_allocatable (f->sym, a->expr) == 0)
1343         {
1344           if (where)
1345             gfc_error ("Actual argument for '%s' must be ALLOCATABLE at %L",
1346                        f->sym->name, &a->expr->where);
1347           return 0;
1348         }
1349
1350       /* Check intent = OUT/INOUT for definable actual argument.  */
1351       if (a->expr->expr_type != EXPR_VARIABLE
1352              && (f->sym->attr.intent == INTENT_OUT
1353                    || f->sym->attr.intent == INTENT_INOUT))
1354         {
1355           gfc_error ("Actual argument at %L must be definable to "
1356                      "match dummy INTENT = OUT/INOUT", &a->expr->where);
1357           return 0;
1358         }
1359
1360     match:
1361       if (a == actual)
1362         na = i;
1363
1364       new[i++] = a;
1365     }
1366
1367   /* Make sure missing actual arguments are optional.  */
1368   i = 0;
1369   for (f = formal; f; f = f->next, i++)
1370     {
1371       if (new[i] != NULL)
1372         continue;
1373       if (!f->sym->attr.optional)
1374         {
1375           if (where)
1376             gfc_error ("Missing actual argument for argument '%s' at %L",
1377                        f->sym->name, where);
1378           return 0;
1379         }
1380     }
1381
1382   /* The argument lists are compatible.  We now relink a new actual
1383      argument list with null arguments in the right places.  The head
1384      of the list remains the head.  */
1385   for (i = 0; i < n; i++)
1386     if (new[i] == NULL)
1387       new[i] = gfc_get_actual_arglist ();
1388
1389   if (na != 0)
1390     {
1391       temp = *new[0];
1392       *new[0] = *actual;
1393       *actual = temp;
1394
1395       a = new[0];
1396       new[0] = new[na];
1397       new[na] = a;
1398     }
1399
1400   for (i = 0; i < n - 1; i++)
1401     new[i]->next = new[i + 1];
1402
1403   new[i]->next = NULL;
1404
1405   if (*ap == NULL && n > 0)
1406     *ap = new[0];
1407
1408   /* Note the types of omitted optional arguments.  */
1409   for (a = actual, f = formal; a; a = a->next, f = f->next)
1410     if (a->expr == NULL && a->label == NULL)
1411       a->missing_arg_type = f->sym->ts.type;
1412
1413   return 1;
1414 }
1415
1416
1417 typedef struct
1418 {
1419   gfc_formal_arglist *f;
1420   gfc_actual_arglist *a;
1421 }
1422 argpair;
1423
1424 /* qsort comparison function for argument pairs, with the following
1425    order:
1426     - p->a->expr == NULL
1427     - p->a->expr->expr_type != EXPR_VARIABLE
1428     - growing p->a->expr->symbol.  */
1429
1430 static int
1431 pair_cmp (const void *p1, const void *p2)
1432 {
1433   const gfc_actual_arglist *a1, *a2;
1434
1435   /* *p1 and *p2 are elements of the to-be-sorted array.  */
1436   a1 = ((const argpair *) p1)->a;
1437   a2 = ((const argpair *) p2)->a;
1438   if (!a1->expr)
1439     {
1440       if (!a2->expr)
1441         return 0;
1442       return -1;
1443     }
1444   if (!a2->expr)
1445     return 1;
1446   if (a1->expr->expr_type != EXPR_VARIABLE)
1447     {
1448       if (a2->expr->expr_type != EXPR_VARIABLE)
1449         return 0;
1450       return -1;
1451     }
1452   if (a2->expr->expr_type != EXPR_VARIABLE)
1453     return 1;
1454   return a1->expr->symtree->n.sym < a2->expr->symtree->n.sym;
1455 }
1456
1457
1458 /* Given two expressions from some actual arguments, test whether they
1459    refer to the same expression. The analysis is conservative.
1460    Returning FAILURE will produce no warning.  */
1461
1462 static try
1463 compare_actual_expr (gfc_expr * e1, gfc_expr * e2)
1464 {
1465   const gfc_ref *r1, *r2;
1466
1467   if (!e1 || !e2
1468       || e1->expr_type != EXPR_VARIABLE
1469       || e2->expr_type != EXPR_VARIABLE
1470       || e1->symtree->n.sym != e2->symtree->n.sym)
1471     return FAILURE;
1472
1473   /* TODO: improve comparison, see expr.c:show_ref().  */
1474   for (r1 = e1->ref, r2 = e2->ref; r1 && r2; r1 = r1->next, r2 = r2->next)
1475     {
1476       if (r1->type != r2->type)
1477         return FAILURE;
1478       switch (r1->type)
1479         {
1480         case REF_ARRAY:
1481           if (r1->u.ar.type != r2->u.ar.type)
1482             return FAILURE;
1483           /* TODO: At the moment, consider only full arrays;
1484              we could do better.  */
1485           if (r1->u.ar.type != AR_FULL || r2->u.ar.type != AR_FULL)
1486             return FAILURE;
1487           break;
1488
1489         case REF_COMPONENT:
1490           if (r1->u.c.component != r2->u.c.component)
1491             return FAILURE;
1492           break;
1493
1494         case REF_SUBSTRING:
1495           return FAILURE;
1496
1497         default:
1498           gfc_internal_error ("compare_actual_expr(): Bad component code");
1499         }
1500     }
1501   if (!r1 && !r2)
1502     return SUCCESS;
1503   return FAILURE;
1504 }
1505
1506 /* Given formal and actual argument lists that correspond to one
1507    another, check that identical actual arguments aren't not
1508    associated with some incompatible INTENTs.  */
1509
1510 static try
1511 check_some_aliasing (gfc_formal_arglist * f, gfc_actual_arglist * a)
1512 {
1513   sym_intent f1_intent, f2_intent;
1514   gfc_formal_arglist *f1;
1515   gfc_actual_arglist *a1;
1516   size_t n, i, j;
1517   argpair *p;
1518   try t = SUCCESS;
1519
1520   n = 0;
1521   for (f1 = f, a1 = a;; f1 = f1->next, a1 = a1->next)
1522     {
1523       if (f1 == NULL && a1 == NULL)
1524         break;
1525       if (f1 == NULL || a1 == NULL)
1526         gfc_internal_error ("check_some_aliasing(): List mismatch");
1527       n++;
1528     }
1529   if (n == 0)
1530     return t;
1531   p = (argpair *) alloca (n * sizeof (argpair));
1532
1533   for (i = 0, f1 = f, a1 = a; i < n; i++, f1 = f1->next, a1 = a1->next)
1534     {
1535       p[i].f = f1;
1536       p[i].a = a1;
1537     }
1538
1539   qsort (p, n, sizeof (argpair), pair_cmp);
1540
1541   for (i = 0; i < n; i++)
1542     {
1543       if (!p[i].a->expr
1544           || p[i].a->expr->expr_type != EXPR_VARIABLE
1545           || p[i].a->expr->ts.type == BT_PROCEDURE)
1546         continue;
1547       f1_intent = p[i].f->sym->attr.intent;
1548       for (j = i + 1; j < n; j++)
1549         {
1550           /* Expected order after the sort.  */
1551           if (!p[j].a->expr || p[j].a->expr->expr_type != EXPR_VARIABLE)
1552             gfc_internal_error ("check_some_aliasing(): corrupted data");
1553
1554           /* Are the expression the same?  */
1555           if (compare_actual_expr (p[i].a->expr, p[j].a->expr) == FAILURE)
1556             break;
1557           f2_intent = p[j].f->sym->attr.intent;
1558           if ((f1_intent == INTENT_IN && f2_intent == INTENT_OUT)
1559               || (f1_intent == INTENT_OUT && f2_intent == INTENT_IN))
1560             {
1561               gfc_warning ("Same actual argument associated with INTENT(%s) "
1562                            "argument '%s' and INTENT(%s) argument '%s' at %L",
1563                            gfc_intent_string (f1_intent), p[i].f->sym->name,
1564                            gfc_intent_string (f2_intent), p[j].f->sym->name,
1565                            &p[i].a->expr->where);
1566               t = FAILURE;
1567             }
1568         }
1569     }
1570
1571   return t;
1572 }
1573
1574
1575 /* Given formal and actual argument lists that correspond to one
1576    another, check that they are compatible in the sense that intents
1577    are not mismatched.  */
1578
1579 static try
1580 check_intents (gfc_formal_arglist * f, gfc_actual_arglist * a)
1581 {
1582   sym_intent a_intent, f_intent;
1583
1584   for (;; f = f->next, a = a->next)
1585     {
1586       if (f == NULL && a == NULL)
1587         break;
1588       if (f == NULL || a == NULL)
1589         gfc_internal_error ("check_intents(): List mismatch");
1590
1591       if (a->expr == NULL || a->expr->expr_type != EXPR_VARIABLE)
1592         continue;
1593
1594       a_intent = a->expr->symtree->n.sym->attr.intent;
1595       f_intent = f->sym->attr.intent;
1596
1597       if (a_intent == INTENT_IN
1598           && (f_intent == INTENT_INOUT
1599               || f_intent == INTENT_OUT))
1600         {
1601
1602           gfc_error ("Procedure argument at %L is INTENT(IN) while interface "
1603                      "specifies INTENT(%s)", &a->expr->where,
1604                      gfc_intent_string (f_intent));
1605           return FAILURE;
1606         }
1607
1608       if (gfc_pure (NULL) && gfc_impure_variable (a->expr->symtree->n.sym))
1609         {
1610           if (f_intent == INTENT_INOUT || f_intent == INTENT_OUT)
1611             {
1612               gfc_error
1613                 ("Procedure argument at %L is local to a PURE procedure and "
1614                  "is passed to an INTENT(%s) argument", &a->expr->where,
1615                  gfc_intent_string (f_intent));
1616               return FAILURE;
1617             }
1618
1619           if (a->expr->symtree->n.sym->attr.pointer)
1620             {
1621               gfc_error
1622                 ("Procedure argument at %L is local to a PURE procedure and "
1623                  "has the POINTER attribute", &a->expr->where);
1624               return FAILURE;
1625             }
1626         }
1627     }
1628
1629   return SUCCESS;
1630 }
1631
1632
1633 /* Check how a procedure is used against its interface.  If all goes
1634    well, the actual argument list will also end up being properly
1635    sorted.  */
1636
1637 void
1638 gfc_procedure_use (gfc_symbol * sym, gfc_actual_arglist ** ap, locus * where)
1639 {
1640
1641   /* Warn about calls with an implicit interface.  */
1642   if (gfc_option.warn_implicit_interface
1643       && sym->attr.if_source == IFSRC_UNKNOWN)
1644     gfc_warning ("Procedure '%s' called with an implicit interface at %L",
1645                  sym->name, where);
1646
1647   if (sym->attr.if_source == IFSRC_UNKNOWN
1648       || !compare_actual_formal (ap, sym->formal, 0,
1649                                  sym->attr.elemental, where))
1650     return;
1651
1652   check_intents (sym->formal, *ap);
1653   if (gfc_option.warn_aliasing)
1654     check_some_aliasing (sym->formal, *ap);
1655 }
1656
1657
1658 /* Given an interface pointer and an actual argument list, search for
1659    a formal argument list that matches the actual.  If found, returns
1660    a pointer to the symbol of the correct interface.  Returns NULL if
1661    not found.  */
1662
1663 gfc_symbol *
1664 gfc_search_interface (gfc_interface * intr, int sub_flag,
1665                       gfc_actual_arglist ** ap)
1666 {
1667   int r;
1668
1669   for (; intr; intr = intr->next)
1670     {
1671       if (sub_flag && intr->sym->attr.function)
1672         continue;
1673       if (!sub_flag && intr->sym->attr.subroutine)
1674         continue;
1675
1676       r = !intr->sym->attr.elemental;
1677
1678       if (compare_actual_formal (ap, intr->sym->formal, r, !r, NULL))
1679         {
1680           check_intents (intr->sym->formal, *ap);
1681           if (gfc_option.warn_aliasing)
1682             check_some_aliasing (intr->sym->formal, *ap);
1683           return intr->sym;
1684         }
1685     }
1686
1687   return NULL;
1688 }
1689
1690
1691 /* Do a brute force recursive search for a symbol.  */
1692
1693 static gfc_symtree *
1694 find_symtree0 (gfc_symtree * root, gfc_symbol * sym)
1695 {
1696   gfc_symtree * st;
1697
1698   if (root->n.sym == sym)
1699     return root;
1700
1701   st = NULL;
1702   if (root->left)
1703     st = find_symtree0 (root->left, sym);
1704   if (root->right && ! st)
1705     st = find_symtree0 (root->right, sym);
1706   return st;
1707 }
1708
1709
1710 /* Find a symtree for a symbol.  */
1711
1712 static gfc_symtree *
1713 find_sym_in_symtree (gfc_symbol * sym)
1714 {
1715   gfc_symtree *st;
1716   gfc_namespace *ns;
1717
1718   /* First try to find it by name.  */
1719   gfc_find_sym_tree (sym->name, gfc_current_ns, 1, &st);
1720   if (st && st->n.sym == sym)
1721     return st;
1722
1723   /* if it's been renamed, resort to a brute-force search.  */
1724   /* TODO: avoid having to do this search.  If the symbol doesn't exist
1725      in the symtree for the current namespace, it should probably be added.  */
1726   for (ns = gfc_current_ns; ns; ns = ns->parent)
1727     {
1728       st = find_symtree0 (ns->sym_root, sym);
1729       if (st)
1730         return st;
1731     }
1732   gfc_internal_error ("Unable to find symbol %s", sym->name);
1733   /* Not reached */
1734 }
1735
1736
1737 /* This subroutine is called when an expression is being resolved.
1738    The expression node in question is either a user defined operator
1739    or an intrinsic operator with arguments that aren't compatible
1740    with the operator.  This subroutine builds an actual argument list
1741    corresponding to the operands, then searches for a compatible
1742    interface.  If one is found, the expression node is replaced with
1743    the appropriate function call.  */
1744
1745 try
1746 gfc_extend_expr (gfc_expr * e)
1747 {
1748   gfc_actual_arglist *actual;
1749   gfc_symbol *sym;
1750   gfc_namespace *ns;
1751   gfc_user_op *uop;
1752   gfc_intrinsic_op i;
1753
1754   sym = NULL;
1755
1756   actual = gfc_get_actual_arglist ();
1757   actual->expr = e->value.op.op1;
1758
1759   if (e->value.op.op2 != NULL)
1760     {
1761       actual->next = gfc_get_actual_arglist ();
1762       actual->next->expr = e->value.op.op2;
1763     }
1764
1765   i = fold_unary (e->value.op.operator);
1766
1767   if (i == INTRINSIC_USER)
1768     {
1769       for (ns = gfc_current_ns; ns; ns = ns->parent)
1770         {
1771           uop = gfc_find_uop (e->value.op.uop->name, ns);
1772           if (uop == NULL)
1773             continue;
1774
1775           sym = gfc_search_interface (uop->operator, 0, &actual);
1776           if (sym != NULL)
1777             break;
1778         }
1779     }
1780   else
1781     {
1782       for (ns = gfc_current_ns; ns; ns = ns->parent)
1783         {
1784           sym = gfc_search_interface (ns->operator[i], 0, &actual);
1785           if (sym != NULL)
1786             break;
1787         }
1788     }
1789
1790   if (sym == NULL)
1791     {
1792       /* Don't use gfc_free_actual_arglist() */
1793       if (actual->next != NULL)
1794         gfc_free (actual->next);
1795       gfc_free (actual);
1796
1797       return FAILURE;
1798     }
1799
1800   /* Change the expression node to a function call.  */
1801   e->expr_type = EXPR_FUNCTION;
1802   e->symtree = find_sym_in_symtree (sym);
1803   e->value.function.actual = actual;
1804   e->value.function.esym = NULL;
1805   e->value.function.isym = NULL;
1806   e->value.function.name = NULL;
1807
1808   if (gfc_pure (NULL) && !gfc_pure (sym))
1809     {
1810       gfc_error
1811         ("Function '%s' called in lieu of an operator at %L must be PURE",
1812          sym->name, &e->where);
1813       return FAILURE;
1814     }
1815
1816   if (gfc_resolve_expr (e) == FAILURE)
1817     return FAILURE;
1818
1819   return SUCCESS;
1820 }
1821
1822
1823 /* Tries to replace an assignment code node with a subroutine call to
1824    the subroutine associated with the assignment operator.  Return
1825    SUCCESS if the node was replaced.  On FAILURE, no error is
1826    generated.  */
1827
1828 try
1829 gfc_extend_assign (gfc_code * c, gfc_namespace * ns)
1830 {
1831   gfc_actual_arglist *actual;
1832   gfc_expr *lhs, *rhs;
1833   gfc_symbol *sym;
1834
1835   lhs = c->expr;
1836   rhs = c->expr2;
1837
1838   /* Don't allow an intrinsic assignment to be replaced.  */
1839   if (lhs->ts.type != BT_DERIVED && rhs->ts.type != BT_DERIVED
1840       && (lhs->ts.type == rhs->ts.type
1841           || (gfc_numeric_ts (&lhs->ts)
1842               && gfc_numeric_ts (&rhs->ts))))
1843     return FAILURE;
1844
1845   actual = gfc_get_actual_arglist ();
1846   actual->expr = lhs;
1847
1848   actual->next = gfc_get_actual_arglist ();
1849   actual->next->expr = rhs;
1850
1851   sym = NULL;
1852
1853   for (; ns; ns = ns->parent)
1854     {
1855       sym = gfc_search_interface (ns->operator[INTRINSIC_ASSIGN], 1, &actual);
1856       if (sym != NULL)
1857         break;
1858     }
1859
1860   if (sym == NULL)
1861     {
1862       gfc_free (actual->next);
1863       gfc_free (actual);
1864       return FAILURE;
1865     }
1866
1867   /* Replace the assignment with the call.  */
1868   c->op = EXEC_ASSIGN_CALL;
1869   c->symtree = find_sym_in_symtree (sym);
1870   c->expr = NULL;
1871   c->expr2 = NULL;
1872   c->ext.actual = actual;
1873
1874   return SUCCESS;
1875 }
1876
1877
1878 /* Make sure that the interface just parsed is not already present in
1879    the given interface list.  Ambiguity isn't checked yet since module
1880    procedures can be present without interfaces.  */
1881
1882 static try
1883 check_new_interface (gfc_interface * base, gfc_symbol * new)
1884 {
1885   gfc_interface *ip;
1886
1887   for (ip = base; ip; ip = ip->next)
1888     {
1889       if (ip->sym == new)
1890         {
1891           gfc_error ("Entity '%s' at %C is already present in the interface",
1892                      new->name);
1893           return FAILURE;
1894         }
1895     }
1896
1897   return SUCCESS;
1898 }
1899
1900
1901 /* Add a symbol to the current interface.  */
1902
1903 try
1904 gfc_add_interface (gfc_symbol * new)
1905 {
1906   gfc_interface **head, *intr;
1907   gfc_namespace *ns;
1908   gfc_symbol *sym;
1909
1910   switch (current_interface.type)
1911     {
1912     case INTERFACE_NAMELESS:
1913       return SUCCESS;
1914
1915     case INTERFACE_INTRINSIC_OP:
1916       for (ns = current_interface.ns; ns; ns = ns->parent)
1917         if (check_new_interface (ns->operator[current_interface.op], new)
1918             == FAILURE)
1919           return FAILURE;
1920
1921       head = &current_interface.ns->operator[current_interface.op];
1922       break;
1923
1924     case INTERFACE_GENERIC:
1925       for (ns = current_interface.ns; ns; ns = ns->parent)
1926         {
1927           gfc_find_symbol (current_interface.sym->name, ns, 0, &sym);
1928           if (sym == NULL)
1929             continue;
1930
1931           if (check_new_interface (sym->generic, new) == FAILURE)
1932             return FAILURE;
1933         }
1934
1935       head = &current_interface.sym->generic;
1936       break;
1937
1938     case INTERFACE_USER_OP:
1939       if (check_new_interface (current_interface.uop->operator, new) ==
1940           FAILURE)
1941         return FAILURE;
1942
1943       head = &current_interface.uop->operator;
1944       break;
1945
1946     default:
1947       gfc_internal_error ("gfc_add_interface(): Bad interface type");
1948     }
1949
1950   intr = gfc_get_interface ();
1951   intr->sym = new;
1952   intr->where = gfc_current_locus;
1953
1954   intr->next = *head;
1955   *head = intr;
1956
1957   return SUCCESS;
1958 }
1959
1960
1961 /* Gets rid of a formal argument list.  We do not free symbols.
1962    Symbols are freed when a namespace is freed.  */
1963
1964 void
1965 gfc_free_formal_arglist (gfc_formal_arglist * p)
1966 {
1967   gfc_formal_arglist *q;
1968
1969   for (; p; p = q)
1970     {
1971       q = p->next;
1972       gfc_free (p);
1973     }
1974 }