OSDN Git Service

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